blob_id
stringlengths 40
40
| directory_id
stringlengths 40
40
| path
stringlengths 6
201
| content_id
stringlengths 40
40
| detected_licenses
sequencelengths 0
26
| license_type
stringclasses 2
values | repo_name
stringlengths 7
95
| snapshot_id
stringlengths 40
40
| revision_id
stringlengths 40
40
| branch_name
stringclasses 57
values | visit_date
timestamp[us] | revision_date
timestamp[us] | committer_date
timestamp[us] | github_id
int64 197k
639M
⌀ | star_events_count
int64 0
209k
| fork_events_count
int64 0
110k
| gha_license_id
stringclasses 11
values | gha_event_created_at
timestamp[us] | gha_created_at
timestamp[us] | gha_language
stringclasses 34
values | src_encoding
stringclasses 18
values | language
stringclasses 1
value | is_vendor
bool 1
class | is_generated
bool 2
classes | length_bytes
int64 11
9.86M
| extension
stringclasses 27
values | content
stringlengths 11
9.86M
| authors
sequencelengths 1
1
| author
stringlengths 0
70
|
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
6173e844d60297cfe92e4e6967709a45aa123832 | 33a0017a1dbbe3d0c8d2aff9c206ec71a705b6e8 | /cf_118B.cpp | 9751c53b0772d918caa5ed84e96132db494f4b98 | [] | no_license | JunGuoCS/Codeforce-Practise | a6f5e3dee26f13d6e56e73de3e96276a27324dfa | 79bdcdd66931e5bd3cf75febcc402b3ea01e919d | refs/heads/master | 2020-06-04T16:06:25.013157 | 2019-07-03T15:35:17 | 2019-07-03T15:35:17 | 192,095,873 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 355 | cpp | #include<iostream>
using namespace std;
int main(){
int n;
cin>>n;
for(int i=0;i<=2*n;i++){
int row=i<=n?i:2*n-i;
int num=0;
for(int j=0;j<=n+row;j++){
if(j!=0){
cout<<" ";
}
if(j>=n-row&&j<n){
cout<<num++;
}
else if(j>=n&&j<=n+row){
cout<<num--;
}
else{
cout<<" ";
}
}
cout<<endl;
}
return 0;
} | [
"[email protected]"
] | |
8f547e61afdcad3e991e3ba168667b234156856e | 1c6a484f518ea400a852dd4460bb44dccb3da515 | /daa_ssc_test/src/main.cc | f69bc7fbb736e74c45d952f78ed6b76c22bbf50c | [] | no_license | domenicoamelino/daa_projects | 364820a9b95c7df16ff384ecf4f8f0d1f492396e | f70154fb9d3514270d1f63b74977492049f3bd50 | refs/heads/master | 2021-01-19T14:13:55.019548 | 2017-04-13T07:24:58 | 2017-04-13T07:24:58 | 88,137,053 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,441 | cc | /*
* Empty C++ Application
*/
#include <stdio.h>
#include <stdlib.h>
#include "pairing_1.h"
#include "platform.h"
#include "xparameters.h"
#include "xgpio.h"
#include "xstatus.h"
#include "xtime_l.h"
/* Definitions */
#define GPIO_DEVICE_ID XPAR_AXI_GPIO_0_DEVICE_ID /* GPIO device that LEDs are connected to */
#define LED 0x01 /* Initial LED value - XX0000XX */
#define LED_DELAY 50000000 /* Software delay length */
#define LED_CHANNEL 1 /* GPIO port for LEDs */
#define printf xil_printf /* smaller, optimised printf */
XGpio Gpio; /* GPIO Device driver instance */
#define MR_PAIRING_SSP // AES-80 security
#define AES_SECURITY 80
char *primetext=(char *)
"155315526351482395991155996351231807220169644828378937433223838972232518351958838087073321845624756550146945246003790108045940383194773439496051917019892370102341378990113959561895891019716873290512815434724157588460613638202017020672756091067223336194394910765309830876066246480156617492164140095427773547319";
int main()
{
cout<<"DAA implementation using Super Singular Curves (k=2)"<<endl;
//Inizializzazione della piattaforma
init_platform();
//Dati utili al test temporale
XTime tStart, tEnd, tBuff;
//INIZIO TESTING
cout << "Setup.....";
XTime_GetTime(&tStart);
PFC pfc(AES_SECURITY);
XTime seed;
int i,j;
G1 g1,h1,h2,B;
G1 g2,w;
GT t1,t2,t3,t4;
Big gamma;
// XTime_GetTime(&seed);
// irand((long)seed);
Big order=pfc.order();
//cout<<"Ordine dell'insieme random da cui si prendono i valori --->"<<order<<endl;
pfc.random(g1);
//cout<<"Output G1 ="<<g1.g<<endl;
//cout<<"PFC MOD = "<<*(pfc.mod)<<endl;
pfc.random(g2);
//cout<<"Output G2 = "<<g2.g<<endl;
pfc.random(gamma);
pfc.random(h1);
pfc.random(h2);
w=pfc.mult(g2,gamma);
//XGpio_DiscreteWrite(&Gpio, LED_CHANNEL, 0x01);
t1=pfc.pairing(g2,g1); // ^t(P1,Q)
t2=pfc.pairing(g2,h1); // ^t(P2,Q)
t3=pfc.pairing(g2,h2); // ^t(P3,Q)
t4=pfc.pairing(w,h2); // ^t(P3,X)
pfc.precomp_for_mult(g1);
pfc.precomp_for_mult(g2);
pfc.precomp_for_mult(h1);
pfc.precomp_for_mult(h2);
pfc.precomp_for_mult(w);
pfc.precomp_for_pairing(g2);
pfc.precomp_for_power(t1);
pfc.precomp_for_power(t2);
pfc.precomp_for_power(t3);
pfc.precomp_for_power(t4);
//XGpio_DiscreteWrite(&Gpio, LED_CHANNEL, 0x3F);
XTime_GetTime(&tEnd);
//XGpio_DiscreteWrite(&Gpio, LED_CHANNEL, 0x03);
cout <<"..done" <<endl;
//cout<<"SETUP := Output took "<<2*(tEnd - tStart)<<" clock cycles."<<endl;
cout<<"SETUP := Output took "<<1.0 * (tEnd - tStart) / (COUNTS_PER_SECOND/1000000)<<"us."<<endl;
cout << "Join...";
XTime_GetTime(&tStart);
Big ni,f,sk,rf,c,sf,x,ci;
G1 F,R;
Big bohx,bohy,bohz;
// TPM
pfc.random(f); // should be H(DAASeed||cnt||KI), i do not modify this step for now.
sk=f; // <-- this is the secret.
pfc.random(rf); // rf = u randomly choosed from Zp
F=pfc.mult(h1,f); // F <- h1^f
R=pfc.mult(h1,rf); // this is U <- P2^u
// The TPM now starts the hash calculation.
// H = (X || P1 || P2 || P3 || Q || ni || F || U) il calcolo che viene eseguito in questi passaggi.
pfc.start_hash();
pfc.add_to_hash(order); pfc.add_to_hash(g1); pfc.add_to_hash(h1), pfc.add_to_hash(h2); pfc.add_to_hash(g2); pfc.add_to_hash(w);
pfc.add_to_hash(ni); pfc.add_to_hash(F); pfc.add_to_hash(R);
c=pfc.finish_hash_to_group(); // the result of the hash calculation
sf=(rf+modmult(c,f,order))%order; // sf = w = u + f * v (mod p)
//HOST
G1 wxg2=w+pfc.mult(g2,x);
G1 g1f=-(F+g1);
XTime_GetTime(&tEnd);
tBuff = tEnd - tStart;
// MADE FROM THE ISSUER....NON LO CONSIDERO, lo inserisco poi come STUB..
G1 A=pfc.mult(g1+F,inverse(x+gamma,order));
XTime_GetTime(&tStart);
//HOST
G1 *gf1[2];
G1 *gf2[2];
gf1[0]=&A;
gf1[1]=&g1f;
gf2[0]=&wxg2;
gf2[1]=&g2;
if (pfc.multi_pairing(2,gf2,gf1)!=1) // <-- questa funzione l'ho copiata, fa il confronto tra due funzioni di pairing!!
{
cout << "Verification fails, aborting.. " << endl;
exit(0);
}
XTime_GetTime(&tEnd);
cout<<"....done"<<endl;
//XGpio_DiscreteWrite(&Gpio, LED_CHANNEL, 0x1F);
// cout<<"JOIN := Output took "<<2*(tEnd - tStart)<<" clock cycles."<<endl;
cout<<"JOIN := Output took "<<1.0 * ((tEnd - tStart)+tBuff) / (COUNTS_PER_SECOND/1000000)<<"us."<<endl;
cout << "Sign......"<<endl;
XTime_GetTime(&tStart);
G1 K,R1,R2t,nv;
//TPM
pfc.hash_and_map(B,(char *)"bsn");
//cout<<"Hash and Map Fatta"<<endl;
pfc.random(rf); //picks a random value rf from Zp group
//cout<<"Prelievo random rf fatto";
K=pfc.mult(B,f); // K = J^f
//cout<<"Mult del cazzo..fatta"<<endl;
R1=pfc.mult(B,rf); // called L into paper R1 = J^rf
R2t=pfc.mult(h1,rf);
//X value for Remote Activation Method:
// g ^ ID (mod p)
// p = primenumber 1024 bit
// g group identificatore = 160 bit taken from number value
//Big group_value = safeprime;
Big p=primetext;
Big ID;
ID = rand(160,2);
//cout<<"Valore di ID: "<<ID<<endl;
// 808482096439117605921939216063679095635925463883 value is a safe prime of 192 bits - it indicates group number g
Big gen_X = pow(3,ID,p);
//cout<<"Valore X da inviare al verifier insieme al testo = "<<gen_X<<endl;
// TPM sends B, K, R1, R2t to Host
//HOST
G1 T;
GT R2;
Big a,b,rx,ra,rb,ch,nt;
pfc.random(a); //from Zp (Zp is the a group with big number probably order "order")).
b=modmult(a,x,order);
T=A+pfc.mult(h2,a);
pfc.random(rx);
pfc.random(ra);
pfc.random(rb);
R2=pfc.pairing(g2,R2t+pfc.mult(T,-rx)+pfc.mult(h2,rb))*pfc.power(t4,ra);
pfc.start_hash();
pfc.add_to_hash(order); pfc.add_to_hash(g1); pfc.add_to_hash(h1), pfc.add_to_hash(h2); pfc.add_to_hash(g2); pfc.add_to_hash(w);
pfc.add_to_hash(B); pfc.add_to_hash(K); pfc.add_to_hash(T); pfc.add_to_hash(R1); pfc.add_to_hash(R2); pfc.add_to_hash(nv);
ch=pfc.finish_hash_to_group();
//HOST sends ch to TPM
// TPM does..
pfc.random(nt); // generates a random nt
pfc.start_hash(); pfc.add_to_hash(ch); pfc.add_to_hash(nt); pfc.add_to_hash(gen_X);
c=pfc.finish_hash_to_group();
sf=(rf+modmult(c,f,order))%order;
// {c,nt,sf) sent to Host
rf=0; // rf is erased. rf is erased in order to prevent REPLAY ATTACKS.
//HOST
Big sx,sa,sb;
sx=(rx+modmult(c,x,order))%order;
sa=(ra+modmult(c,a,order))%order;
sb=(rb+modmult(c,b,order))%order;
XTime_GetTime(&tEnd);
cout<<"....done."<<endl;
cout<<"SIGN := Output took "<<1.0 * (tEnd - tStart) / (COUNTS_PER_SECOND/1000000)<<"us."<<endl;
return 0;
}
| [
"[email protected]"
] | |
7694716bb00a3cdcda9da0f26442a850b9a4fb3e | 47c222923048b6afe534a8de89d92d8821cb8d28 | /ComS327GameProject/GameProject/object.cpp | 3850b362b9178200fc5b6f5fa4c0756d4483cdfb | [] | no_license | Henry-Kansanback/ComS2019 | 83e0024d913181ef578762777cbb82f8eed3af4a | 95253a901cd1e477217ef8a3fa2436a89c46d432 | refs/heads/main | 2023-04-08T10:26:02.167117 | 2021-04-15T15:05:44 | 2021-04-15T15:05:44 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,353 | cpp | #include <vector>
#include <cstring>
#include "object.h"
#include "dungeon.h"
#include "utils.h"
object::object(object_description &o, pair_t p, object *next) :
name(o.get_name()),
description(o.get_description()),
type(o.get_type()),
color(o.get_color()),
damage(o.get_damage()),
hit(o.get_hit().roll()),
dodge(o.get_dodge().roll()),
defence(o.get_defence().roll()),
weight(o.get_weight().roll()),
speed(o.get_speed().roll()),
attribute(o.get_attribute().roll()),
value(o.get_value().roll()),
seen(false),
next(next),
od(o)
{
position[dim_x] = p[dim_x];
position[dim_y] = p[dim_y];
od.generate();
}
object::~object()
{
od.destroy();
if (next) {
delete next;
}
}
void gen_object(dungeon *d)
{
object *o;
uint32_t room;
pair_t p;
std::vector<object_description> &v = d->object_descriptions;
int i;
do {
i = rand_range(0, v.size() - 1);
} while (!v[i].can_be_generated() || !v[i].pass_rarity_roll());
room = rand_range(0, d->num_rooms - 1);
do {
p[dim_y] = rand_range(d->rooms[room].position[dim_y],
(d->rooms[room].position[dim_y] +
d->rooms[room].size[dim_y] - 1));
p[dim_x] = rand_range(d->rooms[room].position[dim_x],
(d->rooms[room].position[dim_x] +
d->rooms[room].size[dim_x] - 1));
} while (mappair(p) > ter_stairs);
o = new object(v[i], p, d->objmap[p[dim_y]][p[dim_x]]);
d->objmap[p[dim_y]][p[dim_x]] = o;
}
void gen_objects(dungeon *d)
{
uint32_t i;
memset(d->objmap, 0, sizeof (d->objmap));
for (i = 0; i < d->max_objects; i++) {
gen_object(d);
}
d->num_objects = d->max_objects;
}
char object::get_symbol()
{
return next ? '&' : object_symbol[type];
}
uint32_t object::get_color()
{
return color;
}
const char *object::get_name()
{
return name.c_str();
}
const char *object::get_descr()
{
return description.c_str();
}
int32_t object::get_speed()
{
return speed;
}
int32_t object::roll_dice()
{
return damage.roll();
}
void destroy_objects(dungeon *d)
{
uint32_t y, x;
for (y = 0; y < DUNGEON_Y; y++) {
for (x = 0; x < DUNGEON_X; x++) {
if (d->objmap[y][x]) {
delete d->objmap[y][x];
d->objmap[y][x] = 0;
}
}
}
}
int32_t object::get_type()
{
return type;
}
| [
"[email protected]"
] | |
725f3261e304e4e5954dfba1fae5831f0a639c8a | 35014750bff0c1cb3b1aa2cd859e58c3f20e5bf9 | /src/verilog.h | 7dcb42901323efd5e2931756fbd43328cef19e73 | [] | no_license | duran-duran/boolean-matching | 1500b51cd74a60aef935973579da18c35254d886 | d8c3067907d27457b58efdb3dfb12b6e12ca17dc | refs/heads/master | 2021-01-13T14:47:12.491697 | 2017-04-28T02:13:03 | 2017-04-28T02:13:03 | 76,602,679 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 86 | h | #pragma once
#include "circuit.h"
Circuit *parse_verilog(const std::string &input);
| [
"[email protected]"
] | |
f1bce97ab17a0090f24b307a276ca655150be837 | 356aef6d1278abde9f173e13466fc4d320060089 | /src/chrono_vehicle/tracked_vehicle/roller/ChDoubleRoller.cpp | 3687e0aa6df404ec7c83a67761f90186715c9d32 | [
"BSD-3-Clause"
] | permissive | AlstonXiao/chrono | cde2a49f14774e861abea4ff5fbc4fae9df0cc7c | 22e9d6e6268c535e8161dbab3640442c0c914a2f | refs/heads/develop | 2020-08-28T05:32:47.956997 | 2020-02-10T05:27:12 | 2020-02-10T05:27:12 | 217,607,524 | 0 | 0 | BSD-3-Clause | 2020-02-10T05:27:14 | 2019-10-25T20:09:17 | null | UTF-8 | C++ | false | false | 3,630 | cpp | // =============================================================================
// PROJECT CHRONO - http://projectchrono.org
//
// Copyright (c) 2014 projectchrono.org
// All rights reserved.
//
// Use of this source code is governed by a BSD-style license that can be found
// in the LICENSE file at the top level of the distribution and at
// http://projectchrono.org/license-chrono.txt.
//
// =============================================================================
// Authors: Radu Serban
// =============================================================================
//
// Base class for a double roller (template definition).
// A double roller is of type CENTRAL_PIN.
//
// =============================================================================
#include "chrono/core/ChGlobal.h"
#include "chrono/assets/ChCylinderShape.h"
#include "chrono/assets/ChTexture.h"
#include "chrono_vehicle/ChSubsysDefs.h"
#include "chrono_vehicle/tracked_vehicle/roller/ChDoubleRoller.h"
namespace chrono {
namespace vehicle {
// -----------------------------------------------------------------------------
// -----------------------------------------------------------------------------
ChDoubleRoller::ChDoubleRoller(const std::string& name) : ChRoller(name) {}
// -----------------------------------------------------------------------------
// -----------------------------------------------------------------------------
void ChDoubleRoller::Initialize(std::shared_ptr<ChBodyAuxRef> chassis, const ChVector<>& location) {
// Invoke the base class method
ChRoller::Initialize(chassis, location);
// Add contact geometry.
double radius = GetRadius();
double width = 0.5 * (GetWidth() - GetGap());
double offset = 0.25 * (GetWidth() + GetGap());
m_wheel->SetCollide(true);
m_wheel->GetCollisionModel()->ClearModel();
m_wheel->GetCollisionModel()->SetFamily(TrackedCollisionFamily::ROLLERS);
m_wheel->GetCollisionModel()->SetFamilyMaskNoCollisionWithFamily(TrackedCollisionFamily::WHEELS);
m_wheel->GetCollisionModel()->SetFamilyMaskNoCollisionWithFamily(TrackedCollisionFamily::IDLERS);
m_wheel->GetCollisionModel()->AddCylinder(radius, radius, width / 2, ChVector<>(0, offset, 0));
m_wheel->GetCollisionModel()->AddCylinder(radius, radius, width / 2, ChVector<>(0, -offset, 0));
m_wheel->GetCollisionModel()->BuildModel();
}
// -----------------------------------------------------------------------------
// -----------------------------------------------------------------------------
void ChDoubleRoller::AddVisualizationAssets(VisualizationType vis) {
if (vis == VisualizationType::NONE)
return;
double radius = GetRadius();
double width = GetWidth();
double gap = GetGap();
auto cyl_1 = chrono_types::make_shared<ChCylinderShape>();
cyl_1->GetCylinderGeometry().p1 = ChVector<>(0, width / 2, 0);
cyl_1->GetCylinderGeometry().p2 = ChVector<>(0, gap / 2, 0);
cyl_1->GetCylinderGeometry().rad = radius;
m_wheel->AddAsset(cyl_1);
auto cyl_2 = chrono_types::make_shared<ChCylinderShape>();
cyl_2->GetCylinderGeometry().p1 = ChVector<>(0, -width / 2, 0);
cyl_2->GetCylinderGeometry().p2 = ChVector<>(0, -gap / 2, 0);
cyl_2->GetCylinderGeometry().rad = radius;
m_wheel->AddAsset(cyl_2);
auto tex = chrono_types::make_shared<ChTexture>();
tex->SetTextureFilename(chrono::GetChronoDataFile("redwhite.png"));
m_wheel->AddAsset(tex);
}
void ChDoubleRoller::RemoveVisualizationAssets() {
m_wheel->GetAssets().clear();
}
} // end namespace vehicle
} // end namespace chrono
| [
"[email protected]"
] | |
7750cd6a8050b3791f10418d62ad1d4ccf7cb23e | 9ecbc437bd1db137d8f6e83b7b4173eb328f60a9 | /gcc-build/i686-pc-linux-gnu/libjava/java/util/Collections.h | 789fbbbe11235be927b10b3f6fbac2fc70703916 | [] | no_license | giraffe/jrate | 7eabe07e79e7633caae6522e9b78c975e7515fe9 | 764bbf973d1de4e38f93ba9b9c7be566f1541e16 | refs/heads/master | 2021-01-10T18:25:37.819466 | 2013-07-20T12:28:23 | 2013-07-20T12:28:23 | 11,545,290 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,542 | h | // DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
#ifndef __java_util_Collections__
#define __java_util_Collections__
#pragma interface
#include <java/lang/Object.h>
class ::java::util::Collections : public ::java::lang::Object
{
private:
static jboolean isSequential (::java::util::List *);
Collections ();
public: // actually package-private
static jint compare (::java::lang::Object *, ::java::lang::Object *, ::java::util::Comparator *);
public:
static jint binarySearch (::java::util::List *, ::java::lang::Object *);
static jint binarySearch (::java::util::List *, ::java::lang::Object *, ::java::util::Comparator *);
static void copy (::java::util::List *, ::java::util::List *);
static ::java::util::Enumeration *enumeration (::java::util::Collection *);
static void fill (::java::util::List *, ::java::lang::Object *);
static jint indexOfSubList (::java::util::List *, ::java::util::List *);
static jint lastIndexOfSubList (::java::util::List *, ::java::util::List *);
static ::java::util::ArrayList *list (::java::util::Enumeration *);
static ::java::lang::Object *max (::java::util::Collection *);
static ::java::lang::Object *max (::java::util::Collection *, ::java::util::Comparator *);
static ::java::lang::Object *min (::java::util::Collection *);
static ::java::lang::Object *min (::java::util::Collection *, ::java::util::Comparator *);
static ::java::util::List *nCopies (jint, ::java::lang::Object *);
static jboolean replaceAll (::java::util::List *, ::java::lang::Object *, ::java::lang::Object *);
static void reverse (::java::util::List *);
static ::java::util::Comparator *reverseOrder ();
static void rotate (::java::util::List *, jint);
static void shuffle (::java::util::List *);
static void shuffle (::java::util::List *, ::java::util::Random *);
static ::java::util::Set *singleton (::java::lang::Object *);
static ::java::util::List *singletonList (::java::lang::Object *);
static ::java::util::Map *singletonMap (::java::lang::Object *, ::java::lang::Object *);
static void sort (::java::util::List *);
static void sort (::java::util::List *, ::java::util::Comparator *);
static void swap (::java::util::List *, jint, jint);
static ::java::util::Collection *synchronizedCollection (::java::util::Collection *);
static ::java::util::List *synchronizedList (::java::util::List *);
static ::java::util::Map *synchronizedMap (::java::util::Map *);
static ::java::util::Set *synchronizedSet (::java::util::Set *);
static ::java::util::SortedMap *synchronizedSortedMap (::java::util::SortedMap *);
static ::java::util::SortedSet *synchronizedSortedSet (::java::util::SortedSet *);
static ::java::util::Collection *unmodifiableCollection (::java::util::Collection *);
static ::java::util::List *unmodifiableList (::java::util::List *);
static ::java::util::Map *unmodifiableMap (::java::util::Map *);
static ::java::util::Set *unmodifiableSet (::java::util::Set *);
static ::java::util::SortedMap *unmodifiableSortedMap (::java::util::SortedMap *);
static ::java::util::SortedSet *unmodifiableSortedSet (::java::util::SortedSet *);
private:
static const jint LARGE_LIST_SIZE = 16L;
public:
static ::java::util::Set *EMPTY_SET;
static ::java::util::List *EMPTY_LIST;
static ::java::util::Map *EMPTY_MAP;
private:
static ::java::util::Collections$ReverseComparator *rcInstance;
static ::java::util::Random *defaultRandom;
public:
static ::java::lang::Class class$;
};
#endif /* __java_util_Collections__ */
| [
"[email protected]"
] | |
c0de7acf6481450b382359b095c09b11bab5f1b8 | d2d6aae454fd2042c39127e65fce4362aba67d97 | /build/iOS/Release/include/ObjC.ID.h | 41bf7c9a19788b10e9323e3ba176d998ec441600 | [] | no_license | Medbeji/Eventy | de88386ff9826b411b243d7719b22ff5493f18f5 | 521261bca5b00ba879e14a2992e6980b225c50d4 | refs/heads/master | 2021-01-23T00:34:16.273411 | 2017-09-24T21:16:34 | 2017-09-24T21:16:34 | 92,812,809 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,024 | h | // This file was generated based on '../../AppData/Local/Fusetools/Packages/UnoCore/0.46.1/source/uno/compiler/exporttargetinterop/foreign/objc/$.uno'.
// WARNING: Changes might be lost if you edit this file directly.
#pragma once
#include <objc/objc.h>
#include <Uno.Object.h>
namespace g{
namespace ObjC{
// public extern struct ID :12
// {
uStructType* ID_typeof();
void ID__Equals_fn(::id* __this, uType* __type, uObject* o, bool* __retval);
void ID__GetHashCode_fn(::id* __this, uType* __type, int* __retval);
void ID__get_Null_fn(::id* __retval);
void ID__op_Equality_fn(::id* a, ::id* b, bool* __retval);
struct ID
{
void* _dummy;
static bool Equals(::id __this, uType* __type, uObject* o) { bool __retval; return ID__Equals_fn(&__this, __type, o, &__retval), __retval; }
static int GetHashCode(::id __this, uType* __type) { int __retval; return ID__GetHashCode_fn(&__this, __type, &__retval), __retval; }
static bool op_Equality(::id a, ::id b);
static ::id Null();
};
// }
}} // ::g::ObjC
| [
"[email protected]"
] | |
655741eaa71b0cf40d9404e40574e6a62a3ade76 | f161c76d158a33415da21607d6098811e97a9d93 | /src/AppExceptions/Exceptions/NotImplementedError.cpp | 361832f03e1a0b9b40c50d9b295f99b87ed57d1d | [] | no_license | iamandrii/telegram-bot | 72f88b4454a2e981509188ba08d978b8961fdc0c | ea6412f6ad3190eef0b1b3e5d09c04e347bfa36c | refs/heads/master | 2020-09-19T20:27:47.994774 | 2019-11-26T21:49:17 | 2019-11-26T21:49:17 | 224,289,685 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 149 | cpp | #include "../Exceptions.h"
using namespace App::Exceptions;
NotImplementedError::NotImplementedError(){
this->msg = (char*)"Not implemented";
} | [
"[email protected]"
] | |
37b5664103017b3d1e2e8b38be797e346a2483aa | 54cca39cd1cf7f62b001c8a4d64dcc3d29e3cb4e | /PekoModel/PekoEngine/PekoEngineNet/AssemblyInfo.cpp | 749c8aee0775e233300fed8392930f180939d17b | [] | no_license | hamling-ling/NumericalResearches | d2487c2566c24ba3dc674e7e17f1745c1020d542 | a824357d7650d3ed86220f1315ee37e577285a7d | refs/heads/master | 2021-01-25T08:36:58.455319 | 2015-04-22T15:17:21 | 2015-04-22T15:17:21 | 7,775,139 | 0 | 0 | null | null | null | null | SHIFT_JIS | C++ | false | false | 1,414 | cpp | #include "stdafx.h"
using namespace System;
using namespace System::Reflection;
using namespace System::Runtime::CompilerServices;
using namespace System::Runtime::InteropServices;
using namespace System::Security::Permissions;
//
// アセンブリに関する一般情報は以下の属性セットをとおして制御されます。
// アセンブリに関連付けられている情報を変更するには、
// これらの属性値を変更してください。
//
[assembly:AssemblyTitleAttribute("PekoEngineNet")];
[assembly:AssemblyDescriptionAttribute("")];
[assembly:AssemblyConfigurationAttribute("")];
[assembly:AssemblyCompanyAttribute("")];
[assembly:AssemblyProductAttribute("PekoEngineNet")];
[assembly:AssemblyCopyrightAttribute("Copyright (c) 2013")];
[assembly:AssemblyTrademarkAttribute("")];
[assembly:AssemblyCultureAttribute("")];
//
// アセンブリのバージョン情報は、以下の 4 つの値で構成されています:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
// すべての値を指定するか、下のように '*' を使ってリビジョンおよびビルド番号を
// 既定値にすることができます:
[assembly:AssemblyVersionAttribute("1.0.*")];
[assembly:ComVisible(false)];
[assembly:CLSCompliantAttribute(true)];
[assembly:SecurityPermission(SecurityAction::RequestMinimum, UnmanagedCode = true)];
| [
"[email protected]"
] | |
8af8b3793c4a86c94ba11e764834bdadd39719c4 | b0af1e46b034b1aa5edd78c41dbf9b1f24b261ff | /boilerplate/camera.cpp | e60c03622a1049ca85984d98e54b4b6556313234 | [] | no_license | amygel/CPSC453Assignment5 | 4cb77f1d3cd7b6da12da1695464232e78a036e7d | 59ff603817536d2192c5126637b077a9ee23cbe5 | refs/heads/master | 2020-06-12T15:54:11.975959 | 2016-12-10T07:41:52 | 2016-12-10T07:41:52 | 75,797,251 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,027 | cpp | #include "camera.h"
#include <cstdio>
#include <glm/gtc/matrix_transform.hpp>
Camera::Camera()
: dir(vec3(0, 0, -1))
, right(vec3(1, 0, 0))
, up(vec3(0, 1, 0))
, pos(vec3(0, 0, 0))
{}
Camera::Camera(vec3 dir, vec3 pos)
: dir(normalize(dir))
, pos(pos)
{
right = normalize(cross(dir, vec3(0, 1, 0)));
up = normalize(cross(right, dir));
}
mat4 Camera::getViewMatrix()
{
return lookAt(pos, vec3(0.0f), up);
}
void Camera::cameraRotation(float x, float y)
{
mat4 rotateAroundY = rotateAbout(up, x);
mat4 rotateAroundX = rotateAbout(right, y);
vec3 prevPos = pos;
pos = rotateAroundX * rotateAroundY * vec4(pos, 0);
dir = normalize(pos);
if ((dir.y < -0.98f && y < 0.0f) || (dir.y > 0.98f && y > 0.0f))
{
pos = prevPos;
dir = normalize(pos);
}
else
{
right = normalize(cross(dir, vec3(0, 1, 0)));
up = normalize(cross(right, dir));
}
}
mat4 Camera::rotateAbout(vec3 axis, float radians)
{
mat4 I(1.0f);
return rotate(I, radians, axis);
}
| [
"[email protected]"
] | |
5d4cc1a933a6c9c879c4ce845017a2fdda88e8b7 | 9f730bf91dc97735ebc3941d53743a44743c4b91 | /LexicalAnalyzer.cpp | 4d20daf00e470474ab488a78d62762578921d862 | [] | no_license | dot-operator/ISPCompiler | 562c24c56b564900ce3af067758a0881c79f22c1 | 733fc6ddb190b6610c96feba82ddb20d57d0cf0b | refs/heads/master | 2020-04-15T20:06:11.380161 | 2020-03-11T06:18:35 | 2020-03-11T06:18:35 | 164,979,206 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,597 | cpp | //
// LexicalAnalyzer.cpp
// ISPCompiler
//
// Created by Sullivan Boyd on 1/9/19.
// Copyright © 2019 Sullivan Boyd. All rights reserved.
//
#include "LexicalAnalyzer.hpp"
#include <iostream>
#include <fstream>
#include <set>
const std::set<string> keywords = {
"auto", "break", "case", "char", "const", "continue", "default",
"do", "double", "else", "enum", "extern", "float", "for", "goto",
"if", "inline", "int", "long", "register", "restrict", "return",
"short", "signed", "sizeof", "static", "struct", "switch", "typedef", "union",
"unsigned", "void", "volatile", "while", "_Alignas", "_Alignof", "_Atomic",
"_Bool", "_Complex", "_Generic", "_Imaginary", "_Noreturn", "_Static_assert", "_Thread_local"
};
const std::set<string> punctuators = {
"[", "]", "(", ")", "{", "}", ".", "->",
"++", "--", "&", "*", "+", "-", "~", "!",
"/", "%", "<<", ">>", "<", ">", "<=", ">=", "==", "!=", "^", "|", "&&", "||",
"?", ":", ";", "...",
"=", "*=", "+=", "-=", "/=", "%=", "<<=", ">>=", "^=", "&=", "|=",
",", "#", "##",
"<:", ":>", "<%", "%>", "%:", "%:%:"
};
void LexicalAnalyzer::loadFile(const string& filePath) {
std::ifstream file(filePath);
if(!file){
std::cout << "Unable to open " << filePath << "\n";
exit(-1);
}
string line;
while(std::getline(file, line)){
// Strip single-line comments before starting anything else
if(line.find("//") != line.npos){
line = line.substr(0, line.find("//"));
}
source += line + "\n";
}
file.close();
sourcePos = source.begin();
}
char LexicalAnalyzer::nextChar(){
lastColumn = curColumn;
lastPos = sourcePos;
if(sourcePos != source.end()){
if((*sourcePos) == '\n'){
lastLine = curLine++;
curColumn = 0;
}
else ++curColumn;
return *sourcePos++;
}
else return '\0';
}
char LexicalAnalyzer::curChar(){
if(sourcePos != source.end())
return *sourcePos;
else return '\0';
}
bool LexicalAnalyzer::hasNext(){
while(sourcePos != source.end() && iswspace(*sourcePos)){
nextChar();
}
if(sourcePos != source.end()){
return true;
}
return false;
}
void LexicalAnalyzer::backOne(){
curLine = lastLine;
curColumn = lastColumn;
sourcePos = lastPos;
}
Token LexicalAnalyzer::makeNumber(){
string str;
bool hadDecimal = false;
for(char c = nextChar(); isNumberChar(c); c=nextChar()){
str += c;
if(c == '.'){
if(!hadDecimal){
hadDecimal = true;
continue;
}
else {
error("Expected a digit in float constant.", getCurrent());
}
}
}
backOne();
Token tok;
Constant constant;
if(hadDecimal){
constant.type = Constant::Float;
constant.attribute = std::stof(str);
}
else {
constant.type = Constant::Int;
constant.attribute = std::stoi(str);
}
tok.type = Token::Tok_Constant;
tok.attribute = constant;
return tok;
}
Token LexicalAnalyzer::makeChar(){
nextChar();
char c = nextChar();
if(c == '\'')
error("Expected an alphanumeric character in char constant.", getCurrent());
Token token;
token.type = Token::Tok_Constant;
Constant constant;
constant.type = Constant::Char;
constant.attribute = c;
token.attribute = constant;
if(nextChar() != '\'')
error("Closing single quote expected at end of char constant.", getCurrent());
return token;
}
Token LexicalAnalyzer::makeString(){
string str;
nextChar();
for(char c = nextChar(); c != '"'; c = nextChar()){
if(c == '\n'){
error("String literal may not contain newline (use \n instead).", getCurrent());
}
str += c;
}
Token token;
token.type = Token::Tok_String;
token.attribute = str;
return token;
}
bool LexicalAnalyzer::isIdentifierChar(char c){
if(isalnum(c) || c == '_')
return true;
return false;
}
bool LexicalAnalyzer::isPunctuatorChar(char c){
if(isIdentifierChar(c) || iswspace(c))
return false;
return true;
}
Token LexicalAnalyzer::makeIdentifier(){
// Build attribute
string str;
for(char c = nextChar(); isIdentifierChar(c); c = nextChar()){
str += c;
if(!isIdentifierChar(curChar()))
break;
}
Token tok;
tok.attribute = str;
// Check if it's a keyword
if(keywords.find(str) != keywords.end()){
tok.type = Token::Tok_Keyword;
return tok;
}
tok.type = Token::Tok_Identifier;
return tok;
}
bool LexicalAnalyzer::isPunctuatorValid(const string &s){
if(punctuators.find(s) != punctuators.end())
return true;
return false;
}
Token LexicalAnalyzer::makePunctuator(){
string str;
str += nextChar();
for(char c = curChar(); isPunctuatorChar(c) && isPunctuatorValid(str + c); c = nextChar()){
str += c;
}
Token token;
token.attribute = str;
token.type = Token::Tok_Punctuator;
if(punctuators.find(str) != punctuators.end()){
return token;
}
// We get here if nothing else worked.
error(str + " is not a recognized token.", getCurrent());
exit(-1);
}
Token LexicalAnalyzer::getCurrent(){
return current;
}
Token LexicalAnalyzer::getNext(){
Token t;
t.posSource = (unsigned)std::distance(source.begin(), sourcePos);
if(!hasNext())
return Token();
char c =curChar();
while(iswspace(c)){
nextChar();
c = curChar();
}
if(c == '\0'){
return Token();
}
// Numeric constant
else if(isdigit(c)){
t = makeNumber();
}
// String literal
else if(c == '"'){
t = makeString();
}
else if(c == ('\'')){
t = makeChar();
}
// Try keywords and identifiers.
else if(isalpha(c) || c == '_')
t = makeIdentifier();
// Finally, try to find a punctuator.
else t = makePunctuator();
t.posLine = curLine;
t.posColumn = curColumn;
current = t;
return t;
}
void LexicalAnalyzer::error(const string &msg, Token token){
std::cerr << "Error: " << msg << "\nAt line ";
std::cerr << token.posLine << ", " << token.posColumn << std::endl;
exit(-1);
}
LexicalAnalyzer::LexicalAnalyzer() {
}
LexicalAnalyzer::~LexicalAnalyzer(){
}
| [
"[email protected]"
] | |
a86aa3cdd0146ccc461058d7988cb30e7be340d8 | 70f72f2dc3779287e693135efc98479be69553c7 | /sandbox/nfc/src/NDEF/NfcAdapter.cpp | d45eaf17f3bd965f0053d8f26487eb22030afb30 | [
"BSD-3-Clause"
] | permissive | MKreher/ble_scanner | 933845031a786858bfccbd404f8b9b3f8b9ae270 | 899b2004e9e9ec6c4b4a6fa0b09a089a409abb14 | refs/heads/master | 2021-07-04T01:56:24.174083 | 2021-05-16T16:17:01 | 2021-05-16T16:17:01 | 238,542,086 | 0 | 1 | null | 2020-03-07T21:03:44 | 2020-02-05T20:29:18 | C | UTF-8 | C++ | false | false | 4,443 | cpp | #include <NfcAdapter.h>
extern "C" {
#include "nrf_log.h"
}
NfcAdapter::NfcAdapter(nrf_drv_spi_t p_spi)
{
shield = new PN532(p_spi);
}
NfcAdapter::~NfcAdapter(void)
{
delete shield;
}
boolean NfcAdapter::begin(boolean verbose)
{
shield->begin();
uint32_t versiondata = shield->getFirmwareVersion();
if (! versiondata)
{
NRF_LOG_DEBUG("Didn't find PN53x board");
return false;
}
if (verbose)
{
NRF_LOG_DEBUG("Found chip PN5%02x", (versiondata >> 24) & 0xFF);
NRF_LOG_DEBUG("Firmware version %d.%d", (versiondata >> 16) & 0xFF, (versiondata >> 8) & 0xFF);
}
// configure board to read RFID tags
shield->SAMConfig();
return true;
}
boolean NfcAdapter::tagPresent(unsigned long timeout)
{
uint8_t success;
uidLength = 0;
if (timeout == 0)
{
success = shield->readPassiveTargetID(PN532_MIFARE_ISO14443A_BAUD, uid, (uint8_t*)&uidLength);
}
else
{
success = shield->readPassiveTargetID(PN532_MIFARE_ISO14443A_BAUD, uid, (uint8_t*)&uidLength, timeout);
}
return success;
}
boolean NfcAdapter::erase()
{
NdefMessage message = NdefMessage();
message.addEmptyRecord();
return write(message);
}
boolean NfcAdapter::format()
{
boolean success;
if (uidLength == 4)
{
MifareClassic mifareClassic = MifareClassic(*shield);
success = mifareClassic.formatNDEF(uid, uidLength);
}
else
{
NRF_LOG_DEBUG("Unsupported Tag.");
success = false;
}
return success;
}
boolean NfcAdapter::clean()
{
uint8_t type = guessTagType();
if (type == TAG_TYPE_MIFARE_CLASSIC)
{
NRF_LOG_DEBUG("Cleaning Mifare Classic");
MifareClassic mifareClassic = MifareClassic(*shield);
return mifareClassic.formatMifare(uid, uidLength);
}
else if (type == TAG_TYPE_2)
{
NRF_LOG_DEBUG("Cleaning Mifare Ultralight");
MifareUltralight ultralight = MifareUltralight(*shield);
return ultralight.clean();
}
else
{
NRF_LOG_DEBUG("No driver for card type %d", type);
return false;
}
}
NfcTag* NfcAdapter::read()
{
uint8_t type = guessTagType();
if (type == TAG_TYPE_MIFARE_CLASSIC)
{
NRF_LOG_DEBUG("Reading Mifare Classic");
MifareClassic mifareClassic = MifareClassic(*shield);
return mifareClassic.read(uid, uidLength);
}
else if (type == TAG_TYPE_2)
{
NRF_LOG_DEBUG("Reading Mifare Ultralight");
MifareUltralight ultralight = MifareUltralight(*shield);
return ultralight.read(uid, uidLength);
}
else if (type == TAG_TYPE_UNKNOWN)
{
NRF_LOG_DEBUG("Can not determine tag type");
return new NfcTag(uid, uidLength, NFCTAG_OTHER_ERROR);
}
else
{
NRF_LOG_DEBUG("No driver for card type %d", type);
return new NfcTag(uid, uidLength, NFCTAG_OTHER_ERROR);
}
}
boolean NfcAdapter::write(NdefMessage& ndefMessage)
{
boolean success;
uint8_t type = guessTagType();
if (type == TAG_TYPE_MIFARE_CLASSIC)
{
NRF_LOG_DEBUG("Writing Mifare Classic");
MifareClassic mifareClassic = MifareClassic(*shield);
success = mifareClassic.write(ndefMessage, uid, uidLength);
}
else if (type == TAG_TYPE_2)
{
NRF_LOG_DEBUG("Writing Mifare Ultralight");
MifareUltralight mifareUltralight = MifareUltralight(*shield);
success = mifareUltralight.write(ndefMessage, uid, uidLength);
}
else if (type == TAG_TYPE_UNKNOWN)
{
NRF_LOG_DEBUG("Can not determine tag type");
success = false;
}
else
{
NRF_LOG_DEBUG("No driver for card type %d", type);
success = false;
}
return success;
}
// TODO this should return a Driver MifareClassic, MifareUltralight, Type 4, Unknown
// Guess Tag Type by looking at the ATQA and SAK values
// Need to follow spec for Card Identification. Maybe AN1303, AN1305 and ???
unsigned int NfcAdapter::guessTagType()
{
// 4 byte id - Mifare Classic
// - ATQA 0x4 && SAK 0x8
// 7 byte id
// - ATQA 0x44 && SAK 0x8 - Mifare Classic
// - ATQA 0x44 && SAK 0x0 - Mifare Ultralight NFC Forum Type 2
// - ATQA 0x344 && SAK 0x20 - NFC Forum Type 4
if (uidLength == 4)
{
return TAG_TYPE_MIFARE_CLASSIC;
}
else
{
return TAG_TYPE_2;
}
}
| [
"[email protected]"
] | |
0f1a05451e2c31f42b84f460b267b3cbb0416ad5 | 36c31b485a5906ab514c964491b8f001a70a67f5 | /Codeforces/CF 1500 - 1599/CF1555E/CF1555A.cpp | 7a698b9f5a14e35a2f016ad71b621c00f3314fdc | [] | no_license | SMiles02/CompetitiveProgramming | 77926918d5512824900384639955b31b0d0a5841 | 035040538c7e2102a88a2e3587e1ca984a2d9568 | refs/heads/master | 2023-08-18T22:14:09.997704 | 2023-08-13T20:30:42 | 2023-08-13T20:30:42 | 277,504,801 | 25 | 5 | null | 2022-11-01T01:34:30 | 2020-07-06T09:54:44 | C++ | UTF-8 | C++ | false | false | 1,018 | cpp | //#pragma GCC optimize("Ofast,unroll-loops")
//#pragma GCC target("avx,avx2,sse,sse2")
#include <bits/stdc++.h>
#define ll long long
#define sz(x) (int)(x).size()
using namespace std;
//mt19937 rng(chrono::steady_clock::now().time_since_epoch().count());
//uniform_int_distribution<int>(1000,10000)(rng)
ll binpow(ll a, ll b)
{
ll res = 1;
while (b > 0)
{
if (b & 1)
res = res * a;
a = a * a;
b >>= 1;
}
return res;
}
ll gcd(ll a,ll b)
{
if (b==0) return a;
return gcd(b,a%b);
}
string to_upper(string a)
{
for (int i=0;i<(int)a.size();++i) if (a[i]>='a' && a[i]<='z') a[i]-='a'-'A';
return a;
}
string to_lower(string a)
{
for (int i=0;i<(int)a.size();++i) if (a[i]>='A' && a[i]<='Z') a[i]+='a'-'A';
return a;
}
void solve()
{
ll n;
cin>>n;
n+=n&1;
cout<<max(15LL,(n/2)*5)<<"\n";
}
int main()
{
ios_base::sync_with_stdio(0); cin.tie(0);
int n;
cin>>n;
while (n--)
solve();
return 0;
} | [
"[email protected]"
] | |
9223607990602f3155b56eccea69f2d11778079b | b0b96f7c89b458f7fe6a7f2feaf8684992a48c26 | /src/leveldb/port/port_posix.cc | dc4a3394e6e1c5d5d73ca1a23e596051d815e291 | [
"MIT",
"BSD-3-Clause",
"LicenseRef-scancode-generic-cla"
] | permissive | straks/straks | 28cf4ba40db492df7a59110e77b615727c17cf26 | cbb43f453231aa71a991249f61d3f35fe1503a1e | refs/heads/master | 2023-02-09T00:02:38.845280 | 2019-06-15T23:30:15 | 2019-06-15T23:30:15 | 110,913,987 | 68 | 53 | MIT | 2018-05-31T13:46:09 | 2017-11-16T02:45:14 | C++ | UTF-8 | C++ | false | false | 1,415 | cc | // Copyright (c) 2011 The LevelDB Authors. All rights reserved.
// Use of this source code is governed by a STAK-style license that can be
// found in the LICENSE file. See the AUTHORS file for names of contributors.
#include "port/port_posix.h"
#include <cstdlib>
#include <stdio.h>
#include <string.h>
namespace leveldb {
namespace port {
static void PthreadCall(const char* label, int result) {
if (result != 0) {
fprintf(stderr, "pthread %s: %s\n", label, strerror(result));
abort();
}
}
Mutex::Mutex() { PthreadCall("init mutex", pthread_mutex_init(&mu_, NULL)); }
Mutex::~Mutex() { PthreadCall("destroy mutex", pthread_mutex_destroy(&mu_)); }
void Mutex::Lock() { PthreadCall("lock", pthread_mutex_lock(&mu_)); }
void Mutex::Unlock() { PthreadCall("unlock", pthread_mutex_unlock(&mu_)); }
CondVar::CondVar(Mutex* mu)
: mu_(mu) {
PthreadCall("init cv", pthread_cond_init(&cv_, NULL));
}
CondVar::~CondVar() { PthreadCall("destroy cv", pthread_cond_destroy(&cv_)); }
void CondVar::Wait() {
PthreadCall("wait", pthread_cond_wait(&cv_, &mu_->mu_));
}
void CondVar::Signal() {
PthreadCall("signal", pthread_cond_signal(&cv_));
}
void CondVar::SignalAll() {
PthreadCall("broadcast", pthread_cond_broadcast(&cv_));
}
void InitOnce(OnceType* once, void (*initializer)()) {
PthreadCall("once", pthread_once(once, initializer));
}
} // namespace port
} // namespace leveldb
| [
"[email protected]"
] | |
806192b78c221071c57f6010fc86a519b10ee703 | 94d8b970923236e895e34f79a56f6b13b373f252 | /05-2020/QBHEAP.cpp | 1fe8f87b29ca1fff8a2e05b9afb3ff772002845b | [] | no_license | vinhdq842/Cpp-CP | 5727a3c7ba08f2888204c33d9622a7c7749540f9 | f43c8b932a956a0c195f1ead375dbb1a81a81c20 | refs/heads/main | 2023-08-20T18:57:34.323893 | 2021-10-29T02:43:54 | 2021-10-29T02:43:54 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,839 | cpp | //
// Created by admin on 04/05/2020.
//
#include<iostream>
#include <vector>
using namespace std;
#define fast_in_out ios_base::sync_with_stdio(false); cin.tie(nullptr); cout.tie(nullptr);
#define ll long long
class PriorityQueue {
private:
int n = 0;
ll arr[15000]{};
public:
bool empty() const {
return n == 0;
}
void push(ll val) {
if (n == 15000)return;
arr[n++] = val;
int index = n - 1;
while (index != 0 && arr[(index - 1) / 2] < arr[index]) {
swap(arr[(index - 1) / 2], arr[index]);
index = (index - 1) / 2;
}
}
ll pop() {
if (empty())return 0;
ll rs = arr[0];
arr[0] = arr[--n];
int index = 0;
while (index * 2 + 1 < n) {
if (index * 2 + 2 < n && arr[index * 2 + 1] < arr[index * 2 + 2])index = index * 2 + 2;
else index = index * 2 + 1;
if (arr[index] < arr[(index - 1) / 2])return rs;
swap(arr[index], arr[(index - 1) / 2]);
}
return rs;
}
ll top() {
return arr[0];
}
private:
static void swap(ll &a, ll &b) {
ll tmp = a;
a = b;
b = tmp;
}
};
int main() {
fast_in_out
PriorityQueue queue;
char operation;
while (cin >> operation) {
if (operation == '+') {
ll n;
cin >> n;
queue.push(n);
} else if (!queue.empty()) {
ll rm = queue.top();
while (!queue.empty() && queue.top() == rm)queue.pop();
}
}
vector<ll> rs;
while (!queue.empty()) {
ll n = queue.top();
rs.push_back(n);
while (!queue.empty() && queue.top() == n)queue.pop();
}
cout << rs.size() << "\n";
for (ll &a:rs)cout << a << " ";
return 0;
}
| [
"[email protected]"
] | |
16fad7ab43fede9de4c0b0e225be9bb36efcf307 | 86ad4d1a1306dd0a6020ec7e914e6a76f6577318 | /include/rangeimage/MainController.h | ae13822f008781757189d91e1632e3e40ada87e9 | [] | no_license | mfkiwl/Elasticfusion-semantic | a8239161ab64f2f16c509358e42903e84085eab4 | f0ef676945ac53156c58b0a1f034b4889fd160ba | refs/heads/master | 2021-12-13T00:30:41.669664 | 2017-03-11T04:22:18 | 2017-03-11T04:22:18 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,549 | h | /*
* This file is part of ElasticFusion.
*
* Copyright (C) 2015 Imperial College London
*
* The use of the code within this file and all code within files that
* make up the software that is ElasticFusion is permitted for
* non-commercial purposes only. The full terms and conditions that
* apply to the code within this file are detailed within the LICENSE.txt
* file and at <http://www.imperial.ac.uk/dyson-robotics-lab/downloads/elastic-fusion/elastic-fusion-license/>
* unless explicitly stated. By downloading this file you agree to
* comply with these terms.
*
* If you wish to use any of this code for commercial purposes then
* please email [email protected].
*
*/
#include "../../src/ElasticFusion.h"
#include "../../src/Utils/Parse.h"
#include "../../src/Tools/GUI.h"
#include "../../src/Tools/GroundTruthOdometry.h"
#include "../../src/Tools/RawLogReader.h"
#include "../../src/Tools/LiveLogReader.h"
#include <opencv2/core/core.hpp>
#include <opencv2/highgui/highgui.hpp>
#include <opencv/cv.h>
//#include "rangeimage/rangeimage.h"
#ifndef MAINCONTROLLER_H_
#define MAINCONTROLLER_H_
class MainController
{
public:
MainController();
virtual ~MainController();
void initializeeFusion();
void launch(const int &index_file_rgb, int &dir_num, cv::Mat &image_in, cv::Mat &depth_in, cv::Mat &labelImg/*, Eigen::Matrix4f tran*/, const bool flag_slam, int64_t count_global);
void run(const int &index_file_rgb, int &dir_num, cv::Mat &image_in, cv::Mat &depth_in, cv::Mat &labelImg, const bool flag_slam, int64_t count_global);
private:
void loadCalibration(const std::string & filename);
ElasticFusion *eFusion;
bool good;
GUI * gui;
GroundTruthOdometry * groundTruthOdometry;
LogReader * logReader;
bool iclnuim;
std::string logFile;
std::string poseFile;
float confidence,
depth,
icp,
icpErrThresh,
covThresh,
photoThresh,
fernThresh;
int timeDelta,
icpCountThresh,
start,
end;
bool fillIn,
openLoop,
reloc,
frameskip,
quiet,
fastOdom,
so3,
rewind,
frameToFrameRGB;
int framesToSkip;
bool streaming;
bool resetButton;
Resize * resizeStream;
};
#endif /* MAINCONTROLLER_H_ */
| [
"[email protected]"
] | |
1bfd4f2364a0b4350eb5dd7559806dfdd7472aa4 | 1fd3f37e457585cb416f59380320b31b235cc6ad | /SDK/Ethereum/EthereumEWM.cpp | abf06762704472aec208d52d98e5bc2c0645af4a | [
"MIT"
] | permissive | raozhiming/Elastos.ELA.SPV.Cpp | 015a3e491952da29a2927c79a603ea240c83e0c9 | fb398d2d0a31f6e4cf7e81e1b3f911721fe8eb15 | refs/heads/master | 2021-06-25T19:36:52.950782 | 2020-09-03T07:33:50 | 2020-09-03T07:46:56 | 188,798,474 | 0 | 0 | MIT | 2019-05-27T08:00:29 | 2019-05-27T08:00:28 | null | UTF-8 | C++ | false | false | 27,971 | cpp | /*
* EthereumEWM
*
* Created by Ed Gamble <[email protected]> on 3/7/18.
* Copyright (c) 2018 Breadwinner AG. All right reserved.
* Copyright (c) 2020 Elastos Foundation
*
* 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 "EthereumEWM.h"
#include <Common/ErrorChecker.h>
#include <ethereum/BREthereum.h>
#include <support/BRBIP39Mnemonic.h>
#include <vector>
namespace Elastos {
namespace ElaWallet {
static void clientGetGasPrice(BREthereumClientContext context, BREthereumEWM node,
BREthereumWallet wid, int id) {
if (NULL == context) return;
EthereumEWM *c = (EthereumEWM *) context;
c->trampolineGetGasPrice(node, wid, id);
}
static void clientEstimateGas(BREthereumClientContext context, BREthereumEWM node,
BREthereumWallet wid, BREthereumTransfer tid,
const char *from, const char *to, const char *amount,
const char *data, int id) {
if (NULL == context) return;
EthereumEWM *c = (EthereumEWM *) context;
c->trampolineGetGasEstimate(node, wid, tid,
from ? from : "",
to ? to : "",
amount ? amount : "",
data ? data : "", id);
}
static void clientGetBalance(BREthereumClientContext context, BREthereumEWM node,
BREthereumWallet wid, const char *account, int id) {
if (NULL == context) return;
EthereumEWM *c = (EthereumEWM *) context;
c->trampolineGetBalance(node, wid, account ? account : "", id);
}
static void clientSubmitTransaction(BREthereumClientContext context, BREthereumEWM node,
BREthereumWallet wid, BREthereumTransfer tid,
const char *transaction, int id) {
if (NULL == context) return;
EthereumEWM *c = (EthereumEWM *) context;
c->trampolineSubmitTransaction(node, wid, tid, transaction ? transaction : "", id);
}
static void clientGetTransactions(BREthereumClientContext context, BREthereumEWM node,
const char *address, uint64_t begBlockNumber, uint64_t endBlockNumber,
int id) {
if (NULL == context) return;
EthereumEWM *c = (EthereumEWM *) context;
c->trampolineGetTransactions(node, address ? address : "", begBlockNumber, endBlockNumber, id);
}
static void clientGetLogs(BREthereumClientContext context, BREthereumEWM node,
const char *contract, const char *address, const char *event,
uint64_t begBlockNumber, uint64_t endBlockNumber, int rid) {
if (NULL == context) return;
EthereumEWM *c = (EthereumEWM *) context;
c->trampolineGetLogs(node, contract ? contract : "",
address ? address : "",
event ? event : "",
begBlockNumber, endBlockNumber, rid);
}
static void clientGetBlocks(BREthereumClientContext context, BREthereumEWM ewm,
const char *address, BREthereumSyncInterestSet interests,
uint64_t blockNumberStart, uint64_t blockNumberStop, int rid) {
if (NULL == context) return;
EthereumEWM *c = (EthereumEWM *) context;
c->trampolineGetBlocks(ewm, address ? address : "",
interests, blockNumberStart, blockNumberStop, rid);
}
static void clientGetTokens(BREthereumClientContext context, BREthereumEWM ewm, int rid) {
if (NULL == context) return;
EthereumEWM *c = (EthereumEWM *) context;
c->trampolineGetTokens(ewm, rid);
}
static void clientGetBlockNumber(BREthereumClientContext context, BREthereumEWM node, int id) {
if (NULL == context) return;
EthereumEWM *c = (EthereumEWM *) context;
c->trampolineGetBlockNumber(node, id);
}
static void clientGetNonce(BREthereumClientContext context, BREthereumEWM node, const char *address, int id) {
if (NULL == context) return;
EthereumEWM *c = (EthereumEWM *) context;
c->trampolineGetNonce(node, address ? address : "", id);
}
static void clientEWMEventHandler(BREthereumClientContext context, BREthereumEWM ewm, BREthereumEWMEvent event,
BREthereumStatus status, const char *errorDescription) {
if (NULL == context) return;
EthereumEWM *c = (EthereumEWM *) context;
c->trampolineEWMEvent(ewm, event, status, errorDescription ? errorDescription : "");
}
static void clientPeerEventHandler(BREthereumClientContext context, BREthereumEWM ewm,
BREthereumPeerEvent event, BREthereumStatus status,
const char *errorDescription) {
if (NULL == context) return;
EthereumEWM *c = (EthereumEWM *) context;
c->trampolinePeerEvent(ewm, event, status, errorDescription ? errorDescription : "");
}
static void clientWalletEventHandler(BREthereumClientContext context, BREthereumEWM node,
BREthereumWallet wid, BREthereumWalletEvent event,
BREthereumStatus status, const char *errorDescription) {
if (NULL == context) return;
EthereumEWM *c = (EthereumEWM *) context;
c->trampolineWalletEvent(node, wid, event, status, errorDescription ? errorDescription : "");
}
static void clientTokenEventHandler(BREthereumClientContext context, BREthereumEWM ewm,
BREthereumToken token, BREthereumTokenEvent event) {
if (NULL == context) return;
EthereumEWM *c = (EthereumEWM *) context;
c->trampolineTokenEvent(ewm, token, event);
}
static void clientTransferEventHandler(BREthereumClientContext context, BREthereumEWM node,
BREthereumWallet wid, BREthereumTransfer tid,
BREthereumTransferEvent event, BREthereumStatus status,
const char *errorDescription) {
if (NULL == context) return;
EthereumEWM *c = (EthereumEWM *) context;
c->trampolineTransferEvent(node, wid, tid, event, status, errorDescription ? errorDescription : "");
}
std::string EthereumEWM::Status2String(Status s) {
std::string status;
switch (s) {
case SUCCESS: status = "SUCCESS"; break;
// Reference access,
case ERROR_UNKNOWN_NODE: status = "ERROR_UNKNOWN_NODE"; break;
case ERROR_UNKNOWN_TRANSACTION: status = "ERROR_UNKNOWN_TRANSACTION"; break;
case ERROR_UNKNOWN_ACCOUNT: status = "ERROR_UNKNOWN_ACCOUNT"; break;
case ERROR_UNKNOWN_WALLET: status = "ERROR_UNKNOWN_WALLET"; break;
case ERROR_UNKNOWN_BLOCK: status = "ERROR_UNKNOWN_BLOCK"; break;
case ERROR_UNKNOWN_LISTENER: status = "ERROR_UNKNOWN_LISTENER"; break;
// Node
case ERROR_NODE_NOT_CONNECTED: status = "ERROR_NODE_NOT_CONNECTED"; break;
// Transaction
case ERROR_TRANSACTION_X: status = "ERROR_TRANSACTION_X"; break;
// Acount
// Wallet
// Block
// Listener
// Numeric
case ERROR_NUMERIC_PARSE: status = "ERROR_NUMERIC_PARSE"; break;
case NUMBER_OF_STATUS_EVENTS: status = "NUMBER_OF_STATUS_EVENTS"; break;
default: status = "UNKNOWN"; break;
}
return status;
}
std::string EthereumEWM::WalletEvent2String(WalletEvent e) {
std::string event;
switch (e) {
case WalletEvent_CREATED: event = "CREATED"; break;
case WalletEvent_BALANCE_UPDATED: event = "BALANCE_UPDATED"; break;
case WalletEvent_DEFAULT_GAS_LIMIT_UPDATED: event = "DEFAULT_GAS_LIMIT_UPDATED"; break;
case WalletEvent_DEFAULT_GAS_PRICE_UPDATED: event = "DEFAULT_GAS_PRICE_UPDATED"; break;
case WalletEvent_DELETED: event = "DELETED"; break;
case WalletEvent_NUMBER_OF_WALLET_EVENTS: event = "NUMBER_OF_WALLET_EVENTS"; break;
default: event = "UNDEFINE"; break;
}
return event;
}
std::string EthereumEWM::TokenEvent2String(TokenEvent e) {
std::string event;
switch (e) {
case TokenEvent_CREATED: event = "CREATED"; break;
case TokenEvent_DELETED: event = "DELETED"; break;
case TokenEvent_NUMBER_OF_TOKEN_EVENTS: event = "NUMBER_OF_TOKEN_EVENTS"; break;
default: event = "UNDEFINE"; break;
}
return event;
}
std::string EthereumEWM::BlockEvent2String(BlockEvent e) {
std::string event;
switch (e) {
case BlockEvent_CREATED: event = "CREATED"; break;
case BlockEvent_CHAINED: event = "CHAINED"; break;
case BlockEvent_ORPHANED: event = "ORPHANED"; break;
case BlockEvent_DELETED: event = "DELETED"; break;
case BlockEvent_NUMBER_OF_BLOCK_EVENT: event = "NUMBER_OF_BLOCK_EVENT"; break;
default: event = "UNDEFINE"; break;
}
return event;
}
std::string EthereumEWM::TransactionEvent2String(TransactionEvent e) {
std::string event;
switch (e) {
case TransactionEvent_CREATED: event = "CREATED"; break;
case TransactionEvent_SIGNED: event = "SIGNED"; break;
case TransactionEvent_SUBMITTED: event = "SUBMITTED"; break;
case TransactionEvent_INCLUDED: event = "INCLUDED"; break; // aka confirmed
case TransactionEvent_ERRORED: event = "ERRORED"; break;
case TransactionEvent_GAS_ESTIMATE_UPDATED: event = "GAS_ESTIMATE_UPDATED"; break;
case TransactionEvent_BLOCK_CONFIRMATIONS_UPDATED: event = "BLOCK_CONFIRMATIONS_UPDATED"; break;
case TransactionEvent_DELETED: event = "DELETED"; break;
case TransactionEvent_NUMBER_OF_TRANSACTION_EVENTS: event = "NUMBER_OF_TRANSACTION_EVENTS"; break;
default: event = "UNDEFINE"; break;
}
return event;
}
std::string EthereumEWM::EWMEvent2String(EWMEvent e) {
std::string event;
switch (e) {
case EWMEvent_CREATED: event = "CREATED"; break;
case EWMEvent_SYNC_STARTED: event = "SYNC_STARTED"; break;
case EWMEvent_SYNC_CONTINUES: event = "SYNC_CONTINUES"; break;
case EWMEvent_SYNC_STOPPED: event = "SYNC_STOPPED"; break;
case EWMEvent_NETWORK_UNAVAILABLE: event = "NETWORK_UNAVAILABLE"; break;
case EWMEvent_DELETED: event = "DELETED"; break;
case EWMEvent_NUMBER_OF_EWM_EVENTS: event = "NUMBER_OF_EWM_EVENTS"; break;
default: event = "UNDEFINE"; break;
}
return event;
}
std::string EthereumEWM::PeerEvent2String(PeerEvent e) {
std::string event;
switch (e) {
case PeerEvent_CREATED: event = "CREATED"; break;
case PeerEvent_DELETED: event = "DELETED"; break;
case PeerEvent_NUMBER_OF_PEER_EVENTS: event = "NUMBER_OF_PEER_EVENTS"; break;
default: event = "UNDEFINE"; break;
}
return event;
}
// Client Announcers
void EthereumEWM::announceBalance(BREthereumWallet wid, const std::string &balance, int rid) {
ewmAnnounceWalletBalance(_ewm, wid, balance.c_str(), rid);
}
void EthereumEWM::announceGasPrice(BREthereumWallet wid, const std::string &gasPrice, int rid) {
ewmAnnounceGasPrice(_ewm, wid, gasPrice.c_str(), rid);
}
void
EthereumEWM::announceGasEstimate(BREthereumWallet wid, BREthereumTransfer tid, const std::string &gasEstimate,
int rid) {
ewmAnnounceGasEstimate(_ewm, wid, tid, gasEstimate.c_str(), rid);
}
void
EthereumEWM::announceSubmitTransaction(BREthereumWallet wid, BREthereumTransfer tid, const std::string &hash,
int errorCode,
const std::string &errorMessage, int rid) {
ewmAnnounceSubmitTransfer(_ewm, wid, tid, hash.c_str(), errorCode, errorMessage.c_str(), rid);
}
void EthereumEWM::announceTransaction(int id,
const std::string &hash,
const std::string &from,
const std::string &to,
const std::string &contract,
const std::string &amount, // value
const std::string &gasLimit,
const std::string &gasPrice,
const std::string &data,
const std::string &nonce,
const std::string &gasUsed,
const std::string &blockNumber,
const std::string &blockHash,
const std::string &blockConfirmations,
const std::string &blockTransactionIndex,
const std::string &blockTimestamp,
// cumulative gas used,
// confirmations
// txreceipt_status
const std::string &isError) {
ewmAnnounceTransaction(_ewm, id, hash.data(), from.data(), to.data(), contract.data(), amount.data(),
gasLimit.data(), gasPrice.data(), data.data(), nonce.data(), gasUsed.data(),
blockNumber.data(), blockHash.data(), blockConfirmations.data(),
blockTransactionIndex.data(), blockTimestamp.data(), isError.data());
}
void EthereumEWM::announceTransactionComplete(int id, bool success) {
ewmAnnounceTransactionComplete(_ewm, id, AS_ETHEREUM_BOOLEAN(success));
}
void EthereumEWM::announceLog(int id,
const std::string &hash,
const std::string &contract,
const std::vector<std::string> &topics,
const std::string &data,
const std::string &gasPrice,
const std::string &gasUsed,
const std::string &logIndex,
const std::string &blockNumber,
const std::string &blockTransactionIndex,
const std::string &blockTimestamp) {
size_t topicsCount = topics.size();
const char *ctopics[topicsCount];
for (size_t i = 0; i < topicsCount; ++i)
ctopics[i] = topics[i].data();
ewmAnnounceLog(_ewm, id, hash.data(), contract.data(), topics.size(), ctopics, data.data(),
gasPrice.data(), gasUsed.data(), logIndex.data(), blockNumber.data(),
blockTransactionIndex.data(), blockTimestamp.data());
}
void EthereumEWM::announceLogComplete(int id, bool success) {
ewmAnnounceLogComplete(_ewm, id, AS_ETHEREUM_BOOLEAN(success));
}
void EthereumEWM::announceBlockNumber(const std::string &blockNumber, int rid) {
ewmAnnounceBlockNumber(_ewm, blockNumber.data(), rid);
}
void EthereumEWM::announceNonce(const std::string &address, const std::string &nonce, int rid) {
ewmAnnounceNonce(_ewm, address.data(), nonce.data(), rid);
}
void EthereumEWM::announceToken(const std::string &address,
const std::string &symbol,
const std::string &name,
const std::string &description,
int decimals,
const std::string &defaultGasLimit,
const std::string &defaultGasPrice,
int rid) {
ewmAnnounceToken(_ewm, address.data(), symbol.data(), name.data(), description.data(), decimals,
defaultGasLimit.data(), defaultGasPrice.data(), rid);
}
void EthereumEWM::announceTokenComplete(int rid, bool success) {
ewmAnnounceTokenComplete(_ewm, AS_ETHEREUM_BOOLEAN(success), rid);
}
EthereumNetworkPtr EthereumEWM::getNetwork() const {
return _network;
}
EthereumAccountPtr EthereumEWM::getAccount() const {
return _account;
}
std::string EthereumEWM::getAddress() const {
return _account->getPrimaryAddress();
}
bytes_t EthereumEWM::getAddressPublicKey() const {
return _account->getPrimaryAddressPublicKey();
}
EthereumWalletPtr EthereumEWM::walletLookupOrCreate(BREthereumWallet wid, const EthereumTokenPtr &token) {
WalletMap::iterator it = _wallets.find(wid);
if (it != _wallets.end()) {
return it->second;
}
EthereumTokenPtr t;
if (nullptr == token) {
BREthereumToken tokenRef = ewmWalletGetToken(_ewm, (BREthereumWallet) wid);
if (NULL != tokenRef) {
t = lookupTokenByReference(tokenRef);
}
}
EthereumWalletPtr wallet;
if (nullptr != t) {
wallet = EthereumWalletPtr(new EthereumWallet(this, (BREthereumWallet) wid, _account, _network, t));
} else {
wallet = EthereumWalletPtr(new EthereumWallet(this, (BREthereumWallet) wid, _account, _network));
}
_wallets[wid] = wallet;
return wallet;
}
EthereumWalletPtr EthereumEWM::getWallet() {
BREthereumWallet wid = ewmGetWallet(_ewm);
return walletLookupOrCreate(wid, nullptr);
}
EthereumWalletPtr EthereumEWM::getWallet(const EthereumTokenPtr &token) {
BREthereumWallet wid = ewmGetWalletHoldingToken(_ewm, token->getRaw());
return walletLookupOrCreate(wid, token);
}
EthereumWalletPtr EthereumEWM::getWalletByIdentifier(BREthereumWallet wid) {
return walletLookupOrCreate(wid, nullptr);
}
EthereumTransferPtr EthereumEWM::transactionLookupOrCreate(BREthereumTransfer tid) {
TransferMap::iterator it = _transactions.find(tid);
if (it != _transactions.end()) {
return it->second;
}
BREthereumToken token = ewmTransferGetToken(_ewm, tid);
EthereumTransferPtr transfer(new EthereumTransfer(this, tid,
(NULL == token ? EthereumAmount::Unit::ETHER_ETHER
: EthereumAmount::Unit::TOKEN_DECIMAL)));
_transactions[tid] = transfer;
return transfer;
}
EthereumBlockPtr EthereumEWM::blockLookupOrCreate(BREthereumBlock bid) {
BlockMap::iterator it = _blocks.find(bid);
if (it != _blocks.end())
return it->second;
EthereumBlockPtr block(new EthereumBlock(this, bid));
_blocks[bid] = block;
return block;
}
uint64_t EthereumEWM::getBlockHeight() const {
return ewmGetBlockHeight(_ewm);
}
std::vector<EthereumTokenPtr> EthereumEWM::getTokens() const {
std::vector<EthereumTokenPtr> tokens;
for (TokenAddressMap::const_iterator it = _tokensByAddress.cbegin(); it != _tokensByAddress.cend(); ++it) {
tokens.push_back(it->second);
}
return tokens;
}
EthereumTokenPtr EthereumEWM::lookupTokenByReference(BREthereumToken reference) const {
if (_tokensByReference.find(reference) == _tokensByReference.end())
return nullptr;
return _tokensByReference.at(reference);
}
EthereumTokenPtr EthereumEWM::addTokenByReference(BREthereumToken reference) {
EthereumTokenPtr token(new EthereumToken(reference));
_tokensByReference[reference] = token;
std::string address = token->getAddressLowerCase();
_tokensByAddress[address] = token;
return token;
}
EthereumTokenPtr EthereumEWM::lookupToken(const std::string &address) const {
std::string addr = address;
std::transform(addr.begin(), addr.end(), addr.begin(),
[](unsigned char c) { return std::tolower(c); });
if (_tokensByAddress.find(addr) == _tokensByAddress.end())
return nullptr;
return _tokensByAddress.at(addr);
}
void EthereumEWM::updateTokens() {
ewmUpdateTokens(_ewm);
}
EthereumEWM::EthereumEWM(Client *client, EthereumEWM::Mode mode, const EthereumNetworkPtr &network,
const std::string &storagePath, const std::string &paperKey,
const std::vector<std::string> &wordList) :
EthereumEWM(createRawEWM(mode, network->getRaw(), storagePath, paperKey, wordList), client, network) {
}
EthereumEWM::EthereumEWM(Client *client, EthereumEWM::Mode mode, const EthereumNetworkPtr &network,
const std::string &storagePath, const bytes_t &publicKey) :
EthereumEWM(createRawEWMPublicKey(mode, network->getRaw(), storagePath, publicKey), client, network) {
}
EthereumEWM::EthereumEWM(BREthereumEWM ewm, EthereumEWM::Client *client, const EthereumNetworkPtr &network) :
_ewm(ewm),
_client(client),
_network(network),
_account(EthereumAccountPtr(new EthereumAccount(this, ewmGetAccount(ewm)))) {
}
BREthereumEWM EthereumEWM::createRawEWM(Mode mode, BREthereumNetwork network, const std::string &storagePath,
BREthereumAccount account) {
BREthereumClient brClient = {
this,
clientGetBalance,
clientGetGasPrice,
clientEstimateGas,
clientSubmitTransaction,
clientGetTransactions,
clientGetLogs,
clientGetBlocks,
clientGetTokens,
clientGetBlockNumber,
clientGetNonce,
clientEWMEventHandler,
clientPeerEventHandler,
clientWalletEventHandler,
clientTokenEventHandler,
clientTransferEventHandler
};
return ewmCreate(network, account, ETHEREUM_TIMESTAMP_UNKNOWN, (BREthereumMode) mode, brClient, storagePath.data());
}
BREthereumEWM EthereumEWM::createRawEWM(Mode mode, BREthereumNetwork network,
const std::string &storagePath, const std::string &paperKey,
const std::vector<std::string> &wordList) {
int wordsCount = wordList.size();
assert (BIP39_WORDLIST_COUNT == wordsCount);
static const char *wordListPtr[BIP39_WORDLIST_COUNT];
for (int i = 0; i < wordsCount; i++)
wordListPtr[i] = wordList[i].c_str();
installSharedWordList((const char **) wordListPtr, BIP39_WORDLIST_COUNT);
BREthereumClient brClient = {
this,
clientGetBalance,
clientGetGasPrice,
clientEstimateGas,
clientSubmitTransaction,
clientGetTransactions,
clientGetLogs,
clientGetBlocks,
clientGetTokens,
clientGetBlockNumber,
clientGetNonce,
clientEWMEventHandler,
clientPeerEventHandler,
clientWalletEventHandler,
clientTokenEventHandler,
clientTransferEventHandler
};
return ewmCreateWithPaperKey((BREthereumNetwork) network, paperKey.data(), ETHEREUM_TIMESTAMP_UNKNOWN,
(BREthereumMode) mode, brClient, storagePath.data());
}
BREthereumEWM EthereumEWM::createRawEWMPublicKey(Mode mode, BREthereumNetwork network,
const std::string &storagePath, const bytes_t &pubkey) {
assert (65 == pubkey.size());
BRKey key = {
UINT256_ZERO,
{0},
0
};
memcpy(key.pubKey, pubkey.data(), 65);
BREthereumClient brClient = {
this,
clientGetBalance,
clientGetGasPrice,
clientEstimateGas,
clientSubmitTransaction,
clientGetTransactions,
clientGetLogs,
clientGetBlocks,
clientGetTokens,
clientGetBlockNumber,
clientGetNonce,
clientEWMEventHandler,
clientPeerEventHandler,
clientWalletEventHandler,
clientTokenEventHandler,
// clientBlockEventHandler,
clientTransferEventHandler
};
// TODO: set to correct time to replace ETHEREUM_TIMESTAMP_UNKNOWN
return ewmCreateWithPublicKey((BREthereumNetwork) network, key, ETHEREUM_TIMESTAMP_UNKNOWN,
(BREthereumMode) mode, brClient, storagePath.data());
}
bool EthereumEWM::connect() {
return ETHEREUM_BOOLEAN_IS_TRUE(ewmConnect(_ewm));
}
bool EthereumEWM::disconnect() {
return ETHEREUM_BOOLEAN_IS_TRUE(ewmDisconnect(_ewm));
}
bool EthereumEWM::addressIsValid(const std::string &address) {
return ETHEREUM_BOOLEAN_IS_TRUE(addressValidateString(address.data()));
}
void EthereumEWM::ensureValidAddress(const std::string &address) {
ErrorChecker::CheckCondition(!addressIsValid(address), Error::Code::InvalidEthereumAddress,
"Invalid Ethereum Address");
}
void EthereumEWM::trampolineGetGasPrice(BREthereumEWM eid, BREthereumWallet wid, int rid) {
_executor.Execute(Runnable([this, wid, rid]() -> void {
_client->getGasPrice(wid, rid);
}));
}
void EthereumEWM::trampolineGetGasEstimate(BREthereumEWM eid, BREthereumWallet wid, BREthereumTransfer tid,
const std::string &from, const std::string &to,
const std::string &amount, const std::string &data, int rid) {
_executor.Execute(Runnable([this, wid, tid, from, to, amount, data, rid]() -> void {
_client->getGasEstimate(wid, tid, from, to, amount, data, rid);
}));
}
void EthereumEWM::trampolineGetBalance(BREthereumEWM eid, BREthereumWallet wid, const std::string &address,
int rid) {
_executor.Execute(Runnable([this, wid, address, rid]() -> void {
_client->getBalance(wid, address, rid);
}));
}
void EthereumEWM::trampolineSubmitTransaction(BREthereumEWM eid, BREthereumWallet wid, BREthereumTransfer tid,
const std::string &rawTransaction, int rid) {
_executor.Execute(Runnable([this, wid, tid, rawTransaction, rid]() -> void {
_client->submitTransaction(wid, tid, rawTransaction, rid);
}));
}
void
EthereumEWM::trampolineGetTransactions(BREthereumEWM eid, const std::string &address, uint64_t begBlockNumber,
uint64_t endBlockNumber, int rid) {
_executor.Execute(Runnable([this, address, begBlockNumber, endBlockNumber, rid]() -> void {
_client->getTransactions(address, begBlockNumber, endBlockNumber, rid);
}));
}
void EthereumEWM::trampolineGetLogs(BREthereumEWM eid, const std::string &contract, const std::string &address,
const std::string &event, uint64_t begBlockNumber, uint64_t endBlockNumber,
int rid) {
_executor.Execute(Runnable([this, contract, address, event, begBlockNumber, endBlockNumber, rid]() -> void {
_client->getLogs(contract, address, event, begBlockNumber, endBlockNumber, rid);
}));
}
void EthereumEWM::trampolineGetBlocks(BREthereumEWM eid, const std::string &address, int interests,
uint64_t blockNumberStart, uint64_t blockNumberStop, int rid) {
_executor.Execute(Runnable([this, address, interests, blockNumberStart, blockNumberStop, rid]() -> void {
_client->getBlocks(address, interests, blockNumberStart, blockNumberStop, rid);
}));
}
void EthereumEWM::trampolineGetTokens(BREthereumEWM eid, int rid) {
_executor.Execute(Runnable([this, rid]() -> void {
_client->getTokens(rid);
}));
}
void EthereumEWM::trampolineGetBlockNumber(BREthereumEWM eid, int rid) {
_executor.Execute(Runnable([this, rid]() -> void {
_client->getBlockNumber(rid);
}));
}
void EthereumEWM::trampolineGetNonce(BREthereumEWM eid, const std::string &address, int rid) {
_executor.Execute(Runnable([this, address, rid]() -> void {
_client->getNonce(address, rid);
}));
}
void EthereumEWM::trampolineEWMEvent(BREthereumEWM eid, int event, int status,
const std::string &errorDescription) {
_executor.Execute(Runnable([this, event, status, errorDescription]() -> void {
_client->handleEWMEvent(EWMEvent(event), Status(status), errorDescription);
}));
}
void EthereumEWM::trampolinePeerEvent(BREthereumEWM eid, int event, int status,
const std::string &errorDescription) {
_executor.Execute(Runnable([this, event, status, errorDescription]() -> void {
_client->handlePeerEvent(PeerEvent(event), Status(status), errorDescription);
}));
}
void EthereumEWM::trampolineWalletEvent(BREthereumEWM eid, BREthereumWallet wid, int event, int status,
const std::string &errorDescription) {
EthereumWalletPtr wallet = walletLookupOrCreate(wid, nullptr);
_executor.Execute(Runnable([this, wallet, event, status, errorDescription]() -> void {
_client->handleWalletEvent(wallet, WalletEvent(event), Status(status), errorDescription);
}));
}
void EthereumEWM::trampolineTokenEvent(BREthereumEWM eid, BREthereumToken tokenId, int event) {
EthereumTokenPtr token = addTokenByReference(tokenId);
_executor.Execute(Runnable([this, token, event]() -> void {
_client->handleTokenEvent(token, TokenEvent(event));
}));
}
void EthereumEWM::trampolineTransferEvent(BREthereumEWM eid, BREthereumWallet wid, BREthereumTransfer tid,
int event, int status, const std::string &errorDescription) {
EthereumWalletPtr wallet = walletLookupOrCreate(wid, nullptr);
EthereumTransferPtr transaction = transactionLookupOrCreate(tid);
_executor.Execute(Runnable([this, wallet, transaction, event, status, errorDescription]() -> void {
_client->handleTransferEvent(wallet, transaction, TransactionEvent(event), Status(status), errorDescription);
}));
}
BREthereumEWM EthereumEWM::getRaw() const {
return _ewm;
}
}
} | [
"[email protected]"
] | |
c585086bce017364e01bea537ece3b7bd17be20d | 771e785627d629cf1c9de14aafaf50e5ee915d6f | /datastructures/linkedlist/doubly-linkedlist.cc | dc7d269b1f5882fd1fc0f896c9ef5aed4a644e1d | [] | no_license | vipulroxx/learn-c- | 830748d04235b28c6f0700104b846da241680571 | f5c8990be9302e866d7951614989ee377474b513 | refs/heads/master | 2020-05-29T09:15:47.185504 | 2020-03-30T04:12:09 | 2020-03-30T04:12:09 | 189,046,071 | 1 | 0 | null | 2019-11-14T17:32:14 | 2019-05-28T14:36:46 | C++ | UTF-8 | C++ | false | false | 1,099 | cc | #include <iostream>
#include <stdlib.h>
using namespace std;
struct Node
{
int data;
Node *prev;
Node *next;
};
Node *head;
Node* GetNewNode(int x)
{
Node *temp = new Node();
temp -> data = x;
temp -> prev = NULL;
temp -> next = NULL;
return temp;
}
void InsertAtHead(int x)
{
Node *temp = GetNewNode(x);
if (head == NULL)
{
head = temp;
return;
}
head -> prev = temp;
temp -> next = head;
head = temp;
}
void Print()
{
Node *temp = head;
printf("Forward: ");
while (temp != NULL)
{
printf("%d ", temp -> data);
temp = temp -> next;
}
printf("\n");
}
void ReversePrint()
{
Node *temp = head;
if (temp == NULL)
return;
while (temp -> next != NULL)
{
temp = temp -> next;
}
printf("Reverse: ");
while (temp != NULL)
{
printf("%d ", temp -> data);
temp = temp -> prev;
}
printf("\n");
}
int main()
{
head = NULL;
InsertAtHead(2);
InsertAtHead(4);
InsertAtHead(6);
Print();
ReversePrint();
} | [
"[email protected]"
] | |
c91dfdb490524d74608364af53aaa29d1f795559 | 500d9b881561c51caf46060acfe24338f5a9b539 | /Video_stable/Rolling-Shutter-Video-Stabilization/svd.h | 5a579526a107b4cb6aedd68d1a39863cc5aa8fa6 | [] | no_license | BrownOfSummer/tests | aa2f8b8e55876b490f7cde2c53913e3bc0b076e4 | 8756bb171890a9a33c00e85b6f68fb8d0db631b1 | refs/heads/master | 2018-09-19T04:51:04.871726 | 2018-08-23T08:07:36 | 2018-08-23T08:07:36 | 67,992,457 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,543 | h | #ifndef SVD_H
#define SVD_H
#include <opencv2/imgproc/imgproc.hpp> // Gaussian Blur
#include <opencv2/core/core.hpp> // Basic OpenCV structures (cv::Mat, Scalar)
#include <opencv2/highgui/highgui.hpp> // OpenCV window I/O
#include <opencv2/features2d/features2d.hpp>
//#include <opencv2/nonfree/features2d.hpp>
#include <opencv2/features2d.hpp>
#include "structures.h"
#include <armadillo>
using namespace std;
using namespace cv;
Transformation prunedWeightedSvd(vector<Point2f> corners1, vector<Point2f> corners2, int length, vector<float> weights);
Transformation prunedNonWeightedSvd(vector<Point2f> corners1, vector<Point2f> corners2, int length);
Transformation weightedSvd(vector<Point2f> corners1, vector<Point2f> corners2, int length, vector<float> weights);
Transformation nonWeightedSvd(vector<Point2f> corners1, vector<Point2f> corners2, int length);
vector<float> getDensityWeights(vector<float> dxs, vector<float> dys, int length);
Transformation densityWeightedSvd(vector<Point2f> corners1, vector<Point2f> corners2, int length);
Transformation RansacNonWeightedSvd(vector<Point2f> corners1, vector<Point2f> corners2, int length);
#define START_W 1.0e4
#define END_W 4.0
#define NUM_STEPS 20
#define NEWTON_STABILITY_LIMIT 5
#define NEWTON_STABILITY_LIMIT_ROTATION (2.0 * 3.14 / 180)
Transformation WelschFit(vector<Point2f> corners1, vector<Point2f> corners2, int length);
Transformation WelschFitWeighted(vector<Point2f> corners1, vector<Point2f> corners2, int length, vector<float> weights);
#endif
| [
"[email protected]"
] | |
ba513b1d8098282372100a8c75380420db22aba6 | 6aeccfb60568a360d2d143e0271f0def40747d73 | /sandbox/SOC/2006/misc/tags/final/boost/bimap/detail/is_set_type_of.hpp | 2f599aff2cd618823ab9f4a4d3ad62dff28149a7 | [] | no_license | ttyang/sandbox | 1066b324a13813cb1113beca75cdaf518e952276 | e1d6fde18ced644bb63e231829b2fe0664e51fac | refs/heads/trunk | 2021-01-19T17:17:47.452557 | 2013-06-07T14:19:55 | 2013-06-07T14:19:55 | 13,488,698 | 1 | 3 | null | 2023-03-20T11:52:19 | 2013-10-11T03:08:51 | C++ | UTF-8 | C++ | false | false | 3,478 | hpp | // Boost.Bimap
//
// Copyright (c) 2006 Matias Capeletto
//
// This code may be used under either of the following two licences:
//
// 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. OF SUCH DAMAGE.
//
// Or:
//
// 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)
/// \file detail/is_set_type_of.hpp
/// \brief Is set type of and is set type of relation metafunctions.
#ifndef BOOST_BIMAP_DETAIL_IS_SET_TYPE_OF_HPP
#define BOOST_BIMAP_DETAIL_IS_SET_TYPE_OF_HPP
#include <boost/utility/enable_if.hpp>
#include <boost/type_traits/is_base_of.hpp>
#include <boost/bimap/detail/safe_enabler.hpp>
#include <boost/bimap/detail/mpl/bool_result.hpp>
#include <boost/bimap/detail/concept_tags.hpp>
/** \struct boost::bimap::detail::is_set_type_of
\brief Type trait to check if a class is a set_type_of specification
\code
template< class Type >
struct is_set_type_of
{
typedef {mpl::true_/mpl::false_} type;
};
\endcode
**/
/** \struct boost::bimap::detail::is_set_type_of_relation
\brief Type trait to check if a class is a set_type_of_relation specification
\code
template< class Type >
struct is_set_type_of_relation
{
typedef {mpl::true_/mpl::false_} type;
};
\endcode
**/
#ifndef BOOST_BIMAP_DOXYGEN_WILL_NOT_PROCESS_THE_FOLLOWING_LINES
namespace boost {
namespace bimap {
namespace detail {
template< class Type, class Enable = void > // why it is not working with detail::safe_enabler?
struct is_set_type_of
{
BOOST_BIMAP_MPL_BOOL_RESULT(false);
};
template
<
class Type
>
struct is_set_type_of
<
Type,
typename enable_if< is_base_of< set_type_of_tag, Type > >::type
>
{
BOOST_BIMAP_MPL_BOOL_RESULT(true);
};
template< class Type, class Enable = void > // why it is not working with detail::safe_enabler?
struct is_set_type_of_relation
{
BOOST_BIMAP_MPL_BOOL_RESULT(false);
};
template
<
class Type
>
struct is_set_type_of_relation
<
Type,
typename enable_if< is_base_of< set_type_of_relation_tag, Type > >::type
>
{
BOOST_BIMAP_MPL_BOOL_RESULT(true);
};
} // namespace detail
} // namespace bimap
} // namespace boost
#endif // BOOST_BIMAP_DOXYGEN_WILL_NOT_PROCESS_THE_FOLLOWING_LINES
#endif // BOOST_BIMAP_DETAIL_IS_SET_TYPE_OF_HPP
| [
"[email protected]"
] | |
ff2e3ed58ffb7d098f26b3d5b8161ccb8611a1b9 | 3e4f3a36bd030b931a676f9989c2786eca838418 | /InverseWayLiberation/src/Scripts/Registrations/RegisterEntityFactory.cpp | 89e12368ebc699f597b7fffdfd3e68b949d5d91c | [] | no_license | amjadtbssm/TGE | 0506491b449c98ace581e24692efcb3218820d06 | 31667d8268bb38a1efa50b617ee53b54dbdafe4b | refs/heads/master | 2020-08-12T03:28:46.718097 | 2018-11-25T16:33:44 | 2018-11-25T16:33:44 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,960 | cpp | #include "../ScriptMachine.h"
#include "../../Entities/EntityFactory.h"
using namespace luabind;
void ScriptMachine::RegisterEntityFactory()
{
try
{
// Enregistre les fonctions
module(mLuaState)[
// PolyChain::Type
class_<PolyChain>("PolyChain")
.enum_("Type")
[
value("None", PolyChain::Type::None),
value("Chain", PolyChain::Type::Chain),
value("Loop", PolyChain::Type::Loop)
],
// Fxs dans EntityFactory
namespace_("EntityFactory") [
def("CreateDeco", (void(*)(const b2Vec3&, const std::string&)) EntityFactory::CreateDeco),
def("CreateDeco", (void(*)(const b2Vec3&, const std::string&, int)) EntityFactory::CreateDeco),
def("CreateBox", (void(*)(const b2Vec3&, b2BodyType, const std::string&)) EntityFactory::CreateBox),
def("CreateBox", (void(*)(const b2Vec3&, b2BodyType, const std::string&, int)) EntityFactory::CreateBox),
def("CreateCircle", (void(*)(const b2Vec3&, b2BodyType, const std::string&)) EntityFactory::CreateCircle),
def("CreateCircle", (void(*)(const b2Vec3&, b2BodyType, const std::string&, int)) EntityFactory::CreateCircle),
def("CreatePoly", (void(*)(const vector_b2Vec2&, b2BodyType, const std::string&)) EntityFactory::CreatePolyBody),
def("CreatePoly", (void(*)(const vector_b2Vec2&, b2BodyType, const std::string&, int)) EntityFactory::CreatePolyBody),
def("CreatePolyChain", (void(*)(const vector_b2Vec2&, PolyChain::Type, const std::string&)) EntityFactory::CreatePolyChain),
def("CreatePolyChain", (void(*)(const vector_b2Vec2&, PolyChain::Type, const std::string&, int)) EntityFactory::CreatePolyChain),
def("CreatePointLight", (void(*)(const b2Vec2&)) EntityFactory::CreatePointLight),
def("CreatePointLight", (void(*)(const b2Vec2&, int)) EntityFactory::CreatePointLight),
def("CreatePointLight", (void(*)(const b2Vec2&, int, const sf::Color&)) EntityFactory::CreatePointLight),
def("CreatePointLight", (void(*)(const b2Vec2&, int, const sf::Color&, int)) EntityFactory::CreatePointLight),
def("CreateRagdoll", (void(*)(const b2Vec2&)) EntityFactory::CreateRagdoll),
def("CreateRagdoll", (void(*)(const b2Vec2&, int)) EntityFactory::CreateRagdoll),
def("CreateHum", (void(*)(const b2Vec2&)) EntityFactory::CreateHum),
def("CreateHum", (void(*)(const b2Vec2&, unsigned int)) EntityFactory::CreateHum),
def("CreateHum", (void(*)(const b2Vec2&, unsigned int, int)) EntityFactory::CreateHum),
def("CreateHum", (void(*)(const b2Vec2&, unsigned int, int, int)) EntityFactory::CreateHum),
def("CreatePlayer", (void(*)(const b2Vec2&)) EntityFactory::CreatePlayer),
def("CreatePlayer", (void(*)(const b2Vec2&, unsigned int)) EntityFactory::CreatePlayer),
def("CreatePlayer", (void(*)(const b2Vec2&, unsigned int, int)) EntityFactory::CreatePlayer)
]
];
}
catch (const std::exception &e)
{
std::cerr << e.what() << std::endl;
}
}
| [
"[email protected]"
] | |
b1535e827685b8a5b42f841237877b7c3556610d | 6bc03818096e4b4fe1a3c2d186bfcb21d9f4db3d | /gui/src/TestGameEngine.cpp | 8b470a8319ebc5591e22d3382d6dd59be3b53992 | [] | no_license | yisea123/stm32f407_dev_board | 7fa9e52c68d4ad78567d122d5307cfc139353daa | 6fa734be0c944b4eeeb237b3b0aac9964a6fa164 | refs/heads/master | 2020-08-27T16:25:40.227716 | 2017-09-10T13:41:36 | 2017-09-10T13:41:36 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 27 | cpp | #include "TestGameEngine.h" | [
"[email protected]"
] | |
39ddd0868e1702885f8021d5dd7458824cbd67ba | 8985f896c3f0a1c0faa9a46c8e3637b5d9638a57 | /3-ラスタライズ-OpenGL/triangle.h | 0c79a9470307437d566fc86b0939aceab34b8dc8 | [] | no_license | N-H-Shimada/Rasterizer | af9209c5c480ab9125f6cc717e4f86c4c46e8cc6 | 9aa96b6ed14261ed4ff0db6d7d45fbc14be71d5f | refs/heads/master | 2021-07-06T07:14:43.976547 | 2020-10-31T06:30:23 | 2020-10-31T06:30:23 | 195,690,262 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,181 | h | #ifndef TRIANGLE_H
#define TRIANGLE_H
#include <algorithm>
using namespace std;
using Eigen::Vector3d;
using Eigen::Vector4d;
class Triangle {
public:
Vector4d A, B, C;
Vector3d N_A, N_B, N_C;
float min_x, min_y, max_x, max_y;
float RGB_A, RGB_B, RGB_C;
Triangle() {}
Triangle (const Vector4d& vertix_A, const Vector4d& vertix_B, const Vector4d& vertix_C, const Vector3d& vertix_NA, const Vector3d& vertix_NB, const Vector3d& vertix_NC) {
A = vertix_A;
B = vertix_B;
C = vertix_C;
N_A = vertix_NA;
N_B = vertix_NB;
N_C = vertix_NC;
}
void Init (const Vector4d& vertix_A, const Vector4d& vertix_B, const Vector4d& vertix_C) {
A = vertix_A;
B = vertix_B;
C = vertix_C;
}
void Init_N (const Vector3d& vertix_A, const Vector3d& vertix_B, const Vector3d& vertix_C) {
N_A = vertix_A;
N_B = vertix_B;
N_C = vertix_C;
}
void Bounding_box () {
min_x = min({A(0),B(0),C(0)});
min_y = min({A(1),B(1),C(1)});
max_x = max({A(0),B(0),C(0)});
max_y = max({A(1),B(1),C(1)});
}
};
#endif
| [
"[email protected]"
] | |
2cb0c2d24466c56121451bf093e387172718eb03 | 030d422cca69abe4171add39c27a6e94068107be | /swGUI/Native/INativeGUI.h | 65cefabddbe48adde05239baac8ae35ae9dc53bf | [] | no_license | nieznanysprawiciel/swLibraries | a83a218dfd037ce7b0de17fc61cc83b15f5512d6 | 9e553510623d3632e673833679da22c2b4420792 | refs/heads/master | 2021-06-04T09:16:38.469615 | 2020-04-04T14:11:27 | 2020-04-04T14:11:27 | 112,026,985 | 2 | 0 | null | 2020-04-04T14:11:29 | 2017-11-25T18:52:20 | C++ | UTF-8 | C++ | false | false | 2,190 | h | #pragma once
#include "INativeWindow.h"
#include "INativeOS.h"
#include "swCommonLib/External/FastDelegate/FastDelegate.h"
#include "swInputLibrary/InputCore/IInput.h"
/**@defgroup NativeGUI Native GUI system
@brief OS specific stuff.
Here are things using underlying system API to create windows and handle events from system.
@ingroup SWGUI*/
namespace sw {
namespace gui
{
typedef fastdelegate::FastDelegate2< INativeWindow*, bool > ChangedFocusDelegate;
/**@brief Provides data needed for native GUI system initialization.
@ingroup NativeGUI*/
struct NativeGUIInitData
{
ChangedFocusDelegate FocusChanged;
};
/**@brief Interface encasulates native GUI system.
@todo Use Nullable in functions that can fail.
@ingroup NativeGUI*/
class INativeGUI
{
private:
protected:
public:
INativeGUI() = default;
~INativeGUI() = default;
/**@brief Invokes main loop of native GUI.
@return Returns true if application should close.*/
virtual bool MainLoop ( bool blockingMode ) = 0;
/**@brief Initializes native GUI.*/
virtual ReturnResult Init ( const NativeGUIInitData& initData ) = 0;
/**@brief Initalize native api for window in parameter and return IInput object.
GUI can use native input api for specific gui system or provide different
library to deal directly with hardware. Classes derived from INativeGUI are reposible
for updating native inputs in main loop. In case of using separate hardware input library
INativeGUI does nothing.*/
virtual sw::input::IInput* UseNativeInput ( INativeWindow* nativeWindow ) = 0;
/**@brief Provides posibility to specify input init arguments.
Note that fields AppInstance and WindowHandle which can be filled by native window system, can
be leaved as nullptr.*/
virtual sw::input::IInput* UseNativeInput ( INativeWindow* nativeWindow, input::InputInitInfo& initInfo ) = 0;
/**@brief Creates native GUI window.*/
virtual INativeWindow* CreateWindow ( NativeWindowDescriptor& descriptor ) = 0;
/**@brief REquest native gui to close application.*/
virtual void EndApplication () = 0;
/**@brief Get underlying operating system object.*/
virtual INativeOS* GetOS () = 0;
};
} // gui
} // sw
| [
"[email protected]"
] | |
db4faad1aa22ac293ed1445b6ff8a92e3cb934e1 | b94a823ad86403049f7e36897b3f6602446ecac6 | /Algorithm/2019/Mon_07/codeforces/575Div3/A.cpp | 152421bc1325c13b60e9e424739963894902c1e9 | [] | no_license | sos0911/PS_Cpluslplus | 2807880e82942e8ad1971fb8ce2bbd940845fb15 | c4ba30ef5112f2fb4369183dc263aec560949f8e | refs/heads/master | 2021-07-17T14:38:01.320237 | 2021-07-15T15:44:18 | 2021-07-15T15:44:18 | 240,442,891 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,048 | cpp | #include <bits/stdc++.h>
using namespace std;
typedef vector<string> vs;
typedef vector<vector<int>> vvi;
typedef vector<list<int>> vli;
typedef vector<int> vi;
typedef pair<int,int> pii;
typedef vector<string> vs;
typedef vector<bool> vb;
typedef long long ll;
typedef double db;
typedef priority_queue<int> pq;
typedef vector<vector<pii>> vvp;
typedef vector<pii> vpi;
#define fi first
#define se second
#define FOR(i,s,e,d) for(int i=s;i<e;i+=d)
#define FORL(i,s,e,d) for(ll i=s;i<e;i+=d)
#define RFOR(i,s,e,d) for(int i=s;i>=e;i+=d)
#define RFORL(i,s,e,d) for(ll i=s;i>=e;i+=d)
int main(){
cin.tie(NULL);
cout.tie(NULL);
ios_base::sync_with_stdio(false);
int q;
cin>>q;
FOR(i,0,q,1){
int n,k;
cin>>n>>k;
int in[n];
int cnt=0; // 홀수의 개수
FOR(j,0,n,1){
cin>>in[j];
cnt+=in[j]%2;
}
if(cnt<k||cnt%2!=k%2)
cout<<"NO"<<'\n';
else{
cout<<"YES"<<'\n';
int rep=k;
FOR(j,0,n,1){
if(rep==1)
break;
if(in[j]%2){
cout<<j+1<<" ";
rep--;
}
}
cout<<n<<'\n';
}
}
return 0;
} | [
"[email protected]"
] | |
14c8f5a29c37d095ada35b180bba936c0e5e76c2 | 8072c1cf03f82fd1891536e93b6c28f16df82ea4 | /metamorphosys/tonka/models/SystemC/usb11/usb_fifo512x8.cpp | 120fd2b53bdd490c14ec408236be717fc6fec540 | [
"LicenseRef-scancode-other-permissive"
] | permissive | 15831944/metamorphosys-desktop | 90a26c6700c444accd58358c457d675eb2fdd59f | 4adb71c18f7811289fc4ba4dcb465e99e93d8e60 | refs/heads/master | 2021-05-30T13:34:07.037424 | 2015-09-24T22:09:05 | 2015-09-24T22:09:05 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,194 | cpp | /////////////////////////////////////////////////////////////////////
//// ////
//// USB FIFO ////
//// ////
//// SystemC Version: usb_fifo512x8.cpp ////
//// Author: Alfredo Luiz Foltran Fialho ////
//// [email protected] ////
//// ////
//// ////
/////////////////////////////////////////////////////////////////////
//// ////
//// Verilog Version: generic_fifo_sc_a.v ////
//// Copyright (C) 2000-2002 Rudolf Usselmann ////
//// www.asics.ws ////
//// [email protected] ////
//// ////
//// This source file may be used and distributed without ////
//// restriction provided that this copyright statement is not ////
//// removed from the file and that any derivative work contains ////
//// the original copyright notice and the associated disclaimer.////
//// ////
//// THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY ////
//// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED ////
//// TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS ////
//// FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL THE AUTHOR ////
//// 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 "systemc.h"
#include "usb_fifo512x8.h"
void usb_fifo512x8::write_pointer_update(void) {
if (!rst.read()) {
wp.write(0);
} else if (clr.read()) {
wp.write(0);
} else if (we.read()) {
wp.write(wp_pl1.read());
}
}
void usb_fifo512x8::read_pointer_update(void) {
if (!rst.read()) {
rp.write(0);
} else if (clr.read()) {
rp.write(0);
} else if (re.read()) {
rp.write(rp_pl1.read());
}
}
void usb_fifo512x8::future_pointers_update(void) {
wp_pl1.write(wp.read() + 1);
wp_pl2.write(wp.read() + 2);
rp_pl1.write(rp.read() + 1);
}
// Full & Empty Logic
// Guard Bit ...
void usb_fifo512x8::fe_gb_update(void) {
if (!rst.read())
gb.write(false);
else if (clr.read())
gb.write(false);
else if ((wp_pl2.read() == rp.read()) && we.read())
gb.write(true);
else if ((wp.read() != rp.read()) && re.read())
gb.write(false);
}
void usb_fifo512x8::fe_full_update(void) {
if (!rst.read())
full.write(false);
else if (clr.read())
full.write(false);
else if (we.read() && ((wp_pl1.read() == rp.read()) && gb.read()) && !re.read())
full.write(true);
else if (re.read() && ((wp_pl1.read() != rp.read()) || !gb.read()) && !we.read())
full.write(false);
}
void usb_fifo512x8::fe_empty_update(void) {
if (!rst.read())
empty.write(true);
else if (clr.read())
empty.write(true);
else if (we.read() && ((wp.read() != rp_pl1.read()) || gb.read()) && !re.read())
empty.write(false);
else if (re.read() && ((wp.read() == rp_pl1.read()) && !gb.read()) && !we.read())
empty.write(true);
}
void usb_fifo512x8::reset_update(void) {
n_rst.write(!rst.read());
}
/*
usb_fifo512x8::~usb_fifo512x8(void) {
if (i_ram)
delete i_ram;
}
*/
| [
"[email protected]"
] | |
9805f771a69713a108e00e99f28e571e7a232450 | b721fbe6c7e9e4b9e0d66c4952e2802b131bfa0d | /src/sample/dragonboard410c/ipc_client/plugin/smartVideo/include/xpluginflow/proxy/proxy.h | 1cb44aaaa340b799f9798fcc65ce8abb98315ee7 | [] | no_license | robinfit01/bootprint_x2 | 0b506e0e11635701896edbb6decc24798db4dec1 | d26703e62f9a3aeed200403b1caa2ff05d391189 | refs/heads/master | 2022-04-13T05:24:34.970044 | 2020-03-16T02:58:28 | 2020-03-16T02:58:28 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,227 | h | //
// Created by [email protected] on 11/21/2019.
// Copyright (c) 2019 horizon robotics. All rights reserved.
//
#ifndef INCLUDE_XPLUGINFLOW_PROXY_PROXY_H_
#define INCLUDE_XPLUGINFLOW_PROXY_PROXY_H_
#include <nng/nng.h> // TODO(zhuoran.rong) chang to artifact
#include <nng/protocol/pubsub0/sub.h>
#include <nng/protocol/reqrep0/req.h>
#include <pthread.h>
#include <stddef.h>
#include <stdint.h>
#include <stdio.h>
#include <sys/syscall.h>
#include <functional>
#include <map>
#include <memory>
#include <mutex>
#include <string>
#include <atomic>
#include <thread>
#include <vector>
#include "xpluginflow/message/pluginflow/flowmsg.h"
#include "xpluginflow/proxy/proxy_types.h"
#include "xpluginflow/utils/singleton.h"
#include "xpluginflow/proxy/ipc_onboard.h"
#define gettid() syscall(__NR_gettid)
namespace horizon {
namespace vision {
namespace xpluginflow {
extern std::mutex log_output_mutex;
#if 0
#define DUMP(a) \
do { \
log_output_mutex.lock(); \
std::cerr << "[" << __FILE__ << ":" << __LINE__ << "," << gettid() \
<< "]: " << #a << " => " << a << std::endl; \
log_output_mutex.unlock(); \
} while (0)
#define DUMP_UUID(u) \
do { \
log_output_mutex.lock(); \
fprintf(stderr, "[%s:%d,%d]: %s => ", __FILE__, __LINE__, gettid(), #u); \
for (int i = 0; i < 15; i++) { \
fprintf(stderr, "%02X-", (u)[i]); \
} \
fprintf(stderr, "%02X\n", (u)[15]); \
log_output_mutex.unlock(); \
} while (0)
#define DEBUG(fmt, ...) \
do { \
log_output_mutex.lock(); \
fprintf(stderr, "[%s:%d,%d]: " fmt "\n", __FILE__, __LINE__, gettid(), \
##__VA_ARGS__); \
log_output_mutex.unlock(); \
} while (0)
#else
#define DUMP(a)
#define DUMP_UUID(u)
#define DEBUG(fmt, ...)
#endif
struct router_item;
struct xproxy_session;
extern struct domain_configuration hbipc_domain_config;
#ifndef XPROXY_HBIPC_DOMAIN_ID
#define XPROXY_HBIPC_DOMAIN_ID 0
#endif
// 内部总线回调函数
typedef std::function<void(XPluginFlowMessagePtr)> bus_cb_t;
typedef std::function<XPluginFlowMessagePtr(const std::string &,
const std::string &)>
unserial_cb_t;
// 本地路由表类型
typedef std::map<std::string, std::vector<std::vector<struct router_item>>>
router_table_t;
// 本地连接会话表
typedef std::map<uuid_t, std::shared_ptr<struct xproxy_session>>
session_table_t;
// 控制信令
enum CONTROL_MSG_TYPE {
// 路由通告
ROUTER_DECLEAR = 0,
// 消息分发
MSG_DISTRIBUTE,
};
enum router_item_type {
ROUTER_TYPE_PUBLISH = 0,
ROUTER_TYPE_SUBSCRIBE,
ROUTER_TYPE_MAX,
};
// 本地订阅表条目类型
struct router_item {
// subscribe,publish,ap,cp
uint32_t subscribe : 1;
uint32_t ap : 1;
// 进程的pid(目前未用到)
uint32_t pid;
uuid_t service_id;
};
// 到对端proxy的会话
// TODO(zhuoran.rong) 支持进程间
struct xproxy_session {
// hbipc session
xproxy_session() {
registed = false;
exit_flag = false;
}
struct session hbipc_session;
uuid_t service_id;
std::thread thread;
bool registed;
volatile bool exit_flag;
};
// hbipc hooks
union hbipc_hooks {
struct hbipc_ap ap;
struct hbipc_cp cp;
};
// 代理
class XProxy : public hobot::CSingleton<XProxy> {
public:
XProxy() {
// 初始化路由表的读写锁
pthread_rwlock_init(&router_table_lock, NULL);
pthread_rwlock_init(&session_lock, NULL);
inited = false;
}
~XProxy() = default;
public:
// 连接gateway,创建接收广播线程
int Init(bus_cb_t, unserial_cb_t);
// 反初始化
int Deinit();
// plugin订阅消息
int RegisterMsg(std::string);
// plugin发布消息
int PublishMsg(XPluginFlowMessagePtr);
static int IsAP(void);
public:
// 判断当前是ap还是cp
bool is_ap = true;
// nng超时时间
int timeout = 1000;
protected:
// 接收线程
int DoIpcOnBoardRecv(); // 板内进程间通信消息接收
int DoBroadcastReceiver();
int DoHBIPCAccept();
int DoSessionRecv(std::shared_ptr<struct xproxy_session>);
// 将HBIPC收到的数据转发到内部总线
int ProxyToBus(std::string, const std::string &);
int BusToProxy(XPluginFlowMessagePtr);
private:
int init_hbipc_hooks();
int bind_symbols(void **, const char *, void *);
// 处理gateway应答
int process_gw_response(nng_socket);
// 处理消息订阅
int do_msg_regist(uint32_t , gw_register_info_t *);
// 处理消息取消订阅
int do_msg_unregist(uint32_t , gw_register_info_t *);
// 本地路由表操作
bool is_subscribed(const std::string &); // 是否订阅了该消息类型
int insert_router_map(const std::string &, gw_register_info_t *);
int delete_router_map(const std::string &, gw_register_info_t *);
int connect_to_gateway(nng_socket *);
int hbipc_send(struct session *, uint32_t, char *, size_t);
int hbipc_revc(struct session *, uint32_t *, char **, size_t *);
// 扫描路由表,创建板内连接
int check_dialer();
// 扫描路由表,创建板间连接
int check_session();
int check_connect(const struct router_item &);
// 将路由注册到gateway中
int router_regist_gateway(std::string, int);
void random_uuid(unsigned char[16]);
int hbipc_ap_init(const char *);
int hbipc_cp_init(const char *);
private:
volatile bool exit_flag = false;
// 本地路由表,记录msg到service的订阅关系
pthread_rwlock_t router_table_lock;
router_table_t router_table;
// session 会话索引,用来通过service id索引HBIPC会话
pthread_rwlock_t session_lock;
session_table_t session_table;
// 发送到内部总线的接口
bus_cb_t pub_internal;
// 消息反序列化接口
unserial_cb_t unserialize_cb;
std::thread broadcast_receiver;
std::mutex hbipc_accepter_mutex;
std::map<const char *, std::thread> hbipc_accepter;
// 初始化参数
std::atomic<bool> inited;
std::mutex inited_lock;
// hbipc参数
uuid_t service_id;
hbipc_hooks hooks;
IpcOnBoard ipc_onboard; // 板内进程间通信管理类
std::thread ipc_receiver; // 板内进程间通信消息接收线程
};
} // namespace xpluginflow
} // namespace vision
} // namespace horizon
#endif // INCLUDE_XPLUGINFLOW_PROXY_PROXY_H_
| [
"[email protected]"
] | |
187d123299b1cd6220052b2f500038c042968576 | 523a2b6ac4f2a42b9d4545edb909d64322b0b75a | /Light OJ/1088-2.cpp | 025a9088f094c67d509dfc8b611495fe53fd0646 | [] | no_license | alshahreyaj/Online-Judge-Solutions | 5c21df1c3093664f2f81ad92d5ca2d6f75038741 | 00eb07af238320cc1bde4c40be56f030d1e1fba1 | refs/heads/master | 2023-07-15T17:31:44.798260 | 2021-09-01T17:24:27 | 2021-09-01T17:24:27 | 183,053,188 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 891 | cpp | #include<bits/stdc++.h>
using namespace std;
const int N=100009;
int a[N];
int bl(int l,int r,int x)
{
int m=(l+r)/2;
if(x<=a[m]&&x>a[m-1]) return m;
else if(l>r) return -9999;
else if(x<=a[m-1]) return bl(l,m-1,x);
else if(x>a[m]) return bl(m+1,r,x);
}
int br(int l,int r,int x)
{
int m=(l+r)/2;
if(x>=a[m]&&x<a[m+1]) return m;
else if(l>r) return -1;
else if(x<a[m]) return br(l,m-1,x);
else if(x>=a[m+1]) return br(m+1,r,x);
}
int main()
{
int t,test=1,n,q,l,r;
scanf("%d",&t);
while(t--)
{
a[0]=-1;
scanf("%d%d",&n,&q);
a[n+1]=INT_MAX;;
for(int i=1; i<=n; i++) scanf("%d",&a[i]);
printf("Case %d:\n",test++);
while(q--)
{
scanf("%d%d",&l,&r);
printf("%d\n",(br(0,n,r)-bl(1,n+1,l)+1));
}
}
}
| [
"[email protected]"
] | |
790415383c2c46b45819c9b2a547c1a99189ec57 | 019eb05a61dffe2d4b70dd38809a8ff4c4263fec | /contracts/wawaka/common/Types.h | 42f7d3c9f37966a43e23313a34c1fb481d0be11c | [
"Zlib",
"Apache-2.0",
"MIT",
"CC-BY-4.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | hyperledger-labs/private-data-objects | a1409fe087399c2aa0109f35b961da10a99aad90 | 041784e1dbe7a66ac056ca136e50b8216c44a510 | refs/heads/main | 2023-08-16T21:26:47.910151 | 2023-07-06T19:39:46 | 2023-07-06T20:50:56 | 123,627,740 | 107 | 37 | Apache-2.0 | 2023-09-14T04:39:34 | 2018-03-02T20:32:04 | C++ | UTF-8 | C++ | false | false | 1,799 | h | /* Copyright 2018 Intel Corporation
*
* 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 <stdint.h>
#include <string>
#include <vector>
#include <list>
namespace ww
{
namespace types
{
//*** For binary unformatted data***//
typedef std::vector<uint8_t> ByteArray;
//*** For vector containing printable characters ***//
class StringArray : public std::vector<char>
{
public:
StringArray(const std::string& value)
{
assign(value);
};
StringArray(const size_t size)
{
resize(size);
std::vector<char>::assign(size, '\0');
};
void assign(const std::string& value)
{
std::vector<char>::assign(value.begin(), value.end());
}
std::string str()
{
return std::string(this->data());
};
}; /* class ww::types::StringArray */
// Simple conversion from ww::types::ByteArray to String
std::string ByteArrayToString(const ww::types::ByteArray& inArray);
void ByteArrayToStringArray(
const ww::types::ByteArray& inByteArray,
ww::types::StringArray& outStringArray);
ww::types::StringArray ByteArrayToStringArray(const ww::types::ByteArray& inByteArray);
};
}
| [
"[email protected]"
] | |
ea47894b204794fb13fb55813543f9a125e7f7f0 | 07d5313b6f7aa7fc421dd244a045e45962b23bf8 | /Common_3/ThirdParty/OpenSource/BulletPhysics/2.82/Demos/SerializeDemo/main.cpp | 87b88f8f028ecb2d90320c61ae245e03c73aaef2 | [
"Zlib",
"LicenseRef-scancode-unknown",
"Apache-2.0"
] | permissive | daveansh/The-Forge | 4bc91d1978f6f46ec746d4e690280fcdfe06efbd | 29b377a64230be414eb84b632b8517646a1f9da4 | refs/heads/master | 2022-02-22T21:14:44.125736 | 2019-08-19T20:27:19 | 2019-08-19T20:27:19 | 192,270,664 | 1 | 0 | Apache-2.0 | 2019-06-17T03:44:11 | 2019-06-17T03:44:11 | null | UTF-8 | C++ | false | false | 3,856 | cpp | /*
Bullet Continuous Collision Detection and Physics Library
Copyright (c) 2003-2007 Erwin Coumans http://continuousphysics.com/Bullet/
This software is provided 'as-is', without any express or implied warranty.
In no event will the authors be held liable for any damages arising from the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it freely,
subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
*/
#include "SerializeDemo.h"
#include "GlutStuff.h"
#include "GLDebugDrawer.h"
#include "btBulletDynamicsCommon.h"
#include "LinearMath/btHashMap.h"
#include "btBulletFile.h"
#include "CommandLineArguments.h"
#ifdef USE_AMD_OPENCL
#include "btOpenCLUtils.h"
#include <LinearMath/btScalar.h>
cl_context g_cxMainContext;
cl_device_id g_cdDevice;
cl_command_queue g_cqCommandQue;
// Returns true if OpenCL is initialized properly, false otherwise.
bool initCL( void* glCtx, void* glDC )
{
const char* vendorSDK = btOpenCLUtils::getSdkVendorName();
printf("This program was compiled using the %s OpenCL SDK\n",vendorSDK);
int ciErrNum = 0;
#ifdef BT_USE_CLEW
ciErrNum = clewInit( "OpenCL.dll" );
if ( ciErrNum != CLEW_SUCCESS ) {
return false;
}
#endif
#if defined(CL_PLATFORM_MINI_CL)
cl_device_type deviceType = CL_DEVICE_TYPE_CPU;
#elif defined(CL_PLATFORM_AMD)
cl_device_type deviceType = CL_DEVICE_TYPE_GPU;
#elif defined(CL_PLATFORM_NVIDIA)
cl_device_type deviceType = CL_DEVICE_TYPE_GPU;
#else
cl_device_type deviceType = CL_DEVICE_TYPE_CPU;
#endif
g_cxMainContext = btOpenCLUtils::createContextFromType(deviceType, &ciErrNum, glCtx, glDC);
oclCHECKERROR(ciErrNum, CL_SUCCESS);
int numDev = btOpenCLUtils::getNumDevices(g_cxMainContext);
if (!numDev)
return false;
g_cdDevice = btOpenCLUtils::getDevice(g_cxMainContext,0);
btOpenCLDeviceInfo clInfo;
btOpenCLUtils::getDeviceInfo(g_cdDevice,clInfo);
btOpenCLUtils::printDeviceInfo(g_cdDevice);
// create a command-queue
g_cqCommandQue = clCreateCommandQueue(g_cxMainContext, g_cdDevice, 0, &ciErrNum);
oclCHECKERROR(ciErrNum, CL_SUCCESS);
return true;
}
#endif //#ifdef USE_AMD_OPENCL
int main(int argc,char** argv)
{
CommandLineArguments arg(argc,argv);
char* filename=0;
arg.GetCmdLineArgument("filename", filename);
bool dumpXml = arg.CheckCmdLineFlag("dump_xml");
if (!dumpXml && !filename)
{
printf("There are some optional commandline arguments for this demo:\n");
printf("Load another .bullet file instead of testFile.bullet:\n");
printf("--filename=testfile.bullet\n");
printf("Dump the imported .bullet file to XML\n");
printf("--dump_xml\n");
}
GLDebugDrawer gDebugDrawer;
#ifdef USE_AMD_OPENCL
bool initialized = initCL(0,0);
btAssert(initialized);
#endif //USE_AMD_OPENCL
SerializeDemo serializeDemo;
int mode = 0;
if (dumpXml)
mode |=bParse::FD_VERBOSE_EXPORT_XML;
if (filename)
serializeDemo.setFileName(filename);
serializeDemo.setVerboseMode(mode);
serializeDemo.initPhysics();
serializeDemo.getDynamicsWorld()->setDebugDrawer(&gDebugDrawer);
#ifdef CHECK_MEMORY_LEAKS
serializeDemo.exitPhysics();
#else
return glutmain(argc, argv,640,480,"Bullet Physics Demo. http://bulletphysics.org",&serializeDemo);
#endif
//default glut doesn't return from mainloop
return 0;
}
| [
"[email protected]"
] | |
bef34fed887a0b08b72fa6d9e012a125e26d6d79 | ec76c1297252070d72fd194baebca3146bafac59 | /damBreak_turbulence/damBreak/2/p | c3767ea6506f430ca17ad7b19906b8287874e6a9 | [] | no_license | Shivam-IITKGP/CFD_InterFoam_BottleFill | 413cdb5536cf71d95da882821fa36c7bd138e17e | be711e0f19a5331bb1094b8e54982c9ad101da5c | refs/heads/main | 2023-04-13T12:58:09.332312 | 2021-04-15T16:24:42 | 2021-04-15T16:24:42 | 358,315,309 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 77,305 | /*--------------------------------*- C++ -*----------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Version: 8
\\/ M anipulation |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volScalarField;
location "2";
object p;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [1 -1 -2 0 0 0 0];
internalField nonuniform List<scalar>
9150
(
395.938
368.936
343.456
326.245
317.934
317.933
326.243
343.453
368.933
395.938
367.083
347.516
331.882
320.064
314.085
314.085
320.063
331.88
347.514
367.082
337.807
324.211
315.698
307.926
303.824
303.824
307.925
315.697
324.21
337.805
313.106
303.039
297.607
292.23
289.265
289.265
292.23
297.607
303.038
313.105
291.828
282.837
278.301
274.118
271.673
271.674
274.118
278.301
282.837
291.827
28.8632
25.1952
50.2106
64.3099
70.9154
70.8877
64.23
50.0941
25.0196
28.5848
199.048
175.066
169.65
168.372
168.469
168.455
168.333
169.59
174.981
198.962
303.315
272.235
256.361
246.45
241.784
241.778
246.431
256.332
272.201
303.286
383.883
341.979
314.272
296.899
288.388
288.385
296.89
314.259
341.967
383.877
435.222
382.219
343.606
321.539
311.387
311.385
321.534
343.6
382.215
435.224
-54.6064
-18.349
-30.4915
-21.7077
-25.9544
-26.7197
-21.7568
-31.6512
-20.9172
-55.7646
-46.3271
-29.9233
-48.7604
-41.2317
-45.5573
-46.1032
-40.7773
-50.1579
-30.5315
-47.5417
-88.5874
-58.6343
-91.0024
-82.8622
-80.1419
-80.2406
-82.7442
-91.9269
-59.1897
-89.6152
-267.691
-143.204
-127.798
-108.825
-92.561
-92.5917
-109.024
-128.422
-143.449
-268.858
-416.419
-175.202
-79.8005
-49.7317
-33.8989
-33.9383
-49.8904
-80.0536
-175.443
-417.347
1887.51
1888.19
1888.67
1888.96
1889.05
1888.96
1888.68
1888.24
1887.64
1886.9
1861.05
1861.66
1862.12
1862.43
1862.59
1862.61
1862.49
1862.24
1861.88
1861.43
1834.89
1835.41
1835.84
1836.17
1836.41
1836.55
1836.6
1836.57
1836.46
1836.3
1811.15
1811.6
1812
1812.34
1812.6
1812.81
1812.96
1813.05
1813.1
1813.11
1789.09
1789.5
1789.86
1790.19
1790.47
1790.71
1790.91
1791.08
1791.22
1791.34
1768.26
1768.61
1768.95
1769.26
1769.54
1769.79
1770.02
1770.22
1770.41
1770.58
1748.37
1748.69
1748.99
1749.28
1749.54
1749.79
1750.03
1750.24
1750.45
1750.64
1729.24
1729.51
1729.77
1730.03
1730.28
1730.52
1730.75
1730.97
1731.18
1731.38
1710.66
1710.89
1711.12
1711.35
1711.59
1711.82
1712.05
1712.28
1712.5
1712.7
1692.49
1692.67
1692.88
1693.1
1693.33
1693.57
1693.81
1694.06
1694.3
1694.54
1674.57
1674.73
1674.92
1675.14
1675.38
1675.64
1675.92
1676.22
1676.53
1676.84
1656.78
1656.93
1657.13
1657.36
1657.63
1657.93
1658.27
1658.65
1659.07
1659.52
1639.03
1639.18
1639.39
1639.65
1639.95
1640.3
1640.71
1641.18
1641.72
1642.33
1621.24
1621.4
1621.62
1621.9
1622.23
1622.62
1623.07
1623.59
1624.18
1624.85
1603.36
1603.53
1603.76
1604.05
1604.4
1604.81
1605.3
1605.85
1606.48
1607.2
1585.32
1585.51
1585.75
1586.05
1586.41
1586.84
1587.33
1587.88
1588.52
1589.23
1567.11
1567.31
1567.57
1567.88
1568.25
1568.67
1569.14
1569.67
1570.26
1570.89
1548.72
1548.96
1549.23
1549.56
1549.92
1550.34
1550.8
1551.3
1551.83
1552.4
1530.19
1530.45
1530.76
1531.09
1531.47
1531.9
1532.36
1532.86
1533.4
1533.98
1511.54
1511.83
1512.15
1512.51
1512.9
1513.32
1513.78
1514.28
1514.81
1515.37
1492.8
1493.12
1493.45
1493.82
1494.21
1494.64
1495.09
1495.58
1496.09
1496.63
1473.99
1474.32
1474.67
1475.04
1475.44
1475.86
1476.32
1476.8
1477.3
1477.83
1455.12
1455.46
1455.82
1456.19
1456.59
1457.01
1457.46
1457.93
1458.43
1458.96
1436.21
1436.56
1436.91
1437.29
1437.68
1438.09
1438.53
1438.99
1439.47
1439.98
1417.27
1417.62
1417.97
1418.34
1418.72
1419.11
1419.53
1419.96
1420.42
1420.9
1398.32
1398.66
1399
1399.35
1399.71
1400.09
1400.47
1400.87
1401.28
1401.72
1379.37
1379.7
1380.02
1380.35
1380.69
1381.03
1381.37
1381.73
1382.09
1382.47
1360.43
1360.74
1361.05
1361.35
1361.65
1361.96
1362.26
1362.56
1362.86
1363.17
1341.52
1341.81
1342.09
1342.36
1342.62
1342.88
1343.13
1343.38
1343.61
1343.85
1322.63
1322.9
1323.14
1323.38
1323.6
1323.81
1324
1324.19
1324.36
1324.52
1303.76
1304
1304.21
1304.41
1304.58
1304.74
1304.88
1304.99
1305.09
1305.18
1284.91
1285.13
1285.31
1285.46
1285.58
1285.68
1285.75
1285.79
1285.81
1285.81
1266.11
1266.31
1266.46
1266.56
1266.62
1266.64
1266.63
1266.58
1266.51
1266.41
1247.41
1247.58
1247.68
1247.72
1247.7
1247.63
1247.52
1247.37
1247.19
1246.97
1228.89
1229
1229.03
1228.97
1228.85
1228.67
1228.43
1228.16
1227.84
1227.49
1210.64
1210.65
1210.55
1210.36
1210.08
1209.75
1209.36
1208.93
1208.45
1207.95
1192.8
1192.6
1192.29
1191.89
1191.41
1190.87
1190.29
1189.67
1189.01
1188.32
1175.43
1174.87
1174.23
1173.53
1172.77
1171.99
1171.17
1170.32
1169.45
1168.57
1158.41
1157.33
1156.25
1155.17
1154.08
1153
1151.91
1150.82
1149.73
1148.63
1140.96
1139.44
1137.96
1136.53
1135.13
1133.76
1132.41
1131.08
1129.76
1128.45
1122.85
1120.99
1119.21
1117.48
1115.81
1114.18
1112.58
1111.02
1109.49
1107.98
1104.04
1101.95
1099.93
1097.97
1096.06
1094.2
1092.38
1090.62
1088.89
1087.19
1084.65
1082.38
1080.16
1077.99
1075.87
1073.81
1071.8
1069.84
1067.94
1066.08
1064.82
1062.37
1059.96
1057.59
1055.27
1053.01
1050.82
1048.69
1046.63
1044.64
1044.7
1042.05
1039.42
1036.83
1034.29
1031.82
1029.44
1027.16
1024.97
1022.86
1024.44
1021.52
1018.61
1015.73
1012.92
1010.21
1007.63
1005.18
1002.88
1000.69
1004.17
1000.88
997.57
994.282
991.083
988.035
985.186
982.573
980.223
978.149
984.058
980.225
976.301
972.395
968.662
965.246
962.257
959.805
957.978
956.768
964.403
959.816
955.054
950.423
946.231
942.539
939.274
936.42
933.844
930.889
945.917
940.504
934.644
928.492
921.667
913.625
904.778
895.383
885.977
879.801
930.204
923.734
913.48
898.692
881.692
870.809
868.288
865.635
864.278
863.458
920.022
909.014
889.181
871.05
865.344
863.483
862.465
862.099
862.253
862.389
917.072
898.933
873.916
863.718
862.649
862.368
862.182
862.126
862.39
862.668
913.707
902.8
878.147
863.77
862.319
862.079
862.168
862.814
863.175
862.075
901.013
902.408
890.978
870.456
861.851
861.511
861.762
862.557
862.176
860.989
880.056
884.071
885.565
878.031
866.172
861.19
861.558
862.046
862.26
860.095
858.242
860.936
864.132
865.971
863.829
860.285
860.621
860.977
860.051
858.798
836.34
837.914
839.551
841.136
842.645
844.29
847.904
854.658
857.51
856.782
814.693
815.645
816.326
816.6
816.264
815.384
815.826
820.495
831.056
844.646
793.874
794.631
794.959
794.713
793.72
791.712
788.391
784.465
783.828
793.005
773.926
774.858
775.239
774.921
773.751
771.539
767.963
762.468
754.689
746.867
754.673
756.166
757.024
757.092
756.223
754.248
750.959
746.06
739.03
728.952
735.673
738.109
739.882
740.858
740.914
739.922
737.753
734.285
729.385
722.732
716.203
719.884
722.901
725.129
726.472
726.829
726.093
724.171
721
716.534
695.51
700.708
705.256
709.044
711.995
714.019
715.013
714.868
713.485
710.757
672.899
679.845
686.171
691.783
696.624
700.619
703.668
705.658
706.453
705.828
647.918
656.773
665.063
672.71
679.685
685.946
691.434
696.066
699.708
702.146
620.267
631.138
641.505
651.336
660.648
669.476
677.867
685.855
693.477
701.111
589.626
602.576
615.044
627.013
638.564
649.817
660.92
672.017
683.491
696.893
556.746
571.415
585.756
599.532
612.814
625.747
638.475
651.125
664.283
680.094
524.113
539.435
554.864
569.867
584.274
598.178
611.687
624.913
638.45
654.138
491.854
508.191
523.813
539.282
554.194
568.448
582.09
595.195
608.202
622.307
458.901
477.913
493.717
509.073
523.966
538.129
551.498
564.101
576.155
588.217
428.636
448.508
464.982
480.203
494.798
508.615
521.51
533.445
544.469
554.718
406.279
421.918
438.41
453.554
467.705
480.985
493.272
504.471
514.539
523.469
391.181
400.428
415.177
429.787
443.277
455.8
467.287
477.594
486.613
494.279
373.558
381.716
395.07
408.863
421.551
433.17
443.678
452.923
460.774
467.148
355.593
366.712
379.063
391.56
402.966
413.232
422.342
430.183
436.615
441.538
351.197
362.163
369.872
378.911
387.759
395.762
402.781
408.729
413.475
416.935
353.407
355.446
361.121
367.307
373.401
378.818
383.42
387.18
390.008
391.819
345.238
349.267
352.667
355.577
358.483
360.999
362.955
364.368
365.18
365.276
336.717
339.338
340.255
340.114
340.162
340.001
339.414
338.494
337.256
335.7
319.592
319.653
319.115
317.483
315.937
313.911
311.177
307.909
304.208
300.383
288.762
290.741
290.609
288.894
286.786
283.575
279.11
273.727
267.776
262.258
263.439
263.808
261.584
258.684
255.537
250.961
244.799
237.575
230.183
224.204
235.643
235.286
231.201
227.075
222.885
217.012
209.272
200.457
191.888
183.642
208.128
206.68
201.081
195.812
190.631
183.664
174.793
165.211
156.254
144.403
181.121
178.777
172.123
165.909
159.869
152.064
142.434
132.452
122.581
104.03
154.315
151.797
144.884
138.242
131.764
123.694
113.901
103.788
92.9309
71.3462
127.915
125.918
119.666
113.366
107.086
99.6145
90.6827
81.6398
72.129
54.181
103.483
102.092
96.8999
91.4229
85.6854
79.1774
71.3878
63.4119
55.0925
41.9551
81.6396
80.5551
76.3901
71.8994
67.0024
61.6906
55.1723
48.2428
41.2845
33.3342
58.9336
59.286
56.6431
53.5197
50.1376
46.5034
41.7071
36.5049
31.8927
27.7826
33.8953
37.5437
38.0398
36.8716
35.3872
33.3741
30.0665
26.221
22.6807
18.7962
18.3242
22.564
25.1806
24.6829
23.9237
22.467
19.6484
16.0795
11.2135
5.89214
15.3952
16.1473
17.3039
15.4328
14.1875
12.6409
9.82653
6.81419
0.307938
-2.755
11.152
8.59144
8.47446
5.99371
4.66661
3.28037
0.482063
-0.691365
-8.45064
-7.47394
-2.00505
-4.17723
-2.66714
-3.13675
-3.7608
-4.66315
-6.7252
-7.24291
-13.9988
-11.6526
-9.94142
-8.04614
-9.31586
-9.31784
-10.5097
-11.0666
-10.7768
-9.65486
-10.2357
-15.7896
-23.8568
-0.967454
-13.5695
-13.9629
-17.0636
-17.7464
-14.8656
-13.8976
-2.28776
-27.5058
1885.98
1884.89
1883.71
1882.46
1881.18
1879.91
1878.67
1877.49
1876.39
1875.41
1874.57
1873.87
1873.31
1872.86
1872.53
1872.32
1872.23
1872.24
1872.35
1872.55
1872.82
1873.16
1873.55
1873.98
1874.43
1874.91
1875.39
1875.87
1876.33
1876.77
1877.17
1877.51
1877.78
1877.98
1878.07
1878.07
1877.99
1878.25
1878.15
1878.8
1860.85
1860.13
1859.36
1858.55
1857.73
1856.93
1856.18
1855.48
1854.86
1854.34
1853.9
1853.58
1853.4
1853.33
1853.35
1853.46
1853.66
1853.92
1854.24
1854.61
1855.03
1855.47
1855.94
1856.42
1856.91
1857.4
1857.87
1858.32
1858.73
1859.1
1859.42
1859.67
1859.84
1859.92
1859.94
1859.95
1860.18
1860.89
1861.79
1862.13
1836.06
1835.74
1835.38
1835.02
1834.68
1834.36
1834.09
1833.88
1833.74
1833.67
1833.69
1833.79
1833.96
1834.2
1834.5
1834.85
1835.24
1835.67
1836.12
1836.59
1837.07
1837.56
1838.05
1838.54
1839.01
1839.47
1839.9
1840.3
1840.65
1840.96
1841.21
1841.41
1841.56
1841.69
1841.83
1842.1
1842.68
1843.66
1845.11
1845.6
1813.08
1812.99
1812.9
1812.82
1812.77
1812.75
1812.78
1812.86
1813.01
1813.22
1813.49
1813.82
1814.21
1814.65
1815.12
1815.63
1816.16
1816.7
1817.25
1817.8
1818.34
1818.87
1819.39
1819.88
1820.35
1820.79
1821.2
1821.57
1821.9
1822.19
1822.43
1822.65
1822.85
1823.06
1823.34
1823.78
1824.48
1825.53
1826.89
1829.48
1791.42
1791.48
1791.54
1791.62
1791.72
1791.87
1792.06
1792.31
1792.61
1792.98
1793.4
1793.88
1794.4
1794.97
1795.56
1796.17
1796.8
1797.42
1798.03
1798.64
1799.22
1799.79
1800.32
1800.83
1801.3
1801.74
1802.14
1802.5
1802.82
1803.1
1803.35
1803.58
1803.81
1804.06
1804.38
1804.83
1805.49
1806.41
1807.48
1812.99
1770.73
1770.85
1770.98
1771.13
1771.31
1771.51
1771.77
1772.07
1772.43
1772.86
1773.35
1773.9
1774.5
1775.15
1775.82
1776.51
1777.21
1777.9
1778.58
1779.24
1779.87
1780.48
1781.04
1781.57
1782.06
1782.51
1782.92
1783.29
1783.61
1783.9
1784.16
1784.4
1784.63
1784.88
1785.18
1785.58
1786.11
1786.84
1787.73
1792.15
1750.81
1750.96
1751.1
1751.25
1751.42
1751.61
1751.83
1752.09
1752.41
1752.8
1753.27
1753.83
1754.47
1755.16
1755.9
1756.66
1757.43
1758.2
1758.95
1759.68
1760.37
1761.03
1761.64
1762.21
1762.74
1763.22
1763.65
1764.04
1764.39
1764.69
1764.97
1765.22
1765.46
1765.71
1765.98
1766.31
1766.74
1767.33
1768.09
1769.23
1731.55
1731.69
1731.81
1731.92
1732.02
1732.11
1732.2
1732.3
1732.45
1732.68
1733.05
1733.56
1734.19
1734.93
1735.74
1736.58
1737.45
1738.32
1739.16
1739.98
1740.76
1741.49
1742.18
1742.81
1743.39
1743.93
1744.4
1744.83
1745.22
1745.56
1745.86
1746.14
1746.4
1746.65
1746.92
1747.23
1747.62
1748.14
1748.84
1749.55
1712.88
1713.01
1713.1
1713.16
1713.16
1713.08
1712.92
1712.68
1712.45
1712.35
1712.5
1712.89
1713.52
1714.32
1715.24
1716.22
1717.23
1718.24
1719.23
1720.18
1721.07
1721.91
1722.69
1723.41
1724.07
1724.67
1725.22
1725.7
1726.14
1726.53
1726.87
1727.18
1727.46
1727.72
1727.98
1728.26
1728.58
1728.99
1729.51
1729.99
1694.75
1694.91
1695.02
1695.05
1694.96
1694.68
1694.16
1693.38
1692.43
1691.64
1691.34
1691.55
1692.19
1693.13
1694.25
1695.5
1696.77
1697.97
1699.16
1700.28
1701.33
1702.31
1703.21
1704.04
1704.8
1705.49
1706.11
1706.67
1707.17
1707.61
1708
1708.34
1708.65
1708.92
1709.16
1709.39
1709.63
1709.89
1710.19
1710.46
1677.15
1677.42
1677.65
1677.79
1677.81
1677.65
1677.16
1675.7
1672.85
1670.14
1668.59
1668.44
1669.62
1671.4
1673.15
1674.35
1675.96
1677.52
1678.98
1680.34
1681.58
1682.72
1683.76
1684.72
1685.58
1686.37
1687.08
1687.71
1688.28
1688.79
1689.23
1689.61
1689.94
1690.22
1690.45
1690.63
1690.77
1690.88
1690.95
1691.01
1660.02
1660.57
1661.16
1661.83
1662.8
1664.22
1664.54
1659.67
1648.57
1641.95
1643.01
1645.13
1646.46
1648.19
1650.38
1652.74
1654.98
1657.01
1658.82
1660.44
1661.89
1663.2
1664.39
1665.46
1666.44
1667.32
1668.12
1668.83
1669.47
1670.04
1670.53
1670.96
1671.31
1671.6
1671.81
1671.95
1672
1671.96
1671.82
1671.66
1643.06
1643.93
1644.99
1646.54
1649.11
1651.89
1648.66
1637.86
1627.17
1618.18
1610.03
1613.91
1619.17
1623.8
1627.92
1631.4
1634.32
1636.79
1638.91
1640.76
1642.39
1643.84
1645.14
1646.32
1647.4
1648.34
1649.22
1650
1650.7
1651.33
1651.87
1652.34
1652.72
1653.01
1653.22
1653.32
1653.29
1653.12
1652.79
1652.44
1625.62
1626.52
1627.67
1629.45
1631.47
1628.74
1618.6
1621.71
1615.9
1587.95
1582.99
1590.09
1598.1
1603.94
1608.38
1611.96
1614.95
1617.48
1619.64
1621.54
1623.22
1624.72
1626.08
1627.31
1628.44
1629.44
1630.37
1631.2
1631.96
1632.63
1633.21
1633.71
1634.12
1634.43
1634.63
1634.7
1634.63
1634.35
1633.87
1633.38
1608.02
1609.03
1610.43
1612.53
1613.46
1607.11
1599.43
1600.26
1597.77
1585.97
1577.89
1580.05
1584.83
1588.67
1591.78
1594.51
1596.97
1599.14
1601.08
1602.83
1604.4
1605.85
1607.19
1608.41
1609.56
1610.59
1611.54
1612.41
1613.2
1613.9
1614.52
1615.05
1615.48
1615.81
1616.02
1616.08
1615.98
1615.64
1615.07
1614.48
1590.05
1591.07
1592.48
1594.43
1594.93
1590.64
1587.64
1586.88
1584.78
1577.24
1568.22
1568.04
1570.93
1573.46
1575.61
1577.64
1579.54
1581.3
1582.93
1584.43
1585.82
1587.13
1588.4
1589.58
1590.72
1591.77
1592.73
1593.61
1594.42
1595.14
1595.78
1596.33
1596.79
1597.13
1597.36
1597.44
1597.34
1596.99
1596.39
1595.76
1571.61
1572.44
1573.46
1574.55
1574.4
1573.26
1574.58
1575.33
1573.59
1566.16
1557.35
1555.18
1556.71
1558.3
1559.7
1561.09
1562.46
1563.79
1565.04
1566.24
1567.32
1568.45
1569.71
1570.83
1571.93
1572.96
1573.92
1574.81
1575.6
1576.33
1576.98
1577.55
1578.02
1578.39
1578.65
1578.77
1578.7
1578.4
1577.84
1577.24
1553.02
1553.69
1554.36
1554.86
1554.53
1554.03
1557.51
1561.07
1553.92
1549.32
1545.45
1541.86
1542
1542.89
1543.75
1544.64
1545.57
1546.51
1547.39
1548.15
1550.73
1549.8
1550.95
1552.12
1553.19
1554.18
1555.11
1555.98
1556.76
1557.47
1558.12
1558.69
1559.19
1559.59
1559.89
1560.06
1560.08
1559.87
1559.42
1558.92
1534.63
1535.38
1536.21
1537.12
1537.94
1538.24
1540.73
1541.43
1538.29
1534.82
1529.73
1525.83
1525.59
1526.55
1527.36
1528.06
1528.99
1529.24
1529.55
1529.44
1532.57
1531.35
1532.48
1533.49
1534.61
1535.53
1536.36
1537.17
1537.92
1538.6
1539.22
1539.79
1540.29
1540.72
1541.08
1541.34
1541.47
1541.42
1541.15
1540.81
1516.02
1516.75
1517.55
1518.44
1519.3
1519.89
1521.57
1524.1
1525.03
1520.05
1514.84
1511.67
1510.48
1510.87
1511.21
1511.41
1511.62
1512.9
1515.16
1510.34
1511.2
1512.66
1514.02
1515.2
1516.17
1517.04
1517.7
1518.42
1519.09
1519.72
1520.3
1520.84
1521.35
1521.82
1522.24
1522.6
1522.88
1523.03
1523.02
1522.89
1497.23
1497.91
1498.6
1499.29
1499.8
1500.04
1501.29
1506.48
1509.86
1506.81
1502.65
1498.05
1496.5
1496.57
1496.3
1495.82
1495.95
1498.2
1508.35
1501.2
1495.69
1495.55
1496.36
1497.27
1497.98
1498.63
1499.22
1499.79
1500.33
1500.86
1501.37
1501.88
1502.38
1502.88
1503.38
1503.86
1504.32
1504.73
1505.02
1505.16
1478.43
1479.09
1479.78
1480.46
1481.04
1481.32
1481.81
1485.48
1491.53
1492.91
1489.44
1485.8
1481.53
1481.39
1480.95
1480.66
1480.81
1481.77
1487.76
1485.96
1481.83
1479.55
1479.07
1479.58
1480.07
1480.47
1480.84
1481.22
1481.61
1482.01
1482.44
1482.9
1483.39
1483.93
1484.5
1485.12
1485.78
1486.47
1487.11
1487.56
1459.55
1460.22
1460.92
1461.66
1462.4
1462.97
1463.39
1465.36
1472.4
1478.6
1478.27
1475.53
1473.4
1471.07
1468.48
1469.48
1473.18
1462.61
1467.67
1468.48
1466.69
1463.24
1461.67
1461.72
1462.1
1462.34
1462.51
1462.69
1462.91
1463.18
1463.51
1463.9
1464.38
1464.95
1465.61
1466.37
1467.24
1468.24
1469.26
1470.03
1440.56
1441.22
1441.92
1442.67
1443.47
1444.26
1444.8
1445.43
1449.78
1461.37
1469.1
1468.54
1466.86
1465.54
1463.95
1458.28
1461.69
1454.22
1452.68
1454.03
1452.97
1449.33
1446.07
1444.72
1444.57
1444.48
1444.35
1444.26
1444.25
1444.35
1444.56
1444.88
1445.33
1445.92
1446.67
1447.58
1448.67
1449.98
1451.39
1452.49
1421.45
1422.07
1422.72
1423.42
1424.18
1425
1425.75
1426.12
1426.75
1433.02
1449.67
1462.3
1462.35
1461.51
1460.18
1459.28
1446.36
1448.09
1439.18
1440.26
1439.45
1436.5
1431.22
1428.13
1427.13
1426.64
1426.18
1425.79
1425.55
1425.47
1425.55
1425.79
1426.22
1426.83
1427.66
1428.71
1430.02
1431.64
1433.41
1434.83
1402.21
1402.76
1403.34
1403.95
1404.6
1405.3
1406.04
1406.64
1406.65
1406.89
1414.36
1435.39
1454.99
1455.71
1455.15
1453.75
1444.54
1443.4
1431.4
1428.35
1426.37
1423.23
1417.23
1412.07
1409.81
1408.76
1407.91
1407.21
1406.73
1406.46
1406.41
1406.58
1406.98
1407.63
1408.53
1409.72
1411.24
1413.13
1415.25
1416.95
1382.88
1383.34
1383.82
1384.31
1384.81
1385.31
1385.84
1386.35
1386.63
1386.17
1385.53
1391.05
1412.44
1436.94
1444.69
1438.21
1432.58
1430
1419.78
1413.45
1410.82
1407.68
1401.18
1395.11
1392.08
1390.5
1389.29
1388.32
1387.63
1387.22
1387.07
1387.19
1387.58
1388.26
1389.25
1390.56
1392.26
1394.39
1396.79
1398.75
1363.5
1363.86
1364.22
1364.58
1364.92
1365.24
1365.5
1365.69
1365.75
1365.41
1364.09
1361.62
1361.55
1373.33
1390.92
1406.66
1394.43
1396.83
1398.47
1391.6
1391.51
1389.06
1380.69
1375.95
1373.23
1371.44
1370.03
1368.92
1368.12
1367.63
1367.44
1367.54
1367.95
1368.68
1369.75
1371.19
1373.05
1375.4
1378.04
1380.37
1344.1
1344.36
1344.63
1344.88
1345.13
1345.36
1345.56
1345.72
1345.84
1345.91
1345.79
1345.09
1343.68
1344.11
1351.81
1362.19
1370.04
1367.88
1363.21
1365.14
1365.46
1363.7
1359.15
1355.92
1353.49
1351.61
1350.12
1348.97
1348.16
1347.66
1347.47
1347.6
1348.06
1348.85
1350.01
1351.55
1353.55
1356.07
1358.9
1361.42
1324.69
1324.85
1325.02
1325.18
1325.33
1325.48
1325.61
1325.75
1325.89
1326.06
1326.3
1326.61
1326.86
1327.12
1328.96
1335.84
1342.8
1346.97
1344.78
1342.63
1345.27
1342
1338.2
1335.18
1332.85
1331.01
1329.57
1328.48
1327.72
1327.28
1327.15
1327.34
1327.86
1328.72
1329.96
1331.59
1333.7
1336.34
1339.29
1341.86
1305.25
1305.32
1305.38
1305.43
1305.48
1305.52
1305.57
1305.62
1305.7
1305.81
1305.98
1306.28
1306.72
1307.23
1307.82
1309.73
1315.87
1325.65
1330.8
1314.46
1317.27
1316.04
1314.17
1312.34
1310.72
1309.34
1308.21
1307.35
1306.77
1306.46
1306.45
1306.73
1307.34
1308.28
1309.59
1311.3
1313.48
1316.19
1319.2
1321.78
1285.78
1285.74
1285.69
1285.62
1285.54
1285.47
1285.39
1285.32
1285.26
1285.21
1285.19
1285.19
1285.23
1285.24
1285
1284.42
1284.78
1288.47
1310.67
1304.81
1297.59
1294.13
1291.71
1290.03
1288.65
1287.49
1286.57
1285.9
1285.48
1285.32
1285.43
1285.82
1286.51
1287.53
1288.91
1290.67
1292.89
1295.63
1298.69
1301.19
1266.28
1266.12
1265.93
1265.74
1265.53
1265.32
1265.1
1264.89
1264.69
1264.5
1264.31
1264.13
1263.94
1263.72
1263.36
1262.61
1261.42
1261.61
1265.9
1286.59
1277.03
1272
1268.37
1266.8
1265.89
1265.12
1264.5
1264.07
1263.85
1263.86
1264.1
1264.6
1265.38
1266.48
1267.9
1269.7
1271.94
1274.68
1277.73
1280.16
1246.72
1246.42
1246.1
1245.77
1245.41
1245.06
1244.7
1244.35
1244.01
1243.68
1243.37
1243.06
1242.77
1242.49
1242.22
1241.86
1241.27
1240.82
1243.11
1248.43
1256.42
1249.84
1244.73
1242.92
1242.54
1242.35
1242.12
1241.97
1241.97
1242.14
1242.52
1243.13
1243.99
1245.14
1246.6
1248.41
1250.64
1253.34
1256.29
1258.74
1227.09
1226.65
1226.18
1225.69
1225.18
1224.68
1224.18
1223.68
1223.2
1222.74
1222.31
1221.9
1221.52
1221.19
1220.93
1220.76
1220.64
1220.57
1221.37
1225.41
1230.63
1232.89
1221.38
1219.58
1219.07
1219.36
1219.59
1219.73
1219.93
1220.26
1220.75
1221.44
1222.36
1223.55
1225.02
1226.82
1229.01
1231.64
1234.49
1236.96
1207.39
1206.77
1206.13
1205.48
1204.82
1204.16
1203.5
1202.86
1202.24
1201.64
1201.07
1200.54
1200.04
1199.57
1199.15
1198.78
1198.43
1197.98
1197.45
1197.9
1200.52
1210.94
1206.86
1200.99
1198.18
1197.61
1197.69
1197.81
1198.01
1198.37
1198.9
1199.62
1200.57
1201.76
1203.21
1204.98
1207.09
1209.63
1212.37
1214.74
1187.58
1186.77
1185.95
1185.13
1184.3
1183.47
1182.67
1181.88
1181.12
1180.4
1179.71
1179.07
1178.47
1177.93
1177.44
1177.01
1176.66
1176.31
1175.86
1175.69
1178.1
1181.97
1187.7
1179.45
1176.08
1174.93
1175.15
1175.52
1175.86
1176.31
1176.89
1177.66
1178.62
1179.79
1181.22
1182.92
1184.95
1187.37
1189.97
1192.07
1167.62
1166.61
1165.6
1164.59
1163.6
1162.61
1161.65
1160.72
1159.83
1158.99
1158.19
1157.45
1156.76
1156.13
1155.55
1155.02
1154.52
1154.02
1153.38
1152.55
1152.34
1153.78
1166.34
1162.7
1156.54
1153.76
1153.33
1153.57
1153.88
1154.3
1154.88
1155.63
1156.57
1157.72
1159.09
1160.72
1162.65
1164.92
1167.38
1169.35
1147.47
1146.25
1145.04
1143.85
1142.68
1141.54
1140.44
1139.38
1138.37
1137.42
1136.54
1135.73
1134.99
1134.33
1133.74
1133.24
1132.82
1132.48
1132.21
1131.9
1132.03
1134.95
1139.26
1143.53
1132.27
1130.44
1130.23
1130.85
1131.46
1132.04
1132.7
1133.49
1134.44
1135.56
1136.88
1138.41
1140.22
1142.35
1144.63
1146.48
1127.07
1125.65
1124.24
1122.87
1121.53
1120.24
1119
1117.82
1116.71
1115.67
1114.72
1113.86
1113.09
1112.41
1111.82
1111.32
1110.9
1110.54
1110.23
1109.86
1109.49
1110.15
1112.34
1121.85
1114.76
1110.62
1108.99
1109.06
1109.49
1110.01
1110.64
1111.41
1112.32
1113.4
1114.64
1116.07
1117.74
1119.7
1121.8
1123.5
1106.4
1104.77
1103.18
1101.63
1100.14
1098.7
1097.34
1096.05
1094.84
1093.73
1092.73
1091.84
1091.08
1090.43
1089.88
1089.43
1089.05
1088.73
1088.4
1087.93
1087.22
1086.74
1087.35
1100.23
1096.64
1089.72
1087.12
1086.91
1087.35
1087.9
1088.56
1089.35
1090.25
1091.27
1092.44
1093.76
1095.28
1097.04
1098.94
1100.49
1085.43
1083.61
1081.84
1080.13
1078.49
1076.91
1075.43
1074.04
1072.75
1071.57
1070.54
1069.67
1068.96
1068.4
1067.99
1067.72
1067.58
1067.57
1067.69
1067.91
1068.22
1069.21
1072.51
1076.72
1080.4
1061.38
1061.87
1063.1
1064.39
1065.46
1066.41
1067.34
1068.28
1069.28
1070.36
1071.55
1072.9
1074.45
1076.15
1077.5
1064.15
1062.16
1060.23
1058.36
1056.56
1054.85
1053.25
1051.77
1050.4
1049.15
1048.08
1047.24
1046.64
1046.23
1046
1045.93
1046.01
1046.25
1046.64
1047.18
1047.88
1049.14
1052.1
1054.75
1058.56
1040.32
1040.39
1041.61
1042.92
1044
1044.95
1045.84
1046.72
1047.61
1048.55
1049.57
1050.7
1051.99
1053.46
1054.6
1042.56
1040.43
1038.36
1036.34
1034.38
1032.53
1030.85
1029.36
1027.98
1026.54
1025.28
1024.49
1024.06
1023.89
1023.9
1024.08
1024.39
1024.86
1025.47
1026.23
1027.14
1028.54
1031.19
1033.48
1037.03
1019.09
1019.6
1020.89
1022.14
1023.17
1024.05
1024.84
1025.59
1026.33
1027.08
1027.88
1028.75
1029.75
1030.89
1031.81
1020.69
1018.45
1016.27
1014.1
1011.96
1009.95
1008.29
1006.99
1005.18
1002.75
1001.37
1001
1001.02
1001.29
1001.67
1002.15
1002.72
1003.37
1004.11
1004.96
1005.97
1007.41
1009.52
1012.69
1016.04
998.123
999.692
1001.06
1002.19
1003.07
1003.77
1004.38
1004.93
1005.45
1005.97
1006.5
1007.08
1007.74
1008.5
1009.2
998.466
996.201
993.978
991.678
989.232
986.775
984.728
982.805
982.913
982.363
976.386
976.369
977.403
978.499
979.465
980.351
981.18
981.968
982.675
983.28
983.839
984.588
984.536
992.401
989.155
984.581
983.569
983.498
983.691
983.947
984.217
984.485
984.742
984.987
985.228
985.478
985.751
986.078
986.486
987.468
976.268
974.649
973.231
971.221
967.983
964.053
960.675
960.345
970.067
958.03
953.015
953.004
954.857
956.592
958.004
959.377
960.448
961.442
962.383
963.286
964.31
965.84
969.212
973.611
962.478
963.855
964.153
964.358
964.538
964.663
964.74
964.782
964.795
964.782
964.749
964.704
964.66
964.641
964.683
965.398
956.055
955.823
955.598
952.498
943.582
935.579
931.433
945.963
936.327
931.105
929.65
931.102
933.338
935.681
937.934
939.615
940.287
941.274
941.932
942.117
941.573
940.596
950.094
950.189
948.287
947.419
946.781
946.35
946.037
945.777
945.539
945.3
945.045
944.763
944.448
944.096
943.713
943.318
942.968
943.015
926.082
917.708
906.687
900.371
891.374
899.168
906.381
892.576
899.556
902.625
904
908.243
914.968
917.119
918.155
920.337
921.726
922.788
923.064
922.029
920.429
929.579
930.829
931.036
930.193
929.185
928.315
927.659
927.13
926.663
926.221
925.777
925.308
924.794
924.217
923.561
922.813
921.989
921.237
920.807
875.462
869.217
866.106
865.951
867.848
869.719
858.238
861.272
871.839
876.111
889.993
888.007
892.243
897.075
900.497
903.259
905.241
905.898
904.98
904.362
908.567
910.255
911.792
911.649
910.846
909.926
909.148
908.482
907.876
907.302
906.736
906.152
905.524
904.824
904.022
903.087
901.976
900.68
899.386
898.751
862.723
862.628
862.872
862.977
862.806
861.055
855.879
856.759
865.73
873.933
872.324
874.279
879.669
883.982
887.116
889.402
890.08
889.234
888.591
889.67
889.203
891.585
892.432
892.005
891.229
890.458
889.738
889.053
888.392
887.747
887.1
886.429
885.706
884.898
883.973
882.889
881.599
880.072
878.485
879.875
862.382
862.361
862.507
862.642
862.47
860.985
854.471
857.252
857.698
864.179
864.656
868.372
871.194
873.453
875.241
875.033
873.067
871.284
874.339
867.825
871.593
873.093
873.018
872.42
871.697
870.947
870.191
869.445
868.718
868.008
867.301
866.574
865.797
864.936
863.95
862.797
861.425
859.777
857.859
858.309
862.701
862.5
862.457
862.466
862.134
859.877
853.325
853.948
861.967
861.926
862.05
861.993
861.85
861.89
860.663
856.825
859.8
857.406
853.202
855.361
855.823
855.219
854.31
853.352
852.397
851.454
850.538
849.662
848.831
848.039
847.269
846.496
845.688
844.804
843.803
842.619
841.153
839.399
837.339
836.287
861.959
861.768
861.569
861.273
860.432
860.145
857.951
854.751
852.577
853.812
850.539
849.06
848.295
848.073
846.943
847.339
846.246
838.605
839.922
839.242
838.039
836.739
835.436
834.156
832.912
831.719
830.594
829.549
828.583
827.69
826.85
826.036
825.21
824.329
823.341
822.145
820.609
819.435
817.206
815.121
860.073
859.828
859.657
859.409
858.961
857.402
858.913
853.824
863.84
856.477
848.491
838.528
832.941
831.109
835.186
835.873
827.941
826.696
824.381
822.129
820.082
818.171
816.364
814.655
813.047
811.548
810.168
808.914
807.784
806.769
805.848
804.993
804.163
803.307
802.361
801.215
799.752
798.894
796.475
793.962
858.107
857.867
857.927
857.845
857.408
856.359
844.399
850.313
847.983
866.448
862.857
841.976
823.963
813.652
813.905
828.242
815.217
811.166
807.094
804.069
801.429
798.962
796.655
794.515
792.539
790.728
789.083
787.608
786.302
785.157
784.153
783.261
782.436
781.619
780.73
779.646
778.362
776.466
773.963
771.397
857.642
857.188
857.058
856.93
856.8
856.71
855.657
844.166
853.849
846.772
877.501
871.332
835.326
802.828
795.314
798.534
797.485
793.108
788.519
784.843
781.648
778.702
775.979
773.475
771.184
769.1
767.22
765.546
764.076
762.808
761.728
760.809
760.007
759.253
758.455
757.5
756.145
754.123
751.265
748.366
856.81
856.946
856.519
856.22
856.356
856.849
860.382
856.631
844.057
827.424
841.323
868.228
857.818
823.246
790.487
779.075
776.362
772.541
768.111
764.051
760.445
757.168
754.159
751.397
748.874
746.578
744.507
742.662
741.046
739.666
738.518
737.585
736.827
736.175
735.52
734.705
733.471
731.422
728.401
725.347
852.906
854.834
854.973
854.598
855.272
860.224
872.505
863.502
835.517
808.344
805.353
831.04
847.031
833.336
798.088
764.62
752.01
748.502
745.131
741.306
737.632
734.265
731.154
728.266
725.597
723.146
720.918
718.916
717.157
715.657
714.434
713.492
712.813
712.339
711.954
711.461
710.522
708.632
705.552
702.319
816.611
840.669
847.288
849.619
851.153
872.726
874.953
848.33
819.879
793.741
777.959
783.353
808.298
818.908
801.663
762.828
731.723
722.315
719.713
716.82
713.48
710.22
707.148
704.242
701.497
698.929
696.55
694.382
692.45
690.795
689.46
688.489
687.909
687.696
687.739
687.801
687.407
685.854
682.766
679.307
746.128
759.997
786.872
830.151
826.919
849.242
841.723
812.071
792.082
774.57
757.613
753.112
759.52
780.817
784.497
756.837
719.617
696.594
691.771
690.458
688.184
685.356
682.495
679.709
677.004
674.397
671.921
669.617
667.527
665.712
664.238
663.179
662.624
662.633
663.141
663.925
664.285
663.198
660.128
656.431
714.097
697.349
695.691
741.429
773.351
772.552
777.083
764.84
752.011
743.241
730.014
722.933
716.616
728.268
746.314
741.313
699.758
671.579
661.917
663.12
663.175
661.261
658.761
656.143
653.379
650.489
647.545
644.581
641.631
638.766
636.115
633.846
632.407
633.011
636.185
640.074
642.187
641.428
638.074
634.051
712.898
698.374
683.642
688.66
732.462
739.924
731.506
719.692
709.721
703.597
697.078
689.247
680.593
677.084
687.276
692.687
684.196
636.64
629.01
634.416
636.269
633.613
630.158
626.281
621.806
617.138
612.464
607.696
602.833
598.069
593.754
589.992
586.864
586.604
594.002
608.347
618.43
620.427
616.788
612.499
710.27
701.363
690.092
681.08
688.97
713.647
703.7
681.125
671.611
666.809
661.202
654.585
647.09
638.718
631.49
626.949
624.485
609.66
586.566
594.416
594.347
589.584
585.982
582.645
579.611
577.165
575.075
573.198
571.563
570.223
569.225
568.606
568.51
568.865
569.783
578.261
589.818
597.417
596.024
592.782
706.25
699.213
689.464
677.919
670.761
670.891
682.66
651.549
633.818
630.905
627.905
624.063
619.928
615.217
608.234
595.448
576.607
573.19
569.214
568.517
568.31
567.853
567.438
567.159
566.992
566.893
566.832
566.795
566.776
566.782
566.817
566.877
566.955
567.078
567.503
569.104
572.119
576.853
578.473
577.837
703.235
697.574
688.156
674.875
661.541
651.815
636.028
629.384
592.87
594.675
596.239
596.587
596.737
597.074
596.102
587.447
570.818
566.585
566.449
566.483
566.576
566.558
566.533
566.515
566.497
566.487
566.486
566.494
566.508
566.53
566.561
566.601
566.645
566.688
566.744
566.818
565.362
561.762
564.435
567.699
703.206
701.881
694.807
675.983
650.383
623.723
587.13
579.852
557.214
563.545
568.837
572.828
576.385
579.837
581.269
575.379
567.7
566.471
566.386
566.377
566.4
566.418
566.435
566.452
566.466
566.476
566.486
566.497
566.51
566.523
566.538
566.555
566.575
566.604
566.602
566.385
560.286
550.678
554.313
560.972
710.269
719.817
714.934
680.233
622.491
574.944
543.44
527.624
529.741
539.283
548.045
555.043
561.518
567.973
571.163
568.943
566.608
566.397
566.39
566.4
566.407
566.413
566.42
566.427
566.435
566.442
566.448
566.455
566.462
566.47
566.476
566.487
566.51
566.507
566.348
563.638
548.371
540.968
547.737
555.761
715.178
729.553
704.879
649.393
608.856
584.61
556.574
527.566
521.491
527.889
536.639
543.658
550.478
558.331
564.282
566.64
566.337
566.306
566.326
566.341
566.352
566.361
566.369
566.377
566.385
566.392
566.399
566.407
566.423
566.448
566.454
566.438
566.375
566.113
562.701
547.688
533.144
533.755
541.86
549.425
700.318
704.504
652.178
607.877
597.437
594.335
590.098
563.633
534.705
529.512
533.475
536.63
539.704
546.111
557.951
566.224
566.265
566.262
566.27
566.287
566.303
566.317
566.332
566.355
566.38
566.395
566.402
566.4
566.385
566.356
566.272
566.054
564.563
556.908
541.058
526.501
522.879
526.748
533.522
540.041
672.31
671.997
627.44
599.638
594.58
594.257
592.048
566.75
535.049
527.697
528.837
528.996
528.22
530.786
545.356
563.254
566.038
566.209
566.259
566.29
566.31
566.32
566.317
566.305
566.295
566.275
566.236
566.152
565.96
564.652
561.175
553.996
541.905
528.104
517.601
513.415
513.694
516.597
521.836
527.137
637.418
638.363
611.946
595.28
592.908
592.237
589.254
564.989
534.534
525.829
524.418
522.311
519.312
517.145
522.849
542.754
560.314
565.669
566.092
566.218
566.218
566.178
566.073
565.717
564.619
562.971
560.448
556.396
550.236
541.531
531.01
520.544
511.953
506.145
502.839
501.23
501.138
503.028
506.937
511.063
600.66
606.787
599.066
591.218
591.204
589.654
585.26
560.607
530.07
520.453
517.673
514.337
510.727
507.568
506.594
512.825
527.638
542.192
551.476
554.688
554.961
553.596
550.932
546.906
541.682
535.054
527.178
519.049
511.687
505.371
500.079
495.868
492.522
489.613
487.259
485.761
485.409
486.699
489.457
492.447
564.749
573.186
578.645
582.967
585.788
583.881
579.088
554.15
521.87
510.934
507.228
503.083
498.937
495.718
493.79
493.895
497.078
502.564
507.842
511.013
511.53
509.993
507.334
504.061
500.402
496.484
492.517
488.781
485.434
482.354
479.342
476.396
473.601
471.109
469.169
467.85
467.493
468.249
469.998
471.937
531.68
538.734
547.179
563.462
573.926
575.311
569.116
544.381
510.145
497.2
492.582
487.691
482.734
478.76
476.127
474.862
474.773
475.409
476.242
476.786
476.756
476.158
475.128
473.76
472.057
470.027
467.745
465.314
462.797
460.228
457.659
455.183
452.912
451.013
449.448
448.378
447.941
448.197
449.068
450.142
500.783
505.086
509.974
530.502
554.056
563.16
553.4
529.456
494.411
478.983
473.307
467.803
462.218
457.524
454.043
451.747
450.447
449.827
449.566
449.398
449.136
448.681
447.985
447.02
445.782
444.291
442.594
440.749
438.816
436.851
434.909
433.049
431.354
429.838
428.597
427.682
427.139
426.981
427.14
427.524
472.156
474.382
475.008
488.487
517.919
540.371
527.934
506.338
471.954
454.728
448.433
442.8
437.133
432.29
428.54
425.822
423.98
422.813
422.097
421.631
421.257
420.864
420.38
419.758
418.977
418.033
416.942
415.731
414.428
413.071
411.698
410.353
409.074
407.908
406.892
406.055
405.404
404.907
404.514
404.373
445.022
445.629
442.505
443.267
463.125
501.326
497.035
476.219
440.808
423.004
417.148
412.229
407.263
403.011
399.706
397.276
395.584
394.479
393.802
393.406
393.17
392.996
392.812
392.567
392.229
391.779
391.214
390.541
389.772
388.926
388.031
387.114
386.203
385.321
384.49
383.716
382.976
382.213
381.405
380.865
419.212
419.271
415.951
413.669
429.259
452.639
463.513
420.889
392.772
380.501
378.123
375.702
372.682
369.963
367.867
366.384
365.432
364.909
364.711
364.733
364.88
365.08
365.275
365.425
365.5
365.485
365.373
365.162
364.856
364.462
363.991
363.457
362.87
362.242
361.574
360.857
360.055
359.093
357.99
357.153
392.685
392.161
389.828
386.016
383.099
395.199
407.614
369.931
342.872
334.611
335.388
335.615
334.922
334.222
333.815
333.72
333.905
334.321
334.905
335.588
336.309
337.016
337.675
338.261
338.762
339.168
339.477
339.688
339.799
339.808
339.715
339.52
339.221
338.817
338.296
337.636
336.798
335.705
334.404
333.36
364.774
364.259
363.42
350.838
308.31
309.174
320.637
306.663
283.641
283.192
288.749
292.47
294.791
296.651
298.34
299.947
301.526
303.093
304.637
306.131
307.547
308.858
310.053
311.124
312.073
312.903
313.619
314.221
314.709
315.076
315.315
315.417
315.371
315.164
314.778
314.19
313.349
312.184
310.764
309.647
334.418
335.169
334.154
304.975
247.804
224.642
230.3
219.412
216.127
228.975
240.677
248.583
254.329
258.935
262.801
266.153
269.153
271.896
274.427
276.758
278.891
280.827
282.57
284.133
285.527
286.768
287.868
288.832
289.66
290.344
290.874
291.237
291.415
291.389
291.137
290.633
289.827
288.646
287.17
285.964
297.471
294.653
274.4
221.269
187.63
174.526
162.632
154.28
165.436
184.286
198.751
209.019
216.966
223.472
228.932
233.625
237.759
241.469
244.832
247.887
250.653
253.148
255.39
257.402
259.207
260.826
262.274
263.568
264.703
265.67
266.46
267.057
267.441
267.585
267.468
267.059
266.311
265.151
263.663
262.355
257.784
244.126
192.398
136.885
130.042
138.744
131.244
122.314
134.768
152.131
165.543
175.81
184.282
191.49
197.696
203.116
207.928
212.26
216.193
219.772
223.021
225.961
228.614
231.008
233.17
235.126
236.912
238.502
239.9
241.128
242.153
242.966
243.539
243.847
243.861
243.551
242.866
241.744
240.281
238.918
216.548
182.46
122.567
97.0057
97.3173
101.515
97.4746
97.1581
110.591
125.668
137.538
147.145
155.405
162.646
169.024
174.69
179.783
184.411
188.647
192.536
196.1
199.353
202.317
205.015
207.474
209.727
211.781
213.687
215.312
216.782
218.034
219.048
219.8
220.261
220.404
220.193
219.573
218.576
217.088
215.78
163.777
114.546
84.3386
78.5226
80.9461
82.7472
80.0131
81.9885
92.3823
104.265
114.092
122.477
130.001
136.796
142.906
148.413
153.421
158.026
162.296
166.27
169.969
173.397
176.564
179.485
182.178
184.68
186.988
189.137
191.051
192.739
194.197
195.394
196.314
196.924
197.198
197.101
196.61
195.623
194.131
192.813
112.17
72.9215
65.0403
67.1184
68.9774
68.511
64.946
67.1105
75.4912
85.4284
93.5944
100.764
107.56
113.724
119.209
124.188
128.781
133.066
137.11
140.957
144.621
148.097
151.381
154.479
157.4
160.204
163.062
165
167.159
169.058
170.7
172.062
173.127
173.866
174.251
174.248
173.875
172.932
171.48
170.148
65.9532
46.3505
52.0787
59.112
60.1434
57.5252
53.1868
53.5467
61.218
70.0815
75.5876
80.5813
87.6185
94.0033
98.3054
101.97
105.618
109.269
112.873
116.424
119.918
123.331
126.637
129.828
132.925
135.964
139.255
141.329
143.708
145.8
147.606
149.114
150.301
151.146
151.624
151.711
151.351
150.474
149.16
147.878
39.4728
26.6092
37.111
47.2811
48.8507
46.4769
41.0942
38.1672
46.0178
59.0812
56.5825
55.6445
65.2521
73.7526
79.3955
81.4666
83.5004
86.1065
89.0919
92.2792
95.5658
98.8745
102.145
105.388
108.689
112.634
115.378
118.227
120.776
123.027
124.971
126.595
127.882
128.815
129.373
129.536
129.253
128.465
127.243
126.057
30.9931
18.1473
22.1711
26.2971
28.6761
28.7918
25.7292
21.3766
22.2734
31.995
30.4615
39.085
47.4015
43.311
49.8479
56.7486
60.0589
62.2834
64.8779
67.8955
71.1189
74.3611
77.5056
80.7981
84.9162
91.8105
92.7529
95.7715
98.4401
100.809
102.858
104.571
105.935
106.937
107.563
107.796
107.595
106.908
105.812
104.743
27.2694
16.0687
16.0676
12.5486
13.6967
14.6851
13.0243
10.549
9.66555
12.3284
19.4249
22.6144
19.7228
17.3254
15.6541
26.3641
33.8746
37.2238
39.9546
43.117
46.4993
49.8463
53.1626
57.1877
71.8482
67.7538
71.0651
74.0687
76.8049
79.2512
81.3665
83.1333
84.5443
85.5938
86.2747
86.5733
86.4572
85.883
84.9384
84.0193
24.6505
12.2533
9.81631
9.00656
9.60168
8.12773
6.94175
6.26076
6.14457
6.80585
8.14556
7.38417
9.65502
7.40246
8.34561
11.8942
11.4123
13.2443
15.2411
18.4712
22.2382
26.4258
31.7564
43.7545
49.5544
45.6129
49.4802
52.8056
55.7511
58.332
60.5311
62.3459
63.7858
64.8641
65.5892
65.9571
65.9394
65.4951
64.713
63.9654
20.943
5.43648
2.86242
5.84824
7.95818
6.21941
5.28127
5.15669
4.95403
4.80994
4.59466
3.06405
6.2329
6.14819
-7.70816
0.472085
-5.07651
-10.8517
-11.9143
-8.1202
-3.14877
3.48279
12.227
22.1284
23.7836
25.3104
29.053
32.573
35.6613
38.3284
40.5643
42.3714
43.7875
44.8563
45.6109
46.0608
46.1753
45.8975
45.2929
44.7067
13.362
-0.906302
-9.8686
-4.3976
4.45278
5.87693
5.24537
4.56934
4.02251
3.61323
2.77872
0.866992
-10.9615
-26.1401
-31.9536
-6.49234
-10.2045
-29.5291
-39.2297
-36.3725
-29.0507
-19.2038
-4.31693
-0.194341
1.47292
4.70403
9.13005
13.0478
16.3664
19.1569
21.3869
23.0757
24.3523
25.3337
26.0984
26.6834
27.0532
27.0968
26.79
26.3841
3.76633
0.38484
-5.68619
-4.67855
-3.54391
1.91559
3.42415
3.4784
2.79292
2.26674
1.86206
1.04961
-19.4492
-48.6354
-55.9905
-23.0664
-26.3493
-59.8042
-73.9624
-68.2622
-54.0551
-35.132
-27.1497
-27.2587
-22.852
-16.5058
-11.0227
-6.8245
-3.29425
-0.227211
2.21548
3.98254
5.36795
6.53146
7.52556
8.45439
9.34984
9.98806
10.0078
9.69518
-0.311883
-0.0954976
-0.392854
-2.00187
-5.10314
-6.31034
-3.04009
-1.00584
0.171877
0.71796
0.53721
-1.53289
-17.2433
-71.4981
-88.8788
-70.5598
-58.7165
-109.15
-122.457
-107.126
-77.9348
-65.915
-64.6565
-57.2245
-48.3241
-38.8924
-31.8312
-26.3564
-20.5014
-14.2266
-9.08952
-6.16634
-4.12692
-2.51067
-1.34687
-0.419586
0.357081
0.815022
0.835885
1.00506
-0.835573
-0.638446
-0.671875
-0.908911
-1.7715
-4.81766
-10.0388
-10.1607
-6.09079
-4.01855
-2.44004
-2.19223
-6.1819
-77.6567
-140.088
-131.846
-112.727
-178.585
-189.231
-157.014
-132.095
-116.234
-104.757
-90.2728
-67.6273
-42.3327
-25.0112
-16.8518
-11.0111
-6.65704
-4.21442
-2.9753
-2.40554
-2.15995
-2.04016
-1.98041
-1.95123
-1.94394
-1.96638
-1.87391
-0.896347
-0.848654
-0.9031
-0.885672
-0.849754
-1.09283
-2.24645
-7.42557
-11.8467
-11.5256
-8.34479
-4.77509
-11.9982
-67.1397
-174.616
-215.57
-217.778
-293.279
-294.939
-247.363
-202.794
-155.17
-95.181
-50.8585
-23.2761
-10.7093
-5.27808
-3.26965
-2.51167
-2.18665
-2.03521
-1.98344
-1.96429
-1.95035
-1.93797
-1.92828
-1.92196
-1.91922
-1.92052
-1.91444
-1.09068
-0.965698
-0.957072
-0.884183
-0.657195
-0.362154
-0.12641
-0.089297
-3.63306
-11.2515
-20.2867
-23.0615
-21.5111
-46.363
-216.437
-400.51
-489.439
-572.879
-526.335
-341.523
-159.055
-62.8565
-20.8319
-5.09223
-1.92256
-1.50643
-1.72122
-1.88447
-1.88883
-1.84425
-1.82037
-1.82919
-1.85807
-1.89002
-1.91421
-1.92983
-1.93745
-1.94021
-1.93999
-1.93722
-5.62105
-1.59288
-1.19096
-1.23158
-1.33143
-2.10379
-2.67464
-2.60499
-4.55856
-10.2194
-22.2641
-32.6388
-33.0981
-42.9042
-134.837
-451.1
-730.338
-787.069
-550.663
-231.687
-74.8984
-25.0244
-9.40317
-4.33539
-2.61807
-1.84466
-1.58071
-1.64496
-1.79324
-1.8817
-1.91594
-1.93843
-1.96229
-1.96634
-1.96493
-1.9628
-1.96097
-1.9593
-1.95739
-1.95511
1863.09
1862.63
1863.02
1863.25
1863.47
1863.61
1863.67
1863.66
1863.59
1863.49
1863.36
1863.22
1863.08
1862.94
1862.82
1862.73
1862.67
1862.64
1862.67
1862.75
1862.9
1863.13
1863.46
1863.9
1864.47
1865.18
1866.06
1867.1
1868.34
1869.78
1871.42
1873.19
1875.05
1876.95
1878.85
1880.68
1882.41
1883.99
1885.39
1886.59
1846.61
1845.85
1844.85
1844.58
1844.64
1844.76
1844.86
1844.9
1844.91
1844.89
1844.86
1844.81
1844.77
1844.73
1844.71
1844.7
1844.72
1844.75
1844.8
1844.87
1844.96
1845.05
1845.16
1845.3
1845.48
1845.73
1846.07
1846.53
1847.21
1848.04
1849.03
1850.17
1851.42
1852.76
1854.15
1855.53
1856.86
1858.12
1859.27
1860.27
1830.03
1829.59
1827.61
1826.85
1826.43
1826.23
1826.16
1826.14
1826.14
1826.15
1826.15
1826.16
1826.18
1826.2
1826.23
1826.27
1826.33
1826.39
1826.45
1826.51
1826.54
1826.56
1826.55
1826.5
1826.44
1826.37
1826.33
1826.36
1826.48
1826.72
1827.12
1827.65
1828.31
1829.09
1829.95
1830.85
1831.76
1832.65
1833.5
1834.26
1811.87
1811.11
1808.64
1808.06
1807.66
1807.41
1807.28
1807.2
1807.15
1807.13
1807.12
1807.12
1807.12
1807.13
1807.15
1807.16
1807.18
1807.19
1807.19
1807.16
1807.1
1807
1806.85
1806.66
1806.42
1806.17
1805.93
1805.75
1805.66
1805.67
1805.79
1806.04
1806.4
1806.87
1807.43
1808.05
1808.7
1809.37
1810.01
1810.62
1791.16
1789.75
1789.14
1788.83
1788.57
1788.38
1788.24
1788.14
1788.07
1788
1787.95
1787.9
1787.86
1787.81
1787.76
1787.7
1787.62
1787.53
1787.41
1787.25
1787.05
1786.79
1786.48
1786.12
1785.73
1785.35
1785.05
1784.86
1784.81
1784.84
1784.95
1785.13
1785.39
1785.73
1786.15
1786.62
1787.12
1787.64
1788.15
1788.64
1770.33
1770.06
1769.88
1769.68
1769.49
1769.33
1769.19
1769.06
1768.95
1768.84
1768.73
1768.62
1768.5
1768.37
1768.21
1768.04
1767.83
1767.58
1767.28
1766.92
1766.5
1766
1765.44
1764.83
1764.21
1763.69
1763.45
1763.59
1763.93
1764.26
1764.56
1764.84
1765.14
1765.46
1765.82
1766.21
1766.62
1767.04
1767.46
1767.87
1750.78
1750.74
1750.67
1750.56
1750.45
1750.34
1750.15
1750
1749.85
1749.69
1749.51
1749.33
1749.12
1748.88
1748.61
1748.29
1747.91
1747.46
1746.93
1746.29
1745.55
1744.67
1743.68
1742.57
1741.44
1740.47
1740.33
1741.86
1743.69
1744.65
1745.09
1745.43
1745.76
1746.08
1746.39
1746.71
1747.04
1747.37
1747.71
1748.05
1731.43
1731.5
1731.54
1731.51
1731.42
1731.36
1731.16
1730.98
1730.77
1730.55
1730.3
1730.04
1729.75
1729.42
1729.02
1728.56
1728
1727.33
1726.51
1725.52
1724.31
1722.85
1721.11
1719.35
1716.84
1713.9
1713.06
1718.04
1723.99
1727.7
1727.81
1727.51
1727.53
1727.69
1727.85
1728.04
1728.24
1728.47
1728.72
1728.97
1712.27
1712.33
1712.47
1712.51
1712.45
1712.34
1712.23
1711.94
1711.68
1711.41
1711.12
1710.8
1710.44
1710.03
1709.55
1708.97
1708.26
1707.38
1706.3
1704.94
1703.23
1701.06
1698.25
1694.61
1689.79
1684.55
1685.67
1699.36
1702.69
1711.42
1712.66
1711.19
1710.4
1710.14
1710.05
1710.03
1710.07
1710.16
1710.3
1710.46
1693.22
1693.3
1693.49
1693.56
1693.51
1693.39
1693.21
1692.98
1692.55
1692.22
1691.89
1691.57
1691.22
1690.79
1690.28
1689.66
1688.9
1687.95
1686.77
1685.27
1683.37
1680.93
1677.71
1673.24
1667.6
1663.41
1668.46
1679.48
1681.52
1690.24
1695.94
1695.17
1693.63
1692.9
1692.56
1692.36
1692.25
1692.22
1692.26
1692.34
1674.2
1674.33
1674.54
1674.62
1674.56
1674.4
1674.17
1673.83
1673.68
1672.97
1672.62
1672.34
1672.08
1671.73
1671.29
1670.73
1670.05
1669.21
1668.15
1666.83
1665.16
1663.03
1660.23
1656.64
1653.41
1652.21
1654.57
1657.92
1659.99
1667.48
1676.75
1677.93
1676.37
1675.45
1675.02
1674.74
1674.56
1674.45
1674.42
1674.46
1655.2
1655.43
1655.61
1655.66
1655.59
1655.41
1655.12
1654.7
1654.45
1653.51
1653.06
1653.1
1653.14
1652.96
1652.63
1652.22
1651.73
1651.14
1650.39
1649.45
1648.26
1646.7
1644.66
1642.53
1641.34
1642.6
1643.47
1644.84
1646.1
1651.53
1659.14
1660.34
1658.92
1657.97
1657.47
1657.14
1656.9
1656.75
1656.68
1656.69
1636.33
1636.49
1636.62
1636.66
1636.58
1636.4
1636.11
1635.67
1635
1637.08
1636.71
1634.29
1634.71
1634.69
1634.24
1633.99
1633.92
1633.74
1633.45
1633.1
1632.64
1632.06
1631.55
1631.43
1631.18
1631.9
1634.23
1635.72
1635.26
1636.67
1641.1
1641.6
1640.75
1640.11
1639.7
1639.39
1639.16
1639.01
1638.93
1638.94
1618.3
1617.72
1617.76
1617.74
1617.67
1617.55
1617.39
1617.2
1617.09
1618.06
1620.45
1619.16
1617.21
1616.53
1616.58
1616.69
1616.17
1616.55
1616.92
1617.29
1617.7
1618.25
1619.29
1621.13
1623
1623.19
1624.71
1627.13
1625.68
1622.36
1623.19
1623.21
1622.74
1622.27
1621.88
1621.58
1621.35
1621.2
1621.13
1621.14
1600.42
1599.72
1599.27
1599.06
1598.89
1598.78
1598.71
1598.71
1598.85
1599.48
1600.81
1601.66
1600.96
1600.59
1600.48
1600.65
1600.28
1599.94
1600.69
1601.71
1602.98
1604.67
1606.88
1612.05
1614.21
1614.96
1615.49
1616.15
1614.64
1609.75
1607.3
1606.21
1605.37
1604.67
1604.13
1603.74
1603.47
1603.3
1603.23
1603.25
1582.06
1581.55
1580.69
1580.32
1580.09
1579.98
1579.99
1580.14
1580.48
1581.09
1581.83
1582.3
1583.29
1583.43
1583.44
1583.64
1583.81
1583.76
1584.53
1586.16
1588.53
1591.87
1596.39
1604.55
1607.06
1607.67
1608.2
1605.54
1595.84
1589.94
1588.33
1587.68
1586.99
1586.36
1585.88
1585.54
1585.31
1585.18
1585.14
1585.19
1562.86
1562.39
1561.78
1561.39
1561.15
1561.06
1561.1
1561.31
1561.69
1562.29
1563.08
1563.99
1564.75
1565.36
1566.19
1566.73
1567.33
1567.67
1567.8
1569.68
1572.72
1577.05
1583.38
1592.24
1596.01
1597.73
1597.67
1588.68
1574.41
1569.93
1569.36
1568.87
1568.23
1567.7
1567.32
1567.06
1566.9
1566.84
1566.86
1566.95
1544.04
1543.57
1542.97
1542.51
1542.24
1542.12
1542.15
1542.34
1542.7
1543.23
1543.93
1544.81
1545.86
1547.01
1547.94
1548.8
1550.53
1551.11
1550.14
1551.17
1553.48
1556.56
1561.09
1566.77
1564.23
1579.89
1564.27
1553.33
1549.61
1550.15
1549.85
1549.33
1548.9
1548.6
1548.41
1548.3
1548.25
1548.28
1548.37
1548.52
1525.54
1524.71
1524.05
1523.57
1523.27
1523.13
1523.13
1523.28
1523.56
1523.99
1524.56
1525.27
1526.11
1527.08
1528.19
1529.35
1533.85
1535.66
1530.33
1531.15
1532.76
1534.57
1537.17
1538.21
1530.03
1552.85
1524.35
1521.25
1525.44
1527.74
1528.63
1528.84
1528.99
1529.11
1529.2
1529.29
1529.4
1529.54
1529.72
1529.94
1506.59
1506.01
1505.13
1504.6
1504.26
1504.08
1504.04
1504.13
1504.33
1504.65
1505.07
1505.58
1506.16
1506.79
1507.44
1508.01
1509.42
1511.45
1509.59
1510.39
1511.43
1512.56
1513.86
1513.47
1512.2
1523.89
1497.44
1502.67
1507.46
1507.83
1508.76
1509.22
1509.57
1509.86
1510.09
1510.3
1510.51
1510.73
1510.98
1511.25
1487.14
1486.89
1485.85
1485.39
1485.09
1484.92
1484.86
1484.9
1485.03
1485.25
1485.55
1485.91
1486.31
1486.74
1487.16
1487.56
1487.99
1488.37
1488.5
1488.63
1488.73
1488.63
1487.64
1484.98
1501.97
1497.36
1484.7
1486.75
1490.04
1490.46
1490.43
1490.5
1490.69
1490.91
1491.14
1491.38
1491.62
1491.89
1492.17
1492.48
1467.63
1467.17
1466.67
1466.17
1465.89
1465.7
1465.61
1465.61
1465.67
1465.81
1466
1466.23
1466.49
1466.77
1467.04
1467.29
1467.49
1467.64
1467.74
1467.83
1467.91
1467.8
1467.61
1471.9
1484.95
1470.88
1468.73
1474.49
1469.69
1470.78
1471.11
1471.32
1471.58
1471.86
1472.13
1472.41
1472.69
1473
1473.31
1473.65
1447.97
1447.64
1447.21
1446.85
1446.58
1446.4
1446.29
1446.24
1446.26
1446.32
1446.42
1446.54
1446.69
1446.83
1446.93
1446.99
1446.93
1446.72
1446.28
1445.49
1444.1
1441.31
1435.75
1465.04
1461.38
1474.66
1458.89
1468.81
1448.66
1451.15
1451.8
1452.12
1452.47
1452.8
1453.12
1453.43
1453.75
1454.07
1454.42
1454.77
1428.25
1428
1427.69
1427.41
1427.18
1427.02
1426.9
1426.83
1426.79
1426.8
1426.83
1426.89
1426.97
1427.05
1427.11
1427.15
1427.14
1427.07
1426.92
1426.62
1426.03
1425.46
1428
1444.33
1433.81
1456.57
1439.02
1454.23
1434.96
1434.46
1434.11
1433.88
1433.89
1434.04
1434.26
1434.53
1434.83
1435.15
1435.5
1435.86
1408.46
1408.32
1408.12
1407.92
1407.74
1407.6
1407.47
1407.37
1407.3
1407.26
1407.24
1407.24
1407.26
1407.28
1407.3
1407.3
1407.23
1407.05
1406.66
1405.9
1404.7
1403.01
1428.41
1427.04
1426.39
1431.15
1417.77
1431.34
1414.07
1413.57
1414.01
1414.27
1414.53
1414.83
1415.15
1415.48
1415.82
1416.17
1416.54
1416.91
1388.64
1388.61
1388.54
1388.43
1388.3
1388.17
1388.04
1387.92
1387.81
1387.71
1387.65
1387.61
1387.61
1387.66
1387.75
1387.9
1388.12
1388.43
1388.8
1389.39
1390.94
1398.72
1409.58
1393.76
1414.73
1405.79
1407.69
1412.09
1392.79
1393.65
1394.38
1394.85
1395.26
1395.66
1396.05
1396.44
1396.81
1397.19
1397.57
1397.95
1368.82
1368.92
1369
1368.99
1368.92
1368.8
1368.65
1368.49
1368.31
1368.15
1368.02
1367.91
1367.85
1367.84
1367.88
1367.96
1368.05
1368.03
1367.87
1368.13
1368.69
1393.04
1388.64
1386.05
1389.91
1381.86
1389.02
1389.46
1373.03
1374.79
1375.52
1375.86
1376.23
1376.65
1377.06
1377.46
1377.85
1378.24
1378.63
1379.01
1349.02
1349.3
1349.56
1349.67
1349.65
1349.53
1349.35
1349.12
1348.86
1348.61
1348.38
1348.2
1348.09
1348.08
1348.22
1348.53
1349.04
1349.79
1351.23
1354.43
1367.14
1374.59
1360.28
1364.32
1369.87
1365.49
1367.53
1369.65
1348.45
1353.44
1355.41
1356.25
1356.92
1357.51
1358.03
1358.48
1358.9
1359.31
1359.7
1360.08
1329.3
1329.81
1330.29
1330.54
1330.56
1330.42
1330.17
1329.83
1329.45
1329.05
1328.67
1328.33
1328.08
1327.95
1327.97
1328.15
1328.46
1329.03
1330.87
1335.09
1353.21
1347.15
1345.61
1346.31
1346.86
1344.33
1351.98
1351.16
1334.77
1337.09
1338.01
1338.31
1338.63
1339
1339.37
1339.73
1340.1
1340.47
1340.84
1341.2
1309.74
1310.53
1311.27
1311.66
1311.72
1311.53
1311.16
1310.67
1310.09
1309.48
1308.88
1308.32
1307.85
1307.48
1307.22
1307.04
1306.91
1307.27
1308.59
1333.25
1334.51
1328.16
1327.17
1326.71
1324.64
1320.21
1336.42
1323.78
1321.34
1321.03
1320.68
1320.43
1320.4
1320.52
1320.74
1321.01
1321.32
1321.66
1322
1322.33
1290.4
1291.54
1292.58
1293.12
1293.17
1292.88
1292.34
1291.63
1290.82
1289.95
1289.1
1288.31
1287.67
1287.23
1287.06
1287.22
1288.3
1292.13
1303.24
1316.58
1304.62
1304.9
1306.51
1307.66
1306.41
1304.21
1316.22
1300.25
1302.19
1302.36
1301.91
1301.64
1301.6
1301.71
1301.91
1302.17
1302.48
1302.81
1303.15
1303.48
1271.41
1272.92
1274.29
1274.94
1274.94
1274.48
1273.69
1272.67
1271.5
1270.27
1269.02
1267.81
1266.69
1265.65
1264.62
1263.66
1264.07
1266.69
1296.75
1295.85
1289.58
1288.81
1289.8
1290.94
1290.11
1287.52
1297.61
1279.59
1282.3
1283.06
1282.72
1282.5
1282.52
1282.67
1282.92
1283.23
1283.58
1283.94
1284.3
1284.64
1252.73
1254.7
1256.41
1257.15
1257.01
1256.28
1255.13
1253.7
1252.11
1250.45
1248.79
1247.19
1245.73
1244.35
1242.83
1241.37
1243.43
1255.82
1281.63
1265.36
1265.46
1268.04
1270.26
1272.04
1271.89
1269.04
1282.29
1259.8
1262.42
1263.3
1263.14
1263.04
1263.14
1263.4
1263.76
1264.19
1264.63
1265.07
1265.48
1265.84
1234.7
1237.04
1239
1239.71
1239.3
1238.14
1236.48
1234.51
1232.38
1230.2
1228.02
1225.88
1223.81
1221.59
1218.42
1213.85
1211.52
1258.42
1253.16
1252.51
1250.98
1251.84
1253.01
1254.03
1253.28
1250.39
1259.12
1240.41
1243.08
1243.74
1243.53
1243.4
1243.53
1243.91
1244.46
1245.09
1245.71
1246.27
1246.75
1247.14
1217.32
1219.92
1221.98
1222.49
1221.64
1219.88
1217.55
1214.93
1212.26
1209.66
1207.1
1204.68
1202.7
1201.43
1199.78
1193.09
1188.96
1235.58
1216.14
1227.49
1231.82
1233.31
1234.4
1235.25
1234.42
1231.05
1241.43
1222.8
1224.74
1224.76
1224.04
1223.52
1223.49
1224.04
1224.98
1226
1226.9
1227.63
1228.21
1228.64
1200.88
1203.4
1205.34
1205.5
1204.04
1201.3
1197.63
1193.61
1189.8
1186.21
1182.7
1179.55
1177.02
1174.82
1172.33
1166.88
1169.06
1189.7
1199.74
1216.8
1221.22
1219.81
1218.72
1218.15
1216.45
1212.39
1224.59
1205.55
1206.71
1205.8
1204.1
1202.6
1202.17
1203.36
1205.36
1207.17
1208.46
1209.4
1210.05
1210.46
1185.85
1187.98
1189.8
1189.42
1185.74
1179.63
1173.75
1169.8
1167.22
1165.66
1164.78
1164.01
1163.45
1163.23
1163.32
1163.76
1164.96
1166.67
1180.97
1203.66
1208.89
1205.47
1202.83
1201.2
1198.75
1194.23
1208.23
1189.09
1189.17
1186.79
1182.96
1178.67
1177.37
1181.27
1186.74
1189.68
1191.21
1192.07
1192.59
1192.82
1172.68
1173.78
1174.3
1171.23
1165.25
1162.25
1162.63
1162.31
1162.05
1161.96
1161.97
1162.07
1162.32
1162.65
1162.89
1163.09
1163.28
1163.29
1173.14
1188.89
1191.5
1188.39
1185.97
1184.22
1181.78
1177.8
1189.25
1174.48
1172.73
1169.07
1163.21
1157.91
1168.81
1172.75
1170.98
1175.24
1176.25
1176.26
1176.14
1175.88
1162.13
1160.64
1159.52
1162.16
1161.97
1161.81
1161.79
1161.91
1161.99
1162.03
1162.05
1162.1
1162.19
1162.31
1162.44
1162.59
1162.79
1163.57
1167.81
1172.53
1172.25
1170.41
1168.81
1167.37
1165.4
1161.9
1175.99
1159.05
1157.97
1155.97
1150.81
1151.86
1161.62
1165.24
1162.01
1165.05
1164.17
1162.22
1160.74
1159.53
1154.82
1150.22
1151.89
1161.8
1161.82
1161.79
1161.79
1161.83
1161.89
1161.94
1161.98
1162.04
1162.11
1162.19
1162.22
1162.23
1160.93
1155.92
1154.76
1154.94
1154.22
1153.11
1151.92
1150.69
1149.38
1148
1157.57
1141.4
1143.52
1142.16
1141.78
1144.44
1147.23
1150.71
1149.83
1151.76
1149.76
1146.81
1144.51
1142.62
1148.99
1142.05
1145.71
1161.07
1161.64
1161.76
1161.81
1161.85
1161.89
1161.94
1161.96
1161.96
1161.95
1161.96
1162.04
1155.94
1145.01
1139.9
1138.56
1138.08
1137.22
1136.02
1134.56
1132.73
1130.27
1136.29
1129.81
1134.18
1130.34
1128.93
1131.38
1133.4
1135.6
1137.23
1137.17
1136.16
1132.9
1129.76
1127.17
1124.88
1140.67
1133.59
1131.9
1145.86
1160.16
1161.41
1161.57
1161.67
1161.74
1161.8
1161.82
1161.67
1161.12
1155.11
1143.26
1133.1
1126.03
1124.08
1123.26
1122.29
1121.19
1120.02
1118.8
1117.69
1116.56
1122.79
1115.21
1121.25
1115.42
1116.51
1120.89
1122.32
1122.92
1122.34
1120.79
1117.73
1114.45
1111.5
1108.82
1106.31
1126.55
1122.19
1118.94
1121.79
1132.58
1143.57
1151.43
1153.66
1153.81
1152.42
1149.22
1142.72
1131.84
1119.67
1112.32
1109.96
1109.11
1108.16
1107.04
1105.9
1104.8
1103.71
1102.56
1101.63
1102.05
1101.6
1100.6
1101.03
1102.67
1110.04
1110.41
1108.89
1106.91
1104.17
1101.23
1098.22
1095.29
1092.47
1089.75
1087.1
1108.54
1106.62
1104.96
1104.55
1105.83
1109
1113.01
1116.27
1116.92
1114.4
1109.58
1103.8
1099.05
1096.34
1095.11
1094.15
1092.95
1091.62
1090.34
1089.2
1088.2
1087.32
1086.43
1085.56
1085.36
1087
1089.98
1091.73
1099.15
1097.54
1093.21
1090.07
1086.57
1083.78
1081.2
1078.52
1075.78
1073
1070.21
1067.43
1088.63
1088.19
1087.94
1088.08
1088.45
1088.87
1089.3
1089.46
1089.02
1087.8
1086.02
1084.05
1082.19
1080.45
1078.79
1077.15
1075.6
1074.18
1072.92
1071.82
1070.92
1070.24
1069.56
1069.02
1070.68
1075.48
1081.2
1082.57
1079.16
1074.68
1070
1067.02
1065.45
1063.59
1061.33
1058.82
1056.15
1053.35
1050.46
1047.51
1068.02
1068.3
1068.64
1068.97
1069.29
1069.5
1069.53
1069.29
1068.72
1067.76
1066.47
1064.94
1063.29
1061.63
1060.02
1058.51
1057.11
1055.8
1054.55
1053.28
1052.17
1052.11
1053.79
1056.94
1060.97
1069.95
1072.37
1059.95
1055.95
1051.39
1048.91
1047.75
1046.28
1044.32
1042.03
1039.48
1036.73
1033.8
1030.72
1027.52
1047.21
1047.79
1048.33
1048.63
1048.74
1048.7
1048.49
1048.08
1047.44
1046.56
1045.48
1044.26
1042.97
1041.66
1040.37
1039.12
1037.88
1036.57
1034.97
1032.95
1031.73
1034.61
1040.96
1047
1055.86
1052.27
1043.11
1037.11
1033.21
1031.78
1030.79
1029.43
1027.65
1025.55
1023.17
1020.53
1017.63
1014.5
1011.16
1007.63
1026.46
1027.03
1027.52
1027.71
1027.64
1027.41
1027.03
1026.5
1025.84
1025.05
1024.16
1023.2
1022.22
1021.23
1020.28
1019.37
1018.41
1017.23
1015.79
1015.36
1019.01
1027.32
1039.57
1042.38
1034.04
1027.83
1020.07
1015.77
1014.95
1014.19
1012.93
1011.31
1009.42
1007.25
1004.8
1002.04
998.983
995.618
991.953
988.007
1005.84
1006.22
1006.46
1006.43
1006.17
1005.78
1005.27
1004.68
1004.01
1003.3
1002.55
1001.79
1001.06
1000.39
999.807
999.288
998.725
998.349
1000.08
1006.71
1016.03
1024.78
1023.38
1012.95
1006.24
1001.03
998.737
998.066
997.408
996.369
995.022
993.423
991.562
989.41
986.939
984.127
980.952
977.387
973.405
968.986
985.376
985.431
985.304
984.96
984.47
983.895
983.266
982.602
981.921
981.238
980.57
979.942
979.388
978.938
978.557
978.162
978.225
981.335
990.261
1001.57
1007.28
998.002
989.732
982.58
979.85
980.151
980.347
980.025
979.34
978.396
977.212
975.775
974.057
972.031
969.667
966.932
963.782
960.158
955.974
951.145
965.053
964.705
964.113
963.387
962.618
961.837
961.061
960.303
959.571
958.875
958.225
957.642
957.138
956.637
956.012
955.774
958.823
968.092
984.118
989.53
973.174
967.723
962.303
960.63
961.388
962.003
962.049
961.743
961.217
960.487
959.534
958.334
956.867
955.11
953.032
950.593
947.732
944.348
940.317
935.546
944.813
944.012
942.895
941.739
940.652
939.639
938.693
937.816
937.005
936.261
935.589
934.975
934.308
933.403
932.705
935.091
942.881
966.754
966.883
952.936
944.786
941.47
941.925
942.635
943.096
943.308
943.336
943.21
942.926
942.465
941.808
940.942
939.856
938.54
936.98
935.149
932.989
930.42
927.471
924.316
924.596
923.304
921.631
920.012
918.582
917.314
916.178
915.161
914.255
913.454
912.738
911.99
911.07
910.646
913.818
922.176
944.51
943.017
933.66
924.472
921.339
922.029
922.891
923.359
923.683
923.96
924.171
924.283
924.269
924.114
923.81
923.357
922.763
922.047
921.235
920.353
919.413
918.513
918.2
919.155
904.377
902.544
900.292
898.189
896.398
894.861
893.525
892.365
891.373
890.52
889.685
888.727
888.448
892.311
901.738
920.579
918.252
909.921
902.106
900.15
900.853
901.707
902.318
902.848
903.378
903.892
904.352
904.73
905.008
905.178
905.243
905.216
905.124
905.009
904.934
904.978
905.235
905.94
907.818
911.723
883.892
881.605
878.782
876.198
874.045
872.233
870.689
869.381
868.275
867.251
866.108
865.439
868.751
878.761
896.243
893.083
884.685
877.988
877.363
878.393
879.288
880.013
880.736
881.498
882.276
883.038
883.753
884.401
884.97
885.456
885.866
886.22
886.549
886.901
887.343
887.963
888.876
890.256
892.496
896.243
863.106
860.389
857.016
853.969
851.463
849.379
847.62
846.128
844.786
843.356
842.047
843.617
851.164
872.393
869.868
860.653
853.825
853.437
854.611
855.587
856.414
857.289
858.245
859.252
860.275
861.285
862.259
863.179
864.034
864.824
865.555
866.243
866.917
867.614
868.389
869.309
870.467
871.964
873.925
876.581
841.904
838.782
834.921
831.466
828.663
826.371
824.479
822.874
821.321
819.752
819.876
824.363
847.922
847.134
836.457
828.953
827.986
829.165
830.292
831.292
832.351
833.505
834.729
835.991
837.267
838.533
839.772
840.97
842.119
843.215
844.263
845.274
846.265
847.263
848.302
849.426
850.697
852.18
853.919
855.96
820.156
816.668
812.393
808.596
805.559
803.144
801.243
799.723
798.45
798.405
803.33
813.853
826.355
806.2
800.66
799.969
801.811
803.468
804.786
806.057
807.384
808.778
810.224
811.707
813.212
814.723
816.225
817.708
819.163
820.586
821.974
823.331
824.665
825.987
827.313
828.662
830.06
831.536
833.101
834.746
797.749
793.929
789.299
785.187
781.889
779.243
777.064
775.114
773.552
774.702
780.233
796.248
787.941
778.867
774.647
775.35
776.646
777.773
778.927
780.206
781.605
783.103
784.682
786.327
788.024
789.76
791.523
793.305
795.094
796.881
798.659
800.424
802.172
803.901
805.608
807.289
808.937
810.542
812.079
813.505
774.535
770.526
765.635
761.298
757.837
755.091
752.859
751.018
750.673
755.356
765.042
771.053
750.391
746.357
746.605
748.213
749.559
750.743
751.972
753.308
754.755
756.31
757.969
759.727
761.578
763.519
765.541
767.635
769.791
771.997
774.237
776.497
778.764
781.021
783.25
785.427
787.516
789.473
791.238
792.751
750.612
746.452
741.35
736.775
733.035
729.903
727.08
724.668
724.787
729.028
743.975
733.423
724.887
720.997
721.274
722.037
722.728
723.521
724.491
725.636
726.945
728.411
730.035
731.815
733.754
735.852
738.108
740.516
743.066
745.741
748.52
751.377
754.287
757.219
760.137
762.996
765.74
768.295
770.577
772.508
726.029
721.792
716.593
711.906
708.037
704.742
701.76
699.714
701.783
709.615
716.775
699.725
694.739
693.505
693.967
694.399
694.79
695.313
696.017
696.906
697.984
699.258
700.738
702.437
704.37
706.548
708.984
711.678
714.625
717.806
721.193
724.751
728.439
732.207
735.999
739.749
743.378
746.796
749.898
752.59
700.891
696.651
691.435
686.648
682.527
678.726
674.955
672.164
672.381
689.57
685.582
676.187
669.619
667.907
667.291
666.826
666.566
666.56
666.794
667.253
667.937
668.856
670.029
671.486
673.259
675.381
677.883
680.785
684.089
687.783
691.831
696.183
700.775
705.538
710.391
715.246
720.003
724.554
728.778
732.569
675.422
671.316
666.292
661.68
657.702
654.027
650.544
648.833
650.817
664.016
653.484
646.043
641.538
640.052
639.076
638.2
637.511
637.039
636.772
636.707
636.856
637.244
637.907
638.895
640.271
642.103
644.456
647.383
650.914
655.057
659.777
664.999
670.631
676.566
682.685
688.869
694.998
700.947
706.577
711.773
649.736
645.855
641.141
636.827
633.119
629.724
626.743
626.11
629.091
637.34
621.566
615.62
612.661
611.436
610.312
609.163
608.095
607.14
606.302
605.592
605.033
604.665
604.541
604.737
605.352
606.51
608.35
611.007
614.572
619.058
624.377
630.407
637.107
644.367
652.002
659.815
667.623
675.263
682.584
689.476
623.897
620.288
615.938
611.959
608.532
605.406
602.831
602.745
605.929
610.929
591.041
586.47
584.352
583.171
581.867
580.428
578.95
577.459
575.962
574.474
573.021
571.645
570.41
569.417
568.83
568.923
570.083
572.643
576.681
582.068
588.401
595.061
602.197
610.027
618.584
627.791
637.366
646.924
656.188
665.024
597.989
594.698
590.765
587.162
584.046
581.211
578.985
579.124
582.14
585.785
562.513
558.883
557.196
555.936
554.416
552.668
550.762
548.709
546.505
544.151
541.655
539.035
536.344
533.691
531.32
529.719
529.319
529.774
531.135
535.405
544.435
555.791
566.517
576.549
585.633
594.83
605.027
616.001
627.158
638.058
572.129
569.211
565.753
562.573
559.803
557.286
555.331
555.402
557.45
561.411
535.957
533.156
531.667
530.275
528.547
526.518
524.228
521.665
518.799
515.593
512.001
507.988
503.525
498.494
492.89
486.535
478.923
469.648
458.908
451.481
452.748
464.245
487.117
516.728
541.789
558.988
571.499
583.118
595.494
608.327
546.475
543.982
541.05
538.321
535.9
533.663
531.852
531.608
532.838
537.116
511.816
509.593
508.132
506.608
504.727
502.507
499.963
497.064
493.752
489.943
485.522
480.371
474.345
466.992
456.974
443.396
429.094
419.872
416.508
416.133
416.569
417.319
420.094
428.58
453.5
493.416
527.062
547.135
561.363
575.673
521.217
519.188
516.822
514.566
512.493
510.511
508.775
508.123
508.731
513.24
489.599
488.13
486.713
485.113
483.178
480.92
478.344
475.42
472.089
468.258
463.815
458.671
452.666
444.563
431.498
421.101
414.834
411.27
410.5
410.15
409.89
409.736
409.887
411.059
413.9
420.831
455.047
497.379
524.12
541.393
496.547
494.996
493.209
491.441
489.72
487.976
486.258
485.036
484.989
489.483
469.568
469.116
467.593
465.839
463.882
461.697
459.279
456.614
453.667
450.382
446.691
442.588
438.068
432.186
421.606
411.551
411.244
410.229
409.83
409.655
409.397
408.969
408.418
408.099
408.148
409.181
413.903
437.556
478.138
506.731
472.591
471.479
470.264
469.004
467.65
466.131
464.373
462.319
460.893
465.659
452.974
452.836
450.782
448.634
446.546
444.434
442.246
439.968
437.59
435.092
432.452
429.688
426.882
423.911
419.514
412.812
409.817
409.536
409.201
408.856
408.515
408.148
407.818
407.541
407.247
406.996
407.478
410.645
431.749
467.658
449.397
448.678
448.015
447.268
446.313
445.076
443.433
440.924
437.136
443.284
438.786
436.473
435.062
432.768
430.497
428.424
426.483
424.618
422.814
421.071
419.382
417.752
416.235
414.911
413.586
411.485
408.602
407.949
408.035
407.737
407.302
406.919
406.559
406.248
405.986
405.711
405.474
405.881
410.315
430.875
429.206
426.953
426.764
426.516
426.135
425.652
425.111
424.31
422.661
421.917
420.239
412.87
415.887
416.051
414.473
412.703
411.124
409.738
408.528
407.503
406.667
406.026
405.588
405.412
405.527
405.816
405.661
405.643
406.352
406.368
406.026
405.583
405.209
404.882
404.599
404.365
404.155
404.187
405.745
409.902
409.127
406.338
406.351
406.33
406.261
406.17
406.136
406.112
405.073
403.027
402.202
399.325
398.269
399.72
399.49
397.87
396.235
395.056
394.28
393.856
393.748
393.919
394.384
395.138
396.262
397.775
399.509
401.419
403.425
404.549
404.55
404.202
403.754
403.392
403.121
402.933
402.875
403.018
403.398
401.497
388.29
386.188
386.393
386.604
386.831
387.105
387.524
388.239
388.94
388.332
386.983
386.342
385.789
383.97
381.779
381.252
380.479
379.613
379.337
379.583
380.212
381.16
382.315
383.717
385.577
387.865
390.559
393.45
396.878
400.451
402.653
402.641
402.278
401.841
401.496
401.264
401.185
401.323
401.034
394.852
367.924
366.405
366.856
367.294
367.73
368.204
368.779
369.591
370.755
371.637
371.303
370.747
374.351
370.976
363.318
362.71
363.248
363.167
363.879
364.735
365.701
366.938
369.064
370.906
373.567
376.372
379.474
383.117
387.166
392.005
397.848
401.024
400.704
400.216
399.816
399.492
399.338
399.39
397.451
381.385
348.054
347.109
347.751
348.382
348.933
349.455
349.974
350.524
351.171
351.862
351.957
350.759
349.356
346.734
345.246
346.819
347.297
348.66
349.623
350.764
352.123
353.796
355.716
358.552
361.826
364.592
366.893
370.651
375.641
381.199
388.304
396.03
399.24
398.795
398.385
398.176
398.063
397.766
392.735
359.23
328.762
328.124
329.055
329.863
330.508
331.059
331.54
331.953
332.3
332.562
332.615
332.237
331.356
330.395
330.466
331.331
331.698
332.556
334.002
335.944
337.112
338.875
340.552
343.585
346.73
350.183
352.376
355.864
360.905
366.882
374.208
383.816
393.292
397.57
397.433
395.777
394.274
390.796
363.635
335.663
309.95
309.479
310.697
311.657
312.382
312.969
313.451
313.833
314.118
314.298
314.355
314.262
314.068
314.005
314.257
314.807
315.52
316.393
317.319
318.554
319.991
322.019
324.026
326.396
328.8
332.571
334.367
337.95
342.403
347.449
353.259
360.479
369.765
378.448
383.773
383.945
376.173
338.762
338.608
332.452
291.561
291.176
292.575
293.641
294.421
295.036
295.527
295.91
296.197
296.399
296.527
296.598
296.662
296.805
297.098
297.566
298.199
298.999
299.972
301.113
302.454
304.084
305.96
308.002
310.204
312.535
314.991
317.763
320.776
323.919
327.077
330.2
333.358
336.419
337.23
330.844
314.315
297.314
291.043
339.388
273.567
273.064
274.549
275.68
276.497
277.13
277.63
278.018
278.315
278.54
278.714
278.864
279.024
279.238
279.548
279.976
280.533
281.232
282.083
283.094
284.28
285.653
287.2
288.895
290.719
292.634
294.612
296.643
298.673
300.591
302.252
303.48
304.068
303.709
301.762
297.397
291.191
286.12
286.56
346.846
254.877
254.832
256.349
257.564
258.446
259.119
259.642
260.045
260.355
260.596
260.794
260.975
261.167
261.401
261.703
262.093
262.585
263.191
263.922
264.786
265.791
266.937
268.213
269.603
271.085
272.628
274.2
275.766
277.276
278.668
279.875
280.832
281.483
281.779
281.657
281.02
280.001
280.72
290.864
335.908
234.617
236.278
237.939
239.275
240.235
240.956
241.508
241.93
242.255
242.51
242.722
242.915
243.113
243.341
243.621
243.969
244.399
244.921
245.545
246.276
247.119
248.072
249.127
250.273
251.489
252.754
254.042
255.327
256.581
257.781
258.914
259.99
261.052
262.178
263.44
264.787
266.176
269.134
277.787
320.334
216.051
217.79
219.542
220.9
221.886
222.626
223.194
223.63
223.968
224.236
224.459
224.66
224.86
225.08
225.338
225.648
226.025
226.476
227.01
227.63
228.34
229.136
230.017
230.972
231.991
233.06
234.164
235.293
236.441
237.612
238.827
240.134
241.615
243.377
245.51
247.963
250.62
254.52
261.734
294.955
197.469
199.173
200.962
202.324
203.311
204.058
204.634
205.079
205.428
205.709
205.946
206.161
206.371
206.593
206.842
207.132
207.472
207.871
208.336
208.871
209.478
210.155
210.902
211.713
212.584
213.508
214.482
215.507
216.59
217.75
219.02
220.456
222.134
224.138
226.514
229.15
231.841
235.469
241.497
270.662
178.757
180.44
182.144
183.48
184.457
185.191
185.762
186.211
186.565
186.856
187.109
187.343
187.573
187.811
188.07
188.36
188.688
189.062
189.486
189.965
190.5
191.091
191.74
192.444
193.202
194.015
194.885
195.821
196.835
197.953
199.209
200.652
202.342
204.335
206.625
209.023
211.27
214.501
220.429
246.291
159.832
161.458
163.103
164.391
165.335
166.046
166.551
166.984
167.335
167.632
167.901
168.159
168.418
168.688
168.976
169.289
169.632
170.01
170.423
170.873
171.366
171.902
172.481
173.105
173.776
174.499
175.278
176.125
177.057
178.096
179.277
180.64
182.23
184.085
186.164
188.211
189.968
193.004
199.536
221.803
140.69
142.195
143.722
144.95
145.844
146.51
146.975
147.391
147.739
148.047
148.338
148.628
148.926
149.242
149.577
149.936
150.317
150.723
151.152
151.605
152.083
152.587
153.119
153.683
154.289
154.926
155.616
156.369
157.199
158.129
159.189
160.412
161.84
163.505
165.348
167.086
168.494
171.54
178.678
197.079
121.31
122.678
124.053
125.146
125.959
126.563
127.05
127.462
127.822
128.154
128.48
128.814
129.166
129.541
129.938
130.359
130.799
131.254
131.721
132.198
132.683
133.176
133.679
134.197
134.737
135.302
135.904
136.554
137.264
138.055
138.949
139.979
141.183
142.589
144.133
145.529
146.671
149.865
156.815
172.006
101.74
102.928
104.139
105.115
105.855
106.417
106.883
107.293
107.669
108.034
108.405
108.794
109.207
109.65
110.118
110.61
111.119
111.635
112.154
112.669
113.176
113.672
114.16
114.645
115.134
115.635
116.156
116.702
117.283
117.91
118.598
119.373
120.263
121.287
122.366
123.191
123.706
126.468
133.305
146.73
82.0749
83.0549
84.0598
84.8908
85.5307
86.0643
86.534
86.9619
87.3718
87.7819
88.2055
88.6529
89.1297
89.6373
90.1737
90.7332
91.3073
91.8878
92.4581
93.0159
93.5513
94.0582
94.5396
95.0038
95.4626
95.9241
96.3915
96.8589
97.3248
97.7887
98.2568
98.7416
99.2587
99.8146
100.304
100.357
99.8347
101.66
109.095
123.1
62.2989
63.0485
63.8442
64.5572
65.1589
65.6692
66.1575
66.6238
67.0814
67.5429
68.0197
68.5204
69.05
69.6101
70.1986
70.8097
71.4348
72.0601
72.6708
73.2599
73.816
74.322
74.7865
75.2312
75.6777
76.1419
76.6163
77.0701
77.4787
77.823
78.1058
78.3343
78.5186
78.6529
78.6118
77.9623
76.5129
77.6797
85.4048
99.6825
42.448
42.9619
43.5639
44.1708
44.7405
45.2844
45.8144
46.3327
46.8447
47.3579
47.882
48.4256
48.9946
49.5911
50.2142
50.8608
51.5222
52.175
52.8025
53.4088
53.9735
54.4453
54.8363
55.2122
55.6342
56.1564
56.7557
57.3308
57.796
58.1111
58.2784
58.3325
58.2947
58.1396
57.7359
56.7412
55.0296
55.7295
63.2003
74.483
22.4055
22.544
23.0374
23.623
24.227
24.8286
25.4183
25.9934
26.5548
27.1097
27.6694
28.2457
28.8463
29.4751
30.1252
30.7945
31.488
32.1501
32.7296
33.3438
33.9413
34.3499
34.5461
34.6813
34.9489
35.593
36.5754
37.5649
38.3126
38.7339
38.8657
38.8448
38.7533
38.5432
38.1545
37.6199
36.839
33.734
45.6614
47.1472
5.35533
4.91115
5.36813
5.90769
6.42481
6.91591
7.36726
7.78526
8.16999
8.53322
8.89048
9.26072
9.65071
10.0892
10.5663
11.0473
11.6244
12.3008
12.5378
13.0715
13.8965
13.9405
13.6916
13.3089
12.9739
13.6586
15.5466
17.5048
18.7901
19.224
19.0192
18.6986
18.5353
18.2218
17.299
16.5028
15.6666
7.01489
20.0784
28.3423
-1.36389
-1.53274
-1.45526
-1.37688
-1.27716
-1.16017
-1.04089
-0.924962
-0.808968
-0.694888
-0.582554
-0.462385
-0.330904
-0.171126
0.0336348
0.25668
0.333093
0.525739
0.00294561
-0.482233
-1.7156
-5.80306
-8.43105
-10.1071
-12.3067
-12.1077
-8.4268
-4.70306
-2.42414
-1.64924
-2.17526
-1.77347
0.753155
3.9115
3.66892
1.56203
-0.381478
-1.27711
1.06304
11.0801
-1.89512
-1.92877
-1.93829
-1.95149
-1.96198
-1.96884
-1.97455
-1.98
-1.98535
-1.99167
-1.99896
-2.00743
-2.01693
-2.0252
-2.02135
-1.97248
-1.81167
-1.5051
-1.11928
-0.775033
-1.40254
-7.25248
-19.8901
-31.423
-39.843
-42.3972
-36.5196
-29.824
-20.1389
-8.01368
-5.41588
-4.3318
-3.06153
-2.10228
-1.89449
-1.80654
-1.18116
-1.10387
-0.155686
1.6829
-1.92714
-1.93507
-1.9433
-1.9487
-1.95204
-1.954
-1.95469
-1.95462
-1.9535
-1.95022
-1.94407
-1.9344
-1.91975
-1.89909
-1.87383
-1.84505
-1.7979
-1.69398
-1.48499
-1.05335
-0.301672
0.69635
-2.17179
-42.6419
-131.832
-158.913
-81.7916
-25.1291
-11.0825
-5.11255
-2.60904
-2.00468
-1.84447
-1.66723
-1.53482
-1.46316
-1.38546
-1.2888
-1.21341
-1.60498
-1.93563
-1.95221
-1.96218
-1.96651
-1.96925
-1.97174
-1.97417
-1.97675
-1.97987
-1.98376
-1.98936
-1.99714
-2.00369
-2.01129
-2.02805
-2.06281
-2.07814
-1.93256
-1.3979
-1.2322
-1.51074
-1.9694
-2.97835
-10.9291
-123.45
-175.781
-39.9756
-13.3866
-6.76334
-3.69172
-2.52374
-2.0979
-1.75035
-1.70651
-1.7164
-1.71076
-1.67796
-1.64425
-2.13297
-4.8728
)
;
boundaryField
{
inlet
{
type calculated;
value nonuniform List<scalar> 10(282.018 273.027 268.491 264.308 261.863 261.864 264.308 268.491 273.027 282.017);
}
inletWall
{
type calculated;
value nonuniform List<scalar>
30
(
395.938
367.083
337.807
313.106
291.828
29.1605
199.3
303.533
384.075
435.394
-54.6064
-46.3271
-88.5874
-267.691
-416.419
395.938
367.082
337.805
313.105
291.827
28.8821
199.214
303.504
384.069
435.396
-55.7646
-47.5417
-89.6152
-268.858
-417.347
)
;
}
bottleWall
{
type calculated;
value nonuniform List<scalar>
290
(
1878.8
1862.13
1845.6
1829.48
1812.99
1792.15
1769.23
1749.55
1729.99
1710.46
1691.01
1671.66
1652.44
1633.38
1614.48
1595.76
1577.24
1558.92
1540.81
1522.89
1505.16
1487.56
1470.03
1452.49
1434.83
1416.95
1398.75
1380.37
1361.42
1341.86
1321.78
1301.19
1280.16
1258.74
1236.96
1214.74
1192.07
1169.35
1146.48
1123.5
1100.49
1077.5
1054.6
1031.81
1009.2
987.468
965.398
943.015
920.807
898.751
879.875
858.309
836.287
815.121
793.962
771.397
748.366
725.347
702.319
679.307
656.431
634.051
612.499
592.782
577.837
567.699
560.972
555.761
549.425
540.041
527.137
511.063
492.447
471.937
450.142
427.524
404.373
380.865
357.153
333.36
309.647
285.964
262.355
238.918
215.78
192.813
170.148
147.878
126.057
104.743
84.0193
63.9654
44.7067
26.3841
9.69518
1.00506
-1.87391
-1.91444
-1.93722
-1.95511
1895.79
1894.7
1893.52
1892.27
1890.99
1889.72
1888.48
1887.3
1886.2
1885.22
1884.38
1883.68
1883.12
1882.67
1882.34
1882.13
1882.04
1882.05
1882.16
1882.36
1882.63
1882.97
1883.36
1883.79
1884.24
1884.72
1885.2
1885.68
1886.14
1886.58
1886.98
1887.32
1887.59
1887.79
1887.88
1887.88
1887.69
1887
1886.36
1886.77
1897.32
1898
1898.48
1898.77
1898.86
1898.77
1898.49
1898.05
1897.45
1896.71
1870.9
1870.6
1872.76
1873.06
1873.28
1873.42
1873.48
1873.47
1873.4
1873.3
1873.17
1873.03
1872.89
1872.75
1872.63
1872.54
1872.48
1872.45
1872.48
1872.56
1872.71
1872.94
1873.27
1873.71
1874.28
1874.99
1875.87
1876.91
1878.15
1879.59
1881.23
1883
1884.86
1886.76
1888.66
1890.49
1892.22
1893.8
1895.2
1896.4
1863.09
1846.61
1830.03
1811.87
1791.16
1770.33
1750.78
1731.43
1712.27
1693.22
1674.2
1655.2
1636.33
1618.3
1600.42
1582.06
1562.86
1544.04
1525.54
1506.59
1487.14
1467.63
1447.97
1428.25
1408.46
1388.64
1368.82
1349.02
1329.3
1309.74
1290.4
1271.41
1252.73
1234.7
1217.32
1200.88
1185.85
1172.68
1162.13
1154.82
1148.99
1140.67
1126.55
1108.54
1088.63
1068.02
1047.21
1026.46
1005.84
985.376
965.053
944.813
924.596
904.377
883.892
863.106
841.904
820.156
797.749
774.535
750.612
726.029
700.891
675.422
649.736
623.897
597.989
572.129
546.475
521.217
496.547
472.591
449.397
429.206
409.127
388.29
367.924
348.054
328.762
309.95
291.561
273.567
254.877
234.617
216.051
197.469
178.757
159.832
140.69
121.31
101.74
82.0749
62.2989
42.448
22.4055
5.35533
-1.36389
-1.89512
-1.92714
-1.93563
)
;
}
atmosphere
{
type calculated;
value nonuniform List<scalar>
80
(
-2.50127
-1.98304
-1.96199
-1.962
-2.03512
-2.99082
-3.74926
-2.42248
-4.03699
-12.3205
-32.9806
-52.1528
-60.4329
-50.5688
-350.937
-1165.6
-1812.61
-1896.87
-1163.87
-345.167
-82.1691
-7.43508
-1.96217
-2.00897
-2.02027
-1.97969
-1.96572
-1.963
-1.96243
-1.96221
-1.96209
-1.96203
-1.962
-1.96328
-1.96562
-1.9662
-1.96619
-1.96622
-1.96624
-1.96629
-2.00894
-2.00893
-2.00893
-2.00893
-2.00893
-2.00893
-2.00891
-2.00891
-2.00995
-2.01174
-2.01466
-2.02288
-2.01528
-2.00144
-1.98753
-1.97112
-1.962
-1.96583
-1.99275
-2.11927
-2.3536
-2.38297
-1.98801
-2.40846
-639.754
-887.397
-35.6831
-1.96907
-1.96717
-1.97045
-1.97884
-1.97839
-1.96402
-1.96466
-1.96358
-1.9629
-1.962
-2.05383
-2.23087
-2.4824
)
;
}
frontAndBack
{
type empty;
}
}
// ************************************************************************* //
| [
"[email protected]"
] | ||
ed55341f8dd18a28501db2c43e38234394eab167 | fb7efe44f4d9f30d623f880d0eb620f3a81f0fbd | /content/renderer/pepper/pepper_platform_camera_device.cc | 030135b2c675110853287d18c61c4c8777c6a99b | [
"BSD-3-Clause"
] | permissive | wzyy2/chromium-browser | 2644b0daf58f8b3caee8a6c09a2b448b2dfe059c | eb905f00a0f7e141e8d6c89be8fb26192a88c4b7 | refs/heads/master | 2022-11-23T20:25:08.120045 | 2018-01-16T06:41:26 | 2018-01-16T06:41:26 | 117,618,467 | 3 | 2 | BSD-3-Clause | 2022-11-20T22:03:57 | 2018-01-16T02:09:10 | null | UTF-8 | C++ | false | false | 4,585 | cc | // Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "content/renderer/pepper/pepper_platform_camera_device.h"
#include "base/bind.h"
#include "base/callback_helpers.h"
#include "base/logging.h"
#include "content/renderer/media/video_capture_impl_manager.h"
#include "content/renderer/pepper/gfx_conversion.h"
#include "content/renderer/pepper/pepper_camera_device_host.h"
#include "content/renderer/pepper/pepper_media_device_manager.h"
#include "content/renderer/render_frame_impl.h"
#include "content/renderer/render_thread_impl.h"
#include "media/base/bind_to_current_loop.h"
namespace content {
PepperPlatformCameraDevice::PepperPlatformCameraDevice(
int render_frame_id,
const std::string& device_id,
PepperCameraDeviceHost* handler)
: render_frame_id_(render_frame_id),
device_id_(device_id),
session_id_(0),
handler_(handler),
pending_open_device_(false),
pending_open_device_id_(-1),
weak_factory_(this) {
// We need to open the device and obtain the label and session ID before
// initializing.
PepperMediaDeviceManager* const device_manager = GetMediaDeviceManager();
if (device_manager) {
pending_open_device_id_ = device_manager->OpenDevice(
PP_DEVICETYPE_DEV_VIDEOCAPTURE, device_id, handler->pp_instance(),
base::Bind(&PepperPlatformCameraDevice::OnDeviceOpened,
weak_factory_.GetWeakPtr()));
pending_open_device_ = true;
}
}
void PepperPlatformCameraDevice::GetSupportedVideoCaptureFormats() {
DCHECK(thread_checker_.CalledOnValidThread());
VideoCaptureImplManager* manager =
RenderThreadImpl::current()->video_capture_impl_manager();
manager->GetDeviceSupportedFormats(
session_id_,
media::BindToCurrentLoop(base::Bind(
&PepperPlatformCameraDevice::OnDeviceSupportedFormatsEnumerated,
weak_factory_.GetWeakPtr())));
}
void PepperPlatformCameraDevice::DetachEventHandler() {
DCHECK(thread_checker_.CalledOnValidThread());
handler_ = NULL;
if (!release_device_cb_.is_null()) {
base::ResetAndReturn(&release_device_cb_).Run();
}
if (!label_.empty()) {
PepperMediaDeviceManager* const device_manager = GetMediaDeviceManager();
if (device_manager)
device_manager->CloseDevice(label_);
label_.clear();
}
if (pending_open_device_) {
PepperMediaDeviceManager* const device_manager = GetMediaDeviceManager();
if (device_manager)
device_manager->CancelOpenDevice(pending_open_device_id_);
pending_open_device_ = false;
pending_open_device_id_ = -1;
}
}
PepperPlatformCameraDevice::~PepperPlatformCameraDevice() {
DCHECK(thread_checker_.CalledOnValidThread());
DCHECK(release_device_cb_.is_null());
DCHECK(label_.empty());
DCHECK(!pending_open_device_);
}
void PepperPlatformCameraDevice::OnDeviceOpened(int request_id,
bool succeeded,
const std::string& label) {
DCHECK(thread_checker_.CalledOnValidThread());
DCHECK(handler_);
pending_open_device_ = false;
pending_open_device_id_ = -1;
PepperMediaDeviceManager* const device_manager = GetMediaDeviceManager();
succeeded = succeeded && device_manager;
if (succeeded) {
label_ = label;
session_id_ =
device_manager->GetSessionID(PP_DEVICETYPE_DEV_VIDEOCAPTURE, label);
VideoCaptureImplManager* manager =
RenderThreadImpl::current()->video_capture_impl_manager();
release_device_cb_ = manager->UseDevice(session_id_);
}
handler_->OnInitialized(succeeded);
}
void PepperPlatformCameraDevice::OnDeviceSupportedFormatsEnumerated(
const media::VideoCaptureFormats& formats) {
DCHECK(thread_checker_.CalledOnValidThread());
DCHECK(handler_);
std::vector<PP_VideoCaptureFormat> output_formats;
for (const auto& format : formats) {
PP_VideoCaptureFormat output_format;
output_format.frame_size = PP_FromGfxSize(format.frame_size);
output_format.frame_rate = format.frame_rate;
output_formats.push_back(output_format);
}
handler_->OnVideoCaptureFormatsEnumerated(output_formats);
}
PepperMediaDeviceManager* PepperPlatformCameraDevice::GetMediaDeviceManager() {
RenderFrameImpl* const render_frame =
RenderFrameImpl::FromRoutingID(render_frame_id_);
return render_frame
? PepperMediaDeviceManager::GetForRenderFrame(render_frame).get()
: NULL;
}
} // namespace content
| [
"[email protected]"
] | |
0d2e139df231ed2c7924615d41eb4010261ed085 | 4876499da75b9fb691bd4d5de3d94823b9e46da9 | /src/cryptonight/hash-extra-groestl.cpp | 93681db05e13953fe6cfcca7295652efffbf7819 | [
"MIT"
] | permissive | ph4r05/py-cryptonight | d68daeb47514503a4f5097e519b5453fe248fd0f | 64debe709969b941b1a382439615e9e311ba12c7 | refs/heads/master | 2022-10-05T22:18:23.139598 | 2022-09-06T09:45:45 | 2022-09-06T09:45:45 | 130,522,284 | 31 | 18 | MIT | 2022-07-30T11:01:22 | 2018-04-22T00:28:52 | C | UTF-8 | C++ | false | false | 1,955 | cpp | // Copyright (c) 2014-2022, The Monero Project
//
// 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.
//
// 3. Neither the name of the copyright holder 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.
//
// Parts of this file are originally copyright (c) 2012-2013 The Cryptonote developers
#include <stddef.h>
#include <stdint.h>
#if defined(__cplusplus)
extern "C"
{
#endif
#include "groestl.h"
void hash_extra_groestl(const void *data, size_t length, char *hash) {
groestl((uint8_t*)data, length * 8, (uint8_t*)hash);
}
#if defined(__cplusplus)
}
#endif
| [
"[email protected]"
] | |
a7fe97b2c10f004ab959aa846cfbf2ffd90578e6 | 792ad26fd812df30bf9a4cc286cca43b87986685 | /水/POJ 1068 Parencodings 水.cpp | f78093bcd7859614513c11f10a814c1f20891448 | [] | no_license | Clqsin45/acmrec | 39fbf6e02bb0c1414c05ad7c79bdfbc95dc26bf6 | 745b341f2e73d6b1dcf305ef466a3ed3df2e65cc | refs/heads/master | 2020-06-18T23:44:21.083754 | 2016-11-28T05:10:44 | 2016-11-28T05:10:44 | 74,934,363 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 754 | cpp | #include <iostream>
#include <stack>
#include <stdio.h>
using namespace std;
int a[44], c[22];
stack<int> s;
int main(void)
{
int t, now, n, i, top;
cin>>t;
while(t--)
{
cin>>n;
for( i = 1; i <= n; i++) cin>>c[i];
now = 1; top = 0;
for(i = 1; i <= 2 * n;)
{
while(i - now + 1 <= c[now])
a[i ++ ] = 0;
a[i++] = 1; now++;
}
for(i = 1; i <= 2 * n; i++)
{
if(!a[i]) s.push(i);
else
{
int st = s.top();
s.pop();
printf("%d%c",(i - st + 1) / 2, i != 2 * n ? ' ' : '\n');
}
}
}
return 0;
}
| [
"[email protected]"
] | |
2e3e00bd58dcac54e02e363ae61f66b47c5c4497 | 65b02eae4e6ea39beadb67c5efd62e0b429bb43b | /Problems/HDU/hdu1143.cpp | cb7fcdede52f4ffce989481f796fa9363ea3ca41 | [] | no_license | ctuu/acm-icpc | c0a96a347feba414fce28455e9b71546ac1cb08d | 7fde619dce94dd2e722465cdcad32c76d30afa16 | refs/heads/master | 2021-07-08T06:14:57.837572 | 2018-12-29T04:09:40 | 2018-12-29T04:09:40 | 81,524,853 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 539 | cpp | #include <iostream>
#include <algorithm>
#include <array>
#include <vector>
using namespace std;
int main()
{
ios_base::sync_with_stdio(0);
cin.tie(0);
array<array<int, 33>, 3> dp;
for(auto &i: dp)
i.fill(0);
dp[0][0] = dp[1][1] = dp[2][0] = 1;
for(int i = 2; i < 33; ++i)
{
dp[0][i] = dp[0][i-2] + dp[1][i-1] + dp[2][i-2];
dp[1][i] = dp[2][i-1];
dp[2][i] = dp[0][i] + dp[1][i-1];
}
int n;
while(cin >> n && n != -1)
cout << dp[0][n] << endl;
return 0;
} | [
"[email protected]"
] | |
5eb9bdec5d76b09e9d2dc2e50759685e397bd478 | 405c7cedaa2d962d086999946fddbde0753a0951 | /tair/configserver/server_conf_thread.hpp | f32a264946eed002290f5b7584469d7557624e33 | [] | no_license | yinguoliang/tb-common-utils | 5426483d968b97560eaa071ccf0afb0e2936b03d | a81f09426bb23d4b339473263062501d04e7ca7a | refs/heads/master | 2021-01-16T21:24:35.029942 | 2017-08-25T05:21:16 | 2017-08-25T05:21:16 | 100,228,228 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,645 | hpp | /*
* (C) 2007-2010 Alibaba Group Holding Limited
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*
*
* Version: $Id$
*
* Authors:
* Daoan <[email protected]>
*
*/
#ifndef TAIR_SERVER_CONF_THREAD_H
#define TAIR_SERVER_CONF_THREAD_H
#include <algorithm>
#include <tbsys.h>
#include <tbnet.h>
#include <utime.h>
#include "mmap_file.hpp"
#include "server_info.hpp"
#include "group_info.hpp"
#include "get_group_packet.hpp"
#include "heartbeat_packet.hpp"
#include "query_info_packet.hpp"
#include "get_server_table_packet.hpp"
#include "set_master_packet.hpp"
#include "conf_heartbeat_packet.hpp"
#include "migrate_finish_packet.hpp"
#include "group_names_packet.hpp"
#include "data_server_ctrl_packet.hpp"
#include "get_migrate_machine.hpp"
#include "wait_object.hpp"
#include "packet_streamer.hpp"
#include "op_cmd_packet.hpp"
namespace tair {
namespace config_server {
class server_conf_thread:public tbsys::CDefaultRunnable,
public tbnet::IPacketHandler {
public:
server_conf_thread();
~server_conf_thread();
void set_thread_parameter(tbnet::Transport * transport,
tbnet::Transport *,
tair_packet_streamer * streamer);
// IPacketHandler interface
tbnet::IPacketHandler::HPRetCode handlePacket(tbnet::Packet * packet,
void *args);
// Runnable interface
void run(tbsys::CThread * thread, void *arg);
void find_group_host(request_get_group * req,
response_get_group * resp);
void do_heartbeat_packet(request_heartbeat * req,
response_heartbeat * resp);
void do_query_info_packet(request_query_info *, response_query_info *);
void do_get_server_table_packet(request_get_server_table * req,
response_get_server_table * resp);
bool do_set_master_packet(request_set_master * req);
uint64_t get_slave_server_id();
void do_conf_heartbeat_packet(request_conf_heartbeart * req);
bool do_set_server_table_packet(response_get_server_table * packet);
//return vaule -1 response it as error 0 response it ok 1 noresponse
int do_finish_migrate_packet(request_migrate_finish * packet);
void do_group_names_packet(response_group_names * resp);
group_info_map *get_group_info_map();
server_info_map *get_server_info_map();
void set_stat_interval_time(int stat_interval_time);
void force_change_server_status(request_data_server_ctrl * packet);
void get_migrating_machines(request_get_migrate_machine * req,
response_get_migrate_machine * resp);
void do_op_cmd(request_op_cmd *req);
private:
enum
{
GROUP_DATA = 0,
GROUP_CONF
};
server_conf_thread(const server_conf_thread &);
server_conf_thread & operator =(const server_conf_thread &);
void load_group_file(const char *file_name, uint32_t version,
uint64_t sync_server_id);
uint32_t get_file_time(const char *file_name);
void check_server_status(uint32_t loop_count);
void check_config_server_status(uint32_t loop_count);
void load_config_server();
uint64_t get_master_config_server(uint64_t id, int value);
void get_server_table(uint64_t sync_server_id, const char *group_name,
int type);
bool backup_and_write_file(const char *file_name, const char *data,
int size, int modified_time);
void read_group_file_to_packet(response_get_server_table * resp);
void send_group_file_packet();
int get_group_config_value(response_op_cmd *resp,
const vector<string> ¶ms, const char *group_file_name,
const char *config_key, const char* default_value);
int set_group_status(response_op_cmd *resp,
const vector<string> ¶ms, const char *group_file_name);
int do_reset_ds_packet(response_op_cmd *resp, const std::vector<std::string>& params);
private:
group_info_map group_info_map_data;
server_info_map data_server_info_map;
server_info_map config_server_info_map;
vector<server_info *>config_server_info_list;
tbsys::CThreadMutex mutex_grp_need_build;
tbsys::CRWSimpleLock group_info_rw_locker;
tbsys::CRWSimpleLock server_info_rw_locker;
int stat_interval_time;
uint64_t master_config_server_id;
uint64_t down_slave_config_server;
// communication
tbnet::ConnectionManager * connmgr;
tbnet::ConnectionManager * connmgr_heartbeat;
tair::common::wait_object_manager my_wait_object_manager;
int heartbeat_curr_time;
bool is_ready;
static const uint32_t server_up_inc_step = 100;
private:
class table_builder_thread:public tbsys::CDefaultRunnable
{
public:
explicit table_builder_thread(server_conf_thread *);
void run(tbsys::CThread * thread, void *arg);
~table_builder_thread();
public:vector<group_info *>group_need_build;
private:
server_conf_thread * p_server_conf;
void build_table(vector<group_info *>&groupe_will_builded);
};
friend class table_builder_thread;
table_builder_thread builder_thread;
};
}
}
#endif
| [
"[email protected]"
] | |
1187e99f2be29141a7cbd488dc197498baaf64ab | 755237da97f85ab4280ac0461c3fd81bab999939 | /include/Entity/Environement/Ground.hpp | cc0f84e704a0aabe6d84f8c949745e9db5fd72b2 | [] | no_license | PuentesTimothee/IndieStudio | 32ad4e821c17605e79597d663ea60f757f27e0bc | 902aa1bf774c46024d71df84b3a731a62a41ecda | refs/heads/master | 2021-01-25T12:37:12.424366 | 2018-03-01T21:02:37 | 2018-03-01T21:02:37 | 123,487,508 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 509 | hpp | //
// Created by puentes on 31/05/17.
//
#ifndef INDIE_GROUND_HPP
#define INDIE_GROUND_HPP
#include "Entity/Entity.hpp"
#include "Components/Components.hpp"
#include "Components/Model.hpp"
#include "Components/Animation.hpp"
#include "Components/EntityState.hpp"
namespace Gauntlet
{
class Ground : public Gauntlet::Entity
{
private:
static std::string modelName;
static std::string name;
public:
Ground(int id);
virtual ~Ground()
{
};
};
}
#endif //INDIE_GROUND_HPP
| [
"[email protected]"
] | |
235eb890a03afb3b8a8584038d9e7b7d8f50a398 | e9cb1818bde5c0c544df0366d51420863b0a5c54 | /day03/ex04/SuperTrap.hpp | a2b68786f710dcefd89a0e28e3cf536cd4c62803 | [] | no_license | vdoroshyn/42-cpp-piscine | 2ba1ac72a74a2b8e1980b041d4411bd95139f160 | 3f795bd2bf6666007606aff14a8b5d0925168f11 | refs/heads/master | 2021-05-16T15:58:57.590386 | 2018-01-30T12:58:12 | 2018-01-30T12:58:12 | 119,534,885 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 508 | hpp | #ifndef SUPERTRAP_HPP
#define SUPERTRAP_HPP
#include <iostream>
#include <string>
#include <cstdlib>
#include <ctime>
#include "NinjaTrap.hpp"
#include "FragTrap.hpp"
class SuperTrap : public FragTrap, public NinjaTrap {
public:
SuperTrap();
SuperTrap(std::string name);
SuperTrap(SuperTrap const& src);
~SuperTrap();
void rangedAttack(std::string const& target);
void meleeAttack(std::string const& target);
SuperTrap& operator=(SuperTrap const& rhs);
protected:
private:
};
#endif
| [
"[email protected]"
] | |
e524d6eefdc5ecc1ea67fa6a16184781dab38067 | 62f045483521c3ceacab50007c86dee7d5888f6f | /plots/Volume/avtOpenGLSplattingVolumeRenderer.h | d100e462969edd335ad5c1fd75c8e7c7b55d903c | [] | no_license | Anubhab-lang/VisIt28RC_Trunk | 3638a2141d94195b97b47f6d80d401994eb8208e | df56e18523adb7d84a459dfabd9a17abe8fbb94b | refs/heads/master | 2021-05-28T14:03:37.037745 | 2014-12-30T21:49:02 | 2014-12-30T21:49:02 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,908 | h | /*****************************************************************************
*
* Copyright (c) 2000 - 2014, Lawrence Livermore National Security, LLC
* Produced at the Lawrence Livermore National Laboratory
* LLNL-CODE-442911
* All rights reserved.
*
* This file is part of VisIt. For details, see https://visit.llnl.gov/. The
* full copyright notice is contained in the file COPYRIGHT located at the root
* of the VisIt distribution or at http://www.llnl.gov/visit/copyright.html.
*
* 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 disclaimer below.
* - Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the disclaimer (as noted below) in the
* documentation and/or other materials provided with the distribution.
* - Neither the name of the LLNS/LLNL 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 LAWRENCE LIVERMORE NATIONAL SECURITY,
* LLC, THE U.S. DEPARTMENT OF ENERGY 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.
*
*****************************************************************************/
// ************************************************************************* //
// avtOpenGLSplattingVolumeRenderer.h //
// ************************************************************************* //
#ifndef AVT_OPEN_GL_SPLATTING_VOLUME_RENDERER_H
#define AVT_OPEN_GL_SPLATTING_VOLUME_RENDERER_H
#include <avtVolumeRendererImplementation.h>
// ****************************************************************************
// Class: avtOpenGLSplattingVolumeRenderer
//
// Purpose:
// An implementation of a gaussian splat volume renderer that
// uses OpenGL calls.
//
// Programmer: Hank Childs
// Creation: April 24, 2002
//
// Modifications:
// Jeremy Meredith, Tue Sep 30 11:52:27 PDT 2003
// Renamed to include the word "splatting". Moved alphatex from the base
// class to here. Added OpenGL texture object ID. Added method to
// release texture object when we are done with it.
//
// Jeremy Meredith, Thu Oct 2 13:36:28 PDT 2003
// Made this class not inherit from avtVolumeRenderer. It now
// gets most of its state from the arguments to Render.
//
// Brad Whitlock, Wed Apr 22 12:00:37 PDT 2009
// I changed the Render interface.
//
// ****************************************************************************
class avtOpenGLSplattingVolumeRenderer : public avtVolumeRendererImplementation
{
public:
avtOpenGLSplattingVolumeRenderer();
virtual ~avtOpenGLSplattingVolumeRenderer();
protected:
virtual void Render(const RenderProperties &props, const VolumeData &volume);
float *alphatex;
unsigned int alphatexId;
};
#endif
| [
"brugger@18c085ea-50e0-402c-830e-de6fd14e8384"
] | brugger@18c085ea-50e0-402c-830e-de6fd14e8384 |
626d82218b005806449409f857dfc8e4614a52dd | d5c490419c5ec71ac4be0f3fec82adbc4d550f61 | /Currency.h | 043905a848f6635f4cd603ce2810a794c98bc26a | [] | no_license | rlunding/VacationCalculationCPP | 25c065ca260e8b9a5d400160246de3cc5fd51ab5 | 11cf988f4092ee8632c17b67c95ed0fa2fbea45e | refs/heads/master | 2021-01-21T05:09:33.805375 | 2014-12-29T17:02:43 | 2014-12-29T17:02:43 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 468 | h | #ifndef CURRENCY_H
#define CURRENCY_H
#include <string>
using namespace std;
class Currency{
public:
Currency();
Currency(string code, string name, double rate);
string getCode() const;
string getName() const;
double getRate() const;
int compare(const Currency& right) const;
private:
string code;
string name;
double rate;
double EPSILON = 0.1;
};
bool operator==(Currency const &left, Currency const &right);
#endif
| [
"[email protected]"
] | |
cdaf1e62d2deeeddc2af925943866cd9242d793d | bd06764405581a3b1fe75b31576541e3a3d2c4d9 | /Librarium/Character.hpp | 688dd5a9fe5732cb9750ceda766dd220c6d5a28d | [] | no_license | simasm99/Librarium | 249032df5c52c316fb1ed5caaebf5a501d41a224 | a459c5e75f01fdf71960797d8bb47dee0272a7e0 | refs/heads/main | 2023-09-05T23:39:32.890582 | 2021-11-17T11:22:10 | 2021-11-17T11:22:10 | 423,628,649 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 722 | hpp | #pragma once
#include "texManager.hpp"
class character{
public:
static const int CHARACTER_WIDTH = 64;
static const int CHARACTER_HEIGHT = 64;
character();
virtual ~character();
virtual void update() = 0;
virtual void render(SDL_Rect camera) = 0;
SDL_Rect getCollisionBox() const;
void setCollisionBox(SDL_Rect rect) const;
SDL_Texture* getTexture() const;
void setTexture(SDL_Texture* newTexture);
bool checkForDeletion() const;
void deleteObject(bool deletion);
int returnType() const;
protected:
SDL_Rect mBox;
SDL_Texture* texture; //uzloaidintt viena karta kazkur vektoriui pvz
int type;
bool objectDelete = false; // true if object has to be deleted;
};
| [
"[email protected]"
] | |
8550a96f7082db87e63b2091ab7e32a2cfc2c367 | e16150c19d08a2c7f75b2322ef0757cdcdbe95b4 | /TestUnityDemo/Classes/Native/mscorlib1.cpp | 9793780c23714aa239d5b3875fe7d5353efe79c7 | [] | no_license | xindong/TapSDK_Unity_Demo | 4cd939f5d72fdd6d9e9527acb5bb50d8fb6a74e7 | 8f6105215c50937a656482a89d55c6eb4d2fc8ec | refs/heads/main | 2023-02-19T01:56:53.897094 | 2021-01-20T10:01:19 | 2021-01-20T10:01:19 | 323,843,280 | 0 | 2 | null | 2021-01-20T10:01:21 | 2020-12-23T08:16:22 | C++ | UTF-8 | C++ | false | false | 2,197,159 | cpp | #include "pch-cpp.hpp"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <limits>
#include <stdint.h>
#include "icalls/mscorlib/System/Buffer.h"
#include "icalls/mscorlib/System/CLRConfig.h"
#include "icalls/mscorlib/System.Globalization/CalendarData.h"
#include "icalls/mscorlib/System.Globalization/CompareInfo.h"
template <typename R>
struct VirtFuncInvoker0
{
typedef R (*Func)(void*, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, invokeData.method);
}
};
struct VirtActionInvoker0
{
typedef void (*Action)(void*, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
((Action)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 T1, typename T2, typename T3>
struct VirtActionInvoker3
{
typedef void (*Action)(void*, T1, T2, T3, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
((Action)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method);
}
};
template <typename R, typename T1, typename T2, typename T3, typename T4, typename T5>
struct VirtFuncInvoker5
{
typedef R (*Func)(void*, T1, T2, T3, T4, T5, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4, T5 p5)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, p4, p5, invokeData.method);
}
};
template <typename R, typename T1, typename T2, typename T3>
struct VirtFuncInvoker3
{
typedef R (*Func)(void*, T1, T2, T3, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method);
}
};
template <typename R, typename T1>
struct VirtFuncInvoker1
{
typedef R (*Func)(void*, T1, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
template <typename T1, typename T2>
struct VirtActionInvoker2
{
typedef void (*Action)(void*, T1, T2, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
((Action)invokeData.methodPtr)(obj, p1, p2, 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, typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7, typename T8>
struct VirtFuncInvoker8
{
typedef R (*Func)(void*, T1, T2, T3, T4, T5, T6, T7, T8, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4, T5 p5, T6 p6, T7 p7, T8 p8)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, p4, p5, p6, p7, p8, invokeData.method);
}
};
template <typename R, typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7>
struct VirtFuncInvoker7
{
typedef R (*Func)(void*, T1, T2, T3, T4, T5, T6, T7, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4, T5 p5, T6 p6, T7 p7)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, p4, p5, p6, p7, 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 T1, typename T2>
struct InterfaceActionInvoker2
{
typedef void (*Action)(void*, T1, T2, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
}
};
template <typename R, typename T1, typename T2, typename T3>
struct InterfaceFuncInvoker3
{
typedef R (*Func)(void*, T1, T2, T3, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2, T3 p3)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method);
}
};
template <typename T1>
struct InterfaceActionInvoker1
{
typedef void (*Action)(void*, T1, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
template <typename R, typename T1>
struct InterfaceFuncInvoker1
{
typedef R (*Func)(void*, T1, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
return ((Func)invokeData.methodPtr)(obj, p1, 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.Action
struct Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6;
// System.Runtime.Remoting.ActivatedClientTypeEntry
struct ActivatedClientTypeEntry_t66A69B1534DEAA65BB13C418074C41B27F4662A3;
// System.Runtime.Remoting.ActivatedServiceTypeEntry
struct ActivatedServiceTypeEntry_t0DA790E1B80AFC9F7C69388B70AEC3F24C706274;
// System.AggregateException
struct AggregateException_t45A871D3DBDA3E28FBCD8DF21F6772238FC55BD1;
// System.Runtime.Remoting.Messaging.ArgInfo
struct ArgInfo_tA94BF0451B100D18BFBC2EDA7947AFD4E2F5F7A2;
// System.ArgumentException
struct ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00;
// System.ArgumentNullException
struct ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB;
// System.ArgumentOutOfRangeException
struct ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8;
// System.Collections.ArrayList
struct ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575;
// System.Reflection.Assembly
struct Assembly_t;
// System.AsyncCallback
struct AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA;
// System.Attribute
struct Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71;
// System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
struct BinaryFormatter_tAA0465FE94B272FAC7C99F6AD38120E9319C5F55;
// System.IO.BinaryWriter
struct BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F;
// System.Reflection.Binder
struct Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30;
// System.Globalization.Bootstring
struct Bootstring_t39E09D4C4B98FECD2C042751FA27A6FA98BB3882;
// System.Byte
struct Byte_t0111FAB8B8685667EDDAF77683F0D8F86B659056;
// System.Collections.Generic.ByteEqualityComparer
struct ByteEqualityComparer_t5DEB0978C83C3FA68A8AE80E9A8E0F74F5F81026;
// System.ByteMatcher
struct ByteMatcher_t22B28B6FEEDB86326E893675F4C6B5C74E66F5D7;
// System.Runtime.Remoting.Messaging.CADArgHolder
struct CADArgHolder_tF834CE7AC93B38AABC332460CBAB127B82A9389E;
// System.Runtime.Remoting.Messaging.CADMessageBase
struct CADMessageBase_t78A590A87FD9362D67AAD58A88C4062CA0A105C7;
// System.Runtime.Remoting.Messaging.CADMethodCallMessage
struct CADMethodCallMessage_t57296ECCBF254F676C852CB37D8A35782059F906;
// System.Runtime.Remoting.Messaging.CADMethodRef
struct CADMethodRef_t9626FF46E076B15F71F14133E3FE884F10F50DD2;
// System.Runtime.Remoting.Messaging.CADMethodReturnMessage
struct CADMethodReturnMessage_t875AA26C474A6CC70596D42E9D74006BCC86A272;
// System.Runtime.Remoting.Messaging.CADObjRef
struct CADObjRef_tEBB48EB2D43F3C2012DFF53EC552B784A5FAA0FC;
// System.Collections.Concurrent.CDSCollectionETWBCLProvider
struct CDSCollectionETWBCLProvider_tEF5FCC038F98C60A7A17E73AB11508EE6E2F4266;
// System.CLSCompliantAttribute
struct CLSCompliantAttribute_tA28EF6D4ADBD3C5C429DE9A70DD1E927C8906249;
// System.Runtime.InteropServices.COMException
struct COMException_t85EBB13764071A376ECA5BE9675860DAE79C768C;
// System.IO.CStreamReader
struct CStreamReader_tF270C75526507F4F57000088E805BDC8B4C2BD53;
// System.IO.CStreamWriter
struct CStreamWriter_tBC3C3F9F3E738D2FF586EF7A680A077D5AA3D27A;
// System.Globalization.Calendar
struct Calendar_t3D638AEAB45F029DF47138EDA4CF9A7CBBB1C32A;
// System.Globalization.CalendarData
struct CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4;
// System.Runtime.Remoting.Messaging.CallContext
struct CallContext_t90895C0015A31D6E8A4F5185486EB6FB76A1544F;
// System.Runtime.Remoting.Messaging.CallContextRemotingData
struct CallContextRemotingData_t91D21A898FED729F67E6899F29076D9CF39E419E;
// System.Runtime.Remoting.Messaging.CallContextSecurityData
struct CallContextSecurityData_t57A7D75CA887E871D0AF1E3AF1AB9624AB99B431;
// System.Threading.CancellationCallbackInfo
struct CancellationCallbackInfo_t7FC8CF6DB4845FCB0138771E86AE058710B1117B;
// System.Threading.CancellationTokenSource
struct CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3;
// System.CannotUnloadAppDomainException
struct CannotUnloadAppDomainException_t65AADF8792D8CCF6BAF22D51D8E4B7AB92960F9C;
// System.Collections.CaseInsensitiveComparer
struct CaseInsensitiveComparer_t6261A2A5410CBE32D356D9D93017732DF0AADC6C;
// System.Collections.CaseInsensitiveHashCodeProvider
struct CaseInsensitiveHashCodeProvider_tBB49394EF70D0021AE2D095430A23CB71AD512FA;
// System.Runtime.Remoting.ChannelData
struct ChannelData_tEA64A2F1AEEC413430B61C6C7C4A1652EFDD9827;
// System.Runtime.Remoting.ChannelInfo
struct ChannelInfo_tBB8BB773743C20D696B007291EC5597F00703E79;
// System.CharEnumerator
struct CharEnumerator_t307E02F1AF2C2C98EE2FFEEE3045A790F2140D75;
// System.Runtime.InteropServices.ClassInterfaceAttribute
struct ClassInterfaceAttribute_tAC9219C38D4BECF25B48BA254128B82AE8849875;
// System.Runtime.Remoting.ClientActivatedIdentity
struct ClientActivatedIdentity_t15889AD8330630DE5A85C02BD4F07FE7FC72AEC6;
// System.Runtime.Remoting.Messaging.ClientContextReplySink
struct ClientContextReplySink_tAB77283D5E284109DBA2762B990D89C2F2BE24C8;
// System.Runtime.Remoting.Messaging.ClientContextTerminatorSink
struct ClientContextTerminatorSink_tA6083D944E104518F33798B16754D1BA236A3C20;
// System.Runtime.Remoting.ClientIdentity
struct ClientIdentity_tF35F3D3529880FBF0017AB612179C8E060AE611E;
// System.Globalization.CodePageDataItem
struct CodePageDataItem_t09A62F57142BF0456C8F414898A37E79BCC9F09E;
// Mono.Globalization.Unicode.CodePointIndexer
struct CodePointIndexer_t0A6A7AB35984E2136E67DB8EF953A28C6553FD81;
// System.Runtime.InteropServices.ComCompatibleVersionAttribute
struct ComCompatibleVersionAttribute_tC75249EF0E76BDB5322EC20EBCADDF5E8F9E183A;
// System.Runtime.InteropServices.ComDefaultInterfaceAttribute
struct ComDefaultInterfaceAttribute_tC170FF54A68C3A32A635632D3DB9E6410F02FE72;
// System.Runtime.InteropServices.ComImportAttribute
struct ComImportAttribute_t8A6BBE54E3259B07ACE4161A64FF180879E82E15;
// System.Runtime.InteropServices.ComVisibleAttribute
struct ComVisibleAttribute_tCE3DF5E341F3ECE4C81FE85C15B3D782AB302A2A;
// System.Globalization.CompareInfo
struct CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9;
// System.Collections.Comparer
struct Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57;
// System.Collections.CompatibleComparer
struct CompatibleComparer_t4BB781C29927336617069035AAC2BE8A84E20929;
// System.Runtime.CompilerServices.CompilationRelaxationsAttribute
struct CompilationRelaxationsAttribute_t661FDDC06629BDA607A42BD660944F039FE03AFF;
// System.Runtime.CompilerServices.CompilerGeneratedAttribute
struct CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C;
// System.Threading.Tasks.CompletionActionInvoker
struct CompletionActionInvoker_t66AE143673E0FA80521F01E8FBF6651194AC1E9F;
// System.Runtime.Remoting.ConfigHandler
struct ConfigHandler_t669F653CE4E8ABF2323F028523BEDFB5C56C3760;
// System.Reflection.ConstructorInfo
struct ConstructorInfo_t449AEC508DCA508EE46784C4F2716545488ACD5B;
// System.Runtime.Remoting.Contexts.Context
struct Context_t8A5B564FD0F970E10A97ACB8A7579FFF3EE4C678;
// System.Threading.ContextCallback
struct ContextCallback_t93707E0430F4FF3E15E1FB5A4844BE89C657AE8B;
// System.Runtime.Remoting.Contexts.ContextCallbackObject
struct ContextCallbackObject_t0E2D94904CEC51006BE71AE154A7E7D9CD4AFA4B;
// System.Runtime.Remoting.Contexts.CrossContextChannel
struct CrossContextChannel_tF0389BFF59F875ADDC660EBAF4BA5267F13A88AD;
// System.Globalization.CultureData
struct CultureData_t53CDF1C5F789A28897415891667799420D3C5529;
// System.Globalization.CultureInfo
struct CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98;
// System.Globalization.DateTimeFormatInfo
struct DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90;
// System.Text.Decoder
struct Decoder_t91B2ED8AEC25AA24D23A00265203BE992B12C370;
// System.Text.DecoderFallback
struct DecoderFallback_tF86D337D6576E81E5DA285E5673183EBC66DEF8D;
// System.DelegateData
struct DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288;
// System.Runtime.Remoting.Contexts.DynamicPropertyCollection
struct DynamicPropertyCollection_t374B470D20F1FAF60F0578EE489846E6E283984B;
// System.Text.Encoder
struct Encoder_t5095F24D3B1D0F70D08762B980731B9F1ADEE56A;
// System.Text.EncoderFallback
struct EncoderFallback_t02AC990075E17EB09F0D7E4831C3B3F264025CC4;
// System.Text.EncoderFallbackBuffer
struct EncoderFallbackBuffer_t088B2EDCFB7C53978D7C5F962DE31BE01D6968E0;
// System.Text.Encoding
struct Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827;
// System.Diagnostics.Tracing.EventSource
struct EventSource_t02B6E43167F06B74646A32A3BBC58988BFC3EA6A;
// System.Threading.EventWaitHandle
struct EventWaitHandle_t80CDEB33529EF7549E7D3E3B689D8272B9F37F3C;
// System.Exception
struct Exception_t;
// System.Threading.ExecutionContext
struct ExecutionContext_t16AC73BB21FEEEAD34A017877AC18DD8BB836414;
// System.Runtime.InteropServices.ExternalException
struct ExternalException_tC18275DD0AEB2CDF9F85D94670C5A49A4DC3B783;
// System.FormatException
struct FormatException_t119BB207B54B4B1BC28D9B1783C4625AE23D4759;
// System.Runtime.Remoting.FormatterData
struct FormatterData_t949FC0175724CB0B0A0CECED5896D0597B2CC955;
// System.Collections.Hashtable
struct Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC;
// System.IAsyncResult
struct IAsyncResult_tC9F97BF36FCF122D29D3101D80642278297BF370;
// System.Runtime.Remoting.Channels.IChannel
struct IChannel_tAAB2462B4D468FB11A38ACC68C561C9BA8E9A8B0;
// System.Runtime.Remoting.IChannelInfo
struct IChannelInfo_t83FAE2C34F782234F4D52E0B8D6F8EDE5A3B39D3;
// System.Runtime.Remoting.Channels.IChannelSender
struct IChannelSender_tC9474F74732657C8839C64D56543D40F9C9A3724;
// System.Collections.ICollection
struct ICollection_tC1E1DED86C0A66845675392606B302452210D5DA;
// System.Collections.IComparer
struct IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0;
// System.IConsoleDriver
struct IConsoleDriver_tBD149D095A3CF55C1127A66D3933B0236B67AC63;
// System.Runtime.Remoting.Activation.IConstructionCallMessage
struct IConstructionCallMessage_tC83D3CB206252626FBA0E8A12360CD6FA53630C7;
// System.IConvertible
struct IConvertible_t40D9E38816544BF71E97F48AB3C47C9A2B7E9BE4;
// System.Collections.IDictionary
struct IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A;
// System.Runtime.Remoting.IEnvoyInfo
struct IEnvoyInfo_t0D9B51B59DD51C108742B0B18E09DC1B0AD6B713;
// System.Collections.IEqualityComparer
struct IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68;
// System.IFormatProvider
struct IFormatProvider_tF2AECC4B14F41D36718920D67F930CED940412DF;
// System.Runtime.Serialization.IFormatterConverter
struct IFormatterConverter_t2A667D8777429024D8A3CB3D9AE29EA79FEA6176;
// System.Collections.IHashCodeProvider
struct IHashCodeProvider_t1DC17F4EF3AD40E5D1A107939F6E18E2D450B691;
// System.Collections.IList
struct IList_tB15A9D6625D09661D6E47976BB626C703EC81910;
// System.Runtime.Remoting.Messaging.IMessage
struct IMessage_tFB62BF93B045EA3FA0278D55C5044B322E7B4545;
// System.Runtime.Remoting.Messaging.IMessageCtrl
struct IMessageCtrl_t343815B567A7293C85B61753266DCF852EB1748F;
// System.Runtime.Remoting.Messaging.IMessageSink
struct IMessageSink_t5C83B21C4C8767A5B9820EBBE611F7107BC7605F;
// System.Runtime.Remoting.Messaging.IMethodCallMessage
struct IMethodCallMessage_t5C6204CBDF0F7151187809C69BA5504C88EEDE44;
// System.Runtime.Remoting.Messaging.IMethodMessage
struct IMethodMessage_tF1E8AAA822A4BC884BC20CAB4B84F5826BBE282C;
// System.Runtime.Remoting.Messaging.IMethodReturnMessage
struct IMethodReturnMessage_t4B84F631CB7E599CD495048748DE5E21B62390B0;
// System.Security.Principal.IPrincipal
struct IPrincipal_t850ACE1F48327B64F266DD2C6FD8C5F56E4889E2;
// System.Runtime.Remoting.IRemotingTypeInfo
struct IRemotingTypeInfo_t551E06F9B9BF8173F2A95347C73C027BAF78B61E;
// System.Runtime.Serialization.ISurrogateSelector
struct ISurrogateSelector_t32463C505981FAA3FE78829467992AC7309CD9CA;
// System.Threading.Tasks.ITaskCompletionAction
struct ITaskCompletionAction_t7007C80B89E26C5DBB586AF8D5790801A1DDC558;
// System.Runtime.Remoting.Identity
struct Identity_t640A44175E23F75AB432A7C00569D863BF48AAD5;
// System.Runtime.Remoting.Messaging.IllogicalCallContext
struct IllogicalCallContext_tFC01A2B688E85D44897206E4ACD81E050D25846E;
// System.Int32
struct Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046;
// System.Threading.InternalThread
struct InternalThread_t12B78B27503AE19E9122E212419A66843BF746EB;
// System.InvalidCastException
struct InvalidCastException_tD99F9FF94C3859C78E90F68C2F77A1558BCAF463;
// System.InvalidOperationException
struct InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB;
// System.Runtime.Remoting.Lifetime.Lease
struct Lease_tA878061ECC9A466127F00ACF5568EAB267E05641;
// System.Runtime.Remoting.Lifetime.LeaseManager
struct LeaseManager_tCB2B24D3B1EB0083B9FF0BA2D4E5E8B84EE94DD1;
// System.LocalDataStoreHolder
struct LocalDataStoreHolder_tF51C9DD735A89132114AE47E3EB51C11D0FED146;
// System.LocalDataStoreMgr
struct LocalDataStoreMgr_t6CC44D0584911B6A6C6823115F858FC34AB4A80A;
// System.Runtime.Remoting.Messaging.LogicalCallContext
struct LogicalCallContext_tB537C2A13F19FCC7EBC74757A415F2CA5C8FA1C3;
// System.Threading.ManualResetEvent
struct ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA;
// System.Runtime.InteropServices.MarshalAsAttribute
struct MarshalAsAttribute_t1689F84A11C34D0F35491C8F0DA4421467B6EFE6;
// System.MarshalByRefObject
struct MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8;
// System.Reflection.MemberFilter
struct MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81;
// System.Reflection.MemberInfo
struct MemberInfo_t;
// System.IO.MemoryStream
struct MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C;
// System.Runtime.Remoting.Messaging.MessageDictionary
struct MessageDictionary_tF87E1D8408337642172945A13C9C116D7F9336BE;
// System.Reflection.MethodBase
struct MethodBase_t;
// System.Reflection.MethodInfo
struct MethodInfo_t;
// System.Runtime.Remoting.Messaging.MethodResponse
struct MethodResponse_tF8C71D003BA7D3DFB7C5079C1586139A6130ADC5;
// System.Runtime.Remoting.Messaging.MethodReturnDictionary
struct MethodReturnDictionary_tCD3B3B0F69F53EF7653CB5E6B175628E8FD54531;
// System.MulticastDelegate
struct MulticastDelegate_t;
// System.NotSupportedException
struct NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339;
// System.Globalization.NumberFormatInfo
struct NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D;
// System.Runtime.Remoting.ObjRef
struct ObjRef_t10D53E2178851535F38935DC53B48634063C84D3;
// System.Runtime.Remoting.Messaging.ObjRefSurrogate
struct ObjRefSurrogate_t7924C0ED9F5EC7E25977237ADC3276383606703F;
// System.ObjectDisposedException
struct ObjectDisposedException_t29EF6F519F16BA477EC682F23E8344BB1E9A958A;
// System.OperationCanceledException
struct OperationCanceledException_tA90317406FAE39FB4E2C6AA84E12135E1D56B6FB;
// System.OverflowException
struct OverflowException_tD1FBF4E54D81EC98EEF386B69344D336D1EC1AB9;
// System.Reflection.ParameterInfo
struct ParameterInfo_t9D9DBDD93E685815E35F4F6D6F58E90EBC8852B7;
// System.Runtime.Remoting.ProviderData
struct ProviderData_t2E4B222839D59BB2D2C44E370FA8ED37DAF4F582;
// System.Security.Cryptography.RandomNumberGenerator
struct RandomNumberGenerator_t2CB5440F189986116A2FA9F907AE52644047AC50;
// System.Runtime.Remoting.RemotingException
struct RemotingException_tEFFC0A283D7F4169F5481926B7FF6C2EB8C76F1B;
// System.Runtime.Remoting.Messaging.RemotingSurrogate
struct RemotingSurrogate_t4EB3586932A8FD1934D45761A7A411C44595F6EC;
// System.Runtime.Remoting.Messaging.RemotingSurrogateSelector
struct RemotingSurrogateSelector_t1E36D625AE2C1058EA107D872577F1EFD04B5FCA;
// System.Runtime.Remoting.Messaging.ReturnMessage
struct ReturnMessage_tBC416F1575159EF223AB8AF256F46F5832E3F3F9;
// System.Runtime.Serialization.SafeSerializationManager
struct SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F;
// Microsoft.Win32.SafeHandles.SafeWaitHandle
struct SafeWaitHandle_tF37EACEDF9C6F350EB4ABC1E1F869EECB0B5ABB1;
// System.Threading.SemaphoreSlim
struct SemaphoreSlim_t3EF85FC980AE57957BEBB6B78E81DE2E3233D385;
// System.Threading.SendOrPostCallback
struct SendOrPostCallback_t6B7334CE017AF595535507519400AC02D688DC3C;
// System.Runtime.Serialization.SerializationBinder
struct SerializationBinder_t600A2077818E43FC641208357D8B809A10F1EAB8;
// System.Runtime.Serialization.SerializationInfo
struct SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1;
// System.Runtime.Serialization.SerializationInfoEnumerator
struct SerializationInfoEnumerator_t0548359AF7DB5798EBA19FE6BFCC8CDB8E6B1AF6;
// System.Runtime.Remoting.ServerIdentity
struct ServerIdentity_t5689BF0CA0122A8E597C9900D39F11F07D79D3A8;
// Mono.Globalization.Unicode.SimpleCollator
struct SimpleCollator_t60F8CB5F37FA4A008E484C0BD0429E65E5904266;
// System.Runtime.Remoting.Channels.SinkProviderData
struct SinkProviderData_tDCF47C22643A26B1E1F6BB60FA7AE7034053D14E;
// Mono.Xml.SmallXmlParser
struct SmallXmlParser_t67E5C1C6417A9CB0679E68D8A4E0095E9D2B54D7;
// System.Globalization.SortKey
struct SortKey_tBBD5A739AC7187C1514CBA47698C1D5E36877F52;
// System.Globalization.SortVersion
struct SortVersion_t4500287E608FE7BBAB01A3AB0F1073F772EF62AA;
// System.Collections.Stack
struct Stack_tF6DD42A42C129B014D4223010F1E0FFBECBDC3B8;
// System.Threading.Tasks.StackGuard
struct StackGuard_t88E1EE4741AD02CA5FEA04A4EB2CC70F230E0E6D;
// System.IO.Stream
struct Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB;
// System.IO.StreamReader
struct StreamReader_tA857ACC7ABF9AA4638E1291E6D2539C14D2963D3;
// System.IO.StreamWriter
struct StreamWriter_t3E267B7F3C9522AF936C26ABF158398BB779FAF6;
// System.String
struct String_t;
// System.Text.StringBuilder
struct StringBuilder_t;
// System.StringComparer
struct StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6;
// System.Threading.SynchronizationContext
struct SynchronizationContext_t17D9365B5E0D30A0910A16FA4351C525232EF069;
// System.SystemException
struct SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62;
// System.Threading.Tasks.Task
struct Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60;
// System.Threading.Tasks.TaskFactory
struct TaskFactory_t22D999A05A967C31A4B5FFBD08864809BF35EA3B;
// System.Threading.Tasks.TaskScheduler
struct TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D;
// System.TermInfoDriver
struct TermInfoDriver_t4BA3410FC3FAB83D567ADF15C94124D8148A0E03;
// System.TermInfoReader
struct TermInfoReader_t2E8E4A86C0450CF03E110E870EB8378C7A617F62;
// System.Globalization.TextInfo
struct TextInfo_tE823D0684BFE8B203501C9B2B38585E8F06E872C;
// System.IO.TextReader
struct TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F;
// System.Threading.Thread
struct Thread_tB9EB71664220EE16451AF3276D78DE6614D2A414;
// System.Threading.ThreadAbortException
struct ThreadAbortException_t16772A32C3654FCFF0399F11874CB783CC51C153;
// System.Threading.Timer
struct Timer_t31BE4EDDA5C1CB5CFDF698231850B47B7F9DE9CB;
// System.Threading.TimerCallback
struct TimerCallback_tD193CC50BF27E129E6857E1E8A7EAC24BD131814;
// System.Type
struct Type_t;
// System.Text.UTF8Encoding
struct UTF8Encoding_t6EE88BC62116B5328F6CF4E39C9CC49EED2ED282;
// System.Void
struct Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5;
// System.WeakReference
struct WeakReference_tB8558D16C98417FD98C920C42C0CC5C9FF825C76;
// System.Runtime.Remoting.WellKnownClientTypeEntry
struct WellKnownClientTypeEntry_tF15BE481E09131FA6D056BC004B31525261ED4FD;
// System.Runtime.Remoting.WellKnownServiceTypeEntry
struct WellKnownServiceTypeEntry_t98CBB552396BFD8971C9C23000B68613B8D67F9D;
// System.Reflection.Assembly/ResolveEventHolder
struct ResolveEventHolder_tA37081FAEBE21D83D216225B4489BA8A37B4E13C;
// Mono.Xml.SmallXmlParser/AttrListImpl
struct AttrListImpl_t3FA46929BCFFF60313A5940AAB20513699DC58BA;
// Mono.Xml.SmallXmlParser/IAttrList
struct IAttrList_tB08E93C160C8FF2AAE53C3C2F7557421B6BD5CEC;
// Mono.Xml.SmallXmlParser/IContentHandler
struct IContentHandler_t4DCBE1BBF3C625846A210931388615BFCCF7AA25;
// System.IO.Stream/ReadWriteTask
struct ReadWriteTask_t32CD2C230786712954C1DB518DBE420A1F4C7974;
// System.Threading.Tasks.Task/ContingentProperties
struct ContingentProperties_t1E249C737B8B8644ED1D60EEFA101D326B199EA0;
// System.Threading.Timer/Scheduler
struct Scheduler_tA54A9F57127EDB44B4AE39C04A488F33193349D8;
// System.Action`1<System.Object>
struct Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC;
// System.Threading.AsyncLocal`1<System.Globalization.CultureInfo>
struct AsyncLocal_1_t480A201BA0D1C62C2C6FA6598EEDF7BB35D85349;
// System.Collections.Generic.Dictionary`2<System.Threading.IAsyncLocal,System.Object>
struct Dictionary_2_tED8EC0DF62452D89154D9584AC19F62C79BF3938;
// System.Collections.Generic.Dictionary`2<System.Int32,System.Globalization.CultureInfo>
struct Dictionary_2_t5B8303F2C9869A39ED3E03C0FBB09F817E479402;
// System.Collections.Generic.Dictionary`2<System.Int32,System.Threading.Tasks.Task>
struct Dictionary_2_tB758E2A2593CD827EFC041BE1F1BB4B68DE1C3E8;
// System.Collections.Generic.Dictionary`2<System.Object,System.Object>
struct Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D;
// System.Collections.Generic.Dictionary`2<System.String,System.Globalization.CultureInfo>
struct Dictionary_2_t0015CBF964B0687CBB5ECFDDE06671A8F3DDE4BC;
// System.Collections.Generic.Dictionary`2<System.String,System.Int32>
struct Dictionary_2_tC94E9875910491F8130C2DC8B11E4D1548A55162;
// System.Collections.Generic.Dictionary`2<System.String,Mono.Globalization.Unicode.SimpleCollator>
struct Dictionary_2_t33B68634E5ACFD2A5AE4981521BFC06805BE18BB;
// System.Collections.Generic.Dictionary`2<System.Type,System.Runtime.Serialization.Formatters.Binary.TypeInformation>
struct Dictionary_2_tCAA954C180FE22A5909DC97DB48233904AC1A885;
// System.Collections.Generic.EqualityComparer`1<System.Byte>
struct EqualityComparer_1_t315BFEDB969101238C563049FF00D5CB9F8D6509;
// System.Func`1<System.Threading.Tasks.Task/ContingentProperties>
struct Func_1_tBCF42601FA307876E83080BE4204110820F8BF3B;
// System.Func`2<System.Object,System.Int32>
struct Func_2_t0CEE9D1C856153BA9C23BB9D7E929D577AF37A2C;
// System.Func`2<System.Object,System.String>
struct Func_2_t060A650AB95DEF14D4F579FA5999ACEFEEE0FD82;
// System.Collections.Generic.IEnumerable`1<System.Exception>
struct IEnumerable_1_t0A3175E42D7B4FC8B83BCBF384D9202A04B1A5BE;
// System.Collections.Generic.IEqualityComparer`1<System.Object>
struct IEqualityComparer_1_t1A386BEF1855064FD5CC71F340A68881A52B4932;
// System.Collections.Generic.IEqualityComparer`1<System.String>
struct IEqualityComparer_1_tE6A65C5E45E33FD7D9849FD0914DE3AD32B68050;
// System.Collections.Generic.Dictionary`2/KeyCollection<System.String,Mono.Globalization.Unicode.SimpleCollator>
struct KeyCollection_t2C7C653A7F7E6A2DB2621D56B913C89985FDDACE;
// System.Collections.Generic.List`1<System.Exception>
struct List_1_t433251677FFAE6CDCEC92C181CEA282328DA13EB;
// System.Collections.Generic.List`1<System.Threading.IAsyncLocal>
struct List_1_t053589A158AAF0B471CF80825616560409AF43D4;
// System.Collections.Generic.List`1<System.Runtime.Remoting.Contexts.IContextProperty>
struct List_1_t6C44C0357D6C8D5FA8F1019C5D37D11A0AEC8544;
// System.Collections.Generic.List`1<System.Object>
struct List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5;
// System.Predicate`1<System.Object>
struct Predicate_1_t5C96B81B31A697B11C4C3767E3298773AF25DFEB;
// System.Predicate`1<System.Threading.Tasks.Task>
struct Predicate_1_tC0DBBC8498BD1EE6ABFFAA5628024105FA7D11BD;
// System.Collections.ObjectModel.ReadOnlyCollection`1<System.Exception>
struct ReadOnlyCollection_1_t06CAAF5787D8FDE0CB0F04082673EC9B212451BE;
// System.Threading.SparselyPopulatedArrayFragment`1<System.Threading.CancellationCallbackInfo>
struct SparselyPopulatedArrayFragment_1_t93197EF47D6A025755987003D5D62F3AED371C21;
// System.Threading.SparselyPopulatedArrayFragment`1<System.Object>
struct SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6;
// System.Threading.SparselyPopulatedArray`1<System.Threading.CancellationCallbackInfo>
struct SparselyPopulatedArray_1_tA18952D126B9E09096751CC472A19196C8B6C17A;
// System.Threading.SparselyPopulatedArray`1<System.Object>
struct SparselyPopulatedArray_1_tD55330C40D801085FD9D705F3844A08F28EFE37B;
// System.Threading.Tasks.Task`1<System.Int32>
struct Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725;
// System.Collections.Generic.Dictionary`2/ValueCollection<System.String,Mono.Globalization.Unicode.SimpleCollator>
struct ValueCollection_t289884E93A47CB153E2619D1FA8E8065E6486A73;
// System.Boolean[]
struct BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C;
// System.Byte[]
struct ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726;
// System.Globalization.CalendarData[]
struct CalendarDataU5BU5D_t92EDE3986BAED27678B4F4140BC955434CFEACC7;
// System.Threading.CancellationCallbackInfo[]
struct CancellationCallbackInfoU5BU5D_t044BC5A41ACFAC596EA3C563F024F86BD3A0CCF1;
// System.Threading.CancellationTokenRegistration[]
struct CancellationTokenRegistrationU5BU5D_t864BA2E1E6485FDC593F17F7C01525F33CCE7910;
// System.Char[]
struct CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34;
// Mono.Globalization.Unicode.Contraction[]
struct ContractionU5BU5D_t167C2B086555CC0A9174F79685CDB93223C7307B;
// System.Delegate[]
struct DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8;
// System.Collections.Generic.Dictionary`2/Entry<System.String,Mono.Globalization.Unicode.SimpleCollator>[]
struct EntryU5BU5D_t076278E3CBC02F34F41F3B59FE5511657DF3091D;
// System.Exception[]
struct ExceptionU5BU5D_t683CE8E24950657A060E640B8956913D867F952D;
// System.Int32[]
struct Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32;
// System.IntPtr[]
struct IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6;
// System.Globalization.InternalCodePageDataItem[]
struct InternalCodePageDataItemU5BU5D_t14F50FF811A5CE312AAFE9726715A79B23230CA1;
// System.Globalization.InternalEncodingDataItem[]
struct InternalEncodingDataItemU5BU5D_t85637BE80FC2B1EAF08898A434D72E9CB7B5D87D;
// Mono.Globalization.Unicode.Level2Map[]
struct Level2MapU5BU5D_t736BC7320E2D0A8E95BD20FE2F4E7E40B9246DBF;
// System.Reflection.MethodInfo[]
struct MethodInfoU5BU5D_t86AA7E1AF11D62BAE3189F25907B252596FA627E;
// System.Object[]
struct ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE;
// System.Reflection.ParameterModifier[]
struct ParameterModifierU5BU5D_tFF6F73F1CFE837331D6AAA11CC78CE5D9B5F0A2B;
// System.Threading.SparselyPopulatedArray`1<System.Threading.CancellationCallbackInfo>[]
struct SparselyPopulatedArray_1U5BU5D_t4D2064CEC206620DC5001D7C857A845833DCB52A;
// System.Diagnostics.StackTrace[]
struct StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971;
// System.String[]
struct StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A;
// Mono.Globalization.Unicode.CodePointIndexer/TableRange[]
struct TableRangeU5BU5D_t529A3048AC157A0702514DB337164442AF1530C7;
// Mono.Globalization.Unicode.TailoringInfo[]
struct TailoringInfoU5BU5D_tE558BFC8FBB51482ACC5F18EB713B8AE8B77FB99;
// System.Type[]
struct TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755;
// System.UInt16[]
struct UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67;
// System.UInt32[]
struct UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF;
// System.Collections.Hashtable/bucket[]
struct bucketU5BU5D_tFE956DAEFB1D1C86A13EF247D7367BF60B55E190;
IL2CPP_EXTERN_C RuntimeClass* Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ActivatedClientTypeEntry_t66A69B1534DEAA65BB13C418074C41B27F4662A3_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ActivatedServiceTypeEntry_t0DA790E1B80AFC9F7C69388B70AEC3F24C706274_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* AggregateException_t45A871D3DBDA3E28FBCD8DF21F6772238FC55BD1_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* AppContextSwitches_tB32AD47AEBBE99D856C1BC9ACFDAB18C959E4A21_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* BinaryFormatter_tAA0465FE94B272FAC7C99F6AD38120E9319C5F55_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* BitConverter_t8DCBA24B909F1B221372AF2B37C76DCF614BA654_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ByteEqualityComparer_t5DEB0978C83C3FA68A8AE80E9A8E0F74F5F81026_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Byte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CADArgHolder_tF834CE7AC93B38AABC332460CBAB127B82A9389E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CADMethodCallMessage_t57296ECCBF254F676C852CB37D8A35782059F906_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CADMethodRef_t9626FF46E076B15F71F14133E3FE884F10F50DD2_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CADMethodReturnMessage_t875AA26C474A6CC70596D42E9D74006BCC86A272_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CADObjRef_tEBB48EB2D43F3C2012DFF53EC552B784A5FAA0FC_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CDSCollectionETWBCLProvider_tEF5FCC038F98C60A7A17E73AB11508EE6E2F4266_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Calendar_t3D638AEAB45F029DF47138EDA4CF9A7CBBB1C32A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CallContextRemotingData_t91D21A898FED729F67E6899F29076D9CF39E419E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CallContextSecurityData_t57A7D75CA887E871D0AF1E3AF1AB9624AB99B431_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CancellationCallbackCoreWorkArguments_t9ECCD883EF9DF3283696D1CE1F7A81C0F075923E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CancellationCallbackInfo_t7FC8CF6DB4845FCB0138771E86AE058710B1117B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CancellationTokenRegistrationU5BU5D_t864BA2E1E6485FDC593F17F7C01525F33CCE7910_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CaseInsensitiveComparer_t6261A2A5410CBE32D356D9D93017732DF0AADC6C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CaseInsensitiveHashCodeProvider_tBB49394EF70D0021AE2D095430A23CB71AD512FA_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ChannelData_tEA64A2F1AEEC413430B61C6C7C4A1652EFDD9827_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ChannelServices_tE1834D9FC8B4A62937AEF20FF29A91B9D3A07B28_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CharUnicodeInfo_t9D4692B295E2A9DA68C289734E499AE3F4B41876_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ClientContextReplySink_tAB77283D5E284109DBA2762B990D89C2F2BE24C8_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CodePageDataItem_t09A62F57142BF0456C8F414898A37E79BCC9F09E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ConsoleDriver_tFC1E81F456E9440AB760A599AA5BB301BBD12B11_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Console_t79987B1B5914E76054A8CBE506B9E11936A8BC07_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ConstructorInfo_t449AEC508DCA508EE46784C4F2716545488ACD5B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ContextCallback_t93707E0430F4FF3E15E1FB5A4844BE89C657AE8B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Context_t8A5B564FD0F970E10A97ACB8A7579FFF3EE4C678_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Convert_tDA947A979C1DAB4F09C461FAFD94FE194743A671_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CrossContextChannel_tF0389BFF59F875ADDC660EBAF4BA5267F13A88AD_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DecimalU5BU5D_tAA3302A4A6ACCE77638A2346993A0FAAE2F9FDBA_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_t33B68634E5ACFD2A5AE4981521BFC06805BE18BB_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DoubleU5BU5D_t8E1B42EB2ABB79FBD193A6B8C8D97A7CDE44A4FB_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* EncodingTable_t694F812B48CC2BA6D23BDF77EA7E71E330497529_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* EventSource_t02B6E43167F06B74646A32A3BBC58988BFC3EA6A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Exception_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ExecutionContext_t16AC73BB21FEEEAD34A017877AC18DD8BB836414_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* FormatException_t119BB207B54B4B1BC28D9B1783C4625AE23D4759_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* FormatterData_t949FC0175724CB0B0A0CECED5896D0597B2CC955_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* GC_tD6F0377620BF01385965FD29272CF088A4309C0D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IAttrList_tB08E93C160C8FF2AAE53C3C2F7557421B6BD5CEC_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IChannelDataStore_tC196EC915AAAD6588FCA457AA74EB30BE1F5BC9C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IChannelReceiver_tAB4C6F19EF8F5D5641CB3C4BE305C97819D9B92B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IChannelSender_tC9474F74732657C8839C64D56543D40F9C9A3724_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IChannel_tAAB2462B4D468FB11A38ACC68C561C9BA8E9A8B0_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IClientChannelSinkProvider_tB3CC676B6211DA8F57838434B0443C12B25FC422_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IComparable_tFEDC50D0B9EA8DB2753CA1971AA5AB49AD3AC62C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IConstructionCallMessage_tC83D3CB206252626FBA0E8A12360CD6FA53630C7_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IEnumerable_t47A618747A1BB2A868710316F7372094849163A2_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IEnvoyInfo_t0D9B51B59DD51C108742B0B18E09DC1B0AD6B713_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IHashCodeProvider_t1DC17F4EF3AD40E5D1A107939F6E18E2D450B691_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IList_tB15A9D6625D09661D6E47976BB626C703EC81910_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IMessageSink_t5C83B21C4C8767A5B9820EBBE611F7107BC7605F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IMessage_tFB62BF93B045EA3FA0278D55C5044B322E7B4545_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IMethodCallMessage_t5C6204CBDF0F7151187809C69BA5504C88EEDE44_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IMethodMessage_tF1E8AAA822A4BC884BC20CAB4B84F5826BBE282C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IMethodReturnMessage_t4B84F631CB7E599CD495048748DE5E21B62390B0_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ISecurableChannel_t1456041094B227950296C0E8174F701C31E4F3EA_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IServerChannelSinkProvider_t24A95E44364690525F5E4CD5ADEB549D8E1EB429_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ITaskCompletionAction_t7007C80B89E26C5DBB586AF8D5790801A1DDC558_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Int16_tD0F031114106263BB459DA1F099FF9F42691295A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Int64U5BU5D_tCA61E42872C63A4286B24EEE6E0650143B43DCE6_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IntPtr_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* InvalidCastException_tD99F9FF94C3859C78E90F68C2F77A1558BCAF463_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* JapaneseCalendar_t9B3E6C121CD0B742AC6413D33DE394DE3E3C6360_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* LifetimeServices_tF0C101B662D7B7A3481C924BC01E1623C1AFF6E4_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1_t433251677FFAE6CDCEC92C181CEA282328DA13EB_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* LogicalCallContext_tB537C2A13F19FCC7EBC74757A415F2CA5C8FA1C3_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* MSCompatUnicodeTable_t46D5D29A0AF117D0BEE1CD7CBAEAFB2DA2B640E5_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* MessageDictionary_tF87E1D8408337642172945A13C9C116D7F9336BE_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* MethodInfo_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* MethodResponse_tF8C71D003BA7D3DFB7C5079C1586139A6130ADC5_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ObjectDisposedException_t29EF6F519F16BA477EC682F23E8344BB1E9A958A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* OperationCanceledException_tA90317406FAE39FB4E2C6AA84E12135E1D56B6FB_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* OverflowException_tD1FBF4E54D81EC98EEF386B69344D336D1EC1AB9_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ProviderData_t2E4B222839D59BB2D2C44E370FA8ED37DAF4F582_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* RemotingConfiguration_t9AFFB44D1A1D02A702140D927B0173593B67D0C5_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* RemotingException_tEFFC0A283D7F4169F5481926B7FF6C2EB8C76F1B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* RemotingServices_tA253EA010FDD8986A2E814099EAB32BB98652786_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* RemotingSurrogateSelector_t1E36D625AE2C1058EA107D872577F1EFD04B5FCA_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ReturnMessage_tBC416F1575159EF223AB8AF256F46F5832E3F3F9_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* RuntimeArray_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* RuntimeObject_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SByteU5BU5D_t7D94C53295E6116625EA7CC7DEA21FEDC39869E7_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SByte_t928712DD662DC29BA4FAAE8CE2230AFB23447F0B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SendOrPostCallback_t6B7334CE017AF595535507519400AC02D688DC3C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ServerIdentity_t5689BF0CA0122A8E597C9900D39F11F07D79D3A8_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SimpleCollator_t60F8CB5F37FA4A008E484C0BD0429E65E5904266_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SinkProviderData_tDCF47C22643A26B1E1F6BB60FA7AE7034053D14E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SoapServices_tF5C603622E5CA7C74CE4C673ADEB2AE77B95273B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SortKey_tBBD5A739AC7187C1514CBA47698C1D5E36877F52_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SparselyPopulatedArray_1U5BU5D_t4D2064CEC206620DC5001D7C857A845833DCB52A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SparselyPopulatedArray_1_tA18952D126B9E09096751CC472A19196C8B6C17A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Stack_tF6DD42A42C129B014D4223010F1E0FFBECBDC3B8_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* StreamReader_tA857ACC7ABF9AA4638E1291E6D2539C14D2963D3_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* StreamWriter_t3E267B7F3C9522AF936C26ABF158398BB779FAF6_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* StringBuilder_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* String_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TableRangeU5BU5D_t529A3048AC157A0702514DB337164442AF1530C7_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TargetInvocationException_t30F4C50D323F448CD2E08BDB8F47694B08EB354C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TermInfoDriver_t4BA3410FC3FAB83D567ADF15C94124D8148A0E03_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TermInfoStrings_tC2CD768002EED548C9D83DCA65B040248D9BD7B5_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TimerCallback_tD193CC50BF27E129E6857E1E8A7EAC24BD131814_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Type_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* UInt16_t894EA9D4FB7C799B244E7BBF2DF0EEEDBC77A8BD_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* UInt32_tE60352A06233E4E69DD198BCC67142159F686B15_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* UInt64_tEC57511B3E3CA2DBA1BEBD434C6983E31C943281_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* UTF8Encoding_t6EE88BC62116B5328F6CF4E39C9CC49EED2ED282_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* WeakReference_tB8558D16C98417FD98C920C42C0CC5C9FF825C76_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* WellKnownClientTypeEntry_tF15BE481E09131FA6D056BC004B31525261ED4FD_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* WellKnownServiceTypeEntry_t98CBB552396BFD8971C9C23000B68613B8D67F9D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8____3C53AFB51FEC23491684C7BEDBC6D4E0F409F851_19_FieldInfo_var;
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8____5382CEF491F422BFE0D6FC46EFAFF9EF9D4C89F3_28_FieldInfo_var;
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8____811A927B7DADD378BE60BBDE794B9277AA9B50EC_46_FieldInfo_var;
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8____B53A2C6DF21FC88B17AEFC40EB895B8D63210CDF_71_FieldInfo_var;
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8____B8864ACB9DD69E3D42151513C840AAE270BF21C8_73_FieldInfo_var;
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8____C1A1100642BA9685B30A84D97348484E14AA1865_79_FieldInfo_var;
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8____F073AA332018FDA0D572E99448FFF1D6422BD520_95_FieldInfo_var;
IL2CPP_EXTERN_C String_t* _stringLiteral00BA133FF3D84EAB4FB7DB5FB38F235C4E108ED9;
IL2CPP_EXTERN_C String_t* _stringLiteral025756045BDFD91D955C36F408D03E73F29DC320;
IL2CPP_EXTERN_C String_t* _stringLiteral032CE4B2D2D7086FA0A51B767B66E2925BB4FC5D;
IL2CPP_EXTERN_C String_t* _stringLiteral0458562336F91AC3F0C3FE71A886E75CE5C8F84A;
IL2CPP_EXTERN_C String_t* _stringLiteral072BA90B274B502615639084DC3D7FCC63407A24;
IL2CPP_EXTERN_C String_t* _stringLiteral07624473F417C06C74D59C64840A1532FCE2C626;
IL2CPP_EXTERN_C String_t* _stringLiteral07C65E0263E8C89F4054B191C34729C2341AF387;
IL2CPP_EXTERN_C String_t* _stringLiteral08452990226EC2AD31640A0B3014BF487DF9E5EC;
IL2CPP_EXTERN_C String_t* _stringLiteral09684B67A5909FD48E1F14A8AF8DDD483C620B10;
IL2CPP_EXTERN_C String_t* _stringLiteral09AE50F6D0ABA2E4A954B66B8ABEB086FEACFAC7;
IL2CPP_EXTERN_C String_t* _stringLiteral0B31AB38360ECF9683ADAB607974B916C9663192;
IL2CPP_EXTERN_C String_t* _stringLiteral0B798356FD894E501D551E417E73077679661C7D;
IL2CPP_EXTERN_C String_t* _stringLiteral0BC57303021D0F5E73500A4048868718EB82784B;
IL2CPP_EXTERN_C String_t* _stringLiteral0E759A0838CB9E0AC11F07D87AB7ADE1E3658498;
IL2CPP_EXTERN_C String_t* _stringLiteral0FE08127C956C63EBBF50CF1F98DF6B7971E092A;
IL2CPP_EXTERN_C String_t* _stringLiteral10813B770C68163A5653822E9D25264263D8A9D2;
IL2CPP_EXTERN_C String_t* _stringLiteral1168E92C164109D6220480DEDA987085B2A21155;
IL2CPP_EXTERN_C String_t* _stringLiteral118B7EF5534C6D8FC0C604519BCCF879FEBC10D4;
IL2CPP_EXTERN_C String_t* _stringLiteral1479E9D25132D58E06C7816F09642D0A781F369D;
IL2CPP_EXTERN_C String_t* _stringLiteral1489F923C4DCA729178B3E3233458550D8DDDF29;
IL2CPP_EXTERN_C String_t* _stringLiteral1673B4D06ED01C7C0212BB2E7412E02E9578984F;
IL2CPP_EXTERN_C String_t* _stringLiteral17D23A461128D46FB98E5F26EABCCB3A13E8E77F;
IL2CPP_EXTERN_C String_t* _stringLiteral180ABD02DC03A9EB8A130CD469441B38082AE000;
IL2CPP_EXTERN_C String_t* _stringLiteral1885083B225A9C3413CEAE49DFF7E6B5770675FB;
IL2CPP_EXTERN_C String_t* _stringLiteral1AF5106E27887E8D2FF3030A6CF4363AAA407675;
IL2CPP_EXTERN_C String_t* _stringLiteral1BF8D8D253960D24F13B509B7C684DE1748EEB9A;
IL2CPP_EXTERN_C String_t* _stringLiteral1C59521BF2B6D8FF8714D3F8322FE24B5D7A5CC1;
IL2CPP_EXTERN_C String_t* _stringLiteral1D542D1706E354A138185DEBD0C15CC6491074D7;
IL2CPP_EXTERN_C String_t* _stringLiteral1D6674CC4444ADCC095A55FE821CC7143CAEE6C2;
IL2CPP_EXTERN_C String_t* _stringLiteral1DE83F142760C720E9B94F8464E7B0938F39B348;
IL2CPP_EXTERN_C String_t* _stringLiteral1DEDCD1168FE0A01C595FF5B7901D1C14F15F786;
IL2CPP_EXTERN_C String_t* _stringLiteral1DFD50EF03F4A649921CD3B98FC9BBFE2657338B;
IL2CPP_EXTERN_C String_t* _stringLiteral1E9918A305DD44C6C5253BF7305AB7758C686BB5;
IL2CPP_EXTERN_C String_t* _stringLiteral201EE4375A9E01A380464D54C52CD60D7844F5B3;
IL2CPP_EXTERN_C String_t* _stringLiteral20A854C830175E5869E4B5AC3198664C56CCEA9C;
IL2CPP_EXTERN_C String_t* _stringLiteral210B13DC0D9FBABFD7B2D6C9A4704A13D113A558;
IL2CPP_EXTERN_C String_t* _stringLiteral2390D6884F59E2E4EA04837AD7D6268548597633;
IL2CPP_EXTERN_C String_t* _stringLiteral245CEF01D16A6B24F94091A25ACF49DF211D7851;
IL2CPP_EXTERN_C String_t* _stringLiteral25BA86D351FA0013EE595518C4713ECE93CB1E7F;
IL2CPP_EXTERN_C String_t* _stringLiteral26CA1D5E2F6785F2DC7432A0B6AD44F0E0349443;
IL2CPP_EXTERN_C String_t* _stringLiteral275D3E3CE6C1DCAE744A9EA422F681D8094B8A71;
IL2CPP_EXTERN_C String_t* _stringLiteral29988D0F9BCADFABFF66CBF5AB73096D1CAE3128;
IL2CPP_EXTERN_C String_t* _stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1;
IL2CPP_EXTERN_C String_t* _stringLiteral2D1B25F57FBBF092D20BC7A78D5400EFCC693530;
IL2CPP_EXTERN_C String_t* _stringLiteral2DC5EDCAC37BBBCABC85B64AC9D760F28715A646;
IL2CPP_EXTERN_C String_t* _stringLiteral2F8195E8BB521CC483F63F9A7ED0B08AEED234FA;
IL2CPP_EXTERN_C String_t* _stringLiteral36A2069F2EBB68A1BE4AF9D9FF3B475C9EE76A26;
IL2CPP_EXTERN_C String_t* _stringLiteral36AAB4FAC53A9D2E9C364A8A00F31042B32C7D37;
IL2CPP_EXTERN_C String_t* _stringLiteral37CE2722D078399B62DDA59FCE70D7047FCCB84D;
IL2CPP_EXTERN_C String_t* _stringLiteral38E3DBC7FC353425EF3A98DC8DAC6689AF5FD1BE;
IL2CPP_EXTERN_C String_t* _stringLiteral3A50E886F50E292CF8471ADF9B446694CBE92C2E;
IL2CPP_EXTERN_C String_t* _stringLiteral3A971881AF6B7B211E34707E857DEC5F36487877;
IL2CPP_EXTERN_C String_t* _stringLiteral3C686C624D22B0C45E4FADFB00FA535DDDC88AD7;
IL2CPP_EXTERN_C String_t* _stringLiteral3D51FDDF58308079A043DDCC15BA528167BEE5D3;
IL2CPP_EXTERN_C String_t* _stringLiteral3ECE023333DCF45DE7B1FEAFFE30E295210DDD9B;
IL2CPP_EXTERN_C String_t* _stringLiteral401602777C44EA69B5FF9AB6AB2D47AEEC89D2AA;
IL2CPP_EXTERN_C String_t* _stringLiteral410E5346BCA8EE150FFD507311DD85789F2E171E;
IL2CPP_EXTERN_C String_t* _stringLiteral41CFBFEBC2609F9B3023E74B5DBE88079E7A9E8A;
IL2CPP_EXTERN_C String_t* _stringLiteral421946A468AE72240EF7B18CB3D945907D863146;
IL2CPP_EXTERN_C String_t* _stringLiteral426BBECB217FE21AC02D68793294AB84FA0CA2E2;
IL2CPP_EXTERN_C String_t* _stringLiteral4481EB4F8B6BEF5D863C23DACE5D92E1C6603258;
IL2CPP_EXTERN_C String_t* _stringLiteral44F1E7DB2E8AAD233857868896DFEFE5A63EECEF;
IL2CPP_EXTERN_C String_t* _stringLiteral465E2376F6C7424A72DDD9AFA634A35A6E1557AC;
IL2CPP_EXTERN_C String_t* _stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8;
IL2CPP_EXTERN_C String_t* _stringLiteral48F272DF86FC10E12E1FAA1FC1B9F90BB73A896F;
IL2CPP_EXTERN_C String_t* _stringLiteral490345002F497F677B5F4196B8362970016B8E51;
IL2CPP_EXTERN_C String_t* _stringLiteral49AD46268852D165D6DD25ADAFB0D9B91B3B62A3;
IL2CPP_EXTERN_C String_t* _stringLiteral4B896CA0A2BC44D9A8CED783CEFABA7570F20DBD;
IL2CPP_EXTERN_C String_t* _stringLiteral4C00FC698CF2CAB7258B33131C419880B701D552;
IL2CPP_EXTERN_C String_t* _stringLiteral4D987B618DF7A49E2E03FEAF82F4F9331C0325B2;
IL2CPP_EXTERN_C String_t* _stringLiteral4DD1381E4145425E1CF5C6C3E3BCD0EC73DE8431;
IL2CPP_EXTERN_C String_t* _stringLiteral4DFB23BDF07A363C796AD8A75DD05EFEEC339872;
IL2CPP_EXTERN_C String_t* _stringLiteral4EA9DD5945948A05CFAA3089FB39E5356765948B;
IL2CPP_EXTERN_C String_t* _stringLiteral4F04E415359BAAEA12C3DA482EAACC98D2F7EDC8;
IL2CPP_EXTERN_C String_t* _stringLiteral4F215A76D6AA3EECEB0B27292DBEA57631110BCC;
IL2CPP_EXTERN_C String_t* _stringLiteral4FB3B17CEC619C238633561C3FAE9D8ADED19582;
IL2CPP_EXTERN_C String_t* _stringLiteral505456B5574CB90C2805A00F62F817D3448B79E5;
IL2CPP_EXTERN_C String_t* _stringLiteral532F5429956965038FA49DA954E9A0D4D34B41A9;
IL2CPP_EXTERN_C String_t* _stringLiteral53720F3359683C225C1811C323C518BF79B9C36B;
IL2CPP_EXTERN_C String_t* _stringLiteral542508530066555AD949C9365798A5D72D7F46E5;
IL2CPP_EXTERN_C String_t* _stringLiteral565EF9531125821563B3C16D6B433C236E827A86;
IL2CPP_EXTERN_C String_t* _stringLiteral569FEAE6AEE421BCD8D24F22865E84F808C2A1E4;
IL2CPP_EXTERN_C String_t* _stringLiteral582EE3459CC9D4075E983D2BB806284C4466E027;
IL2CPP_EXTERN_C String_t* _stringLiteral5A2735BCC5C2C3FA3FB3FEAB6A628F7ADB815E48;
IL2CPP_EXTERN_C String_t* _stringLiteral5A7ADFD6756FB3736B5F1DD62B8C220E85E5A9A6;
IL2CPP_EXTERN_C String_t* _stringLiteral5B41A58E45555854EC2026B9B5F8243AA9E7ED4B;
IL2CPP_EXTERN_C String_t* _stringLiteral5B7E9DC00CB9009F6B8B6197E636C097852B1458;
IL2CPP_EXTERN_C String_t* _stringLiteral5BE7BD24523F2E62348601708F0511CE5DAFA28D;
IL2CPP_EXTERN_C String_t* _stringLiteral5CAD421923F0F10D02AFE6EA17ED4E929131E356;
IL2CPP_EXTERN_C String_t* _stringLiteral5D0CA6B90F85D9B6B0F1EC401EB9F17237309DC4;
IL2CPP_EXTERN_C String_t* _stringLiteral6018A7E9E4395D2196E577EAEE1F24DCC0E7EF5C;
IL2CPP_EXTERN_C String_t* _stringLiteral60DD930E5A5E811ABBC8E526C1ACA88F58EA4C81;
IL2CPP_EXTERN_C String_t* _stringLiteral6138241A3DE02B2D3DCE5A7D8521E6799652D9B9;
IL2CPP_EXTERN_C String_t* _stringLiteral653BECF9AD52DCE27A552FEC8151E2F976D35E59;
IL2CPP_EXTERN_C String_t* _stringLiteral66F9618FDA792CAB23AF2D7FFB50AB2D3E393DC5;
IL2CPP_EXTERN_C String_t* _stringLiteral6775028FD44745B07D83DC088697F56152E25D33;
IL2CPP_EXTERN_C String_t* _stringLiteral690BF02630AC0BD6AA6BD08D2C36A28E1FC54F3E;
IL2CPP_EXTERN_C String_t* _stringLiteral6C8C975CC62CF419550282B028FB7E3A1F591D06;
IL2CPP_EXTERN_C String_t* _stringLiteral6E9AEBB5505B4A1DBC166711562BE9408419A24D;
IL2CPP_EXTERN_C String_t* _stringLiteral6F13F54F494E28F28376880BC025DFFCA08EF69F;
IL2CPP_EXTERN_C String_t* _stringLiteral6F96D91590C70C47BBC8C98A53B3B412C36447CE;
IL2CPP_EXTERN_C String_t* _stringLiteral6FAA69737248D54232C9439E0232531518229AB0;
IL2CPP_EXTERN_C String_t* _stringLiteral703C3487AEE69DB9DF017E809F1B5784A3573EDD;
IL2CPP_EXTERN_C String_t* _stringLiteral709EE1E1FB1C7810981A84E6BC5DFA3C36544401;
IL2CPP_EXTERN_C String_t* _stringLiteral71443AC7CF5CC108984A138188DE915E32441BB2;
IL2CPP_EXTERN_C String_t* _stringLiteral723E46A41FA30E7C7F196DE580152E6EF9C3D31C;
IL2CPP_EXTERN_C String_t* _stringLiteral737BFFF97B66248A4653D6DA8ADA91C6C1065CAF;
IL2CPP_EXTERN_C String_t* _stringLiteral74DD10D97D53CB0F2EF9CC344F0E4FA1D2C6ADE5;
IL2CPP_EXTERN_C String_t* _stringLiteral7604CE64DF0D0C88AAD5295874D8174F1A4E59F1;
IL2CPP_EXTERN_C String_t* _stringLiteral76090A3CE9567D0D26B5213CB891A873540230EE;
IL2CPP_EXTERN_C String_t* _stringLiteral771CD4100BE80B40BA45C073147E987B92196BE9;
IL2CPP_EXTERN_C String_t* _stringLiteral7965C39E5C9F51E71E63A24FE3AC5143A88FD42F;
IL2CPP_EXTERN_C String_t* _stringLiteral7BE89227A0BBC17012796DD27BB68B0D5FB2D35E;
IL2CPP_EXTERN_C String_t* _stringLiteral7D0595560900309D36167206F8ED4086F6F4414F;
IL2CPP_EXTERN_C String_t* _stringLiteral7D58B049E216EB50EA83E484A70559E5E4785F6C;
IL2CPP_EXTERN_C String_t* _stringLiteral7D9366B62C745A26836F06770906ECFBBDA943C2;
IL2CPP_EXTERN_C String_t* _stringLiteral7F4C724BD10943E8B0B17A6E069F992E219EF5E8;
IL2CPP_EXTERN_C String_t* _stringLiteral7F7371C6D16A84530B0AEE2259FBCF944A35C392;
IL2CPP_EXTERN_C String_t* _stringLiteral834F4B6837B71847C4048C946DF8754B323D6BF9;
IL2CPP_EXTERN_C String_t* _stringLiteral8532458685731C44156899992CA7A144A15B177F;
IL2CPP_EXTERN_C String_t* _stringLiteral8576BA38A6B54451F2DCD524CBE7A6AEAD448846;
IL2CPP_EXTERN_C String_t* _stringLiteral85E5220174C73ACFFFBBA9BBC35A341F1A794FA7;
IL2CPP_EXTERN_C String_t* _stringLiteral86BBAACC00198DBB3046818AD3FC2AA10AE48DE1;
IL2CPP_EXTERN_C String_t* _stringLiteral8788F37E33E57DC9F28B3BE2B6477FA4CAF577D4;
IL2CPP_EXTERN_C String_t* _stringLiteral8AA1346A31D4392D363319D2557E15D69F536291;
IL2CPP_EXTERN_C String_t* _stringLiteral8E3EB4278522B6168F859CF94CF470FCCC6EA287;
IL2CPP_EXTERN_C String_t* _stringLiteral8FAFE0C7CF4DAF4B0E2865AE5128EAAA4A3DE940;
IL2CPP_EXTERN_C String_t* _stringLiteral9057DF3C7D220194368FF3C0F5478822A33D43C2;
IL2CPP_EXTERN_C String_t* _stringLiteral90A5392A183E89DBE999F126162F8DFCB0D89D7E;
IL2CPP_EXTERN_C String_t* _stringLiteral941110A9D02213F4971B8FCCE11F9AA67540A804;
IL2CPP_EXTERN_C String_t* _stringLiteral94C1D1D5DFBE8817002E6ACE4594F5AF62E365A2;
IL2CPP_EXTERN_C String_t* _stringLiteral9542ADC5ED3F05F0B5758A7F97D8963E05354990;
IL2CPP_EXTERN_C String_t* _stringLiteral996BC64180ACE658CBBD000606F4642C8A305B83;
IL2CPP_EXTERN_C String_t* _stringLiteral996E5360F80E16B2189CC1E536C91CE68083F694;
IL2CPP_EXTERN_C String_t* _stringLiteral9A55D88104EFE4189E91600732E17785B1FA4735;
IL2CPP_EXTERN_C String_t* _stringLiteral9AA99C92BB9065939AEAB82DCEAAB6CEE49FA2FB;
IL2CPP_EXTERN_C String_t* _stringLiteral9AF9FF4500EB6B70FD164AC9B6F526595198624A;
IL2CPP_EXTERN_C String_t* _stringLiteral9DF54E9FB641DBA4B94F96FF3454CDAD9970E6C8;
IL2CPP_EXTERN_C String_t* _stringLiteral9E97B7B0222C61489C2684AE49BC8FB3A3C911F3;
IL2CPP_EXTERN_C String_t* _stringLiteral9EE57D52543835D23EEE1E2B0B48884E070F1F2E;
IL2CPP_EXTERN_C String_t* _stringLiteralA019FB7F17AA36A9743C530E1F11D5613B8B1158;
IL2CPP_EXTERN_C String_t* _stringLiteralA09F246AE21707075DEBEE5144A3AAF265F7C5D4;
IL2CPP_EXTERN_C String_t* _stringLiteralA19ED9377F21EF1A016E2793CAC9E2C68FCEA42D;
IL2CPP_EXTERN_C String_t* _stringLiteralA1E66CCF76473906B7C3C6EFF6389959F5A35C31;
IL2CPP_EXTERN_C String_t* _stringLiteralA2E138AD319A0E08FFC4A185CE05933BF5C01D5C;
IL2CPP_EXTERN_C String_t* _stringLiteralA3C60DDE32C733BF4E29DF56605E774755924A9A;
IL2CPP_EXTERN_C String_t* _stringLiteralA3DF8D57E7B23E8545369C5AA68E5EC834890EFA;
IL2CPP_EXTERN_C String_t* _stringLiteralA50D93AD9EE5FCEB95FF556A60A2EE2A7564DB1A;
IL2CPP_EXTERN_C String_t* _stringLiteralA65DBA682C40E29506EA08E50296520D49939CB9;
IL2CPP_EXTERN_C String_t* _stringLiteralA72868781652C6F635459ABB9A9397C8A7FE4A07;
IL2CPP_EXTERN_C String_t* _stringLiteralA753857E01AAD2EC90D0C03385ADABE75EC31462;
IL2CPP_EXTERN_C String_t* _stringLiteralA7B00F7F25C375B2501A6ADBC86D092B23977085;
IL2CPP_EXTERN_C String_t* _stringLiteralA7E0C9B3AD574A635E7A55DDA234BE73FC64A575;
IL2CPP_EXTERN_C String_t* _stringLiteralA8B6AD1EBB9C453BCCED7D1D66C117C4D479E48D;
IL2CPP_EXTERN_C String_t* _stringLiteralA9C9EAF2B321FB535896193237050E1B326F1ADE;
IL2CPP_EXTERN_C String_t* _stringLiteralAD6AEA9823C0193210912116B6EA9BCF397B8559;
IL2CPP_EXTERN_C String_t* _stringLiteralADEDA899B28A6840973C52FCE9F2853EB9FFCA2D;
IL2CPP_EXTERN_C String_t* _stringLiteralAE622B2B822F056AE608B7DB123F0944386EE884;
IL2CPP_EXTERN_C String_t* _stringLiteralAE9D6A0B88B2447EB31ABF04D08C209B24A5C50E;
IL2CPP_EXTERN_C String_t* _stringLiteralAF248E82BE9EBA1ADBF067429FAEE5A5B6E05A74;
IL2CPP_EXTERN_C String_t* _stringLiteralB09D0FEA309587A127D07C785E1898E52BADEDD9;
IL2CPP_EXTERN_C String_t* _stringLiteralB2594614979852FD5C1EC00AAADD8DAA7E798A66;
IL2CPP_EXTERN_C String_t* _stringLiteralB3BA12068BD3071A73C63693CDF05EA94DE8C795;
IL2CPP_EXTERN_C String_t* _stringLiteralB3F14BF976EFD974E34846B742502C802FABAE9D;
IL2CPP_EXTERN_C String_t* _stringLiteralB4509A49FFFA8752252D9278F09E16BE5144DA8C;
IL2CPP_EXTERN_C String_t* _stringLiteralB505BEB437FEA875B33D15B66239CDB24A866657;
IL2CPP_EXTERN_C String_t* _stringLiteralB657B9EBAD0A09A09ED1FD8D1CCD0E421CD7BDC7;
IL2CPP_EXTERN_C String_t* _stringLiteralB7C45DD316C68ABF3429C20058C2981C652192F2;
IL2CPP_EXTERN_C String_t* _stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED;
IL2CPP_EXTERN_C String_t* _stringLiteralBBD11F99363FBD48A19EC93522A2F26D535F4892;
IL2CPP_EXTERN_C String_t* _stringLiteralBD28F0EF55CF843B2EC91B524FC8E2392F227EAB;
IL2CPP_EXTERN_C String_t* _stringLiteralBDC15940CAB884AEC083C2E30F425EB82D3FCD4E;
IL2CPP_EXTERN_C String_t* _stringLiteralBE2893848F9FC647C2288DA6581A1522E9695182;
IL2CPP_EXTERN_C String_t* _stringLiteralBE5FC84E8C9F3A201FE674E9820EF84890B16E29;
IL2CPP_EXTERN_C String_t* _stringLiteralBECFA9FA31EDDEEE54C61C3D0DD81CBF07EA7158;
IL2CPP_EXTERN_C String_t* _stringLiteralBF27849B63507F7B8C2FC6FE9C5EFB62BF8543C8;
IL2CPP_EXTERN_C String_t* _stringLiteralBFFE556F7CC5A872AFD8DD5F0E974020A23AF585;
IL2CPP_EXTERN_C String_t* _stringLiteralC0F8354533780DDE841AACE39BC7E3CD2C9E84B6;
IL2CPP_EXTERN_C String_t* _stringLiteralC263EA29ADF3548CFEBC57B532EED28451A56C10;
IL2CPP_EXTERN_C String_t* _stringLiteralC46C54AAF801625D4CC5B86D35AC24E3F9CDFA85;
IL2CPP_EXTERN_C String_t* _stringLiteralC476CD4C5AD7A3F6842E669611A262240135BD32;
IL2CPP_EXTERN_C String_t* _stringLiteralC47E2212B458C634930C56E3FC26BF1445C0E0A3;
IL2CPP_EXTERN_C String_t* _stringLiteralC760E2135EAB57AB73C3C108568C92C989BE4425;
IL2CPP_EXTERN_C String_t* _stringLiteralC7C14D71A1F56C44B9675A7669830348936D8FAA;
IL2CPP_EXTERN_C String_t* _stringLiteralC80EAF7D556B35E97D7BD4261C87B1BF066A0221;
IL2CPP_EXTERN_C String_t* _stringLiteralC89BC4B651526324A940F43DBDDD65881B0A8201;
IL2CPP_EXTERN_C String_t* _stringLiteralCB5CDE966F99FDC7AE4101331D907BCEF208D664;
IL2CPP_EXTERN_C String_t* _stringLiteralCBCEEAD2814FD2AF3A0CDF1DF5717F3CA49EAF45;
IL2CPP_EXTERN_C String_t* _stringLiteralCD72E754EFE3E1665E07A8C232230015A25B5E3E;
IL2CPP_EXTERN_C String_t* _stringLiteralCDFD9CA4729AEEFF50B04F5B4F46213329D0BEB1;
IL2CPP_EXTERN_C String_t* _stringLiteralCE18B047107AA23D1AA9B2ED32D316148E02655F;
IL2CPP_EXTERN_C String_t* _stringLiteralCF7DF948FC4905FED1A56776B9DFCCB86C46912A;
IL2CPP_EXTERN_C String_t* _stringLiteralCFC4A754642031A9C52CF57557A9814B6FE93322;
IL2CPP_EXTERN_C String_t* _stringLiteralD0A9AA74760549C6A732B0EC13F9519F26FC67E4;
IL2CPP_EXTERN_C String_t* _stringLiteralD28C94883387DBDDA48D56C715653DEF70A2DB6D;
IL2CPP_EXTERN_C String_t* _stringLiteralD45487222C981ED9BE87F0E0426849BA1A76E60D;
IL2CPP_EXTERN_C String_t* _stringLiteralD565E3901235294A6A19C625B8A232DBED8DAC34;
IL2CPP_EXTERN_C String_t* _stringLiteralD56ECCB13770E8300FEE31DF9CFA9B022470BE5A;
IL2CPP_EXTERN_C String_t* _stringLiteralD5E5293FEA09B88C13C6F9BF3792382B40D9CBF7;
IL2CPP_EXTERN_C String_t* _stringLiteralD69278362EF033D8D40906B0032FC83408022B8C;
IL2CPP_EXTERN_C String_t* _stringLiteralD8BC2BD13ADDE8D5A4042FB0941980613775040D;
IL2CPP_EXTERN_C String_t* _stringLiteralD8DCBB96A969755857FECA260F5484078B4AD706;
IL2CPP_EXTERN_C String_t* _stringLiteralDA109A16D6803B1282A1EB563D22C1A43E64C5F8;
IL2CPP_EXTERN_C String_t* _stringLiteralDA144A4546BA813419D20020C8E1F983163D5616;
IL2CPP_EXTERN_C String_t* _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709;
IL2CPP_EXTERN_C String_t* _stringLiteralDA39F9AE1465FB1F5899C048F1CDCBA81494B0C8;
IL2CPP_EXTERN_C String_t* _stringLiteralDAF2BD03270A51BF9C135F3694DCAD2D3E66F465;
IL2CPP_EXTERN_C String_t* _stringLiteralDBB6CDA4D5A47DA899D30151C0C04DB0958C5C1F;
IL2CPP_EXTERN_C String_t* _stringLiteralDC6D4531567379E9E727DD524E7257B4C724B383;
IL2CPP_EXTERN_C String_t* _stringLiteralDC71B380AFF23A38F6029B32B61C6943CB960350;
IL2CPP_EXTERN_C String_t* _stringLiteralDCABCB34318FEA01D90F2D4A09850C36FA6CB742;
IL2CPP_EXTERN_C String_t* _stringLiteralDD20A4ABE85826C9E1FB7E7CF231364434408BFA;
IL2CPP_EXTERN_C String_t* _stringLiteralDD7461C99FE0AF610527A1F4273DBC4696AB5F17;
IL2CPP_EXTERN_C String_t* _stringLiteralDD8D882CE529CBE19E118FBA7454A7E8DE0B2578;
IL2CPP_EXTERN_C String_t* _stringLiteralDDC3625A3D3A4B7A59AEEE40448DC3DEA5AA00F3;
IL2CPP_EXTERN_C String_t* _stringLiteralDDD498ED034BB375659C07A77BF48AC0FDC1E8F2;
IL2CPP_EXTERN_C String_t* _stringLiteralDEB6151726FE2B58FB330790F41216FEC24DB4CF;
IL2CPP_EXTERN_C String_t* _stringLiteralDF1F418CE84363901A6E59A9908750663EB1655F;
IL2CPP_EXTERN_C String_t* _stringLiteralDFEB75073613366ED790055534C407E4105DE290;
IL2CPP_EXTERN_C String_t* _stringLiteralDFEC282F361DA4A76166D7EACEAE3364F7F45245;
IL2CPP_EXTERN_C String_t* _stringLiteralE0E65D0FD281A20B81EE66FB465F7427E8240937;
IL2CPP_EXTERN_C String_t* _stringLiteralE18761C0FDAEFA215AB6DA404232AC5B2FE96ED6;
IL2CPP_EXTERN_C String_t* _stringLiteralE3037931DE899C4BCA58ECF059EF9BE27F54B681;
IL2CPP_EXTERN_C String_t* _stringLiteralE495989835F4A362653B821A47341B10BC22289A;
IL2CPP_EXTERN_C String_t* _stringLiteralE68FFE708FFE8FC1D5DA3BEDB8B81DE1CCC64C34;
IL2CPP_EXTERN_C String_t* _stringLiteralE75F4F4A9D67BC98BA7DB8DBE3C519516572DA4E;
IL2CPP_EXTERN_C String_t* _stringLiteralE8744A8B8BD390EB66CA0CAE2376C973E6904FFB;
IL2CPP_EXTERN_C String_t* _stringLiteralE895F499BC653C0CA36FB31C5936FC768CAD263E;
IL2CPP_EXTERN_C String_t* _stringLiteralE90B3FD05322B9BC016B260EB1335370FDAE2F8D;
IL2CPP_EXTERN_C String_t* _stringLiteralE9BC8412F7672BEDC75EB21FA08240175E04E871;
IL2CPP_EXTERN_C String_t* _stringLiteralEB674BD014DE249701E8368E6D52303EC395F35E;
IL2CPP_EXTERN_C String_t* _stringLiteralECFC3D8CBE5756160E6DCB9B79730BA17B0E2A2E;
IL2CPP_EXTERN_C String_t* _stringLiteralED7D39EDF70E08FE57B2522D102BF72B9E5D5331;
IL2CPP_EXTERN_C String_t* _stringLiteralEE77384131B17CE853EE959871A8222FC81E9CF5;
IL2CPP_EXTERN_C String_t* _stringLiteralEFAFC0F3350014B6B1231ED76ACDCFB3D8DEB4DE;
IL2CPP_EXTERN_C String_t* _stringLiteralF10CBFB1465C4A75BADE2EF50F42177A2191723B;
IL2CPP_EXTERN_C String_t* _stringLiteralF10FF70742CFD2A46129F918538797D92389E7A4;
IL2CPP_EXTERN_C String_t* _stringLiteralF13E4BFF086D4E511E68B0617B76ACC5BD5AFFE7;
IL2CPP_EXTERN_C String_t* _stringLiteralF15A890825336F78F675B56DD46CF013E4408900;
IL2CPP_EXTERN_C String_t* _stringLiteralF19577A61D4970B841F7DAAC46ECCBF1918B065B;
IL2CPP_EXTERN_C String_t* _stringLiteralF1E3744356EAC23657287E3F9EDA22262C5228C4;
IL2CPP_EXTERN_C String_t* _stringLiteralF31022DF0C52AA301767F7877FB21D3C42BE84CE;
IL2CPP_EXTERN_C String_t* _stringLiteralF3C6C902DBF80139640F6554F0C3392016A8ADF7;
IL2CPP_EXTERN_C String_t* _stringLiteralF527E78C10348E7A1F38B9B1781B8B75857692FD;
IL2CPP_EXTERN_C String_t* _stringLiteralF52C96F075DF3B9BEEED0041B01B18D3571ADA6A;
IL2CPP_EXTERN_C String_t* _stringLiteralF59CBCDB97B7386D817652C197B0F6C77423B16C;
IL2CPP_EXTERN_C String_t* _stringLiteralF5E1D066B4A00962BB3ACC2B4EDEF1DB99FE1E0A;
IL2CPP_EXTERN_C String_t* _stringLiteralF63581A94CE4CBEC88BF1CC47F97C9F6F68E56BA;
IL2CPP_EXTERN_C String_t* _stringLiteralF78DB34483D8EE55037A5BA57AC6FE14AA2E97AE;
IL2CPP_EXTERN_C String_t* _stringLiteralF7C654A6F7651FC5597CD86E2E325E8384CCF203;
IL2CPP_EXTERN_C String_t* _stringLiteralF8E09A19D03E8CD39A169CC1D0DABFB46DDE64F7;
IL2CPP_EXTERN_C String_t* _stringLiteralF8E65647F573BF4EE52C5737CABC015B3A57B37E;
IL2CPP_EXTERN_C String_t* _stringLiteralF95A691930F316715992F54F1FFE42EA0A08AB88;
IL2CPP_EXTERN_C String_t* _stringLiteralFA21AE346609B8F4B72E20E1720DE0FA22D72B0F;
IL2CPP_EXTERN_C String_t* _stringLiteralFA8996A8164B28D595752E84EFD1FCA1F9AC458D;
IL2CPP_EXTERN_C String_t* _stringLiteralFB62F81D49870FA4F12D3D5BB2A66FA6EF3EA9DD;
IL2CPP_EXTERN_C String_t* _stringLiteralFB6ED1555A593161156D21E9CAABA3A867A69023;
IL2CPP_EXTERN_C String_t* _stringLiteralFC0D95D2A79064B853A47BF840D6D134FC877F9F;
IL2CPP_EXTERN_C String_t* _stringLiteralFDB43E990DBA2349CEDE4E99EFD003A284CFC9EA;
IL2CPP_EXTERN_C String_t* _stringLiteralFED80DDFCB901E0011096F16C1480B6FA6C7591B;
IL2CPP_EXTERN_C String_t* _stringLiteralFFEC460DC61811C6FD0F0A356298DC095225A991;
IL2CPP_EXTERN_C const RuntimeMethod* Action_1_Invoke_m587509C88BB83721D7918D89DF07606BB752D744_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Action_1__ctor_mA671E933C9D3DAE4E3F71D34FDDA971739618158_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_Empty_TisString_t_m224DA90A7384ACF7EBE2F94D2DFDE2F310D1E77D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* BinaryWriter_Write_m4B2839CBDE7BB16CA8B9F65179C89B9F7C958283_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* BinaryWriter_Write_m7F6569BD88789D546B6872FCAE58A94089E2A6C1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* BinaryWriter_Write_m906F603DB5610D915425D87F98A0DA6D9AD8E9D1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* BinaryWriter_Write_mF8AD47E7575F50D6FF62BBF6CC345E561C306165_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* BinaryWriter__ctor_m5BDC3D7C4D4A1AC073BB0E75842EAD8DE225FAC8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* BitConverter_ToString_mD476DB63219FD7C7FFB472ABEB04A8BB2D171F30_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* BitConverter_ToString_mE20B739ACCBA32463B83D761E536DF965A63538D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Boolean_CompareTo_mC707B7449D158CBC44629E0127379DDE5AEC9F8B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Boolean_Parse_m97AFBD113AE4629041678100C5A595F3529C7F7D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Boolean_System_IConvertible_ToChar_mDDAD1B8CC0FFA74E6B61BB2FA2B46603B40BEE7D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Boolean_System_IConvertible_ToDateTime_m688708C8A8763452E59304B46B17B11DB890EB0F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Bootstring_Decode_mC77D3DC475C290D4B225EF0898551E71AA57B037_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Bootstring_Encode_mB7577C8F0BC7E4055A6118755D30B84D87151A7C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Buffer_BlockCopy_mD01FC13D87078586714AA235261A9E786C351725_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Buffer_ByteLength_m3E1127D2C9E1B9CD61A1A6109CC2A9B934595145_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ByteEqualityComparer_IndexOf_m67B48B1C0E24BEB3869B1192103161A6E3B14475_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Byte_CompareTo_m1414E6ED844263883C709284E6429F2EC069F80A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Byte_Parse_m297D79335F7F52332DC9DBD98717572BEEF2EF57_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Byte_System_IConvertible_ToDateTime_m6B4FC95C76E2ADF6C56983B7A80AC4E1FF60A272_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* CADMessageBase_GetSignature_mFB8E3BF0F46A201A285933187CDF859176B3ABE4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* CADMessageBase_UnmarshalArgument_m51C7B602E843310F532F75E00EE2EA75EF2B0EEE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* CADMethodRef_GetTypes_mF8A1196B363CD160B1D0A1F1AA8DF1CA3578FDA4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* CADMethodRef_Resolve_m08B2A1D9A1A5962F44D506E9AD67DE5AE7224427_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* CADSerializer_DeserializeMessage_m70DD2368B1037A7D1D46BD6B0CCFE0CFF1F3C767_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* CDSCollectionETWBCLProvider_ConcurrentDictionary_AcquiringAllLocks_m6D5F32C60870EBA61A6521B646C9E18EF54ED5E1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* CStreamReader_Read_mC736E73CC704DCBE3092724576321CAFB749B1B9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Calendar_ToFourDigitYear_m24F56E3C6245FA4317A17078D97AE59ADAF5C81B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* CancellationCallbackInfo_ExecutionContextCallback_mC38ACCB5287DE0BE9F2D08C1A42C89F73007C862_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* CancellationTokenSource_CancellationCallbackCoreWork_OnSyncContext_m0B8219A75EE0623356F2551BD8D8C990DEBA1465_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* CancellationTokenSource_ExecuteCallbackHandlers_m6E5B184DFC8D9705C23FE425748588C4930F3B3A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* CancellationTokenSource_LinkedTokenCancelDelegate_m734F7AC3FE79561862209F51B80266E40752E0A5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* CancellationTokenSource_NotifyCancellation_m20C2AD82704504311CFEE5E421925917E48663AC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* CancellationTokenSource_ThrowObjectDisposedException_mC6667F20FDC8ECD522C122BF4D18E50BD77D2E06_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* CancellationTokenSource_TimerCallbackLogic_m6121903E434EDF32A11CA6ED7D4D6CDE7DDE28D8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* CancellationToken_ActionToActionObjShunt_m8DF8861A46D0105C06889C16DB2489F1EAAF1B07_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* CancellationToken_Register_m44D79B3CC75D28193A9C7369AD81D7A93E9D791C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* CancellationToken_ThrowObjectDisposedException_m16484257FAD477378B1C6D7A83CEC7EDCA36AEA2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* CancellationToken_ThrowOperationCanceledException_mE5D2CC82A6787FCF7606FFCC434E65D6502B6FBD_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* CaseInsensitiveComparer__ctor_mD14E129C0E3097F0E076A4E04E87D5081C4E666B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* CaseInsensitiveHashCodeProvider_GetHashCode_mB1F6B6BAA53D16D77C1CD9180E1EF9994B3FA24A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* CaseInsensitiveHashCodeProvider__ctor_mA20A70E69A24912F9688675F259E538C46034D63_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ChannelServices_CreateProvider_mF1C0C24B14C8A7E8393A783A058BDABEBECB9745_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ChannelServices_RegisterChannelConfig_m3029FA89B6116B34F0496B276C948AB73522BBFD_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ChannelServices_RegisterChannel_m7C03F538173935C9B051D24D2ED89667BFCC3DBE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* CharEnumerator_System_Collections_IEnumerator_get_Current_mD136FC1D1A13D8EA87900A651E21BE1B08B100C7_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* CharEnumerator__ctor_mC88EF64AFC0D2C039B3265A76AC61A65BC3D2FED_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* CharEnumerator_get_Current_m6920EEF2A97509789BD9F4DB86F6DA86EB323A0B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* CharUnicodeInfo_GetUnicodeCategory_m27B7793950B7DE1E7446CDEE6DC2363FD83D785A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Char_CompareTo_mE7D17FE8150AD7502B0FD0BF075FD050E544B232_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Char_ConvertToUtf32_m6B16D001D0676268AE879C540A2834DD3AE2A7A1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Char_GetUnicodeCategory_mB8BD13766FB2401A713B056084ACA5C348340475_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Char_IsHighSurrogate_mA3731702417E3DD2B8CFCA16648849FEBC7F98FF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Char_IsLetterOrDigit_mD4066056FDE44A25DBC022E73FED10C34CF642D8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Char_IsSurrogate_mD2B48C9B28ADA8F0DF0869E21F6527FD1F048D5C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Char_IsWhiteSpace_m23E361BAE86A2B42BEEA0F8362E033BACFEDB3FC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Char_Parse_m47770850BCFCC5ABE9AA260294EB56BEF85531DE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Char_System_IConvertible_ToBoolean_m8131B0F7E5172597E2DDF2BBF99B1F7F6756527F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Char_System_IConvertible_ToDateTime_m4914992CA9F261994C101161C1AE023B94CCD744_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Char_System_IConvertible_ToDecimal_mAFFF4BCA3B972F1857572AB7A556014FDDFAE142_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Char_System_IConvertible_ToDouble_m4A38F71DD4D245195E4A8A9454698747FF839973_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Char_System_IConvertible_ToSingle_mBEEA918E0DDB880615B78AA7E68EFDA5628739B0_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Char_ToLower_m42C052EB06C3F461C8CEBAD492E102EB721FDECE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Char_ToUpper_m29916B8AB603D589D84653BEEA12C5B2A8337E27_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ClientContextReplySink_AsyncProcessMessage_mC187CEA2F76C41A5359971DB0FB66C413E73062C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* CompareInfo_Compare_m80B7BFB5C8FA4D134927913C3B4838894CD56542_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* CompareInfo_Compare_mF33ED9ED26EFB30E9609D1E9BF06157F16D4E77E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* CompareInfo_CreateSortKey_m6DA8DF9FFA44EC08E8E51A0F83C147D657E2801F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* CompareInfo_GetCompareInfo_mC9F7EFE808B590B2516F666583BB55ED81EA6A91_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* CompareInfo_GetHashCodeOfString_m12227E55AA29A314AA97AFE8F0DDBAF45B1018C9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* CompareInfo_IndexOf_m812CCDE396A13602AA3A78E4E96AA7CC3FEA2FE1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* CompareInfo_IsPrefix_mEF00D16D132729410D36C5F10579A1D088DD6DF6_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* CompareInfo_IsSuffix_m47F4E6558E4202AB5BB8CF8B3E052AC9AE936E63_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* CompareInfo_LastIndexOf_m86E9E54A32DE8AAE01D846DC70CD3CE15A0C40AC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* CompareInfo__ctor_mDC8150633A79525EA2289C3D9507BB59BB213B77_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Comparer_Compare_mBBF5C0BAD0C29DC7BE771AB2F0A2500D5E0E60A3_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Comparer_GetObjectData_m8C6BA6D811D4ED82270F29E5CE4042F30296422C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Comparer__ctor_mBDB3A226646ED4E31F7562C371841819469DC84F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* CompatibleComparer_Compare_m02BC425A9FFE8D446313C7AF3EF354C731ED9557_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* CompatibleComparer_GetHashCode_m6FBD741D0A3841A734EB702E29A3F1CD055A7C9B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ConfigHandler_GetNotNull_m1B24F15F946B226D2E332D7FC7804B26BB0679FD_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ConfigHandler_OnStartElement_mD990C69A12C3B62631602A027D29D87B79E2145D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ConfigHandler_ParseElement_m9CB7F4673562DF7819A027FD8C165E97C6374239_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ConfigHandler_ParseTime_mB0917D872E86349D10A033116199EC562E8BF29B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ConfigHandler_ReadChannel_m1E5CDC4CA57FF4D98107BA4D1E9E51EFA6E3388C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ConfigHandler_ReadClientActivated_m7E01DB8054D0AC50E5CCDA171D308CFCCC28505C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ConfigHandler_ReadInteropXml_mE9BF2298B774FFF464057429E9F8DB2F60EAF70B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ConfigHandler_ReadLifetine_mB98A6CDFAF17ED7442822D2AB6822C639EE37F6D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ConfigHandler_ReadPreload_m8F5CCE63EA93444CCB1CE9E0B66BCED3DDA4CCB6_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ConfigHandler_ReadProvider_m070DE5BF3F25AC2E34E61D6A67D13D6613F9A56B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ConfigHandler_ReadServiceWellKnown_mD38DAAD543F2F32003C78F2A1F7AD88DD7B42F58_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ConfigHandler_ValidatePath_m6650D44DB89EBA11558A1E7CF484F73410017B2B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_TryGetValue_m6ED0FA8BC514AC4E9A47B85C9BB3780C621B6A09_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_mD439B314849963C9E927D448D7D7843F2618D824_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_set_Item_mFCCACB1295F7C78EECE213B398675057231256A2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EqualityComparer_1__ctor_m9E058C5D324E26AC7D53998B987EA6ED826103CA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m11BADA3EECE6909E4F094E70A7EC1FED692E1892_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_mE5B3CBB3A625606D9BC4337FEAAF1D66BCB6F96E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_ToArray_mA737986DE6389E9DD8FA8E3D4E222DE4DA34958D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m0F0E00088CF56FEACC9E32D8B7D91B93D91DAA3B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m35CA066810D9B3641F72BBF74383AAA4CF7EC3DE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* SparselyPopulatedArrayAddInfo_1_get_Index_mB5BBB1060D57990F7441F44FDFFA982A07992177_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* SparselyPopulatedArrayAddInfo_1_get_Source_mEEDA9C531532DA8150BD428185A3A1EB9EB492E6_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* SparselyPopulatedArrayFragment_1_SafeAtomicRemove_m3437B32D4F3791CD88594253B6B9FDED9BAF053D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* SparselyPopulatedArrayFragment_1_get_Item_mF46D1EABA9E4CD31BF19C89ADB562D4470A95330_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* SparselyPopulatedArrayFragment_1_get_Length_m9FED821013845290BD7D80EA322F79C7EBD9B4ED_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* SparselyPopulatedArrayFragment_1_get_Prev_m42ED5979D69ED7B9F7F13903C9AEB064DD014F27_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* SparselyPopulatedArray_1_Add_m03AC48E0BC65266B22D95F393919F1C0FC1AC267_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* SparselyPopulatedArray_1__ctor_m0542398F4469E233FFE39F752ACCDA61CFF0713C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* SparselyPopulatedArray_1_get_Tail_m7749F3933E39089960D3DB149DEBA7E701978651_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Type_GetType_m2D692327E10692E11116805CC604CD47F144A9E4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Type_GetType_mCF53A469C313ACD667D1B7817F6794A62CE31700_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeType* CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* IChannelReceiver_tAB4C6F19EF8F5D5641CB3C4BE305C97819D9B92B_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* IChannelSender_tC9474F74732657C8839C64D56543D40F9C9A3724_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* IClientChannelSinkProvider_tB3CC676B6211DA8F57838434B0443C12B25FC422_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* IServerChannelSinkProvider_t24A95E44364690525F5E4CD5ADEB549D8E1EB429_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5_0_0_0_var;
IL2CPP_EXTERN_C const uint32_t BinaryWriter_Write_m4B2839CBDE7BB16CA8B9F65179C89B9F7C958283_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t BinaryWriter_Write_m7F6569BD88789D546B6872FCAE58A94089E2A6C1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t BinaryWriter_Write_m906F603DB5610D915425D87F98A0DA6D9AD8E9D1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t BinaryWriter_Write_mF8AD47E7575F50D6FF62BBF6CC345E561C306165_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t BinaryWriter__cctor_m09AA37C9711B78668A0D3A1811AE94B3673BBCCA_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t BinaryWriter__ctor_m4C679C96D984329B90F962B81BC557D09DCDE8C5_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t BinaryWriter__ctor_m5BDC3D7C4D4A1AC073BB0E75842EAD8DE225FAC8_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t BitConverterLE_GetUIntBytes_mB263FB37527737393A67D9B5679D33EA28232F77_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t BitConverterLE_GetULongBytes_m9B99F60A322A538DED6831250485076B068FBB3F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t BitConverterLE_UIntFromBytes_mD54557321A7C885F5DC739D16D05BD208C882835_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t BitConverterLE_ULongFromBytes_m805CA0D87EC1E72E505EF312340D520115E03E9F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t BitConverter_GetBytes_m4178DFE7B47F12FAF452AA4742B16FC3BA9618A8_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t BitConverter_GetBytes_m5C926FE938C878F7E4E95A5DED46C34DB1431D39_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t BitConverter_ToInt16_mD217955ED0C3E56F79DECE745A38857E4A8F6C8E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t BitConverter_ToInt32_m09562D0C66673FA4883600754E82F22CAFED8892_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t BitConverter_ToInt64_m6B5A5B4C68D036256417E9348FA25A257015B37E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t BitConverter_ToString_mD476DB63219FD7C7FFB472ABEB04A8BB2D171F30_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t BitConverter_ToString_mE20B739ACCBA32463B83D761E536DF965A63538D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t BitConverter_ToUInt16_mC0BC841737707601466D79AD3E1EDEEA8F107525_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t BitConverter_ToUInt32_m0C9F3D9840110CC82D4C18FD882AC5C7EA595366_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t BitConverter_ToUInt64_m31CEAF20A0774C6BB55663CD8A06EBCD4C1F79BC_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t BitConverter__cctor_m061BF2E95EB2EB81F7B98173886DBC0C690634F7_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Boolean_CompareTo_mC707B7449D158CBC44629E0127379DDE5AEC9F8B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Boolean_Equals_mA2FC01AF136159906F30A85C950097BE67C824B8_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Boolean_Parse_m97AFBD113AE4629041678100C5A595F3529C7F7D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Boolean_System_IConvertible_ToByte_mB7A1A4E6188A7A7FB89D4EFB148F1E072CE7F847_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Boolean_System_IConvertible_ToChar_mDDAD1B8CC0FFA74E6B61BB2FA2B46603B40BEE7D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Boolean_System_IConvertible_ToDateTime_m688708C8A8763452E59304B46B17B11DB890EB0F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Boolean_System_IConvertible_ToDecimal_m8B92ED67C5506D85919E851FE00081BDF9AFF5B9_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Boolean_System_IConvertible_ToDouble_m8B086B2929A6009B43536C10870CEBA742692DDF_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Boolean_System_IConvertible_ToInt16_mB5EE0D6EFAEBD04029452AF72D64DEC8941F3998_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Boolean_System_IConvertible_ToInt32_m3B5AB9AC8DBE1DE73D26A3F3A271A557E93E4238_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Boolean_System_IConvertible_ToInt64_mD3F07E40FFAAA9A418FBB4B5B30D8830DEA895C0_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Boolean_System_IConvertible_ToSByte_m0D219BD8488041CD67BC520A9B9565BC0EEE996A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Boolean_System_IConvertible_ToSingle_mA1C9849DA7D8F1C1D2CAFBF734408736DB2F5B47_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Boolean_System_IConvertible_ToType_m4EFEE2404DA10542ECC1DFEFCED61F0625012017_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Boolean_System_IConvertible_ToUInt16_m0223D3C77451F88509880E7EEF89B7B25B12491F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Boolean_System_IConvertible_ToUInt32_mE15AF9B02F6CC44A449722CCE44D36F6D94BEC64_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Boolean_System_IConvertible_ToUInt64_m61E7A3015BF2A1022FFDBE84DBFC1D1C326D7FBF_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Boolean_ToString_m59BB8456DD05A874BBD756E57EA8AD983287015C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Boolean_ToString_m6AF340BBFF7B2ABB5987CE80AE6335EE96BC71E9_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Boolean_TrimWhiteSpaceAndNull_m1AA39FDE34A7E62968210EB57ED3996531C5A6A7_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Boolean_TryParse_m083F8EB6F0A07B24C26310648CB2380C3D3AAEE7_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Boolean__cctor_m782F44A64FC24343CCF5946AF04D330F6A5CDB2E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Bootstring_Decode_mC77D3DC475C290D4B225EF0898551E71AA57B037_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Bootstring_Encode_mB7577C8F0BC7E4055A6118755D30B84D87151A7C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Buffer_BlockCopy_mD01FC13D87078586714AA235261A9E786C351725_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Buffer_ByteLength_m3E1127D2C9E1B9CD61A1A6109CC2A9B934595145_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ByteEqualityComparer_Equals_m4F2100719B25AF04C27EC8C313A5440B09ECCE8C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ByteEqualityComparer_IndexOf_m67B48B1C0E24BEB3869B1192103161A6E3B14475_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ByteEqualityComparer__ctor_mA8216A42E761A507D3B017FB7C2C939FACD21DE8_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ByteMatcher_AddMapping_m72BCCDBE2E1473253FF0E2A77A3A9584448E3899_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ByteMatcher_Match_m73533801AD0EA6452604CB13FD048E3C52AD8C5D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ByteMatcher_StartsWith_m3FD18279359D5E475EA2028AA6A38B1F8B4986C2_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ByteMatcher__ctor_m75A6660FF59B6009D9A64072CB3AD8D4A3170124_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Byte_CompareTo_m1414E6ED844263883C709284E6429F2EC069F80A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Byte_Equals_m72418F27E0B518A3ACD4FECB57D72DF94050E3E3_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Byte_Parse_m297D79335F7F52332DC9DBD98717572BEEF2EF57_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Byte_System_IConvertible_ToBoolean_m65AF04FD574177D1C994B8C21F1FA98415D9F86E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Byte_System_IConvertible_ToChar_m680D41A50B3622DC4AE8F2BC632B721DF8536B28_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Byte_System_IConvertible_ToDateTime_m6B4FC95C76E2ADF6C56983B7A80AC4E1FF60A272_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Byte_System_IConvertible_ToDecimal_m765A4B2CA3E36C5F601BDD1E3A7917833E5A129E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Byte_System_IConvertible_ToDouble_mAF1EAA014190ACF0A646AEE270FC1BFAF28F20A7_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Byte_System_IConvertible_ToInt16_m134A951FF6D7DA4EECC86CB702A8B4DB2ADADDC8_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Byte_System_IConvertible_ToInt32_m56A786C5BB3125C5C8ADAA2C40F28421959FBEB0_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Byte_System_IConvertible_ToInt64_m79BB20D0471F008EEFA00F72C560EF92BE8AB6BF_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Byte_System_IConvertible_ToSByte_m4A779331F7CD6055768AA56D4E95A8E41CFA50CB_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Byte_System_IConvertible_ToSingle_m5C04949AD8A80B18C9FF7895CB6DD9BD4ABF07CB_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Byte_System_IConvertible_ToType_mFADA0D226622C4FFF53B4D3AED98D6424AB17512_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Byte_System_IConvertible_ToUInt16_mCE446BE1A404904AEFD1DAB2706A4AF355186299_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Byte_System_IConvertible_ToUInt32_m2D1C50FE2959C26DA3FA56BE5D91778B06F172C0_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Byte_System_IConvertible_ToUInt64_mD29B4938670EA99ADE6DCA11ADA0E57EA9D5CEC7_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CADMessageBase_GetLogicalCallContext_m96E42D0B1810E9C20918D6F1BD279DD06F58AA96_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CADMessageBase_GetMethod_mFC803AAB2D1BB231A44C1BDDFDB8E1FDBB221D81_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CADMessageBase_GetSignature_mFB8E3BF0F46A201A285933187CDF859176B3ABE4_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CADMessageBase_IsPossibleToIgnoreMarshal_mC2BD0ADF8B42412F3DD53E6E160C70E46EE94753_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CADMessageBase_MarshalArgument_mA736DAF24AD049845F6C26A423A7D27E96E0C76A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CADMessageBase_MarshalArguments_m6C8DC3BDDDABA29BD29C5BD8E77B3392AFAE8B61_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CADMessageBase_MarshalProperties_m2BCADE033725E722DCAAD23EFEEB49009465DA71_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CADMessageBase_SaveLogicalCallContext_m51A5FFCA892096B57F8250CB578B6F3CF780325B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CADMessageBase_UnmarshalArgument_m51C7B602E843310F532F75E00EE2EA75EF2B0EEE_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CADMessageBase_UnmarshalArguments_mB203B887D7331D5213A510DF0F25EB7FFF683464_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CADMessageBase_UnmarshalProperties_mCD869335EC1E9F1E6A0E8E19437DD3C609D67BCA_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CADMessageBase__ctor_m71F0E8FFDF6EB2572A4C2382FDE2646D6E2C793D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CADMethodCallMessage_Create_m512596F3080E32E85E497F8FAAB9EA75DE03D6B4_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CADMethodCallMessage_GetArguments_m8874407AB2CAE40E76E69E89F2CD849D14B2FCEB_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CADMethodCallMessage__ctor_m811D56C92BEAFBAB0FD2033FB74037F7CFF3B6BE_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CADMethodRef_GetTypes_mF8A1196B363CD160B1D0A1F1AA8DF1CA3578FDA4_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CADMethodRef_Resolve_m08B2A1D9A1A5962F44D506E9AD67DE5AE7224427_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CADMethodRef__ctor_m2D3C6DF9E27DDA1BECEA81507C84F88115F63031_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CADMethodReturnMessage_Create_mB27472465DD92468163751EEA8773399E5D5F09D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CADMethodReturnMessage_GetArguments_m29A72306751D84662543B4D22531AE085FB92A17_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CADMethodReturnMessage_GetException_m3466192E903E522737C0C8376319120B8802A2DD_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CADMethodReturnMessage__ctor_m7BE55A80B393E42A3B6E9C35D84BD924CAE52B87_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CADSerializer_DeserializeMessage_m70DD2368B1037A7D1D46BD6B0CCFE0CFF1F3C767_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CADSerializer_DeserializeObjectSafe_m6F6060CB4855A2B7A9DD8067DD592F520529E499_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CADSerializer_DeserializeObject_mE789D2C1B31F27E5232031ED028CDF20088DFABB_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CADSerializer_SerializeMessage_mB35012D0664D40CC33DBC06FAF0A6E4056D2DC8D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CADSerializer_SerializeObject_mBA7285ACB82A1106EBBE97C1BE670C810496BF97_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CDSCollectionETWBCLProvider_ConcurrentDictionary_AcquiringAllLocks_m6D5F32C60870EBA61A6521B646C9E18EF54ED5E1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CDSCollectionETWBCLProvider__cctor_mF905251220171424CF71F236012919A04B266123_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CDSCollectionETWBCLProvider__ctor_m00C916EEA7551A2BE50DC295437B304826F27F17_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t COMException_ToString_m0C0458B5B5887E3FFEF3A479A07AADB3F200D927_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t COMException__ctor_m0A59E30D378EDDC2FA0AED1B0D35563679909A17_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CStreamReader_Peek_m679FBE34E8483BE7007CB9D9CB224E644BBD32E6_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CStreamReader_ReadLine_mB8117FBB2E2E47FAE94DEB11BB52015BFB68C5E6_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CStreamReader_ReadToEnd_m8F890BF2E1F860621CD597CB29831219FEC4717B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CStreamReader_Read_m9491BF9EDF4372F94F74D946392994488B9B257F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CStreamReader_Read_mC736E73CC704DCBE3092724576321CAFB749B1B9_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CStreamReader__ctor_m80BA3B2430FAF4BED3D63F368E07D81D2926628F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CStreamWriter_InternalWriteChar_mCE65984A39D3EB1848DA0E80116620494773A697_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CStreamWriter_InternalWriteChars_m64775CD216B4A0F1BE0ECD0A9B92EA9E6198AB9D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CStreamWriter_InternalWriteString_m9AF77B6AD303A0432032DEB1C8528DE2BD2047BB_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CStreamWriter_Write_m15BBC60012B2F244AF332FBC75D85058A2705B3E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CStreamWriter_Write_m7E856E03F11E46545D1C4749CCC870F6170904F5_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CStreamWriter_Write_mA9151D44EE757AA7C0C25FA3AD596CD40F4D01A5_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CStreamWriter__ctor_mDEC4D7D0987E42004657A6F4F91124135420266F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CalendarData_CalendarIdToCultureName_mD748CB6E9AEA2E8F6EAB566CCD474F409C9B5CC4_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CalendarData_GetCalendarData_mDDDDDD6CFF169145E762928778E65C8335CB4FE0_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CalendarData_InitializeAbbreviatedEraNames_m6B79BD851F7313E96F487F2C5AAFB0EF88E98EA7_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CalendarData_InitializeEraNames_m2DFE9DF5291C6F5B046741E52092E622B00784FC_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CalendarData__cctor_m81D9318AD06EF2E6286594DD1BE2A72D07D5D8BA_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CalendarData__ctor_m305E27F818FF3CA1939158C37AEA5E944C9D5577_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Calendar_Clone_mDA3317FBF3D8700B67BDF835A4B689F0C8ABF369_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Calendar_GetSystemTwoDigitYearSetting_mF12E6A472DAC24009E72B4B95CF451F80CCB1CD8_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Calendar_ToFourDigitYear_m24F56E3C6245FA4317A17078D97AE59ADAF5C81B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Calendar_TryToDateTime_mD5D93B2A3CEBDB848BD9D90506A98C01AF287B64_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Calendar_get_CurrentEraValue_mC42FEA7E9355FC8A4012CC00D73B1B6CE6B3035F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Calendar_get_MaxSupportedDateTime_m6B31DC95AFD6710D9BEB8627CB945428A5AC6223_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Calendar_get_MinSupportedDateTime_m172A52CAF1525424F3515178E1C92037F09D7762_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CallContextRemotingData_Clone_m52982AAA08A83E9C9ECAA30CF0BC3D129F60FF8A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CallContextSecurityData_Clone_m38FD55B8E084E77C08C0512A41FB953580311FB7_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CancellationCallbackInfo_ExecuteCallback_m7042487D5FCE84590D95167D0B84910D02DBDF81_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CancellationCallbackInfo_ExecutionContextCallback_mC38ACCB5287DE0BE9F2D08C1A42C89F73007C862_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CancellationTokenRegistration_Equals_m596856287836431D530AE23A73053BD2A089E126_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CancellationTokenRegistration_Equals_mBB4613C10EE146E0FBE7578A85CBC40A4205C3C2_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CancellationTokenRegistration_GetHashCode_m8E90FC8DC515F4F690D840BC9A1830C8287DD9B6_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CancellationTokenRegistration_TryDeregister_m07D7CD3452E63F1E9304D6CB26E4E1A8E347241D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CancellationTokenSource_CancellationCallbackCoreWork_OnSyncContext_m0B8219A75EE0623356F2551BD8D8C990DEBA1465_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CancellationTokenSource_CancellationCallbackCoreWork_mB9D81B1EC9C03428670954135B73B2BE14E02260_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CancellationTokenSource_CreateLinkedTokenSource_mBCC8769107D706E358D18C97520172AD8CE79480_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CancellationTokenSource_Dispose_m7040D247EFB6C234491C6450AAFFCA879E3ED070_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CancellationTokenSource_ExecuteCallbackHandlers_m6E5B184DFC8D9705C23FE425748588C4930F3B3A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CancellationTokenSource_InternalGetStaticSource_m687D6ABA75BAC174574BC37E67CEC352DAB5834A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CancellationTokenSource_InternalRegister_m267B0001480B4E72BD49B668135B8E988B86AD71_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CancellationTokenSource_LinkedTokenCancelDelegate_m734F7AC3FE79561862209F51B80266E40752E0A5_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CancellationTokenSource_NotifyCancellation_m20C2AD82704504311CFEE5E421925917E48663AC_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CancellationTokenSource_ThrowIfDisposed_m8DC7CEE4A830A6A52C568F66A416549C817CFD43_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CancellationTokenSource_ThrowObjectDisposedException_mC6667F20FDC8ECD522C122BF4D18E50BD77D2E06_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CancellationTokenSource_TimerCallbackLogic_m6121903E434EDF32A11CA6ED7D4D6CDE7DDE28D8_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CancellationTokenSource__cctor_m074DD94C233CE72B6F7455591D509B588BD28867_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CancellationToken_ActionToActionObjShunt_m8DF8861A46D0105C06889C16DB2489F1EAAF1B07_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CancellationToken_Equals_m8485C6EC16CB28ECDC780F96911E612CE0698025_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CancellationToken_Equals_mF69DB5B6FC599F06A035F27A4F057D7650592A19_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CancellationToken_GetHashCode_m06AA635E3F74B3743001F0609F5AC187E52E32DB_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CancellationToken_Register_m44D79B3CC75D28193A9C7369AD81D7A93E9D791C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CancellationToken_ThrowIfSourceDisposed_mE5B50ED7B6461AD467CE75BC31F587BE0EE139CF_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CancellationToken_ThrowObjectDisposedException_m16484257FAD477378B1C6D7A83CEC7EDCA36AEA2_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CancellationToken_ThrowOperationCanceledException_mE5D2CC82A6787FCF7606FFCC434E65D6502B6FBD_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CancellationToken__cctor_m8AD3131687AFE9EE954A86FE8B735280148425F5_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CannotUnloadAppDomainException__ctor_mAA7C49AE60E95186278F0FEE279E9CDB77DB861D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CaseInsensitiveComparer_Compare_m40C8E8BED8C4C81D531B8444072D330D92024148_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CaseInsensitiveComparer__ctor_m305B7AD77730615623A49F8CB3AB72AC73840946_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CaseInsensitiveComparer__ctor_mD14E129C0E3097F0E076A4E04E87D5081C4E666B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CaseInsensitiveComparer_get_Default_m4E8D43C4B6B445886A74BE979059E383A367A5A1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CaseInsensitiveHashCodeProvider_GetHashCode_mB1F6B6BAA53D16D77C1CD9180E1EF9994B3FA24A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CaseInsensitiveHashCodeProvider__ctor_m4C2502D5DFE2F58D5BAF2699B820CD07C4F697E0_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CaseInsensitiveHashCodeProvider__ctor_mA20A70E69A24912F9688675F259E538C46034D63_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CaseInsensitiveHashCodeProvider_get_Default_m112A7BC3EA46411ADB8D603F9D7521C5C745B9DF_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ChannelData_CopyFrom_m5519012E1A440EE63EF5CEC24BDF2E319CF26BE4_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ChannelData__ctor_mC02825366B59C459F8BED049B0FB88907ACF9FA8_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ChannelData_get_ClientProviders_m79FC4B0BD88C0ECDCC35189CBA5CB8859959ED0E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ChannelData_get_CustomProperties_mA74E570017A4CBA845C655F6D5C4FB6836897969_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ChannelData_get_ServerProviders_mC580FA7210BF153873E24FF2DBF8CADC43CEFC62_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ChannelInfo__ctor_m748539D1DBE9CED98AD8FD4CC51DBC2B8A223A3F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ChannelInfo__ctor_mE225F30C0E924A3D793A3463CABC37A8EEDB2D32_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ChannelServices_CheckIncomingMessage_m87435941FE738589D9657BE5E0E3BC8818B4BD3D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ChannelServices_CheckReturnMessage_mDF8F2D0FBEB48912A8710A5019789D3DF6033634_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ChannelServices_CreateClientChannelSinkChain_m0844D4CED48ABDB9E407CA4B0453424BFFD5BE93_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ChannelServices_CreateClientChannelSinkChain_m305C00852F9C9407E9E3D7AA5DDE78DB2ED5EA6F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ChannelServices_CreateProvider_mF1C0C24B14C8A7E8393A783A058BDABEBECB9745_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ChannelServices_GetCurrentChannelInfo_m0EA3A6166C70679FE9953FCBB9DF1334A7C01FD0_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ChannelServices_RegisterChannelConfig_m3029FA89B6116B34F0496B276C948AB73522BBFD_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ChannelServices_RegisterChannel_m7C03F538173935C9B051D24D2ED89667BFCC3DBE_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ChannelServices_RegisterChannel_m93E43A37CE8627ECCE5D5BCB2422A1441A55B22B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ChannelServices_SyncDispatchMessage_mD86045EA59ADDD9A58DA5B75163D5F4070062426_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ChannelServices__cctor_m5C42CEDBD5444C1D3B49265DAA5CE9CBFDCCBC93_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ChannelServices_get_CrossContextChannel_m6E66AD17E15A70CF626174FE2C75B481A268882B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CharEnumerator_System_Collections_IEnumerator_get_Current_mD136FC1D1A13D8EA87900A651E21BE1B08B100C7_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CharEnumerator__ctor_mC88EF64AFC0D2C039B3265A76AC61A65BC3D2FED_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CharEnumerator_get_Current_m6920EEF2A97509789BD9F4DB86F6DA86EB323A0B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CharUnicodeInfo_GetUnicodeCategory_m27B7793950B7DE1E7446CDEE6DC2363FD83D785A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CharUnicodeInfo_GetUnicodeCategory_mD49545DFE510D28FA0B7EB74845DD55F19FF0E21_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CharUnicodeInfo_InternalConvertToUtf32_m7477C6B8C5CE731915B3D1BECB1742C044B31143_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CharUnicodeInfo_InternalGetCategoryValue_mA208E95EB17E126853D652FABFA61BB95E021168_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CharUnicodeInfo_InternalGetUnicodeCategory_mA3B1409970AA5AE0E4ACAADF86DC0EE15BFD2D9B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CharUnicodeInfo_InternalGetUnicodeCategory_mFD62434F9ABFE74E9ADA8CE15EADAF9AC6F16E3C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CharUnicodeInfo_IsWhiteSpace_m55B2F2B2342B7374964ACE40FBC5CD19D90C1A3A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CharUnicodeInfo_IsWhiteSpace_mFAE454BD5297E59D1B5B6276F3B1F592A4485F67_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CharUnicodeInfo__cctor_mF011A4AE76DF23552484E2ACD537B16BC499555F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Char_CompareTo_mE7D17FE8150AD7502B0FD0BF075FD050E544B232_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Char_ConvertToUtf32_m6B16D001D0676268AE879C540A2834DD3AE2A7A1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Char_Equals_mEF0A8A611838D99B799EC01C6EB6A8BE7F8087F8_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Char_GetLatin1UnicodeCategory_m3E7F31DAC8AEEDF458F429D991D3B022CD1526D4_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Char_GetUnicodeCategory_mB8BD13766FB2401A713B056084ACA5C348340475_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Char_GetUnicodeCategory_mB8DCE545E28F2858B0E8AD91393B9FD048F80BC1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Char_IsDigit_mC19135099993954C820E030363B943034575F504_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Char_IsHighSurrogate_mA3731702417E3DD2B8CFCA16648849FEBC7F98FF_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Char_IsLetterOrDigit_m1C9B58CBEB1A3909369234582FA308E3C85F34D6_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Char_IsLetterOrDigit_mD4066056FDE44A25DBC022E73FED10C34CF642D8_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Char_IsLetter_mF204E476D37A9EC10C965929AF16A362CBEA8950_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Char_IsNumber_m1575CB90219C78EABADD70B3E53D53522CB0BB9D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Char_IsSurrogate_mD2B48C9B28ADA8F0DF0869E21F6527FD1F048D5C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Char_IsWhiteSpace_m23E361BAE86A2B42BEEA0F8362E033BACFEDB3FC_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Char_IsWhiteSpace_m99A5E1BE1EB9F17EA530A67A607DA8C260BCBF99_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Char_Parse_m47770850BCFCC5ABE9AA260294EB56BEF85531DE_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Char_System_IConvertible_ToBoolean_m8131B0F7E5172597E2DDF2BBF99B1F7F6756527F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Char_System_IConvertible_ToByte_m98DB98CD2C1B5B12D5F578CBC74C08BE66139D30_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Char_System_IConvertible_ToDateTime_m4914992CA9F261994C101161C1AE023B94CCD744_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Char_System_IConvertible_ToDecimal_mAFFF4BCA3B972F1857572AB7A556014FDDFAE142_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Char_System_IConvertible_ToDouble_m4A38F71DD4D245195E4A8A9454698747FF839973_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Char_System_IConvertible_ToInt16_mA007C3EFCD8EF6CB2EEB60DC09650473120F944A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Char_System_IConvertible_ToInt32_mFBC76E62BEBFE0E8E72583C6065DE465DE068B54_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Char_System_IConvertible_ToInt64_mFA3A5CB789A1A727A69EC653A680B74FB54298F0_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Char_System_IConvertible_ToSByte_mA03BCFDBB057C48B0C7F8D290B8F32B413D6BFDF_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Char_System_IConvertible_ToSingle_mBEEA918E0DDB880615B78AA7E68EFDA5628739B0_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Char_System_IConvertible_ToType_mAAAA2971F85C8C4AFF3CE57C77D5F1924FE079D5_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Char_System_IConvertible_ToUInt16_m93424CACB856513E093FE4A38904940118EA370E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Char_System_IConvertible_ToUInt32_mBFC199578C9339A68C5832FFA7E1D75EE8DC0757_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Char_System_IConvertible_ToUInt64_m490ACA7483A9781ED948CDBBDAE36EB29B731BF3_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Char_ToLowerInvariant_mA5541ADE6FA5082D0877F64FAA44F3C7C518866C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Char_ToLower_m42C052EB06C3F461C8CEBAD492E102EB721FDECE_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Char_ToString_m06BE905F629AFE67313D613EC0ABFA8572CAEFC2_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Char_ToString_mE0DE433463C56FD30A4F0A50539553B17147C2F8_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Char_ToUpperInvariant_mC633E91835362149763FD5541D09574AF05D541D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Char_ToUpper_m29916B8AB603D589D84653BEEA12C5B2A8337E27_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Char__cctor_m96787A782FB2C8AD7E7488DE2D3DB5DF3133006C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ClientActivatedIdentity_AsyncObjectProcessMessage_mE31B5FBC1CDC210AA8F372E850807ED668C94821_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ClientActivatedIdentity_OnLifetimeExpired_m3A7F53137B81EC0A9650DAAED0DB579D1D937793_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ClientActivatedIdentity_SyncObjectProcessMessage_mAB5CB9E8105B7FD16701FB44D6B53AF79B0836F3_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ClientContextReplySink_AsyncProcessMessage_mC187CEA2F76C41A5359971DB0FB66C413E73062C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ClientContextReplySink_SyncProcessMessage_m34389DE38E948FEB75A1A7C64D2E6F0DA3812D62_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ClientContextTerminatorSink_AsyncProcessMessage_m3ABE244DE8754ECA63629C99C47EA9206180E71A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ClientContextTerminatorSink_SyncProcessMessage_m0F96D657861BB99F2CF942649BA209578EF41A59_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ClientIdentity__ctor_m177DDBCE6F68BBDA464B671BB84F0F9EE6373AE6_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ClientIdentity_get_ClientProxy_mF9FD38F47C7BDC3020712AC6DCA6AABDCE3B2C75_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ClientIdentity_set_ClientProxy_m309F0279F70335C8F9904503C1A0ADB5B4E21826_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CodePageDataItem__cctor_m68D774B6999C1A023C5CE53C468FA61FA4E9C937_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CodePageDataItem__ctor_m8A1832B270F2CF8A48231E91AB35135704554F47_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CodePointIndexer__ctor_m48F5D89B02D13A9ADBDD6E924E0FC47FC7544E39_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CompareInfo_Compare_m80B7BFB5C8FA4D134927913C3B4838894CD56542_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CompareInfo_Compare_mF33ED9ED26EFB30E9609D1E9BF06157F16D4E77E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CompareInfo_CreateSortKeyCore_m4219346C4396B3F24C697CBF7B352B05C6543440_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CompareInfo_CreateSortKey_m6DA8DF9FFA44EC08E8E51A0F83C147D657E2801F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CompareInfo_Equals_m7245B7EF15D9021AA4D9F572E430BF75C479FDD5_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CompareInfo_GetCollator_mEB0C36DF59D8E9FD513E35D7587A3B9EF49337D7_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CompareInfo_GetCompareInfo_mC9F7EFE808B590B2516F666583BB55ED81EA6A91_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CompareInfo_GetHashCodeOfString_m12227E55AA29A314AA97AFE8F0DDBAF45B1018C9_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CompareInfo_IndexOf_m812CCDE396A13602AA3A78E4E96AA7CC3FEA2FE1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CompareInfo_IsPrefix_mEF00D16D132729410D36C5F10579A1D088DD6DF6_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CompareInfo_IsSuffix_m47F4E6558E4202AB5BB8CF8B3E052AC9AE936E63_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CompareInfo_LastIndexOf_m86E9E54A32DE8AAE01D846DC70CD3CE15A0C40AC_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CompareInfo_OnDeserialized_m2A4271526A5A90EE87689F66A7A5EB6F58D24FF7_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CompareInfo_OnSerializing_m13621EB8EBA0B199808F941C381EFBFBAFDE70BD_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CompareInfo_ToString_m71EE5EA9795A130517F15293521DF9225EA3A9E0_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CompareInfo__ctor_mDC8150633A79525EA2289C3D9507BB59BB213B77_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CompareInfo_get_Name_m5672E0F4F33E71DE0DDD443642C8D7F0DF2CE94D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CompareInfo_get_UseManagedCollation_m62E6F0EFBDE261B0AB5BDF80E8151E7BD6301F43_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Comparer_Compare_mBBF5C0BAD0C29DC7BE771AB2F0A2500D5E0E60A3_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Comparer_GetObjectData_m8C6BA6D811D4ED82270F29E5CE4042F30296422C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Comparer__cctor_m955DC4953B3E78CEF493352F0972756B2877C234_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Comparer__ctor_m554EB0F6DA3BEA9A2E2B611C297422E58DC92373_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Comparer__ctor_mBDB3A226646ED4E31F7562C371841819469DC84F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CompatibleComparer_Compare_m02BC425A9FFE8D446313C7AF3EF354C731ED9557_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CompatibleComparer_GetHashCode_m6FBD741D0A3841A734EB702E29A3F1CD055A7C9B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CompletionActionInvoker_ExecuteWorkItem_m82C2758C0567183BDE6B96DA23B304AE195E892C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ConfigHandler_CheckPath_m26CB4796D1C97445AAB5BEF3087FCC89FAA562B5_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ConfigHandler_ExtractAssembly_m5B0964FBCAE8F98AAEBB9C55EAD26376F96ADC6D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ConfigHandler_GetNotNull_m1B24F15F946B226D2E332D7FC7804B26BB0679FD_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ConfigHandler_OnEndParsing_m9DB00EBD06893F6262D1BF0574E1D00A696021FE_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ConfigHandler_OnStartElement_mD990C69A12C3B62631602A027D29D87B79E2145D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ConfigHandler_ParseElement_m9CB7F4673562DF7819A027FD8C165E97C6374239_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ConfigHandler_ParseTime_mB0917D872E86349D10A033116199EC562E8BF29B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ConfigHandler_ReadChannel_m1E5CDC4CA57FF4D98107BA4D1E9E51EFA6E3388C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ConfigHandler_ReadClientActivated_m7E01DB8054D0AC50E5CCDA171D308CFCCC28505C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ConfigHandler_ReadClientWellKnown_mA47AACA9CAA00719E17808737E0A70AF690D27E5_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ConfigHandler_ReadCustomProviderData_mD9651F007012FAD7376788F85744323687DA5063_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ConfigHandler_ReadInteropXml_mE9BF2298B774FFF464057429E9F8DB2F60EAF70B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ConfigHandler_ReadLifetine_mB98A6CDFAF17ED7442822D2AB6822C639EE37F6D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ConfigHandler_ReadPreload_m8F5CCE63EA93444CCB1CE9E0B66BCED3DDA4CCB6_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ConfigHandler_ReadProvider_m070DE5BF3F25AC2E34E61D6A67D13D6613F9A56B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ConfigHandler_ReadServiceActivated_m630525ABAD89F4259F9EB1A734ABBF6C53D1B9DB_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ConfigHandler_ReadServiceWellKnown_mD38DAAD543F2F32003C78F2A1F7AD88DD7B42F58_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ConfigHandler_ValidatePath_m6650D44DB89EBA11558A1E7CF484F73410017B2B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ConfigHandler__ctor_m4BE20CA998DDE1A53E994A4B597161A0619B8568_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t LifetimeServices_set_LeaseTime_m2480120F8B8F89009F6C4B9FA07642C85F0D0363mscorlib1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t LifetimeServices_set_RenewOnCallTime_m2D7569123729D47A77173424A1CC3CCA43213CFCmscorlib1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t LifetimeServices_set_SponsorshipTimeout_mA6154F99575D61E3F988FBF3FF9383DB77F70435mscorlib1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t MSCompatUnicodeTable_get_IsReady_m48C1BE8069E2D74EE21BBF4D4F5A0B31B4644436mscorlib1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t RemotingConfiguration_set_ApplicationName_m28B8C2E68F7D0EF780898ECB616CC43A1F5F5829mscorlib1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t StringComparer_get_Ordinal_mF3B6370BEBD77351DB5218C867DCD669C47B8812mscorlib1_MetadataUsageId;
struct CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4_marshaled_com;
struct CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4_marshaled_pinvoke;
struct CultureData_t53CDF1C5F789A28897415891667799420D3C5529_marshaled_com;
struct CultureData_t53CDF1C5F789A28897415891667799420D3C5529_marshaled_pinvoke;
struct CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_marshaled_com;
struct CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_marshaled_pinvoke;
struct Delegate_t_marshaled_com;
struct Delegate_t_marshaled_pinvoke;
struct Exception_t_marshaled_com;
struct Exception_t_marshaled_pinvoke;
struct TableRangeU5BU5D_t529A3048AC157A0702514DB337164442AF1530C7;
struct BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C;
struct ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726;
struct CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34;
struct DecimalU5BU5D_tAA3302A4A6ACCE77638A2346993A0FAAE2F9FDBA;
struct DoubleU5BU5D_t8E1B42EB2ABB79FBD193A6B8C8D97A7CDE44A4FB;
struct InternalCodePageDataItemU5BU5D_t14F50FF811A5CE312AAFE9726715A79B23230CA1;
struct Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD;
struct Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32;
struct Int64U5BU5D_tCA61E42872C63A4286B24EEE6E0650143B43DCE6;
struct ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE;
struct MethodInfoU5BU5D_t86AA7E1AF11D62BAE3189F25907B252596FA627E;
struct ParameterInfoU5BU5D_tB1B367487BAA9E1B2DA7EAA95B443D0B183AF80B;
struct ParameterModifierU5BU5D_tFF6F73F1CFE837331D6AAA11CC78CE5D9B5F0A2B;
struct SByteU5BU5D_t7D94C53295E6116625EA7CC7DEA21FEDC39869E7;
struct SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA;
struct StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A;
struct CancellationTokenRegistrationU5BU5D_t864BA2E1E6485FDC593F17F7C01525F33CCE7910;
struct SparselyPopulatedArray_1U5BU5D_t4D2064CEC206620DC5001D7C857A845833DCB52A;
struct TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755;
struct UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67;
struct UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF;
struct UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2;
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
// Mono.Globalization.Unicode.CodePointIndexer
struct CodePointIndexer_t0A6A7AB35984E2136E67DB8EF953A28C6553FD81 : public RuntimeObject
{
public:
// Mono.Globalization.Unicode.CodePointIndexer_TableRange[] Mono.Globalization.Unicode.CodePointIndexer::ranges
TableRangeU5BU5D_t529A3048AC157A0702514DB337164442AF1530C7* ___ranges_0;
// System.Int32 Mono.Globalization.Unicode.CodePointIndexer::TotalCount
int32_t ___TotalCount_1;
// System.Int32 Mono.Globalization.Unicode.CodePointIndexer::defaultIndex
int32_t ___defaultIndex_2;
// System.Int32 Mono.Globalization.Unicode.CodePointIndexer::defaultCP
int32_t ___defaultCP_3;
public:
inline static int32_t get_offset_of_ranges_0() { return static_cast<int32_t>(offsetof(CodePointIndexer_t0A6A7AB35984E2136E67DB8EF953A28C6553FD81, ___ranges_0)); }
inline TableRangeU5BU5D_t529A3048AC157A0702514DB337164442AF1530C7* get_ranges_0() const { return ___ranges_0; }
inline TableRangeU5BU5D_t529A3048AC157A0702514DB337164442AF1530C7** get_address_of_ranges_0() { return &___ranges_0; }
inline void set_ranges_0(TableRangeU5BU5D_t529A3048AC157A0702514DB337164442AF1530C7* value)
{
___ranges_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___ranges_0), (void*)value);
}
inline static int32_t get_offset_of_TotalCount_1() { return static_cast<int32_t>(offsetof(CodePointIndexer_t0A6A7AB35984E2136E67DB8EF953A28C6553FD81, ___TotalCount_1)); }
inline int32_t get_TotalCount_1() const { return ___TotalCount_1; }
inline int32_t* get_address_of_TotalCount_1() { return &___TotalCount_1; }
inline void set_TotalCount_1(int32_t value)
{
___TotalCount_1 = value;
}
inline static int32_t get_offset_of_defaultIndex_2() { return static_cast<int32_t>(offsetof(CodePointIndexer_t0A6A7AB35984E2136E67DB8EF953A28C6553FD81, ___defaultIndex_2)); }
inline int32_t get_defaultIndex_2() const { return ___defaultIndex_2; }
inline int32_t* get_address_of_defaultIndex_2() { return &___defaultIndex_2; }
inline void set_defaultIndex_2(int32_t value)
{
___defaultIndex_2 = value;
}
inline static int32_t get_offset_of_defaultCP_3() { return static_cast<int32_t>(offsetof(CodePointIndexer_t0A6A7AB35984E2136E67DB8EF953A28C6553FD81, ___defaultCP_3)); }
inline int32_t get_defaultCP_3() const { return ___defaultCP_3; }
inline int32_t* get_address_of_defaultCP_3() { return &___defaultCP_3; }
inline void set_defaultCP_3(int32_t value)
{
___defaultCP_3 = value;
}
};
// Mono.Globalization.Unicode.MSCompatUnicodeTable
struct MSCompatUnicodeTable_t46D5D29A0AF117D0BEE1CD7CBAEAFB2DA2B640E5 : public RuntimeObject
{
public:
public:
};
struct MSCompatUnicodeTable_t46D5D29A0AF117D0BEE1CD7CBAEAFB2DA2B640E5_StaticFields
{
public:
// System.Int32 Mono.Globalization.Unicode.MSCompatUnicodeTable::MaxExpansionLength
int32_t ___MaxExpansionLength_0;
// System.Byte* Mono.Globalization.Unicode.MSCompatUnicodeTable::ignorableFlags
uint8_t* ___ignorableFlags_1;
// System.Byte* Mono.Globalization.Unicode.MSCompatUnicodeTable::categories
uint8_t* ___categories_2;
// System.Byte* Mono.Globalization.Unicode.MSCompatUnicodeTable::level1
uint8_t* ___level1_3;
// System.Byte* Mono.Globalization.Unicode.MSCompatUnicodeTable::level2
uint8_t* ___level2_4;
// System.Byte* Mono.Globalization.Unicode.MSCompatUnicodeTable::level3
uint8_t* ___level3_5;
// System.Byte* Mono.Globalization.Unicode.MSCompatUnicodeTable::cjkCHScategory
uint8_t* ___cjkCHScategory_6;
// System.Byte* Mono.Globalization.Unicode.MSCompatUnicodeTable::cjkCHTcategory
uint8_t* ___cjkCHTcategory_7;
// System.Byte* Mono.Globalization.Unicode.MSCompatUnicodeTable::cjkJAcategory
uint8_t* ___cjkJAcategory_8;
// System.Byte* Mono.Globalization.Unicode.MSCompatUnicodeTable::cjkKOcategory
uint8_t* ___cjkKOcategory_9;
// System.Byte* Mono.Globalization.Unicode.MSCompatUnicodeTable::cjkCHSlv1
uint8_t* ___cjkCHSlv1_10;
// System.Byte* Mono.Globalization.Unicode.MSCompatUnicodeTable::cjkCHTlv1
uint8_t* ___cjkCHTlv1_11;
// System.Byte* Mono.Globalization.Unicode.MSCompatUnicodeTable::cjkJAlv1
uint8_t* ___cjkJAlv1_12;
// System.Byte* Mono.Globalization.Unicode.MSCompatUnicodeTable::cjkKOlv1
uint8_t* ___cjkKOlv1_13;
// System.Byte* Mono.Globalization.Unicode.MSCompatUnicodeTable::cjkKOlv2
uint8_t* ___cjkKOlv2_14;
// System.Char[] Mono.Globalization.Unicode.MSCompatUnicodeTable::tailoringArr
CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___tailoringArr_15;
// Mono.Globalization.Unicode.TailoringInfo[] Mono.Globalization.Unicode.MSCompatUnicodeTable::tailoringInfos
TailoringInfoU5BU5D_tE558BFC8FBB51482ACC5F18EB713B8AE8B77FB99* ___tailoringInfos_16;
// System.Object Mono.Globalization.Unicode.MSCompatUnicodeTable::forLock
RuntimeObject * ___forLock_17;
// System.Boolean Mono.Globalization.Unicode.MSCompatUnicodeTable::isReady
bool ___isReady_18;
public:
inline static int32_t get_offset_of_MaxExpansionLength_0() { return static_cast<int32_t>(offsetof(MSCompatUnicodeTable_t46D5D29A0AF117D0BEE1CD7CBAEAFB2DA2B640E5_StaticFields, ___MaxExpansionLength_0)); }
inline int32_t get_MaxExpansionLength_0() const { return ___MaxExpansionLength_0; }
inline int32_t* get_address_of_MaxExpansionLength_0() { return &___MaxExpansionLength_0; }
inline void set_MaxExpansionLength_0(int32_t value)
{
___MaxExpansionLength_0 = value;
}
inline static int32_t get_offset_of_ignorableFlags_1() { return static_cast<int32_t>(offsetof(MSCompatUnicodeTable_t46D5D29A0AF117D0BEE1CD7CBAEAFB2DA2B640E5_StaticFields, ___ignorableFlags_1)); }
inline uint8_t* get_ignorableFlags_1() const { return ___ignorableFlags_1; }
inline uint8_t** get_address_of_ignorableFlags_1() { return &___ignorableFlags_1; }
inline void set_ignorableFlags_1(uint8_t* value)
{
___ignorableFlags_1 = value;
}
inline static int32_t get_offset_of_categories_2() { return static_cast<int32_t>(offsetof(MSCompatUnicodeTable_t46D5D29A0AF117D0BEE1CD7CBAEAFB2DA2B640E5_StaticFields, ___categories_2)); }
inline uint8_t* get_categories_2() const { return ___categories_2; }
inline uint8_t** get_address_of_categories_2() { return &___categories_2; }
inline void set_categories_2(uint8_t* value)
{
___categories_2 = value;
}
inline static int32_t get_offset_of_level1_3() { return static_cast<int32_t>(offsetof(MSCompatUnicodeTable_t46D5D29A0AF117D0BEE1CD7CBAEAFB2DA2B640E5_StaticFields, ___level1_3)); }
inline uint8_t* get_level1_3() const { return ___level1_3; }
inline uint8_t** get_address_of_level1_3() { return &___level1_3; }
inline void set_level1_3(uint8_t* value)
{
___level1_3 = value;
}
inline static int32_t get_offset_of_level2_4() { return static_cast<int32_t>(offsetof(MSCompatUnicodeTable_t46D5D29A0AF117D0BEE1CD7CBAEAFB2DA2B640E5_StaticFields, ___level2_4)); }
inline uint8_t* get_level2_4() const { return ___level2_4; }
inline uint8_t** get_address_of_level2_4() { return &___level2_4; }
inline void set_level2_4(uint8_t* value)
{
___level2_4 = value;
}
inline static int32_t get_offset_of_level3_5() { return static_cast<int32_t>(offsetof(MSCompatUnicodeTable_t46D5D29A0AF117D0BEE1CD7CBAEAFB2DA2B640E5_StaticFields, ___level3_5)); }
inline uint8_t* get_level3_5() const { return ___level3_5; }
inline uint8_t** get_address_of_level3_5() { return &___level3_5; }
inline void set_level3_5(uint8_t* value)
{
___level3_5 = value;
}
inline static int32_t get_offset_of_cjkCHScategory_6() { return static_cast<int32_t>(offsetof(MSCompatUnicodeTable_t46D5D29A0AF117D0BEE1CD7CBAEAFB2DA2B640E5_StaticFields, ___cjkCHScategory_6)); }
inline uint8_t* get_cjkCHScategory_6() const { return ___cjkCHScategory_6; }
inline uint8_t** get_address_of_cjkCHScategory_6() { return &___cjkCHScategory_6; }
inline void set_cjkCHScategory_6(uint8_t* value)
{
___cjkCHScategory_6 = value;
}
inline static int32_t get_offset_of_cjkCHTcategory_7() { return static_cast<int32_t>(offsetof(MSCompatUnicodeTable_t46D5D29A0AF117D0BEE1CD7CBAEAFB2DA2B640E5_StaticFields, ___cjkCHTcategory_7)); }
inline uint8_t* get_cjkCHTcategory_7() const { return ___cjkCHTcategory_7; }
inline uint8_t** get_address_of_cjkCHTcategory_7() { return &___cjkCHTcategory_7; }
inline void set_cjkCHTcategory_7(uint8_t* value)
{
___cjkCHTcategory_7 = value;
}
inline static int32_t get_offset_of_cjkJAcategory_8() { return static_cast<int32_t>(offsetof(MSCompatUnicodeTable_t46D5D29A0AF117D0BEE1CD7CBAEAFB2DA2B640E5_StaticFields, ___cjkJAcategory_8)); }
inline uint8_t* get_cjkJAcategory_8() const { return ___cjkJAcategory_8; }
inline uint8_t** get_address_of_cjkJAcategory_8() { return &___cjkJAcategory_8; }
inline void set_cjkJAcategory_8(uint8_t* value)
{
___cjkJAcategory_8 = value;
}
inline static int32_t get_offset_of_cjkKOcategory_9() { return static_cast<int32_t>(offsetof(MSCompatUnicodeTable_t46D5D29A0AF117D0BEE1CD7CBAEAFB2DA2B640E5_StaticFields, ___cjkKOcategory_9)); }
inline uint8_t* get_cjkKOcategory_9() const { return ___cjkKOcategory_9; }
inline uint8_t** get_address_of_cjkKOcategory_9() { return &___cjkKOcategory_9; }
inline void set_cjkKOcategory_9(uint8_t* value)
{
___cjkKOcategory_9 = value;
}
inline static int32_t get_offset_of_cjkCHSlv1_10() { return static_cast<int32_t>(offsetof(MSCompatUnicodeTable_t46D5D29A0AF117D0BEE1CD7CBAEAFB2DA2B640E5_StaticFields, ___cjkCHSlv1_10)); }
inline uint8_t* get_cjkCHSlv1_10() const { return ___cjkCHSlv1_10; }
inline uint8_t** get_address_of_cjkCHSlv1_10() { return &___cjkCHSlv1_10; }
inline void set_cjkCHSlv1_10(uint8_t* value)
{
___cjkCHSlv1_10 = value;
}
inline static int32_t get_offset_of_cjkCHTlv1_11() { return static_cast<int32_t>(offsetof(MSCompatUnicodeTable_t46D5D29A0AF117D0BEE1CD7CBAEAFB2DA2B640E5_StaticFields, ___cjkCHTlv1_11)); }
inline uint8_t* get_cjkCHTlv1_11() const { return ___cjkCHTlv1_11; }
inline uint8_t** get_address_of_cjkCHTlv1_11() { return &___cjkCHTlv1_11; }
inline void set_cjkCHTlv1_11(uint8_t* value)
{
___cjkCHTlv1_11 = value;
}
inline static int32_t get_offset_of_cjkJAlv1_12() { return static_cast<int32_t>(offsetof(MSCompatUnicodeTable_t46D5D29A0AF117D0BEE1CD7CBAEAFB2DA2B640E5_StaticFields, ___cjkJAlv1_12)); }
inline uint8_t* get_cjkJAlv1_12() const { return ___cjkJAlv1_12; }
inline uint8_t** get_address_of_cjkJAlv1_12() { return &___cjkJAlv1_12; }
inline void set_cjkJAlv1_12(uint8_t* value)
{
___cjkJAlv1_12 = value;
}
inline static int32_t get_offset_of_cjkKOlv1_13() { return static_cast<int32_t>(offsetof(MSCompatUnicodeTable_t46D5D29A0AF117D0BEE1CD7CBAEAFB2DA2B640E5_StaticFields, ___cjkKOlv1_13)); }
inline uint8_t* get_cjkKOlv1_13() const { return ___cjkKOlv1_13; }
inline uint8_t** get_address_of_cjkKOlv1_13() { return &___cjkKOlv1_13; }
inline void set_cjkKOlv1_13(uint8_t* value)
{
___cjkKOlv1_13 = value;
}
inline static int32_t get_offset_of_cjkKOlv2_14() { return static_cast<int32_t>(offsetof(MSCompatUnicodeTable_t46D5D29A0AF117D0BEE1CD7CBAEAFB2DA2B640E5_StaticFields, ___cjkKOlv2_14)); }
inline uint8_t* get_cjkKOlv2_14() const { return ___cjkKOlv2_14; }
inline uint8_t** get_address_of_cjkKOlv2_14() { return &___cjkKOlv2_14; }
inline void set_cjkKOlv2_14(uint8_t* value)
{
___cjkKOlv2_14 = value;
}
inline static int32_t get_offset_of_tailoringArr_15() { return static_cast<int32_t>(offsetof(MSCompatUnicodeTable_t46D5D29A0AF117D0BEE1CD7CBAEAFB2DA2B640E5_StaticFields, ___tailoringArr_15)); }
inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get_tailoringArr_15() const { return ___tailoringArr_15; }
inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of_tailoringArr_15() { return &___tailoringArr_15; }
inline void set_tailoringArr_15(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value)
{
___tailoringArr_15 = value;
Il2CppCodeGenWriteBarrier((void**)(&___tailoringArr_15), (void*)value);
}
inline static int32_t get_offset_of_tailoringInfos_16() { return static_cast<int32_t>(offsetof(MSCompatUnicodeTable_t46D5D29A0AF117D0BEE1CD7CBAEAFB2DA2B640E5_StaticFields, ___tailoringInfos_16)); }
inline TailoringInfoU5BU5D_tE558BFC8FBB51482ACC5F18EB713B8AE8B77FB99* get_tailoringInfos_16() const { return ___tailoringInfos_16; }
inline TailoringInfoU5BU5D_tE558BFC8FBB51482ACC5F18EB713B8AE8B77FB99** get_address_of_tailoringInfos_16() { return &___tailoringInfos_16; }
inline void set_tailoringInfos_16(TailoringInfoU5BU5D_tE558BFC8FBB51482ACC5F18EB713B8AE8B77FB99* value)
{
___tailoringInfos_16 = value;
Il2CppCodeGenWriteBarrier((void**)(&___tailoringInfos_16), (void*)value);
}
inline static int32_t get_offset_of_forLock_17() { return static_cast<int32_t>(offsetof(MSCompatUnicodeTable_t46D5D29A0AF117D0BEE1CD7CBAEAFB2DA2B640E5_StaticFields, ___forLock_17)); }
inline RuntimeObject * get_forLock_17() const { return ___forLock_17; }
inline RuntimeObject ** get_address_of_forLock_17() { return &___forLock_17; }
inline void set_forLock_17(RuntimeObject * value)
{
___forLock_17 = value;
Il2CppCodeGenWriteBarrier((void**)(&___forLock_17), (void*)value);
}
inline static int32_t get_offset_of_isReady_18() { return static_cast<int32_t>(offsetof(MSCompatUnicodeTable_t46D5D29A0AF117D0BEE1CD7CBAEAFB2DA2B640E5_StaticFields, ___isReady_18)); }
inline bool get_isReady_18() const { return ___isReady_18; }
inline bool* get_address_of_isReady_18() { return &___isReady_18; }
inline void set_isReady_18(bool value)
{
___isReady_18 = value;
}
};
// Mono.Globalization.Unicode.SimpleCollator
struct SimpleCollator_t60F8CB5F37FA4A008E484C0BD0429E65E5904266 : public RuntimeObject
{
public:
// System.Globalization.TextInfo Mono.Globalization.Unicode.SimpleCollator::textInfo
TextInfo_tE823D0684BFE8B203501C9B2B38585E8F06E872C * ___textInfo_2;
// Mono.Globalization.Unicode.CodePointIndexer Mono.Globalization.Unicode.SimpleCollator::cjkIndexer
CodePointIndexer_t0A6A7AB35984E2136E67DB8EF953A28C6553FD81 * ___cjkIndexer_3;
// Mono.Globalization.Unicode.Contraction[] Mono.Globalization.Unicode.SimpleCollator::contractions
ContractionU5BU5D_t167C2B086555CC0A9174F79685CDB93223C7307B* ___contractions_4;
// Mono.Globalization.Unicode.Level2Map[] Mono.Globalization.Unicode.SimpleCollator::level2Maps
Level2MapU5BU5D_t736BC7320E2D0A8E95BD20FE2F4E7E40B9246DBF* ___level2Maps_5;
// System.Byte[] Mono.Globalization.Unicode.SimpleCollator::unsafeFlags
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___unsafeFlags_6;
// System.Byte* Mono.Globalization.Unicode.SimpleCollator::cjkCatTable
uint8_t* ___cjkCatTable_7;
// System.Byte* Mono.Globalization.Unicode.SimpleCollator::cjkLv1Table
uint8_t* ___cjkLv1Table_8;
// System.Byte* Mono.Globalization.Unicode.SimpleCollator::cjkLv2Table
uint8_t* ___cjkLv2Table_9;
// Mono.Globalization.Unicode.CodePointIndexer Mono.Globalization.Unicode.SimpleCollator::cjkLv2Indexer
CodePointIndexer_t0A6A7AB35984E2136E67DB8EF953A28C6553FD81 * ___cjkLv2Indexer_10;
// System.Int32 Mono.Globalization.Unicode.SimpleCollator::lcid
int32_t ___lcid_11;
// System.Boolean Mono.Globalization.Unicode.SimpleCollator::frenchSort
bool ___frenchSort_12;
public:
inline static int32_t get_offset_of_textInfo_2() { return static_cast<int32_t>(offsetof(SimpleCollator_t60F8CB5F37FA4A008E484C0BD0429E65E5904266, ___textInfo_2)); }
inline TextInfo_tE823D0684BFE8B203501C9B2B38585E8F06E872C * get_textInfo_2() const { return ___textInfo_2; }
inline TextInfo_tE823D0684BFE8B203501C9B2B38585E8F06E872C ** get_address_of_textInfo_2() { return &___textInfo_2; }
inline void set_textInfo_2(TextInfo_tE823D0684BFE8B203501C9B2B38585E8F06E872C * value)
{
___textInfo_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___textInfo_2), (void*)value);
}
inline static int32_t get_offset_of_cjkIndexer_3() { return static_cast<int32_t>(offsetof(SimpleCollator_t60F8CB5F37FA4A008E484C0BD0429E65E5904266, ___cjkIndexer_3)); }
inline CodePointIndexer_t0A6A7AB35984E2136E67DB8EF953A28C6553FD81 * get_cjkIndexer_3() const { return ___cjkIndexer_3; }
inline CodePointIndexer_t0A6A7AB35984E2136E67DB8EF953A28C6553FD81 ** get_address_of_cjkIndexer_3() { return &___cjkIndexer_3; }
inline void set_cjkIndexer_3(CodePointIndexer_t0A6A7AB35984E2136E67DB8EF953A28C6553FD81 * value)
{
___cjkIndexer_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___cjkIndexer_3), (void*)value);
}
inline static int32_t get_offset_of_contractions_4() { return static_cast<int32_t>(offsetof(SimpleCollator_t60F8CB5F37FA4A008E484C0BD0429E65E5904266, ___contractions_4)); }
inline ContractionU5BU5D_t167C2B086555CC0A9174F79685CDB93223C7307B* get_contractions_4() const { return ___contractions_4; }
inline ContractionU5BU5D_t167C2B086555CC0A9174F79685CDB93223C7307B** get_address_of_contractions_4() { return &___contractions_4; }
inline void set_contractions_4(ContractionU5BU5D_t167C2B086555CC0A9174F79685CDB93223C7307B* value)
{
___contractions_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___contractions_4), (void*)value);
}
inline static int32_t get_offset_of_level2Maps_5() { return static_cast<int32_t>(offsetof(SimpleCollator_t60F8CB5F37FA4A008E484C0BD0429E65E5904266, ___level2Maps_5)); }
inline Level2MapU5BU5D_t736BC7320E2D0A8E95BD20FE2F4E7E40B9246DBF* get_level2Maps_5() const { return ___level2Maps_5; }
inline Level2MapU5BU5D_t736BC7320E2D0A8E95BD20FE2F4E7E40B9246DBF** get_address_of_level2Maps_5() { return &___level2Maps_5; }
inline void set_level2Maps_5(Level2MapU5BU5D_t736BC7320E2D0A8E95BD20FE2F4E7E40B9246DBF* value)
{
___level2Maps_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___level2Maps_5), (void*)value);
}
inline static int32_t get_offset_of_unsafeFlags_6() { return static_cast<int32_t>(offsetof(SimpleCollator_t60F8CB5F37FA4A008E484C0BD0429E65E5904266, ___unsafeFlags_6)); }
inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_unsafeFlags_6() const { return ___unsafeFlags_6; }
inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_unsafeFlags_6() { return &___unsafeFlags_6; }
inline void set_unsafeFlags_6(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value)
{
___unsafeFlags_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___unsafeFlags_6), (void*)value);
}
inline static int32_t get_offset_of_cjkCatTable_7() { return static_cast<int32_t>(offsetof(SimpleCollator_t60F8CB5F37FA4A008E484C0BD0429E65E5904266, ___cjkCatTable_7)); }
inline uint8_t* get_cjkCatTable_7() const { return ___cjkCatTable_7; }
inline uint8_t** get_address_of_cjkCatTable_7() { return &___cjkCatTable_7; }
inline void set_cjkCatTable_7(uint8_t* value)
{
___cjkCatTable_7 = value;
}
inline static int32_t get_offset_of_cjkLv1Table_8() { return static_cast<int32_t>(offsetof(SimpleCollator_t60F8CB5F37FA4A008E484C0BD0429E65E5904266, ___cjkLv1Table_8)); }
inline uint8_t* get_cjkLv1Table_8() const { return ___cjkLv1Table_8; }
inline uint8_t** get_address_of_cjkLv1Table_8() { return &___cjkLv1Table_8; }
inline void set_cjkLv1Table_8(uint8_t* value)
{
___cjkLv1Table_8 = value;
}
inline static int32_t get_offset_of_cjkLv2Table_9() { return static_cast<int32_t>(offsetof(SimpleCollator_t60F8CB5F37FA4A008E484C0BD0429E65E5904266, ___cjkLv2Table_9)); }
inline uint8_t* get_cjkLv2Table_9() const { return ___cjkLv2Table_9; }
inline uint8_t** get_address_of_cjkLv2Table_9() { return &___cjkLv2Table_9; }
inline void set_cjkLv2Table_9(uint8_t* value)
{
___cjkLv2Table_9 = value;
}
inline static int32_t get_offset_of_cjkLv2Indexer_10() { return static_cast<int32_t>(offsetof(SimpleCollator_t60F8CB5F37FA4A008E484C0BD0429E65E5904266, ___cjkLv2Indexer_10)); }
inline CodePointIndexer_t0A6A7AB35984E2136E67DB8EF953A28C6553FD81 * get_cjkLv2Indexer_10() const { return ___cjkLv2Indexer_10; }
inline CodePointIndexer_t0A6A7AB35984E2136E67DB8EF953A28C6553FD81 ** get_address_of_cjkLv2Indexer_10() { return &___cjkLv2Indexer_10; }
inline void set_cjkLv2Indexer_10(CodePointIndexer_t0A6A7AB35984E2136E67DB8EF953A28C6553FD81 * value)
{
___cjkLv2Indexer_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___cjkLv2Indexer_10), (void*)value);
}
inline static int32_t get_offset_of_lcid_11() { return static_cast<int32_t>(offsetof(SimpleCollator_t60F8CB5F37FA4A008E484C0BD0429E65E5904266, ___lcid_11)); }
inline int32_t get_lcid_11() const { return ___lcid_11; }
inline int32_t* get_address_of_lcid_11() { return &___lcid_11; }
inline void set_lcid_11(int32_t value)
{
___lcid_11 = value;
}
inline static int32_t get_offset_of_frenchSort_12() { return static_cast<int32_t>(offsetof(SimpleCollator_t60F8CB5F37FA4A008E484C0BD0429E65E5904266, ___frenchSort_12)); }
inline bool get_frenchSort_12() const { return ___frenchSort_12; }
inline bool* get_address_of_frenchSort_12() { return &___frenchSort_12; }
inline void set_frenchSort_12(bool value)
{
___frenchSort_12 = value;
}
};
struct SimpleCollator_t60F8CB5F37FA4A008E484C0BD0429E65E5904266_StaticFields
{
public:
// System.Boolean Mono.Globalization.Unicode.SimpleCollator::QuickCheckDisabled
bool ___QuickCheckDisabled_0;
// Mono.Globalization.Unicode.SimpleCollator Mono.Globalization.Unicode.SimpleCollator::invariant
SimpleCollator_t60F8CB5F37FA4A008E484C0BD0429E65E5904266 * ___invariant_1;
public:
inline static int32_t get_offset_of_QuickCheckDisabled_0() { return static_cast<int32_t>(offsetof(SimpleCollator_t60F8CB5F37FA4A008E484C0BD0429E65E5904266_StaticFields, ___QuickCheckDisabled_0)); }
inline bool get_QuickCheckDisabled_0() const { return ___QuickCheckDisabled_0; }
inline bool* get_address_of_QuickCheckDisabled_0() { return &___QuickCheckDisabled_0; }
inline void set_QuickCheckDisabled_0(bool value)
{
___QuickCheckDisabled_0 = value;
}
inline static int32_t get_offset_of_invariant_1() { return static_cast<int32_t>(offsetof(SimpleCollator_t60F8CB5F37FA4A008E484C0BD0429E65E5904266_StaticFields, ___invariant_1)); }
inline SimpleCollator_t60F8CB5F37FA4A008E484C0BD0429E65E5904266 * get_invariant_1() const { return ___invariant_1; }
inline SimpleCollator_t60F8CB5F37FA4A008E484C0BD0429E65E5904266 ** get_address_of_invariant_1() { return &___invariant_1; }
inline void set_invariant_1(SimpleCollator_t60F8CB5F37FA4A008E484C0BD0429E65E5904266 * value)
{
___invariant_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___invariant_1), (void*)value);
}
};
// Mono.Security.BitConverterLE
struct BitConverterLE_tC38659FD24286021C2E3CEA328786FBF45D5408E : public RuntimeObject
{
public:
public:
};
// Mono.Xml.SmallXmlParser
struct SmallXmlParser_t67E5C1C6417A9CB0679E68D8A4E0095E9D2B54D7 : public RuntimeObject
{
public:
// Mono.Xml.SmallXmlParser_IContentHandler Mono.Xml.SmallXmlParser::handler
RuntimeObject* ___handler_0;
// System.IO.TextReader Mono.Xml.SmallXmlParser::reader
TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F * ___reader_1;
// System.Collections.Stack Mono.Xml.SmallXmlParser::elementNames
Stack_tF6DD42A42C129B014D4223010F1E0FFBECBDC3B8 * ___elementNames_2;
// System.Collections.Stack Mono.Xml.SmallXmlParser::xmlSpaces
Stack_tF6DD42A42C129B014D4223010F1E0FFBECBDC3B8 * ___xmlSpaces_3;
// System.String Mono.Xml.SmallXmlParser::xmlSpace
String_t* ___xmlSpace_4;
// System.Text.StringBuilder Mono.Xml.SmallXmlParser::buffer
StringBuilder_t * ___buffer_5;
// System.Char[] Mono.Xml.SmallXmlParser::nameBuffer
CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___nameBuffer_6;
// System.Boolean Mono.Xml.SmallXmlParser::isWhitespace
bool ___isWhitespace_7;
// Mono.Xml.SmallXmlParser_AttrListImpl Mono.Xml.SmallXmlParser::attributes
AttrListImpl_t3FA46929BCFFF60313A5940AAB20513699DC58BA * ___attributes_8;
// System.Int32 Mono.Xml.SmallXmlParser::line
int32_t ___line_9;
// System.Int32 Mono.Xml.SmallXmlParser::column
int32_t ___column_10;
// System.Boolean Mono.Xml.SmallXmlParser::resetColumn
bool ___resetColumn_11;
public:
inline static int32_t get_offset_of_handler_0() { return static_cast<int32_t>(offsetof(SmallXmlParser_t67E5C1C6417A9CB0679E68D8A4E0095E9D2B54D7, ___handler_0)); }
inline RuntimeObject* get_handler_0() const { return ___handler_0; }
inline RuntimeObject** get_address_of_handler_0() { return &___handler_0; }
inline void set_handler_0(RuntimeObject* value)
{
___handler_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___handler_0), (void*)value);
}
inline static int32_t get_offset_of_reader_1() { return static_cast<int32_t>(offsetof(SmallXmlParser_t67E5C1C6417A9CB0679E68D8A4E0095E9D2B54D7, ___reader_1)); }
inline TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F * get_reader_1() const { return ___reader_1; }
inline TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F ** get_address_of_reader_1() { return &___reader_1; }
inline void set_reader_1(TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F * value)
{
___reader_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___reader_1), (void*)value);
}
inline static int32_t get_offset_of_elementNames_2() { return static_cast<int32_t>(offsetof(SmallXmlParser_t67E5C1C6417A9CB0679E68D8A4E0095E9D2B54D7, ___elementNames_2)); }
inline Stack_tF6DD42A42C129B014D4223010F1E0FFBECBDC3B8 * get_elementNames_2() const { return ___elementNames_2; }
inline Stack_tF6DD42A42C129B014D4223010F1E0FFBECBDC3B8 ** get_address_of_elementNames_2() { return &___elementNames_2; }
inline void set_elementNames_2(Stack_tF6DD42A42C129B014D4223010F1E0FFBECBDC3B8 * value)
{
___elementNames_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___elementNames_2), (void*)value);
}
inline static int32_t get_offset_of_xmlSpaces_3() { return static_cast<int32_t>(offsetof(SmallXmlParser_t67E5C1C6417A9CB0679E68D8A4E0095E9D2B54D7, ___xmlSpaces_3)); }
inline Stack_tF6DD42A42C129B014D4223010F1E0FFBECBDC3B8 * get_xmlSpaces_3() const { return ___xmlSpaces_3; }
inline Stack_tF6DD42A42C129B014D4223010F1E0FFBECBDC3B8 ** get_address_of_xmlSpaces_3() { return &___xmlSpaces_3; }
inline void set_xmlSpaces_3(Stack_tF6DD42A42C129B014D4223010F1E0FFBECBDC3B8 * value)
{
___xmlSpaces_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___xmlSpaces_3), (void*)value);
}
inline static int32_t get_offset_of_xmlSpace_4() { return static_cast<int32_t>(offsetof(SmallXmlParser_t67E5C1C6417A9CB0679E68D8A4E0095E9D2B54D7, ___xmlSpace_4)); }
inline String_t* get_xmlSpace_4() const { return ___xmlSpace_4; }
inline String_t** get_address_of_xmlSpace_4() { return &___xmlSpace_4; }
inline void set_xmlSpace_4(String_t* value)
{
___xmlSpace_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___xmlSpace_4), (void*)value);
}
inline static int32_t get_offset_of_buffer_5() { return static_cast<int32_t>(offsetof(SmallXmlParser_t67E5C1C6417A9CB0679E68D8A4E0095E9D2B54D7, ___buffer_5)); }
inline StringBuilder_t * get_buffer_5() const { return ___buffer_5; }
inline StringBuilder_t ** get_address_of_buffer_5() { return &___buffer_5; }
inline void set_buffer_5(StringBuilder_t * value)
{
___buffer_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___buffer_5), (void*)value);
}
inline static int32_t get_offset_of_nameBuffer_6() { return static_cast<int32_t>(offsetof(SmallXmlParser_t67E5C1C6417A9CB0679E68D8A4E0095E9D2B54D7, ___nameBuffer_6)); }
inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get_nameBuffer_6() const { return ___nameBuffer_6; }
inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of_nameBuffer_6() { return &___nameBuffer_6; }
inline void set_nameBuffer_6(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value)
{
___nameBuffer_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___nameBuffer_6), (void*)value);
}
inline static int32_t get_offset_of_isWhitespace_7() { return static_cast<int32_t>(offsetof(SmallXmlParser_t67E5C1C6417A9CB0679E68D8A4E0095E9D2B54D7, ___isWhitespace_7)); }
inline bool get_isWhitespace_7() const { return ___isWhitespace_7; }
inline bool* get_address_of_isWhitespace_7() { return &___isWhitespace_7; }
inline void set_isWhitespace_7(bool value)
{
___isWhitespace_7 = value;
}
inline static int32_t get_offset_of_attributes_8() { return static_cast<int32_t>(offsetof(SmallXmlParser_t67E5C1C6417A9CB0679E68D8A4E0095E9D2B54D7, ___attributes_8)); }
inline AttrListImpl_t3FA46929BCFFF60313A5940AAB20513699DC58BA * get_attributes_8() const { return ___attributes_8; }
inline AttrListImpl_t3FA46929BCFFF60313A5940AAB20513699DC58BA ** get_address_of_attributes_8() { return &___attributes_8; }
inline void set_attributes_8(AttrListImpl_t3FA46929BCFFF60313A5940AAB20513699DC58BA * value)
{
___attributes_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___attributes_8), (void*)value);
}
inline static int32_t get_offset_of_line_9() { return static_cast<int32_t>(offsetof(SmallXmlParser_t67E5C1C6417A9CB0679E68D8A4E0095E9D2B54D7, ___line_9)); }
inline int32_t get_line_9() const { return ___line_9; }
inline int32_t* get_address_of_line_9() { return &___line_9; }
inline void set_line_9(int32_t value)
{
___line_9 = value;
}
inline static int32_t get_offset_of_column_10() { return static_cast<int32_t>(offsetof(SmallXmlParser_t67E5C1C6417A9CB0679E68D8A4E0095E9D2B54D7, ___column_10)); }
inline int32_t get_column_10() const { return ___column_10; }
inline int32_t* get_address_of_column_10() { return &___column_10; }
inline void set_column_10(int32_t value)
{
___column_10 = value;
}
inline static int32_t get_offset_of_resetColumn_11() { return static_cast<int32_t>(offsetof(SmallXmlParser_t67E5C1C6417A9CB0679E68D8A4E0095E9D2B54D7, ___resetColumn_11)); }
inline bool get_resetColumn_11() const { return ___resetColumn_11; }
inline bool* get_address_of_resetColumn_11() { return &___resetColumn_11; }
inline void set_resetColumn_11(bool value)
{
___resetColumn_11 = value;
}
};
// System.AppContextSwitches
struct AppContextSwitches_tB32AD47AEBBE99D856C1BC9ACFDAB18C959E4A21 : public RuntimeObject
{
public:
public:
};
struct AppContextSwitches_tB32AD47AEBBE99D856C1BC9ACFDAB18C959E4A21_StaticFields
{
public:
// System.Boolean System.AppContextSwitches::ThrowExceptionIfDisposedCancellationTokenSource
bool ___ThrowExceptionIfDisposedCancellationTokenSource_0;
public:
inline static int32_t get_offset_of_ThrowExceptionIfDisposedCancellationTokenSource_0() { return static_cast<int32_t>(offsetof(AppContextSwitches_tB32AD47AEBBE99D856C1BC9ACFDAB18C959E4A21_StaticFields, ___ThrowExceptionIfDisposedCancellationTokenSource_0)); }
inline bool get_ThrowExceptionIfDisposedCancellationTokenSource_0() const { return ___ThrowExceptionIfDisposedCancellationTokenSource_0; }
inline bool* get_address_of_ThrowExceptionIfDisposedCancellationTokenSource_0() { return &___ThrowExceptionIfDisposedCancellationTokenSource_0; }
inline void set_ThrowExceptionIfDisposedCancellationTokenSource_0(bool value)
{
___ThrowExceptionIfDisposedCancellationTokenSource_0 = value;
}
};
struct Il2CppArrayBounds;
// System.Array
// System.Attribute
struct Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71 : public RuntimeObject
{
public:
public:
};
// System.BitConverter
struct BitConverter_t8DCBA24B909F1B221372AF2B37C76DCF614BA654 : public RuntimeObject
{
public:
public:
};
struct BitConverter_t8DCBA24B909F1B221372AF2B37C76DCF614BA654_StaticFields
{
public:
// System.Boolean System.BitConverter::IsLittleEndian
bool ___IsLittleEndian_0;
public:
inline static int32_t get_offset_of_IsLittleEndian_0() { return static_cast<int32_t>(offsetof(BitConverter_t8DCBA24B909F1B221372AF2B37C76DCF614BA654_StaticFields, ___IsLittleEndian_0)); }
inline bool get_IsLittleEndian_0() const { return ___IsLittleEndian_0; }
inline bool* get_address_of_IsLittleEndian_0() { return &___IsLittleEndian_0; }
inline void set_IsLittleEndian_0(bool value)
{
___IsLittleEndian_0 = value;
}
};
// System.Buffer
struct Buffer_tC632A2747BF8E5003A9CAB293BF2F6C506C710DE : public RuntimeObject
{
public:
public:
};
// System.ByteMatcher
struct ByteMatcher_t22B28B6FEEDB86326E893675F4C6B5C74E66F5D7 : public RuntimeObject
{
public:
// System.Collections.Hashtable System.ByteMatcher::map
Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * ___map_0;
// System.Collections.Hashtable System.ByteMatcher::starts
Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * ___starts_1;
public:
inline static int32_t get_offset_of_map_0() { return static_cast<int32_t>(offsetof(ByteMatcher_t22B28B6FEEDB86326E893675F4C6B5C74E66F5D7, ___map_0)); }
inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * get_map_0() const { return ___map_0; }
inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC ** get_address_of_map_0() { return &___map_0; }
inline void set_map_0(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * value)
{
___map_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___map_0), (void*)value);
}
inline static int32_t get_offset_of_starts_1() { return static_cast<int32_t>(offsetof(ByteMatcher_t22B28B6FEEDB86326E893675F4C6B5C74E66F5D7, ___starts_1)); }
inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * get_starts_1() const { return ___starts_1; }
inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC ** get_address_of_starts_1() { return &___starts_1; }
inline void set_starts_1(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * value)
{
___starts_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___starts_1), (void*)value);
}
};
// System.CLRConfig
struct CLRConfig_tF2AA904257CB29EA0991DFEB7ED5687982072B3D : public RuntimeObject
{
public:
public:
};
// System.CharEnumerator
struct CharEnumerator_t307E02F1AF2C2C98EE2FFEEE3045A790F2140D75 : public RuntimeObject
{
public:
// System.String System.CharEnumerator::str
String_t* ___str_0;
// System.Int32 System.CharEnumerator::index
int32_t ___index_1;
// System.Char System.CharEnumerator::currentElement
Il2CppChar ___currentElement_2;
public:
inline static int32_t get_offset_of_str_0() { return static_cast<int32_t>(offsetof(CharEnumerator_t307E02F1AF2C2C98EE2FFEEE3045A790F2140D75, ___str_0)); }
inline String_t* get_str_0() const { return ___str_0; }
inline String_t** get_address_of_str_0() { return &___str_0; }
inline void set_str_0(String_t* value)
{
___str_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___str_0), (void*)value);
}
inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(CharEnumerator_t307E02F1AF2C2C98EE2FFEEE3045A790F2140D75, ___index_1)); }
inline int32_t get_index_1() const { return ___index_1; }
inline int32_t* get_address_of_index_1() { return &___index_1; }
inline void set_index_1(int32_t value)
{
___index_1 = value;
}
inline static int32_t get_offset_of_currentElement_2() { return static_cast<int32_t>(offsetof(CharEnumerator_t307E02F1AF2C2C98EE2FFEEE3045A790F2140D75, ___currentElement_2)); }
inline Il2CppChar get_currentElement_2() const { return ___currentElement_2; }
inline Il2CppChar* get_address_of_currentElement_2() { return &___currentElement_2; }
inline void set_currentElement_2(Il2CppChar value)
{
___currentElement_2 = value;
}
};
// System.Collections.ArrayList
struct ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 : public RuntimeObject
{
public:
// System.Object[] System.Collections.ArrayList::_items
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ____items_0;
// System.Int32 System.Collections.ArrayList::_size
int32_t ____size_1;
// System.Int32 System.Collections.ArrayList::_version
int32_t ____version_2;
// System.Object System.Collections.ArrayList::_syncRoot
RuntimeObject * ____syncRoot_3;
public:
inline static int32_t get_offset_of__items_0() { return static_cast<int32_t>(offsetof(ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575, ____items_0)); }
inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get__items_0() const { return ____items_0; }
inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of__items_0() { return &____items_0; }
inline void set__items_0(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value)
{
____items_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_0), (void*)value);
}
inline static int32_t get_offset_of__size_1() { return static_cast<int32_t>(offsetof(ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575, ____size_1)); }
inline int32_t get__size_1() const { return ____size_1; }
inline int32_t* get_address_of__size_1() { return &____size_1; }
inline void set__size_1(int32_t value)
{
____size_1 = value;
}
inline static int32_t get_offset_of__version_2() { return static_cast<int32_t>(offsetof(ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575, ____version_2)); }
inline int32_t get__version_2() const { return ____version_2; }
inline int32_t* get_address_of__version_2() { return &____version_2; }
inline void set__version_2(int32_t value)
{
____version_2 = value;
}
inline static int32_t get_offset_of__syncRoot_3() { return static_cast<int32_t>(offsetof(ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575, ____syncRoot_3)); }
inline RuntimeObject * get__syncRoot_3() const { return ____syncRoot_3; }
inline RuntimeObject ** get_address_of__syncRoot_3() { return &____syncRoot_3; }
inline void set__syncRoot_3(RuntimeObject * value)
{
____syncRoot_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_3), (void*)value);
}
};
struct ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575_StaticFields
{
public:
// System.Object[] System.Collections.ArrayList::emptyArray
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___emptyArray_4;
public:
inline static int32_t get_offset_of_emptyArray_4() { return static_cast<int32_t>(offsetof(ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575_StaticFields, ___emptyArray_4)); }
inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get_emptyArray_4() const { return ___emptyArray_4; }
inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of_emptyArray_4() { return &___emptyArray_4; }
inline void set_emptyArray_4(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value)
{
___emptyArray_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___emptyArray_4), (void*)value);
}
};
// System.Collections.CaseInsensitiveComparer
struct CaseInsensitiveComparer_t6261A2A5410CBE32D356D9D93017732DF0AADC6C : public RuntimeObject
{
public:
// System.Globalization.CompareInfo System.Collections.CaseInsensitiveComparer::m_compareInfo
CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * ___m_compareInfo_0;
public:
inline static int32_t get_offset_of_m_compareInfo_0() { return static_cast<int32_t>(offsetof(CaseInsensitiveComparer_t6261A2A5410CBE32D356D9D93017732DF0AADC6C, ___m_compareInfo_0)); }
inline CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * get_m_compareInfo_0() const { return ___m_compareInfo_0; }
inline CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 ** get_address_of_m_compareInfo_0() { return &___m_compareInfo_0; }
inline void set_m_compareInfo_0(CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * value)
{
___m_compareInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_compareInfo_0), (void*)value);
}
};
// System.Collections.CaseInsensitiveHashCodeProvider
struct CaseInsensitiveHashCodeProvider_tBB49394EF70D0021AE2D095430A23CB71AD512FA : public RuntimeObject
{
public:
// System.Globalization.TextInfo System.Collections.CaseInsensitiveHashCodeProvider::m_text
TextInfo_tE823D0684BFE8B203501C9B2B38585E8F06E872C * ___m_text_0;
public:
inline static int32_t get_offset_of_m_text_0() { return static_cast<int32_t>(offsetof(CaseInsensitiveHashCodeProvider_tBB49394EF70D0021AE2D095430A23CB71AD512FA, ___m_text_0)); }
inline TextInfo_tE823D0684BFE8B203501C9B2B38585E8F06E872C * get_m_text_0() const { return ___m_text_0; }
inline TextInfo_tE823D0684BFE8B203501C9B2B38585E8F06E872C ** get_address_of_m_text_0() { return &___m_text_0; }
inline void set_m_text_0(TextInfo_tE823D0684BFE8B203501C9B2B38585E8F06E872C * value)
{
___m_text_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_text_0), (void*)value);
}
};
// System.Collections.Comparer
struct Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 : public RuntimeObject
{
public:
// System.Globalization.CompareInfo System.Collections.Comparer::m_compareInfo
CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * ___m_compareInfo_0;
public:
inline static int32_t get_offset_of_m_compareInfo_0() { return static_cast<int32_t>(offsetof(Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57, ___m_compareInfo_0)); }
inline CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * get_m_compareInfo_0() const { return ___m_compareInfo_0; }
inline CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 ** get_address_of_m_compareInfo_0() { return &___m_compareInfo_0; }
inline void set_m_compareInfo_0(CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * value)
{
___m_compareInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_compareInfo_0), (void*)value);
}
};
struct Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_StaticFields
{
public:
// System.Collections.Comparer System.Collections.Comparer::Default
Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 * ___Default_1;
// System.Collections.Comparer System.Collections.Comparer::DefaultInvariant
Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 * ___DefaultInvariant_2;
public:
inline static int32_t get_offset_of_Default_1() { return static_cast<int32_t>(offsetof(Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_StaticFields, ___Default_1)); }
inline Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 * get_Default_1() const { return ___Default_1; }
inline Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 ** get_address_of_Default_1() { return &___Default_1; }
inline void set_Default_1(Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 * value)
{
___Default_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Default_1), (void*)value);
}
inline static int32_t get_offset_of_DefaultInvariant_2() { return static_cast<int32_t>(offsetof(Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_StaticFields, ___DefaultInvariant_2)); }
inline Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 * get_DefaultInvariant_2() const { return ___DefaultInvariant_2; }
inline Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 ** get_address_of_DefaultInvariant_2() { return &___DefaultInvariant_2; }
inline void set_DefaultInvariant_2(Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 * value)
{
___DefaultInvariant_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___DefaultInvariant_2), (void*)value);
}
};
// System.Collections.CompatibleComparer
struct CompatibleComparer_t4BB781C29927336617069035AAC2BE8A84E20929 : public RuntimeObject
{
public:
// System.Collections.IComparer System.Collections.CompatibleComparer::_comparer
RuntimeObject* ____comparer_0;
// System.Collections.IHashCodeProvider System.Collections.CompatibleComparer::_hcp
RuntimeObject* ____hcp_1;
public:
inline static int32_t get_offset_of__comparer_0() { return static_cast<int32_t>(offsetof(CompatibleComparer_t4BB781C29927336617069035AAC2BE8A84E20929, ____comparer_0)); }
inline RuntimeObject* get__comparer_0() const { return ____comparer_0; }
inline RuntimeObject** get_address_of__comparer_0() { return &____comparer_0; }
inline void set__comparer_0(RuntimeObject* value)
{
____comparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____comparer_0), (void*)value);
}
inline static int32_t get_offset_of__hcp_1() { return static_cast<int32_t>(offsetof(CompatibleComparer_t4BB781C29927336617069035AAC2BE8A84E20929, ____hcp_1)); }
inline RuntimeObject* get__hcp_1() const { return ____hcp_1; }
inline RuntimeObject** get_address_of__hcp_1() { return &____hcp_1; }
inline void set__hcp_1(RuntimeObject* value)
{
____hcp_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____hcp_1), (void*)value);
}
};
// System.Collections.Generic.CollectionExtensions
struct CollectionExtensions_t47FA6529A1BC12FBAFB36A7B40AD7CACCC7F37F2 : public RuntimeObject
{
public:
public:
};
// System.Collections.Generic.Dictionary`2<System.String,Mono.Globalization.Unicode.SimpleCollator>
struct Dictionary_2_t33B68634E5ACFD2A5AE4981521BFC06805BE18BB : public RuntimeObject
{
public:
// System.Int32[] System.Collections.Generic.Dictionary`2::buckets
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0;
// System.Collections.Generic.Dictionary`2_Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries
EntryU5BU5D_t076278E3CBC02F34F41F3B59FE5511657DF3091D* ___entries_1;
// System.Int32 System.Collections.Generic.Dictionary`2::count
int32_t ___count_2;
// System.Int32 System.Collections.Generic.Dictionary`2::version
int32_t ___version_3;
// System.Int32 System.Collections.Generic.Dictionary`2::freeList
int32_t ___freeList_4;
// System.Int32 System.Collections.Generic.Dictionary`2::freeCount
int32_t ___freeCount_5;
// System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer
RuntimeObject* ___comparer_6;
// System.Collections.Generic.Dictionary`2_KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys
KeyCollection_t2C7C653A7F7E6A2DB2621D56B913C89985FDDACE * ___keys_7;
// System.Collections.Generic.Dictionary`2_ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values
ValueCollection_t289884E93A47CB153E2619D1FA8E8065E6486A73 * ___values_8;
// System.Object System.Collections.Generic.Dictionary`2::_syncRoot
RuntimeObject * ____syncRoot_9;
public:
inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_t33B68634E5ACFD2A5AE4981521BFC06805BE18BB, ___buckets_0)); }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; }
inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value)
{
___buckets_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value);
}
inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t33B68634E5ACFD2A5AE4981521BFC06805BE18BB, ___entries_1)); }
inline EntryU5BU5D_t076278E3CBC02F34F41F3B59FE5511657DF3091D* get_entries_1() const { return ___entries_1; }
inline EntryU5BU5D_t076278E3CBC02F34F41F3B59FE5511657DF3091D** get_address_of_entries_1() { return &___entries_1; }
inline void set_entries_1(EntryU5BU5D_t076278E3CBC02F34F41F3B59FE5511657DF3091D* value)
{
___entries_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value);
}
inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_t33B68634E5ACFD2A5AE4981521BFC06805BE18BB, ___count_2)); }
inline int32_t get_count_2() const { return ___count_2; }
inline int32_t* get_address_of_count_2() { return &___count_2; }
inline void set_count_2(int32_t value)
{
___count_2 = value;
}
inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_t33B68634E5ACFD2A5AE4981521BFC06805BE18BB, ___version_3)); }
inline int32_t get_version_3() const { return ___version_3; }
inline int32_t* get_address_of_version_3() { return &___version_3; }
inline void set_version_3(int32_t value)
{
___version_3 = value;
}
inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_t33B68634E5ACFD2A5AE4981521BFC06805BE18BB, ___freeList_4)); }
inline int32_t get_freeList_4() const { return ___freeList_4; }
inline int32_t* get_address_of_freeList_4() { return &___freeList_4; }
inline void set_freeList_4(int32_t value)
{
___freeList_4 = value;
}
inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_t33B68634E5ACFD2A5AE4981521BFC06805BE18BB, ___freeCount_5)); }
inline int32_t get_freeCount_5() const { return ___freeCount_5; }
inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; }
inline void set_freeCount_5(int32_t value)
{
___freeCount_5 = value;
}
inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_t33B68634E5ACFD2A5AE4981521BFC06805BE18BB, ___comparer_6)); }
inline RuntimeObject* get_comparer_6() const { return ___comparer_6; }
inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; }
inline void set_comparer_6(RuntimeObject* value)
{
___comparer_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value);
}
inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t33B68634E5ACFD2A5AE4981521BFC06805BE18BB, ___keys_7)); }
inline KeyCollection_t2C7C653A7F7E6A2DB2621D56B913C89985FDDACE * get_keys_7() const { return ___keys_7; }
inline KeyCollection_t2C7C653A7F7E6A2DB2621D56B913C89985FDDACE ** get_address_of_keys_7() { return &___keys_7; }
inline void set_keys_7(KeyCollection_t2C7C653A7F7E6A2DB2621D56B913C89985FDDACE * value)
{
___keys_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value);
}
inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t33B68634E5ACFD2A5AE4981521BFC06805BE18BB, ___values_8)); }
inline ValueCollection_t289884E93A47CB153E2619D1FA8E8065E6486A73 * get_values_8() const { return ___values_8; }
inline ValueCollection_t289884E93A47CB153E2619D1FA8E8065E6486A73 ** get_address_of_values_8() { return &___values_8; }
inline void set_values_8(ValueCollection_t289884E93A47CB153E2619D1FA8E8065E6486A73 * value)
{
___values_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value);
}
inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t33B68634E5ACFD2A5AE4981521BFC06805BE18BB, ____syncRoot_9)); }
inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; }
inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; }
inline void set__syncRoot_9(RuntimeObject * value)
{
____syncRoot_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value);
}
};
// System.Collections.Generic.EqualityComparer`1<System.Byte>
struct EqualityComparer_1_t315BFEDB969101238C563049FF00D5CB9F8D6509 : public RuntimeObject
{
public:
public:
};
struct EqualityComparer_1_t315BFEDB969101238C563049FF00D5CB9F8D6509_StaticFields
{
public:
// System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer
EqualityComparer_1_t315BFEDB969101238C563049FF00D5CB9F8D6509 * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t315BFEDB969101238C563049FF00D5CB9F8D6509_StaticFields, ___defaultComparer_0)); }
inline EqualityComparer_1_t315BFEDB969101238C563049FF00D5CB9F8D6509 * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline EqualityComparer_1_t315BFEDB969101238C563049FF00D5CB9F8D6509 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(EqualityComparer_1_t315BFEDB969101238C563049FF00D5CB9F8D6509 * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.List`1<System.Exception>
struct List_1_t433251677FFAE6CDCEC92C181CEA282328DA13EB : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
ExceptionU5BU5D_t683CE8E24950657A060E640B8956913D867F952D* ____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_t433251677FFAE6CDCEC92C181CEA282328DA13EB, ____items_1)); }
inline ExceptionU5BU5D_t683CE8E24950657A060E640B8956913D867F952D* get__items_1() const { return ____items_1; }
inline ExceptionU5BU5D_t683CE8E24950657A060E640B8956913D867F952D** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(ExceptionU5BU5D_t683CE8E24950657A060E640B8956913D867F952D* 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_t433251677FFAE6CDCEC92C181CEA282328DA13EB, ____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_t433251677FFAE6CDCEC92C181CEA282328DA13EB, ____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_t433251677FFAE6CDCEC92C181CEA282328DA13EB, ____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_t433251677FFAE6CDCEC92C181CEA282328DA13EB_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
ExceptionU5BU5D_t683CE8E24950657A060E640B8956913D867F952D* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t433251677FFAE6CDCEC92C181CEA282328DA13EB_StaticFields, ____emptyArray_5)); }
inline ExceptionU5BU5D_t683CE8E24950657A060E640B8956913D867F952D* get__emptyArray_5() const { return ____emptyArray_5; }
inline ExceptionU5BU5D_t683CE8E24950657A060E640B8956913D867F952D** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(ExceptionU5BU5D_t683CE8E24950657A060E640B8956913D867F952D* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<System.Object>
struct List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ____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_t3F94120C77410A62EAE48421CF166B83AB95A2F5, ____items_1)); }
inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get__items_1() const { return ____items_1; }
inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* 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_t3F94120C77410A62EAE48421CF166B83AB95A2F5, ____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_t3F94120C77410A62EAE48421CF166B83AB95A2F5, ____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_t3F94120C77410A62EAE48421CF166B83AB95A2F5, ____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_t3F94120C77410A62EAE48421CF166B83AB95A2F5_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5_StaticFields, ____emptyArray_5)); }
inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get__emptyArray_5() const { return ____emptyArray_5; }
inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Stack
struct Stack_tF6DD42A42C129B014D4223010F1E0FFBECBDC3B8 : public RuntimeObject
{
public:
// System.Object[] System.Collections.Stack::_array
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ____array_0;
// System.Int32 System.Collections.Stack::_size
int32_t ____size_1;
// System.Int32 System.Collections.Stack::_version
int32_t ____version_2;
public:
inline static int32_t get_offset_of__array_0() { return static_cast<int32_t>(offsetof(Stack_tF6DD42A42C129B014D4223010F1E0FFBECBDC3B8, ____array_0)); }
inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get__array_0() const { return ____array_0; }
inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of__array_0() { return &____array_0; }
inline void set__array_0(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value)
{
____array_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____array_0), (void*)value);
}
inline static int32_t get_offset_of__size_1() { return static_cast<int32_t>(offsetof(Stack_tF6DD42A42C129B014D4223010F1E0FFBECBDC3B8, ____size_1)); }
inline int32_t get__size_1() const { return ____size_1; }
inline int32_t* get_address_of__size_1() { return &____size_1; }
inline void set__size_1(int32_t value)
{
____size_1 = value;
}
inline static int32_t get_offset_of__version_2() { return static_cast<int32_t>(offsetof(Stack_tF6DD42A42C129B014D4223010F1E0FFBECBDC3B8, ____version_2)); }
inline int32_t get__version_2() const { return ____version_2; }
inline int32_t* get_address_of__version_2() { return &____version_2; }
inline void set__version_2(int32_t value)
{
____version_2 = value;
}
};
// System.CompatibilitySwitches
struct CompatibilitySwitches_tC460ACEE669B13F7C9D2FEA284D77D8B4AF9616E : public RuntimeObject
{
public:
public:
};
struct CompatibilitySwitches_tC460ACEE669B13F7C9D2FEA284D77D8B4AF9616E_StaticFields
{
public:
// System.Boolean System.CompatibilitySwitches::IsAppEarlierThanSilverlight4
bool ___IsAppEarlierThanSilverlight4_0;
// System.Boolean System.CompatibilitySwitches::IsAppEarlierThanWindowsPhone8
bool ___IsAppEarlierThanWindowsPhone8_1;
public:
inline static int32_t get_offset_of_IsAppEarlierThanSilverlight4_0() { return static_cast<int32_t>(offsetof(CompatibilitySwitches_tC460ACEE669B13F7C9D2FEA284D77D8B4AF9616E_StaticFields, ___IsAppEarlierThanSilverlight4_0)); }
inline bool get_IsAppEarlierThanSilverlight4_0() const { return ___IsAppEarlierThanSilverlight4_0; }
inline bool* get_address_of_IsAppEarlierThanSilverlight4_0() { return &___IsAppEarlierThanSilverlight4_0; }
inline void set_IsAppEarlierThanSilverlight4_0(bool value)
{
___IsAppEarlierThanSilverlight4_0 = value;
}
inline static int32_t get_offset_of_IsAppEarlierThanWindowsPhone8_1() { return static_cast<int32_t>(offsetof(CompatibilitySwitches_tC460ACEE669B13F7C9D2FEA284D77D8B4AF9616E_StaticFields, ___IsAppEarlierThanWindowsPhone8_1)); }
inline bool get_IsAppEarlierThanWindowsPhone8_1() const { return ___IsAppEarlierThanWindowsPhone8_1; }
inline bool* get_address_of_IsAppEarlierThanWindowsPhone8_1() { return &___IsAppEarlierThanWindowsPhone8_1; }
inline void set_IsAppEarlierThanWindowsPhone8_1(bool value)
{
___IsAppEarlierThanWindowsPhone8_1 = value;
}
};
// System.ConsoleDriver
struct ConsoleDriver_tFC1E81F456E9440AB760A599AA5BB301BBD12B11 : public RuntimeObject
{
public:
public:
};
struct ConsoleDriver_tFC1E81F456E9440AB760A599AA5BB301BBD12B11_StaticFields
{
public:
// System.IConsoleDriver System.ConsoleDriver::driver
RuntimeObject* ___driver_0;
// System.Boolean System.ConsoleDriver::is_console
bool ___is_console_1;
// System.Boolean System.ConsoleDriver::called_isatty
bool ___called_isatty_2;
public:
inline static int32_t get_offset_of_driver_0() { return static_cast<int32_t>(offsetof(ConsoleDriver_tFC1E81F456E9440AB760A599AA5BB301BBD12B11_StaticFields, ___driver_0)); }
inline RuntimeObject* get_driver_0() const { return ___driver_0; }
inline RuntimeObject** get_address_of_driver_0() { return &___driver_0; }
inline void set_driver_0(RuntimeObject* value)
{
___driver_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___driver_0), (void*)value);
}
inline static int32_t get_offset_of_is_console_1() { return static_cast<int32_t>(offsetof(ConsoleDriver_tFC1E81F456E9440AB760A599AA5BB301BBD12B11_StaticFields, ___is_console_1)); }
inline bool get_is_console_1() const { return ___is_console_1; }
inline bool* get_address_of_is_console_1() { return &___is_console_1; }
inline void set_is_console_1(bool value)
{
___is_console_1 = value;
}
inline static int32_t get_offset_of_called_isatty_2() { return static_cast<int32_t>(offsetof(ConsoleDriver_tFC1E81F456E9440AB760A599AA5BB301BBD12B11_StaticFields, ___called_isatty_2)); }
inline bool get_called_isatty_2() const { return ___called_isatty_2; }
inline bool* get_address_of_called_isatty_2() { return &___called_isatty_2; }
inline void set_called_isatty_2(bool value)
{
___called_isatty_2 = value;
}
};
// System.EmptyArray`1<System.Object>
struct EmptyArray_1_tBF73225DFA890366D579424FE8F40073BF9FBAD4 : public RuntimeObject
{
public:
public:
};
struct EmptyArray_1_tBF73225DFA890366D579424FE8F40073BF9FBAD4_StaticFields
{
public:
// T[] System.EmptyArray`1::Value
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyArray_1_tBF73225DFA890366D579424FE8F40073BF9FBAD4_StaticFields, ___Value_0)); }
inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get_Value_0() const { return ___Value_0; }
inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Globalization.Bootstring
struct Bootstring_t39E09D4C4B98FECD2C042751FA27A6FA98BB3882 : public RuntimeObject
{
public:
// System.Char System.Globalization.Bootstring::delimiter
Il2CppChar ___delimiter_0;
// System.Int32 System.Globalization.Bootstring::base_num
int32_t ___base_num_1;
// System.Int32 System.Globalization.Bootstring::tmin
int32_t ___tmin_2;
// System.Int32 System.Globalization.Bootstring::tmax
int32_t ___tmax_3;
// System.Int32 System.Globalization.Bootstring::skew
int32_t ___skew_4;
// System.Int32 System.Globalization.Bootstring::damp
int32_t ___damp_5;
// System.Int32 System.Globalization.Bootstring::initial_bias
int32_t ___initial_bias_6;
// System.Int32 System.Globalization.Bootstring::initial_n
int32_t ___initial_n_7;
public:
inline static int32_t get_offset_of_delimiter_0() { return static_cast<int32_t>(offsetof(Bootstring_t39E09D4C4B98FECD2C042751FA27A6FA98BB3882, ___delimiter_0)); }
inline Il2CppChar get_delimiter_0() const { return ___delimiter_0; }
inline Il2CppChar* get_address_of_delimiter_0() { return &___delimiter_0; }
inline void set_delimiter_0(Il2CppChar value)
{
___delimiter_0 = value;
}
inline static int32_t get_offset_of_base_num_1() { return static_cast<int32_t>(offsetof(Bootstring_t39E09D4C4B98FECD2C042751FA27A6FA98BB3882, ___base_num_1)); }
inline int32_t get_base_num_1() const { return ___base_num_1; }
inline int32_t* get_address_of_base_num_1() { return &___base_num_1; }
inline void set_base_num_1(int32_t value)
{
___base_num_1 = value;
}
inline static int32_t get_offset_of_tmin_2() { return static_cast<int32_t>(offsetof(Bootstring_t39E09D4C4B98FECD2C042751FA27A6FA98BB3882, ___tmin_2)); }
inline int32_t get_tmin_2() const { return ___tmin_2; }
inline int32_t* get_address_of_tmin_2() { return &___tmin_2; }
inline void set_tmin_2(int32_t value)
{
___tmin_2 = value;
}
inline static int32_t get_offset_of_tmax_3() { return static_cast<int32_t>(offsetof(Bootstring_t39E09D4C4B98FECD2C042751FA27A6FA98BB3882, ___tmax_3)); }
inline int32_t get_tmax_3() const { return ___tmax_3; }
inline int32_t* get_address_of_tmax_3() { return &___tmax_3; }
inline void set_tmax_3(int32_t value)
{
___tmax_3 = value;
}
inline static int32_t get_offset_of_skew_4() { return static_cast<int32_t>(offsetof(Bootstring_t39E09D4C4B98FECD2C042751FA27A6FA98BB3882, ___skew_4)); }
inline int32_t get_skew_4() const { return ___skew_4; }
inline int32_t* get_address_of_skew_4() { return &___skew_4; }
inline void set_skew_4(int32_t value)
{
___skew_4 = value;
}
inline static int32_t get_offset_of_damp_5() { return static_cast<int32_t>(offsetof(Bootstring_t39E09D4C4B98FECD2C042751FA27A6FA98BB3882, ___damp_5)); }
inline int32_t get_damp_5() const { return ___damp_5; }
inline int32_t* get_address_of_damp_5() { return &___damp_5; }
inline void set_damp_5(int32_t value)
{
___damp_5 = value;
}
inline static int32_t get_offset_of_initial_bias_6() { return static_cast<int32_t>(offsetof(Bootstring_t39E09D4C4B98FECD2C042751FA27A6FA98BB3882, ___initial_bias_6)); }
inline int32_t get_initial_bias_6() const { return ___initial_bias_6; }
inline int32_t* get_address_of_initial_bias_6() { return &___initial_bias_6; }
inline void set_initial_bias_6(int32_t value)
{
___initial_bias_6 = value;
}
inline static int32_t get_offset_of_initial_n_7() { return static_cast<int32_t>(offsetof(Bootstring_t39E09D4C4B98FECD2C042751FA27A6FA98BB3882, ___initial_n_7)); }
inline int32_t get_initial_n_7() const { return ___initial_n_7; }
inline int32_t* get_address_of_initial_n_7() { return &___initial_n_7; }
inline void set_initial_n_7(int32_t value)
{
___initial_n_7 = value;
}
};
// System.Globalization.Calendar
struct Calendar_t3D638AEAB45F029DF47138EDA4CF9A7CBBB1C32A : public RuntimeObject
{
public:
// System.Int32 System.Globalization.Calendar::m_currentEraValue
int32_t ___m_currentEraValue_0;
// System.Boolean System.Globalization.Calendar::m_isReadOnly
bool ___m_isReadOnly_1;
// System.Int32 System.Globalization.Calendar::twoDigitYearMax
int32_t ___twoDigitYearMax_2;
public:
inline static int32_t get_offset_of_m_currentEraValue_0() { return static_cast<int32_t>(offsetof(Calendar_t3D638AEAB45F029DF47138EDA4CF9A7CBBB1C32A, ___m_currentEraValue_0)); }
inline int32_t get_m_currentEraValue_0() const { return ___m_currentEraValue_0; }
inline int32_t* get_address_of_m_currentEraValue_0() { return &___m_currentEraValue_0; }
inline void set_m_currentEraValue_0(int32_t value)
{
___m_currentEraValue_0 = value;
}
inline static int32_t get_offset_of_m_isReadOnly_1() { return static_cast<int32_t>(offsetof(Calendar_t3D638AEAB45F029DF47138EDA4CF9A7CBBB1C32A, ___m_isReadOnly_1)); }
inline bool get_m_isReadOnly_1() const { return ___m_isReadOnly_1; }
inline bool* get_address_of_m_isReadOnly_1() { return &___m_isReadOnly_1; }
inline void set_m_isReadOnly_1(bool value)
{
___m_isReadOnly_1 = value;
}
inline static int32_t get_offset_of_twoDigitYearMax_2() { return static_cast<int32_t>(offsetof(Calendar_t3D638AEAB45F029DF47138EDA4CF9A7CBBB1C32A, ___twoDigitYearMax_2)); }
inline int32_t get_twoDigitYearMax_2() const { return ___twoDigitYearMax_2; }
inline int32_t* get_address_of_twoDigitYearMax_2() { return &___twoDigitYearMax_2; }
inline void set_twoDigitYearMax_2(int32_t value)
{
___twoDigitYearMax_2 = value;
}
};
// System.Globalization.CalendarData
struct CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4 : public RuntimeObject
{
public:
// System.String System.Globalization.CalendarData::sNativeName
String_t* ___sNativeName_1;
// System.String[] System.Globalization.CalendarData::saShortDates
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___saShortDates_2;
// System.String[] System.Globalization.CalendarData::saYearMonths
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___saYearMonths_3;
// System.String[] System.Globalization.CalendarData::saLongDates
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___saLongDates_4;
// System.String System.Globalization.CalendarData::sMonthDay
String_t* ___sMonthDay_5;
// System.String[] System.Globalization.CalendarData::saEraNames
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___saEraNames_6;
// System.String[] System.Globalization.CalendarData::saAbbrevEraNames
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___saAbbrevEraNames_7;
// System.String[] System.Globalization.CalendarData::saAbbrevEnglishEraNames
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___saAbbrevEnglishEraNames_8;
// System.String[] System.Globalization.CalendarData::saDayNames
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___saDayNames_9;
// System.String[] System.Globalization.CalendarData::saAbbrevDayNames
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___saAbbrevDayNames_10;
// System.String[] System.Globalization.CalendarData::saSuperShortDayNames
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___saSuperShortDayNames_11;
// System.String[] System.Globalization.CalendarData::saMonthNames
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___saMonthNames_12;
// System.String[] System.Globalization.CalendarData::saAbbrevMonthNames
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___saAbbrevMonthNames_13;
// System.String[] System.Globalization.CalendarData::saMonthGenitiveNames
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___saMonthGenitiveNames_14;
// System.String[] System.Globalization.CalendarData::saAbbrevMonthGenitiveNames
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___saAbbrevMonthGenitiveNames_15;
// System.String[] System.Globalization.CalendarData::saLeapYearMonthNames
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___saLeapYearMonthNames_16;
// System.Int32 System.Globalization.CalendarData::iTwoDigitYearMax
int32_t ___iTwoDigitYearMax_17;
// System.Int32 System.Globalization.CalendarData::iCurrentEra
int32_t ___iCurrentEra_18;
// System.Boolean System.Globalization.CalendarData::bUseUserOverrides
bool ___bUseUserOverrides_19;
public:
inline static int32_t get_offset_of_sNativeName_1() { return static_cast<int32_t>(offsetof(CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4, ___sNativeName_1)); }
inline String_t* get_sNativeName_1() const { return ___sNativeName_1; }
inline String_t** get_address_of_sNativeName_1() { return &___sNativeName_1; }
inline void set_sNativeName_1(String_t* value)
{
___sNativeName_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___sNativeName_1), (void*)value);
}
inline static int32_t get_offset_of_saShortDates_2() { return static_cast<int32_t>(offsetof(CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4, ___saShortDates_2)); }
inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get_saShortDates_2() const { return ___saShortDates_2; }
inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of_saShortDates_2() { return &___saShortDates_2; }
inline void set_saShortDates_2(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value)
{
___saShortDates_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___saShortDates_2), (void*)value);
}
inline static int32_t get_offset_of_saYearMonths_3() { return static_cast<int32_t>(offsetof(CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4, ___saYearMonths_3)); }
inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get_saYearMonths_3() const { return ___saYearMonths_3; }
inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of_saYearMonths_3() { return &___saYearMonths_3; }
inline void set_saYearMonths_3(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value)
{
___saYearMonths_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___saYearMonths_3), (void*)value);
}
inline static int32_t get_offset_of_saLongDates_4() { return static_cast<int32_t>(offsetof(CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4, ___saLongDates_4)); }
inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get_saLongDates_4() const { return ___saLongDates_4; }
inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of_saLongDates_4() { return &___saLongDates_4; }
inline void set_saLongDates_4(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value)
{
___saLongDates_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___saLongDates_4), (void*)value);
}
inline static int32_t get_offset_of_sMonthDay_5() { return static_cast<int32_t>(offsetof(CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4, ___sMonthDay_5)); }
inline String_t* get_sMonthDay_5() const { return ___sMonthDay_5; }
inline String_t** get_address_of_sMonthDay_5() { return &___sMonthDay_5; }
inline void set_sMonthDay_5(String_t* value)
{
___sMonthDay_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___sMonthDay_5), (void*)value);
}
inline static int32_t get_offset_of_saEraNames_6() { return static_cast<int32_t>(offsetof(CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4, ___saEraNames_6)); }
inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get_saEraNames_6() const { return ___saEraNames_6; }
inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of_saEraNames_6() { return &___saEraNames_6; }
inline void set_saEraNames_6(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value)
{
___saEraNames_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___saEraNames_6), (void*)value);
}
inline static int32_t get_offset_of_saAbbrevEraNames_7() { return static_cast<int32_t>(offsetof(CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4, ___saAbbrevEraNames_7)); }
inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get_saAbbrevEraNames_7() const { return ___saAbbrevEraNames_7; }
inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of_saAbbrevEraNames_7() { return &___saAbbrevEraNames_7; }
inline void set_saAbbrevEraNames_7(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value)
{
___saAbbrevEraNames_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___saAbbrevEraNames_7), (void*)value);
}
inline static int32_t get_offset_of_saAbbrevEnglishEraNames_8() { return static_cast<int32_t>(offsetof(CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4, ___saAbbrevEnglishEraNames_8)); }
inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get_saAbbrevEnglishEraNames_8() const { return ___saAbbrevEnglishEraNames_8; }
inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of_saAbbrevEnglishEraNames_8() { return &___saAbbrevEnglishEraNames_8; }
inline void set_saAbbrevEnglishEraNames_8(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value)
{
___saAbbrevEnglishEraNames_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___saAbbrevEnglishEraNames_8), (void*)value);
}
inline static int32_t get_offset_of_saDayNames_9() { return static_cast<int32_t>(offsetof(CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4, ___saDayNames_9)); }
inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get_saDayNames_9() const { return ___saDayNames_9; }
inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of_saDayNames_9() { return &___saDayNames_9; }
inline void set_saDayNames_9(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value)
{
___saDayNames_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___saDayNames_9), (void*)value);
}
inline static int32_t get_offset_of_saAbbrevDayNames_10() { return static_cast<int32_t>(offsetof(CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4, ___saAbbrevDayNames_10)); }
inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get_saAbbrevDayNames_10() const { return ___saAbbrevDayNames_10; }
inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of_saAbbrevDayNames_10() { return &___saAbbrevDayNames_10; }
inline void set_saAbbrevDayNames_10(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value)
{
___saAbbrevDayNames_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___saAbbrevDayNames_10), (void*)value);
}
inline static int32_t get_offset_of_saSuperShortDayNames_11() { return static_cast<int32_t>(offsetof(CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4, ___saSuperShortDayNames_11)); }
inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get_saSuperShortDayNames_11() const { return ___saSuperShortDayNames_11; }
inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of_saSuperShortDayNames_11() { return &___saSuperShortDayNames_11; }
inline void set_saSuperShortDayNames_11(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value)
{
___saSuperShortDayNames_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___saSuperShortDayNames_11), (void*)value);
}
inline static int32_t get_offset_of_saMonthNames_12() { return static_cast<int32_t>(offsetof(CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4, ___saMonthNames_12)); }
inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get_saMonthNames_12() const { return ___saMonthNames_12; }
inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of_saMonthNames_12() { return &___saMonthNames_12; }
inline void set_saMonthNames_12(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value)
{
___saMonthNames_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&___saMonthNames_12), (void*)value);
}
inline static int32_t get_offset_of_saAbbrevMonthNames_13() { return static_cast<int32_t>(offsetof(CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4, ___saAbbrevMonthNames_13)); }
inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get_saAbbrevMonthNames_13() const { return ___saAbbrevMonthNames_13; }
inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of_saAbbrevMonthNames_13() { return &___saAbbrevMonthNames_13; }
inline void set_saAbbrevMonthNames_13(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value)
{
___saAbbrevMonthNames_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&___saAbbrevMonthNames_13), (void*)value);
}
inline static int32_t get_offset_of_saMonthGenitiveNames_14() { return static_cast<int32_t>(offsetof(CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4, ___saMonthGenitiveNames_14)); }
inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get_saMonthGenitiveNames_14() const { return ___saMonthGenitiveNames_14; }
inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of_saMonthGenitiveNames_14() { return &___saMonthGenitiveNames_14; }
inline void set_saMonthGenitiveNames_14(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value)
{
___saMonthGenitiveNames_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&___saMonthGenitiveNames_14), (void*)value);
}
inline static int32_t get_offset_of_saAbbrevMonthGenitiveNames_15() { return static_cast<int32_t>(offsetof(CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4, ___saAbbrevMonthGenitiveNames_15)); }
inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get_saAbbrevMonthGenitiveNames_15() const { return ___saAbbrevMonthGenitiveNames_15; }
inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of_saAbbrevMonthGenitiveNames_15() { return &___saAbbrevMonthGenitiveNames_15; }
inline void set_saAbbrevMonthGenitiveNames_15(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value)
{
___saAbbrevMonthGenitiveNames_15 = value;
Il2CppCodeGenWriteBarrier((void**)(&___saAbbrevMonthGenitiveNames_15), (void*)value);
}
inline static int32_t get_offset_of_saLeapYearMonthNames_16() { return static_cast<int32_t>(offsetof(CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4, ___saLeapYearMonthNames_16)); }
inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get_saLeapYearMonthNames_16() const { return ___saLeapYearMonthNames_16; }
inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of_saLeapYearMonthNames_16() { return &___saLeapYearMonthNames_16; }
inline void set_saLeapYearMonthNames_16(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value)
{
___saLeapYearMonthNames_16 = value;
Il2CppCodeGenWriteBarrier((void**)(&___saLeapYearMonthNames_16), (void*)value);
}
inline static int32_t get_offset_of_iTwoDigitYearMax_17() { return static_cast<int32_t>(offsetof(CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4, ___iTwoDigitYearMax_17)); }
inline int32_t get_iTwoDigitYearMax_17() const { return ___iTwoDigitYearMax_17; }
inline int32_t* get_address_of_iTwoDigitYearMax_17() { return &___iTwoDigitYearMax_17; }
inline void set_iTwoDigitYearMax_17(int32_t value)
{
___iTwoDigitYearMax_17 = value;
}
inline static int32_t get_offset_of_iCurrentEra_18() { return static_cast<int32_t>(offsetof(CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4, ___iCurrentEra_18)); }
inline int32_t get_iCurrentEra_18() const { return ___iCurrentEra_18; }
inline int32_t* get_address_of_iCurrentEra_18() { return &___iCurrentEra_18; }
inline void set_iCurrentEra_18(int32_t value)
{
___iCurrentEra_18 = value;
}
inline static int32_t get_offset_of_bUseUserOverrides_19() { return static_cast<int32_t>(offsetof(CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4, ___bUseUserOverrides_19)); }
inline bool get_bUseUserOverrides_19() const { return ___bUseUserOverrides_19; }
inline bool* get_address_of_bUseUserOverrides_19() { return &___bUseUserOverrides_19; }
inline void set_bUseUserOverrides_19(bool value)
{
___bUseUserOverrides_19 = value;
}
};
struct CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4_StaticFields
{
public:
// System.Globalization.CalendarData System.Globalization.CalendarData::Invariant
CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4 * ___Invariant_20;
public:
inline static int32_t get_offset_of_Invariant_20() { return static_cast<int32_t>(offsetof(CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4_StaticFields, ___Invariant_20)); }
inline CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4 * get_Invariant_20() const { return ___Invariant_20; }
inline CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4 ** get_address_of_Invariant_20() { return &___Invariant_20; }
inline void set_Invariant_20(CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4 * value)
{
___Invariant_20 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Invariant_20), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Globalization.CalendarData
struct CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4_marshaled_pinvoke
{
char* ___sNativeName_1;
char** ___saShortDates_2;
char** ___saYearMonths_3;
char** ___saLongDates_4;
char* ___sMonthDay_5;
char** ___saEraNames_6;
char** ___saAbbrevEraNames_7;
char** ___saAbbrevEnglishEraNames_8;
char** ___saDayNames_9;
char** ___saAbbrevDayNames_10;
char** ___saSuperShortDayNames_11;
char** ___saMonthNames_12;
char** ___saAbbrevMonthNames_13;
char** ___saMonthGenitiveNames_14;
char** ___saAbbrevMonthGenitiveNames_15;
char** ___saLeapYearMonthNames_16;
int32_t ___iTwoDigitYearMax_17;
int32_t ___iCurrentEra_18;
int32_t ___bUseUserOverrides_19;
};
// Native definition for COM marshalling of System.Globalization.CalendarData
struct CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4_marshaled_com
{
Il2CppChar* ___sNativeName_1;
Il2CppChar** ___saShortDates_2;
Il2CppChar** ___saYearMonths_3;
Il2CppChar** ___saLongDates_4;
Il2CppChar* ___sMonthDay_5;
Il2CppChar** ___saEraNames_6;
Il2CppChar** ___saAbbrevEraNames_7;
Il2CppChar** ___saAbbrevEnglishEraNames_8;
Il2CppChar** ___saDayNames_9;
Il2CppChar** ___saAbbrevDayNames_10;
Il2CppChar** ___saSuperShortDayNames_11;
Il2CppChar** ___saMonthNames_12;
Il2CppChar** ___saAbbrevMonthNames_13;
Il2CppChar** ___saMonthGenitiveNames_14;
Il2CppChar** ___saAbbrevMonthGenitiveNames_15;
Il2CppChar** ___saLeapYearMonthNames_16;
int32_t ___iTwoDigitYearMax_17;
int32_t ___iCurrentEra_18;
int32_t ___bUseUserOverrides_19;
};
// System.Globalization.CharUnicodeInfo
struct CharUnicodeInfo_t9D4692B295E2A9DA68C289734E499AE3F4B41876 : public RuntimeObject
{
public:
public:
};
struct CharUnicodeInfo_t9D4692B295E2A9DA68C289734E499AE3F4B41876_StaticFields
{
public:
// System.UInt16[] System.Globalization.CharUnicodeInfo::s_pCategoryLevel1Index
UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67* ___s_pCategoryLevel1Index_0;
// System.Byte[] System.Globalization.CharUnicodeInfo::s_pCategoriesValue
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___s_pCategoriesValue_1;
// System.UInt16[] System.Globalization.CharUnicodeInfo::s_pNumericLevel1Index
UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67* ___s_pNumericLevel1Index_2;
// System.Byte[] System.Globalization.CharUnicodeInfo::s_pNumericValues
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___s_pNumericValues_3;
// System.UInt16[] System.Globalization.CharUnicodeInfo::s_pDigitValues
UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67* ___s_pDigitValues_4;
public:
inline static int32_t get_offset_of_s_pCategoryLevel1Index_0() { return static_cast<int32_t>(offsetof(CharUnicodeInfo_t9D4692B295E2A9DA68C289734E499AE3F4B41876_StaticFields, ___s_pCategoryLevel1Index_0)); }
inline UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67* get_s_pCategoryLevel1Index_0() const { return ___s_pCategoryLevel1Index_0; }
inline UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67** get_address_of_s_pCategoryLevel1Index_0() { return &___s_pCategoryLevel1Index_0; }
inline void set_s_pCategoryLevel1Index_0(UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67* value)
{
___s_pCategoryLevel1Index_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_pCategoryLevel1Index_0), (void*)value);
}
inline static int32_t get_offset_of_s_pCategoriesValue_1() { return static_cast<int32_t>(offsetof(CharUnicodeInfo_t9D4692B295E2A9DA68C289734E499AE3F4B41876_StaticFields, ___s_pCategoriesValue_1)); }
inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_s_pCategoriesValue_1() const { return ___s_pCategoriesValue_1; }
inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_s_pCategoriesValue_1() { return &___s_pCategoriesValue_1; }
inline void set_s_pCategoriesValue_1(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value)
{
___s_pCategoriesValue_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_pCategoriesValue_1), (void*)value);
}
inline static int32_t get_offset_of_s_pNumericLevel1Index_2() { return static_cast<int32_t>(offsetof(CharUnicodeInfo_t9D4692B295E2A9DA68C289734E499AE3F4B41876_StaticFields, ___s_pNumericLevel1Index_2)); }
inline UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67* get_s_pNumericLevel1Index_2() const { return ___s_pNumericLevel1Index_2; }
inline UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67** get_address_of_s_pNumericLevel1Index_2() { return &___s_pNumericLevel1Index_2; }
inline void set_s_pNumericLevel1Index_2(UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67* value)
{
___s_pNumericLevel1Index_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_pNumericLevel1Index_2), (void*)value);
}
inline static int32_t get_offset_of_s_pNumericValues_3() { return static_cast<int32_t>(offsetof(CharUnicodeInfo_t9D4692B295E2A9DA68C289734E499AE3F4B41876_StaticFields, ___s_pNumericValues_3)); }
inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_s_pNumericValues_3() const { return ___s_pNumericValues_3; }
inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_s_pNumericValues_3() { return &___s_pNumericValues_3; }
inline void set_s_pNumericValues_3(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value)
{
___s_pNumericValues_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_pNumericValues_3), (void*)value);
}
inline static int32_t get_offset_of_s_pDigitValues_4() { return static_cast<int32_t>(offsetof(CharUnicodeInfo_t9D4692B295E2A9DA68C289734E499AE3F4B41876_StaticFields, ___s_pDigitValues_4)); }
inline UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67* get_s_pDigitValues_4() const { return ___s_pDigitValues_4; }
inline UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67** get_address_of_s_pDigitValues_4() { return &___s_pDigitValues_4; }
inline void set_s_pDigitValues_4(UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67* value)
{
___s_pDigitValues_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_pDigitValues_4), (void*)value);
}
};
// System.Globalization.CodePageDataItem
struct CodePageDataItem_t09A62F57142BF0456C8F414898A37E79BCC9F09E : public RuntimeObject
{
public:
// System.Int32 System.Globalization.CodePageDataItem::m_dataIndex
int32_t ___m_dataIndex_0;
// System.Int32 System.Globalization.CodePageDataItem::m_uiFamilyCodePage
int32_t ___m_uiFamilyCodePage_1;
// System.UInt32 System.Globalization.CodePageDataItem::m_flags
uint32_t ___m_flags_2;
public:
inline static int32_t get_offset_of_m_dataIndex_0() { return static_cast<int32_t>(offsetof(CodePageDataItem_t09A62F57142BF0456C8F414898A37E79BCC9F09E, ___m_dataIndex_0)); }
inline int32_t get_m_dataIndex_0() const { return ___m_dataIndex_0; }
inline int32_t* get_address_of_m_dataIndex_0() { return &___m_dataIndex_0; }
inline void set_m_dataIndex_0(int32_t value)
{
___m_dataIndex_0 = value;
}
inline static int32_t get_offset_of_m_uiFamilyCodePage_1() { return static_cast<int32_t>(offsetof(CodePageDataItem_t09A62F57142BF0456C8F414898A37E79BCC9F09E, ___m_uiFamilyCodePage_1)); }
inline int32_t get_m_uiFamilyCodePage_1() const { return ___m_uiFamilyCodePage_1; }
inline int32_t* get_address_of_m_uiFamilyCodePage_1() { return &___m_uiFamilyCodePage_1; }
inline void set_m_uiFamilyCodePage_1(int32_t value)
{
___m_uiFamilyCodePage_1 = value;
}
inline static int32_t get_offset_of_m_flags_2() { return static_cast<int32_t>(offsetof(CodePageDataItem_t09A62F57142BF0456C8F414898A37E79BCC9F09E, ___m_flags_2)); }
inline uint32_t get_m_flags_2() const { return ___m_flags_2; }
inline uint32_t* get_address_of_m_flags_2() { return &___m_flags_2; }
inline void set_m_flags_2(uint32_t value)
{
___m_flags_2 = value;
}
};
struct CodePageDataItem_t09A62F57142BF0456C8F414898A37E79BCC9F09E_StaticFields
{
public:
// System.Char[] System.Globalization.CodePageDataItem::sep
CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___sep_3;
public:
inline static int32_t get_offset_of_sep_3() { return static_cast<int32_t>(offsetof(CodePageDataItem_t09A62F57142BF0456C8F414898A37E79BCC9F09E_StaticFields, ___sep_3)); }
inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get_sep_3() const { return ___sep_3; }
inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of_sep_3() { return &___sep_3; }
inline void set_sep_3(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value)
{
___sep_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___sep_3), (void*)value);
}
};
// System.Globalization.CultureData
struct CultureData_t53CDF1C5F789A28897415891667799420D3C5529 : public RuntimeObject
{
public:
// System.String System.Globalization.CultureData::sAM1159
String_t* ___sAM1159_0;
// System.String System.Globalization.CultureData::sPM2359
String_t* ___sPM2359_1;
// System.String System.Globalization.CultureData::sTimeSeparator
String_t* ___sTimeSeparator_2;
// System.String[] modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureData::saLongTimes
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___saLongTimes_3;
// System.String[] modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureData::saShortTimes
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___saShortTimes_4;
// System.Int32 System.Globalization.CultureData::iFirstDayOfWeek
int32_t ___iFirstDayOfWeek_5;
// System.Int32 System.Globalization.CultureData::iFirstWeekOfYear
int32_t ___iFirstWeekOfYear_6;
// System.Int32[] modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureData::waCalendars
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___waCalendars_7;
// System.Globalization.CalendarData[] System.Globalization.CultureData::calendars
CalendarDataU5BU5D_t92EDE3986BAED27678B4F4140BC955434CFEACC7* ___calendars_8;
// System.String System.Globalization.CultureData::sISO639Language
String_t* ___sISO639Language_9;
// System.String System.Globalization.CultureData::sRealName
String_t* ___sRealName_10;
// System.Boolean System.Globalization.CultureData::bUseOverrides
bool ___bUseOverrides_11;
// System.Int32 System.Globalization.CultureData::calendarId
int32_t ___calendarId_12;
// System.Int32 System.Globalization.CultureData::numberIndex
int32_t ___numberIndex_13;
// System.Int32 System.Globalization.CultureData::iDefaultAnsiCodePage
int32_t ___iDefaultAnsiCodePage_14;
// System.Int32 System.Globalization.CultureData::iDefaultOemCodePage
int32_t ___iDefaultOemCodePage_15;
// System.Int32 System.Globalization.CultureData::iDefaultMacCodePage
int32_t ___iDefaultMacCodePage_16;
// System.Int32 System.Globalization.CultureData::iDefaultEbcdicCodePage
int32_t ___iDefaultEbcdicCodePage_17;
// System.Boolean System.Globalization.CultureData::isRightToLeft
bool ___isRightToLeft_18;
// System.String System.Globalization.CultureData::sListSeparator
String_t* ___sListSeparator_19;
public:
inline static int32_t get_offset_of_sAM1159_0() { return static_cast<int32_t>(offsetof(CultureData_t53CDF1C5F789A28897415891667799420D3C5529, ___sAM1159_0)); }
inline String_t* get_sAM1159_0() const { return ___sAM1159_0; }
inline String_t** get_address_of_sAM1159_0() { return &___sAM1159_0; }
inline void set_sAM1159_0(String_t* value)
{
___sAM1159_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___sAM1159_0), (void*)value);
}
inline static int32_t get_offset_of_sPM2359_1() { return static_cast<int32_t>(offsetof(CultureData_t53CDF1C5F789A28897415891667799420D3C5529, ___sPM2359_1)); }
inline String_t* get_sPM2359_1() const { return ___sPM2359_1; }
inline String_t** get_address_of_sPM2359_1() { return &___sPM2359_1; }
inline void set_sPM2359_1(String_t* value)
{
___sPM2359_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___sPM2359_1), (void*)value);
}
inline static int32_t get_offset_of_sTimeSeparator_2() { return static_cast<int32_t>(offsetof(CultureData_t53CDF1C5F789A28897415891667799420D3C5529, ___sTimeSeparator_2)); }
inline String_t* get_sTimeSeparator_2() const { return ___sTimeSeparator_2; }
inline String_t** get_address_of_sTimeSeparator_2() { return &___sTimeSeparator_2; }
inline void set_sTimeSeparator_2(String_t* value)
{
___sTimeSeparator_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___sTimeSeparator_2), (void*)value);
}
inline static int32_t get_offset_of_saLongTimes_3() { return static_cast<int32_t>(offsetof(CultureData_t53CDF1C5F789A28897415891667799420D3C5529, ___saLongTimes_3)); }
inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get_saLongTimes_3() const { return ___saLongTimes_3; }
inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of_saLongTimes_3() { return &___saLongTimes_3; }
inline void set_saLongTimes_3(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value)
{
___saLongTimes_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___saLongTimes_3), (void*)value);
}
inline static int32_t get_offset_of_saShortTimes_4() { return static_cast<int32_t>(offsetof(CultureData_t53CDF1C5F789A28897415891667799420D3C5529, ___saShortTimes_4)); }
inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get_saShortTimes_4() const { return ___saShortTimes_4; }
inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of_saShortTimes_4() { return &___saShortTimes_4; }
inline void set_saShortTimes_4(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value)
{
___saShortTimes_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___saShortTimes_4), (void*)value);
}
inline static int32_t get_offset_of_iFirstDayOfWeek_5() { return static_cast<int32_t>(offsetof(CultureData_t53CDF1C5F789A28897415891667799420D3C5529, ___iFirstDayOfWeek_5)); }
inline int32_t get_iFirstDayOfWeek_5() const { return ___iFirstDayOfWeek_5; }
inline int32_t* get_address_of_iFirstDayOfWeek_5() { return &___iFirstDayOfWeek_5; }
inline void set_iFirstDayOfWeek_5(int32_t value)
{
___iFirstDayOfWeek_5 = value;
}
inline static int32_t get_offset_of_iFirstWeekOfYear_6() { return static_cast<int32_t>(offsetof(CultureData_t53CDF1C5F789A28897415891667799420D3C5529, ___iFirstWeekOfYear_6)); }
inline int32_t get_iFirstWeekOfYear_6() const { return ___iFirstWeekOfYear_6; }
inline int32_t* get_address_of_iFirstWeekOfYear_6() { return &___iFirstWeekOfYear_6; }
inline void set_iFirstWeekOfYear_6(int32_t value)
{
___iFirstWeekOfYear_6 = value;
}
inline static int32_t get_offset_of_waCalendars_7() { return static_cast<int32_t>(offsetof(CultureData_t53CDF1C5F789A28897415891667799420D3C5529, ___waCalendars_7)); }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_waCalendars_7() const { return ___waCalendars_7; }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_waCalendars_7() { return &___waCalendars_7; }
inline void set_waCalendars_7(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value)
{
___waCalendars_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___waCalendars_7), (void*)value);
}
inline static int32_t get_offset_of_calendars_8() { return static_cast<int32_t>(offsetof(CultureData_t53CDF1C5F789A28897415891667799420D3C5529, ___calendars_8)); }
inline CalendarDataU5BU5D_t92EDE3986BAED27678B4F4140BC955434CFEACC7* get_calendars_8() const { return ___calendars_8; }
inline CalendarDataU5BU5D_t92EDE3986BAED27678B4F4140BC955434CFEACC7** get_address_of_calendars_8() { return &___calendars_8; }
inline void set_calendars_8(CalendarDataU5BU5D_t92EDE3986BAED27678B4F4140BC955434CFEACC7* value)
{
___calendars_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___calendars_8), (void*)value);
}
inline static int32_t get_offset_of_sISO639Language_9() { return static_cast<int32_t>(offsetof(CultureData_t53CDF1C5F789A28897415891667799420D3C5529, ___sISO639Language_9)); }
inline String_t* get_sISO639Language_9() const { return ___sISO639Language_9; }
inline String_t** get_address_of_sISO639Language_9() { return &___sISO639Language_9; }
inline void set_sISO639Language_9(String_t* value)
{
___sISO639Language_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___sISO639Language_9), (void*)value);
}
inline static int32_t get_offset_of_sRealName_10() { return static_cast<int32_t>(offsetof(CultureData_t53CDF1C5F789A28897415891667799420D3C5529, ___sRealName_10)); }
inline String_t* get_sRealName_10() const { return ___sRealName_10; }
inline String_t** get_address_of_sRealName_10() { return &___sRealName_10; }
inline void set_sRealName_10(String_t* value)
{
___sRealName_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___sRealName_10), (void*)value);
}
inline static int32_t get_offset_of_bUseOverrides_11() { return static_cast<int32_t>(offsetof(CultureData_t53CDF1C5F789A28897415891667799420D3C5529, ___bUseOverrides_11)); }
inline bool get_bUseOverrides_11() const { return ___bUseOverrides_11; }
inline bool* get_address_of_bUseOverrides_11() { return &___bUseOverrides_11; }
inline void set_bUseOverrides_11(bool value)
{
___bUseOverrides_11 = value;
}
inline static int32_t get_offset_of_calendarId_12() { return static_cast<int32_t>(offsetof(CultureData_t53CDF1C5F789A28897415891667799420D3C5529, ___calendarId_12)); }
inline int32_t get_calendarId_12() const { return ___calendarId_12; }
inline int32_t* get_address_of_calendarId_12() { return &___calendarId_12; }
inline void set_calendarId_12(int32_t value)
{
___calendarId_12 = value;
}
inline static int32_t get_offset_of_numberIndex_13() { return static_cast<int32_t>(offsetof(CultureData_t53CDF1C5F789A28897415891667799420D3C5529, ___numberIndex_13)); }
inline int32_t get_numberIndex_13() const { return ___numberIndex_13; }
inline int32_t* get_address_of_numberIndex_13() { return &___numberIndex_13; }
inline void set_numberIndex_13(int32_t value)
{
___numberIndex_13 = value;
}
inline static int32_t get_offset_of_iDefaultAnsiCodePage_14() { return static_cast<int32_t>(offsetof(CultureData_t53CDF1C5F789A28897415891667799420D3C5529, ___iDefaultAnsiCodePage_14)); }
inline int32_t get_iDefaultAnsiCodePage_14() const { return ___iDefaultAnsiCodePage_14; }
inline int32_t* get_address_of_iDefaultAnsiCodePage_14() { return &___iDefaultAnsiCodePage_14; }
inline void set_iDefaultAnsiCodePage_14(int32_t value)
{
___iDefaultAnsiCodePage_14 = value;
}
inline static int32_t get_offset_of_iDefaultOemCodePage_15() { return static_cast<int32_t>(offsetof(CultureData_t53CDF1C5F789A28897415891667799420D3C5529, ___iDefaultOemCodePage_15)); }
inline int32_t get_iDefaultOemCodePage_15() const { return ___iDefaultOemCodePage_15; }
inline int32_t* get_address_of_iDefaultOemCodePage_15() { return &___iDefaultOemCodePage_15; }
inline void set_iDefaultOemCodePage_15(int32_t value)
{
___iDefaultOemCodePage_15 = value;
}
inline static int32_t get_offset_of_iDefaultMacCodePage_16() { return static_cast<int32_t>(offsetof(CultureData_t53CDF1C5F789A28897415891667799420D3C5529, ___iDefaultMacCodePage_16)); }
inline int32_t get_iDefaultMacCodePage_16() const { return ___iDefaultMacCodePage_16; }
inline int32_t* get_address_of_iDefaultMacCodePage_16() { return &___iDefaultMacCodePage_16; }
inline void set_iDefaultMacCodePage_16(int32_t value)
{
___iDefaultMacCodePage_16 = value;
}
inline static int32_t get_offset_of_iDefaultEbcdicCodePage_17() { return static_cast<int32_t>(offsetof(CultureData_t53CDF1C5F789A28897415891667799420D3C5529, ___iDefaultEbcdicCodePage_17)); }
inline int32_t get_iDefaultEbcdicCodePage_17() const { return ___iDefaultEbcdicCodePage_17; }
inline int32_t* get_address_of_iDefaultEbcdicCodePage_17() { return &___iDefaultEbcdicCodePage_17; }
inline void set_iDefaultEbcdicCodePage_17(int32_t value)
{
___iDefaultEbcdicCodePage_17 = value;
}
inline static int32_t get_offset_of_isRightToLeft_18() { return static_cast<int32_t>(offsetof(CultureData_t53CDF1C5F789A28897415891667799420D3C5529, ___isRightToLeft_18)); }
inline bool get_isRightToLeft_18() const { return ___isRightToLeft_18; }
inline bool* get_address_of_isRightToLeft_18() { return &___isRightToLeft_18; }
inline void set_isRightToLeft_18(bool value)
{
___isRightToLeft_18 = value;
}
inline static int32_t get_offset_of_sListSeparator_19() { return static_cast<int32_t>(offsetof(CultureData_t53CDF1C5F789A28897415891667799420D3C5529, ___sListSeparator_19)); }
inline String_t* get_sListSeparator_19() const { return ___sListSeparator_19; }
inline String_t** get_address_of_sListSeparator_19() { return &___sListSeparator_19; }
inline void set_sListSeparator_19(String_t* value)
{
___sListSeparator_19 = value;
Il2CppCodeGenWriteBarrier((void**)(&___sListSeparator_19), (void*)value);
}
};
struct CultureData_t53CDF1C5F789A28897415891667799420D3C5529_StaticFields
{
public:
// System.Globalization.CultureData System.Globalization.CultureData::s_Invariant
CultureData_t53CDF1C5F789A28897415891667799420D3C5529 * ___s_Invariant_20;
public:
inline static int32_t get_offset_of_s_Invariant_20() { return static_cast<int32_t>(offsetof(CultureData_t53CDF1C5F789A28897415891667799420D3C5529_StaticFields, ___s_Invariant_20)); }
inline CultureData_t53CDF1C5F789A28897415891667799420D3C5529 * get_s_Invariant_20() const { return ___s_Invariant_20; }
inline CultureData_t53CDF1C5F789A28897415891667799420D3C5529 ** get_address_of_s_Invariant_20() { return &___s_Invariant_20; }
inline void set_s_Invariant_20(CultureData_t53CDF1C5F789A28897415891667799420D3C5529 * value)
{
___s_Invariant_20 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_Invariant_20), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Globalization.CultureData
struct CultureData_t53CDF1C5F789A28897415891667799420D3C5529_marshaled_pinvoke
{
char* ___sAM1159_0;
char* ___sPM2359_1;
char* ___sTimeSeparator_2;
char** ___saLongTimes_3;
char** ___saShortTimes_4;
int32_t ___iFirstDayOfWeek_5;
int32_t ___iFirstWeekOfYear_6;
Il2CppSafeArray/*NONE*/* ___waCalendars_7;
CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4_marshaled_pinvoke** ___calendars_8;
char* ___sISO639Language_9;
char* ___sRealName_10;
int32_t ___bUseOverrides_11;
int32_t ___calendarId_12;
int32_t ___numberIndex_13;
int32_t ___iDefaultAnsiCodePage_14;
int32_t ___iDefaultOemCodePage_15;
int32_t ___iDefaultMacCodePage_16;
int32_t ___iDefaultEbcdicCodePage_17;
int32_t ___isRightToLeft_18;
char* ___sListSeparator_19;
};
// Native definition for COM marshalling of System.Globalization.CultureData
struct CultureData_t53CDF1C5F789A28897415891667799420D3C5529_marshaled_com
{
Il2CppChar* ___sAM1159_0;
Il2CppChar* ___sPM2359_1;
Il2CppChar* ___sTimeSeparator_2;
Il2CppChar** ___saLongTimes_3;
Il2CppChar** ___saShortTimes_4;
int32_t ___iFirstDayOfWeek_5;
int32_t ___iFirstWeekOfYear_6;
Il2CppSafeArray/*NONE*/* ___waCalendars_7;
CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4_marshaled_com** ___calendars_8;
Il2CppChar* ___sISO639Language_9;
Il2CppChar* ___sRealName_10;
int32_t ___bUseOverrides_11;
int32_t ___calendarId_12;
int32_t ___numberIndex_13;
int32_t ___iDefaultAnsiCodePage_14;
int32_t ___iDefaultOemCodePage_15;
int32_t ___iDefaultMacCodePage_16;
int32_t ___iDefaultEbcdicCodePage_17;
int32_t ___isRightToLeft_18;
Il2CppChar* ___sListSeparator_19;
};
// System.Globalization.CultureInfo
struct CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 : public RuntimeObject
{
public:
// System.Boolean System.Globalization.CultureInfo::m_isReadOnly
bool ___m_isReadOnly_3;
// System.Int32 System.Globalization.CultureInfo::cultureID
int32_t ___cultureID_4;
// System.Int32 System.Globalization.CultureInfo::parent_lcid
int32_t ___parent_lcid_5;
// System.Int32 System.Globalization.CultureInfo::datetime_index
int32_t ___datetime_index_6;
// System.Int32 System.Globalization.CultureInfo::number_index
int32_t ___number_index_7;
// System.Int32 System.Globalization.CultureInfo::default_calendar_type
int32_t ___default_calendar_type_8;
// System.Boolean System.Globalization.CultureInfo::m_useUserOverride
bool ___m_useUserOverride_9;
// System.Globalization.NumberFormatInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::numInfo
NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D * ___numInfo_10;
// System.Globalization.DateTimeFormatInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::dateTimeInfo
DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90 * ___dateTimeInfo_11;
// System.Globalization.TextInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::textInfo
TextInfo_tE823D0684BFE8B203501C9B2B38585E8F06E872C * ___textInfo_12;
// System.String System.Globalization.CultureInfo::m_name
String_t* ___m_name_13;
// System.String System.Globalization.CultureInfo::englishname
String_t* ___englishname_14;
// System.String System.Globalization.CultureInfo::nativename
String_t* ___nativename_15;
// System.String System.Globalization.CultureInfo::iso3lang
String_t* ___iso3lang_16;
// System.String System.Globalization.CultureInfo::iso2lang
String_t* ___iso2lang_17;
// System.String System.Globalization.CultureInfo::win3lang
String_t* ___win3lang_18;
// System.String System.Globalization.CultureInfo::territory
String_t* ___territory_19;
// System.String[] System.Globalization.CultureInfo::native_calendar_names
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___native_calendar_names_20;
// System.Globalization.CompareInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::compareInfo
CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * ___compareInfo_21;
// System.Void* System.Globalization.CultureInfo::textinfo_data
void* ___textinfo_data_22;
// System.Int32 System.Globalization.CultureInfo::m_dataItem
int32_t ___m_dataItem_23;
// System.Globalization.Calendar System.Globalization.CultureInfo::calendar
Calendar_t3D638AEAB45F029DF47138EDA4CF9A7CBBB1C32A * ___calendar_24;
// System.Globalization.CultureInfo System.Globalization.CultureInfo::parent_culture
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * ___parent_culture_25;
// System.Boolean System.Globalization.CultureInfo::constructed
bool ___constructed_26;
// System.Byte[] System.Globalization.CultureInfo::cached_serialized_form
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___cached_serialized_form_27;
// System.Globalization.CultureData System.Globalization.CultureInfo::m_cultureData
CultureData_t53CDF1C5F789A28897415891667799420D3C5529 * ___m_cultureData_28;
// System.Boolean System.Globalization.CultureInfo::m_isInherited
bool ___m_isInherited_29;
public:
inline static int32_t get_offset_of_m_isReadOnly_3() { return static_cast<int32_t>(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___m_isReadOnly_3)); }
inline bool get_m_isReadOnly_3() const { return ___m_isReadOnly_3; }
inline bool* get_address_of_m_isReadOnly_3() { return &___m_isReadOnly_3; }
inline void set_m_isReadOnly_3(bool value)
{
___m_isReadOnly_3 = value;
}
inline static int32_t get_offset_of_cultureID_4() { return static_cast<int32_t>(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___cultureID_4)); }
inline int32_t get_cultureID_4() const { return ___cultureID_4; }
inline int32_t* get_address_of_cultureID_4() { return &___cultureID_4; }
inline void set_cultureID_4(int32_t value)
{
___cultureID_4 = value;
}
inline static int32_t get_offset_of_parent_lcid_5() { return static_cast<int32_t>(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___parent_lcid_5)); }
inline int32_t get_parent_lcid_5() const { return ___parent_lcid_5; }
inline int32_t* get_address_of_parent_lcid_5() { return &___parent_lcid_5; }
inline void set_parent_lcid_5(int32_t value)
{
___parent_lcid_5 = value;
}
inline static int32_t get_offset_of_datetime_index_6() { return static_cast<int32_t>(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___datetime_index_6)); }
inline int32_t get_datetime_index_6() const { return ___datetime_index_6; }
inline int32_t* get_address_of_datetime_index_6() { return &___datetime_index_6; }
inline void set_datetime_index_6(int32_t value)
{
___datetime_index_6 = value;
}
inline static int32_t get_offset_of_number_index_7() { return static_cast<int32_t>(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___number_index_7)); }
inline int32_t get_number_index_7() const { return ___number_index_7; }
inline int32_t* get_address_of_number_index_7() { return &___number_index_7; }
inline void set_number_index_7(int32_t value)
{
___number_index_7 = value;
}
inline static int32_t get_offset_of_default_calendar_type_8() { return static_cast<int32_t>(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___default_calendar_type_8)); }
inline int32_t get_default_calendar_type_8() const { return ___default_calendar_type_8; }
inline int32_t* get_address_of_default_calendar_type_8() { return &___default_calendar_type_8; }
inline void set_default_calendar_type_8(int32_t value)
{
___default_calendar_type_8 = value;
}
inline static int32_t get_offset_of_m_useUserOverride_9() { return static_cast<int32_t>(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___m_useUserOverride_9)); }
inline bool get_m_useUserOverride_9() const { return ___m_useUserOverride_9; }
inline bool* get_address_of_m_useUserOverride_9() { return &___m_useUserOverride_9; }
inline void set_m_useUserOverride_9(bool value)
{
___m_useUserOverride_9 = value;
}
inline static int32_t get_offset_of_numInfo_10() { return static_cast<int32_t>(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___numInfo_10)); }
inline NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D * get_numInfo_10() const { return ___numInfo_10; }
inline NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D ** get_address_of_numInfo_10() { return &___numInfo_10; }
inline void set_numInfo_10(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D * value)
{
___numInfo_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___numInfo_10), (void*)value);
}
inline static int32_t get_offset_of_dateTimeInfo_11() { return static_cast<int32_t>(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___dateTimeInfo_11)); }
inline DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90 * get_dateTimeInfo_11() const { return ___dateTimeInfo_11; }
inline DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90 ** get_address_of_dateTimeInfo_11() { return &___dateTimeInfo_11; }
inline void set_dateTimeInfo_11(DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90 * value)
{
___dateTimeInfo_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___dateTimeInfo_11), (void*)value);
}
inline static int32_t get_offset_of_textInfo_12() { return static_cast<int32_t>(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___textInfo_12)); }
inline TextInfo_tE823D0684BFE8B203501C9B2B38585E8F06E872C * get_textInfo_12() const { return ___textInfo_12; }
inline TextInfo_tE823D0684BFE8B203501C9B2B38585E8F06E872C ** get_address_of_textInfo_12() { return &___textInfo_12; }
inline void set_textInfo_12(TextInfo_tE823D0684BFE8B203501C9B2B38585E8F06E872C * value)
{
___textInfo_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&___textInfo_12), (void*)value);
}
inline static int32_t get_offset_of_m_name_13() { return static_cast<int32_t>(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___m_name_13)); }
inline String_t* get_m_name_13() const { return ___m_name_13; }
inline String_t** get_address_of_m_name_13() { return &___m_name_13; }
inline void set_m_name_13(String_t* value)
{
___m_name_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_name_13), (void*)value);
}
inline static int32_t get_offset_of_englishname_14() { return static_cast<int32_t>(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___englishname_14)); }
inline String_t* get_englishname_14() const { return ___englishname_14; }
inline String_t** get_address_of_englishname_14() { return &___englishname_14; }
inline void set_englishname_14(String_t* value)
{
___englishname_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&___englishname_14), (void*)value);
}
inline static int32_t get_offset_of_nativename_15() { return static_cast<int32_t>(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___nativename_15)); }
inline String_t* get_nativename_15() const { return ___nativename_15; }
inline String_t** get_address_of_nativename_15() { return &___nativename_15; }
inline void set_nativename_15(String_t* value)
{
___nativename_15 = value;
Il2CppCodeGenWriteBarrier((void**)(&___nativename_15), (void*)value);
}
inline static int32_t get_offset_of_iso3lang_16() { return static_cast<int32_t>(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___iso3lang_16)); }
inline String_t* get_iso3lang_16() const { return ___iso3lang_16; }
inline String_t** get_address_of_iso3lang_16() { return &___iso3lang_16; }
inline void set_iso3lang_16(String_t* value)
{
___iso3lang_16 = value;
Il2CppCodeGenWriteBarrier((void**)(&___iso3lang_16), (void*)value);
}
inline static int32_t get_offset_of_iso2lang_17() { return static_cast<int32_t>(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___iso2lang_17)); }
inline String_t* get_iso2lang_17() const { return ___iso2lang_17; }
inline String_t** get_address_of_iso2lang_17() { return &___iso2lang_17; }
inline void set_iso2lang_17(String_t* value)
{
___iso2lang_17 = value;
Il2CppCodeGenWriteBarrier((void**)(&___iso2lang_17), (void*)value);
}
inline static int32_t get_offset_of_win3lang_18() { return static_cast<int32_t>(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___win3lang_18)); }
inline String_t* get_win3lang_18() const { return ___win3lang_18; }
inline String_t** get_address_of_win3lang_18() { return &___win3lang_18; }
inline void set_win3lang_18(String_t* value)
{
___win3lang_18 = value;
Il2CppCodeGenWriteBarrier((void**)(&___win3lang_18), (void*)value);
}
inline static int32_t get_offset_of_territory_19() { return static_cast<int32_t>(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___territory_19)); }
inline String_t* get_territory_19() const { return ___territory_19; }
inline String_t** get_address_of_territory_19() { return &___territory_19; }
inline void set_territory_19(String_t* value)
{
___territory_19 = value;
Il2CppCodeGenWriteBarrier((void**)(&___territory_19), (void*)value);
}
inline static int32_t get_offset_of_native_calendar_names_20() { return static_cast<int32_t>(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___native_calendar_names_20)); }
inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get_native_calendar_names_20() const { return ___native_calendar_names_20; }
inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of_native_calendar_names_20() { return &___native_calendar_names_20; }
inline void set_native_calendar_names_20(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value)
{
___native_calendar_names_20 = value;
Il2CppCodeGenWriteBarrier((void**)(&___native_calendar_names_20), (void*)value);
}
inline static int32_t get_offset_of_compareInfo_21() { return static_cast<int32_t>(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___compareInfo_21)); }
inline CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * get_compareInfo_21() const { return ___compareInfo_21; }
inline CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 ** get_address_of_compareInfo_21() { return &___compareInfo_21; }
inline void set_compareInfo_21(CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * value)
{
___compareInfo_21 = value;
Il2CppCodeGenWriteBarrier((void**)(&___compareInfo_21), (void*)value);
}
inline static int32_t get_offset_of_textinfo_data_22() { return static_cast<int32_t>(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___textinfo_data_22)); }
inline void* get_textinfo_data_22() const { return ___textinfo_data_22; }
inline void** get_address_of_textinfo_data_22() { return &___textinfo_data_22; }
inline void set_textinfo_data_22(void* value)
{
___textinfo_data_22 = value;
}
inline static int32_t get_offset_of_m_dataItem_23() { return static_cast<int32_t>(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___m_dataItem_23)); }
inline int32_t get_m_dataItem_23() const { return ___m_dataItem_23; }
inline int32_t* get_address_of_m_dataItem_23() { return &___m_dataItem_23; }
inline void set_m_dataItem_23(int32_t value)
{
___m_dataItem_23 = value;
}
inline static int32_t get_offset_of_calendar_24() { return static_cast<int32_t>(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___calendar_24)); }
inline Calendar_t3D638AEAB45F029DF47138EDA4CF9A7CBBB1C32A * get_calendar_24() const { return ___calendar_24; }
inline Calendar_t3D638AEAB45F029DF47138EDA4CF9A7CBBB1C32A ** get_address_of_calendar_24() { return &___calendar_24; }
inline void set_calendar_24(Calendar_t3D638AEAB45F029DF47138EDA4CF9A7CBBB1C32A * value)
{
___calendar_24 = value;
Il2CppCodeGenWriteBarrier((void**)(&___calendar_24), (void*)value);
}
inline static int32_t get_offset_of_parent_culture_25() { return static_cast<int32_t>(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___parent_culture_25)); }
inline CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * get_parent_culture_25() const { return ___parent_culture_25; }
inline CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 ** get_address_of_parent_culture_25() { return &___parent_culture_25; }
inline void set_parent_culture_25(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * value)
{
___parent_culture_25 = value;
Il2CppCodeGenWriteBarrier((void**)(&___parent_culture_25), (void*)value);
}
inline static int32_t get_offset_of_constructed_26() { return static_cast<int32_t>(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___constructed_26)); }
inline bool get_constructed_26() const { return ___constructed_26; }
inline bool* get_address_of_constructed_26() { return &___constructed_26; }
inline void set_constructed_26(bool value)
{
___constructed_26 = value;
}
inline static int32_t get_offset_of_cached_serialized_form_27() { return static_cast<int32_t>(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___cached_serialized_form_27)); }
inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_cached_serialized_form_27() const { return ___cached_serialized_form_27; }
inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_cached_serialized_form_27() { return &___cached_serialized_form_27; }
inline void set_cached_serialized_form_27(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value)
{
___cached_serialized_form_27 = value;
Il2CppCodeGenWriteBarrier((void**)(&___cached_serialized_form_27), (void*)value);
}
inline static int32_t get_offset_of_m_cultureData_28() { return static_cast<int32_t>(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___m_cultureData_28)); }
inline CultureData_t53CDF1C5F789A28897415891667799420D3C5529 * get_m_cultureData_28() const { return ___m_cultureData_28; }
inline CultureData_t53CDF1C5F789A28897415891667799420D3C5529 ** get_address_of_m_cultureData_28() { return &___m_cultureData_28; }
inline void set_m_cultureData_28(CultureData_t53CDF1C5F789A28897415891667799420D3C5529 * value)
{
___m_cultureData_28 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_cultureData_28), (void*)value);
}
inline static int32_t get_offset_of_m_isInherited_29() { return static_cast<int32_t>(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___m_isInherited_29)); }
inline bool get_m_isInherited_29() const { return ___m_isInherited_29; }
inline bool* get_address_of_m_isInherited_29() { return &___m_isInherited_29; }
inline void set_m_isInherited_29(bool value)
{
___m_isInherited_29 = value;
}
};
struct CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_StaticFields
{
public:
// System.Globalization.CultureInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::invariant_culture_info
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * ___invariant_culture_info_0;
// System.Object System.Globalization.CultureInfo::shared_table_lock
RuntimeObject * ___shared_table_lock_1;
// System.Globalization.CultureInfo System.Globalization.CultureInfo::default_current_culture
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * ___default_current_culture_2;
// System.Globalization.CultureInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::s_DefaultThreadCurrentUICulture
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * ___s_DefaultThreadCurrentUICulture_33;
// System.Globalization.CultureInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::s_DefaultThreadCurrentCulture
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * ___s_DefaultThreadCurrentCulture_34;
// System.Collections.Generic.Dictionary`2<System.Int32,System.Globalization.CultureInfo> System.Globalization.CultureInfo::shared_by_number
Dictionary_2_t5B8303F2C9869A39ED3E03C0FBB09F817E479402 * ___shared_by_number_35;
// System.Collections.Generic.Dictionary`2<System.String,System.Globalization.CultureInfo> System.Globalization.CultureInfo::shared_by_name
Dictionary_2_t0015CBF964B0687CBB5ECFDDE06671A8F3DDE4BC * ___shared_by_name_36;
// System.Boolean System.Globalization.CultureInfo::IsTaiwanSku
bool ___IsTaiwanSku_37;
public:
inline static int32_t get_offset_of_invariant_culture_info_0() { return static_cast<int32_t>(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_StaticFields, ___invariant_culture_info_0)); }
inline CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * get_invariant_culture_info_0() const { return ___invariant_culture_info_0; }
inline CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 ** get_address_of_invariant_culture_info_0() { return &___invariant_culture_info_0; }
inline void set_invariant_culture_info_0(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * value)
{
___invariant_culture_info_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___invariant_culture_info_0), (void*)value);
}
inline static int32_t get_offset_of_shared_table_lock_1() { return static_cast<int32_t>(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_StaticFields, ___shared_table_lock_1)); }
inline RuntimeObject * get_shared_table_lock_1() const { return ___shared_table_lock_1; }
inline RuntimeObject ** get_address_of_shared_table_lock_1() { return &___shared_table_lock_1; }
inline void set_shared_table_lock_1(RuntimeObject * value)
{
___shared_table_lock_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___shared_table_lock_1), (void*)value);
}
inline static int32_t get_offset_of_default_current_culture_2() { return static_cast<int32_t>(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_StaticFields, ___default_current_culture_2)); }
inline CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * get_default_current_culture_2() const { return ___default_current_culture_2; }
inline CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 ** get_address_of_default_current_culture_2() { return &___default_current_culture_2; }
inline void set_default_current_culture_2(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * value)
{
___default_current_culture_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___default_current_culture_2), (void*)value);
}
inline static int32_t get_offset_of_s_DefaultThreadCurrentUICulture_33() { return static_cast<int32_t>(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_StaticFields, ___s_DefaultThreadCurrentUICulture_33)); }
inline CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * get_s_DefaultThreadCurrentUICulture_33() const { return ___s_DefaultThreadCurrentUICulture_33; }
inline CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 ** get_address_of_s_DefaultThreadCurrentUICulture_33() { return &___s_DefaultThreadCurrentUICulture_33; }
inline void set_s_DefaultThreadCurrentUICulture_33(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * value)
{
___s_DefaultThreadCurrentUICulture_33 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_DefaultThreadCurrentUICulture_33), (void*)value);
}
inline static int32_t get_offset_of_s_DefaultThreadCurrentCulture_34() { return static_cast<int32_t>(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_StaticFields, ___s_DefaultThreadCurrentCulture_34)); }
inline CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * get_s_DefaultThreadCurrentCulture_34() const { return ___s_DefaultThreadCurrentCulture_34; }
inline CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 ** get_address_of_s_DefaultThreadCurrentCulture_34() { return &___s_DefaultThreadCurrentCulture_34; }
inline void set_s_DefaultThreadCurrentCulture_34(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * value)
{
___s_DefaultThreadCurrentCulture_34 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_DefaultThreadCurrentCulture_34), (void*)value);
}
inline static int32_t get_offset_of_shared_by_number_35() { return static_cast<int32_t>(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_StaticFields, ___shared_by_number_35)); }
inline Dictionary_2_t5B8303F2C9869A39ED3E03C0FBB09F817E479402 * get_shared_by_number_35() const { return ___shared_by_number_35; }
inline Dictionary_2_t5B8303F2C9869A39ED3E03C0FBB09F817E479402 ** get_address_of_shared_by_number_35() { return &___shared_by_number_35; }
inline void set_shared_by_number_35(Dictionary_2_t5B8303F2C9869A39ED3E03C0FBB09F817E479402 * value)
{
___shared_by_number_35 = value;
Il2CppCodeGenWriteBarrier((void**)(&___shared_by_number_35), (void*)value);
}
inline static int32_t get_offset_of_shared_by_name_36() { return static_cast<int32_t>(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_StaticFields, ___shared_by_name_36)); }
inline Dictionary_2_t0015CBF964B0687CBB5ECFDDE06671A8F3DDE4BC * get_shared_by_name_36() const { return ___shared_by_name_36; }
inline Dictionary_2_t0015CBF964B0687CBB5ECFDDE06671A8F3DDE4BC ** get_address_of_shared_by_name_36() { return &___shared_by_name_36; }
inline void set_shared_by_name_36(Dictionary_2_t0015CBF964B0687CBB5ECFDDE06671A8F3DDE4BC * value)
{
___shared_by_name_36 = value;
Il2CppCodeGenWriteBarrier((void**)(&___shared_by_name_36), (void*)value);
}
inline static int32_t get_offset_of_IsTaiwanSku_37() { return static_cast<int32_t>(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_StaticFields, ___IsTaiwanSku_37)); }
inline bool get_IsTaiwanSku_37() const { return ___IsTaiwanSku_37; }
inline bool* get_address_of_IsTaiwanSku_37() { return &___IsTaiwanSku_37; }
inline void set_IsTaiwanSku_37(bool value)
{
___IsTaiwanSku_37 = value;
}
};
// Native definition for P/Invoke marshalling of System.Globalization.CultureInfo
struct CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_marshaled_pinvoke
{
int32_t ___m_isReadOnly_3;
int32_t ___cultureID_4;
int32_t ___parent_lcid_5;
int32_t ___datetime_index_6;
int32_t ___number_index_7;
int32_t ___default_calendar_type_8;
int32_t ___m_useUserOverride_9;
NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D * ___numInfo_10;
DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90 * ___dateTimeInfo_11;
TextInfo_tE823D0684BFE8B203501C9B2B38585E8F06E872C * ___textInfo_12;
char* ___m_name_13;
char* ___englishname_14;
char* ___nativename_15;
char* ___iso3lang_16;
char* ___iso2lang_17;
char* ___win3lang_18;
char* ___territory_19;
char** ___native_calendar_names_20;
CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * ___compareInfo_21;
void* ___textinfo_data_22;
int32_t ___m_dataItem_23;
Calendar_t3D638AEAB45F029DF47138EDA4CF9A7CBBB1C32A * ___calendar_24;
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_marshaled_pinvoke* ___parent_culture_25;
int32_t ___constructed_26;
Il2CppSafeArray/*NONE*/* ___cached_serialized_form_27;
CultureData_t53CDF1C5F789A28897415891667799420D3C5529_marshaled_pinvoke* ___m_cultureData_28;
int32_t ___m_isInherited_29;
};
// Native definition for COM marshalling of System.Globalization.CultureInfo
struct CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_marshaled_com
{
int32_t ___m_isReadOnly_3;
int32_t ___cultureID_4;
int32_t ___parent_lcid_5;
int32_t ___datetime_index_6;
int32_t ___number_index_7;
int32_t ___default_calendar_type_8;
int32_t ___m_useUserOverride_9;
NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D * ___numInfo_10;
DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90 * ___dateTimeInfo_11;
TextInfo_tE823D0684BFE8B203501C9B2B38585E8F06E872C * ___textInfo_12;
Il2CppChar* ___m_name_13;
Il2CppChar* ___englishname_14;
Il2CppChar* ___nativename_15;
Il2CppChar* ___iso3lang_16;
Il2CppChar* ___iso2lang_17;
Il2CppChar* ___win3lang_18;
Il2CppChar* ___territory_19;
Il2CppChar** ___native_calendar_names_20;
CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * ___compareInfo_21;
void* ___textinfo_data_22;
int32_t ___m_dataItem_23;
Calendar_t3D638AEAB45F029DF47138EDA4CF9A7CBBB1C32A * ___calendar_24;
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_marshaled_com* ___parent_culture_25;
int32_t ___constructed_26;
Il2CppSafeArray/*NONE*/* ___cached_serialized_form_27;
CultureData_t53CDF1C5F789A28897415891667799420D3C5529_marshaled_com* ___m_cultureData_28;
int32_t ___m_isInherited_29;
};
// System.Globalization.EncodingTable
struct EncodingTable_t694F812B48CC2BA6D23BDF77EA7E71E330497529 : public RuntimeObject
{
public:
public:
};
struct EncodingTable_t694F812B48CC2BA6D23BDF77EA7E71E330497529_StaticFields
{
public:
// System.Globalization.InternalEncodingDataItem[] System.Globalization.EncodingTable::encodingDataPtr
InternalEncodingDataItemU5BU5D_t85637BE80FC2B1EAF08898A434D72E9CB7B5D87D* ___encodingDataPtr_0;
// System.Globalization.InternalCodePageDataItem[] System.Globalization.EncodingTable::codePageDataPtr
InternalCodePageDataItemU5BU5D_t14F50FF811A5CE312AAFE9726715A79B23230CA1* ___codePageDataPtr_1;
// System.Int32 System.Globalization.EncodingTable::lastEncodingItem
int32_t ___lastEncodingItem_2;
// System.Collections.Hashtable System.Globalization.EncodingTable::hashByName
Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * ___hashByName_3;
// System.Collections.Hashtable System.Globalization.EncodingTable::hashByCodePage
Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * ___hashByCodePage_4;
public:
inline static int32_t get_offset_of_encodingDataPtr_0() { return static_cast<int32_t>(offsetof(EncodingTable_t694F812B48CC2BA6D23BDF77EA7E71E330497529_StaticFields, ___encodingDataPtr_0)); }
inline InternalEncodingDataItemU5BU5D_t85637BE80FC2B1EAF08898A434D72E9CB7B5D87D* get_encodingDataPtr_0() const { return ___encodingDataPtr_0; }
inline InternalEncodingDataItemU5BU5D_t85637BE80FC2B1EAF08898A434D72E9CB7B5D87D** get_address_of_encodingDataPtr_0() { return &___encodingDataPtr_0; }
inline void set_encodingDataPtr_0(InternalEncodingDataItemU5BU5D_t85637BE80FC2B1EAF08898A434D72E9CB7B5D87D* value)
{
___encodingDataPtr_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___encodingDataPtr_0), (void*)value);
}
inline static int32_t get_offset_of_codePageDataPtr_1() { return static_cast<int32_t>(offsetof(EncodingTable_t694F812B48CC2BA6D23BDF77EA7E71E330497529_StaticFields, ___codePageDataPtr_1)); }
inline InternalCodePageDataItemU5BU5D_t14F50FF811A5CE312AAFE9726715A79B23230CA1* get_codePageDataPtr_1() const { return ___codePageDataPtr_1; }
inline InternalCodePageDataItemU5BU5D_t14F50FF811A5CE312AAFE9726715A79B23230CA1** get_address_of_codePageDataPtr_1() { return &___codePageDataPtr_1; }
inline void set_codePageDataPtr_1(InternalCodePageDataItemU5BU5D_t14F50FF811A5CE312AAFE9726715A79B23230CA1* value)
{
___codePageDataPtr_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___codePageDataPtr_1), (void*)value);
}
inline static int32_t get_offset_of_lastEncodingItem_2() { return static_cast<int32_t>(offsetof(EncodingTable_t694F812B48CC2BA6D23BDF77EA7E71E330497529_StaticFields, ___lastEncodingItem_2)); }
inline int32_t get_lastEncodingItem_2() const { return ___lastEncodingItem_2; }
inline int32_t* get_address_of_lastEncodingItem_2() { return &___lastEncodingItem_2; }
inline void set_lastEncodingItem_2(int32_t value)
{
___lastEncodingItem_2 = value;
}
inline static int32_t get_offset_of_hashByName_3() { return static_cast<int32_t>(offsetof(EncodingTable_t694F812B48CC2BA6D23BDF77EA7E71E330497529_StaticFields, ___hashByName_3)); }
inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * get_hashByName_3() const { return ___hashByName_3; }
inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC ** get_address_of_hashByName_3() { return &___hashByName_3; }
inline void set_hashByName_3(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * value)
{
___hashByName_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___hashByName_3), (void*)value);
}
inline static int32_t get_offset_of_hashByCodePage_4() { return static_cast<int32_t>(offsetof(EncodingTable_t694F812B48CC2BA6D23BDF77EA7E71E330497529_StaticFields, ___hashByCodePage_4)); }
inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * get_hashByCodePage_4() const { return ___hashByCodePage_4; }
inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC ** get_address_of_hashByCodePage_4() { return &___hashByCodePage_4; }
inline void set_hashByCodePage_4(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * value)
{
___hashByCodePage_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___hashByCodePage_4), (void*)value);
}
};
// System.IO.BinaryWriter
struct BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F : public RuntimeObject
{
public:
// System.IO.Stream System.IO.BinaryWriter::OutStream
Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___OutStream_1;
// System.Byte[] System.IO.BinaryWriter::_buffer
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ____buffer_2;
// System.Text.Encoding System.IO.BinaryWriter::_encoding
Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * ____encoding_3;
// System.Text.Encoder System.IO.BinaryWriter::_encoder
Encoder_t5095F24D3B1D0F70D08762B980731B9F1ADEE56A * ____encoder_4;
// System.Boolean System.IO.BinaryWriter::_leaveOpen
bool ____leaveOpen_5;
// System.Byte[] System.IO.BinaryWriter::_largeByteBuffer
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ____largeByteBuffer_6;
// System.Int32 System.IO.BinaryWriter::_maxChars
int32_t ____maxChars_7;
public:
inline static int32_t get_offset_of_OutStream_1() { return static_cast<int32_t>(offsetof(BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F, ___OutStream_1)); }
inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * get_OutStream_1() const { return ___OutStream_1; }
inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB ** get_address_of_OutStream_1() { return &___OutStream_1; }
inline void set_OutStream_1(Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * value)
{
___OutStream_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___OutStream_1), (void*)value);
}
inline static int32_t get_offset_of__buffer_2() { return static_cast<int32_t>(offsetof(BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F, ____buffer_2)); }
inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get__buffer_2() const { return ____buffer_2; }
inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of__buffer_2() { return &____buffer_2; }
inline void set__buffer_2(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value)
{
____buffer_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____buffer_2), (void*)value);
}
inline static int32_t get_offset_of__encoding_3() { return static_cast<int32_t>(offsetof(BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F, ____encoding_3)); }
inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * get__encoding_3() const { return ____encoding_3; }
inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 ** get_address_of__encoding_3() { return &____encoding_3; }
inline void set__encoding_3(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * value)
{
____encoding_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____encoding_3), (void*)value);
}
inline static int32_t get_offset_of__encoder_4() { return static_cast<int32_t>(offsetof(BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F, ____encoder_4)); }
inline Encoder_t5095F24D3B1D0F70D08762B980731B9F1ADEE56A * get__encoder_4() const { return ____encoder_4; }
inline Encoder_t5095F24D3B1D0F70D08762B980731B9F1ADEE56A ** get_address_of__encoder_4() { return &____encoder_4; }
inline void set__encoder_4(Encoder_t5095F24D3B1D0F70D08762B980731B9F1ADEE56A * value)
{
____encoder_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____encoder_4), (void*)value);
}
inline static int32_t get_offset_of__leaveOpen_5() { return static_cast<int32_t>(offsetof(BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F, ____leaveOpen_5)); }
inline bool get__leaveOpen_5() const { return ____leaveOpen_5; }
inline bool* get_address_of__leaveOpen_5() { return &____leaveOpen_5; }
inline void set__leaveOpen_5(bool value)
{
____leaveOpen_5 = value;
}
inline static int32_t get_offset_of__largeByteBuffer_6() { return static_cast<int32_t>(offsetof(BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F, ____largeByteBuffer_6)); }
inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get__largeByteBuffer_6() const { return ____largeByteBuffer_6; }
inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of__largeByteBuffer_6() { return &____largeByteBuffer_6; }
inline void set__largeByteBuffer_6(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value)
{
____largeByteBuffer_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&____largeByteBuffer_6), (void*)value);
}
inline static int32_t get_offset_of__maxChars_7() { return static_cast<int32_t>(offsetof(BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F, ____maxChars_7)); }
inline int32_t get__maxChars_7() const { return ____maxChars_7; }
inline int32_t* get_address_of__maxChars_7() { return &____maxChars_7; }
inline void set__maxChars_7(int32_t value)
{
____maxChars_7 = value;
}
};
struct BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F_StaticFields
{
public:
// System.IO.BinaryWriter System.IO.BinaryWriter::Null
BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F * ___Null_0;
public:
inline static int32_t get_offset_of_Null_0() { return static_cast<int32_t>(offsetof(BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F_StaticFields, ___Null_0)); }
inline BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F * get_Null_0() const { return ___Null_0; }
inline BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F ** get_address_of_Null_0() { return &___Null_0; }
inline void set_Null_0(BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F * value)
{
___Null_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Null_0), (void*)value);
}
};
// System.MarshalByRefObject
struct MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8 : public RuntimeObject
{
public:
// System.Object System.MarshalByRefObject::_identity
RuntimeObject * ____identity_0;
public:
inline static int32_t get_offset_of__identity_0() { return static_cast<int32_t>(offsetof(MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8, ____identity_0)); }
inline RuntimeObject * get__identity_0() const { return ____identity_0; }
inline RuntimeObject ** get_address_of__identity_0() { return &____identity_0; }
inline void set__identity_0(RuntimeObject * value)
{
____identity_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____identity_0), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.MarshalByRefObject
struct MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8_marshaled_pinvoke
{
Il2CppIUnknown* ____identity_0;
};
// Native definition for COM marshalling of System.MarshalByRefObject
struct MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8_marshaled_com
{
Il2CppIUnknown* ____identity_0;
};
// System.Reflection.Binder
struct Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 : public RuntimeObject
{
public:
public:
};
// System.Reflection.MemberInfo
struct MemberInfo_t : public RuntimeObject
{
public:
public:
};
// System.Runtime.ConstrainedExecution.CriticalFinalizerObject
struct CriticalFinalizerObject_tA3367C832FFE7434EB3C15C7136AF25524150997 : public RuntimeObject
{
public:
public:
};
// System.Runtime.Remoting.ChannelData
struct ChannelData_tEA64A2F1AEEC413430B61C6C7C4A1652EFDD9827 : public RuntimeObject
{
public:
// System.String System.Runtime.Remoting.ChannelData::Ref
String_t* ___Ref_0;
// System.String System.Runtime.Remoting.ChannelData::Type
String_t* ___Type_1;
// System.String System.Runtime.Remoting.ChannelData::Id
String_t* ___Id_2;
// System.String System.Runtime.Remoting.ChannelData::DelayLoadAsClientChannel
String_t* ___DelayLoadAsClientChannel_3;
// System.Collections.ArrayList System.Runtime.Remoting.ChannelData::_serverProviders
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * ____serverProviders_4;
// System.Collections.ArrayList System.Runtime.Remoting.ChannelData::_clientProviders
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * ____clientProviders_5;
// System.Collections.Hashtable System.Runtime.Remoting.ChannelData::_customProperties
Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * ____customProperties_6;
public:
inline static int32_t get_offset_of_Ref_0() { return static_cast<int32_t>(offsetof(ChannelData_tEA64A2F1AEEC413430B61C6C7C4A1652EFDD9827, ___Ref_0)); }
inline String_t* get_Ref_0() const { return ___Ref_0; }
inline String_t** get_address_of_Ref_0() { return &___Ref_0; }
inline void set_Ref_0(String_t* value)
{
___Ref_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Ref_0), (void*)value);
}
inline static int32_t get_offset_of_Type_1() { return static_cast<int32_t>(offsetof(ChannelData_tEA64A2F1AEEC413430B61C6C7C4A1652EFDD9827, ___Type_1)); }
inline String_t* get_Type_1() const { return ___Type_1; }
inline String_t** get_address_of_Type_1() { return &___Type_1; }
inline void set_Type_1(String_t* value)
{
___Type_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Type_1), (void*)value);
}
inline static int32_t get_offset_of_Id_2() { return static_cast<int32_t>(offsetof(ChannelData_tEA64A2F1AEEC413430B61C6C7C4A1652EFDD9827, ___Id_2)); }
inline String_t* get_Id_2() const { return ___Id_2; }
inline String_t** get_address_of_Id_2() { return &___Id_2; }
inline void set_Id_2(String_t* value)
{
___Id_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Id_2), (void*)value);
}
inline static int32_t get_offset_of_DelayLoadAsClientChannel_3() { return static_cast<int32_t>(offsetof(ChannelData_tEA64A2F1AEEC413430B61C6C7C4A1652EFDD9827, ___DelayLoadAsClientChannel_3)); }
inline String_t* get_DelayLoadAsClientChannel_3() const { return ___DelayLoadAsClientChannel_3; }
inline String_t** get_address_of_DelayLoadAsClientChannel_3() { return &___DelayLoadAsClientChannel_3; }
inline void set_DelayLoadAsClientChannel_3(String_t* value)
{
___DelayLoadAsClientChannel_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___DelayLoadAsClientChannel_3), (void*)value);
}
inline static int32_t get_offset_of__serverProviders_4() { return static_cast<int32_t>(offsetof(ChannelData_tEA64A2F1AEEC413430B61C6C7C4A1652EFDD9827, ____serverProviders_4)); }
inline ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * get__serverProviders_4() const { return ____serverProviders_4; }
inline ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 ** get_address_of__serverProviders_4() { return &____serverProviders_4; }
inline void set__serverProviders_4(ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * value)
{
____serverProviders_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____serverProviders_4), (void*)value);
}
inline static int32_t get_offset_of__clientProviders_5() { return static_cast<int32_t>(offsetof(ChannelData_tEA64A2F1AEEC413430B61C6C7C4A1652EFDD9827, ____clientProviders_5)); }
inline ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * get__clientProviders_5() const { return ____clientProviders_5; }
inline ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 ** get_address_of__clientProviders_5() { return &____clientProviders_5; }
inline void set__clientProviders_5(ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * value)
{
____clientProviders_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____clientProviders_5), (void*)value);
}
inline static int32_t get_offset_of__customProperties_6() { return static_cast<int32_t>(offsetof(ChannelData_tEA64A2F1AEEC413430B61C6C7C4A1652EFDD9827, ____customProperties_6)); }
inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * get__customProperties_6() const { return ____customProperties_6; }
inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC ** get_address_of__customProperties_6() { return &____customProperties_6; }
inline void set__customProperties_6(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * value)
{
____customProperties_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&____customProperties_6), (void*)value);
}
};
// System.Runtime.Remoting.ChannelInfo
struct ChannelInfo_tBB8BB773743C20D696B007291EC5597F00703E79 : public RuntimeObject
{
public:
// System.Object[] System.Runtime.Remoting.ChannelInfo::channelData
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___channelData_0;
public:
inline static int32_t get_offset_of_channelData_0() { return static_cast<int32_t>(offsetof(ChannelInfo_tBB8BB773743C20D696B007291EC5597F00703E79, ___channelData_0)); }
inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get_channelData_0() const { return ___channelData_0; }
inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of_channelData_0() { return &___channelData_0; }
inline void set_channelData_0(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value)
{
___channelData_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___channelData_0), (void*)value);
}
};
// System.Runtime.Remoting.Channels.CADSerializer
struct CADSerializer_t0B594D1EEBC0760DF86DEC3C23BC15290FF95D75 : public RuntimeObject
{
public:
public:
};
// System.Runtime.Remoting.Channels.ChannelServices
struct ChannelServices_tE1834D9FC8B4A62937AEF20FF29A91B9D3A07B28 : public RuntimeObject
{
public:
public:
};
struct ChannelServices_tE1834D9FC8B4A62937AEF20FF29A91B9D3A07B28_StaticFields
{
public:
// System.Collections.ArrayList System.Runtime.Remoting.Channels.ChannelServices::registeredChannels
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * ___registeredChannels_0;
// System.Collections.ArrayList System.Runtime.Remoting.Channels.ChannelServices::delayedClientChannels
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * ___delayedClientChannels_1;
// System.Runtime.Remoting.Contexts.CrossContextChannel System.Runtime.Remoting.Channels.ChannelServices::_crossContextSink
CrossContextChannel_tF0389BFF59F875ADDC660EBAF4BA5267F13A88AD * ____crossContextSink_2;
// System.String System.Runtime.Remoting.Channels.ChannelServices::CrossContextUrl
String_t* ___CrossContextUrl_3;
// System.Collections.IList System.Runtime.Remoting.Channels.ChannelServices::oldStartModeTypes
RuntimeObject* ___oldStartModeTypes_4;
public:
inline static int32_t get_offset_of_registeredChannels_0() { return static_cast<int32_t>(offsetof(ChannelServices_tE1834D9FC8B4A62937AEF20FF29A91B9D3A07B28_StaticFields, ___registeredChannels_0)); }
inline ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * get_registeredChannels_0() const { return ___registeredChannels_0; }
inline ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 ** get_address_of_registeredChannels_0() { return &___registeredChannels_0; }
inline void set_registeredChannels_0(ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * value)
{
___registeredChannels_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___registeredChannels_0), (void*)value);
}
inline static int32_t get_offset_of_delayedClientChannels_1() { return static_cast<int32_t>(offsetof(ChannelServices_tE1834D9FC8B4A62937AEF20FF29A91B9D3A07B28_StaticFields, ___delayedClientChannels_1)); }
inline ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * get_delayedClientChannels_1() const { return ___delayedClientChannels_1; }
inline ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 ** get_address_of_delayedClientChannels_1() { return &___delayedClientChannels_1; }
inline void set_delayedClientChannels_1(ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * value)
{
___delayedClientChannels_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___delayedClientChannels_1), (void*)value);
}
inline static int32_t get_offset_of__crossContextSink_2() { return static_cast<int32_t>(offsetof(ChannelServices_tE1834D9FC8B4A62937AEF20FF29A91B9D3A07B28_StaticFields, ____crossContextSink_2)); }
inline CrossContextChannel_tF0389BFF59F875ADDC660EBAF4BA5267F13A88AD * get__crossContextSink_2() const { return ____crossContextSink_2; }
inline CrossContextChannel_tF0389BFF59F875ADDC660EBAF4BA5267F13A88AD ** get_address_of__crossContextSink_2() { return &____crossContextSink_2; }
inline void set__crossContextSink_2(CrossContextChannel_tF0389BFF59F875ADDC660EBAF4BA5267F13A88AD * value)
{
____crossContextSink_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____crossContextSink_2), (void*)value);
}
inline static int32_t get_offset_of_CrossContextUrl_3() { return static_cast<int32_t>(offsetof(ChannelServices_tE1834D9FC8B4A62937AEF20FF29A91B9D3A07B28_StaticFields, ___CrossContextUrl_3)); }
inline String_t* get_CrossContextUrl_3() const { return ___CrossContextUrl_3; }
inline String_t** get_address_of_CrossContextUrl_3() { return &___CrossContextUrl_3; }
inline void set_CrossContextUrl_3(String_t* value)
{
___CrossContextUrl_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___CrossContextUrl_3), (void*)value);
}
inline static int32_t get_offset_of_oldStartModeTypes_4() { return static_cast<int32_t>(offsetof(ChannelServices_tE1834D9FC8B4A62937AEF20FF29A91B9D3A07B28_StaticFields, ___oldStartModeTypes_4)); }
inline RuntimeObject* get_oldStartModeTypes_4() const { return ___oldStartModeTypes_4; }
inline RuntimeObject** get_address_of_oldStartModeTypes_4() { return &___oldStartModeTypes_4; }
inline void set_oldStartModeTypes_4(RuntimeObject* value)
{
___oldStartModeTypes_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___oldStartModeTypes_4), (void*)value);
}
};
// System.Runtime.Remoting.Channels.SinkProviderData
struct SinkProviderData_tDCF47C22643A26B1E1F6BB60FA7AE7034053D14E : public RuntimeObject
{
public:
// System.String System.Runtime.Remoting.Channels.SinkProviderData::sinkName
String_t* ___sinkName_0;
// System.Collections.ArrayList System.Runtime.Remoting.Channels.SinkProviderData::children
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * ___children_1;
// System.Collections.Hashtable System.Runtime.Remoting.Channels.SinkProviderData::properties
Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * ___properties_2;
public:
inline static int32_t get_offset_of_sinkName_0() { return static_cast<int32_t>(offsetof(SinkProviderData_tDCF47C22643A26B1E1F6BB60FA7AE7034053D14E, ___sinkName_0)); }
inline String_t* get_sinkName_0() const { return ___sinkName_0; }
inline String_t** get_address_of_sinkName_0() { return &___sinkName_0; }
inline void set_sinkName_0(String_t* value)
{
___sinkName_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___sinkName_0), (void*)value);
}
inline static int32_t get_offset_of_children_1() { return static_cast<int32_t>(offsetof(SinkProviderData_tDCF47C22643A26B1E1F6BB60FA7AE7034053D14E, ___children_1)); }
inline ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * get_children_1() const { return ___children_1; }
inline ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 ** get_address_of_children_1() { return &___children_1; }
inline void set_children_1(ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * value)
{
___children_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___children_1), (void*)value);
}
inline static int32_t get_offset_of_properties_2() { return static_cast<int32_t>(offsetof(SinkProviderData_tDCF47C22643A26B1E1F6BB60FA7AE7034053D14E, ___properties_2)); }
inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * get_properties_2() const { return ___properties_2; }
inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC ** get_address_of_properties_2() { return &___properties_2; }
inline void set_properties_2(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * value)
{
___properties_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___properties_2), (void*)value);
}
};
// System.Runtime.Remoting.ConfigHandler
struct ConfigHandler_t669F653CE4E8ABF2323F028523BEDFB5C56C3760 : public RuntimeObject
{
public:
// System.Collections.ArrayList System.Runtime.Remoting.ConfigHandler::typeEntries
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * ___typeEntries_0;
// System.Collections.ArrayList System.Runtime.Remoting.ConfigHandler::channelInstances
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * ___channelInstances_1;
// System.Runtime.Remoting.ChannelData System.Runtime.Remoting.ConfigHandler::currentChannel
ChannelData_tEA64A2F1AEEC413430B61C6C7C4A1652EFDD9827 * ___currentChannel_2;
// System.Collections.Stack System.Runtime.Remoting.ConfigHandler::currentProviderData
Stack_tF6DD42A42C129B014D4223010F1E0FFBECBDC3B8 * ___currentProviderData_3;
// System.String System.Runtime.Remoting.ConfigHandler::currentClientUrl
String_t* ___currentClientUrl_4;
// System.String System.Runtime.Remoting.ConfigHandler::appName
String_t* ___appName_5;
// System.String System.Runtime.Remoting.ConfigHandler::currentXmlPath
String_t* ___currentXmlPath_6;
// System.Boolean System.Runtime.Remoting.ConfigHandler::onlyDelayedChannels
bool ___onlyDelayedChannels_7;
public:
inline static int32_t get_offset_of_typeEntries_0() { return static_cast<int32_t>(offsetof(ConfigHandler_t669F653CE4E8ABF2323F028523BEDFB5C56C3760, ___typeEntries_0)); }
inline ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * get_typeEntries_0() const { return ___typeEntries_0; }
inline ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 ** get_address_of_typeEntries_0() { return &___typeEntries_0; }
inline void set_typeEntries_0(ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * value)
{
___typeEntries_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___typeEntries_0), (void*)value);
}
inline static int32_t get_offset_of_channelInstances_1() { return static_cast<int32_t>(offsetof(ConfigHandler_t669F653CE4E8ABF2323F028523BEDFB5C56C3760, ___channelInstances_1)); }
inline ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * get_channelInstances_1() const { return ___channelInstances_1; }
inline ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 ** get_address_of_channelInstances_1() { return &___channelInstances_1; }
inline void set_channelInstances_1(ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * value)
{
___channelInstances_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___channelInstances_1), (void*)value);
}
inline static int32_t get_offset_of_currentChannel_2() { return static_cast<int32_t>(offsetof(ConfigHandler_t669F653CE4E8ABF2323F028523BEDFB5C56C3760, ___currentChannel_2)); }
inline ChannelData_tEA64A2F1AEEC413430B61C6C7C4A1652EFDD9827 * get_currentChannel_2() const { return ___currentChannel_2; }
inline ChannelData_tEA64A2F1AEEC413430B61C6C7C4A1652EFDD9827 ** get_address_of_currentChannel_2() { return &___currentChannel_2; }
inline void set_currentChannel_2(ChannelData_tEA64A2F1AEEC413430B61C6C7C4A1652EFDD9827 * value)
{
___currentChannel_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___currentChannel_2), (void*)value);
}
inline static int32_t get_offset_of_currentProviderData_3() { return static_cast<int32_t>(offsetof(ConfigHandler_t669F653CE4E8ABF2323F028523BEDFB5C56C3760, ___currentProviderData_3)); }
inline Stack_tF6DD42A42C129B014D4223010F1E0FFBECBDC3B8 * get_currentProviderData_3() const { return ___currentProviderData_3; }
inline Stack_tF6DD42A42C129B014D4223010F1E0FFBECBDC3B8 ** get_address_of_currentProviderData_3() { return &___currentProviderData_3; }
inline void set_currentProviderData_3(Stack_tF6DD42A42C129B014D4223010F1E0FFBECBDC3B8 * value)
{
___currentProviderData_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___currentProviderData_3), (void*)value);
}
inline static int32_t get_offset_of_currentClientUrl_4() { return static_cast<int32_t>(offsetof(ConfigHandler_t669F653CE4E8ABF2323F028523BEDFB5C56C3760, ___currentClientUrl_4)); }
inline String_t* get_currentClientUrl_4() const { return ___currentClientUrl_4; }
inline String_t** get_address_of_currentClientUrl_4() { return &___currentClientUrl_4; }
inline void set_currentClientUrl_4(String_t* value)
{
___currentClientUrl_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___currentClientUrl_4), (void*)value);
}
inline static int32_t get_offset_of_appName_5() { return static_cast<int32_t>(offsetof(ConfigHandler_t669F653CE4E8ABF2323F028523BEDFB5C56C3760, ___appName_5)); }
inline String_t* get_appName_5() const { return ___appName_5; }
inline String_t** get_address_of_appName_5() { return &___appName_5; }
inline void set_appName_5(String_t* value)
{
___appName_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___appName_5), (void*)value);
}
inline static int32_t get_offset_of_currentXmlPath_6() { return static_cast<int32_t>(offsetof(ConfigHandler_t669F653CE4E8ABF2323F028523BEDFB5C56C3760, ___currentXmlPath_6)); }
inline String_t* get_currentXmlPath_6() const { return ___currentXmlPath_6; }
inline String_t** get_address_of_currentXmlPath_6() { return &___currentXmlPath_6; }
inline void set_currentXmlPath_6(String_t* value)
{
___currentXmlPath_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___currentXmlPath_6), (void*)value);
}
inline static int32_t get_offset_of_onlyDelayedChannels_7() { return static_cast<int32_t>(offsetof(ConfigHandler_t669F653CE4E8ABF2323F028523BEDFB5C56C3760, ___onlyDelayedChannels_7)); }
inline bool get_onlyDelayedChannels_7() const { return ___onlyDelayedChannels_7; }
inline bool* get_address_of_onlyDelayedChannels_7() { return &___onlyDelayedChannels_7; }
inline void set_onlyDelayedChannels_7(bool value)
{
___onlyDelayedChannels_7 = value;
}
};
// System.Runtime.Remoting.Contexts.CrossContextChannel
struct CrossContextChannel_tF0389BFF59F875ADDC660EBAF4BA5267F13A88AD : public RuntimeObject
{
public:
public:
};
// System.Runtime.Remoting.Identity
struct Identity_t640A44175E23F75AB432A7C00569D863BF48AAD5 : public RuntimeObject
{
public:
// System.String System.Runtime.Remoting.Identity::_objectUri
String_t* ____objectUri_0;
// System.Runtime.Remoting.Messaging.IMessageSink System.Runtime.Remoting.Identity::_channelSink
RuntimeObject* ____channelSink_1;
// System.Runtime.Remoting.Messaging.IMessageSink System.Runtime.Remoting.Identity::_envoySink
RuntimeObject* ____envoySink_2;
// System.Runtime.Remoting.Contexts.DynamicPropertyCollection System.Runtime.Remoting.Identity::_clientDynamicProperties
DynamicPropertyCollection_t374B470D20F1FAF60F0578EE489846E6E283984B * ____clientDynamicProperties_3;
// System.Runtime.Remoting.Contexts.DynamicPropertyCollection System.Runtime.Remoting.Identity::_serverDynamicProperties
DynamicPropertyCollection_t374B470D20F1FAF60F0578EE489846E6E283984B * ____serverDynamicProperties_4;
// System.Runtime.Remoting.ObjRef System.Runtime.Remoting.Identity::_objRef
ObjRef_t10D53E2178851535F38935DC53B48634063C84D3 * ____objRef_5;
// System.Boolean System.Runtime.Remoting.Identity::_disposed
bool ____disposed_6;
public:
inline static int32_t get_offset_of__objectUri_0() { return static_cast<int32_t>(offsetof(Identity_t640A44175E23F75AB432A7C00569D863BF48AAD5, ____objectUri_0)); }
inline String_t* get__objectUri_0() const { return ____objectUri_0; }
inline String_t** get_address_of__objectUri_0() { return &____objectUri_0; }
inline void set__objectUri_0(String_t* value)
{
____objectUri_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____objectUri_0), (void*)value);
}
inline static int32_t get_offset_of__channelSink_1() { return static_cast<int32_t>(offsetof(Identity_t640A44175E23F75AB432A7C00569D863BF48AAD5, ____channelSink_1)); }
inline RuntimeObject* get__channelSink_1() const { return ____channelSink_1; }
inline RuntimeObject** get_address_of__channelSink_1() { return &____channelSink_1; }
inline void set__channelSink_1(RuntimeObject* value)
{
____channelSink_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____channelSink_1), (void*)value);
}
inline static int32_t get_offset_of__envoySink_2() { return static_cast<int32_t>(offsetof(Identity_t640A44175E23F75AB432A7C00569D863BF48AAD5, ____envoySink_2)); }
inline RuntimeObject* get__envoySink_2() const { return ____envoySink_2; }
inline RuntimeObject** get_address_of__envoySink_2() { return &____envoySink_2; }
inline void set__envoySink_2(RuntimeObject* value)
{
____envoySink_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____envoySink_2), (void*)value);
}
inline static int32_t get_offset_of__clientDynamicProperties_3() { return static_cast<int32_t>(offsetof(Identity_t640A44175E23F75AB432A7C00569D863BF48AAD5, ____clientDynamicProperties_3)); }
inline DynamicPropertyCollection_t374B470D20F1FAF60F0578EE489846E6E283984B * get__clientDynamicProperties_3() const { return ____clientDynamicProperties_3; }
inline DynamicPropertyCollection_t374B470D20F1FAF60F0578EE489846E6E283984B ** get_address_of__clientDynamicProperties_3() { return &____clientDynamicProperties_3; }
inline void set__clientDynamicProperties_3(DynamicPropertyCollection_t374B470D20F1FAF60F0578EE489846E6E283984B * value)
{
____clientDynamicProperties_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____clientDynamicProperties_3), (void*)value);
}
inline static int32_t get_offset_of__serverDynamicProperties_4() { return static_cast<int32_t>(offsetof(Identity_t640A44175E23F75AB432A7C00569D863BF48AAD5, ____serverDynamicProperties_4)); }
inline DynamicPropertyCollection_t374B470D20F1FAF60F0578EE489846E6E283984B * get__serverDynamicProperties_4() const { return ____serverDynamicProperties_4; }
inline DynamicPropertyCollection_t374B470D20F1FAF60F0578EE489846E6E283984B ** get_address_of__serverDynamicProperties_4() { return &____serverDynamicProperties_4; }
inline void set__serverDynamicProperties_4(DynamicPropertyCollection_t374B470D20F1FAF60F0578EE489846E6E283984B * value)
{
____serverDynamicProperties_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____serverDynamicProperties_4), (void*)value);
}
inline static int32_t get_offset_of__objRef_5() { return static_cast<int32_t>(offsetof(Identity_t640A44175E23F75AB432A7C00569D863BF48AAD5, ____objRef_5)); }
inline ObjRef_t10D53E2178851535F38935DC53B48634063C84D3 * get__objRef_5() const { return ____objRef_5; }
inline ObjRef_t10D53E2178851535F38935DC53B48634063C84D3 ** get_address_of__objRef_5() { return &____objRef_5; }
inline void set__objRef_5(ObjRef_t10D53E2178851535F38935DC53B48634063C84D3 * value)
{
____objRef_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____objRef_5), (void*)value);
}
inline static int32_t get_offset_of__disposed_6() { return static_cast<int32_t>(offsetof(Identity_t640A44175E23F75AB432A7C00569D863BF48AAD5, ____disposed_6)); }
inline bool get__disposed_6() const { return ____disposed_6; }
inline bool* get_address_of__disposed_6() { return &____disposed_6; }
inline void set__disposed_6(bool value)
{
____disposed_6 = value;
}
};
// System.Runtime.Remoting.Messaging.CADArgHolder
struct CADArgHolder_tF834CE7AC93B38AABC332460CBAB127B82A9389E : public RuntimeObject
{
public:
// System.Int32 System.Runtime.Remoting.Messaging.CADArgHolder::index
int32_t ___index_0;
public:
inline static int32_t get_offset_of_index_0() { return static_cast<int32_t>(offsetof(CADArgHolder_tF834CE7AC93B38AABC332460CBAB127B82A9389E, ___index_0)); }
inline int32_t get_index_0() const { return ___index_0; }
inline int32_t* get_address_of_index_0() { return &___index_0; }
inline void set_index_0(int32_t value)
{
___index_0 = value;
}
};
// System.Runtime.Remoting.Messaging.CADMessageBase
struct CADMessageBase_t78A590A87FD9362D67AAD58A88C4062CA0A105C7 : public RuntimeObject
{
public:
// System.Object[] System.Runtime.Remoting.Messaging.CADMessageBase::_args
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ____args_0;
// System.Byte[] System.Runtime.Remoting.Messaging.CADMessageBase::_serializedArgs
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ____serializedArgs_1;
// System.Int32 System.Runtime.Remoting.Messaging.CADMessageBase::_propertyCount
int32_t ____propertyCount_2;
// System.Runtime.Remoting.Messaging.CADArgHolder System.Runtime.Remoting.Messaging.CADMessageBase::_callContext
CADArgHolder_tF834CE7AC93B38AABC332460CBAB127B82A9389E * ____callContext_3;
// System.Byte[] System.Runtime.Remoting.Messaging.CADMessageBase::serializedMethod
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___serializedMethod_4;
public:
inline static int32_t get_offset_of__args_0() { return static_cast<int32_t>(offsetof(CADMessageBase_t78A590A87FD9362D67AAD58A88C4062CA0A105C7, ____args_0)); }
inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get__args_0() const { return ____args_0; }
inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of__args_0() { return &____args_0; }
inline void set__args_0(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value)
{
____args_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____args_0), (void*)value);
}
inline static int32_t get_offset_of__serializedArgs_1() { return static_cast<int32_t>(offsetof(CADMessageBase_t78A590A87FD9362D67AAD58A88C4062CA0A105C7, ____serializedArgs_1)); }
inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get__serializedArgs_1() const { return ____serializedArgs_1; }
inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of__serializedArgs_1() { return &____serializedArgs_1; }
inline void set__serializedArgs_1(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value)
{
____serializedArgs_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____serializedArgs_1), (void*)value);
}
inline static int32_t get_offset_of__propertyCount_2() { return static_cast<int32_t>(offsetof(CADMessageBase_t78A590A87FD9362D67AAD58A88C4062CA0A105C7, ____propertyCount_2)); }
inline int32_t get__propertyCount_2() const { return ____propertyCount_2; }
inline int32_t* get_address_of__propertyCount_2() { return &____propertyCount_2; }
inline void set__propertyCount_2(int32_t value)
{
____propertyCount_2 = value;
}
inline static int32_t get_offset_of__callContext_3() { return static_cast<int32_t>(offsetof(CADMessageBase_t78A590A87FD9362D67AAD58A88C4062CA0A105C7, ____callContext_3)); }
inline CADArgHolder_tF834CE7AC93B38AABC332460CBAB127B82A9389E * get__callContext_3() const { return ____callContext_3; }
inline CADArgHolder_tF834CE7AC93B38AABC332460CBAB127B82A9389E ** get_address_of__callContext_3() { return &____callContext_3; }
inline void set__callContext_3(CADArgHolder_tF834CE7AC93B38AABC332460CBAB127B82A9389E * value)
{
____callContext_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____callContext_3), (void*)value);
}
inline static int32_t get_offset_of_serializedMethod_4() { return static_cast<int32_t>(offsetof(CADMessageBase_t78A590A87FD9362D67AAD58A88C4062CA0A105C7, ___serializedMethod_4)); }
inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_serializedMethod_4() const { return ___serializedMethod_4; }
inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_serializedMethod_4() { return &___serializedMethod_4; }
inline void set_serializedMethod_4(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value)
{
___serializedMethod_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___serializedMethod_4), (void*)value);
}
};
// System.Runtime.Remoting.Messaging.CADMethodRef
struct CADMethodRef_t9626FF46E076B15F71F14133E3FE884F10F50DD2 : public RuntimeObject
{
public:
// System.Boolean System.Runtime.Remoting.Messaging.CADMethodRef::ctor
bool ___ctor_0;
// System.String System.Runtime.Remoting.Messaging.CADMethodRef::typeName
String_t* ___typeName_1;
// System.String System.Runtime.Remoting.Messaging.CADMethodRef::methodName
String_t* ___methodName_2;
// System.String[] System.Runtime.Remoting.Messaging.CADMethodRef::param_names
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___param_names_3;
// System.String[] System.Runtime.Remoting.Messaging.CADMethodRef::generic_arg_names
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___generic_arg_names_4;
public:
inline static int32_t get_offset_of_ctor_0() { return static_cast<int32_t>(offsetof(CADMethodRef_t9626FF46E076B15F71F14133E3FE884F10F50DD2, ___ctor_0)); }
inline bool get_ctor_0() const { return ___ctor_0; }
inline bool* get_address_of_ctor_0() { return &___ctor_0; }
inline void set_ctor_0(bool value)
{
___ctor_0 = value;
}
inline static int32_t get_offset_of_typeName_1() { return static_cast<int32_t>(offsetof(CADMethodRef_t9626FF46E076B15F71F14133E3FE884F10F50DD2, ___typeName_1)); }
inline String_t* get_typeName_1() const { return ___typeName_1; }
inline String_t** get_address_of_typeName_1() { return &___typeName_1; }
inline void set_typeName_1(String_t* value)
{
___typeName_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___typeName_1), (void*)value);
}
inline static int32_t get_offset_of_methodName_2() { return static_cast<int32_t>(offsetof(CADMethodRef_t9626FF46E076B15F71F14133E3FE884F10F50DD2, ___methodName_2)); }
inline String_t* get_methodName_2() const { return ___methodName_2; }
inline String_t** get_address_of_methodName_2() { return &___methodName_2; }
inline void set_methodName_2(String_t* value)
{
___methodName_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___methodName_2), (void*)value);
}
inline static int32_t get_offset_of_param_names_3() { return static_cast<int32_t>(offsetof(CADMethodRef_t9626FF46E076B15F71F14133E3FE884F10F50DD2, ___param_names_3)); }
inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get_param_names_3() const { return ___param_names_3; }
inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of_param_names_3() { return &___param_names_3; }
inline void set_param_names_3(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value)
{
___param_names_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___param_names_3), (void*)value);
}
inline static int32_t get_offset_of_generic_arg_names_4() { return static_cast<int32_t>(offsetof(CADMethodRef_t9626FF46E076B15F71F14133E3FE884F10F50DD2, ___generic_arg_names_4)); }
inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get_generic_arg_names_4() const { return ___generic_arg_names_4; }
inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of_generic_arg_names_4() { return &___generic_arg_names_4; }
inline void set_generic_arg_names_4(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value)
{
___generic_arg_names_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___generic_arg_names_4), (void*)value);
}
};
// System.Runtime.Remoting.Messaging.CADObjRef
struct CADObjRef_tEBB48EB2D43F3C2012DFF53EC552B784A5FAA0FC : public RuntimeObject
{
public:
// System.Runtime.Remoting.ObjRef System.Runtime.Remoting.Messaging.CADObjRef::objref
ObjRef_t10D53E2178851535F38935DC53B48634063C84D3 * ___objref_0;
// System.Int32 System.Runtime.Remoting.Messaging.CADObjRef::SourceDomain
int32_t ___SourceDomain_1;
// System.Byte[] System.Runtime.Remoting.Messaging.CADObjRef::TypeInfo
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___TypeInfo_2;
public:
inline static int32_t get_offset_of_objref_0() { return static_cast<int32_t>(offsetof(CADObjRef_tEBB48EB2D43F3C2012DFF53EC552B784A5FAA0FC, ___objref_0)); }
inline ObjRef_t10D53E2178851535F38935DC53B48634063C84D3 * get_objref_0() const { return ___objref_0; }
inline ObjRef_t10D53E2178851535F38935DC53B48634063C84D3 ** get_address_of_objref_0() { return &___objref_0; }
inline void set_objref_0(ObjRef_t10D53E2178851535F38935DC53B48634063C84D3 * value)
{
___objref_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___objref_0), (void*)value);
}
inline static int32_t get_offset_of_SourceDomain_1() { return static_cast<int32_t>(offsetof(CADObjRef_tEBB48EB2D43F3C2012DFF53EC552B784A5FAA0FC, ___SourceDomain_1)); }
inline int32_t get_SourceDomain_1() const { return ___SourceDomain_1; }
inline int32_t* get_address_of_SourceDomain_1() { return &___SourceDomain_1; }
inline void set_SourceDomain_1(int32_t value)
{
___SourceDomain_1 = value;
}
inline static int32_t get_offset_of_TypeInfo_2() { return static_cast<int32_t>(offsetof(CADObjRef_tEBB48EB2D43F3C2012DFF53EC552B784A5FAA0FC, ___TypeInfo_2)); }
inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_TypeInfo_2() const { return ___TypeInfo_2; }
inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_TypeInfo_2() { return &___TypeInfo_2; }
inline void set_TypeInfo_2(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value)
{
___TypeInfo_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___TypeInfo_2), (void*)value);
}
};
// System.Runtime.Remoting.Messaging.CallContext
struct CallContext_t90895C0015A31D6E8A4F5185486EB6FB76A1544F : public RuntimeObject
{
public:
public:
};
// System.Runtime.Remoting.Messaging.CallContextRemotingData
struct CallContextRemotingData_t91D21A898FED729F67E6899F29076D9CF39E419E : public RuntimeObject
{
public:
// System.String System.Runtime.Remoting.Messaging.CallContextRemotingData::_logicalCallID
String_t* ____logicalCallID_0;
public:
inline static int32_t get_offset_of__logicalCallID_0() { return static_cast<int32_t>(offsetof(CallContextRemotingData_t91D21A898FED729F67E6899F29076D9CF39E419E, ____logicalCallID_0)); }
inline String_t* get__logicalCallID_0() const { return ____logicalCallID_0; }
inline String_t** get_address_of__logicalCallID_0() { return &____logicalCallID_0; }
inline void set__logicalCallID_0(String_t* value)
{
____logicalCallID_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____logicalCallID_0), (void*)value);
}
};
// System.Runtime.Remoting.Messaging.CallContextSecurityData
struct CallContextSecurityData_t57A7D75CA887E871D0AF1E3AF1AB9624AB99B431 : public RuntimeObject
{
public:
// System.Security.Principal.IPrincipal System.Runtime.Remoting.Messaging.CallContextSecurityData::_principal
RuntimeObject* ____principal_0;
public:
inline static int32_t get_offset_of__principal_0() { return static_cast<int32_t>(offsetof(CallContextSecurityData_t57A7D75CA887E871D0AF1E3AF1AB9624AB99B431, ____principal_0)); }
inline RuntimeObject* get__principal_0() const { return ____principal_0; }
inline RuntimeObject** get_address_of__principal_0() { return &____principal_0; }
inline void set__principal_0(RuntimeObject* value)
{
____principal_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____principal_0), (void*)value);
}
};
// System.Runtime.Remoting.Messaging.ClientContextReplySink
struct ClientContextReplySink_tAB77283D5E284109DBA2762B990D89C2F2BE24C8 : public RuntimeObject
{
public:
// System.Runtime.Remoting.Messaging.IMessageSink System.Runtime.Remoting.Messaging.ClientContextReplySink::_replySink
RuntimeObject* ____replySink_0;
// System.Runtime.Remoting.Contexts.Context System.Runtime.Remoting.Messaging.ClientContextReplySink::_context
Context_t8A5B564FD0F970E10A97ACB8A7579FFF3EE4C678 * ____context_1;
public:
inline static int32_t get_offset_of__replySink_0() { return static_cast<int32_t>(offsetof(ClientContextReplySink_tAB77283D5E284109DBA2762B990D89C2F2BE24C8, ____replySink_0)); }
inline RuntimeObject* get__replySink_0() const { return ____replySink_0; }
inline RuntimeObject** get_address_of__replySink_0() { return &____replySink_0; }
inline void set__replySink_0(RuntimeObject* value)
{
____replySink_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____replySink_0), (void*)value);
}
inline static int32_t get_offset_of__context_1() { return static_cast<int32_t>(offsetof(ClientContextReplySink_tAB77283D5E284109DBA2762B990D89C2F2BE24C8, ____context_1)); }
inline Context_t8A5B564FD0F970E10A97ACB8A7579FFF3EE4C678 * get__context_1() const { return ____context_1; }
inline Context_t8A5B564FD0F970E10A97ACB8A7579FFF3EE4C678 ** get_address_of__context_1() { return &____context_1; }
inline void set__context_1(Context_t8A5B564FD0F970E10A97ACB8A7579FFF3EE4C678 * value)
{
____context_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____context_1), (void*)value);
}
};
// System.Runtime.Remoting.Messaging.ClientContextTerminatorSink
struct ClientContextTerminatorSink_tA6083D944E104518F33798B16754D1BA236A3C20 : public RuntimeObject
{
public:
// System.Runtime.Remoting.Contexts.Context System.Runtime.Remoting.Messaging.ClientContextTerminatorSink::_context
Context_t8A5B564FD0F970E10A97ACB8A7579FFF3EE4C678 * ____context_0;
public:
inline static int32_t get_offset_of__context_0() { return static_cast<int32_t>(offsetof(ClientContextTerminatorSink_tA6083D944E104518F33798B16754D1BA236A3C20, ____context_0)); }
inline Context_t8A5B564FD0F970E10A97ACB8A7579FFF3EE4C678 * get__context_0() const { return ____context_0; }
inline Context_t8A5B564FD0F970E10A97ACB8A7579FFF3EE4C678 ** get_address_of__context_0() { return &____context_0; }
inline void set__context_0(Context_t8A5B564FD0F970E10A97ACB8A7579FFF3EE4C678 * value)
{
____context_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____context_0), (void*)value);
}
};
// System.Runtime.Remoting.Messaging.LogicalCallContext
struct LogicalCallContext_tB537C2A13F19FCC7EBC74757A415F2CA5C8FA1C3 : public RuntimeObject
{
public:
// System.Collections.Hashtable System.Runtime.Remoting.Messaging.LogicalCallContext::m_Datastore
Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * ___m_Datastore_1;
// System.Runtime.Remoting.Messaging.CallContextRemotingData System.Runtime.Remoting.Messaging.LogicalCallContext::m_RemotingData
CallContextRemotingData_t91D21A898FED729F67E6899F29076D9CF39E419E * ___m_RemotingData_2;
// System.Runtime.Remoting.Messaging.CallContextSecurityData System.Runtime.Remoting.Messaging.LogicalCallContext::m_SecurityData
CallContextSecurityData_t57A7D75CA887E871D0AF1E3AF1AB9624AB99B431 * ___m_SecurityData_3;
// System.Object System.Runtime.Remoting.Messaging.LogicalCallContext::m_HostContext
RuntimeObject * ___m_HostContext_4;
// System.Boolean System.Runtime.Remoting.Messaging.LogicalCallContext::m_IsCorrelationMgr
bool ___m_IsCorrelationMgr_5;
public:
inline static int32_t get_offset_of_m_Datastore_1() { return static_cast<int32_t>(offsetof(LogicalCallContext_tB537C2A13F19FCC7EBC74757A415F2CA5C8FA1C3, ___m_Datastore_1)); }
inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * get_m_Datastore_1() const { return ___m_Datastore_1; }
inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC ** get_address_of_m_Datastore_1() { return &___m_Datastore_1; }
inline void set_m_Datastore_1(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * value)
{
___m_Datastore_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Datastore_1), (void*)value);
}
inline static int32_t get_offset_of_m_RemotingData_2() { return static_cast<int32_t>(offsetof(LogicalCallContext_tB537C2A13F19FCC7EBC74757A415F2CA5C8FA1C3, ___m_RemotingData_2)); }
inline CallContextRemotingData_t91D21A898FED729F67E6899F29076D9CF39E419E * get_m_RemotingData_2() const { return ___m_RemotingData_2; }
inline CallContextRemotingData_t91D21A898FED729F67E6899F29076D9CF39E419E ** get_address_of_m_RemotingData_2() { return &___m_RemotingData_2; }
inline void set_m_RemotingData_2(CallContextRemotingData_t91D21A898FED729F67E6899F29076D9CF39E419E * value)
{
___m_RemotingData_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_RemotingData_2), (void*)value);
}
inline static int32_t get_offset_of_m_SecurityData_3() { return static_cast<int32_t>(offsetof(LogicalCallContext_tB537C2A13F19FCC7EBC74757A415F2CA5C8FA1C3, ___m_SecurityData_3)); }
inline CallContextSecurityData_t57A7D75CA887E871D0AF1E3AF1AB9624AB99B431 * get_m_SecurityData_3() const { return ___m_SecurityData_3; }
inline CallContextSecurityData_t57A7D75CA887E871D0AF1E3AF1AB9624AB99B431 ** get_address_of_m_SecurityData_3() { return &___m_SecurityData_3; }
inline void set_m_SecurityData_3(CallContextSecurityData_t57A7D75CA887E871D0AF1E3AF1AB9624AB99B431 * value)
{
___m_SecurityData_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_SecurityData_3), (void*)value);
}
inline static int32_t get_offset_of_m_HostContext_4() { return static_cast<int32_t>(offsetof(LogicalCallContext_tB537C2A13F19FCC7EBC74757A415F2CA5C8FA1C3, ___m_HostContext_4)); }
inline RuntimeObject * get_m_HostContext_4() const { return ___m_HostContext_4; }
inline RuntimeObject ** get_address_of_m_HostContext_4() { return &___m_HostContext_4; }
inline void set_m_HostContext_4(RuntimeObject * value)
{
___m_HostContext_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_HostContext_4), (void*)value);
}
inline static int32_t get_offset_of_m_IsCorrelationMgr_5() { return static_cast<int32_t>(offsetof(LogicalCallContext_tB537C2A13F19FCC7EBC74757A415F2CA5C8FA1C3, ___m_IsCorrelationMgr_5)); }
inline bool get_m_IsCorrelationMgr_5() const { return ___m_IsCorrelationMgr_5; }
inline bool* get_address_of_m_IsCorrelationMgr_5() { return &___m_IsCorrelationMgr_5; }
inline void set_m_IsCorrelationMgr_5(bool value)
{
___m_IsCorrelationMgr_5 = value;
}
};
struct LogicalCallContext_tB537C2A13F19FCC7EBC74757A415F2CA5C8FA1C3_StaticFields
{
public:
// System.Type System.Runtime.Remoting.Messaging.LogicalCallContext::s_callContextType
Type_t * ___s_callContextType_0;
public:
inline static int32_t get_offset_of_s_callContextType_0() { return static_cast<int32_t>(offsetof(LogicalCallContext_tB537C2A13F19FCC7EBC74757A415F2CA5C8FA1C3_StaticFields, ___s_callContextType_0)); }
inline Type_t * get_s_callContextType_0() const { return ___s_callContextType_0; }
inline Type_t ** get_address_of_s_callContextType_0() { return &___s_callContextType_0; }
inline void set_s_callContextType_0(Type_t * value)
{
___s_callContextType_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_callContextType_0), (void*)value);
}
};
// System.Runtime.Remoting.Messaging.MessageDictionary
struct MessageDictionary_tF87E1D8408337642172945A13C9C116D7F9336BE : public RuntimeObject
{
public:
// System.Collections.IDictionary System.Runtime.Remoting.Messaging.MessageDictionary::_internalProperties
RuntimeObject* ____internalProperties_0;
// System.Runtime.Remoting.Messaging.IMethodMessage System.Runtime.Remoting.Messaging.MessageDictionary::_message
RuntimeObject* ____message_1;
// System.String[] System.Runtime.Remoting.Messaging.MessageDictionary::_methodKeys
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ____methodKeys_2;
// System.Boolean System.Runtime.Remoting.Messaging.MessageDictionary::_ownProperties
bool ____ownProperties_3;
public:
inline static int32_t get_offset_of__internalProperties_0() { return static_cast<int32_t>(offsetof(MessageDictionary_tF87E1D8408337642172945A13C9C116D7F9336BE, ____internalProperties_0)); }
inline RuntimeObject* get__internalProperties_0() const { return ____internalProperties_0; }
inline RuntimeObject** get_address_of__internalProperties_0() { return &____internalProperties_0; }
inline void set__internalProperties_0(RuntimeObject* value)
{
____internalProperties_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____internalProperties_0), (void*)value);
}
inline static int32_t get_offset_of__message_1() { return static_cast<int32_t>(offsetof(MessageDictionary_tF87E1D8408337642172945A13C9C116D7F9336BE, ____message_1)); }
inline RuntimeObject* get__message_1() const { return ____message_1; }
inline RuntimeObject** get_address_of__message_1() { return &____message_1; }
inline void set__message_1(RuntimeObject* value)
{
____message_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____message_1), (void*)value);
}
inline static int32_t get_offset_of__methodKeys_2() { return static_cast<int32_t>(offsetof(MessageDictionary_tF87E1D8408337642172945A13C9C116D7F9336BE, ____methodKeys_2)); }
inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get__methodKeys_2() const { return ____methodKeys_2; }
inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of__methodKeys_2() { return &____methodKeys_2; }
inline void set__methodKeys_2(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value)
{
____methodKeys_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____methodKeys_2), (void*)value);
}
inline static int32_t get_offset_of__ownProperties_3() { return static_cast<int32_t>(offsetof(MessageDictionary_tF87E1D8408337642172945A13C9C116D7F9336BE, ____ownProperties_3)); }
inline bool get__ownProperties_3() const { return ____ownProperties_3; }
inline bool* get_address_of__ownProperties_3() { return &____ownProperties_3; }
inline void set__ownProperties_3(bool value)
{
____ownProperties_3 = value;
}
};
// System.Runtime.Remoting.Messaging.MethodResponse
struct MethodResponse_tF8C71D003BA7D3DFB7C5079C1586139A6130ADC5 : public RuntimeObject
{
public:
// System.String System.Runtime.Remoting.Messaging.MethodResponse::_methodName
String_t* ____methodName_0;
// System.String System.Runtime.Remoting.Messaging.MethodResponse::_uri
String_t* ____uri_1;
// System.String System.Runtime.Remoting.Messaging.MethodResponse::_typeName
String_t* ____typeName_2;
// System.Reflection.MethodBase System.Runtime.Remoting.Messaging.MethodResponse::_methodBase
MethodBase_t * ____methodBase_3;
// System.Object System.Runtime.Remoting.Messaging.MethodResponse::_returnValue
RuntimeObject * ____returnValue_4;
// System.Exception System.Runtime.Remoting.Messaging.MethodResponse::_exception
Exception_t * ____exception_5;
// System.Type[] System.Runtime.Remoting.Messaging.MethodResponse::_methodSignature
TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* ____methodSignature_6;
// System.Runtime.Remoting.Messaging.ArgInfo System.Runtime.Remoting.Messaging.MethodResponse::_inArgInfo
ArgInfo_tA94BF0451B100D18BFBC2EDA7947AFD4E2F5F7A2 * ____inArgInfo_7;
// System.Object[] System.Runtime.Remoting.Messaging.MethodResponse::_args
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ____args_8;
// System.Object[] System.Runtime.Remoting.Messaging.MethodResponse::_outArgs
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ____outArgs_9;
// System.Runtime.Remoting.Messaging.IMethodCallMessage System.Runtime.Remoting.Messaging.MethodResponse::_callMsg
RuntimeObject* ____callMsg_10;
// System.Runtime.Remoting.Messaging.LogicalCallContext System.Runtime.Remoting.Messaging.MethodResponse::_callContext
LogicalCallContext_tB537C2A13F19FCC7EBC74757A415F2CA5C8FA1C3 * ____callContext_11;
// System.Runtime.Remoting.Identity System.Runtime.Remoting.Messaging.MethodResponse::_targetIdentity
Identity_t640A44175E23F75AB432A7C00569D863BF48AAD5 * ____targetIdentity_12;
// System.Collections.IDictionary System.Runtime.Remoting.Messaging.MethodResponse::ExternalProperties
RuntimeObject* ___ExternalProperties_13;
// System.Collections.IDictionary System.Runtime.Remoting.Messaging.MethodResponse::InternalProperties
RuntimeObject* ___InternalProperties_14;
public:
inline static int32_t get_offset_of__methodName_0() { return static_cast<int32_t>(offsetof(MethodResponse_tF8C71D003BA7D3DFB7C5079C1586139A6130ADC5, ____methodName_0)); }
inline String_t* get__methodName_0() const { return ____methodName_0; }
inline String_t** get_address_of__methodName_0() { return &____methodName_0; }
inline void set__methodName_0(String_t* value)
{
____methodName_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____methodName_0), (void*)value);
}
inline static int32_t get_offset_of__uri_1() { return static_cast<int32_t>(offsetof(MethodResponse_tF8C71D003BA7D3DFB7C5079C1586139A6130ADC5, ____uri_1)); }
inline String_t* get__uri_1() const { return ____uri_1; }
inline String_t** get_address_of__uri_1() { return &____uri_1; }
inline void set__uri_1(String_t* value)
{
____uri_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____uri_1), (void*)value);
}
inline static int32_t get_offset_of__typeName_2() { return static_cast<int32_t>(offsetof(MethodResponse_tF8C71D003BA7D3DFB7C5079C1586139A6130ADC5, ____typeName_2)); }
inline String_t* get__typeName_2() const { return ____typeName_2; }
inline String_t** get_address_of__typeName_2() { return &____typeName_2; }
inline void set__typeName_2(String_t* value)
{
____typeName_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____typeName_2), (void*)value);
}
inline static int32_t get_offset_of__methodBase_3() { return static_cast<int32_t>(offsetof(MethodResponse_tF8C71D003BA7D3DFB7C5079C1586139A6130ADC5, ____methodBase_3)); }
inline MethodBase_t * get__methodBase_3() const { return ____methodBase_3; }
inline MethodBase_t ** get_address_of__methodBase_3() { return &____methodBase_3; }
inline void set__methodBase_3(MethodBase_t * value)
{
____methodBase_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____methodBase_3), (void*)value);
}
inline static int32_t get_offset_of__returnValue_4() { return static_cast<int32_t>(offsetof(MethodResponse_tF8C71D003BA7D3DFB7C5079C1586139A6130ADC5, ____returnValue_4)); }
inline RuntimeObject * get__returnValue_4() const { return ____returnValue_4; }
inline RuntimeObject ** get_address_of__returnValue_4() { return &____returnValue_4; }
inline void set__returnValue_4(RuntimeObject * value)
{
____returnValue_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____returnValue_4), (void*)value);
}
inline static int32_t get_offset_of__exception_5() { return static_cast<int32_t>(offsetof(MethodResponse_tF8C71D003BA7D3DFB7C5079C1586139A6130ADC5, ____exception_5)); }
inline Exception_t * get__exception_5() const { return ____exception_5; }
inline Exception_t ** get_address_of__exception_5() { return &____exception_5; }
inline void set__exception_5(Exception_t * value)
{
____exception_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____exception_5), (void*)value);
}
inline static int32_t get_offset_of__methodSignature_6() { return static_cast<int32_t>(offsetof(MethodResponse_tF8C71D003BA7D3DFB7C5079C1586139A6130ADC5, ____methodSignature_6)); }
inline TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* get__methodSignature_6() const { return ____methodSignature_6; }
inline TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755** get_address_of__methodSignature_6() { return &____methodSignature_6; }
inline void set__methodSignature_6(TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* value)
{
____methodSignature_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&____methodSignature_6), (void*)value);
}
inline static int32_t get_offset_of__inArgInfo_7() { return static_cast<int32_t>(offsetof(MethodResponse_tF8C71D003BA7D3DFB7C5079C1586139A6130ADC5, ____inArgInfo_7)); }
inline ArgInfo_tA94BF0451B100D18BFBC2EDA7947AFD4E2F5F7A2 * get__inArgInfo_7() const { return ____inArgInfo_7; }
inline ArgInfo_tA94BF0451B100D18BFBC2EDA7947AFD4E2F5F7A2 ** get_address_of__inArgInfo_7() { return &____inArgInfo_7; }
inline void set__inArgInfo_7(ArgInfo_tA94BF0451B100D18BFBC2EDA7947AFD4E2F5F7A2 * value)
{
____inArgInfo_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&____inArgInfo_7), (void*)value);
}
inline static int32_t get_offset_of__args_8() { return static_cast<int32_t>(offsetof(MethodResponse_tF8C71D003BA7D3DFB7C5079C1586139A6130ADC5, ____args_8)); }
inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get__args_8() const { return ____args_8; }
inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of__args_8() { return &____args_8; }
inline void set__args_8(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value)
{
____args_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&____args_8), (void*)value);
}
inline static int32_t get_offset_of__outArgs_9() { return static_cast<int32_t>(offsetof(MethodResponse_tF8C71D003BA7D3DFB7C5079C1586139A6130ADC5, ____outArgs_9)); }
inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get__outArgs_9() const { return ____outArgs_9; }
inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of__outArgs_9() { return &____outArgs_9; }
inline void set__outArgs_9(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value)
{
____outArgs_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&____outArgs_9), (void*)value);
}
inline static int32_t get_offset_of__callMsg_10() { return static_cast<int32_t>(offsetof(MethodResponse_tF8C71D003BA7D3DFB7C5079C1586139A6130ADC5, ____callMsg_10)); }
inline RuntimeObject* get__callMsg_10() const { return ____callMsg_10; }
inline RuntimeObject** get_address_of__callMsg_10() { return &____callMsg_10; }
inline void set__callMsg_10(RuntimeObject* value)
{
____callMsg_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&____callMsg_10), (void*)value);
}
inline static int32_t get_offset_of__callContext_11() { return static_cast<int32_t>(offsetof(MethodResponse_tF8C71D003BA7D3DFB7C5079C1586139A6130ADC5, ____callContext_11)); }
inline LogicalCallContext_tB537C2A13F19FCC7EBC74757A415F2CA5C8FA1C3 * get__callContext_11() const { return ____callContext_11; }
inline LogicalCallContext_tB537C2A13F19FCC7EBC74757A415F2CA5C8FA1C3 ** get_address_of__callContext_11() { return &____callContext_11; }
inline void set__callContext_11(LogicalCallContext_tB537C2A13F19FCC7EBC74757A415F2CA5C8FA1C3 * value)
{
____callContext_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&____callContext_11), (void*)value);
}
inline static int32_t get_offset_of__targetIdentity_12() { return static_cast<int32_t>(offsetof(MethodResponse_tF8C71D003BA7D3DFB7C5079C1586139A6130ADC5, ____targetIdentity_12)); }
inline Identity_t640A44175E23F75AB432A7C00569D863BF48AAD5 * get__targetIdentity_12() const { return ____targetIdentity_12; }
inline Identity_t640A44175E23F75AB432A7C00569D863BF48AAD5 ** get_address_of__targetIdentity_12() { return &____targetIdentity_12; }
inline void set__targetIdentity_12(Identity_t640A44175E23F75AB432A7C00569D863BF48AAD5 * value)
{
____targetIdentity_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&____targetIdentity_12), (void*)value);
}
inline static int32_t get_offset_of_ExternalProperties_13() { return static_cast<int32_t>(offsetof(MethodResponse_tF8C71D003BA7D3DFB7C5079C1586139A6130ADC5, ___ExternalProperties_13)); }
inline RuntimeObject* get_ExternalProperties_13() const { return ___ExternalProperties_13; }
inline RuntimeObject** get_address_of_ExternalProperties_13() { return &___ExternalProperties_13; }
inline void set_ExternalProperties_13(RuntimeObject* value)
{
___ExternalProperties_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&___ExternalProperties_13), (void*)value);
}
inline static int32_t get_offset_of_InternalProperties_14() { return static_cast<int32_t>(offsetof(MethodResponse_tF8C71D003BA7D3DFB7C5079C1586139A6130ADC5, ___InternalProperties_14)); }
inline RuntimeObject* get_InternalProperties_14() const { return ___InternalProperties_14; }
inline RuntimeObject** get_address_of_InternalProperties_14() { return &___InternalProperties_14; }
inline void set_InternalProperties_14(RuntimeObject* value)
{
___InternalProperties_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&___InternalProperties_14), (void*)value);
}
};
// System.Runtime.Remoting.Messaging.RemotingSurrogateSelector
struct RemotingSurrogateSelector_t1E36D625AE2C1058EA107D872577F1EFD04B5FCA : public RuntimeObject
{
public:
// System.Runtime.Serialization.ISurrogateSelector System.Runtime.Remoting.Messaging.RemotingSurrogateSelector::_next
RuntimeObject* ____next_3;
public:
inline static int32_t get_offset_of__next_3() { return static_cast<int32_t>(offsetof(RemotingSurrogateSelector_t1E36D625AE2C1058EA107D872577F1EFD04B5FCA, ____next_3)); }
inline RuntimeObject* get__next_3() const { return ____next_3; }
inline RuntimeObject** get_address_of__next_3() { return &____next_3; }
inline void set__next_3(RuntimeObject* value)
{
____next_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____next_3), (void*)value);
}
};
struct RemotingSurrogateSelector_t1E36D625AE2C1058EA107D872577F1EFD04B5FCA_StaticFields
{
public:
// System.Type System.Runtime.Remoting.Messaging.RemotingSurrogateSelector::s_cachedTypeObjRef
Type_t * ___s_cachedTypeObjRef_0;
// System.Runtime.Remoting.Messaging.ObjRefSurrogate System.Runtime.Remoting.Messaging.RemotingSurrogateSelector::_objRefSurrogate
ObjRefSurrogate_t7924C0ED9F5EC7E25977237ADC3276383606703F * ____objRefSurrogate_1;
// System.Runtime.Remoting.Messaging.RemotingSurrogate System.Runtime.Remoting.Messaging.RemotingSurrogateSelector::_objRemotingSurrogate
RemotingSurrogate_t4EB3586932A8FD1934D45761A7A411C44595F6EC * ____objRemotingSurrogate_2;
public:
inline static int32_t get_offset_of_s_cachedTypeObjRef_0() { return static_cast<int32_t>(offsetof(RemotingSurrogateSelector_t1E36D625AE2C1058EA107D872577F1EFD04B5FCA_StaticFields, ___s_cachedTypeObjRef_0)); }
inline Type_t * get_s_cachedTypeObjRef_0() const { return ___s_cachedTypeObjRef_0; }
inline Type_t ** get_address_of_s_cachedTypeObjRef_0() { return &___s_cachedTypeObjRef_0; }
inline void set_s_cachedTypeObjRef_0(Type_t * value)
{
___s_cachedTypeObjRef_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_cachedTypeObjRef_0), (void*)value);
}
inline static int32_t get_offset_of__objRefSurrogate_1() { return static_cast<int32_t>(offsetof(RemotingSurrogateSelector_t1E36D625AE2C1058EA107D872577F1EFD04B5FCA_StaticFields, ____objRefSurrogate_1)); }
inline ObjRefSurrogate_t7924C0ED9F5EC7E25977237ADC3276383606703F * get__objRefSurrogate_1() const { return ____objRefSurrogate_1; }
inline ObjRefSurrogate_t7924C0ED9F5EC7E25977237ADC3276383606703F ** get_address_of__objRefSurrogate_1() { return &____objRefSurrogate_1; }
inline void set__objRefSurrogate_1(ObjRefSurrogate_t7924C0ED9F5EC7E25977237ADC3276383606703F * value)
{
____objRefSurrogate_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____objRefSurrogate_1), (void*)value);
}
inline static int32_t get_offset_of__objRemotingSurrogate_2() { return static_cast<int32_t>(offsetof(RemotingSurrogateSelector_t1E36D625AE2C1058EA107D872577F1EFD04B5FCA_StaticFields, ____objRemotingSurrogate_2)); }
inline RemotingSurrogate_t4EB3586932A8FD1934D45761A7A411C44595F6EC * get__objRemotingSurrogate_2() const { return ____objRemotingSurrogate_2; }
inline RemotingSurrogate_t4EB3586932A8FD1934D45761A7A411C44595F6EC ** get_address_of__objRemotingSurrogate_2() { return &____objRemotingSurrogate_2; }
inline void set__objRemotingSurrogate_2(RemotingSurrogate_t4EB3586932A8FD1934D45761A7A411C44595F6EC * value)
{
____objRemotingSurrogate_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____objRemotingSurrogate_2), (void*)value);
}
};
// System.Runtime.Remoting.Messaging.ReturnMessage
struct ReturnMessage_tBC416F1575159EF223AB8AF256F46F5832E3F3F9 : public RuntimeObject
{
public:
// System.Object[] System.Runtime.Remoting.Messaging.ReturnMessage::_outArgs
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ____outArgs_0;
// System.Object[] System.Runtime.Remoting.Messaging.ReturnMessage::_args
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ____args_1;
// System.Runtime.Remoting.Messaging.LogicalCallContext System.Runtime.Remoting.Messaging.ReturnMessage::_callCtx
LogicalCallContext_tB537C2A13F19FCC7EBC74757A415F2CA5C8FA1C3 * ____callCtx_2;
// System.Object System.Runtime.Remoting.Messaging.ReturnMessage::_returnValue
RuntimeObject * ____returnValue_3;
// System.String System.Runtime.Remoting.Messaging.ReturnMessage::_uri
String_t* ____uri_4;
// System.Exception System.Runtime.Remoting.Messaging.ReturnMessage::_exception
Exception_t * ____exception_5;
// System.Reflection.MethodBase System.Runtime.Remoting.Messaging.ReturnMessage::_methodBase
MethodBase_t * ____methodBase_6;
// System.String System.Runtime.Remoting.Messaging.ReturnMessage::_methodName
String_t* ____methodName_7;
// System.Type[] System.Runtime.Remoting.Messaging.ReturnMessage::_methodSignature
TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* ____methodSignature_8;
// System.String System.Runtime.Remoting.Messaging.ReturnMessage::_typeName
String_t* ____typeName_9;
// System.Runtime.Remoting.Messaging.MethodReturnDictionary System.Runtime.Remoting.Messaging.ReturnMessage::_properties
MethodReturnDictionary_tCD3B3B0F69F53EF7653CB5E6B175628E8FD54531 * ____properties_10;
// System.Runtime.Remoting.Identity System.Runtime.Remoting.Messaging.ReturnMessage::_targetIdentity
Identity_t640A44175E23F75AB432A7C00569D863BF48AAD5 * ____targetIdentity_11;
// System.Runtime.Remoting.Messaging.ArgInfo System.Runtime.Remoting.Messaging.ReturnMessage::_inArgInfo
ArgInfo_tA94BF0451B100D18BFBC2EDA7947AFD4E2F5F7A2 * ____inArgInfo_12;
public:
inline static int32_t get_offset_of__outArgs_0() { return static_cast<int32_t>(offsetof(ReturnMessage_tBC416F1575159EF223AB8AF256F46F5832E3F3F9, ____outArgs_0)); }
inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get__outArgs_0() const { return ____outArgs_0; }
inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of__outArgs_0() { return &____outArgs_0; }
inline void set__outArgs_0(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value)
{
____outArgs_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____outArgs_0), (void*)value);
}
inline static int32_t get_offset_of__args_1() { return static_cast<int32_t>(offsetof(ReturnMessage_tBC416F1575159EF223AB8AF256F46F5832E3F3F9, ____args_1)); }
inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get__args_1() const { return ____args_1; }
inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of__args_1() { return &____args_1; }
inline void set__args_1(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value)
{
____args_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____args_1), (void*)value);
}
inline static int32_t get_offset_of__callCtx_2() { return static_cast<int32_t>(offsetof(ReturnMessage_tBC416F1575159EF223AB8AF256F46F5832E3F3F9, ____callCtx_2)); }
inline LogicalCallContext_tB537C2A13F19FCC7EBC74757A415F2CA5C8FA1C3 * get__callCtx_2() const { return ____callCtx_2; }
inline LogicalCallContext_tB537C2A13F19FCC7EBC74757A415F2CA5C8FA1C3 ** get_address_of__callCtx_2() { return &____callCtx_2; }
inline void set__callCtx_2(LogicalCallContext_tB537C2A13F19FCC7EBC74757A415F2CA5C8FA1C3 * value)
{
____callCtx_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____callCtx_2), (void*)value);
}
inline static int32_t get_offset_of__returnValue_3() { return static_cast<int32_t>(offsetof(ReturnMessage_tBC416F1575159EF223AB8AF256F46F5832E3F3F9, ____returnValue_3)); }
inline RuntimeObject * get__returnValue_3() const { return ____returnValue_3; }
inline RuntimeObject ** get_address_of__returnValue_3() { return &____returnValue_3; }
inline void set__returnValue_3(RuntimeObject * value)
{
____returnValue_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____returnValue_3), (void*)value);
}
inline static int32_t get_offset_of__uri_4() { return static_cast<int32_t>(offsetof(ReturnMessage_tBC416F1575159EF223AB8AF256F46F5832E3F3F9, ____uri_4)); }
inline String_t* get__uri_4() const { return ____uri_4; }
inline String_t** get_address_of__uri_4() { return &____uri_4; }
inline void set__uri_4(String_t* value)
{
____uri_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____uri_4), (void*)value);
}
inline static int32_t get_offset_of__exception_5() { return static_cast<int32_t>(offsetof(ReturnMessage_tBC416F1575159EF223AB8AF256F46F5832E3F3F9, ____exception_5)); }
inline Exception_t * get__exception_5() const { return ____exception_5; }
inline Exception_t ** get_address_of__exception_5() { return &____exception_5; }
inline void set__exception_5(Exception_t * value)
{
____exception_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____exception_5), (void*)value);
}
inline static int32_t get_offset_of__methodBase_6() { return static_cast<int32_t>(offsetof(ReturnMessage_tBC416F1575159EF223AB8AF256F46F5832E3F3F9, ____methodBase_6)); }
inline MethodBase_t * get__methodBase_6() const { return ____methodBase_6; }
inline MethodBase_t ** get_address_of__methodBase_6() { return &____methodBase_6; }
inline void set__methodBase_6(MethodBase_t * value)
{
____methodBase_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&____methodBase_6), (void*)value);
}
inline static int32_t get_offset_of__methodName_7() { return static_cast<int32_t>(offsetof(ReturnMessage_tBC416F1575159EF223AB8AF256F46F5832E3F3F9, ____methodName_7)); }
inline String_t* get__methodName_7() const { return ____methodName_7; }
inline String_t** get_address_of__methodName_7() { return &____methodName_7; }
inline void set__methodName_7(String_t* value)
{
____methodName_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&____methodName_7), (void*)value);
}
inline static int32_t get_offset_of__methodSignature_8() { return static_cast<int32_t>(offsetof(ReturnMessage_tBC416F1575159EF223AB8AF256F46F5832E3F3F9, ____methodSignature_8)); }
inline TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* get__methodSignature_8() const { return ____methodSignature_8; }
inline TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755** get_address_of__methodSignature_8() { return &____methodSignature_8; }
inline void set__methodSignature_8(TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* value)
{
____methodSignature_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&____methodSignature_8), (void*)value);
}
inline static int32_t get_offset_of__typeName_9() { return static_cast<int32_t>(offsetof(ReturnMessage_tBC416F1575159EF223AB8AF256F46F5832E3F3F9, ____typeName_9)); }
inline String_t* get__typeName_9() const { return ____typeName_9; }
inline String_t** get_address_of__typeName_9() { return &____typeName_9; }
inline void set__typeName_9(String_t* value)
{
____typeName_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&____typeName_9), (void*)value);
}
inline static int32_t get_offset_of__properties_10() { return static_cast<int32_t>(offsetof(ReturnMessage_tBC416F1575159EF223AB8AF256F46F5832E3F3F9, ____properties_10)); }
inline MethodReturnDictionary_tCD3B3B0F69F53EF7653CB5E6B175628E8FD54531 * get__properties_10() const { return ____properties_10; }
inline MethodReturnDictionary_tCD3B3B0F69F53EF7653CB5E6B175628E8FD54531 ** get_address_of__properties_10() { return &____properties_10; }
inline void set__properties_10(MethodReturnDictionary_tCD3B3B0F69F53EF7653CB5E6B175628E8FD54531 * value)
{
____properties_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&____properties_10), (void*)value);
}
inline static int32_t get_offset_of__targetIdentity_11() { return static_cast<int32_t>(offsetof(ReturnMessage_tBC416F1575159EF223AB8AF256F46F5832E3F3F9, ____targetIdentity_11)); }
inline Identity_t640A44175E23F75AB432A7C00569D863BF48AAD5 * get__targetIdentity_11() const { return ____targetIdentity_11; }
inline Identity_t640A44175E23F75AB432A7C00569D863BF48AAD5 ** get_address_of__targetIdentity_11() { return &____targetIdentity_11; }
inline void set__targetIdentity_11(Identity_t640A44175E23F75AB432A7C00569D863BF48AAD5 * value)
{
____targetIdentity_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&____targetIdentity_11), (void*)value);
}
inline static int32_t get_offset_of__inArgInfo_12() { return static_cast<int32_t>(offsetof(ReturnMessage_tBC416F1575159EF223AB8AF256F46F5832E3F3F9, ____inArgInfo_12)); }
inline ArgInfo_tA94BF0451B100D18BFBC2EDA7947AFD4E2F5F7A2 * get__inArgInfo_12() const { return ____inArgInfo_12; }
inline ArgInfo_tA94BF0451B100D18BFBC2EDA7947AFD4E2F5F7A2 ** get_address_of__inArgInfo_12() { return &____inArgInfo_12; }
inline void set__inArgInfo_12(ArgInfo_tA94BF0451B100D18BFBC2EDA7947AFD4E2F5F7A2 * value)
{
____inArgInfo_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&____inArgInfo_12), (void*)value);
}
};
// System.Runtime.Remoting.ObjRef
struct ObjRef_t10D53E2178851535F38935DC53B48634063C84D3 : public RuntimeObject
{
public:
// System.Runtime.Remoting.IChannelInfo System.Runtime.Remoting.ObjRef::channel_info
RuntimeObject* ___channel_info_0;
// System.String System.Runtime.Remoting.ObjRef::uri
String_t* ___uri_1;
// System.Runtime.Remoting.IRemotingTypeInfo System.Runtime.Remoting.ObjRef::typeInfo
RuntimeObject* ___typeInfo_2;
// System.Runtime.Remoting.IEnvoyInfo System.Runtime.Remoting.ObjRef::envoyInfo
RuntimeObject* ___envoyInfo_3;
// System.Int32 System.Runtime.Remoting.ObjRef::flags
int32_t ___flags_4;
// System.Type System.Runtime.Remoting.ObjRef::_serverType
Type_t * ____serverType_5;
public:
inline static int32_t get_offset_of_channel_info_0() { return static_cast<int32_t>(offsetof(ObjRef_t10D53E2178851535F38935DC53B48634063C84D3, ___channel_info_0)); }
inline RuntimeObject* get_channel_info_0() const { return ___channel_info_0; }
inline RuntimeObject** get_address_of_channel_info_0() { return &___channel_info_0; }
inline void set_channel_info_0(RuntimeObject* value)
{
___channel_info_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___channel_info_0), (void*)value);
}
inline static int32_t get_offset_of_uri_1() { return static_cast<int32_t>(offsetof(ObjRef_t10D53E2178851535F38935DC53B48634063C84D3, ___uri_1)); }
inline String_t* get_uri_1() const { return ___uri_1; }
inline String_t** get_address_of_uri_1() { return &___uri_1; }
inline void set_uri_1(String_t* value)
{
___uri_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___uri_1), (void*)value);
}
inline static int32_t get_offset_of_typeInfo_2() { return static_cast<int32_t>(offsetof(ObjRef_t10D53E2178851535F38935DC53B48634063C84D3, ___typeInfo_2)); }
inline RuntimeObject* get_typeInfo_2() const { return ___typeInfo_2; }
inline RuntimeObject** get_address_of_typeInfo_2() { return &___typeInfo_2; }
inline void set_typeInfo_2(RuntimeObject* value)
{
___typeInfo_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___typeInfo_2), (void*)value);
}
inline static int32_t get_offset_of_envoyInfo_3() { return static_cast<int32_t>(offsetof(ObjRef_t10D53E2178851535F38935DC53B48634063C84D3, ___envoyInfo_3)); }
inline RuntimeObject* get_envoyInfo_3() const { return ___envoyInfo_3; }
inline RuntimeObject** get_address_of_envoyInfo_3() { return &___envoyInfo_3; }
inline void set_envoyInfo_3(RuntimeObject* value)
{
___envoyInfo_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___envoyInfo_3), (void*)value);
}
inline static int32_t get_offset_of_flags_4() { return static_cast<int32_t>(offsetof(ObjRef_t10D53E2178851535F38935DC53B48634063C84D3, ___flags_4)); }
inline int32_t get_flags_4() const { return ___flags_4; }
inline int32_t* get_address_of_flags_4() { return &___flags_4; }
inline void set_flags_4(int32_t value)
{
___flags_4 = value;
}
inline static int32_t get_offset_of__serverType_5() { return static_cast<int32_t>(offsetof(ObjRef_t10D53E2178851535F38935DC53B48634063C84D3, ____serverType_5)); }
inline Type_t * get__serverType_5() const { return ____serverType_5; }
inline Type_t ** get_address_of__serverType_5() { return &____serverType_5; }
inline void set__serverType_5(Type_t * value)
{
____serverType_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____serverType_5), (void*)value);
}
};
struct ObjRef_t10D53E2178851535F38935DC53B48634063C84D3_StaticFields
{
public:
// System.Int32 System.Runtime.Remoting.ObjRef::MarshalledObjectRef
int32_t ___MarshalledObjectRef_6;
// System.Int32 System.Runtime.Remoting.ObjRef::WellKnowObjectRef
int32_t ___WellKnowObjectRef_7;
public:
inline static int32_t get_offset_of_MarshalledObjectRef_6() { return static_cast<int32_t>(offsetof(ObjRef_t10D53E2178851535F38935DC53B48634063C84D3_StaticFields, ___MarshalledObjectRef_6)); }
inline int32_t get_MarshalledObjectRef_6() const { return ___MarshalledObjectRef_6; }
inline int32_t* get_address_of_MarshalledObjectRef_6() { return &___MarshalledObjectRef_6; }
inline void set_MarshalledObjectRef_6(int32_t value)
{
___MarshalledObjectRef_6 = value;
}
inline static int32_t get_offset_of_WellKnowObjectRef_7() { return static_cast<int32_t>(offsetof(ObjRef_t10D53E2178851535F38935DC53B48634063C84D3_StaticFields, ___WellKnowObjectRef_7)); }
inline int32_t get_WellKnowObjectRef_7() const { return ___WellKnowObjectRef_7; }
inline int32_t* get_address_of_WellKnowObjectRef_7() { return &___WellKnowObjectRef_7; }
inline void set_WellKnowObjectRef_7(int32_t value)
{
___WellKnowObjectRef_7 = value;
}
};
// System.Runtime.Remoting.ProviderData
struct ProviderData_t2E4B222839D59BB2D2C44E370FA8ED37DAF4F582 : public RuntimeObject
{
public:
// System.String System.Runtime.Remoting.ProviderData::Ref
String_t* ___Ref_0;
// System.String System.Runtime.Remoting.ProviderData::Type
String_t* ___Type_1;
// System.String System.Runtime.Remoting.ProviderData::Id
String_t* ___Id_2;
// System.Collections.Hashtable System.Runtime.Remoting.ProviderData::CustomProperties
Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * ___CustomProperties_3;
// System.Collections.IList System.Runtime.Remoting.ProviderData::CustomData
RuntimeObject* ___CustomData_4;
public:
inline static int32_t get_offset_of_Ref_0() { return static_cast<int32_t>(offsetof(ProviderData_t2E4B222839D59BB2D2C44E370FA8ED37DAF4F582, ___Ref_0)); }
inline String_t* get_Ref_0() const { return ___Ref_0; }
inline String_t** get_address_of_Ref_0() { return &___Ref_0; }
inline void set_Ref_0(String_t* value)
{
___Ref_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Ref_0), (void*)value);
}
inline static int32_t get_offset_of_Type_1() { return static_cast<int32_t>(offsetof(ProviderData_t2E4B222839D59BB2D2C44E370FA8ED37DAF4F582, ___Type_1)); }
inline String_t* get_Type_1() const { return ___Type_1; }
inline String_t** get_address_of_Type_1() { return &___Type_1; }
inline void set_Type_1(String_t* value)
{
___Type_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Type_1), (void*)value);
}
inline static int32_t get_offset_of_Id_2() { return static_cast<int32_t>(offsetof(ProviderData_t2E4B222839D59BB2D2C44E370FA8ED37DAF4F582, ___Id_2)); }
inline String_t* get_Id_2() const { return ___Id_2; }
inline String_t** get_address_of_Id_2() { return &___Id_2; }
inline void set_Id_2(String_t* value)
{
___Id_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Id_2), (void*)value);
}
inline static int32_t get_offset_of_CustomProperties_3() { return static_cast<int32_t>(offsetof(ProviderData_t2E4B222839D59BB2D2C44E370FA8ED37DAF4F582, ___CustomProperties_3)); }
inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * get_CustomProperties_3() const { return ___CustomProperties_3; }
inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC ** get_address_of_CustomProperties_3() { return &___CustomProperties_3; }
inline void set_CustomProperties_3(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * value)
{
___CustomProperties_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___CustomProperties_3), (void*)value);
}
inline static int32_t get_offset_of_CustomData_4() { return static_cast<int32_t>(offsetof(ProviderData_t2E4B222839D59BB2D2C44E370FA8ED37DAF4F582, ___CustomData_4)); }
inline RuntimeObject* get_CustomData_4() const { return ___CustomData_4; }
inline RuntimeObject** get_address_of_CustomData_4() { return &___CustomData_4; }
inline void set_CustomData_4(RuntimeObject* value)
{
___CustomData_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___CustomData_4), (void*)value);
}
};
// System.Runtime.Remoting.RemotingConfiguration
struct RemotingConfiguration_t9AFFB44D1A1D02A702140D927B0173593B67D0C5 : public RuntimeObject
{
public:
public:
};
struct RemotingConfiguration_t9AFFB44D1A1D02A702140D927B0173593B67D0C5_StaticFields
{
public:
// System.String System.Runtime.Remoting.RemotingConfiguration::applicationID
String_t* ___applicationID_0;
// System.String System.Runtime.Remoting.RemotingConfiguration::applicationName
String_t* ___applicationName_1;
// System.String System.Runtime.Remoting.RemotingConfiguration::processGuid
String_t* ___processGuid_2;
// System.Boolean System.Runtime.Remoting.RemotingConfiguration::defaultConfigRead
bool ___defaultConfigRead_3;
// System.Boolean System.Runtime.Remoting.RemotingConfiguration::defaultDelayedConfigRead
bool ___defaultDelayedConfigRead_4;
// System.String System.Runtime.Remoting.RemotingConfiguration::_errorMode
String_t* ____errorMode_5;
// System.Collections.Hashtable System.Runtime.Remoting.RemotingConfiguration::wellKnownClientEntries
Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * ___wellKnownClientEntries_6;
// System.Collections.Hashtable System.Runtime.Remoting.RemotingConfiguration::activatedClientEntries
Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * ___activatedClientEntries_7;
// System.Collections.Hashtable System.Runtime.Remoting.RemotingConfiguration::wellKnownServiceEntries
Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * ___wellKnownServiceEntries_8;
// System.Collections.Hashtable System.Runtime.Remoting.RemotingConfiguration::activatedServiceEntries
Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * ___activatedServiceEntries_9;
// System.Collections.Hashtable System.Runtime.Remoting.RemotingConfiguration::channelTemplates
Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * ___channelTemplates_10;
// System.Collections.Hashtable System.Runtime.Remoting.RemotingConfiguration::clientProviderTemplates
Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * ___clientProviderTemplates_11;
// System.Collections.Hashtable System.Runtime.Remoting.RemotingConfiguration::serverProviderTemplates
Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * ___serverProviderTemplates_12;
public:
inline static int32_t get_offset_of_applicationID_0() { return static_cast<int32_t>(offsetof(RemotingConfiguration_t9AFFB44D1A1D02A702140D927B0173593B67D0C5_StaticFields, ___applicationID_0)); }
inline String_t* get_applicationID_0() const { return ___applicationID_0; }
inline String_t** get_address_of_applicationID_0() { return &___applicationID_0; }
inline void set_applicationID_0(String_t* value)
{
___applicationID_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___applicationID_0), (void*)value);
}
inline static int32_t get_offset_of_applicationName_1() { return static_cast<int32_t>(offsetof(RemotingConfiguration_t9AFFB44D1A1D02A702140D927B0173593B67D0C5_StaticFields, ___applicationName_1)); }
inline String_t* get_applicationName_1() const { return ___applicationName_1; }
inline String_t** get_address_of_applicationName_1() { return &___applicationName_1; }
inline void set_applicationName_1(String_t* value)
{
___applicationName_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___applicationName_1), (void*)value);
}
inline static int32_t get_offset_of_processGuid_2() { return static_cast<int32_t>(offsetof(RemotingConfiguration_t9AFFB44D1A1D02A702140D927B0173593B67D0C5_StaticFields, ___processGuid_2)); }
inline String_t* get_processGuid_2() const { return ___processGuid_2; }
inline String_t** get_address_of_processGuid_2() { return &___processGuid_2; }
inline void set_processGuid_2(String_t* value)
{
___processGuid_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___processGuid_2), (void*)value);
}
inline static int32_t get_offset_of_defaultConfigRead_3() { return static_cast<int32_t>(offsetof(RemotingConfiguration_t9AFFB44D1A1D02A702140D927B0173593B67D0C5_StaticFields, ___defaultConfigRead_3)); }
inline bool get_defaultConfigRead_3() const { return ___defaultConfigRead_3; }
inline bool* get_address_of_defaultConfigRead_3() { return &___defaultConfigRead_3; }
inline void set_defaultConfigRead_3(bool value)
{
___defaultConfigRead_3 = value;
}
inline static int32_t get_offset_of_defaultDelayedConfigRead_4() { return static_cast<int32_t>(offsetof(RemotingConfiguration_t9AFFB44D1A1D02A702140D927B0173593B67D0C5_StaticFields, ___defaultDelayedConfigRead_4)); }
inline bool get_defaultDelayedConfigRead_4() const { return ___defaultDelayedConfigRead_4; }
inline bool* get_address_of_defaultDelayedConfigRead_4() { return &___defaultDelayedConfigRead_4; }
inline void set_defaultDelayedConfigRead_4(bool value)
{
___defaultDelayedConfigRead_4 = value;
}
inline static int32_t get_offset_of__errorMode_5() { return static_cast<int32_t>(offsetof(RemotingConfiguration_t9AFFB44D1A1D02A702140D927B0173593B67D0C5_StaticFields, ____errorMode_5)); }
inline String_t* get__errorMode_5() const { return ____errorMode_5; }
inline String_t** get_address_of__errorMode_5() { return &____errorMode_5; }
inline void set__errorMode_5(String_t* value)
{
____errorMode_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____errorMode_5), (void*)value);
}
inline static int32_t get_offset_of_wellKnownClientEntries_6() { return static_cast<int32_t>(offsetof(RemotingConfiguration_t9AFFB44D1A1D02A702140D927B0173593B67D0C5_StaticFields, ___wellKnownClientEntries_6)); }
inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * get_wellKnownClientEntries_6() const { return ___wellKnownClientEntries_6; }
inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC ** get_address_of_wellKnownClientEntries_6() { return &___wellKnownClientEntries_6; }
inline void set_wellKnownClientEntries_6(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * value)
{
___wellKnownClientEntries_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___wellKnownClientEntries_6), (void*)value);
}
inline static int32_t get_offset_of_activatedClientEntries_7() { return static_cast<int32_t>(offsetof(RemotingConfiguration_t9AFFB44D1A1D02A702140D927B0173593B67D0C5_StaticFields, ___activatedClientEntries_7)); }
inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * get_activatedClientEntries_7() const { return ___activatedClientEntries_7; }
inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC ** get_address_of_activatedClientEntries_7() { return &___activatedClientEntries_7; }
inline void set_activatedClientEntries_7(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * value)
{
___activatedClientEntries_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___activatedClientEntries_7), (void*)value);
}
inline static int32_t get_offset_of_wellKnownServiceEntries_8() { return static_cast<int32_t>(offsetof(RemotingConfiguration_t9AFFB44D1A1D02A702140D927B0173593B67D0C5_StaticFields, ___wellKnownServiceEntries_8)); }
inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * get_wellKnownServiceEntries_8() const { return ___wellKnownServiceEntries_8; }
inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC ** get_address_of_wellKnownServiceEntries_8() { return &___wellKnownServiceEntries_8; }
inline void set_wellKnownServiceEntries_8(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * value)
{
___wellKnownServiceEntries_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___wellKnownServiceEntries_8), (void*)value);
}
inline static int32_t get_offset_of_activatedServiceEntries_9() { return static_cast<int32_t>(offsetof(RemotingConfiguration_t9AFFB44D1A1D02A702140D927B0173593B67D0C5_StaticFields, ___activatedServiceEntries_9)); }
inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * get_activatedServiceEntries_9() const { return ___activatedServiceEntries_9; }
inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC ** get_address_of_activatedServiceEntries_9() { return &___activatedServiceEntries_9; }
inline void set_activatedServiceEntries_9(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * value)
{
___activatedServiceEntries_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___activatedServiceEntries_9), (void*)value);
}
inline static int32_t get_offset_of_channelTemplates_10() { return static_cast<int32_t>(offsetof(RemotingConfiguration_t9AFFB44D1A1D02A702140D927B0173593B67D0C5_StaticFields, ___channelTemplates_10)); }
inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * get_channelTemplates_10() const { return ___channelTemplates_10; }
inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC ** get_address_of_channelTemplates_10() { return &___channelTemplates_10; }
inline void set_channelTemplates_10(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * value)
{
___channelTemplates_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___channelTemplates_10), (void*)value);
}
inline static int32_t get_offset_of_clientProviderTemplates_11() { return static_cast<int32_t>(offsetof(RemotingConfiguration_t9AFFB44D1A1D02A702140D927B0173593B67D0C5_StaticFields, ___clientProviderTemplates_11)); }
inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * get_clientProviderTemplates_11() const { return ___clientProviderTemplates_11; }
inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC ** get_address_of_clientProviderTemplates_11() { return &___clientProviderTemplates_11; }
inline void set_clientProviderTemplates_11(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * value)
{
___clientProviderTemplates_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___clientProviderTemplates_11), (void*)value);
}
inline static int32_t get_offset_of_serverProviderTemplates_12() { return static_cast<int32_t>(offsetof(RemotingConfiguration_t9AFFB44D1A1D02A702140D927B0173593B67D0C5_StaticFields, ___serverProviderTemplates_12)); }
inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * get_serverProviderTemplates_12() const { return ___serverProviderTemplates_12; }
inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC ** get_address_of_serverProviderTemplates_12() { return &___serverProviderTemplates_12; }
inline void set_serverProviderTemplates_12(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * value)
{
___serverProviderTemplates_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&___serverProviderTemplates_12), (void*)value);
}
};
// System.Runtime.Remoting.TypeEntry
struct TypeEntry_tE6A29217B055E31F4568B08F627D9BD7E4B28DE5 : public RuntimeObject
{
public:
// System.String System.Runtime.Remoting.TypeEntry::assembly_name
String_t* ___assembly_name_0;
// System.String System.Runtime.Remoting.TypeEntry::type_name
String_t* ___type_name_1;
public:
inline static int32_t get_offset_of_assembly_name_0() { return static_cast<int32_t>(offsetof(TypeEntry_tE6A29217B055E31F4568B08F627D9BD7E4B28DE5, ___assembly_name_0)); }
inline String_t* get_assembly_name_0() const { return ___assembly_name_0; }
inline String_t** get_address_of_assembly_name_0() { return &___assembly_name_0; }
inline void set_assembly_name_0(String_t* value)
{
___assembly_name_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___assembly_name_0), (void*)value);
}
inline static int32_t get_offset_of_type_name_1() { return static_cast<int32_t>(offsetof(TypeEntry_tE6A29217B055E31F4568B08F627D9BD7E4B28DE5, ___type_name_1)); }
inline String_t* get_type_name_1() const { return ___type_name_1; }
inline String_t** get_address_of_type_name_1() { return &___type_name_1; }
inline void set_type_name_1(String_t* value)
{
___type_name_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___type_name_1), (void*)value);
}
};
// System.Runtime.Serialization.SerializationInfo
struct SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 : public RuntimeObject
{
public:
// System.String[] System.Runtime.Serialization.SerializationInfo::m_members
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___m_members_0;
// System.Object[] System.Runtime.Serialization.SerializationInfo::m_data
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___m_data_1;
// System.Type[] System.Runtime.Serialization.SerializationInfo::m_types
TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* ___m_types_2;
// System.Collections.Generic.Dictionary`2<System.String,System.Int32> System.Runtime.Serialization.SerializationInfo::m_nameToIndex
Dictionary_2_tC94E9875910491F8130C2DC8B11E4D1548A55162 * ___m_nameToIndex_3;
// System.Int32 System.Runtime.Serialization.SerializationInfo::m_currMember
int32_t ___m_currMember_4;
// System.Runtime.Serialization.IFormatterConverter System.Runtime.Serialization.SerializationInfo::m_converter
RuntimeObject* ___m_converter_5;
// System.String System.Runtime.Serialization.SerializationInfo::m_fullTypeName
String_t* ___m_fullTypeName_6;
// System.String System.Runtime.Serialization.SerializationInfo::m_assemName
String_t* ___m_assemName_7;
// System.Type System.Runtime.Serialization.SerializationInfo::objectType
Type_t * ___objectType_8;
// System.Boolean System.Runtime.Serialization.SerializationInfo::isFullTypeNameSetExplicit
bool ___isFullTypeNameSetExplicit_9;
// System.Boolean System.Runtime.Serialization.SerializationInfo::isAssemblyNameSetExplicit
bool ___isAssemblyNameSetExplicit_10;
// System.Boolean System.Runtime.Serialization.SerializationInfo::requireSameTokenInPartialTrust
bool ___requireSameTokenInPartialTrust_11;
public:
inline static int32_t get_offset_of_m_members_0() { return static_cast<int32_t>(offsetof(SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1, ___m_members_0)); }
inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get_m_members_0() const { return ___m_members_0; }
inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of_m_members_0() { return &___m_members_0; }
inline void set_m_members_0(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value)
{
___m_members_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_members_0), (void*)value);
}
inline static int32_t get_offset_of_m_data_1() { return static_cast<int32_t>(offsetof(SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1, ___m_data_1)); }
inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get_m_data_1() const { return ___m_data_1; }
inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of_m_data_1() { return &___m_data_1; }
inline void set_m_data_1(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value)
{
___m_data_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_data_1), (void*)value);
}
inline static int32_t get_offset_of_m_types_2() { return static_cast<int32_t>(offsetof(SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1, ___m_types_2)); }
inline TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* get_m_types_2() const { return ___m_types_2; }
inline TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755** get_address_of_m_types_2() { return &___m_types_2; }
inline void set_m_types_2(TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* value)
{
___m_types_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_types_2), (void*)value);
}
inline static int32_t get_offset_of_m_nameToIndex_3() { return static_cast<int32_t>(offsetof(SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1, ___m_nameToIndex_3)); }
inline Dictionary_2_tC94E9875910491F8130C2DC8B11E4D1548A55162 * get_m_nameToIndex_3() const { return ___m_nameToIndex_3; }
inline Dictionary_2_tC94E9875910491F8130C2DC8B11E4D1548A55162 ** get_address_of_m_nameToIndex_3() { return &___m_nameToIndex_3; }
inline void set_m_nameToIndex_3(Dictionary_2_tC94E9875910491F8130C2DC8B11E4D1548A55162 * value)
{
___m_nameToIndex_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_nameToIndex_3), (void*)value);
}
inline static int32_t get_offset_of_m_currMember_4() { return static_cast<int32_t>(offsetof(SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1, ___m_currMember_4)); }
inline int32_t get_m_currMember_4() const { return ___m_currMember_4; }
inline int32_t* get_address_of_m_currMember_4() { return &___m_currMember_4; }
inline void set_m_currMember_4(int32_t value)
{
___m_currMember_4 = value;
}
inline static int32_t get_offset_of_m_converter_5() { return static_cast<int32_t>(offsetof(SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1, ___m_converter_5)); }
inline RuntimeObject* get_m_converter_5() const { return ___m_converter_5; }
inline RuntimeObject** get_address_of_m_converter_5() { return &___m_converter_5; }
inline void set_m_converter_5(RuntimeObject* value)
{
___m_converter_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_converter_5), (void*)value);
}
inline static int32_t get_offset_of_m_fullTypeName_6() { return static_cast<int32_t>(offsetof(SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1, ___m_fullTypeName_6)); }
inline String_t* get_m_fullTypeName_6() const { return ___m_fullTypeName_6; }
inline String_t** get_address_of_m_fullTypeName_6() { return &___m_fullTypeName_6; }
inline void set_m_fullTypeName_6(String_t* value)
{
___m_fullTypeName_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_fullTypeName_6), (void*)value);
}
inline static int32_t get_offset_of_m_assemName_7() { return static_cast<int32_t>(offsetof(SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1, ___m_assemName_7)); }
inline String_t* get_m_assemName_7() const { return ___m_assemName_7; }
inline String_t** get_address_of_m_assemName_7() { return &___m_assemName_7; }
inline void set_m_assemName_7(String_t* value)
{
___m_assemName_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_assemName_7), (void*)value);
}
inline static int32_t get_offset_of_objectType_8() { return static_cast<int32_t>(offsetof(SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1, ___objectType_8)); }
inline Type_t * get_objectType_8() const { return ___objectType_8; }
inline Type_t ** get_address_of_objectType_8() { return &___objectType_8; }
inline void set_objectType_8(Type_t * value)
{
___objectType_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___objectType_8), (void*)value);
}
inline static int32_t get_offset_of_isFullTypeNameSetExplicit_9() { return static_cast<int32_t>(offsetof(SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1, ___isFullTypeNameSetExplicit_9)); }
inline bool get_isFullTypeNameSetExplicit_9() const { return ___isFullTypeNameSetExplicit_9; }
inline bool* get_address_of_isFullTypeNameSetExplicit_9() { return &___isFullTypeNameSetExplicit_9; }
inline void set_isFullTypeNameSetExplicit_9(bool value)
{
___isFullTypeNameSetExplicit_9 = value;
}
inline static int32_t get_offset_of_isAssemblyNameSetExplicit_10() { return static_cast<int32_t>(offsetof(SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1, ___isAssemblyNameSetExplicit_10)); }
inline bool get_isAssemblyNameSetExplicit_10() const { return ___isAssemblyNameSetExplicit_10; }
inline bool* get_address_of_isAssemblyNameSetExplicit_10() { return &___isAssemblyNameSetExplicit_10; }
inline void set_isAssemblyNameSetExplicit_10(bool value)
{
___isAssemblyNameSetExplicit_10 = value;
}
inline static int32_t get_offset_of_requireSameTokenInPartialTrust_11() { return static_cast<int32_t>(offsetof(SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1, ___requireSameTokenInPartialTrust_11)); }
inline bool get_requireSameTokenInPartialTrust_11() const { return ___requireSameTokenInPartialTrust_11; }
inline bool* get_address_of_requireSameTokenInPartialTrust_11() { return &___requireSameTokenInPartialTrust_11; }
inline void set_requireSameTokenInPartialTrust_11(bool value)
{
___requireSameTokenInPartialTrust_11 = value;
}
};
// System.Runtime.Serialization.SerializationInfoEnumerator
struct SerializationInfoEnumerator_t0548359AF7DB5798EBA19FE6BFCC8CDB8E6B1AF6 : public RuntimeObject
{
public:
// System.String[] System.Runtime.Serialization.SerializationInfoEnumerator::m_members
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___m_members_0;
// System.Object[] System.Runtime.Serialization.SerializationInfoEnumerator::m_data
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___m_data_1;
// System.Type[] System.Runtime.Serialization.SerializationInfoEnumerator::m_types
TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* ___m_types_2;
// System.Int32 System.Runtime.Serialization.SerializationInfoEnumerator::m_numItems
int32_t ___m_numItems_3;
// System.Int32 System.Runtime.Serialization.SerializationInfoEnumerator::m_currItem
int32_t ___m_currItem_4;
// System.Boolean System.Runtime.Serialization.SerializationInfoEnumerator::m_current
bool ___m_current_5;
public:
inline static int32_t get_offset_of_m_members_0() { return static_cast<int32_t>(offsetof(SerializationInfoEnumerator_t0548359AF7DB5798EBA19FE6BFCC8CDB8E6B1AF6, ___m_members_0)); }
inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get_m_members_0() const { return ___m_members_0; }
inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of_m_members_0() { return &___m_members_0; }
inline void set_m_members_0(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value)
{
___m_members_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_members_0), (void*)value);
}
inline static int32_t get_offset_of_m_data_1() { return static_cast<int32_t>(offsetof(SerializationInfoEnumerator_t0548359AF7DB5798EBA19FE6BFCC8CDB8E6B1AF6, ___m_data_1)); }
inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get_m_data_1() const { return ___m_data_1; }
inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of_m_data_1() { return &___m_data_1; }
inline void set_m_data_1(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value)
{
___m_data_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_data_1), (void*)value);
}
inline static int32_t get_offset_of_m_types_2() { return static_cast<int32_t>(offsetof(SerializationInfoEnumerator_t0548359AF7DB5798EBA19FE6BFCC8CDB8E6B1AF6, ___m_types_2)); }
inline TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* get_m_types_2() const { return ___m_types_2; }
inline TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755** get_address_of_m_types_2() { return &___m_types_2; }
inline void set_m_types_2(TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* value)
{
___m_types_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_types_2), (void*)value);
}
inline static int32_t get_offset_of_m_numItems_3() { return static_cast<int32_t>(offsetof(SerializationInfoEnumerator_t0548359AF7DB5798EBA19FE6BFCC8CDB8E6B1AF6, ___m_numItems_3)); }
inline int32_t get_m_numItems_3() const { return ___m_numItems_3; }
inline int32_t* get_address_of_m_numItems_3() { return &___m_numItems_3; }
inline void set_m_numItems_3(int32_t value)
{
___m_numItems_3 = value;
}
inline static int32_t get_offset_of_m_currItem_4() { return static_cast<int32_t>(offsetof(SerializationInfoEnumerator_t0548359AF7DB5798EBA19FE6BFCC8CDB8E6B1AF6, ___m_currItem_4)); }
inline int32_t get_m_currItem_4() const { return ___m_currItem_4; }
inline int32_t* get_address_of_m_currItem_4() { return &___m_currItem_4; }
inline void set_m_currItem_4(int32_t value)
{
___m_currItem_4 = value;
}
inline static int32_t get_offset_of_m_current_5() { return static_cast<int32_t>(offsetof(SerializationInfoEnumerator_t0548359AF7DB5798EBA19FE6BFCC8CDB8E6B1AF6, ___m_current_5)); }
inline bool get_m_current_5() const { return ___m_current_5; }
inline bool* get_address_of_m_current_5() { return &___m_current_5; }
inline void set_m_current_5(bool value)
{
___m_current_5 = value;
}
};
// 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.StringComparer
struct StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 : public RuntimeObject
{
public:
public:
};
struct StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6_StaticFields
{
public:
// System.StringComparer System.StringComparer::_invariantCulture
StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 * ____invariantCulture_0;
// System.StringComparer System.StringComparer::_invariantCultureIgnoreCase
StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 * ____invariantCultureIgnoreCase_1;
// System.StringComparer System.StringComparer::_ordinal
StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 * ____ordinal_2;
// System.StringComparer System.StringComparer::_ordinalIgnoreCase
StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 * ____ordinalIgnoreCase_3;
public:
inline static int32_t get_offset_of__invariantCulture_0() { return static_cast<int32_t>(offsetof(StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6_StaticFields, ____invariantCulture_0)); }
inline StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 * get__invariantCulture_0() const { return ____invariantCulture_0; }
inline StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 ** get_address_of__invariantCulture_0() { return &____invariantCulture_0; }
inline void set__invariantCulture_0(StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 * value)
{
____invariantCulture_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____invariantCulture_0), (void*)value);
}
inline static int32_t get_offset_of__invariantCultureIgnoreCase_1() { return static_cast<int32_t>(offsetof(StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6_StaticFields, ____invariantCultureIgnoreCase_1)); }
inline StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 * get__invariantCultureIgnoreCase_1() const { return ____invariantCultureIgnoreCase_1; }
inline StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 ** get_address_of__invariantCultureIgnoreCase_1() { return &____invariantCultureIgnoreCase_1; }
inline void set__invariantCultureIgnoreCase_1(StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 * value)
{
____invariantCultureIgnoreCase_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____invariantCultureIgnoreCase_1), (void*)value);
}
inline static int32_t get_offset_of__ordinal_2() { return static_cast<int32_t>(offsetof(StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6_StaticFields, ____ordinal_2)); }
inline StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 * get__ordinal_2() const { return ____ordinal_2; }
inline StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 ** get_address_of__ordinal_2() { return &____ordinal_2; }
inline void set__ordinal_2(StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 * value)
{
____ordinal_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____ordinal_2), (void*)value);
}
inline static int32_t get_offset_of__ordinalIgnoreCase_3() { return static_cast<int32_t>(offsetof(StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6_StaticFields, ____ordinalIgnoreCase_3)); }
inline StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 * get__ordinalIgnoreCase_3() const { return ____ordinalIgnoreCase_3; }
inline StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 ** get_address_of__ordinalIgnoreCase_3() { return &____ordinalIgnoreCase_3; }
inline void set__ordinalIgnoreCase_3(StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 * value)
{
____ordinalIgnoreCase_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____ordinalIgnoreCase_3), (void*)value);
}
};
// System.Text.Encoder
struct Encoder_t5095F24D3B1D0F70D08762B980731B9F1ADEE56A : public RuntimeObject
{
public:
// System.Text.EncoderFallback System.Text.Encoder::m_fallback
EncoderFallback_t02AC990075E17EB09F0D7E4831C3B3F264025CC4 * ___m_fallback_0;
// System.Text.EncoderFallbackBuffer System.Text.Encoder::m_fallbackBuffer
EncoderFallbackBuffer_t088B2EDCFB7C53978D7C5F962DE31BE01D6968E0 * ___m_fallbackBuffer_1;
public:
inline static int32_t get_offset_of_m_fallback_0() { return static_cast<int32_t>(offsetof(Encoder_t5095F24D3B1D0F70D08762B980731B9F1ADEE56A, ___m_fallback_0)); }
inline EncoderFallback_t02AC990075E17EB09F0D7E4831C3B3F264025CC4 * get_m_fallback_0() const { return ___m_fallback_0; }
inline EncoderFallback_t02AC990075E17EB09F0D7E4831C3B3F264025CC4 ** get_address_of_m_fallback_0() { return &___m_fallback_0; }
inline void set_m_fallback_0(EncoderFallback_t02AC990075E17EB09F0D7E4831C3B3F264025CC4 * value)
{
___m_fallback_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_fallback_0), (void*)value);
}
inline static int32_t get_offset_of_m_fallbackBuffer_1() { return static_cast<int32_t>(offsetof(Encoder_t5095F24D3B1D0F70D08762B980731B9F1ADEE56A, ___m_fallbackBuffer_1)); }
inline EncoderFallbackBuffer_t088B2EDCFB7C53978D7C5F962DE31BE01D6968E0 * get_m_fallbackBuffer_1() const { return ___m_fallbackBuffer_1; }
inline EncoderFallbackBuffer_t088B2EDCFB7C53978D7C5F962DE31BE01D6968E0 ** get_address_of_m_fallbackBuffer_1() { return &___m_fallbackBuffer_1; }
inline void set_m_fallbackBuffer_1(EncoderFallbackBuffer_t088B2EDCFB7C53978D7C5F962DE31BE01D6968E0 * value)
{
___m_fallbackBuffer_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_fallbackBuffer_1), (void*)value);
}
};
// System.Text.Encoding
struct Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 : public RuntimeObject
{
public:
// System.Int32 System.Text.Encoding::m_codePage
int32_t ___m_codePage_9;
// System.Globalization.CodePageDataItem System.Text.Encoding::dataItem
CodePageDataItem_t09A62F57142BF0456C8F414898A37E79BCC9F09E * ___dataItem_10;
// System.Boolean System.Text.Encoding::m_deserializedFromEverett
bool ___m_deserializedFromEverett_11;
// System.Boolean System.Text.Encoding::m_isReadOnly
bool ___m_isReadOnly_12;
// System.Text.EncoderFallback System.Text.Encoding::encoderFallback
EncoderFallback_t02AC990075E17EB09F0D7E4831C3B3F264025CC4 * ___encoderFallback_13;
// System.Text.DecoderFallback System.Text.Encoding::decoderFallback
DecoderFallback_tF86D337D6576E81E5DA285E5673183EBC66DEF8D * ___decoderFallback_14;
public:
inline static int32_t get_offset_of_m_codePage_9() { return static_cast<int32_t>(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827, ___m_codePage_9)); }
inline int32_t get_m_codePage_9() const { return ___m_codePage_9; }
inline int32_t* get_address_of_m_codePage_9() { return &___m_codePage_9; }
inline void set_m_codePage_9(int32_t value)
{
___m_codePage_9 = value;
}
inline static int32_t get_offset_of_dataItem_10() { return static_cast<int32_t>(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827, ___dataItem_10)); }
inline CodePageDataItem_t09A62F57142BF0456C8F414898A37E79BCC9F09E * get_dataItem_10() const { return ___dataItem_10; }
inline CodePageDataItem_t09A62F57142BF0456C8F414898A37E79BCC9F09E ** get_address_of_dataItem_10() { return &___dataItem_10; }
inline void set_dataItem_10(CodePageDataItem_t09A62F57142BF0456C8F414898A37E79BCC9F09E * value)
{
___dataItem_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___dataItem_10), (void*)value);
}
inline static int32_t get_offset_of_m_deserializedFromEverett_11() { return static_cast<int32_t>(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827, ___m_deserializedFromEverett_11)); }
inline bool get_m_deserializedFromEverett_11() const { return ___m_deserializedFromEverett_11; }
inline bool* get_address_of_m_deserializedFromEverett_11() { return &___m_deserializedFromEverett_11; }
inline void set_m_deserializedFromEverett_11(bool value)
{
___m_deserializedFromEverett_11 = value;
}
inline static int32_t get_offset_of_m_isReadOnly_12() { return static_cast<int32_t>(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827, ___m_isReadOnly_12)); }
inline bool get_m_isReadOnly_12() const { return ___m_isReadOnly_12; }
inline bool* get_address_of_m_isReadOnly_12() { return &___m_isReadOnly_12; }
inline void set_m_isReadOnly_12(bool value)
{
___m_isReadOnly_12 = value;
}
inline static int32_t get_offset_of_encoderFallback_13() { return static_cast<int32_t>(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827, ___encoderFallback_13)); }
inline EncoderFallback_t02AC990075E17EB09F0D7E4831C3B3F264025CC4 * get_encoderFallback_13() const { return ___encoderFallback_13; }
inline EncoderFallback_t02AC990075E17EB09F0D7E4831C3B3F264025CC4 ** get_address_of_encoderFallback_13() { return &___encoderFallback_13; }
inline void set_encoderFallback_13(EncoderFallback_t02AC990075E17EB09F0D7E4831C3B3F264025CC4 * value)
{
___encoderFallback_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&___encoderFallback_13), (void*)value);
}
inline static int32_t get_offset_of_decoderFallback_14() { return static_cast<int32_t>(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827, ___decoderFallback_14)); }
inline DecoderFallback_tF86D337D6576E81E5DA285E5673183EBC66DEF8D * get_decoderFallback_14() const { return ___decoderFallback_14; }
inline DecoderFallback_tF86D337D6576E81E5DA285E5673183EBC66DEF8D ** get_address_of_decoderFallback_14() { return &___decoderFallback_14; }
inline void set_decoderFallback_14(DecoderFallback_tF86D337D6576E81E5DA285E5673183EBC66DEF8D * value)
{
___decoderFallback_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&___decoderFallback_14), (void*)value);
}
};
struct Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827_StaticFields
{
public:
// System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::defaultEncoding
Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * ___defaultEncoding_0;
// System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::unicodeEncoding
Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * ___unicodeEncoding_1;
// System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::bigEndianUnicode
Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * ___bigEndianUnicode_2;
// System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::utf7Encoding
Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * ___utf7Encoding_3;
// System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::utf8Encoding
Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * ___utf8Encoding_4;
// System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::utf32Encoding
Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * ___utf32Encoding_5;
// System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::asciiEncoding
Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * ___asciiEncoding_6;
// System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::latin1Encoding
Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * ___latin1Encoding_7;
// System.Collections.Hashtable modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::encodings
Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * ___encodings_8;
// System.Object System.Text.Encoding::s_InternalSyncObject
RuntimeObject * ___s_InternalSyncObject_15;
public:
inline static int32_t get_offset_of_defaultEncoding_0() { return static_cast<int32_t>(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827_StaticFields, ___defaultEncoding_0)); }
inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * get_defaultEncoding_0() const { return ___defaultEncoding_0; }
inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 ** get_address_of_defaultEncoding_0() { return &___defaultEncoding_0; }
inline void set_defaultEncoding_0(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * value)
{
___defaultEncoding_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultEncoding_0), (void*)value);
}
inline static int32_t get_offset_of_unicodeEncoding_1() { return static_cast<int32_t>(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827_StaticFields, ___unicodeEncoding_1)); }
inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * get_unicodeEncoding_1() const { return ___unicodeEncoding_1; }
inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 ** get_address_of_unicodeEncoding_1() { return &___unicodeEncoding_1; }
inline void set_unicodeEncoding_1(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * value)
{
___unicodeEncoding_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___unicodeEncoding_1), (void*)value);
}
inline static int32_t get_offset_of_bigEndianUnicode_2() { return static_cast<int32_t>(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827_StaticFields, ___bigEndianUnicode_2)); }
inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * get_bigEndianUnicode_2() const { return ___bigEndianUnicode_2; }
inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 ** get_address_of_bigEndianUnicode_2() { return &___bigEndianUnicode_2; }
inline void set_bigEndianUnicode_2(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * value)
{
___bigEndianUnicode_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___bigEndianUnicode_2), (void*)value);
}
inline static int32_t get_offset_of_utf7Encoding_3() { return static_cast<int32_t>(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827_StaticFields, ___utf7Encoding_3)); }
inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * get_utf7Encoding_3() const { return ___utf7Encoding_3; }
inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 ** get_address_of_utf7Encoding_3() { return &___utf7Encoding_3; }
inline void set_utf7Encoding_3(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * value)
{
___utf7Encoding_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___utf7Encoding_3), (void*)value);
}
inline static int32_t get_offset_of_utf8Encoding_4() { return static_cast<int32_t>(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827_StaticFields, ___utf8Encoding_4)); }
inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * get_utf8Encoding_4() const { return ___utf8Encoding_4; }
inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 ** get_address_of_utf8Encoding_4() { return &___utf8Encoding_4; }
inline void set_utf8Encoding_4(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * value)
{
___utf8Encoding_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___utf8Encoding_4), (void*)value);
}
inline static int32_t get_offset_of_utf32Encoding_5() { return static_cast<int32_t>(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827_StaticFields, ___utf32Encoding_5)); }
inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * get_utf32Encoding_5() const { return ___utf32Encoding_5; }
inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 ** get_address_of_utf32Encoding_5() { return &___utf32Encoding_5; }
inline void set_utf32Encoding_5(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * value)
{
___utf32Encoding_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___utf32Encoding_5), (void*)value);
}
inline static int32_t get_offset_of_asciiEncoding_6() { return static_cast<int32_t>(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827_StaticFields, ___asciiEncoding_6)); }
inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * get_asciiEncoding_6() const { return ___asciiEncoding_6; }
inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 ** get_address_of_asciiEncoding_6() { return &___asciiEncoding_6; }
inline void set_asciiEncoding_6(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * value)
{
___asciiEncoding_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___asciiEncoding_6), (void*)value);
}
inline static int32_t get_offset_of_latin1Encoding_7() { return static_cast<int32_t>(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827_StaticFields, ___latin1Encoding_7)); }
inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * get_latin1Encoding_7() const { return ___latin1Encoding_7; }
inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 ** get_address_of_latin1Encoding_7() { return &___latin1Encoding_7; }
inline void set_latin1Encoding_7(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * value)
{
___latin1Encoding_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___latin1Encoding_7), (void*)value);
}
inline static int32_t get_offset_of_encodings_8() { return static_cast<int32_t>(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827_StaticFields, ___encodings_8)); }
inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * get_encodings_8() const { return ___encodings_8; }
inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC ** get_address_of_encodings_8() { return &___encodings_8; }
inline void set_encodings_8(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * value)
{
___encodings_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___encodings_8), (void*)value);
}
inline static int32_t get_offset_of_s_InternalSyncObject_15() { return static_cast<int32_t>(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827_StaticFields, ___s_InternalSyncObject_15)); }
inline RuntimeObject * get_s_InternalSyncObject_15() const { return ___s_InternalSyncObject_15; }
inline RuntimeObject ** get_address_of_s_InternalSyncObject_15() { return &___s_InternalSyncObject_15; }
inline void set_s_InternalSyncObject_15(RuntimeObject * value)
{
___s_InternalSyncObject_15 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_InternalSyncObject_15), (void*)value);
}
};
// System.Text.StringBuilder
struct StringBuilder_t : public RuntimeObject
{
public:
// System.Char[] System.Text.StringBuilder::m_ChunkChars
CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___m_ChunkChars_0;
// System.Text.StringBuilder System.Text.StringBuilder::m_ChunkPrevious
StringBuilder_t * ___m_ChunkPrevious_1;
// System.Int32 System.Text.StringBuilder::m_ChunkLength
int32_t ___m_ChunkLength_2;
// System.Int32 System.Text.StringBuilder::m_ChunkOffset
int32_t ___m_ChunkOffset_3;
// System.Int32 System.Text.StringBuilder::m_MaxCapacity
int32_t ___m_MaxCapacity_4;
public:
inline static int32_t get_offset_of_m_ChunkChars_0() { return static_cast<int32_t>(offsetof(StringBuilder_t, ___m_ChunkChars_0)); }
inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get_m_ChunkChars_0() const { return ___m_ChunkChars_0; }
inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of_m_ChunkChars_0() { return &___m_ChunkChars_0; }
inline void set_m_ChunkChars_0(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value)
{
___m_ChunkChars_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_ChunkChars_0), (void*)value);
}
inline static int32_t get_offset_of_m_ChunkPrevious_1() { return static_cast<int32_t>(offsetof(StringBuilder_t, ___m_ChunkPrevious_1)); }
inline StringBuilder_t * get_m_ChunkPrevious_1() const { return ___m_ChunkPrevious_1; }
inline StringBuilder_t ** get_address_of_m_ChunkPrevious_1() { return &___m_ChunkPrevious_1; }
inline void set_m_ChunkPrevious_1(StringBuilder_t * value)
{
___m_ChunkPrevious_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_ChunkPrevious_1), (void*)value);
}
inline static int32_t get_offset_of_m_ChunkLength_2() { return static_cast<int32_t>(offsetof(StringBuilder_t, ___m_ChunkLength_2)); }
inline int32_t get_m_ChunkLength_2() const { return ___m_ChunkLength_2; }
inline int32_t* get_address_of_m_ChunkLength_2() { return &___m_ChunkLength_2; }
inline void set_m_ChunkLength_2(int32_t value)
{
___m_ChunkLength_2 = value;
}
inline static int32_t get_offset_of_m_ChunkOffset_3() { return static_cast<int32_t>(offsetof(StringBuilder_t, ___m_ChunkOffset_3)); }
inline int32_t get_m_ChunkOffset_3() const { return ___m_ChunkOffset_3; }
inline int32_t* get_address_of_m_ChunkOffset_3() { return &___m_ChunkOffset_3; }
inline void set_m_ChunkOffset_3(int32_t value)
{
___m_ChunkOffset_3 = value;
}
inline static int32_t get_offset_of_m_MaxCapacity_4() { return static_cast<int32_t>(offsetof(StringBuilder_t, ___m_MaxCapacity_4)); }
inline int32_t get_m_MaxCapacity_4() const { return ___m_MaxCapacity_4; }
inline int32_t* get_address_of_m_MaxCapacity_4() { return &___m_MaxCapacity_4; }
inline void set_m_MaxCapacity_4(int32_t value)
{
___m_MaxCapacity_4 = value;
}
};
// System.Threading.CancellationCallbackInfo
struct CancellationCallbackInfo_t7FC8CF6DB4845FCB0138771E86AE058710B1117B : public RuntimeObject
{
public:
// System.Action`1<System.Object> System.Threading.CancellationCallbackInfo::Callback
Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * ___Callback_0;
// System.Object System.Threading.CancellationCallbackInfo::StateForCallback
RuntimeObject * ___StateForCallback_1;
// System.Threading.SynchronizationContext System.Threading.CancellationCallbackInfo::TargetSyncContext
SynchronizationContext_t17D9365B5E0D30A0910A16FA4351C525232EF069 * ___TargetSyncContext_2;
// System.Threading.ExecutionContext System.Threading.CancellationCallbackInfo::TargetExecutionContext
ExecutionContext_t16AC73BB21FEEEAD34A017877AC18DD8BB836414 * ___TargetExecutionContext_3;
// System.Threading.CancellationTokenSource System.Threading.CancellationCallbackInfo::CancellationTokenSource
CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * ___CancellationTokenSource_4;
public:
inline static int32_t get_offset_of_Callback_0() { return static_cast<int32_t>(offsetof(CancellationCallbackInfo_t7FC8CF6DB4845FCB0138771E86AE058710B1117B, ___Callback_0)); }
inline Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * get_Callback_0() const { return ___Callback_0; }
inline Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC ** get_address_of_Callback_0() { return &___Callback_0; }
inline void set_Callback_0(Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * value)
{
___Callback_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Callback_0), (void*)value);
}
inline static int32_t get_offset_of_StateForCallback_1() { return static_cast<int32_t>(offsetof(CancellationCallbackInfo_t7FC8CF6DB4845FCB0138771E86AE058710B1117B, ___StateForCallback_1)); }
inline RuntimeObject * get_StateForCallback_1() const { return ___StateForCallback_1; }
inline RuntimeObject ** get_address_of_StateForCallback_1() { return &___StateForCallback_1; }
inline void set_StateForCallback_1(RuntimeObject * value)
{
___StateForCallback_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___StateForCallback_1), (void*)value);
}
inline static int32_t get_offset_of_TargetSyncContext_2() { return static_cast<int32_t>(offsetof(CancellationCallbackInfo_t7FC8CF6DB4845FCB0138771E86AE058710B1117B, ___TargetSyncContext_2)); }
inline SynchronizationContext_t17D9365B5E0D30A0910A16FA4351C525232EF069 * get_TargetSyncContext_2() const { return ___TargetSyncContext_2; }
inline SynchronizationContext_t17D9365B5E0D30A0910A16FA4351C525232EF069 ** get_address_of_TargetSyncContext_2() { return &___TargetSyncContext_2; }
inline void set_TargetSyncContext_2(SynchronizationContext_t17D9365B5E0D30A0910A16FA4351C525232EF069 * value)
{
___TargetSyncContext_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___TargetSyncContext_2), (void*)value);
}
inline static int32_t get_offset_of_TargetExecutionContext_3() { return static_cast<int32_t>(offsetof(CancellationCallbackInfo_t7FC8CF6DB4845FCB0138771E86AE058710B1117B, ___TargetExecutionContext_3)); }
inline ExecutionContext_t16AC73BB21FEEEAD34A017877AC18DD8BB836414 * get_TargetExecutionContext_3() const { return ___TargetExecutionContext_3; }
inline ExecutionContext_t16AC73BB21FEEEAD34A017877AC18DD8BB836414 ** get_address_of_TargetExecutionContext_3() { return &___TargetExecutionContext_3; }
inline void set_TargetExecutionContext_3(ExecutionContext_t16AC73BB21FEEEAD34A017877AC18DD8BB836414 * value)
{
___TargetExecutionContext_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___TargetExecutionContext_3), (void*)value);
}
inline static int32_t get_offset_of_CancellationTokenSource_4() { return static_cast<int32_t>(offsetof(CancellationCallbackInfo_t7FC8CF6DB4845FCB0138771E86AE058710B1117B, ___CancellationTokenSource_4)); }
inline CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * get_CancellationTokenSource_4() const { return ___CancellationTokenSource_4; }
inline CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 ** get_address_of_CancellationTokenSource_4() { return &___CancellationTokenSource_4; }
inline void set_CancellationTokenSource_4(CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * value)
{
___CancellationTokenSource_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___CancellationTokenSource_4), (void*)value);
}
};
struct CancellationCallbackInfo_t7FC8CF6DB4845FCB0138771E86AE058710B1117B_StaticFields
{
public:
// System.Threading.ContextCallback System.Threading.CancellationCallbackInfo::s_executionContextCallback
ContextCallback_t93707E0430F4FF3E15E1FB5A4844BE89C657AE8B * ___s_executionContextCallback_5;
public:
inline static int32_t get_offset_of_s_executionContextCallback_5() { return static_cast<int32_t>(offsetof(CancellationCallbackInfo_t7FC8CF6DB4845FCB0138771E86AE058710B1117B_StaticFields, ___s_executionContextCallback_5)); }
inline ContextCallback_t93707E0430F4FF3E15E1FB5A4844BE89C657AE8B * get_s_executionContextCallback_5() const { return ___s_executionContextCallback_5; }
inline ContextCallback_t93707E0430F4FF3E15E1FB5A4844BE89C657AE8B ** get_address_of_s_executionContextCallback_5() { return &___s_executionContextCallback_5; }
inline void set_s_executionContextCallback_5(ContextCallback_t93707E0430F4FF3E15E1FB5A4844BE89C657AE8B * value)
{
___s_executionContextCallback_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_executionContextCallback_5), (void*)value);
}
};
// System.Threading.SparselyPopulatedArray`1<System.Threading.CancellationCallbackInfo>
struct SparselyPopulatedArray_1_tA18952D126B9E09096751CC472A19196C8B6C17A : public RuntimeObject
{
public:
// System.Threading.SparselyPopulatedArrayFragment`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.SparselyPopulatedArray`1::m_tail
SparselyPopulatedArrayFragment_1_t93197EF47D6A025755987003D5D62F3AED371C21 * ___m_tail_0;
public:
inline static int32_t get_offset_of_m_tail_0() { return static_cast<int32_t>(offsetof(SparselyPopulatedArray_1_tA18952D126B9E09096751CC472A19196C8B6C17A, ___m_tail_0)); }
inline SparselyPopulatedArrayFragment_1_t93197EF47D6A025755987003D5D62F3AED371C21 * get_m_tail_0() const { return ___m_tail_0; }
inline SparselyPopulatedArrayFragment_1_t93197EF47D6A025755987003D5D62F3AED371C21 ** get_address_of_m_tail_0() { return &___m_tail_0; }
inline void set_m_tail_0(SparselyPopulatedArrayFragment_1_t93197EF47D6A025755987003D5D62F3AED371C21 * value)
{
___m_tail_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_tail_0), (void*)value);
}
};
// System.Threading.SynchronizationContext
struct SynchronizationContext_t17D9365B5E0D30A0910A16FA4351C525232EF069 : public RuntimeObject
{
public:
public:
};
// System.Threading.Tasks.CompletionActionInvoker
struct CompletionActionInvoker_t66AE143673E0FA80521F01E8FBF6651194AC1E9F : public RuntimeObject
{
public:
// System.Threading.Tasks.ITaskCompletionAction System.Threading.Tasks.CompletionActionInvoker::m_action
RuntimeObject* ___m_action_0;
// System.Threading.Tasks.Task System.Threading.Tasks.CompletionActionInvoker::m_completingTask
Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * ___m_completingTask_1;
public:
inline static int32_t get_offset_of_m_action_0() { return static_cast<int32_t>(offsetof(CompletionActionInvoker_t66AE143673E0FA80521F01E8FBF6651194AC1E9F, ___m_action_0)); }
inline RuntimeObject* get_m_action_0() const { return ___m_action_0; }
inline RuntimeObject** get_address_of_m_action_0() { return &___m_action_0; }
inline void set_m_action_0(RuntimeObject* value)
{
___m_action_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_action_0), (void*)value);
}
inline static int32_t get_offset_of_m_completingTask_1() { return static_cast<int32_t>(offsetof(CompletionActionInvoker_t66AE143673E0FA80521F01E8FBF6651194AC1E9F, ___m_completingTask_1)); }
inline Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * get_m_completingTask_1() const { return ___m_completingTask_1; }
inline Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 ** get_address_of_m_completingTask_1() { return &___m_completingTask_1; }
inline void set_m_completingTask_1(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * value)
{
___m_completingTask_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_completingTask_1), (void*)value);
}
};
// System.ValueType
struct ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52 : public RuntimeObject
{
public:
public:
};
// Native definition for P/Invoke marshalling of System.ValueType
struct ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52_marshaled_pinvoke
{
};
// Native definition for COM marshalling of System.ValueType
struct ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52_marshaled_com
{
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D10
struct __StaticArrayInitTypeSizeU3D10_t71B5750224A80E3CACEFBC499879A04CCE6A5CD3
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D10_t71B5750224A80E3CACEFBC499879A04CCE6A5CD3__padding[10];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D1018
struct __StaticArrayInitTypeSizeU3D1018_tC210B7B033B7D52771288C82C8E6DA21074FF7F3
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D1018_tC210B7B033B7D52771288C82C8E6DA21074FF7F3__padding[1018];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D1080
struct __StaticArrayInitTypeSizeU3D1080_tDD425A5824CFEEBEB897380BE535A4D579DD8DEB
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D1080_tDD425A5824CFEEBEB897380BE535A4D579DD8DEB__padding[1080];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D11614
struct __StaticArrayInitTypeSizeU3D11614_t7947936AE0A455E7877908DB7A291DEE37965F6F
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D11614_t7947936AE0A455E7877908DB7A291DEE37965F6F__padding[11614];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D12
struct __StaticArrayInitTypeSizeU3D12_t5FA9A9D9E4F196768B874B61DC1C6549CB34A584
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D12_t5FA9A9D9E4F196768B874B61DC1C6549CB34A584__padding[12];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D120
struct __StaticArrayInitTypeSizeU3D120_t13A2E28354D3A542E1A2AD289B7970CE8BF64CE1
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D120_t13A2E28354D3A542E1A2AD289B7970CE8BF64CE1__padding[120];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D1208
struct __StaticArrayInitTypeSizeU3D1208_t7747605A5C3CD826A11C4196CCE9CF1996C344DF
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D1208_t7747605A5C3CD826A11C4196CCE9CF1996C344DF__padding[1208];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D128
struct __StaticArrayInitTypeSizeU3D128_t0E65F82715F120C2585C93F35BFA548913720A71
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D128_t0E65F82715F120C2585C93F35BFA548913720A71__padding[128];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D130
struct __StaticArrayInitTypeSizeU3D130_tF56FBBACF53AE9A551B962978B48A914536B6871
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D130_tF56FBBACF53AE9A551B962978B48A914536B6871__padding[130];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D1450
struct __StaticArrayInitTypeSizeU3D1450_tAC1EF3610F74C31313DF1ADF3AC9D9A2A9EC2912
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D1450_tAC1EF3610F74C31313DF1ADF3AC9D9A2A9EC2912__padding[1450];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D16
struct __StaticArrayInitTypeSizeU3D16_t9CE40E2FB4B486181F720F48DD733A3EAFFD6F26
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D16_t9CE40E2FB4B486181F720F48DD733A3EAFFD6F26__padding[16];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D162
struct __StaticArrayInitTypeSizeU3D162_t11E10480FC4E2E4875323D07CD37B68D7040BD28
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D162_t11E10480FC4E2E4875323D07CD37B68D7040BD28__padding[162];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D1665
struct __StaticArrayInitTypeSizeU3D1665_tF300201390474873919B6C58C810DFAC718FE0F4
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D1665_tF300201390474873919B6C58C810DFAC718FE0F4__padding[1665];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D174
struct __StaticArrayInitTypeSizeU3D174_t5A6FEDE2414380A28FDFFA92ACA4EADB3693E337
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D174_t5A6FEDE2414380A28FDFFA92ACA4EADB3693E337__padding[174];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D2100
struct __StaticArrayInitTypeSizeU3D2100_t77017A2656678C6EE4571B84C9F635820AB583B0
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D2100_t77017A2656678C6EE4571B84C9F635820AB583B0__padding[2100];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D212
struct __StaticArrayInitTypeSizeU3D212_tA27E3A600D9E677116CCFCF5CB90C2DEF1951E43
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D212_tA27E3A600D9E677116CCFCF5CB90C2DEF1951E43__padding[212];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D21252
struct __StaticArrayInitTypeSizeU3D21252_t7F9940F69151C8490439C5AC4C3E8F115E6EFDD0
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D21252_t7F9940F69151C8490439C5AC4C3E8F115E6EFDD0__padding[21252];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D2350
struct __StaticArrayInitTypeSizeU3D2350_t029525D9BCF84611FB610B9E4D13EE898E0B055D
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D2350_t029525D9BCF84611FB610B9E4D13EE898E0B055D__padding[2350];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D2382
struct __StaticArrayInitTypeSizeU3D2382_t7764CC6AFDCA682AEBA6E78440AD21978F0AB7B1
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D2382_t7764CC6AFDCA682AEBA6E78440AD21978F0AB7B1__padding[2382];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D24
struct __StaticArrayInitTypeSizeU3D24_t54A5E8E52DF075628A83AE11B6178839F1F8FBDC
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D24_t54A5E8E52DF075628A83AE11B6178839F1F8FBDC__padding[24];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D240
struct __StaticArrayInitTypeSizeU3D240_t15F96E63E1A6759D1754EA684441DA49B3724B5F
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D240_t15F96E63E1A6759D1754EA684441DA49B3724B5F__padding[240];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D256
struct __StaticArrayInitTypeSizeU3D256_t11D9B162886459BA6BCD63DB255358502735B7A3
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D256_t11D9B162886459BA6BCD63DB255358502735B7A3__padding[256];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D262
struct __StaticArrayInitTypeSizeU3D262_tF74EA0E2AEDDD20898E5779445ABF7802D23911A
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D262_tF74EA0E2AEDDD20898E5779445ABF7802D23911A__padding[262];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D288
struct __StaticArrayInitTypeSizeU3D288_t901CBC2EE96C2C63E8B3C6D507136F8A55FF5566
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D288_t901CBC2EE96C2C63E8B3C6D507136F8A55FF5566__padding[288];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D3
struct __StaticArrayInitTypeSizeU3D3_t87EA921BA4E5FA6B89C780901818C549D9F073A4
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D3_t87EA921BA4E5FA6B89C780901818C549D9F073A4__padding[3];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D32
struct __StaticArrayInitTypeSizeU3D32_t99C29E8FAFAAE5B1E3F1CB981F557B0AA62EA81B
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D32_t99C29E8FAFAAE5B1E3F1CB981F557B0AA62EA81B__padding[32];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D320
struct __StaticArrayInitTypeSizeU3D320_tBE0C4C66577D53F18D8BA69E43FDC69DFA003F8F
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D320_tBE0C4C66577D53F18D8BA69E43FDC69DFA003F8F__padding[320];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D36
struct __StaticArrayInitTypeSizeU3D36_t46D2C2EA131D6126B945EA1E0993E0EE8AACC3CA
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D36_t46D2C2EA131D6126B945EA1E0993E0EE8AACC3CA__padding[36];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D360
struct __StaticArrayInitTypeSizeU3D360_t0E9DE21DD2818B844977C0B5AEFD0AF5FA812D79
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D360_t0E9DE21DD2818B844977C0B5AEFD0AF5FA812D79__padding[360];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D38
struct __StaticArrayInitTypeSizeU3D38_tCB70BC8DEB0D12487BC902760AFB250798B64F83
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D38_tCB70BC8DEB0D12487BC902760AFB250798B64F83__padding[38];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40
struct __StaticArrayInitTypeSizeU3D40_t31DA647550534A2982671AD8E1F791854ABE4525
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D40_t31DA647550534A2982671AD8E1F791854ABE4525__padding[40];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D42
struct __StaticArrayInitTypeSizeU3D42_t9FC2D1D81E2853CF5D36635AB6A30DDDB9ABFECA
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D42_t9FC2D1D81E2853CF5D36635AB6A30DDDB9ABFECA__padding[42];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D44
struct __StaticArrayInitTypeSizeU3D44_t2C34FCD1B7CA98AF1BE52ED77A663AFA9401C5D5
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D44_t2C34FCD1B7CA98AF1BE52ED77A663AFA9401C5D5__padding[44];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D52
struct __StaticArrayInitTypeSizeU3D52_t68C389D6C6894AE8F01E7C88DDD8CBDE317B23CD
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D52_t68C389D6C6894AE8F01E7C88DDD8CBDE317B23CD__padding[52];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D6
struct __StaticArrayInitTypeSizeU3D6_tDBD6E107ED6E71EDDDBFD5023C1C5C3EE71A6A23
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D6_tDBD6E107ED6E71EDDDBFD5023C1C5C3EE71A6A23__padding[6];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D64
struct __StaticArrayInitTypeSizeU3D64_t7C93E4AFB43BF13F84D563CFD17E5011B9721668
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D64_t7C93E4AFB43BF13F84D563CFD17E5011B9721668__padding[64];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72
struct __StaticArrayInitTypeSizeU3D72_tFE5593C37377A26A806059B8620472A6E51E5AD2
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D72_tFE5593C37377A26A806059B8620472A6E51E5AD2__padding[72];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D76
struct __StaticArrayInitTypeSizeU3D76_tFC0C1E62400632DF6EBD5465D74B1851DAC47C60
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D76_tFC0C1E62400632DF6EBD5465D74B1851DAC47C60__padding[76];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D84
struct __StaticArrayInitTypeSizeU3D84_t2EF20E9BBEB47B540AFCA64F09777DFD5E348454
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D84_t2EF20E9BBEB47B540AFCA64F09777DFD5E348454__padding[84];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D94
struct __StaticArrayInitTypeSizeU3D94_t52D6560B7A2023DDDFDCF4D8F6C226742520B4C7
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D94_t52D6560B7A2023DDDFDCF4D8F6C226742520B4C7__padding[94];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D998
struct __StaticArrayInitTypeSizeU3D998_t4B160A0C233D0CAB065432B008AFE2E02CF05C4D
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D998_t4B160A0C233D0CAB065432B008AFE2E02CF05C4D__padding[998];
};
public:
};
// Mono.Globalization.Unicode.CodePointIndexer_TableRange
struct TableRange_t0D96EE3F7B1008C60DD683B3A6985C602854E6F1
{
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_t0D96EE3F7B1008C60DD683B3A6985C602854E6F1, ___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_t0D96EE3F7B1008C60DD683B3A6985C602854E6F1, ___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_t0D96EE3F7B1008C60DD683B3A6985C602854E6F1, ___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_t0D96EE3F7B1008C60DD683B3A6985C602854E6F1, ___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_t0D96EE3F7B1008C60DD683B3A6985C602854E6F1, ___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.Boolean
struct Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37
{
public:
// System.Boolean System.Boolean::m_value
bool ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37, ___m_value_0)); }
inline bool get_m_value_0() const { return ___m_value_0; }
inline bool* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(bool value)
{
___m_value_0 = value;
}
};
struct Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_StaticFields
{
public:
// System.String System.Boolean::TrueString
String_t* ___TrueString_5;
// System.String System.Boolean::FalseString
String_t* ___FalseString_6;
public:
inline static int32_t get_offset_of_TrueString_5() { return static_cast<int32_t>(offsetof(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_StaticFields, ___TrueString_5)); }
inline String_t* get_TrueString_5() const { return ___TrueString_5; }
inline String_t** get_address_of_TrueString_5() { return &___TrueString_5; }
inline void set_TrueString_5(String_t* value)
{
___TrueString_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___TrueString_5), (void*)value);
}
inline static int32_t get_offset_of_FalseString_6() { return static_cast<int32_t>(offsetof(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_StaticFields, ___FalseString_6)); }
inline String_t* get_FalseString_6() const { return ___FalseString_6; }
inline String_t** get_address_of_FalseString_6() { return &___FalseString_6; }
inline void set_FalseString_6(String_t* value)
{
___FalseString_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___FalseString_6), (void*)value);
}
};
// System.Byte
struct Byte_t0111FAB8B8685667EDDAF77683F0D8F86B659056
{
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_t0111FAB8B8685667EDDAF77683F0D8F86B659056, ___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.CLSCompliantAttribute
struct CLSCompliantAttribute_tA28EF6D4ADBD3C5C429DE9A70DD1E927C8906249 : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
{
public:
// System.Boolean System.CLSCompliantAttribute::m_compliant
bool ___m_compliant_0;
public:
inline static int32_t get_offset_of_m_compliant_0() { return static_cast<int32_t>(offsetof(CLSCompliantAttribute_tA28EF6D4ADBD3C5C429DE9A70DD1E927C8906249, ___m_compliant_0)); }
inline bool get_m_compliant_0() const { return ___m_compliant_0; }
inline bool* get_address_of_m_compliant_0() { return &___m_compliant_0; }
inline void set_m_compliant_0(bool value)
{
___m_compliant_0 = value;
}
};
// System.Char
struct Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14
{
public:
// System.Char System.Char::m_value
Il2CppChar ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14, ___m_value_0)); }
inline Il2CppChar get_m_value_0() const { return ___m_value_0; }
inline Il2CppChar* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(Il2CppChar value)
{
___m_value_0 = value;
}
};
struct Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_StaticFields
{
public:
// System.Byte[] System.Char::categoryForLatin1
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___categoryForLatin1_3;
public:
inline static int32_t get_offset_of_categoryForLatin1_3() { return static_cast<int32_t>(offsetof(Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_StaticFields, ___categoryForLatin1_3)); }
inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_categoryForLatin1_3() const { return ___categoryForLatin1_3; }
inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_categoryForLatin1_3() { return &___categoryForLatin1_3; }
inline void set_categoryForLatin1_3(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value)
{
___categoryForLatin1_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___categoryForLatin1_3), (void*)value);
}
};
// System.Collections.DictionaryEntry
struct DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90
{
public:
// System.Object System.Collections.DictionaryEntry::_key
RuntimeObject * ____key_0;
// System.Object System.Collections.DictionaryEntry::_value
RuntimeObject * ____value_1;
public:
inline static int32_t get_offset_of__key_0() { return static_cast<int32_t>(offsetof(DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90, ____key_0)); }
inline RuntimeObject * get__key_0() const { return ____key_0; }
inline RuntimeObject ** get_address_of__key_0() { return &____key_0; }
inline void set__key_0(RuntimeObject * value)
{
____key_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____key_0), (void*)value);
}
inline static int32_t get_offset_of__value_1() { return static_cast<int32_t>(offsetof(DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90, ____value_1)); }
inline RuntimeObject * get__value_1() const { return ____value_1; }
inline RuntimeObject ** get_address_of__value_1() { return &____value_1; }
inline void set__value_1(RuntimeObject * value)
{
____value_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____value_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Collections.DictionaryEntry
struct DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_marshaled_pinvoke
{
Il2CppIUnknown* ____key_0;
Il2CppIUnknown* ____value_1;
};
// Native definition for COM marshalling of System.Collections.DictionaryEntry
struct DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_marshaled_com
{
Il2CppIUnknown* ____key_0;
Il2CppIUnknown* ____value_1;
};
// System.Collections.Generic.ByteEqualityComparer
struct ByteEqualityComparer_t5DEB0978C83C3FA68A8AE80E9A8E0F74F5F81026 : public EqualityComparer_1_t315BFEDB969101238C563049FF00D5CB9F8D6509
{
public:
public:
};
// System.DateTime
struct DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405
{
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_tEAF2CD16E071DF5441F40822E4CFE880E5245405, ___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_tEAF2CD16E071DF5441F40822E4CFE880E5245405_StaticFields
{
public:
// System.Int32[] System.DateTime::DaysToMonth365
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___DaysToMonth365_29;
// System.Int32[] System.DateTime::DaysToMonth366
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___DaysToMonth366_30;
// System.DateTime System.DateTime::MinValue
DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___MinValue_31;
// System.DateTime System.DateTime::MaxValue
DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 ___MaxValue_32;
public:
inline static int32_t get_offset_of_DaysToMonth365_29() { return static_cast<int32_t>(offsetof(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_StaticFields, ___DaysToMonth365_29)); }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_DaysToMonth365_29() const { return ___DaysToMonth365_29; }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_DaysToMonth365_29() { return &___DaysToMonth365_29; }
inline void set_DaysToMonth365_29(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* 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_tEAF2CD16E071DF5441F40822E4CFE880E5245405_StaticFields, ___DaysToMonth366_30)); }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_DaysToMonth366_30() const { return ___DaysToMonth366_30; }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_DaysToMonth366_30() { return &___DaysToMonth366_30; }
inline void set_DaysToMonth366_30(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* 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_tEAF2CD16E071DF5441F40822E4CFE880E5245405_StaticFields, ___MinValue_31)); }
inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 get_MinValue_31() const { return ___MinValue_31; }
inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * get_address_of_MinValue_31() { return &___MinValue_31; }
inline void set_MinValue_31(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 value)
{
___MinValue_31 = value;
}
inline static int32_t get_offset_of_MaxValue_32() { return static_cast<int32_t>(offsetof(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_StaticFields, ___MaxValue_32)); }
inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 get_MaxValue_32() const { return ___MaxValue_32; }
inline DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * get_address_of_MaxValue_32() { return &___MaxValue_32; }
inline void set_MaxValue_32(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 value)
{
___MaxValue_32 = value;
}
};
// System.Decimal
struct Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7
{
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_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7, ___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_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7, ___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_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7, ___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_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7, ___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_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_StaticFields
{
public:
// System.UInt32[] System.Decimal::Powers10
UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* ___Powers10_6;
// System.Decimal System.Decimal::Zero
Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 ___Zero_7;
// System.Decimal System.Decimal::One
Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 ___One_8;
// System.Decimal System.Decimal::MinusOne
Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 ___MinusOne_9;
// System.Decimal System.Decimal::MaxValue
Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 ___MaxValue_10;
// System.Decimal System.Decimal::MinValue
Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 ___MinValue_11;
// System.Decimal System.Decimal::NearNegativeZero
Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 ___NearNegativeZero_12;
// System.Decimal System.Decimal::NearPositiveZero
Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 ___NearPositiveZero_13;
public:
inline static int32_t get_offset_of_Powers10_6() { return static_cast<int32_t>(offsetof(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_StaticFields, ___Powers10_6)); }
inline UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* get_Powers10_6() const { return ___Powers10_6; }
inline UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF** get_address_of_Powers10_6() { return &___Powers10_6; }
inline void set_Powers10_6(UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* 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_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_StaticFields, ___Zero_7)); }
inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 get_Zero_7() const { return ___Zero_7; }
inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 * get_address_of_Zero_7() { return &___Zero_7; }
inline void set_Zero_7(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 value)
{
___Zero_7 = value;
}
inline static int32_t get_offset_of_One_8() { return static_cast<int32_t>(offsetof(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_StaticFields, ___One_8)); }
inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 get_One_8() const { return ___One_8; }
inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 * get_address_of_One_8() { return &___One_8; }
inline void set_One_8(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 value)
{
___One_8 = value;
}
inline static int32_t get_offset_of_MinusOne_9() { return static_cast<int32_t>(offsetof(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_StaticFields, ___MinusOne_9)); }
inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 get_MinusOne_9() const { return ___MinusOne_9; }
inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 * get_address_of_MinusOne_9() { return &___MinusOne_9; }
inline void set_MinusOne_9(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 value)
{
___MinusOne_9 = value;
}
inline static int32_t get_offset_of_MaxValue_10() { return static_cast<int32_t>(offsetof(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_StaticFields, ___MaxValue_10)); }
inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 get_MaxValue_10() const { return ___MaxValue_10; }
inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 * get_address_of_MaxValue_10() { return &___MaxValue_10; }
inline void set_MaxValue_10(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 value)
{
___MaxValue_10 = value;
}
inline static int32_t get_offset_of_MinValue_11() { return static_cast<int32_t>(offsetof(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_StaticFields, ___MinValue_11)); }
inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 get_MinValue_11() const { return ___MinValue_11; }
inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 * get_address_of_MinValue_11() { return &___MinValue_11; }
inline void set_MinValue_11(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 value)
{
___MinValue_11 = value;
}
inline static int32_t get_offset_of_NearNegativeZero_12() { return static_cast<int32_t>(offsetof(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_StaticFields, ___NearNegativeZero_12)); }
inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 get_NearNegativeZero_12() const { return ___NearNegativeZero_12; }
inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 * get_address_of_NearNegativeZero_12() { return &___NearNegativeZero_12; }
inline void set_NearNegativeZero_12(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 value)
{
___NearNegativeZero_12 = value;
}
inline static int32_t get_offset_of_NearPositiveZero_13() { return static_cast<int32_t>(offsetof(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_StaticFields, ___NearPositiveZero_13)); }
inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 get_NearPositiveZero_13() const { return ___NearPositiveZero_13; }
inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 * get_address_of_NearPositiveZero_13() { return &___NearPositiveZero_13; }
inline void set_NearPositiveZero_13(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 value)
{
___NearPositiveZero_13 = value;
}
};
// System.Double
struct Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181
{
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_t42821932CB52DE2057E685D0E1AF3DE5033D2181, ___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_t42821932CB52DE2057E685D0E1AF3DE5033D2181_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_t42821932CB52DE2057E685D0E1AF3DE5033D2181_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_t23B90B40F60E677A8025267341651C94AE079CDA : public ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52
{
public:
public:
};
struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA_StaticFields
{
public:
// System.Char[] System.Enum::enumSeperatorCharArray
CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___enumSeperatorCharArray_0;
public:
inline static int32_t get_offset_of_enumSeperatorCharArray_0() { return static_cast<int32_t>(offsetof(Enum_t23B90B40F60E677A8025267341651C94AE079CDA_StaticFields, ___enumSeperatorCharArray_0)); }
inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get_enumSeperatorCharArray_0() const { return ___enumSeperatorCharArray_0; }
inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of_enumSeperatorCharArray_0() { return &___enumSeperatorCharArray_0; }
inline void set_enumSeperatorCharArray_0(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value)
{
___enumSeperatorCharArray_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___enumSeperatorCharArray_0), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Enum
struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA_marshaled_pinvoke
{
};
// Native definition for COM marshalling of System.Enum
struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA_marshaled_com
{
};
// System.Globalization.InternalCodePageDataItem
struct InternalCodePageDataItem_t885932F372A8EEC39396B0D57CC93AC72E2A3DA7
{
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_t885932F372A8EEC39396B0D57CC93AC72E2A3DA7, ___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_t885932F372A8EEC39396B0D57CC93AC72E2A3DA7, ___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_t885932F372A8EEC39396B0D57CC93AC72E2A3DA7, ___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_t885932F372A8EEC39396B0D57CC93AC72E2A3DA7, ___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_t885932F372A8EEC39396B0D57CC93AC72E2A3DA7_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_t885932F372A8EEC39396B0D57CC93AC72E2A3DA7_marshaled_com
{
uint16_t ___codePage_0;
uint16_t ___uiFamilyCodePage_1;
uint32_t ___flags_2;
Il2CppChar* ___Names_3;
};
// 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_t2CB5440F189986116A2FA9F907AE52644047AC50 * ____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_t2CB5440F189986116A2FA9F907AE52644047AC50 * get__rng_13() const { return ____rng_13; }
inline RandomNumberGenerator_t2CB5440F189986116A2FA9F907AE52644047AC50 ** get_address_of__rng_13() { return &____rng_13; }
inline void set__rng_13(RandomNumberGenerator_t2CB5440F189986116A2FA9F907AE52644047AC50 * value)
{
____rng_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&____rng_13), (void*)value);
}
};
// System.IO.Stream
struct Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB : public MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8
{
public:
// System.IO.Stream_ReadWriteTask System.IO.Stream::_activeReadWriteTask
ReadWriteTask_t32CD2C230786712954C1DB518DBE420A1F4C7974 * ____activeReadWriteTask_2;
// System.Threading.SemaphoreSlim System.IO.Stream::_asyncActiveSemaphore
SemaphoreSlim_t3EF85FC980AE57957BEBB6B78E81DE2E3233D385 * ____asyncActiveSemaphore_3;
public:
inline static int32_t get_offset_of__activeReadWriteTask_2() { return static_cast<int32_t>(offsetof(Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB, ____activeReadWriteTask_2)); }
inline ReadWriteTask_t32CD2C230786712954C1DB518DBE420A1F4C7974 * get__activeReadWriteTask_2() const { return ____activeReadWriteTask_2; }
inline ReadWriteTask_t32CD2C230786712954C1DB518DBE420A1F4C7974 ** get_address_of__activeReadWriteTask_2() { return &____activeReadWriteTask_2; }
inline void set__activeReadWriteTask_2(ReadWriteTask_t32CD2C230786712954C1DB518DBE420A1F4C7974 * value)
{
____activeReadWriteTask_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____activeReadWriteTask_2), (void*)value);
}
inline static int32_t get_offset_of__asyncActiveSemaphore_3() { return static_cast<int32_t>(offsetof(Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB, ____asyncActiveSemaphore_3)); }
inline SemaphoreSlim_t3EF85FC980AE57957BEBB6B78E81DE2E3233D385 * get__asyncActiveSemaphore_3() const { return ____asyncActiveSemaphore_3; }
inline SemaphoreSlim_t3EF85FC980AE57957BEBB6B78E81DE2E3233D385 ** get_address_of__asyncActiveSemaphore_3() { return &____asyncActiveSemaphore_3; }
inline void set__asyncActiveSemaphore_3(SemaphoreSlim_t3EF85FC980AE57957BEBB6B78E81DE2E3233D385 * value)
{
____asyncActiveSemaphore_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____asyncActiveSemaphore_3), (void*)value);
}
};
struct Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB_StaticFields
{
public:
// System.IO.Stream System.IO.Stream::Null
Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___Null_1;
public:
inline static int32_t get_offset_of_Null_1() { return static_cast<int32_t>(offsetof(Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB_StaticFields, ___Null_1)); }
inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * get_Null_1() const { return ___Null_1; }
inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB ** get_address_of_Null_1() { return &___Null_1; }
inline void set_Null_1(Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * value)
{
___Null_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Null_1), (void*)value);
}
};
// System.IO.TextReader
struct TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F : public MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8
{
public:
public:
};
struct TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F_StaticFields
{
public:
// System.Func`2<System.Object,System.String> System.IO.TextReader::_ReadLineDelegate
Func_2_t060A650AB95DEF14D4F579FA5999ACEFEEE0FD82 * ____ReadLineDelegate_1;
// System.Func`2<System.Object,System.Int32> System.IO.TextReader::_ReadDelegate
Func_2_t0CEE9D1C856153BA9C23BB9D7E929D577AF37A2C * ____ReadDelegate_2;
// System.IO.TextReader System.IO.TextReader::Null
TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F * ___Null_3;
public:
inline static int32_t get_offset_of__ReadLineDelegate_1() { return static_cast<int32_t>(offsetof(TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F_StaticFields, ____ReadLineDelegate_1)); }
inline Func_2_t060A650AB95DEF14D4F579FA5999ACEFEEE0FD82 * get__ReadLineDelegate_1() const { return ____ReadLineDelegate_1; }
inline Func_2_t060A650AB95DEF14D4F579FA5999ACEFEEE0FD82 ** get_address_of__ReadLineDelegate_1() { return &____ReadLineDelegate_1; }
inline void set__ReadLineDelegate_1(Func_2_t060A650AB95DEF14D4F579FA5999ACEFEEE0FD82 * value)
{
____ReadLineDelegate_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____ReadLineDelegate_1), (void*)value);
}
inline static int32_t get_offset_of__ReadDelegate_2() { return static_cast<int32_t>(offsetof(TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F_StaticFields, ____ReadDelegate_2)); }
inline Func_2_t0CEE9D1C856153BA9C23BB9D7E929D577AF37A2C * get__ReadDelegate_2() const { return ____ReadDelegate_2; }
inline Func_2_t0CEE9D1C856153BA9C23BB9D7E929D577AF37A2C ** get_address_of__ReadDelegate_2() { return &____ReadDelegate_2; }
inline void set__ReadDelegate_2(Func_2_t0CEE9D1C856153BA9C23BB9D7E929D577AF37A2C * value)
{
____ReadDelegate_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____ReadDelegate_2), (void*)value);
}
inline static int32_t get_offset_of_Null_3() { return static_cast<int32_t>(offsetof(TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F_StaticFields, ___Null_3)); }
inline TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F * get_Null_3() const { return ___Null_3; }
inline TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F ** get_address_of_Null_3() { return &___Null_3; }
inline void set_Null_3(TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F * value)
{
___Null_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Null_3), (void*)value);
}
};
// System.IO.TextWriter
struct TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 : public MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8
{
public:
// System.Char[] System.IO.TextWriter::CoreNewLine
CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___CoreNewLine_9;
// System.IFormatProvider System.IO.TextWriter::InternalFormatProvider
RuntimeObject* ___InternalFormatProvider_10;
public:
inline static int32_t get_offset_of_CoreNewLine_9() { return static_cast<int32_t>(offsetof(TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643, ___CoreNewLine_9)); }
inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get_CoreNewLine_9() const { return ___CoreNewLine_9; }
inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of_CoreNewLine_9() { return &___CoreNewLine_9; }
inline void set_CoreNewLine_9(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value)
{
___CoreNewLine_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___CoreNewLine_9), (void*)value);
}
inline static int32_t get_offset_of_InternalFormatProvider_10() { return static_cast<int32_t>(offsetof(TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643, ___InternalFormatProvider_10)); }
inline RuntimeObject* get_InternalFormatProvider_10() const { return ___InternalFormatProvider_10; }
inline RuntimeObject** get_address_of_InternalFormatProvider_10() { return &___InternalFormatProvider_10; }
inline void set_InternalFormatProvider_10(RuntimeObject* value)
{
___InternalFormatProvider_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___InternalFormatProvider_10), (void*)value);
}
};
struct TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643_StaticFields
{
public:
// System.IO.TextWriter System.IO.TextWriter::Null
TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * ___Null_1;
// System.Action`1<System.Object> System.IO.TextWriter::_WriteCharDelegate
Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * ____WriteCharDelegate_2;
// System.Action`1<System.Object> System.IO.TextWriter::_WriteStringDelegate
Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * ____WriteStringDelegate_3;
// System.Action`1<System.Object> System.IO.TextWriter::_WriteCharArrayRangeDelegate
Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * ____WriteCharArrayRangeDelegate_4;
// System.Action`1<System.Object> System.IO.TextWriter::_WriteLineCharDelegate
Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * ____WriteLineCharDelegate_5;
// System.Action`1<System.Object> System.IO.TextWriter::_WriteLineStringDelegate
Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * ____WriteLineStringDelegate_6;
// System.Action`1<System.Object> System.IO.TextWriter::_WriteLineCharArrayRangeDelegate
Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * ____WriteLineCharArrayRangeDelegate_7;
// System.Action`1<System.Object> System.IO.TextWriter::_FlushDelegate
Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * ____FlushDelegate_8;
public:
inline static int32_t get_offset_of_Null_1() { return static_cast<int32_t>(offsetof(TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643_StaticFields, ___Null_1)); }
inline TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * get_Null_1() const { return ___Null_1; }
inline TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 ** get_address_of_Null_1() { return &___Null_1; }
inline void set_Null_1(TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643 * value)
{
___Null_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Null_1), (void*)value);
}
inline static int32_t get_offset_of__WriteCharDelegate_2() { return static_cast<int32_t>(offsetof(TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643_StaticFields, ____WriteCharDelegate_2)); }
inline Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * get__WriteCharDelegate_2() const { return ____WriteCharDelegate_2; }
inline Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC ** get_address_of__WriteCharDelegate_2() { return &____WriteCharDelegate_2; }
inline void set__WriteCharDelegate_2(Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * value)
{
____WriteCharDelegate_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____WriteCharDelegate_2), (void*)value);
}
inline static int32_t get_offset_of__WriteStringDelegate_3() { return static_cast<int32_t>(offsetof(TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643_StaticFields, ____WriteStringDelegate_3)); }
inline Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * get__WriteStringDelegate_3() const { return ____WriteStringDelegate_3; }
inline Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC ** get_address_of__WriteStringDelegate_3() { return &____WriteStringDelegate_3; }
inline void set__WriteStringDelegate_3(Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * value)
{
____WriteStringDelegate_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____WriteStringDelegate_3), (void*)value);
}
inline static int32_t get_offset_of__WriteCharArrayRangeDelegate_4() { return static_cast<int32_t>(offsetof(TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643_StaticFields, ____WriteCharArrayRangeDelegate_4)); }
inline Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * get__WriteCharArrayRangeDelegate_4() const { return ____WriteCharArrayRangeDelegate_4; }
inline Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC ** get_address_of__WriteCharArrayRangeDelegate_4() { return &____WriteCharArrayRangeDelegate_4; }
inline void set__WriteCharArrayRangeDelegate_4(Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * value)
{
____WriteCharArrayRangeDelegate_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____WriteCharArrayRangeDelegate_4), (void*)value);
}
inline static int32_t get_offset_of__WriteLineCharDelegate_5() { return static_cast<int32_t>(offsetof(TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643_StaticFields, ____WriteLineCharDelegate_5)); }
inline Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * get__WriteLineCharDelegate_5() const { return ____WriteLineCharDelegate_5; }
inline Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC ** get_address_of__WriteLineCharDelegate_5() { return &____WriteLineCharDelegate_5; }
inline void set__WriteLineCharDelegate_5(Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * value)
{
____WriteLineCharDelegate_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____WriteLineCharDelegate_5), (void*)value);
}
inline static int32_t get_offset_of__WriteLineStringDelegate_6() { return static_cast<int32_t>(offsetof(TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643_StaticFields, ____WriteLineStringDelegate_6)); }
inline Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * get__WriteLineStringDelegate_6() const { return ____WriteLineStringDelegate_6; }
inline Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC ** get_address_of__WriteLineStringDelegate_6() { return &____WriteLineStringDelegate_6; }
inline void set__WriteLineStringDelegate_6(Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * value)
{
____WriteLineStringDelegate_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&____WriteLineStringDelegate_6), (void*)value);
}
inline static int32_t get_offset_of__WriteLineCharArrayRangeDelegate_7() { return static_cast<int32_t>(offsetof(TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643_StaticFields, ____WriteLineCharArrayRangeDelegate_7)); }
inline Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * get__WriteLineCharArrayRangeDelegate_7() const { return ____WriteLineCharArrayRangeDelegate_7; }
inline Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC ** get_address_of__WriteLineCharArrayRangeDelegate_7() { return &____WriteLineCharArrayRangeDelegate_7; }
inline void set__WriteLineCharArrayRangeDelegate_7(Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * value)
{
____WriteLineCharArrayRangeDelegate_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&____WriteLineCharArrayRangeDelegate_7), (void*)value);
}
inline static int32_t get_offset_of__FlushDelegate_8() { return static_cast<int32_t>(offsetof(TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643_StaticFields, ____FlushDelegate_8)); }
inline Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * get__FlushDelegate_8() const { return ____FlushDelegate_8; }
inline Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC ** get_address_of__FlushDelegate_8() { return &____FlushDelegate_8; }
inline void set__FlushDelegate_8(Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * value)
{
____FlushDelegate_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&____FlushDelegate_8), (void*)value);
}
};
// System.Int16
struct Int16_tD0F031114106263BB459DA1F099FF9F42691295A
{
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_tD0F031114106263BB459DA1F099FF9F42691295A, ___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_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046
{
public:
// System.Int32 System.Int32::m_value
int32_t ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046, ___m_value_0)); }
inline int32_t get_m_value_0() const { return ___m_value_0; }
inline int32_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(int32_t value)
{
___m_value_0 = value;
}
};
// System.Int64
struct Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3
{
public:
// System.Int64 System.Int64::m_value
int64_t ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3, ___m_value_0)); }
inline int64_t get_m_value_0() const { return ___m_value_0; }
inline int64_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(int64_t value)
{
___m_value_0 = value;
}
};
// System.IntPtr
struct IntPtr_t
{
public:
// System.Void* System.IntPtr::m_value
void* ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(IntPtr_t, ___m_value_0)); }
inline void* get_m_value_0() const { return ___m_value_0; }
inline void** get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(void* value)
{
___m_value_0 = value;
}
};
struct IntPtr_t_StaticFields
{
public:
// System.IntPtr System.IntPtr::Zero
intptr_t ___Zero_1;
public:
inline static int32_t get_offset_of_Zero_1() { return static_cast<int32_t>(offsetof(IntPtr_t_StaticFields, ___Zero_1)); }
inline intptr_t get_Zero_1() const { return ___Zero_1; }
inline intptr_t* get_address_of_Zero_1() { return &___Zero_1; }
inline void set_Zero_1(intptr_t value)
{
___Zero_1 = value;
}
};
// System.Nullable`1<System.Boolean>
struct Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3
{
public:
// T System.Nullable`1::value
bool ___value_0;
// System.Boolean System.Nullable`1::has_value
bool ___has_value_1;
public:
inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3, ___value_0)); }
inline bool get_value_0() const { return ___value_0; }
inline bool* get_address_of_value_0() { return &___value_0; }
inline void set_value_0(bool value)
{
___value_0 = value;
}
inline static int32_t get_offset_of_has_value_1() { return static_cast<int32_t>(offsetof(Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3, ___has_value_1)); }
inline bool get_has_value_1() const { return ___has_value_1; }
inline bool* get_address_of_has_value_1() { return &___has_value_1; }
inline void set_has_value_1(bool value)
{
___has_value_1 = value;
}
};
// System.Reflection.MethodBase
struct MethodBase_t : public MemberInfo_t
{
public:
public:
};
// System.Reflection.ParameterModifier
struct ParameterModifier_tC1C793BD8B003B24010657487AFD17A4BA3DF6EA
{
public:
// System.Boolean[] System.Reflection.ParameterModifier::_byRef
BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C* ____byRef_0;
public:
inline static int32_t get_offset_of__byRef_0() { return static_cast<int32_t>(offsetof(ParameterModifier_tC1C793BD8B003B24010657487AFD17A4BA3DF6EA, ____byRef_0)); }
inline BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C* get__byRef_0() const { return ____byRef_0; }
inline BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C** get_address_of__byRef_0() { return &____byRef_0; }
inline void set__byRef_0(BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C* value)
{
____byRef_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____byRef_0), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Reflection.ParameterModifier
struct ParameterModifier_tC1C793BD8B003B24010657487AFD17A4BA3DF6EA_marshaled_pinvoke
{
int32_t* ____byRef_0;
};
// Native definition for COM marshalling of System.Reflection.ParameterModifier
struct ParameterModifier_tC1C793BD8B003B24010657487AFD17A4BA3DF6EA_marshaled_com
{
int32_t* ____byRef_0;
};
// System.Runtime.CompilerServices.CompilationRelaxationsAttribute
struct CompilationRelaxationsAttribute_t661FDDC06629BDA607A42BD660944F039FE03AFF : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
{
public:
// System.Int32 System.Runtime.CompilerServices.CompilationRelaxationsAttribute::m_relaxations
int32_t ___m_relaxations_0;
public:
inline static int32_t get_offset_of_m_relaxations_0() { return static_cast<int32_t>(offsetof(CompilationRelaxationsAttribute_t661FDDC06629BDA607A42BD660944F039FE03AFF, ___m_relaxations_0)); }
inline int32_t get_m_relaxations_0() const { return ___m_relaxations_0; }
inline int32_t* get_address_of_m_relaxations_0() { return &___m_relaxations_0; }
inline void set_m_relaxations_0(int32_t value)
{
___m_relaxations_0 = value;
}
};
// System.Runtime.CompilerServices.CompilerGeneratedAttribute
struct CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
{
public:
public:
};
// System.Runtime.InteropServices.ComCompatibleVersionAttribute
struct ComCompatibleVersionAttribute_tC75249EF0E76BDB5322EC20EBCADDF5E8F9E183A : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
{
public:
// System.Int32 System.Runtime.InteropServices.ComCompatibleVersionAttribute::_major
int32_t ____major_0;
// System.Int32 System.Runtime.InteropServices.ComCompatibleVersionAttribute::_minor
int32_t ____minor_1;
// System.Int32 System.Runtime.InteropServices.ComCompatibleVersionAttribute::_build
int32_t ____build_2;
// System.Int32 System.Runtime.InteropServices.ComCompatibleVersionAttribute::_revision
int32_t ____revision_3;
public:
inline static int32_t get_offset_of__major_0() { return static_cast<int32_t>(offsetof(ComCompatibleVersionAttribute_tC75249EF0E76BDB5322EC20EBCADDF5E8F9E183A, ____major_0)); }
inline int32_t get__major_0() const { return ____major_0; }
inline int32_t* get_address_of__major_0() { return &____major_0; }
inline void set__major_0(int32_t value)
{
____major_0 = value;
}
inline static int32_t get_offset_of__minor_1() { return static_cast<int32_t>(offsetof(ComCompatibleVersionAttribute_tC75249EF0E76BDB5322EC20EBCADDF5E8F9E183A, ____minor_1)); }
inline int32_t get__minor_1() const { return ____minor_1; }
inline int32_t* get_address_of__minor_1() { return &____minor_1; }
inline void set__minor_1(int32_t value)
{
____minor_1 = value;
}
inline static int32_t get_offset_of__build_2() { return static_cast<int32_t>(offsetof(ComCompatibleVersionAttribute_tC75249EF0E76BDB5322EC20EBCADDF5E8F9E183A, ____build_2)); }
inline int32_t get__build_2() const { return ____build_2; }
inline int32_t* get_address_of__build_2() { return &____build_2; }
inline void set__build_2(int32_t value)
{
____build_2 = value;
}
inline static int32_t get_offset_of__revision_3() { return static_cast<int32_t>(offsetof(ComCompatibleVersionAttribute_tC75249EF0E76BDB5322EC20EBCADDF5E8F9E183A, ____revision_3)); }
inline int32_t get__revision_3() const { return ____revision_3; }
inline int32_t* get_address_of__revision_3() { return &____revision_3; }
inline void set__revision_3(int32_t value)
{
____revision_3 = value;
}
};
// System.Runtime.InteropServices.ComDefaultInterfaceAttribute
struct ComDefaultInterfaceAttribute_tC170FF54A68C3A32A635632D3DB9E6410F02FE72 : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
{
public:
// System.Type System.Runtime.InteropServices.ComDefaultInterfaceAttribute::_val
Type_t * ____val_0;
public:
inline static int32_t get_offset_of__val_0() { return static_cast<int32_t>(offsetof(ComDefaultInterfaceAttribute_tC170FF54A68C3A32A635632D3DB9E6410F02FE72, ____val_0)); }
inline Type_t * get__val_0() const { return ____val_0; }
inline Type_t ** get_address_of__val_0() { return &____val_0; }
inline void set__val_0(Type_t * value)
{
____val_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____val_0), (void*)value);
}
};
// System.Runtime.InteropServices.ComImportAttribute
struct ComImportAttribute_t8A6BBE54E3259B07ACE4161A64FF180879E82E15 : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
{
public:
public:
};
// System.Runtime.InteropServices.ComVisibleAttribute
struct ComVisibleAttribute_tCE3DF5E341F3ECE4C81FE85C15B3D782AB302A2A : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
{
public:
// System.Boolean System.Runtime.InteropServices.ComVisibleAttribute::_val
bool ____val_0;
public:
inline static int32_t get_offset_of__val_0() { return static_cast<int32_t>(offsetof(ComVisibleAttribute_tCE3DF5E341F3ECE4C81FE85C15B3D782AB302A2A, ____val_0)); }
inline bool get__val_0() const { return ____val_0; }
inline bool* get_address_of__val_0() { return &____val_0; }
inline void set__val_0(bool value)
{
____val_0 = value;
}
};
// System.Runtime.InteropServices.GCHandle
struct GCHandle_t757890BC4BBBEDE5A623A3C110013EDD24613603
{
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_t757890BC4BBBEDE5A623A3C110013EDD24613603, ___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.Runtime.Remoting.ActivatedClientTypeEntry
struct ActivatedClientTypeEntry_t66A69B1534DEAA65BB13C418074C41B27F4662A3 : public TypeEntry_tE6A29217B055E31F4568B08F627D9BD7E4B28DE5
{
public:
// System.String System.Runtime.Remoting.ActivatedClientTypeEntry::applicationUrl
String_t* ___applicationUrl_2;
// System.Type System.Runtime.Remoting.ActivatedClientTypeEntry::obj_type
Type_t * ___obj_type_3;
public:
inline static int32_t get_offset_of_applicationUrl_2() { return static_cast<int32_t>(offsetof(ActivatedClientTypeEntry_t66A69B1534DEAA65BB13C418074C41B27F4662A3, ___applicationUrl_2)); }
inline String_t* get_applicationUrl_2() const { return ___applicationUrl_2; }
inline String_t** get_address_of_applicationUrl_2() { return &___applicationUrl_2; }
inline void set_applicationUrl_2(String_t* value)
{
___applicationUrl_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___applicationUrl_2), (void*)value);
}
inline static int32_t get_offset_of_obj_type_3() { return static_cast<int32_t>(offsetof(ActivatedClientTypeEntry_t66A69B1534DEAA65BB13C418074C41B27F4662A3, ___obj_type_3)); }
inline Type_t * get_obj_type_3() const { return ___obj_type_3; }
inline Type_t ** get_address_of_obj_type_3() { return &___obj_type_3; }
inline void set_obj_type_3(Type_t * value)
{
___obj_type_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___obj_type_3), (void*)value);
}
};
// System.Runtime.Remoting.ActivatedServiceTypeEntry
struct ActivatedServiceTypeEntry_t0DA790E1B80AFC9F7C69388B70AEC3F24C706274 : public TypeEntry_tE6A29217B055E31F4568B08F627D9BD7E4B28DE5
{
public:
// System.Type System.Runtime.Remoting.ActivatedServiceTypeEntry::obj_type
Type_t * ___obj_type_2;
public:
inline static int32_t get_offset_of_obj_type_2() { return static_cast<int32_t>(offsetof(ActivatedServiceTypeEntry_t0DA790E1B80AFC9F7C69388B70AEC3F24C706274, ___obj_type_2)); }
inline Type_t * get_obj_type_2() const { return ___obj_type_2; }
inline Type_t ** get_address_of_obj_type_2() { return &___obj_type_2; }
inline void set_obj_type_2(Type_t * value)
{
___obj_type_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___obj_type_2), (void*)value);
}
};
// System.Runtime.Remoting.ClientIdentity
struct ClientIdentity_tF35F3D3529880FBF0017AB612179C8E060AE611E : public Identity_t640A44175E23F75AB432A7C00569D863BF48AAD5
{
public:
// System.WeakReference System.Runtime.Remoting.ClientIdentity::_proxyReference
WeakReference_tB8558D16C98417FD98C920C42C0CC5C9FF825C76 * ____proxyReference_7;
public:
inline static int32_t get_offset_of__proxyReference_7() { return static_cast<int32_t>(offsetof(ClientIdentity_tF35F3D3529880FBF0017AB612179C8E060AE611E, ____proxyReference_7)); }
inline WeakReference_tB8558D16C98417FD98C920C42C0CC5C9FF825C76 * get__proxyReference_7() const { return ____proxyReference_7; }
inline WeakReference_tB8558D16C98417FD98C920C42C0CC5C9FF825C76 ** get_address_of__proxyReference_7() { return &____proxyReference_7; }
inline void set__proxyReference_7(WeakReference_tB8558D16C98417FD98C920C42C0CC5C9FF825C76 * value)
{
____proxyReference_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&____proxyReference_7), (void*)value);
}
};
// System.Runtime.Remoting.FormatterData
struct FormatterData_t949FC0175724CB0B0A0CECED5896D0597B2CC955 : public ProviderData_t2E4B222839D59BB2D2C44E370FA8ED37DAF4F582
{
public:
public:
};
// System.Runtime.Remoting.Messaging.CADMethodCallMessage
struct CADMethodCallMessage_t57296ECCBF254F676C852CB37D8A35782059F906 : public CADMessageBase_t78A590A87FD9362D67AAD58A88C4062CA0A105C7
{
public:
// System.String System.Runtime.Remoting.Messaging.CADMethodCallMessage::_uri
String_t* ____uri_5;
public:
inline static int32_t get_offset_of__uri_5() { return static_cast<int32_t>(offsetof(CADMethodCallMessage_t57296ECCBF254F676C852CB37D8A35782059F906, ____uri_5)); }
inline String_t* get__uri_5() const { return ____uri_5; }
inline String_t** get_address_of__uri_5() { return &____uri_5; }
inline void set__uri_5(String_t* value)
{
____uri_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____uri_5), (void*)value);
}
};
// System.Runtime.Remoting.Messaging.CADMethodReturnMessage
struct CADMethodReturnMessage_t875AA26C474A6CC70596D42E9D74006BCC86A272 : public CADMessageBase_t78A590A87FD9362D67AAD58A88C4062CA0A105C7
{
public:
// System.Object System.Runtime.Remoting.Messaging.CADMethodReturnMessage::_returnValue
RuntimeObject * ____returnValue_5;
// System.Runtime.Remoting.Messaging.CADArgHolder System.Runtime.Remoting.Messaging.CADMethodReturnMessage::_exception
CADArgHolder_tF834CE7AC93B38AABC332460CBAB127B82A9389E * ____exception_6;
// System.Type[] System.Runtime.Remoting.Messaging.CADMethodReturnMessage::_sig
TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* ____sig_7;
public:
inline static int32_t get_offset_of__returnValue_5() { return static_cast<int32_t>(offsetof(CADMethodReturnMessage_t875AA26C474A6CC70596D42E9D74006BCC86A272, ____returnValue_5)); }
inline RuntimeObject * get__returnValue_5() const { return ____returnValue_5; }
inline RuntimeObject ** get_address_of__returnValue_5() { return &____returnValue_5; }
inline void set__returnValue_5(RuntimeObject * value)
{
____returnValue_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____returnValue_5), (void*)value);
}
inline static int32_t get_offset_of__exception_6() { return static_cast<int32_t>(offsetof(CADMethodReturnMessage_t875AA26C474A6CC70596D42E9D74006BCC86A272, ____exception_6)); }
inline CADArgHolder_tF834CE7AC93B38AABC332460CBAB127B82A9389E * get__exception_6() const { return ____exception_6; }
inline CADArgHolder_tF834CE7AC93B38AABC332460CBAB127B82A9389E ** get_address_of__exception_6() { return &____exception_6; }
inline void set__exception_6(CADArgHolder_tF834CE7AC93B38AABC332460CBAB127B82A9389E * value)
{
____exception_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&____exception_6), (void*)value);
}
inline static int32_t get_offset_of__sig_7() { return static_cast<int32_t>(offsetof(CADMethodReturnMessage_t875AA26C474A6CC70596D42E9D74006BCC86A272, ____sig_7)); }
inline TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* get__sig_7() const { return ____sig_7; }
inline TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755** get_address_of__sig_7() { return &____sig_7; }
inline void set__sig_7(TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* value)
{
____sig_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&____sig_7), (void*)value);
}
};
// System.Runtime.Remoting.ServerIdentity
struct ServerIdentity_t5689BF0CA0122A8E597C9900D39F11F07D79D3A8 : public Identity_t640A44175E23F75AB432A7C00569D863BF48AAD5
{
public:
// System.Type System.Runtime.Remoting.ServerIdentity::_objectType
Type_t * ____objectType_7;
// System.MarshalByRefObject System.Runtime.Remoting.ServerIdentity::_serverObject
MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8 * ____serverObject_8;
// System.Runtime.Remoting.Messaging.IMessageSink System.Runtime.Remoting.ServerIdentity::_serverSink
RuntimeObject* ____serverSink_9;
// System.Runtime.Remoting.Contexts.Context System.Runtime.Remoting.ServerIdentity::_context
Context_t8A5B564FD0F970E10A97ACB8A7579FFF3EE4C678 * ____context_10;
// System.Runtime.Remoting.Lifetime.Lease System.Runtime.Remoting.ServerIdentity::_lease
Lease_tA878061ECC9A466127F00ACF5568EAB267E05641 * ____lease_11;
public:
inline static int32_t get_offset_of__objectType_7() { return static_cast<int32_t>(offsetof(ServerIdentity_t5689BF0CA0122A8E597C9900D39F11F07D79D3A8, ____objectType_7)); }
inline Type_t * get__objectType_7() const { return ____objectType_7; }
inline Type_t ** get_address_of__objectType_7() { return &____objectType_7; }
inline void set__objectType_7(Type_t * value)
{
____objectType_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&____objectType_7), (void*)value);
}
inline static int32_t get_offset_of__serverObject_8() { return static_cast<int32_t>(offsetof(ServerIdentity_t5689BF0CA0122A8E597C9900D39F11F07D79D3A8, ____serverObject_8)); }
inline MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8 * get__serverObject_8() const { return ____serverObject_8; }
inline MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8 ** get_address_of__serverObject_8() { return &____serverObject_8; }
inline void set__serverObject_8(MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8 * value)
{
____serverObject_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&____serverObject_8), (void*)value);
}
inline static int32_t get_offset_of__serverSink_9() { return static_cast<int32_t>(offsetof(ServerIdentity_t5689BF0CA0122A8E597C9900D39F11F07D79D3A8, ____serverSink_9)); }
inline RuntimeObject* get__serverSink_9() const { return ____serverSink_9; }
inline RuntimeObject** get_address_of__serverSink_9() { return &____serverSink_9; }
inline void set__serverSink_9(RuntimeObject* value)
{
____serverSink_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&____serverSink_9), (void*)value);
}
inline static int32_t get_offset_of__context_10() { return static_cast<int32_t>(offsetof(ServerIdentity_t5689BF0CA0122A8E597C9900D39F11F07D79D3A8, ____context_10)); }
inline Context_t8A5B564FD0F970E10A97ACB8A7579FFF3EE4C678 * get__context_10() const { return ____context_10; }
inline Context_t8A5B564FD0F970E10A97ACB8A7579FFF3EE4C678 ** get_address_of__context_10() { return &____context_10; }
inline void set__context_10(Context_t8A5B564FD0F970E10A97ACB8A7579FFF3EE4C678 * value)
{
____context_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&____context_10), (void*)value);
}
inline static int32_t get_offset_of__lease_11() { return static_cast<int32_t>(offsetof(ServerIdentity_t5689BF0CA0122A8E597C9900D39F11F07D79D3A8, ____lease_11)); }
inline Lease_tA878061ECC9A466127F00ACF5568EAB267E05641 * get__lease_11() const { return ____lease_11; }
inline Lease_tA878061ECC9A466127F00ACF5568EAB267E05641 ** get_address_of__lease_11() { return &____lease_11; }
inline void set__lease_11(Lease_tA878061ECC9A466127F00ACF5568EAB267E05641 * value)
{
____lease_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&____lease_11), (void*)value);
}
};
// System.Runtime.Remoting.WellKnownClientTypeEntry
struct WellKnownClientTypeEntry_tF15BE481E09131FA6D056BC004B31525261ED4FD : public TypeEntry_tE6A29217B055E31F4568B08F627D9BD7E4B28DE5
{
public:
// System.Type System.Runtime.Remoting.WellKnownClientTypeEntry::obj_type
Type_t * ___obj_type_2;
// System.String System.Runtime.Remoting.WellKnownClientTypeEntry::obj_url
String_t* ___obj_url_3;
// System.String System.Runtime.Remoting.WellKnownClientTypeEntry::app_url
String_t* ___app_url_4;
public:
inline static int32_t get_offset_of_obj_type_2() { return static_cast<int32_t>(offsetof(WellKnownClientTypeEntry_tF15BE481E09131FA6D056BC004B31525261ED4FD, ___obj_type_2)); }
inline Type_t * get_obj_type_2() const { return ___obj_type_2; }
inline Type_t ** get_address_of_obj_type_2() { return &___obj_type_2; }
inline void set_obj_type_2(Type_t * value)
{
___obj_type_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___obj_type_2), (void*)value);
}
inline static int32_t get_offset_of_obj_url_3() { return static_cast<int32_t>(offsetof(WellKnownClientTypeEntry_tF15BE481E09131FA6D056BC004B31525261ED4FD, ___obj_url_3)); }
inline String_t* get_obj_url_3() const { return ___obj_url_3; }
inline String_t** get_address_of_obj_url_3() { return &___obj_url_3; }
inline void set_obj_url_3(String_t* value)
{
___obj_url_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___obj_url_3), (void*)value);
}
inline static int32_t get_offset_of_app_url_4() { return static_cast<int32_t>(offsetof(WellKnownClientTypeEntry_tF15BE481E09131FA6D056BC004B31525261ED4FD, ___app_url_4)); }
inline String_t* get_app_url_4() const { return ___app_url_4; }
inline String_t** get_address_of_app_url_4() { return &___app_url_4; }
inline void set_app_url_4(String_t* value)
{
___app_url_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___app_url_4), (void*)value);
}
};
// System.SByte
struct SByte_t928712DD662DC29BA4FAAE8CE2230AFB23447F0B
{
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_t928712DD662DC29BA4FAAE8CE2230AFB23447F0B, ___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_tE07797BA3C98D4CA9B5A19413C19A76688AB899E
{
public:
// System.Single System.Single::m_value
float ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E, ___m_value_0)); }
inline float get_m_value_0() const { return ___m_value_0; }
inline float* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(float value)
{
___m_value_0 = value;
}
};
// System.Text.UTF8Encoding
struct UTF8Encoding_t6EE88BC62116B5328F6CF4E39C9CC49EED2ED282 : public Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827
{
public:
// System.Boolean System.Text.UTF8Encoding::emitUTF8Identifier
bool ___emitUTF8Identifier_16;
// System.Boolean System.Text.UTF8Encoding::isThrowException
bool ___isThrowException_17;
public:
inline static int32_t get_offset_of_emitUTF8Identifier_16() { return static_cast<int32_t>(offsetof(UTF8Encoding_t6EE88BC62116B5328F6CF4E39C9CC49EED2ED282, ___emitUTF8Identifier_16)); }
inline bool get_emitUTF8Identifier_16() const { return ___emitUTF8Identifier_16; }
inline bool* get_address_of_emitUTF8Identifier_16() { return &___emitUTF8Identifier_16; }
inline void set_emitUTF8Identifier_16(bool value)
{
___emitUTF8Identifier_16 = value;
}
inline static int32_t get_offset_of_isThrowException_17() { return static_cast<int32_t>(offsetof(UTF8Encoding_t6EE88BC62116B5328F6CF4E39C9CC49EED2ED282, ___isThrowException_17)); }
inline bool get_isThrowException_17() const { return ___isThrowException_17; }
inline bool* get_address_of_isThrowException_17() { return &___isThrowException_17; }
inline void set_isThrowException_17(bool value)
{
___isThrowException_17 = value;
}
};
// System.Threading.CancellationCallbackCoreWorkArguments
struct CancellationCallbackCoreWorkArguments_t9ECCD883EF9DF3283696D1CE1F7A81C0F075923E
{
public:
// System.Threading.SparselyPopulatedArrayFragment`1<System.Threading.CancellationCallbackInfo> System.Threading.CancellationCallbackCoreWorkArguments::m_currArrayFragment
SparselyPopulatedArrayFragment_1_t93197EF47D6A025755987003D5D62F3AED371C21 * ___m_currArrayFragment_0;
// System.Int32 System.Threading.CancellationCallbackCoreWorkArguments::m_currArrayIndex
int32_t ___m_currArrayIndex_1;
public:
inline static int32_t get_offset_of_m_currArrayFragment_0() { return static_cast<int32_t>(offsetof(CancellationCallbackCoreWorkArguments_t9ECCD883EF9DF3283696D1CE1F7A81C0F075923E, ___m_currArrayFragment_0)); }
inline SparselyPopulatedArrayFragment_1_t93197EF47D6A025755987003D5D62F3AED371C21 * get_m_currArrayFragment_0() const { return ___m_currArrayFragment_0; }
inline SparselyPopulatedArrayFragment_1_t93197EF47D6A025755987003D5D62F3AED371C21 ** get_address_of_m_currArrayFragment_0() { return &___m_currArrayFragment_0; }
inline void set_m_currArrayFragment_0(SparselyPopulatedArrayFragment_1_t93197EF47D6A025755987003D5D62F3AED371C21 * value)
{
___m_currArrayFragment_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_currArrayFragment_0), (void*)value);
}
inline static int32_t get_offset_of_m_currArrayIndex_1() { return static_cast<int32_t>(offsetof(CancellationCallbackCoreWorkArguments_t9ECCD883EF9DF3283696D1CE1F7A81C0F075923E, ___m_currArrayIndex_1)); }
inline int32_t get_m_currArrayIndex_1() const { return ___m_currArrayIndex_1; }
inline int32_t* get_address_of_m_currArrayIndex_1() { return &___m_currArrayIndex_1; }
inline void set_m_currArrayIndex_1(int32_t value)
{
___m_currArrayIndex_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Threading.CancellationCallbackCoreWorkArguments
struct CancellationCallbackCoreWorkArguments_t9ECCD883EF9DF3283696D1CE1F7A81C0F075923E_marshaled_pinvoke
{
SparselyPopulatedArrayFragment_1_t93197EF47D6A025755987003D5D62F3AED371C21 * ___m_currArrayFragment_0;
int32_t ___m_currArrayIndex_1;
};
// Native definition for COM marshalling of System.Threading.CancellationCallbackCoreWorkArguments
struct CancellationCallbackCoreWorkArguments_t9ECCD883EF9DF3283696D1CE1F7A81C0F075923E_marshaled_com
{
SparselyPopulatedArrayFragment_1_t93197EF47D6A025755987003D5D62F3AED371C21 * ___m_currArrayFragment_0;
int32_t ___m_currArrayIndex_1;
};
// System.Threading.CancellationToken
struct CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD
{
public:
// System.Threading.CancellationTokenSource System.Threading.CancellationToken::m_source
CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * ___m_source_0;
public:
inline static int32_t get_offset_of_m_source_0() { return static_cast<int32_t>(offsetof(CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD, ___m_source_0)); }
inline CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * get_m_source_0() const { return ___m_source_0; }
inline CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 ** get_address_of_m_source_0() { return &___m_source_0; }
inline void set_m_source_0(CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * value)
{
___m_source_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_source_0), (void*)value);
}
};
struct CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD_StaticFields
{
public:
// System.Action`1<System.Object> System.Threading.CancellationToken::s_ActionToActionObjShunt
Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * ___s_ActionToActionObjShunt_1;
public:
inline static int32_t get_offset_of_s_ActionToActionObjShunt_1() { return static_cast<int32_t>(offsetof(CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD_StaticFields, ___s_ActionToActionObjShunt_1)); }
inline Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * get_s_ActionToActionObjShunt_1() const { return ___s_ActionToActionObjShunt_1; }
inline Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC ** get_address_of_s_ActionToActionObjShunt_1() { return &___s_ActionToActionObjShunt_1; }
inline void set_s_ActionToActionObjShunt_1(Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * value)
{
___s_ActionToActionObjShunt_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_ActionToActionObjShunt_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Threading.CancellationToken
struct CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD_marshaled_pinvoke
{
CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * ___m_source_0;
};
// Native definition for COM marshalling of System.Threading.CancellationToken
struct CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD_marshaled_com
{
CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * ___m_source_0;
};
// System.Threading.SparselyPopulatedArrayAddInfo`1<System.Object>
struct SparselyPopulatedArrayAddInfo_1_t8F3BEC3A081BCFDF83207FC35A690A7E2773639D
{
public:
// System.Threading.SparselyPopulatedArrayFragment`1<T> System.Threading.SparselyPopulatedArrayAddInfo`1::m_source
SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 * ___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_t8F3BEC3A081BCFDF83207FC35A690A7E2773639D, ___m_source_0)); }
inline SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 * get_m_source_0() const { return ___m_source_0; }
inline SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 ** get_address_of_m_source_0() { return &___m_source_0; }
inline void set_m_source_0(SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 * 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_t8F3BEC3A081BCFDF83207FC35A690A7E2773639D, ___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.Threading.SparselyPopulatedArrayAddInfo`1<System.Threading.CancellationCallbackInfo>
struct SparselyPopulatedArrayAddInfo_1_t6EE25E0D720E03DE7A660791DB554CADCD247FC0
{
public:
// System.Threading.SparselyPopulatedArrayFragment`1<T> System.Threading.SparselyPopulatedArrayAddInfo`1::m_source
SparselyPopulatedArrayFragment_1_t93197EF47D6A025755987003D5D62F3AED371C21 * ___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_t6EE25E0D720E03DE7A660791DB554CADCD247FC0, ___m_source_0)); }
inline SparselyPopulatedArrayFragment_1_t93197EF47D6A025755987003D5D62F3AED371C21 * get_m_source_0() const { return ___m_source_0; }
inline SparselyPopulatedArrayFragment_1_t93197EF47D6A025755987003D5D62F3AED371C21 ** get_address_of_m_source_0() { return &___m_source_0; }
inline void set_m_source_0(SparselyPopulatedArrayFragment_1_t93197EF47D6A025755987003D5D62F3AED371C21 * 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_t6EE25E0D720E03DE7A660791DB554CADCD247FC0, ___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.Threading.SpinWait
struct SpinWait_tEBEEDAE5AEEBBDDEA635932A22308A8398C9AED9
{
public:
// System.Int32 System.Threading.SpinWait::m_count
int32_t ___m_count_0;
public:
inline static int32_t get_offset_of_m_count_0() { return static_cast<int32_t>(offsetof(SpinWait_tEBEEDAE5AEEBBDDEA635932A22308A8398C9AED9, ___m_count_0)); }
inline int32_t get_m_count_0() const { return ___m_count_0; }
inline int32_t* get_address_of_m_count_0() { return &___m_count_0; }
inline void set_m_count_0(int32_t value)
{
___m_count_0 = value;
}
};
// System.Threading.Thread
struct Thread_tB9EB71664220EE16451AF3276D78DE6614D2A414 : public CriticalFinalizerObject_tA3367C832FFE7434EB3C15C7136AF25524150997
{
public:
// System.Threading.InternalThread System.Threading.Thread::internal_thread
InternalThread_t12B78B27503AE19E9122E212419A66843BF746EB * ___internal_thread_6;
// System.Object System.Threading.Thread::m_ThreadStartArg
RuntimeObject * ___m_ThreadStartArg_7;
// System.Object System.Threading.Thread::pending_exception
RuntimeObject * ___pending_exception_8;
// System.Security.Principal.IPrincipal System.Threading.Thread::principal
RuntimeObject* ___principal_9;
// System.Int32 System.Threading.Thread::principal_version
int32_t ___principal_version_10;
// System.MulticastDelegate System.Threading.Thread::m_Delegate
MulticastDelegate_t * ___m_Delegate_12;
// System.Threading.ExecutionContext System.Threading.Thread::m_ExecutionContext
ExecutionContext_t16AC73BB21FEEEAD34A017877AC18DD8BB836414 * ___m_ExecutionContext_13;
// System.Boolean System.Threading.Thread::m_ExecutionContextBelongsToOuterScope
bool ___m_ExecutionContextBelongsToOuterScope_14;
public:
inline static int32_t get_offset_of_internal_thread_6() { return static_cast<int32_t>(offsetof(Thread_tB9EB71664220EE16451AF3276D78DE6614D2A414, ___internal_thread_6)); }
inline InternalThread_t12B78B27503AE19E9122E212419A66843BF746EB * get_internal_thread_6() const { return ___internal_thread_6; }
inline InternalThread_t12B78B27503AE19E9122E212419A66843BF746EB ** get_address_of_internal_thread_6() { return &___internal_thread_6; }
inline void set_internal_thread_6(InternalThread_t12B78B27503AE19E9122E212419A66843BF746EB * value)
{
___internal_thread_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___internal_thread_6), (void*)value);
}
inline static int32_t get_offset_of_m_ThreadStartArg_7() { return static_cast<int32_t>(offsetof(Thread_tB9EB71664220EE16451AF3276D78DE6614D2A414, ___m_ThreadStartArg_7)); }
inline RuntimeObject * get_m_ThreadStartArg_7() const { return ___m_ThreadStartArg_7; }
inline RuntimeObject ** get_address_of_m_ThreadStartArg_7() { return &___m_ThreadStartArg_7; }
inline void set_m_ThreadStartArg_7(RuntimeObject * value)
{
___m_ThreadStartArg_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_ThreadStartArg_7), (void*)value);
}
inline static int32_t get_offset_of_pending_exception_8() { return static_cast<int32_t>(offsetof(Thread_tB9EB71664220EE16451AF3276D78DE6614D2A414, ___pending_exception_8)); }
inline RuntimeObject * get_pending_exception_8() const { return ___pending_exception_8; }
inline RuntimeObject ** get_address_of_pending_exception_8() { return &___pending_exception_8; }
inline void set_pending_exception_8(RuntimeObject * value)
{
___pending_exception_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___pending_exception_8), (void*)value);
}
inline static int32_t get_offset_of_principal_9() { return static_cast<int32_t>(offsetof(Thread_tB9EB71664220EE16451AF3276D78DE6614D2A414, ___principal_9)); }
inline RuntimeObject* get_principal_9() const { return ___principal_9; }
inline RuntimeObject** get_address_of_principal_9() { return &___principal_9; }
inline void set_principal_9(RuntimeObject* value)
{
___principal_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___principal_9), (void*)value);
}
inline static int32_t get_offset_of_principal_version_10() { return static_cast<int32_t>(offsetof(Thread_tB9EB71664220EE16451AF3276D78DE6614D2A414, ___principal_version_10)); }
inline int32_t get_principal_version_10() const { return ___principal_version_10; }
inline int32_t* get_address_of_principal_version_10() { return &___principal_version_10; }
inline void set_principal_version_10(int32_t value)
{
___principal_version_10 = value;
}
inline static int32_t get_offset_of_m_Delegate_12() { return static_cast<int32_t>(offsetof(Thread_tB9EB71664220EE16451AF3276D78DE6614D2A414, ___m_Delegate_12)); }
inline MulticastDelegate_t * get_m_Delegate_12() const { return ___m_Delegate_12; }
inline MulticastDelegate_t ** get_address_of_m_Delegate_12() { return &___m_Delegate_12; }
inline void set_m_Delegate_12(MulticastDelegate_t * value)
{
___m_Delegate_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Delegate_12), (void*)value);
}
inline static int32_t get_offset_of_m_ExecutionContext_13() { return static_cast<int32_t>(offsetof(Thread_tB9EB71664220EE16451AF3276D78DE6614D2A414, ___m_ExecutionContext_13)); }
inline ExecutionContext_t16AC73BB21FEEEAD34A017877AC18DD8BB836414 * get_m_ExecutionContext_13() const { return ___m_ExecutionContext_13; }
inline ExecutionContext_t16AC73BB21FEEEAD34A017877AC18DD8BB836414 ** get_address_of_m_ExecutionContext_13() { return &___m_ExecutionContext_13; }
inline void set_m_ExecutionContext_13(ExecutionContext_t16AC73BB21FEEEAD34A017877AC18DD8BB836414 * value)
{
___m_ExecutionContext_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_ExecutionContext_13), (void*)value);
}
inline static int32_t get_offset_of_m_ExecutionContextBelongsToOuterScope_14() { return static_cast<int32_t>(offsetof(Thread_tB9EB71664220EE16451AF3276D78DE6614D2A414, ___m_ExecutionContextBelongsToOuterScope_14)); }
inline bool get_m_ExecutionContextBelongsToOuterScope_14() const { return ___m_ExecutionContextBelongsToOuterScope_14; }
inline bool* get_address_of_m_ExecutionContextBelongsToOuterScope_14() { return &___m_ExecutionContextBelongsToOuterScope_14; }
inline void set_m_ExecutionContextBelongsToOuterScope_14(bool value)
{
___m_ExecutionContextBelongsToOuterScope_14 = value;
}
};
struct Thread_tB9EB71664220EE16451AF3276D78DE6614D2A414_StaticFields
{
public:
// System.LocalDataStoreMgr System.Threading.Thread::s_LocalDataStoreMgr
LocalDataStoreMgr_t6CC44D0584911B6A6C6823115F858FC34AB4A80A * ___s_LocalDataStoreMgr_0;
// System.Threading.AsyncLocal`1<System.Globalization.CultureInfo> System.Threading.Thread::s_asyncLocalCurrentCulture
AsyncLocal_1_t480A201BA0D1C62C2C6FA6598EEDF7BB35D85349 * ___s_asyncLocalCurrentCulture_4;
// System.Threading.AsyncLocal`1<System.Globalization.CultureInfo> System.Threading.Thread::s_asyncLocalCurrentUICulture
AsyncLocal_1_t480A201BA0D1C62C2C6FA6598EEDF7BB35D85349 * ___s_asyncLocalCurrentUICulture_5;
public:
inline static int32_t get_offset_of_s_LocalDataStoreMgr_0() { return static_cast<int32_t>(offsetof(Thread_tB9EB71664220EE16451AF3276D78DE6614D2A414_StaticFields, ___s_LocalDataStoreMgr_0)); }
inline LocalDataStoreMgr_t6CC44D0584911B6A6C6823115F858FC34AB4A80A * get_s_LocalDataStoreMgr_0() const { return ___s_LocalDataStoreMgr_0; }
inline LocalDataStoreMgr_t6CC44D0584911B6A6C6823115F858FC34AB4A80A ** get_address_of_s_LocalDataStoreMgr_0() { return &___s_LocalDataStoreMgr_0; }
inline void set_s_LocalDataStoreMgr_0(LocalDataStoreMgr_t6CC44D0584911B6A6C6823115F858FC34AB4A80A * value)
{
___s_LocalDataStoreMgr_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_LocalDataStoreMgr_0), (void*)value);
}
inline static int32_t get_offset_of_s_asyncLocalCurrentCulture_4() { return static_cast<int32_t>(offsetof(Thread_tB9EB71664220EE16451AF3276D78DE6614D2A414_StaticFields, ___s_asyncLocalCurrentCulture_4)); }
inline AsyncLocal_1_t480A201BA0D1C62C2C6FA6598EEDF7BB35D85349 * get_s_asyncLocalCurrentCulture_4() const { return ___s_asyncLocalCurrentCulture_4; }
inline AsyncLocal_1_t480A201BA0D1C62C2C6FA6598EEDF7BB35D85349 ** get_address_of_s_asyncLocalCurrentCulture_4() { return &___s_asyncLocalCurrentCulture_4; }
inline void set_s_asyncLocalCurrentCulture_4(AsyncLocal_1_t480A201BA0D1C62C2C6FA6598EEDF7BB35D85349 * value)
{
___s_asyncLocalCurrentCulture_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_asyncLocalCurrentCulture_4), (void*)value);
}
inline static int32_t get_offset_of_s_asyncLocalCurrentUICulture_5() { return static_cast<int32_t>(offsetof(Thread_tB9EB71664220EE16451AF3276D78DE6614D2A414_StaticFields, ___s_asyncLocalCurrentUICulture_5)); }
inline AsyncLocal_1_t480A201BA0D1C62C2C6FA6598EEDF7BB35D85349 * get_s_asyncLocalCurrentUICulture_5() const { return ___s_asyncLocalCurrentUICulture_5; }
inline AsyncLocal_1_t480A201BA0D1C62C2C6FA6598EEDF7BB35D85349 ** get_address_of_s_asyncLocalCurrentUICulture_5() { return &___s_asyncLocalCurrentUICulture_5; }
inline void set_s_asyncLocalCurrentUICulture_5(AsyncLocal_1_t480A201BA0D1C62C2C6FA6598EEDF7BB35D85349 * value)
{
___s_asyncLocalCurrentUICulture_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_asyncLocalCurrentUICulture_5), (void*)value);
}
};
struct Thread_tB9EB71664220EE16451AF3276D78DE6614D2A414_ThreadStaticFields
{
public:
// System.LocalDataStoreHolder System.Threading.Thread::s_LocalDataStore
LocalDataStoreHolder_tF51C9DD735A89132114AE47E3EB51C11D0FED146 * ___s_LocalDataStore_1;
// System.Globalization.CultureInfo System.Threading.Thread::m_CurrentCulture
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * ___m_CurrentCulture_2;
// System.Globalization.CultureInfo System.Threading.Thread::m_CurrentUICulture
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * ___m_CurrentUICulture_3;
// System.Threading.Thread System.Threading.Thread::current_thread
Thread_tB9EB71664220EE16451AF3276D78DE6614D2A414 * ___current_thread_11;
public:
inline static int32_t get_offset_of_s_LocalDataStore_1() { return static_cast<int32_t>(offsetof(Thread_tB9EB71664220EE16451AF3276D78DE6614D2A414_ThreadStaticFields, ___s_LocalDataStore_1)); }
inline LocalDataStoreHolder_tF51C9DD735A89132114AE47E3EB51C11D0FED146 * get_s_LocalDataStore_1() const { return ___s_LocalDataStore_1; }
inline LocalDataStoreHolder_tF51C9DD735A89132114AE47E3EB51C11D0FED146 ** get_address_of_s_LocalDataStore_1() { return &___s_LocalDataStore_1; }
inline void set_s_LocalDataStore_1(LocalDataStoreHolder_tF51C9DD735A89132114AE47E3EB51C11D0FED146 * value)
{
___s_LocalDataStore_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_LocalDataStore_1), (void*)value);
}
inline static int32_t get_offset_of_m_CurrentCulture_2() { return static_cast<int32_t>(offsetof(Thread_tB9EB71664220EE16451AF3276D78DE6614D2A414_ThreadStaticFields, ___m_CurrentCulture_2)); }
inline CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * get_m_CurrentCulture_2() const { return ___m_CurrentCulture_2; }
inline CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 ** get_address_of_m_CurrentCulture_2() { return &___m_CurrentCulture_2; }
inline void set_m_CurrentCulture_2(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * value)
{
___m_CurrentCulture_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_CurrentCulture_2), (void*)value);
}
inline static int32_t get_offset_of_m_CurrentUICulture_3() { return static_cast<int32_t>(offsetof(Thread_tB9EB71664220EE16451AF3276D78DE6614D2A414_ThreadStaticFields, ___m_CurrentUICulture_3)); }
inline CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * get_m_CurrentUICulture_3() const { return ___m_CurrentUICulture_3; }
inline CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 ** get_address_of_m_CurrentUICulture_3() { return &___m_CurrentUICulture_3; }
inline void set_m_CurrentUICulture_3(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * value)
{
___m_CurrentUICulture_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_CurrentUICulture_3), (void*)value);
}
inline static int32_t get_offset_of_current_thread_11() { return static_cast<int32_t>(offsetof(Thread_tB9EB71664220EE16451AF3276D78DE6614D2A414_ThreadStaticFields, ___current_thread_11)); }
inline Thread_tB9EB71664220EE16451AF3276D78DE6614D2A414 * get_current_thread_11() const { return ___current_thread_11; }
inline Thread_tB9EB71664220EE16451AF3276D78DE6614D2A414 ** get_address_of_current_thread_11() { return &___current_thread_11; }
inline void set_current_thread_11(Thread_tB9EB71664220EE16451AF3276D78DE6614D2A414 * value)
{
___current_thread_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___current_thread_11), (void*)value);
}
};
// System.Threading.Timer
struct Timer_t31BE4EDDA5C1CB5CFDF698231850B47B7F9DE9CB : public MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8
{
public:
// System.Threading.TimerCallback System.Threading.Timer::callback
TimerCallback_tD193CC50BF27E129E6857E1E8A7EAC24BD131814 * ___callback_2;
// System.Object System.Threading.Timer::state
RuntimeObject * ___state_3;
// System.Int64 System.Threading.Timer::due_time_ms
int64_t ___due_time_ms_4;
// System.Int64 System.Threading.Timer::period_ms
int64_t ___period_ms_5;
// System.Int64 System.Threading.Timer::next_run
int64_t ___next_run_6;
// System.Boolean System.Threading.Timer::disposed
bool ___disposed_7;
public:
inline static int32_t get_offset_of_callback_2() { return static_cast<int32_t>(offsetof(Timer_t31BE4EDDA5C1CB5CFDF698231850B47B7F9DE9CB, ___callback_2)); }
inline TimerCallback_tD193CC50BF27E129E6857E1E8A7EAC24BD131814 * get_callback_2() const { return ___callback_2; }
inline TimerCallback_tD193CC50BF27E129E6857E1E8A7EAC24BD131814 ** get_address_of_callback_2() { return &___callback_2; }
inline void set_callback_2(TimerCallback_tD193CC50BF27E129E6857E1E8A7EAC24BD131814 * value)
{
___callback_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___callback_2), (void*)value);
}
inline static int32_t get_offset_of_state_3() { return static_cast<int32_t>(offsetof(Timer_t31BE4EDDA5C1CB5CFDF698231850B47B7F9DE9CB, ___state_3)); }
inline RuntimeObject * get_state_3() const { return ___state_3; }
inline RuntimeObject ** get_address_of_state_3() { return &___state_3; }
inline void set_state_3(RuntimeObject * value)
{
___state_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___state_3), (void*)value);
}
inline static int32_t get_offset_of_due_time_ms_4() { return static_cast<int32_t>(offsetof(Timer_t31BE4EDDA5C1CB5CFDF698231850B47B7F9DE9CB, ___due_time_ms_4)); }
inline int64_t get_due_time_ms_4() const { return ___due_time_ms_4; }
inline int64_t* get_address_of_due_time_ms_4() { return &___due_time_ms_4; }
inline void set_due_time_ms_4(int64_t value)
{
___due_time_ms_4 = value;
}
inline static int32_t get_offset_of_period_ms_5() { return static_cast<int32_t>(offsetof(Timer_t31BE4EDDA5C1CB5CFDF698231850B47B7F9DE9CB, ___period_ms_5)); }
inline int64_t get_period_ms_5() const { return ___period_ms_5; }
inline int64_t* get_address_of_period_ms_5() { return &___period_ms_5; }
inline void set_period_ms_5(int64_t value)
{
___period_ms_5 = value;
}
inline static int32_t get_offset_of_next_run_6() { return static_cast<int32_t>(offsetof(Timer_t31BE4EDDA5C1CB5CFDF698231850B47B7F9DE9CB, ___next_run_6)); }
inline int64_t get_next_run_6() const { return ___next_run_6; }
inline int64_t* get_address_of_next_run_6() { return &___next_run_6; }
inline void set_next_run_6(int64_t value)
{
___next_run_6 = value;
}
inline static int32_t get_offset_of_disposed_7() { return static_cast<int32_t>(offsetof(Timer_t31BE4EDDA5C1CB5CFDF698231850B47B7F9DE9CB, ___disposed_7)); }
inline bool get_disposed_7() const { return ___disposed_7; }
inline bool* get_address_of_disposed_7() { return &___disposed_7; }
inline void set_disposed_7(bool value)
{
___disposed_7 = value;
}
};
struct Timer_t31BE4EDDA5C1CB5CFDF698231850B47B7F9DE9CB_StaticFields
{
public:
// System.Threading.Timer_Scheduler System.Threading.Timer::scheduler
Scheduler_tA54A9F57127EDB44B4AE39C04A488F33193349D8 * ___scheduler_1;
public:
inline static int32_t get_offset_of_scheduler_1() { return static_cast<int32_t>(offsetof(Timer_t31BE4EDDA5C1CB5CFDF698231850B47B7F9DE9CB_StaticFields, ___scheduler_1)); }
inline Scheduler_tA54A9F57127EDB44B4AE39C04A488F33193349D8 * get_scheduler_1() const { return ___scheduler_1; }
inline Scheduler_tA54A9F57127EDB44B4AE39C04A488F33193349D8 ** get_address_of_scheduler_1() { return &___scheduler_1; }
inline void set_scheduler_1(Scheduler_tA54A9F57127EDB44B4AE39C04A488F33193349D8 * value)
{
___scheduler_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___scheduler_1), (void*)value);
}
};
// System.UInt16
struct UInt16_t894EA9D4FB7C799B244E7BBF2DF0EEEDBC77A8BD
{
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_t894EA9D4FB7C799B244E7BBF2DF0EEEDBC77A8BD, ___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_tE60352A06233E4E69DD198BCC67142159F686B15
{
public:
// System.UInt32 System.UInt32::m_value
uint32_t ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(UInt32_tE60352A06233E4E69DD198BCC67142159F686B15, ___m_value_0)); }
inline uint32_t get_m_value_0() const { return ___m_value_0; }
inline uint32_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(uint32_t value)
{
___m_value_0 = value;
}
};
// System.UInt64
struct UInt64_tEC57511B3E3CA2DBA1BEBD434C6983E31C943281
{
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_tEC57511B3E3CA2DBA1BEBD434C6983E31C943281, ___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_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5
{
public:
union
{
struct
{
};
uint8_t Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5__padding[1];
};
public:
};
// <PrivateImplementationDetails>
struct U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8 : public RuntimeObject
{
public:
public:
};
struct U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8_StaticFields
{
public:
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::0588059ACBD52F7EA2835882F977A9CF72EB9775
__StaticArrayInitTypeSizeU3D72_tFE5593C37377A26A806059B8620472A6E51E5AD2 ___0588059ACBD52F7EA2835882F977A9CF72EB9775_0;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D84 <PrivateImplementationDetails>::0A1ADB22C1D3E1F4B2448EE3F27DF9DE63329C4C
__StaticArrayInitTypeSizeU3D84_t2EF20E9BBEB47B540AFCA64F09777DFD5E348454 ___0A1ADB22C1D3E1F4B2448EE3F27DF9DE63329C4C_1;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D240 <PrivateImplementationDetails>::121EC59E23F7559B28D338D562528F6299C2DE22
__StaticArrayInitTypeSizeU3D240_t15F96E63E1A6759D1754EA684441DA49B3724B5F ___121EC59E23F7559B28D338D562528F6299C2DE22_2;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D24 <PrivateImplementationDetails>::1730F09044E91DB8371B849EFF5E6D17BDE4AED0
__StaticArrayInitTypeSizeU3D24_t54A5E8E52DF075628A83AE11B6178839F1F8FBDC ___1730F09044E91DB8371B849EFF5E6D17BDE4AED0_3;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D16 <PrivateImplementationDetails>::1FE6CE411858B3D864679DE2139FB081F08BFACD
__StaticArrayInitTypeSizeU3D16_t9CE40E2FB4B486181F720F48DD733A3EAFFD6F26 ___1FE6CE411858B3D864679DE2139FB081F08BFACD_4;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::25420D0055076FA8D3E4DD96BC53AE24DE6E619F
__StaticArrayInitTypeSizeU3D40_t31DA647550534A2982671AD8E1F791854ABE4525 ___25420D0055076FA8D3E4DD96BC53AE24DE6E619F_5;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D1208 <PrivateImplementationDetails>::25CF935D2AE9EDF05DD75BCD47FF84D9255D6F6E
__StaticArrayInitTypeSizeU3D1208_t7747605A5C3CD826A11C4196CCE9CF1996C344DF ___25CF935D2AE9EDF05DD75BCD47FF84D9255D6F6E_6;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D42 <PrivateImplementationDetails>::29C1A61550F0E3260E1953D4FAD71C256218EF40
__StaticArrayInitTypeSizeU3D42_t9FC2D1D81E2853CF5D36635AB6A30DDDB9ABFECA ___29C1A61550F0E3260E1953D4FAD71C256218EF40_7;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D12 <PrivateImplementationDetails>::2B33BEC8C30DFDC49DAFE20D3BDE19487850D717
__StaticArrayInitTypeSizeU3D12_t5FA9A9D9E4F196768B874B61DC1C6549CB34A584 ___2B33BEC8C30DFDC49DAFE20D3BDE19487850D717_8;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D36 <PrivateImplementationDetails>::2BA840FF6020B8FF623DBCB7188248CF853FAF4F
__StaticArrayInitTypeSizeU3D36_t46D2C2EA131D6126B945EA1E0993E0EE8AACC3CA ___2BA840FF6020B8FF623DBCB7188248CF853FAF4F_9;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::2C840AFA48C27B9C05593E468C1232CA1CC74AFD
__StaticArrayInitTypeSizeU3D72_tFE5593C37377A26A806059B8620472A6E51E5AD2 ___2C840AFA48C27B9C05593E468C1232CA1CC74AFD_10;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D16 <PrivateImplementationDetails>::2D1DA5BB407F0C11C3B5116196C0C6374D932B20
__StaticArrayInitTypeSizeU3D16_t9CE40E2FB4B486181F720F48DD733A3EAFFD6F26 ___2D1DA5BB407F0C11C3B5116196C0C6374D932B20_11;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::2F71D2DA12F3CD0A6A112F5A5A75B4FDC6FE8547
__StaticArrayInitTypeSizeU3D72_tFE5593C37377A26A806059B8620472A6E51E5AD2 ___2F71D2DA12F3CD0A6A112F5A5A75B4FDC6FE8547_12;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::34476C29F6F81C989CFCA42F7C06E84C66236834
__StaticArrayInitTypeSizeU3D72_tFE5593C37377A26A806059B8620472A6E51E5AD2 ___34476C29F6F81C989CFCA42F7C06E84C66236834_13;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D2382 <PrivateImplementationDetails>::35EED060772F2748D13B745DAEC8CD7BD3B87604
__StaticArrayInitTypeSizeU3D2382_t7764CC6AFDCA682AEBA6E78440AD21978F0AB7B1 ___35EED060772F2748D13B745DAEC8CD7BD3B87604_14;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D38 <PrivateImplementationDetails>::375F9AE9769A3D1DA789E9ACFE81F3A1BB14F0D3
__StaticArrayInitTypeSizeU3D38_tCB70BC8DEB0D12487BC902760AFB250798B64F83 ___375F9AE9769A3D1DA789E9ACFE81F3A1BB14F0D3_15;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D1450 <PrivateImplementationDetails>::379C06C9E702D31469C29033F0DD63931EB349F5
__StaticArrayInitTypeSizeU3D1450_tAC1EF3610F74C31313DF1ADF3AC9D9A2A9EC2912 ___379C06C9E702D31469C29033F0DD63931EB349F5_16;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D10 <PrivateImplementationDetails>::399BD13E240F33F808CA7940293D6EC4E6FD5A00
__StaticArrayInitTypeSizeU3D10_t71B5750224A80E3CACEFBC499879A04CCE6A5CD3 ___399BD13E240F33F808CA7940293D6EC4E6FD5A00_17;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::39C9CE73C7B0619D409EF28344F687C1B5C130FE
__StaticArrayInitTypeSizeU3D72_tFE5593C37377A26A806059B8620472A6E51E5AD2 ___39C9CE73C7B0619D409EF28344F687C1B5C130FE_18;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D320 <PrivateImplementationDetails>::3C53AFB51FEC23491684C7BEDBC6D4E0F409F851
__StaticArrayInitTypeSizeU3D320_tBE0C4C66577D53F18D8BA69E43FDC69DFA003F8F ___3C53AFB51FEC23491684C7BEDBC6D4E0F409F851_19;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D12 <PrivateImplementationDetails>::3E823444D2DFECF0F90B436B88F02A533CB376F1
__StaticArrayInitTypeSizeU3D12_t5FA9A9D9E4F196768B874B61DC1C6549CB34A584 ___3E823444D2DFECF0F90B436B88F02A533CB376F1_20;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::3FE6C283BCF384FD2C8789880DFF59664E2AB4A1
__StaticArrayInitTypeSizeU3D72_tFE5593C37377A26A806059B8620472A6E51E5AD2 ___3FE6C283BCF384FD2C8789880DFF59664E2AB4A1_21;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D1665 <PrivateImplementationDetails>::40981BAA39513E58B28DCF0103CC04DE2A0A0444
__StaticArrayInitTypeSizeU3D1665_tF300201390474873919B6C58C810DFAC718FE0F4 ___40981BAA39513E58B28DCF0103CC04DE2A0A0444_22;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::40E7C49413D261F3F38AD3A870C0AC69C8BDA048
__StaticArrayInitTypeSizeU3D40_t31DA647550534A2982671AD8E1F791854ABE4525 ___40E7C49413D261F3F38AD3A870C0AC69C8BDA048_23;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::421EC7E82F2967DF6CA8C3605514DC6F29EE5845
__StaticArrayInitTypeSizeU3D72_tFE5593C37377A26A806059B8620472A6E51E5AD2 ___421EC7E82F2967DF6CA8C3605514DC6F29EE5845_24;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::4858DB4AA76D3933F1CA9E6712D4FDB16903F628
__StaticArrayInitTypeSizeU3D72_tFE5593C37377A26A806059B8620472A6E51E5AD2 ___4858DB4AA76D3933F1CA9E6712D4FDB16903F628_25;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::4F7A8890F332B22B8DE0BD29D36FA7364748D76A
__StaticArrayInitTypeSizeU3D40_t31DA647550534A2982671AD8E1F791854ABE4525 ___4F7A8890F332B22B8DE0BD29D36FA7364748D76A_26;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::536422B321459B242ADED7240B7447E904E083E3
__StaticArrayInitTypeSizeU3D72_tFE5593C37377A26A806059B8620472A6E51E5AD2 ___536422B321459B242ADED7240B7447E904E083E3_27;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D1080 <PrivateImplementationDetails>::5382CEF491F422BFE0D6FC46EFAFF9EF9D4C89F3
__StaticArrayInitTypeSizeU3D1080_tDD425A5824CFEEBEB897380BE535A4D579DD8DEB ___5382CEF491F422BFE0D6FC46EFAFF9EF9D4C89F3_28;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D3 <PrivateImplementationDetails>::57218C316B6921E2CD61027A2387EDC31A2D9471
__StaticArrayInitTypeSizeU3D3_t87EA921BA4E5FA6B89C780901818C549D9F073A4 ___57218C316B6921E2CD61027A2387EDC31A2D9471_29;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::57F320D62696EC99727E0FE2045A05F1289CC0C6
__StaticArrayInitTypeSizeU3D40_t31DA647550534A2982671AD8E1F791854ABE4525 ___57F320D62696EC99727E0FE2045A05F1289CC0C6_30;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D212 <PrivateImplementationDetails>::594A33A00BC4F785DFD43E3C6C44FBA1242CCAF3
__StaticArrayInitTypeSizeU3D212_tA27E3A600D9E677116CCFCF5CB90C2DEF1951E43 ___594A33A00BC4F785DFD43E3C6C44FBA1242CCAF3_31;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D36 <PrivateImplementationDetails>::5BBDF8058D4235C33F2E8DCF76004031B6187A2F
__StaticArrayInitTypeSizeU3D36_t46D2C2EA131D6126B945EA1E0993E0EE8AACC3CA ___5BBDF8058D4235C33F2E8DCF76004031B6187A2F_32;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D288 <PrivateImplementationDetails>::5BCD21C341BE6DDF8FFFAE1A23ABA24DCBB612BF
__StaticArrayInitTypeSizeU3D288_t901CBC2EE96C2C63E8B3C6D507136F8A55FF5566 ___5BCD21C341BE6DDF8FFFAE1A23ABA24DCBB612BF_33;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::5BFE2819B4778217C56416C7585FF0E56EBACD89
__StaticArrayInitTypeSizeU3D72_tFE5593C37377A26A806059B8620472A6E51E5AD2 ___5BFE2819B4778217C56416C7585FF0E56EBACD89_34;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D128 <PrivateImplementationDetails>::609C0E8D8DA86A09D6013D301C86BA8782C16B8C
__StaticArrayInitTypeSizeU3D128_t0E65F82715F120C2585C93F35BFA548913720A71 ___609C0E8D8DA86A09D6013D301C86BA8782C16B8C_35;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::65E32B4E150FD8D24B93B0D42A17F1DAD146162B
__StaticArrayInitTypeSizeU3D40_t31DA647550534A2982671AD8E1F791854ABE4525 ___65E32B4E150FD8D24B93B0D42A17F1DAD146162B_36;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D52 <PrivateImplementationDetails>::6770974FEF1E98B9C1864370E2B5B786EB0EA39E
__StaticArrayInitTypeSizeU3D52_t68C389D6C6894AE8F01E7C88DDD8CBDE317B23CD ___6770974FEF1E98B9C1864370E2B5B786EB0EA39E_37;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::67EEAD805D708D9AA4E14BF747E44CED801744F3
__StaticArrayInitTypeSizeU3D72_tFE5593C37377A26A806059B8620472A6E51E5AD2 ___67EEAD805D708D9AA4E14BF747E44CED801744F3_38;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D120 <PrivateImplementationDetails>::6C71197D228427B2864C69B357FEF73D8C9D59DF
__StaticArrayInitTypeSizeU3D120_t13A2E28354D3A542E1A2AD289B7970CE8BF64CE1 ___6C71197D228427B2864C69B357FEF73D8C9D59DF_39;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D16 <PrivateImplementationDetails>::6CEE45445AFD150B047A5866FFA76AA651CDB7B7
__StaticArrayInitTypeSizeU3D16_t9CE40E2FB4B486181F720F48DD733A3EAFFD6F26 ___6CEE45445AFD150B047A5866FFA76AA651CDB7B7_40;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D76 <PrivateImplementationDetails>::6FC754859E4EC74E447048364B216D825C6F8FE7
__StaticArrayInitTypeSizeU3D76_tFC0C1E62400632DF6EBD5465D74B1851DAC47C60 ___6FC754859E4EC74E447048364B216D825C6F8FE7_41;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::704939CD172085D1295FCE3F1D92431D685D7AA2
__StaticArrayInitTypeSizeU3D40_t31DA647550534A2982671AD8E1F791854ABE4525 ___704939CD172085D1295FCE3F1D92431D685D7AA2_42;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D24 <PrivateImplementationDetails>::7088AAE49F0627B72729078DE6E3182DDCF8ED99
__StaticArrayInitTypeSizeU3D24_t54A5E8E52DF075628A83AE11B6178839F1F8FBDC ___7088AAE49F0627B72729078DE6E3182DDCF8ED99_43;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::7341C933A70EAE383CC50C4B945ADB8E08F06737
__StaticArrayInitTypeSizeU3D72_tFE5593C37377A26A806059B8620472A6E51E5AD2 ___7341C933A70EAE383CC50C4B945ADB8E08F06737_44;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::7FE820C9CF0F0B90445A71F1D262D22E4F0C4C68
__StaticArrayInitTypeSizeU3D40_t31DA647550534A2982671AD8E1F791854ABE4525 ___7FE820C9CF0F0B90445A71F1D262D22E4F0C4C68_45;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D21252 <PrivateImplementationDetails>::811A927B7DADD378BE60BBDE794B9277AA9B50EC
__StaticArrayInitTypeSizeU3D21252_t7F9940F69151C8490439C5AC4C3E8F115E6EFDD0 ___811A927B7DADD378BE60BBDE794B9277AA9B50EC_46;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D36 <PrivateImplementationDetails>::81917F1E21F3C22B9F916994547A614FB03E968E
__StaticArrayInitTypeSizeU3D36_t46D2C2EA131D6126B945EA1E0993E0EE8AACC3CA ___81917F1E21F3C22B9F916994547A614FB03E968E_47;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::823566DA642D6EA356E15585921F2A4CA23D6760
__StaticArrayInitTypeSizeU3D40_t31DA647550534A2982671AD8E1F791854ABE4525 ___823566DA642D6EA356E15585921F2A4CA23D6760_48;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D12 <PrivateImplementationDetails>::82C2A59850B2E85BCE1A45A479537A384DF6098D
__StaticArrayInitTypeSizeU3D12_t5FA9A9D9E4F196768B874B61DC1C6549CB34A584 ___82C2A59850B2E85BCE1A45A479537A384DF6098D_49;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D44 <PrivateImplementationDetails>::82C383F8E6E4D3D87AEBB986A5D0077E8AD157C4
__StaticArrayInitTypeSizeU3D44_t2C34FCD1B7CA98AF1BE52ED77A663AFA9401C5D5 ___82C383F8E6E4D3D87AEBB986A5D0077E8AD157C4_50;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::871B9CF85DB352BAADF12BAE8F19857683E385AC
__StaticArrayInitTypeSizeU3D40_t31DA647550534A2982671AD8E1F791854ABE4525 ___871B9CF85DB352BAADF12BAE8F19857683E385AC_51;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D16 <PrivateImplementationDetails>::89A040451C8CC5C8FB268BE44BDD74964C104155
__StaticArrayInitTypeSizeU3D16_t9CE40E2FB4B486181F720F48DD733A3EAFFD6F26 ___89A040451C8CC5C8FB268BE44BDD74964C104155_52;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::8CAA092E783257106251246FF5C97F88D28517A6
__StaticArrayInitTypeSizeU3D40_t31DA647550534A2982671AD8E1F791854ABE4525 ___8CAA092E783257106251246FF5C97F88D28517A6_53;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D2100 <PrivateImplementationDetails>::8D231DD55FE1AD7631BBD0905A17D5EB616C2154
__StaticArrayInitTypeSizeU3D2100_t77017A2656678C6EE4571B84C9F635820AB583B0 ___8D231DD55FE1AD7631BBD0905A17D5EB616C2154_54;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::8E10AC2F34545DFBBF3FCBC06055D797A8C99991
__StaticArrayInitTypeSizeU3D40_t31DA647550534A2982671AD8E1F791854ABE4525 ___8E10AC2F34545DFBBF3FCBC06055D797A8C99991_55;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D12 <PrivateImplementationDetails>::93A63E90605400F34B49F0EB3361D23C89164BDA
__StaticArrayInitTypeSizeU3D12_t5FA9A9D9E4F196768B874B61DC1C6549CB34A584 ___93A63E90605400F34B49F0EB3361D23C89164BDA_56;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::94841DD2F330CCB1089BF413E4FA9B04505152E2
__StaticArrayInitTypeSizeU3D72_tFE5593C37377A26A806059B8620472A6E51E5AD2 ___94841DD2F330CCB1089BF413E4FA9B04505152E2_57;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D12 <PrivateImplementationDetails>::95264589E48F94B7857CFF398FB72A537E13EEE2
__StaticArrayInitTypeSizeU3D12_t5FA9A9D9E4F196768B874B61DC1C6549CB34A584 ___95264589E48F94B7857CFF398FB72A537E13EEE2_58;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::95C48758CAE1715783472FB073AB158AB8A0AB2A
__StaticArrayInitTypeSizeU3D72_tFE5593C37377A26A806059B8620472A6E51E5AD2 ___95C48758CAE1715783472FB073AB158AB8A0AB2A_59;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::973417296623D8DC6961B09664E54039E44CA5D8
__StaticArrayInitTypeSizeU3D72_tFE5593C37377A26A806059B8620472A6E51E5AD2 ___973417296623D8DC6961B09664E54039E44CA5D8_60;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::A0074C15377C0C870B055927403EA9FA7A349D12
__StaticArrayInitTypeSizeU3D40_t31DA647550534A2982671AD8E1F791854ABE4525 ___A0074C15377C0C870B055927403EA9FA7A349D12_61;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D130 <PrivateImplementationDetails>::A1319B706116AB2C6D44483F60A7D0ACEA543396
__StaticArrayInitTypeSizeU3D130_tF56FBBACF53AE9A551B962978B48A914536B6871 ___A1319B706116AB2C6D44483F60A7D0ACEA543396_62;
// System.Int64 <PrivateImplementationDetails>::A13AA52274D951A18029131A8DDECF76B569A15D
int64_t ___A13AA52274D951A18029131A8DDECF76B569A15D_63;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D212 <PrivateImplementationDetails>::A5444763673307F6828C748D4B9708CFC02B0959
__StaticArrayInitTypeSizeU3D212_tA27E3A600D9E677116CCFCF5CB90C2DEF1951E43 ___A5444763673307F6828C748D4B9708CFC02B0959_64;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::A6732F8E7FC23766AB329B492D6BF82E3B33233F
__StaticArrayInitTypeSizeU3D72_tFE5593C37377A26A806059B8620472A6E51E5AD2 ___A6732F8E7FC23766AB329B492D6BF82E3B33233F_65;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D174 <PrivateImplementationDetails>::A705A106D95282BD15E13EEA6B0AF583FF786D83
__StaticArrayInitTypeSizeU3D174_t5A6FEDE2414380A28FDFFA92ACA4EADB3693E337 ___A705A106D95282BD15E13EEA6B0AF583FF786D83_66;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D1018 <PrivateImplementationDetails>::A8A491E4CED49AE0027560476C10D933CE70C8DF
__StaticArrayInitTypeSizeU3D1018_tC210B7B033B7D52771288C82C8E6DA21074FF7F3 ___A8A491E4CED49AE0027560476C10D933CE70C8DF_67;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::AC791C4F39504D1184B73478943D0636258DA7B1
__StaticArrayInitTypeSizeU3D72_tFE5593C37377A26A806059B8620472A6E51E5AD2 ___AC791C4F39504D1184B73478943D0636258DA7B1_68;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D52 <PrivateImplementationDetails>::AFCD4E1211233E99373A3367B23105A3D624B1F2
__StaticArrayInitTypeSizeU3D52_t68C389D6C6894AE8F01E7C88DDD8CBDE317B23CD ___AFCD4E1211233E99373A3367B23105A3D624B1F2_69;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::B472ED77CB3B2A66D49D179F1EE2081B70A6AB61
__StaticArrayInitTypeSizeU3D40_t31DA647550534A2982671AD8E1F791854ABE4525 ___B472ED77CB3B2A66D49D179F1EE2081B70A6AB61_70;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D256 <PrivateImplementationDetails>::B53A2C6DF21FC88B17AEFC40EB895B8D63210CDF
__StaticArrayInitTypeSizeU3D256_t11D9B162886459BA6BCD63DB255358502735B7A3 ___B53A2C6DF21FC88B17AEFC40EB895B8D63210CDF_71;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D998 <PrivateImplementationDetails>::B881DA88BE0B68D8A6B6B6893822586B8B2CFC45
__StaticArrayInitTypeSizeU3D998_t4B160A0C233D0CAB065432B008AFE2E02CF05C4D ___B881DA88BE0B68D8A6B6B6893822586B8B2CFC45_72;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D162 <PrivateImplementationDetails>::B8864ACB9DD69E3D42151513C840AAE270BF21C8
__StaticArrayInitTypeSizeU3D162_t11E10480FC4E2E4875323D07CD37B68D7040BD28 ___B8864ACB9DD69E3D42151513C840AAE270BF21C8_73;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D360 <PrivateImplementationDetails>::B8F87834C3597B2EEF22BA6D3A392CC925636401
__StaticArrayInitTypeSizeU3D360_t0E9DE21DD2818B844977C0B5AEFD0AF5FA812D79 ___B8F87834C3597B2EEF22BA6D3A392CC925636401_74;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::B9B670F134A59FB1107AF01A9FE8F8E3980B3093
__StaticArrayInitTypeSizeU3D72_tFE5593C37377A26A806059B8620472A6E51E5AD2 ___B9B670F134A59FB1107AF01A9FE8F8E3980B3093_75;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::BEBC9ECC660A13EFC359BA3383411F698CFF25DB
__StaticArrayInitTypeSizeU3D72_tFE5593C37377A26A806059B8620472A6E51E5AD2 ___BEBC9ECC660A13EFC359BA3383411F698CFF25DB_76;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::BEE1CFE5DFAA408E14CE4AF4DCD824FA2E42DCB7
__StaticArrayInitTypeSizeU3D40_t31DA647550534A2982671AD8E1F791854ABE4525 ___BEE1CFE5DFAA408E14CE4AF4DCD824FA2E42DCB7_77;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D6 <PrivateImplementationDetails>::BF5EB60806ECB74EE484105DD9D6F463BF994867
__StaticArrayInitTypeSizeU3D6_tDBD6E107ED6E71EDDDBFD5023C1C5C3EE71A6A23 ___BF5EB60806ECB74EE484105DD9D6F463BF994867_78;
// System.Int64 <PrivateImplementationDetails>::C1A1100642BA9685B30A84D97348484E14AA1865
int64_t ___C1A1100642BA9685B30A84D97348484E14AA1865_79;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D16 <PrivateImplementationDetails>::C6F364A0AD934EFED8909446C215752E565D77C1
__StaticArrayInitTypeSizeU3D16_t9CE40E2FB4B486181F720F48DD733A3EAFFD6F26 ___C6F364A0AD934EFED8909446C215752E565D77C1_80;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D174 <PrivateImplementationDetails>::CE5835130F5277F63D716FC9115526B0AC68FFAD
__StaticArrayInitTypeSizeU3D174_t5A6FEDE2414380A28FDFFA92ACA4EADB3693E337 ___CE5835130F5277F63D716FC9115526B0AC68FFAD_81;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D6 <PrivateImplementationDetails>::CE93C35B755802BC4B3D180716B048FC61701EF7
__StaticArrayInitTypeSizeU3D6_tDBD6E107ED6E71EDDDBFD5023C1C5C3EE71A6A23 ___CE93C35B755802BC4B3D180716B048FC61701EF7_82;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D32 <PrivateImplementationDetails>::D117188BE8D4609C0D531C51B0BB911A4219DEBE
__StaticArrayInitTypeSizeU3D32_t99C29E8FAFAAE5B1E3F1CB981F557B0AA62EA81B ___D117188BE8D4609C0D531C51B0BB911A4219DEBE_83;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D44 <PrivateImplementationDetails>::D78D08081C7A5AD6FBA7A8DC86BCD6D7A577C636
__StaticArrayInitTypeSizeU3D44_t2C34FCD1B7CA98AF1BE52ED77A663AFA9401C5D5 ___D78D08081C7A5AD6FBA7A8DC86BCD6D7A577C636_84;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D76 <PrivateImplementationDetails>::DA19DB47B583EFCF7825D2E39D661D2354F28219
__StaticArrayInitTypeSizeU3D76_tFC0C1E62400632DF6EBD5465D74B1851DAC47C60 ___DA19DB47B583EFCF7825D2E39D661D2354F28219_85;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D52 <PrivateImplementationDetails>::DD3AEFEADB1CD615F3017763F1568179FEE640B0
__StaticArrayInitTypeSizeU3D52_t68C389D6C6894AE8F01E7C88DDD8CBDE317B23CD ___DD3AEFEADB1CD615F3017763F1568179FEE640B0_86;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D36 <PrivateImplementationDetails>::E1827270A5FE1C85F5352A66FD87BA747213D006
__StaticArrayInitTypeSizeU3D36_t46D2C2EA131D6126B945EA1E0993E0EE8AACC3CA ___E1827270A5FE1C85F5352A66FD87BA747213D006_87;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::E45BAB43F7D5D038672B3E3431F92E34A7AF2571
__StaticArrayInitTypeSizeU3D40_t31DA647550534A2982671AD8E1F791854ABE4525 ___E45BAB43F7D5D038672B3E3431F92E34A7AF2571_88;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D52 <PrivateImplementationDetails>::E92B39D8233061927D9ACDE54665E68E7535635A
__StaticArrayInitTypeSizeU3D52_t68C389D6C6894AE8F01E7C88DDD8CBDE317B23CD ___E92B39D8233061927D9ACDE54665E68E7535635A_89;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D12 <PrivateImplementationDetails>::EA9506959484C55CFE0C139C624DF6060E285866
__StaticArrayInitTypeSizeU3D12_t5FA9A9D9E4F196768B874B61DC1C6549CB34A584 ___EA9506959484C55CFE0C139C624DF6060E285866_90;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D262 <PrivateImplementationDetails>::EB5E9A80A40096AB74D2E226650C7258D7BC5E9D
__StaticArrayInitTypeSizeU3D262_tF74EA0E2AEDDD20898E5779445ABF7802D23911A ___EB5E9A80A40096AB74D2E226650C7258D7BC5E9D_91;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D64 <PrivateImplementationDetails>::EBF68F411848D603D059DFDEA2321C5A5EA78044
__StaticArrayInitTypeSizeU3D64_t7C93E4AFB43BF13F84D563CFD17E5011B9721668 ___EBF68F411848D603D059DFDEA2321C5A5EA78044_92;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::EC89C317EA2BF49A70EFF5E89C691E34733D7C37
__StaticArrayInitTypeSizeU3D72_tFE5593C37377A26A806059B8620472A6E51E5AD2 ___EC89C317EA2BF49A70EFF5E89C691E34733D7C37_93;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::F06E829E62F3AFBC045D064E10A4F5DF7C969612
__StaticArrayInitTypeSizeU3D40_t31DA647550534A2982671AD8E1F791854ABE4525 ___F06E829E62F3AFBC045D064E10A4F5DF7C969612_94;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D11614 <PrivateImplementationDetails>::F073AA332018FDA0D572E99448FFF1D6422BD520
__StaticArrayInitTypeSizeU3D11614_t7947936AE0A455E7877908DB7A291DEE37965F6F ___F073AA332018FDA0D572E99448FFF1D6422BD520_95;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D120 <PrivateImplementationDetails>::F34B0E10653402E8F788F8BC3F7CD7090928A429
__StaticArrayInitTypeSizeU3D120_t13A2E28354D3A542E1A2AD289B7970CE8BF64CE1 ___F34B0E10653402E8F788F8BC3F7CD7090928A429_96;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::F37E34BEADB04F34FCC31078A59F49856CA83D5B
__StaticArrayInitTypeSizeU3D72_tFE5593C37377A26A806059B8620472A6E51E5AD2 ___F37E34BEADB04F34FCC31078A59F49856CA83D5B_97;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D94 <PrivateImplementationDetails>::F512A9ABF88066AAEB92684F95CC05D8101B462B
__StaticArrayInitTypeSizeU3D94_t52D6560B7A2023DDDFDCF4D8F6C226742520B4C7 ___F512A9ABF88066AAEB92684F95CC05D8101B462B_98;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D12 <PrivateImplementationDetails>::F8FAABB821300AA500C2CEC6091B3782A7FB44A4
__StaticArrayInitTypeSizeU3D12_t5FA9A9D9E4F196768B874B61DC1C6549CB34A584 ___F8FAABB821300AA500C2CEC6091B3782A7FB44A4_99;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D2350 <PrivateImplementationDetails>::FCBD2781A933F0828ED4AAF88FD8B08D76DDD49B
__StaticArrayInitTypeSizeU3D2350_t029525D9BCF84611FB610B9E4D13EE898E0B055D ___FCBD2781A933F0828ED4AAF88FD8B08D76DDD49B_100;
public:
inline static int32_t get_offset_of_U30588059ACBD52F7EA2835882F977A9CF72EB9775_0() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8_StaticFields, ___0588059ACBD52F7EA2835882F977A9CF72EB9775_0)); }
inline __StaticArrayInitTypeSizeU3D72_tFE5593C37377A26A806059B8620472A6E51E5AD2 get_U30588059ACBD52F7EA2835882F977A9CF72EB9775_0() const { return ___0588059ACBD52F7EA2835882F977A9CF72EB9775_0; }
inline __StaticArrayInitTypeSizeU3D72_tFE5593C37377A26A806059B8620472A6E51E5AD2 * get_address_of_U30588059ACBD52F7EA2835882F977A9CF72EB9775_0() { return &___0588059ACBD52F7EA2835882F977A9CF72EB9775_0; }
inline void set_U30588059ACBD52F7EA2835882F977A9CF72EB9775_0(__StaticArrayInitTypeSizeU3D72_tFE5593C37377A26A806059B8620472A6E51E5AD2 value)
{
___0588059ACBD52F7EA2835882F977A9CF72EB9775_0 = value;
}
inline static int32_t get_offset_of_U30A1ADB22C1D3E1F4B2448EE3F27DF9DE63329C4C_1() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8_StaticFields, ___0A1ADB22C1D3E1F4B2448EE3F27DF9DE63329C4C_1)); }
inline __StaticArrayInitTypeSizeU3D84_t2EF20E9BBEB47B540AFCA64F09777DFD5E348454 get_U30A1ADB22C1D3E1F4B2448EE3F27DF9DE63329C4C_1() const { return ___0A1ADB22C1D3E1F4B2448EE3F27DF9DE63329C4C_1; }
inline __StaticArrayInitTypeSizeU3D84_t2EF20E9BBEB47B540AFCA64F09777DFD5E348454 * get_address_of_U30A1ADB22C1D3E1F4B2448EE3F27DF9DE63329C4C_1() { return &___0A1ADB22C1D3E1F4B2448EE3F27DF9DE63329C4C_1; }
inline void set_U30A1ADB22C1D3E1F4B2448EE3F27DF9DE63329C4C_1(__StaticArrayInitTypeSizeU3D84_t2EF20E9BBEB47B540AFCA64F09777DFD5E348454 value)
{
___0A1ADB22C1D3E1F4B2448EE3F27DF9DE63329C4C_1 = value;
}
inline static int32_t get_offset_of_U3121EC59E23F7559B28D338D562528F6299C2DE22_2() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8_StaticFields, ___121EC59E23F7559B28D338D562528F6299C2DE22_2)); }
inline __StaticArrayInitTypeSizeU3D240_t15F96E63E1A6759D1754EA684441DA49B3724B5F get_U3121EC59E23F7559B28D338D562528F6299C2DE22_2() const { return ___121EC59E23F7559B28D338D562528F6299C2DE22_2; }
inline __StaticArrayInitTypeSizeU3D240_t15F96E63E1A6759D1754EA684441DA49B3724B5F * get_address_of_U3121EC59E23F7559B28D338D562528F6299C2DE22_2() { return &___121EC59E23F7559B28D338D562528F6299C2DE22_2; }
inline void set_U3121EC59E23F7559B28D338D562528F6299C2DE22_2(__StaticArrayInitTypeSizeU3D240_t15F96E63E1A6759D1754EA684441DA49B3724B5F value)
{
___121EC59E23F7559B28D338D562528F6299C2DE22_2 = value;
}
inline static int32_t get_offset_of_U31730F09044E91DB8371B849EFF5E6D17BDE4AED0_3() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8_StaticFields, ___1730F09044E91DB8371B849EFF5E6D17BDE4AED0_3)); }
inline __StaticArrayInitTypeSizeU3D24_t54A5E8E52DF075628A83AE11B6178839F1F8FBDC get_U31730F09044E91DB8371B849EFF5E6D17BDE4AED0_3() const { return ___1730F09044E91DB8371B849EFF5E6D17BDE4AED0_3; }
inline __StaticArrayInitTypeSizeU3D24_t54A5E8E52DF075628A83AE11B6178839F1F8FBDC * get_address_of_U31730F09044E91DB8371B849EFF5E6D17BDE4AED0_3() { return &___1730F09044E91DB8371B849EFF5E6D17BDE4AED0_3; }
inline void set_U31730F09044E91DB8371B849EFF5E6D17BDE4AED0_3(__StaticArrayInitTypeSizeU3D24_t54A5E8E52DF075628A83AE11B6178839F1F8FBDC value)
{
___1730F09044E91DB8371B849EFF5E6D17BDE4AED0_3 = value;
}
inline static int32_t get_offset_of_U31FE6CE411858B3D864679DE2139FB081F08BFACD_4() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8_StaticFields, ___1FE6CE411858B3D864679DE2139FB081F08BFACD_4)); }
inline __StaticArrayInitTypeSizeU3D16_t9CE40E2FB4B486181F720F48DD733A3EAFFD6F26 get_U31FE6CE411858B3D864679DE2139FB081F08BFACD_4() const { return ___1FE6CE411858B3D864679DE2139FB081F08BFACD_4; }
inline __StaticArrayInitTypeSizeU3D16_t9CE40E2FB4B486181F720F48DD733A3EAFFD6F26 * get_address_of_U31FE6CE411858B3D864679DE2139FB081F08BFACD_4() { return &___1FE6CE411858B3D864679DE2139FB081F08BFACD_4; }
inline void set_U31FE6CE411858B3D864679DE2139FB081F08BFACD_4(__StaticArrayInitTypeSizeU3D16_t9CE40E2FB4B486181F720F48DD733A3EAFFD6F26 value)
{
___1FE6CE411858B3D864679DE2139FB081F08BFACD_4 = value;
}
inline static int32_t get_offset_of_U325420D0055076FA8D3E4DD96BC53AE24DE6E619F_5() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8_StaticFields, ___25420D0055076FA8D3E4DD96BC53AE24DE6E619F_5)); }
inline __StaticArrayInitTypeSizeU3D40_t31DA647550534A2982671AD8E1F791854ABE4525 get_U325420D0055076FA8D3E4DD96BC53AE24DE6E619F_5() const { return ___25420D0055076FA8D3E4DD96BC53AE24DE6E619F_5; }
inline __StaticArrayInitTypeSizeU3D40_t31DA647550534A2982671AD8E1F791854ABE4525 * get_address_of_U325420D0055076FA8D3E4DD96BC53AE24DE6E619F_5() { return &___25420D0055076FA8D3E4DD96BC53AE24DE6E619F_5; }
inline void set_U325420D0055076FA8D3E4DD96BC53AE24DE6E619F_5(__StaticArrayInitTypeSizeU3D40_t31DA647550534A2982671AD8E1F791854ABE4525 value)
{
___25420D0055076FA8D3E4DD96BC53AE24DE6E619F_5 = value;
}
inline static int32_t get_offset_of_U325CF935D2AE9EDF05DD75BCD47FF84D9255D6F6E_6() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8_StaticFields, ___25CF935D2AE9EDF05DD75BCD47FF84D9255D6F6E_6)); }
inline __StaticArrayInitTypeSizeU3D1208_t7747605A5C3CD826A11C4196CCE9CF1996C344DF get_U325CF935D2AE9EDF05DD75BCD47FF84D9255D6F6E_6() const { return ___25CF935D2AE9EDF05DD75BCD47FF84D9255D6F6E_6; }
inline __StaticArrayInitTypeSizeU3D1208_t7747605A5C3CD826A11C4196CCE9CF1996C344DF * get_address_of_U325CF935D2AE9EDF05DD75BCD47FF84D9255D6F6E_6() { return &___25CF935D2AE9EDF05DD75BCD47FF84D9255D6F6E_6; }
inline void set_U325CF935D2AE9EDF05DD75BCD47FF84D9255D6F6E_6(__StaticArrayInitTypeSizeU3D1208_t7747605A5C3CD826A11C4196CCE9CF1996C344DF value)
{
___25CF935D2AE9EDF05DD75BCD47FF84D9255D6F6E_6 = value;
}
inline static int32_t get_offset_of_U329C1A61550F0E3260E1953D4FAD71C256218EF40_7() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8_StaticFields, ___29C1A61550F0E3260E1953D4FAD71C256218EF40_7)); }
inline __StaticArrayInitTypeSizeU3D42_t9FC2D1D81E2853CF5D36635AB6A30DDDB9ABFECA get_U329C1A61550F0E3260E1953D4FAD71C256218EF40_7() const { return ___29C1A61550F0E3260E1953D4FAD71C256218EF40_7; }
inline __StaticArrayInitTypeSizeU3D42_t9FC2D1D81E2853CF5D36635AB6A30DDDB9ABFECA * get_address_of_U329C1A61550F0E3260E1953D4FAD71C256218EF40_7() { return &___29C1A61550F0E3260E1953D4FAD71C256218EF40_7; }
inline void set_U329C1A61550F0E3260E1953D4FAD71C256218EF40_7(__StaticArrayInitTypeSizeU3D42_t9FC2D1D81E2853CF5D36635AB6A30DDDB9ABFECA value)
{
___29C1A61550F0E3260E1953D4FAD71C256218EF40_7 = value;
}
inline static int32_t get_offset_of_U32B33BEC8C30DFDC49DAFE20D3BDE19487850D717_8() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8_StaticFields, ___2B33BEC8C30DFDC49DAFE20D3BDE19487850D717_8)); }
inline __StaticArrayInitTypeSizeU3D12_t5FA9A9D9E4F196768B874B61DC1C6549CB34A584 get_U32B33BEC8C30DFDC49DAFE20D3BDE19487850D717_8() const { return ___2B33BEC8C30DFDC49DAFE20D3BDE19487850D717_8; }
inline __StaticArrayInitTypeSizeU3D12_t5FA9A9D9E4F196768B874B61DC1C6549CB34A584 * get_address_of_U32B33BEC8C30DFDC49DAFE20D3BDE19487850D717_8() { return &___2B33BEC8C30DFDC49DAFE20D3BDE19487850D717_8; }
inline void set_U32B33BEC8C30DFDC49DAFE20D3BDE19487850D717_8(__StaticArrayInitTypeSizeU3D12_t5FA9A9D9E4F196768B874B61DC1C6549CB34A584 value)
{
___2B33BEC8C30DFDC49DAFE20D3BDE19487850D717_8 = value;
}
inline static int32_t get_offset_of_U32BA840FF6020B8FF623DBCB7188248CF853FAF4F_9() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8_StaticFields, ___2BA840FF6020B8FF623DBCB7188248CF853FAF4F_9)); }
inline __StaticArrayInitTypeSizeU3D36_t46D2C2EA131D6126B945EA1E0993E0EE8AACC3CA get_U32BA840FF6020B8FF623DBCB7188248CF853FAF4F_9() const { return ___2BA840FF6020B8FF623DBCB7188248CF853FAF4F_9; }
inline __StaticArrayInitTypeSizeU3D36_t46D2C2EA131D6126B945EA1E0993E0EE8AACC3CA * get_address_of_U32BA840FF6020B8FF623DBCB7188248CF853FAF4F_9() { return &___2BA840FF6020B8FF623DBCB7188248CF853FAF4F_9; }
inline void set_U32BA840FF6020B8FF623DBCB7188248CF853FAF4F_9(__StaticArrayInitTypeSizeU3D36_t46D2C2EA131D6126B945EA1E0993E0EE8AACC3CA value)
{
___2BA840FF6020B8FF623DBCB7188248CF853FAF4F_9 = value;
}
inline static int32_t get_offset_of_U32C840AFA48C27B9C05593E468C1232CA1CC74AFD_10() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8_StaticFields, ___2C840AFA48C27B9C05593E468C1232CA1CC74AFD_10)); }
inline __StaticArrayInitTypeSizeU3D72_tFE5593C37377A26A806059B8620472A6E51E5AD2 get_U32C840AFA48C27B9C05593E468C1232CA1CC74AFD_10() const { return ___2C840AFA48C27B9C05593E468C1232CA1CC74AFD_10; }
inline __StaticArrayInitTypeSizeU3D72_tFE5593C37377A26A806059B8620472A6E51E5AD2 * get_address_of_U32C840AFA48C27B9C05593E468C1232CA1CC74AFD_10() { return &___2C840AFA48C27B9C05593E468C1232CA1CC74AFD_10; }
inline void set_U32C840AFA48C27B9C05593E468C1232CA1CC74AFD_10(__StaticArrayInitTypeSizeU3D72_tFE5593C37377A26A806059B8620472A6E51E5AD2 value)
{
___2C840AFA48C27B9C05593E468C1232CA1CC74AFD_10 = value;
}
inline static int32_t get_offset_of_U32D1DA5BB407F0C11C3B5116196C0C6374D932B20_11() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8_StaticFields, ___2D1DA5BB407F0C11C3B5116196C0C6374D932B20_11)); }
inline __StaticArrayInitTypeSizeU3D16_t9CE40E2FB4B486181F720F48DD733A3EAFFD6F26 get_U32D1DA5BB407F0C11C3B5116196C0C6374D932B20_11() const { return ___2D1DA5BB407F0C11C3B5116196C0C6374D932B20_11; }
inline __StaticArrayInitTypeSizeU3D16_t9CE40E2FB4B486181F720F48DD733A3EAFFD6F26 * get_address_of_U32D1DA5BB407F0C11C3B5116196C0C6374D932B20_11() { return &___2D1DA5BB407F0C11C3B5116196C0C6374D932B20_11; }
inline void set_U32D1DA5BB407F0C11C3B5116196C0C6374D932B20_11(__StaticArrayInitTypeSizeU3D16_t9CE40E2FB4B486181F720F48DD733A3EAFFD6F26 value)
{
___2D1DA5BB407F0C11C3B5116196C0C6374D932B20_11 = value;
}
inline static int32_t get_offset_of_U32F71D2DA12F3CD0A6A112F5A5A75B4FDC6FE8547_12() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8_StaticFields, ___2F71D2DA12F3CD0A6A112F5A5A75B4FDC6FE8547_12)); }
inline __StaticArrayInitTypeSizeU3D72_tFE5593C37377A26A806059B8620472A6E51E5AD2 get_U32F71D2DA12F3CD0A6A112F5A5A75B4FDC6FE8547_12() const { return ___2F71D2DA12F3CD0A6A112F5A5A75B4FDC6FE8547_12; }
inline __StaticArrayInitTypeSizeU3D72_tFE5593C37377A26A806059B8620472A6E51E5AD2 * get_address_of_U32F71D2DA12F3CD0A6A112F5A5A75B4FDC6FE8547_12() { return &___2F71D2DA12F3CD0A6A112F5A5A75B4FDC6FE8547_12; }
inline void set_U32F71D2DA12F3CD0A6A112F5A5A75B4FDC6FE8547_12(__StaticArrayInitTypeSizeU3D72_tFE5593C37377A26A806059B8620472A6E51E5AD2 value)
{
___2F71D2DA12F3CD0A6A112F5A5A75B4FDC6FE8547_12 = value;
}
inline static int32_t get_offset_of_U334476C29F6F81C989CFCA42F7C06E84C66236834_13() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8_StaticFields, ___34476C29F6F81C989CFCA42F7C06E84C66236834_13)); }
inline __StaticArrayInitTypeSizeU3D72_tFE5593C37377A26A806059B8620472A6E51E5AD2 get_U334476C29F6F81C989CFCA42F7C06E84C66236834_13() const { return ___34476C29F6F81C989CFCA42F7C06E84C66236834_13; }
inline __StaticArrayInitTypeSizeU3D72_tFE5593C37377A26A806059B8620472A6E51E5AD2 * get_address_of_U334476C29F6F81C989CFCA42F7C06E84C66236834_13() { return &___34476C29F6F81C989CFCA42F7C06E84C66236834_13; }
inline void set_U334476C29F6F81C989CFCA42F7C06E84C66236834_13(__StaticArrayInitTypeSizeU3D72_tFE5593C37377A26A806059B8620472A6E51E5AD2 value)
{
___34476C29F6F81C989CFCA42F7C06E84C66236834_13 = value;
}
inline static int32_t get_offset_of_U335EED060772F2748D13B745DAEC8CD7BD3B87604_14() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8_StaticFields, ___35EED060772F2748D13B745DAEC8CD7BD3B87604_14)); }
inline __StaticArrayInitTypeSizeU3D2382_t7764CC6AFDCA682AEBA6E78440AD21978F0AB7B1 get_U335EED060772F2748D13B745DAEC8CD7BD3B87604_14() const { return ___35EED060772F2748D13B745DAEC8CD7BD3B87604_14; }
inline __StaticArrayInitTypeSizeU3D2382_t7764CC6AFDCA682AEBA6E78440AD21978F0AB7B1 * get_address_of_U335EED060772F2748D13B745DAEC8CD7BD3B87604_14() { return &___35EED060772F2748D13B745DAEC8CD7BD3B87604_14; }
inline void set_U335EED060772F2748D13B745DAEC8CD7BD3B87604_14(__StaticArrayInitTypeSizeU3D2382_t7764CC6AFDCA682AEBA6E78440AD21978F0AB7B1 value)
{
___35EED060772F2748D13B745DAEC8CD7BD3B87604_14 = value;
}
inline static int32_t get_offset_of_U3375F9AE9769A3D1DA789E9ACFE81F3A1BB14F0D3_15() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8_StaticFields, ___375F9AE9769A3D1DA789E9ACFE81F3A1BB14F0D3_15)); }
inline __StaticArrayInitTypeSizeU3D38_tCB70BC8DEB0D12487BC902760AFB250798B64F83 get_U3375F9AE9769A3D1DA789E9ACFE81F3A1BB14F0D3_15() const { return ___375F9AE9769A3D1DA789E9ACFE81F3A1BB14F0D3_15; }
inline __StaticArrayInitTypeSizeU3D38_tCB70BC8DEB0D12487BC902760AFB250798B64F83 * get_address_of_U3375F9AE9769A3D1DA789E9ACFE81F3A1BB14F0D3_15() { return &___375F9AE9769A3D1DA789E9ACFE81F3A1BB14F0D3_15; }
inline void set_U3375F9AE9769A3D1DA789E9ACFE81F3A1BB14F0D3_15(__StaticArrayInitTypeSizeU3D38_tCB70BC8DEB0D12487BC902760AFB250798B64F83 value)
{
___375F9AE9769A3D1DA789E9ACFE81F3A1BB14F0D3_15 = value;
}
inline static int32_t get_offset_of_U3379C06C9E702D31469C29033F0DD63931EB349F5_16() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8_StaticFields, ___379C06C9E702D31469C29033F0DD63931EB349F5_16)); }
inline __StaticArrayInitTypeSizeU3D1450_tAC1EF3610F74C31313DF1ADF3AC9D9A2A9EC2912 get_U3379C06C9E702D31469C29033F0DD63931EB349F5_16() const { return ___379C06C9E702D31469C29033F0DD63931EB349F5_16; }
inline __StaticArrayInitTypeSizeU3D1450_tAC1EF3610F74C31313DF1ADF3AC9D9A2A9EC2912 * get_address_of_U3379C06C9E702D31469C29033F0DD63931EB349F5_16() { return &___379C06C9E702D31469C29033F0DD63931EB349F5_16; }
inline void set_U3379C06C9E702D31469C29033F0DD63931EB349F5_16(__StaticArrayInitTypeSizeU3D1450_tAC1EF3610F74C31313DF1ADF3AC9D9A2A9EC2912 value)
{
___379C06C9E702D31469C29033F0DD63931EB349F5_16 = value;
}
inline static int32_t get_offset_of_U3399BD13E240F33F808CA7940293D6EC4E6FD5A00_17() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8_StaticFields, ___399BD13E240F33F808CA7940293D6EC4E6FD5A00_17)); }
inline __StaticArrayInitTypeSizeU3D10_t71B5750224A80E3CACEFBC499879A04CCE6A5CD3 get_U3399BD13E240F33F808CA7940293D6EC4E6FD5A00_17() const { return ___399BD13E240F33F808CA7940293D6EC4E6FD5A00_17; }
inline __StaticArrayInitTypeSizeU3D10_t71B5750224A80E3CACEFBC499879A04CCE6A5CD3 * get_address_of_U3399BD13E240F33F808CA7940293D6EC4E6FD5A00_17() { return &___399BD13E240F33F808CA7940293D6EC4E6FD5A00_17; }
inline void set_U3399BD13E240F33F808CA7940293D6EC4E6FD5A00_17(__StaticArrayInitTypeSizeU3D10_t71B5750224A80E3CACEFBC499879A04CCE6A5CD3 value)
{
___399BD13E240F33F808CA7940293D6EC4E6FD5A00_17 = value;
}
inline static int32_t get_offset_of_U339C9CE73C7B0619D409EF28344F687C1B5C130FE_18() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8_StaticFields, ___39C9CE73C7B0619D409EF28344F687C1B5C130FE_18)); }
inline __StaticArrayInitTypeSizeU3D72_tFE5593C37377A26A806059B8620472A6E51E5AD2 get_U339C9CE73C7B0619D409EF28344F687C1B5C130FE_18() const { return ___39C9CE73C7B0619D409EF28344F687C1B5C130FE_18; }
inline __StaticArrayInitTypeSizeU3D72_tFE5593C37377A26A806059B8620472A6E51E5AD2 * get_address_of_U339C9CE73C7B0619D409EF28344F687C1B5C130FE_18() { return &___39C9CE73C7B0619D409EF28344F687C1B5C130FE_18; }
inline void set_U339C9CE73C7B0619D409EF28344F687C1B5C130FE_18(__StaticArrayInitTypeSizeU3D72_tFE5593C37377A26A806059B8620472A6E51E5AD2 value)
{
___39C9CE73C7B0619D409EF28344F687C1B5C130FE_18 = value;
}
inline static int32_t get_offset_of_U33C53AFB51FEC23491684C7BEDBC6D4E0F409F851_19() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8_StaticFields, ___3C53AFB51FEC23491684C7BEDBC6D4E0F409F851_19)); }
inline __StaticArrayInitTypeSizeU3D320_tBE0C4C66577D53F18D8BA69E43FDC69DFA003F8F get_U33C53AFB51FEC23491684C7BEDBC6D4E0F409F851_19() const { return ___3C53AFB51FEC23491684C7BEDBC6D4E0F409F851_19; }
inline __StaticArrayInitTypeSizeU3D320_tBE0C4C66577D53F18D8BA69E43FDC69DFA003F8F * get_address_of_U33C53AFB51FEC23491684C7BEDBC6D4E0F409F851_19() { return &___3C53AFB51FEC23491684C7BEDBC6D4E0F409F851_19; }
inline void set_U33C53AFB51FEC23491684C7BEDBC6D4E0F409F851_19(__StaticArrayInitTypeSizeU3D320_tBE0C4C66577D53F18D8BA69E43FDC69DFA003F8F value)
{
___3C53AFB51FEC23491684C7BEDBC6D4E0F409F851_19 = value;
}
inline static int32_t get_offset_of_U33E823444D2DFECF0F90B436B88F02A533CB376F1_20() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8_StaticFields, ___3E823444D2DFECF0F90B436B88F02A533CB376F1_20)); }
inline __StaticArrayInitTypeSizeU3D12_t5FA9A9D9E4F196768B874B61DC1C6549CB34A584 get_U33E823444D2DFECF0F90B436B88F02A533CB376F1_20() const { return ___3E823444D2DFECF0F90B436B88F02A533CB376F1_20; }
inline __StaticArrayInitTypeSizeU3D12_t5FA9A9D9E4F196768B874B61DC1C6549CB34A584 * get_address_of_U33E823444D2DFECF0F90B436B88F02A533CB376F1_20() { return &___3E823444D2DFECF0F90B436B88F02A533CB376F1_20; }
inline void set_U33E823444D2DFECF0F90B436B88F02A533CB376F1_20(__StaticArrayInitTypeSizeU3D12_t5FA9A9D9E4F196768B874B61DC1C6549CB34A584 value)
{
___3E823444D2DFECF0F90B436B88F02A533CB376F1_20 = value;
}
inline static int32_t get_offset_of_U33FE6C283BCF384FD2C8789880DFF59664E2AB4A1_21() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8_StaticFields, ___3FE6C283BCF384FD2C8789880DFF59664E2AB4A1_21)); }
inline __StaticArrayInitTypeSizeU3D72_tFE5593C37377A26A806059B8620472A6E51E5AD2 get_U33FE6C283BCF384FD2C8789880DFF59664E2AB4A1_21() const { return ___3FE6C283BCF384FD2C8789880DFF59664E2AB4A1_21; }
inline __StaticArrayInitTypeSizeU3D72_tFE5593C37377A26A806059B8620472A6E51E5AD2 * get_address_of_U33FE6C283BCF384FD2C8789880DFF59664E2AB4A1_21() { return &___3FE6C283BCF384FD2C8789880DFF59664E2AB4A1_21; }
inline void set_U33FE6C283BCF384FD2C8789880DFF59664E2AB4A1_21(__StaticArrayInitTypeSizeU3D72_tFE5593C37377A26A806059B8620472A6E51E5AD2 value)
{
___3FE6C283BCF384FD2C8789880DFF59664E2AB4A1_21 = value;
}
inline static int32_t get_offset_of_U340981BAA39513E58B28DCF0103CC04DE2A0A0444_22() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8_StaticFields, ___40981BAA39513E58B28DCF0103CC04DE2A0A0444_22)); }
inline __StaticArrayInitTypeSizeU3D1665_tF300201390474873919B6C58C810DFAC718FE0F4 get_U340981BAA39513E58B28DCF0103CC04DE2A0A0444_22() const { return ___40981BAA39513E58B28DCF0103CC04DE2A0A0444_22; }
inline __StaticArrayInitTypeSizeU3D1665_tF300201390474873919B6C58C810DFAC718FE0F4 * get_address_of_U340981BAA39513E58B28DCF0103CC04DE2A0A0444_22() { return &___40981BAA39513E58B28DCF0103CC04DE2A0A0444_22; }
inline void set_U340981BAA39513E58B28DCF0103CC04DE2A0A0444_22(__StaticArrayInitTypeSizeU3D1665_tF300201390474873919B6C58C810DFAC718FE0F4 value)
{
___40981BAA39513E58B28DCF0103CC04DE2A0A0444_22 = value;
}
inline static int32_t get_offset_of_U340E7C49413D261F3F38AD3A870C0AC69C8BDA048_23() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8_StaticFields, ___40E7C49413D261F3F38AD3A870C0AC69C8BDA048_23)); }
inline __StaticArrayInitTypeSizeU3D40_t31DA647550534A2982671AD8E1F791854ABE4525 get_U340E7C49413D261F3F38AD3A870C0AC69C8BDA048_23() const { return ___40E7C49413D261F3F38AD3A870C0AC69C8BDA048_23; }
inline __StaticArrayInitTypeSizeU3D40_t31DA647550534A2982671AD8E1F791854ABE4525 * get_address_of_U340E7C49413D261F3F38AD3A870C0AC69C8BDA048_23() { return &___40E7C49413D261F3F38AD3A870C0AC69C8BDA048_23; }
inline void set_U340E7C49413D261F3F38AD3A870C0AC69C8BDA048_23(__StaticArrayInitTypeSizeU3D40_t31DA647550534A2982671AD8E1F791854ABE4525 value)
{
___40E7C49413D261F3F38AD3A870C0AC69C8BDA048_23 = value;
}
inline static int32_t get_offset_of_U3421EC7E82F2967DF6CA8C3605514DC6F29EE5845_24() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8_StaticFields, ___421EC7E82F2967DF6CA8C3605514DC6F29EE5845_24)); }
inline __StaticArrayInitTypeSizeU3D72_tFE5593C37377A26A806059B8620472A6E51E5AD2 get_U3421EC7E82F2967DF6CA8C3605514DC6F29EE5845_24() const { return ___421EC7E82F2967DF6CA8C3605514DC6F29EE5845_24; }
inline __StaticArrayInitTypeSizeU3D72_tFE5593C37377A26A806059B8620472A6E51E5AD2 * get_address_of_U3421EC7E82F2967DF6CA8C3605514DC6F29EE5845_24() { return &___421EC7E82F2967DF6CA8C3605514DC6F29EE5845_24; }
inline void set_U3421EC7E82F2967DF6CA8C3605514DC6F29EE5845_24(__StaticArrayInitTypeSizeU3D72_tFE5593C37377A26A806059B8620472A6E51E5AD2 value)
{
___421EC7E82F2967DF6CA8C3605514DC6F29EE5845_24 = value;
}
inline static int32_t get_offset_of_U34858DB4AA76D3933F1CA9E6712D4FDB16903F628_25() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8_StaticFields, ___4858DB4AA76D3933F1CA9E6712D4FDB16903F628_25)); }
inline __StaticArrayInitTypeSizeU3D72_tFE5593C37377A26A806059B8620472A6E51E5AD2 get_U34858DB4AA76D3933F1CA9E6712D4FDB16903F628_25() const { return ___4858DB4AA76D3933F1CA9E6712D4FDB16903F628_25; }
inline __StaticArrayInitTypeSizeU3D72_tFE5593C37377A26A806059B8620472A6E51E5AD2 * get_address_of_U34858DB4AA76D3933F1CA9E6712D4FDB16903F628_25() { return &___4858DB4AA76D3933F1CA9E6712D4FDB16903F628_25; }
inline void set_U34858DB4AA76D3933F1CA9E6712D4FDB16903F628_25(__StaticArrayInitTypeSizeU3D72_tFE5593C37377A26A806059B8620472A6E51E5AD2 value)
{
___4858DB4AA76D3933F1CA9E6712D4FDB16903F628_25 = value;
}
inline static int32_t get_offset_of_U34F7A8890F332B22B8DE0BD29D36FA7364748D76A_26() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8_StaticFields, ___4F7A8890F332B22B8DE0BD29D36FA7364748D76A_26)); }
inline __StaticArrayInitTypeSizeU3D40_t31DA647550534A2982671AD8E1F791854ABE4525 get_U34F7A8890F332B22B8DE0BD29D36FA7364748D76A_26() const { return ___4F7A8890F332B22B8DE0BD29D36FA7364748D76A_26; }
inline __StaticArrayInitTypeSizeU3D40_t31DA647550534A2982671AD8E1F791854ABE4525 * get_address_of_U34F7A8890F332B22B8DE0BD29D36FA7364748D76A_26() { return &___4F7A8890F332B22B8DE0BD29D36FA7364748D76A_26; }
inline void set_U34F7A8890F332B22B8DE0BD29D36FA7364748D76A_26(__StaticArrayInitTypeSizeU3D40_t31DA647550534A2982671AD8E1F791854ABE4525 value)
{
___4F7A8890F332B22B8DE0BD29D36FA7364748D76A_26 = value;
}
inline static int32_t get_offset_of_U3536422B321459B242ADED7240B7447E904E083E3_27() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8_StaticFields, ___536422B321459B242ADED7240B7447E904E083E3_27)); }
inline __StaticArrayInitTypeSizeU3D72_tFE5593C37377A26A806059B8620472A6E51E5AD2 get_U3536422B321459B242ADED7240B7447E904E083E3_27() const { return ___536422B321459B242ADED7240B7447E904E083E3_27; }
inline __StaticArrayInitTypeSizeU3D72_tFE5593C37377A26A806059B8620472A6E51E5AD2 * get_address_of_U3536422B321459B242ADED7240B7447E904E083E3_27() { return &___536422B321459B242ADED7240B7447E904E083E3_27; }
inline void set_U3536422B321459B242ADED7240B7447E904E083E3_27(__StaticArrayInitTypeSizeU3D72_tFE5593C37377A26A806059B8620472A6E51E5AD2 value)
{
___536422B321459B242ADED7240B7447E904E083E3_27 = value;
}
inline static int32_t get_offset_of_U35382CEF491F422BFE0D6FC46EFAFF9EF9D4C89F3_28() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8_StaticFields, ___5382CEF491F422BFE0D6FC46EFAFF9EF9D4C89F3_28)); }
inline __StaticArrayInitTypeSizeU3D1080_tDD425A5824CFEEBEB897380BE535A4D579DD8DEB get_U35382CEF491F422BFE0D6FC46EFAFF9EF9D4C89F3_28() const { return ___5382CEF491F422BFE0D6FC46EFAFF9EF9D4C89F3_28; }
inline __StaticArrayInitTypeSizeU3D1080_tDD425A5824CFEEBEB897380BE535A4D579DD8DEB * get_address_of_U35382CEF491F422BFE0D6FC46EFAFF9EF9D4C89F3_28() { return &___5382CEF491F422BFE0D6FC46EFAFF9EF9D4C89F3_28; }
inline void set_U35382CEF491F422BFE0D6FC46EFAFF9EF9D4C89F3_28(__StaticArrayInitTypeSizeU3D1080_tDD425A5824CFEEBEB897380BE535A4D579DD8DEB value)
{
___5382CEF491F422BFE0D6FC46EFAFF9EF9D4C89F3_28 = value;
}
inline static int32_t get_offset_of_U357218C316B6921E2CD61027A2387EDC31A2D9471_29() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8_StaticFields, ___57218C316B6921E2CD61027A2387EDC31A2D9471_29)); }
inline __StaticArrayInitTypeSizeU3D3_t87EA921BA4E5FA6B89C780901818C549D9F073A4 get_U357218C316B6921E2CD61027A2387EDC31A2D9471_29() const { return ___57218C316B6921E2CD61027A2387EDC31A2D9471_29; }
inline __StaticArrayInitTypeSizeU3D3_t87EA921BA4E5FA6B89C780901818C549D9F073A4 * get_address_of_U357218C316B6921E2CD61027A2387EDC31A2D9471_29() { return &___57218C316B6921E2CD61027A2387EDC31A2D9471_29; }
inline void set_U357218C316B6921E2CD61027A2387EDC31A2D9471_29(__StaticArrayInitTypeSizeU3D3_t87EA921BA4E5FA6B89C780901818C549D9F073A4 value)
{
___57218C316B6921E2CD61027A2387EDC31A2D9471_29 = value;
}
inline static int32_t get_offset_of_U357F320D62696EC99727E0FE2045A05F1289CC0C6_30() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8_StaticFields, ___57F320D62696EC99727E0FE2045A05F1289CC0C6_30)); }
inline __StaticArrayInitTypeSizeU3D40_t31DA647550534A2982671AD8E1F791854ABE4525 get_U357F320D62696EC99727E0FE2045A05F1289CC0C6_30() const { return ___57F320D62696EC99727E0FE2045A05F1289CC0C6_30; }
inline __StaticArrayInitTypeSizeU3D40_t31DA647550534A2982671AD8E1F791854ABE4525 * get_address_of_U357F320D62696EC99727E0FE2045A05F1289CC0C6_30() { return &___57F320D62696EC99727E0FE2045A05F1289CC0C6_30; }
inline void set_U357F320D62696EC99727E0FE2045A05F1289CC0C6_30(__StaticArrayInitTypeSizeU3D40_t31DA647550534A2982671AD8E1F791854ABE4525 value)
{
___57F320D62696EC99727E0FE2045A05F1289CC0C6_30 = value;
}
inline static int32_t get_offset_of_U3594A33A00BC4F785DFD43E3C6C44FBA1242CCAF3_31() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8_StaticFields, ___594A33A00BC4F785DFD43E3C6C44FBA1242CCAF3_31)); }
inline __StaticArrayInitTypeSizeU3D212_tA27E3A600D9E677116CCFCF5CB90C2DEF1951E43 get_U3594A33A00BC4F785DFD43E3C6C44FBA1242CCAF3_31() const { return ___594A33A00BC4F785DFD43E3C6C44FBA1242CCAF3_31; }
inline __StaticArrayInitTypeSizeU3D212_tA27E3A600D9E677116CCFCF5CB90C2DEF1951E43 * get_address_of_U3594A33A00BC4F785DFD43E3C6C44FBA1242CCAF3_31() { return &___594A33A00BC4F785DFD43E3C6C44FBA1242CCAF3_31; }
inline void set_U3594A33A00BC4F785DFD43E3C6C44FBA1242CCAF3_31(__StaticArrayInitTypeSizeU3D212_tA27E3A600D9E677116CCFCF5CB90C2DEF1951E43 value)
{
___594A33A00BC4F785DFD43E3C6C44FBA1242CCAF3_31 = value;
}
inline static int32_t get_offset_of_U35BBDF8058D4235C33F2E8DCF76004031B6187A2F_32() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8_StaticFields, ___5BBDF8058D4235C33F2E8DCF76004031B6187A2F_32)); }
inline __StaticArrayInitTypeSizeU3D36_t46D2C2EA131D6126B945EA1E0993E0EE8AACC3CA get_U35BBDF8058D4235C33F2E8DCF76004031B6187A2F_32() const { return ___5BBDF8058D4235C33F2E8DCF76004031B6187A2F_32; }
inline __StaticArrayInitTypeSizeU3D36_t46D2C2EA131D6126B945EA1E0993E0EE8AACC3CA * get_address_of_U35BBDF8058D4235C33F2E8DCF76004031B6187A2F_32() { return &___5BBDF8058D4235C33F2E8DCF76004031B6187A2F_32; }
inline void set_U35BBDF8058D4235C33F2E8DCF76004031B6187A2F_32(__StaticArrayInitTypeSizeU3D36_t46D2C2EA131D6126B945EA1E0993E0EE8AACC3CA value)
{
___5BBDF8058D4235C33F2E8DCF76004031B6187A2F_32 = value;
}
inline static int32_t get_offset_of_U35BCD21C341BE6DDF8FFFAE1A23ABA24DCBB612BF_33() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8_StaticFields, ___5BCD21C341BE6DDF8FFFAE1A23ABA24DCBB612BF_33)); }
inline __StaticArrayInitTypeSizeU3D288_t901CBC2EE96C2C63E8B3C6D507136F8A55FF5566 get_U35BCD21C341BE6DDF8FFFAE1A23ABA24DCBB612BF_33() const { return ___5BCD21C341BE6DDF8FFFAE1A23ABA24DCBB612BF_33; }
inline __StaticArrayInitTypeSizeU3D288_t901CBC2EE96C2C63E8B3C6D507136F8A55FF5566 * get_address_of_U35BCD21C341BE6DDF8FFFAE1A23ABA24DCBB612BF_33() { return &___5BCD21C341BE6DDF8FFFAE1A23ABA24DCBB612BF_33; }
inline void set_U35BCD21C341BE6DDF8FFFAE1A23ABA24DCBB612BF_33(__StaticArrayInitTypeSizeU3D288_t901CBC2EE96C2C63E8B3C6D507136F8A55FF5566 value)
{
___5BCD21C341BE6DDF8FFFAE1A23ABA24DCBB612BF_33 = value;
}
inline static int32_t get_offset_of_U35BFE2819B4778217C56416C7585FF0E56EBACD89_34() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8_StaticFields, ___5BFE2819B4778217C56416C7585FF0E56EBACD89_34)); }
inline __StaticArrayInitTypeSizeU3D72_tFE5593C37377A26A806059B8620472A6E51E5AD2 get_U35BFE2819B4778217C56416C7585FF0E56EBACD89_34() const { return ___5BFE2819B4778217C56416C7585FF0E56EBACD89_34; }
inline __StaticArrayInitTypeSizeU3D72_tFE5593C37377A26A806059B8620472A6E51E5AD2 * get_address_of_U35BFE2819B4778217C56416C7585FF0E56EBACD89_34() { return &___5BFE2819B4778217C56416C7585FF0E56EBACD89_34; }
inline void set_U35BFE2819B4778217C56416C7585FF0E56EBACD89_34(__StaticArrayInitTypeSizeU3D72_tFE5593C37377A26A806059B8620472A6E51E5AD2 value)
{
___5BFE2819B4778217C56416C7585FF0E56EBACD89_34 = value;
}
inline static int32_t get_offset_of_U3609C0E8D8DA86A09D6013D301C86BA8782C16B8C_35() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8_StaticFields, ___609C0E8D8DA86A09D6013D301C86BA8782C16B8C_35)); }
inline __StaticArrayInitTypeSizeU3D128_t0E65F82715F120C2585C93F35BFA548913720A71 get_U3609C0E8D8DA86A09D6013D301C86BA8782C16B8C_35() const { return ___609C0E8D8DA86A09D6013D301C86BA8782C16B8C_35; }
inline __StaticArrayInitTypeSizeU3D128_t0E65F82715F120C2585C93F35BFA548913720A71 * get_address_of_U3609C0E8D8DA86A09D6013D301C86BA8782C16B8C_35() { return &___609C0E8D8DA86A09D6013D301C86BA8782C16B8C_35; }
inline void set_U3609C0E8D8DA86A09D6013D301C86BA8782C16B8C_35(__StaticArrayInitTypeSizeU3D128_t0E65F82715F120C2585C93F35BFA548913720A71 value)
{
___609C0E8D8DA86A09D6013D301C86BA8782C16B8C_35 = value;
}
inline static int32_t get_offset_of_U365E32B4E150FD8D24B93B0D42A17F1DAD146162B_36() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8_StaticFields, ___65E32B4E150FD8D24B93B0D42A17F1DAD146162B_36)); }
inline __StaticArrayInitTypeSizeU3D40_t31DA647550534A2982671AD8E1F791854ABE4525 get_U365E32B4E150FD8D24B93B0D42A17F1DAD146162B_36() const { return ___65E32B4E150FD8D24B93B0D42A17F1DAD146162B_36; }
inline __StaticArrayInitTypeSizeU3D40_t31DA647550534A2982671AD8E1F791854ABE4525 * get_address_of_U365E32B4E150FD8D24B93B0D42A17F1DAD146162B_36() { return &___65E32B4E150FD8D24B93B0D42A17F1DAD146162B_36; }
inline void set_U365E32B4E150FD8D24B93B0D42A17F1DAD146162B_36(__StaticArrayInitTypeSizeU3D40_t31DA647550534A2982671AD8E1F791854ABE4525 value)
{
___65E32B4E150FD8D24B93B0D42A17F1DAD146162B_36 = value;
}
inline static int32_t get_offset_of_U36770974FEF1E98B9C1864370E2B5B786EB0EA39E_37() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8_StaticFields, ___6770974FEF1E98B9C1864370E2B5B786EB0EA39E_37)); }
inline __StaticArrayInitTypeSizeU3D52_t68C389D6C6894AE8F01E7C88DDD8CBDE317B23CD get_U36770974FEF1E98B9C1864370E2B5B786EB0EA39E_37() const { return ___6770974FEF1E98B9C1864370E2B5B786EB0EA39E_37; }
inline __StaticArrayInitTypeSizeU3D52_t68C389D6C6894AE8F01E7C88DDD8CBDE317B23CD * get_address_of_U36770974FEF1E98B9C1864370E2B5B786EB0EA39E_37() { return &___6770974FEF1E98B9C1864370E2B5B786EB0EA39E_37; }
inline void set_U36770974FEF1E98B9C1864370E2B5B786EB0EA39E_37(__StaticArrayInitTypeSizeU3D52_t68C389D6C6894AE8F01E7C88DDD8CBDE317B23CD value)
{
___6770974FEF1E98B9C1864370E2B5B786EB0EA39E_37 = value;
}
inline static int32_t get_offset_of_U367EEAD805D708D9AA4E14BF747E44CED801744F3_38() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8_StaticFields, ___67EEAD805D708D9AA4E14BF747E44CED801744F3_38)); }
inline __StaticArrayInitTypeSizeU3D72_tFE5593C37377A26A806059B8620472A6E51E5AD2 get_U367EEAD805D708D9AA4E14BF747E44CED801744F3_38() const { return ___67EEAD805D708D9AA4E14BF747E44CED801744F3_38; }
inline __StaticArrayInitTypeSizeU3D72_tFE5593C37377A26A806059B8620472A6E51E5AD2 * get_address_of_U367EEAD805D708D9AA4E14BF747E44CED801744F3_38() { return &___67EEAD805D708D9AA4E14BF747E44CED801744F3_38; }
inline void set_U367EEAD805D708D9AA4E14BF747E44CED801744F3_38(__StaticArrayInitTypeSizeU3D72_tFE5593C37377A26A806059B8620472A6E51E5AD2 value)
{
___67EEAD805D708D9AA4E14BF747E44CED801744F3_38 = value;
}
inline static int32_t get_offset_of_U36C71197D228427B2864C69B357FEF73D8C9D59DF_39() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8_StaticFields, ___6C71197D228427B2864C69B357FEF73D8C9D59DF_39)); }
inline __StaticArrayInitTypeSizeU3D120_t13A2E28354D3A542E1A2AD289B7970CE8BF64CE1 get_U36C71197D228427B2864C69B357FEF73D8C9D59DF_39() const { return ___6C71197D228427B2864C69B357FEF73D8C9D59DF_39; }
inline __StaticArrayInitTypeSizeU3D120_t13A2E28354D3A542E1A2AD289B7970CE8BF64CE1 * get_address_of_U36C71197D228427B2864C69B357FEF73D8C9D59DF_39() { return &___6C71197D228427B2864C69B357FEF73D8C9D59DF_39; }
inline void set_U36C71197D228427B2864C69B357FEF73D8C9D59DF_39(__StaticArrayInitTypeSizeU3D120_t13A2E28354D3A542E1A2AD289B7970CE8BF64CE1 value)
{
___6C71197D228427B2864C69B357FEF73D8C9D59DF_39 = value;
}
inline static int32_t get_offset_of_U36CEE45445AFD150B047A5866FFA76AA651CDB7B7_40() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8_StaticFields, ___6CEE45445AFD150B047A5866FFA76AA651CDB7B7_40)); }
inline __StaticArrayInitTypeSizeU3D16_t9CE40E2FB4B486181F720F48DD733A3EAFFD6F26 get_U36CEE45445AFD150B047A5866FFA76AA651CDB7B7_40() const { return ___6CEE45445AFD150B047A5866FFA76AA651CDB7B7_40; }
inline __StaticArrayInitTypeSizeU3D16_t9CE40E2FB4B486181F720F48DD733A3EAFFD6F26 * get_address_of_U36CEE45445AFD150B047A5866FFA76AA651CDB7B7_40() { return &___6CEE45445AFD150B047A5866FFA76AA651CDB7B7_40; }
inline void set_U36CEE45445AFD150B047A5866FFA76AA651CDB7B7_40(__StaticArrayInitTypeSizeU3D16_t9CE40E2FB4B486181F720F48DD733A3EAFFD6F26 value)
{
___6CEE45445AFD150B047A5866FFA76AA651CDB7B7_40 = value;
}
inline static int32_t get_offset_of_U36FC754859E4EC74E447048364B216D825C6F8FE7_41() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8_StaticFields, ___6FC754859E4EC74E447048364B216D825C6F8FE7_41)); }
inline __StaticArrayInitTypeSizeU3D76_tFC0C1E62400632DF6EBD5465D74B1851DAC47C60 get_U36FC754859E4EC74E447048364B216D825C6F8FE7_41() const { return ___6FC754859E4EC74E447048364B216D825C6F8FE7_41; }
inline __StaticArrayInitTypeSizeU3D76_tFC0C1E62400632DF6EBD5465D74B1851DAC47C60 * get_address_of_U36FC754859E4EC74E447048364B216D825C6F8FE7_41() { return &___6FC754859E4EC74E447048364B216D825C6F8FE7_41; }
inline void set_U36FC754859E4EC74E447048364B216D825C6F8FE7_41(__StaticArrayInitTypeSizeU3D76_tFC0C1E62400632DF6EBD5465D74B1851DAC47C60 value)
{
___6FC754859E4EC74E447048364B216D825C6F8FE7_41 = value;
}
inline static int32_t get_offset_of_U3704939CD172085D1295FCE3F1D92431D685D7AA2_42() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8_StaticFields, ___704939CD172085D1295FCE3F1D92431D685D7AA2_42)); }
inline __StaticArrayInitTypeSizeU3D40_t31DA647550534A2982671AD8E1F791854ABE4525 get_U3704939CD172085D1295FCE3F1D92431D685D7AA2_42() const { return ___704939CD172085D1295FCE3F1D92431D685D7AA2_42; }
inline __StaticArrayInitTypeSizeU3D40_t31DA647550534A2982671AD8E1F791854ABE4525 * get_address_of_U3704939CD172085D1295FCE3F1D92431D685D7AA2_42() { return &___704939CD172085D1295FCE3F1D92431D685D7AA2_42; }
inline void set_U3704939CD172085D1295FCE3F1D92431D685D7AA2_42(__StaticArrayInitTypeSizeU3D40_t31DA647550534A2982671AD8E1F791854ABE4525 value)
{
___704939CD172085D1295FCE3F1D92431D685D7AA2_42 = value;
}
inline static int32_t get_offset_of_U37088AAE49F0627B72729078DE6E3182DDCF8ED99_43() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8_StaticFields, ___7088AAE49F0627B72729078DE6E3182DDCF8ED99_43)); }
inline __StaticArrayInitTypeSizeU3D24_t54A5E8E52DF075628A83AE11B6178839F1F8FBDC get_U37088AAE49F0627B72729078DE6E3182DDCF8ED99_43() const { return ___7088AAE49F0627B72729078DE6E3182DDCF8ED99_43; }
inline __StaticArrayInitTypeSizeU3D24_t54A5E8E52DF075628A83AE11B6178839F1F8FBDC * get_address_of_U37088AAE49F0627B72729078DE6E3182DDCF8ED99_43() { return &___7088AAE49F0627B72729078DE6E3182DDCF8ED99_43; }
inline void set_U37088AAE49F0627B72729078DE6E3182DDCF8ED99_43(__StaticArrayInitTypeSizeU3D24_t54A5E8E52DF075628A83AE11B6178839F1F8FBDC value)
{
___7088AAE49F0627B72729078DE6E3182DDCF8ED99_43 = value;
}
inline static int32_t get_offset_of_U37341C933A70EAE383CC50C4B945ADB8E08F06737_44() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8_StaticFields, ___7341C933A70EAE383CC50C4B945ADB8E08F06737_44)); }
inline __StaticArrayInitTypeSizeU3D72_tFE5593C37377A26A806059B8620472A6E51E5AD2 get_U37341C933A70EAE383CC50C4B945ADB8E08F06737_44() const { return ___7341C933A70EAE383CC50C4B945ADB8E08F06737_44; }
inline __StaticArrayInitTypeSizeU3D72_tFE5593C37377A26A806059B8620472A6E51E5AD2 * get_address_of_U37341C933A70EAE383CC50C4B945ADB8E08F06737_44() { return &___7341C933A70EAE383CC50C4B945ADB8E08F06737_44; }
inline void set_U37341C933A70EAE383CC50C4B945ADB8E08F06737_44(__StaticArrayInitTypeSizeU3D72_tFE5593C37377A26A806059B8620472A6E51E5AD2 value)
{
___7341C933A70EAE383CC50C4B945ADB8E08F06737_44 = value;
}
inline static int32_t get_offset_of_U37FE820C9CF0F0B90445A71F1D262D22E4F0C4C68_45() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8_StaticFields, ___7FE820C9CF0F0B90445A71F1D262D22E4F0C4C68_45)); }
inline __StaticArrayInitTypeSizeU3D40_t31DA647550534A2982671AD8E1F791854ABE4525 get_U37FE820C9CF0F0B90445A71F1D262D22E4F0C4C68_45() const { return ___7FE820C9CF0F0B90445A71F1D262D22E4F0C4C68_45; }
inline __StaticArrayInitTypeSizeU3D40_t31DA647550534A2982671AD8E1F791854ABE4525 * get_address_of_U37FE820C9CF0F0B90445A71F1D262D22E4F0C4C68_45() { return &___7FE820C9CF0F0B90445A71F1D262D22E4F0C4C68_45; }
inline void set_U37FE820C9CF0F0B90445A71F1D262D22E4F0C4C68_45(__StaticArrayInitTypeSizeU3D40_t31DA647550534A2982671AD8E1F791854ABE4525 value)
{
___7FE820C9CF0F0B90445A71F1D262D22E4F0C4C68_45 = value;
}
inline static int32_t get_offset_of_U3811A927B7DADD378BE60BBDE794B9277AA9B50EC_46() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8_StaticFields, ___811A927B7DADD378BE60BBDE794B9277AA9B50EC_46)); }
inline __StaticArrayInitTypeSizeU3D21252_t7F9940F69151C8490439C5AC4C3E8F115E6EFDD0 get_U3811A927B7DADD378BE60BBDE794B9277AA9B50EC_46() const { return ___811A927B7DADD378BE60BBDE794B9277AA9B50EC_46; }
inline __StaticArrayInitTypeSizeU3D21252_t7F9940F69151C8490439C5AC4C3E8F115E6EFDD0 * get_address_of_U3811A927B7DADD378BE60BBDE794B9277AA9B50EC_46() { return &___811A927B7DADD378BE60BBDE794B9277AA9B50EC_46; }
inline void set_U3811A927B7DADD378BE60BBDE794B9277AA9B50EC_46(__StaticArrayInitTypeSizeU3D21252_t7F9940F69151C8490439C5AC4C3E8F115E6EFDD0 value)
{
___811A927B7DADD378BE60BBDE794B9277AA9B50EC_46 = value;
}
inline static int32_t get_offset_of_U381917F1E21F3C22B9F916994547A614FB03E968E_47() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8_StaticFields, ___81917F1E21F3C22B9F916994547A614FB03E968E_47)); }
inline __StaticArrayInitTypeSizeU3D36_t46D2C2EA131D6126B945EA1E0993E0EE8AACC3CA get_U381917F1E21F3C22B9F916994547A614FB03E968E_47() const { return ___81917F1E21F3C22B9F916994547A614FB03E968E_47; }
inline __StaticArrayInitTypeSizeU3D36_t46D2C2EA131D6126B945EA1E0993E0EE8AACC3CA * get_address_of_U381917F1E21F3C22B9F916994547A614FB03E968E_47() { return &___81917F1E21F3C22B9F916994547A614FB03E968E_47; }
inline void set_U381917F1E21F3C22B9F916994547A614FB03E968E_47(__StaticArrayInitTypeSizeU3D36_t46D2C2EA131D6126B945EA1E0993E0EE8AACC3CA value)
{
___81917F1E21F3C22B9F916994547A614FB03E968E_47 = value;
}
inline static int32_t get_offset_of_U3823566DA642D6EA356E15585921F2A4CA23D6760_48() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8_StaticFields, ___823566DA642D6EA356E15585921F2A4CA23D6760_48)); }
inline __StaticArrayInitTypeSizeU3D40_t31DA647550534A2982671AD8E1F791854ABE4525 get_U3823566DA642D6EA356E15585921F2A4CA23D6760_48() const { return ___823566DA642D6EA356E15585921F2A4CA23D6760_48; }
inline __StaticArrayInitTypeSizeU3D40_t31DA647550534A2982671AD8E1F791854ABE4525 * get_address_of_U3823566DA642D6EA356E15585921F2A4CA23D6760_48() { return &___823566DA642D6EA356E15585921F2A4CA23D6760_48; }
inline void set_U3823566DA642D6EA356E15585921F2A4CA23D6760_48(__StaticArrayInitTypeSizeU3D40_t31DA647550534A2982671AD8E1F791854ABE4525 value)
{
___823566DA642D6EA356E15585921F2A4CA23D6760_48 = value;
}
inline static int32_t get_offset_of_U382C2A59850B2E85BCE1A45A479537A384DF6098D_49() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8_StaticFields, ___82C2A59850B2E85BCE1A45A479537A384DF6098D_49)); }
inline __StaticArrayInitTypeSizeU3D12_t5FA9A9D9E4F196768B874B61DC1C6549CB34A584 get_U382C2A59850B2E85BCE1A45A479537A384DF6098D_49() const { return ___82C2A59850B2E85BCE1A45A479537A384DF6098D_49; }
inline __StaticArrayInitTypeSizeU3D12_t5FA9A9D9E4F196768B874B61DC1C6549CB34A584 * get_address_of_U382C2A59850B2E85BCE1A45A479537A384DF6098D_49() { return &___82C2A59850B2E85BCE1A45A479537A384DF6098D_49; }
inline void set_U382C2A59850B2E85BCE1A45A479537A384DF6098D_49(__StaticArrayInitTypeSizeU3D12_t5FA9A9D9E4F196768B874B61DC1C6549CB34A584 value)
{
___82C2A59850B2E85BCE1A45A479537A384DF6098D_49 = value;
}
inline static int32_t get_offset_of_U382C383F8E6E4D3D87AEBB986A5D0077E8AD157C4_50() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8_StaticFields, ___82C383F8E6E4D3D87AEBB986A5D0077E8AD157C4_50)); }
inline __StaticArrayInitTypeSizeU3D44_t2C34FCD1B7CA98AF1BE52ED77A663AFA9401C5D5 get_U382C383F8E6E4D3D87AEBB986A5D0077E8AD157C4_50() const { return ___82C383F8E6E4D3D87AEBB986A5D0077E8AD157C4_50; }
inline __StaticArrayInitTypeSizeU3D44_t2C34FCD1B7CA98AF1BE52ED77A663AFA9401C5D5 * get_address_of_U382C383F8E6E4D3D87AEBB986A5D0077E8AD157C4_50() { return &___82C383F8E6E4D3D87AEBB986A5D0077E8AD157C4_50; }
inline void set_U382C383F8E6E4D3D87AEBB986A5D0077E8AD157C4_50(__StaticArrayInitTypeSizeU3D44_t2C34FCD1B7CA98AF1BE52ED77A663AFA9401C5D5 value)
{
___82C383F8E6E4D3D87AEBB986A5D0077E8AD157C4_50 = value;
}
inline static int32_t get_offset_of_U3871B9CF85DB352BAADF12BAE8F19857683E385AC_51() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8_StaticFields, ___871B9CF85DB352BAADF12BAE8F19857683E385AC_51)); }
inline __StaticArrayInitTypeSizeU3D40_t31DA647550534A2982671AD8E1F791854ABE4525 get_U3871B9CF85DB352BAADF12BAE8F19857683E385AC_51() const { return ___871B9CF85DB352BAADF12BAE8F19857683E385AC_51; }
inline __StaticArrayInitTypeSizeU3D40_t31DA647550534A2982671AD8E1F791854ABE4525 * get_address_of_U3871B9CF85DB352BAADF12BAE8F19857683E385AC_51() { return &___871B9CF85DB352BAADF12BAE8F19857683E385AC_51; }
inline void set_U3871B9CF85DB352BAADF12BAE8F19857683E385AC_51(__StaticArrayInitTypeSizeU3D40_t31DA647550534A2982671AD8E1F791854ABE4525 value)
{
___871B9CF85DB352BAADF12BAE8F19857683E385AC_51 = value;
}
inline static int32_t get_offset_of_U389A040451C8CC5C8FB268BE44BDD74964C104155_52() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8_StaticFields, ___89A040451C8CC5C8FB268BE44BDD74964C104155_52)); }
inline __StaticArrayInitTypeSizeU3D16_t9CE40E2FB4B486181F720F48DD733A3EAFFD6F26 get_U389A040451C8CC5C8FB268BE44BDD74964C104155_52() const { return ___89A040451C8CC5C8FB268BE44BDD74964C104155_52; }
inline __StaticArrayInitTypeSizeU3D16_t9CE40E2FB4B486181F720F48DD733A3EAFFD6F26 * get_address_of_U389A040451C8CC5C8FB268BE44BDD74964C104155_52() { return &___89A040451C8CC5C8FB268BE44BDD74964C104155_52; }
inline void set_U389A040451C8CC5C8FB268BE44BDD74964C104155_52(__StaticArrayInitTypeSizeU3D16_t9CE40E2FB4B486181F720F48DD733A3EAFFD6F26 value)
{
___89A040451C8CC5C8FB268BE44BDD74964C104155_52 = value;
}
inline static int32_t get_offset_of_U38CAA092E783257106251246FF5C97F88D28517A6_53() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8_StaticFields, ___8CAA092E783257106251246FF5C97F88D28517A6_53)); }
inline __StaticArrayInitTypeSizeU3D40_t31DA647550534A2982671AD8E1F791854ABE4525 get_U38CAA092E783257106251246FF5C97F88D28517A6_53() const { return ___8CAA092E783257106251246FF5C97F88D28517A6_53; }
inline __StaticArrayInitTypeSizeU3D40_t31DA647550534A2982671AD8E1F791854ABE4525 * get_address_of_U38CAA092E783257106251246FF5C97F88D28517A6_53() { return &___8CAA092E783257106251246FF5C97F88D28517A6_53; }
inline void set_U38CAA092E783257106251246FF5C97F88D28517A6_53(__StaticArrayInitTypeSizeU3D40_t31DA647550534A2982671AD8E1F791854ABE4525 value)
{
___8CAA092E783257106251246FF5C97F88D28517A6_53 = value;
}
inline static int32_t get_offset_of_U38D231DD55FE1AD7631BBD0905A17D5EB616C2154_54() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8_StaticFields, ___8D231DD55FE1AD7631BBD0905A17D5EB616C2154_54)); }
inline __StaticArrayInitTypeSizeU3D2100_t77017A2656678C6EE4571B84C9F635820AB583B0 get_U38D231DD55FE1AD7631BBD0905A17D5EB616C2154_54() const { return ___8D231DD55FE1AD7631BBD0905A17D5EB616C2154_54; }
inline __StaticArrayInitTypeSizeU3D2100_t77017A2656678C6EE4571B84C9F635820AB583B0 * get_address_of_U38D231DD55FE1AD7631BBD0905A17D5EB616C2154_54() { return &___8D231DD55FE1AD7631BBD0905A17D5EB616C2154_54; }
inline void set_U38D231DD55FE1AD7631BBD0905A17D5EB616C2154_54(__StaticArrayInitTypeSizeU3D2100_t77017A2656678C6EE4571B84C9F635820AB583B0 value)
{
___8D231DD55FE1AD7631BBD0905A17D5EB616C2154_54 = value;
}
inline static int32_t get_offset_of_U38E10AC2F34545DFBBF3FCBC06055D797A8C99991_55() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8_StaticFields, ___8E10AC2F34545DFBBF3FCBC06055D797A8C99991_55)); }
inline __StaticArrayInitTypeSizeU3D40_t31DA647550534A2982671AD8E1F791854ABE4525 get_U38E10AC2F34545DFBBF3FCBC06055D797A8C99991_55() const { return ___8E10AC2F34545DFBBF3FCBC06055D797A8C99991_55; }
inline __StaticArrayInitTypeSizeU3D40_t31DA647550534A2982671AD8E1F791854ABE4525 * get_address_of_U38E10AC2F34545DFBBF3FCBC06055D797A8C99991_55() { return &___8E10AC2F34545DFBBF3FCBC06055D797A8C99991_55; }
inline void set_U38E10AC2F34545DFBBF3FCBC06055D797A8C99991_55(__StaticArrayInitTypeSizeU3D40_t31DA647550534A2982671AD8E1F791854ABE4525 value)
{
___8E10AC2F34545DFBBF3FCBC06055D797A8C99991_55 = value;
}
inline static int32_t get_offset_of_U393A63E90605400F34B49F0EB3361D23C89164BDA_56() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8_StaticFields, ___93A63E90605400F34B49F0EB3361D23C89164BDA_56)); }
inline __StaticArrayInitTypeSizeU3D12_t5FA9A9D9E4F196768B874B61DC1C6549CB34A584 get_U393A63E90605400F34B49F0EB3361D23C89164BDA_56() const { return ___93A63E90605400F34B49F0EB3361D23C89164BDA_56; }
inline __StaticArrayInitTypeSizeU3D12_t5FA9A9D9E4F196768B874B61DC1C6549CB34A584 * get_address_of_U393A63E90605400F34B49F0EB3361D23C89164BDA_56() { return &___93A63E90605400F34B49F0EB3361D23C89164BDA_56; }
inline void set_U393A63E90605400F34B49F0EB3361D23C89164BDA_56(__StaticArrayInitTypeSizeU3D12_t5FA9A9D9E4F196768B874B61DC1C6549CB34A584 value)
{
___93A63E90605400F34B49F0EB3361D23C89164BDA_56 = value;
}
inline static int32_t get_offset_of_U394841DD2F330CCB1089BF413E4FA9B04505152E2_57() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8_StaticFields, ___94841DD2F330CCB1089BF413E4FA9B04505152E2_57)); }
inline __StaticArrayInitTypeSizeU3D72_tFE5593C37377A26A806059B8620472A6E51E5AD2 get_U394841DD2F330CCB1089BF413E4FA9B04505152E2_57() const { return ___94841DD2F330CCB1089BF413E4FA9B04505152E2_57; }
inline __StaticArrayInitTypeSizeU3D72_tFE5593C37377A26A806059B8620472A6E51E5AD2 * get_address_of_U394841DD2F330CCB1089BF413E4FA9B04505152E2_57() { return &___94841DD2F330CCB1089BF413E4FA9B04505152E2_57; }
inline void set_U394841DD2F330CCB1089BF413E4FA9B04505152E2_57(__StaticArrayInitTypeSizeU3D72_tFE5593C37377A26A806059B8620472A6E51E5AD2 value)
{
___94841DD2F330CCB1089BF413E4FA9B04505152E2_57 = value;
}
inline static int32_t get_offset_of_U395264589E48F94B7857CFF398FB72A537E13EEE2_58() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8_StaticFields, ___95264589E48F94B7857CFF398FB72A537E13EEE2_58)); }
inline __StaticArrayInitTypeSizeU3D12_t5FA9A9D9E4F196768B874B61DC1C6549CB34A584 get_U395264589E48F94B7857CFF398FB72A537E13EEE2_58() const { return ___95264589E48F94B7857CFF398FB72A537E13EEE2_58; }
inline __StaticArrayInitTypeSizeU3D12_t5FA9A9D9E4F196768B874B61DC1C6549CB34A584 * get_address_of_U395264589E48F94B7857CFF398FB72A537E13EEE2_58() { return &___95264589E48F94B7857CFF398FB72A537E13EEE2_58; }
inline void set_U395264589E48F94B7857CFF398FB72A537E13EEE2_58(__StaticArrayInitTypeSizeU3D12_t5FA9A9D9E4F196768B874B61DC1C6549CB34A584 value)
{
___95264589E48F94B7857CFF398FB72A537E13EEE2_58 = value;
}
inline static int32_t get_offset_of_U395C48758CAE1715783472FB073AB158AB8A0AB2A_59() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8_StaticFields, ___95C48758CAE1715783472FB073AB158AB8A0AB2A_59)); }
inline __StaticArrayInitTypeSizeU3D72_tFE5593C37377A26A806059B8620472A6E51E5AD2 get_U395C48758CAE1715783472FB073AB158AB8A0AB2A_59() const { return ___95C48758CAE1715783472FB073AB158AB8A0AB2A_59; }
inline __StaticArrayInitTypeSizeU3D72_tFE5593C37377A26A806059B8620472A6E51E5AD2 * get_address_of_U395C48758CAE1715783472FB073AB158AB8A0AB2A_59() { return &___95C48758CAE1715783472FB073AB158AB8A0AB2A_59; }
inline void set_U395C48758CAE1715783472FB073AB158AB8A0AB2A_59(__StaticArrayInitTypeSizeU3D72_tFE5593C37377A26A806059B8620472A6E51E5AD2 value)
{
___95C48758CAE1715783472FB073AB158AB8A0AB2A_59 = value;
}
inline static int32_t get_offset_of_U3973417296623D8DC6961B09664E54039E44CA5D8_60() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8_StaticFields, ___973417296623D8DC6961B09664E54039E44CA5D8_60)); }
inline __StaticArrayInitTypeSizeU3D72_tFE5593C37377A26A806059B8620472A6E51E5AD2 get_U3973417296623D8DC6961B09664E54039E44CA5D8_60() const { return ___973417296623D8DC6961B09664E54039E44CA5D8_60; }
inline __StaticArrayInitTypeSizeU3D72_tFE5593C37377A26A806059B8620472A6E51E5AD2 * get_address_of_U3973417296623D8DC6961B09664E54039E44CA5D8_60() { return &___973417296623D8DC6961B09664E54039E44CA5D8_60; }
inline void set_U3973417296623D8DC6961B09664E54039E44CA5D8_60(__StaticArrayInitTypeSizeU3D72_tFE5593C37377A26A806059B8620472A6E51E5AD2 value)
{
___973417296623D8DC6961B09664E54039E44CA5D8_60 = value;
}
inline static int32_t get_offset_of_A0074C15377C0C870B055927403EA9FA7A349D12_61() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8_StaticFields, ___A0074C15377C0C870B055927403EA9FA7A349D12_61)); }
inline __StaticArrayInitTypeSizeU3D40_t31DA647550534A2982671AD8E1F791854ABE4525 get_A0074C15377C0C870B055927403EA9FA7A349D12_61() const { return ___A0074C15377C0C870B055927403EA9FA7A349D12_61; }
inline __StaticArrayInitTypeSizeU3D40_t31DA647550534A2982671AD8E1F791854ABE4525 * get_address_of_A0074C15377C0C870B055927403EA9FA7A349D12_61() { return &___A0074C15377C0C870B055927403EA9FA7A349D12_61; }
inline void set_A0074C15377C0C870B055927403EA9FA7A349D12_61(__StaticArrayInitTypeSizeU3D40_t31DA647550534A2982671AD8E1F791854ABE4525 value)
{
___A0074C15377C0C870B055927403EA9FA7A349D12_61 = value;
}
inline static int32_t get_offset_of_A1319B706116AB2C6D44483F60A7D0ACEA543396_62() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8_StaticFields, ___A1319B706116AB2C6D44483F60A7D0ACEA543396_62)); }
inline __StaticArrayInitTypeSizeU3D130_tF56FBBACF53AE9A551B962978B48A914536B6871 get_A1319B706116AB2C6D44483F60A7D0ACEA543396_62() const { return ___A1319B706116AB2C6D44483F60A7D0ACEA543396_62; }
inline __StaticArrayInitTypeSizeU3D130_tF56FBBACF53AE9A551B962978B48A914536B6871 * get_address_of_A1319B706116AB2C6D44483F60A7D0ACEA543396_62() { return &___A1319B706116AB2C6D44483F60A7D0ACEA543396_62; }
inline void set_A1319B706116AB2C6D44483F60A7D0ACEA543396_62(__StaticArrayInitTypeSizeU3D130_tF56FBBACF53AE9A551B962978B48A914536B6871 value)
{
___A1319B706116AB2C6D44483F60A7D0ACEA543396_62 = value;
}
inline static int32_t get_offset_of_A13AA52274D951A18029131A8DDECF76B569A15D_63() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8_StaticFields, ___A13AA52274D951A18029131A8DDECF76B569A15D_63)); }
inline int64_t get_A13AA52274D951A18029131A8DDECF76B569A15D_63() const { return ___A13AA52274D951A18029131A8DDECF76B569A15D_63; }
inline int64_t* get_address_of_A13AA52274D951A18029131A8DDECF76B569A15D_63() { return &___A13AA52274D951A18029131A8DDECF76B569A15D_63; }
inline void set_A13AA52274D951A18029131A8DDECF76B569A15D_63(int64_t value)
{
___A13AA52274D951A18029131A8DDECF76B569A15D_63 = value;
}
inline static int32_t get_offset_of_A5444763673307F6828C748D4B9708CFC02B0959_64() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8_StaticFields, ___A5444763673307F6828C748D4B9708CFC02B0959_64)); }
inline __StaticArrayInitTypeSizeU3D212_tA27E3A600D9E677116CCFCF5CB90C2DEF1951E43 get_A5444763673307F6828C748D4B9708CFC02B0959_64() const { return ___A5444763673307F6828C748D4B9708CFC02B0959_64; }
inline __StaticArrayInitTypeSizeU3D212_tA27E3A600D9E677116CCFCF5CB90C2DEF1951E43 * get_address_of_A5444763673307F6828C748D4B9708CFC02B0959_64() { return &___A5444763673307F6828C748D4B9708CFC02B0959_64; }
inline void set_A5444763673307F6828C748D4B9708CFC02B0959_64(__StaticArrayInitTypeSizeU3D212_tA27E3A600D9E677116CCFCF5CB90C2DEF1951E43 value)
{
___A5444763673307F6828C748D4B9708CFC02B0959_64 = value;
}
inline static int32_t get_offset_of_A6732F8E7FC23766AB329B492D6BF82E3B33233F_65() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8_StaticFields, ___A6732F8E7FC23766AB329B492D6BF82E3B33233F_65)); }
inline __StaticArrayInitTypeSizeU3D72_tFE5593C37377A26A806059B8620472A6E51E5AD2 get_A6732F8E7FC23766AB329B492D6BF82E3B33233F_65() const { return ___A6732F8E7FC23766AB329B492D6BF82E3B33233F_65; }
inline __StaticArrayInitTypeSizeU3D72_tFE5593C37377A26A806059B8620472A6E51E5AD2 * get_address_of_A6732F8E7FC23766AB329B492D6BF82E3B33233F_65() { return &___A6732F8E7FC23766AB329B492D6BF82E3B33233F_65; }
inline void set_A6732F8E7FC23766AB329B492D6BF82E3B33233F_65(__StaticArrayInitTypeSizeU3D72_tFE5593C37377A26A806059B8620472A6E51E5AD2 value)
{
___A6732F8E7FC23766AB329B492D6BF82E3B33233F_65 = value;
}
inline static int32_t get_offset_of_A705A106D95282BD15E13EEA6B0AF583FF786D83_66() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8_StaticFields, ___A705A106D95282BD15E13EEA6B0AF583FF786D83_66)); }
inline __StaticArrayInitTypeSizeU3D174_t5A6FEDE2414380A28FDFFA92ACA4EADB3693E337 get_A705A106D95282BD15E13EEA6B0AF583FF786D83_66() const { return ___A705A106D95282BD15E13EEA6B0AF583FF786D83_66; }
inline __StaticArrayInitTypeSizeU3D174_t5A6FEDE2414380A28FDFFA92ACA4EADB3693E337 * get_address_of_A705A106D95282BD15E13EEA6B0AF583FF786D83_66() { return &___A705A106D95282BD15E13EEA6B0AF583FF786D83_66; }
inline void set_A705A106D95282BD15E13EEA6B0AF583FF786D83_66(__StaticArrayInitTypeSizeU3D174_t5A6FEDE2414380A28FDFFA92ACA4EADB3693E337 value)
{
___A705A106D95282BD15E13EEA6B0AF583FF786D83_66 = value;
}
inline static int32_t get_offset_of_A8A491E4CED49AE0027560476C10D933CE70C8DF_67() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8_StaticFields, ___A8A491E4CED49AE0027560476C10D933CE70C8DF_67)); }
inline __StaticArrayInitTypeSizeU3D1018_tC210B7B033B7D52771288C82C8E6DA21074FF7F3 get_A8A491E4CED49AE0027560476C10D933CE70C8DF_67() const { return ___A8A491E4CED49AE0027560476C10D933CE70C8DF_67; }
inline __StaticArrayInitTypeSizeU3D1018_tC210B7B033B7D52771288C82C8E6DA21074FF7F3 * get_address_of_A8A491E4CED49AE0027560476C10D933CE70C8DF_67() { return &___A8A491E4CED49AE0027560476C10D933CE70C8DF_67; }
inline void set_A8A491E4CED49AE0027560476C10D933CE70C8DF_67(__StaticArrayInitTypeSizeU3D1018_tC210B7B033B7D52771288C82C8E6DA21074FF7F3 value)
{
___A8A491E4CED49AE0027560476C10D933CE70C8DF_67 = value;
}
inline static int32_t get_offset_of_AC791C4F39504D1184B73478943D0636258DA7B1_68() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8_StaticFields, ___AC791C4F39504D1184B73478943D0636258DA7B1_68)); }
inline __StaticArrayInitTypeSizeU3D72_tFE5593C37377A26A806059B8620472A6E51E5AD2 get_AC791C4F39504D1184B73478943D0636258DA7B1_68() const { return ___AC791C4F39504D1184B73478943D0636258DA7B1_68; }
inline __StaticArrayInitTypeSizeU3D72_tFE5593C37377A26A806059B8620472A6E51E5AD2 * get_address_of_AC791C4F39504D1184B73478943D0636258DA7B1_68() { return &___AC791C4F39504D1184B73478943D0636258DA7B1_68; }
inline void set_AC791C4F39504D1184B73478943D0636258DA7B1_68(__StaticArrayInitTypeSizeU3D72_tFE5593C37377A26A806059B8620472A6E51E5AD2 value)
{
___AC791C4F39504D1184B73478943D0636258DA7B1_68 = value;
}
inline static int32_t get_offset_of_AFCD4E1211233E99373A3367B23105A3D624B1F2_69() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8_StaticFields, ___AFCD4E1211233E99373A3367B23105A3D624B1F2_69)); }
inline __StaticArrayInitTypeSizeU3D52_t68C389D6C6894AE8F01E7C88DDD8CBDE317B23CD get_AFCD4E1211233E99373A3367B23105A3D624B1F2_69() const { return ___AFCD4E1211233E99373A3367B23105A3D624B1F2_69; }
inline __StaticArrayInitTypeSizeU3D52_t68C389D6C6894AE8F01E7C88DDD8CBDE317B23CD * get_address_of_AFCD4E1211233E99373A3367B23105A3D624B1F2_69() { return &___AFCD4E1211233E99373A3367B23105A3D624B1F2_69; }
inline void set_AFCD4E1211233E99373A3367B23105A3D624B1F2_69(__StaticArrayInitTypeSizeU3D52_t68C389D6C6894AE8F01E7C88DDD8CBDE317B23CD value)
{
___AFCD4E1211233E99373A3367B23105A3D624B1F2_69 = value;
}
inline static int32_t get_offset_of_B472ED77CB3B2A66D49D179F1EE2081B70A6AB61_70() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8_StaticFields, ___B472ED77CB3B2A66D49D179F1EE2081B70A6AB61_70)); }
inline __StaticArrayInitTypeSizeU3D40_t31DA647550534A2982671AD8E1F791854ABE4525 get_B472ED77CB3B2A66D49D179F1EE2081B70A6AB61_70() const { return ___B472ED77CB3B2A66D49D179F1EE2081B70A6AB61_70; }
inline __StaticArrayInitTypeSizeU3D40_t31DA647550534A2982671AD8E1F791854ABE4525 * get_address_of_B472ED77CB3B2A66D49D179F1EE2081B70A6AB61_70() { return &___B472ED77CB3B2A66D49D179F1EE2081B70A6AB61_70; }
inline void set_B472ED77CB3B2A66D49D179F1EE2081B70A6AB61_70(__StaticArrayInitTypeSizeU3D40_t31DA647550534A2982671AD8E1F791854ABE4525 value)
{
___B472ED77CB3B2A66D49D179F1EE2081B70A6AB61_70 = value;
}
inline static int32_t get_offset_of_B53A2C6DF21FC88B17AEFC40EB895B8D63210CDF_71() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8_StaticFields, ___B53A2C6DF21FC88B17AEFC40EB895B8D63210CDF_71)); }
inline __StaticArrayInitTypeSizeU3D256_t11D9B162886459BA6BCD63DB255358502735B7A3 get_B53A2C6DF21FC88B17AEFC40EB895B8D63210CDF_71() const { return ___B53A2C6DF21FC88B17AEFC40EB895B8D63210CDF_71; }
inline __StaticArrayInitTypeSizeU3D256_t11D9B162886459BA6BCD63DB255358502735B7A3 * get_address_of_B53A2C6DF21FC88B17AEFC40EB895B8D63210CDF_71() { return &___B53A2C6DF21FC88B17AEFC40EB895B8D63210CDF_71; }
inline void set_B53A2C6DF21FC88B17AEFC40EB895B8D63210CDF_71(__StaticArrayInitTypeSizeU3D256_t11D9B162886459BA6BCD63DB255358502735B7A3 value)
{
___B53A2C6DF21FC88B17AEFC40EB895B8D63210CDF_71 = value;
}
inline static int32_t get_offset_of_B881DA88BE0B68D8A6B6B6893822586B8B2CFC45_72() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8_StaticFields, ___B881DA88BE0B68D8A6B6B6893822586B8B2CFC45_72)); }
inline __StaticArrayInitTypeSizeU3D998_t4B160A0C233D0CAB065432B008AFE2E02CF05C4D get_B881DA88BE0B68D8A6B6B6893822586B8B2CFC45_72() const { return ___B881DA88BE0B68D8A6B6B6893822586B8B2CFC45_72; }
inline __StaticArrayInitTypeSizeU3D998_t4B160A0C233D0CAB065432B008AFE2E02CF05C4D * get_address_of_B881DA88BE0B68D8A6B6B6893822586B8B2CFC45_72() { return &___B881DA88BE0B68D8A6B6B6893822586B8B2CFC45_72; }
inline void set_B881DA88BE0B68D8A6B6B6893822586B8B2CFC45_72(__StaticArrayInitTypeSizeU3D998_t4B160A0C233D0CAB065432B008AFE2E02CF05C4D value)
{
___B881DA88BE0B68D8A6B6B6893822586B8B2CFC45_72 = value;
}
inline static int32_t get_offset_of_B8864ACB9DD69E3D42151513C840AAE270BF21C8_73() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8_StaticFields, ___B8864ACB9DD69E3D42151513C840AAE270BF21C8_73)); }
inline __StaticArrayInitTypeSizeU3D162_t11E10480FC4E2E4875323D07CD37B68D7040BD28 get_B8864ACB9DD69E3D42151513C840AAE270BF21C8_73() const { return ___B8864ACB9DD69E3D42151513C840AAE270BF21C8_73; }
inline __StaticArrayInitTypeSizeU3D162_t11E10480FC4E2E4875323D07CD37B68D7040BD28 * get_address_of_B8864ACB9DD69E3D42151513C840AAE270BF21C8_73() { return &___B8864ACB9DD69E3D42151513C840AAE270BF21C8_73; }
inline void set_B8864ACB9DD69E3D42151513C840AAE270BF21C8_73(__StaticArrayInitTypeSizeU3D162_t11E10480FC4E2E4875323D07CD37B68D7040BD28 value)
{
___B8864ACB9DD69E3D42151513C840AAE270BF21C8_73 = value;
}
inline static int32_t get_offset_of_B8F87834C3597B2EEF22BA6D3A392CC925636401_74() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8_StaticFields, ___B8F87834C3597B2EEF22BA6D3A392CC925636401_74)); }
inline __StaticArrayInitTypeSizeU3D360_t0E9DE21DD2818B844977C0B5AEFD0AF5FA812D79 get_B8F87834C3597B2EEF22BA6D3A392CC925636401_74() const { return ___B8F87834C3597B2EEF22BA6D3A392CC925636401_74; }
inline __StaticArrayInitTypeSizeU3D360_t0E9DE21DD2818B844977C0B5AEFD0AF5FA812D79 * get_address_of_B8F87834C3597B2EEF22BA6D3A392CC925636401_74() { return &___B8F87834C3597B2EEF22BA6D3A392CC925636401_74; }
inline void set_B8F87834C3597B2EEF22BA6D3A392CC925636401_74(__StaticArrayInitTypeSizeU3D360_t0E9DE21DD2818B844977C0B5AEFD0AF5FA812D79 value)
{
___B8F87834C3597B2EEF22BA6D3A392CC925636401_74 = value;
}
inline static int32_t get_offset_of_B9B670F134A59FB1107AF01A9FE8F8E3980B3093_75() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8_StaticFields, ___B9B670F134A59FB1107AF01A9FE8F8E3980B3093_75)); }
inline __StaticArrayInitTypeSizeU3D72_tFE5593C37377A26A806059B8620472A6E51E5AD2 get_B9B670F134A59FB1107AF01A9FE8F8E3980B3093_75() const { return ___B9B670F134A59FB1107AF01A9FE8F8E3980B3093_75; }
inline __StaticArrayInitTypeSizeU3D72_tFE5593C37377A26A806059B8620472A6E51E5AD2 * get_address_of_B9B670F134A59FB1107AF01A9FE8F8E3980B3093_75() { return &___B9B670F134A59FB1107AF01A9FE8F8E3980B3093_75; }
inline void set_B9B670F134A59FB1107AF01A9FE8F8E3980B3093_75(__StaticArrayInitTypeSizeU3D72_tFE5593C37377A26A806059B8620472A6E51E5AD2 value)
{
___B9B670F134A59FB1107AF01A9FE8F8E3980B3093_75 = value;
}
inline static int32_t get_offset_of_BEBC9ECC660A13EFC359BA3383411F698CFF25DB_76() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8_StaticFields, ___BEBC9ECC660A13EFC359BA3383411F698CFF25DB_76)); }
inline __StaticArrayInitTypeSizeU3D72_tFE5593C37377A26A806059B8620472A6E51E5AD2 get_BEBC9ECC660A13EFC359BA3383411F698CFF25DB_76() const { return ___BEBC9ECC660A13EFC359BA3383411F698CFF25DB_76; }
inline __StaticArrayInitTypeSizeU3D72_tFE5593C37377A26A806059B8620472A6E51E5AD2 * get_address_of_BEBC9ECC660A13EFC359BA3383411F698CFF25DB_76() { return &___BEBC9ECC660A13EFC359BA3383411F698CFF25DB_76; }
inline void set_BEBC9ECC660A13EFC359BA3383411F698CFF25DB_76(__StaticArrayInitTypeSizeU3D72_tFE5593C37377A26A806059B8620472A6E51E5AD2 value)
{
___BEBC9ECC660A13EFC359BA3383411F698CFF25DB_76 = value;
}
inline static int32_t get_offset_of_BEE1CFE5DFAA408E14CE4AF4DCD824FA2E42DCB7_77() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8_StaticFields, ___BEE1CFE5DFAA408E14CE4AF4DCD824FA2E42DCB7_77)); }
inline __StaticArrayInitTypeSizeU3D40_t31DA647550534A2982671AD8E1F791854ABE4525 get_BEE1CFE5DFAA408E14CE4AF4DCD824FA2E42DCB7_77() const { return ___BEE1CFE5DFAA408E14CE4AF4DCD824FA2E42DCB7_77; }
inline __StaticArrayInitTypeSizeU3D40_t31DA647550534A2982671AD8E1F791854ABE4525 * get_address_of_BEE1CFE5DFAA408E14CE4AF4DCD824FA2E42DCB7_77() { return &___BEE1CFE5DFAA408E14CE4AF4DCD824FA2E42DCB7_77; }
inline void set_BEE1CFE5DFAA408E14CE4AF4DCD824FA2E42DCB7_77(__StaticArrayInitTypeSizeU3D40_t31DA647550534A2982671AD8E1F791854ABE4525 value)
{
___BEE1CFE5DFAA408E14CE4AF4DCD824FA2E42DCB7_77 = value;
}
inline static int32_t get_offset_of_BF5EB60806ECB74EE484105DD9D6F463BF994867_78() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8_StaticFields, ___BF5EB60806ECB74EE484105DD9D6F463BF994867_78)); }
inline __StaticArrayInitTypeSizeU3D6_tDBD6E107ED6E71EDDDBFD5023C1C5C3EE71A6A23 get_BF5EB60806ECB74EE484105DD9D6F463BF994867_78() const { return ___BF5EB60806ECB74EE484105DD9D6F463BF994867_78; }
inline __StaticArrayInitTypeSizeU3D6_tDBD6E107ED6E71EDDDBFD5023C1C5C3EE71A6A23 * get_address_of_BF5EB60806ECB74EE484105DD9D6F463BF994867_78() { return &___BF5EB60806ECB74EE484105DD9D6F463BF994867_78; }
inline void set_BF5EB60806ECB74EE484105DD9D6F463BF994867_78(__StaticArrayInitTypeSizeU3D6_tDBD6E107ED6E71EDDDBFD5023C1C5C3EE71A6A23 value)
{
___BF5EB60806ECB74EE484105DD9D6F463BF994867_78 = value;
}
inline static int32_t get_offset_of_C1A1100642BA9685B30A84D97348484E14AA1865_79() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8_StaticFields, ___C1A1100642BA9685B30A84D97348484E14AA1865_79)); }
inline int64_t get_C1A1100642BA9685B30A84D97348484E14AA1865_79() const { return ___C1A1100642BA9685B30A84D97348484E14AA1865_79; }
inline int64_t* get_address_of_C1A1100642BA9685B30A84D97348484E14AA1865_79() { return &___C1A1100642BA9685B30A84D97348484E14AA1865_79; }
inline void set_C1A1100642BA9685B30A84D97348484E14AA1865_79(int64_t value)
{
___C1A1100642BA9685B30A84D97348484E14AA1865_79 = value;
}
inline static int32_t get_offset_of_C6F364A0AD934EFED8909446C215752E565D77C1_80() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8_StaticFields, ___C6F364A0AD934EFED8909446C215752E565D77C1_80)); }
inline __StaticArrayInitTypeSizeU3D16_t9CE40E2FB4B486181F720F48DD733A3EAFFD6F26 get_C6F364A0AD934EFED8909446C215752E565D77C1_80() const { return ___C6F364A0AD934EFED8909446C215752E565D77C1_80; }
inline __StaticArrayInitTypeSizeU3D16_t9CE40E2FB4B486181F720F48DD733A3EAFFD6F26 * get_address_of_C6F364A0AD934EFED8909446C215752E565D77C1_80() { return &___C6F364A0AD934EFED8909446C215752E565D77C1_80; }
inline void set_C6F364A0AD934EFED8909446C215752E565D77C1_80(__StaticArrayInitTypeSizeU3D16_t9CE40E2FB4B486181F720F48DD733A3EAFFD6F26 value)
{
___C6F364A0AD934EFED8909446C215752E565D77C1_80 = value;
}
inline static int32_t get_offset_of_CE5835130F5277F63D716FC9115526B0AC68FFAD_81() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8_StaticFields, ___CE5835130F5277F63D716FC9115526B0AC68FFAD_81)); }
inline __StaticArrayInitTypeSizeU3D174_t5A6FEDE2414380A28FDFFA92ACA4EADB3693E337 get_CE5835130F5277F63D716FC9115526B0AC68FFAD_81() const { return ___CE5835130F5277F63D716FC9115526B0AC68FFAD_81; }
inline __StaticArrayInitTypeSizeU3D174_t5A6FEDE2414380A28FDFFA92ACA4EADB3693E337 * get_address_of_CE5835130F5277F63D716FC9115526B0AC68FFAD_81() { return &___CE5835130F5277F63D716FC9115526B0AC68FFAD_81; }
inline void set_CE5835130F5277F63D716FC9115526B0AC68FFAD_81(__StaticArrayInitTypeSizeU3D174_t5A6FEDE2414380A28FDFFA92ACA4EADB3693E337 value)
{
___CE5835130F5277F63D716FC9115526B0AC68FFAD_81 = value;
}
inline static int32_t get_offset_of_CE93C35B755802BC4B3D180716B048FC61701EF7_82() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8_StaticFields, ___CE93C35B755802BC4B3D180716B048FC61701EF7_82)); }
inline __StaticArrayInitTypeSizeU3D6_tDBD6E107ED6E71EDDDBFD5023C1C5C3EE71A6A23 get_CE93C35B755802BC4B3D180716B048FC61701EF7_82() const { return ___CE93C35B755802BC4B3D180716B048FC61701EF7_82; }
inline __StaticArrayInitTypeSizeU3D6_tDBD6E107ED6E71EDDDBFD5023C1C5C3EE71A6A23 * get_address_of_CE93C35B755802BC4B3D180716B048FC61701EF7_82() { return &___CE93C35B755802BC4B3D180716B048FC61701EF7_82; }
inline void set_CE93C35B755802BC4B3D180716B048FC61701EF7_82(__StaticArrayInitTypeSizeU3D6_tDBD6E107ED6E71EDDDBFD5023C1C5C3EE71A6A23 value)
{
___CE93C35B755802BC4B3D180716B048FC61701EF7_82 = value;
}
inline static int32_t get_offset_of_D117188BE8D4609C0D531C51B0BB911A4219DEBE_83() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8_StaticFields, ___D117188BE8D4609C0D531C51B0BB911A4219DEBE_83)); }
inline __StaticArrayInitTypeSizeU3D32_t99C29E8FAFAAE5B1E3F1CB981F557B0AA62EA81B get_D117188BE8D4609C0D531C51B0BB911A4219DEBE_83() const { return ___D117188BE8D4609C0D531C51B0BB911A4219DEBE_83; }
inline __StaticArrayInitTypeSizeU3D32_t99C29E8FAFAAE5B1E3F1CB981F557B0AA62EA81B * get_address_of_D117188BE8D4609C0D531C51B0BB911A4219DEBE_83() { return &___D117188BE8D4609C0D531C51B0BB911A4219DEBE_83; }
inline void set_D117188BE8D4609C0D531C51B0BB911A4219DEBE_83(__StaticArrayInitTypeSizeU3D32_t99C29E8FAFAAE5B1E3F1CB981F557B0AA62EA81B value)
{
___D117188BE8D4609C0D531C51B0BB911A4219DEBE_83 = value;
}
inline static int32_t get_offset_of_D78D08081C7A5AD6FBA7A8DC86BCD6D7A577C636_84() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8_StaticFields, ___D78D08081C7A5AD6FBA7A8DC86BCD6D7A577C636_84)); }
inline __StaticArrayInitTypeSizeU3D44_t2C34FCD1B7CA98AF1BE52ED77A663AFA9401C5D5 get_D78D08081C7A5AD6FBA7A8DC86BCD6D7A577C636_84() const { return ___D78D08081C7A5AD6FBA7A8DC86BCD6D7A577C636_84; }
inline __StaticArrayInitTypeSizeU3D44_t2C34FCD1B7CA98AF1BE52ED77A663AFA9401C5D5 * get_address_of_D78D08081C7A5AD6FBA7A8DC86BCD6D7A577C636_84() { return &___D78D08081C7A5AD6FBA7A8DC86BCD6D7A577C636_84; }
inline void set_D78D08081C7A5AD6FBA7A8DC86BCD6D7A577C636_84(__StaticArrayInitTypeSizeU3D44_t2C34FCD1B7CA98AF1BE52ED77A663AFA9401C5D5 value)
{
___D78D08081C7A5AD6FBA7A8DC86BCD6D7A577C636_84 = value;
}
inline static int32_t get_offset_of_DA19DB47B583EFCF7825D2E39D661D2354F28219_85() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8_StaticFields, ___DA19DB47B583EFCF7825D2E39D661D2354F28219_85)); }
inline __StaticArrayInitTypeSizeU3D76_tFC0C1E62400632DF6EBD5465D74B1851DAC47C60 get_DA19DB47B583EFCF7825D2E39D661D2354F28219_85() const { return ___DA19DB47B583EFCF7825D2E39D661D2354F28219_85; }
inline __StaticArrayInitTypeSizeU3D76_tFC0C1E62400632DF6EBD5465D74B1851DAC47C60 * get_address_of_DA19DB47B583EFCF7825D2E39D661D2354F28219_85() { return &___DA19DB47B583EFCF7825D2E39D661D2354F28219_85; }
inline void set_DA19DB47B583EFCF7825D2E39D661D2354F28219_85(__StaticArrayInitTypeSizeU3D76_tFC0C1E62400632DF6EBD5465D74B1851DAC47C60 value)
{
___DA19DB47B583EFCF7825D2E39D661D2354F28219_85 = value;
}
inline static int32_t get_offset_of_DD3AEFEADB1CD615F3017763F1568179FEE640B0_86() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8_StaticFields, ___DD3AEFEADB1CD615F3017763F1568179FEE640B0_86)); }
inline __StaticArrayInitTypeSizeU3D52_t68C389D6C6894AE8F01E7C88DDD8CBDE317B23CD get_DD3AEFEADB1CD615F3017763F1568179FEE640B0_86() const { return ___DD3AEFEADB1CD615F3017763F1568179FEE640B0_86; }
inline __StaticArrayInitTypeSizeU3D52_t68C389D6C6894AE8F01E7C88DDD8CBDE317B23CD * get_address_of_DD3AEFEADB1CD615F3017763F1568179FEE640B0_86() { return &___DD3AEFEADB1CD615F3017763F1568179FEE640B0_86; }
inline void set_DD3AEFEADB1CD615F3017763F1568179FEE640B0_86(__StaticArrayInitTypeSizeU3D52_t68C389D6C6894AE8F01E7C88DDD8CBDE317B23CD value)
{
___DD3AEFEADB1CD615F3017763F1568179FEE640B0_86 = value;
}
inline static int32_t get_offset_of_E1827270A5FE1C85F5352A66FD87BA747213D006_87() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8_StaticFields, ___E1827270A5FE1C85F5352A66FD87BA747213D006_87)); }
inline __StaticArrayInitTypeSizeU3D36_t46D2C2EA131D6126B945EA1E0993E0EE8AACC3CA get_E1827270A5FE1C85F5352A66FD87BA747213D006_87() const { return ___E1827270A5FE1C85F5352A66FD87BA747213D006_87; }
inline __StaticArrayInitTypeSizeU3D36_t46D2C2EA131D6126B945EA1E0993E0EE8AACC3CA * get_address_of_E1827270A5FE1C85F5352A66FD87BA747213D006_87() { return &___E1827270A5FE1C85F5352A66FD87BA747213D006_87; }
inline void set_E1827270A5FE1C85F5352A66FD87BA747213D006_87(__StaticArrayInitTypeSizeU3D36_t46D2C2EA131D6126B945EA1E0993E0EE8AACC3CA value)
{
___E1827270A5FE1C85F5352A66FD87BA747213D006_87 = value;
}
inline static int32_t get_offset_of_E45BAB43F7D5D038672B3E3431F92E34A7AF2571_88() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8_StaticFields, ___E45BAB43F7D5D038672B3E3431F92E34A7AF2571_88)); }
inline __StaticArrayInitTypeSizeU3D40_t31DA647550534A2982671AD8E1F791854ABE4525 get_E45BAB43F7D5D038672B3E3431F92E34A7AF2571_88() const { return ___E45BAB43F7D5D038672B3E3431F92E34A7AF2571_88; }
inline __StaticArrayInitTypeSizeU3D40_t31DA647550534A2982671AD8E1F791854ABE4525 * get_address_of_E45BAB43F7D5D038672B3E3431F92E34A7AF2571_88() { return &___E45BAB43F7D5D038672B3E3431F92E34A7AF2571_88; }
inline void set_E45BAB43F7D5D038672B3E3431F92E34A7AF2571_88(__StaticArrayInitTypeSizeU3D40_t31DA647550534A2982671AD8E1F791854ABE4525 value)
{
___E45BAB43F7D5D038672B3E3431F92E34A7AF2571_88 = value;
}
inline static int32_t get_offset_of_E92B39D8233061927D9ACDE54665E68E7535635A_89() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8_StaticFields, ___E92B39D8233061927D9ACDE54665E68E7535635A_89)); }
inline __StaticArrayInitTypeSizeU3D52_t68C389D6C6894AE8F01E7C88DDD8CBDE317B23CD get_E92B39D8233061927D9ACDE54665E68E7535635A_89() const { return ___E92B39D8233061927D9ACDE54665E68E7535635A_89; }
inline __StaticArrayInitTypeSizeU3D52_t68C389D6C6894AE8F01E7C88DDD8CBDE317B23CD * get_address_of_E92B39D8233061927D9ACDE54665E68E7535635A_89() { return &___E92B39D8233061927D9ACDE54665E68E7535635A_89; }
inline void set_E92B39D8233061927D9ACDE54665E68E7535635A_89(__StaticArrayInitTypeSizeU3D52_t68C389D6C6894AE8F01E7C88DDD8CBDE317B23CD value)
{
___E92B39D8233061927D9ACDE54665E68E7535635A_89 = value;
}
inline static int32_t get_offset_of_EA9506959484C55CFE0C139C624DF6060E285866_90() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8_StaticFields, ___EA9506959484C55CFE0C139C624DF6060E285866_90)); }
inline __StaticArrayInitTypeSizeU3D12_t5FA9A9D9E4F196768B874B61DC1C6549CB34A584 get_EA9506959484C55CFE0C139C624DF6060E285866_90() const { return ___EA9506959484C55CFE0C139C624DF6060E285866_90; }
inline __StaticArrayInitTypeSizeU3D12_t5FA9A9D9E4F196768B874B61DC1C6549CB34A584 * get_address_of_EA9506959484C55CFE0C139C624DF6060E285866_90() { return &___EA9506959484C55CFE0C139C624DF6060E285866_90; }
inline void set_EA9506959484C55CFE0C139C624DF6060E285866_90(__StaticArrayInitTypeSizeU3D12_t5FA9A9D9E4F196768B874B61DC1C6549CB34A584 value)
{
___EA9506959484C55CFE0C139C624DF6060E285866_90 = value;
}
inline static int32_t get_offset_of_EB5E9A80A40096AB74D2E226650C7258D7BC5E9D_91() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8_StaticFields, ___EB5E9A80A40096AB74D2E226650C7258D7BC5E9D_91)); }
inline __StaticArrayInitTypeSizeU3D262_tF74EA0E2AEDDD20898E5779445ABF7802D23911A get_EB5E9A80A40096AB74D2E226650C7258D7BC5E9D_91() const { return ___EB5E9A80A40096AB74D2E226650C7258D7BC5E9D_91; }
inline __StaticArrayInitTypeSizeU3D262_tF74EA0E2AEDDD20898E5779445ABF7802D23911A * get_address_of_EB5E9A80A40096AB74D2E226650C7258D7BC5E9D_91() { return &___EB5E9A80A40096AB74D2E226650C7258D7BC5E9D_91; }
inline void set_EB5E9A80A40096AB74D2E226650C7258D7BC5E9D_91(__StaticArrayInitTypeSizeU3D262_tF74EA0E2AEDDD20898E5779445ABF7802D23911A value)
{
___EB5E9A80A40096AB74D2E226650C7258D7BC5E9D_91 = value;
}
inline static int32_t get_offset_of_EBF68F411848D603D059DFDEA2321C5A5EA78044_92() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8_StaticFields, ___EBF68F411848D603D059DFDEA2321C5A5EA78044_92)); }
inline __StaticArrayInitTypeSizeU3D64_t7C93E4AFB43BF13F84D563CFD17E5011B9721668 get_EBF68F411848D603D059DFDEA2321C5A5EA78044_92() const { return ___EBF68F411848D603D059DFDEA2321C5A5EA78044_92; }
inline __StaticArrayInitTypeSizeU3D64_t7C93E4AFB43BF13F84D563CFD17E5011B9721668 * get_address_of_EBF68F411848D603D059DFDEA2321C5A5EA78044_92() { return &___EBF68F411848D603D059DFDEA2321C5A5EA78044_92; }
inline void set_EBF68F411848D603D059DFDEA2321C5A5EA78044_92(__StaticArrayInitTypeSizeU3D64_t7C93E4AFB43BF13F84D563CFD17E5011B9721668 value)
{
___EBF68F411848D603D059DFDEA2321C5A5EA78044_92 = value;
}
inline static int32_t get_offset_of_EC89C317EA2BF49A70EFF5E89C691E34733D7C37_93() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8_StaticFields, ___EC89C317EA2BF49A70EFF5E89C691E34733D7C37_93)); }
inline __StaticArrayInitTypeSizeU3D72_tFE5593C37377A26A806059B8620472A6E51E5AD2 get_EC89C317EA2BF49A70EFF5E89C691E34733D7C37_93() const { return ___EC89C317EA2BF49A70EFF5E89C691E34733D7C37_93; }
inline __StaticArrayInitTypeSizeU3D72_tFE5593C37377A26A806059B8620472A6E51E5AD2 * get_address_of_EC89C317EA2BF49A70EFF5E89C691E34733D7C37_93() { return &___EC89C317EA2BF49A70EFF5E89C691E34733D7C37_93; }
inline void set_EC89C317EA2BF49A70EFF5E89C691E34733D7C37_93(__StaticArrayInitTypeSizeU3D72_tFE5593C37377A26A806059B8620472A6E51E5AD2 value)
{
___EC89C317EA2BF49A70EFF5E89C691E34733D7C37_93 = value;
}
inline static int32_t get_offset_of_F06E829E62F3AFBC045D064E10A4F5DF7C969612_94() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8_StaticFields, ___F06E829E62F3AFBC045D064E10A4F5DF7C969612_94)); }
inline __StaticArrayInitTypeSizeU3D40_t31DA647550534A2982671AD8E1F791854ABE4525 get_F06E829E62F3AFBC045D064E10A4F5DF7C969612_94() const { return ___F06E829E62F3AFBC045D064E10A4F5DF7C969612_94; }
inline __StaticArrayInitTypeSizeU3D40_t31DA647550534A2982671AD8E1F791854ABE4525 * get_address_of_F06E829E62F3AFBC045D064E10A4F5DF7C969612_94() { return &___F06E829E62F3AFBC045D064E10A4F5DF7C969612_94; }
inline void set_F06E829E62F3AFBC045D064E10A4F5DF7C969612_94(__StaticArrayInitTypeSizeU3D40_t31DA647550534A2982671AD8E1F791854ABE4525 value)
{
___F06E829E62F3AFBC045D064E10A4F5DF7C969612_94 = value;
}
inline static int32_t get_offset_of_F073AA332018FDA0D572E99448FFF1D6422BD520_95() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8_StaticFields, ___F073AA332018FDA0D572E99448FFF1D6422BD520_95)); }
inline __StaticArrayInitTypeSizeU3D11614_t7947936AE0A455E7877908DB7A291DEE37965F6F get_F073AA332018FDA0D572E99448FFF1D6422BD520_95() const { return ___F073AA332018FDA0D572E99448FFF1D6422BD520_95; }
inline __StaticArrayInitTypeSizeU3D11614_t7947936AE0A455E7877908DB7A291DEE37965F6F * get_address_of_F073AA332018FDA0D572E99448FFF1D6422BD520_95() { return &___F073AA332018FDA0D572E99448FFF1D6422BD520_95; }
inline void set_F073AA332018FDA0D572E99448FFF1D6422BD520_95(__StaticArrayInitTypeSizeU3D11614_t7947936AE0A455E7877908DB7A291DEE37965F6F value)
{
___F073AA332018FDA0D572E99448FFF1D6422BD520_95 = value;
}
inline static int32_t get_offset_of_F34B0E10653402E8F788F8BC3F7CD7090928A429_96() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8_StaticFields, ___F34B0E10653402E8F788F8BC3F7CD7090928A429_96)); }
inline __StaticArrayInitTypeSizeU3D120_t13A2E28354D3A542E1A2AD289B7970CE8BF64CE1 get_F34B0E10653402E8F788F8BC3F7CD7090928A429_96() const { return ___F34B0E10653402E8F788F8BC3F7CD7090928A429_96; }
inline __StaticArrayInitTypeSizeU3D120_t13A2E28354D3A542E1A2AD289B7970CE8BF64CE1 * get_address_of_F34B0E10653402E8F788F8BC3F7CD7090928A429_96() { return &___F34B0E10653402E8F788F8BC3F7CD7090928A429_96; }
inline void set_F34B0E10653402E8F788F8BC3F7CD7090928A429_96(__StaticArrayInitTypeSizeU3D120_t13A2E28354D3A542E1A2AD289B7970CE8BF64CE1 value)
{
___F34B0E10653402E8F788F8BC3F7CD7090928A429_96 = value;
}
inline static int32_t get_offset_of_F37E34BEADB04F34FCC31078A59F49856CA83D5B_97() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8_StaticFields, ___F37E34BEADB04F34FCC31078A59F49856CA83D5B_97)); }
inline __StaticArrayInitTypeSizeU3D72_tFE5593C37377A26A806059B8620472A6E51E5AD2 get_F37E34BEADB04F34FCC31078A59F49856CA83D5B_97() const { return ___F37E34BEADB04F34FCC31078A59F49856CA83D5B_97; }
inline __StaticArrayInitTypeSizeU3D72_tFE5593C37377A26A806059B8620472A6E51E5AD2 * get_address_of_F37E34BEADB04F34FCC31078A59F49856CA83D5B_97() { return &___F37E34BEADB04F34FCC31078A59F49856CA83D5B_97; }
inline void set_F37E34BEADB04F34FCC31078A59F49856CA83D5B_97(__StaticArrayInitTypeSizeU3D72_tFE5593C37377A26A806059B8620472A6E51E5AD2 value)
{
___F37E34BEADB04F34FCC31078A59F49856CA83D5B_97 = value;
}
inline static int32_t get_offset_of_F512A9ABF88066AAEB92684F95CC05D8101B462B_98() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8_StaticFields, ___F512A9ABF88066AAEB92684F95CC05D8101B462B_98)); }
inline __StaticArrayInitTypeSizeU3D94_t52D6560B7A2023DDDFDCF4D8F6C226742520B4C7 get_F512A9ABF88066AAEB92684F95CC05D8101B462B_98() const { return ___F512A9ABF88066AAEB92684F95CC05D8101B462B_98; }
inline __StaticArrayInitTypeSizeU3D94_t52D6560B7A2023DDDFDCF4D8F6C226742520B4C7 * get_address_of_F512A9ABF88066AAEB92684F95CC05D8101B462B_98() { return &___F512A9ABF88066AAEB92684F95CC05D8101B462B_98; }
inline void set_F512A9ABF88066AAEB92684F95CC05D8101B462B_98(__StaticArrayInitTypeSizeU3D94_t52D6560B7A2023DDDFDCF4D8F6C226742520B4C7 value)
{
___F512A9ABF88066AAEB92684F95CC05D8101B462B_98 = value;
}
inline static int32_t get_offset_of_F8FAABB821300AA500C2CEC6091B3782A7FB44A4_99() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8_StaticFields, ___F8FAABB821300AA500C2CEC6091B3782A7FB44A4_99)); }
inline __StaticArrayInitTypeSizeU3D12_t5FA9A9D9E4F196768B874B61DC1C6549CB34A584 get_F8FAABB821300AA500C2CEC6091B3782A7FB44A4_99() const { return ___F8FAABB821300AA500C2CEC6091B3782A7FB44A4_99; }
inline __StaticArrayInitTypeSizeU3D12_t5FA9A9D9E4F196768B874B61DC1C6549CB34A584 * get_address_of_F8FAABB821300AA500C2CEC6091B3782A7FB44A4_99() { return &___F8FAABB821300AA500C2CEC6091B3782A7FB44A4_99; }
inline void set_F8FAABB821300AA500C2CEC6091B3782A7FB44A4_99(__StaticArrayInitTypeSizeU3D12_t5FA9A9D9E4F196768B874B61DC1C6549CB34A584 value)
{
___F8FAABB821300AA500C2CEC6091B3782A7FB44A4_99 = value;
}
inline static int32_t get_offset_of_FCBD2781A933F0828ED4AAF88FD8B08D76DDD49B_100() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8_StaticFields, ___FCBD2781A933F0828ED4AAF88FD8B08D76DDD49B_100)); }
inline __StaticArrayInitTypeSizeU3D2350_t029525D9BCF84611FB610B9E4D13EE898E0B055D get_FCBD2781A933F0828ED4AAF88FD8B08D76DDD49B_100() const { return ___FCBD2781A933F0828ED4AAF88FD8B08D76DDD49B_100; }
inline __StaticArrayInitTypeSizeU3D2350_t029525D9BCF84611FB610B9E4D13EE898E0B055D * get_address_of_FCBD2781A933F0828ED4AAF88FD8B08D76DDD49B_100() { return &___FCBD2781A933F0828ED4AAF88FD8B08D76DDD49B_100; }
inline void set_FCBD2781A933F0828ED4AAF88FD8B08D76DDD49B_100(__StaticArrayInitTypeSizeU3D2350_t029525D9BCF84611FB610B9E4D13EE898E0B055D value)
{
___FCBD2781A933F0828ED4AAF88FD8B08D76DDD49B_100 = value;
}
};
// System.ByteEnum
struct ByteEnum_t39285A9D8C7F88982FF718C04A9FA1AE64827307
{
public:
// System.Byte System.ByteEnum::value__
uint8_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ByteEnum_t39285A9D8C7F88982FF718C04A9FA1AE64827307, ___value___2)); }
inline uint8_t get_value___2() const { return ___value___2; }
inline uint8_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(uint8_t value)
{
___value___2 = value;
}
};
// System.Collections.Hashtable
struct Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC : public RuntimeObject
{
public:
// System.Collections.Hashtable_bucket[] System.Collections.Hashtable::buckets
bucketU5BU5D_tFE956DAEFB1D1C86A13EF247D7367BF60B55E190* ___buckets_0;
// System.Int32 System.Collections.Hashtable::count
int32_t ___count_1;
// System.Int32 System.Collections.Hashtable::occupancy
int32_t ___occupancy_2;
// System.Int32 System.Collections.Hashtable::loadsize
int32_t ___loadsize_3;
// System.Single System.Collections.Hashtable::loadFactor
float ___loadFactor_4;
// System.Int32 modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Hashtable::version
int32_t ___version_5;
// System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Hashtable::isWriterInProgress
bool ___isWriterInProgress_6;
// System.Collections.ICollection System.Collections.Hashtable::keys
RuntimeObject* ___keys_7;
// System.Collections.IEqualityComparer System.Collections.Hashtable::_keycomparer
RuntimeObject* ____keycomparer_8;
// System.Object System.Collections.Hashtable::_syncRoot
RuntimeObject * ____syncRoot_9;
public:
inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC, ___buckets_0)); }
inline bucketU5BU5D_tFE956DAEFB1D1C86A13EF247D7367BF60B55E190* get_buckets_0() const { return ___buckets_0; }
inline bucketU5BU5D_tFE956DAEFB1D1C86A13EF247D7367BF60B55E190** get_address_of_buckets_0() { return &___buckets_0; }
inline void set_buckets_0(bucketU5BU5D_tFE956DAEFB1D1C86A13EF247D7367BF60B55E190* value)
{
___buckets_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value);
}
inline static int32_t get_offset_of_count_1() { return static_cast<int32_t>(offsetof(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC, ___count_1)); }
inline int32_t get_count_1() const { return ___count_1; }
inline int32_t* get_address_of_count_1() { return &___count_1; }
inline void set_count_1(int32_t value)
{
___count_1 = value;
}
inline static int32_t get_offset_of_occupancy_2() { return static_cast<int32_t>(offsetof(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC, ___occupancy_2)); }
inline int32_t get_occupancy_2() const { return ___occupancy_2; }
inline int32_t* get_address_of_occupancy_2() { return &___occupancy_2; }
inline void set_occupancy_2(int32_t value)
{
___occupancy_2 = value;
}
inline static int32_t get_offset_of_loadsize_3() { return static_cast<int32_t>(offsetof(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC, ___loadsize_3)); }
inline int32_t get_loadsize_3() const { return ___loadsize_3; }
inline int32_t* get_address_of_loadsize_3() { return &___loadsize_3; }
inline void set_loadsize_3(int32_t value)
{
___loadsize_3 = value;
}
inline static int32_t get_offset_of_loadFactor_4() { return static_cast<int32_t>(offsetof(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC, ___loadFactor_4)); }
inline float get_loadFactor_4() const { return ___loadFactor_4; }
inline float* get_address_of_loadFactor_4() { return &___loadFactor_4; }
inline void set_loadFactor_4(float value)
{
___loadFactor_4 = value;
}
inline static int32_t get_offset_of_version_5() { return static_cast<int32_t>(offsetof(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC, ___version_5)); }
inline int32_t get_version_5() const { return ___version_5; }
inline int32_t* get_address_of_version_5() { return &___version_5; }
inline void set_version_5(int32_t value)
{
___version_5 = value;
}
inline static int32_t get_offset_of_isWriterInProgress_6() { return static_cast<int32_t>(offsetof(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC, ___isWriterInProgress_6)); }
inline bool get_isWriterInProgress_6() const { return ___isWriterInProgress_6; }
inline bool* get_address_of_isWriterInProgress_6() { return &___isWriterInProgress_6; }
inline void set_isWriterInProgress_6(bool value)
{
___isWriterInProgress_6 = value;
}
inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC, ___keys_7)); }
inline RuntimeObject* get_keys_7() const { return ___keys_7; }
inline RuntimeObject** get_address_of_keys_7() { return &___keys_7; }
inline void set_keys_7(RuntimeObject* value)
{
___keys_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value);
}
inline static int32_t get_offset_of__keycomparer_8() { return static_cast<int32_t>(offsetof(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC, ____keycomparer_8)); }
inline RuntimeObject* get__keycomparer_8() const { return ____keycomparer_8; }
inline RuntimeObject** get_address_of__keycomparer_8() { return &____keycomparer_8; }
inline void set__keycomparer_8(RuntimeObject* value)
{
____keycomparer_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&____keycomparer_8), (void*)value);
}
inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC, ____syncRoot_9)); }
inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; }
inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; }
inline void set__syncRoot_9(RuntimeObject * value)
{
____syncRoot_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value);
}
};
// System.ConsoleColor
struct ConsoleColor_t70ABA059B827F2A223299FBC4FD8D878518B2970
{
public:
// System.Int32 System.ConsoleColor::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ConsoleColor_t70ABA059B827F2A223299FBC4FD8D878518B2970, ___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.ConsoleKey
struct ConsoleKey_t4708A928547D666CF632F6F46340F476155566D4
{
public:
// System.Int32 System.ConsoleKey::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ConsoleKey_t4708A928547D666CF632F6F46340F476155566D4, ___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.ConsoleModifiers
struct ConsoleModifiers_t8465A8BC80F4BDB8816D80AA7CBE483DC7D01EBE
{
public:
// System.Int32 System.ConsoleModifiers::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ConsoleModifiers_t8465A8BC80F4BDB8816D80AA7CBE483DC7D01EBE, ___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.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_t17DD30660E330C49381DAA99F934BE75CB11F288 * ___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_t17DD30660E330C49381DAA99F934BE75CB11F288 * get_data_9() const { return ___data_9; }
inline DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288 ** get_address_of_data_9() { return &___data_9; }
inline void set_data_9(DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288 * 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_t17DD30660E330C49381DAA99F934BE75CB11F288 * ___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_t17DD30660E330C49381DAA99F934BE75CB11F288 * ___data_9;
int32_t ___method_is_virtual_10;
};
// System.Diagnostics.Tracing.EventSource
struct EventSource_t02B6E43167F06B74646A32A3BBC58988BFC3EA6A : public RuntimeObject
{
public:
public:
};
struct EventSource_t02B6E43167F06B74646A32A3BBC58988BFC3EA6A_StaticFields
{
public:
// System.Byte[] System.Diagnostics.Tracing.EventSource::namespaceBytes
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___namespaceBytes_1;
// System.Guid System.Diagnostics.Tracing.EventSource::AspNetEventSourceGuid
Guid_t ___AspNetEventSourceGuid_2;
public:
inline static int32_t get_offset_of_namespaceBytes_1() { return static_cast<int32_t>(offsetof(EventSource_t02B6E43167F06B74646A32A3BBC58988BFC3EA6A_StaticFields, ___namespaceBytes_1)); }
inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_namespaceBytes_1() const { return ___namespaceBytes_1; }
inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_namespaceBytes_1() { return &___namespaceBytes_1; }
inline void set_namespaceBytes_1(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value)
{
___namespaceBytes_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___namespaceBytes_1), (void*)value);
}
inline static int32_t get_offset_of_AspNetEventSourceGuid_2() { return static_cast<int32_t>(offsetof(EventSource_t02B6E43167F06B74646A32A3BBC58988BFC3EA6A_StaticFields, ___AspNetEventSourceGuid_2)); }
inline Guid_t get_AspNetEventSourceGuid_2() const { return ___AspNetEventSourceGuid_2; }
inline Guid_t * get_address_of_AspNetEventSourceGuid_2() { return &___AspNetEventSourceGuid_2; }
inline void set_AspNetEventSourceGuid_2(Guid_t value)
{
___AspNetEventSourceGuid_2 = value;
}
};
struct EventSource_t02B6E43167F06B74646A32A3BBC58988BFC3EA6A_ThreadStaticFields
{
public:
// System.Byte System.Diagnostics.Tracing.EventSource::m_EventSourceExceptionRecurenceCount
uint8_t ___m_EventSourceExceptionRecurenceCount_0;
public:
inline static int32_t get_offset_of_m_EventSourceExceptionRecurenceCount_0() { return static_cast<int32_t>(offsetof(EventSource_t02B6E43167F06B74646A32A3BBC58988BFC3EA6A_ThreadStaticFields, ___m_EventSourceExceptionRecurenceCount_0)); }
inline uint8_t get_m_EventSourceExceptionRecurenceCount_0() const { return ___m_EventSourceExceptionRecurenceCount_0; }
inline uint8_t* get_address_of_m_EventSourceExceptionRecurenceCount_0() { return &___m_EventSourceExceptionRecurenceCount_0; }
inline void set_m_EventSourceExceptionRecurenceCount_0(uint8_t value)
{
___m_EventSourceExceptionRecurenceCount_0 = value;
}
};
// System.Exception
struct Exception_t : public RuntimeObject
{
public:
// System.String System.Exception::_className
String_t* ____className_1;
// System.String System.Exception::_message
String_t* ____message_2;
// System.Collections.IDictionary System.Exception::_data
RuntimeObject* ____data_3;
// System.Exception System.Exception::_innerException
Exception_t * ____innerException_4;
// System.String System.Exception::_helpURL
String_t* ____helpURL_5;
// System.Object System.Exception::_stackTrace
RuntimeObject * ____stackTrace_6;
// System.String System.Exception::_stackTraceString
String_t* ____stackTraceString_7;
// System.String System.Exception::_remoteStackTraceString
String_t* ____remoteStackTraceString_8;
// System.Int32 System.Exception::_remoteStackIndex
int32_t ____remoteStackIndex_9;
// System.Object System.Exception::_dynamicMethods
RuntimeObject * ____dynamicMethods_10;
// System.Int32 System.Exception::_HResult
int32_t ____HResult_11;
// System.String System.Exception::_source
String_t* ____source_12;
// System.Runtime.Serialization.SafeSerializationManager System.Exception::_safeSerializationManager
SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * ____safeSerializationManager_13;
// System.Diagnostics.StackTrace[] System.Exception::captured_traces
StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* ___captured_traces_14;
// System.IntPtr[] System.Exception::native_trace_ips
IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6* ___native_trace_ips_15;
public:
inline static int32_t get_offset_of__className_1() { return static_cast<int32_t>(offsetof(Exception_t, ____className_1)); }
inline String_t* get__className_1() const { return ____className_1; }
inline String_t** get_address_of__className_1() { return &____className_1; }
inline void set__className_1(String_t* value)
{
____className_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____className_1), (void*)value);
}
inline static int32_t get_offset_of__message_2() { return static_cast<int32_t>(offsetof(Exception_t, ____message_2)); }
inline String_t* get__message_2() const { return ____message_2; }
inline String_t** get_address_of__message_2() { return &____message_2; }
inline void set__message_2(String_t* value)
{
____message_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____message_2), (void*)value);
}
inline static int32_t get_offset_of__data_3() { return static_cast<int32_t>(offsetof(Exception_t, ____data_3)); }
inline RuntimeObject* get__data_3() const { return ____data_3; }
inline RuntimeObject** get_address_of__data_3() { return &____data_3; }
inline void set__data_3(RuntimeObject* value)
{
____data_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____data_3), (void*)value);
}
inline static int32_t get_offset_of__innerException_4() { return static_cast<int32_t>(offsetof(Exception_t, ____innerException_4)); }
inline Exception_t * get__innerException_4() const { return ____innerException_4; }
inline Exception_t ** get_address_of__innerException_4() { return &____innerException_4; }
inline void set__innerException_4(Exception_t * value)
{
____innerException_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____innerException_4), (void*)value);
}
inline static int32_t get_offset_of__helpURL_5() { return static_cast<int32_t>(offsetof(Exception_t, ____helpURL_5)); }
inline String_t* get__helpURL_5() const { return ____helpURL_5; }
inline String_t** get_address_of__helpURL_5() { return &____helpURL_5; }
inline void set__helpURL_5(String_t* value)
{
____helpURL_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____helpURL_5), (void*)value);
}
inline static int32_t get_offset_of__stackTrace_6() { return static_cast<int32_t>(offsetof(Exception_t, ____stackTrace_6)); }
inline RuntimeObject * get__stackTrace_6() const { return ____stackTrace_6; }
inline RuntimeObject ** get_address_of__stackTrace_6() { return &____stackTrace_6; }
inline void set__stackTrace_6(RuntimeObject * value)
{
____stackTrace_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&____stackTrace_6), (void*)value);
}
inline static int32_t get_offset_of__stackTraceString_7() { return static_cast<int32_t>(offsetof(Exception_t, ____stackTraceString_7)); }
inline String_t* get__stackTraceString_7() const { return ____stackTraceString_7; }
inline String_t** get_address_of__stackTraceString_7() { return &____stackTraceString_7; }
inline void set__stackTraceString_7(String_t* value)
{
____stackTraceString_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&____stackTraceString_7), (void*)value);
}
inline static int32_t get_offset_of__remoteStackTraceString_8() { return static_cast<int32_t>(offsetof(Exception_t, ____remoteStackTraceString_8)); }
inline String_t* get__remoteStackTraceString_8() const { return ____remoteStackTraceString_8; }
inline String_t** get_address_of__remoteStackTraceString_8() { return &____remoteStackTraceString_8; }
inline void set__remoteStackTraceString_8(String_t* value)
{
____remoteStackTraceString_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&____remoteStackTraceString_8), (void*)value);
}
inline static int32_t get_offset_of__remoteStackIndex_9() { return static_cast<int32_t>(offsetof(Exception_t, ____remoteStackIndex_9)); }
inline int32_t get__remoteStackIndex_9() const { return ____remoteStackIndex_9; }
inline int32_t* get_address_of__remoteStackIndex_9() { return &____remoteStackIndex_9; }
inline void set__remoteStackIndex_9(int32_t value)
{
____remoteStackIndex_9 = value;
}
inline static int32_t get_offset_of__dynamicMethods_10() { return static_cast<int32_t>(offsetof(Exception_t, ____dynamicMethods_10)); }
inline RuntimeObject * get__dynamicMethods_10() const { return ____dynamicMethods_10; }
inline RuntimeObject ** get_address_of__dynamicMethods_10() { return &____dynamicMethods_10; }
inline void set__dynamicMethods_10(RuntimeObject * value)
{
____dynamicMethods_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&____dynamicMethods_10), (void*)value);
}
inline static int32_t get_offset_of__HResult_11() { return static_cast<int32_t>(offsetof(Exception_t, ____HResult_11)); }
inline int32_t get__HResult_11() const { return ____HResult_11; }
inline int32_t* get_address_of__HResult_11() { return &____HResult_11; }
inline void set__HResult_11(int32_t value)
{
____HResult_11 = value;
}
inline static int32_t get_offset_of__source_12() { return static_cast<int32_t>(offsetof(Exception_t, ____source_12)); }
inline String_t* get__source_12() const { return ____source_12; }
inline String_t** get_address_of__source_12() { return &____source_12; }
inline void set__source_12(String_t* value)
{
____source_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&____source_12), (void*)value);
}
inline static int32_t get_offset_of__safeSerializationManager_13() { return static_cast<int32_t>(offsetof(Exception_t, ____safeSerializationManager_13)); }
inline SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * get__safeSerializationManager_13() const { return ____safeSerializationManager_13; }
inline SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F ** get_address_of__safeSerializationManager_13() { return &____safeSerializationManager_13; }
inline void set__safeSerializationManager_13(SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * value)
{
____safeSerializationManager_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&____safeSerializationManager_13), (void*)value);
}
inline static int32_t get_offset_of_captured_traces_14() { return static_cast<int32_t>(offsetof(Exception_t, ___captured_traces_14)); }
inline StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* get_captured_traces_14() const { return ___captured_traces_14; }
inline StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971** get_address_of_captured_traces_14() { return &___captured_traces_14; }
inline void set_captured_traces_14(StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* value)
{
___captured_traces_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&___captured_traces_14), (void*)value);
}
inline static int32_t get_offset_of_native_trace_ips_15() { return static_cast<int32_t>(offsetof(Exception_t, ___native_trace_ips_15)); }
inline IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6* get_native_trace_ips_15() const { return ___native_trace_ips_15; }
inline IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6** get_address_of_native_trace_ips_15() { return &___native_trace_ips_15; }
inline void set_native_trace_ips_15(IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6* value)
{
___native_trace_ips_15 = value;
Il2CppCodeGenWriteBarrier((void**)(&___native_trace_ips_15), (void*)value);
}
};
struct Exception_t_StaticFields
{
public:
// System.Object System.Exception::s_EDILock
RuntimeObject * ___s_EDILock_0;
public:
inline static int32_t get_offset_of_s_EDILock_0() { return static_cast<int32_t>(offsetof(Exception_t_StaticFields, ___s_EDILock_0)); }
inline RuntimeObject * get_s_EDILock_0() const { return ___s_EDILock_0; }
inline RuntimeObject ** get_address_of_s_EDILock_0() { return &___s_EDILock_0; }
inline void set_s_EDILock_0(RuntimeObject * value)
{
___s_EDILock_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_EDILock_0), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Exception
struct Exception_t_marshaled_pinvoke
{
char* ____className_1;
char* ____message_2;
RuntimeObject* ____data_3;
Exception_t_marshaled_pinvoke* ____innerException_4;
char* ____helpURL_5;
Il2CppIUnknown* ____stackTrace_6;
char* ____stackTraceString_7;
char* ____remoteStackTraceString_8;
int32_t ____remoteStackIndex_9;
Il2CppIUnknown* ____dynamicMethods_10;
int32_t ____HResult_11;
char* ____source_12;
SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * ____safeSerializationManager_13;
StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* ___captured_traces_14;
Il2CppSafeArray/*NONE*/* ___native_trace_ips_15;
};
// Native definition for COM marshalling of System.Exception
struct Exception_t_marshaled_com
{
Il2CppChar* ____className_1;
Il2CppChar* ____message_2;
RuntimeObject* ____data_3;
Exception_t_marshaled_com* ____innerException_4;
Il2CppChar* ____helpURL_5;
Il2CppIUnknown* ____stackTrace_6;
Il2CppChar* ____stackTraceString_7;
Il2CppChar* ____remoteStackTraceString_8;
int32_t ____remoteStackIndex_9;
Il2CppIUnknown* ____dynamicMethods_10;
int32_t ____HResult_11;
Il2CppChar* ____source_12;
SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * ____safeSerializationManager_13;
StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* ___captured_traces_14;
Il2CppSafeArray/*NONE*/* ___native_trace_ips_15;
};
// System.ExceptionArgument
struct ExceptionArgument_t750CCD4C657BCB2C185560CC68330BC0313B8737
{
public:
// System.Int32 System.ExceptionArgument::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ExceptionArgument_t750CCD4C657BCB2C185560CC68330BC0313B8737, ___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.ExceptionResource
struct ExceptionResource_tD29FDAA391137C7766FB63B5F13FA0F12AF6C3FA
{
public:
// System.Int32 System.ExceptionResource::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ExceptionResource_tD29FDAA391137C7766FB63B5F13FA0F12AF6C3FA, ___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.Globalization.CalendarId
struct CalendarId_t0C4E88243F644E3AD08A8D7DEB2A731A175B39DE
{
public:
// System.UInt16 System.Globalization.CalendarId::value__
uint16_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(CalendarId_t0C4E88243F644E3AD08A8D7DEB2A731A175B39DE, ___value___2)); }
inline uint16_t get_value___2() const { return ___value___2; }
inline uint16_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(uint16_t value)
{
___value___2 = value;
}
};
// System.Globalization.CompareOptions
struct CompareOptions_tD3D7F165240DC4D784A11B1E2F21DC0D6D18E725
{
public:
// System.Int32 System.Globalization.CompareOptions::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(CompareOptions_tD3D7F165240DC4D784A11B1E2F21DC0D6D18E725, ___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.Globalization.NumberStyles
struct NumberStyles_t379EFBF2535E1C950DEC8042704BB663BF636594
{
public:
// System.Int32 System.Globalization.NumberStyles::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(NumberStyles_t379EFBF2535E1C950DEC8042704BB663BF636594, ___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.Globalization.TextInfo
struct TextInfo_tE823D0684BFE8B203501C9B2B38585E8F06E872C : public RuntimeObject
{
public:
// System.Boolean System.Globalization.TextInfo::m_isReadOnly
bool ___m_isReadOnly_0;
// System.String System.Globalization.TextInfo::m_cultureName
String_t* ___m_cultureName_1;
// System.Globalization.CultureData System.Globalization.TextInfo::m_cultureData
CultureData_t53CDF1C5F789A28897415891667799420D3C5529 * ___m_cultureData_2;
// System.String System.Globalization.TextInfo::m_textInfoName
String_t* ___m_textInfoName_3;
// System.Nullable`1<System.Boolean> System.Globalization.TextInfo::m_IsAsciiCasingSameAsInvariant
Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 ___m_IsAsciiCasingSameAsInvariant_4;
// System.String System.Globalization.TextInfo::customCultureName
String_t* ___customCultureName_6;
// System.Boolean System.Globalization.TextInfo::m_useUserOverride
bool ___m_useUserOverride_7;
// System.Int32 System.Globalization.TextInfo::m_win32LangID
int32_t ___m_win32LangID_8;
public:
inline static int32_t get_offset_of_m_isReadOnly_0() { return static_cast<int32_t>(offsetof(TextInfo_tE823D0684BFE8B203501C9B2B38585E8F06E872C, ___m_isReadOnly_0)); }
inline bool get_m_isReadOnly_0() const { return ___m_isReadOnly_0; }
inline bool* get_address_of_m_isReadOnly_0() { return &___m_isReadOnly_0; }
inline void set_m_isReadOnly_0(bool value)
{
___m_isReadOnly_0 = value;
}
inline static int32_t get_offset_of_m_cultureName_1() { return static_cast<int32_t>(offsetof(TextInfo_tE823D0684BFE8B203501C9B2B38585E8F06E872C, ___m_cultureName_1)); }
inline String_t* get_m_cultureName_1() const { return ___m_cultureName_1; }
inline String_t** get_address_of_m_cultureName_1() { return &___m_cultureName_1; }
inline void set_m_cultureName_1(String_t* value)
{
___m_cultureName_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_cultureName_1), (void*)value);
}
inline static int32_t get_offset_of_m_cultureData_2() { return static_cast<int32_t>(offsetof(TextInfo_tE823D0684BFE8B203501C9B2B38585E8F06E872C, ___m_cultureData_2)); }
inline CultureData_t53CDF1C5F789A28897415891667799420D3C5529 * get_m_cultureData_2() const { return ___m_cultureData_2; }
inline CultureData_t53CDF1C5F789A28897415891667799420D3C5529 ** get_address_of_m_cultureData_2() { return &___m_cultureData_2; }
inline void set_m_cultureData_2(CultureData_t53CDF1C5F789A28897415891667799420D3C5529 * value)
{
___m_cultureData_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_cultureData_2), (void*)value);
}
inline static int32_t get_offset_of_m_textInfoName_3() { return static_cast<int32_t>(offsetof(TextInfo_tE823D0684BFE8B203501C9B2B38585E8F06E872C, ___m_textInfoName_3)); }
inline String_t* get_m_textInfoName_3() const { return ___m_textInfoName_3; }
inline String_t** get_address_of_m_textInfoName_3() { return &___m_textInfoName_3; }
inline void set_m_textInfoName_3(String_t* value)
{
___m_textInfoName_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_textInfoName_3), (void*)value);
}
inline static int32_t get_offset_of_m_IsAsciiCasingSameAsInvariant_4() { return static_cast<int32_t>(offsetof(TextInfo_tE823D0684BFE8B203501C9B2B38585E8F06E872C, ___m_IsAsciiCasingSameAsInvariant_4)); }
inline Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 get_m_IsAsciiCasingSameAsInvariant_4() const { return ___m_IsAsciiCasingSameAsInvariant_4; }
inline Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 * get_address_of_m_IsAsciiCasingSameAsInvariant_4() { return &___m_IsAsciiCasingSameAsInvariant_4; }
inline void set_m_IsAsciiCasingSameAsInvariant_4(Nullable_1_t1D1CD146BFCBDC2E53E1F700889F8C5C21063EF3 value)
{
___m_IsAsciiCasingSameAsInvariant_4 = value;
}
inline static int32_t get_offset_of_customCultureName_6() { return static_cast<int32_t>(offsetof(TextInfo_tE823D0684BFE8B203501C9B2B38585E8F06E872C, ___customCultureName_6)); }
inline String_t* get_customCultureName_6() const { return ___customCultureName_6; }
inline String_t** get_address_of_customCultureName_6() { return &___customCultureName_6; }
inline void set_customCultureName_6(String_t* value)
{
___customCultureName_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___customCultureName_6), (void*)value);
}
inline static int32_t get_offset_of_m_useUserOverride_7() { return static_cast<int32_t>(offsetof(TextInfo_tE823D0684BFE8B203501C9B2B38585E8F06E872C, ___m_useUserOverride_7)); }
inline bool get_m_useUserOverride_7() const { return ___m_useUserOverride_7; }
inline bool* get_address_of_m_useUserOverride_7() { return &___m_useUserOverride_7; }
inline void set_m_useUserOverride_7(bool value)
{
___m_useUserOverride_7 = value;
}
inline static int32_t get_offset_of_m_win32LangID_8() { return static_cast<int32_t>(offsetof(TextInfo_tE823D0684BFE8B203501C9B2B38585E8F06E872C, ___m_win32LangID_8)); }
inline int32_t get_m_win32LangID_8() const { return ___m_win32LangID_8; }
inline int32_t* get_address_of_m_win32LangID_8() { return &___m_win32LangID_8; }
inline void set_m_win32LangID_8(int32_t value)
{
___m_win32LangID_8 = value;
}
};
struct TextInfo_tE823D0684BFE8B203501C9B2B38585E8F06E872C_StaticFields
{
public:
// System.Globalization.TextInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.TextInfo::s_Invariant
TextInfo_tE823D0684BFE8B203501C9B2B38585E8F06E872C * ___s_Invariant_5;
public:
inline static int32_t get_offset_of_s_Invariant_5() { return static_cast<int32_t>(offsetof(TextInfo_tE823D0684BFE8B203501C9B2B38585E8F06E872C_StaticFields, ___s_Invariant_5)); }
inline TextInfo_tE823D0684BFE8B203501C9B2B38585E8F06E872C * get_s_Invariant_5() const { return ___s_Invariant_5; }
inline TextInfo_tE823D0684BFE8B203501C9B2B38585E8F06E872C ** get_address_of_s_Invariant_5() { return &___s_Invariant_5; }
inline void set_s_Invariant_5(TextInfo_tE823D0684BFE8B203501C9B2B38585E8F06E872C * value)
{
___s_Invariant_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_Invariant_5), (void*)value);
}
};
// System.Globalization.UnicodeCategory
struct UnicodeCategory_t6F1DA413FEAE6D03B02A0AD747327E865AFF8A38
{
public:
// System.Int32 System.Globalization.UnicodeCategory::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(UnicodeCategory_t6F1DA413FEAE6D03B02A0AD747327E865AFF8A38, ___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.IO.MemoryStream
struct MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C : public Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB
{
public:
// System.Byte[] System.IO.MemoryStream::_buffer
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ____buffer_4;
// System.Int32 System.IO.MemoryStream::_origin
int32_t ____origin_5;
// System.Int32 System.IO.MemoryStream::_position
int32_t ____position_6;
// System.Int32 System.IO.MemoryStream::_length
int32_t ____length_7;
// System.Int32 System.IO.MemoryStream::_capacity
int32_t ____capacity_8;
// System.Boolean System.IO.MemoryStream::_expandable
bool ____expandable_9;
// System.Boolean System.IO.MemoryStream::_writable
bool ____writable_10;
// System.Boolean System.IO.MemoryStream::_exposable
bool ____exposable_11;
// System.Boolean System.IO.MemoryStream::_isOpen
bool ____isOpen_12;
// System.Threading.Tasks.Task`1<System.Int32> System.IO.MemoryStream::_lastReadTask
Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 * ____lastReadTask_13;
public:
inline static int32_t get_offset_of__buffer_4() { return static_cast<int32_t>(offsetof(MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C, ____buffer_4)); }
inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get__buffer_4() const { return ____buffer_4; }
inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of__buffer_4() { return &____buffer_4; }
inline void set__buffer_4(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value)
{
____buffer_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____buffer_4), (void*)value);
}
inline static int32_t get_offset_of__origin_5() { return static_cast<int32_t>(offsetof(MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C, ____origin_5)); }
inline int32_t get__origin_5() const { return ____origin_5; }
inline int32_t* get_address_of__origin_5() { return &____origin_5; }
inline void set__origin_5(int32_t value)
{
____origin_5 = value;
}
inline static int32_t get_offset_of__position_6() { return static_cast<int32_t>(offsetof(MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C, ____position_6)); }
inline int32_t get__position_6() const { return ____position_6; }
inline int32_t* get_address_of__position_6() { return &____position_6; }
inline void set__position_6(int32_t value)
{
____position_6 = value;
}
inline static int32_t get_offset_of__length_7() { return static_cast<int32_t>(offsetof(MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C, ____length_7)); }
inline int32_t get__length_7() const { return ____length_7; }
inline int32_t* get_address_of__length_7() { return &____length_7; }
inline void set__length_7(int32_t value)
{
____length_7 = value;
}
inline static int32_t get_offset_of__capacity_8() { return static_cast<int32_t>(offsetof(MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C, ____capacity_8)); }
inline int32_t get__capacity_8() const { return ____capacity_8; }
inline int32_t* get_address_of__capacity_8() { return &____capacity_8; }
inline void set__capacity_8(int32_t value)
{
____capacity_8 = value;
}
inline static int32_t get_offset_of__expandable_9() { return static_cast<int32_t>(offsetof(MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C, ____expandable_9)); }
inline bool get__expandable_9() const { return ____expandable_9; }
inline bool* get_address_of__expandable_9() { return &____expandable_9; }
inline void set__expandable_9(bool value)
{
____expandable_9 = value;
}
inline static int32_t get_offset_of__writable_10() { return static_cast<int32_t>(offsetof(MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C, ____writable_10)); }
inline bool get__writable_10() const { return ____writable_10; }
inline bool* get_address_of__writable_10() { return &____writable_10; }
inline void set__writable_10(bool value)
{
____writable_10 = value;
}
inline static int32_t get_offset_of__exposable_11() { return static_cast<int32_t>(offsetof(MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C, ____exposable_11)); }
inline bool get__exposable_11() const { return ____exposable_11; }
inline bool* get_address_of__exposable_11() { return &____exposable_11; }
inline void set__exposable_11(bool value)
{
____exposable_11 = value;
}
inline static int32_t get_offset_of__isOpen_12() { return static_cast<int32_t>(offsetof(MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C, ____isOpen_12)); }
inline bool get__isOpen_12() const { return ____isOpen_12; }
inline bool* get_address_of__isOpen_12() { return &____isOpen_12; }
inline void set__isOpen_12(bool value)
{
____isOpen_12 = value;
}
inline static int32_t get_offset_of__lastReadTask_13() { return static_cast<int32_t>(offsetof(MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C, ____lastReadTask_13)); }
inline Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 * get__lastReadTask_13() const { return ____lastReadTask_13; }
inline Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 ** get_address_of__lastReadTask_13() { return &____lastReadTask_13; }
inline void set__lastReadTask_13(Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 * value)
{
____lastReadTask_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&____lastReadTask_13), (void*)value);
}
};
// System.IO.StreamReader
struct StreamReader_tA857ACC7ABF9AA4638E1291E6D2539C14D2963D3 : public TextReader_t25B06DCA1906FEAD02150DB14313EBEA4CD78D2F
{
public:
// System.IO.Stream System.IO.StreamReader::stream
Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___stream_5;
// System.Text.Encoding System.IO.StreamReader::encoding
Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * ___encoding_6;
// System.Text.Decoder System.IO.StreamReader::decoder
Decoder_t91B2ED8AEC25AA24D23A00265203BE992B12C370 * ___decoder_7;
// System.Byte[] System.IO.StreamReader::byteBuffer
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___byteBuffer_8;
// System.Char[] System.IO.StreamReader::charBuffer
CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___charBuffer_9;
// System.Byte[] System.IO.StreamReader::_preamble
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ____preamble_10;
// System.Int32 System.IO.StreamReader::charPos
int32_t ___charPos_11;
// System.Int32 System.IO.StreamReader::charLen
int32_t ___charLen_12;
// System.Int32 System.IO.StreamReader::byteLen
int32_t ___byteLen_13;
// System.Int32 System.IO.StreamReader::bytePos
int32_t ___bytePos_14;
// System.Int32 System.IO.StreamReader::_maxCharsPerBuffer
int32_t ____maxCharsPerBuffer_15;
// System.Boolean System.IO.StreamReader::_detectEncoding
bool ____detectEncoding_16;
// System.Boolean System.IO.StreamReader::_checkPreamble
bool ____checkPreamble_17;
// System.Boolean System.IO.StreamReader::_isBlocked
bool ____isBlocked_18;
// System.Boolean System.IO.StreamReader::_closable
bool ____closable_19;
// System.Threading.Tasks.Task modreq(System.Runtime.CompilerServices.IsVolatile) System.IO.StreamReader::_asyncReadTask
Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * ____asyncReadTask_20;
public:
inline static int32_t get_offset_of_stream_5() { return static_cast<int32_t>(offsetof(StreamReader_tA857ACC7ABF9AA4638E1291E6D2539C14D2963D3, ___stream_5)); }
inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * get_stream_5() const { return ___stream_5; }
inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB ** get_address_of_stream_5() { return &___stream_5; }
inline void set_stream_5(Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * value)
{
___stream_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___stream_5), (void*)value);
}
inline static int32_t get_offset_of_encoding_6() { return static_cast<int32_t>(offsetof(StreamReader_tA857ACC7ABF9AA4638E1291E6D2539C14D2963D3, ___encoding_6)); }
inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * get_encoding_6() const { return ___encoding_6; }
inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 ** get_address_of_encoding_6() { return &___encoding_6; }
inline void set_encoding_6(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * value)
{
___encoding_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___encoding_6), (void*)value);
}
inline static int32_t get_offset_of_decoder_7() { return static_cast<int32_t>(offsetof(StreamReader_tA857ACC7ABF9AA4638E1291E6D2539C14D2963D3, ___decoder_7)); }
inline Decoder_t91B2ED8AEC25AA24D23A00265203BE992B12C370 * get_decoder_7() const { return ___decoder_7; }
inline Decoder_t91B2ED8AEC25AA24D23A00265203BE992B12C370 ** get_address_of_decoder_7() { return &___decoder_7; }
inline void set_decoder_7(Decoder_t91B2ED8AEC25AA24D23A00265203BE992B12C370 * value)
{
___decoder_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___decoder_7), (void*)value);
}
inline static int32_t get_offset_of_byteBuffer_8() { return static_cast<int32_t>(offsetof(StreamReader_tA857ACC7ABF9AA4638E1291E6D2539C14D2963D3, ___byteBuffer_8)); }
inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_byteBuffer_8() const { return ___byteBuffer_8; }
inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_byteBuffer_8() { return &___byteBuffer_8; }
inline void set_byteBuffer_8(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value)
{
___byteBuffer_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___byteBuffer_8), (void*)value);
}
inline static int32_t get_offset_of_charBuffer_9() { return static_cast<int32_t>(offsetof(StreamReader_tA857ACC7ABF9AA4638E1291E6D2539C14D2963D3, ___charBuffer_9)); }
inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get_charBuffer_9() const { return ___charBuffer_9; }
inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of_charBuffer_9() { return &___charBuffer_9; }
inline void set_charBuffer_9(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value)
{
___charBuffer_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___charBuffer_9), (void*)value);
}
inline static int32_t get_offset_of__preamble_10() { return static_cast<int32_t>(offsetof(StreamReader_tA857ACC7ABF9AA4638E1291E6D2539C14D2963D3, ____preamble_10)); }
inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get__preamble_10() const { return ____preamble_10; }
inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of__preamble_10() { return &____preamble_10; }
inline void set__preamble_10(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value)
{
____preamble_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&____preamble_10), (void*)value);
}
inline static int32_t get_offset_of_charPos_11() { return static_cast<int32_t>(offsetof(StreamReader_tA857ACC7ABF9AA4638E1291E6D2539C14D2963D3, ___charPos_11)); }
inline int32_t get_charPos_11() const { return ___charPos_11; }
inline int32_t* get_address_of_charPos_11() { return &___charPos_11; }
inline void set_charPos_11(int32_t value)
{
___charPos_11 = value;
}
inline static int32_t get_offset_of_charLen_12() { return static_cast<int32_t>(offsetof(StreamReader_tA857ACC7ABF9AA4638E1291E6D2539C14D2963D3, ___charLen_12)); }
inline int32_t get_charLen_12() const { return ___charLen_12; }
inline int32_t* get_address_of_charLen_12() { return &___charLen_12; }
inline void set_charLen_12(int32_t value)
{
___charLen_12 = value;
}
inline static int32_t get_offset_of_byteLen_13() { return static_cast<int32_t>(offsetof(StreamReader_tA857ACC7ABF9AA4638E1291E6D2539C14D2963D3, ___byteLen_13)); }
inline int32_t get_byteLen_13() const { return ___byteLen_13; }
inline int32_t* get_address_of_byteLen_13() { return &___byteLen_13; }
inline void set_byteLen_13(int32_t value)
{
___byteLen_13 = value;
}
inline static int32_t get_offset_of_bytePos_14() { return static_cast<int32_t>(offsetof(StreamReader_tA857ACC7ABF9AA4638E1291E6D2539C14D2963D3, ___bytePos_14)); }
inline int32_t get_bytePos_14() const { return ___bytePos_14; }
inline int32_t* get_address_of_bytePos_14() { return &___bytePos_14; }
inline void set_bytePos_14(int32_t value)
{
___bytePos_14 = value;
}
inline static int32_t get_offset_of__maxCharsPerBuffer_15() { return static_cast<int32_t>(offsetof(StreamReader_tA857ACC7ABF9AA4638E1291E6D2539C14D2963D3, ____maxCharsPerBuffer_15)); }
inline int32_t get__maxCharsPerBuffer_15() const { return ____maxCharsPerBuffer_15; }
inline int32_t* get_address_of__maxCharsPerBuffer_15() { return &____maxCharsPerBuffer_15; }
inline void set__maxCharsPerBuffer_15(int32_t value)
{
____maxCharsPerBuffer_15 = value;
}
inline static int32_t get_offset_of__detectEncoding_16() { return static_cast<int32_t>(offsetof(StreamReader_tA857ACC7ABF9AA4638E1291E6D2539C14D2963D3, ____detectEncoding_16)); }
inline bool get__detectEncoding_16() const { return ____detectEncoding_16; }
inline bool* get_address_of__detectEncoding_16() { return &____detectEncoding_16; }
inline void set__detectEncoding_16(bool value)
{
____detectEncoding_16 = value;
}
inline static int32_t get_offset_of__checkPreamble_17() { return static_cast<int32_t>(offsetof(StreamReader_tA857ACC7ABF9AA4638E1291E6D2539C14D2963D3, ____checkPreamble_17)); }
inline bool get__checkPreamble_17() const { return ____checkPreamble_17; }
inline bool* get_address_of__checkPreamble_17() { return &____checkPreamble_17; }
inline void set__checkPreamble_17(bool value)
{
____checkPreamble_17 = value;
}
inline static int32_t get_offset_of__isBlocked_18() { return static_cast<int32_t>(offsetof(StreamReader_tA857ACC7ABF9AA4638E1291E6D2539C14D2963D3, ____isBlocked_18)); }
inline bool get__isBlocked_18() const { return ____isBlocked_18; }
inline bool* get_address_of__isBlocked_18() { return &____isBlocked_18; }
inline void set__isBlocked_18(bool value)
{
____isBlocked_18 = value;
}
inline static int32_t get_offset_of__closable_19() { return static_cast<int32_t>(offsetof(StreamReader_tA857ACC7ABF9AA4638E1291E6D2539C14D2963D3, ____closable_19)); }
inline bool get__closable_19() const { return ____closable_19; }
inline bool* get_address_of__closable_19() { return &____closable_19; }
inline void set__closable_19(bool value)
{
____closable_19 = value;
}
inline static int32_t get_offset_of__asyncReadTask_20() { return static_cast<int32_t>(offsetof(StreamReader_tA857ACC7ABF9AA4638E1291E6D2539C14D2963D3, ____asyncReadTask_20)); }
inline Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * get__asyncReadTask_20() const { return ____asyncReadTask_20; }
inline Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 ** get_address_of__asyncReadTask_20() { return &____asyncReadTask_20; }
inline void set__asyncReadTask_20(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * value)
{
____asyncReadTask_20 = value;
Il2CppCodeGenWriteBarrier((void**)(&____asyncReadTask_20), (void*)value);
}
};
struct StreamReader_tA857ACC7ABF9AA4638E1291E6D2539C14D2963D3_StaticFields
{
public:
// System.IO.StreamReader System.IO.StreamReader::Null
StreamReader_tA857ACC7ABF9AA4638E1291E6D2539C14D2963D3 * ___Null_4;
public:
inline static int32_t get_offset_of_Null_4() { return static_cast<int32_t>(offsetof(StreamReader_tA857ACC7ABF9AA4638E1291E6D2539C14D2963D3_StaticFields, ___Null_4)); }
inline StreamReader_tA857ACC7ABF9AA4638E1291E6D2539C14D2963D3 * get_Null_4() const { return ___Null_4; }
inline StreamReader_tA857ACC7ABF9AA4638E1291E6D2539C14D2963D3 ** get_address_of_Null_4() { return &___Null_4; }
inline void set_Null_4(StreamReader_tA857ACC7ABF9AA4638E1291E6D2539C14D2963D3 * value)
{
___Null_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Null_4), (void*)value);
}
};
// System.IO.StreamWriter
struct StreamWriter_t3E267B7F3C9522AF936C26ABF158398BB779FAF6 : public TextWriter_t4CB195237F3B6CADD850FBC3604A049C7C564643
{
public:
// System.IO.Stream System.IO.StreamWriter::stream
Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___stream_12;
// System.Text.Encoding System.IO.StreamWriter::encoding
Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * ___encoding_13;
// System.Text.Encoder System.IO.StreamWriter::encoder
Encoder_t5095F24D3B1D0F70D08762B980731B9F1ADEE56A * ___encoder_14;
// System.Byte[] System.IO.StreamWriter::byteBuffer
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___byteBuffer_15;
// System.Char[] System.IO.StreamWriter::charBuffer
CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___charBuffer_16;
// System.Int32 System.IO.StreamWriter::charPos
int32_t ___charPos_17;
// System.Int32 System.IO.StreamWriter::charLen
int32_t ___charLen_18;
// System.Boolean System.IO.StreamWriter::autoFlush
bool ___autoFlush_19;
// System.Boolean System.IO.StreamWriter::haveWrittenPreamble
bool ___haveWrittenPreamble_20;
// System.Boolean System.IO.StreamWriter::closable
bool ___closable_21;
// System.Threading.Tasks.Task modreq(System.Runtime.CompilerServices.IsVolatile) System.IO.StreamWriter::_asyncWriteTask
Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * ____asyncWriteTask_22;
public:
inline static int32_t get_offset_of_stream_12() { return static_cast<int32_t>(offsetof(StreamWriter_t3E267B7F3C9522AF936C26ABF158398BB779FAF6, ___stream_12)); }
inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * get_stream_12() const { return ___stream_12; }
inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB ** get_address_of_stream_12() { return &___stream_12; }
inline void set_stream_12(Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * value)
{
___stream_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&___stream_12), (void*)value);
}
inline static int32_t get_offset_of_encoding_13() { return static_cast<int32_t>(offsetof(StreamWriter_t3E267B7F3C9522AF936C26ABF158398BB779FAF6, ___encoding_13)); }
inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * get_encoding_13() const { return ___encoding_13; }
inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 ** get_address_of_encoding_13() { return &___encoding_13; }
inline void set_encoding_13(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * value)
{
___encoding_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&___encoding_13), (void*)value);
}
inline static int32_t get_offset_of_encoder_14() { return static_cast<int32_t>(offsetof(StreamWriter_t3E267B7F3C9522AF936C26ABF158398BB779FAF6, ___encoder_14)); }
inline Encoder_t5095F24D3B1D0F70D08762B980731B9F1ADEE56A * get_encoder_14() const { return ___encoder_14; }
inline Encoder_t5095F24D3B1D0F70D08762B980731B9F1ADEE56A ** get_address_of_encoder_14() { return &___encoder_14; }
inline void set_encoder_14(Encoder_t5095F24D3B1D0F70D08762B980731B9F1ADEE56A * value)
{
___encoder_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&___encoder_14), (void*)value);
}
inline static int32_t get_offset_of_byteBuffer_15() { return static_cast<int32_t>(offsetof(StreamWriter_t3E267B7F3C9522AF936C26ABF158398BB779FAF6, ___byteBuffer_15)); }
inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_byteBuffer_15() const { return ___byteBuffer_15; }
inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_byteBuffer_15() { return &___byteBuffer_15; }
inline void set_byteBuffer_15(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value)
{
___byteBuffer_15 = value;
Il2CppCodeGenWriteBarrier((void**)(&___byteBuffer_15), (void*)value);
}
inline static int32_t get_offset_of_charBuffer_16() { return static_cast<int32_t>(offsetof(StreamWriter_t3E267B7F3C9522AF936C26ABF158398BB779FAF6, ___charBuffer_16)); }
inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get_charBuffer_16() const { return ___charBuffer_16; }
inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of_charBuffer_16() { return &___charBuffer_16; }
inline void set_charBuffer_16(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value)
{
___charBuffer_16 = value;
Il2CppCodeGenWriteBarrier((void**)(&___charBuffer_16), (void*)value);
}
inline static int32_t get_offset_of_charPos_17() { return static_cast<int32_t>(offsetof(StreamWriter_t3E267B7F3C9522AF936C26ABF158398BB779FAF6, ___charPos_17)); }
inline int32_t get_charPos_17() const { return ___charPos_17; }
inline int32_t* get_address_of_charPos_17() { return &___charPos_17; }
inline void set_charPos_17(int32_t value)
{
___charPos_17 = value;
}
inline static int32_t get_offset_of_charLen_18() { return static_cast<int32_t>(offsetof(StreamWriter_t3E267B7F3C9522AF936C26ABF158398BB779FAF6, ___charLen_18)); }
inline int32_t get_charLen_18() const { return ___charLen_18; }
inline int32_t* get_address_of_charLen_18() { return &___charLen_18; }
inline void set_charLen_18(int32_t value)
{
___charLen_18 = value;
}
inline static int32_t get_offset_of_autoFlush_19() { return static_cast<int32_t>(offsetof(StreamWriter_t3E267B7F3C9522AF936C26ABF158398BB779FAF6, ___autoFlush_19)); }
inline bool get_autoFlush_19() const { return ___autoFlush_19; }
inline bool* get_address_of_autoFlush_19() { return &___autoFlush_19; }
inline void set_autoFlush_19(bool value)
{
___autoFlush_19 = value;
}
inline static int32_t get_offset_of_haveWrittenPreamble_20() { return static_cast<int32_t>(offsetof(StreamWriter_t3E267B7F3C9522AF936C26ABF158398BB779FAF6, ___haveWrittenPreamble_20)); }
inline bool get_haveWrittenPreamble_20() const { return ___haveWrittenPreamble_20; }
inline bool* get_address_of_haveWrittenPreamble_20() { return &___haveWrittenPreamble_20; }
inline void set_haveWrittenPreamble_20(bool value)
{
___haveWrittenPreamble_20 = value;
}
inline static int32_t get_offset_of_closable_21() { return static_cast<int32_t>(offsetof(StreamWriter_t3E267B7F3C9522AF936C26ABF158398BB779FAF6, ___closable_21)); }
inline bool get_closable_21() const { return ___closable_21; }
inline bool* get_address_of_closable_21() { return &___closable_21; }
inline void set_closable_21(bool value)
{
___closable_21 = value;
}
inline static int32_t get_offset_of__asyncWriteTask_22() { return static_cast<int32_t>(offsetof(StreamWriter_t3E267B7F3C9522AF936C26ABF158398BB779FAF6, ____asyncWriteTask_22)); }
inline Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * get__asyncWriteTask_22() const { return ____asyncWriteTask_22; }
inline Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 ** get_address_of__asyncWriteTask_22() { return &____asyncWriteTask_22; }
inline void set__asyncWriteTask_22(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * value)
{
____asyncWriteTask_22 = value;
Il2CppCodeGenWriteBarrier((void**)(&____asyncWriteTask_22), (void*)value);
}
};
struct StreamWriter_t3E267B7F3C9522AF936C26ABF158398BB779FAF6_StaticFields
{
public:
// System.IO.StreamWriter System.IO.StreamWriter::Null
StreamWriter_t3E267B7F3C9522AF936C26ABF158398BB779FAF6 * ___Null_11;
// System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.IO.StreamWriter::_UTF8NoBOM
Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * ____UTF8NoBOM_23;
public:
inline static int32_t get_offset_of_Null_11() { return static_cast<int32_t>(offsetof(StreamWriter_t3E267B7F3C9522AF936C26ABF158398BB779FAF6_StaticFields, ___Null_11)); }
inline StreamWriter_t3E267B7F3C9522AF936C26ABF158398BB779FAF6 * get_Null_11() const { return ___Null_11; }
inline StreamWriter_t3E267B7F3C9522AF936C26ABF158398BB779FAF6 ** get_address_of_Null_11() { return &___Null_11; }
inline void set_Null_11(StreamWriter_t3E267B7F3C9522AF936C26ABF158398BB779FAF6 * value)
{
___Null_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Null_11), (void*)value);
}
inline static int32_t get_offset_of__UTF8NoBOM_23() { return static_cast<int32_t>(offsetof(StreamWriter_t3E267B7F3C9522AF936C26ABF158398BB779FAF6_StaticFields, ____UTF8NoBOM_23)); }
inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * get__UTF8NoBOM_23() const { return ____UTF8NoBOM_23; }
inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 ** get_address_of__UTF8NoBOM_23() { return &____UTF8NoBOM_23; }
inline void set__UTF8NoBOM_23(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * value)
{
____UTF8NoBOM_23 = value;
Il2CppCodeGenWriteBarrier((void**)(&____UTF8NoBOM_23), (void*)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_tA37081FAEBE21D83D216225B4489BA8A37B4E13C * ___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_tA37081FAEBE21D83D216225B4489BA8A37B4E13C * get_resolve_event_holder_1() const { return ___resolve_event_holder_1; }
inline ResolveEventHolder_tA37081FAEBE21D83D216225B4489BA8A37B4E13C ** get_address_of_resolve_event_holder_1() { return &___resolve_event_holder_1; }
inline void set_resolve_event_holder_1(ResolveEventHolder_tA37081FAEBE21D83D216225B4489BA8A37B4E13C * 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_tA37081FAEBE21D83D216225B4489BA8A37B4E13C * ___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_tA37081FAEBE21D83D216225B4489BA8A37B4E13C * ___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_tAAAB07D9AC588F0D55D844E51D7035E96DF94733
{
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_tAAAB07D9AC588F0D55D844E51D7035E96DF94733, ___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.CallingConventions
struct CallingConventions_t9EE04367ABED67A03DB2971F80F83D3EBA9C04E0
{
public:
// System.Int32 System.Reflection.CallingConventions::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(CallingConventions_t9EE04367ABED67A03DB2971F80F83D3EBA9C04E0, ___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.ConstructorInfo
struct ConstructorInfo_t449AEC508DCA508EE46784C4F2716545488ACD5B : public MethodBase_t
{
public:
public:
};
struct ConstructorInfo_t449AEC508DCA508EE46784C4F2716545488ACD5B_StaticFields
{
public:
// System.String System.Reflection.ConstructorInfo::ConstructorName
String_t* ___ConstructorName_0;
// System.String System.Reflection.ConstructorInfo::TypeConstructorName
String_t* ___TypeConstructorName_1;
public:
inline static int32_t get_offset_of_ConstructorName_0() { return static_cast<int32_t>(offsetof(ConstructorInfo_t449AEC508DCA508EE46784C4F2716545488ACD5B_StaticFields, ___ConstructorName_0)); }
inline String_t* get_ConstructorName_0() const { return ___ConstructorName_0; }
inline String_t** get_address_of_ConstructorName_0() { return &___ConstructorName_0; }
inline void set_ConstructorName_0(String_t* value)
{
___ConstructorName_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___ConstructorName_0), (void*)value);
}
inline static int32_t get_offset_of_TypeConstructorName_1() { return static_cast<int32_t>(offsetof(ConstructorInfo_t449AEC508DCA508EE46784C4F2716545488ACD5B_StaticFields, ___TypeConstructorName_1)); }
inline String_t* get_TypeConstructorName_1() const { return ___TypeConstructorName_1; }
inline String_t** get_address_of_TypeConstructorName_1() { return &___TypeConstructorName_1; }
inline void set_TypeConstructorName_1(String_t* value)
{
___TypeConstructorName_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___TypeConstructorName_1), (void*)value);
}
};
// System.Reflection.MethodInfo
struct MethodInfo_t : public MethodBase_t
{
public:
public:
};
// System.Reflection.ParameterAttributes
struct ParameterAttributes_t79BD378DEC3F187D9773B9A4EDE573866E930218
{
public:
// System.Int32 System.Reflection.ParameterAttributes::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ParameterAttributes_t79BD378DEC3F187D9773B9A4EDE573866E930218, ___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.Runtime.CompilerServices.CompilationRelaxations
struct CompilationRelaxations_t3F4D0C01134AC29212BCFE66E9A9F13A92F888AC
{
public:
// System.Int32 System.Runtime.CompilerServices.CompilationRelaxations::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(CompilationRelaxations_t3F4D0C01134AC29212BCFE66E9A9F13A92F888AC, ___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.Runtime.ConstrainedExecution.Cer
struct Cer_t64C71B0BD34D91BE01771856B7D1444ACFB7C517
{
public:
// System.Int32 System.Runtime.ConstrainedExecution.Cer::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Cer_t64C71B0BD34D91BE01771856B7D1444ACFB7C517, ___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.Runtime.InteropServices.CallingConvention
struct CallingConvention_tCD05DC1A211D9713286784F4DDDE1BA18B839924
{
public:
// System.Int32 System.Runtime.InteropServices.CallingConvention::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(CallingConvention_tCD05DC1A211D9713286784F4DDDE1BA18B839924, ___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.Runtime.InteropServices.CharSet
struct CharSet_tF37E3433B83409C49A52A325333BFBC08ACD6E4B
{
public:
// System.Int32 System.Runtime.InteropServices.CharSet::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(CharSet_tF37E3433B83409C49A52A325333BFBC08ACD6E4B, ___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.Runtime.InteropServices.ClassInterfaceType
struct ClassInterfaceType_t4D1903EA7B9A6DF79A19DEE000B7ED28E476069D
{
public:
// System.Int32 System.Runtime.InteropServices.ClassInterfaceType::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ClassInterfaceType_t4D1903EA7B9A6DF79A19DEE000B7ED28E476069D, ___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.Runtime.InteropServices.ComInterfaceType
struct ComInterfaceType_tD26C0EE522D88DCACB0EA3257392DD64ACC6155E
{
public:
// System.Int32 System.Runtime.InteropServices.ComInterfaceType::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ComInterfaceType_tD26C0EE522D88DCACB0EA3257392DD64ACC6155E, ___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.Runtime.Remoting.ClientActivatedIdentity
struct ClientActivatedIdentity_t15889AD8330630DE5A85C02BD4F07FE7FC72AEC6 : public ServerIdentity_t5689BF0CA0122A8E597C9900D39F11F07D79D3A8
{
public:
// System.MarshalByRefObject System.Runtime.Remoting.ClientActivatedIdentity::_targetThis
MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8 * ____targetThis_12;
public:
inline static int32_t get_offset_of__targetThis_12() { return static_cast<int32_t>(offsetof(ClientActivatedIdentity_t15889AD8330630DE5A85C02BD4F07FE7FC72AEC6, ____targetThis_12)); }
inline MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8 * get__targetThis_12() const { return ____targetThis_12; }
inline MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8 ** get_address_of__targetThis_12() { return &____targetThis_12; }
inline void set__targetThis_12(MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8 * value)
{
____targetThis_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&____targetThis_12), (void*)value);
}
};
// System.Runtime.Remoting.Contexts.Context
struct Context_t8A5B564FD0F970E10A97ACB8A7579FFF3EE4C678 : public RuntimeObject
{
public:
// System.Int32 System.Runtime.Remoting.Contexts.Context::domain_id
int32_t ___domain_id_0;
// System.Int32 System.Runtime.Remoting.Contexts.Context::context_id
int32_t ___context_id_1;
// System.UIntPtr System.Runtime.Remoting.Contexts.Context::static_data
uintptr_t ___static_data_2;
// System.UIntPtr System.Runtime.Remoting.Contexts.Context::data
uintptr_t ___data_3;
// System.Runtime.Remoting.Messaging.IMessageSink System.Runtime.Remoting.Contexts.Context::server_context_sink_chain
RuntimeObject* ___server_context_sink_chain_6;
// System.Runtime.Remoting.Messaging.IMessageSink System.Runtime.Remoting.Contexts.Context::client_context_sink_chain
RuntimeObject* ___client_context_sink_chain_7;
// System.Collections.Generic.List`1<System.Runtime.Remoting.Contexts.IContextProperty> System.Runtime.Remoting.Contexts.Context::context_properties
List_1_t6C44C0357D6C8D5FA8F1019C5D37D11A0AEC8544 * ___context_properties_8;
// System.LocalDataStoreHolder modreq(System.Runtime.CompilerServices.IsVolatile) System.Runtime.Remoting.Contexts.Context::_localDataStore
LocalDataStoreHolder_tF51C9DD735A89132114AE47E3EB51C11D0FED146 * ____localDataStore_10;
// System.Runtime.Remoting.Contexts.DynamicPropertyCollection System.Runtime.Remoting.Contexts.Context::context_dynamic_properties
DynamicPropertyCollection_t374B470D20F1FAF60F0578EE489846E6E283984B * ___context_dynamic_properties_13;
// System.Runtime.Remoting.Contexts.ContextCallbackObject System.Runtime.Remoting.Contexts.Context::callback_object
ContextCallbackObject_t0E2D94904CEC51006BE71AE154A7E7D9CD4AFA4B * ___callback_object_14;
public:
inline static int32_t get_offset_of_domain_id_0() { return static_cast<int32_t>(offsetof(Context_t8A5B564FD0F970E10A97ACB8A7579FFF3EE4C678, ___domain_id_0)); }
inline int32_t get_domain_id_0() const { return ___domain_id_0; }
inline int32_t* get_address_of_domain_id_0() { return &___domain_id_0; }
inline void set_domain_id_0(int32_t value)
{
___domain_id_0 = value;
}
inline static int32_t get_offset_of_context_id_1() { return static_cast<int32_t>(offsetof(Context_t8A5B564FD0F970E10A97ACB8A7579FFF3EE4C678, ___context_id_1)); }
inline int32_t get_context_id_1() const { return ___context_id_1; }
inline int32_t* get_address_of_context_id_1() { return &___context_id_1; }
inline void set_context_id_1(int32_t value)
{
___context_id_1 = value;
}
inline static int32_t get_offset_of_static_data_2() { return static_cast<int32_t>(offsetof(Context_t8A5B564FD0F970E10A97ACB8A7579FFF3EE4C678, ___static_data_2)); }
inline uintptr_t get_static_data_2() const { return ___static_data_2; }
inline uintptr_t* get_address_of_static_data_2() { return &___static_data_2; }
inline void set_static_data_2(uintptr_t value)
{
___static_data_2 = value;
}
inline static int32_t get_offset_of_data_3() { return static_cast<int32_t>(offsetof(Context_t8A5B564FD0F970E10A97ACB8A7579FFF3EE4C678, ___data_3)); }
inline uintptr_t get_data_3() const { return ___data_3; }
inline uintptr_t* get_address_of_data_3() { return &___data_3; }
inline void set_data_3(uintptr_t value)
{
___data_3 = value;
}
inline static int32_t get_offset_of_server_context_sink_chain_6() { return static_cast<int32_t>(offsetof(Context_t8A5B564FD0F970E10A97ACB8A7579FFF3EE4C678, ___server_context_sink_chain_6)); }
inline RuntimeObject* get_server_context_sink_chain_6() const { return ___server_context_sink_chain_6; }
inline RuntimeObject** get_address_of_server_context_sink_chain_6() { return &___server_context_sink_chain_6; }
inline void set_server_context_sink_chain_6(RuntimeObject* value)
{
___server_context_sink_chain_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___server_context_sink_chain_6), (void*)value);
}
inline static int32_t get_offset_of_client_context_sink_chain_7() { return static_cast<int32_t>(offsetof(Context_t8A5B564FD0F970E10A97ACB8A7579FFF3EE4C678, ___client_context_sink_chain_7)); }
inline RuntimeObject* get_client_context_sink_chain_7() const { return ___client_context_sink_chain_7; }
inline RuntimeObject** get_address_of_client_context_sink_chain_7() { return &___client_context_sink_chain_7; }
inline void set_client_context_sink_chain_7(RuntimeObject* value)
{
___client_context_sink_chain_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___client_context_sink_chain_7), (void*)value);
}
inline static int32_t get_offset_of_context_properties_8() { return static_cast<int32_t>(offsetof(Context_t8A5B564FD0F970E10A97ACB8A7579FFF3EE4C678, ___context_properties_8)); }
inline List_1_t6C44C0357D6C8D5FA8F1019C5D37D11A0AEC8544 * get_context_properties_8() const { return ___context_properties_8; }
inline List_1_t6C44C0357D6C8D5FA8F1019C5D37D11A0AEC8544 ** get_address_of_context_properties_8() { return &___context_properties_8; }
inline void set_context_properties_8(List_1_t6C44C0357D6C8D5FA8F1019C5D37D11A0AEC8544 * value)
{
___context_properties_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___context_properties_8), (void*)value);
}
inline static int32_t get_offset_of__localDataStore_10() { return static_cast<int32_t>(offsetof(Context_t8A5B564FD0F970E10A97ACB8A7579FFF3EE4C678, ____localDataStore_10)); }
inline LocalDataStoreHolder_tF51C9DD735A89132114AE47E3EB51C11D0FED146 * get__localDataStore_10() const { return ____localDataStore_10; }
inline LocalDataStoreHolder_tF51C9DD735A89132114AE47E3EB51C11D0FED146 ** get_address_of__localDataStore_10() { return &____localDataStore_10; }
inline void set__localDataStore_10(LocalDataStoreHolder_tF51C9DD735A89132114AE47E3EB51C11D0FED146 * value)
{
____localDataStore_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&____localDataStore_10), (void*)value);
}
inline static int32_t get_offset_of_context_dynamic_properties_13() { return static_cast<int32_t>(offsetof(Context_t8A5B564FD0F970E10A97ACB8A7579FFF3EE4C678, ___context_dynamic_properties_13)); }
inline DynamicPropertyCollection_t374B470D20F1FAF60F0578EE489846E6E283984B * get_context_dynamic_properties_13() const { return ___context_dynamic_properties_13; }
inline DynamicPropertyCollection_t374B470D20F1FAF60F0578EE489846E6E283984B ** get_address_of_context_dynamic_properties_13() { return &___context_dynamic_properties_13; }
inline void set_context_dynamic_properties_13(DynamicPropertyCollection_t374B470D20F1FAF60F0578EE489846E6E283984B * value)
{
___context_dynamic_properties_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&___context_dynamic_properties_13), (void*)value);
}
inline static int32_t get_offset_of_callback_object_14() { return static_cast<int32_t>(offsetof(Context_t8A5B564FD0F970E10A97ACB8A7579FFF3EE4C678, ___callback_object_14)); }
inline ContextCallbackObject_t0E2D94904CEC51006BE71AE154A7E7D9CD4AFA4B * get_callback_object_14() const { return ___callback_object_14; }
inline ContextCallbackObject_t0E2D94904CEC51006BE71AE154A7E7D9CD4AFA4B ** get_address_of_callback_object_14() { return &___callback_object_14; }
inline void set_callback_object_14(ContextCallbackObject_t0E2D94904CEC51006BE71AE154A7E7D9CD4AFA4B * value)
{
___callback_object_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&___callback_object_14), (void*)value);
}
};
struct Context_t8A5B564FD0F970E10A97ACB8A7579FFF3EE4C678_StaticFields
{
public:
// System.Object[] System.Runtime.Remoting.Contexts.Context::local_slots
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___local_slots_4;
// System.Runtime.Remoting.Messaging.IMessageSink System.Runtime.Remoting.Contexts.Context::default_server_context_sink
RuntimeObject* ___default_server_context_sink_5;
// System.Int32 System.Runtime.Remoting.Contexts.Context::global_count
int32_t ___global_count_9;
// System.LocalDataStoreMgr System.Runtime.Remoting.Contexts.Context::_localDataStoreMgr
LocalDataStoreMgr_t6CC44D0584911B6A6C6823115F858FC34AB4A80A * ____localDataStoreMgr_11;
// System.Runtime.Remoting.Contexts.DynamicPropertyCollection System.Runtime.Remoting.Contexts.Context::global_dynamic_properties
DynamicPropertyCollection_t374B470D20F1FAF60F0578EE489846E6E283984B * ___global_dynamic_properties_12;
public:
inline static int32_t get_offset_of_local_slots_4() { return static_cast<int32_t>(offsetof(Context_t8A5B564FD0F970E10A97ACB8A7579FFF3EE4C678_StaticFields, ___local_slots_4)); }
inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get_local_slots_4() const { return ___local_slots_4; }
inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of_local_slots_4() { return &___local_slots_4; }
inline void set_local_slots_4(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value)
{
___local_slots_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___local_slots_4), (void*)value);
}
inline static int32_t get_offset_of_default_server_context_sink_5() { return static_cast<int32_t>(offsetof(Context_t8A5B564FD0F970E10A97ACB8A7579FFF3EE4C678_StaticFields, ___default_server_context_sink_5)); }
inline RuntimeObject* get_default_server_context_sink_5() const { return ___default_server_context_sink_5; }
inline RuntimeObject** get_address_of_default_server_context_sink_5() { return &___default_server_context_sink_5; }
inline void set_default_server_context_sink_5(RuntimeObject* value)
{
___default_server_context_sink_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___default_server_context_sink_5), (void*)value);
}
inline static int32_t get_offset_of_global_count_9() { return static_cast<int32_t>(offsetof(Context_t8A5B564FD0F970E10A97ACB8A7579FFF3EE4C678_StaticFields, ___global_count_9)); }
inline int32_t get_global_count_9() const { return ___global_count_9; }
inline int32_t* get_address_of_global_count_9() { return &___global_count_9; }
inline void set_global_count_9(int32_t value)
{
___global_count_9 = value;
}
inline static int32_t get_offset_of__localDataStoreMgr_11() { return static_cast<int32_t>(offsetof(Context_t8A5B564FD0F970E10A97ACB8A7579FFF3EE4C678_StaticFields, ____localDataStoreMgr_11)); }
inline LocalDataStoreMgr_t6CC44D0584911B6A6C6823115F858FC34AB4A80A * get__localDataStoreMgr_11() const { return ____localDataStoreMgr_11; }
inline LocalDataStoreMgr_t6CC44D0584911B6A6C6823115F858FC34AB4A80A ** get_address_of__localDataStoreMgr_11() { return &____localDataStoreMgr_11; }
inline void set__localDataStoreMgr_11(LocalDataStoreMgr_t6CC44D0584911B6A6C6823115F858FC34AB4A80A * value)
{
____localDataStoreMgr_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&____localDataStoreMgr_11), (void*)value);
}
inline static int32_t get_offset_of_global_dynamic_properties_12() { return static_cast<int32_t>(offsetof(Context_t8A5B564FD0F970E10A97ACB8A7579FFF3EE4C678_StaticFields, ___global_dynamic_properties_12)); }
inline DynamicPropertyCollection_t374B470D20F1FAF60F0578EE489846E6E283984B * get_global_dynamic_properties_12() const { return ___global_dynamic_properties_12; }
inline DynamicPropertyCollection_t374B470D20F1FAF60F0578EE489846E6E283984B ** get_address_of_global_dynamic_properties_12() { return &___global_dynamic_properties_12; }
inline void set_global_dynamic_properties_12(DynamicPropertyCollection_t374B470D20F1FAF60F0578EE489846E6E283984B * value)
{
___global_dynamic_properties_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&___global_dynamic_properties_12), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Runtime.Remoting.Contexts.Context
struct Context_t8A5B564FD0F970E10A97ACB8A7579FFF3EE4C678_marshaled_pinvoke
{
int32_t ___domain_id_0;
int32_t ___context_id_1;
uintptr_t ___static_data_2;
uintptr_t ___data_3;
RuntimeObject* ___server_context_sink_chain_6;
RuntimeObject* ___client_context_sink_chain_7;
List_1_t6C44C0357D6C8D5FA8F1019C5D37D11A0AEC8544 * ___context_properties_8;
LocalDataStoreHolder_tF51C9DD735A89132114AE47E3EB51C11D0FED146 * ____localDataStore_10;
DynamicPropertyCollection_t374B470D20F1FAF60F0578EE489846E6E283984B * ___context_dynamic_properties_13;
ContextCallbackObject_t0E2D94904CEC51006BE71AE154A7E7D9CD4AFA4B * ___callback_object_14;
};
// Native definition for COM marshalling of System.Runtime.Remoting.Contexts.Context
struct Context_t8A5B564FD0F970E10A97ACB8A7579FFF3EE4C678_marshaled_com
{
int32_t ___domain_id_0;
int32_t ___context_id_1;
uintptr_t ___static_data_2;
uintptr_t ___data_3;
RuntimeObject* ___server_context_sink_chain_6;
RuntimeObject* ___client_context_sink_chain_7;
List_1_t6C44C0357D6C8D5FA8F1019C5D37D11A0AEC8544 * ___context_properties_8;
LocalDataStoreHolder_tF51C9DD735A89132114AE47E3EB51C11D0FED146 * ____localDataStore_10;
DynamicPropertyCollection_t374B470D20F1FAF60F0578EE489846E6E283984B * ___context_dynamic_properties_13;
ContextCallbackObject_t0E2D94904CEC51006BE71AE154A7E7D9CD4AFA4B * ___callback_object_14;
};
// System.Runtime.Remoting.Messaging.CallType
struct CallType_t15DF7BAFAD151752A76BBDA8F4D95AF3B4CA5444
{
public:
// System.Int32 System.Runtime.Remoting.Messaging.CallType::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(CallType_t15DF7BAFAD151752A76BBDA8F4D95AF3B4CA5444, ___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.Runtime.Remoting.WellKnownObjectMode
struct WellKnownObjectMode_tD0EDA73FE29C75F12EA90F0EBC7875BAD0E3E7BD
{
public:
// System.Int32 System.Runtime.Remoting.WellKnownObjectMode::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(WellKnownObjectMode_tD0EDA73FE29C75F12EA90F0EBC7875BAD0E3E7BD, ___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.Runtime.Serialization.Formatters.Binary.BinaryTypeEnum
struct BinaryTypeEnum_tC64D097C71D4D8F090D20424FCF2BD4CF9FE60A4
{
public:
// System.Int32 System.Runtime.Serialization.Formatters.Binary.BinaryTypeEnum::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(BinaryTypeEnum_tC64D097C71D4D8F090D20424FCF2BD4CF9FE60A4, ___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.Runtime.Serialization.Formatters.FormatterAssemblyStyle
struct FormatterAssemblyStyle_t176037936039C0AEAEDFF283CD0E53E721D4CEF2
{
public:
// System.Int32 System.Runtime.Serialization.Formatters.FormatterAssemblyStyle::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(FormatterAssemblyStyle_t176037936039C0AEAEDFF283CD0E53E721D4CEF2, ___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.Runtime.Serialization.Formatters.FormatterTypeStyle
struct FormatterTypeStyle_tE84DD5CF7A3D4E07A4881B66CE1AE112677A4E6A
{
public:
// System.Int32 System.Runtime.Serialization.Formatters.FormatterTypeStyle::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(FormatterTypeStyle_tE84DD5CF7A3D4E07A4881B66CE1AE112677A4E6A, ___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.Runtime.Serialization.Formatters.TypeFilterLevel
struct TypeFilterLevel_t7ED94310B4D2D5C697A19E0CE2327A7DC5B39C4D
{
public:
// System.Int32 System.Runtime.Serialization.Formatters.TypeFilterLevel::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TypeFilterLevel_t7ED94310B4D2D5C697A19E0CE2327A7DC5B39C4D, ___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.Runtime.Serialization.StreamingContextStates
struct StreamingContextStates_tF4C7FE6D6121BD4C67699869C8269A60B36B42C3
{
public:
// System.Int32 System.Runtime.Serialization.StreamingContextStates::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(StreamingContextStates_tF4C7FE6D6121BD4C67699869C8269A60B36B42C3, ___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.RuntimeFieldHandle
struct RuntimeFieldHandle_t7BE65FC857501059EBAC9772C93B02CD413D9C96
{
public:
// System.IntPtr System.RuntimeFieldHandle::value
intptr_t ___value_0;
public:
inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(RuntimeFieldHandle_t7BE65FC857501059EBAC9772C93B02CD413D9C96, ___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.RuntimeTypeHandle
struct RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9
{
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_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9, ___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.StringComparison
struct StringComparison_tCC9F72B9B1E2C3C6D2566DD0D3A61E1621048998
{
public:
// System.Int32 System.StringComparison::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(StringComparison_tCC9F72B9B1E2C3C6D2566DD0D3A61E1621048998, ___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.TermInfoStrings
struct TermInfoStrings_tC2CD768002EED548C9D83DCA65B040248D9BD7B5
{
public:
// System.Int32 System.TermInfoStrings::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TermInfoStrings_tC2CD768002EED548C9D83DCA65B040248D9BD7B5, ___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.Threading.CancellationTokenRegistration
struct CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A
{
public:
// System.Threading.CancellationCallbackInfo System.Threading.CancellationTokenRegistration::m_callbackInfo
CancellationCallbackInfo_t7FC8CF6DB4845FCB0138771E86AE058710B1117B * ___m_callbackInfo_0;
// System.Threading.SparselyPopulatedArrayAddInfo`1<System.Threading.CancellationCallbackInfo> System.Threading.CancellationTokenRegistration::m_registrationInfo
SparselyPopulatedArrayAddInfo_1_t6EE25E0D720E03DE7A660791DB554CADCD247FC0 ___m_registrationInfo_1;
public:
inline static int32_t get_offset_of_m_callbackInfo_0() { return static_cast<int32_t>(offsetof(CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A, ___m_callbackInfo_0)); }
inline CancellationCallbackInfo_t7FC8CF6DB4845FCB0138771E86AE058710B1117B * get_m_callbackInfo_0() const { return ___m_callbackInfo_0; }
inline CancellationCallbackInfo_t7FC8CF6DB4845FCB0138771E86AE058710B1117B ** get_address_of_m_callbackInfo_0() { return &___m_callbackInfo_0; }
inline void set_m_callbackInfo_0(CancellationCallbackInfo_t7FC8CF6DB4845FCB0138771E86AE058710B1117B * 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_t407059AA0E00ABE74F43C533E7D035C4BA451F6A, ___m_registrationInfo_1)); }
inline SparselyPopulatedArrayAddInfo_1_t6EE25E0D720E03DE7A660791DB554CADCD247FC0 get_m_registrationInfo_1() const { return ___m_registrationInfo_1; }
inline SparselyPopulatedArrayAddInfo_1_t6EE25E0D720E03DE7A660791DB554CADCD247FC0 * get_address_of_m_registrationInfo_1() { return &___m_registrationInfo_1; }
inline void set_m_registrationInfo_1(SparselyPopulatedArrayAddInfo_1_t6EE25E0D720E03DE7A660791DB554CADCD247FC0 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_t407059AA0E00ABE74F43C533E7D035C4BA451F6A_marshaled_pinvoke
{
CancellationCallbackInfo_t7FC8CF6DB4845FCB0138771E86AE058710B1117B * ___m_callbackInfo_0;
SparselyPopulatedArrayAddInfo_1_t6EE25E0D720E03DE7A660791DB554CADCD247FC0 ___m_registrationInfo_1;
};
// Native definition for COM marshalling of System.Threading.CancellationTokenRegistration
struct CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A_marshaled_com
{
CancellationCallbackInfo_t7FC8CF6DB4845FCB0138771E86AE058710B1117B * ___m_callbackInfo_0;
SparselyPopulatedArrayAddInfo_1_t6EE25E0D720E03DE7A660791DB554CADCD247FC0 ___m_registrationInfo_1;
};
// System.Threading.CancellationTokenSource
struct CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 : public RuntimeObject
{
public:
// System.Threading.ManualResetEvent modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.CancellationTokenSource::m_kernelEvent
ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA * ___m_kernelEvent_3;
// System.Threading.SparselyPopulatedArray`1<System.Threading.CancellationCallbackInfo>[] modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.CancellationTokenSource::m_registeredCallbacksLists
SparselyPopulatedArray_1U5BU5D_t4D2064CEC206620DC5001D7C857A845833DCB52A* ___m_registeredCallbacksLists_4;
// System.Int32 modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.CancellationTokenSource::m_state
int32_t ___m_state_5;
// System.Int32 modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.CancellationTokenSource::m_threadIDExecutingCallbacks
int32_t ___m_threadIDExecutingCallbacks_6;
// System.Boolean System.Threading.CancellationTokenSource::m_disposed
bool ___m_disposed_7;
// System.Threading.CancellationTokenRegistration[] System.Threading.CancellationTokenSource::m_linkingRegistrations
CancellationTokenRegistrationU5BU5D_t864BA2E1E6485FDC593F17F7C01525F33CCE7910* ___m_linkingRegistrations_8;
// System.Threading.CancellationCallbackInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.CancellationTokenSource::m_executingCallback
CancellationCallbackInfo_t7FC8CF6DB4845FCB0138771E86AE058710B1117B * ___m_executingCallback_10;
// System.Threading.Timer modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.CancellationTokenSource::m_timer
Timer_t31BE4EDDA5C1CB5CFDF698231850B47B7F9DE9CB * ___m_timer_11;
public:
inline static int32_t get_offset_of_m_kernelEvent_3() { return static_cast<int32_t>(offsetof(CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3, ___m_kernelEvent_3)); }
inline ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA * get_m_kernelEvent_3() const { return ___m_kernelEvent_3; }
inline ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA ** get_address_of_m_kernelEvent_3() { return &___m_kernelEvent_3; }
inline void set_m_kernelEvent_3(ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA * value)
{
___m_kernelEvent_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_kernelEvent_3), (void*)value);
}
inline static int32_t get_offset_of_m_registeredCallbacksLists_4() { return static_cast<int32_t>(offsetof(CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3, ___m_registeredCallbacksLists_4)); }
inline SparselyPopulatedArray_1U5BU5D_t4D2064CEC206620DC5001D7C857A845833DCB52A* get_m_registeredCallbacksLists_4() const { return ___m_registeredCallbacksLists_4; }
inline SparselyPopulatedArray_1U5BU5D_t4D2064CEC206620DC5001D7C857A845833DCB52A** get_address_of_m_registeredCallbacksLists_4() { return &___m_registeredCallbacksLists_4; }
inline void set_m_registeredCallbacksLists_4(SparselyPopulatedArray_1U5BU5D_t4D2064CEC206620DC5001D7C857A845833DCB52A* value)
{
___m_registeredCallbacksLists_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_registeredCallbacksLists_4), (void*)value);
}
inline static int32_t get_offset_of_m_state_5() { return static_cast<int32_t>(offsetof(CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3, ___m_state_5)); }
inline int32_t get_m_state_5() const { return ___m_state_5; }
inline int32_t* get_address_of_m_state_5() { return &___m_state_5; }
inline void set_m_state_5(int32_t value)
{
___m_state_5 = value;
}
inline static int32_t get_offset_of_m_threadIDExecutingCallbacks_6() { return static_cast<int32_t>(offsetof(CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3, ___m_threadIDExecutingCallbacks_6)); }
inline int32_t get_m_threadIDExecutingCallbacks_6() const { return ___m_threadIDExecutingCallbacks_6; }
inline int32_t* get_address_of_m_threadIDExecutingCallbacks_6() { return &___m_threadIDExecutingCallbacks_6; }
inline void set_m_threadIDExecutingCallbacks_6(int32_t value)
{
___m_threadIDExecutingCallbacks_6 = value;
}
inline static int32_t get_offset_of_m_disposed_7() { return static_cast<int32_t>(offsetof(CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3, ___m_disposed_7)); }
inline bool get_m_disposed_7() const { return ___m_disposed_7; }
inline bool* get_address_of_m_disposed_7() { return &___m_disposed_7; }
inline void set_m_disposed_7(bool value)
{
___m_disposed_7 = value;
}
inline static int32_t get_offset_of_m_linkingRegistrations_8() { return static_cast<int32_t>(offsetof(CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3, ___m_linkingRegistrations_8)); }
inline CancellationTokenRegistrationU5BU5D_t864BA2E1E6485FDC593F17F7C01525F33CCE7910* get_m_linkingRegistrations_8() const { return ___m_linkingRegistrations_8; }
inline CancellationTokenRegistrationU5BU5D_t864BA2E1E6485FDC593F17F7C01525F33CCE7910** get_address_of_m_linkingRegistrations_8() { return &___m_linkingRegistrations_8; }
inline void set_m_linkingRegistrations_8(CancellationTokenRegistrationU5BU5D_t864BA2E1E6485FDC593F17F7C01525F33CCE7910* value)
{
___m_linkingRegistrations_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_linkingRegistrations_8), (void*)value);
}
inline static int32_t get_offset_of_m_executingCallback_10() { return static_cast<int32_t>(offsetof(CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3, ___m_executingCallback_10)); }
inline CancellationCallbackInfo_t7FC8CF6DB4845FCB0138771E86AE058710B1117B * get_m_executingCallback_10() const { return ___m_executingCallback_10; }
inline CancellationCallbackInfo_t7FC8CF6DB4845FCB0138771E86AE058710B1117B ** get_address_of_m_executingCallback_10() { return &___m_executingCallback_10; }
inline void set_m_executingCallback_10(CancellationCallbackInfo_t7FC8CF6DB4845FCB0138771E86AE058710B1117B * value)
{
___m_executingCallback_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_executingCallback_10), (void*)value);
}
inline static int32_t get_offset_of_m_timer_11() { return static_cast<int32_t>(offsetof(CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3, ___m_timer_11)); }
inline Timer_t31BE4EDDA5C1CB5CFDF698231850B47B7F9DE9CB * get_m_timer_11() const { return ___m_timer_11; }
inline Timer_t31BE4EDDA5C1CB5CFDF698231850B47B7F9DE9CB ** get_address_of_m_timer_11() { return &___m_timer_11; }
inline void set_m_timer_11(Timer_t31BE4EDDA5C1CB5CFDF698231850B47B7F9DE9CB * value)
{
___m_timer_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_timer_11), (void*)value);
}
};
struct CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3_StaticFields
{
public:
// System.Threading.CancellationTokenSource System.Threading.CancellationTokenSource::_staticSource_Set
CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * ____staticSource_Set_0;
// System.Threading.CancellationTokenSource System.Threading.CancellationTokenSource::_staticSource_NotCancelable
CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * ____staticSource_NotCancelable_1;
// System.Int32 System.Threading.CancellationTokenSource::s_nLists
int32_t ___s_nLists_2;
// System.Action`1<System.Object> System.Threading.CancellationTokenSource::s_LinkedTokenCancelDelegate
Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * ___s_LinkedTokenCancelDelegate_9;
// System.Threading.TimerCallback System.Threading.CancellationTokenSource::s_timerCallback
TimerCallback_tD193CC50BF27E129E6857E1E8A7EAC24BD131814 * ___s_timerCallback_12;
public:
inline static int32_t get_offset_of__staticSource_Set_0() { return static_cast<int32_t>(offsetof(CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3_StaticFields, ____staticSource_Set_0)); }
inline CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * get__staticSource_Set_0() const { return ____staticSource_Set_0; }
inline CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 ** get_address_of__staticSource_Set_0() { return &____staticSource_Set_0; }
inline void set__staticSource_Set_0(CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * value)
{
____staticSource_Set_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____staticSource_Set_0), (void*)value);
}
inline static int32_t get_offset_of__staticSource_NotCancelable_1() { return static_cast<int32_t>(offsetof(CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3_StaticFields, ____staticSource_NotCancelable_1)); }
inline CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * get__staticSource_NotCancelable_1() const { return ____staticSource_NotCancelable_1; }
inline CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 ** get_address_of__staticSource_NotCancelable_1() { return &____staticSource_NotCancelable_1; }
inline void set__staticSource_NotCancelable_1(CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * value)
{
____staticSource_NotCancelable_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____staticSource_NotCancelable_1), (void*)value);
}
inline static int32_t get_offset_of_s_nLists_2() { return static_cast<int32_t>(offsetof(CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3_StaticFields, ___s_nLists_2)); }
inline int32_t get_s_nLists_2() const { return ___s_nLists_2; }
inline int32_t* get_address_of_s_nLists_2() { return &___s_nLists_2; }
inline void set_s_nLists_2(int32_t value)
{
___s_nLists_2 = value;
}
inline static int32_t get_offset_of_s_LinkedTokenCancelDelegate_9() { return static_cast<int32_t>(offsetof(CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3_StaticFields, ___s_LinkedTokenCancelDelegate_9)); }
inline Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * get_s_LinkedTokenCancelDelegate_9() const { return ___s_LinkedTokenCancelDelegate_9; }
inline Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC ** get_address_of_s_LinkedTokenCancelDelegate_9() { return &___s_LinkedTokenCancelDelegate_9; }
inline void set_s_LinkedTokenCancelDelegate_9(Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * value)
{
___s_LinkedTokenCancelDelegate_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_LinkedTokenCancelDelegate_9), (void*)value);
}
inline static int32_t get_offset_of_s_timerCallback_12() { return static_cast<int32_t>(offsetof(CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3_StaticFields, ___s_timerCallback_12)); }
inline TimerCallback_tD193CC50BF27E129E6857E1E8A7EAC24BD131814 * get_s_timerCallback_12() const { return ___s_timerCallback_12; }
inline TimerCallback_tD193CC50BF27E129E6857E1E8A7EAC24BD131814 ** get_address_of_s_timerCallback_12() { return &___s_timerCallback_12; }
inline void set_s_timerCallback_12(TimerCallback_tD193CC50BF27E129E6857E1E8A7EAC24BD131814 * value)
{
___s_timerCallback_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_timerCallback_12), (void*)value);
}
};
// System.Threading.ExecutionContext_CaptureOptions
struct CaptureOptions_t9DBDF67BE8DFE3AC07C9AF489F95FC8C14CB9C9E
{
public:
// System.Int32 System.Threading.ExecutionContext_CaptureOptions::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(CaptureOptions_t9DBDF67BE8DFE3AC07C9AF489F95FC8C14CB9C9E, ___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.Threading.ExecutionContext_Flags
struct Flags_t84E4B7439C575026B3A9D10B43AC61B9709011E4
{
public:
// System.Int32 System.Threading.ExecutionContext_Flags::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Flags_t84E4B7439C575026B3A9D10B43AC61B9709011E4, ___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.Threading.SparselyPopulatedArrayFragment`1<System.Object>
struct SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 : public RuntimeObject
{
public:
// T[] System.Threading.SparselyPopulatedArrayFragment`1::m_elements
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___m_elements_0;
// System.Int32 modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.SparselyPopulatedArrayFragment`1::m_freeCount
int32_t ___m_freeCount_1;
// System.Threading.SparselyPopulatedArrayFragment`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.SparselyPopulatedArrayFragment`1::m_next
SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 * ___m_next_2;
// System.Threading.SparselyPopulatedArrayFragment`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.SparselyPopulatedArrayFragment`1::m_prev
SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 * ___m_prev_3;
public:
inline static int32_t get_offset_of_m_elements_0() { return static_cast<int32_t>(offsetof(SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6, ___m_elements_0)); }
inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get_m_elements_0() const { return ___m_elements_0; }
inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of_m_elements_0() { return &___m_elements_0; }
inline void set_m_elements_0(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value)
{
___m_elements_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_elements_0), (void*)value);
}
inline static int32_t get_offset_of_m_freeCount_1() { return static_cast<int32_t>(offsetof(SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6, ___m_freeCount_1)); }
inline int32_t get_m_freeCount_1() const { return ___m_freeCount_1; }
inline int32_t* get_address_of_m_freeCount_1() { return &___m_freeCount_1; }
inline void set_m_freeCount_1(int32_t value)
{
___m_freeCount_1 = value;
}
inline static int32_t get_offset_of_m_next_2() { return static_cast<int32_t>(offsetof(SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6, ___m_next_2)); }
inline SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 * get_m_next_2() const { return ___m_next_2; }
inline SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 ** get_address_of_m_next_2() { return &___m_next_2; }
inline void set_m_next_2(SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 * value)
{
___m_next_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_next_2), (void*)value);
}
inline static int32_t get_offset_of_m_prev_3() { return static_cast<int32_t>(offsetof(SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6, ___m_prev_3)); }
inline SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 * get_m_prev_3() const { return ___m_prev_3; }
inline SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 ** get_address_of_m_prev_3() { return &___m_prev_3; }
inline void set_m_prev_3(SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 * value)
{
___m_prev_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_prev_3), (void*)value);
}
};
// System.Threading.SparselyPopulatedArrayFragment`1<System.Threading.CancellationCallbackInfo>
struct SparselyPopulatedArrayFragment_1_t93197EF47D6A025755987003D5D62F3AED371C21 : public RuntimeObject
{
public:
// T[] System.Threading.SparselyPopulatedArrayFragment`1::m_elements
CancellationCallbackInfoU5BU5D_t044BC5A41ACFAC596EA3C563F024F86BD3A0CCF1* ___m_elements_0;
// System.Int32 modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.SparselyPopulatedArrayFragment`1::m_freeCount
int32_t ___m_freeCount_1;
// System.Threading.SparselyPopulatedArrayFragment`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.SparselyPopulatedArrayFragment`1::m_next
SparselyPopulatedArrayFragment_1_t93197EF47D6A025755987003D5D62F3AED371C21 * ___m_next_2;
// System.Threading.SparselyPopulatedArrayFragment`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.SparselyPopulatedArrayFragment`1::m_prev
SparselyPopulatedArrayFragment_1_t93197EF47D6A025755987003D5D62F3AED371C21 * ___m_prev_3;
public:
inline static int32_t get_offset_of_m_elements_0() { return static_cast<int32_t>(offsetof(SparselyPopulatedArrayFragment_1_t93197EF47D6A025755987003D5D62F3AED371C21, ___m_elements_0)); }
inline CancellationCallbackInfoU5BU5D_t044BC5A41ACFAC596EA3C563F024F86BD3A0CCF1* get_m_elements_0() const { return ___m_elements_0; }
inline CancellationCallbackInfoU5BU5D_t044BC5A41ACFAC596EA3C563F024F86BD3A0CCF1** get_address_of_m_elements_0() { return &___m_elements_0; }
inline void set_m_elements_0(CancellationCallbackInfoU5BU5D_t044BC5A41ACFAC596EA3C563F024F86BD3A0CCF1* value)
{
___m_elements_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_elements_0), (void*)value);
}
inline static int32_t get_offset_of_m_freeCount_1() { return static_cast<int32_t>(offsetof(SparselyPopulatedArrayFragment_1_t93197EF47D6A025755987003D5D62F3AED371C21, ___m_freeCount_1)); }
inline int32_t get_m_freeCount_1() const { return ___m_freeCount_1; }
inline int32_t* get_address_of_m_freeCount_1() { return &___m_freeCount_1; }
inline void set_m_freeCount_1(int32_t value)
{
___m_freeCount_1 = value;
}
inline static int32_t get_offset_of_m_next_2() { return static_cast<int32_t>(offsetof(SparselyPopulatedArrayFragment_1_t93197EF47D6A025755987003D5D62F3AED371C21, ___m_next_2)); }
inline SparselyPopulatedArrayFragment_1_t93197EF47D6A025755987003D5D62F3AED371C21 * get_m_next_2() const { return ___m_next_2; }
inline SparselyPopulatedArrayFragment_1_t93197EF47D6A025755987003D5D62F3AED371C21 ** get_address_of_m_next_2() { return &___m_next_2; }
inline void set_m_next_2(SparselyPopulatedArrayFragment_1_t93197EF47D6A025755987003D5D62F3AED371C21 * value)
{
___m_next_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_next_2), (void*)value);
}
inline static int32_t get_offset_of_m_prev_3() { return static_cast<int32_t>(offsetof(SparselyPopulatedArrayFragment_1_t93197EF47D6A025755987003D5D62F3AED371C21, ___m_prev_3)); }
inline SparselyPopulatedArrayFragment_1_t93197EF47D6A025755987003D5D62F3AED371C21 * get_m_prev_3() const { return ___m_prev_3; }
inline SparselyPopulatedArrayFragment_1_t93197EF47D6A025755987003D5D62F3AED371C21 ** get_address_of_m_prev_3() { return &___m_prev_3; }
inline void set_m_prev_3(SparselyPopulatedArrayFragment_1_t93197EF47D6A025755987003D5D62F3AED371C21 * value)
{
___m_prev_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_prev_3), (void*)value);
}
};
// System.Threading.StackCrawlMark
struct StackCrawlMark_t2BEE6EC5F8EA322B986CA375A594BBD34B98EBA5
{
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_t2BEE6EC5F8EA322B986CA375A594BBD34B98EBA5, ___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.Threading.Tasks.CausalityRelation
struct CausalityRelation_t5EFB44045C7D3054B11B2E94CCAE40BE1FFAE63E
{
public:
// System.Int32 System.Threading.Tasks.CausalityRelation::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(CausalityRelation_t5EFB44045C7D3054B11B2E94CCAE40BE1FFAE63E, ___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.Threading.Tasks.CausalitySynchronousWork
struct CausalitySynchronousWork_t073D196AFA1546BD5F11370AA4CD54A09650DE53
{
public:
// System.Int32 System.Threading.Tasks.CausalitySynchronousWork::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(CausalitySynchronousWork_t073D196AFA1546BD5F11370AA4CD54A09650DE53, ___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.Threading.Tasks.CausalityTraceLevel
struct CausalityTraceLevel_t01DEED18A37C591FB2E53F2ADD89E2145ED8A9CD
{
public:
// System.Int32 System.Threading.Tasks.CausalityTraceLevel::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(CausalityTraceLevel_t01DEED18A37C591FB2E53F2ADD89E2145ED8A9CD, ___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.Threading.Tasks.Task
struct Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 : public RuntimeObject
{
public:
// System.Int32 modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.Task::m_taskId
int32_t ___m_taskId_4;
// System.Object System.Threading.Tasks.Task::m_action
RuntimeObject * ___m_action_5;
// System.Object System.Threading.Tasks.Task::m_stateObject
RuntimeObject * ___m_stateObject_6;
// System.Threading.Tasks.TaskScheduler System.Threading.Tasks.Task::m_taskScheduler
TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * ___m_taskScheduler_7;
// System.Threading.Tasks.Task System.Threading.Tasks.Task::m_parent
Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * ___m_parent_8;
// System.Int32 modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.Task::m_stateFlags
int32_t ___m_stateFlags_9;
// System.Object modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.Task::m_continuationObject
RuntimeObject * ___m_continuationObject_10;
// System.Threading.Tasks.Task_ContingentProperties modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.Task::m_contingentProperties
ContingentProperties_t1E249C737B8B8644ED1D60EEFA101D326B199EA0 * ___m_contingentProperties_15;
public:
inline static int32_t get_offset_of_m_taskId_4() { return static_cast<int32_t>(offsetof(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60, ___m_taskId_4)); }
inline int32_t get_m_taskId_4() const { return ___m_taskId_4; }
inline int32_t* get_address_of_m_taskId_4() { return &___m_taskId_4; }
inline void set_m_taskId_4(int32_t value)
{
___m_taskId_4 = value;
}
inline static int32_t get_offset_of_m_action_5() { return static_cast<int32_t>(offsetof(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60, ___m_action_5)); }
inline RuntimeObject * get_m_action_5() const { return ___m_action_5; }
inline RuntimeObject ** get_address_of_m_action_5() { return &___m_action_5; }
inline void set_m_action_5(RuntimeObject * value)
{
___m_action_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_action_5), (void*)value);
}
inline static int32_t get_offset_of_m_stateObject_6() { return static_cast<int32_t>(offsetof(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60, ___m_stateObject_6)); }
inline RuntimeObject * get_m_stateObject_6() const { return ___m_stateObject_6; }
inline RuntimeObject ** get_address_of_m_stateObject_6() { return &___m_stateObject_6; }
inline void set_m_stateObject_6(RuntimeObject * value)
{
___m_stateObject_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_stateObject_6), (void*)value);
}
inline static int32_t get_offset_of_m_taskScheduler_7() { return static_cast<int32_t>(offsetof(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60, ___m_taskScheduler_7)); }
inline TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * get_m_taskScheduler_7() const { return ___m_taskScheduler_7; }
inline TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D ** get_address_of_m_taskScheduler_7() { return &___m_taskScheduler_7; }
inline void set_m_taskScheduler_7(TaskScheduler_t74FBEEEDBDD5E0088FF0EEC18F45CD866B098D5D * value)
{
___m_taskScheduler_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_taskScheduler_7), (void*)value);
}
inline static int32_t get_offset_of_m_parent_8() { return static_cast<int32_t>(offsetof(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60, ___m_parent_8)); }
inline Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * get_m_parent_8() const { return ___m_parent_8; }
inline Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 ** get_address_of_m_parent_8() { return &___m_parent_8; }
inline void set_m_parent_8(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * value)
{
___m_parent_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_parent_8), (void*)value);
}
inline static int32_t get_offset_of_m_stateFlags_9() { return static_cast<int32_t>(offsetof(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60, ___m_stateFlags_9)); }
inline int32_t get_m_stateFlags_9() const { return ___m_stateFlags_9; }
inline int32_t* get_address_of_m_stateFlags_9() { return &___m_stateFlags_9; }
inline void set_m_stateFlags_9(int32_t value)
{
___m_stateFlags_9 = value;
}
inline static int32_t get_offset_of_m_continuationObject_10() { return static_cast<int32_t>(offsetof(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60, ___m_continuationObject_10)); }
inline RuntimeObject * get_m_continuationObject_10() const { return ___m_continuationObject_10; }
inline RuntimeObject ** get_address_of_m_continuationObject_10() { return &___m_continuationObject_10; }
inline void set_m_continuationObject_10(RuntimeObject * value)
{
___m_continuationObject_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_continuationObject_10), (void*)value);
}
inline static int32_t get_offset_of_m_contingentProperties_15() { return static_cast<int32_t>(offsetof(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60, ___m_contingentProperties_15)); }
inline ContingentProperties_t1E249C737B8B8644ED1D60EEFA101D326B199EA0 * get_m_contingentProperties_15() const { return ___m_contingentProperties_15; }
inline ContingentProperties_t1E249C737B8B8644ED1D60EEFA101D326B199EA0 ** get_address_of_m_contingentProperties_15() { return &___m_contingentProperties_15; }
inline void set_m_contingentProperties_15(ContingentProperties_t1E249C737B8B8644ED1D60EEFA101D326B199EA0 * value)
{
___m_contingentProperties_15 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_contingentProperties_15), (void*)value);
}
};
struct Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_StaticFields
{
public:
// System.Int32 System.Threading.Tasks.Task::s_taskIdCounter
int32_t ___s_taskIdCounter_2;
// System.Threading.Tasks.TaskFactory System.Threading.Tasks.Task::s_factory
TaskFactory_t22D999A05A967C31A4B5FFBD08864809BF35EA3B * ___s_factory_3;
// System.Object System.Threading.Tasks.Task::s_taskCompletionSentinel
RuntimeObject * ___s_taskCompletionSentinel_11;
// System.Boolean System.Threading.Tasks.Task::s_asyncDebuggingEnabled
bool ___s_asyncDebuggingEnabled_12;
// System.Collections.Generic.Dictionary`2<System.Int32,System.Threading.Tasks.Task> System.Threading.Tasks.Task::s_currentActiveTasks
Dictionary_2_tB758E2A2593CD827EFC041BE1F1BB4B68DE1C3E8 * ___s_currentActiveTasks_13;
// System.Object System.Threading.Tasks.Task::s_activeTasksLock
RuntimeObject * ___s_activeTasksLock_14;
// System.Action`1<System.Object> System.Threading.Tasks.Task::s_taskCancelCallback
Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * ___s_taskCancelCallback_16;
// System.Func`1<System.Threading.Tasks.Task_ContingentProperties> System.Threading.Tasks.Task::s_createContingentProperties
Func_1_tBCF42601FA307876E83080BE4204110820F8BF3B * ___s_createContingentProperties_17;
// System.Threading.Tasks.Task System.Threading.Tasks.Task::s_completedTask
Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * ___s_completedTask_18;
// System.Predicate`1<System.Threading.Tasks.Task> System.Threading.Tasks.Task::s_IsExceptionObservedByParentPredicate
Predicate_1_tC0DBBC8498BD1EE6ABFFAA5628024105FA7D11BD * ___s_IsExceptionObservedByParentPredicate_19;
// System.Threading.ContextCallback System.Threading.Tasks.Task::s_ecCallback
ContextCallback_t93707E0430F4FF3E15E1FB5A4844BE89C657AE8B * ___s_ecCallback_20;
// System.Predicate`1<System.Object> System.Threading.Tasks.Task::s_IsTaskContinuationNullPredicate
Predicate_1_t5C96B81B31A697B11C4C3767E3298773AF25DFEB * ___s_IsTaskContinuationNullPredicate_21;
public:
inline static int32_t get_offset_of_s_taskIdCounter_2() { return static_cast<int32_t>(offsetof(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_StaticFields, ___s_taskIdCounter_2)); }
inline int32_t get_s_taskIdCounter_2() const { return ___s_taskIdCounter_2; }
inline int32_t* get_address_of_s_taskIdCounter_2() { return &___s_taskIdCounter_2; }
inline void set_s_taskIdCounter_2(int32_t value)
{
___s_taskIdCounter_2 = value;
}
inline static int32_t get_offset_of_s_factory_3() { return static_cast<int32_t>(offsetof(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_StaticFields, ___s_factory_3)); }
inline TaskFactory_t22D999A05A967C31A4B5FFBD08864809BF35EA3B * get_s_factory_3() const { return ___s_factory_3; }
inline TaskFactory_t22D999A05A967C31A4B5FFBD08864809BF35EA3B ** get_address_of_s_factory_3() { return &___s_factory_3; }
inline void set_s_factory_3(TaskFactory_t22D999A05A967C31A4B5FFBD08864809BF35EA3B * value)
{
___s_factory_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_factory_3), (void*)value);
}
inline static int32_t get_offset_of_s_taskCompletionSentinel_11() { return static_cast<int32_t>(offsetof(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_StaticFields, ___s_taskCompletionSentinel_11)); }
inline RuntimeObject * get_s_taskCompletionSentinel_11() const { return ___s_taskCompletionSentinel_11; }
inline RuntimeObject ** get_address_of_s_taskCompletionSentinel_11() { return &___s_taskCompletionSentinel_11; }
inline void set_s_taskCompletionSentinel_11(RuntimeObject * value)
{
___s_taskCompletionSentinel_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_taskCompletionSentinel_11), (void*)value);
}
inline static int32_t get_offset_of_s_asyncDebuggingEnabled_12() { return static_cast<int32_t>(offsetof(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_StaticFields, ___s_asyncDebuggingEnabled_12)); }
inline bool get_s_asyncDebuggingEnabled_12() const { return ___s_asyncDebuggingEnabled_12; }
inline bool* get_address_of_s_asyncDebuggingEnabled_12() { return &___s_asyncDebuggingEnabled_12; }
inline void set_s_asyncDebuggingEnabled_12(bool value)
{
___s_asyncDebuggingEnabled_12 = value;
}
inline static int32_t get_offset_of_s_currentActiveTasks_13() { return static_cast<int32_t>(offsetof(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_StaticFields, ___s_currentActiveTasks_13)); }
inline Dictionary_2_tB758E2A2593CD827EFC041BE1F1BB4B68DE1C3E8 * get_s_currentActiveTasks_13() const { return ___s_currentActiveTasks_13; }
inline Dictionary_2_tB758E2A2593CD827EFC041BE1F1BB4B68DE1C3E8 ** get_address_of_s_currentActiveTasks_13() { return &___s_currentActiveTasks_13; }
inline void set_s_currentActiveTasks_13(Dictionary_2_tB758E2A2593CD827EFC041BE1F1BB4B68DE1C3E8 * value)
{
___s_currentActiveTasks_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_currentActiveTasks_13), (void*)value);
}
inline static int32_t get_offset_of_s_activeTasksLock_14() { return static_cast<int32_t>(offsetof(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_StaticFields, ___s_activeTasksLock_14)); }
inline RuntimeObject * get_s_activeTasksLock_14() const { return ___s_activeTasksLock_14; }
inline RuntimeObject ** get_address_of_s_activeTasksLock_14() { return &___s_activeTasksLock_14; }
inline void set_s_activeTasksLock_14(RuntimeObject * value)
{
___s_activeTasksLock_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_activeTasksLock_14), (void*)value);
}
inline static int32_t get_offset_of_s_taskCancelCallback_16() { return static_cast<int32_t>(offsetof(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_StaticFields, ___s_taskCancelCallback_16)); }
inline Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * get_s_taskCancelCallback_16() const { return ___s_taskCancelCallback_16; }
inline Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC ** get_address_of_s_taskCancelCallback_16() { return &___s_taskCancelCallback_16; }
inline void set_s_taskCancelCallback_16(Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * value)
{
___s_taskCancelCallback_16 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_taskCancelCallback_16), (void*)value);
}
inline static int32_t get_offset_of_s_createContingentProperties_17() { return static_cast<int32_t>(offsetof(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_StaticFields, ___s_createContingentProperties_17)); }
inline Func_1_tBCF42601FA307876E83080BE4204110820F8BF3B * get_s_createContingentProperties_17() const { return ___s_createContingentProperties_17; }
inline Func_1_tBCF42601FA307876E83080BE4204110820F8BF3B ** get_address_of_s_createContingentProperties_17() { return &___s_createContingentProperties_17; }
inline void set_s_createContingentProperties_17(Func_1_tBCF42601FA307876E83080BE4204110820F8BF3B * value)
{
___s_createContingentProperties_17 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_createContingentProperties_17), (void*)value);
}
inline static int32_t get_offset_of_s_completedTask_18() { return static_cast<int32_t>(offsetof(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_StaticFields, ___s_completedTask_18)); }
inline Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * get_s_completedTask_18() const { return ___s_completedTask_18; }
inline Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 ** get_address_of_s_completedTask_18() { return &___s_completedTask_18; }
inline void set_s_completedTask_18(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * value)
{
___s_completedTask_18 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_completedTask_18), (void*)value);
}
inline static int32_t get_offset_of_s_IsExceptionObservedByParentPredicate_19() { return static_cast<int32_t>(offsetof(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_StaticFields, ___s_IsExceptionObservedByParentPredicate_19)); }
inline Predicate_1_tC0DBBC8498BD1EE6ABFFAA5628024105FA7D11BD * get_s_IsExceptionObservedByParentPredicate_19() const { return ___s_IsExceptionObservedByParentPredicate_19; }
inline Predicate_1_tC0DBBC8498BD1EE6ABFFAA5628024105FA7D11BD ** get_address_of_s_IsExceptionObservedByParentPredicate_19() { return &___s_IsExceptionObservedByParentPredicate_19; }
inline void set_s_IsExceptionObservedByParentPredicate_19(Predicate_1_tC0DBBC8498BD1EE6ABFFAA5628024105FA7D11BD * value)
{
___s_IsExceptionObservedByParentPredicate_19 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_IsExceptionObservedByParentPredicate_19), (void*)value);
}
inline static int32_t get_offset_of_s_ecCallback_20() { return static_cast<int32_t>(offsetof(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_StaticFields, ___s_ecCallback_20)); }
inline ContextCallback_t93707E0430F4FF3E15E1FB5A4844BE89C657AE8B * get_s_ecCallback_20() const { return ___s_ecCallback_20; }
inline ContextCallback_t93707E0430F4FF3E15E1FB5A4844BE89C657AE8B ** get_address_of_s_ecCallback_20() { return &___s_ecCallback_20; }
inline void set_s_ecCallback_20(ContextCallback_t93707E0430F4FF3E15E1FB5A4844BE89C657AE8B * value)
{
___s_ecCallback_20 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_ecCallback_20), (void*)value);
}
inline static int32_t get_offset_of_s_IsTaskContinuationNullPredicate_21() { return static_cast<int32_t>(offsetof(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_StaticFields, ___s_IsTaskContinuationNullPredicate_21)); }
inline Predicate_1_t5C96B81B31A697B11C4C3767E3298773AF25DFEB * get_s_IsTaskContinuationNullPredicate_21() const { return ___s_IsTaskContinuationNullPredicate_21; }
inline Predicate_1_t5C96B81B31A697B11C4C3767E3298773AF25DFEB ** get_address_of_s_IsTaskContinuationNullPredicate_21() { return &___s_IsTaskContinuationNullPredicate_21; }
inline void set_s_IsTaskContinuationNullPredicate_21(Predicate_1_t5C96B81B31A697B11C4C3767E3298773AF25DFEB * value)
{
___s_IsTaskContinuationNullPredicate_21 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_IsTaskContinuationNullPredicate_21), (void*)value);
}
};
struct Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_ThreadStaticFields
{
public:
// System.Threading.Tasks.Task System.Threading.Tasks.Task::t_currentTask
Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * ___t_currentTask_0;
// System.Threading.Tasks.StackGuard System.Threading.Tasks.Task::t_stackGuard
StackGuard_t88E1EE4741AD02CA5FEA04A4EB2CC70F230E0E6D * ___t_stackGuard_1;
public:
inline static int32_t get_offset_of_t_currentTask_0() { return static_cast<int32_t>(offsetof(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_ThreadStaticFields, ___t_currentTask_0)); }
inline Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * get_t_currentTask_0() const { return ___t_currentTask_0; }
inline Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 ** get_address_of_t_currentTask_0() { return &___t_currentTask_0; }
inline void set_t_currentTask_0(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * value)
{
___t_currentTask_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___t_currentTask_0), (void*)value);
}
inline static int32_t get_offset_of_t_stackGuard_1() { return static_cast<int32_t>(offsetof(Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60_ThreadStaticFields, ___t_stackGuard_1)); }
inline StackGuard_t88E1EE4741AD02CA5FEA04A4EB2CC70F230E0E6D * get_t_stackGuard_1() const { return ___t_stackGuard_1; }
inline StackGuard_t88E1EE4741AD02CA5FEA04A4EB2CC70F230E0E6D ** get_address_of_t_stackGuard_1() { return &___t_stackGuard_1; }
inline void set_t_stackGuard_1(StackGuard_t88E1EE4741AD02CA5FEA04A4EB2CC70F230E0E6D * value)
{
___t_stackGuard_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___t_stackGuard_1), (void*)value);
}
};
// System.Threading.WaitHandle
struct WaitHandle_t1D7DD8480FD5DA4E3AF92F569890FB972D9B1842 : public MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8
{
public:
// System.IntPtr System.Threading.WaitHandle::waitHandle
intptr_t ___waitHandle_3;
// Microsoft.Win32.SafeHandles.SafeWaitHandle modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.WaitHandle::safeWaitHandle
SafeWaitHandle_tF37EACEDF9C6F350EB4ABC1E1F869EECB0B5ABB1 * ___safeWaitHandle_4;
// System.Boolean System.Threading.WaitHandle::hasThreadAffinity
bool ___hasThreadAffinity_5;
public:
inline static int32_t get_offset_of_waitHandle_3() { return static_cast<int32_t>(offsetof(WaitHandle_t1D7DD8480FD5DA4E3AF92F569890FB972D9B1842, ___waitHandle_3)); }
inline intptr_t get_waitHandle_3() const { return ___waitHandle_3; }
inline intptr_t* get_address_of_waitHandle_3() { return &___waitHandle_3; }
inline void set_waitHandle_3(intptr_t value)
{
___waitHandle_3 = value;
}
inline static int32_t get_offset_of_safeWaitHandle_4() { return static_cast<int32_t>(offsetof(WaitHandle_t1D7DD8480FD5DA4E3AF92F569890FB972D9B1842, ___safeWaitHandle_4)); }
inline SafeWaitHandle_tF37EACEDF9C6F350EB4ABC1E1F869EECB0B5ABB1 * get_safeWaitHandle_4() const { return ___safeWaitHandle_4; }
inline SafeWaitHandle_tF37EACEDF9C6F350EB4ABC1E1F869EECB0B5ABB1 ** get_address_of_safeWaitHandle_4() { return &___safeWaitHandle_4; }
inline void set_safeWaitHandle_4(SafeWaitHandle_tF37EACEDF9C6F350EB4ABC1E1F869EECB0B5ABB1 * value)
{
___safeWaitHandle_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___safeWaitHandle_4), (void*)value);
}
inline static int32_t get_offset_of_hasThreadAffinity_5() { return static_cast<int32_t>(offsetof(WaitHandle_t1D7DD8480FD5DA4E3AF92F569890FB972D9B1842, ___hasThreadAffinity_5)); }
inline bool get_hasThreadAffinity_5() const { return ___hasThreadAffinity_5; }
inline bool* get_address_of_hasThreadAffinity_5() { return &___hasThreadAffinity_5; }
inline void set_hasThreadAffinity_5(bool value)
{
___hasThreadAffinity_5 = value;
}
};
struct WaitHandle_t1D7DD8480FD5DA4E3AF92F569890FB972D9B1842_StaticFields
{
public:
// System.IntPtr System.Threading.WaitHandle::InvalidHandle
intptr_t ___InvalidHandle_10;
public:
inline static int32_t get_offset_of_InvalidHandle_10() { return static_cast<int32_t>(offsetof(WaitHandle_t1D7DD8480FD5DA4E3AF92F569890FB972D9B1842_StaticFields, ___InvalidHandle_10)); }
inline intptr_t get_InvalidHandle_10() const { return ___InvalidHandle_10; }
inline intptr_t* get_address_of_InvalidHandle_10() { return &___InvalidHandle_10; }
inline void set_InvalidHandle_10(intptr_t value)
{
___InvalidHandle_10 = value;
}
};
// Native definition for P/Invoke marshalling of System.Threading.WaitHandle
struct WaitHandle_t1D7DD8480FD5DA4E3AF92F569890FB972D9B1842_marshaled_pinvoke : public MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8_marshaled_pinvoke
{
intptr_t ___waitHandle_3;
void* ___safeWaitHandle_4;
int32_t ___hasThreadAffinity_5;
};
// Native definition for COM marshalling of System.Threading.WaitHandle
struct WaitHandle_t1D7DD8480FD5DA4E3AF92F569890FB972D9B1842_marshaled_com : public MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8_marshaled_com
{
intptr_t ___waitHandle_3;
void* ___safeWaitHandle_4;
int32_t ___hasThreadAffinity_5;
};
// System.TimeSpan
struct TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203
{
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_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203, ____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_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_StaticFields
{
public:
// System.TimeSpan System.TimeSpan::Zero
TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___Zero_0;
// System.TimeSpan System.TimeSpan::MaxValue
TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___MaxValue_1;
// System.TimeSpan System.TimeSpan::MinValue
TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___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_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_StaticFields, ___Zero_0)); }
inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_Zero_0() const { return ___Zero_0; }
inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_Zero_0() { return &___Zero_0; }
inline void set_Zero_0(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value)
{
___Zero_0 = value;
}
inline static int32_t get_offset_of_MaxValue_1() { return static_cast<int32_t>(offsetof(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_StaticFields, ___MaxValue_1)); }
inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_MaxValue_1() const { return ___MaxValue_1; }
inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_MaxValue_1() { return &___MaxValue_1; }
inline void set_MaxValue_1(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value)
{
___MaxValue_1 = value;
}
inline static int32_t get_offset_of_MinValue_2() { return static_cast<int32_t>(offsetof(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_StaticFields, ___MinValue_2)); }
inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_MinValue_2() const { return ___MinValue_2; }
inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_MinValue_2() { return &___MinValue_2; }
inline void set_MinValue_2(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value)
{
___MinValue_2 = value;
}
inline static int32_t get_offset_of__legacyConfigChecked_4() { return static_cast<int32_t>(offsetof(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_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_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_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.TypeCode
struct TypeCode_tCB39BAB5CFB7A1E0BCB521413E3C46B81C31AA7C
{
public:
// System.Int32 System.TypeCode::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TypeCode_tCB39BAB5CFB7A1E0BCB521413E3C46B81C31AA7C, ___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.WeakReference
struct WeakReference_tB8558D16C98417FD98C920C42C0CC5C9FF825C76 : public RuntimeObject
{
public:
// System.Boolean System.WeakReference::isLongReference
bool ___isLongReference_0;
// System.Runtime.InteropServices.GCHandle System.WeakReference::gcHandle
GCHandle_t757890BC4BBBEDE5A623A3C110013EDD24613603 ___gcHandle_1;
public:
inline static int32_t get_offset_of_isLongReference_0() { return static_cast<int32_t>(offsetof(WeakReference_tB8558D16C98417FD98C920C42C0CC5C9FF825C76, ___isLongReference_0)); }
inline bool get_isLongReference_0() const { return ___isLongReference_0; }
inline bool* get_address_of_isLongReference_0() { return &___isLongReference_0; }
inline void set_isLongReference_0(bool value)
{
___isLongReference_0 = value;
}
inline static int32_t get_offset_of_gcHandle_1() { return static_cast<int32_t>(offsetof(WeakReference_tB8558D16C98417FD98C920C42C0CC5C9FF825C76, ___gcHandle_1)); }
inline GCHandle_t757890BC4BBBEDE5A623A3C110013EDD24613603 get_gcHandle_1() const { return ___gcHandle_1; }
inline GCHandle_t757890BC4BBBEDE5A623A3C110013EDD24613603 * get_address_of_gcHandle_1() { return &___gcHandle_1; }
inline void set_gcHandle_1(GCHandle_t757890BC4BBBEDE5A623A3C110013EDD24613603 value)
{
___gcHandle_1 = value;
}
};
// System.AggregateException
struct AggregateException_t45A871D3DBDA3E28FBCD8DF21F6772238FC55BD1 : public Exception_t
{
public:
// System.Collections.ObjectModel.ReadOnlyCollection`1<System.Exception> System.AggregateException::m_innerExceptions
ReadOnlyCollection_1_t06CAAF5787D8FDE0CB0F04082673EC9B212451BE * ___m_innerExceptions_17;
public:
inline static int32_t get_offset_of_m_innerExceptions_17() { return static_cast<int32_t>(offsetof(AggregateException_t45A871D3DBDA3E28FBCD8DF21F6772238FC55BD1, ___m_innerExceptions_17)); }
inline ReadOnlyCollection_1_t06CAAF5787D8FDE0CB0F04082673EC9B212451BE * get_m_innerExceptions_17() const { return ___m_innerExceptions_17; }
inline ReadOnlyCollection_1_t06CAAF5787D8FDE0CB0F04082673EC9B212451BE ** get_address_of_m_innerExceptions_17() { return &___m_innerExceptions_17; }
inline void set_m_innerExceptions_17(ReadOnlyCollection_1_t06CAAF5787D8FDE0CB0F04082673EC9B212451BE * value)
{
___m_innerExceptions_17 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_innerExceptions_17), (void*)value);
}
};
// System.ApplicationException
struct ApplicationException_t8D709C0445A040467C6A632AD7F742B25AB2A407 : public Exception_t
{
public:
public:
};
// System.Collections.Concurrent.CDSCollectionETWBCLProvider
struct CDSCollectionETWBCLProvider_tEF5FCC038F98C60A7A17E73AB11508EE6E2F4266 : public EventSource_t02B6E43167F06B74646A32A3BBC58988BFC3EA6A
{
public:
public:
};
struct CDSCollectionETWBCLProvider_tEF5FCC038F98C60A7A17E73AB11508EE6E2F4266_StaticFields
{
public:
// System.Collections.Concurrent.CDSCollectionETWBCLProvider System.Collections.Concurrent.CDSCollectionETWBCLProvider::Log
CDSCollectionETWBCLProvider_tEF5FCC038F98C60A7A17E73AB11508EE6E2F4266 * ___Log_3;
public:
inline static int32_t get_offset_of_Log_3() { return static_cast<int32_t>(offsetof(CDSCollectionETWBCLProvider_tEF5FCC038F98C60A7A17E73AB11508EE6E2F4266_StaticFields, ___Log_3)); }
inline CDSCollectionETWBCLProvider_tEF5FCC038F98C60A7A17E73AB11508EE6E2F4266 * get_Log_3() const { return ___Log_3; }
inline CDSCollectionETWBCLProvider_tEF5FCC038F98C60A7A17E73AB11508EE6E2F4266 ** get_address_of_Log_3() { return &___Log_3; }
inline void set_Log_3(CDSCollectionETWBCLProvider_tEF5FCC038F98C60A7A17E73AB11508EE6E2F4266 * value)
{
___Log_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Log_3), (void*)value);
}
};
// System.ConsoleKeyInfo
struct ConsoleKeyInfo_tDA8AC07839288484FCB167A81B4FBA92ECCEAF88
{
public:
// System.Char System.ConsoleKeyInfo::_keyChar
Il2CppChar ____keyChar_0;
// System.ConsoleKey System.ConsoleKeyInfo::_key
int32_t ____key_1;
// System.ConsoleModifiers System.ConsoleKeyInfo::_mods
int32_t ____mods_2;
public:
inline static int32_t get_offset_of__keyChar_0() { return static_cast<int32_t>(offsetof(ConsoleKeyInfo_tDA8AC07839288484FCB167A81B4FBA92ECCEAF88, ____keyChar_0)); }
inline Il2CppChar get__keyChar_0() const { return ____keyChar_0; }
inline Il2CppChar* get_address_of__keyChar_0() { return &____keyChar_0; }
inline void set__keyChar_0(Il2CppChar value)
{
____keyChar_0 = value;
}
inline static int32_t get_offset_of__key_1() { return static_cast<int32_t>(offsetof(ConsoleKeyInfo_tDA8AC07839288484FCB167A81B4FBA92ECCEAF88, ____key_1)); }
inline int32_t get__key_1() const { return ____key_1; }
inline int32_t* get_address_of__key_1() { return &____key_1; }
inline void set__key_1(int32_t value)
{
____key_1 = value;
}
inline static int32_t get_offset_of__mods_2() { return static_cast<int32_t>(offsetof(ConsoleKeyInfo_tDA8AC07839288484FCB167A81B4FBA92ECCEAF88, ____mods_2)); }
inline int32_t get__mods_2() const { return ____mods_2; }
inline int32_t* get_address_of__mods_2() { return &____mods_2; }
inline void set__mods_2(int32_t value)
{
____mods_2 = value;
}
};
// Native definition for P/Invoke marshalling of System.ConsoleKeyInfo
struct ConsoleKeyInfo_tDA8AC07839288484FCB167A81B4FBA92ECCEAF88_marshaled_pinvoke
{
uint8_t ____keyChar_0;
int32_t ____key_1;
int32_t ____mods_2;
};
// Native definition for COM marshalling of System.ConsoleKeyInfo
struct ConsoleKeyInfo_tDA8AC07839288484FCB167A81B4FBA92ECCEAF88_marshaled_com
{
uint8_t ____keyChar_0;
int32_t ____key_1;
int32_t ____mods_2;
};
// System.Globalization.CompareInfo
struct CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 : public RuntimeObject
{
public:
// System.String System.Globalization.CompareInfo::m_name
String_t* ___m_name_3;
// System.String System.Globalization.CompareInfo::m_sortName
String_t* ___m_sortName_4;
// System.Int32 System.Globalization.CompareInfo::win32LCID
int32_t ___win32LCID_5;
// System.Int32 System.Globalization.CompareInfo::culture
int32_t ___culture_6;
// System.Globalization.SortVersion System.Globalization.CompareInfo::m_SortVersion
SortVersion_t4500287E608FE7BBAB01A3AB0F1073F772EF62AA * ___m_SortVersion_20;
// Mono.Globalization.Unicode.SimpleCollator System.Globalization.CompareInfo::collator
SimpleCollator_t60F8CB5F37FA4A008E484C0BD0429E65E5904266 * ___collator_21;
public:
inline static int32_t get_offset_of_m_name_3() { return static_cast<int32_t>(offsetof(CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9, ___m_name_3)); }
inline String_t* get_m_name_3() const { return ___m_name_3; }
inline String_t** get_address_of_m_name_3() { return &___m_name_3; }
inline void set_m_name_3(String_t* value)
{
___m_name_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_name_3), (void*)value);
}
inline static int32_t get_offset_of_m_sortName_4() { return static_cast<int32_t>(offsetof(CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9, ___m_sortName_4)); }
inline String_t* get_m_sortName_4() const { return ___m_sortName_4; }
inline String_t** get_address_of_m_sortName_4() { return &___m_sortName_4; }
inline void set_m_sortName_4(String_t* value)
{
___m_sortName_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_sortName_4), (void*)value);
}
inline static int32_t get_offset_of_win32LCID_5() { return static_cast<int32_t>(offsetof(CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9, ___win32LCID_5)); }
inline int32_t get_win32LCID_5() const { return ___win32LCID_5; }
inline int32_t* get_address_of_win32LCID_5() { return &___win32LCID_5; }
inline void set_win32LCID_5(int32_t value)
{
___win32LCID_5 = value;
}
inline static int32_t get_offset_of_culture_6() { return static_cast<int32_t>(offsetof(CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9, ___culture_6)); }
inline int32_t get_culture_6() const { return ___culture_6; }
inline int32_t* get_address_of_culture_6() { return &___culture_6; }
inline void set_culture_6(int32_t value)
{
___culture_6 = value;
}
inline static int32_t get_offset_of_m_SortVersion_20() { return static_cast<int32_t>(offsetof(CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9, ___m_SortVersion_20)); }
inline SortVersion_t4500287E608FE7BBAB01A3AB0F1073F772EF62AA * get_m_SortVersion_20() const { return ___m_SortVersion_20; }
inline SortVersion_t4500287E608FE7BBAB01A3AB0F1073F772EF62AA ** get_address_of_m_SortVersion_20() { return &___m_SortVersion_20; }
inline void set_m_SortVersion_20(SortVersion_t4500287E608FE7BBAB01A3AB0F1073F772EF62AA * value)
{
___m_SortVersion_20 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_SortVersion_20), (void*)value);
}
inline static int32_t get_offset_of_collator_21() { return static_cast<int32_t>(offsetof(CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9, ___collator_21)); }
inline SimpleCollator_t60F8CB5F37FA4A008E484C0BD0429E65E5904266 * get_collator_21() const { return ___collator_21; }
inline SimpleCollator_t60F8CB5F37FA4A008E484C0BD0429E65E5904266 ** get_address_of_collator_21() { return &___collator_21; }
inline void set_collator_21(SimpleCollator_t60F8CB5F37FA4A008E484C0BD0429E65E5904266 * value)
{
___collator_21 = value;
Il2CppCodeGenWriteBarrier((void**)(&___collator_21), (void*)value);
}
};
struct CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9_StaticFields
{
public:
// System.Collections.Generic.Dictionary`2<System.String,Mono.Globalization.Unicode.SimpleCollator> System.Globalization.CompareInfo::collators
Dictionary_2_t33B68634E5ACFD2A5AE4981521BFC06805BE18BB * ___collators_22;
// System.Boolean System.Globalization.CompareInfo::managedCollation
bool ___managedCollation_23;
// System.Boolean System.Globalization.CompareInfo::managedCollationChecked
bool ___managedCollationChecked_24;
public:
inline static int32_t get_offset_of_collators_22() { return static_cast<int32_t>(offsetof(CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9_StaticFields, ___collators_22)); }
inline Dictionary_2_t33B68634E5ACFD2A5AE4981521BFC06805BE18BB * get_collators_22() const { return ___collators_22; }
inline Dictionary_2_t33B68634E5ACFD2A5AE4981521BFC06805BE18BB ** get_address_of_collators_22() { return &___collators_22; }
inline void set_collators_22(Dictionary_2_t33B68634E5ACFD2A5AE4981521BFC06805BE18BB * value)
{
___collators_22 = value;
Il2CppCodeGenWriteBarrier((void**)(&___collators_22), (void*)value);
}
inline static int32_t get_offset_of_managedCollation_23() { return static_cast<int32_t>(offsetof(CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9_StaticFields, ___managedCollation_23)); }
inline bool get_managedCollation_23() const { return ___managedCollation_23; }
inline bool* get_address_of_managedCollation_23() { return &___managedCollation_23; }
inline void set_managedCollation_23(bool value)
{
___managedCollation_23 = value;
}
inline static int32_t get_offset_of_managedCollationChecked_24() { return static_cast<int32_t>(offsetof(CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9_StaticFields, ___managedCollationChecked_24)); }
inline bool get_managedCollationChecked_24() const { return ___managedCollationChecked_24; }
inline bool* get_address_of_managedCollationChecked_24() { return &___managedCollationChecked_24; }
inline void set_managedCollationChecked_24(bool value)
{
___managedCollationChecked_24 = value;
}
};
// System.Globalization.NumberFormatInfo
struct NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D : public RuntimeObject
{
public:
// System.Int32[] System.Globalization.NumberFormatInfo::numberGroupSizes
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___numberGroupSizes_1;
// System.Int32[] System.Globalization.NumberFormatInfo::currencyGroupSizes
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___currencyGroupSizes_2;
// System.Int32[] System.Globalization.NumberFormatInfo::percentGroupSizes
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___percentGroupSizes_3;
// System.String System.Globalization.NumberFormatInfo::positiveSign
String_t* ___positiveSign_4;
// System.String System.Globalization.NumberFormatInfo::negativeSign
String_t* ___negativeSign_5;
// System.String System.Globalization.NumberFormatInfo::numberDecimalSeparator
String_t* ___numberDecimalSeparator_6;
// System.String System.Globalization.NumberFormatInfo::numberGroupSeparator
String_t* ___numberGroupSeparator_7;
// System.String System.Globalization.NumberFormatInfo::currencyGroupSeparator
String_t* ___currencyGroupSeparator_8;
// System.String System.Globalization.NumberFormatInfo::currencyDecimalSeparator
String_t* ___currencyDecimalSeparator_9;
// System.String System.Globalization.NumberFormatInfo::currencySymbol
String_t* ___currencySymbol_10;
// System.String System.Globalization.NumberFormatInfo::ansiCurrencySymbol
String_t* ___ansiCurrencySymbol_11;
// System.String System.Globalization.NumberFormatInfo::nanSymbol
String_t* ___nanSymbol_12;
// System.String System.Globalization.NumberFormatInfo::positiveInfinitySymbol
String_t* ___positiveInfinitySymbol_13;
// System.String System.Globalization.NumberFormatInfo::negativeInfinitySymbol
String_t* ___negativeInfinitySymbol_14;
// System.String System.Globalization.NumberFormatInfo::percentDecimalSeparator
String_t* ___percentDecimalSeparator_15;
// System.String System.Globalization.NumberFormatInfo::percentGroupSeparator
String_t* ___percentGroupSeparator_16;
// System.String System.Globalization.NumberFormatInfo::percentSymbol
String_t* ___percentSymbol_17;
// System.String System.Globalization.NumberFormatInfo::perMilleSymbol
String_t* ___perMilleSymbol_18;
// System.String[] System.Globalization.NumberFormatInfo::nativeDigits
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___nativeDigits_19;
// System.Int32 System.Globalization.NumberFormatInfo::m_dataItem
int32_t ___m_dataItem_20;
// System.Int32 System.Globalization.NumberFormatInfo::numberDecimalDigits
int32_t ___numberDecimalDigits_21;
// System.Int32 System.Globalization.NumberFormatInfo::currencyDecimalDigits
int32_t ___currencyDecimalDigits_22;
// System.Int32 System.Globalization.NumberFormatInfo::currencyPositivePattern
int32_t ___currencyPositivePattern_23;
// System.Int32 System.Globalization.NumberFormatInfo::currencyNegativePattern
int32_t ___currencyNegativePattern_24;
// System.Int32 System.Globalization.NumberFormatInfo::numberNegativePattern
int32_t ___numberNegativePattern_25;
// System.Int32 System.Globalization.NumberFormatInfo::percentPositivePattern
int32_t ___percentPositivePattern_26;
// System.Int32 System.Globalization.NumberFormatInfo::percentNegativePattern
int32_t ___percentNegativePattern_27;
// System.Int32 System.Globalization.NumberFormatInfo::percentDecimalDigits
int32_t ___percentDecimalDigits_28;
// System.Int32 System.Globalization.NumberFormatInfo::digitSubstitution
int32_t ___digitSubstitution_29;
// System.Boolean System.Globalization.NumberFormatInfo::isReadOnly
bool ___isReadOnly_30;
// System.Boolean System.Globalization.NumberFormatInfo::m_useUserOverride
bool ___m_useUserOverride_31;
// System.Boolean System.Globalization.NumberFormatInfo::m_isInvariant
bool ___m_isInvariant_32;
// System.Boolean System.Globalization.NumberFormatInfo::validForParseAsNumber
bool ___validForParseAsNumber_33;
// System.Boolean System.Globalization.NumberFormatInfo::validForParseAsCurrency
bool ___validForParseAsCurrency_34;
public:
inline static int32_t get_offset_of_numberGroupSizes_1() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D, ___numberGroupSizes_1)); }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_numberGroupSizes_1() const { return ___numberGroupSizes_1; }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_numberGroupSizes_1() { return &___numberGroupSizes_1; }
inline void set_numberGroupSizes_1(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value)
{
___numberGroupSizes_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___numberGroupSizes_1), (void*)value);
}
inline static int32_t get_offset_of_currencyGroupSizes_2() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D, ___currencyGroupSizes_2)); }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_currencyGroupSizes_2() const { return ___currencyGroupSizes_2; }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_currencyGroupSizes_2() { return &___currencyGroupSizes_2; }
inline void set_currencyGroupSizes_2(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value)
{
___currencyGroupSizes_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___currencyGroupSizes_2), (void*)value);
}
inline static int32_t get_offset_of_percentGroupSizes_3() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D, ___percentGroupSizes_3)); }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_percentGroupSizes_3() const { return ___percentGroupSizes_3; }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_percentGroupSizes_3() { return &___percentGroupSizes_3; }
inline void set_percentGroupSizes_3(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value)
{
___percentGroupSizes_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___percentGroupSizes_3), (void*)value);
}
inline static int32_t get_offset_of_positiveSign_4() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D, ___positiveSign_4)); }
inline String_t* get_positiveSign_4() const { return ___positiveSign_4; }
inline String_t** get_address_of_positiveSign_4() { return &___positiveSign_4; }
inline void set_positiveSign_4(String_t* value)
{
___positiveSign_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___positiveSign_4), (void*)value);
}
inline static int32_t get_offset_of_negativeSign_5() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D, ___negativeSign_5)); }
inline String_t* get_negativeSign_5() const { return ___negativeSign_5; }
inline String_t** get_address_of_negativeSign_5() { return &___negativeSign_5; }
inline void set_negativeSign_5(String_t* value)
{
___negativeSign_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___negativeSign_5), (void*)value);
}
inline static int32_t get_offset_of_numberDecimalSeparator_6() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D, ___numberDecimalSeparator_6)); }
inline String_t* get_numberDecimalSeparator_6() const { return ___numberDecimalSeparator_6; }
inline String_t** get_address_of_numberDecimalSeparator_6() { return &___numberDecimalSeparator_6; }
inline void set_numberDecimalSeparator_6(String_t* value)
{
___numberDecimalSeparator_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___numberDecimalSeparator_6), (void*)value);
}
inline static int32_t get_offset_of_numberGroupSeparator_7() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D, ___numberGroupSeparator_7)); }
inline String_t* get_numberGroupSeparator_7() const { return ___numberGroupSeparator_7; }
inline String_t** get_address_of_numberGroupSeparator_7() { return &___numberGroupSeparator_7; }
inline void set_numberGroupSeparator_7(String_t* value)
{
___numberGroupSeparator_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___numberGroupSeparator_7), (void*)value);
}
inline static int32_t get_offset_of_currencyGroupSeparator_8() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D, ___currencyGroupSeparator_8)); }
inline String_t* get_currencyGroupSeparator_8() const { return ___currencyGroupSeparator_8; }
inline String_t** get_address_of_currencyGroupSeparator_8() { return &___currencyGroupSeparator_8; }
inline void set_currencyGroupSeparator_8(String_t* value)
{
___currencyGroupSeparator_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___currencyGroupSeparator_8), (void*)value);
}
inline static int32_t get_offset_of_currencyDecimalSeparator_9() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D, ___currencyDecimalSeparator_9)); }
inline String_t* get_currencyDecimalSeparator_9() const { return ___currencyDecimalSeparator_9; }
inline String_t** get_address_of_currencyDecimalSeparator_9() { return &___currencyDecimalSeparator_9; }
inline void set_currencyDecimalSeparator_9(String_t* value)
{
___currencyDecimalSeparator_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___currencyDecimalSeparator_9), (void*)value);
}
inline static int32_t get_offset_of_currencySymbol_10() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D, ___currencySymbol_10)); }
inline String_t* get_currencySymbol_10() const { return ___currencySymbol_10; }
inline String_t** get_address_of_currencySymbol_10() { return &___currencySymbol_10; }
inline void set_currencySymbol_10(String_t* value)
{
___currencySymbol_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___currencySymbol_10), (void*)value);
}
inline static int32_t get_offset_of_ansiCurrencySymbol_11() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D, ___ansiCurrencySymbol_11)); }
inline String_t* get_ansiCurrencySymbol_11() const { return ___ansiCurrencySymbol_11; }
inline String_t** get_address_of_ansiCurrencySymbol_11() { return &___ansiCurrencySymbol_11; }
inline void set_ansiCurrencySymbol_11(String_t* value)
{
___ansiCurrencySymbol_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___ansiCurrencySymbol_11), (void*)value);
}
inline static int32_t get_offset_of_nanSymbol_12() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D, ___nanSymbol_12)); }
inline String_t* get_nanSymbol_12() const { return ___nanSymbol_12; }
inline String_t** get_address_of_nanSymbol_12() { return &___nanSymbol_12; }
inline void set_nanSymbol_12(String_t* value)
{
___nanSymbol_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&___nanSymbol_12), (void*)value);
}
inline static int32_t get_offset_of_positiveInfinitySymbol_13() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D, ___positiveInfinitySymbol_13)); }
inline String_t* get_positiveInfinitySymbol_13() const { return ___positiveInfinitySymbol_13; }
inline String_t** get_address_of_positiveInfinitySymbol_13() { return &___positiveInfinitySymbol_13; }
inline void set_positiveInfinitySymbol_13(String_t* value)
{
___positiveInfinitySymbol_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&___positiveInfinitySymbol_13), (void*)value);
}
inline static int32_t get_offset_of_negativeInfinitySymbol_14() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D, ___negativeInfinitySymbol_14)); }
inline String_t* get_negativeInfinitySymbol_14() const { return ___negativeInfinitySymbol_14; }
inline String_t** get_address_of_negativeInfinitySymbol_14() { return &___negativeInfinitySymbol_14; }
inline void set_negativeInfinitySymbol_14(String_t* value)
{
___negativeInfinitySymbol_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&___negativeInfinitySymbol_14), (void*)value);
}
inline static int32_t get_offset_of_percentDecimalSeparator_15() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D, ___percentDecimalSeparator_15)); }
inline String_t* get_percentDecimalSeparator_15() const { return ___percentDecimalSeparator_15; }
inline String_t** get_address_of_percentDecimalSeparator_15() { return &___percentDecimalSeparator_15; }
inline void set_percentDecimalSeparator_15(String_t* value)
{
___percentDecimalSeparator_15 = value;
Il2CppCodeGenWriteBarrier((void**)(&___percentDecimalSeparator_15), (void*)value);
}
inline static int32_t get_offset_of_percentGroupSeparator_16() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D, ___percentGroupSeparator_16)); }
inline String_t* get_percentGroupSeparator_16() const { return ___percentGroupSeparator_16; }
inline String_t** get_address_of_percentGroupSeparator_16() { return &___percentGroupSeparator_16; }
inline void set_percentGroupSeparator_16(String_t* value)
{
___percentGroupSeparator_16 = value;
Il2CppCodeGenWriteBarrier((void**)(&___percentGroupSeparator_16), (void*)value);
}
inline static int32_t get_offset_of_percentSymbol_17() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D, ___percentSymbol_17)); }
inline String_t* get_percentSymbol_17() const { return ___percentSymbol_17; }
inline String_t** get_address_of_percentSymbol_17() { return &___percentSymbol_17; }
inline void set_percentSymbol_17(String_t* value)
{
___percentSymbol_17 = value;
Il2CppCodeGenWriteBarrier((void**)(&___percentSymbol_17), (void*)value);
}
inline static int32_t get_offset_of_perMilleSymbol_18() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D, ___perMilleSymbol_18)); }
inline String_t* get_perMilleSymbol_18() const { return ___perMilleSymbol_18; }
inline String_t** get_address_of_perMilleSymbol_18() { return &___perMilleSymbol_18; }
inline void set_perMilleSymbol_18(String_t* value)
{
___perMilleSymbol_18 = value;
Il2CppCodeGenWriteBarrier((void**)(&___perMilleSymbol_18), (void*)value);
}
inline static int32_t get_offset_of_nativeDigits_19() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D, ___nativeDigits_19)); }
inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get_nativeDigits_19() const { return ___nativeDigits_19; }
inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of_nativeDigits_19() { return &___nativeDigits_19; }
inline void set_nativeDigits_19(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value)
{
___nativeDigits_19 = value;
Il2CppCodeGenWriteBarrier((void**)(&___nativeDigits_19), (void*)value);
}
inline static int32_t get_offset_of_m_dataItem_20() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D, ___m_dataItem_20)); }
inline int32_t get_m_dataItem_20() const { return ___m_dataItem_20; }
inline int32_t* get_address_of_m_dataItem_20() { return &___m_dataItem_20; }
inline void set_m_dataItem_20(int32_t value)
{
___m_dataItem_20 = value;
}
inline static int32_t get_offset_of_numberDecimalDigits_21() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D, ___numberDecimalDigits_21)); }
inline int32_t get_numberDecimalDigits_21() const { return ___numberDecimalDigits_21; }
inline int32_t* get_address_of_numberDecimalDigits_21() { return &___numberDecimalDigits_21; }
inline void set_numberDecimalDigits_21(int32_t value)
{
___numberDecimalDigits_21 = value;
}
inline static int32_t get_offset_of_currencyDecimalDigits_22() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D, ___currencyDecimalDigits_22)); }
inline int32_t get_currencyDecimalDigits_22() const { return ___currencyDecimalDigits_22; }
inline int32_t* get_address_of_currencyDecimalDigits_22() { return &___currencyDecimalDigits_22; }
inline void set_currencyDecimalDigits_22(int32_t value)
{
___currencyDecimalDigits_22 = value;
}
inline static int32_t get_offset_of_currencyPositivePattern_23() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D, ___currencyPositivePattern_23)); }
inline int32_t get_currencyPositivePattern_23() const { return ___currencyPositivePattern_23; }
inline int32_t* get_address_of_currencyPositivePattern_23() { return &___currencyPositivePattern_23; }
inline void set_currencyPositivePattern_23(int32_t value)
{
___currencyPositivePattern_23 = value;
}
inline static int32_t get_offset_of_currencyNegativePattern_24() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D, ___currencyNegativePattern_24)); }
inline int32_t get_currencyNegativePattern_24() const { return ___currencyNegativePattern_24; }
inline int32_t* get_address_of_currencyNegativePattern_24() { return &___currencyNegativePattern_24; }
inline void set_currencyNegativePattern_24(int32_t value)
{
___currencyNegativePattern_24 = value;
}
inline static int32_t get_offset_of_numberNegativePattern_25() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D, ___numberNegativePattern_25)); }
inline int32_t get_numberNegativePattern_25() const { return ___numberNegativePattern_25; }
inline int32_t* get_address_of_numberNegativePattern_25() { return &___numberNegativePattern_25; }
inline void set_numberNegativePattern_25(int32_t value)
{
___numberNegativePattern_25 = value;
}
inline static int32_t get_offset_of_percentPositivePattern_26() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D, ___percentPositivePattern_26)); }
inline int32_t get_percentPositivePattern_26() const { return ___percentPositivePattern_26; }
inline int32_t* get_address_of_percentPositivePattern_26() { return &___percentPositivePattern_26; }
inline void set_percentPositivePattern_26(int32_t value)
{
___percentPositivePattern_26 = value;
}
inline static int32_t get_offset_of_percentNegativePattern_27() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D, ___percentNegativePattern_27)); }
inline int32_t get_percentNegativePattern_27() const { return ___percentNegativePattern_27; }
inline int32_t* get_address_of_percentNegativePattern_27() { return &___percentNegativePattern_27; }
inline void set_percentNegativePattern_27(int32_t value)
{
___percentNegativePattern_27 = value;
}
inline static int32_t get_offset_of_percentDecimalDigits_28() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D, ___percentDecimalDigits_28)); }
inline int32_t get_percentDecimalDigits_28() const { return ___percentDecimalDigits_28; }
inline int32_t* get_address_of_percentDecimalDigits_28() { return &___percentDecimalDigits_28; }
inline void set_percentDecimalDigits_28(int32_t value)
{
___percentDecimalDigits_28 = value;
}
inline static int32_t get_offset_of_digitSubstitution_29() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D, ___digitSubstitution_29)); }
inline int32_t get_digitSubstitution_29() const { return ___digitSubstitution_29; }
inline int32_t* get_address_of_digitSubstitution_29() { return &___digitSubstitution_29; }
inline void set_digitSubstitution_29(int32_t value)
{
___digitSubstitution_29 = value;
}
inline static int32_t get_offset_of_isReadOnly_30() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D, ___isReadOnly_30)); }
inline bool get_isReadOnly_30() const { return ___isReadOnly_30; }
inline bool* get_address_of_isReadOnly_30() { return &___isReadOnly_30; }
inline void set_isReadOnly_30(bool value)
{
___isReadOnly_30 = value;
}
inline static int32_t get_offset_of_m_useUserOverride_31() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D, ___m_useUserOverride_31)); }
inline bool get_m_useUserOverride_31() const { return ___m_useUserOverride_31; }
inline bool* get_address_of_m_useUserOverride_31() { return &___m_useUserOverride_31; }
inline void set_m_useUserOverride_31(bool value)
{
___m_useUserOverride_31 = value;
}
inline static int32_t get_offset_of_m_isInvariant_32() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D, ___m_isInvariant_32)); }
inline bool get_m_isInvariant_32() const { return ___m_isInvariant_32; }
inline bool* get_address_of_m_isInvariant_32() { return &___m_isInvariant_32; }
inline void set_m_isInvariant_32(bool value)
{
___m_isInvariant_32 = value;
}
inline static int32_t get_offset_of_validForParseAsNumber_33() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D, ___validForParseAsNumber_33)); }
inline bool get_validForParseAsNumber_33() const { return ___validForParseAsNumber_33; }
inline bool* get_address_of_validForParseAsNumber_33() { return &___validForParseAsNumber_33; }
inline void set_validForParseAsNumber_33(bool value)
{
___validForParseAsNumber_33 = value;
}
inline static int32_t get_offset_of_validForParseAsCurrency_34() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D, ___validForParseAsCurrency_34)); }
inline bool get_validForParseAsCurrency_34() const { return ___validForParseAsCurrency_34; }
inline bool* get_address_of_validForParseAsCurrency_34() { return &___validForParseAsCurrency_34; }
inline void set_validForParseAsCurrency_34(bool value)
{
___validForParseAsCurrency_34 = value;
}
};
struct NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D_StaticFields
{
public:
// System.Globalization.NumberFormatInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.NumberFormatInfo::invariantInfo
NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D * ___invariantInfo_0;
public:
inline static int32_t get_offset_of_invariantInfo_0() { return static_cast<int32_t>(offsetof(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D_StaticFields, ___invariantInfo_0)); }
inline NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D * get_invariantInfo_0() const { return ___invariantInfo_0; }
inline NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D ** get_address_of_invariantInfo_0() { return &___invariantInfo_0; }
inline void set_invariantInfo_0(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D * value)
{
___invariantInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___invariantInfo_0), (void*)value);
}
};
// System.Globalization.SortKey
struct SortKey_tBBD5A739AC7187C1514CBA47698C1D5E36877F52 : public RuntimeObject
{
public:
// System.String System.Globalization.SortKey::source
String_t* ___source_0;
// System.Byte[] System.Globalization.SortKey::key
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___key_1;
// System.Globalization.CompareOptions System.Globalization.SortKey::options
int32_t ___options_2;
// System.Int32 System.Globalization.SortKey::lcid
int32_t ___lcid_3;
public:
inline static int32_t get_offset_of_source_0() { return static_cast<int32_t>(offsetof(SortKey_tBBD5A739AC7187C1514CBA47698C1D5E36877F52, ___source_0)); }
inline String_t* get_source_0() const { return ___source_0; }
inline String_t** get_address_of_source_0() { return &___source_0; }
inline void set_source_0(String_t* value)
{
___source_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___source_0), (void*)value);
}
inline static int32_t get_offset_of_key_1() { return static_cast<int32_t>(offsetof(SortKey_tBBD5A739AC7187C1514CBA47698C1D5E36877F52, ___key_1)); }
inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_key_1() const { return ___key_1; }
inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_key_1() { return &___key_1; }
inline void set_key_1(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value)
{
___key_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___key_1), (void*)value);
}
inline static int32_t get_offset_of_options_2() { return static_cast<int32_t>(offsetof(SortKey_tBBD5A739AC7187C1514CBA47698C1D5E36877F52, ___options_2)); }
inline int32_t get_options_2() const { return ___options_2; }
inline int32_t* get_address_of_options_2() { return &___options_2; }
inline void set_options_2(int32_t value)
{
___options_2 = value;
}
inline static int32_t get_offset_of_lcid_3() { return static_cast<int32_t>(offsetof(SortKey_tBBD5A739AC7187C1514CBA47698C1D5E36877F52, ___lcid_3)); }
inline int32_t get_lcid_3() const { return ___lcid_3; }
inline int32_t* get_address_of_lcid_3() { return &___lcid_3; }
inline void set_lcid_3(int32_t value)
{
___lcid_3 = value;
}
};
// Native definition for P/Invoke marshalling of System.Globalization.SortKey
struct SortKey_tBBD5A739AC7187C1514CBA47698C1D5E36877F52_marshaled_pinvoke
{
char* ___source_0;
Il2CppSafeArray/*NONE*/* ___key_1;
int32_t ___options_2;
int32_t ___lcid_3;
};
// Native definition for COM marshalling of System.Globalization.SortKey
struct SortKey_tBBD5A739AC7187C1514CBA47698C1D5E36877F52_marshaled_com
{
Il2CppChar* ___source_0;
Il2CppSafeArray/*NONE*/* ___key_1;
int32_t ___options_2;
int32_t ___lcid_3;
};
// System.IO.CStreamReader
struct CStreamReader_tF270C75526507F4F57000088E805BDC8B4C2BD53 : public StreamReader_tA857ACC7ABF9AA4638E1291E6D2539C14D2963D3
{
public:
// System.TermInfoDriver System.IO.CStreamReader::driver
TermInfoDriver_t4BA3410FC3FAB83D567ADF15C94124D8148A0E03 * ___driver_21;
public:
inline static int32_t get_offset_of_driver_21() { return static_cast<int32_t>(offsetof(CStreamReader_tF270C75526507F4F57000088E805BDC8B4C2BD53, ___driver_21)); }
inline TermInfoDriver_t4BA3410FC3FAB83D567ADF15C94124D8148A0E03 * get_driver_21() const { return ___driver_21; }
inline TermInfoDriver_t4BA3410FC3FAB83D567ADF15C94124D8148A0E03 ** get_address_of_driver_21() { return &___driver_21; }
inline void set_driver_21(TermInfoDriver_t4BA3410FC3FAB83D567ADF15C94124D8148A0E03 * value)
{
___driver_21 = value;
Il2CppCodeGenWriteBarrier((void**)(&___driver_21), (void*)value);
}
};
// System.IO.CStreamWriter
struct CStreamWriter_tBC3C3F9F3E738D2FF586EF7A680A077D5AA3D27A : public StreamWriter_t3E267B7F3C9522AF936C26ABF158398BB779FAF6
{
public:
// System.TermInfoDriver System.IO.CStreamWriter::driver
TermInfoDriver_t4BA3410FC3FAB83D567ADF15C94124D8148A0E03 * ___driver_24;
public:
inline static int32_t get_offset_of_driver_24() { return static_cast<int32_t>(offsetof(CStreamWriter_tBC3C3F9F3E738D2FF586EF7A680A077D5AA3D27A, ___driver_24)); }
inline TermInfoDriver_t4BA3410FC3FAB83D567ADF15C94124D8148A0E03 * get_driver_24() const { return ___driver_24; }
inline TermInfoDriver_t4BA3410FC3FAB83D567ADF15C94124D8148A0E03 ** get_address_of_driver_24() { return &___driver_24; }
inline void set_driver_24(TermInfoDriver_t4BA3410FC3FAB83D567ADF15C94124D8148A0E03 * value)
{
___driver_24 = value;
Il2CppCodeGenWriteBarrier((void**)(&___driver_24), (void*)value);
}
};
// System.MulticastDelegate
struct MulticastDelegate_t : public Delegate_t
{
public:
// System.Delegate[] System.MulticastDelegate::delegates
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* ___delegates_11;
public:
inline static int32_t get_offset_of_delegates_11() { return static_cast<int32_t>(offsetof(MulticastDelegate_t, ___delegates_11)); }
inline DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* get_delegates_11() const { return ___delegates_11; }
inline DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8** get_address_of_delegates_11() { return &___delegates_11; }
inline void set_delegates_11(DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* 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.Reflection.ParameterInfo
struct ParameterInfo_t9D9DBDD93E685815E35F4F6D6F58E90EBC8852B7 : public RuntimeObject
{
public:
// System.Type System.Reflection.ParameterInfo::ClassImpl
Type_t * ___ClassImpl_0;
// System.Object System.Reflection.ParameterInfo::DefaultValueImpl
RuntimeObject * ___DefaultValueImpl_1;
// System.Reflection.MemberInfo System.Reflection.ParameterInfo::MemberImpl
MemberInfo_t * ___MemberImpl_2;
// System.String System.Reflection.ParameterInfo::NameImpl
String_t* ___NameImpl_3;
// System.Int32 System.Reflection.ParameterInfo::PositionImpl
int32_t ___PositionImpl_4;
// System.Reflection.ParameterAttributes System.Reflection.ParameterInfo::AttrsImpl
int32_t ___AttrsImpl_5;
// System.Runtime.InteropServices.MarshalAsAttribute System.Reflection.ParameterInfo::marshalAs
MarshalAsAttribute_t1689F84A11C34D0F35491C8F0DA4421467B6EFE6 * ___marshalAs_6;
public:
inline static int32_t get_offset_of_ClassImpl_0() { return static_cast<int32_t>(offsetof(ParameterInfo_t9D9DBDD93E685815E35F4F6D6F58E90EBC8852B7, ___ClassImpl_0)); }
inline Type_t * get_ClassImpl_0() const { return ___ClassImpl_0; }
inline Type_t ** get_address_of_ClassImpl_0() { return &___ClassImpl_0; }
inline void set_ClassImpl_0(Type_t * value)
{
___ClassImpl_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___ClassImpl_0), (void*)value);
}
inline static int32_t get_offset_of_DefaultValueImpl_1() { return static_cast<int32_t>(offsetof(ParameterInfo_t9D9DBDD93E685815E35F4F6D6F58E90EBC8852B7, ___DefaultValueImpl_1)); }
inline RuntimeObject * get_DefaultValueImpl_1() const { return ___DefaultValueImpl_1; }
inline RuntimeObject ** get_address_of_DefaultValueImpl_1() { return &___DefaultValueImpl_1; }
inline void set_DefaultValueImpl_1(RuntimeObject * value)
{
___DefaultValueImpl_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___DefaultValueImpl_1), (void*)value);
}
inline static int32_t get_offset_of_MemberImpl_2() { return static_cast<int32_t>(offsetof(ParameterInfo_t9D9DBDD93E685815E35F4F6D6F58E90EBC8852B7, ___MemberImpl_2)); }
inline MemberInfo_t * get_MemberImpl_2() const { return ___MemberImpl_2; }
inline MemberInfo_t ** get_address_of_MemberImpl_2() { return &___MemberImpl_2; }
inline void set_MemberImpl_2(MemberInfo_t * value)
{
___MemberImpl_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___MemberImpl_2), (void*)value);
}
inline static int32_t get_offset_of_NameImpl_3() { return static_cast<int32_t>(offsetof(ParameterInfo_t9D9DBDD93E685815E35F4F6D6F58E90EBC8852B7, ___NameImpl_3)); }
inline String_t* get_NameImpl_3() const { return ___NameImpl_3; }
inline String_t** get_address_of_NameImpl_3() { return &___NameImpl_3; }
inline void set_NameImpl_3(String_t* value)
{
___NameImpl_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___NameImpl_3), (void*)value);
}
inline static int32_t get_offset_of_PositionImpl_4() { return static_cast<int32_t>(offsetof(ParameterInfo_t9D9DBDD93E685815E35F4F6D6F58E90EBC8852B7, ___PositionImpl_4)); }
inline int32_t get_PositionImpl_4() const { return ___PositionImpl_4; }
inline int32_t* get_address_of_PositionImpl_4() { return &___PositionImpl_4; }
inline void set_PositionImpl_4(int32_t value)
{
___PositionImpl_4 = value;
}
inline static int32_t get_offset_of_AttrsImpl_5() { return static_cast<int32_t>(offsetof(ParameterInfo_t9D9DBDD93E685815E35F4F6D6F58E90EBC8852B7, ___AttrsImpl_5)); }
inline int32_t get_AttrsImpl_5() const { return ___AttrsImpl_5; }
inline int32_t* get_address_of_AttrsImpl_5() { return &___AttrsImpl_5; }
inline void set_AttrsImpl_5(int32_t value)
{
___AttrsImpl_5 = value;
}
inline static int32_t get_offset_of_marshalAs_6() { return static_cast<int32_t>(offsetof(ParameterInfo_t9D9DBDD93E685815E35F4F6D6F58E90EBC8852B7, ___marshalAs_6)); }
inline MarshalAsAttribute_t1689F84A11C34D0F35491C8F0DA4421467B6EFE6 * get_marshalAs_6() const { return ___marshalAs_6; }
inline MarshalAsAttribute_t1689F84A11C34D0F35491C8F0DA4421467B6EFE6 ** get_address_of_marshalAs_6() { return &___marshalAs_6; }
inline void set_marshalAs_6(MarshalAsAttribute_t1689F84A11C34D0F35491C8F0DA4421467B6EFE6 * value)
{
___marshalAs_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___marshalAs_6), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Reflection.ParameterInfo
struct ParameterInfo_t9D9DBDD93E685815E35F4F6D6F58E90EBC8852B7_marshaled_pinvoke
{
Type_t * ___ClassImpl_0;
Il2CppIUnknown* ___DefaultValueImpl_1;
MemberInfo_t * ___MemberImpl_2;
char* ___NameImpl_3;
int32_t ___PositionImpl_4;
int32_t ___AttrsImpl_5;
MarshalAsAttribute_t1689F84A11C34D0F35491C8F0DA4421467B6EFE6 * ___marshalAs_6;
};
// Native definition for COM marshalling of System.Reflection.ParameterInfo
struct ParameterInfo_t9D9DBDD93E685815E35F4F6D6F58E90EBC8852B7_marshaled_com
{
Type_t * ___ClassImpl_0;
Il2CppIUnknown* ___DefaultValueImpl_1;
MemberInfo_t * ___MemberImpl_2;
Il2CppChar* ___NameImpl_3;
int32_t ___PositionImpl_4;
int32_t ___AttrsImpl_5;
MarshalAsAttribute_t1689F84A11C34D0F35491C8F0DA4421467B6EFE6 * ___marshalAs_6;
};
// System.Runtime.InteropServices.ClassInterfaceAttribute
struct ClassInterfaceAttribute_tAC9219C38D4BECF25B48BA254128B82AE8849875 : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
{
public:
// System.Runtime.InteropServices.ClassInterfaceType System.Runtime.InteropServices.ClassInterfaceAttribute::_val
int32_t ____val_0;
public:
inline static int32_t get_offset_of__val_0() { return static_cast<int32_t>(offsetof(ClassInterfaceAttribute_tAC9219C38D4BECF25B48BA254128B82AE8849875, ____val_0)); }
inline int32_t get__val_0() const { return ____val_0; }
inline int32_t* get_address_of__val_0() { return &____val_0; }
inline void set__val_0(int32_t value)
{
____val_0 = value;
}
};
// System.Runtime.Remoting.Lifetime.LifetimeServices
struct LifetimeServices_tF0C101B662D7B7A3481C924BC01E1623C1AFF6E4 : public RuntimeObject
{
public:
public:
};
struct LifetimeServices_tF0C101B662D7B7A3481C924BC01E1623C1AFF6E4_StaticFields
{
public:
// System.TimeSpan System.Runtime.Remoting.Lifetime.LifetimeServices::_leaseManagerPollTime
TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ____leaseManagerPollTime_0;
// System.TimeSpan System.Runtime.Remoting.Lifetime.LifetimeServices::_leaseTime
TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ____leaseTime_1;
// System.TimeSpan System.Runtime.Remoting.Lifetime.LifetimeServices::_renewOnCallTime
TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ____renewOnCallTime_2;
// System.TimeSpan System.Runtime.Remoting.Lifetime.LifetimeServices::_sponsorshipTimeout
TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ____sponsorshipTimeout_3;
// System.Runtime.Remoting.Lifetime.LeaseManager System.Runtime.Remoting.Lifetime.LifetimeServices::_leaseManager
LeaseManager_tCB2B24D3B1EB0083B9FF0BA2D4E5E8B84EE94DD1 * ____leaseManager_4;
public:
inline static int32_t get_offset_of__leaseManagerPollTime_0() { return static_cast<int32_t>(offsetof(LifetimeServices_tF0C101B662D7B7A3481C924BC01E1623C1AFF6E4_StaticFields, ____leaseManagerPollTime_0)); }
inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get__leaseManagerPollTime_0() const { return ____leaseManagerPollTime_0; }
inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of__leaseManagerPollTime_0() { return &____leaseManagerPollTime_0; }
inline void set__leaseManagerPollTime_0(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value)
{
____leaseManagerPollTime_0 = value;
}
inline static int32_t get_offset_of__leaseTime_1() { return static_cast<int32_t>(offsetof(LifetimeServices_tF0C101B662D7B7A3481C924BC01E1623C1AFF6E4_StaticFields, ____leaseTime_1)); }
inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get__leaseTime_1() const { return ____leaseTime_1; }
inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of__leaseTime_1() { return &____leaseTime_1; }
inline void set__leaseTime_1(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value)
{
____leaseTime_1 = value;
}
inline static int32_t get_offset_of__renewOnCallTime_2() { return static_cast<int32_t>(offsetof(LifetimeServices_tF0C101B662D7B7A3481C924BC01E1623C1AFF6E4_StaticFields, ____renewOnCallTime_2)); }
inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get__renewOnCallTime_2() const { return ____renewOnCallTime_2; }
inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of__renewOnCallTime_2() { return &____renewOnCallTime_2; }
inline void set__renewOnCallTime_2(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value)
{
____renewOnCallTime_2 = value;
}
inline static int32_t get_offset_of__sponsorshipTimeout_3() { return static_cast<int32_t>(offsetof(LifetimeServices_tF0C101B662D7B7A3481C924BC01E1623C1AFF6E4_StaticFields, ____sponsorshipTimeout_3)); }
inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get__sponsorshipTimeout_3() const { return ____sponsorshipTimeout_3; }
inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of__sponsorshipTimeout_3() { return &____sponsorshipTimeout_3; }
inline void set__sponsorshipTimeout_3(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value)
{
____sponsorshipTimeout_3 = value;
}
inline static int32_t get_offset_of__leaseManager_4() { return static_cast<int32_t>(offsetof(LifetimeServices_tF0C101B662D7B7A3481C924BC01E1623C1AFF6E4_StaticFields, ____leaseManager_4)); }
inline LeaseManager_tCB2B24D3B1EB0083B9FF0BA2D4E5E8B84EE94DD1 * get__leaseManager_4() const { return ____leaseManager_4; }
inline LeaseManager_tCB2B24D3B1EB0083B9FF0BA2D4E5E8B84EE94DD1 ** get_address_of__leaseManager_4() { return &____leaseManager_4; }
inline void set__leaseManager_4(LeaseManager_tCB2B24D3B1EB0083B9FF0BA2D4E5E8B84EE94DD1 * value)
{
____leaseManager_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____leaseManager_4), (void*)value);
}
};
// System.Runtime.Remoting.WellKnownServiceTypeEntry
struct WellKnownServiceTypeEntry_t98CBB552396BFD8971C9C23000B68613B8D67F9D : public TypeEntry_tE6A29217B055E31F4568B08F627D9BD7E4B28DE5
{
public:
// System.Type System.Runtime.Remoting.WellKnownServiceTypeEntry::obj_type
Type_t * ___obj_type_2;
// System.String System.Runtime.Remoting.WellKnownServiceTypeEntry::obj_uri
String_t* ___obj_uri_3;
// System.Runtime.Remoting.WellKnownObjectMode System.Runtime.Remoting.WellKnownServiceTypeEntry::obj_mode
int32_t ___obj_mode_4;
public:
inline static int32_t get_offset_of_obj_type_2() { return static_cast<int32_t>(offsetof(WellKnownServiceTypeEntry_t98CBB552396BFD8971C9C23000B68613B8D67F9D, ___obj_type_2)); }
inline Type_t * get_obj_type_2() const { return ___obj_type_2; }
inline Type_t ** get_address_of_obj_type_2() { return &___obj_type_2; }
inline void set_obj_type_2(Type_t * value)
{
___obj_type_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___obj_type_2), (void*)value);
}
inline static int32_t get_offset_of_obj_uri_3() { return static_cast<int32_t>(offsetof(WellKnownServiceTypeEntry_t98CBB552396BFD8971C9C23000B68613B8D67F9D, ___obj_uri_3)); }
inline String_t* get_obj_uri_3() const { return ___obj_uri_3; }
inline String_t** get_address_of_obj_uri_3() { return &___obj_uri_3; }
inline void set_obj_uri_3(String_t* value)
{
___obj_uri_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___obj_uri_3), (void*)value);
}
inline static int32_t get_offset_of_obj_mode_4() { return static_cast<int32_t>(offsetof(WellKnownServiceTypeEntry_t98CBB552396BFD8971C9C23000B68613B8D67F9D, ___obj_mode_4)); }
inline int32_t get_obj_mode_4() const { return ___obj_mode_4; }
inline int32_t* get_address_of_obj_mode_4() { return &___obj_mode_4; }
inline void set_obj_mode_4(int32_t value)
{
___obj_mode_4 = value;
}
};
// System.Runtime.Serialization.StreamingContext
struct StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505
{
public:
// System.Object System.Runtime.Serialization.StreamingContext::m_additionalContext
RuntimeObject * ___m_additionalContext_0;
// System.Runtime.Serialization.StreamingContextStates System.Runtime.Serialization.StreamingContext::m_state
int32_t ___m_state_1;
public:
inline static int32_t get_offset_of_m_additionalContext_0() { return static_cast<int32_t>(offsetof(StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505, ___m_additionalContext_0)); }
inline RuntimeObject * get_m_additionalContext_0() const { return ___m_additionalContext_0; }
inline RuntimeObject ** get_address_of_m_additionalContext_0() { return &___m_additionalContext_0; }
inline void set_m_additionalContext_0(RuntimeObject * value)
{
___m_additionalContext_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_additionalContext_0), (void*)value);
}
inline static int32_t get_offset_of_m_state_1() { return static_cast<int32_t>(offsetof(StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505, ___m_state_1)); }
inline int32_t get_m_state_1() const { return ___m_state_1; }
inline int32_t* get_address_of_m_state_1() { return &___m_state_1; }
inline void set_m_state_1(int32_t value)
{
___m_state_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Runtime.Serialization.StreamingContext
struct StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505_marshaled_pinvoke
{
Il2CppIUnknown* ___m_additionalContext_0;
int32_t ___m_state_1;
};
// Native definition for COM marshalling of System.Runtime.Serialization.StreamingContext
struct StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505_marshaled_com
{
Il2CppIUnknown* ___m_additionalContext_0;
int32_t ___m_state_1;
};
// System.SystemException
struct SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62 : public Exception_t
{
public:
public:
};
// System.TermInfoDriver
struct TermInfoDriver_t4BA3410FC3FAB83D567ADF15C94124D8148A0E03 : public RuntimeObject
{
public:
// System.TermInfoReader System.TermInfoDriver::reader
TermInfoReader_t2E8E4A86C0450CF03E110E870EB8378C7A617F62 * ___reader_3;
// System.Int32 System.TermInfoDriver::cursorLeft
int32_t ___cursorLeft_4;
// System.Int32 System.TermInfoDriver::cursorTop
int32_t ___cursorTop_5;
// System.String System.TermInfoDriver::title
String_t* ___title_6;
// System.String System.TermInfoDriver::titleFormat
String_t* ___titleFormat_7;
// System.Boolean System.TermInfoDriver::cursorVisible
bool ___cursorVisible_8;
// System.String System.TermInfoDriver::csrVisible
String_t* ___csrVisible_9;
// System.String System.TermInfoDriver::csrInvisible
String_t* ___csrInvisible_10;
// System.String System.TermInfoDriver::clear
String_t* ___clear_11;
// System.String System.TermInfoDriver::bell
String_t* ___bell_12;
// System.String System.TermInfoDriver::term
String_t* ___term_13;
// System.IO.StreamReader System.TermInfoDriver::stdin
StreamReader_tA857ACC7ABF9AA4638E1291E6D2539C14D2963D3 * ___stdin_14;
// System.IO.CStreamWriter System.TermInfoDriver::stdout
CStreamWriter_tBC3C3F9F3E738D2FF586EF7A680A077D5AA3D27A * ___stdout_15;
// System.Int32 System.TermInfoDriver::windowWidth
int32_t ___windowWidth_16;
// System.Int32 System.TermInfoDriver::windowHeight
int32_t ___windowHeight_17;
// System.Int32 System.TermInfoDriver::bufferHeight
int32_t ___bufferHeight_18;
// System.Int32 System.TermInfoDriver::bufferWidth
int32_t ___bufferWidth_19;
// System.Char[] System.TermInfoDriver::buffer
CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___buffer_20;
// System.Int32 System.TermInfoDriver::readpos
int32_t ___readpos_21;
// System.Int32 System.TermInfoDriver::writepos
int32_t ___writepos_22;
// System.String System.TermInfoDriver::keypadXmit
String_t* ___keypadXmit_23;
// System.String System.TermInfoDriver::keypadLocal
String_t* ___keypadLocal_24;
// System.Boolean System.TermInfoDriver::inited
bool ___inited_25;
// System.Object System.TermInfoDriver::initLock
RuntimeObject * ___initLock_26;
// System.Boolean System.TermInfoDriver::initKeys
bool ___initKeys_27;
// System.String System.TermInfoDriver::origPair
String_t* ___origPair_28;
// System.String System.TermInfoDriver::origColors
String_t* ___origColors_29;
// System.String System.TermInfoDriver::cursorAddress
String_t* ___cursorAddress_30;
// System.ConsoleColor System.TermInfoDriver::fgcolor
int32_t ___fgcolor_31;
// System.String System.TermInfoDriver::setfgcolor
String_t* ___setfgcolor_32;
// System.String System.TermInfoDriver::setbgcolor
String_t* ___setbgcolor_33;
// System.Int32 System.TermInfoDriver::maxColors
int32_t ___maxColors_34;
// System.Boolean System.TermInfoDriver::noGetPosition
bool ___noGetPosition_35;
// System.Collections.Hashtable System.TermInfoDriver::keymap
Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * ___keymap_36;
// System.ByteMatcher System.TermInfoDriver::rootmap
ByteMatcher_t22B28B6FEEDB86326E893675F4C6B5C74E66F5D7 * ___rootmap_37;
// System.Int32 System.TermInfoDriver::rl_startx
int32_t ___rl_startx_38;
// System.Int32 System.TermInfoDriver::rl_starty
int32_t ___rl_starty_39;
// System.Byte[] System.TermInfoDriver::control_characters
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___control_characters_40;
// System.Char[] System.TermInfoDriver::echobuf
CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___echobuf_42;
// System.Int32 System.TermInfoDriver::echon
int32_t ___echon_43;
public:
inline static int32_t get_offset_of_reader_3() { return static_cast<int32_t>(offsetof(TermInfoDriver_t4BA3410FC3FAB83D567ADF15C94124D8148A0E03, ___reader_3)); }
inline TermInfoReader_t2E8E4A86C0450CF03E110E870EB8378C7A617F62 * get_reader_3() const { return ___reader_3; }
inline TermInfoReader_t2E8E4A86C0450CF03E110E870EB8378C7A617F62 ** get_address_of_reader_3() { return &___reader_3; }
inline void set_reader_3(TermInfoReader_t2E8E4A86C0450CF03E110E870EB8378C7A617F62 * value)
{
___reader_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___reader_3), (void*)value);
}
inline static int32_t get_offset_of_cursorLeft_4() { return static_cast<int32_t>(offsetof(TermInfoDriver_t4BA3410FC3FAB83D567ADF15C94124D8148A0E03, ___cursorLeft_4)); }
inline int32_t get_cursorLeft_4() const { return ___cursorLeft_4; }
inline int32_t* get_address_of_cursorLeft_4() { return &___cursorLeft_4; }
inline void set_cursorLeft_4(int32_t value)
{
___cursorLeft_4 = value;
}
inline static int32_t get_offset_of_cursorTop_5() { return static_cast<int32_t>(offsetof(TermInfoDriver_t4BA3410FC3FAB83D567ADF15C94124D8148A0E03, ___cursorTop_5)); }
inline int32_t get_cursorTop_5() const { return ___cursorTop_5; }
inline int32_t* get_address_of_cursorTop_5() { return &___cursorTop_5; }
inline void set_cursorTop_5(int32_t value)
{
___cursorTop_5 = value;
}
inline static int32_t get_offset_of_title_6() { return static_cast<int32_t>(offsetof(TermInfoDriver_t4BA3410FC3FAB83D567ADF15C94124D8148A0E03, ___title_6)); }
inline String_t* get_title_6() const { return ___title_6; }
inline String_t** get_address_of_title_6() { return &___title_6; }
inline void set_title_6(String_t* value)
{
___title_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___title_6), (void*)value);
}
inline static int32_t get_offset_of_titleFormat_7() { return static_cast<int32_t>(offsetof(TermInfoDriver_t4BA3410FC3FAB83D567ADF15C94124D8148A0E03, ___titleFormat_7)); }
inline String_t* get_titleFormat_7() const { return ___titleFormat_7; }
inline String_t** get_address_of_titleFormat_7() { return &___titleFormat_7; }
inline void set_titleFormat_7(String_t* value)
{
___titleFormat_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___titleFormat_7), (void*)value);
}
inline static int32_t get_offset_of_cursorVisible_8() { return static_cast<int32_t>(offsetof(TermInfoDriver_t4BA3410FC3FAB83D567ADF15C94124D8148A0E03, ___cursorVisible_8)); }
inline bool get_cursorVisible_8() const { return ___cursorVisible_8; }
inline bool* get_address_of_cursorVisible_8() { return &___cursorVisible_8; }
inline void set_cursorVisible_8(bool value)
{
___cursorVisible_8 = value;
}
inline static int32_t get_offset_of_csrVisible_9() { return static_cast<int32_t>(offsetof(TermInfoDriver_t4BA3410FC3FAB83D567ADF15C94124D8148A0E03, ___csrVisible_9)); }
inline String_t* get_csrVisible_9() const { return ___csrVisible_9; }
inline String_t** get_address_of_csrVisible_9() { return &___csrVisible_9; }
inline void set_csrVisible_9(String_t* value)
{
___csrVisible_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___csrVisible_9), (void*)value);
}
inline static int32_t get_offset_of_csrInvisible_10() { return static_cast<int32_t>(offsetof(TermInfoDriver_t4BA3410FC3FAB83D567ADF15C94124D8148A0E03, ___csrInvisible_10)); }
inline String_t* get_csrInvisible_10() const { return ___csrInvisible_10; }
inline String_t** get_address_of_csrInvisible_10() { return &___csrInvisible_10; }
inline void set_csrInvisible_10(String_t* value)
{
___csrInvisible_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___csrInvisible_10), (void*)value);
}
inline static int32_t get_offset_of_clear_11() { return static_cast<int32_t>(offsetof(TermInfoDriver_t4BA3410FC3FAB83D567ADF15C94124D8148A0E03, ___clear_11)); }
inline String_t* get_clear_11() const { return ___clear_11; }
inline String_t** get_address_of_clear_11() { return &___clear_11; }
inline void set_clear_11(String_t* value)
{
___clear_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___clear_11), (void*)value);
}
inline static int32_t get_offset_of_bell_12() { return static_cast<int32_t>(offsetof(TermInfoDriver_t4BA3410FC3FAB83D567ADF15C94124D8148A0E03, ___bell_12)); }
inline String_t* get_bell_12() const { return ___bell_12; }
inline String_t** get_address_of_bell_12() { return &___bell_12; }
inline void set_bell_12(String_t* value)
{
___bell_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&___bell_12), (void*)value);
}
inline static int32_t get_offset_of_term_13() { return static_cast<int32_t>(offsetof(TermInfoDriver_t4BA3410FC3FAB83D567ADF15C94124D8148A0E03, ___term_13)); }
inline String_t* get_term_13() const { return ___term_13; }
inline String_t** get_address_of_term_13() { return &___term_13; }
inline void set_term_13(String_t* value)
{
___term_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&___term_13), (void*)value);
}
inline static int32_t get_offset_of_stdin_14() { return static_cast<int32_t>(offsetof(TermInfoDriver_t4BA3410FC3FAB83D567ADF15C94124D8148A0E03, ___stdin_14)); }
inline StreamReader_tA857ACC7ABF9AA4638E1291E6D2539C14D2963D3 * get_stdin_14() const { return ___stdin_14; }
inline StreamReader_tA857ACC7ABF9AA4638E1291E6D2539C14D2963D3 ** get_address_of_stdin_14() { return &___stdin_14; }
inline void set_stdin_14(StreamReader_tA857ACC7ABF9AA4638E1291E6D2539C14D2963D3 * value)
{
___stdin_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&___stdin_14), (void*)value);
}
inline static int32_t get_offset_of_stdout_15() { return static_cast<int32_t>(offsetof(TermInfoDriver_t4BA3410FC3FAB83D567ADF15C94124D8148A0E03, ___stdout_15)); }
inline CStreamWriter_tBC3C3F9F3E738D2FF586EF7A680A077D5AA3D27A * get_stdout_15() const { return ___stdout_15; }
inline CStreamWriter_tBC3C3F9F3E738D2FF586EF7A680A077D5AA3D27A ** get_address_of_stdout_15() { return &___stdout_15; }
inline void set_stdout_15(CStreamWriter_tBC3C3F9F3E738D2FF586EF7A680A077D5AA3D27A * value)
{
___stdout_15 = value;
Il2CppCodeGenWriteBarrier((void**)(&___stdout_15), (void*)value);
}
inline static int32_t get_offset_of_windowWidth_16() { return static_cast<int32_t>(offsetof(TermInfoDriver_t4BA3410FC3FAB83D567ADF15C94124D8148A0E03, ___windowWidth_16)); }
inline int32_t get_windowWidth_16() const { return ___windowWidth_16; }
inline int32_t* get_address_of_windowWidth_16() { return &___windowWidth_16; }
inline void set_windowWidth_16(int32_t value)
{
___windowWidth_16 = value;
}
inline static int32_t get_offset_of_windowHeight_17() { return static_cast<int32_t>(offsetof(TermInfoDriver_t4BA3410FC3FAB83D567ADF15C94124D8148A0E03, ___windowHeight_17)); }
inline int32_t get_windowHeight_17() const { return ___windowHeight_17; }
inline int32_t* get_address_of_windowHeight_17() { return &___windowHeight_17; }
inline void set_windowHeight_17(int32_t value)
{
___windowHeight_17 = value;
}
inline static int32_t get_offset_of_bufferHeight_18() { return static_cast<int32_t>(offsetof(TermInfoDriver_t4BA3410FC3FAB83D567ADF15C94124D8148A0E03, ___bufferHeight_18)); }
inline int32_t get_bufferHeight_18() const { return ___bufferHeight_18; }
inline int32_t* get_address_of_bufferHeight_18() { return &___bufferHeight_18; }
inline void set_bufferHeight_18(int32_t value)
{
___bufferHeight_18 = value;
}
inline static int32_t get_offset_of_bufferWidth_19() { return static_cast<int32_t>(offsetof(TermInfoDriver_t4BA3410FC3FAB83D567ADF15C94124D8148A0E03, ___bufferWidth_19)); }
inline int32_t get_bufferWidth_19() const { return ___bufferWidth_19; }
inline int32_t* get_address_of_bufferWidth_19() { return &___bufferWidth_19; }
inline void set_bufferWidth_19(int32_t value)
{
___bufferWidth_19 = value;
}
inline static int32_t get_offset_of_buffer_20() { return static_cast<int32_t>(offsetof(TermInfoDriver_t4BA3410FC3FAB83D567ADF15C94124D8148A0E03, ___buffer_20)); }
inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get_buffer_20() const { return ___buffer_20; }
inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of_buffer_20() { return &___buffer_20; }
inline void set_buffer_20(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value)
{
___buffer_20 = value;
Il2CppCodeGenWriteBarrier((void**)(&___buffer_20), (void*)value);
}
inline static int32_t get_offset_of_readpos_21() { return static_cast<int32_t>(offsetof(TermInfoDriver_t4BA3410FC3FAB83D567ADF15C94124D8148A0E03, ___readpos_21)); }
inline int32_t get_readpos_21() const { return ___readpos_21; }
inline int32_t* get_address_of_readpos_21() { return &___readpos_21; }
inline void set_readpos_21(int32_t value)
{
___readpos_21 = value;
}
inline static int32_t get_offset_of_writepos_22() { return static_cast<int32_t>(offsetof(TermInfoDriver_t4BA3410FC3FAB83D567ADF15C94124D8148A0E03, ___writepos_22)); }
inline int32_t get_writepos_22() const { return ___writepos_22; }
inline int32_t* get_address_of_writepos_22() { return &___writepos_22; }
inline void set_writepos_22(int32_t value)
{
___writepos_22 = value;
}
inline static int32_t get_offset_of_keypadXmit_23() { return static_cast<int32_t>(offsetof(TermInfoDriver_t4BA3410FC3FAB83D567ADF15C94124D8148A0E03, ___keypadXmit_23)); }
inline String_t* get_keypadXmit_23() const { return ___keypadXmit_23; }
inline String_t** get_address_of_keypadXmit_23() { return &___keypadXmit_23; }
inline void set_keypadXmit_23(String_t* value)
{
___keypadXmit_23 = value;
Il2CppCodeGenWriteBarrier((void**)(&___keypadXmit_23), (void*)value);
}
inline static int32_t get_offset_of_keypadLocal_24() { return static_cast<int32_t>(offsetof(TermInfoDriver_t4BA3410FC3FAB83D567ADF15C94124D8148A0E03, ___keypadLocal_24)); }
inline String_t* get_keypadLocal_24() const { return ___keypadLocal_24; }
inline String_t** get_address_of_keypadLocal_24() { return &___keypadLocal_24; }
inline void set_keypadLocal_24(String_t* value)
{
___keypadLocal_24 = value;
Il2CppCodeGenWriteBarrier((void**)(&___keypadLocal_24), (void*)value);
}
inline static int32_t get_offset_of_inited_25() { return static_cast<int32_t>(offsetof(TermInfoDriver_t4BA3410FC3FAB83D567ADF15C94124D8148A0E03, ___inited_25)); }
inline bool get_inited_25() const { return ___inited_25; }
inline bool* get_address_of_inited_25() { return &___inited_25; }
inline void set_inited_25(bool value)
{
___inited_25 = value;
}
inline static int32_t get_offset_of_initLock_26() { return static_cast<int32_t>(offsetof(TermInfoDriver_t4BA3410FC3FAB83D567ADF15C94124D8148A0E03, ___initLock_26)); }
inline RuntimeObject * get_initLock_26() const { return ___initLock_26; }
inline RuntimeObject ** get_address_of_initLock_26() { return &___initLock_26; }
inline void set_initLock_26(RuntimeObject * value)
{
___initLock_26 = value;
Il2CppCodeGenWriteBarrier((void**)(&___initLock_26), (void*)value);
}
inline static int32_t get_offset_of_initKeys_27() { return static_cast<int32_t>(offsetof(TermInfoDriver_t4BA3410FC3FAB83D567ADF15C94124D8148A0E03, ___initKeys_27)); }
inline bool get_initKeys_27() const { return ___initKeys_27; }
inline bool* get_address_of_initKeys_27() { return &___initKeys_27; }
inline void set_initKeys_27(bool value)
{
___initKeys_27 = value;
}
inline static int32_t get_offset_of_origPair_28() { return static_cast<int32_t>(offsetof(TermInfoDriver_t4BA3410FC3FAB83D567ADF15C94124D8148A0E03, ___origPair_28)); }
inline String_t* get_origPair_28() const { return ___origPair_28; }
inline String_t** get_address_of_origPair_28() { return &___origPair_28; }
inline void set_origPair_28(String_t* value)
{
___origPair_28 = value;
Il2CppCodeGenWriteBarrier((void**)(&___origPair_28), (void*)value);
}
inline static int32_t get_offset_of_origColors_29() { return static_cast<int32_t>(offsetof(TermInfoDriver_t4BA3410FC3FAB83D567ADF15C94124D8148A0E03, ___origColors_29)); }
inline String_t* get_origColors_29() const { return ___origColors_29; }
inline String_t** get_address_of_origColors_29() { return &___origColors_29; }
inline void set_origColors_29(String_t* value)
{
___origColors_29 = value;
Il2CppCodeGenWriteBarrier((void**)(&___origColors_29), (void*)value);
}
inline static int32_t get_offset_of_cursorAddress_30() { return static_cast<int32_t>(offsetof(TermInfoDriver_t4BA3410FC3FAB83D567ADF15C94124D8148A0E03, ___cursorAddress_30)); }
inline String_t* get_cursorAddress_30() const { return ___cursorAddress_30; }
inline String_t** get_address_of_cursorAddress_30() { return &___cursorAddress_30; }
inline void set_cursorAddress_30(String_t* value)
{
___cursorAddress_30 = value;
Il2CppCodeGenWriteBarrier((void**)(&___cursorAddress_30), (void*)value);
}
inline static int32_t get_offset_of_fgcolor_31() { return static_cast<int32_t>(offsetof(TermInfoDriver_t4BA3410FC3FAB83D567ADF15C94124D8148A0E03, ___fgcolor_31)); }
inline int32_t get_fgcolor_31() const { return ___fgcolor_31; }
inline int32_t* get_address_of_fgcolor_31() { return &___fgcolor_31; }
inline void set_fgcolor_31(int32_t value)
{
___fgcolor_31 = value;
}
inline static int32_t get_offset_of_setfgcolor_32() { return static_cast<int32_t>(offsetof(TermInfoDriver_t4BA3410FC3FAB83D567ADF15C94124D8148A0E03, ___setfgcolor_32)); }
inline String_t* get_setfgcolor_32() const { return ___setfgcolor_32; }
inline String_t** get_address_of_setfgcolor_32() { return &___setfgcolor_32; }
inline void set_setfgcolor_32(String_t* value)
{
___setfgcolor_32 = value;
Il2CppCodeGenWriteBarrier((void**)(&___setfgcolor_32), (void*)value);
}
inline static int32_t get_offset_of_setbgcolor_33() { return static_cast<int32_t>(offsetof(TermInfoDriver_t4BA3410FC3FAB83D567ADF15C94124D8148A0E03, ___setbgcolor_33)); }
inline String_t* get_setbgcolor_33() const { return ___setbgcolor_33; }
inline String_t** get_address_of_setbgcolor_33() { return &___setbgcolor_33; }
inline void set_setbgcolor_33(String_t* value)
{
___setbgcolor_33 = value;
Il2CppCodeGenWriteBarrier((void**)(&___setbgcolor_33), (void*)value);
}
inline static int32_t get_offset_of_maxColors_34() { return static_cast<int32_t>(offsetof(TermInfoDriver_t4BA3410FC3FAB83D567ADF15C94124D8148A0E03, ___maxColors_34)); }
inline int32_t get_maxColors_34() const { return ___maxColors_34; }
inline int32_t* get_address_of_maxColors_34() { return &___maxColors_34; }
inline void set_maxColors_34(int32_t value)
{
___maxColors_34 = value;
}
inline static int32_t get_offset_of_noGetPosition_35() { return static_cast<int32_t>(offsetof(TermInfoDriver_t4BA3410FC3FAB83D567ADF15C94124D8148A0E03, ___noGetPosition_35)); }
inline bool get_noGetPosition_35() const { return ___noGetPosition_35; }
inline bool* get_address_of_noGetPosition_35() { return &___noGetPosition_35; }
inline void set_noGetPosition_35(bool value)
{
___noGetPosition_35 = value;
}
inline static int32_t get_offset_of_keymap_36() { return static_cast<int32_t>(offsetof(TermInfoDriver_t4BA3410FC3FAB83D567ADF15C94124D8148A0E03, ___keymap_36)); }
inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * get_keymap_36() const { return ___keymap_36; }
inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC ** get_address_of_keymap_36() { return &___keymap_36; }
inline void set_keymap_36(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * value)
{
___keymap_36 = value;
Il2CppCodeGenWriteBarrier((void**)(&___keymap_36), (void*)value);
}
inline static int32_t get_offset_of_rootmap_37() { return static_cast<int32_t>(offsetof(TermInfoDriver_t4BA3410FC3FAB83D567ADF15C94124D8148A0E03, ___rootmap_37)); }
inline ByteMatcher_t22B28B6FEEDB86326E893675F4C6B5C74E66F5D7 * get_rootmap_37() const { return ___rootmap_37; }
inline ByteMatcher_t22B28B6FEEDB86326E893675F4C6B5C74E66F5D7 ** get_address_of_rootmap_37() { return &___rootmap_37; }
inline void set_rootmap_37(ByteMatcher_t22B28B6FEEDB86326E893675F4C6B5C74E66F5D7 * value)
{
___rootmap_37 = value;
Il2CppCodeGenWriteBarrier((void**)(&___rootmap_37), (void*)value);
}
inline static int32_t get_offset_of_rl_startx_38() { return static_cast<int32_t>(offsetof(TermInfoDriver_t4BA3410FC3FAB83D567ADF15C94124D8148A0E03, ___rl_startx_38)); }
inline int32_t get_rl_startx_38() const { return ___rl_startx_38; }
inline int32_t* get_address_of_rl_startx_38() { return &___rl_startx_38; }
inline void set_rl_startx_38(int32_t value)
{
___rl_startx_38 = value;
}
inline static int32_t get_offset_of_rl_starty_39() { return static_cast<int32_t>(offsetof(TermInfoDriver_t4BA3410FC3FAB83D567ADF15C94124D8148A0E03, ___rl_starty_39)); }
inline int32_t get_rl_starty_39() const { return ___rl_starty_39; }
inline int32_t* get_address_of_rl_starty_39() { return &___rl_starty_39; }
inline void set_rl_starty_39(int32_t value)
{
___rl_starty_39 = value;
}
inline static int32_t get_offset_of_control_characters_40() { return static_cast<int32_t>(offsetof(TermInfoDriver_t4BA3410FC3FAB83D567ADF15C94124D8148A0E03, ___control_characters_40)); }
inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_control_characters_40() const { return ___control_characters_40; }
inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_control_characters_40() { return &___control_characters_40; }
inline void set_control_characters_40(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value)
{
___control_characters_40 = value;
Il2CppCodeGenWriteBarrier((void**)(&___control_characters_40), (void*)value);
}
inline static int32_t get_offset_of_echobuf_42() { return static_cast<int32_t>(offsetof(TermInfoDriver_t4BA3410FC3FAB83D567ADF15C94124D8148A0E03, ___echobuf_42)); }
inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get_echobuf_42() const { return ___echobuf_42; }
inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of_echobuf_42() { return &___echobuf_42; }
inline void set_echobuf_42(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value)
{
___echobuf_42 = value;
Il2CppCodeGenWriteBarrier((void**)(&___echobuf_42), (void*)value);
}
inline static int32_t get_offset_of_echon_43() { return static_cast<int32_t>(offsetof(TermInfoDriver_t4BA3410FC3FAB83D567ADF15C94124D8148A0E03, ___echon_43)); }
inline int32_t get_echon_43() const { return ___echon_43; }
inline int32_t* get_address_of_echon_43() { return &___echon_43; }
inline void set_echon_43(int32_t value)
{
___echon_43 = value;
}
};
struct TermInfoDriver_t4BA3410FC3FAB83D567ADF15C94124D8148A0E03_StaticFields
{
public:
// System.Int32* System.TermInfoDriver::native_terminal_size
int32_t* ___native_terminal_size_0;
// System.Int32 System.TermInfoDriver::terminal_size
int32_t ___terminal_size_1;
// System.String[] System.TermInfoDriver::locations
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___locations_2;
// System.Int32[] System.TermInfoDriver::_consoleColorToAnsiCode
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ____consoleColorToAnsiCode_41;
public:
inline static int32_t get_offset_of_native_terminal_size_0() { return static_cast<int32_t>(offsetof(TermInfoDriver_t4BA3410FC3FAB83D567ADF15C94124D8148A0E03_StaticFields, ___native_terminal_size_0)); }
inline int32_t* get_native_terminal_size_0() const { return ___native_terminal_size_0; }
inline int32_t** get_address_of_native_terminal_size_0() { return &___native_terminal_size_0; }
inline void set_native_terminal_size_0(int32_t* value)
{
___native_terminal_size_0 = value;
}
inline static int32_t get_offset_of_terminal_size_1() { return static_cast<int32_t>(offsetof(TermInfoDriver_t4BA3410FC3FAB83D567ADF15C94124D8148A0E03_StaticFields, ___terminal_size_1)); }
inline int32_t get_terminal_size_1() const { return ___terminal_size_1; }
inline int32_t* get_address_of_terminal_size_1() { return &___terminal_size_1; }
inline void set_terminal_size_1(int32_t value)
{
___terminal_size_1 = value;
}
inline static int32_t get_offset_of_locations_2() { return static_cast<int32_t>(offsetof(TermInfoDriver_t4BA3410FC3FAB83D567ADF15C94124D8148A0E03_StaticFields, ___locations_2)); }
inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get_locations_2() const { return ___locations_2; }
inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of_locations_2() { return &___locations_2; }
inline void set_locations_2(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value)
{
___locations_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___locations_2), (void*)value);
}
inline static int32_t get_offset_of__consoleColorToAnsiCode_41() { return static_cast<int32_t>(offsetof(TermInfoDriver_t4BA3410FC3FAB83D567ADF15C94124D8148A0E03_StaticFields, ____consoleColorToAnsiCode_41)); }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get__consoleColorToAnsiCode_41() const { return ____consoleColorToAnsiCode_41; }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of__consoleColorToAnsiCode_41() { return &____consoleColorToAnsiCode_41; }
inline void set__consoleColorToAnsiCode_41(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value)
{
____consoleColorToAnsiCode_41 = value;
Il2CppCodeGenWriteBarrier((void**)(&____consoleColorToAnsiCode_41), (void*)value);
}
};
// System.Threading.EventWaitHandle
struct EventWaitHandle_t80CDEB33529EF7549E7D3E3B689D8272B9F37F3C : public WaitHandle_t1D7DD8480FD5DA4E3AF92F569890FB972D9B1842
{
public:
public:
};
// System.Threading.ExecutionContext
struct ExecutionContext_t16AC73BB21FEEEAD34A017877AC18DD8BB836414 : public RuntimeObject
{
public:
// System.Threading.SynchronizationContext System.Threading.ExecutionContext::_syncContext
SynchronizationContext_t17D9365B5E0D30A0910A16FA4351C525232EF069 * ____syncContext_0;
// System.Threading.SynchronizationContext System.Threading.ExecutionContext::_syncContextNoFlow
SynchronizationContext_t17D9365B5E0D30A0910A16FA4351C525232EF069 * ____syncContextNoFlow_1;
// System.Runtime.Remoting.Messaging.LogicalCallContext System.Threading.ExecutionContext::_logicalCallContext
LogicalCallContext_tB537C2A13F19FCC7EBC74757A415F2CA5C8FA1C3 * ____logicalCallContext_2;
// System.Runtime.Remoting.Messaging.IllogicalCallContext System.Threading.ExecutionContext::_illogicalCallContext
IllogicalCallContext_tFC01A2B688E85D44897206E4ACD81E050D25846E * ____illogicalCallContext_3;
// System.Threading.ExecutionContext_Flags System.Threading.ExecutionContext::_flags
int32_t ____flags_4;
// System.Collections.Generic.Dictionary`2<System.Threading.IAsyncLocal,System.Object> System.Threading.ExecutionContext::_localValues
Dictionary_2_tED8EC0DF62452D89154D9584AC19F62C79BF3938 * ____localValues_5;
// System.Collections.Generic.List`1<System.Threading.IAsyncLocal> System.Threading.ExecutionContext::_localChangeNotifications
List_1_t053589A158AAF0B471CF80825616560409AF43D4 * ____localChangeNotifications_6;
public:
inline static int32_t get_offset_of__syncContext_0() { return static_cast<int32_t>(offsetof(ExecutionContext_t16AC73BB21FEEEAD34A017877AC18DD8BB836414, ____syncContext_0)); }
inline SynchronizationContext_t17D9365B5E0D30A0910A16FA4351C525232EF069 * get__syncContext_0() const { return ____syncContext_0; }
inline SynchronizationContext_t17D9365B5E0D30A0910A16FA4351C525232EF069 ** get_address_of__syncContext_0() { return &____syncContext_0; }
inline void set__syncContext_0(SynchronizationContext_t17D9365B5E0D30A0910A16FA4351C525232EF069 * value)
{
____syncContext_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncContext_0), (void*)value);
}
inline static int32_t get_offset_of__syncContextNoFlow_1() { return static_cast<int32_t>(offsetof(ExecutionContext_t16AC73BB21FEEEAD34A017877AC18DD8BB836414, ____syncContextNoFlow_1)); }
inline SynchronizationContext_t17D9365B5E0D30A0910A16FA4351C525232EF069 * get__syncContextNoFlow_1() const { return ____syncContextNoFlow_1; }
inline SynchronizationContext_t17D9365B5E0D30A0910A16FA4351C525232EF069 ** get_address_of__syncContextNoFlow_1() { return &____syncContextNoFlow_1; }
inline void set__syncContextNoFlow_1(SynchronizationContext_t17D9365B5E0D30A0910A16FA4351C525232EF069 * value)
{
____syncContextNoFlow_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncContextNoFlow_1), (void*)value);
}
inline static int32_t get_offset_of__logicalCallContext_2() { return static_cast<int32_t>(offsetof(ExecutionContext_t16AC73BB21FEEEAD34A017877AC18DD8BB836414, ____logicalCallContext_2)); }
inline LogicalCallContext_tB537C2A13F19FCC7EBC74757A415F2CA5C8FA1C3 * get__logicalCallContext_2() const { return ____logicalCallContext_2; }
inline LogicalCallContext_tB537C2A13F19FCC7EBC74757A415F2CA5C8FA1C3 ** get_address_of__logicalCallContext_2() { return &____logicalCallContext_2; }
inline void set__logicalCallContext_2(LogicalCallContext_tB537C2A13F19FCC7EBC74757A415F2CA5C8FA1C3 * value)
{
____logicalCallContext_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____logicalCallContext_2), (void*)value);
}
inline static int32_t get_offset_of__illogicalCallContext_3() { return static_cast<int32_t>(offsetof(ExecutionContext_t16AC73BB21FEEEAD34A017877AC18DD8BB836414, ____illogicalCallContext_3)); }
inline IllogicalCallContext_tFC01A2B688E85D44897206E4ACD81E050D25846E * get__illogicalCallContext_3() const { return ____illogicalCallContext_3; }
inline IllogicalCallContext_tFC01A2B688E85D44897206E4ACD81E050D25846E ** get_address_of__illogicalCallContext_3() { return &____illogicalCallContext_3; }
inline void set__illogicalCallContext_3(IllogicalCallContext_tFC01A2B688E85D44897206E4ACD81E050D25846E * value)
{
____illogicalCallContext_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____illogicalCallContext_3), (void*)value);
}
inline static int32_t get_offset_of__flags_4() { return static_cast<int32_t>(offsetof(ExecutionContext_t16AC73BB21FEEEAD34A017877AC18DD8BB836414, ____flags_4)); }
inline int32_t get__flags_4() const { return ____flags_4; }
inline int32_t* get_address_of__flags_4() { return &____flags_4; }
inline void set__flags_4(int32_t value)
{
____flags_4 = value;
}
inline static int32_t get_offset_of__localValues_5() { return static_cast<int32_t>(offsetof(ExecutionContext_t16AC73BB21FEEEAD34A017877AC18DD8BB836414, ____localValues_5)); }
inline Dictionary_2_tED8EC0DF62452D89154D9584AC19F62C79BF3938 * get__localValues_5() const { return ____localValues_5; }
inline Dictionary_2_tED8EC0DF62452D89154D9584AC19F62C79BF3938 ** get_address_of__localValues_5() { return &____localValues_5; }
inline void set__localValues_5(Dictionary_2_tED8EC0DF62452D89154D9584AC19F62C79BF3938 * value)
{
____localValues_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____localValues_5), (void*)value);
}
inline static int32_t get_offset_of__localChangeNotifications_6() { return static_cast<int32_t>(offsetof(ExecutionContext_t16AC73BB21FEEEAD34A017877AC18DD8BB836414, ____localChangeNotifications_6)); }
inline List_1_t053589A158AAF0B471CF80825616560409AF43D4 * get__localChangeNotifications_6() const { return ____localChangeNotifications_6; }
inline List_1_t053589A158AAF0B471CF80825616560409AF43D4 ** get_address_of__localChangeNotifications_6() { return &____localChangeNotifications_6; }
inline void set__localChangeNotifications_6(List_1_t053589A158AAF0B471CF80825616560409AF43D4 * value)
{
____localChangeNotifications_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&____localChangeNotifications_6), (void*)value);
}
};
struct ExecutionContext_t16AC73BB21FEEEAD34A017877AC18DD8BB836414_StaticFields
{
public:
// System.Threading.ExecutionContext System.Threading.ExecutionContext::s_dummyDefaultEC
ExecutionContext_t16AC73BB21FEEEAD34A017877AC18DD8BB836414 * ___s_dummyDefaultEC_7;
public:
inline static int32_t get_offset_of_s_dummyDefaultEC_7() { return static_cast<int32_t>(offsetof(ExecutionContext_t16AC73BB21FEEEAD34A017877AC18DD8BB836414_StaticFields, ___s_dummyDefaultEC_7)); }
inline ExecutionContext_t16AC73BB21FEEEAD34A017877AC18DD8BB836414 * get_s_dummyDefaultEC_7() const { return ___s_dummyDefaultEC_7; }
inline ExecutionContext_t16AC73BB21FEEEAD34A017877AC18DD8BB836414 ** get_address_of_s_dummyDefaultEC_7() { return &___s_dummyDefaultEC_7; }
inline void set_s_dummyDefaultEC_7(ExecutionContext_t16AC73BB21FEEEAD34A017877AC18DD8BB836414 * value)
{
___s_dummyDefaultEC_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_dummyDefaultEC_7), (void*)value);
}
};
// System.Type
struct Type_t : public MemberInfo_t
{
public:
// System.RuntimeTypeHandle System.Type::_impl
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 ____impl_9;
public:
inline static int32_t get_offset_of__impl_9() { return static_cast<int32_t>(offsetof(Type_t, ____impl_9)); }
inline RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 get__impl_9() const { return ____impl_9; }
inline RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 * get_address_of__impl_9() { return &____impl_9; }
inline void set__impl_9(RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 value)
{
____impl_9 = value;
}
};
struct Type_t_StaticFields
{
public:
// System.Reflection.MemberFilter System.Type::FilterAttribute
MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * ___FilterAttribute_0;
// System.Reflection.MemberFilter System.Type::FilterName
MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * ___FilterName_1;
// System.Reflection.MemberFilter System.Type::FilterNameIgnoreCase
MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * ___FilterNameIgnoreCase_2;
// System.Object System.Type::Missing
RuntimeObject * ___Missing_3;
// System.Char System.Type::Delimiter
Il2CppChar ___Delimiter_4;
// System.Type[] System.Type::EmptyTypes
TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* ___EmptyTypes_5;
// System.Reflection.Binder System.Type::defaultBinder
Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 * ___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_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * get_FilterAttribute_0() const { return ___FilterAttribute_0; }
inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 ** get_address_of_FilterAttribute_0() { return &___FilterAttribute_0; }
inline void set_FilterAttribute_0(MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * 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_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * get_FilterName_1() const { return ___FilterName_1; }
inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 ** get_address_of_FilterName_1() { return &___FilterName_1; }
inline void set_FilterName_1(MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * 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_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * get_FilterNameIgnoreCase_2() const { return ___FilterNameIgnoreCase_2; }
inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 ** get_address_of_FilterNameIgnoreCase_2() { return &___FilterNameIgnoreCase_2; }
inline void set_FilterNameIgnoreCase_2(MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * 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_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* get_EmptyTypes_5() const { return ___EmptyTypes_5; }
inline TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755** get_address_of_EmptyTypes_5() { return &___EmptyTypes_5; }
inline void set_EmptyTypes_5(TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* 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_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 * get_defaultBinder_6() const { return ___defaultBinder_6; }
inline Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 ** get_address_of_defaultBinder_6() { return &___defaultBinder_6; }
inline void set_defaultBinder_6(Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 * value)
{
___defaultBinder_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultBinder_6), (void*)value);
}
};
// System.Action
struct Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 : public MulticastDelegate_t
{
public:
public:
};
// System.Action`1<System.Object>
struct Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC : public MulticastDelegate_t
{
public:
public:
};
// System.ArgumentException
struct ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62
{
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_t505FA8C11E883F2D96C797AD9D396490794DEE00, ___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.ArithmeticException
struct ArithmeticException_t8E5F44FABC7FAE0966CBA6DE9BFD545F2660ED47 : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62
{
public:
public:
};
// System.CannotUnloadAppDomainException
struct CannotUnloadAppDomainException_t65AADF8792D8CCF6BAF22D51D8E4B7AB92960F9C : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62
{
public:
public:
};
// System.FormatException
struct FormatException_t119BB207B54B4B1BC28D9B1783C4625AE23D4759 : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62
{
public:
public:
};
// System.IO.IOException
struct IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62
{
public:
// System.String System.IO.IOException::_maybeFullPath
String_t* ____maybeFullPath_17;
public:
inline static int32_t get_offset_of__maybeFullPath_17() { return static_cast<int32_t>(offsetof(IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA, ____maybeFullPath_17)); }
inline String_t* get__maybeFullPath_17() const { return ____maybeFullPath_17; }
inline String_t** get_address_of__maybeFullPath_17() { return &____maybeFullPath_17; }
inline void set__maybeFullPath_17(String_t* value)
{
____maybeFullPath_17 = value;
Il2CppCodeGenWriteBarrier((void**)(&____maybeFullPath_17), (void*)value);
}
};
// System.InvalidCastException
struct InvalidCastException_tD99F9FF94C3859C78E90F68C2F77A1558BCAF463 : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62
{
public:
public:
};
// System.InvalidOperationException
struct InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62
{
public:
public:
};
// System.NotSupportedException
struct NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62
{
public:
public:
};
// System.OperationCanceledException
struct OperationCanceledException_tA90317406FAE39FB4E2C6AA84E12135E1D56B6FB : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62
{
public:
// System.Threading.CancellationToken System.OperationCanceledException::_cancellationToken
CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ____cancellationToken_17;
public:
inline static int32_t get_offset_of__cancellationToken_17() { return static_cast<int32_t>(offsetof(OperationCanceledException_tA90317406FAE39FB4E2C6AA84E12135E1D56B6FB, ____cancellationToken_17)); }
inline CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD get__cancellationToken_17() const { return ____cancellationToken_17; }
inline CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD * get_address_of__cancellationToken_17() { return &____cancellationToken_17; }
inline void set__cancellationToken_17(CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD value)
{
____cancellationToken_17 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&____cancellationToken_17))->___m_source_0), (void*)NULL);
}
};
// System.Reflection.TargetInvocationException
struct TargetInvocationException_t30F4C50D323F448CD2E08BDB8F47694B08EB354C : public ApplicationException_t8D709C0445A040467C6A632AD7F742B25AB2A407
{
public:
public:
};
// System.Runtime.InteropServices.ExternalException
struct ExternalException_tC18275DD0AEB2CDF9F85D94670C5A49A4DC3B783 : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62
{
public:
public:
};
// System.Runtime.Remoting.RemotingException
struct RemotingException_tEFFC0A283D7F4169F5481926B7FF6C2EB8C76F1B : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62
{
public:
public:
};
// System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
struct BinaryFormatter_tAA0465FE94B272FAC7C99F6AD38120E9319C5F55 : public RuntimeObject
{
public:
// System.Runtime.Serialization.ISurrogateSelector System.Runtime.Serialization.Formatters.Binary.BinaryFormatter::m_surrogates
RuntimeObject* ___m_surrogates_0;
// System.Runtime.Serialization.StreamingContext System.Runtime.Serialization.Formatters.Binary.BinaryFormatter::m_context
StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 ___m_context_1;
// System.Runtime.Serialization.SerializationBinder System.Runtime.Serialization.Formatters.Binary.BinaryFormatter::m_binder
SerializationBinder_t600A2077818E43FC641208357D8B809A10F1EAB8 * ___m_binder_2;
// System.Runtime.Serialization.Formatters.FormatterTypeStyle System.Runtime.Serialization.Formatters.Binary.BinaryFormatter::m_typeFormat
int32_t ___m_typeFormat_3;
// System.Runtime.Serialization.Formatters.FormatterAssemblyStyle System.Runtime.Serialization.Formatters.Binary.BinaryFormatter::m_assemblyFormat
int32_t ___m_assemblyFormat_4;
// System.Runtime.Serialization.Formatters.TypeFilterLevel System.Runtime.Serialization.Formatters.Binary.BinaryFormatter::m_securityLevel
int32_t ___m_securityLevel_5;
// System.Object[] System.Runtime.Serialization.Formatters.Binary.BinaryFormatter::m_crossAppDomainArray
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___m_crossAppDomainArray_6;
public:
inline static int32_t get_offset_of_m_surrogates_0() { return static_cast<int32_t>(offsetof(BinaryFormatter_tAA0465FE94B272FAC7C99F6AD38120E9319C5F55, ___m_surrogates_0)); }
inline RuntimeObject* get_m_surrogates_0() const { return ___m_surrogates_0; }
inline RuntimeObject** get_address_of_m_surrogates_0() { return &___m_surrogates_0; }
inline void set_m_surrogates_0(RuntimeObject* value)
{
___m_surrogates_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_surrogates_0), (void*)value);
}
inline static int32_t get_offset_of_m_context_1() { return static_cast<int32_t>(offsetof(BinaryFormatter_tAA0465FE94B272FAC7C99F6AD38120E9319C5F55, ___m_context_1)); }
inline StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 get_m_context_1() const { return ___m_context_1; }
inline StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 * get_address_of_m_context_1() { return &___m_context_1; }
inline void set_m_context_1(StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 value)
{
___m_context_1 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___m_context_1))->___m_additionalContext_0), (void*)NULL);
}
inline static int32_t get_offset_of_m_binder_2() { return static_cast<int32_t>(offsetof(BinaryFormatter_tAA0465FE94B272FAC7C99F6AD38120E9319C5F55, ___m_binder_2)); }
inline SerializationBinder_t600A2077818E43FC641208357D8B809A10F1EAB8 * get_m_binder_2() const { return ___m_binder_2; }
inline SerializationBinder_t600A2077818E43FC641208357D8B809A10F1EAB8 ** get_address_of_m_binder_2() { return &___m_binder_2; }
inline void set_m_binder_2(SerializationBinder_t600A2077818E43FC641208357D8B809A10F1EAB8 * value)
{
___m_binder_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_binder_2), (void*)value);
}
inline static int32_t get_offset_of_m_typeFormat_3() { return static_cast<int32_t>(offsetof(BinaryFormatter_tAA0465FE94B272FAC7C99F6AD38120E9319C5F55, ___m_typeFormat_3)); }
inline int32_t get_m_typeFormat_3() const { return ___m_typeFormat_3; }
inline int32_t* get_address_of_m_typeFormat_3() { return &___m_typeFormat_3; }
inline void set_m_typeFormat_3(int32_t value)
{
___m_typeFormat_3 = value;
}
inline static int32_t get_offset_of_m_assemblyFormat_4() { return static_cast<int32_t>(offsetof(BinaryFormatter_tAA0465FE94B272FAC7C99F6AD38120E9319C5F55, ___m_assemblyFormat_4)); }
inline int32_t get_m_assemblyFormat_4() const { return ___m_assemblyFormat_4; }
inline int32_t* get_address_of_m_assemblyFormat_4() { return &___m_assemblyFormat_4; }
inline void set_m_assemblyFormat_4(int32_t value)
{
___m_assemblyFormat_4 = value;
}
inline static int32_t get_offset_of_m_securityLevel_5() { return static_cast<int32_t>(offsetof(BinaryFormatter_tAA0465FE94B272FAC7C99F6AD38120E9319C5F55, ___m_securityLevel_5)); }
inline int32_t get_m_securityLevel_5() const { return ___m_securityLevel_5; }
inline int32_t* get_address_of_m_securityLevel_5() { return &___m_securityLevel_5; }
inline void set_m_securityLevel_5(int32_t value)
{
___m_securityLevel_5 = value;
}
inline static int32_t get_offset_of_m_crossAppDomainArray_6() { return static_cast<int32_t>(offsetof(BinaryFormatter_tAA0465FE94B272FAC7C99F6AD38120E9319C5F55, ___m_crossAppDomainArray_6)); }
inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get_m_crossAppDomainArray_6() const { return ___m_crossAppDomainArray_6; }
inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of_m_crossAppDomainArray_6() { return &___m_crossAppDomainArray_6; }
inline void set_m_crossAppDomainArray_6(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value)
{
___m_crossAppDomainArray_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_crossAppDomainArray_6), (void*)value);
}
};
struct BinaryFormatter_tAA0465FE94B272FAC7C99F6AD38120E9319C5F55_StaticFields
{
public:
// System.Collections.Generic.Dictionary`2<System.Type,System.Runtime.Serialization.Formatters.Binary.TypeInformation> System.Runtime.Serialization.Formatters.Binary.BinaryFormatter::typeNameCache
Dictionary_2_tCAA954C180FE22A5909DC97DB48233904AC1A885 * ___typeNameCache_7;
public:
inline static int32_t get_offset_of_typeNameCache_7() { return static_cast<int32_t>(offsetof(BinaryFormatter_tAA0465FE94B272FAC7C99F6AD38120E9319C5F55_StaticFields, ___typeNameCache_7)); }
inline Dictionary_2_tCAA954C180FE22A5909DC97DB48233904AC1A885 * get_typeNameCache_7() const { return ___typeNameCache_7; }
inline Dictionary_2_tCAA954C180FE22A5909DC97DB48233904AC1A885 ** get_address_of_typeNameCache_7() { return &___typeNameCache_7; }
inline void set_typeNameCache_7(Dictionary_2_tCAA954C180FE22A5909DC97DB48233904AC1A885 * value)
{
___typeNameCache_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___typeNameCache_7), (void*)value);
}
};
// System.Threading.ContextCallback
struct ContextCallback_t93707E0430F4FF3E15E1FB5A4844BE89C657AE8B : public MulticastDelegate_t
{
public:
public:
};
// System.Threading.ManualResetEvent
struct ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA : public EventWaitHandle_t80CDEB33529EF7549E7D3E3B689D8272B9F37F3C
{
public:
public:
};
// System.Threading.SendOrPostCallback
struct SendOrPostCallback_t6B7334CE017AF595535507519400AC02D688DC3C : public MulticastDelegate_t
{
public:
public:
};
// System.Threading.ThreadAbortException
struct ThreadAbortException_t16772A32C3654FCFF0399F11874CB783CC51C153 : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62
{
public:
public:
};
// System.Threading.TimerCallback
struct TimerCallback_tD193CC50BF27E129E6857E1E8A7EAC24BD131814 : public MulticastDelegate_t
{
public:
public:
};
// System.ArgumentNullException
struct ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB : public ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00
{
public:
public:
};
// System.ArgumentOutOfRangeException
struct ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 : public ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00
{
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_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8, ___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_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_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_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_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.ObjectDisposedException
struct ObjectDisposedException_t29EF6F519F16BA477EC682F23E8344BB1E9A958A : public InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB
{
public:
// System.String System.ObjectDisposedException::objectName
String_t* ___objectName_17;
public:
inline static int32_t get_offset_of_objectName_17() { return static_cast<int32_t>(offsetof(ObjectDisposedException_t29EF6F519F16BA477EC682F23E8344BB1E9A958A, ___objectName_17)); }
inline String_t* get_objectName_17() const { return ___objectName_17; }
inline String_t** get_address_of_objectName_17() { return &___objectName_17; }
inline void set_objectName_17(String_t* value)
{
___objectName_17 = value;
Il2CppCodeGenWriteBarrier((void**)(&___objectName_17), (void*)value);
}
};
// System.OverflowException
struct OverflowException_tD1FBF4E54D81EC98EEF386B69344D336D1EC1AB9 : public ArithmeticException_t8E5F44FABC7FAE0966CBA6DE9BFD545F2660ED47
{
public:
public:
};
// System.Runtime.InteropServices.COMException
struct COMException_t85EBB13764071A376ECA5BE9675860DAE79C768C : public ExternalException_tC18275DD0AEB2CDF9F85D94670C5A49A4DC3B783
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// System.Byte[]
struct ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726 : public RuntimeArray
{
public:
ALIGN_FIELD (8) uint8_t m_Items[1];
public:
inline uint8_t GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline uint8_t* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, uint8_t value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline uint8_t GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline uint8_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, uint8_t value)
{
m_Items[index] = value;
}
};
// System.Char[]
struct CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34 : 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.Object[]
struct ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE : 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.Type[]
struct TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Type_t * m_Items[1];
public:
inline Type_t * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Type_t ** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Type_t * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline Type_t * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Type_t ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Type_t * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Reflection.ParameterInfo[]
struct ParameterInfoU5BU5D_tB1B367487BAA9E1B2DA7EAA95B443D0B183AF80B : public RuntimeArray
{
public:
ALIGN_FIELD (8) ParameterInfo_t9D9DBDD93E685815E35F4F6D6F58E90EBC8852B7 * m_Items[1];
public:
inline ParameterInfo_t9D9DBDD93E685815E35F4F6D6F58E90EBC8852B7 * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline ParameterInfo_t9D9DBDD93E685815E35F4F6D6F58E90EBC8852B7 ** 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, ParameterInfo_t9D9DBDD93E685815E35F4F6D6F58E90EBC8852B7 * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline ParameterInfo_t9D9DBDD93E685815E35F4F6D6F58E90EBC8852B7 * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline ParameterInfo_t9D9DBDD93E685815E35F4F6D6F58E90EBC8852B7 ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, ParameterInfo_t9D9DBDD93E685815E35F4F6D6F58E90EBC8852B7 * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Boolean[]
struct BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C : 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.Decimal[]
struct DecimalU5BU5D_tAA3302A4A6ACCE77638A2346993A0FAAE2F9FDBA : public RuntimeArray
{
public:
ALIGN_FIELD (8) Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 m_Items[1];
public:
inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 * 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, Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 value)
{
m_Items[index] = value;
}
};
// System.Double[]
struct DoubleU5BU5D_t8E1B42EB2ABB79FBD193A6B8C8D97A7CDE44A4FB : public RuntimeArray
{
public:
ALIGN_FIELD (8) double m_Items[1];
public:
inline double GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline double* 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, double value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline double GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline double* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, double value)
{
m_Items[index] = value;
}
};
// System.Int16[]
struct Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD : public RuntimeArray
{
public:
ALIGN_FIELD (8) int16_t m_Items[1];
public:
inline int16_t GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline int16_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, int16_t value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline int16_t GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline int16_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, int16_t value)
{
m_Items[index] = value;
}
};
// System.Int32[]
struct Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32 : 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.Int64[]
struct Int64U5BU5D_tCA61E42872C63A4286B24EEE6E0650143B43DCE6 : public RuntimeArray
{
public:
ALIGN_FIELD (8) int64_t m_Items[1];
public:
inline int64_t GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline int64_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, int64_t value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline int64_t GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline int64_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, int64_t value)
{
m_Items[index] = value;
}
};
// System.SByte[]
struct SByteU5BU5D_t7D94C53295E6116625EA7CC7DEA21FEDC39869E7 : public RuntimeArray
{
public:
ALIGN_FIELD (8) int8_t m_Items[1];
public:
inline int8_t GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline int8_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, int8_t value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline int8_t GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline int8_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, int8_t value)
{
m_Items[index] = value;
}
};
// System.Single[]
struct SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA : 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.UInt16[]
struct UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67 : public RuntimeArray
{
public:
ALIGN_FIELD (8) uint16_t m_Items[1];
public:
inline uint16_t GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline uint16_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, uint16_t value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline uint16_t GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline uint16_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, uint16_t value)
{
m_Items[index] = value;
}
};
// System.UInt32[]
struct UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF : 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_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2 : 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;
}
};
// System.String[]
struct StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A : public RuntimeArray
{
public:
ALIGN_FIELD (8) String_t* m_Items[1];
public:
inline String_t* GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline String_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, String_t* value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline String_t* GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline String_t** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, String_t* value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Reflection.MethodInfo[]
struct MethodInfoU5BU5D_t86AA7E1AF11D62BAE3189F25907B252596FA627E : public RuntimeArray
{
public:
ALIGN_FIELD (8) MethodInfo_t * m_Items[1];
public:
inline MethodInfo_t * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline MethodInfo_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, MethodInfo_t * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline MethodInfo_t * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline MethodInfo_t ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, MethodInfo_t * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Reflection.ParameterModifier[]
struct ParameterModifierU5BU5D_tFF6F73F1CFE837331D6AAA11CC78CE5D9B5F0A2B : public RuntimeArray
{
public:
ALIGN_FIELD (8) ParameterModifier_tC1C793BD8B003B24010657487AFD17A4BA3DF6EA m_Items[1];
public:
inline ParameterModifier_tC1C793BD8B003B24010657487AFD17A4BA3DF6EA GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline ParameterModifier_tC1C793BD8B003B24010657487AFD17A4BA3DF6EA * 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, ParameterModifier_tC1C793BD8B003B24010657487AFD17A4BA3DF6EA value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->____byRef_0), (void*)NULL);
}
inline ParameterModifier_tC1C793BD8B003B24010657487AFD17A4BA3DF6EA GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline ParameterModifier_tC1C793BD8B003B24010657487AFD17A4BA3DF6EA * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, ParameterModifier_tC1C793BD8B003B24010657487AFD17A4BA3DF6EA value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->____byRef_0), (void*)NULL);
}
};
// System.Threading.CancellationTokenRegistration[]
struct CancellationTokenRegistrationU5BU5D_t864BA2E1E6485FDC593F17F7C01525F33CCE7910 : public RuntimeArray
{
public:
ALIGN_FIELD (8) CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A m_Items[1];
public:
inline CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A * 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, CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_callbackInfo_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___m_registrationInfo_1))->___m_source_0), (void*)NULL);
#endif
}
inline CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_callbackInfo_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___m_registrationInfo_1))->___m_source_0), (void*)NULL);
#endif
}
};
// System.Threading.SparselyPopulatedArray`1<System.Threading.CancellationCallbackInfo>[]
struct SparselyPopulatedArray_1U5BU5D_t4D2064CEC206620DC5001D7C857A845833DCB52A : public RuntimeArray
{
public:
ALIGN_FIELD (8) SparselyPopulatedArray_1_tA18952D126B9E09096751CC472A19196C8B6C17A * m_Items[1];
public:
inline SparselyPopulatedArray_1_tA18952D126B9E09096751CC472A19196C8B6C17A * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline SparselyPopulatedArray_1_tA18952D126B9E09096751CC472A19196C8B6C17A ** 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, SparselyPopulatedArray_1_tA18952D126B9E09096751CC472A19196C8B6C17A * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline SparselyPopulatedArray_1_tA18952D126B9E09096751CC472A19196C8B6C17A * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline SparselyPopulatedArray_1_tA18952D126B9E09096751CC472A19196C8B6C17A ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, SparselyPopulatedArray_1_tA18952D126B9E09096751CC472A19196C8B6C17A * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Globalization.InternalCodePageDataItem[]
struct InternalCodePageDataItemU5BU5D_t14F50FF811A5CE312AAFE9726715A79B23230CA1 : public RuntimeArray
{
public:
ALIGN_FIELD (8) InternalCodePageDataItem_t885932F372A8EEC39396B0D57CC93AC72E2A3DA7 m_Items[1];
public:
inline InternalCodePageDataItem_t885932F372A8EEC39396B0D57CC93AC72E2A3DA7 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline InternalCodePageDataItem_t885932F372A8EEC39396B0D57CC93AC72E2A3DA7 * 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, InternalCodePageDataItem_t885932F372A8EEC39396B0D57CC93AC72E2A3DA7 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___Names_3), (void*)NULL);
}
inline InternalCodePageDataItem_t885932F372A8EEC39396B0D57CC93AC72E2A3DA7 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline InternalCodePageDataItem_t885932F372A8EEC39396B0D57CC93AC72E2A3DA7 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, InternalCodePageDataItem_t885932F372A8EEC39396B0D57CC93AC72E2A3DA7 value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___Names_3), (void*)NULL);
}
};
// Mono.Globalization.Unicode.CodePointIndexer_TableRange[]
struct TableRangeU5BU5D_t529A3048AC157A0702514DB337164442AF1530C7 : public RuntimeArray
{
public:
ALIGN_FIELD (8) TableRange_t0D96EE3F7B1008C60DD683B3A6985C602854E6F1 m_Items[1];
public:
inline TableRange_t0D96EE3F7B1008C60DD683B3A6985C602854E6F1 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline TableRange_t0D96EE3F7B1008C60DD683B3A6985C602854E6F1 * 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, TableRange_t0D96EE3F7B1008C60DD683B3A6985C602854E6F1 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline TableRange_t0D96EE3F7B1008C60DD683B3A6985C602854E6F1 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline TableRange_t0D96EE3F7B1008C60DD683B3A6985C602854E6F1 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, TableRange_t0D96EE3F7B1008C60DD683B3A6985C602854E6F1 value)
{
m_Items[index] = value;
}
};
// System.Void System.Collections.Generic.EqualityComparer`1<System.Byte>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EqualityComparer_1__ctor_m9E058C5D324E26AC7D53998B987EA6ED826103CA_gshared (EqualityComparer_1_t315BFEDB969101238C563049FF00D5CB9F8D6509 * __this, const RuntimeMethod* method);
// System.Void System.Action`1<System.Object>::Invoke(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1_Invoke_m587509C88BB83721D7918D89DF07606BB752D744_gshared (Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Void System.Action`1<System.Object>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1__ctor_mA671E933C9D3DAE4E3F71D34FDDA971739618158_gshared (Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method);
// System.Threading.SparselyPopulatedArrayFragment`1<T> System.Threading.SparselyPopulatedArrayAddInfo`1<System.Object>::get_Source()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 * SparselyPopulatedArrayAddInfo_1_get_Source_mF16A5757073BEDF261071800F1E44DBC7FD64D0A_gshared_inline (SparselyPopulatedArrayAddInfo_1_t8F3BEC3A081BCFDF83207FC35A690A7E2773639D * __this, const RuntimeMethod* method);
// System.Int32 System.Threading.SparselyPopulatedArrayAddInfo`1<System.Object>::get_Index()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t SparselyPopulatedArrayAddInfo_1_get_Index_m504E6BF8E69B6BF3E2D670654834F4AD8D47BDB7_gshared_inline (SparselyPopulatedArrayAddInfo_1_t8F3BEC3A081BCFDF83207FC35A690A7E2773639D * __this, const RuntimeMethod* method);
// T System.Threading.SparselyPopulatedArrayFragment`1<System.Object>::SafeAtomicRemove(System.Int32,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * SparselyPopulatedArrayFragment_1_SafeAtomicRemove_m6252DF164CBE58871C4AA1183160ABE31637D844_gshared (SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 * __this, int32_t ___index0, RuntimeObject * ___expectedElement1, const RuntimeMethod* method);
// System.Void System.Threading.SparselyPopulatedArray`1<System.Object>::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SparselyPopulatedArray_1__ctor_m4819219D17EF783AA631AE71218B59EA894AA9E6_gshared (SparselyPopulatedArray_1_tD55330C40D801085FD9D705F3844A08F28EFE37B * __this, int32_t ___initialSize0, const RuntimeMethod* method);
// System.Threading.SparselyPopulatedArrayAddInfo`1<T> System.Threading.SparselyPopulatedArray`1<System.Object>::Add(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SparselyPopulatedArrayAddInfo_1_t8F3BEC3A081BCFDF83207FC35A690A7E2773639D SparselyPopulatedArray_1_Add_m64CEDA3841ECF9A5BAD346FF0714610AB9E40CAE_gshared (SparselyPopulatedArray_1_tD55330C40D801085FD9D705F3844A08F28EFE37B * __this, RuntimeObject * ___element0, const RuntimeMethod* method);
// System.Threading.SparselyPopulatedArrayFragment`1<T> System.Threading.SparselyPopulatedArray`1<System.Object>::get_Tail()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 * SparselyPopulatedArray_1_get_Tail_mBAA868E1B7091E1FF6BDF656AF3BDE21E98A9048_gshared (SparselyPopulatedArray_1_tD55330C40D801085FD9D705F3844A08F28EFE37B * __this, const RuntimeMethod* method);
// System.Int32 System.Threading.SparselyPopulatedArrayFragment`1<System.Object>::get_Length()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SparselyPopulatedArrayFragment_1_get_Length_mB0DC970D503F4C5776CB9A81094AF51DA6CA4B89_gshared (SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 * __this, const RuntimeMethod* method);
// T System.Threading.SparselyPopulatedArrayFragment`1<System.Object>::get_Item(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * SparselyPopulatedArrayFragment_1_get_Item_mC3579E477C53F9088A8C833575B30C7D71C7E8FC_gshared (SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 * __this, int32_t ___index0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1<System.Object>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m0F0E00088CF56FEACC9E32D8B7D91B93D91DAA3B_gshared (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1<System.Object>::Add(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Add_mE5B3CBB3A625606D9BC4337FEAAF1D66BCB6F96E_gshared (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, RuntimeObject * ___item0, const RuntimeMethod* method);
// System.Threading.SparselyPopulatedArrayFragment`1<T> System.Threading.SparselyPopulatedArrayFragment`1<System.Object>::get_Prev()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 * SparselyPopulatedArrayFragment_1_get_Prev_m3AE2D2BEA384B3DDB6F5E8232451AC419F160665_gshared (SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 * __this, const RuntimeMethod* method);
// T[] System.Collections.Generic.List`1<System.Object>::ToArray()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* List_1_ToArray_mA737986DE6389E9DD8FA8E3D4E222DE4DA34958D_gshared (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::.ctor(System.Collections.Generic.IEqualityComparer`1<TKey>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m42F33AB093A9AAB17C558FDBFF010443D1048400_gshared (Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Object>::TryGetValue(TKey,TValue&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_TryGetValue_m048C13E0F44BDC16F7CF01D14E918A84EE72C62C_gshared (Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * __this, RuntimeObject * ___key0, RuntimeObject ** ___value1, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::set_Item(TKey,TValue)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_set_Item_mE6BF870B04922441F9F2760E782DEE6EE682615A_gshared (Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method);
// T[] System.Array::Empty<System.Object>()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* Array_Empty_TisRuntimeObject_m1FBC21243DF3542384C523801E8CA8A97606C747_gshared_inline (const RuntimeMethod* method);
// System.Void System.Object::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405 (RuntimeObject * __this, const RuntimeMethod* method);
// System.Void System.Text.UTF8Encoding::.ctor(System.Boolean,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UTF8Encoding__ctor_mD752778085A353529AF03841383E5603FE556449 (UTF8Encoding_t6EE88BC62116B5328F6CF4E39C9CC49EED2ED282 * __this, bool ___encoderShouldEmitUTF8Identifier0, bool ___throwOnInvalidBytes1, const RuntimeMethod* method);
// System.Void System.IO.BinaryWriter::.ctor(System.IO.Stream,System.Text.Encoding,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BinaryWriter__ctor_m5BDC3D7C4D4A1AC073BB0E75842EAD8DE225FAC8 (BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F * __this, Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___output0, Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * ___encoding1, bool ___leaveOpen2, const RuntimeMethod* method);
// System.Void System.ArgumentNullException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97 (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * __this, String_t* ___paramName0, const RuntimeMethod* method);
// System.String System.Environment::GetResourceString(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_GetResourceString_m8DFF827596B5FD533D3FE56900FA095F7D674617 (String_t* ___key0, const RuntimeMethod* method);
// System.Void System.ArgumentException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * __this, String_t* ___message0, const RuntimeMethod* method);
// System.Boolean System.Char::IsSurrogate(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsSurrogate_mDE2EA47FEF5F4816C883C5FF7DA85364025B5CDE (Il2CppChar ___c0, const RuntimeMethod* method);
// System.Byte[] Mono.Security.BitConverterLE::GetBytes(System.Double)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* BitConverterLE_GetBytes_m6A2983F0B26E60784B5D7AC25E6B18D7F2B56C07 (double ___value0, const RuntimeMethod* method);
// System.Byte[] Mono.Security.BitConverterLE::GetBytes(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* BitConverterLE_GetBytes_m6C0597EE535CAAC1D234008CEA6382C15ED3EE3A (float ___value0, const RuntimeMethod* method);
// System.Void System.IO.BinaryWriter::Write7BitEncodedInt(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BinaryWriter_Write7BitEncodedInt_mED0C8BE214D7B1843F2C061263939F42DFAF7B33 (BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F * __this, int32_t ___value0, const RuntimeMethod* method);
// System.Int32 System.String::get_Length()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline (String_t* __this, const RuntimeMethod* method);
// System.Void System.ArgumentOutOfRangeException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentOutOfRangeException__ctor_m329C2882A4CB69F185E98D0DD7E853AA9220960A (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * __this, String_t* ___paramName0, const RuntimeMethod* method);
// System.Int32 System.Runtime.CompilerServices.RuntimeHelpers::get_OffsetToStringData()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RuntimeHelpers_get_OffsetToStringData_mEB8E6EAEBAFAB7CD7F7A915B3081785AABB9FC42 (const RuntimeMethod* method);
// System.Void System.IO.BinaryWriter::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BinaryWriter__ctor_m4C679C96D984329B90F962B81BC557D09DCDE8C5 (BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F * __this, const RuntimeMethod* method);
// System.Void System.ThrowHelper::ThrowArgumentNullException(System.ExceptionArgument)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_ThrowArgumentNullException_m539081110B94B71D92C9761B273E617B23B4BBA5 (int32_t ___argument0, const RuntimeMethod* method);
// System.Void System.ThrowHelper::ThrowArgumentOutOfRangeException(System.ExceptionArgument,System.ExceptionResource)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_ThrowArgumentOutOfRangeException_mFBB0FE021BE66E1402AAC69275C0EDB716E3CC11 (int32_t ___argument0, int32_t ___resource1, const RuntimeMethod* method);
// System.Void System.ThrowHelper::ThrowArgumentException(System.ExceptionResource)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_ThrowArgumentException_m49831D19CFA6026A62C5D52FA7A8E162EBD4DD6A (int32_t ___resource0, const RuntimeMethod* method);
// System.Int16 System.BitConverter::ToInt16(System.Byte[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t BitConverter_ToInt16_mD217955ED0C3E56F79DECE745A38857E4A8F6C8E (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___value0, int32_t ___startIndex1, const RuntimeMethod* method);
// System.Int32 System.BitConverter::ToInt32(System.Byte[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t BitConverter_ToInt32_m09562D0C66673FA4883600754E82F22CAFED8892 (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___value0, int32_t ___startIndex1, const RuntimeMethod* method);
// System.Int64 System.BitConverter::ToInt64(System.Byte[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t BitConverter_ToInt64_m6B5A5B4C68D036256417E9348FA25A257015B37E (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___value0, int32_t ___startIndex1, const RuntimeMethod* method);
// System.Void System.ArgumentOutOfRangeException::.ctor(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentOutOfRangeException__ctor_mE43AFC74F5F3932913C023A04B24905E093C5005 (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * __this, String_t* ___paramName0, String_t* ___message1, const RuntimeMethod* method);
// System.String System.Environment::GetResourceString(System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_GetResourceString_m9A30EE9F4E10F48B79F9EB56D18D52AE7E7EB602 (String_t* ___key0, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___values1, const RuntimeMethod* method);
// System.Char System.BitConverter::GetHexValue(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar BitConverter_GetHexValue_m73A44406CF631AC751E6EC1F928120452D68440E (int32_t ___i0, const RuntimeMethod* method);
// System.String System.String::CreateString(System.Char[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_CreateString_m16F181739FD8BA877868803DE2CE0EF0A4668D0E (String_t* __this, CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___val0, int32_t ___startIndex1, int32_t ___length2, const RuntimeMethod* method);
// System.String System.BitConverter::ToString(System.Byte[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* BitConverter_ToString_mE20B739ACCBA32463B83D761E536DF965A63538D (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___value0, int32_t ___startIndex1, int32_t ___length2, const RuntimeMethod* method);
// System.Boolean System.BitConverter::AmILittleEndian()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool BitConverter_AmILittleEndian_m695F6578BE14FC992D408719BDE53AAA21854C22 (const RuntimeMethod* method);
// System.Byte[] Mono.Security.BitConverterLE::GetUIntBytes(System.Byte*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* BitConverterLE_GetUIntBytes_mB263FB37527737393A67D9B5679D33EA28232F77 (uint8_t* ___bytes0, const RuntimeMethod* method);
// System.Byte[] Mono.Security.BitConverterLE::GetULongBytes(System.Byte*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* BitConverterLE_GetULongBytes_m9B99F60A322A538DED6831250485076B068FBB3F (uint8_t* ___bytes0, const RuntimeMethod* method);
// System.Void Mono.Security.BitConverterLE::UIntFromBytes(System.Byte*,System.Byte[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BitConverterLE_UIntFromBytes_mD54557321A7C885F5DC739D16D05BD208C882835 (uint8_t* ___dst0, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___src1, int32_t ___startIndex2, const RuntimeMethod* method);
// System.Void Mono.Security.BitConverterLE::ULongFromBytes(System.Byte*,System.Byte[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BitConverterLE_ULongFromBytes_m805CA0D87EC1E72E505EF312340D520115E03E9F (uint8_t* ___dst0, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___src1, int32_t ___startIndex2, const RuntimeMethod* method);
// System.Int32 System.Boolean::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Boolean_GetHashCode_m03AF8B3CECAE9106C44A00E3B33E51CBFC45C411 (bool* __this, const RuntimeMethod* method);
// System.String System.Boolean::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Boolean_ToString_m59BB8456DD05A874BBD756E57EA8AD983287015C (bool* __this, const RuntimeMethod* method);
// System.String System.Boolean::ToString(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Boolean_ToString_m6AF340BBFF7B2ABB5987CE80AE6335EE96BC71E9 (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.Boolean System.Boolean::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Boolean_Equals_mA2FC01AF136159906F30A85C950097BE67C824B8 (bool* __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Boolean System.Boolean::Equals(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Boolean_Equals_mC63D03B4DE1BBC68835530A9E0384FDDB0AC1A3D (bool* __this, bool ___obj0, const RuntimeMethod* method);
// System.Int32 System.Boolean::CompareTo(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Boolean_CompareTo_mC707B7449D158CBC44629E0127379DDE5AEC9F8B (bool* __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Int32 System.Boolean::CompareTo(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Boolean_CompareTo_m943C460E56A1EC6692C0A066760BA2008A698725 (bool* __this, bool ___value0, const RuntimeMethod* method);
// System.Boolean System.Boolean::TryParse(System.String,System.Boolean&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Boolean_TryParse_m083F8EB6F0A07B24C26310648CB2380C3D3AAEE7 (String_t* ___value0, bool* ___result1, const RuntimeMethod* method);
// System.Void System.FormatException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FormatException__ctor_mB8F9A26F985EF9A6C0C082F7D70CFDF2DBDBB23B (FormatException_t119BB207B54B4B1BC28D9B1783C4625AE23D4759 * __this, String_t* ___message0, const RuntimeMethod* method);
// System.Boolean System.String::Equals(System.String,System.StringComparison)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_Equals_m62F0586691097AA2EE48F1596A130170BCFBF7F6 (String_t* __this, String_t* ___value0, int32_t ___comparisonType1, const RuntimeMethod* method);
// System.String System.Boolean::TrimWhiteSpaceAndNull(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Boolean_TrimWhiteSpaceAndNull_m1AA39FDE34A7E62968210EB57ED3996531C5A6A7 (String_t* ___value0, const RuntimeMethod* method);
// System.Char System.String::get_Chars(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70 (String_t* __this, int32_t ___index0, const RuntimeMethod* method);
// System.Boolean System.Char::IsWhiteSpace(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsWhiteSpace_m99A5E1BE1EB9F17EA530A67A607DA8C260BCBF99 (Il2CppChar ___c0, const RuntimeMethod* method);
// System.String System.String::Substring(System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Substring_m7A39A2AC0893AE940CF4CEC841326D56FFB9D86B (String_t* __this, int32_t ___startIndex0, int32_t ___length1, const RuntimeMethod* method);
// System.TypeCode System.Boolean::GetTypeCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Boolean_GetTypeCode_m5D0F757874F7404CB4B9F9438A8BD39E1CF2C3CD (bool* __this, const RuntimeMethod* method);
// System.Boolean System.Boolean::System.IConvertible.ToBoolean(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Boolean_System_IConvertible_ToBoolean_m7313BC39CCF5E5D78C49C7470CE0F722CB89DF86 (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.Void System.InvalidCastException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidCastException__ctor_m50103CBF0C211B93BF46697875413A10B5A5C5A3 (InvalidCastException_tD99F9FF94C3859C78E90F68C2F77A1558BCAF463 * __this, String_t* ___message0, const RuntimeMethod* method);
// System.Char System.Boolean::System.IConvertible.ToChar(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Boolean_System_IConvertible_ToChar_mDDAD1B8CC0FFA74E6B61BB2FA2B46603B40BEE7D (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.SByte System.Convert::ToSByte(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Convert_ToSByte_mFAFBF33EE73F48B362BD3AC239899962A1AE81F0 (bool ___value0, const RuntimeMethod* method);
// System.SByte System.Boolean::System.IConvertible.ToSByte(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Boolean_System_IConvertible_ToSByte_m0D219BD8488041CD67BC520A9B9565BC0EEE996A (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.Byte System.Convert::ToByte(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Convert_ToByte_m85B5A8C973A43E62BF581A0F9569EA3A6ED12AE2 (bool ___value0, const RuntimeMethod* method);
// System.Byte System.Boolean::System.IConvertible.ToByte(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Boolean_System_IConvertible_ToByte_mB7A1A4E6188A7A7FB89D4EFB148F1E072CE7F847 (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.Int16 System.Convert::ToInt16(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Convert_ToInt16_m1B981EA74F17780D6732A6D8CE9C811297D4EF7C (bool ___value0, const RuntimeMethod* method);
// System.Int16 System.Boolean::System.IConvertible.ToInt16(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Boolean_System_IConvertible_ToInt16_mB5EE0D6EFAEBD04029452AF72D64DEC8941F3998 (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.UInt16 System.Convert::ToUInt16(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Convert_ToUInt16_mA942A45162BE2BCB2E470174D6696AD7590E20DC (bool ___value0, const RuntimeMethod* method);
// System.UInt16 System.Boolean::System.IConvertible.ToUInt16(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Boolean_System_IConvertible_ToUInt16_m0223D3C77451F88509880E7EEF89B7B25B12491F (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.Int32 System.Convert::ToInt32(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Convert_ToInt32_m3B3C332A65A7F38D6DDF1A1D0ED511C701F67CD3 (bool ___value0, const RuntimeMethod* method);
// System.Int32 System.Boolean::System.IConvertible.ToInt32(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Boolean_System_IConvertible_ToInt32_m3B5AB9AC8DBE1DE73D26A3F3A271A557E93E4238 (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.UInt32 System.Convert::ToUInt32(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Convert_ToUInt32_mF790134D2BBE7C64241E4B398D82AFFE64B08DF3 (bool ___value0, const RuntimeMethod* method);
// System.UInt32 System.Boolean::System.IConvertible.ToUInt32(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Boolean_System_IConvertible_ToUInt32_mE15AF9B02F6CC44A449722CCE44D36F6D94BEC64 (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.Int64 System.Convert::ToInt64(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Convert_ToInt64_mAE67CA7F08203845264C2D0863E8791DDCD3D1B8 (bool ___value0, const RuntimeMethod* method);
// System.Int64 System.Boolean::System.IConvertible.ToInt64(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Boolean_System_IConvertible_ToInt64_mD3F07E40FFAAA9A418FBB4B5B30D8830DEA895C0 (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.UInt64 System.Convert::ToUInt64(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Convert_ToUInt64_mF48D6D19E7A231DEDA8EA62F6A53F1A7C1588EB5 (bool ___value0, const RuntimeMethod* method);
// System.UInt64 System.Boolean::System.IConvertible.ToUInt64(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Boolean_System_IConvertible_ToUInt64_m61E7A3015BF2A1022FFDBE84DBFC1D1C326D7FBF (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.Single System.Convert::ToSingle(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Convert_ToSingle_mA19B0A63304F0C4403C7FCE6D3A40DDCA02654C7 (bool ___value0, const RuntimeMethod* method);
// System.Single System.Boolean::System.IConvertible.ToSingle(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Boolean_System_IConvertible_ToSingle_mA1C9849DA7D8F1C1D2CAFBF734408736DB2F5B47 (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.Double System.Convert::ToDouble(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Convert_ToDouble_m6EBFE4057CF2D18D45257420BE672E4B661E3AB0 (bool ___value0, const RuntimeMethod* method);
// System.Double System.Boolean::System.IConvertible.ToDouble(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Boolean_System_IConvertible_ToDouble_m8B086B2929A6009B43536C10870CEBA742692DDF (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.Decimal System.Convert::ToDecimal(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 Convert_ToDecimal_m29A10B7D55562958086D3EE18D68331A5D4C388C (bool ___value0, const RuntimeMethod* method);
// System.Decimal System.Boolean::System.IConvertible.ToDecimal(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 Boolean_System_IConvertible_ToDecimal_m8B92ED67C5506D85919E851FE00081BDF9AFF5B9 (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.DateTime System.Boolean::System.IConvertible.ToDateTime(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 Boolean_System_IConvertible_ToDateTime_m688708C8A8763452E59304B46B17B11DB890EB0F (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.Object System.Convert::DefaultToType(System.IConvertible,System.Type,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Convert_DefaultToType_m49730E740820DF7AA76C18ACF700FA3635AFBC33 (RuntimeObject* ___value0, Type_t * ___targetType1, RuntimeObject* ___provider2, const RuntimeMethod* method);
// System.Object System.Boolean::System.IConvertible.ToType(System.Type,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Boolean_System_IConvertible_ToType_m4EFEE2404DA10542ECC1DFEFCED61F0625012017 (bool* __this, Type_t * ___type0, RuntimeObject* ___provider1, const RuntimeMethod* method);
// System.Void System.Text.StringBuilder::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder__ctor_m5A81DE19E748F748E19FF13FB6FFD2547F9212D9 (StringBuilder_t * __this, const RuntimeMethod* method);
// System.Text.StringBuilder System.Text.StringBuilder::Append(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Append_m1ADA3C16E40BF253BCDB5F9579B4DBA9C3E5B22E (StringBuilder_t * __this, Il2CppChar ___value0, const RuntimeMethod* method);
// System.Int32 System.Text.StringBuilder::get_Length()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t StringBuilder_get_Length_m680500263C59ACFD9582BF2AEEED8E92C87FF5C0 (StringBuilder_t * __this, const RuntimeMethod* method);
// System.Char System.Globalization.Bootstring::EncodeDigit(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Bootstring_EncodeDigit_mF82546A5EA55C33C503F45B7908E225EFB76AE16 (Bootstring_t39E09D4C4B98FECD2C042751FA27A6FA98BB3882 * __this, int32_t ___d0, const RuntimeMethod* method);
// System.Int32 System.Globalization.Bootstring::Adapt(System.Int32,System.Int32,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Bootstring_Adapt_m9194E21FF06AFE54BC6735E5BDA2ACDBCB72591C (Bootstring_t39E09D4C4B98FECD2C042751FA27A6FA98BB3882 * __this, int32_t ___delta0, int32_t ___numPoints1, bool ___firstTime2, const RuntimeMethod* method);
// System.Text.StringBuilder System.Text.StringBuilder::Append(System.String,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Append_mB0253AA6494BFCC6EA6E5FA343D0DAE6F58CBD17 (StringBuilder_t * __this, String_t* ___value0, int32_t ___startIndex1, int32_t ___count2, const RuntimeMethod* method);
// System.Int32 System.Globalization.Bootstring::DecodeDigit(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Bootstring_DecodeDigit_mE9F8F2B5C647361361139BC6C92964E7D56DFAA1 (Bootstring_t39E09D4C4B98FECD2C042751FA27A6FA98BB3882 * __this, Il2CppChar ___c0, const RuntimeMethod* method);
// System.String System.String::Format(System.String,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_mB3D38E5238C3164DB4D7D29339D9E225A4496D17 (String_t* ___format0, RuntimeObject * ___arg01, const RuntimeMethod* method);
// System.Text.StringBuilder System.Text.StringBuilder::Insert(System.Int32,System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Insert_m61BB1B6FAF08B662E8D676B844A88AD7C6B0749B (StringBuilder_t * __this, int32_t ___index0, Il2CppChar ___value1, const RuntimeMethod* method);
// System.Void System.Buffer::Memcpy(System.Byte*,System.Byte*,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Buffer_Memcpy_m67752CDFBB079C42EFA9EBA2BB9A0C96DFAA2178 (uint8_t* ___dest0, uint8_t* ___src1, int32_t ___size2, const RuntimeMethod* method);
// System.Int32 System.Buffer::_ByteLength(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Buffer__ByteLength_m39CDA1E4878C67B50CE442C3B9825E38DFC20635 (RuntimeArray * ___array0, const RuntimeMethod* method);
// System.String Locale::GetText(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Locale_GetText_mF8FE147379A36330B41A5D5E2CAD23C18931E66E (String_t* ___msg0, const RuntimeMethod* method);
// System.Boolean System.Buffer::InternalBlockCopy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Buffer_InternalBlockCopy_m94DD8A8B32A9A8A468D3764694A3694979857B97 (RuntimeArray * ___src0, int32_t ___srcOffsetBytes1, RuntimeArray * ___dst2, int32_t ___dstOffsetBytes3, int32_t ___byteCount4, const RuntimeMethod* method);
// System.Int32 System.Buffer::ByteLength(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Buffer_ByteLength_m3E1127D2C9E1B9CD61A1A6109CC2A9B934595145 (RuntimeArray * ___array0, const RuntimeMethod* method);
// System.Void System.Buffer::memcpy1(System.Byte*,System.Byte*,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Buffer_memcpy1_m3DBB7CD4E42A1F1A770831C63361A2036C777818 (uint8_t* ___dest0, uint8_t* ___src1, int32_t ___size2, const RuntimeMethod* method);
// System.Void System.Buffer::memcpy2(System.Byte*,System.Byte*,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Buffer_memcpy2_m8BEDA0C1DF0A4CF4FB24921783DD924433E93D72 (uint8_t* ___dest0, uint8_t* ___src1, int32_t ___size2, const RuntimeMethod* method);
// System.Void System.Buffer::memcpy4(System.Byte*,System.Byte*,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Buffer_memcpy4_m287A8DFFFE0661702473AEBA0FCA7353C2D0A0DF (uint8_t* ___dest0, uint8_t* ___src1, int32_t ___size2, const RuntimeMethod* method);
// System.Int32 System.Byte::CompareTo(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Byte_CompareTo_m1414E6ED844263883C709284E6429F2EC069F80A (uint8_t* __this, RuntimeObject * ___value0, const RuntimeMethod* method);
// System.Int32 System.Byte::CompareTo(System.Byte)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Byte_CompareTo_m9B9F61F5B96CED94E4848B71CECBF02F495BDB88 (uint8_t* __this, uint8_t ___value0, const RuntimeMethod* method);
// System.Boolean System.Byte::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Byte_Equals_m72418F27E0B518A3ACD4FECB57D72DF94050E3E3 (uint8_t* __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Boolean System.Byte::Equals(System.Byte)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Byte_Equals_m3D534F7DB712996FA3FAFF751AB20E684FB82C25 (uint8_t* __this, uint8_t ___obj0, const RuntimeMethod* method);
// System.Int32 System.Byte::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Byte_GetHashCode_m5111B9229C948E0B734597AED742936F9542E093 (uint8_t* __this, const RuntimeMethod* method);
// System.Globalization.NumberFormatInfo System.Globalization.NumberFormatInfo::GetInstance(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D * NumberFormatInfo_GetInstance_mE5108A48B8BFDB2158C05951FACC08AFB09FDDBB (RuntimeObject* ___formatProvider0, const RuntimeMethod* method);
// System.Byte System.Byte::Parse(System.String,System.Globalization.NumberStyles,System.Globalization.NumberFormatInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Byte_Parse_m297D79335F7F52332DC9DBD98717572BEEF2EF57 (String_t* ___s0, int32_t ___style1, NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D * ___info2, const RuntimeMethod* method);
// System.Void System.Globalization.NumberFormatInfo::ValidateParseStyleInteger(System.Globalization.NumberStyles)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NumberFormatInfo_ValidateParseStyleInteger_m2F6A102AFBCE26335E7C07F94750C873F10D55A7 (int32_t ___style0, const RuntimeMethod* method);
// System.Int32 System.Number::ParseInt32(System.String,System.Globalization.NumberStyles,System.Globalization.NumberFormatInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Number_ParseInt32_m67FA76779A3883D6D300D36BB6A3A6F4FFEC3CE3 (String_t* ___s0, int32_t ___style1, NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D * ___info2, const RuntimeMethod* method);
// System.Void System.OverflowException::.ctor(System.String,System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OverflowException__ctor_m62DFEF0935D57F14700A3C14A56C84D1D1D53A14 (OverflowException_tD1FBF4E54D81EC98EEF386B69344D336D1EC1AB9 * __this, String_t* ___message0, Exception_t * ___innerException1, const RuntimeMethod* method);
// System.Void System.OverflowException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OverflowException__ctor_m93384109E3514E1EB7F97A50893B1B617D21F91E (OverflowException_tD1FBF4E54D81EC98EEF386B69344D336D1EC1AB9 * __this, String_t* ___message0, const RuntimeMethod* method);
// System.Globalization.NumberFormatInfo System.Globalization.NumberFormatInfo::get_CurrentInfo()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D * NumberFormatInfo_get_CurrentInfo_m604B9BFDE58530F94955E0EF1A523D37EA87DF02 (const RuntimeMethod* method);
// System.String System.Number::FormatInt32(System.Int32,System.String,System.Globalization.NumberFormatInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Number_FormatInt32_mB25A4FE32FC8EA81F3005FF03607E2BCD75EDE54 (int32_t ___value0, String_t* ___format1, NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D * ___info2, const RuntimeMethod* method);
// System.String System.Byte::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Byte_ToString_m6A11C71EB9B8031596645EA1A4C2430721B282B5 (uint8_t* __this, const RuntimeMethod* method);
// System.String System.Byte::ToString(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Byte_ToString_mABEF6F24915951FF4A4D87B389D8418B2638178C (uint8_t* __this, String_t* ___format0, const RuntimeMethod* method);
// System.String System.Byte::ToString(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Byte_ToString_m104307B82FDCE07CA77D54B60A5D88786E5BB09D (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.String System.Byte::ToString(System.String,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Byte_ToString_mB5BDCB74BE861E9EB085AAFBE115998B632CEFA8 (uint8_t* __this, String_t* ___format0, RuntimeObject* ___provider1, const RuntimeMethod* method);
// System.TypeCode System.Byte::GetTypeCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Byte_GetTypeCode_m6999CFE290E3DE24C332B4BFEE6E2E54882D520E (uint8_t* __this, const RuntimeMethod* method);
// System.Boolean System.Convert::ToBoolean(System.Byte)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Convert_ToBoolean_m83B4278D702402F63D808E7D2B25B676DD86C75F (uint8_t ___value0, const RuntimeMethod* method);
// System.Boolean System.Byte::System.IConvertible.ToBoolean(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Byte_System_IConvertible_ToBoolean_m65AF04FD574177D1C994B8C21F1FA98415D9F86E (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.Char System.Convert::ToChar(System.Byte)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Convert_ToChar_m0297A5A45E62248BD758586475042968A2DCECE7 (uint8_t ___value0, const RuntimeMethod* method);
// System.Char System.Byte::System.IConvertible.ToChar(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Byte_System_IConvertible_ToChar_m680D41A50B3622DC4AE8F2BC632B721DF8536B28 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.SByte System.Convert::ToSByte(System.Byte)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Convert_ToSByte_m88E88345776937CF7FA00D58EC89E85445CF6F64 (uint8_t ___value0, const RuntimeMethod* method);
// System.SByte System.Byte::System.IConvertible.ToSByte(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Byte_System_IConvertible_ToSByte_m4A779331F7CD6055768AA56D4E95A8E41CFA50CB (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.Byte System.Byte::System.IConvertible.ToByte(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Byte_System_IConvertible_ToByte_m1F1A7B7CEAAF55C77F0CA5C60503834CC12569CA (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.Int16 System.Convert::ToInt16(System.Byte)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Convert_ToInt16_mAB094F77E865F177DC22C5B7A890A431114EB0F7 (uint8_t ___value0, const RuntimeMethod* method);
// System.Int16 System.Byte::System.IConvertible.ToInt16(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Byte_System_IConvertible_ToInt16_m134A951FF6D7DA4EECC86CB702A8B4DB2ADADDC8 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.UInt16 System.Convert::ToUInt16(System.Byte)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Convert_ToUInt16_m1D3CF6289026118B455490A549A72CFFA7E760A4 (uint8_t ___value0, const RuntimeMethod* method);
// System.UInt16 System.Byte::System.IConvertible.ToUInt16(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Byte_System_IConvertible_ToUInt16_mCE446BE1A404904AEFD1DAB2706A4AF355186299 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.Int32 System.Convert::ToInt32(System.Byte)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Convert_ToInt32_m16B237FA188F31A702DA81BB98674A35EF58AE55 (uint8_t ___value0, const RuntimeMethod* method);
// System.Int32 System.Byte::System.IConvertible.ToInt32(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Byte_System_IConvertible_ToInt32_m56A786C5BB3125C5C8ADAA2C40F28421959FBEB0 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.UInt32 System.Convert::ToUInt32(System.Byte)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Convert_ToUInt32_mEEC7840C89CE870AC02BE1C8D79F0A9D8423B15B (uint8_t ___value0, const RuntimeMethod* method);
// System.UInt32 System.Byte::System.IConvertible.ToUInt32(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Byte_System_IConvertible_ToUInt32_m2D1C50FE2959C26DA3FA56BE5D91778B06F172C0 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.Int64 System.Convert::ToInt64(System.Byte)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Convert_ToInt64_mBD45B072725DA0FC2B4DC35B90C49B7607AEF786 (uint8_t ___value0, const RuntimeMethod* method);
// System.Int64 System.Byte::System.IConvertible.ToInt64(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Byte_System_IConvertible_ToInt64_m79BB20D0471F008EEFA00F72C560EF92BE8AB6BF (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.UInt64 System.Convert::ToUInt64(System.Byte)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Convert_ToUInt64_m37B61A58D0E28B330FBEB2DBABBAB5973F68114A (uint8_t ___value0, const RuntimeMethod* method);
// System.UInt64 System.Byte::System.IConvertible.ToUInt64(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Byte_System_IConvertible_ToUInt64_mD29B4938670EA99ADE6DCA11ADA0E57EA9D5CEC7 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.Single System.Convert::ToSingle(System.Byte)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Convert_ToSingle_m2A17E47670A0161319BE3E327A9269407B393321 (uint8_t ___value0, const RuntimeMethod* method);
// System.Single System.Byte::System.IConvertible.ToSingle(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Byte_System_IConvertible_ToSingle_m5C04949AD8A80B18C9FF7895CB6DD9BD4ABF07CB (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.Double System.Convert::ToDouble(System.Byte)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Convert_ToDouble_m5E679F5FC59DBBB75860248459C3CE96638F9D6D (uint8_t ___value0, const RuntimeMethod* method);
// System.Double System.Byte::System.IConvertible.ToDouble(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Byte_System_IConvertible_ToDouble_mAF1EAA014190ACF0A646AEE270FC1BFAF28F20A7 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.Decimal System.Convert::ToDecimal(System.Byte)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 Convert_ToDecimal_mE68EDBB62A7C808F042AB5BD365BE6B6186C26C1 (uint8_t ___value0, const RuntimeMethod* method);
// System.Decimal System.Byte::System.IConvertible.ToDecimal(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 Byte_System_IConvertible_ToDecimal_m765A4B2CA3E36C5F601BDD1E3A7917833E5A129E (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.DateTime System.Byte::System.IConvertible.ToDateTime(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 Byte_System_IConvertible_ToDateTime_m6B4FC95C76E2ADF6C56983B7A80AC4E1FF60A272 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.Object System.Byte::System.IConvertible.ToType(System.Type,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Byte_System_IConvertible_ToType_mFADA0D226622C4FFF53B4D3AED98D6424AB17512 (uint8_t* __this, Type_t * ___type0, RuntimeObject* ___provider1, const RuntimeMethod* method);
// System.Int32 System.Buffer::IndexOfByte(System.Byte*,System.Byte,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Buffer_IndexOfByte_m0D3A92C2B7270C1D742085F55EA7AF5FF056DB4A (uint8_t* ___src0, uint8_t ___value1, int32_t ___index2, int32_t ___count3, const RuntimeMethod* method);
// System.Type System.Object::GetType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B (RuntimeObject * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.EqualityComparer`1<System.Byte>::.ctor()
inline void EqualityComparer_1__ctor_m9E058C5D324E26AC7D53998B987EA6ED826103CA (EqualityComparer_1_t315BFEDB969101238C563049FF00D5CB9F8D6509 * __this, const RuntimeMethod* method)
{
(( void (*) (EqualityComparer_1_t315BFEDB969101238C563049FF00D5CB9F8D6509 *, const RuntimeMethod*))EqualityComparer_1__ctor_m9E058C5D324E26AC7D53998B987EA6ED826103CA_gshared)(__this, method);
}
// System.Void System.Collections.Hashtable::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable__ctor_m2D9C25FB57ACD33B0DF8391D38A165975A1D9A91 (Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * __this, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Messaging.CADMethodRef::.ctor(System.Runtime.Remoting.Messaging.IMethodMessage)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CADMethodRef__ctor_m2D3C6DF9E27DDA1BECEA81507C84F88115F63031 (CADMethodRef_t9626FF46E076B15F71F14133E3FE884F10F50DD2 * __this, RuntimeObject* ___msg0, const RuntimeMethod* method);
// System.IO.MemoryStream System.Runtime.Remoting.Channels.CADSerializer::SerializeObject(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * CADSerializer_SerializeObject_mBA7285ACB82A1106EBBE97C1BE670C810496BF97 (RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Object System.Runtime.Remoting.Channels.CADSerializer::DeserializeObjectSafe(System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * CADSerializer_DeserializeObjectSafe_m6F6060CB4855A2B7A9DD8067DD592F520529E499 (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___mem0, const RuntimeMethod* method);
// System.Reflection.MethodBase System.Runtime.Remoting.Messaging.CADMethodRef::Resolve()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodBase_t * CADMethodRef_Resolve_m08B2A1D9A1A5962F44D506E9AD67DE5AE7224427 (CADMethodRef_t9626FF46E076B15F71F14133E3FE884F10F50DD2 * __this, const RuntimeMethod* method);
// System.Boolean System.Runtime.Remoting.Messaging.MessageDictionary::HasUserData()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MessageDictionary_HasUserData_m341FC5483C6D6D4A1ED91EAB2AD71EE3557EAAE2 (MessageDictionary_tF87E1D8408337642172945A13C9C116D7F9336BE * __this, const RuntimeMethod* method);
// System.Collections.IDictionary System.Runtime.Remoting.Messaging.MessageDictionary::get_InternalDictionary()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* MessageDictionary_get_InternalDictionary_m470019EF42913C519215175446BE63F61AD1A10E (MessageDictionary_tF87E1D8408337642172945A13C9C116D7F9336BE * __this, const RuntimeMethod* method);
// System.Void System.Collections.ArrayList::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayList__ctor_m6847CFECD6BDC2AD10A4AC9852A572B88B8D6B1B (ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * __this, const RuntimeMethod* method);
// System.Object System.Collections.DictionaryEntry::get_Key()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * DictionaryEntry_get_Key_m9A53AE1FA4CA017F0A7353F71658A9C36079E1D7_inline (DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 * __this, const RuntimeMethod* method);
// System.Object System.Collections.DictionaryEntry::get_Value()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * DictionaryEntry_get_Value_m2D618D04C0A8EA2A065B171F528FEA98B059F9BC_inline (DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 * __this, const RuntimeMethod* method);
// System.Boolean System.Type::get_IsPrimitive()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_get_IsPrimitive_m43E50D507C45CE3BD51C0DC07C8AB061AFD6B3C3 (Type_t * __this, const RuntimeMethod* method);
// System.Type System.Type::GetTypeFromHandle(System.RuntimeTypeHandle)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E (RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 ___handle0, const RuntimeMethod* method);
// System.Boolean System.Type::op_Equality(System.Type,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046 (Type_t * ___left0, Type_t * ___right1, const RuntimeMethod* method);
// System.Boolean System.Type::get_IsArray()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_get_IsArray_m15FE83DD8FAF090F9BDA924753C7750AAEA7CFD1 (Type_t * __this, const RuntimeMethod* method);
// System.Int32 System.Array::get_Rank()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_get_Rank_mE9E4804EA433AA2265F9D9CA3B1B5082ECD757D0 (RuntimeArray * __this, const RuntimeMethod* method);
// System.Boolean System.Runtime.Remoting.Messaging.CADMessageBase::IsPossibleToIgnoreMarshal(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CADMessageBase_IsPossibleToIgnoreMarshal_mC2BD0ADF8B42412F3DD53E6E160C70E46EE94753 (RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Boolean System.Runtime.Remoting.RemotingServices::IsTransparentProxy(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RemotingServices_IsTransparentProxy_m8BDBC7A18E514FD324215096D24234147C78897C (RuntimeObject * ___proxy0, const RuntimeMethod* method);
// System.Runtime.Remoting.ObjRef System.Runtime.Remoting.RemotingServices::Marshal(System.MarshalByRefObject)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjRef_t10D53E2178851535F38935DC53B48634063C84D3 * RemotingServices_Marshal_m3EC297B94FB66EB0363FD380750AC1B40A29015C (MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8 * ___Obj0, const RuntimeMethod* method);
// System.Int32 System.Threading.Thread::GetDomainID()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Thread_GetDomainID_m90D6EA77161CF32BB05DE69B11ADAC42AD36F8A8 (const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Messaging.CADObjRef::.ctor(System.Runtime.Remoting.ObjRef,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CADObjRef__ctor_mB9FFF5A8CB955CCBAF1E4A3B87138A811B053D52 (CADObjRef_tEBB48EB2D43F3C2012DFF53EC552B784A5FAA0FC * __this, ObjRef_t10D53E2178851535F38935DC53B48634063C84D3 * ___o0, int32_t ___sourceDomain1, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Messaging.CADArgHolder::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CADArgHolder__ctor_mF3CA12A631FF485AD30F83AAA07615E9753F4F0B (CADArgHolder_tF834CE7AC93B38AABC332460CBAB127B82A9389E * __this, int32_t ___i0, const RuntimeMethod* method);
// System.Runtime.Remoting.ObjRef System.Runtime.Remoting.ObjRef::DeserializeInTheCurrentDomain(System.Int32,System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjRef_t10D53E2178851535F38935DC53B48634063C84D3 * ObjRef_DeserializeInTheCurrentDomain_m0AAC38F760FE0140488342DB5FB60D4F0575F90B (ObjRef_t10D53E2178851535F38935DC53B48634063C84D3 * __this, int32_t ___domainId0, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___tInfo1, const RuntimeMethod* method);
// System.Object System.Runtime.Remoting.RemotingServices::Unmarshal(System.Runtime.Remoting.ObjRef)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * RemotingServices_Unmarshal_m8FB45EA51B7CD1D176A17E9C8A882AA397AFA9A7 (ObjRef_t10D53E2178851535F38935DC53B48634063C84D3 * ___objectRef0, const RuntimeMethod* method);
// System.TypeCode System.Type::GetTypeCode(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Type_GetTypeCode_m25B2ADC2D68FE33486DE032926C6B1EECC8D73CE (Type_t * ___type0, const RuntimeMethod* method);
// System.Int32 System.Array::get_Length()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_get_Length_m12B3E61F1BF9880AB252640D69269B49665C0A10 (RuntimeArray * __this, const RuntimeMethod* method);
// System.Void System.NotSupportedException::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NotSupportedException__ctor_m3EA81A5B209A87C3ADA47443F2AFFF735E5256EE (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * __this, const RuntimeMethod* method);
// System.Void System.Array::CopyTo(System.Array,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_CopyTo_m6AF950973942E09BAB1F21B055BBD2CD58C980B2 (RuntimeArray * __this, RuntimeArray * ___array0, int32_t ___index1, const RuntimeMethod* method);
// System.String System.String::Copy(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Copy_m1F20BA801D1E14D45A1D16DC1647450175F311BC (String_t* ___str0, const RuntimeMethod* method);
// System.Int64 System.DateTime::get_Ticks()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t DateTime_get_Ticks_m175EDB41A50DB06872CC48CAB603FEBD1DFF46A9 (DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * __this, const RuntimeMethod* method);
// System.Void System.DateTime::.ctor(System.Int64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DateTime__ctor_m14D7C60472AE477F824F8BEE8830C5F5D4FCA16A (DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * __this, int64_t ___ticks0, const RuntimeMethod* method);
// System.Int64 System.TimeSpan::get_Ticks()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t TimeSpan_get_Ticks_mE4C9E1F27DC794028CEDCF7CB5BD092D16DBACD4_inline (TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * __this, const RuntimeMethod* method);
// System.Void System.TimeSpan::.ctor(System.Int64)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TimeSpan__ctor_mC80FA729ECA3A7AF31D9F517A95E60FC23EB86B0_inline (TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * __this, int64_t ___ticks0, const RuntimeMethod* method);
// System.String System.String::Concat(System.Object,System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_mFCF5F98D38F99DE7C831CBB9A1BAAAB148FC7D57 (RuntimeObject * ___arg00, RuntimeObject * ___arg11, RuntimeObject * ___arg22, const RuntimeMethod* method);
// System.Void System.NotSupportedException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90 (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * __this, String_t* ___message0, const RuntimeMethod* method);
// System.Object System.Runtime.Remoting.Messaging.CADMessageBase::MarshalArgument(System.Object,System.Collections.ArrayList&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * CADMessageBase_MarshalArgument_mA736DAF24AD049845F6C26A423A7D27E96E0C76A (CADMessageBase_t78A590A87FD9362D67AAD58A88C4062CA0A105C7 * __this, RuntimeObject * ___arg0, ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 ** ___args1, const RuntimeMethod* method);
// System.Object System.Runtime.Remoting.Messaging.CADMessageBase::UnmarshalArgument(System.Object,System.Collections.ArrayList)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * CADMessageBase_UnmarshalArgument_m51C7B602E843310F532F75E00EE2EA75EF2B0EEE (CADMessageBase_t78A590A87FD9362D67AAD58A88C4062CA0A105C7 * __this, RuntimeObject * ___arg0, ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * ___args1, const RuntimeMethod* method);
// System.Boolean System.Runtime.Remoting.Messaging.LogicalCallContext::get_HasInfo()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool LogicalCallContext_get_HasInfo_m672F8CB7E00BB2C3022944D1032566098BA63DCA (LogicalCallContext_tB537C2A13F19FCC7EBC74757A415F2CA5C8FA1C3 * __this, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Messaging.CADMethodCallMessage::.ctor(System.Runtime.Remoting.Messaging.IMethodCallMessage)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CADMethodCallMessage__ctor_m811D56C92BEAFBAB0FD2033FB74037F7CFF3B6BE (CADMethodCallMessage_t57296ECCBF254F676C852CB37D8A35782059F906 * __this, RuntimeObject* ___callMsg0, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Messaging.CADMessageBase::.ctor(System.Runtime.Remoting.Messaging.IMethodMessage)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CADMessageBase__ctor_m71F0E8FFDF6EB2572A4C2382FDE2646D6E2C793D (CADMessageBase_t78A590A87FD9362D67AAD58A88C4062CA0A105C7 * __this, RuntimeObject* ___msg0, const RuntimeMethod* method);
// System.Int32 System.Runtime.Remoting.Messaging.CADMessageBase::MarshalProperties(System.Collections.IDictionary,System.Collections.ArrayList&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CADMessageBase_MarshalProperties_m2BCADE033725E722DCAAD23EFEEB49009465DA71 (RuntimeObject* ___dict0, ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 ** ___args1, const RuntimeMethod* method);
// System.Object[] System.Runtime.Remoting.Messaging.CADMessageBase::MarshalArguments(System.Object[],System.Collections.ArrayList&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* CADMessageBase_MarshalArguments_m6C8DC3BDDDABA29BD29C5BD8E77B3392AFAE8B61 (CADMessageBase_t78A590A87FD9362D67AAD58A88C4062CA0A105C7 * __this, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___arguments0, ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 ** ___args1, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Messaging.CADMessageBase::SaveLogicalCallContext(System.Runtime.Remoting.Messaging.IMethodMessage,System.Collections.ArrayList&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CADMessageBase_SaveLogicalCallContext_m51A5FFCA892096B57F8250CB578B6F3CF780325B (CADMessageBase_t78A590A87FD9362D67AAD58A88C4062CA0A105C7 * __this, RuntimeObject* ___msg0, ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 ** ___serializeList1, const RuntimeMethod* method);
// System.Void System.IO.MemoryStream::.ctor(System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemoryStream__ctor_m3E041ADD3DB7EA42E7DB56FE862097819C02B9C2 (MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___buffer0, const RuntimeMethod* method);
// System.Object System.Runtime.Remoting.Channels.CADSerializer::DeserializeObject(System.IO.MemoryStream)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * CADSerializer_DeserializeObject_mE789D2C1B31F27E5232031ED028CDF20088DFABB (MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * ___mem0, const RuntimeMethod* method);
// System.Void System.Collections.ArrayList::.ctor(System.Collections.ICollection)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayList__ctor_m77974C35DD788BA972324A11F57EAD56BE36A035 (ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * __this, RuntimeObject* ___c0, const RuntimeMethod* method);
// System.Object[] System.Runtime.Remoting.Messaging.CADMessageBase::UnmarshalArguments(System.Object[],System.Collections.ArrayList)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* CADMessageBase_UnmarshalArguments_mB203B887D7331D5213A510DF0F25EB7FFF683464 (CADMessageBase_t78A590A87FD9362D67AAD58A88C4062CA0A105C7 * __this, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___arguments0, ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * ___args1, const RuntimeMethod* method);
// System.Type[] System.Runtime.Remoting.Messaging.CADMethodRef::GetTypes(System.String[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* CADMethodRef_GetTypes_mF8A1196B363CD160B1D0A1F1AA8DF1CA3578FDA4 (CADMethodRef_t9626FF46E076B15F71F14133E3FE884F10F50DD2 * __this, StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___typeArray0, const RuntimeMethod* method);
// System.Reflection.ConstructorInfo System.Type::GetConstructor(System.Reflection.BindingFlags,System.Reflection.Binder,System.Type[],System.Reflection.ParameterModifier[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstructorInfo_t449AEC508DCA508EE46784C4F2716545488ACD5B * Type_GetConstructor_m7D94831F070BECE7BECDAEAFB024981CCC4E03CE (Type_t * __this, int32_t ___bindingAttr0, Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 * ___binder1, TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* ___types2, ParameterModifierU5BU5D_tFF6F73F1CFE837331D6AAA11CC78CE5D9B5F0A2B* ___modifiers3, const RuntimeMethod* method);
// System.Reflection.MethodInfo System.Type::GetMethod(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Type[],System.Reflection.ParameterModifier[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t * Type_GetMethod_m69EE86B5A87244C925333CCF1B6D6B9BCFED8A89 (Type_t * __this, String_t* ___name0, int32_t ___bindingAttr1, Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 * ___binder2, TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* ___types3, ParameterModifierU5BU5D_tFF6F73F1CFE837331D6AAA11CC78CE5D9B5F0A2B* ___modifiers4, const RuntimeMethod* method);
// System.Boolean System.Reflection.MethodBase::op_Inequality(System.Reflection.MethodBase,System.Reflection.MethodBase)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MethodBase_op_Inequality_m43FB6861A2B47B543F0C57873C23974FF42723F6 (MethodBase_t * ___left0, MethodBase_t * ___right1, const RuntimeMethod* method);
// System.Boolean System.Reflection.MethodBase::op_Equality(System.Reflection.MethodBase,System.Reflection.MethodBase)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MethodBase_op_Equality_mE51D1B8866596BB4F10236536444F5923A21DFD4 (MethodBase_t * ___left0, MethodBase_t * ___right1, const RuntimeMethod* method);
// System.Reflection.MethodInfo[] System.Type::GetMethods()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfoU5BU5D_t86AA7E1AF11D62BAE3189F25907B252596FA627E* Type_GetMethods_m5412C161832F16B9CFE8F201F72E11AF0C61D91C (Type_t * __this, const RuntimeMethod* method);
// System.Boolean System.String::op_Inequality(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_op_Inequality_mDDA2DDED3E7EF042987EB7180EE3E88105F0AAE2 (String_t* ___a0, String_t* ___b1, const RuntimeMethod* method);
// System.String System.String::Format(System.String,System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_m8D1CB0410C35E052A53AE957C914C841E54BAB66 (String_t* ___format0, RuntimeObject * ___arg01, RuntimeObject * ___arg12, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.RemotingException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RemotingException__ctor_m9D41822220B296C09BE7175E8C2D6F65C195F4E9 (RemotingException_tEFFC0A283D7F4169F5481926B7FF6C2EB8C76F1B * __this, String_t* ___message0, const RuntimeMethod* method);
// System.Boolean System.Reflection.MethodBase::get_IsConstructor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MethodBase_get_IsConstructor_m953B470BF9EB07E4C58E43983D6EB3CD872DC715 (MethodBase_t * __this, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Messaging.CADMethodReturnMessage::.ctor(System.Runtime.Remoting.Messaging.IMethodReturnMessage)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CADMethodReturnMessage__ctor_m7BE55A80B393E42A3B6E9C35D84BD924CAE52B87 (CADMethodReturnMessage_t875AA26C474A6CC70596D42E9D74006BCC86A272 * __this, RuntimeObject* ___retMsg0, const RuntimeMethod* method);
// System.Reflection.MethodBase System.Runtime.Remoting.Messaging.CADMessageBase::GetMethod()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodBase_t * CADMessageBase_GetMethod_mFC803AAB2D1BB231A44C1BDDFDB8E1FDBB221D81 (CADMessageBase_t78A590A87FD9362D67AAD58A88C4062CA0A105C7 * __this, const RuntimeMethod* method);
// System.Type[] System.Runtime.Remoting.Messaging.CADMessageBase::GetSignature(System.Reflection.MethodBase,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* CADMessageBase_GetSignature_mFB8E3BF0F46A201A285933187CDF859176B3ABE4 (MethodBase_t * ___methodBase0, bool ___load1, const RuntimeMethod* method);
// System.Byte[] System.Runtime.Remoting.ObjRef::SerializeType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ObjRef_SerializeType_mD2B0D47321EA188DED31AC265CE3AE15F09D1D91 (ObjRef_t10D53E2178851535F38935DC53B48634063C84D3 * __this, const RuntimeMethod* method);
// System.Void System.IO.MemoryStream::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemoryStream__ctor_mD27B3DF2400D46A4A81EE78B0BD2C29EFCFAA44F (MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * __this, const RuntimeMethod* method);
// System.Void System.Runtime.Serialization.Formatters.Binary.BinaryFormatter::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BinaryFormatter__ctor_m63B98FC5BE3E28A871125318FECE87CEA83D9126 (BinaryFormatter_tAA0465FE94B272FAC7C99F6AD38120E9319C5F55 * __this, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Messaging.RemotingSurrogateSelector::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RemotingSurrogateSelector__ctor_m034077907A6E35E52D6944E20F24053DA4532B84 (RemotingSurrogateSelector_t1E36D625AE2C1058EA107D872577F1EFD04B5FCA * __this, const RuntimeMethod* method);
// System.Void System.Runtime.Serialization.Formatters.Binary.BinaryFormatter::set_SurrogateSelector(System.Runtime.Serialization.ISurrogateSelector)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void BinaryFormatter_set_SurrogateSelector_m696A2BF6895EE02E36D1D735689A026D53A027B6_inline (BinaryFormatter_tAA0465FE94B272FAC7C99F6AD38120E9319C5F55 * __this, RuntimeObject* ___value0, const RuntimeMethod* method);
// System.Void System.Runtime.Serialization.Formatters.Binary.BinaryFormatter::Serialize(System.IO.Stream,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BinaryFormatter_Serialize_m780327356D3B5B1B734338AB398B32E65AD6CB5B (BinaryFormatter_tAA0465FE94B272FAC7C99F6AD38120E9319C5F55 * __this, Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___serializationStream0, RuntimeObject * ___graph1, const RuntimeMethod* method);
// System.Void System.Array::Copy(System.Array,System.Array,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Copy_m40103AA97DC582C557B912CF4BBE86A4D166F803 (RuntimeArray * ___sourceArray0, RuntimeArray * ___destinationArray1, int32_t ___length2, const RuntimeMethod* method);
// System.Object System.Runtime.Serialization.Formatters.Binary.BinaryFormatter::Deserialize(System.IO.Stream)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * BinaryFormatter_Deserialize_mF7AFD0FE0E41A77BC60B11705FA7CC76EFE63DBC (BinaryFormatter_tAA0465FE94B272FAC7C99F6AD38120E9319C5F55 * __this, Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___serializationStream0, const RuntimeMethod* method);
// System.Void System.Diagnostics.Tracing.EventSource::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventSource__ctor_m269E04845C481161A894037B5656C992F0D49021 (EventSource_t02B6E43167F06B74646A32A3BBC58988BFC3EA6A * __this, const RuntimeMethod* method);
// System.Void System.Collections.Concurrent.CDSCollectionETWBCLProvider::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CDSCollectionETWBCLProvider__ctor_m00C916EEA7551A2BE50DC295437B304826F27F17 (CDSCollectionETWBCLProvider_tEF5FCC038F98C60A7A17E73AB11508EE6E2F4266 * __this, const RuntimeMethod* method);
// System.Void System.Attribute::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Attribute__ctor_m5C1862A7DFC2C25A4797A8C5F681FBB5CB53ECE1 (Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71 * __this, const RuntimeMethod* method);
// System.Void System.Runtime.InteropServices.ExternalException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExternalException__ctor_m8A6870938AE42D989A00B950B2F298F70FD32AAA (ExternalException_tC18275DD0AEB2CDF9F85D94670C5A49A4DC3B783 * __this, String_t* ___message0, const RuntimeMethod* method);
// System.Void System.Exception::SetErrorCode(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Exception_SetErrorCode_m92A787DA80F9CBC81E05D158F3D8099A8F1DD44D (Exception_t * __this, int32_t ___hr0, const RuntimeMethod* method);
// System.Void System.Runtime.InteropServices.ExternalException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExternalException__ctor_mF237400F375CB6BA1857B5C5EE7419AA59069184 (ExternalException_tC18275DD0AEB2CDF9F85D94670C5A49A4DC3B783 * __this, SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * ___info0, StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 ___context1, const RuntimeMethod* method);
// System.Type System.Exception::GetType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Exception_GetType_mC5B8B5C944B326B751282AB0E8C25A7F85457D9F (Exception_t * __this, const RuntimeMethod* method);
// System.Int32 System.Exception::get_HResult()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Exception_get_HResult_mAF0FE56C31C3C7D5567539FB46BE80D6B9D1AD42_inline (Exception_t * __this, const RuntimeMethod* method);
// System.Globalization.CultureInfo System.Globalization.CultureInfo::get_InvariantCulture()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * CultureInfo_get_InvariantCulture_m9FAAFAF8A00091EE1FCB7098AD3F163ECDF02164 (const RuntimeMethod* method);
// System.String System.Int32::ToString(System.String,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Int32_ToString_m246774E1922012AE787EB97743F42CB798B70CD8 (int32_t* __this, String_t* ___format0, RuntimeObject* ___provider1, const RuntimeMethod* method);
// System.String System.String::Concat(System.String,System.String,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m37A5BF26F8F8F1892D60D727303B23FB604FEE78 (String_t* ___str00, String_t* ___str11, String_t* ___str22, String_t* ___str33, const RuntimeMethod* method);
// System.String System.String::Concat(System.String,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m89EAB4C6A96B0E5C3F87300D6BE78D386B9EFC44 (String_t* ___str00, String_t* ___str11, String_t* ___str22, const RuntimeMethod* method);
// System.Exception System.Exception::get_InnerException()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Exception_t * Exception_get_InnerException_m10D85773B6B191C7D4E7D3C2954B84F9BB195218_inline (Exception_t * __this, const RuntimeMethod* method);
// System.String System.Environment::get_NewLine()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_get_NewLine_mD145C8EE917C986BAA7C5243DEFAF4D333C521B4 (const RuntimeMethod* method);
// System.Void System.IO.StreamReader::.ctor(System.IO.Stream,System.Text.Encoding)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StreamReader__ctor_mFA7564812FC1200208BCC51CF24D3BE25BD15497 (StreamReader_tA857ACC7ABF9AA4638E1291E6D2539C14D2963D3 * __this, Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___stream0, Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * ___encoding1, const RuntimeMethod* method);
// System.Int32 System.IO.StreamReader::Peek()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t StreamReader_Peek_m368511E5A8F1186EB4EF5C5BD6C71BE4008CDECD (StreamReader_tA857ACC7ABF9AA4638E1291E6D2539C14D2963D3 * __this, const RuntimeMethod* method);
// System.ConsoleKeyInfo System.Console::ReadKey()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConsoleKeyInfo_tDA8AC07839288484FCB167A81B4FBA92ECCEAF88 Console_ReadKey_mFB50402A43E0994EBC4CB125217B21F60F6AA07C (const RuntimeMethod* method);
// System.Char System.ConsoleKeyInfo::get_KeyChar()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Il2CppChar ConsoleKeyInfo_get_KeyChar_m85F4AA380907696C19C1BFFB73FA5DCA0975A82D_inline (ConsoleKeyInfo_tDA8AC07839288484FCB167A81B4FBA92ECCEAF88 * __this, const RuntimeMethod* method);
// System.Int32 System.TermInfoDriver::Read(System.Char[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TermInfoDriver_Read_m007929B4E94873B778BF0D94200725E581E4EE04 (TermInfoDriver_t4BA3410FC3FAB83D567ADF15C94124D8148A0E03 * __this, CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___dest0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method);
// System.String System.TermInfoDriver::ReadLine()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TermInfoDriver_ReadLine_m21228092B7E5C249325613CF07119591A79E3BC1 (TermInfoDriver_t4BA3410FC3FAB83D567ADF15C94124D8148A0E03 * __this, const RuntimeMethod* method);
// System.String System.TermInfoDriver::ReadToEnd()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TermInfoDriver_ReadToEnd_m32D5255A7874B94E6B1BC0350E366EF28BAF6A40 (TermInfoDriver_t4BA3410FC3FAB83D567ADF15C94124D8148A0E03 * __this, const RuntimeMethod* method);
// System.Void System.IO.StreamWriter::.ctor(System.IO.Stream,System.Text.Encoding,System.Int32,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StreamWriter__ctor_m8A6308267FE9C25AC4D31D1E7E909B2AE67B9A8B (StreamWriter_t3E267B7F3C9522AF936C26ABF158398BB779FAF6 * __this, Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___stream0, Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * ___encoding1, int32_t ___bufferSize2, bool ___leaveOpen3, const RuntimeMethod* method);
// System.Boolean System.TermInfoDriver::get_Initialized()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool TermInfoDriver_get_Initialized_m638E51B051705D6784651A9FD9B75983D2674E8E_inline (TermInfoDriver_t4BA3410FC3FAB83D567ADF15C94124D8148A0E03 * __this, const RuntimeMethod* method);
// System.Void System.IO.StreamWriter::Write(System.Char[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StreamWriter_Write_m221171E1EE9CD6D0058AA762C9DB5EEA169C5EBE (StreamWriter_t3E267B7F3C9522AF936C26ABF158398BB779FAF6 * __this, CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___buffer0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method);
// System.Void System.Threading.Monitor::Enter(System.Object,System.Boolean&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Monitor_Enter_mBEB6CC84184B46F26375EC3FC8921D16E48EA4C4 (RuntimeObject * ___obj0, bool* ___lockTaken1, const RuntimeMethod* method);
// System.Boolean System.TermInfoDriver::IsSpecialKey(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TermInfoDriver_IsSpecialKey_m28A4E7401DEF858F48BDF8F5F8D79AFC00E97E79 (TermInfoDriver_t4BA3410FC3FAB83D567ADF15C94124D8148A0E03 * __this, Il2CppChar ___c0, const RuntimeMethod* method);
// System.Void System.TermInfoDriver::WriteSpecialKey(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TermInfoDriver_WriteSpecialKey_mA87BA57992559C1E3389ED4E3518AC522A7EC99E (TermInfoDriver_t4BA3410FC3FAB83D567ADF15C94124D8148A0E03 * __this, Il2CppChar ___c0, const RuntimeMethod* method);
// System.Void System.Threading.Monitor::Exit(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Monitor_Exit_mA776B403DA88AC77CDEEF67AB9F0D0E77ABD254A (RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Void System.IO.CStreamWriter::InternalWriteChar(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CStreamWriter_InternalWriteChar_mCE65984A39D3EB1848DA0E80116620494773A697 (CStreamWriter_tBC3C3F9F3E738D2FF586EF7A680A077D5AA3D27A * __this, Il2CppChar ___val0, const RuntimeMethod* method);
// System.Void System.IO.StreamWriter::Write(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StreamWriter_Write_m70C7F2CFB1D4EE4D733A798742B1586D42F9A04E (StreamWriter_t3E267B7F3C9522AF936C26ABF158398BB779FAF6 * __this, String_t* ___value0, const RuntimeMethod* method);
// System.Void System.IO.StreamWriter::Write(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StreamWriter_Write_mABBB5B9472A516EE1C9FCC92ECCD1513AC063226 (StreamWriter_t3E267B7F3C9522AF936C26ABF158398BB779FAF6 * __this, Il2CppChar ___value0, const RuntimeMethod* method);
// System.Char[] System.String::ToCharArray()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* String_ToCharArray_m33E93AEB7086CBEBDFA5730EAAC49686F144089C (String_t* __this, const RuntimeMethod* method);
// System.Object System.Object::MemberwiseClone()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Object_MemberwiseClone_m0AEE84C38E9A87C372139B4C342454553F0F6392 (RuntimeObject * __this, const RuntimeMethod* method);
// System.Void System.Globalization.Calendar::SetReadOnlyState(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Calendar_SetReadOnlyState_m5585F5423EAE536937889E2F997BB8E1E99ED10A_inline (Calendar_t3D638AEAB45F029DF47138EDA4CF9A7CBBB1C32A * __this, bool ___readOnly0, const RuntimeMethod* method);
// System.Globalization.CalendarData System.Globalization.CalendarData::GetCalendarData(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4 * CalendarData_GetCalendarData_mDDDDDD6CFF169145E762928778E65C8335CB4FE0 (int32_t ___calendarId0, const RuntimeMethod* method);
// System.Int32 System.Globalization.CalendarData::nativeGetTwoDigitYearMax(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CalendarData_nativeGetTwoDigitYearMax_m1681AA3757D4C8A034E8CDBF8345C1F56F9607F9 (int32_t ___calID0, const RuntimeMethod* method);
// System.Void System.Globalization.CalendarData::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CalendarData__ctor_m502F39249669A06BEF8644C129322AEE5C444A9D (CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4 * __this, const RuntimeMethod* method);
// System.Boolean System.Globalization.CalendarData::nativeGetCalendarData(System.Globalization.CalendarData,System.String,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CalendarData_nativeGetCalendarData_mC4AE4E642FE8DBBEE72B9AF5FC65F8AA0CB535FC (CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4 * ___data0, String_t* ___localeName1, int32_t ___calendarId2, const RuntimeMethod* method);
// System.String[] System.Globalization.CultureData::ReescapeWin32Strings(System.String[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* CultureData_ReescapeWin32Strings_m2BC34824C7541A843F99E96B0E6462766805C409 (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___array0, const RuntimeMethod* method);
// System.String System.Globalization.CultureData::ReescapeWin32String(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* CultureData_ReescapeWin32String_mF75AC1587EF582BF36E66CEE5D4273FDD10A436A (String_t* ___str0, const RuntimeMethod* method);
// System.Boolean System.String::IsNullOrEmpty(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_IsNullOrEmpty_m9AFBB5335B441B94E884B8A9D4A27AD60E3D7F7C (String_t* ___value0, const RuntimeMethod* method);
// System.Void System.Globalization.CalendarData::InitializeEraNames(System.String,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CalendarData_InitializeEraNames_m2DFE9DF5291C6F5B046741E52092E622B00784FC (CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4 * __this, String_t* ___localeName0, int32_t ___calendarId1, const RuntimeMethod* method);
// System.Void System.Globalization.CalendarData::InitializeAbbreviatedEraNames(System.String,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CalendarData_InitializeAbbreviatedEraNames_m6B79BD851F7313E96F487F2C5AAFB0EF88E98EA7 (CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4 * __this, String_t* ___localeName0, int32_t ___calendarId1, const RuntimeMethod* method);
// System.String[] System.Globalization.JapaneseCalendar::EnglishEraNames()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* JapaneseCalendar_EnglishEraNames_m047F571AE172163CCA38508F4F9F756B6585D6A4 (const RuntimeMethod* method);
// System.Boolean System.String::op_Equality(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB (String_t* ___a0, String_t* ___b1, const RuntimeMethod* method);
// System.String[] System.Globalization.JapaneseCalendar::EraNames()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* JapaneseCalendar_EraNames_mBB679264567E6E5A28F405DAFFA1E644B8B466F5 (const RuntimeMethod* method);
// System.String[] System.Globalization.JapaneseCalendar::AbbrevEraNames()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* JapaneseCalendar_AbbrevEraNames_m59797786323212AAF463A000026BDC0DBA59D894 (const RuntimeMethod* method);
// System.String System.Globalization.CalendarData::CalendarIdToCultureName(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* CalendarData_CalendarIdToCultureName_mD748CB6E9AEA2E8F6EAB566CCD474F409C9B5CC4 (int32_t ___calendarId0, const RuntimeMethod* method);
// System.Globalization.CultureInfo System.Globalization.CultureInfo::GetCultureInfo(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * CultureInfo_GetCultureInfo_m757F4A8A690B1CDA1A498EBD2ED031B7A76546F3 (String_t* ___name0, const RuntimeMethod* method);
// System.Globalization.CalendarData System.Globalization.CultureData::GetCalendar(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4 * CultureData_GetCalendar_mA6A5903C7B65650B9F93168023FFCC4DCAD14F01 (CultureData_t53CDF1C5F789A28897415891667799420D3C5529 * __this, int32_t ___calendarId0, const RuntimeMethod* method);
// System.String System.String::ToLowerInvariant()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_ToLowerInvariant_m070E99F11A6005755BD6579A6CC835694395F79F (String_t* __this, const RuntimeMethod* method);
// System.Boolean System.Globalization.CalendarData::fill_calendar_data(System.String,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CalendarData_fill_calendar_data_m53D675C1D161845EB120DC3BAAF183611011C012 (CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4 * __this, String_t* ___localeName0, int32_t ___datetimeIndex1, const RuntimeMethod* method);
// System.Threading.Thread System.Threading.Thread::get_CurrentThread()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Thread_tB9EB71664220EE16451AF3276D78DE6614D2A414 * Thread_get_CurrentThread_m80236D2457FBCC1F76A08711E059A0B738DA71EC (const RuntimeMethod* method);
// System.Threading.ExecutionContext System.Threading.Thread::GetMutableExecutionContext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ExecutionContext_t16AC73BB21FEEEAD34A017877AC18DD8BB836414 * Thread_GetMutableExecutionContext_mB95698B8C9F29FF69E6F2C7DBD0588CE4B3EBCFC (Thread_tB9EB71664220EE16451AF3276D78DE6614D2A414 * __this, const RuntimeMethod* method);
// System.Runtime.Remoting.Messaging.LogicalCallContext System.Threading.ExecutionContext::get_LogicalCallContext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LogicalCallContext_tB537C2A13F19FCC7EBC74757A415F2CA5C8FA1C3 * ExecutionContext_get_LogicalCallContext_m2F95375B6A7C4D20848EB4AFC750E37D94D96139 (ExecutionContext_t16AC73BB21FEEEAD34A017877AC18DD8BB836414 * __this, const RuntimeMethod* method);
// System.Void System.Threading.ExecutionContext::set_LogicalCallContext(System.Runtime.Remoting.Messaging.LogicalCallContext)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ExecutionContext_set_LogicalCallContext_m140A85BD2BC1C60235ED4661A5FB193B40207656_inline (ExecutionContext_t16AC73BB21FEEEAD34A017877AC18DD8BB836414 * __this, LogicalCallContext_tB537C2A13F19FCC7EBC74757A415F2CA5C8FA1C3 * ___value0, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Messaging.CallContextRemotingData::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CallContextRemotingData__ctor_m3CF9B317F2D36C1C2C7A2C0F4AF8A4734901088C (CallContextRemotingData_t91D21A898FED729F67E6899F29076D9CF39E419E * __this, const RuntimeMethod* method);
// System.String System.Runtime.Remoting.Messaging.CallContextRemotingData::get_LogicalCallID()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* CallContextRemotingData_get_LogicalCallID_mE47A77416A15B1D0473E471D449F4EF400E38130_inline (CallContextRemotingData_t91D21A898FED729F67E6899F29076D9CF39E419E * __this, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Messaging.CallContextRemotingData::set_LogicalCallID(System.String)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void CallContextRemotingData_set_LogicalCallID_mC234B22CD43CF7FD7DB66C5A0DAF35C246840E1A_inline (CallContextRemotingData_t91D21A898FED729F67E6899F29076D9CF39E419E * __this, String_t* ___value0, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Messaging.CallContextSecurityData::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CallContextSecurityData__ctor_mCC0F926529019EC64F37A78EAB101C8F3B74230B (CallContextSecurityData_t57A7D75CA887E871D0AF1E3AF1AB9624AB99B431 * __this, const RuntimeMethod* method);
// System.Void System.Threading.CancellationCallbackCoreWorkArguments::.ctor(System.Threading.SparselyPopulatedArrayFragment`1<System.Threading.CancellationCallbackInfo>,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CancellationCallbackCoreWorkArguments__ctor_m5E2EF8B57D020415220D0EAF8602E1A4D27BD00A (CancellationCallbackCoreWorkArguments_t9ECCD883EF9DF3283696D1CE1F7A81C0F075923E * __this, SparselyPopulatedArrayFragment_1_t93197EF47D6A025755987003D5D62F3AED371C21 * ___currArrayFragment0, int32_t ___currArrayIndex1, const RuntimeMethod* method);
// System.Void System.Threading.ContextCallback::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContextCallback__ctor_mC019DFC7EF9F0900B3B8915F92706BC3BC4EB477 (ContextCallback_t93707E0430F4FF3E15E1FB5A4844BE89C657AE8B * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method);
// System.Void System.Threading.ExecutionContext::Run(System.Threading.ExecutionContext,System.Threading.ContextCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExecutionContext_Run_m818AB2408824BF47B0D639082CDC164DBF9259D4 (ExecutionContext_t16AC73BB21FEEEAD34A017877AC18DD8BB836414 * ___executionContext0, ContextCallback_t93707E0430F4FF3E15E1FB5A4844BE89C657AE8B * ___callback1, RuntimeObject * ___state2, const RuntimeMethod* method);
// System.Void System.Threading.CancellationCallbackInfo::ExecutionContextCallback(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CancellationCallbackInfo_ExecutionContextCallback_mC38ACCB5287DE0BE9F2D08C1A42C89F73007C862 (RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Void System.Action`1<System.Object>::Invoke(T)
inline void Action_1_Invoke_m587509C88BB83721D7918D89DF07606BB752D744 (Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
(( void (*) (Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC *, RuntimeObject *, const RuntimeMethod*))Action_1_Invoke_m587509C88BB83721D7918D89DF07606BB752D744_gshared)(__this, ___obj0, method);
}
// System.Boolean System.Threading.CancellationTokenSource::get_IsCancellationRequested()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CancellationTokenSource_get_IsCancellationRequested_m376281E83A2485CF743433D0660DFE939AFDBA42 (CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * __this, const RuntimeMethod* method);
// System.Boolean System.Threading.CancellationToken::get_IsCancellationRequested()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CancellationToken_get_IsCancellationRequested_mC0A51CBEAEDE8789A0D04A79B20884ADABEB0D90 (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD * __this, const RuntimeMethod* method);
// System.Boolean System.Threading.CancellationTokenSource::get_CanBeCanceled()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CancellationTokenSource_get_CanBeCanceled_m28225FFB3ED13D4B4EC84BDDCE8C10EB82D539CC (CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * __this, const RuntimeMethod* method);
// System.Boolean System.Threading.CancellationToken::get_CanBeCanceled()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CancellationToken_get_CanBeCanceled_m6E3578EE53E9E051760D798F120A1EB4357B4E09 (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD * __this, const RuntimeMethod* method);
// System.Void System.Threading.CancellationToken::.ctor(System.Threading.CancellationTokenSource)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void CancellationToken__ctor_mC19C6E7AC3BB22E07FCB343BAEA35975B878F9A0_inline (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD * __this, CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * ___source0, const RuntimeMethod* method);
// System.Void System.Action::Invoke()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_Invoke_m3FFA5BE3D64F0FF8E1E1CB6F953913FADB5EB89E (Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * __this, const RuntimeMethod* method);
// System.Threading.CancellationTokenRegistration System.Threading.CancellationToken::Register(System.Action`1<System.Object>,System.Object,System.Boolean,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A CancellationToken_Register_m44D79B3CC75D28193A9C7369AD81D7A93E9D791C (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD * __this, Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * ___callback0, RuntimeObject * ___state1, bool ___useSynchronizationContext2, bool ___useExecutionContext3, const RuntimeMethod* method);
// System.Threading.CancellationTokenRegistration System.Threading.CancellationToken::InternalRegisterWithoutEC(System.Action`1<System.Object>,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A CancellationToken_InternalRegisterWithoutEC_m2450607A39759489E06741B35DE71DD2C677B5CC (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD * __this, Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * ___callback0, RuntimeObject * ___state1, const RuntimeMethod* method);
// System.Threading.SynchronizationContext System.Threading.SynchronizationContext::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SynchronizationContext_t17D9365B5E0D30A0910A16FA4351C525232EF069 * SynchronizationContext_get_Current_m4841CFFADFD0F0D82CE91800EE1225926440B942 (const RuntimeMethod* method);
// System.Threading.ExecutionContext System.Threading.ExecutionContext::Capture(System.Threading.StackCrawlMark&,System.Threading.ExecutionContext/CaptureOptions)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ExecutionContext_t16AC73BB21FEEEAD34A017877AC18DD8BB836414 * ExecutionContext_Capture_m7D895FB8D9C0005CF084E521BA4F030148D984A3 (int32_t* ___stackMark0, int32_t ___options1, const RuntimeMethod* method);
// System.Threading.CancellationTokenRegistration System.Threading.CancellationTokenSource::InternalRegister(System.Action`1<System.Object>,System.Object,System.Threading.SynchronizationContext,System.Threading.ExecutionContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A CancellationTokenSource_InternalRegister_m267B0001480B4E72BD49B668135B8E988B86AD71 (CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * __this, Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * ___callback0, RuntimeObject * ___stateForCallback1, SynchronizationContext_t17D9365B5E0D30A0910A16FA4351C525232EF069 * ___targetSyncContext2, ExecutionContext_t16AC73BB21FEEEAD34A017877AC18DD8BB836414 * ___executionContext3, const RuntimeMethod* method);
// System.Threading.CancellationTokenSource System.Threading.CancellationTokenSource::InternalGetStaticSource(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * CancellationTokenSource_InternalGetStaticSource_m687D6ABA75BAC174574BC37E67CEC352DAB5834A (bool ___set0, const RuntimeMethod* method);
// System.Boolean System.Threading.CancellationToken::Equals(System.Threading.CancellationToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CancellationToken_Equals_m8485C6EC16CB28ECDC780F96911E612CE0698025 (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD * __this, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___other0, const RuntimeMethod* method);
// System.Boolean System.Threading.CancellationToken::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CancellationToken_Equals_mF69DB5B6FC599F06A035F27A4F057D7650592A19 (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD * __this, RuntimeObject * ___other0, const RuntimeMethod* method);
// System.Int32 System.Threading.CancellationToken::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CancellationToken_GetHashCode_m06AA635E3F74B3743001F0609F5AC187E52E32DB (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD * __this, const RuntimeMethod* method);
// System.Void System.Threading.CancellationToken::ThrowOperationCanceledException()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CancellationToken_ThrowOperationCanceledException_mE5D2CC82A6787FCF7606FFCC434E65D6502B6FBD (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD * __this, const RuntimeMethod* method);
// System.Void System.Threading.CancellationToken::ThrowIfCancellationRequested()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CancellationToken_ThrowIfCancellationRequested_m987F0BEA5521F5575C5E766345C04E7E5E0CD210 (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD * __this, const RuntimeMethod* method);
// System.Boolean System.Threading.CancellationTokenSource::get_IsDisposed()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool CancellationTokenSource_get_IsDisposed_m2B0724AA0E669866A2D9E1D974AA06BB241AD43A_inline (CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * __this, const RuntimeMethod* method);
// System.Void System.Threading.CancellationToken::ThrowObjectDisposedException()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CancellationToken_ThrowObjectDisposedException_m16484257FAD477378B1C6D7A83CEC7EDCA36AEA2 (const RuntimeMethod* method);
// System.Void System.Threading.CancellationToken::ThrowIfSourceDisposed()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CancellationToken_ThrowIfSourceDisposed_mE5B50ED7B6461AD467CE75BC31F587BE0EE139CF (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD * __this, const RuntimeMethod* method);
// System.Void System.OperationCanceledException::.ctor(System.String,System.Threading.CancellationToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OperationCanceledException__ctor_m56FFE1DDC33A14CAAC5C357C0E4EA82087998B1A (OperationCanceledException_tA90317406FAE39FB4E2C6AA84E12135E1D56B6FB * __this, String_t* ___message0, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___token1, const RuntimeMethod* method);
// System.Void System.ObjectDisposedException::.ctor(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectDisposedException__ctor_mC830C2F97D5314DF72EEFFE749E7F7FB467D0382 (ObjectDisposedException_t29EF6F519F16BA477EC682F23E8344BB1E9A958A * __this, String_t* ___objectName0, String_t* ___message1, const RuntimeMethod* method);
// System.Void System.Action`1<System.Object>::.ctor(System.Object,System.IntPtr)
inline void Action_1__ctor_mA671E933C9D3DAE4E3F71D34FDDA971739618158 (Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
(( void (*) (Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC *, RuntimeObject *, intptr_t, const RuntimeMethod*))Action_1__ctor_mA671E933C9D3DAE4E3F71D34FDDA971739618158_gshared)(__this, ___object0, ___method1, method);
}
// System.Void System.Threading.CancellationTokenRegistration::.ctor(System.Threading.CancellationCallbackInfo,System.Threading.SparselyPopulatedArrayAddInfo`1<System.Threading.CancellationCallbackInfo>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CancellationTokenRegistration__ctor_m2C98F974EA487E2A4D7CE75255D5257FC7071469 (CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A * __this, CancellationCallbackInfo_t7FC8CF6DB4845FCB0138771E86AE058710B1117B * ___callbackInfo0, SparselyPopulatedArrayAddInfo_1_t6EE25E0D720E03DE7A660791DB554CADCD247FC0 ___registrationInfo1, const RuntimeMethod* method);
// System.Threading.SparselyPopulatedArrayFragment`1<T> System.Threading.SparselyPopulatedArrayAddInfo`1<System.Threading.CancellationCallbackInfo>::get_Source()
inline SparselyPopulatedArrayFragment_1_t93197EF47D6A025755987003D5D62F3AED371C21 * SparselyPopulatedArrayAddInfo_1_get_Source_mEEDA9C531532DA8150BD428185A3A1EB9EB492E6_inline (SparselyPopulatedArrayAddInfo_1_t6EE25E0D720E03DE7A660791DB554CADCD247FC0 * __this, const RuntimeMethod* method)
{
return (( SparselyPopulatedArrayFragment_1_t93197EF47D6A025755987003D5D62F3AED371C21 * (*) (SparselyPopulatedArrayAddInfo_1_t6EE25E0D720E03DE7A660791DB554CADCD247FC0 *, const RuntimeMethod*))SparselyPopulatedArrayAddInfo_1_get_Source_mF16A5757073BEDF261071800F1E44DBC7FD64D0A_gshared_inline)(__this, method);
}
// System.Int32 System.Threading.SparselyPopulatedArrayAddInfo`1<System.Threading.CancellationCallbackInfo>::get_Index()
inline int32_t SparselyPopulatedArrayAddInfo_1_get_Index_mB5BBB1060D57990F7441F44FDFFA982A07992177_inline (SparselyPopulatedArrayAddInfo_1_t6EE25E0D720E03DE7A660791DB554CADCD247FC0 * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (SparselyPopulatedArrayAddInfo_1_t6EE25E0D720E03DE7A660791DB554CADCD247FC0 *, const RuntimeMethod*))SparselyPopulatedArrayAddInfo_1_get_Index_m504E6BF8E69B6BF3E2D670654834F4AD8D47BDB7_gshared_inline)(__this, method);
}
// T System.Threading.SparselyPopulatedArrayFragment`1<System.Threading.CancellationCallbackInfo>::SafeAtomicRemove(System.Int32,T)
inline CancellationCallbackInfo_t7FC8CF6DB4845FCB0138771E86AE058710B1117B * SparselyPopulatedArrayFragment_1_SafeAtomicRemove_m3437B32D4F3791CD88594253B6B9FDED9BAF053D (SparselyPopulatedArrayFragment_1_t93197EF47D6A025755987003D5D62F3AED371C21 * __this, int32_t ___index0, CancellationCallbackInfo_t7FC8CF6DB4845FCB0138771E86AE058710B1117B * ___expectedElement1, const RuntimeMethod* method)
{
return (( CancellationCallbackInfo_t7FC8CF6DB4845FCB0138771E86AE058710B1117B * (*) (SparselyPopulatedArrayFragment_1_t93197EF47D6A025755987003D5D62F3AED371C21 *, int32_t, CancellationCallbackInfo_t7FC8CF6DB4845FCB0138771E86AE058710B1117B *, const RuntimeMethod*))SparselyPopulatedArrayFragment_1_SafeAtomicRemove_m6252DF164CBE58871C4AA1183160ABE31637D844_gshared)(__this, ___index0, ___expectedElement1, method);
}
// System.Boolean System.Threading.CancellationTokenRegistration::TryDeregister()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CancellationTokenRegistration_TryDeregister_m07D7CD3452E63F1E9304D6CB26E4E1A8E347241D (CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A * __this, const RuntimeMethod* method);
// System.Boolean System.Threading.CancellationTokenSource::get_IsCancellationCompleted()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CancellationTokenSource_get_IsCancellationCompleted_mEEE9FCBCF5B8C17636F3B028A872EAB6AE4D31AC (CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * __this, const RuntimeMethod* method);
// System.Int32 System.Threading.CancellationTokenSource::get_ThreadIDExecutingCallbacks()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CancellationTokenSource_get_ThreadIDExecutingCallbacks_m21BA1D4DFE0D97C010B138B67DA830F624E8B5B5 (CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * __this, const RuntimeMethod* method);
// System.Int32 System.Threading.Thread::get_ManagedThreadId()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Thread_get_ManagedThreadId_m7818C94F78A2DE2C7C278F6EA24B31F2BB758FD0 (Thread_tB9EB71664220EE16451AF3276D78DE6614D2A414 * __this, const RuntimeMethod* method);
// System.Void System.Threading.CancellationTokenSource::WaitForCallbackToComplete(System.Threading.CancellationCallbackInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CancellationTokenSource_WaitForCallbackToComplete_m82707ECECF88825CA048EDE223BE5342BB502B71 (CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * __this, CancellationCallbackInfo_t7FC8CF6DB4845FCB0138771E86AE058710B1117B * ___callbackInfo0, const RuntimeMethod* method);
// System.Void System.Threading.CancellationTokenRegistration::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CancellationTokenRegistration_Dispose_mAE8E6F50C883B44EFF2F74E9EA4AD31E9571743F (CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A * __this, const RuntimeMethod* method);
// System.Boolean System.Threading.CancellationTokenRegistration::Equals(System.Threading.CancellationTokenRegistration)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CancellationTokenRegistration_Equals_mBB4613C10EE146E0FBE7578A85CBC40A4205C3C2 (CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A * __this, CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A ___other0, const RuntimeMethod* method);
// System.Boolean System.Threading.CancellationTokenRegistration::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CancellationTokenRegistration_Equals_m596856287836431D530AE23A73053BD2A089E126 (CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A * __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Int32 System.Int32::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Int32_GetHashCode_mEDD3F492A5F7CF021125AE3F38E2B8F8743FC667 (int32_t* __this, const RuntimeMethod* method);
// System.Int32 System.Threading.CancellationTokenRegistration::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CancellationTokenRegistration_GetHashCode_m8E90FC8DC515F4F690D840BC9A1830C8287DD9B6 (CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A * __this, const RuntimeMethod* method);
// System.Void System.Threading.CancellationTokenSource::Cancel()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CancellationTokenSource_Cancel_m2D87D42962FF166576B4FB3A34DF5C07F4AECEF1 (CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * __this, const RuntimeMethod* method);
// System.Void System.Threading.CancellationTokenSource::ThrowIfDisposed()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CancellationTokenSource_ThrowIfDisposed_m8DC7CEE4A830A6A52C568F66A416549C817CFD43 (CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * __this, const RuntimeMethod* method);
// System.Void System.Threading.CancellationTokenSource::Cancel(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CancellationTokenSource_Cancel_mB8906521162FEEA6B08E988914457121D32AD48C (CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * __this, bool ___throwOnFirstException0, const RuntimeMethod* method);
// System.Void System.Threading.CancellationTokenSource::NotifyCancellation(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CancellationTokenSource_NotifyCancellation_m20C2AD82704504311CFEE5E421925917E48663AC (CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * __this, bool ___throwOnFirstException0, const RuntimeMethod* method);
// System.Void System.GC::SuppressFinalize(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GC_SuppressFinalize_mEE880E988C6AF32AA2F67F2D62715281EAA41555 (RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Void System.Threading.Timer::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Timer_Dispose_m89DE06BE1C2F2AF372D469826A0AA3560665B571 (Timer_t31BE4EDDA5C1CB5CFDF698231850B47B7F9DE9CB * __this, const RuntimeMethod* method);
// System.Void System.Threading.CancellationTokenSource::ThrowObjectDisposedException()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CancellationTokenSource_ThrowObjectDisposedException_mC6667F20FDC8ECD522C122BF4D18E50BD77D2E06 (const RuntimeMethod* method);
// System.Void System.Threading.CancellationCallbackInfo::.ctor(System.Action`1<System.Object>,System.Object,System.Threading.SynchronizationContext,System.Threading.ExecutionContext,System.Threading.CancellationTokenSource)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CancellationCallbackInfo__ctor_mC68C97270111CBBD71637A10DEC422493183A0B5 (CancellationCallbackInfo_t7FC8CF6DB4845FCB0138771E86AE058710B1117B * __this, Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * ___callback0, RuntimeObject * ___stateForCallback1, SynchronizationContext_t17D9365B5E0D30A0910A16FA4351C525232EF069 * ___targetSyncContext2, ExecutionContext_t16AC73BB21FEEEAD34A017877AC18DD8BB836414 * ___targetExecutionContext3, CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * ___cancellationTokenSource4, const RuntimeMethod* method);
// System.Void System.Threading.SparselyPopulatedArray`1<System.Threading.CancellationCallbackInfo>::.ctor(System.Int32)
inline void SparselyPopulatedArray_1__ctor_m0542398F4469E233FFE39F752ACCDA61CFF0713C (SparselyPopulatedArray_1_tA18952D126B9E09096751CC472A19196C8B6C17A * __this, int32_t ___initialSize0, const RuntimeMethod* method)
{
(( void (*) (SparselyPopulatedArray_1_tA18952D126B9E09096751CC472A19196C8B6C17A *, int32_t, const RuntimeMethod*))SparselyPopulatedArray_1__ctor_m4819219D17EF783AA631AE71218B59EA894AA9E6_gshared)(__this, ___initialSize0, method);
}
// System.Threading.SparselyPopulatedArrayAddInfo`1<T> System.Threading.SparselyPopulatedArray`1<System.Threading.CancellationCallbackInfo>::Add(T)
inline SparselyPopulatedArrayAddInfo_1_t6EE25E0D720E03DE7A660791DB554CADCD247FC0 SparselyPopulatedArray_1_Add_m03AC48E0BC65266B22D95F393919F1C0FC1AC267 (SparselyPopulatedArray_1_tA18952D126B9E09096751CC472A19196C8B6C17A * __this, CancellationCallbackInfo_t7FC8CF6DB4845FCB0138771E86AE058710B1117B * ___element0, const RuntimeMethod* method)
{
return (( SparselyPopulatedArrayAddInfo_1_t6EE25E0D720E03DE7A660791DB554CADCD247FC0 (*) (SparselyPopulatedArray_1_tA18952D126B9E09096751CC472A19196C8B6C17A *, CancellationCallbackInfo_t7FC8CF6DB4845FCB0138771E86AE058710B1117B *, const RuntimeMethod*))SparselyPopulatedArray_1_Add_m64CEDA3841ECF9A5BAD346FF0714610AB9E40CAE_gshared)(__this, ___element0, method);
}
// System.Int32 System.Threading.Interlocked::CompareExchange(System.Int32&,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Interlocked_CompareExchange_m317AD9524376B7BE74DD9069346E345F2B131382 (int32_t* ___location10, int32_t ___value1, int32_t ___comparand2, const RuntimeMethod* method);
// System.Void System.Threading.CancellationTokenSource::set_ThreadIDExecutingCallbacks(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CancellationTokenSource_set_ThreadIDExecutingCallbacks_m463EA20D8480CF58451097E4F789315EC0D7A6C3 (CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * __this, int32_t ___value0, const RuntimeMethod* method);
// System.Boolean System.Threading.EventWaitHandle::Set()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EventWaitHandle_Set_m81764C887F38A1153224557B26CD688B59987B38 (EventWaitHandle_t80CDEB33529EF7549E7D3E3B689D8272B9F37F3C * __this, const RuntimeMethod* method);
// System.Void System.Threading.CancellationTokenSource::ExecuteCallbackHandlers(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CancellationTokenSource_ExecuteCallbackHandlers_m6E5B184DFC8D9705C23FE425748588C4930F3B3A (CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * __this, bool ___throwOnFirstException0, const RuntimeMethod* method);
// System.Int32 System.Threading.Interlocked::Exchange(System.Int32&,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Interlocked_Exchange_mCB69CAC317F723A1CB6B52194C5917B49C456794 (int32_t* ___location10, int32_t ___value1, const RuntimeMethod* method);
// System.Threading.SparselyPopulatedArrayFragment`1<T> System.Threading.SparselyPopulatedArray`1<System.Threading.CancellationCallbackInfo>::get_Tail()
inline SparselyPopulatedArrayFragment_1_t93197EF47D6A025755987003D5D62F3AED371C21 * SparselyPopulatedArray_1_get_Tail_m7749F3933E39089960D3DB149DEBA7E701978651 (SparselyPopulatedArray_1_tA18952D126B9E09096751CC472A19196C8B6C17A * __this, const RuntimeMethod* method)
{
return (( SparselyPopulatedArrayFragment_1_t93197EF47D6A025755987003D5D62F3AED371C21 * (*) (SparselyPopulatedArray_1_tA18952D126B9E09096751CC472A19196C8B6C17A *, const RuntimeMethod*))SparselyPopulatedArray_1_get_Tail_mBAA868E1B7091E1FF6BDF656AF3BDE21E98A9048_gshared)(__this, method);
}
// System.Int32 System.Threading.SparselyPopulatedArrayFragment`1<System.Threading.CancellationCallbackInfo>::get_Length()
inline int32_t SparselyPopulatedArrayFragment_1_get_Length_m9FED821013845290BD7D80EA322F79C7EBD9B4ED (SparselyPopulatedArrayFragment_1_t93197EF47D6A025755987003D5D62F3AED371C21 * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (SparselyPopulatedArrayFragment_1_t93197EF47D6A025755987003D5D62F3AED371C21 *, const RuntimeMethod*))SparselyPopulatedArrayFragment_1_get_Length_mB0DC970D503F4C5776CB9A81094AF51DA6CA4B89_gshared)(__this, method);
}
// T System.Threading.SparselyPopulatedArrayFragment`1<System.Threading.CancellationCallbackInfo>::get_Item(System.Int32)
inline CancellationCallbackInfo_t7FC8CF6DB4845FCB0138771E86AE058710B1117B * SparselyPopulatedArrayFragment_1_get_Item_mF46D1EABA9E4CD31BF19C89ADB562D4470A95330 (SparselyPopulatedArrayFragment_1_t93197EF47D6A025755987003D5D62F3AED371C21 * __this, int32_t ___index0, const RuntimeMethod* method)
{
return (( CancellationCallbackInfo_t7FC8CF6DB4845FCB0138771E86AE058710B1117B * (*) (SparselyPopulatedArrayFragment_1_t93197EF47D6A025755987003D5D62F3AED371C21 *, int32_t, const RuntimeMethod*))SparselyPopulatedArrayFragment_1_get_Item_mC3579E477C53F9088A8C833575B30C7D71C7E8FC_gshared)(__this, ___index0, method);
}
// System.Void System.Threading.SendOrPostCallback::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SendOrPostCallback__ctor_m68774F2BDC46DE2BA6C3D61D66481FD4D994F6A4 (SendOrPostCallback_t6B7334CE017AF595535507519400AC02D688DC3C * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method);
// System.Void System.Threading.CancellationTokenSource::CancellationCallbackCoreWork(System.Threading.CancellationCallbackCoreWorkArguments)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CancellationTokenSource_CancellationCallbackCoreWork_mB9D81B1EC9C03428670954135B73B2BE14E02260 (CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * __this, CancellationCallbackCoreWorkArguments_t9ECCD883EF9DF3283696D1CE1F7A81C0F075923E ___args0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1<System.Exception>::.ctor()
inline void List_1__ctor_m35CA066810D9B3641F72BBF74383AAA4CF7EC3DE (List_1_t433251677FFAE6CDCEC92C181CEA282328DA13EB * __this, const RuntimeMethod* method)
{
(( void (*) (List_1_t433251677FFAE6CDCEC92C181CEA282328DA13EB *, const RuntimeMethod*))List_1__ctor_m0F0E00088CF56FEACC9E32D8B7D91B93D91DAA3B_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1<System.Exception>::Add(T)
inline void List_1_Add_m11BADA3EECE6909E4F094E70A7EC1FED692E1892 (List_1_t433251677FFAE6CDCEC92C181CEA282328DA13EB * __this, Exception_t * ___item0, const RuntimeMethod* method)
{
(( void (*) (List_1_t433251677FFAE6CDCEC92C181CEA282328DA13EB *, Exception_t *, const RuntimeMethod*))List_1_Add_mE5B3CBB3A625606D9BC4337FEAAF1D66BCB6F96E_gshared)(__this, ___item0, method);
}
// System.Threading.SparselyPopulatedArrayFragment`1<T> System.Threading.SparselyPopulatedArrayFragment`1<System.Threading.CancellationCallbackInfo>::get_Prev()
inline SparselyPopulatedArrayFragment_1_t93197EF47D6A025755987003D5D62F3AED371C21 * SparselyPopulatedArrayFragment_1_get_Prev_m42ED5979D69ED7B9F7F13903C9AEB064DD014F27 (SparselyPopulatedArrayFragment_1_t93197EF47D6A025755987003D5D62F3AED371C21 * __this, const RuntimeMethod* method)
{
return (( SparselyPopulatedArrayFragment_1_t93197EF47D6A025755987003D5D62F3AED371C21 * (*) (SparselyPopulatedArrayFragment_1_t93197EF47D6A025755987003D5D62F3AED371C21 *, const RuntimeMethod*))SparselyPopulatedArrayFragment_1_get_Prev_m3AE2D2BEA384B3DDB6F5E8232451AC419F160665_gshared)(__this, method);
}
// System.Void System.Threading.Thread::MemoryBarrier()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Thread_MemoryBarrier_m9E2B68F7889D5D3AD76126930EE120D51C1B3402 (const RuntimeMethod* method);
// System.Void System.AggregateException::.ctor(System.Collections.Generic.IEnumerable`1<System.Exception>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AggregateException__ctor_m8402940DB4199F47B93D5E4A649438657D288BC1 (AggregateException_t45A871D3DBDA3E28FBCD8DF21F6772238FC55BD1 * __this, RuntimeObject* ___innerExceptions0, const RuntimeMethod* method);
// System.Void System.Threading.CancellationCallbackInfo::ExecuteCallback()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CancellationCallbackInfo_ExecuteCallback_m7042487D5FCE84590D95167D0B84910D02DBDF81 (CancellationCallbackInfo_t7FC8CF6DB4845FCB0138771E86AE058710B1117B * __this, const RuntimeMethod* method);
// System.Void System.Threading.CancellationTokenSource::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CancellationTokenSource__ctor_mC30FDC4F672A8495141CC213126B7FEA2A1BDCEB (CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * __this, const RuntimeMethod* method);
// System.Void System.Threading.SpinWait::SpinOnce()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SpinWait_SpinOnce_m79A8F770ED24E400B6AEFA421A33084CA54E59DB (SpinWait_tEBEEDAE5AEEBBDDEA635932A22308A8398C9AED9 * __this, const RuntimeMethod* method);
// System.Threading.CancellationCallbackInfo System.Threading.CancellationTokenSource::get_ExecutingCallback()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CancellationCallbackInfo_t7FC8CF6DB4845FCB0138771E86AE058710B1117B * CancellationTokenSource_get_ExecutingCallback_m3426CE920853CC59E4A26C45D0555B46DB2BA557 (CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * __this, const RuntimeMethod* method);
// System.Void System.Threading.CancellationTokenSource::.ctor(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CancellationTokenSource__ctor_m2B949404F9AA4D9E7C56C6EA5A5EFA7011BE3409 (CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * __this, bool ___set0, const RuntimeMethod* method);
// System.Int32 System.Threading.PlatformHelper::get_ProcessorCount()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t PlatformHelper_get_ProcessorCount_m2FC3FF428431A972832C7BFE6CFAB8A262F42CA0 (const RuntimeMethod* method);
// System.Void System.Threading.TimerCallback::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimerCallback__ctor_mA825B3FFCCA028905D47A189B70186E047283684 (TimerCallback_tD193CC50BF27E129E6857E1E8A7EAC24BD131814 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method);
// System.Void System.SystemException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SystemException__ctor_m65B6562BDBB8EF84A384B217BE96647C0BAC770A (SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62 * __this, String_t* ___message0, const RuntimeMethod* method);
// System.Void System.SystemException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SystemException__ctor_m20F619D15EAA349C6CE181A65A47C336200EBD19 (SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62 * __this, SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * ___info0, StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 ___context1, const RuntimeMethod* method);
// System.Globalization.CultureInfo System.Globalization.CultureInfo::get_CurrentCulture()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * CultureInfo_get_CurrentCulture_m99E5F5BD20445F2A73F7EA0014A4E783DF3840BB (const RuntimeMethod* method);
// System.Void System.Collections.CaseInsensitiveComparer::.ctor(System.Globalization.CultureInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CaseInsensitiveComparer__ctor_mD14E129C0E3097F0E076A4E04E87D5081C4E666B (CaseInsensitiveComparer_t6261A2A5410CBE32D356D9D93017732DF0AADC6C * __this, CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * ___culture0, const RuntimeMethod* method);
// System.Int32 System.Collections.Comparer::Compare(System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Comparer_Compare_mBBF5C0BAD0C29DC7BE771AB2F0A2500D5E0E60A3 (Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 * __this, RuntimeObject * ___a0, RuntimeObject * ___b1, const RuntimeMethod* method);
// System.Void System.Collections.CaseInsensitiveHashCodeProvider::.ctor(System.Globalization.CultureInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CaseInsensitiveHashCodeProvider__ctor_mA20A70E69A24912F9688675F259E538C46034D63 (CaseInsensitiveHashCodeProvider_tBB49394EF70D0021AE2D095430A23CB71AD512FA * __this, CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * ___culture0, const RuntimeMethod* method);
// System.Int32 System.Globalization.TextInfo::GetCaseInsensitiveHashCode(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TextInfo_GetCaseInsensitiveHashCode_m7E7FDF57240A388E31BE8C34C1D8D0720F100312 (TextInfo_tE823D0684BFE8B203501C9B2B38585E8F06E872C * __this, String_t* ___str0, const RuntimeMethod* method);
// System.Collections.Hashtable System.Runtime.Remoting.ChannelData::get_CustomProperties()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * ChannelData_get_CustomProperties_mA74E570017A4CBA845C655F6D5C4FB6836897969 (ChannelData_tEA64A2F1AEEC413430B61C6C7C4A1652EFDD9827 * __this, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.ProviderData::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ProviderData__ctor_mD5E0B1DB88554294B57100CA92B42A01F94E4CAA (ProviderData_t2E4B222839D59BB2D2C44E370FA8ED37DAF4F582 * __this, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.ProviderData::CopyFrom(System.Runtime.Remoting.ProviderData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ProviderData_CopyFrom_m7700C38B130BBC2840A37B1652E9ED68C4D65479 (ProviderData_t2E4B222839D59BB2D2C44E370FA8ED37DAF4F582 * __this, ProviderData_t2E4B222839D59BB2D2C44E370FA8ED37DAF4F582 * ___other0, const RuntimeMethod* method);
// System.Collections.ArrayList System.Runtime.Remoting.ChannelData::get_ServerProviders()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * ChannelData_get_ServerProviders_mC580FA7210BF153873E24FF2DBF8CADC43CEFC62 (ChannelData_tEA64A2F1AEEC413430B61C6C7C4A1652EFDD9827 * __this, const RuntimeMethod* method);
// System.Collections.ArrayList System.Runtime.Remoting.ChannelData::get_ClientProviders()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * ChannelData_get_ClientProviders_m79FC4B0BD88C0ECDCC35189CBA5CB8859959ED0E (ChannelData_tEA64A2F1AEEC413430B61C6C7C4A1652EFDD9827 * __this, const RuntimeMethod* method);
// System.Object[] System.Runtime.Remoting.Channels.ChannelServices::GetCurrentChannelInfo()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ChannelServices_GetCurrentChannelInfo_m0EA3A6166C70679FE9953FCBB9DF1334A7C01FD0 (const RuntimeMethod* method);
// System.Runtime.Remoting.Messaging.IMessageSink System.Runtime.Remoting.Channels.ChannelServices::CreateClientChannelSinkChain(System.Runtime.Remoting.Channels.IChannelSender,System.String,System.Object[],System.String&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ChannelServices_CreateClientChannelSinkChain_m0844D4CED48ABDB9E407CA4B0453424BFFD5BE93 (RuntimeObject* ___sender0, String_t* ___url1, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___channelDataArray2, String_t** ___objectUri3, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.RemotingConfiguration::LoadDefaultDelayedChannels()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RemotingConfiguration_LoadDefaultDelayedChannels_mE17C622475EFA9EEF74979AB18DAED9D562089B3 (const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Channels.ChannelServices::RegisterChannel(System.Runtime.Remoting.Channels.IChannel)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ChannelServices_RegisterChannel_m93E43A37CE8627ECCE5D5BCB2422A1441A55B22B (RuntimeObject* ___chnl0, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Channels.ChannelServices::RegisterChannel(System.Runtime.Remoting.Channels.IChannel,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ChannelServices_RegisterChannel_m7C03F538173935C9B051D24D2ED89667BFCC3DBE (RuntimeObject* ___chnl0, bool ___ensureSecurity1, const RuntimeMethod* method);
// System.Object System.Runtime.Remoting.Channels.ChannelServices::CreateProvider(System.Runtime.Remoting.ProviderData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ChannelServices_CreateProvider_mF1C0C24B14C8A7E8393A783A058BDABEBECB9745 (ProviderData_t2E4B222839D59BB2D2C44E370FA8ED37DAF4F582 * ___prov0, const RuntimeMethod* method);
// System.String System.String::Concat(System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m4D0DDA7FEDB75304E5FDAF8489A0478EE58A45F2 (RuntimeObject * ___arg00, RuntimeObject * ___arg11, const RuntimeMethod* method);
// System.Reflection.ConstructorInfo System.Type::GetConstructor(System.Type[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstructorInfo_t449AEC508DCA508EE46784C4F2716545488ACD5B * Type_GetConstructor_m98D609FCFA8EB6E54A9FF705D77EEE16603B278C (Type_t * __this, TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* ___types0, const RuntimeMethod* method);
// System.Boolean System.Reflection.ConstructorInfo::op_Equality(System.Reflection.ConstructorInfo,System.Reflection.ConstructorInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConstructorInfo_op_Equality_m5B7B5656578241A10343041B4FF20CEF46CAD453 (ConstructorInfo_t449AEC508DCA508EE46784C4F2716545488ACD5B * ___left0, ConstructorInfo_t449AEC508DCA508EE46784C4F2716545488ACD5B * ___right1, const RuntimeMethod* method);
// System.Object System.Reflection.ConstructorInfo::Invoke(System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ConstructorInfo_Invoke_m8DF5D6F53038C7B6443EEA82D922724F39CD2906 (ConstructorInfo_t449AEC508DCA508EE46784C4F2716545488ACD5B * __this, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___parameters0, const RuntimeMethod* method);
// System.Object System.Activator::CreateInstance(System.Type,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Activator_CreateInstance_mF3E09E8AC19EE563314B326117091D4B9CC918C1 (Type_t * ___type0, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___args1, const RuntimeMethod* method);
// System.String System.String::Concat(System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m6F0ED62933448F8B944E52872E1EE86F6705D306 (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___args0, const RuntimeMethod* method);
// System.Runtime.Remoting.Messaging.ReturnMessage System.Runtime.Remoting.Channels.ChannelServices::CheckIncomingMessage(System.Runtime.Remoting.Messaging.IMessage)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReturnMessage_tBC416F1575159EF223AB8AF256F46F5832E3F3F9 * ChannelServices_CheckIncomingMessage_m87435941FE738589D9657BE5E0E3BC8818B4BD3D (RuntimeObject* ___msg0, const RuntimeMethod* method);
// System.Runtime.Remoting.Messaging.IMessage System.Runtime.Remoting.Channels.ChannelServices::CheckReturnMessage(System.Runtime.Remoting.Messaging.IMessage,System.Runtime.Remoting.Messaging.IMessage)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ChannelServices_CheckReturnMessage_mDF8F2D0FBEB48912A8710A5019789D3DF6033634 (RuntimeObject* ___callMsg0, RuntimeObject* ___retMsg1, const RuntimeMethod* method);
// System.Runtime.Remoting.Messaging.IMessage System.Runtime.Remoting.Contexts.CrossContextChannel::SyncProcessMessage(System.Runtime.Remoting.Messaging.IMessage)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* CrossContextChannel_SyncProcessMessage_m756F4AC5B96F65BE4BB4831FB0E63B12DAFDEFED (CrossContextChannel_tF0389BFF59F875ADDC660EBAF4BA5267F13A88AD * __this, RuntimeObject* ___msg0, const RuntimeMethod* method);
// System.Runtime.Remoting.Identity System.Runtime.Remoting.RemotingServices::GetIdentityForUri(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Identity_t640A44175E23F75AB432A7C00569D863BF48AAD5 * RemotingServices_GetIdentityForUri_m29B1471423DFE2A83F3565AF3E68F7E4C1356D35 (String_t* ___uri0, const RuntimeMethod* method);
// System.String System.String::Concat(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B (String_t* ___str00, String_t* ___str11, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Messaging.ReturnMessage::.ctor(System.Exception,System.Runtime.Remoting.Messaging.IMethodCallMessage)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReturnMessage__ctor_m476904D3D33C1AD682A67958BB303E8A431CEAD5 (ReturnMessage_tBC416F1575159EF223AB8AF256F46F5832E3F3F9 * __this, Exception_t * ___e0, RuntimeObject* ___mcm1, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.RemotingServices::SetMessageTargetIdentity(System.Runtime.Remoting.Messaging.IMessage,System.Runtime.Remoting.Identity)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RemotingServices_SetMessageTargetIdentity_m9C7D340CF99D801800DEE109F81EAAC8069A146B (RuntimeObject* ___msg0, Identity_t640A44175E23F75AB432A7C00569D863BF48AAD5 * ___ident1, const RuntimeMethod* method);
// System.Boolean System.Runtime.Remoting.Channels.ChannelServices::IsLocalCall(System.Runtime.Remoting.Messaging.IMessage)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ChannelServices_IsLocalCall_m1A661824B8A50BA67518839FF3E1F0D0518D45DF (RuntimeObject* ___callMsg0, const RuntimeMethod* method);
// System.Boolean System.Runtime.Remoting.RemotingConfiguration::CustomErrorsEnabled(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RemotingConfiguration_CustomErrorsEnabled_m4B6F1334A694CEE4D5E8D65F96E321998F42045A (bool ___isLocalRequest0, const RuntimeMethod* method);
// System.Void System.Exception::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Exception__ctor_m8ECDE8ACA7F2E0EF1144BD1200FB5DB2870B5F11 (Exception_t * __this, String_t* ___message0, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Messaging.MethodResponse::.ctor(System.Exception,System.Runtime.Remoting.Messaging.IMethodCallMessage)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MethodResponse__ctor_mFE56F04DEC8529E42CCB889F4F29E975A4643218 (MethodResponse_tF8C71D003BA7D3DFB7C5079C1586139A6130ADC5 * __this, Exception_t * ___e0, RuntimeObject* ___msg1, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1<System.Object>::.ctor()
inline void List_1__ctor_m0F0E00088CF56FEACC9E32D8B7D91B93D91DAA3B (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, const RuntimeMethod* method)
{
(( void (*) (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 *, const RuntimeMethod*))List_1__ctor_m0F0E00088CF56FEACC9E32D8B7D91B93D91DAA3B_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1<System.Object>::Add(T)
inline void List_1_Add_mE5B3CBB3A625606D9BC4337FEAAF1D66BCB6F96E (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, RuntimeObject * ___item0, const RuntimeMethod* method)
{
(( void (*) (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 *, RuntimeObject *, const RuntimeMethod*))List_1_Add_mE5B3CBB3A625606D9BC4337FEAAF1D66BCB6F96E_gshared)(__this, ___item0, method);
}
// T[] System.Collections.Generic.List`1<System.Object>::ToArray()
inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* List_1_ToArray_mA737986DE6389E9DD8FA8E3D4E222DE4DA34958D (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, const RuntimeMethod* method)
{
return (( ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* (*) (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 *, const RuntimeMethod*))List_1_ToArray_mA737986DE6389E9DD8FA8E3D4E222DE4DA34958D_gshared)(__this, method);
}
// System.Void System.Runtime.Remoting.Contexts.CrossContextChannel::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CrossContextChannel__ctor_m959C9981BAA4534895361E9C806FF05DA3D3785E (CrossContextChannel_tF0389BFF59F875ADDC660EBAF4BA5267F13A88AD * __this, const RuntimeMethod* method);
// System.Int32 System.Char::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Char_GetHashCode_mC265A6C986A17DD86981F26BBB0BE362DBE45B1B (Il2CppChar* __this, const RuntimeMethod* method);
// System.Boolean System.Char::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_Equals_mEF0A8A611838D99B799EC01C6EB6A8BE7F8087F8 (Il2CppChar* __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Boolean System.Char::Equals(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_Equals_m9A48E390489A3A6074F4FE5A37058A208C35A919 (Il2CppChar* __this, Il2CppChar ___obj0, const RuntimeMethod* method);
// System.Int32 System.Char::CompareTo(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Char_CompareTo_mE7D17FE8150AD7502B0FD0BF075FD050E544B232 (Il2CppChar* __this, RuntimeObject * ___value0, const RuntimeMethod* method);
// System.Int32 System.Char::CompareTo(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Char_CompareTo_m9F4915009A1AD54CF6977E9E16CE112FD244499D (Il2CppChar* __this, Il2CppChar ___value0, const RuntimeMethod* method);
// System.String System.Char::ToString(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Char_ToString_mCCD91C745EEDC81490566AAC095F5758F80077F7 (Il2CppChar ___c0, const RuntimeMethod* method);
// System.String System.Char::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Char_ToString_mE0DE433463C56FD30A4F0A50539553B17147C2F8 (Il2CppChar* __this, const RuntimeMethod* method);
// System.String System.Char::ToString(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Char_ToString_m06BE905F629AFE67313D613EC0ABFA8572CAEFC2 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.String System.String::CreateString(System.Char,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_CreateString_m4CBF2A74FB65655B0BB1452CA748E9CF78D974ED (String_t* __this, Il2CppChar ___c0, int32_t ___count1, const RuntimeMethod* method);
// System.Boolean System.Char::IsLatin1(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsLatin1_mDD9255953CD679C2C126D78A6424CC1ED42336DD (Il2CppChar ___ch0, const RuntimeMethod* method);
// System.Globalization.UnicodeCategory System.Globalization.CharUnicodeInfo::GetUnicodeCategory(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CharUnicodeInfo_GetUnicodeCategory_mD49545DFE510D28FA0B7EB74845DD55F19FF0E21 (Il2CppChar ___ch0, const RuntimeMethod* method);
// System.Boolean System.Char::IsAscii(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsAscii_mFAFA84C71BBA081F42419C8CDD086949934DEA47 (Il2CppChar ___ch0, const RuntimeMethod* method);
// System.Globalization.UnicodeCategory System.Char::GetLatin1UnicodeCategory(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Char_GetLatin1UnicodeCategory_m3E7F31DAC8AEEDF458F429D991D3B022CD1526D4 (Il2CppChar ___ch0, const RuntimeMethod* method);
// System.Boolean System.Char::CheckLetter(System.Globalization.UnicodeCategory)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_CheckLetter_m1AB89A01FD35AAA5EB1790F2E4A78B4829E1E1B6 (int32_t ___uc0, const RuntimeMethod* method);
// System.Boolean System.Char::IsWhiteSpaceLatin1(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsWhiteSpaceLatin1_m3F481728E03EFCD73EEAC4A471E7AB31E29CFA39 (Il2CppChar ___c0, const RuntimeMethod* method);
// System.Boolean System.Globalization.CharUnicodeInfo::IsWhiteSpace(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CharUnicodeInfo_IsWhiteSpace_mFAE454BD5297E59D1B5B6276F3B1F592A4485F67 (Il2CppChar ___c0, const RuntimeMethod* method);
// System.Boolean System.Char::CheckLetterOrDigit(System.Globalization.UnicodeCategory)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_CheckLetterOrDigit_m390DEDDA9D0FCCB93C7B84D3E719C34C514027FD (int32_t ___uc0, const RuntimeMethod* method);
// System.Char System.Char::ToUpper(System.Char,System.Globalization.CultureInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Char_ToUpper_m29916B8AB603D589D84653BEEA12C5B2A8337E27 (Il2CppChar ___c0, CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * ___culture1, const RuntimeMethod* method);
// System.Char System.Char::ToLower(System.Char,System.Globalization.CultureInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Char_ToLower_m42C052EB06C3F461C8CEBAD492E102EB721FDECE (Il2CppChar ___c0, CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * ___culture1, const RuntimeMethod* method);
// System.TypeCode System.Char::GetTypeCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Char_GetTypeCode_mE055D071B128B63F5F347F7C9305922A51F495C7 (Il2CppChar* __this, const RuntimeMethod* method);
// System.Boolean System.Char::System.IConvertible.ToBoolean(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_System_IConvertible_ToBoolean_m8131B0F7E5172597E2DDF2BBF99B1F7F6756527F (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.Char System.Char::System.IConvertible.ToChar(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Char_System_IConvertible_ToChar_mF78D23EE96D9FB964F7A9670E82FC35EEE3C67F6 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.SByte System.Convert::ToSByte(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Convert_ToSByte_m015CE5F044870DD85FC1187A414CDA1AB4FA287E (Il2CppChar ___value0, const RuntimeMethod* method);
// System.SByte System.Char::System.IConvertible.ToSByte(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Char_System_IConvertible_ToSByte_mA03BCFDBB057C48B0C7F8D290B8F32B413D6BFDF (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.Byte System.Convert::ToByte(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Convert_ToByte_m89B9D00AB06D6EA6D880E203547497B2E865783F (Il2CppChar ___value0, const RuntimeMethod* method);
// System.Byte System.Char::System.IConvertible.ToByte(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Char_System_IConvertible_ToByte_m98DB98CD2C1B5B12D5F578CBC74C08BE66139D30 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.Int16 System.Convert::ToInt16(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Convert_ToInt16_mC0EEC22D6804829535BE385D1EF33C50A2805942 (Il2CppChar ___value0, const RuntimeMethod* method);
// System.Int16 System.Char::System.IConvertible.ToInt16(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Char_System_IConvertible_ToInt16_mA007C3EFCD8EF6CB2EEB60DC09650473120F944A (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.UInt16 System.Convert::ToUInt16(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Convert_ToUInt16_m2C0380D82FEEB5D51625D33EF9C7C8E8DF78D8BC (Il2CppChar ___value0, const RuntimeMethod* method);
// System.UInt16 System.Char::System.IConvertible.ToUInt16(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Char_System_IConvertible_ToUInt16_m93424CACB856513E093FE4A38904940118EA370E (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.Int32 System.Convert::ToInt32(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Convert_ToInt32_m0B80BF2883121B16934DF6F71590CAE15442A5BC (Il2CppChar ___value0, const RuntimeMethod* method);
// System.Int32 System.Char::System.IConvertible.ToInt32(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Char_System_IConvertible_ToInt32_mFBC76E62BEBFE0E8E72583C6065DE465DE068B54 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.UInt32 System.Convert::ToUInt32(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Convert_ToUInt32_mF0C89AA5332B4EC293477EEC70ED25776B6686B9 (Il2CppChar ___value0, const RuntimeMethod* method);
// System.UInt32 System.Char::System.IConvertible.ToUInt32(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Char_System_IConvertible_ToUInt32_mBFC199578C9339A68C5832FFA7E1D75EE8DC0757 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.Int64 System.Convert::ToInt64(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Convert_ToInt64_m9C841198EEA538F9452B24B2CA7302E466E008C6 (Il2CppChar ___value0, const RuntimeMethod* method);
// System.Int64 System.Char::System.IConvertible.ToInt64(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Char_System_IConvertible_ToInt64_mFA3A5CB789A1A727A69EC653A680B74FB54298F0 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.UInt64 System.Convert::ToUInt64(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Convert_ToUInt64_m272F4A787DB6E15CE656FA41A1969A6D6EE38516 (Il2CppChar ___value0, const RuntimeMethod* method);
// System.UInt64 System.Char::System.IConvertible.ToUInt64(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Char_System_IConvertible_ToUInt64_m490ACA7483A9781ED948CDBBDAE36EB29B731BF3 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.Single System.Char::System.IConvertible.ToSingle(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Char_System_IConvertible_ToSingle_mBEEA918E0DDB880615B78AA7E68EFDA5628739B0 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.Double System.Char::System.IConvertible.ToDouble(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Char_System_IConvertible_ToDouble_m4A38F71DD4D245195E4A8A9454698747FF839973 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.Decimal System.Char::System.IConvertible.ToDecimal(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 Char_System_IConvertible_ToDecimal_mAFFF4BCA3B972F1857572AB7A556014FDDFAE142 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.DateTime System.Char::System.IConvertible.ToDateTime(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 Char_System_IConvertible_ToDateTime_m4914992CA9F261994C101161C1AE023B94CCD744 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.Object System.Char::System.IConvertible.ToType(System.Type,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Char_System_IConvertible_ToType_mAAAA2971F85C8C4AFF3CE57C77D5F1924FE079D5 (Il2CppChar* __this, Type_t * ___type0, RuntimeObject* ___provider1, const RuntimeMethod* method);
// System.Globalization.UnicodeCategory System.Globalization.CharUnicodeInfo::GetUnicodeCategory(System.String,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CharUnicodeInfo_GetUnicodeCategory_m27B7793950B7DE1E7446CDEE6DC2363FD83D785A (String_t* ___s0, int32_t ___index1, const RuntimeMethod* method);
// System.Boolean System.Char::CheckNumber(System.Globalization.UnicodeCategory)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_CheckNumber_m138086CACA363A8889B25EC309D3ECCB73D99214 (int32_t ___uc0, const RuntimeMethod* method);
// System.Boolean System.Globalization.CharUnicodeInfo::IsWhiteSpace(System.String,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CharUnicodeInfo_IsWhiteSpace_m55B2F2B2342B7374964ACE40FBC5CD19D90C1A3A (String_t* ___s0, int32_t ___index1, const RuntimeMethod* method);
// System.Globalization.UnicodeCategory System.Globalization.CharUnicodeInfo::InternalGetUnicodeCategory(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CharUnicodeInfo_InternalGetUnicodeCategory_mA3B1409970AA5AE0E4ACAADF86DC0EE15BFD2D9B (int32_t ___ch0, const RuntimeMethod* method);
// System.Globalization.UnicodeCategory System.Globalization.CharUnicodeInfo::InternalGetUnicodeCategory(System.String,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CharUnicodeInfo_InternalGetUnicodeCategory_mFD62434F9ABFE74E9ADA8CE15EADAF9AC6F16E3C (String_t* ___value0, int32_t ___index1, const RuntimeMethod* method);
// System.Boolean System.Char::IsHighSurrogate(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsHighSurrogate_m7BECD1C98C902946F069D8936F8A557F1F7DFF01 (Il2CppChar ___c0, const RuntimeMethod* method);
// System.Boolean System.Char::IsLowSurrogate(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsLowSurrogate_m44FA7AA923FDA925E1D536F3DA0A7E1E049E936E (Il2CppChar ___c0, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.RuntimeHelpers::InitializeArray(System.Array,System.RuntimeFieldHandle)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RuntimeHelpers_InitializeArray_mE27238308FED781F2D6A719F0903F2E1311B058F (RuntimeArray * ___array0, RuntimeFieldHandle_t7BE65FC857501059EBAC9772C93B02CD413D9C96 ___fldHandle1, const RuntimeMethod* method);
// System.Void System.InvalidOperationException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * __this, String_t* ___message0, const RuntimeMethod* method);
// System.Void System.Globalization.CharUnicodeInfo/Debug::Assert(System.Boolean,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Debug_Assert_mA721B0C9BDC00172E2AD69FB6EDD03EFEDE770E8 (bool ___condition0, String_t* ___message1, const RuntimeMethod* method);
// System.Byte System.Globalization.CharUnicodeInfo::InternalGetCategoryValue(System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t CharUnicodeInfo_InternalGetCategoryValue_mA208E95EB17E126853D652FABFA61BB95E021168 (int32_t ___ch0, int32_t ___offset1, const RuntimeMethod* method);
// System.Int32 System.Globalization.CharUnicodeInfo::InternalConvertToUtf32(System.String,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CharUnicodeInfo_InternalConvertToUtf32_m7477C6B8C5CE731915B3D1BECB1742C044B31143 (String_t* ___s0, int32_t ___index1, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.ServerIdentity::.ctor(System.String,System.Runtime.Remoting.Contexts.Context,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ServerIdentity__ctor_m9E44F1B908070031C768EFE2AE3DCC1681269A63 (ServerIdentity_t5689BF0CA0122A8E597C9900D39F11F07D79D3A8 * __this, String_t* ___objectUri0, Context_t8A5B564FD0F970E10A97ACB8A7579FFF3EE4C678 * ___context1, Type_t * ___objectType2, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.ServerIdentity::OnLifetimeExpired()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ServerIdentity_OnLifetimeExpired_mD2096F3E9D7C5237427B993849160DFBFC660F4B (ServerIdentity_t5689BF0CA0122A8E597C9900D39F11F07D79D3A8 * __this, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.RemotingServices::DisposeIdentity(System.Runtime.Remoting.Identity)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RemotingServices_DisposeIdentity_mE06A3AAFD8426FC358FB4A278B3D75B6FA20DED6 (Identity_t640A44175E23F75AB432A7C00569D863BF48AAD5 * ___ident0, const RuntimeMethod* method);
// System.Runtime.Remoting.Messaging.IMessageSink System.Runtime.Remoting.Contexts.Context::CreateServerObjectSinkChain(System.MarshalByRefObject,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Context_CreateServerObjectSinkChain_m3D50B4AC3A65E16E3AABF9FBEA409C0376C736E5 (Context_t8A5B564FD0F970E10A97ACB8A7579FFF3EE4C678 * __this, MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8 * ___obj0, bool ___forceInternalExecute1, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Contexts.Context::NotifyGlobalDynamicSinks(System.Boolean,System.Runtime.Remoting.Messaging.IMessage,System.Boolean,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Context_NotifyGlobalDynamicSinks_m38D3F9A94E672E49AB5D2ECFC25769B7DB28D4A8 (bool ___start0, RuntimeObject* ___req_msg1, bool ___client_site2, bool ___async3, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Contexts.Context::NotifyDynamicSinks(System.Boolean,System.Runtime.Remoting.Messaging.IMessage,System.Boolean,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Context_NotifyDynamicSinks_m0AFC3D1E5E58818673E4FB318C5BFB36D1CD2A41 (Context_t8A5B564FD0F970E10A97ACB8A7579FFF3EE4C678 * __this, bool ___start0, RuntimeObject* ___req_msg1, bool ___client_site2, bool ___async3, const RuntimeMethod* method);
// System.Runtime.Remoting.Messaging.IMessage System.Runtime.Remoting.Activation.ActivationServices::RemoteActivate(System.Runtime.Remoting.Activation.IConstructionCallMessage)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ActivationServices_RemoteActivate_m5913C4D1E45D5C3777A25FBACFB37FE7DCED8B77 (RuntimeObject* ___ctorCall0, const RuntimeMethod* method);
// System.Runtime.Remoting.Identity System.Runtime.Remoting.RemotingServices::GetMessageTargetIdentity(System.Runtime.Remoting.Messaging.IMessage)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Identity_t640A44175E23F75AB432A7C00569D863BF48AAD5 * RemotingServices_GetMessageTargetIdentity_m0BE53DC180F8AEBD59A1A498BA4F5BC4BE187769 (RuntimeObject* ___msg0, const RuntimeMethod* method);
// System.Runtime.Remoting.Messaging.IMessageSink System.Runtime.Remoting.Identity::get_ChannelSink()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Identity_get_ChannelSink_m65E342D8B02C4B9A49BA932ACAEB0D3E1DF9A5D5_inline (Identity_t640A44175E23F75AB432A7C00569D863BF48AAD5 * __this, const RuntimeMethod* method);
// System.Boolean System.Runtime.Remoting.Contexts.Context::get_HasDynamicSinks()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Context_get_HasDynamicSinks_m21E2C0BF9F77CB3203D41EE596E5379B2AC989EA (Context_t8A5B564FD0F970E10A97ACB8A7579FFF3EE4C678 * __this, const RuntimeMethod* method);
// System.Boolean System.Runtime.Remoting.Contexts.Context::get_HasGlobalDynamicSinks()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Context_get_HasGlobalDynamicSinks_m2436361B864C92F78E48A26A40E2E39C45119193 (const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Messaging.ClientContextReplySink::.ctor(System.Runtime.Remoting.Contexts.Context,System.Runtime.Remoting.Messaging.IMessageSink)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ClientContextReplySink__ctor_mD78845921ADC12331C6B925A13674A65CF414D16 (ClientContextReplySink_tAB77283D5E284109DBA2762B990D89C2F2BE24C8 * __this, Context_t8A5B564FD0F970E10A97ACB8A7579FFF3EE4C678 * ___ctx0, RuntimeObject* ___replySink1, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Identity::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Identity__ctor_mDE97546186596A4BAEF58B596246F970735117CB (Identity_t640A44175E23F75AB432A7C00569D863BF48AAD5 * __this, String_t* ___objectUri0, const RuntimeMethod* method);
// System.Void System.WeakReference::.ctor(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WeakReference__ctor_m11BFDB039514BDCE23425FD90E8C414D051B2F13 (WeakReference_tB8558D16C98417FD98C920C42C0CC5C9FF825C76 * __this, RuntimeObject * ___target0, const RuntimeMethod* method);
// System.Void Mono.Globalization.Unicode.CodePointIndexer/TableRange::.ctor(System.Int32,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TableRange__ctor_m6E3D790986521CB8EE68A14BF434F876A7D934E2 (TableRange_t0D96EE3F7B1008C60DD683B3A6985C602854E6F1 * __this, int32_t ___start0, int32_t ___end1, int32_t ___indexStart2, const RuntimeMethod* method);
// System.String System.Globalization.CultureInfo::get_SortName()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* CultureInfo_get_SortName_mB0617CF8B75431B13A7E3D470E9868B35747E9B6_inline (CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * __this, const RuntimeMethod* method);
// System.Globalization.CultureInfo System.Globalization.CultureInfo::GetCultureInfo(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * CultureInfo_GetCultureInfo_mB0697F9A11B0ECED167EF993E87AF22C201A16A6 (int32_t ___culture0, const RuntimeMethod* method);
// System.Void System.Globalization.CompareInfo::OnDeserialized()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CompareInfo_OnDeserialized_m2A4271526A5A90EE87689F66A7A5EB6F58D24FF7 (CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * __this, const RuntimeMethod* method);
// System.Int32 System.String::Compare(System.String,System.String,System.StringComparison)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_Compare_mDAE9D10BC450FF38960C691874EBFC3EAF6A39DD (String_t* ___strA0, String_t* ___strB1, int32_t ___comparisonType2, const RuntimeMethod* method);
// System.Void System.ArgumentException::.ctor(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * __this, String_t* ___message0, String_t* ___paramName1, const RuntimeMethod* method);
// System.Int32 System.String::CompareOrdinal(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_CompareOrdinal_m1C7F94040504F35C89EBC8826D77FEA81B9C2C0E (String_t* ___strA0, String_t* ___strB1, const RuntimeMethod* method);
// System.Int32 System.Globalization.CompareInfo::internal_compare_switch(System.String,System.Int32,System.Int32,System.String,System.Int32,System.Int32,System.Globalization.CompareOptions)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CompareInfo_internal_compare_switch_m1FEAE9C0E2860A333FC6FC8C2E3D3B9BE6F24847 (CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * __this, String_t* ___str10, int32_t ___offset11, int32_t ___length12, String_t* ___str23, int32_t ___offset24, int32_t ___length25, int32_t ___options6, const RuntimeMethod* method);
// System.Int32 System.String::Compare(System.String,System.Int32,System.String,System.Int32,System.Int32,System.StringComparison)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_Compare_m235536D851DC456E92886872EB685E9746CD8842 (String_t* ___strA0, int32_t ___indexA1, String_t* ___strB2, int32_t ___indexB3, int32_t ___length4, int32_t ___comparisonType5, const RuntimeMethod* method);
// System.Int32 System.Globalization.CompareInfo::CompareOrdinal(System.String,System.Int32,System.Int32,System.String,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CompareInfo_CompareOrdinal_m33AB738164EFA204BC89F2A7269923A3F3511118 (String_t* ___string10, int32_t ___offset11, int32_t ___length12, String_t* ___string23, int32_t ___offset24, int32_t ___length25, const RuntimeMethod* method);
// System.Int32 System.String::nativeCompareOrdinalEx(System.String,System.Int32,System.String,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_nativeCompareOrdinalEx_mE22F6EA686A103B4B35D18793AF30FE8C668D549 (String_t* ___strA0, int32_t ___indexA1, String_t* ___strB2, int32_t ___indexB3, int32_t ___count4, const RuntimeMethod* method);
// System.Void System.ArgumentNullException::.ctor(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentNullException__ctor_mAD2F05A24C92A657CBCA8C43A9A373C53739A283 (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * __this, String_t* ___paramName0, String_t* ___message1, const RuntimeMethod* method);
// System.Boolean System.String::StartsWith(System.String,System.StringComparison)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_StartsWith_mEA750A0572C706249CDD826681741B7DD733381E (String_t* __this, String_t* ___value0, int32_t ___comparisonType1, const RuntimeMethod* method);
// System.Boolean System.Globalization.CompareInfo::get_UseManagedCollation()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CompareInfo_get_UseManagedCollation_m62E6F0EFBDE261B0AB5BDF80E8151E7BD6301F43 (const RuntimeMethod* method);
// Mono.Globalization.Unicode.SimpleCollator System.Globalization.CompareInfo::GetCollator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SimpleCollator_t60F8CB5F37FA4A008E484C0BD0429E65E5904266 * CompareInfo_GetCollator_mEB0C36DF59D8E9FD513E35D7587A3B9EF49337D7 (CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * __this, const RuntimeMethod* method);
// System.Boolean Mono.Globalization.Unicode.SimpleCollator::IsPrefix(System.String,System.String,System.Globalization.CompareOptions)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SimpleCollator_IsPrefix_m3C264B704EB76964952AF0E136AFD323B7D22E3E (SimpleCollator_t60F8CB5F37FA4A008E484C0BD0429E65E5904266 * __this, String_t* ___src0, String_t* ___target1, int32_t ___opt2, const RuntimeMethod* method);
// System.Boolean System.String::EndsWith(System.String,System.StringComparison)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_EndsWith_mB6E4F554EB12AF5BB822050E738AB867AF5C9864 (String_t* __this, String_t* ___value0, int32_t ___comparisonType1, const RuntimeMethod* method);
// System.Boolean Mono.Globalization.Unicode.SimpleCollator::IsSuffix(System.String,System.String,System.Globalization.CompareOptions)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SimpleCollator_IsSuffix_m31E273F31D791A0A9DE2B2F99C49E3CAC8931F6F (SimpleCollator_t60F8CB5F37FA4A008E484C0BD0429E65E5904266 * __this, String_t* ___src0, String_t* ___target1, int32_t ___opt2, const RuntimeMethod* method);
// System.Int32 System.String::IndexOf(System.String,System.Int32,System.Int32,System.StringComparison)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_IndexOf_m32C80853F9895B0E498AC68FE8BEEF36B058E50E (String_t* __this, String_t* ___value0, int32_t ___startIndex1, int32_t ___count2, int32_t ___comparisonType3, const RuntimeMethod* method);
// System.Int32 System.Globalization.CompareInfo::internal_index_switch(System.String,System.Int32,System.Int32,System.String,System.Globalization.CompareOptions,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CompareInfo_internal_index_switch_m0BCA8F9380213FDD09F89F118BF4E13EC38F47D9 (CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * __this, String_t* ___s10, int32_t ___sindex1, int32_t ___count2, String_t* ___s23, int32_t ___opt4, bool ___first5, const RuntimeMethod* method);
// System.Int32 System.String::LastIndexOf(System.String,System.Int32,System.Int32,System.StringComparison)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_LastIndexOf_mEF87632504FB227E57DFC91BA3A0EE0E651E0EAE (String_t* __this, String_t* ___value0, int32_t ___startIndex1, int32_t ___count2, int32_t ___comparisonType3, const RuntimeMethod* method);
// System.Globalization.SortKey System.Globalization.CompareInfo::CreateSortKey(System.String,System.Globalization.CompareOptions)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SortKey_tBBD5A739AC7187C1514CBA47698C1D5E36877F52 * CompareInfo_CreateSortKey_m6DA8DF9FFA44EC08E8E51A0F83C147D657E2801F (CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * __this, String_t* ___source0, int32_t ___options1, const RuntimeMethod* method);
// System.Globalization.SortKey System.Globalization.CompareInfo::CreateSortKeyCore(System.String,System.Globalization.CompareOptions)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SortKey_tBBD5A739AC7187C1514CBA47698C1D5E36877F52 * CompareInfo_CreateSortKeyCore_m4219346C4396B3F24C697CBF7B352B05C6543440 (CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * __this, String_t* ___source0, int32_t ___options1, const RuntimeMethod* method);
// System.Int32 System.Globalization.CompareInfo::GetHashCodeOfString(System.String,System.Globalization.CompareOptions,System.Boolean,System.Int64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CompareInfo_GetHashCodeOfString_m12227E55AA29A314AA97AFE8F0DDBAF45B1018C9 (CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * __this, String_t* ___source0, int32_t ___options1, bool ___forceRandomizedHashing2, int64_t ___additionalEntropy3, const RuntimeMethod* method);
// System.String System.Environment::internalGetEnvironmentVariable(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_internalGetEnvironmentVariable_m948971DA541D94545FF9A4559B3CCEB43D45955B (String_t* ___variable0, const RuntimeMethod* method);
// System.Boolean Mono.Globalization.Unicode.MSCompatUnicodeTable::get_IsReady()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool MSCompatUnicodeTable_get_IsReady_m48C1BE8069E2D74EE21BBF4D4F5A0B31B4644436_inline (const RuntimeMethod* method);
// System.StringComparer System.StringComparer::get_Ordinal()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 * StringComparer_get_Ordinal_mF3B6370BEBD77351DB5218C867DCD669C47B8812_inline (const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2<System.String,Mono.Globalization.Unicode.SimpleCollator>::.ctor(System.Collections.Generic.IEqualityComparer`1<TKey>)
inline void Dictionary_2__ctor_mD439B314849963C9E927D448D7D7843F2618D824 (Dictionary_2_t33B68634E5ACFD2A5AE4981521BFC06805BE18BB * __this, RuntimeObject* ___comparer0, const RuntimeMethod* method)
{
(( void (*) (Dictionary_2_t33B68634E5ACFD2A5AE4981521BFC06805BE18BB *, RuntimeObject*, const RuntimeMethod*))Dictionary_2__ctor_m42F33AB093A9AAB17C558FDBFF010443D1048400_gshared)(__this, ___comparer0, method);
}
// System.Boolean System.Collections.Generic.Dictionary`2<System.String,Mono.Globalization.Unicode.SimpleCollator>::TryGetValue(TKey,TValue&)
inline bool Dictionary_2_TryGetValue_m6ED0FA8BC514AC4E9A47B85C9BB3780C621B6A09 (Dictionary_2_t33B68634E5ACFD2A5AE4981521BFC06805BE18BB * __this, String_t* ___key0, SimpleCollator_t60F8CB5F37FA4A008E484C0BD0429E65E5904266 ** ___value1, const RuntimeMethod* method)
{
return (( bool (*) (Dictionary_2_t33B68634E5ACFD2A5AE4981521BFC06805BE18BB *, String_t*, SimpleCollator_t60F8CB5F37FA4A008E484C0BD0429E65E5904266 **, const RuntimeMethod*))Dictionary_2_TryGetValue_m048C13E0F44BDC16F7CF01D14E918A84EE72C62C_gshared)(__this, ___key0, ___value1, method);
}
// System.Void Mono.Globalization.Unicode.SimpleCollator::.ctor(System.Globalization.CultureInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SimpleCollator__ctor_m8B6EB6C1918971E2B29E4B2E646C2F28C01D3B97 (SimpleCollator_t60F8CB5F37FA4A008E484C0BD0429E65E5904266 * __this, CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * ___culture0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2<System.String,Mono.Globalization.Unicode.SimpleCollator>::set_Item(TKey,TValue)
inline void Dictionary_2_set_Item_mFCCACB1295F7C78EECE213B398675057231256A2 (Dictionary_2_t33B68634E5ACFD2A5AE4981521BFC06805BE18BB * __this, String_t* ___key0, SimpleCollator_t60F8CB5F37FA4A008E484C0BD0429E65E5904266 * ___value1, const RuntimeMethod* method)
{
(( void (*) (Dictionary_2_t33B68634E5ACFD2A5AE4981521BFC06805BE18BB *, String_t*, SimpleCollator_t60F8CB5F37FA4A008E484C0BD0429E65E5904266 *, const RuntimeMethod*))Dictionary_2_set_Item_mE6BF870B04922441F9F2760E782DEE6EE682615A_gshared)(__this, ___key0, ___value1, method);
}
// System.Globalization.SortKey Mono.Globalization.Unicode.SimpleCollator::GetSortKey(System.String,System.Globalization.CompareOptions)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SortKey_tBBD5A739AC7187C1514CBA47698C1D5E36877F52 * SimpleCollator_GetSortKey_mF1EDDE621E0E9D44ABD2E6676F2F6C6E2C5941F9 (SimpleCollator_t60F8CB5F37FA4A008E484C0BD0429E65E5904266 * __this, String_t* ___s0, int32_t ___options1, const RuntimeMethod* method);
// System.Void System.Globalization.SortKey::.ctor(System.Int32,System.String,System.Globalization.CompareOptions)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SortKey__ctor_m147020EDFF83890588402A0E7FC39930D5FE6FAA (SortKey_tBBD5A739AC7187C1514CBA47698C1D5E36877F52 * __this, int32_t ___lcid0, String_t* ___source1, int32_t ___opt2, const RuntimeMethod* method);
// System.Void System.Globalization.CompareInfo::assign_sortkey(System.Object,System.String,System.Globalization.CompareOptions)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CompareInfo_assign_sortkey_mEB55CB232EAED47ADB2F831640FE134F3BBAF5E5 (CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * __this, RuntimeObject * ___key0, String_t* ___source1, int32_t ___options2, const RuntimeMethod* method);
// System.Int32 System.String::IndexOfUnchecked(System.String,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_IndexOfUnchecked_m594D9BC1820305912EA18D15E8E5CD96754BDDD1 (String_t* __this, String_t* ___value0, int32_t ___startIndex1, int32_t ___count2, const RuntimeMethod* method);
// System.Int32 System.Globalization.CompareInfo::internal_index(System.String,System.Int32,System.Int32,System.String,System.Globalization.CompareOptions,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CompareInfo_internal_index_mC10479D6C207BF2DF92A7059A78879748F118308 (CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * __this, String_t* ___source0, int32_t ___sindex1, int32_t ___count2, String_t* ___value3, int32_t ___options4, bool ___first5, const RuntimeMethod* method);
// System.Int32 System.Globalization.CompareInfo::internal_index_managed(System.String,System.Int32,System.Int32,System.String,System.Globalization.CompareOptions,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CompareInfo_internal_index_managed_m366249822AE993911C2BF8EF3995601FF1438192 (CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * __this, String_t* ___s10, int32_t ___sindex1, int32_t ___count2, String_t* ___s23, int32_t ___opt4, bool ___first5, const RuntimeMethod* method);
// System.Int32 System.Globalization.CompareInfo::internal_compare(System.String,System.Int32,System.Int32,System.String,System.Int32,System.Int32,System.Globalization.CompareOptions)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CompareInfo_internal_compare_mFC7A4946F4276037CC2D0161BE990F9575E982ED (CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * __this, String_t* ___str10, int32_t ___offset11, int32_t ___length12, String_t* ___str23, int32_t ___offset24, int32_t ___length25, int32_t ___options6, const RuntimeMethod* method);
// System.Int32 System.Globalization.CompareInfo::internal_compare_managed(System.String,System.Int32,System.Int32,System.String,System.Int32,System.Int32,System.Globalization.CompareOptions)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CompareInfo_internal_compare_managed_m28DE5E172930D9B4C48E33F12BFE66936457D6AC (CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * __this, String_t* ___str10, int32_t ___offset11, int32_t ___length12, String_t* ___str23, int32_t ___offset24, int32_t ___length25, int32_t ___options6, const RuntimeMethod* method);
// System.Int32 Mono.Globalization.Unicode.SimpleCollator::Compare(System.String,System.Int32,System.Int32,System.String,System.Int32,System.Int32,System.Globalization.CompareOptions)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SimpleCollator_Compare_m43FC5F17895E9FF32FD69B0325ACEF7D36FC5EF7 (SimpleCollator_t60F8CB5F37FA4A008E484C0BD0429E65E5904266 * __this, String_t* ___s10, int32_t ___idx11, int32_t ___len12, String_t* ___s23, int32_t ___idx24, int32_t ___len25, int32_t ___options6, const RuntimeMethod* method);
// System.Int32 Mono.Globalization.Unicode.SimpleCollator::LastIndexOf(System.String,System.String,System.Int32,System.Int32,System.Globalization.CompareOptions)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SimpleCollator_LastIndexOf_m8826D7780C340A55F7DBE7B6C964BC17752931CA (SimpleCollator_t60F8CB5F37FA4A008E484C0BD0429E65E5904266 * __this, String_t* ___s0, String_t* ___target1, int32_t ___start2, int32_t ___length3, int32_t ___opt4, const RuntimeMethod* method);
// System.Int32 Mono.Globalization.Unicode.SimpleCollator::IndexOf(System.String,System.String,System.Int32,System.Int32,System.Globalization.CompareOptions)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SimpleCollator_IndexOf_m920870D977A259C53CA5BE729EAF85BAA2082C87 (SimpleCollator_t60F8CB5F37FA4A008E484C0BD0429E65E5904266 * __this, String_t* ___s0, String_t* ___target1, int32_t ___start2, int32_t ___length3, int32_t ___opt4, const RuntimeMethod* method);
// System.Runtime.Serialization.SerializationInfoEnumerator System.Runtime.Serialization.SerializationInfo::GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SerializationInfoEnumerator_t0548359AF7DB5798EBA19FE6BFCC8CDB8E6B1AF6 * SerializationInfo_GetEnumerator_m88A3A4E9DD1E1F276016B0205CF62DDB876B9575 (SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * __this, const RuntimeMethod* method);
// System.String System.Runtime.Serialization.SerializationInfoEnumerator::get_Name()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SerializationInfoEnumerator_get_Name_m77C59B00E71ADDFA65D08FE52BE16D4D0E4A2480 (SerializationInfoEnumerator_t0548359AF7DB5798EBA19FE6BFCC8CDB8E6B1AF6 * __this, const RuntimeMethod* method);
// System.Object System.Runtime.Serialization.SerializationInfo::GetValue(System.String,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * SerializationInfo_GetValue_mF6E311779D55AD7C80B2D19FF2A7E9683AEF2A99 (SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * __this, String_t* ___name0, Type_t * ___type1, const RuntimeMethod* method);
// System.Boolean System.Runtime.Serialization.SerializationInfoEnumerator::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SerializationInfoEnumerator_MoveNext_m661034C94476113FEB5A3C98A5EA9456ACFA2E9F (SerializationInfoEnumerator_t0548359AF7DB5798EBA19FE6BFCC8CDB8E6B1AF6 * __this, const RuntimeMethod* method);
// System.Void System.Runtime.Serialization.SerializationInfo::AddValue(System.String,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationInfo_AddValue_mA50C2668EF700C2239DDC362F8DB409020BB763D (SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * __this, String_t* ___name0, RuntimeObject * ___value1, const RuntimeMethod* method);
// System.Void System.Collections.Comparer::.ctor(System.Globalization.CultureInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Comparer__ctor_mBDB3A226646ED4E31F7562C371841819469DC84F (Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 * __this, CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * ___culture0, const RuntimeMethod* method);
// System.Int32 System.Collections.CompatibleComparer::Compare(System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CompatibleComparer_Compare_m02BC425A9FFE8D446313C7AF3EF354C731ED9557 (CompatibleComparer_t4BB781C29927336617069035AAC2BE8A84E20929 * __this, RuntimeObject * ___a0, RuntimeObject * ___b1, const RuntimeMethod* method);
// System.Boolean System.Runtime.Remoting.ConfigHandler::CheckPath(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConfigHandler_CheckPath_m26CB4796D1C97445AAB5BEF3087FCC89FAA562B5 (ConfigHandler_t669F653CE4E8ABF2323F028523BEDFB5C56C3760 * __this, String_t* ___path0, const RuntimeMethod* method);
// System.Boolean System.String::StartsWith(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_StartsWith_mDE2FF98CAFFD13F88EDEB6C40158DDF840BFCF12 (String_t* __this, String_t* ___value0, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.ConfigHandler::ParseElement(System.String,Mono.Xml.SmallXmlParser/IAttrList)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfigHandler_ParseElement_m9CB7F4673562DF7819A027FD8C165E97C6374239 (ConfigHandler_t669F653CE4E8ABF2323F028523BEDFB5C56C3760 * __this, String_t* ___name0, RuntimeObject* ___attrs1, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.RemotingException::.ctor(System.String,System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RemotingException__ctor_mCD6011BB1BDDF1ECD8D2DFE2B59BB6A6A242A3D5 (RemotingException_tEFFC0A283D7F4169F5481926B7FF6C2EB8C76F1B * __this, String_t* ___message0, Exception_t * ___InnerException1, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.ConfigHandler::ReadCustomProviderData(System.String,Mono.Xml.SmallXmlParser/IAttrList)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfigHandler_ReadCustomProviderData_mD9651F007012FAD7376788F85744323687DA5063 (ConfigHandler_t669F653CE4E8ABF2323F028523BEDFB5C56C3760 * __this, String_t* ___name0, RuntimeObject* ___attrs1, const RuntimeMethod* method);
// System.UInt32 <PrivateImplementationDetails>::ComputeStringHash(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t U3CPrivateImplementationDetailsU3E_ComputeStringHash_mB93B5E37F36C3B39E066B11F88014D2A69612967 (String_t* ___s0, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.ConfigHandler::ValidatePath(System.String,System.String[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfigHandler_ValidatePath_m6650D44DB89EBA11558A1E7CF484F73410017B2B (ConfigHandler_t669F653CE4E8ABF2323F028523BEDFB5C56C3760 * __this, String_t* ___element0, StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___paths1, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.ConfigHandler::ReadLifetine(Mono.Xml.SmallXmlParser/IAttrList)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfigHandler_ReadLifetine_mB98A6CDFAF17ED7442822D2AB6822C639EE37F6D (ConfigHandler_t669F653CE4E8ABF2323F028523BEDFB5C56C3760 * __this, RuntimeObject* ___attrs0, const RuntimeMethod* method);
// System.Int32 System.String::IndexOf(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_IndexOf_m90616B2D8ACC645F389750FAE4F9A75BC5D82454 (String_t* __this, String_t* ___value0, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.ConfigHandler::ReadChannel(Mono.Xml.SmallXmlParser/IAttrList,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfigHandler_ReadChannel_m1E5CDC4CA57FF4D98107BA4D1E9E51EFA6E3388C (ConfigHandler_t669F653CE4E8ABF2323F028523BEDFB5C56C3760 * __this, RuntimeObject* ___attrs0, bool ___isTemplate1, const RuntimeMethod* method);
// System.Runtime.Remoting.ProviderData System.Runtime.Remoting.ConfigHandler::ReadProvider(System.String,Mono.Xml.SmallXmlParser/IAttrList,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ProviderData_t2E4B222839D59BB2D2C44E370FA8ED37DAF4F582 * ConfigHandler_ReadProvider_m070DE5BF3F25AC2E34E61D6A67D13D6613F9A56B (ConfigHandler_t669F653CE4E8ABF2323F028523BEDFB5C56C3760 * __this, String_t* ___name0, RuntimeObject* ___attrs1, bool ___isTemplate2, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.RemotingConfiguration::RegisterServerProviderTemplate(System.Runtime.Remoting.ProviderData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RemotingConfiguration_RegisterServerProviderTemplate_m600727B6B1B000FDC35C0925F7DC7A450DBC11CB (ProviderData_t2E4B222839D59BB2D2C44E370FA8ED37DAF4F582 * ___prov0, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.RemotingConfiguration::RegisterClientProviderTemplate(System.Runtime.Remoting.ProviderData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RemotingConfiguration_RegisterClientProviderTemplate_m120C9B8F98F2DDA6BFE4D0D843DD18DB1BD5DBE2 (ProviderData_t2E4B222839D59BB2D2C44E370FA8ED37DAF4F582 * ___prov0, const RuntimeMethod* method);
// T[] System.Array::Empty<System.String>()
inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* Array_Empty_TisString_t_m224DA90A7384ACF7EBE2F94D2DFDE2F310D1E77D_inline (const RuntimeMethod* method)
{
return (( StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* (*) (const RuntimeMethod*))Array_Empty_TisRuntimeObject_m1FBC21243DF3542384C523801E8CA8A97606C747_gshared_inline)(method);
}
// System.Void System.Runtime.Remoting.ConfigHandler::ReadClientWellKnown(Mono.Xml.SmallXmlParser/IAttrList)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfigHandler_ReadClientWellKnown_mA47AACA9CAA00719E17808737E0A70AF690D27E5 (ConfigHandler_t669F653CE4E8ABF2323F028523BEDFB5C56C3760 * __this, RuntimeObject* ___attrs0, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.ConfigHandler::ReadServiceWellKnown(Mono.Xml.SmallXmlParser/IAttrList)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfigHandler_ReadServiceWellKnown_mD38DAAD543F2F32003C78F2A1F7AD88DD7B42F58 (ConfigHandler_t669F653CE4E8ABF2323F028523BEDFB5C56C3760 * __this, RuntimeObject* ___attrs0, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.ConfigHandler::ReadClientActivated(Mono.Xml.SmallXmlParser/IAttrList)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfigHandler_ReadClientActivated_m7E01DB8054D0AC50E5CCDA171D308CFCCC28505C (ConfigHandler_t669F653CE4E8ABF2323F028523BEDFB5C56C3760 * __this, RuntimeObject* ___attrs0, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.ConfigHandler::ReadServiceActivated(Mono.Xml.SmallXmlParser/IAttrList)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfigHandler_ReadServiceActivated_m630525ABAD89F4259F9EB1A734ABBF6C53D1B9DB (ConfigHandler_t669F653CE4E8ABF2323F028523BEDFB5C56C3760 * __this, RuntimeObject* ___attrs0, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.ConfigHandler::ReadInteropXml(Mono.Xml.SmallXmlParser/IAttrList,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfigHandler_ReadInteropXml_mE9BF2298B774FFF464057429E9F8DB2F60EAF70B (ConfigHandler_t669F653CE4E8ABF2323F028523BEDFB5C56C3760 * __this, RuntimeObject* ___attrs0, bool ___isElement1, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.ConfigHandler::ReadPreload(Mono.Xml.SmallXmlParser/IAttrList)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfigHandler_ReadPreload_m8F5CCE63EA93444CCB1CE9E0B66BCED3DDA4CCB6 (ConfigHandler_t669F653CE4E8ABF2323F028523BEDFB5C56C3760 * __this, RuntimeObject* ___attrs0, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.RemotingConfiguration::SetCustomErrorsMode(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RemotingConfiguration_SetCustomErrorsMode_m782F7DBB94F4596E488BB1FB3B0635C7B8D87CC3 (String_t* ___mode0, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Channels.SinkProviderData::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SinkProviderData__ctor_mE601387E488B5C8D3D5286906BD271F279978AAF (SinkProviderData_tDCF47C22643A26B1E1F6BB60FA7AE7034053D14E * __this, String_t* ___name0, const RuntimeMethod* method);
// System.Collections.IDictionary System.Runtime.Remoting.Channels.SinkProviderData::get_Properties()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* SinkProviderData_get_Properties_m292E383DD009906B0067D1E7C5B6483B1A9A193D_inline (SinkProviderData_tDCF47C22643A26B1E1F6BB60FA7AE7034053D14E * __this, const RuntimeMethod* method);
// System.Collections.IList System.Runtime.Remoting.Channels.SinkProviderData::get_Children()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* SinkProviderData_get_Children_m3F6518C43B7DBF4E6D664F15F105F171778543CF_inline (SinkProviderData_tDCF47C22643A26B1E1F6BB60FA7AE7034053D14E * __this, const RuntimeMethod* method);
// System.TimeSpan System.Runtime.Remoting.ConfigHandler::ParseTime(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ConfigHandler_ParseTime_mB0917D872E86349D10A033116199EC562E8BF29B (ConfigHandler_t669F653CE4E8ABF2323F028523BEDFB5C56C3760 * __this, String_t* ___s0, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Lifetime.LifetimeServices::set_LeaseTime(System.TimeSpan)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void LifetimeServices_set_LeaseTime_m2480120F8B8F89009F6C4B9FA07642C85F0D0363_inline (TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___value0, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Lifetime.LifetimeServices::set_SponsorshipTimeout(System.TimeSpan)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void LifetimeServices_set_SponsorshipTimeout_mA6154F99575D61E3F988FBF3FF9383DB77F70435_inline (TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___value0, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Lifetime.LifetimeServices::set_RenewOnCallTime(System.TimeSpan)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void LifetimeServices_set_RenewOnCallTime_m2D7569123729D47A77173424A1CC3CCA43213CFC_inline (TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___value0, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.Lifetime.LifetimeServices::set_LeaseManagerPollTime(System.TimeSpan)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LifetimeServices_set_LeaseManagerPollTime_m85E72FB69FD52E9BC5FF070FB7403C9775A07066 (TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___value0, const RuntimeMethod* method);
// System.Int32 System.String::IndexOfAny(System.Char[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_IndexOfAny_m7E9204CF616E533528CC448D05BC8AF97A7D8038 (String_t* __this, CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___anyOf0, const RuntimeMethod* method);
// System.String System.String::Substring(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Substring_mB6B87FD76552BBF6D4E2B9F07F857FE051DCE190 (String_t* __this, int32_t ___startIndex0, const RuntimeMethod* method);
// System.Double System.Double::Parse(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Double_Parse_mFF5B29ED0585A4847BFE654ABB9E915DFE21B63E (String_t* ___s0, const RuntimeMethod* method);
// System.TimeSpan System.TimeSpan::FromDays(System.Double)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 TimeSpan_FromDays_m1B79B7B44CDB0319ED008D2EA56B8144BBBB85DF (double ___value0, const RuntimeMethod* method);
// System.TimeSpan System.TimeSpan::FromHours(System.Double)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 TimeSpan_FromHours_m2C99B232D4B7BECDF0763E70427CC08746D29E71 (double ___value0, const RuntimeMethod* method);
// System.TimeSpan System.TimeSpan::FromMinutes(System.Double)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 TimeSpan_FromMinutes_mAB9F93263460C5FE2BC56C34F268C97EB6035958 (double ___value0, const RuntimeMethod* method);
// System.TimeSpan System.TimeSpan::FromSeconds(System.Double)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 TimeSpan_FromSeconds_m4644EABECA69BC6C07AD649C5898A8E53F4FE7B0 (double ___value0, const RuntimeMethod* method);
// System.TimeSpan System.TimeSpan::FromMilliseconds(System.Double)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 TimeSpan_FromMilliseconds_m12D90542B044C450FDFBCEA1CBC32369479483EC (double ___value0, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.ChannelData::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ChannelData__ctor_mC02825366B59C459F8BED049B0FB88907ACF9FA8 (ChannelData_tEA64A2F1AEEC413430B61C6C7C4A1652EFDD9827 * __this, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.RemotingConfiguration::RegisterChannelTemplate(System.Runtime.Remoting.ChannelData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RemotingConfiguration_RegisterChannelTemplate_m54803CD58591F5BB1BEF1D55916559229C6E91FA (ChannelData_tEA64A2F1AEEC413430B61C6C7C4A1652EFDD9827 * ___channel0, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.FormatterData::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FormatterData__ctor_m070DEE194A6F38FA3500B303AC39FF97B9294643 (FormatterData_t949FC0175724CB0B0A0CECED5896D0597B2CC955 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Stack::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Stack__ctor_m7B7EA279423863156F25A04362D9FE6C89FAFE70 (Stack_tF6DD42A42C129B014D4223010F1E0FFBECBDC3B8 * __this, const RuntimeMethod* method);
// System.String System.Runtime.Remoting.ConfigHandler::GetNotNull(Mono.Xml.SmallXmlParser/IAttrList,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ConfigHandler_GetNotNull_m1B24F15F946B226D2E332D7FC7804B26BB0679FD (ConfigHandler_t669F653CE4E8ABF2323F028523BEDFB5C56C3760 * __this, RuntimeObject* ___attrs0, String_t* ___name1, const RuntimeMethod* method);
// System.String System.Runtime.Remoting.ConfigHandler::ExtractAssembly(System.String&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ConfigHandler_ExtractAssembly_m5B0964FBCAE8F98AAEBB9C55EAD26376F96ADC6D (ConfigHandler_t669F653CE4E8ABF2323F028523BEDFB5C56C3760 * __this, String_t** ___type0, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.ActivatedClientTypeEntry::.ctor(System.String,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ActivatedClientTypeEntry__ctor_m9957D7EF8A4CDFD787AF51582212A3014183AEFB (ActivatedClientTypeEntry_t66A69B1534DEAA65BB13C418074C41B27F4662A3 * __this, String_t* ___typeName0, String_t* ___assemblyName1, String_t* ___appUrl2, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.ActivatedServiceTypeEntry::.ctor(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ActivatedServiceTypeEntry__ctor_m4CDE8EAD3C1DB488F5BF0E4B833F8499F526ADB9 (ActivatedServiceTypeEntry_t0DA790E1B80AFC9F7C69388B70AEC3F24C706274 * __this, String_t* ___typeName0, String_t* ___assemblyName1, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.WellKnownClientTypeEntry::.ctor(System.String,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WellKnownClientTypeEntry__ctor_m0ADE71F4D821B5DEAB588444DCAB2C6F3A369582 (WellKnownClientTypeEntry_tF15BE481E09131FA6D056BC004B31525261ED4FD * __this, String_t* ___typeName0, String_t* ___assemblyName1, String_t* ___objectUrl2, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.WellKnownServiceTypeEntry::.ctor(System.String,System.String,System.String,System.Runtime.Remoting.WellKnownObjectMode)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WellKnownServiceTypeEntry__ctor_m8F6F17E50BE47BFACC2929D05EA5E73BD94800FD (WellKnownServiceTypeEntry_t98CBB552396BFD8971C9C23000B68613B8D67F9D * __this, String_t* ___typeName0, String_t* ___assemblyName1, String_t* ___objectUri2, int32_t ___mode3, const RuntimeMethod* method);
// System.String[] System.String::Split(System.Char[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* String_Split_m2C74DC2B85B322998094BEDE787C378822E1F28B (String_t* __this, CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___separator0, const RuntimeMethod* method);
// System.String System.String::Trim()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Trim_m3FEC641D7046124B7F381701903B50B5171DE0A2 (String_t* __this, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.SoapServices::RegisterInteropXmlElement(System.String,System.String,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SoapServices_RegisterInteropXmlElement_m8B86D916FC179848F07C857FAB64C46A75C1A3D8 (String_t* ___xmlElement0, String_t* ___xmlNamespace1, Type_t * ___type2, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.SoapServices::RegisterInteropXmlType(System.String,System.String,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SoapServices_RegisterInteropXmlType_m856F412086C4E31B2AC2D4B614449D4407969727 (String_t* ___xmlType0, String_t* ___xmlTypeNamespace1, Type_t * ___type2, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.SoapServices::PreLoad(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SoapServices_PreLoad_m780F9561F7119B2A8D52ABA21FE26EEC1D212BD7 (Type_t * ___type0, const RuntimeMethod* method);
// System.Reflection.Assembly System.Reflection.Assembly::Load(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Assembly_t * Assembly_Load_m3B24B1EFB2FF6E40186586C3BE135D335BBF3A0A (String_t* ___assemblyString0, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.SoapServices::PreLoad(System.Reflection.Assembly)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SoapServices_PreLoad_m9DFF436F910C13BE2BC4F67C9ABFD75AAF93F860 (Assembly_t * ___assembly0, const RuntimeMethod* method);
// System.Int32 System.String::IndexOf(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_IndexOf_mEE2D2F738175E3FF05580366D6226DBD673CA2BE (String_t* __this, Il2CppChar ___value0, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.RemotingConfiguration::RegisterChannels(System.Collections.ArrayList,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RemotingConfiguration_RegisterChannels_m4D93EF54F8BC7E103C5D3E5316D6F602C4831BAE (ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * ___channels0, bool ___onlyDelayed1, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.RemotingConfiguration::set_ApplicationName(System.String)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void RemotingConfiguration_set_ApplicationName_m28B8C2E68F7D0EF780898ECB616CC43A1F5F5829_inline (String_t* ___value0, const RuntimeMethod* method);
// System.Void System.Runtime.Remoting.RemotingConfiguration::RegisterTypes(System.Collections.ArrayList)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RemotingConfiguration_RegisterTypes_m7F4974650D499CD808058668563D7E57353ABDD9 (ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * ___types0, const RuntimeMethod* method);
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.IO.BinaryWriter::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BinaryWriter__ctor_m4C679C96D984329B90F962B81BC557D09DCDE8C5 (BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (BinaryWriter__ctor_m4C679C96D984329B90F962B81BC557D09DCDE8C5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB_il2cpp_TypeInfo_var);
Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * L_0 = ((Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB_StaticFields*)il2cpp_codegen_static_fields_for(Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB_il2cpp_TypeInfo_var))->get_Null_1();
__this->set_OutStream_1(L_0);
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_1 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)SZArrayNew(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var, (uint32_t)((int32_t)16));
__this->set__buffer_2(L_1);
UTF8Encoding_t6EE88BC62116B5328F6CF4E39C9CC49EED2ED282 * L_2 = (UTF8Encoding_t6EE88BC62116B5328F6CF4E39C9CC49EED2ED282 *)il2cpp_codegen_object_new(UTF8Encoding_t6EE88BC62116B5328F6CF4E39C9CC49EED2ED282_il2cpp_TypeInfo_var);
UTF8Encoding__ctor_mD752778085A353529AF03841383E5603FE556449(L_2, (bool)0, (bool)1, /*hidden argument*/NULL);
__this->set__encoding_3(L_2);
Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * L_3 = __this->get__encoding_3();
NullCheck(L_3);
Encoder_t5095F24D3B1D0F70D08762B980731B9F1ADEE56A * L_4 = VirtFuncInvoker0< Encoder_t5095F24D3B1D0F70D08762B980731B9F1ADEE56A * >::Invoke(27 /* System.Text.Encoder System.Text.Encoding::GetEncoder() */, L_3);
__this->set__encoder_4(L_4);
return;
}
}
// System.Void System.IO.BinaryWriter::.ctor(System.IO.Stream,System.Text.Encoding)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BinaryWriter__ctor_mCA19225B5842FB12C01B5C8F91A3FB3E5CB1F497 (BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F * __this, Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___output0, Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * ___encoding1, const RuntimeMethod* method)
{
{
Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * L_0 = ___output0;
Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * L_1 = ___encoding1;
BinaryWriter__ctor_m5BDC3D7C4D4A1AC073BB0E75842EAD8DE225FAC8(__this, L_0, L_1, (bool)0, /*hidden argument*/NULL);
return;
}
}
// System.Void System.IO.BinaryWriter::.ctor(System.IO.Stream,System.Text.Encoding,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BinaryWriter__ctor_m5BDC3D7C4D4A1AC073BB0E75842EAD8DE225FAC8 (BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F * __this, Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___output0, Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * ___encoding1, bool ___leaveOpen2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (BinaryWriter__ctor_m5BDC3D7C4D4A1AC073BB0E75842EAD8DE225FAC8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL);
Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * L_0 = ___output0;
if (L_0)
{
goto IL_0014;
}
}
{
ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, _stringLiteral71443AC7CF5CC108984A138188DE915E32441BB2, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, BinaryWriter__ctor_m5BDC3D7C4D4A1AC073BB0E75842EAD8DE225FAC8_RuntimeMethod_var);
}
IL_0014:
{
Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * L_2 = ___encoding1;
if (L_2)
{
goto IL_0022;
}
}
{
ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_3 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_3, _stringLiteral29988D0F9BCADFABFF66CBF5AB73096D1CAE3128, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, BinaryWriter__ctor_m5BDC3D7C4D4A1AC073BB0E75842EAD8DE225FAC8_RuntimeMethod_var);
}
IL_0022:
{
Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * L_4 = ___output0;
NullCheck(L_4);
bool L_5 = VirtFuncInvoker0< bool >::Invoke(9 /* System.Boolean System.IO.Stream::get_CanWrite() */, L_4);
if (L_5)
{
goto IL_003a;
}
}
{
String_t* L_6 = Environment_GetResourceString_m8DFF827596B5FD533D3FE56900FA095F7D674617(_stringLiteral10813B770C68163A5653822E9D25264263D8A9D2, /*hidden argument*/NULL);
ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_7 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var);
ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_7, L_6, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, BinaryWriter__ctor_m5BDC3D7C4D4A1AC073BB0E75842EAD8DE225FAC8_RuntimeMethod_var);
}
IL_003a:
{
Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * L_8 = ___output0;
__this->set_OutStream_1(L_8);
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_9 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)SZArrayNew(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var, (uint32_t)((int32_t)16));
__this->set__buffer_2(L_9);
Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * L_10 = ___encoding1;
__this->set__encoding_3(L_10);
Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * L_11 = __this->get__encoding_3();
NullCheck(L_11);
Encoder_t5095F24D3B1D0F70D08762B980731B9F1ADEE56A * L_12 = VirtFuncInvoker0< Encoder_t5095F24D3B1D0F70D08762B980731B9F1ADEE56A * >::Invoke(27 /* System.Text.Encoder System.Text.Encoding::GetEncoder() */, L_11);
__this->set__encoder_4(L_12);
bool L_13 = ___leaveOpen2;
__this->set__leaveOpen_5(L_13);
return;
}
}
// System.Void System.IO.BinaryWriter::Dispose(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BinaryWriter_Dispose_m7E1E7479E2BB8B5C06D8E1C5296830704284C573 (BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F * __this, bool ___disposing0, const RuntimeMethod* method)
{
{
bool L_0 = ___disposing0;
if (!L_0)
{
goto IL_0022;
}
}
{
bool L_1 = __this->get__leaveOpen_5();
if (!L_1)
{
goto IL_0017;
}
}
{
Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * L_2 = __this->get_OutStream_1();
NullCheck(L_2);
VirtActionInvoker0::Invoke(15 /* System.Void System.IO.Stream::Flush() */, L_2);
return;
}
IL_0017:
{
Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * L_3 = __this->get_OutStream_1();
NullCheck(L_3);
VirtActionInvoker0::Invoke(13 /* System.Void System.IO.Stream::Close() */, L_3);
}
IL_0022:
{
return;
}
}
// System.Void System.IO.BinaryWriter::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BinaryWriter_Dispose_mA93C21BF04CA23D2BCB3058E5B44BAC303340782 (BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F * __this, const RuntimeMethod* method)
{
{
VirtActionInvoker1< bool >::Invoke(5 /* System.Void System.IO.BinaryWriter::Dispose(System.Boolean) */, __this, (bool)1);
return;
}
}
// System.Void System.IO.BinaryWriter::Flush()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BinaryWriter_Flush_m0169CEDEFABE7636012AE1C68E4EA27DAFA00DDB (BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F * __this, const RuntimeMethod* method)
{
{
Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * L_0 = __this->get_OutStream_1();
NullCheck(L_0);
VirtActionInvoker0::Invoke(15 /* System.Void System.IO.Stream::Flush() */, L_0);
return;
}
}
// System.Void System.IO.BinaryWriter::Write(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BinaryWriter_Write_m00E3B94FF4569FA711FA36C2B1BA3B118CF41DDD (BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F * __this, bool ___value0, const RuntimeMethod* method)
{
int32_t G_B2_0 = 0;
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* G_B2_1 = NULL;
int32_t G_B1_0 = 0;
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* G_B1_1 = NULL;
int32_t G_B3_0 = 0;
int32_t G_B3_1 = 0;
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* G_B3_2 = NULL;
{
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_0 = __this->get__buffer_2();
bool L_1 = ___value0;
G_B1_0 = 0;
G_B1_1 = L_0;
if (L_1)
{
G_B2_0 = 0;
G_B2_1 = L_0;
goto IL_000d;
}
}
{
G_B3_0 = 0;
G_B3_1 = G_B1_0;
G_B3_2 = G_B1_1;
goto IL_000e;
}
IL_000d:
{
G_B3_0 = 1;
G_B3_1 = G_B2_0;
G_B3_2 = G_B2_1;
}
IL_000e:
{
NullCheck(G_B3_2);
(G_B3_2)->SetAt(static_cast<il2cpp_array_size_t>(G_B3_1), (uint8_t)(((int32_t)((uint8_t)G_B3_0))));
Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * L_2 = __this->get_OutStream_1();
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_3 = __this->get__buffer_2();
NullCheck(L_2);
VirtActionInvoker3< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, int32_t >::Invoke(23 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_2, L_3, 0, 1);
return;
}
}
// System.Void System.IO.BinaryWriter::Write(System.Byte)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BinaryWriter_Write_m6A3B747F27190ECE2C20B0DAEA849A01A59E2BF5 (BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F * __this, uint8_t ___value0, const RuntimeMethod* method)
{
{
Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * L_0 = __this->get_OutStream_1();
uint8_t L_1 = ___value0;
NullCheck(L_0);
VirtActionInvoker1< uint8_t >::Invoke(24 /* System.Void System.IO.Stream::WriteByte(System.Byte) */, L_0, L_1);
return;
}
}
// System.Void System.IO.BinaryWriter::Write(System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BinaryWriter_Write_m906F603DB5610D915425D87F98A0DA6D9AD8E9D1 (BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___buffer0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (BinaryWriter_Write_m906F603DB5610D915425D87F98A0DA6D9AD8E9D1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_0 = ___buffer0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, _stringLiteralC263EA29ADF3548CFEBC57B532EED28451A56C10, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, BinaryWriter_Write_m906F603DB5610D915425D87F98A0DA6D9AD8E9D1_RuntimeMethod_var);
}
IL_000e:
{
Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * L_2 = __this->get_OutStream_1();
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_3 = ___buffer0;
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_4 = ___buffer0;
NullCheck(L_4);
NullCheck(L_2);
VirtActionInvoker3< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, int32_t >::Invoke(23 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_2, L_3, 0, (((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))));
return;
}
}
// System.Void System.IO.BinaryWriter::Write(System.Byte[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BinaryWriter_Write_m97931AB4ADD9936A08CF6188B415C7B64270A61B (BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___buffer0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method)
{
{
Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * L_0 = __this->get_OutStream_1();
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_1 = ___buffer0;
int32_t L_2 = ___index1;
int32_t L_3 = ___count2;
NullCheck(L_0);
VirtActionInvoker3< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, int32_t >::Invoke(23 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_0, L_1, L_2, L_3);
return;
}
}
// System.Void System.IO.BinaryWriter::Write(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BinaryWriter_Write_m7F6569BD88789D546B6872FCAE58A94089E2A6C1 (BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F * __this, Il2CppChar ___ch0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (BinaryWriter_Write_m7F6569BD88789D546B6872FCAE58A94089E2A6C1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
uint8_t* V_1 = NULL;
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* V_2 = NULL;
{
Il2CppChar L_0 = ___ch0;
IL2CPP_RUNTIME_CLASS_INIT(Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_il2cpp_TypeInfo_var);
bool L_1 = Char_IsSurrogate_mDE2EA47FEF5F4816C883C5FF7DA85364025B5CDE(L_0, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_0018;
}
}
{
String_t* L_2 = Environment_GetResourceString_m8DFF827596B5FD533D3FE56900FA095F7D674617(_stringLiteral025756045BDFD91D955C36F408D03E73F29DC320, /*hidden argument*/NULL);
ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_3 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var);
ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_3, L_2, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, BinaryWriter_Write_m7F6569BD88789D546B6872FCAE58A94089E2A6C1_RuntimeMethod_var);
}
IL_0018:
{
V_0 = 0;
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_4 = __this->get__buffer_2();
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_5 = L_4;
V_2 = L_5;
if (!L_5)
{
goto IL_0029;
}
}
{
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_6 = V_2;
NullCheck(L_6);
if ((((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length)))))
{
goto IL_002e;
}
}
IL_0029:
{
V_1 = (uint8_t*)(((uintptr_t)0));
goto IL_0037;
}
IL_002e:
{
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_7 = V_2;
NullCheck(L_7);
V_1 = (uint8_t*)(((uintptr_t)((L_7)->GetAddressAt(static_cast<il2cpp_array_size_t>(0)))));
}
IL_0037:
{
Encoder_t5095F24D3B1D0F70D08762B980731B9F1ADEE56A * L_8 = __this->get__encoder_4();
uint8_t* L_9 = V_1;
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_10 = __this->get__buffer_2();
NullCheck(L_10);
NullCheck(L_8);
int32_t L_11 = VirtFuncInvoker5< int32_t, Il2CppChar*, int32_t, uint8_t*, int32_t, bool >::Invoke(8 /* System.Int32 System.Text.Encoder::GetBytes(System.Char*,System.Int32,System.Byte*,System.Int32,System.Boolean) */, L_8, (Il2CppChar*)(Il2CppChar*)(((uintptr_t)(&___ch0))), 1, (uint8_t*)(uint8_t*)L_9, (((int32_t)((int32_t)(((RuntimeArray*)L_10)->max_length)))), (bool)1);
V_0 = L_11;
V_2 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)NULL;
Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * L_12 = __this->get_OutStream_1();
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_13 = __this->get__buffer_2();
int32_t L_14 = V_0;
NullCheck(L_12);
VirtActionInvoker3< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, int32_t >::Invoke(23 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_12, L_13, 0, L_14);
return;
}
}
// System.Void System.IO.BinaryWriter::Write(System.Char[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BinaryWriter_Write_m4B2839CBDE7BB16CA8B9F65179C89B9F7C958283 (BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F * __this, CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___chars0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (BinaryWriter_Write_m4B2839CBDE7BB16CA8B9F65179C89B9F7C958283_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* V_0 = NULL;
{
CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_0 = ___chars0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, _stringLiteral4F04E415359BAAEA12C3DA482EAACC98D2F7EDC8, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, BinaryWriter_Write_m4B2839CBDE7BB16CA8B9F65179C89B9F7C958283_RuntimeMethod_var);
}
IL_000e:
{
Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * L_2 = __this->get__encoding_3();
CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_3 = ___chars0;
CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_4 = ___chars0;
NullCheck(L_4);
NullCheck(L_2);
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_5 = VirtFuncInvoker3< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34*, int32_t, int32_t >::Invoke(13 /* System.Byte[] System.Text.Encoding::GetBytes(System.Char[],System.Int32,System.Int32) */, L_2, L_3, 0, (((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))));
V_0 = L_5;
Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * L_6 = __this->get_OutStream_1();
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_7 = V_0;
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_8 = V_0;
NullCheck(L_8);
NullCheck(L_6);
VirtActionInvoker3< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, int32_t >::Invoke(23 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_6, L_7, 0, (((int32_t)((int32_t)(((RuntimeArray*)L_8)->max_length)))));
return;
}
}
// System.Void System.IO.BinaryWriter::Write(System.Double)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BinaryWriter_Write_m345C40EAB93E7F8DDD8CD1C75AD49472A55FBB7A (BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F * __this, double ___value0, const RuntimeMethod* method)
{
{
Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * L_0 = __this->get_OutStream_1();
double L_1 = ___value0;
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_2 = BitConverterLE_GetBytes_m6A2983F0B26E60784B5D7AC25E6B18D7F2B56C07(L_1, /*hidden argument*/NULL);
NullCheck(L_0);
VirtActionInvoker3< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, int32_t >::Invoke(23 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_0, L_2, 0, 8);
return;
}
}
// System.Void System.IO.BinaryWriter::Write(System.Int16)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BinaryWriter_Write_m022449E92FD23C0EA2F575E2B7E4E1A4818A2C44 (BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F * __this, int16_t ___value0, const RuntimeMethod* method)
{
{
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_0 = __this->get__buffer_2();
int16_t L_1 = ___value0;
NullCheck(L_0);
(L_0)->SetAt(static_cast<il2cpp_array_size_t>(0), (uint8_t)(((int32_t)((uint8_t)L_1))));
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_2 = __this->get__buffer_2();
int16_t L_3 = ___value0;
NullCheck(L_2);
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(1), (uint8_t)(((int32_t)((uint8_t)((int32_t)((int32_t)L_3>>(int32_t)8))))));
Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * L_4 = __this->get_OutStream_1();
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_5 = __this->get__buffer_2();
NullCheck(L_4);
VirtActionInvoker3< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, int32_t >::Invoke(23 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_4, L_5, 0, 2);
return;
}
}
// System.Void System.IO.BinaryWriter::Write(System.UInt16)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BinaryWriter_Write_m8757C5FD70D22896AEC7A8EB600880B9F6973CB6 (BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F * __this, uint16_t ___value0, const RuntimeMethod* method)
{
{
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_0 = __this->get__buffer_2();
uint16_t L_1 = ___value0;
NullCheck(L_0);
(L_0)->SetAt(static_cast<il2cpp_array_size_t>(0), (uint8_t)(((int32_t)((uint8_t)L_1))));
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_2 = __this->get__buffer_2();
uint16_t L_3 = ___value0;
NullCheck(L_2);
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(1), (uint8_t)(((int32_t)((uint8_t)((int32_t)((int32_t)L_3>>(int32_t)8))))));
Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * L_4 = __this->get_OutStream_1();
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_5 = __this->get__buffer_2();
NullCheck(L_4);
VirtActionInvoker3< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, int32_t >::Invoke(23 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_4, L_5, 0, 2);
return;
}
}
// System.Void System.IO.BinaryWriter::Write(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BinaryWriter_Write_m44CF0D2782072B3F3612F3D28AF5FA0385B882E8 (BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_0 = __this->get__buffer_2();
int32_t L_1 = ___value0;
NullCheck(L_0);
(L_0)->SetAt(static_cast<il2cpp_array_size_t>(0), (uint8_t)(((int32_t)((uint8_t)L_1))));
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_2 = __this->get__buffer_2();
int32_t L_3 = ___value0;
NullCheck(L_2);
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(1), (uint8_t)(((int32_t)((uint8_t)((int32_t)((int32_t)L_3>>(int32_t)8))))));
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_4 = __this->get__buffer_2();
int32_t L_5 = ___value0;
NullCheck(L_4);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(2), (uint8_t)(((int32_t)((uint8_t)((int32_t)((int32_t)L_5>>(int32_t)((int32_t)16)))))));
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_6 = __this->get__buffer_2();
int32_t L_7 = ___value0;
NullCheck(L_6);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(3), (uint8_t)(((int32_t)((uint8_t)((int32_t)((int32_t)L_7>>(int32_t)((int32_t)24)))))));
Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * L_8 = __this->get_OutStream_1();
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_9 = __this->get__buffer_2();
NullCheck(L_8);
VirtActionInvoker3< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, int32_t >::Invoke(23 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_8, L_9, 0, 4);
return;
}
}
// System.Void System.IO.BinaryWriter::Write(System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BinaryWriter_Write_m9E0BF1116CF89B730BE19C0457374D51E1FCC340 (BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F * __this, uint32_t ___value0, const RuntimeMethod* method)
{
{
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_0 = __this->get__buffer_2();
uint32_t L_1 = ___value0;
NullCheck(L_0);
(L_0)->SetAt(static_cast<il2cpp_array_size_t>(0), (uint8_t)(((int32_t)((uint8_t)L_1))));
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_2 = __this->get__buffer_2();
uint32_t L_3 = ___value0;
NullCheck(L_2);
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(1), (uint8_t)(((int32_t)((uint8_t)((int32_t)((uint32_t)L_3>>8))))));
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_4 = __this->get__buffer_2();
uint32_t L_5 = ___value0;
NullCheck(L_4);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(2), (uint8_t)(((int32_t)((uint8_t)((int32_t)((uint32_t)L_5>>((int32_t)16)))))));
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_6 = __this->get__buffer_2();
uint32_t L_7 = ___value0;
NullCheck(L_6);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(3), (uint8_t)(((int32_t)((uint8_t)((int32_t)((uint32_t)L_7>>((int32_t)24)))))));
Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * L_8 = __this->get_OutStream_1();
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_9 = __this->get__buffer_2();
NullCheck(L_8);
VirtActionInvoker3< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, int32_t >::Invoke(23 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_8, L_9, 0, 4);
return;
}
}
// System.Void System.IO.BinaryWriter::Write(System.Int64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BinaryWriter_Write_m8BCC080CF29D6FA4F2248D1839DB47A5312EF024 (BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F * __this, int64_t ___value0, const RuntimeMethod* method)
{
{
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_0 = __this->get__buffer_2();
int64_t L_1 = ___value0;
NullCheck(L_0);
(L_0)->SetAt(static_cast<il2cpp_array_size_t>(0), (uint8_t)(((int32_t)((uint8_t)L_1))));
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_2 = __this->get__buffer_2();
int64_t L_3 = ___value0;
NullCheck(L_2);
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(1), (uint8_t)(((int32_t)((uint8_t)((int64_t)((int64_t)L_3>>(int32_t)8))))));
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_4 = __this->get__buffer_2();
int64_t L_5 = ___value0;
NullCheck(L_4);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(2), (uint8_t)(((int32_t)((uint8_t)((int64_t)((int64_t)L_5>>(int32_t)((int32_t)16)))))));
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_6 = __this->get__buffer_2();
int64_t L_7 = ___value0;
NullCheck(L_6);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(3), (uint8_t)(((int32_t)((uint8_t)((int64_t)((int64_t)L_7>>(int32_t)((int32_t)24)))))));
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_8 = __this->get__buffer_2();
int64_t L_9 = ___value0;
NullCheck(L_8);
(L_8)->SetAt(static_cast<il2cpp_array_size_t>(4), (uint8_t)(((int32_t)((uint8_t)((int64_t)((int64_t)L_9>>(int32_t)((int32_t)32)))))));
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_10 = __this->get__buffer_2();
int64_t L_11 = ___value0;
NullCheck(L_10);
(L_10)->SetAt(static_cast<il2cpp_array_size_t>(5), (uint8_t)(((int32_t)((uint8_t)((int64_t)((int64_t)L_11>>(int32_t)((int32_t)40)))))));
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_12 = __this->get__buffer_2();
int64_t L_13 = ___value0;
NullCheck(L_12);
(L_12)->SetAt(static_cast<il2cpp_array_size_t>(6), (uint8_t)(((int32_t)((uint8_t)((int64_t)((int64_t)L_13>>(int32_t)((int32_t)48)))))));
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_14 = __this->get__buffer_2();
int64_t L_15 = ___value0;
NullCheck(L_14);
(L_14)->SetAt(static_cast<il2cpp_array_size_t>(7), (uint8_t)(((int32_t)((uint8_t)((int64_t)((int64_t)L_15>>(int32_t)((int32_t)56)))))));
Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * L_16 = __this->get_OutStream_1();
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_17 = __this->get__buffer_2();
NullCheck(L_16);
VirtActionInvoker3< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, int32_t >::Invoke(23 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_16, L_17, 0, 8);
return;
}
}
// System.Void System.IO.BinaryWriter::Write(System.UInt64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BinaryWriter_Write_m34D0CF1C7E3C9038E49D39471E858A728F005590 (BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F * __this, uint64_t ___value0, const RuntimeMethod* method)
{
{
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_0 = __this->get__buffer_2();
uint64_t L_1 = ___value0;
NullCheck(L_0);
(L_0)->SetAt(static_cast<il2cpp_array_size_t>(0), (uint8_t)(((int32_t)((uint8_t)L_1))));
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_2 = __this->get__buffer_2();
uint64_t L_3 = ___value0;
NullCheck(L_2);
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(1), (uint8_t)(((int32_t)((uint8_t)((int64_t)((uint64_t)L_3>>8))))));
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_4 = __this->get__buffer_2();
uint64_t L_5 = ___value0;
NullCheck(L_4);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(2), (uint8_t)(((int32_t)((uint8_t)((int64_t)((uint64_t)L_5>>((int32_t)16)))))));
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_6 = __this->get__buffer_2();
uint64_t L_7 = ___value0;
NullCheck(L_6);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(3), (uint8_t)(((int32_t)((uint8_t)((int64_t)((uint64_t)L_7>>((int32_t)24)))))));
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_8 = __this->get__buffer_2();
uint64_t L_9 = ___value0;
NullCheck(L_8);
(L_8)->SetAt(static_cast<il2cpp_array_size_t>(4), (uint8_t)(((int32_t)((uint8_t)((int64_t)((uint64_t)L_9>>((int32_t)32)))))));
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_10 = __this->get__buffer_2();
uint64_t L_11 = ___value0;
NullCheck(L_10);
(L_10)->SetAt(static_cast<il2cpp_array_size_t>(5), (uint8_t)(((int32_t)((uint8_t)((int64_t)((uint64_t)L_11>>((int32_t)40)))))));
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_12 = __this->get__buffer_2();
uint64_t L_13 = ___value0;
NullCheck(L_12);
(L_12)->SetAt(static_cast<il2cpp_array_size_t>(6), (uint8_t)(((int32_t)((uint8_t)((int64_t)((uint64_t)L_13>>((int32_t)48)))))));
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_14 = __this->get__buffer_2();
uint64_t L_15 = ___value0;
NullCheck(L_14);
(L_14)->SetAt(static_cast<il2cpp_array_size_t>(7), (uint8_t)(((int32_t)((uint8_t)((int64_t)((uint64_t)L_15>>((int32_t)56)))))));
Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * L_16 = __this->get_OutStream_1();
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_17 = __this->get__buffer_2();
NullCheck(L_16);
VirtActionInvoker3< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, int32_t >::Invoke(23 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_16, L_17, 0, 8);
return;
}
}
// System.Void System.IO.BinaryWriter::Write(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BinaryWriter_Write_m9B96551D3F866E023C79C5602D36AF309BACD03A (BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F * __this, float ___value0, const RuntimeMethod* method)
{
{
Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * L_0 = __this->get_OutStream_1();
float L_1 = ___value0;
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_2 = BitConverterLE_GetBytes_m6C0597EE535CAAC1D234008CEA6382C15ED3EE3A(L_1, /*hidden argument*/NULL);
NullCheck(L_0);
VirtActionInvoker3< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, int32_t >::Invoke(23 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_0, L_2, 0, 4);
return;
}
}
// System.Void System.IO.BinaryWriter::Write(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BinaryWriter_Write_mF8AD47E7575F50D6FF62BBF6CC345E561C306165 (BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F * __this, String_t* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (BinaryWriter_Write_mF8AD47E7575F50D6FF62BBF6CC345E561C306165_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
int32_t V_3 = 0;
int32_t V_4 = 0;
Il2CppChar* V_5 = NULL;
String_t* V_6 = NULL;
uint8_t* V_7 = NULL;
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* V_8 = NULL;
int32_t G_B10_0 = 0;
{
String_t* L_0 = ___value0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, _stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, BinaryWriter_Write_mF8AD47E7575F50D6FF62BBF6CC345E561C306165_RuntimeMethod_var);
}
IL_000e:
{
Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * L_2 = __this->get__encoding_3();
String_t* L_3 = ___value0;
NullCheck(L_2);
int32_t L_4 = VirtFuncInvoker1< int32_t, String_t* >::Invoke(9 /* System.Int32 System.Text.Encoding::GetByteCount(System.String) */, L_2, L_3);
V_0 = L_4;
int32_t L_5 = V_0;
BinaryWriter_Write7BitEncodedInt_mED0C8BE214D7B1843F2C061263939F42DFAF7B33(__this, L_5, /*hidden argument*/NULL);
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_6 = __this->get__largeByteBuffer_6();
if (L_6)
{
goto IL_0055;
}
}
{
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_7 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)SZArrayNew(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var, (uint32_t)((int32_t)256));
__this->set__largeByteBuffer_6(L_7);
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_8 = __this->get__largeByteBuffer_6();
NullCheck(L_8);
Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * L_9 = __this->get__encoding_3();
NullCheck(L_9);
int32_t L_10 = VirtFuncInvoker1< int32_t, int32_t >::Invoke(28 /* System.Int32 System.Text.Encoding::GetMaxByteCount(System.Int32) */, L_9, 1);
__this->set__maxChars_7(((int32_t)((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_8)->max_length))))/(int32_t)L_10)));
}
IL_0055:
{
int32_t L_11 = V_0;
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_12 = __this->get__largeByteBuffer_6();
NullCheck(L_12);
if ((((int32_t)L_11) > ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_12)->max_length)))))))
{
goto IL_008f;
}
}
{
Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * L_13 = __this->get__encoding_3();
String_t* L_14 = ___value0;
String_t* L_15 = ___value0;
NullCheck(L_15);
int32_t L_16 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_15, /*hidden argument*/NULL);
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_17 = __this->get__largeByteBuffer_6();
NullCheck(L_13);
VirtFuncInvoker5< int32_t, String_t*, int32_t, int32_t, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t >::Invoke(15 /* System.Int32 System.Text.Encoding::GetBytes(System.String,System.Int32,System.Int32,System.Byte[],System.Int32) */, L_13, L_14, 0, L_16, L_17, 0);
Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * L_18 = __this->get_OutStream_1();
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_19 = __this->get__largeByteBuffer_6();
int32_t L_20 = V_0;
NullCheck(L_18);
VirtActionInvoker3< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, int32_t >::Invoke(23 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_18, L_19, 0, L_20);
return;
}
IL_008f:
{
V_1 = 0;
String_t* L_21 = ___value0;
NullCheck(L_21);
int32_t L_22 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_21, /*hidden argument*/NULL);
V_2 = L_22;
goto IL_014b;
}
IL_009d:
{
int32_t L_23 = V_2;
int32_t L_24 = __this->get__maxChars_7();
if ((((int32_t)L_23) > ((int32_t)L_24)))
{
goto IL_00a9;
}
}
{
int32_t L_25 = V_2;
G_B10_0 = L_25;
goto IL_00af;
}
IL_00a9:
{
int32_t L_26 = __this->get__maxChars_7();
G_B10_0 = L_26;
}
IL_00af:
{
V_3 = G_B10_0;
int32_t L_27 = V_1;
if ((((int32_t)L_27) < ((int32_t)0)))
{
goto IL_00c3;
}
}
{
int32_t L_28 = V_3;
if ((((int32_t)L_28) < ((int32_t)0)))
{
goto IL_00c3;
}
}
{
int32_t L_29 = V_1;
int32_t L_30 = V_3;
if (((int64_t)L_29 + (int64_t)L_30 < (int64_t)kIl2CppInt32Min) || ((int64_t)L_29 + (int64_t)L_30 > (int64_t)kIl2CppInt32Max))
IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), BinaryWriter_Write_mF8AD47E7575F50D6FF62BBF6CC345E561C306165_RuntimeMethod_var);
String_t* L_31 = ___value0;
NullCheck(L_31);
int32_t L_32 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_31, /*hidden argument*/NULL);
if ((((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_29, (int32_t)L_30))) <= ((int32_t)L_32)))
{
goto IL_00ce;
}
}
IL_00c3:
{
ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_33 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m329C2882A4CB69F185E98D0DD7E853AA9220960A(L_33, _stringLiteral9AA99C92BB9065939AEAB82DCEAAB6CEE49FA2FB, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_33, BinaryWriter_Write_mF8AD47E7575F50D6FF62BBF6CC345E561C306165_RuntimeMethod_var);
}
IL_00ce:
{
String_t* L_34 = ___value0;
V_6 = L_34;
String_t* L_35 = V_6;
V_5 = (Il2CppChar*)(((uintptr_t)L_35));
Il2CppChar* L_36 = V_5;
if (!L_36)
{
goto IL_00e4;
}
}
{
Il2CppChar* L_37 = V_5;
int32_t L_38 = RuntimeHelpers_get_OffsetToStringData_mEB8E6EAEBAFAB7CD7F7A915B3081785AABB9FC42(/*hidden argument*/NULL);
V_5 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_37, (int32_t)L_38));
}
IL_00e4:
{
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_39 = __this->get__largeByteBuffer_6();
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_40 = L_39;
V_8 = L_40;
if (!L_40)
{
goto IL_00f5;
}
}
{
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_41 = V_8;
NullCheck(L_41);
if ((((int32_t)((int32_t)(((RuntimeArray*)L_41)->max_length)))))
{
goto IL_00fb;
}
}
IL_00f5:
{
V_7 = (uint8_t*)(((uintptr_t)0));
goto IL_0106;
}
IL_00fb:
{
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_42 = V_8;
NullCheck(L_42);
V_7 = (uint8_t*)(((uintptr_t)((L_42)->GetAddressAt(static_cast<il2cpp_array_size_t>(0)))));
}
IL_0106:
{
Encoder_t5095F24D3B1D0F70D08762B980731B9F1ADEE56A * L_43 = __this->get__encoder_4();
Il2CppChar* L_44 = V_5;
int32_t L_45 = V_1;
if (((intptr_t)(((intptr_t)L_45)) * (intptr_t)2 < (intptr_t)kIl2CppIntPtrMin) || ((intptr_t)(((intptr_t)L_45)) * (intptr_t)2 > (intptr_t)kIl2CppIntPtrMax))
IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), BinaryWriter_Write_mF8AD47E7575F50D6FF62BBF6CC345E561C306165_RuntimeMethod_var);
if ((uintptr_t)L_44 + (uintptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_45)), (int32_t)2)) > (uintptr_t)kIl2CppUIntPtrMax)
IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), BinaryWriter_Write_mF8AD47E7575F50D6FF62BBF6CC345E561C306165_RuntimeMethod_var);
int32_t L_46 = V_3;
uint8_t* L_47 = V_7;
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_48 = __this->get__largeByteBuffer_6();
NullCheck(L_48);
int32_t L_49 = V_3;
int32_t L_50 = V_2;
NullCheck(L_43);
int32_t L_51 = VirtFuncInvoker5< int32_t, Il2CppChar*, int32_t, uint8_t*, int32_t, bool >::Invoke(8 /* System.Int32 System.Text.Encoder::GetBytes(System.Char*,System.Int32,System.Byte*,System.Int32,System.Boolean) */, L_43, (Il2CppChar*)(Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_44, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_45)), (int32_t)2)))), L_46, (uint8_t*)(uint8_t*)L_47, (((int32_t)((int32_t)(((RuntimeArray*)L_48)->max_length)))), (bool)((((int32_t)L_49) == ((int32_t)L_50))? 1 : 0));
V_4 = L_51;
V_8 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)NULL;
V_6 = (String_t*)NULL;
Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * L_52 = __this->get_OutStream_1();
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_53 = __this->get__largeByteBuffer_6();
int32_t L_54 = V_4;
NullCheck(L_52);
VirtActionInvoker3< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, int32_t >::Invoke(23 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_52, L_53, 0, L_54);
int32_t L_55 = V_1;
int32_t L_56 = V_3;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_55, (int32_t)L_56));
int32_t L_57 = V_2;
int32_t L_58 = V_3;
V_2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_57, (int32_t)L_58));
}
IL_014b:
{
int32_t L_59 = V_2;
if ((((int32_t)L_59) > ((int32_t)0)))
{
goto IL_009d;
}
}
{
return;
}
}
// System.Void System.IO.BinaryWriter::Write7BitEncodedInt(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BinaryWriter_Write7BitEncodedInt_mED0C8BE214D7B1843F2C061263939F42DFAF7B33 (BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F * __this, int32_t ___value0, const RuntimeMethod* method)
{
uint32_t V_0 = 0;
{
int32_t L_0 = ___value0;
V_0 = L_0;
goto IL_0016;
}
IL_0004:
{
uint32_t L_1 = V_0;
VirtActionInvoker1< uint8_t >::Invoke(8 /* System.Void System.IO.BinaryWriter::Write(System.Byte) */, __this, (uint8_t)(((int32_t)((uint8_t)((int32_t)((int32_t)L_1|(int32_t)((int32_t)128)))))));
uint32_t L_2 = V_0;
V_0 = ((int32_t)((uint32_t)L_2>>7));
}
IL_0016:
{
uint32_t L_3 = V_0;
if ((!(((uint32_t)L_3) < ((uint32_t)((int32_t)128)))))
{
goto IL_0004;
}
}
{
uint32_t L_4 = V_0;
VirtActionInvoker1< uint8_t >::Invoke(8 /* System.Void System.IO.BinaryWriter::Write(System.Byte) */, __this, (uint8_t)(((int32_t)((uint8_t)L_4))));
return;
}
}
// System.Void System.IO.BinaryWriter::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BinaryWriter__cctor_m09AA37C9711B78668A0D3A1811AE94B3673BBCCA (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (BinaryWriter__cctor_m09AA37C9711B78668A0D3A1811AE94B3673BBCCA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F * L_0 = (BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F *)il2cpp_codegen_object_new(BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F_il2cpp_TypeInfo_var);
BinaryWriter__ctor_m4C679C96D984329B90F962B81BC557D09DCDE8C5(L_0, /*hidden argument*/NULL);
((BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F_StaticFields*)il2cpp_codegen_static_fields_for(BinaryWriter_t70074014C7FE27CD9F7500C3F02C4AB61D35554F_il2cpp_TypeInfo_var))->set_Null_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Reflection.Binder::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Binder__ctor_m0EECB8BAD427DE4635A9BDB3CABF19252278AD4D (Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 * __this, const RuntimeMethod* method)
{
{
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Boolean System.BitConverter::AmILittleEndian()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool BitConverter_AmILittleEndian_m695F6578BE14FC992D408719BDE53AAA21854C22 (const RuntimeMethod* method)
{
double V_0 = 0.0;
uint8_t* V_1 = NULL;
{
V_0 = (1.0);
V_1 = (uint8_t*)(((uintptr_t)(&V_0)));
uint8_t* L_0 = V_1;
int32_t L_1 = *((uint8_t*)L_0);
return (bool)((((int32_t)L_1) == ((int32_t)0))? 1 : 0);
}
}
// System.Byte[] System.BitConverter::GetBytes(System.Int16)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* BitConverter_GetBytes_m4178DFE7B47F12FAF452AA4742B16FC3BA9618A8 (int16_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (BitConverter_GetBytes_m4178DFE7B47F12FAF452AA4742B16FC3BA9618A8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
uint8_t* V_0 = NULL;
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* V_1 = NULL;
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* G_B2_0 = NULL;
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* G_B1_0 = NULL;
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* G_B3_0 = NULL;
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* G_B4_0 = NULL;
{
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_0 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)SZArrayNew(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var, (uint32_t)2);
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_1 = L_0;
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_2 = L_1;
V_1 = L_2;
G_B1_0 = L_1;
if (!L_2)
{
G_B2_0 = L_1;
goto IL_0010;
}
}
{
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_3 = V_1;
NullCheck(L_3);
G_B2_0 = G_B1_0;
if ((((int32_t)((int32_t)(((RuntimeArray*)L_3)->max_length)))))
{
G_B3_0 = G_B1_0;
goto IL_0015;
}
}
IL_0010:
{
V_0 = (uint8_t*)(((uintptr_t)0));
G_B4_0 = G_B2_0;
goto IL_001e;
}
IL_0015:
{
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_4 = V_1;
NullCheck(L_4);
V_0 = (uint8_t*)(((uintptr_t)((L_4)->GetAddressAt(static_cast<il2cpp_array_size_t>(0)))));
G_B4_0 = G_B3_0;
}
IL_001e:
{
uint8_t* L_5 = V_0;
int16_t L_6 = ___value0;
*((int16_t*)L_5) = (int16_t)L_6;
V_1 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)NULL;
return G_B4_0;
}
}
// System.Byte[] System.BitConverter::GetBytes(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* BitConverter_GetBytes_m5C926FE938C878F7E4E95A5DED46C34DB1431D39 (int32_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (BitConverter_GetBytes_m5C926FE938C878F7E4E95A5DED46C34DB1431D39_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
uint8_t* V_0 = NULL;
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* V_1 = NULL;
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* G_B2_0 = NULL;
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* G_B1_0 = NULL;
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* G_B3_0 = NULL;
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* G_B4_0 = NULL;
{
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_0 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)SZArrayNew(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var, (uint32_t)4);
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_1 = L_0;
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_2 = L_1;
V_1 = L_2;
G_B1_0 = L_1;
if (!L_2)
{
G_B2_0 = L_1;
goto IL_0010;
}
}
{
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_3 = V_1;
NullCheck(L_3);
G_B2_0 = G_B1_0;
if ((((int32_t)((int32_t)(((RuntimeArray*)L_3)->max_length)))))
{
G_B3_0 = G_B1_0;
goto IL_0015;
}
}
IL_0010:
{
V_0 = (uint8_t*)(((uintptr_t)0));
G_B4_0 = G_B2_0;
goto IL_001e;
}
IL_0015:
{
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_4 = V_1;
NullCheck(L_4);
V_0 = (uint8_t*)(((uintptr_t)((L_4)->GetAddressAt(static_cast<il2cpp_array_size_t>(0)))));
G_B4_0 = G_B3_0;
}
IL_001e:
{
uint8_t* L_5 = V_0;
int32_t L_6 = ___value0;
*((int32_t*)L_5) = (int32_t)L_6;
V_1 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)NULL;
return G_B4_0;
}
}
// System.Int16 System.BitConverter::ToInt16(System.Byte[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t BitConverter_ToInt16_mD217955ED0C3E56F79DECE745A38857E4A8F6C8E (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___value0, int32_t ___startIndex1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (BitConverter_ToInt16_mD217955ED0C3E56F79DECE745A38857E4A8F6C8E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
uint8_t* V_0 = NULL;
uint8_t* V_1 = NULL;
{
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_0 = ___value0;
if (L_0)
{
goto IL_000a;
}
}
{
ThrowHelper_ThrowArgumentNullException_m539081110B94B71D92C9761B273E617B23B4BBA5(((int32_t)15), /*hidden argument*/NULL);
}
IL_000a:
{
int32_t L_1 = ___startIndex1;
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_2 = ___value0;
NullCheck(L_2);
if ((((int64_t)(((int64_t)((uint64_t)(((uint32_t)((uint32_t)L_1))))))) < ((int64_t)(((int64_t)((int64_t)(((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length))))))))))
{
goto IL_001b;
}
}
{
ThrowHelper_ThrowArgumentOutOfRangeException_mFBB0FE021BE66E1402AAC69275C0EDB716E3CC11(((int32_t)14), ((int32_t)22), /*hidden argument*/NULL);
}
IL_001b:
{
int32_t L_3 = ___startIndex1;
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_4 = ___value0;
NullCheck(L_4);
if ((((int32_t)L_3) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))), (int32_t)2)))))
{
goto IL_0029;
}
}
{
ThrowHelper_ThrowArgumentException_m49831D19CFA6026A62C5D52FA7A8E162EBD4DD6A(5, /*hidden argument*/NULL);
}
IL_0029:
{
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_5 = ___value0;
int32_t L_6 = ___startIndex1;
NullCheck(L_5);
V_1 = (uint8_t*)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)));
uint8_t* L_7 = V_1;
V_0 = (uint8_t*)(((uintptr_t)L_7));
int32_t L_8 = ___startIndex1;
if (((int32_t)((int32_t)L_8%(int32_t)2)))
{
goto IL_003c;
}
}
{
uint8_t* L_9 = V_0;
int32_t L_10 = *((int16_t*)L_9);
return (int16_t)L_10;
}
IL_003c:
{
IL2CPP_RUNTIME_CLASS_INIT(BitConverter_t8DCBA24B909F1B221372AF2B37C76DCF614BA654_il2cpp_TypeInfo_var);
bool L_11 = ((BitConverter_t8DCBA24B909F1B221372AF2B37C76DCF614BA654_StaticFields*)il2cpp_codegen_static_fields_for(BitConverter_t8DCBA24B909F1B221372AF2B37C76DCF614BA654_il2cpp_TypeInfo_var))->get_IsLittleEndian_0();
if (!L_11)
{
goto IL_004e;
}
}
{
uint8_t* L_12 = V_0;
int32_t L_13 = *((uint8_t*)L_12);
uint8_t* L_14 = V_0;
int32_t L_15 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_14, (int32_t)1)));
return (((int16_t)((int16_t)((int32_t)((int32_t)L_13|(int32_t)((int32_t)((int32_t)L_15<<(int32_t)8)))))));
}
IL_004e:
{
uint8_t* L_16 = V_0;
int32_t L_17 = *((uint8_t*)L_16);
uint8_t* L_18 = V_0;
int32_t L_19 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_18, (int32_t)1)));
return (((int16_t)((int16_t)((int32_t)((int32_t)((int32_t)((int32_t)L_17<<(int32_t)8))|(int32_t)L_19)))));
}
}
// System.Int32 System.BitConverter::ToInt32(System.Byte[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t BitConverter_ToInt32_m09562D0C66673FA4883600754E82F22CAFED8892 (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___value0, int32_t ___startIndex1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (BitConverter_ToInt32_m09562D0C66673FA4883600754E82F22CAFED8892_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
uint8_t* V_0 = NULL;
uint8_t* V_1 = NULL;
{
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_0 = ___value0;
if (L_0)
{
goto IL_000a;
}
}
{
ThrowHelper_ThrowArgumentNullException_m539081110B94B71D92C9761B273E617B23B4BBA5(((int32_t)15), /*hidden argument*/NULL);
}
IL_000a:
{
int32_t L_1 = ___startIndex1;
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_2 = ___value0;
NullCheck(L_2);
if ((((int64_t)(((int64_t)((uint64_t)(((uint32_t)((uint32_t)L_1))))))) < ((int64_t)(((int64_t)((int64_t)(((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length))))))))))
{
goto IL_001b;
}
}
{
ThrowHelper_ThrowArgumentOutOfRangeException_mFBB0FE021BE66E1402AAC69275C0EDB716E3CC11(((int32_t)14), ((int32_t)22), /*hidden argument*/NULL);
}
IL_001b:
{
int32_t L_3 = ___startIndex1;
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_4 = ___value0;
NullCheck(L_4);
if ((((int32_t)L_3) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))), (int32_t)4)))))
{
goto IL_0029;
}
}
{
ThrowHelper_ThrowArgumentException_m49831D19CFA6026A62C5D52FA7A8E162EBD4DD6A(5, /*hidden argument*/NULL);
}
IL_0029:
{
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_5 = ___value0;
int32_t L_6 = ___startIndex1;
NullCheck(L_5);
V_1 = (uint8_t*)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)));
uint8_t* L_7 = V_1;
V_0 = (uint8_t*)(((uintptr_t)L_7));
int32_t L_8 = ___startIndex1;
if (((int32_t)((int32_t)L_8%(int32_t)4)))
{
goto IL_003c;
}
}
{
uint8_t* L_9 = V_0;
int32_t L_10 = *((int32_t*)L_9);
return L_10;
}
IL_003c:
{
IL2CPP_RUNTIME_CLASS_INIT(BitConverter_t8DCBA24B909F1B221372AF2B37C76DCF614BA654_il2cpp_TypeInfo_var);
bool L_11 = ((BitConverter_t8DCBA24B909F1B221372AF2B37C76DCF614BA654_StaticFields*)il2cpp_codegen_static_fields_for(BitConverter_t8DCBA24B909F1B221372AF2B37C76DCF614BA654_il2cpp_TypeInfo_var))->get_IsLittleEndian_0();
if (!L_11)
{
goto IL_005d;
}
}
{
uint8_t* L_12 = V_0;
int32_t L_13 = *((uint8_t*)L_12);
uint8_t* L_14 = V_0;
int32_t L_15 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_14, (int32_t)1)));
uint8_t* L_16 = V_0;
int32_t L_17 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_16, (int32_t)2)));
uint8_t* L_18 = V_0;
int32_t L_19 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_18, (int32_t)3)));
return ((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_13|(int32_t)((int32_t)((int32_t)L_15<<(int32_t)8))))|(int32_t)((int32_t)((int32_t)L_17<<(int32_t)((int32_t)16)))))|(int32_t)((int32_t)((int32_t)L_19<<(int32_t)((int32_t)24)))));
}
IL_005d:
{
uint8_t* L_20 = V_0;
int32_t L_21 = *((uint8_t*)L_20);
uint8_t* L_22 = V_0;
int32_t L_23 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_22, (int32_t)1)));
uint8_t* L_24 = V_0;
int32_t L_25 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_24, (int32_t)2)));
uint8_t* L_26 = V_0;
int32_t L_27 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_26, (int32_t)3)));
return ((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_21<<(int32_t)((int32_t)24)))|(int32_t)((int32_t)((int32_t)L_23<<(int32_t)((int32_t)16)))))|(int32_t)((int32_t)((int32_t)L_25<<(int32_t)8))))|(int32_t)L_27));
}
}
// System.Int64 System.BitConverter::ToInt64(System.Byte[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t BitConverter_ToInt64_m6B5A5B4C68D036256417E9348FA25A257015B37E (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___value0, int32_t ___startIndex1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (BitConverter_ToInt64_m6B5A5B4C68D036256417E9348FA25A257015B37E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
uint8_t* V_0 = NULL;
uint8_t* V_1 = NULL;
int32_t V_2 = 0;
int32_t V_3 = 0;
{
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_0 = ___value0;
if (L_0)
{
goto IL_000a;
}
}
{
ThrowHelper_ThrowArgumentNullException_m539081110B94B71D92C9761B273E617B23B4BBA5(((int32_t)15), /*hidden argument*/NULL);
}
IL_000a:
{
int32_t L_1 = ___startIndex1;
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_2 = ___value0;
NullCheck(L_2);
if ((((int64_t)(((int64_t)((uint64_t)(((uint32_t)((uint32_t)L_1))))))) < ((int64_t)(((int64_t)((int64_t)(((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length))))))))))
{
goto IL_001b;
}
}
{
ThrowHelper_ThrowArgumentOutOfRangeException_mFBB0FE021BE66E1402AAC69275C0EDB716E3CC11(((int32_t)14), ((int32_t)22), /*hidden argument*/NULL);
}
IL_001b:
{
int32_t L_3 = ___startIndex1;
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_4 = ___value0;
NullCheck(L_4);
if ((((int32_t)L_3) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))), (int32_t)8)))))
{
goto IL_0029;
}
}
{
ThrowHelper_ThrowArgumentException_m49831D19CFA6026A62C5D52FA7A8E162EBD4DD6A(5, /*hidden argument*/NULL);
}
IL_0029:
{
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_5 = ___value0;
int32_t L_6 = ___startIndex1;
NullCheck(L_5);
V_1 = (uint8_t*)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)));
uint8_t* L_7 = V_1;
V_0 = (uint8_t*)(((uintptr_t)L_7));
int32_t L_8 = ___startIndex1;
if (((int32_t)((int32_t)L_8%(int32_t)8)))
{
goto IL_003c;
}
}
{
uint8_t* L_9 = V_0;
int64_t L_10 = *((int64_t*)L_9);
return L_10;
}
IL_003c:
{
IL2CPP_RUNTIME_CLASS_INIT(BitConverter_t8DCBA24B909F1B221372AF2B37C76DCF614BA654_il2cpp_TypeInfo_var);
bool L_11 = ((BitConverter_t8DCBA24B909F1B221372AF2B37C76DCF614BA654_StaticFields*)il2cpp_codegen_static_fields_for(BitConverter_t8DCBA24B909F1B221372AF2B37C76DCF614BA654_il2cpp_TypeInfo_var))->get_IsLittleEndian_0();
if (!L_11)
{
goto IL_0080;
}
}
{
uint8_t* L_12 = V_0;
int32_t L_13 = *((uint8_t*)L_12);
uint8_t* L_14 = V_0;
int32_t L_15 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_14, (int32_t)1)));
uint8_t* L_16 = V_0;
int32_t L_17 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_16, (int32_t)2)));
uint8_t* L_18 = V_0;
int32_t L_19 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_18, (int32_t)3)));
uint8_t* L_20 = V_0;
int32_t L_21 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_20, (int32_t)4)));
uint8_t* L_22 = V_0;
int32_t L_23 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_22, (int32_t)5)));
uint8_t* L_24 = V_0;
int32_t L_25 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_24, (int32_t)6)));
uint8_t* L_26 = V_0;
int32_t L_27 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_26, (int32_t)7)));
V_2 = ((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_21|(int32_t)((int32_t)((int32_t)L_23<<(int32_t)8))))|(int32_t)((int32_t)((int32_t)L_25<<(int32_t)((int32_t)16)))))|(int32_t)((int32_t)((int32_t)L_27<<(int32_t)((int32_t)24)))));
int32_t L_28 = V_2;
return ((int64_t)((int64_t)(((int64_t)((uint64_t)(((uint32_t)((uint32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_13|(int32_t)((int32_t)((int32_t)L_15<<(int32_t)8))))|(int32_t)((int32_t)((int32_t)L_17<<(int32_t)((int32_t)16)))))|(int32_t)((int32_t)((int32_t)L_19<<(int32_t)((int32_t)24)))))))))))|(int64_t)((int64_t)((int64_t)(((int64_t)((int64_t)L_28)))<<(int32_t)((int32_t)32)))));
}
IL_0080:
{
uint8_t* L_29 = V_0;
int32_t L_30 = *((uint8_t*)L_29);
uint8_t* L_31 = V_0;
int32_t L_32 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_31, (int32_t)1)));
uint8_t* L_33 = V_0;
int32_t L_34 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_33, (int32_t)2)));
uint8_t* L_35 = V_0;
int32_t L_36 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_35, (int32_t)3)));
V_3 = ((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_30<<(int32_t)((int32_t)24)))|(int32_t)((int32_t)((int32_t)L_32<<(int32_t)((int32_t)16)))))|(int32_t)((int32_t)((int32_t)L_34<<(int32_t)8))))|(int32_t)L_36));
uint8_t* L_37 = V_0;
int32_t L_38 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_37, (int32_t)4)));
uint8_t* L_39 = V_0;
int32_t L_40 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_39, (int32_t)5)));
uint8_t* L_41 = V_0;
int32_t L_42 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_41, (int32_t)6)));
uint8_t* L_43 = V_0;
int32_t L_44 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_43, (int32_t)7)));
int32_t L_45 = V_3;
return ((int64_t)((int64_t)(((int64_t)((uint64_t)(((uint32_t)((uint32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_38<<(int32_t)((int32_t)24)))|(int32_t)((int32_t)((int32_t)L_40<<(int32_t)((int32_t)16)))))|(int32_t)((int32_t)((int32_t)L_42<<(int32_t)8))))|(int32_t)L_44))))))))|(int64_t)((int64_t)((int64_t)(((int64_t)((int64_t)L_45)))<<(int32_t)((int32_t)32)))));
}
}
// System.UInt16 System.BitConverter::ToUInt16(System.Byte[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t BitConverter_ToUInt16_mC0BC841737707601466D79AD3E1EDEEA8F107525 (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___value0, int32_t ___startIndex1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (BitConverter_ToUInt16_mC0BC841737707601466D79AD3E1EDEEA8F107525_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_0 = ___value0;
if (L_0)
{
goto IL_000a;
}
}
{
ThrowHelper_ThrowArgumentNullException_m539081110B94B71D92C9761B273E617B23B4BBA5(((int32_t)15), /*hidden argument*/NULL);
}
IL_000a:
{
int32_t L_1 = ___startIndex1;
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_2 = ___value0;
NullCheck(L_2);
if ((((int64_t)(((int64_t)((uint64_t)(((uint32_t)((uint32_t)L_1))))))) < ((int64_t)(((int64_t)((int64_t)(((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length))))))))))
{
goto IL_001b;
}
}
{
ThrowHelper_ThrowArgumentOutOfRangeException_mFBB0FE021BE66E1402AAC69275C0EDB716E3CC11(((int32_t)14), ((int32_t)22), /*hidden argument*/NULL);
}
IL_001b:
{
int32_t L_3 = ___startIndex1;
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_4 = ___value0;
NullCheck(L_4);
if ((((int32_t)L_3) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))), (int32_t)2)))))
{
goto IL_0029;
}
}
{
ThrowHelper_ThrowArgumentException_m49831D19CFA6026A62C5D52FA7A8E162EBD4DD6A(5, /*hidden argument*/NULL);
}
IL_0029:
{
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_5 = ___value0;
int32_t L_6 = ___startIndex1;
IL2CPP_RUNTIME_CLASS_INIT(BitConverter_t8DCBA24B909F1B221372AF2B37C76DCF614BA654_il2cpp_TypeInfo_var);
int16_t L_7 = BitConverter_ToInt16_mD217955ED0C3E56F79DECE745A38857E4A8F6C8E(L_5, L_6, /*hidden argument*/NULL);
return (uint16_t)(((int32_t)((uint16_t)L_7)));
}
}
// System.UInt32 System.BitConverter::ToUInt32(System.Byte[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t BitConverter_ToUInt32_m0C9F3D9840110CC82D4C18FD882AC5C7EA595366 (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___value0, int32_t ___startIndex1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (BitConverter_ToUInt32_m0C9F3D9840110CC82D4C18FD882AC5C7EA595366_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_0 = ___value0;
if (L_0)
{
goto IL_000a;
}
}
{
ThrowHelper_ThrowArgumentNullException_m539081110B94B71D92C9761B273E617B23B4BBA5(((int32_t)15), /*hidden argument*/NULL);
}
IL_000a:
{
int32_t L_1 = ___startIndex1;
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_2 = ___value0;
NullCheck(L_2);
if ((((int64_t)(((int64_t)((uint64_t)(((uint32_t)((uint32_t)L_1))))))) < ((int64_t)(((int64_t)((int64_t)(((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length))))))))))
{
goto IL_001b;
}
}
{
ThrowHelper_ThrowArgumentOutOfRangeException_mFBB0FE021BE66E1402AAC69275C0EDB716E3CC11(((int32_t)14), ((int32_t)22), /*hidden argument*/NULL);
}
IL_001b:
{
int32_t L_3 = ___startIndex1;
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_4 = ___value0;
NullCheck(L_4);
if ((((int32_t)L_3) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))), (int32_t)4)))))
{
goto IL_0029;
}
}
{
ThrowHelper_ThrowArgumentException_m49831D19CFA6026A62C5D52FA7A8E162EBD4DD6A(5, /*hidden argument*/NULL);
}
IL_0029:
{
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_5 = ___value0;
int32_t L_6 = ___startIndex1;
IL2CPP_RUNTIME_CLASS_INIT(BitConverter_t8DCBA24B909F1B221372AF2B37C76DCF614BA654_il2cpp_TypeInfo_var);
int32_t L_7 = BitConverter_ToInt32_m09562D0C66673FA4883600754E82F22CAFED8892(L_5, L_6, /*hidden argument*/NULL);
return L_7;
}
}
// System.UInt64 System.BitConverter::ToUInt64(System.Byte[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t BitConverter_ToUInt64_m31CEAF20A0774C6BB55663CD8A06EBCD4C1F79BC (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___value0, int32_t ___startIndex1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (BitConverter_ToUInt64_m31CEAF20A0774C6BB55663CD8A06EBCD4C1F79BC_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_0 = ___value0;
if (L_0)
{
goto IL_000a;
}
}
{
ThrowHelper_ThrowArgumentNullException_m539081110B94B71D92C9761B273E617B23B4BBA5(((int32_t)15), /*hidden argument*/NULL);
}
IL_000a:
{
int32_t L_1 = ___startIndex1;
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_2 = ___value0;
NullCheck(L_2);
if ((((int64_t)(((int64_t)((uint64_t)(((uint32_t)((uint32_t)L_1))))))) < ((int64_t)(((int64_t)((int64_t)(((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length))))))))))
{
goto IL_001b;
}
}
{
ThrowHelper_ThrowArgumentOutOfRangeException_mFBB0FE021BE66E1402AAC69275C0EDB716E3CC11(((int32_t)14), ((int32_t)22), /*hidden argument*/NULL);
}
IL_001b:
{
int32_t L_3 = ___startIndex1;
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_4 = ___value0;
NullCheck(L_4);
if ((((int32_t)L_3) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))), (int32_t)8)))))
{
goto IL_0029;
}
}
{
ThrowHelper_ThrowArgumentException_m49831D19CFA6026A62C5D52FA7A8E162EBD4DD6A(5, /*hidden argument*/NULL);
}
IL_0029:
{
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_5 = ___value0;
int32_t L_6 = ___startIndex1;
IL2CPP_RUNTIME_CLASS_INIT(BitConverter_t8DCBA24B909F1B221372AF2B37C76DCF614BA654_il2cpp_TypeInfo_var);
int64_t L_7 = BitConverter_ToInt64_m6B5A5B4C68D036256417E9348FA25A257015B37E(L_5, L_6, /*hidden argument*/NULL);
return L_7;
}
}
// System.Char System.BitConverter::GetHexValue(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar BitConverter_GetHexValue_m73A44406CF631AC751E6EC1F928120452D68440E (int32_t ___i0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___i0;
if ((((int32_t)L_0) >= ((int32_t)((int32_t)10))))
{
goto IL_000b;
}
}
{
int32_t L_1 = ___i0;
return (((int32_t)((uint16_t)((int32_t)il2cpp_codegen_add((int32_t)L_1, (int32_t)((int32_t)48))))));
}
IL_000b:
{
int32_t L_2 = ___i0;
return (((int32_t)((uint16_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_2, (int32_t)((int32_t)10))), (int32_t)((int32_t)65))))));
}
}
// System.String System.BitConverter::ToString(System.Byte[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* BitConverter_ToString_mE20B739ACCBA32463B83D761E536DF965A63538D (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___value0, int32_t ___startIndex1, int32_t ___length2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (BitConverter_ToString_mE20B739ACCBA32463B83D761E536DF965A63538D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* V_1 = NULL;
int32_t V_2 = 0;
int32_t V_3 = 0;
uint8_t V_4 = 0x0;
{
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_0 = ___value0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, _stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, BitConverter_ToString_mE20B739ACCBA32463B83D761E536DF965A63538D_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___startIndex1;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_001c;
}
}
{
int32_t L_3 = ___startIndex1;
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_4 = ___value0;
NullCheck(L_4);
if ((((int32_t)L_3) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))))))
{
goto IL_0031;
}
}
{
int32_t L_5 = ___startIndex1;
if ((((int32_t)L_5) <= ((int32_t)0)))
{
goto IL_0031;
}
}
IL_001c:
{
String_t* L_6 = Environment_GetResourceString_m8DFF827596B5FD533D3FE56900FA095F7D674617(_stringLiteralB2594614979852FD5C1EC00AAADD8DAA7E798A66, /*hidden argument*/NULL);
ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_7 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_mE43AFC74F5F3932913C023A04B24905E093C5005(L_7, _stringLiteralE68FFE708FFE8FC1D5DA3BEDB8B81DE1CCC64C34, L_6, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, BitConverter_ToString_mE20B739ACCBA32463B83D761E536DF965A63538D_RuntimeMethod_var);
}
IL_0031:
{
int32_t L_8 = ___length2;
if ((((int32_t)L_8) >= ((int32_t)0)))
{
goto IL_004a;
}
}
{
String_t* L_9 = Environment_GetResourceString_m8DFF827596B5FD533D3FE56900FA095F7D674617(_stringLiteral36A2069F2EBB68A1BE4AF9D9FF3B475C9EE76A26, /*hidden argument*/NULL);
ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_10 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_mE43AFC74F5F3932913C023A04B24905E093C5005(L_10, _stringLiteralE8744A8B8BD390EB66CA0CAE2376C973E6904FFB, L_9, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, BitConverter_ToString_mE20B739ACCBA32463B83D761E536DF965A63538D_RuntimeMethod_var);
}
IL_004a:
{
int32_t L_11 = ___startIndex1;
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_12 = ___value0;
NullCheck(L_12);
int32_t L_13 = ___length2;
if ((((int32_t)L_11) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_12)->max_length)))), (int32_t)L_13)))))
{
goto IL_0062;
}
}
{
String_t* L_14 = Environment_GetResourceString_m8DFF827596B5FD533D3FE56900FA095F7D674617(_stringLiteral3ECE023333DCF45DE7B1FEAFFE30E295210DDD9B, /*hidden argument*/NULL);
ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_15 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var);
ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_15, L_14, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, BitConverter_ToString_mE20B739ACCBA32463B83D761E536DF965A63538D_RuntimeMethod_var);
}
IL_0062:
{
int32_t L_16 = ___length2;
if (L_16)
{
goto IL_006b;
}
}
{
String_t* L_17 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5();
return L_17;
}
IL_006b:
{
int32_t L_18 = ___length2;
if ((((int32_t)L_18) <= ((int32_t)((int32_t)715827882))))
{
goto IL_009b;
}
}
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_19 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_20 = L_19;
int32_t L_21 = ((int32_t)715827882);
RuntimeObject * L_22 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_21);
NullCheck(L_20);
ArrayElementTypeCheck (L_20, L_22);
(L_20)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_22);
String_t* L_23 = Environment_GetResourceString_m9A30EE9F4E10F48B79F9EB56D18D52AE7E7EB602(_stringLiteralBF27849B63507F7B8C2FC6FE9C5EFB62BF8543C8, L_20, /*hidden argument*/NULL);
ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_24 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_mE43AFC74F5F3932913C023A04B24905E093C5005(L_24, _stringLiteralE8744A8B8BD390EB66CA0CAE2376C973E6904FFB, L_23, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_24, BitConverter_ToString_mE20B739ACCBA32463B83D761E536DF965A63538D_RuntimeMethod_var);
}
IL_009b:
{
int32_t L_25 = ___length2;
V_0 = ((int32_t)il2cpp_codegen_multiply((int32_t)L_25, (int32_t)3));
int32_t L_26 = V_0;
CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_27 = (CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34*)(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34*)SZArrayNew(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34_il2cpp_TypeInfo_var, (uint32_t)L_26);
V_1 = L_27;
V_2 = 0;
int32_t L_28 = ___startIndex1;
V_3 = L_28;
V_2 = 0;
goto IL_00de;
}
IL_00ae:
{
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_29 = ___value0;
int32_t L_30 = V_3;
int32_t L_31 = L_30;
V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_31, (int32_t)1));
NullCheck(L_29);
int32_t L_32 = L_31;
uint8_t L_33 = (L_29)->GetAt(static_cast<il2cpp_array_size_t>(L_32));
V_4 = L_33;
CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_34 = V_1;
int32_t L_35 = V_2;
uint8_t L_36 = V_4;
IL2CPP_RUNTIME_CLASS_INIT(BitConverter_t8DCBA24B909F1B221372AF2B37C76DCF614BA654_il2cpp_TypeInfo_var);
Il2CppChar L_37 = BitConverter_GetHexValue_m73A44406CF631AC751E6EC1F928120452D68440E(((int32_t)((int32_t)L_36/(int32_t)((int32_t)16))), /*hidden argument*/NULL);
NullCheck(L_34);
(L_34)->SetAt(static_cast<il2cpp_array_size_t>(L_35), (Il2CppChar)L_37);
CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_38 = V_1;
int32_t L_39 = V_2;
uint8_t L_40 = V_4;
Il2CppChar L_41 = BitConverter_GetHexValue_m73A44406CF631AC751E6EC1F928120452D68440E(((int32_t)((int32_t)L_40%(int32_t)((int32_t)16))), /*hidden argument*/NULL);
NullCheck(L_38);
(L_38)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_add((int32_t)L_39, (int32_t)1))), (Il2CppChar)L_41);
CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_42 = V_1;
int32_t L_43 = V_2;
NullCheck(L_42);
(L_42)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_add((int32_t)L_43, (int32_t)2))), (Il2CppChar)((int32_t)45));
int32_t L_44 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_44, (int32_t)3));
}
IL_00de:
{
int32_t L_45 = V_2;
int32_t L_46 = V_0;
if ((((int32_t)L_45) < ((int32_t)L_46)))
{
goto IL_00ae;
}
}
{
CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_47 = V_1;
CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_48 = V_1;
NullCheck(L_48);
String_t* L_49 = String_CreateString_m16F181739FD8BA877868803DE2CE0EF0A4668D0E(NULL, L_47, 0, ((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_48)->max_length)))), (int32_t)1)), /*hidden argument*/NULL);
return L_49;
}
}
// System.String System.BitConverter::ToString(System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* BitConverter_ToString_mD476DB63219FD7C7FFB472ABEB04A8BB2D171F30 (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (BitConverter_ToString_mD476DB63219FD7C7FFB472ABEB04A8BB2D171F30_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_0 = ___value0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, _stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, BitConverter_ToString_mD476DB63219FD7C7FFB472ABEB04A8BB2D171F30_RuntimeMethod_var);
}
IL_000e:
{
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_2 = ___value0;
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_3 = ___value0;
NullCheck(L_3);
IL2CPP_RUNTIME_CLASS_INIT(BitConverter_t8DCBA24B909F1B221372AF2B37C76DCF614BA654_il2cpp_TypeInfo_var);
String_t* L_4 = BitConverter_ToString_mE20B739ACCBA32463B83D761E536DF965A63538D(L_2, 0, (((int32_t)((int32_t)(((RuntimeArray*)L_3)->max_length)))), /*hidden argument*/NULL);
return L_4;
}
}
// System.Int64 System.BitConverter::DoubleToInt64Bits(System.Double)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t BitConverter_DoubleToInt64Bits_m78E6144E962221C2F0A920C217754944BCF1DACA (double ___value0, const RuntimeMethod* method)
{
{
int64_t L_0 = *((int64_t*)(((uintptr_t)(&___value0))));
return L_0;
}
}
// System.Double System.BitConverter::Int64BitsToDouble(System.Int64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double BitConverter_Int64BitsToDouble_mD5FF86608B780417E27E16B6B8D6F1FEECACFB99 (int64_t ___value0, const RuntimeMethod* method)
{
{
double L_0 = *((double*)(((uintptr_t)(&___value0))));
return L_0;
}
}
// System.Void System.BitConverter::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BitConverter__cctor_m061BF2E95EB2EB81F7B98173886DBC0C690634F7 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (BitConverter__cctor_m061BF2E95EB2EB81F7B98173886DBC0C690634F7_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
bool L_0 = BitConverter_AmILittleEndian_m695F6578BE14FC992D408719BDE53AAA21854C22(/*hidden argument*/NULL);
((BitConverter_t8DCBA24B909F1B221372AF2B37C76DCF614BA654_StaticFields*)il2cpp_codegen_static_fields_for(BitConverter_t8DCBA24B909F1B221372AF2B37C76DCF614BA654_il2cpp_TypeInfo_var))->set_IsLittleEndian_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Byte[] Mono.Security.BitConverterLE::GetUIntBytes(System.Byte*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* BitConverterLE_GetUIntBytes_mB263FB37527737393A67D9B5679D33EA28232F77 (uint8_t* ___bytes0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (BitConverterLE_GetUIntBytes_mB263FB37527737393A67D9B5679D33EA28232F77_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(BitConverter_t8DCBA24B909F1B221372AF2B37C76DCF614BA654_il2cpp_TypeInfo_var);
bool L_0 = ((BitConverter_t8DCBA24B909F1B221372AF2B37C76DCF614BA654_StaticFields*)il2cpp_codegen_static_fields_for(BitConverter_t8DCBA24B909F1B221372AF2B37C76DCF614BA654_il2cpp_TypeInfo_var))->get_IsLittleEndian_0();
if (!L_0)
{
goto IL_0028;
}
}
{
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_1 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)SZArrayNew(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var, (uint32_t)4);
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_2 = L_1;
uint8_t* L_3 = ___bytes0;
int32_t L_4 = *((uint8_t*)L_3);
NullCheck(L_2);
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(0), (uint8_t)L_4);
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_5 = L_2;
uint8_t* L_6 = ___bytes0;
int32_t L_7 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_6, (int32_t)1)));
NullCheck(L_5);
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(1), (uint8_t)L_7);
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_8 = L_5;
uint8_t* L_9 = ___bytes0;
int32_t L_10 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_9, (int32_t)2)));
NullCheck(L_8);
(L_8)->SetAt(static_cast<il2cpp_array_size_t>(2), (uint8_t)L_10);
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_11 = L_8;
uint8_t* L_12 = ___bytes0;
int32_t L_13 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_12, (int32_t)3)));
NullCheck(L_11);
(L_11)->SetAt(static_cast<il2cpp_array_size_t>(3), (uint8_t)L_13);
return L_11;
}
IL_0028:
{
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_14 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)SZArrayNew(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var, (uint32_t)4);
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_15 = L_14;
uint8_t* L_16 = ___bytes0;
int32_t L_17 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_16, (int32_t)3)));
NullCheck(L_15);
(L_15)->SetAt(static_cast<il2cpp_array_size_t>(0), (uint8_t)L_17);
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_18 = L_15;
uint8_t* L_19 = ___bytes0;
int32_t L_20 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_19, (int32_t)2)));
NullCheck(L_18);
(L_18)->SetAt(static_cast<il2cpp_array_size_t>(1), (uint8_t)L_20);
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_21 = L_18;
uint8_t* L_22 = ___bytes0;
int32_t L_23 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_22, (int32_t)1)));
NullCheck(L_21);
(L_21)->SetAt(static_cast<il2cpp_array_size_t>(2), (uint8_t)L_23);
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_24 = L_21;
uint8_t* L_25 = ___bytes0;
int32_t L_26 = *((uint8_t*)L_25);
NullCheck(L_24);
(L_24)->SetAt(static_cast<il2cpp_array_size_t>(3), (uint8_t)L_26);
return L_24;
}
}
// System.Byte[] Mono.Security.BitConverterLE::GetULongBytes(System.Byte*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* BitConverterLE_GetULongBytes_m9B99F60A322A538DED6831250485076B068FBB3F (uint8_t* ___bytes0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (BitConverterLE_GetULongBytes_m9B99F60A322A538DED6831250485076B068FBB3F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(BitConverter_t8DCBA24B909F1B221372AF2B37C76DCF614BA654_il2cpp_TypeInfo_var);
bool L_0 = ((BitConverter_t8DCBA24B909F1B221372AF2B37C76DCF614BA654_StaticFields*)il2cpp_codegen_static_fields_for(BitConverter_t8DCBA24B909F1B221372AF2B37C76DCF614BA654_il2cpp_TypeInfo_var))->get_IsLittleEndian_0();
if (!L_0)
{
goto IL_0044;
}
}
{
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_1 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)SZArrayNew(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var, (uint32_t)8);
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_2 = L_1;
uint8_t* L_3 = ___bytes0;
int32_t L_4 = *((uint8_t*)L_3);
NullCheck(L_2);
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(0), (uint8_t)L_4);
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_5 = L_2;
uint8_t* L_6 = ___bytes0;
int32_t L_7 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_6, (int32_t)1)));
NullCheck(L_5);
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(1), (uint8_t)L_7);
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_8 = L_5;
uint8_t* L_9 = ___bytes0;
int32_t L_10 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_9, (int32_t)2)));
NullCheck(L_8);
(L_8)->SetAt(static_cast<il2cpp_array_size_t>(2), (uint8_t)L_10);
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_11 = L_8;
uint8_t* L_12 = ___bytes0;
int32_t L_13 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_12, (int32_t)3)));
NullCheck(L_11);
(L_11)->SetAt(static_cast<il2cpp_array_size_t>(3), (uint8_t)L_13);
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_14 = L_11;
uint8_t* L_15 = ___bytes0;
int32_t L_16 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_15, (int32_t)4)));
NullCheck(L_14);
(L_14)->SetAt(static_cast<il2cpp_array_size_t>(4), (uint8_t)L_16);
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_17 = L_14;
uint8_t* L_18 = ___bytes0;
int32_t L_19 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_18, (int32_t)5)));
NullCheck(L_17);
(L_17)->SetAt(static_cast<il2cpp_array_size_t>(5), (uint8_t)L_19);
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_20 = L_17;
uint8_t* L_21 = ___bytes0;
int32_t L_22 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_21, (int32_t)6)));
NullCheck(L_20);
(L_20)->SetAt(static_cast<il2cpp_array_size_t>(6), (uint8_t)L_22);
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_23 = L_20;
uint8_t* L_24 = ___bytes0;
int32_t L_25 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_24, (int32_t)7)));
NullCheck(L_23);
(L_23)->SetAt(static_cast<il2cpp_array_size_t>(7), (uint8_t)L_25);
return L_23;
}
IL_0044:
{
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_26 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)SZArrayNew(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var, (uint32_t)8);
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_27 = L_26;
uint8_t* L_28 = ___bytes0;
int32_t L_29 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_28, (int32_t)7)));
NullCheck(L_27);
(L_27)->SetAt(static_cast<il2cpp_array_size_t>(0), (uint8_t)L_29);
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_30 = L_27;
uint8_t* L_31 = ___bytes0;
int32_t L_32 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_31, (int32_t)6)));
NullCheck(L_30);
(L_30)->SetAt(static_cast<il2cpp_array_size_t>(1), (uint8_t)L_32);
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_33 = L_30;
uint8_t* L_34 = ___bytes0;
int32_t L_35 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_34, (int32_t)5)));
NullCheck(L_33);
(L_33)->SetAt(static_cast<il2cpp_array_size_t>(2), (uint8_t)L_35);
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_36 = L_33;
uint8_t* L_37 = ___bytes0;
int32_t L_38 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_37, (int32_t)4)));
NullCheck(L_36);
(L_36)->SetAt(static_cast<il2cpp_array_size_t>(3), (uint8_t)L_38);
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_39 = L_36;
uint8_t* L_40 = ___bytes0;
int32_t L_41 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_40, (int32_t)3)));
NullCheck(L_39);
(L_39)->SetAt(static_cast<il2cpp_array_size_t>(4), (uint8_t)L_41);
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_42 = L_39;
uint8_t* L_43 = ___bytes0;
int32_t L_44 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_43, (int32_t)2)));
NullCheck(L_42);
(L_42)->SetAt(static_cast<il2cpp_array_size_t>(5), (uint8_t)L_44);
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_45 = L_42;
uint8_t* L_46 = ___bytes0;
int32_t L_47 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_46, (int32_t)1)));
NullCheck(L_45);
(L_45)->SetAt(static_cast<il2cpp_array_size_t>(6), (uint8_t)L_47);
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_48 = L_45;
uint8_t* L_49 = ___bytes0;
int32_t L_50 = *((uint8_t*)L_49);
NullCheck(L_48);
(L_48)->SetAt(static_cast<il2cpp_array_size_t>(7), (uint8_t)L_50);
return L_48;
}
}
// System.Byte[] Mono.Security.BitConverterLE::GetBytes(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* BitConverterLE_GetBytes_m6C0597EE535CAAC1D234008CEA6382C15ED3EE3A (float ___value0, const RuntimeMethod* method)
{
{
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_0 = BitConverterLE_GetUIntBytes_mB263FB37527737393A67D9B5679D33EA28232F77((uint8_t*)(uint8_t*)(((uintptr_t)(&___value0))), /*hidden argument*/NULL);
return L_0;
}
}
// System.Byte[] Mono.Security.BitConverterLE::GetBytes(System.Double)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* BitConverterLE_GetBytes_m6A2983F0B26E60784B5D7AC25E6B18D7F2B56C07 (double ___value0, const RuntimeMethod* method)
{
{
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_0 = BitConverterLE_GetULongBytes_m9B99F60A322A538DED6831250485076B068FBB3F((uint8_t*)(uint8_t*)(((uintptr_t)(&___value0))), /*hidden argument*/NULL);
return L_0;
}
}
// System.Void Mono.Security.BitConverterLE::UIntFromBytes(System.Byte*,System.Byte[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BitConverterLE_UIntFromBytes_mD54557321A7C885F5DC739D16D05BD208C882835 (uint8_t* ___dst0, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___src1, int32_t ___startIndex2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (BitConverterLE_UIntFromBytes_mD54557321A7C885F5DC739D16D05BD208C882835_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(BitConverter_t8DCBA24B909F1B221372AF2B37C76DCF614BA654_il2cpp_TypeInfo_var);
bool L_0 = ((BitConverter_t8DCBA24B909F1B221372AF2B37C76DCF614BA654_StaticFields*)il2cpp_codegen_static_fields_for(BitConverter_t8DCBA24B909F1B221372AF2B37C76DCF614BA654_il2cpp_TypeInfo_var))->get_IsLittleEndian_0();
if (!L_0)
{
goto IL_0028;
}
}
{
uint8_t* L_1 = ___dst0;
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_2 = ___src1;
int32_t L_3 = ___startIndex2;
NullCheck(L_2);
int32_t L_4 = L_3;
uint8_t L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
*((int8_t*)L_1) = (int8_t)L_5;
uint8_t* L_6 = ___dst0;
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_7 = ___src1;
int32_t L_8 = ___startIndex2;
NullCheck(L_7);
int32_t L_9 = ((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1));
uint8_t L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_6, (int32_t)1))) = (int8_t)L_10;
uint8_t* L_11 = ___dst0;
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_12 = ___src1;
int32_t L_13 = ___startIndex2;
NullCheck(L_12);
int32_t L_14 = ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)2));
uint8_t L_15 = (L_12)->GetAt(static_cast<il2cpp_array_size_t>(L_14));
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_11, (int32_t)2))) = (int8_t)L_15;
uint8_t* L_16 = ___dst0;
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_17 = ___src1;
int32_t L_18 = ___startIndex2;
NullCheck(L_17);
int32_t L_19 = ((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)3));
uint8_t L_20 = (L_17)->GetAt(static_cast<il2cpp_array_size_t>(L_19));
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_16, (int32_t)3))) = (int8_t)L_20;
return;
}
IL_0028:
{
uint8_t* L_21 = ___dst0;
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_22 = ___src1;
int32_t L_23 = ___startIndex2;
NullCheck(L_22);
int32_t L_24 = ((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)3));
uint8_t L_25 = (L_22)->GetAt(static_cast<il2cpp_array_size_t>(L_24));
*((int8_t*)L_21) = (int8_t)L_25;
uint8_t* L_26 = ___dst0;
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_27 = ___src1;
int32_t L_28 = ___startIndex2;
NullCheck(L_27);
int32_t L_29 = ((int32_t)il2cpp_codegen_add((int32_t)L_28, (int32_t)2));
uint8_t L_30 = (L_27)->GetAt(static_cast<il2cpp_array_size_t>(L_29));
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_26, (int32_t)1))) = (int8_t)L_30;
uint8_t* L_31 = ___dst0;
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_32 = ___src1;
int32_t L_33 = ___startIndex2;
NullCheck(L_32);
int32_t L_34 = ((int32_t)il2cpp_codegen_add((int32_t)L_33, (int32_t)1));
uint8_t L_35 = (L_32)->GetAt(static_cast<il2cpp_array_size_t>(L_34));
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_31, (int32_t)2))) = (int8_t)L_35;
uint8_t* L_36 = ___dst0;
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_37 = ___src1;
int32_t L_38 = ___startIndex2;
NullCheck(L_37);
int32_t L_39 = L_38;
uint8_t L_40 = (L_37)->GetAt(static_cast<il2cpp_array_size_t>(L_39));
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_36, (int32_t)3))) = (int8_t)L_40;
return;
}
}
// System.Void Mono.Security.BitConverterLE::ULongFromBytes(System.Byte*,System.Byte[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BitConverterLE_ULongFromBytes_m805CA0D87EC1E72E505EF312340D520115E03E9F (uint8_t* ___dst0, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___src1, int32_t ___startIndex2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (BitConverterLE_ULongFromBytes_m805CA0D87EC1E72E505EF312340D520115E03E9F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
{
IL2CPP_RUNTIME_CLASS_INIT(BitConverter_t8DCBA24B909F1B221372AF2B37C76DCF614BA654_il2cpp_TypeInfo_var);
bool L_0 = ((BitConverter_t8DCBA24B909F1B221372AF2B37C76DCF614BA654_StaticFields*)il2cpp_codegen_static_fields_for(BitConverter_t8DCBA24B909F1B221372AF2B37C76DCF614BA654_il2cpp_TypeInfo_var))->get_IsLittleEndian_0();
if (!L_0)
{
goto IL_001d;
}
}
{
V_0 = 0;
goto IL_0018;
}
IL_000b:
{
uint8_t* L_1 = ___dst0;
int32_t L_2 = V_0;
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_3 = ___src1;
int32_t L_4 = ___startIndex2;
int32_t L_5 = V_0;
NullCheck(L_3);
int32_t L_6 = ((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)L_5));
uint8_t L_7 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_1, (int32_t)L_2))) = (int8_t)L_7;
int32_t L_8 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1));
}
IL_0018:
{
int32_t L_9 = V_0;
if ((((int32_t)L_9) < ((int32_t)8)))
{
goto IL_000b;
}
}
{
return;
}
IL_001d:
{
V_1 = 0;
goto IL_0030;
}
IL_0021:
{
uint8_t* L_10 = ___dst0;
int32_t L_11 = V_1;
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_12 = ___src1;
int32_t L_13 = ___startIndex2;
int32_t L_14 = V_1;
NullCheck(L_12);
int32_t L_15 = ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)7, (int32_t)L_14))));
uint8_t L_16 = (L_12)->GetAt(static_cast<il2cpp_array_size_t>(L_15));
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_10, (int32_t)L_11))) = (int8_t)L_16;
int32_t L_17 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1));
}
IL_0030:
{
int32_t L_18 = V_1;
if ((((int32_t)L_18) < ((int32_t)8)))
{
goto IL_0021;
}
}
{
return;
}
}
// System.Single Mono.Security.BitConverterLE::ToSingle(System.Byte[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float BitConverterLE_ToSingle_mC09CFC76568AC4F46FCE51093EDFA7B6DE7FF8C1 (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___value0, int32_t ___startIndex1, const RuntimeMethod* method)
{
float V_0 = 0.0f;
{
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_0 = ___value0;
int32_t L_1 = ___startIndex1;
BitConverterLE_UIntFromBytes_mD54557321A7C885F5DC739D16D05BD208C882835((uint8_t*)(uint8_t*)(((uintptr_t)(&V_0))), L_0, L_1, /*hidden argument*/NULL);
float L_2 = V_0;
return L_2;
}
}
// System.Double Mono.Security.BitConverterLE::ToDouble(System.Byte[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double BitConverterLE_ToDouble_m0BFEE5F3992354811025FD38FA9139147FBEEBE3 (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___value0, int32_t ___startIndex1, const RuntimeMethod* method)
{
double V_0 = 0.0;
{
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_0 = ___value0;
int32_t L_1 = ___startIndex1;
BitConverterLE_ULongFromBytes_m805CA0D87EC1E72E505EF312340D520115E03E9F((uint8_t*)(uint8_t*)(((uintptr_t)(&V_0))), L_0, L_1, /*hidden argument*/NULL);
double L_2 = V_0;
return L_2;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Int32 System.Boolean::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Boolean_GetHashCode_m03AF8B3CECAE9106C44A00E3B33E51CBFC45C411 (bool* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = *((uint8_t*)__this);
if (L_0)
{
goto IL_0006;
}
}
{
return 0;
}
IL_0006:
{
return 1;
}
}
IL2CPP_EXTERN_C int32_t Boolean_GetHashCode_m03AF8B3CECAE9106C44A00E3B33E51CBFC45C411_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
bool* _thisAdjusted = reinterpret_cast<bool*>(__this + _offset);
return Boolean_GetHashCode_m03AF8B3CECAE9106C44A00E3B33E51CBFC45C411(_thisAdjusted, method);
}
// System.String System.Boolean::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Boolean_ToString_m59BB8456DD05A874BBD756E57EA8AD983287015C (bool* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Boolean_ToString_m59BB8456DD05A874BBD756E57EA8AD983287015C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = *((uint8_t*)__this);
if (L_0)
{
goto IL_000a;
}
}
{
return _stringLiteralDBB6CDA4D5A47DA899D30151C0C04DB0958C5C1F;
}
IL_000a:
{
return _stringLiteralE9BC8412F7672BEDC75EB21FA08240175E04E871;
}
}
IL2CPP_EXTERN_C String_t* Boolean_ToString_m59BB8456DD05A874BBD756E57EA8AD983287015C_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
bool* _thisAdjusted = reinterpret_cast<bool*>(__this + _offset);
return Boolean_ToString_m59BB8456DD05A874BBD756E57EA8AD983287015C(_thisAdjusted, method);
}
// System.String System.Boolean::ToString(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Boolean_ToString_m6AF340BBFF7B2ABB5987CE80AE6335EE96BC71E9 (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Boolean_ToString_m6AF340BBFF7B2ABB5987CE80AE6335EE96BC71E9_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = *((uint8_t*)__this);
if (L_0)
{
goto IL_000a;
}
}
{
return _stringLiteralDBB6CDA4D5A47DA899D30151C0C04DB0958C5C1F;
}
IL_000a:
{
return _stringLiteralE9BC8412F7672BEDC75EB21FA08240175E04E871;
}
}
IL2CPP_EXTERN_C String_t* Boolean_ToString_m6AF340BBFF7B2ABB5987CE80AE6335EE96BC71E9_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int32_t _offset = 1;
bool* _thisAdjusted = reinterpret_cast<bool*>(__this + _offset);
return Boolean_ToString_m6AF340BBFF7B2ABB5987CE80AE6335EE96BC71E9(_thisAdjusted, ___provider0, method);
}
// System.Boolean System.Boolean::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Boolean_Equals_mA2FC01AF136159906F30A85C950097BE67C824B8 (bool* __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Boolean_Equals_mA2FC01AF136159906F30A85C950097BE67C824B8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___obj0;
if (((RuntimeObject *)IsInstSealed((RuntimeObject*)L_0, Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_il2cpp_TypeInfo_var)))
{
goto IL_000a;
}
}
{
return (bool)0;
}
IL_000a:
{
int32_t L_1 = *((uint8_t*)__this);
RuntimeObject * L_2 = ___obj0;
return (bool)((((int32_t)L_1) == ((int32_t)((*(bool*)((bool*)UnBox(L_2, Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_il2cpp_TypeInfo_var))))))? 1 : 0);
}
}
IL2CPP_EXTERN_C bool Boolean_Equals_mA2FC01AF136159906F30A85C950097BE67C824B8_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
int32_t _offset = 1;
bool* _thisAdjusted = reinterpret_cast<bool*>(__this + _offset);
return Boolean_Equals_mA2FC01AF136159906F30A85C950097BE67C824B8(_thisAdjusted, ___obj0, method);
}
// System.Boolean System.Boolean::Equals(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Boolean_Equals_mC63D03B4DE1BBC68835530A9E0384FDDB0AC1A3D (bool* __this, bool ___obj0, const RuntimeMethod* method)
{
{
int32_t L_0 = *((uint8_t*)__this);
bool L_1 = ___obj0;
return (bool)((((int32_t)L_0) == ((int32_t)L_1))? 1 : 0);
}
}
IL2CPP_EXTERN_C bool Boolean_Equals_mC63D03B4DE1BBC68835530A9E0384FDDB0AC1A3D_AdjustorThunk (RuntimeObject * __this, bool ___obj0, const RuntimeMethod* method)
{
int32_t _offset = 1;
bool* _thisAdjusted = reinterpret_cast<bool*>(__this + _offset);
return Boolean_Equals_mC63D03B4DE1BBC68835530A9E0384FDDB0AC1A3D(_thisAdjusted, ___obj0, method);
}
// System.Int32 System.Boolean::CompareTo(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Boolean_CompareTo_mC707B7449D158CBC44629E0127379DDE5AEC9F8B (bool* __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Boolean_CompareTo_mC707B7449D158CBC44629E0127379DDE5AEC9F8B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___obj0;
if (L_0)
{
goto IL_0005;
}
}
{
return 1;
}
IL_0005:
{
RuntimeObject * L_1 = ___obj0;
if (((RuntimeObject *)IsInstSealed((RuntimeObject*)L_1, Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_il2cpp_TypeInfo_var)))
{
goto IL_001d;
}
}
{
String_t* L_2 = Environment_GetResourceString_m8DFF827596B5FD533D3FE56900FA095F7D674617(_stringLiteralF31022DF0C52AA301767F7877FB21D3C42BE84CE, /*hidden argument*/NULL);
ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_3 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var);
ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_3, L_2, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, Boolean_CompareTo_mC707B7449D158CBC44629E0127379DDE5AEC9F8B_RuntimeMethod_var);
}
IL_001d:
{
int32_t L_4 = *((uint8_t*)__this);
RuntimeObject * L_5 = ___obj0;
if ((!(((uint32_t)L_4) == ((uint32_t)((*(bool*)((bool*)UnBox(L_5, Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_il2cpp_TypeInfo_var))))))))
{
goto IL_0029;
}
}
{
return 0;
}
IL_0029:
{
int32_t L_6 = *((uint8_t*)__this);
if (L_6)
{
goto IL_002f;
}
}
{
return (-1);
}
IL_002f:
{
return 1;
}
}
IL2CPP_EXTERN_C int32_t Boolean_CompareTo_mC707B7449D158CBC44629E0127379DDE5AEC9F8B_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
int32_t _offset = 1;
bool* _thisAdjusted = reinterpret_cast<bool*>(__this + _offset);
return Boolean_CompareTo_mC707B7449D158CBC44629E0127379DDE5AEC9F8B(_thisAdjusted, ___obj0, method);
}
// System.Int32 System.Boolean::CompareTo(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Boolean_CompareTo_m943C460E56A1EC6692C0A066760BA2008A698725 (bool* __this, bool ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = *((uint8_t*)__this);
bool L_1 = ___value0;
if ((!(((uint32_t)L_0) == ((uint32_t)L_1))))
{
goto IL_0007;
}
}
{
return 0;
}
IL_0007:
{
int32_t L_2 = *((uint8_t*)__this);
if (L_2)
{
goto IL_000d;
}
}
{
return (-1);
}
IL_000d:
{
return 1;
}
}
IL2CPP_EXTERN_C int32_t Boolean_CompareTo_m943C460E56A1EC6692C0A066760BA2008A698725_AdjustorThunk (RuntimeObject * __this, bool ___value0, const RuntimeMethod* method)
{
int32_t _offset = 1;
bool* _thisAdjusted = reinterpret_cast<bool*>(__this + _offset);
return Boolean_CompareTo_m943C460E56A1EC6692C0A066760BA2008A698725(_thisAdjusted, ___value0, method);
}
// System.Boolean System.Boolean::Parse(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Boolean_Parse_m97AFBD113AE4629041678100C5A595F3529C7F7D (String_t* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Boolean_Parse_m97AFBD113AE4629041678100C5A595F3529C7F7D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
{
String_t* L_0 = ___value0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, _stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Boolean_Parse_m97AFBD113AE4629041678100C5A595F3529C7F7D_RuntimeMethod_var);
}
IL_000e:
{
V_0 = (bool)0;
String_t* L_2 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_il2cpp_TypeInfo_var);
bool L_3 = Boolean_TryParse_m083F8EB6F0A07B24C26310648CB2380C3D3AAEE7(L_2, (bool*)(&V_0), /*hidden argument*/NULL);
if (L_3)
{
goto IL_002a;
}
}
{
String_t* L_4 = Environment_GetResourceString_m8DFF827596B5FD533D3FE56900FA095F7D674617(_stringLiteral6F96D91590C70C47BBC8C98A53B3B412C36447CE, /*hidden argument*/NULL);
FormatException_t119BB207B54B4B1BC28D9B1783C4625AE23D4759 * L_5 = (FormatException_t119BB207B54B4B1BC28D9B1783C4625AE23D4759 *)il2cpp_codegen_object_new(FormatException_t119BB207B54B4B1BC28D9B1783C4625AE23D4759_il2cpp_TypeInfo_var);
FormatException__ctor_mB8F9A26F985EF9A6C0C082F7D70CFDF2DBDBB23B(L_5, L_4, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, Boolean_Parse_m97AFBD113AE4629041678100C5A595F3529C7F7D_RuntimeMethod_var);
}
IL_002a:
{
bool L_6 = V_0;
return L_6;
}
}
// System.Boolean System.Boolean::TryParse(System.String,System.Boolean&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Boolean_TryParse_m083F8EB6F0A07B24C26310648CB2380C3D3AAEE7 (String_t* ___value0, bool* ___result1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Boolean_TryParse_m083F8EB6F0A07B24C26310648CB2380C3D3AAEE7_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
bool* L_0 = ___result1;
*((int8_t*)L_0) = (int8_t)0;
String_t* L_1 = ___value0;
if (L_1)
{
goto IL_0008;
}
}
{
return (bool)0;
}
IL_0008:
{
String_t* L_2 = ___value0;
NullCheck(_stringLiteralE9BC8412F7672BEDC75EB21FA08240175E04E871);
bool L_3 = String_Equals_m62F0586691097AA2EE48F1596A130170BCFBF7F6(_stringLiteralE9BC8412F7672BEDC75EB21FA08240175E04E871, L_2, 5, /*hidden argument*/NULL);
if (!L_3)
{
goto IL_001b;
}
}
{
bool* L_4 = ___result1;
*((int8_t*)L_4) = (int8_t)1;
return (bool)1;
}
IL_001b:
{
String_t* L_5 = ___value0;
NullCheck(_stringLiteralDBB6CDA4D5A47DA899D30151C0C04DB0958C5C1F);
bool L_6 = String_Equals_m62F0586691097AA2EE48F1596A130170BCFBF7F6(_stringLiteralDBB6CDA4D5A47DA899D30151C0C04DB0958C5C1F, L_5, 5, /*hidden argument*/NULL);
if (!L_6)
{
goto IL_002e;
}
}
{
bool* L_7 = ___result1;
*((int8_t*)L_7) = (int8_t)0;
return (bool)1;
}
IL_002e:
{
String_t* L_8 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_il2cpp_TypeInfo_var);
String_t* L_9 = Boolean_TrimWhiteSpaceAndNull_m1AA39FDE34A7E62968210EB57ED3996531C5A6A7(L_8, /*hidden argument*/NULL);
___value0 = L_9;
String_t* L_10 = ___value0;
NullCheck(_stringLiteralE9BC8412F7672BEDC75EB21FA08240175E04E871);
bool L_11 = String_Equals_m62F0586691097AA2EE48F1596A130170BCFBF7F6(_stringLiteralE9BC8412F7672BEDC75EB21FA08240175E04E871, L_10, 5, /*hidden argument*/NULL);
if (!L_11)
{
goto IL_0049;
}
}
{
bool* L_12 = ___result1;
*((int8_t*)L_12) = (int8_t)1;
return (bool)1;
}
IL_0049:
{
String_t* L_13 = ___value0;
NullCheck(_stringLiteralDBB6CDA4D5A47DA899D30151C0C04DB0958C5C1F);
bool L_14 = String_Equals_m62F0586691097AA2EE48F1596A130170BCFBF7F6(_stringLiteralDBB6CDA4D5A47DA899D30151C0C04DB0958C5C1F, L_13, 5, /*hidden argument*/NULL);
if (!L_14)
{
goto IL_005c;
}
}
{
bool* L_15 = ___result1;
*((int8_t*)L_15) = (int8_t)0;
return (bool)1;
}
IL_005c:
{
return (bool)0;
}
}
// System.String System.Boolean::TrimWhiteSpaceAndNull(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Boolean_TrimWhiteSpaceAndNull_m1AA39FDE34A7E62968210EB57ED3996531C5A6A7 (String_t* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Boolean_TrimWhiteSpaceAndNull_m1AA39FDE34A7E62968210EB57ED3996531C5A6A7_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
Il2CppChar V_2 = 0x0;
{
V_0 = 0;
String_t* L_0 = ___value0;
NullCheck(L_0);
int32_t L_1 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_0, /*hidden argument*/NULL);
V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_1, (int32_t)1));
V_2 = 0;
goto IL_002b;
}
IL_000f:
{
String_t* L_2 = ___value0;
int32_t L_3 = V_0;
NullCheck(L_2);
Il2CppChar L_4 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_2, L_3, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_il2cpp_TypeInfo_var);
bool L_5 = Char_IsWhiteSpace_m99A5E1BE1EB9F17EA530A67A607DA8C260BCBF99(L_4, /*hidden argument*/NULL);
if (L_5)
{
goto IL_0027;
}
}
{
String_t* L_6 = ___value0;
int32_t L_7 = V_0;
NullCheck(L_6);
Il2CppChar L_8 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_6, L_7, /*hidden argument*/NULL);
Il2CppChar L_9 = V_2;
if ((!(((uint32_t)L_8) == ((uint32_t)L_9))))
{
goto IL_0052;
}
}
IL_0027:
{
int32_t L_10 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1));
}
IL_002b:
{
int32_t L_11 = V_0;
String_t* L_12 = ___value0;
NullCheck(L_12);
int32_t L_13 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_12, /*hidden argument*/NULL);
if ((((int32_t)L_11) < ((int32_t)L_13)))
{
goto IL_000f;
}
}
{
goto IL_0052;
}
IL_0036:
{
String_t* L_14 = ___value0;
int32_t L_15 = V_1;
NullCheck(L_14);
Il2CppChar L_16 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_14, L_15, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_il2cpp_TypeInfo_var);
bool L_17 = Char_IsWhiteSpace_m99A5E1BE1EB9F17EA530A67A607DA8C260BCBF99(L_16, /*hidden argument*/NULL);
if (L_17)
{
goto IL_004e;
}
}
{
String_t* L_18 = ___value0;
int32_t L_19 = V_1;
NullCheck(L_18);
Il2CppChar L_20 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_18, L_19, /*hidden argument*/NULL);
Il2CppChar L_21 = V_2;
if ((!(((uint32_t)L_20) == ((uint32_t)L_21))))
{
goto IL_0056;
}
}
IL_004e:
{
int32_t L_22 = V_1;
V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_22, (int32_t)1));
}
IL_0052:
{
int32_t L_23 = V_1;
int32_t L_24 = V_0;
if ((((int32_t)L_23) >= ((int32_t)L_24)))
{
goto IL_0036;
}
}
IL_0056:
{
String_t* L_25 = ___value0;
int32_t L_26 = V_0;
int32_t L_27 = V_1;
int32_t L_28 = V_0;
NullCheck(L_25);
String_t* L_29 = String_Substring_m7A39A2AC0893AE940CF4CEC841326D56FFB9D86B(L_25, L_26, ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_27, (int32_t)L_28)), (int32_t)1)), /*hidden argument*/NULL);
return L_29;
}
}
// System.TypeCode System.Boolean::GetTypeCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Boolean_GetTypeCode_m5D0F757874F7404CB4B9F9438A8BD39E1CF2C3CD (bool* __this, const RuntimeMethod* method)
{
{
return (int32_t)(3);
}
}
IL2CPP_EXTERN_C int32_t Boolean_GetTypeCode_m5D0F757874F7404CB4B9F9438A8BD39E1CF2C3CD_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
bool* _thisAdjusted = reinterpret_cast<bool*>(__this + _offset);
return Boolean_GetTypeCode_m5D0F757874F7404CB4B9F9438A8BD39E1CF2C3CD(_thisAdjusted, method);
}
// System.Boolean System.Boolean::System.IConvertible.ToBoolean(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Boolean_System_IConvertible_ToBoolean_m7313BC39CCF5E5D78C49C7470CE0F722CB89DF86 (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
{
int32_t L_0 = *((uint8_t*)__this);
return (bool)L_0;
}
}
IL2CPP_EXTERN_C bool Boolean_System_IConvertible_ToBoolean_m7313BC39CCF5E5D78C49C7470CE0F722CB89DF86_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int32_t _offset = 1;
bool* _thisAdjusted = reinterpret_cast<bool*>(__this + _offset);
return Boolean_System_IConvertible_ToBoolean_m7313BC39CCF5E5D78C49C7470CE0F722CB89DF86(_thisAdjusted, ___provider0, method);
}
// System.Char System.Boolean::System.IConvertible.ToChar(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Boolean_System_IConvertible_ToChar_mDDAD1B8CC0FFA74E6B61BB2FA2B46603B40BEE7D (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Boolean_System_IConvertible_ToChar_mDDAD1B8CC0FFA74E6B61BB2FA2B46603B40BEE7D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_0 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var, (uint32_t)2);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_1 = L_0;
NullCheck(L_1);
ArrayElementTypeCheck (L_1, _stringLiteral6C8C975CC62CF419550282B028FB7E3A1F591D06);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)_stringLiteral6C8C975CC62CF419550282B028FB7E3A1F591D06);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_2 = L_1;
NullCheck(L_2);
ArrayElementTypeCheck (L_2, _stringLiteralE75F4F4A9D67BC98BA7DB8DBE3C519516572DA4E);
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)_stringLiteralE75F4F4A9D67BC98BA7DB8DBE3C519516572DA4E);
String_t* L_3 = Environment_GetResourceString_m9A30EE9F4E10F48B79F9EB56D18D52AE7E7EB602(_stringLiteral6E9AEBB5505B4A1DBC166711562BE9408419A24D, L_2, /*hidden argument*/NULL);
InvalidCastException_tD99F9FF94C3859C78E90F68C2F77A1558BCAF463 * L_4 = (InvalidCastException_tD99F9FF94C3859C78E90F68C2F77A1558BCAF463 *)il2cpp_codegen_object_new(InvalidCastException_tD99F9FF94C3859C78E90F68C2F77A1558BCAF463_il2cpp_TypeInfo_var);
InvalidCastException__ctor_m50103CBF0C211B93BF46697875413A10B5A5C5A3(L_4, L_3, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, Boolean_System_IConvertible_ToChar_mDDAD1B8CC0FFA74E6B61BB2FA2B46603B40BEE7D_RuntimeMethod_var);
}
}
IL2CPP_EXTERN_C Il2CppChar Boolean_System_IConvertible_ToChar_mDDAD1B8CC0FFA74E6B61BB2FA2B46603B40BEE7D_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int32_t _offset = 1;
bool* _thisAdjusted = reinterpret_cast<bool*>(__this + _offset);
return Boolean_System_IConvertible_ToChar_mDDAD1B8CC0FFA74E6B61BB2FA2B46603B40BEE7D(_thisAdjusted, ___provider0, method);
}
// System.SByte System.Boolean::System.IConvertible.ToSByte(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Boolean_System_IConvertible_ToSByte_m0D219BD8488041CD67BC520A9B9565BC0EEE996A (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Boolean_System_IConvertible_ToSByte_m0D219BD8488041CD67BC520A9B9565BC0EEE996A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = *((uint8_t*)__this);
IL2CPP_RUNTIME_CLASS_INIT(Convert_tDA947A979C1DAB4F09C461FAFD94FE194743A671_il2cpp_TypeInfo_var);
int8_t L_1 = Convert_ToSByte_mFAFBF33EE73F48B362BD3AC239899962A1AE81F0((bool)L_0, /*hidden argument*/NULL);
return L_1;
}
}
IL2CPP_EXTERN_C int8_t Boolean_System_IConvertible_ToSByte_m0D219BD8488041CD67BC520A9B9565BC0EEE996A_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int32_t _offset = 1;
bool* _thisAdjusted = reinterpret_cast<bool*>(__this + _offset);
return Boolean_System_IConvertible_ToSByte_m0D219BD8488041CD67BC520A9B9565BC0EEE996A(_thisAdjusted, ___provider0, method);
}
// System.Byte System.Boolean::System.IConvertible.ToByte(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Boolean_System_IConvertible_ToByte_mB7A1A4E6188A7A7FB89D4EFB148F1E072CE7F847 (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Boolean_System_IConvertible_ToByte_mB7A1A4E6188A7A7FB89D4EFB148F1E072CE7F847_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = *((uint8_t*)__this);
IL2CPP_RUNTIME_CLASS_INIT(Convert_tDA947A979C1DAB4F09C461FAFD94FE194743A671_il2cpp_TypeInfo_var);
uint8_t L_1 = Convert_ToByte_m85B5A8C973A43E62BF581A0F9569EA3A6ED12AE2((bool)L_0, /*hidden argument*/NULL);
return L_1;
}
}
IL2CPP_EXTERN_C uint8_t Boolean_System_IConvertible_ToByte_mB7A1A4E6188A7A7FB89D4EFB148F1E072CE7F847_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int32_t _offset = 1;
bool* _thisAdjusted = reinterpret_cast<bool*>(__this + _offset);
return Boolean_System_IConvertible_ToByte_mB7A1A4E6188A7A7FB89D4EFB148F1E072CE7F847(_thisAdjusted, ___provider0, method);
}
// System.Int16 System.Boolean::System.IConvertible.ToInt16(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Boolean_System_IConvertible_ToInt16_mB5EE0D6EFAEBD04029452AF72D64DEC8941F3998 (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Boolean_System_IConvertible_ToInt16_mB5EE0D6EFAEBD04029452AF72D64DEC8941F3998_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = *((uint8_t*)__this);
IL2CPP_RUNTIME_CLASS_INIT(Convert_tDA947A979C1DAB4F09C461FAFD94FE194743A671_il2cpp_TypeInfo_var);
int16_t L_1 = Convert_ToInt16_m1B981EA74F17780D6732A6D8CE9C811297D4EF7C((bool)L_0, /*hidden argument*/NULL);
return L_1;
}
}
IL2CPP_EXTERN_C int16_t Boolean_System_IConvertible_ToInt16_mB5EE0D6EFAEBD04029452AF72D64DEC8941F3998_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int32_t _offset = 1;
bool* _thisAdjusted = reinterpret_cast<bool*>(__this + _offset);
return Boolean_System_IConvertible_ToInt16_mB5EE0D6EFAEBD04029452AF72D64DEC8941F3998(_thisAdjusted, ___provider0, method);
}
// System.UInt16 System.Boolean::System.IConvertible.ToUInt16(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Boolean_System_IConvertible_ToUInt16_m0223D3C77451F88509880E7EEF89B7B25B12491F (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Boolean_System_IConvertible_ToUInt16_m0223D3C77451F88509880E7EEF89B7B25B12491F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = *((uint8_t*)__this);
IL2CPP_RUNTIME_CLASS_INIT(Convert_tDA947A979C1DAB4F09C461FAFD94FE194743A671_il2cpp_TypeInfo_var);
uint16_t L_1 = Convert_ToUInt16_mA942A45162BE2BCB2E470174D6696AD7590E20DC((bool)L_0, /*hidden argument*/NULL);
return L_1;
}
}
IL2CPP_EXTERN_C uint16_t Boolean_System_IConvertible_ToUInt16_m0223D3C77451F88509880E7EEF89B7B25B12491F_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int32_t _offset = 1;
bool* _thisAdjusted = reinterpret_cast<bool*>(__this + _offset);
return Boolean_System_IConvertible_ToUInt16_m0223D3C77451F88509880E7EEF89B7B25B12491F(_thisAdjusted, ___provider0, method);
}
// System.Int32 System.Boolean::System.IConvertible.ToInt32(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Boolean_System_IConvertible_ToInt32_m3B5AB9AC8DBE1DE73D26A3F3A271A557E93E4238 (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Boolean_System_IConvertible_ToInt32_m3B5AB9AC8DBE1DE73D26A3F3A271A557E93E4238_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = *((uint8_t*)__this);
IL2CPP_RUNTIME_CLASS_INIT(Convert_tDA947A979C1DAB4F09C461FAFD94FE194743A671_il2cpp_TypeInfo_var);
int32_t L_1 = Convert_ToInt32_m3B3C332A65A7F38D6DDF1A1D0ED511C701F67CD3((bool)L_0, /*hidden argument*/NULL);
return L_1;
}
}
IL2CPP_EXTERN_C int32_t Boolean_System_IConvertible_ToInt32_m3B5AB9AC8DBE1DE73D26A3F3A271A557E93E4238_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int32_t _offset = 1;
bool* _thisAdjusted = reinterpret_cast<bool*>(__this + _offset);
return Boolean_System_IConvertible_ToInt32_m3B5AB9AC8DBE1DE73D26A3F3A271A557E93E4238(_thisAdjusted, ___provider0, method);
}
// System.UInt32 System.Boolean::System.IConvertible.ToUInt32(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Boolean_System_IConvertible_ToUInt32_mE15AF9B02F6CC44A449722CCE44D36F6D94BEC64 (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Boolean_System_IConvertible_ToUInt32_mE15AF9B02F6CC44A449722CCE44D36F6D94BEC64_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = *((uint8_t*)__this);
IL2CPP_RUNTIME_CLASS_INIT(Convert_tDA947A979C1DAB4F09C461FAFD94FE194743A671_il2cpp_TypeInfo_var);
uint32_t L_1 = Convert_ToUInt32_mF790134D2BBE7C64241E4B398D82AFFE64B08DF3((bool)L_0, /*hidden argument*/NULL);
return L_1;
}
}
IL2CPP_EXTERN_C uint32_t Boolean_System_IConvertible_ToUInt32_mE15AF9B02F6CC44A449722CCE44D36F6D94BEC64_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int32_t _offset = 1;
bool* _thisAdjusted = reinterpret_cast<bool*>(__this + _offset);
return Boolean_System_IConvertible_ToUInt32_mE15AF9B02F6CC44A449722CCE44D36F6D94BEC64(_thisAdjusted, ___provider0, method);
}
// System.Int64 System.Boolean::System.IConvertible.ToInt64(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Boolean_System_IConvertible_ToInt64_mD3F07E40FFAAA9A418FBB4B5B30D8830DEA895C0 (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Boolean_System_IConvertible_ToInt64_mD3F07E40FFAAA9A418FBB4B5B30D8830DEA895C0_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = *((uint8_t*)__this);
IL2CPP_RUNTIME_CLASS_INIT(Convert_tDA947A979C1DAB4F09C461FAFD94FE194743A671_il2cpp_TypeInfo_var);
int64_t L_1 = Convert_ToInt64_mAE67CA7F08203845264C2D0863E8791DDCD3D1B8((bool)L_0, /*hidden argument*/NULL);
return L_1;
}
}
IL2CPP_EXTERN_C int64_t Boolean_System_IConvertible_ToInt64_mD3F07E40FFAAA9A418FBB4B5B30D8830DEA895C0_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int32_t _offset = 1;
bool* _thisAdjusted = reinterpret_cast<bool*>(__this + _offset);
return Boolean_System_IConvertible_ToInt64_mD3F07E40FFAAA9A418FBB4B5B30D8830DEA895C0(_thisAdjusted, ___provider0, method);
}
// System.UInt64 System.Boolean::System.IConvertible.ToUInt64(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Boolean_System_IConvertible_ToUInt64_m61E7A3015BF2A1022FFDBE84DBFC1D1C326D7FBF (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Boolean_System_IConvertible_ToUInt64_m61E7A3015BF2A1022FFDBE84DBFC1D1C326D7FBF_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = *((uint8_t*)__this);
IL2CPP_RUNTIME_CLASS_INIT(Convert_tDA947A979C1DAB4F09C461FAFD94FE194743A671_il2cpp_TypeInfo_var);
uint64_t L_1 = Convert_ToUInt64_mF48D6D19E7A231DEDA8EA62F6A53F1A7C1588EB5((bool)L_0, /*hidden argument*/NULL);
return L_1;
}
}
IL2CPP_EXTERN_C uint64_t Boolean_System_IConvertible_ToUInt64_m61E7A3015BF2A1022FFDBE84DBFC1D1C326D7FBF_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int32_t _offset = 1;
bool* _thisAdjusted = reinterpret_cast<bool*>(__this + _offset);
return Boolean_System_IConvertible_ToUInt64_m61E7A3015BF2A1022FFDBE84DBFC1D1C326D7FBF(_thisAdjusted, ___provider0, method);
}
// System.Single System.Boolean::System.IConvertible.ToSingle(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Boolean_System_IConvertible_ToSingle_mA1C9849DA7D8F1C1D2CAFBF734408736DB2F5B47 (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Boolean_System_IConvertible_ToSingle_mA1C9849DA7D8F1C1D2CAFBF734408736DB2F5B47_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = *((uint8_t*)__this);
IL2CPP_RUNTIME_CLASS_INIT(Convert_tDA947A979C1DAB4F09C461FAFD94FE194743A671_il2cpp_TypeInfo_var);
float L_1 = Convert_ToSingle_mA19B0A63304F0C4403C7FCE6D3A40DDCA02654C7((bool)L_0, /*hidden argument*/NULL);
return L_1;
}
}
IL2CPP_EXTERN_C float Boolean_System_IConvertible_ToSingle_mA1C9849DA7D8F1C1D2CAFBF734408736DB2F5B47_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int32_t _offset = 1;
bool* _thisAdjusted = reinterpret_cast<bool*>(__this + _offset);
return Boolean_System_IConvertible_ToSingle_mA1C9849DA7D8F1C1D2CAFBF734408736DB2F5B47(_thisAdjusted, ___provider0, method);
}
// System.Double System.Boolean::System.IConvertible.ToDouble(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Boolean_System_IConvertible_ToDouble_m8B086B2929A6009B43536C10870CEBA742692DDF (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Boolean_System_IConvertible_ToDouble_m8B086B2929A6009B43536C10870CEBA742692DDF_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = *((uint8_t*)__this);
IL2CPP_RUNTIME_CLASS_INIT(Convert_tDA947A979C1DAB4F09C461FAFD94FE194743A671_il2cpp_TypeInfo_var);
double L_1 = Convert_ToDouble_m6EBFE4057CF2D18D45257420BE672E4B661E3AB0((bool)L_0, /*hidden argument*/NULL);
return L_1;
}
}
IL2CPP_EXTERN_C double Boolean_System_IConvertible_ToDouble_m8B086B2929A6009B43536C10870CEBA742692DDF_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int32_t _offset = 1;
bool* _thisAdjusted = reinterpret_cast<bool*>(__this + _offset);
return Boolean_System_IConvertible_ToDouble_m8B086B2929A6009B43536C10870CEBA742692DDF(_thisAdjusted, ___provider0, method);
}
// System.Decimal System.Boolean::System.IConvertible.ToDecimal(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 Boolean_System_IConvertible_ToDecimal_m8B92ED67C5506D85919E851FE00081BDF9AFF5B9 (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Boolean_System_IConvertible_ToDecimal_m8B92ED67C5506D85919E851FE00081BDF9AFF5B9_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = *((uint8_t*)__this);
IL2CPP_RUNTIME_CLASS_INIT(Convert_tDA947A979C1DAB4F09C461FAFD94FE194743A671_il2cpp_TypeInfo_var);
Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 L_1 = Convert_ToDecimal_m29A10B7D55562958086D3EE18D68331A5D4C388C((bool)L_0, /*hidden argument*/NULL);
return L_1;
}
}
IL2CPP_EXTERN_C Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 Boolean_System_IConvertible_ToDecimal_m8B92ED67C5506D85919E851FE00081BDF9AFF5B9_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int32_t _offset = 1;
bool* _thisAdjusted = reinterpret_cast<bool*>(__this + _offset);
return Boolean_System_IConvertible_ToDecimal_m8B92ED67C5506D85919E851FE00081BDF9AFF5B9(_thisAdjusted, ___provider0, method);
}
// System.DateTime System.Boolean::System.IConvertible.ToDateTime(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 Boolean_System_IConvertible_ToDateTime_m688708C8A8763452E59304B46B17B11DB890EB0F (bool* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Boolean_System_IConvertible_ToDateTime_m688708C8A8763452E59304B46B17B11DB890EB0F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_0 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var, (uint32_t)2);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_1 = L_0;
NullCheck(L_1);
ArrayElementTypeCheck (L_1, _stringLiteral6C8C975CC62CF419550282B028FB7E3A1F591D06);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)_stringLiteral6C8C975CC62CF419550282B028FB7E3A1F591D06);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_2 = L_1;
NullCheck(L_2);
ArrayElementTypeCheck (L_2, _stringLiteral401602777C44EA69B5FF9AB6AB2D47AEEC89D2AA);
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)_stringLiteral401602777C44EA69B5FF9AB6AB2D47AEEC89D2AA);
String_t* L_3 = Environment_GetResourceString_m9A30EE9F4E10F48B79F9EB56D18D52AE7E7EB602(_stringLiteral6E9AEBB5505B4A1DBC166711562BE9408419A24D, L_2, /*hidden argument*/NULL);
InvalidCastException_tD99F9FF94C3859C78E90F68C2F77A1558BCAF463 * L_4 = (InvalidCastException_tD99F9FF94C3859C78E90F68C2F77A1558BCAF463 *)il2cpp_codegen_object_new(InvalidCastException_tD99F9FF94C3859C78E90F68C2F77A1558BCAF463_il2cpp_TypeInfo_var);
InvalidCastException__ctor_m50103CBF0C211B93BF46697875413A10B5A5C5A3(L_4, L_3, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, Boolean_System_IConvertible_ToDateTime_m688708C8A8763452E59304B46B17B11DB890EB0F_RuntimeMethod_var);
}
}
IL2CPP_EXTERN_C DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 Boolean_System_IConvertible_ToDateTime_m688708C8A8763452E59304B46B17B11DB890EB0F_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int32_t _offset = 1;
bool* _thisAdjusted = reinterpret_cast<bool*>(__this + _offset);
return Boolean_System_IConvertible_ToDateTime_m688708C8A8763452E59304B46B17B11DB890EB0F(_thisAdjusted, ___provider0, method);
}
// System.Object System.Boolean::System.IConvertible.ToType(System.Type,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Boolean_System_IConvertible_ToType_m4EFEE2404DA10542ECC1DFEFCED61F0625012017 (bool* __this, Type_t * ___type0, RuntimeObject* ___provider1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Boolean_System_IConvertible_ToType_m4EFEE2404DA10542ECC1DFEFCED61F0625012017_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = *((uint8_t*)__this);
bool L_1 = ((bool)L_0);
RuntimeObject * L_2 = Box(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_il2cpp_TypeInfo_var, &L_1);
Type_t * L_3 = ___type0;
RuntimeObject* L_4 = ___provider1;
IL2CPP_RUNTIME_CLASS_INIT(Convert_tDA947A979C1DAB4F09C461FAFD94FE194743A671_il2cpp_TypeInfo_var);
RuntimeObject * L_5 = Convert_DefaultToType_m49730E740820DF7AA76C18ACF700FA3635AFBC33((RuntimeObject*)L_2, L_3, L_4, /*hidden argument*/NULL);
return L_5;
}
}
IL2CPP_EXTERN_C RuntimeObject * Boolean_System_IConvertible_ToType_m4EFEE2404DA10542ECC1DFEFCED61F0625012017_AdjustorThunk (RuntimeObject * __this, Type_t * ___type0, RuntimeObject* ___provider1, const RuntimeMethod* method)
{
int32_t _offset = 1;
bool* _thisAdjusted = reinterpret_cast<bool*>(__this + _offset);
return Boolean_System_IConvertible_ToType_m4EFEE2404DA10542ECC1DFEFCED61F0625012017(_thisAdjusted, ___type0, ___provider1, method);
}
// System.Void System.Boolean::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Boolean__cctor_m782F44A64FC24343CCF5946AF04D330F6A5CDB2E (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Boolean__cctor_m782F44A64FC24343CCF5946AF04D330F6A5CDB2E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
((Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_StaticFields*)il2cpp_codegen_static_fields_for(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_il2cpp_TypeInfo_var))->set_TrueString_5(_stringLiteralE9BC8412F7672BEDC75EB21FA08240175E04E871);
((Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_StaticFields*)il2cpp_codegen_static_fields_for(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_il2cpp_TypeInfo_var))->set_FalseString_6(_stringLiteralDBB6CDA4D5A47DA899D30151C0C04DB0958C5C1F);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Globalization.Bootstring::.ctor(System.Char,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Bootstring__ctor_m712507FBB61730426ED9771945A44DEF2FBA932A (Bootstring_t39E09D4C4B98FECD2C042751FA27A6FA98BB3882 * __this, Il2CppChar ___delimiter0, int32_t ___baseNum1, int32_t ___tmin2, int32_t ___tmax3, int32_t ___skew4, int32_t ___damp5, int32_t ___initialBias6, int32_t ___initialN7, const RuntimeMethod* method)
{
{
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL);
Il2CppChar L_0 = ___delimiter0;
__this->set_delimiter_0(L_0);
int32_t L_1 = ___baseNum1;
__this->set_base_num_1(L_1);
int32_t L_2 = ___tmin2;
__this->set_tmin_2(L_2);
int32_t L_3 = ___tmax3;
__this->set_tmax_3(L_3);
int32_t L_4 = ___skew4;
__this->set_skew_4(L_4);
int32_t L_5 = ___damp5;
__this->set_damp_5(L_5);
int32_t L_6 = ___initialBias6;
__this->set_initial_bias_6(L_6);
int32_t L_7 = ___initialN7;
__this->set_initial_n_7(L_7);
return;
}
}
// System.String System.Globalization.Bootstring::Encode(System.String,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Bootstring_Encode_mB7577C8F0BC7E4055A6118755D30B84D87151A7C (Bootstring_t39E09D4C4B98FECD2C042751FA27A6FA98BB3882 * __this, String_t* ___s0, int32_t ___offset1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Bootstring_Encode_mB7577C8F0BC7E4055A6118755D30B84D87151A7C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
int32_t V_3 = 0;
int32_t V_4 = 0;
StringBuilder_t * V_5 = NULL;
int32_t V_6 = 0;
int32_t V_7 = 0;
int32_t V_8 = 0;
int32_t V_9 = 0;
Il2CppChar V_10 = 0x0;
int32_t V_11 = 0;
int32_t V_12 = 0;
int32_t V_13 = 0;
int32_t G_B24_0 = 0;
{
int32_t L_0 = __this->get_initial_n_7();
V_0 = L_0;
V_1 = 0;
int32_t L_1 = __this->get_initial_bias_6();
V_2 = L_1;
V_3 = 0;
V_4 = 0;
StringBuilder_t * L_2 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
StringBuilder__ctor_m5A81DE19E748F748E19FF13FB6FFD2547F9212D9(L_2, /*hidden argument*/NULL);
V_5 = L_2;
V_6 = 0;
goto IL_0046;
}
IL_0021:
{
String_t* L_3 = ___s0;
int32_t L_4 = V_6;
NullCheck(L_3);
Il2CppChar L_5 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_3, L_4, /*hidden argument*/NULL);
if ((((int32_t)L_5) >= ((int32_t)((int32_t)128))))
{
goto IL_0040;
}
}
{
StringBuilder_t * L_6 = V_5;
String_t* L_7 = ___s0;
int32_t L_8 = V_6;
NullCheck(L_7);
Il2CppChar L_9 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_7, L_8, /*hidden argument*/NULL);
NullCheck(L_6);
StringBuilder_Append_m1ADA3C16E40BF253BCDB5F9579B4DBA9C3E5B22E(L_6, L_9, /*hidden argument*/NULL);
}
IL_0040:
{
int32_t L_10 = V_6;
V_6 = ((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1));
}
IL_0046:
{
int32_t L_11 = V_6;
String_t* L_12 = ___s0;
NullCheck(L_12);
int32_t L_13 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_12, /*hidden argument*/NULL);
if ((((int32_t)L_11) < ((int32_t)L_13)))
{
goto IL_0021;
}
}
{
StringBuilder_t * L_14 = V_5;
NullCheck(L_14);
int32_t L_15 = StringBuilder_get_Length_m680500263C59ACFD9582BF2AEEED8E92C87FF5C0(L_14, /*hidden argument*/NULL);
int32_t L_16 = L_15;
V_4 = L_16;
V_3 = L_16;
int32_t L_17 = V_3;
if ((((int32_t)L_17) <= ((int32_t)0)))
{
goto IL_01ae;
}
}
{
StringBuilder_t * L_18 = V_5;
Il2CppChar L_19 = __this->get_delimiter_0();
NullCheck(L_18);
StringBuilder_Append_m1ADA3C16E40BF253BCDB5F9579B4DBA9C3E5B22E(L_18, L_19, /*hidden argument*/NULL);
goto IL_01ae;
}
IL_0075:
{
V_7 = ((int32_t)2147483647LL);
V_8 = 0;
goto IL_00a8;
}
IL_0081:
{
String_t* L_20 = ___s0;
int32_t L_21 = V_8;
NullCheck(L_20);
Il2CppChar L_22 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_20, L_21, /*hidden argument*/NULL);
int32_t L_23 = V_0;
if ((((int32_t)L_22) < ((int32_t)L_23)))
{
goto IL_00a2;
}
}
{
String_t* L_24 = ___s0;
int32_t L_25 = V_8;
NullCheck(L_24);
Il2CppChar L_26 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_24, L_25, /*hidden argument*/NULL);
int32_t L_27 = V_7;
if ((((int32_t)L_26) >= ((int32_t)L_27)))
{
goto IL_00a2;
}
}
{
String_t* L_28 = ___s0;
int32_t L_29 = V_8;
NullCheck(L_28);
Il2CppChar L_30 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_28, L_29, /*hidden argument*/NULL);
V_7 = L_30;
}
IL_00a2:
{
int32_t L_31 = V_8;
V_8 = ((int32_t)il2cpp_codegen_add((int32_t)L_31, (int32_t)1));
}
IL_00a8:
{
int32_t L_32 = V_8;
String_t* L_33 = ___s0;
NullCheck(L_33);
int32_t L_34 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_33, /*hidden argument*/NULL);
if ((((int32_t)L_32) < ((int32_t)L_34)))
{
goto IL_0081;
}
}
{
int32_t L_35 = V_1;
int32_t L_36 = V_7;
int32_t L_37 = V_0;
if (((int64_t)L_36 - (int64_t)L_37 < (int64_t)kIl2CppInt32Min) || ((int64_t)L_36 - (int64_t)L_37 > (int64_t)kIl2CppInt32Max))
IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), Bootstring_Encode_mB7577C8F0BC7E4055A6118755D30B84D87151A7C_RuntimeMethod_var);
int32_t L_38 = V_4;
if (((int64_t)L_38 + (int64_t)1 < (int64_t)kIl2CppInt32Min) || ((int64_t)L_38 + (int64_t)1 > (int64_t)kIl2CppInt32Max))
IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), Bootstring_Encode_mB7577C8F0BC7E4055A6118755D30B84D87151A7C_RuntimeMethod_var);
if (((int64_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_36, (int32_t)L_37)) * (int64_t)((int32_t)il2cpp_codegen_add((int32_t)L_38, (int32_t)1)) < (int64_t)kIl2CppInt32Min) || ((int64_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_36, (int32_t)L_37)) * (int64_t)((int32_t)il2cpp_codegen_add((int32_t)L_38, (int32_t)1)) > (int64_t)kIl2CppInt32Max))
IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), Bootstring_Encode_mB7577C8F0BC7E4055A6118755D30B84D87151A7C_RuntimeMethod_var);
if (((int64_t)L_35 + (int64_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_36, (int32_t)L_37)), (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_38, (int32_t)1)))) < (int64_t)kIl2CppInt32Min) || ((int64_t)L_35 + (int64_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_36, (int32_t)L_37)), (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_38, (int32_t)1)))) > (int64_t)kIl2CppInt32Max))
IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), Bootstring_Encode_mB7577C8F0BC7E4055A6118755D30B84D87151A7C_RuntimeMethod_var);
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_35, (int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_36, (int32_t)L_37)), (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_38, (int32_t)1))))));
int32_t L_39 = V_7;
V_0 = L_39;
V_9 = 0;
goto IL_0199;
}
IL_00c9:
{
String_t* L_40 = ___s0;
int32_t L_41 = V_9;
NullCheck(L_40);
Il2CppChar L_42 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_40, L_41, /*hidden argument*/NULL);
V_10 = L_42;
Il2CppChar L_43 = V_10;
int32_t L_44 = V_0;
if ((((int32_t)L_43) < ((int32_t)L_44)))
{
goto IL_00e1;
}
}
{
Il2CppChar L_45 = V_10;
if ((((int32_t)L_45) >= ((int32_t)((int32_t)128))))
{
goto IL_00e5;
}
}
IL_00e1:
{
int32_t L_46 = V_1;
if (((int64_t)L_46 + (int64_t)1 < (int64_t)kIl2CppInt32Min) || ((int64_t)L_46 + (int64_t)1 > (int64_t)kIl2CppInt32Max))
IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), Bootstring_Encode_mB7577C8F0BC7E4055A6118755D30B84D87151A7C_RuntimeMethod_var);
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_46, (int32_t)1));
}
IL_00e5:
{
Il2CppChar L_47 = V_10;
int32_t L_48 = V_0;
if ((!(((uint32_t)L_47) == ((uint32_t)L_48))))
{
goto IL_0193;
}
}
{
int32_t L_49 = V_1;
V_11 = L_49;
int32_t L_50 = __this->get_base_num_1();
V_12 = L_50;
}
IL_00f8:
{
int32_t L_51 = V_12;
int32_t L_52 = V_2;
int32_t L_53 = __this->get_tmin_2();
if ((((int32_t)L_51) <= ((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_52, (int32_t)L_53)))))
{
goto IL_011e;
}
}
{
int32_t L_54 = V_12;
int32_t L_55 = V_2;
int32_t L_56 = __this->get_tmax_3();
if ((((int32_t)L_54) >= ((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_55, (int32_t)L_56)))))
{
goto IL_0116;
}
}
{
int32_t L_57 = V_12;
int32_t L_58 = V_2;
G_B24_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_57, (int32_t)L_58));
goto IL_0124;
}
IL_0116:
{
int32_t L_59 = __this->get_tmax_3();
G_B24_0 = L_59;
goto IL_0124;
}
IL_011e:
{
int32_t L_60 = __this->get_tmin_2();
G_B24_0 = L_60;
}
IL_0124:
{
V_13 = G_B24_0;
int32_t L_61 = V_11;
int32_t L_62 = V_13;
if ((((int32_t)L_61) < ((int32_t)L_62)))
{
goto IL_016a;
}
}
{
StringBuilder_t * L_63 = V_5;
int32_t L_64 = V_13;
int32_t L_65 = V_11;
int32_t L_66 = V_13;
int32_t L_67 = __this->get_base_num_1();
int32_t L_68 = V_13;
Il2CppChar L_69 = Bootstring_EncodeDigit_mF82546A5EA55C33C503F45B7908E225EFB76AE16(__this, ((int32_t)il2cpp_codegen_add((int32_t)L_64, (int32_t)((int32_t)((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_65, (int32_t)L_66))%(int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_67, (int32_t)L_68)))))), /*hidden argument*/NULL);
NullCheck(L_63);
StringBuilder_Append_m1ADA3C16E40BF253BCDB5F9579B4DBA9C3E5B22E(L_63, L_69, /*hidden argument*/NULL);
int32_t L_70 = V_11;
int32_t L_71 = V_13;
int32_t L_72 = __this->get_base_num_1();
int32_t L_73 = V_13;
V_11 = ((int32_t)((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_70, (int32_t)L_71))/(int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_72, (int32_t)L_73))));
int32_t L_74 = V_12;
int32_t L_75 = __this->get_base_num_1();
V_12 = ((int32_t)il2cpp_codegen_add((int32_t)L_74, (int32_t)L_75));
goto IL_00f8;
}
IL_016a:
{
StringBuilder_t * L_76 = V_5;
int32_t L_77 = V_11;
Il2CppChar L_78 = Bootstring_EncodeDigit_mF82546A5EA55C33C503F45B7908E225EFB76AE16(__this, L_77, /*hidden argument*/NULL);
NullCheck(L_76);
StringBuilder_Append_m1ADA3C16E40BF253BCDB5F9579B4DBA9C3E5B22E(L_76, L_78, /*hidden argument*/NULL);
int32_t L_79 = V_1;
int32_t L_80 = V_4;
int32_t L_81 = V_4;
int32_t L_82 = V_3;
int32_t L_83 = Bootstring_Adapt_m9194E21FF06AFE54BC6735E5BDA2ACDBCB72591C(__this, L_79, ((int32_t)il2cpp_codegen_add((int32_t)L_80, (int32_t)1)), (bool)((((int32_t)L_81) == ((int32_t)L_82))? 1 : 0), /*hidden argument*/NULL);
V_2 = L_83;
V_1 = 0;
int32_t L_84 = V_4;
V_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_84, (int32_t)1));
}
IL_0193:
{
int32_t L_85 = V_9;
V_9 = ((int32_t)il2cpp_codegen_add((int32_t)L_85, (int32_t)1));
}
IL_0199:
{
int32_t L_86 = V_9;
String_t* L_87 = ___s0;
NullCheck(L_87);
int32_t L_88 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_87, /*hidden argument*/NULL);
if ((((int32_t)L_86) < ((int32_t)L_88)))
{
goto IL_00c9;
}
}
{
int32_t L_89 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_89, (int32_t)1));
int32_t L_90 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_90, (int32_t)1));
}
IL_01ae:
{
int32_t L_91 = V_4;
String_t* L_92 = ___s0;
NullCheck(L_92);
int32_t L_93 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_92, /*hidden argument*/NULL);
if ((((int32_t)L_91) < ((int32_t)L_93)))
{
goto IL_0075;
}
}
{
StringBuilder_t * L_94 = V_5;
NullCheck(L_94);
String_t* L_95 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_94);
return L_95;
}
}
// System.Char System.Globalization.Bootstring::EncodeDigit(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Bootstring_EncodeDigit_mF82546A5EA55C33C503F45B7908E225EFB76AE16 (Bootstring_t39E09D4C4B98FECD2C042751FA27A6FA98BB3882 * __this, int32_t ___d0, const RuntimeMethod* method)
{
int32_t G_B3_0 = 0;
{
int32_t L_0 = ___d0;
if ((((int32_t)L_0) < ((int32_t)((int32_t)26))))
{
goto IL_000e;
}
}
{
int32_t L_1 = ___d0;
G_B3_0 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_1, (int32_t)((int32_t)26))), (int32_t)((int32_t)48)));
goto IL_0012;
}
IL_000e:
{
int32_t L_2 = ___d0;
G_B3_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_2, (int32_t)((int32_t)97)));
}
IL_0012:
{
return (((int32_t)((uint16_t)G_B3_0)));
}
}
// System.Int32 System.Globalization.Bootstring::DecodeDigit(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Bootstring_DecodeDigit_mE9F8F2B5C647361361139BC6C92964E7D56DFAA1 (Bootstring_t39E09D4C4B98FECD2C042751FA27A6FA98BB3882 * __this, Il2CppChar ___c0, const RuntimeMethod* method)
{
{
Il2CppChar L_0 = ___c0;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)((int32_t)48)))) < ((int32_t)((int32_t)10))))
{
goto IL_0029;
}
}
{
Il2CppChar L_1 = ___c0;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_1, (int32_t)((int32_t)65)))) < ((int32_t)((int32_t)26))))
{
goto IL_0024;
}
}
{
Il2CppChar L_2 = ___c0;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_2, (int32_t)((int32_t)97)))) < ((int32_t)((int32_t)26))))
{
goto IL_001f;
}
}
{
int32_t L_3 = __this->get_base_num_1();
return L_3;
}
IL_001f:
{
Il2CppChar L_4 = ___c0;
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)((int32_t)97)));
}
IL_0024:
{
Il2CppChar L_5 = ___c0;
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_5, (int32_t)((int32_t)65)));
}
IL_0029:
{
Il2CppChar L_6 = ___c0;
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)((int32_t)22)));
}
}
// System.Int32 System.Globalization.Bootstring::Adapt(System.Int32,System.Int32,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Bootstring_Adapt_m9194E21FF06AFE54BC6735E5BDA2ACDBCB72591C (Bootstring_t39E09D4C4B98FECD2C042751FA27A6FA98BB3882 * __this, int32_t ___delta0, int32_t ___numPoints1, bool ___firstTime2, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
bool L_0 = ___firstTime2;
if (!L_0)
{
goto IL_000f;
}
}
{
int32_t L_1 = ___delta0;
int32_t L_2 = __this->get_damp_5();
___delta0 = ((int32_t)((int32_t)L_1/(int32_t)L_2));
goto IL_0014;
}
IL_000f:
{
int32_t L_3 = ___delta0;
___delta0 = ((int32_t)((int32_t)L_3/(int32_t)2));
}
IL_0014:
{
int32_t L_4 = ___delta0;
int32_t L_5 = ___delta0;
int32_t L_6 = ___numPoints1;
___delta0 = ((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)((int32_t)((int32_t)L_5/(int32_t)L_6))));
V_0 = 0;
goto IL_0039;
}
IL_001f:
{
int32_t L_7 = ___delta0;
int32_t L_8 = __this->get_base_num_1();
int32_t L_9 = __this->get_tmin_2();
___delta0 = ((int32_t)((int32_t)L_7/(int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_8, (int32_t)L_9))));
int32_t L_10 = V_0;
int32_t L_11 = __this->get_base_num_1();
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)L_11));
}
IL_0039:
{
int32_t L_12 = ___delta0;
int32_t L_13 = __this->get_base_num_1();
int32_t L_14 = __this->get_tmin_2();
int32_t L_15 = __this->get_tmax_3();
if ((((int32_t)L_12) > ((int32_t)((int32_t)((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_13, (int32_t)L_14)), (int32_t)L_15))/(int32_t)2)))))
{
goto IL_001f;
}
}
{
int32_t L_16 = V_0;
int32_t L_17 = __this->get_base_num_1();
int32_t L_18 = __this->get_tmin_2();
int32_t L_19 = ___delta0;
int32_t L_20 = ___delta0;
int32_t L_21 = __this->get_skew_4();
return ((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)((int32_t)((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_17, (int32_t)L_18)), (int32_t)1)), (int32_t)L_19))/(int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_20, (int32_t)L_21))))));
}
}
// System.String System.Globalization.Bootstring::Decode(System.String,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Bootstring_Decode_mC77D3DC475C290D4B225EF0898551E71AA57B037 (Bootstring_t39E09D4C4B98FECD2C042751FA27A6FA98BB3882 * __this, String_t* ___s0, int32_t ___offset1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Bootstring_Decode_mC77D3DC475C290D4B225EF0898551E71AA57B037_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
int32_t V_3 = 0;
StringBuilder_t * V_4 = NULL;
int32_t V_5 = 0;
int32_t V_6 = 0;
int32_t V_7 = 0;
int32_t V_8 = 0;
int32_t V_9 = 0;
int32_t V_10 = 0;
int32_t V_11 = 0;
int32_t G_B10_0 = 0;
int32_t G_B17_0 = 0;
{
int32_t L_0 = __this->get_initial_n_7();
V_0 = L_0;
V_1 = 0;
int32_t L_1 = __this->get_initial_bias_6();
V_2 = L_1;
V_3 = 0;
StringBuilder_t * L_2 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
StringBuilder__ctor_m5A81DE19E748F748E19FF13FB6FFD2547F9212D9(L_2, /*hidden argument*/NULL);
V_4 = L_2;
V_5 = 0;
goto IL_0037;
}
IL_001e:
{
String_t* L_3 = ___s0;
int32_t L_4 = V_5;
NullCheck(L_3);
Il2CppChar L_5 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_3, L_4, /*hidden argument*/NULL);
Il2CppChar L_6 = __this->get_delimiter_0();
if ((!(((uint32_t)L_5) == ((uint32_t)L_6))))
{
goto IL_0031;
}
}
{
int32_t L_7 = V_5;
V_3 = L_7;
}
IL_0031:
{
int32_t L_8 = V_5;
V_5 = ((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1));
}
IL_0037:
{
int32_t L_9 = V_5;
String_t* L_10 = ___s0;
NullCheck(L_10);
int32_t L_11 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_10, /*hidden argument*/NULL);
if ((((int32_t)L_9) < ((int32_t)L_11)))
{
goto IL_001e;
}
}
{
int32_t L_12 = V_3;
if ((((int32_t)L_12) >= ((int32_t)0)))
{
goto IL_0047;
}
}
{
String_t* L_13 = ___s0;
return L_13;
}
IL_0047:
{
StringBuilder_t * L_14 = V_4;
String_t* L_15 = ___s0;
int32_t L_16 = V_3;
NullCheck(L_14);
StringBuilder_Append_mB0253AA6494BFCC6EA6E5FA343D0DAE6F58CBD17(L_14, L_15, 0, L_16, /*hidden argument*/NULL);
int32_t L_17 = V_3;
if ((((int32_t)L_17) > ((int32_t)0)))
{
goto IL_0059;
}
}
{
G_B10_0 = 0;
goto IL_005c;
}
IL_0059:
{
int32_t L_18 = V_3;
G_B10_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1));
}
IL_005c:
{
V_6 = G_B10_0;
goto IL_0140;
}
IL_0063:
{
int32_t L_19 = V_1;
V_7 = L_19;
V_8 = 1;
int32_t L_20 = __this->get_base_num_1();
V_9 = L_20;
}
IL_0071:
{
String_t* L_21 = ___s0;
int32_t L_22 = V_6;
int32_t L_23 = L_22;
V_6 = ((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1));
NullCheck(L_21);
Il2CppChar L_24 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_21, L_23, /*hidden argument*/NULL);
int32_t L_25 = Bootstring_DecodeDigit_mE9F8F2B5C647361361139BC6C92964E7D56DFAA1(__this, L_24, /*hidden argument*/NULL);
V_10 = L_25;
int32_t L_26 = V_1;
int32_t L_27 = V_10;
int32_t L_28 = V_8;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_26, (int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_27, (int32_t)L_28))));
int32_t L_29 = V_9;
int32_t L_30 = V_2;
int32_t L_31 = __this->get_tmin_2();
if ((((int32_t)L_29) <= ((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_30, (int32_t)L_31)))))
{
goto IL_00b4;
}
}
{
int32_t L_32 = V_9;
int32_t L_33 = V_2;
int32_t L_34 = __this->get_tmax_3();
if ((((int32_t)L_32) >= ((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_33, (int32_t)L_34)))))
{
goto IL_00ac;
}
}
{
int32_t L_35 = V_9;
int32_t L_36 = V_2;
G_B17_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_35, (int32_t)L_36));
goto IL_00ba;
}
IL_00ac:
{
int32_t L_37 = __this->get_tmax_3();
G_B17_0 = L_37;
goto IL_00ba;
}
IL_00b4:
{
int32_t L_38 = __this->get_tmin_2();
G_B17_0 = L_38;
}
IL_00ba:
{
V_11 = G_B17_0;
int32_t L_39 = V_10;
int32_t L_40 = V_11;
if ((((int32_t)L_39) < ((int32_t)L_40)))
{
goto IL_00dd;
}
}
{
int32_t L_41 = V_8;
int32_t L_42 = __this->get_base_num_1();
int32_t L_43 = V_11;
V_8 = ((int32_t)il2cpp_codegen_multiply((int32_t)L_41, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_42, (int32_t)L_43))));
int32_t L_44 = V_9;
int32_t L_45 = __this->get_base_num_1();
V_9 = ((int32_t)il2cpp_codegen_add((int32_t)L_44, (int32_t)L_45));
goto IL_0071;
}
IL_00dd:
{
int32_t L_46 = V_1;
int32_t L_47 = V_7;
StringBuilder_t * L_48 = V_4;
NullCheck(L_48);
int32_t L_49 = StringBuilder_get_Length_m680500263C59ACFD9582BF2AEEED8E92C87FF5C0(L_48, /*hidden argument*/NULL);
int32_t L_50 = V_7;
int32_t L_51 = Bootstring_Adapt_m9194E21FF06AFE54BC6735E5BDA2ACDBCB72591C(__this, ((int32_t)il2cpp_codegen_subtract((int32_t)L_46, (int32_t)L_47)), ((int32_t)il2cpp_codegen_add((int32_t)L_49, (int32_t)1)), (bool)((((int32_t)L_50) == ((int32_t)0))? 1 : 0), /*hidden argument*/NULL);
V_2 = L_51;
int32_t L_52 = V_0;
int32_t L_53 = V_1;
StringBuilder_t * L_54 = V_4;
NullCheck(L_54);
int32_t L_55 = StringBuilder_get_Length_m680500263C59ACFD9582BF2AEEED8E92C87FF5C0(L_54, /*hidden argument*/NULL);
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_52, (int32_t)((int32_t)((int32_t)L_53/(int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_55, (int32_t)1))))));
int32_t L_56 = V_1;
StringBuilder_t * L_57 = V_4;
NullCheck(L_57);
int32_t L_58 = StringBuilder_get_Length_m680500263C59ACFD9582BF2AEEED8E92C87FF5C0(L_57, /*hidden argument*/NULL);
V_1 = ((int32_t)((int32_t)L_56%(int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_58, (int32_t)1))));
int32_t L_59 = V_0;
if ((((int32_t)L_59) >= ((int32_t)((int32_t)128))))
{
goto IL_0131;
}
}
{
int32_t L_60 = ___offset1;
int32_t L_61 = V_6;
int32_t L_62 = ((int32_t)il2cpp_codegen_add((int32_t)L_60, (int32_t)L_61));
RuntimeObject * L_63 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_62);
String_t* L_64 = String_Format_mB3D38E5238C3164DB4D7D29339D9E225A4496D17(_stringLiteralFED80DDFCB901E0011096F16C1480B6FA6C7591B, L_63, /*hidden argument*/NULL);
ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_65 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var);
ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_65, L_64, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_65, Bootstring_Decode_mC77D3DC475C290D4B225EF0898551E71AA57B037_RuntimeMethod_var);
}
IL_0131:
{
StringBuilder_t * L_66 = V_4;
int32_t L_67 = V_1;
int32_t L_68 = V_0;
NullCheck(L_66);
StringBuilder_Insert_m61BB1B6FAF08B662E8D676B844A88AD7C6B0749B(L_66, L_67, (((int32_t)((uint16_t)L_68))), /*hidden argument*/NULL);
int32_t L_69 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_69, (int32_t)1));
}
IL_0140:
{
int32_t L_70 = V_6;
String_t* L_71 = ___s0;
NullCheck(L_71);
int32_t L_72 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_71, /*hidden argument*/NULL);
if ((((int32_t)L_70) < ((int32_t)L_72)))
{
goto IL_0063;
}
}
{
StringBuilder_t * L_73 = V_4;
NullCheck(L_73);
String_t* L_74 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_73);
return L_74;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Boolean System.Buffer::InternalBlockCopy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Buffer_InternalBlockCopy_m94DD8A8B32A9A8A468D3764694A3694979857B97 (RuntimeArray * ___src0, int32_t ___srcOffsetBytes1, RuntimeArray * ___dst2, int32_t ___dstOffsetBytes3, int32_t ___byteCount4, const RuntimeMethod* method)
{
typedef bool (*Buffer_InternalBlockCopy_m94DD8A8B32A9A8A468D3764694A3694979857B97_ftn) (RuntimeArray *, int32_t, RuntimeArray *, int32_t, int32_t);
using namespace il2cpp::icalls;
return ((Buffer_InternalBlockCopy_m94DD8A8B32A9A8A468D3764694A3694979857B97_ftn)mscorlib::System::Buffer::InternalBlockCopy) (___src0, ___srcOffsetBytes1, ___dst2, ___dstOffsetBytes3, ___byteCount4);
}
// System.Int32 System.Buffer::IndexOfByte(System.Byte*,System.Byte,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Buffer_IndexOfByte_m0D3A92C2B7270C1D742085F55EA7AF5FF056DB4A (uint8_t* ___src0, uint8_t ___value1, int32_t ___index2, int32_t ___count3, const RuntimeMethod* method)
{
uint8_t* V_0 = NULL;
uint32_t V_1 = 0;
uint32_t V_2 = 0;
uint32_t V_3 = 0;
int32_t V_4 = 0;
{
uint8_t* L_0 = ___src0;
int32_t L_1 = ___index2;
V_0 = (uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_0, (int32_t)L_1));
goto IL_0021;
}
IL_0006:
{
int32_t L_2 = ___count3;
if (L_2)
{
goto IL_000b;
}
}
{
return (-1);
}
IL_000b:
{
uint8_t* L_3 = V_0;
int32_t L_4 = *((uint8_t*)L_3);
uint8_t L_5 = ___value1;
if ((!(((uint32_t)L_4) == ((uint32_t)L_5))))
{
goto IL_0018;
}
}
{
uint8_t* L_6 = V_0;
uint8_t* L_7 = ___src0;
return (((int32_t)((int32_t)(((int64_t)((int64_t)(intptr_t)((uint8_t*)((intptr_t)((uint8_t*)il2cpp_codegen_subtract((intptr_t)L_6, (intptr_t)L_7))/(int32_t)1))))))));
}
IL_0018:
{
int32_t L_8 = ___count3;
___count3 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_8, (int32_t)1));
uint8_t* L_9 = V_0;
V_0 = (uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_9, (int32_t)1));
}
IL_0021:
{
uint8_t* L_10 = V_0;
if (((int32_t)((int32_t)(((int32_t)((int32_t)(intptr_t)L_10)))&(int32_t)3)))
{
goto IL_0006;
}
}
{
uint8_t L_11 = ___value1;
uint8_t L_12 = ___value1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)((int32_t)L_11<<(int32_t)8)), (int32_t)L_12));
uint32_t L_13 = V_1;
uint32_t L_14 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)((int32_t)L_13<<(int32_t)((int32_t)16))), (int32_t)L_14));
goto IL_0096;
}
IL_0036:
{
uint8_t* L_15 = V_0;
int32_t L_16 = *((uint32_t*)L_15);
V_2 = L_16;
uint32_t L_17 = V_2;
uint32_t L_18 = V_1;
V_2 = ((int32_t)((int32_t)L_17^(int32_t)L_18));
uint32_t L_19 = V_2;
V_3 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)2130640639), (int32_t)L_19));
uint32_t L_20 = V_2;
V_2 = ((int32_t)((int32_t)L_20^(int32_t)(-1)));
uint32_t L_21 = V_2;
uint32_t L_22 = V_3;
V_2 = ((int32_t)((int32_t)L_21^(int32_t)L_22));
uint32_t L_23 = V_2;
V_2 = ((int32_t)((int32_t)L_23&(int32_t)((int32_t)-2130640640)));
uint32_t L_24 = V_2;
if (!L_24)
{
goto IL_008d;
}
}
{
uint8_t* L_25 = V_0;
uint8_t* L_26 = ___src0;
V_4 = (((int32_t)((int32_t)(((int64_t)((int64_t)(intptr_t)((uint8_t*)((intptr_t)((uint8_t*)il2cpp_codegen_subtract((intptr_t)L_25, (intptr_t)L_26))/(int32_t)1))))))));
uint8_t* L_27 = V_0;
int32_t L_28 = *((uint8_t*)L_27);
uint8_t L_29 = ___value1;
if ((!(((uint32_t)L_28) == ((uint32_t)L_29))))
{
goto IL_0069;
}
}
{
int32_t L_30 = V_4;
return L_30;
}
IL_0069:
{
uint8_t* L_31 = V_0;
int32_t L_32 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_31, (int32_t)1)));
uint8_t L_33 = ___value1;
if ((!(((uint32_t)L_32) == ((uint32_t)L_33))))
{
goto IL_0075;
}
}
{
int32_t L_34 = V_4;
return ((int32_t)il2cpp_codegen_add((int32_t)L_34, (int32_t)1));
}
IL_0075:
{
uint8_t* L_35 = V_0;
int32_t L_36 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_35, (int32_t)2)));
uint8_t L_37 = ___value1;
if ((!(((uint32_t)L_36) == ((uint32_t)L_37))))
{
goto IL_0081;
}
}
{
int32_t L_38 = V_4;
return ((int32_t)il2cpp_codegen_add((int32_t)L_38, (int32_t)2));
}
IL_0081:
{
uint8_t* L_39 = V_0;
int32_t L_40 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_39, (int32_t)3)));
uint8_t L_41 = ___value1;
if ((!(((uint32_t)L_40) == ((uint32_t)L_41))))
{
goto IL_008d;
}
}
{
int32_t L_42 = V_4;
return ((int32_t)il2cpp_codegen_add((int32_t)L_42, (int32_t)3));
}
IL_008d:
{
int32_t L_43 = ___count3;
___count3 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_43, (int32_t)4));
uint8_t* L_44 = V_0;
V_0 = (uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_44, (int32_t)4));
}
IL_0096:
{
int32_t L_45 = ___count3;
if ((((int32_t)L_45) > ((int32_t)3)))
{
goto IL_0036;
}
}
{
goto IL_00b2;
}
IL_009c:
{
uint8_t* L_46 = V_0;
int32_t L_47 = *((uint8_t*)L_46);
uint8_t L_48 = ___value1;
if ((!(((uint32_t)L_47) == ((uint32_t)L_48))))
{
goto IL_00a9;
}
}
{
uint8_t* L_49 = V_0;
uint8_t* L_50 = ___src0;
return (((int32_t)((int32_t)(((int64_t)((int64_t)(intptr_t)((uint8_t*)((intptr_t)((uint8_t*)il2cpp_codegen_subtract((intptr_t)L_49, (intptr_t)L_50))/(int32_t)1))))))));
}
IL_00a9:
{
int32_t L_51 = ___count3;
___count3 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_51, (int32_t)1));
uint8_t* L_52 = V_0;
V_0 = (uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_52, (int32_t)1));
}
IL_00b2:
{
int32_t L_53 = ___count3;
if ((((int32_t)L_53) > ((int32_t)0)))
{
goto IL_009c;
}
}
{
return (-1);
}
}
// System.Int32 System.Buffer::_ByteLength(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Buffer__ByteLength_m39CDA1E4878C67B50CE442C3B9825E38DFC20635 (RuntimeArray * ___array0, const RuntimeMethod* method)
{
typedef int32_t (*Buffer__ByteLength_m39CDA1E4878C67B50CE442C3B9825E38DFC20635_ftn) (RuntimeArray *);
using namespace il2cpp::icalls;
return ((Buffer__ByteLength_m39CDA1E4878C67B50CE442C3B9825E38DFC20635_ftn)mscorlib::System::Buffer::_ByteLength) (___array0);
}
// System.Void System.Buffer::ZeroMemory(System.Byte*,System.Int64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Buffer_ZeroMemory_mECA8DE895A000FA218AA83D89555FF55E3F8C3A0 (uint8_t* ___src0, int64_t ___len1, const RuntimeMethod* method)
{
{
goto IL_0008;
}
IL_0002:
{
uint8_t* L_0 = ___src0;
int64_t L_1 = ___len1;
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_0, (intptr_t)(((intptr_t)L_1))))) = (int8_t)0;
}
IL_0008:
{
int64_t L_2 = ___len1;
int64_t L_3 = L_2;
___len1 = ((int64_t)il2cpp_codegen_subtract((int64_t)L_3, (int64_t)(((int64_t)((int64_t)1)))));
if ((((int64_t)L_3) > ((int64_t)(((int64_t)((int64_t)0))))))
{
goto IL_0002;
}
}
{
return;
}
}
// System.Void System.Buffer::Memcpy(System.Byte[],System.Int32,System.Byte*,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Buffer_Memcpy_m1EDDFF0FB8D566A5923B90008F81AE8DC063FF17 (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___dest0, int32_t ___destIndex1, uint8_t* ___src2, int32_t ___srcIndex3, int32_t ___len4, const RuntimeMethod* method)
{
uint8_t* V_0 = NULL;
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* V_1 = NULL;
{
int32_t L_0 = ___len4;
if (L_0)
{
goto IL_0005;
}
}
{
return;
}
IL_0005:
{
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_1 = ___dest0;
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_2 = L_1;
V_1 = L_2;
if (!L_2)
{
goto IL_000f;
}
}
{
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_3 = V_1;
NullCheck(L_3);
if ((((int32_t)((int32_t)(((RuntimeArray*)L_3)->max_length)))))
{
goto IL_0014;
}
}
IL_000f:
{
V_0 = (uint8_t*)(((uintptr_t)0));
goto IL_001d;
}
IL_0014:
{
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_4 = V_1;
NullCheck(L_4);
V_0 = (uint8_t*)(((uintptr_t)((L_4)->GetAddressAt(static_cast<il2cpp_array_size_t>(0)))));
}
IL_001d:
{
uint8_t* L_5 = V_0;
int32_t L_6 = ___destIndex1;
uint8_t* L_7 = ___src2;
int32_t L_8 = ___srcIndex3;
int32_t L_9 = ___len4;
Buffer_Memcpy_m67752CDFBB079C42EFA9EBA2BB9A0C96DFAA2178((uint8_t*)(uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_5, (int32_t)L_6)), (uint8_t*)(uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_7, (int32_t)L_8)), L_9, /*hidden argument*/NULL);
V_1 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)NULL;
return;
}
}
// System.Void System.Buffer::Memcpy(System.Byte*,System.Int32,System.Byte[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Buffer_Memcpy_mD8D74E169D674343A07E706CE7D5E140676B927F (uint8_t* ___pDest0, int32_t ___destIndex1, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___src2, int32_t ___srcIndex3, int32_t ___len4, const RuntimeMethod* method)
{
uint8_t* V_0 = NULL;
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* V_1 = NULL;
{
int32_t L_0 = ___len4;
if (L_0)
{
goto IL_0005;
}
}
{
return;
}
IL_0005:
{
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_1 = ___src2;
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_2 = L_1;
V_1 = L_2;
if (!L_2)
{
goto IL_000f;
}
}
{
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_3 = V_1;
NullCheck(L_3);
if ((((int32_t)((int32_t)(((RuntimeArray*)L_3)->max_length)))))
{
goto IL_0014;
}
}
IL_000f:
{
V_0 = (uint8_t*)(((uintptr_t)0));
goto IL_001d;
}
IL_0014:
{
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_4 = V_1;
NullCheck(L_4);
V_0 = (uint8_t*)(((uintptr_t)((L_4)->GetAddressAt(static_cast<il2cpp_array_size_t>(0)))));
}
IL_001d:
{
uint8_t* L_5 = ___pDest0;
int32_t L_6 = ___destIndex1;
uint8_t* L_7 = V_0;
int32_t L_8 = ___srcIndex3;
int32_t L_9 = ___len4;
Buffer_Memcpy_m67752CDFBB079C42EFA9EBA2BB9A0C96DFAA2178((uint8_t*)(uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_5, (int32_t)L_6)), (uint8_t*)(uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_7, (int32_t)L_8)), L_9, /*hidden argument*/NULL);
V_1 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)NULL;
return;
}
}
// System.Int32 System.Buffer::ByteLength(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Buffer_ByteLength_m3E1127D2C9E1B9CD61A1A6109CC2A9B934595145 (RuntimeArray * ___array0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Buffer_ByteLength_m3E1127D2C9E1B9CD61A1A6109CC2A9B934595145_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t G_B4_0 = 0;
int32_t G_B3_0 = 0;
{
RuntimeArray * L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, _stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Buffer_ByteLength_m3E1127D2C9E1B9CD61A1A6109CC2A9B934595145_RuntimeMethod_var);
}
IL_000e:
{
RuntimeArray * L_2 = ___array0;
int32_t L_3 = Buffer__ByteLength_m39CDA1E4878C67B50CE442C3B9825E38DFC20635(L_2, /*hidden argument*/NULL);
int32_t L_4 = L_3;
G_B3_0 = L_4;
if ((((int32_t)L_4) >= ((int32_t)0)))
{
G_B4_0 = L_4;
goto IL_0028;
}
}
{
String_t* L_5 = Locale_GetText_mF8FE147379A36330B41A5D5E2CAD23C18931E66E(_stringLiteral4DFB23BDF07A363C796AD8A75DD05EFEEC339872, /*hidden argument*/NULL);
ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_6 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var);
ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_6, L_5, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, Buffer_ByteLength_m3E1127D2C9E1B9CD61A1A6109CC2A9B934595145_RuntimeMethod_var);
}
IL_0028:
{
return G_B4_0;
}
}
// System.Void System.Buffer::BlockCopy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Buffer_BlockCopy_mD01FC13D87078586714AA235261A9E786C351725 (RuntimeArray * ___src0, int32_t ___srcOffset1, RuntimeArray * ___dst2, int32_t ___dstOffset3, int32_t ___count4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Buffer_BlockCopy_mD01FC13D87078586714AA235261A9E786C351725_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeArray * L_0 = ___src0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, _stringLiteralF1E3744356EAC23657287E3F9EDA22262C5228C4, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Buffer_BlockCopy_mD01FC13D87078586714AA235261A9E786C351725_RuntimeMethod_var);
}
IL_000e:
{
RuntimeArray * L_2 = ___dst2;
if (L_2)
{
goto IL_001c;
}
}
{
ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_3 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_3, _stringLiteral1D6674CC4444ADCC095A55FE821CC7143CAEE6C2, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, Buffer_BlockCopy_mD01FC13D87078586714AA235261A9E786C351725_RuntimeMethod_var);
}
IL_001c:
{
int32_t L_4 = ___srcOffset1;
if ((((int32_t)L_4) >= ((int32_t)0)))
{
goto IL_0035;
}
}
{
String_t* L_5 = Locale_GetText_mF8FE147379A36330B41A5D5E2CAD23C18931E66E(_stringLiteral38E3DBC7FC353425EF3A98DC8DAC6689AF5FD1BE, /*hidden argument*/NULL);
ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_6 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_mE43AFC74F5F3932913C023A04B24905E093C5005(L_6, _stringLiteralB09D0FEA309587A127D07C785E1898E52BADEDD9, L_5, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, Buffer_BlockCopy_mD01FC13D87078586714AA235261A9E786C351725_RuntimeMethod_var);
}
IL_0035:
{
int32_t L_7 = ___dstOffset3;
if ((((int32_t)L_7) >= ((int32_t)0)))
{
goto IL_004e;
}
}
{
String_t* L_8 = Locale_GetText_mF8FE147379A36330B41A5D5E2CAD23C18931E66E(_stringLiteral38E3DBC7FC353425EF3A98DC8DAC6689AF5FD1BE, /*hidden argument*/NULL);
ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_9 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_mE43AFC74F5F3932913C023A04B24905E093C5005(L_9, _stringLiteral275D3E3CE6C1DCAE744A9EA422F681D8094B8A71, L_8, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, Buffer_BlockCopy_mD01FC13D87078586714AA235261A9E786C351725_RuntimeMethod_var);
}
IL_004e:
{
int32_t L_10 = ___count4;
if ((((int32_t)L_10) >= ((int32_t)0)))
{
goto IL_0068;
}
}
{
String_t* L_11 = Locale_GetText_mF8FE147379A36330B41A5D5E2CAD23C18931E66E(_stringLiteral38E3DBC7FC353425EF3A98DC8DAC6689AF5FD1BE, /*hidden argument*/NULL);
ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_12 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_mE43AFC74F5F3932913C023A04B24905E093C5005(L_12, _stringLiteral07624473F417C06C74D59C64840A1532FCE2C626, L_11, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, Buffer_BlockCopy_mD01FC13D87078586714AA235261A9E786C351725_RuntimeMethod_var);
}
IL_0068:
{
RuntimeArray * L_13 = ___src0;
int32_t L_14 = ___srcOffset1;
RuntimeArray * L_15 = ___dst2;
int32_t L_16 = ___dstOffset3;
int32_t L_17 = ___count4;
bool L_18 = Buffer_InternalBlockCopy_m94DD8A8B32A9A8A468D3764694A3694979857B97(L_13, L_14, L_15, L_16, L_17, /*hidden argument*/NULL);
if (L_18)
{
goto IL_009d;
}
}
{
int32_t L_19 = ___srcOffset1;
RuntimeArray * L_20 = ___src0;
int32_t L_21 = Buffer_ByteLength_m3E1127D2C9E1B9CD61A1A6109CC2A9B934595145(L_20, /*hidden argument*/NULL);
int32_t L_22 = ___count4;
if ((((int32_t)L_19) > ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_21, (int32_t)L_22)))))
{
goto IL_008d;
}
}
{
int32_t L_23 = ___dstOffset3;
RuntimeArray * L_24 = ___dst2;
int32_t L_25 = Buffer_ByteLength_m3E1127D2C9E1B9CD61A1A6109CC2A9B934595145(L_24, /*hidden argument*/NULL);
int32_t L_26 = ___count4;
if ((((int32_t)L_23) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_25, (int32_t)L_26)))))
{
goto IL_009d;
}
}
IL_008d:
{
String_t* L_27 = Locale_GetText_mF8FE147379A36330B41A5D5E2CAD23C18931E66E(_stringLiteral7F4C724BD10943E8B0B17A6E069F992E219EF5E8, /*hidden argument*/NULL);
ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_28 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var);
ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_28, L_27, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_28, Buffer_BlockCopy_mD01FC13D87078586714AA235261A9E786C351725_RuntimeMethod_var);
}
IL_009d:
{
return;
}
}
// System.Void System.Buffer::memcpy4(System.Byte*,System.Byte*,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Buffer_memcpy4_m287A8DFFFE0661702473AEBA0FCA7353C2D0A0DF (uint8_t* ___dest0, uint8_t* ___src1, int32_t ___size2, const RuntimeMethod* method)
{
{
goto IL_003c;
}
IL_0002:
{
uint8_t* L_0 = ___dest0;
uint8_t* L_1 = ___src1;
int32_t L_2 = *((int32_t*)L_1);
*((int32_t*)L_0) = (int32_t)L_2;
uint8_t* L_3 = ___dest0;
uint8_t* L_4 = ___src1;
int32_t L_5 = *((int32_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_4, (int32_t)4)));
*((int32_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_3, (int32_t)4))) = (int32_t)L_5;
uint8_t* L_6 = ___dest0;
uint8_t* L_7 = ___src1;
int32_t L_8 = *((int32_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_7, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)2)), (int32_t)4)))));
*((int32_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_6, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)2)), (int32_t)4))))) = (int32_t)L_8;
uint8_t* L_9 = ___dest0;
uint8_t* L_10 = ___src1;
int32_t L_11 = *((int32_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_10, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)3)), (int32_t)4)))));
*((int32_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_9, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)3)), (int32_t)4))))) = (int32_t)L_11;
uint8_t* L_12 = ___dest0;
___dest0 = (uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_12, (int32_t)((int32_t)16)));
uint8_t* L_13 = ___src1;
___src1 = (uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_13, (int32_t)((int32_t)16)));
int32_t L_14 = ___size2;
___size2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_14, (int32_t)((int32_t)16)));
}
IL_003c:
{
int32_t L_15 = ___size2;
if ((((int32_t)L_15) >= ((int32_t)((int32_t)16))))
{
goto IL_0002;
}
}
{
goto IL_0056;
}
IL_0043:
{
uint8_t* L_16 = ___dest0;
uint8_t* L_17 = ___src1;
int32_t L_18 = *((int32_t*)L_17);
*((int32_t*)L_16) = (int32_t)L_18;
uint8_t* L_19 = ___dest0;
___dest0 = (uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_19, (int32_t)4));
uint8_t* L_20 = ___src1;
___src1 = (uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_20, (int32_t)4));
int32_t L_21 = ___size2;
___size2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_21, (int32_t)4));
}
IL_0056:
{
int32_t L_22 = ___size2;
if ((((int32_t)L_22) >= ((int32_t)4)))
{
goto IL_0043;
}
}
{
goto IL_006f;
}
IL_005c:
{
uint8_t* L_23 = ___dest0;
uint8_t* L_24 = ___src1;
int32_t L_25 = *((uint8_t*)L_24);
*((int8_t*)L_23) = (int8_t)L_25;
uint8_t* L_26 = ___dest0;
___dest0 = (uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_26, (int32_t)1));
uint8_t* L_27 = ___src1;
___src1 = (uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_27, (int32_t)1));
int32_t L_28 = ___size2;
___size2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_28, (int32_t)1));
}
IL_006f:
{
int32_t L_29 = ___size2;
if ((((int32_t)L_29) > ((int32_t)0)))
{
goto IL_005c;
}
}
{
return;
}
}
// System.Void System.Buffer::memcpy2(System.Byte*,System.Byte*,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Buffer_memcpy2_m8BEDA0C1DF0A4CF4FB24921783DD924433E93D72 (uint8_t* ___dest0, uint8_t* ___src1, int32_t ___size2, const RuntimeMethod* method)
{
{
goto IL_0039;
}
IL_0002:
{
uint8_t* L_0 = ___dest0;
uint8_t* L_1 = ___src1;
int32_t L_2 = *((int16_t*)L_1);
*((int16_t*)L_0) = (int16_t)L_2;
uint8_t* L_3 = ___dest0;
uint8_t* L_4 = ___src1;
int32_t L_5 = *((int16_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_4, (int32_t)2)));
*((int16_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_3, (int32_t)2))) = (int16_t)L_5;
uint8_t* L_6 = ___dest0;
uint8_t* L_7 = ___src1;
int32_t L_8 = *((int16_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_7, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)2)), (int32_t)2)))));
*((int16_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_6, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)2)), (int32_t)2))))) = (int16_t)L_8;
uint8_t* L_9 = ___dest0;
uint8_t* L_10 = ___src1;
int32_t L_11 = *((int16_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_10, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)3)), (int32_t)2)))));
*((int16_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_9, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)3)), (int32_t)2))))) = (int16_t)L_11;
uint8_t* L_12 = ___dest0;
___dest0 = (uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_12, (int32_t)8));
uint8_t* L_13 = ___src1;
___src1 = (uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_13, (int32_t)8));
int32_t L_14 = ___size2;
___size2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_14, (int32_t)8));
}
IL_0039:
{
int32_t L_15 = ___size2;
if ((((int32_t)L_15) >= ((int32_t)8)))
{
goto IL_0002;
}
}
{
goto IL_0052;
}
IL_003f:
{
uint8_t* L_16 = ___dest0;
uint8_t* L_17 = ___src1;
int32_t L_18 = *((int16_t*)L_17);
*((int16_t*)L_16) = (int16_t)L_18;
uint8_t* L_19 = ___dest0;
___dest0 = (uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_19, (int32_t)2));
uint8_t* L_20 = ___src1;
___src1 = (uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_20, (int32_t)2));
int32_t L_21 = ___size2;
___size2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_21, (int32_t)2));
}
IL_0052:
{
int32_t L_22 = ___size2;
if ((((int32_t)L_22) >= ((int32_t)2)))
{
goto IL_003f;
}
}
{
int32_t L_23 = ___size2;
if ((((int32_t)L_23) <= ((int32_t)0)))
{
goto IL_005e;
}
}
{
uint8_t* L_24 = ___dest0;
uint8_t* L_25 = ___src1;
int32_t L_26 = *((uint8_t*)L_25);
*((int8_t*)L_24) = (int8_t)L_26;
}
IL_005e:
{
return;
}
}
// System.Void System.Buffer::memcpy1(System.Byte*,System.Byte*,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Buffer_memcpy1_m3DBB7CD4E42A1F1A770831C63361A2036C777818 (uint8_t* ___dest0, uint8_t* ___src1, int32_t ___size2, const RuntimeMethod* method)
{
{
goto IL_004d;
}
IL_0002:
{
uint8_t* L_0 = ___dest0;
uint8_t* L_1 = ___src1;
int32_t L_2 = *((uint8_t*)L_1);
*((int8_t*)L_0) = (int8_t)L_2;
uint8_t* L_3 = ___dest0;
uint8_t* L_4 = ___src1;
int32_t L_5 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_4, (int32_t)1)));
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_3, (int32_t)1))) = (int8_t)L_5;
uint8_t* L_6 = ___dest0;
uint8_t* L_7 = ___src1;
int32_t L_8 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_7, (int32_t)2)));
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_6, (int32_t)2))) = (int8_t)L_8;
uint8_t* L_9 = ___dest0;
uint8_t* L_10 = ___src1;
int32_t L_11 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_10, (int32_t)3)));
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_9, (int32_t)3))) = (int8_t)L_11;
uint8_t* L_12 = ___dest0;
uint8_t* L_13 = ___src1;
int32_t L_14 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_13, (int32_t)4)));
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_12, (int32_t)4))) = (int8_t)L_14;
uint8_t* L_15 = ___dest0;
uint8_t* L_16 = ___src1;
int32_t L_17 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_16, (int32_t)5)));
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_15, (int32_t)5))) = (int8_t)L_17;
uint8_t* L_18 = ___dest0;
uint8_t* L_19 = ___src1;
int32_t L_20 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_19, (int32_t)6)));
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_18, (int32_t)6))) = (int8_t)L_20;
uint8_t* L_21 = ___dest0;
uint8_t* L_22 = ___src1;
int32_t L_23 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_22, (int32_t)7)));
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_21, (int32_t)7))) = (int8_t)L_23;
uint8_t* L_24 = ___dest0;
___dest0 = (uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_24, (int32_t)8));
uint8_t* L_25 = ___src1;
___src1 = (uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_25, (int32_t)8));
int32_t L_26 = ___size2;
___size2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_26, (int32_t)8));
}
IL_004d:
{
int32_t L_27 = ___size2;
if ((((int32_t)L_27) >= ((int32_t)8)))
{
goto IL_0002;
}
}
{
goto IL_006e;
}
IL_0053:
{
uint8_t* L_28 = ___dest0;
uint8_t* L_29 = ___src1;
int32_t L_30 = *((uint8_t*)L_29);
*((int8_t*)L_28) = (int8_t)L_30;
uint8_t* L_31 = ___dest0;
uint8_t* L_32 = ___src1;
int32_t L_33 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_32, (int32_t)1)));
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_31, (int32_t)1))) = (int8_t)L_33;
uint8_t* L_34 = ___dest0;
___dest0 = (uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_34, (int32_t)2));
uint8_t* L_35 = ___src1;
___src1 = (uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_35, (int32_t)2));
int32_t L_36 = ___size2;
___size2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_36, (int32_t)2));
}
IL_006e:
{
int32_t L_37 = ___size2;
if ((((int32_t)L_37) >= ((int32_t)2)))
{
goto IL_0053;
}
}
{
int32_t L_38 = ___size2;
if ((((int32_t)L_38) <= ((int32_t)0)))
{
goto IL_007a;
}
}
{
uint8_t* L_39 = ___dest0;
uint8_t* L_40 = ___src1;
int32_t L_41 = *((uint8_t*)L_40);
*((int8_t*)L_39) = (int8_t)L_41;
}
IL_007a:
{
return;
}
}
// System.Void System.Buffer::Memcpy(System.Byte*,System.Byte*,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Buffer_Memcpy_m67752CDFBB079C42EFA9EBA2BB9A0C96DFAA2178 (uint8_t* ___dest0, uint8_t* ___src1, int32_t ___size2, const RuntimeMethod* method)
{
{
uint8_t* L_0 = ___dest0;
uint8_t* L_1 = ___src1;
if (!((int32_t)((int32_t)((int32_t)((int32_t)(((int32_t)((int32_t)(intptr_t)L_0)))|(int32_t)(((int32_t)((int32_t)(intptr_t)L_1)))))&(int32_t)3)))
{
goto IL_0073;
}
}
{
uint8_t* L_2 = ___dest0;
if (!((int32_t)((int32_t)(((int32_t)((int32_t)(intptr_t)L_2)))&(int32_t)1)))
{
goto IL_002c;
}
}
{
uint8_t* L_3 = ___src1;
if (!((int32_t)((int32_t)(((int32_t)((int32_t)(intptr_t)L_3)))&(int32_t)1)))
{
goto IL_002c;
}
}
{
int32_t L_4 = ___size2;
if ((((int32_t)L_4) < ((int32_t)1)))
{
goto IL_002c;
}
}
{
uint8_t* L_5 = ___dest0;
uint8_t* L_6 = ___src1;
int32_t L_7 = *((uint8_t*)L_6);
*((int8_t*)L_5) = (int8_t)L_7;
uint8_t* L_8 = ___dest0;
___dest0 = (uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_8, (int32_t)1));
uint8_t* L_9 = ___src1;
___src1 = (uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_9, (int32_t)1));
int32_t L_10 = ___size2;
___size2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_10, (int32_t)1));
}
IL_002c:
{
uint8_t* L_11 = ___dest0;
if (!((int32_t)((int32_t)(((int32_t)((int32_t)(intptr_t)L_11)))&(int32_t)2)))
{
goto IL_004f;
}
}
{
uint8_t* L_12 = ___src1;
if (!((int32_t)((int32_t)(((int32_t)((int32_t)(intptr_t)L_12)))&(int32_t)2)))
{
goto IL_004f;
}
}
{
int32_t L_13 = ___size2;
if ((((int32_t)L_13) < ((int32_t)2)))
{
goto IL_004f;
}
}
{
uint8_t* L_14 = ___dest0;
uint8_t* L_15 = ___src1;
int32_t L_16 = *((int16_t*)L_15);
*((int16_t*)L_14) = (int16_t)L_16;
uint8_t* L_17 = ___dest0;
___dest0 = (uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_17, (int32_t)2));
uint8_t* L_18 = ___src1;
___src1 = (uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_18, (int32_t)2));
int32_t L_19 = ___size2;
___size2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)2));
}
IL_004f:
{
uint8_t* L_20 = ___dest0;
uint8_t* L_21 = ___src1;
if (!((int32_t)((int32_t)((int32_t)((int32_t)(((int32_t)((int32_t)(intptr_t)L_20)))|(int32_t)(((int32_t)((int32_t)(intptr_t)L_21)))))&(int32_t)1)))
{
goto IL_0061;
}
}
{
uint8_t* L_22 = ___dest0;
uint8_t* L_23 = ___src1;
int32_t L_24 = ___size2;
Buffer_memcpy1_m3DBB7CD4E42A1F1A770831C63361A2036C777818((uint8_t*)(uint8_t*)L_22, (uint8_t*)(uint8_t*)L_23, L_24, /*hidden argument*/NULL);
return;
}
IL_0061:
{
uint8_t* L_25 = ___dest0;
uint8_t* L_26 = ___src1;
if (!((int32_t)((int32_t)((int32_t)((int32_t)(((int32_t)((int32_t)(intptr_t)L_25)))|(int32_t)(((int32_t)((int32_t)(intptr_t)L_26)))))&(int32_t)2)))
{
goto IL_0073;
}
}
{
uint8_t* L_27 = ___dest0;
uint8_t* L_28 = ___src1;
int32_t L_29 = ___size2;
Buffer_memcpy2_m8BEDA0C1DF0A4CF4FB24921783DD924433E93D72((uint8_t*)(uint8_t*)L_27, (uint8_t*)(uint8_t*)L_28, L_29, /*hidden argument*/NULL);
return;
}
IL_0073:
{
uint8_t* L_30 = ___dest0;
uint8_t* L_31 = ___src1;
int32_t L_32 = ___size2;
Buffer_memcpy4_m287A8DFFFE0661702473AEBA0FCA7353C2D0A0DF((uint8_t*)(uint8_t*)L_30, (uint8_t*)(uint8_t*)L_31, L_32, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Int32 System.Byte::CompareTo(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Byte_CompareTo_m1414E6ED844263883C709284E6429F2EC069F80A (uint8_t* __this, RuntimeObject * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Byte_CompareTo_m1414E6ED844263883C709284E6429F2EC069F80A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___value0;
if (L_0)
{
goto IL_0005;
}
}
{
return 1;
}
IL_0005:
{
RuntimeObject * L_1 = ___value0;
if (((RuntimeObject *)IsInstSealed((RuntimeObject*)L_1, Byte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_il2cpp_TypeInfo_var)))
{
goto IL_001d;
}
}
{
String_t* L_2 = Environment_GetResourceString_m8DFF827596B5FD533D3FE56900FA095F7D674617(_stringLiteral0BC57303021D0F5E73500A4048868718EB82784B, /*hidden argument*/NULL);
ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_3 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var);
ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_3, L_2, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, Byte_CompareTo_m1414E6ED844263883C709284E6429F2EC069F80A_RuntimeMethod_var);
}
IL_001d:
{
int32_t L_4 = *((uint8_t*)__this);
RuntimeObject * L_5 = ___value0;
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)((*(uint8_t*)((uint8_t*)UnBox(L_5, Byte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_il2cpp_TypeInfo_var))))));
}
}
IL2CPP_EXTERN_C int32_t Byte_CompareTo_m1414E6ED844263883C709284E6429F2EC069F80A_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
{
int32_t _offset = 1;
uint8_t* _thisAdjusted = reinterpret_cast<uint8_t*>(__this + _offset);
return Byte_CompareTo_m1414E6ED844263883C709284E6429F2EC069F80A(_thisAdjusted, ___value0, method);
}
// System.Int32 System.Byte::CompareTo(System.Byte)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Byte_CompareTo_m9B9F61F5B96CED94E4848B71CECBF02F495BDB88 (uint8_t* __this, uint8_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = *((uint8_t*)__this);
uint8_t L_1 = ___value0;
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1));
}
}
IL2CPP_EXTERN_C int32_t Byte_CompareTo_m9B9F61F5B96CED94E4848B71CECBF02F495BDB88_AdjustorThunk (RuntimeObject * __this, uint8_t ___value0, const RuntimeMethod* method)
{
int32_t _offset = 1;
uint8_t* _thisAdjusted = reinterpret_cast<uint8_t*>(__this + _offset);
return Byte_CompareTo_m9B9F61F5B96CED94E4848B71CECBF02F495BDB88(_thisAdjusted, ___value0, method);
}
// System.Boolean System.Byte::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Byte_Equals_m72418F27E0B518A3ACD4FECB57D72DF94050E3E3 (uint8_t* __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Byte_Equals_m72418F27E0B518A3ACD4FECB57D72DF94050E3E3_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___obj0;
if (((RuntimeObject *)IsInstSealed((RuntimeObject*)L_0, Byte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_il2cpp_TypeInfo_var)))
{
goto IL_000a;
}
}
{
return (bool)0;
}
IL_000a:
{
int32_t L_1 = *((uint8_t*)__this);
RuntimeObject * L_2 = ___obj0;
return (bool)((((int32_t)L_1) == ((int32_t)((*(uint8_t*)((uint8_t*)UnBox(L_2, Byte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_il2cpp_TypeInfo_var))))))? 1 : 0);
}
}
IL2CPP_EXTERN_C bool Byte_Equals_m72418F27E0B518A3ACD4FECB57D72DF94050E3E3_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
int32_t _offset = 1;
uint8_t* _thisAdjusted = reinterpret_cast<uint8_t*>(__this + _offset);
return Byte_Equals_m72418F27E0B518A3ACD4FECB57D72DF94050E3E3(_thisAdjusted, ___obj0, method);
}
// System.Boolean System.Byte::Equals(System.Byte)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Byte_Equals_m3D534F7DB712996FA3FAFF751AB20E684FB82C25 (uint8_t* __this, uint8_t ___obj0, const RuntimeMethod* method)
{
{
int32_t L_0 = *((uint8_t*)__this);
uint8_t L_1 = ___obj0;
return (bool)((((int32_t)L_0) == ((int32_t)L_1))? 1 : 0);
}
}
IL2CPP_EXTERN_C bool Byte_Equals_m3D534F7DB712996FA3FAFF751AB20E684FB82C25_AdjustorThunk (RuntimeObject * __this, uint8_t ___obj0, const RuntimeMethod* method)
{
int32_t _offset = 1;
uint8_t* _thisAdjusted = reinterpret_cast<uint8_t*>(__this + _offset);
return Byte_Equals_m3D534F7DB712996FA3FAFF751AB20E684FB82C25(_thisAdjusted, ___obj0, method);
}
// System.Int32 System.Byte::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Byte_GetHashCode_m5111B9229C948E0B734597AED742936F9542E093 (uint8_t* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = *((uint8_t*)__this);
return L_0;
}
}
IL2CPP_EXTERN_C int32_t Byte_GetHashCode_m5111B9229C948E0B734597AED742936F9542E093_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
uint8_t* _thisAdjusted = reinterpret_cast<uint8_t*>(__this + _offset);
return Byte_GetHashCode_m5111B9229C948E0B734597AED742936F9542E093(_thisAdjusted, method);
}
// System.Byte System.Byte::Parse(System.String,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Byte_Parse_mAFD1DF914F83659BB284CECF45CC9289F9B6E862 (String_t* ___s0, RuntimeObject* ___provider1, const RuntimeMethod* method)
{
{
String_t* L_0 = ___s0;
RuntimeObject* L_1 = ___provider1;
NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D * L_2 = NumberFormatInfo_GetInstance_mE5108A48B8BFDB2158C05951FACC08AFB09FDDBB(L_1, /*hidden argument*/NULL);
uint8_t L_3 = Byte_Parse_m297D79335F7F52332DC9DBD98717572BEEF2EF57(L_0, 7, L_2, /*hidden argument*/NULL);
return L_3;
}
}
// System.Byte System.Byte::Parse(System.String,System.Globalization.NumberStyles,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Byte_Parse_mF76F61376430ABB970C07DDCAE08C6EB73127A18 (String_t* ___s0, int32_t ___style1, RuntimeObject* ___provider2, const RuntimeMethod* method)
{
{
int32_t L_0 = ___style1;
NumberFormatInfo_ValidateParseStyleInteger_m2F6A102AFBCE26335E7C07F94750C873F10D55A7(L_0, /*hidden argument*/NULL);
String_t* L_1 = ___s0;
int32_t L_2 = ___style1;
RuntimeObject* L_3 = ___provider2;
NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D * L_4 = NumberFormatInfo_GetInstance_mE5108A48B8BFDB2158C05951FACC08AFB09FDDBB(L_3, /*hidden argument*/NULL);
uint8_t L_5 = Byte_Parse_m297D79335F7F52332DC9DBD98717572BEEF2EF57(L_1, L_2, L_4, /*hidden argument*/NULL);
return L_5;
}
}
// System.Byte System.Byte::Parse(System.String,System.Globalization.NumberStyles,System.Globalization.NumberFormatInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Byte_Parse_m297D79335F7F52332DC9DBD98717572BEEF2EF57 (String_t* ___s0, int32_t ___style1, NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D * ___info2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Byte_Parse_m297D79335F7F52332DC9DBD98717572BEEF2EF57_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
OverflowException_tD1FBF4E54D81EC98EEF386B69344D336D1EC1AB9 * V_1 = 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);
{
V_0 = 0;
}
IL_0002:
try
{ // begin try (depth: 1)
String_t* L_0 = ___s0;
int32_t L_1 = ___style1;
NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D * L_2 = ___info2;
int32_t L_3 = Number_ParseInt32_m67FA76779A3883D6D300D36BB6A3A6F4FFEC3CE3(L_0, L_1, L_2, /*hidden argument*/NULL);
V_0 = L_3;
goto IL_001f;
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (OverflowException_tD1FBF4E54D81EC98EEF386B69344D336D1EC1AB9_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_000d;
throw e;
}
CATCH_000d:
{ // begin catch(System.OverflowException)
V_1 = ((OverflowException_tD1FBF4E54D81EC98EEF386B69344D336D1EC1AB9 *)__exception_local);
String_t* L_4 = Environment_GetResourceString_m8DFF827596B5FD533D3FE56900FA095F7D674617(_stringLiteralFA21AE346609B8F4B72E20E1720DE0FA22D72B0F, /*hidden argument*/NULL);
OverflowException_tD1FBF4E54D81EC98EEF386B69344D336D1EC1AB9 * L_5 = V_1;
OverflowException_tD1FBF4E54D81EC98EEF386B69344D336D1EC1AB9 * L_6 = (OverflowException_tD1FBF4E54D81EC98EEF386B69344D336D1EC1AB9 *)il2cpp_codegen_object_new(OverflowException_tD1FBF4E54D81EC98EEF386B69344D336D1EC1AB9_il2cpp_TypeInfo_var);
OverflowException__ctor_m62DFEF0935D57F14700A3C14A56C84D1D1D53A14(L_6, L_4, L_5, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, Byte_Parse_m297D79335F7F52332DC9DBD98717572BEEF2EF57_RuntimeMethod_var);
} // end catch (depth: 1)
IL_001f:
{
int32_t L_7 = V_0;
if ((((int32_t)L_7) < ((int32_t)0)))
{
goto IL_002b;
}
}
{
int32_t L_8 = V_0;
if ((((int32_t)L_8) <= ((int32_t)((int32_t)255))))
{
goto IL_003b;
}
}
IL_002b:
{
String_t* L_9 = Environment_GetResourceString_m8DFF827596B5FD533D3FE56900FA095F7D674617(_stringLiteralFA21AE346609B8F4B72E20E1720DE0FA22D72B0F, /*hidden argument*/NULL);
OverflowException_tD1FBF4E54D81EC98EEF386B69344D336D1EC1AB9 * L_10 = (OverflowException_tD1FBF4E54D81EC98EEF386B69344D336D1EC1AB9 *)il2cpp_codegen_object_new(OverflowException_tD1FBF4E54D81EC98EEF386B69344D336D1EC1AB9_il2cpp_TypeInfo_var);
OverflowException__ctor_m93384109E3514E1EB7F97A50893B1B617D21F91E(L_10, L_9, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, Byte_Parse_m297D79335F7F52332DC9DBD98717572BEEF2EF57_RuntimeMethod_var);
}
IL_003b:
{
int32_t L_11 = V_0;
return (uint8_t)(((int32_t)((uint8_t)L_11)));
}
}
// System.String System.Byte::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Byte_ToString_m6A11C71EB9B8031596645EA1A4C2430721B282B5 (uint8_t* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = *((uint8_t*)__this);
NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D * L_1 = NumberFormatInfo_get_CurrentInfo_m604B9BFDE58530F94955E0EF1A523D37EA87DF02(/*hidden argument*/NULL);
String_t* L_2 = Number_FormatInt32_mB25A4FE32FC8EA81F3005FF03607E2BCD75EDE54(L_0, (String_t*)NULL, L_1, /*hidden argument*/NULL);
return L_2;
}
}
IL2CPP_EXTERN_C String_t* Byte_ToString_m6A11C71EB9B8031596645EA1A4C2430721B282B5_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
uint8_t* _thisAdjusted = reinterpret_cast<uint8_t*>(__this + _offset);
return Byte_ToString_m6A11C71EB9B8031596645EA1A4C2430721B282B5(_thisAdjusted, method);
}
// System.String System.Byte::ToString(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Byte_ToString_mABEF6F24915951FF4A4D87B389D8418B2638178C (uint8_t* __this, String_t* ___format0, const RuntimeMethod* method)
{
{
int32_t L_0 = *((uint8_t*)__this);
String_t* L_1 = ___format0;
NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D * L_2 = NumberFormatInfo_get_CurrentInfo_m604B9BFDE58530F94955E0EF1A523D37EA87DF02(/*hidden argument*/NULL);
String_t* L_3 = Number_FormatInt32_mB25A4FE32FC8EA81F3005FF03607E2BCD75EDE54(L_0, L_1, L_2, /*hidden argument*/NULL);
return L_3;
}
}
IL2CPP_EXTERN_C String_t* Byte_ToString_mABEF6F24915951FF4A4D87B389D8418B2638178C_AdjustorThunk (RuntimeObject * __this, String_t* ___format0, const RuntimeMethod* method)
{
int32_t _offset = 1;
uint8_t* _thisAdjusted = reinterpret_cast<uint8_t*>(__this + _offset);
return Byte_ToString_mABEF6F24915951FF4A4D87B389D8418B2638178C(_thisAdjusted, ___format0, method);
}
// System.String System.Byte::ToString(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Byte_ToString_m104307B82FDCE07CA77D54B60A5D88786E5BB09D (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
{
int32_t L_0 = *((uint8_t*)__this);
RuntimeObject* L_1 = ___provider0;
NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D * L_2 = NumberFormatInfo_GetInstance_mE5108A48B8BFDB2158C05951FACC08AFB09FDDBB(L_1, /*hidden argument*/NULL);
String_t* L_3 = Number_FormatInt32_mB25A4FE32FC8EA81F3005FF03607E2BCD75EDE54(L_0, (String_t*)NULL, L_2, /*hidden argument*/NULL);
return L_3;
}
}
IL2CPP_EXTERN_C String_t* Byte_ToString_m104307B82FDCE07CA77D54B60A5D88786E5BB09D_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int32_t _offset = 1;
uint8_t* _thisAdjusted = reinterpret_cast<uint8_t*>(__this + _offset);
return Byte_ToString_m104307B82FDCE07CA77D54B60A5D88786E5BB09D(_thisAdjusted, ___provider0, method);
}
// System.String System.Byte::ToString(System.String,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Byte_ToString_mB5BDCB74BE861E9EB085AAFBE115998B632CEFA8 (uint8_t* __this, String_t* ___format0, RuntimeObject* ___provider1, const RuntimeMethod* method)
{
{
int32_t L_0 = *((uint8_t*)__this);
String_t* L_1 = ___format0;
RuntimeObject* L_2 = ___provider1;
NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D * L_3 = NumberFormatInfo_GetInstance_mE5108A48B8BFDB2158C05951FACC08AFB09FDDBB(L_2, /*hidden argument*/NULL);
String_t* L_4 = Number_FormatInt32_mB25A4FE32FC8EA81F3005FF03607E2BCD75EDE54(L_0, L_1, L_3, /*hidden argument*/NULL);
return L_4;
}
}
IL2CPP_EXTERN_C String_t* Byte_ToString_mB5BDCB74BE861E9EB085AAFBE115998B632CEFA8_AdjustorThunk (RuntimeObject * __this, String_t* ___format0, RuntimeObject* ___provider1, const RuntimeMethod* method)
{
int32_t _offset = 1;
uint8_t* _thisAdjusted = reinterpret_cast<uint8_t*>(__this + _offset);
return Byte_ToString_mB5BDCB74BE861E9EB085AAFBE115998B632CEFA8(_thisAdjusted, ___format0, ___provider1, method);
}
// System.TypeCode System.Byte::GetTypeCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Byte_GetTypeCode_m6999CFE290E3DE24C332B4BFEE6E2E54882D520E (uint8_t* __this, const RuntimeMethod* method)
{
{
return (int32_t)(6);
}
}
IL2CPP_EXTERN_C int32_t Byte_GetTypeCode_m6999CFE290E3DE24C332B4BFEE6E2E54882D520E_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
uint8_t* _thisAdjusted = reinterpret_cast<uint8_t*>(__this + _offset);
return Byte_GetTypeCode_m6999CFE290E3DE24C332B4BFEE6E2E54882D520E(_thisAdjusted, method);
}
// System.Boolean System.Byte::System.IConvertible.ToBoolean(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Byte_System_IConvertible_ToBoolean_m65AF04FD574177D1C994B8C21F1FA98415D9F86E (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Byte_System_IConvertible_ToBoolean_m65AF04FD574177D1C994B8C21F1FA98415D9F86E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = *((uint8_t*)__this);
IL2CPP_RUNTIME_CLASS_INIT(Convert_tDA947A979C1DAB4F09C461FAFD94FE194743A671_il2cpp_TypeInfo_var);
bool L_1 = Convert_ToBoolean_m83B4278D702402F63D808E7D2B25B676DD86C75F((uint8_t)L_0, /*hidden argument*/NULL);
return L_1;
}
}
IL2CPP_EXTERN_C bool Byte_System_IConvertible_ToBoolean_m65AF04FD574177D1C994B8C21F1FA98415D9F86E_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int32_t _offset = 1;
uint8_t* _thisAdjusted = reinterpret_cast<uint8_t*>(__this + _offset);
return Byte_System_IConvertible_ToBoolean_m65AF04FD574177D1C994B8C21F1FA98415D9F86E(_thisAdjusted, ___provider0, method);
}
// System.Char System.Byte::System.IConvertible.ToChar(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Byte_System_IConvertible_ToChar_m680D41A50B3622DC4AE8F2BC632B721DF8536B28 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Byte_System_IConvertible_ToChar_m680D41A50B3622DC4AE8F2BC632B721DF8536B28_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = *((uint8_t*)__this);
IL2CPP_RUNTIME_CLASS_INIT(Convert_tDA947A979C1DAB4F09C461FAFD94FE194743A671_il2cpp_TypeInfo_var);
Il2CppChar L_1 = Convert_ToChar_m0297A5A45E62248BD758586475042968A2DCECE7((uint8_t)L_0, /*hidden argument*/NULL);
return L_1;
}
}
IL2CPP_EXTERN_C Il2CppChar Byte_System_IConvertible_ToChar_m680D41A50B3622DC4AE8F2BC632B721DF8536B28_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int32_t _offset = 1;
uint8_t* _thisAdjusted = reinterpret_cast<uint8_t*>(__this + _offset);
return Byte_System_IConvertible_ToChar_m680D41A50B3622DC4AE8F2BC632B721DF8536B28(_thisAdjusted, ___provider0, method);
}
// System.SByte System.Byte::System.IConvertible.ToSByte(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Byte_System_IConvertible_ToSByte_m4A779331F7CD6055768AA56D4E95A8E41CFA50CB (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Byte_System_IConvertible_ToSByte_m4A779331F7CD6055768AA56D4E95A8E41CFA50CB_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = *((uint8_t*)__this);
IL2CPP_RUNTIME_CLASS_INIT(Convert_tDA947A979C1DAB4F09C461FAFD94FE194743A671_il2cpp_TypeInfo_var);
int8_t L_1 = Convert_ToSByte_m88E88345776937CF7FA00D58EC89E85445CF6F64((uint8_t)L_0, /*hidden argument*/NULL);
return L_1;
}
}
IL2CPP_EXTERN_C int8_t Byte_System_IConvertible_ToSByte_m4A779331F7CD6055768AA56D4E95A8E41CFA50CB_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int32_t _offset = 1;
uint8_t* _thisAdjusted = reinterpret_cast<uint8_t*>(__this + _offset);
return Byte_System_IConvertible_ToSByte_m4A779331F7CD6055768AA56D4E95A8E41CFA50CB(_thisAdjusted, ___provider0, method);
}
// System.Byte System.Byte::System.IConvertible.ToByte(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Byte_System_IConvertible_ToByte_m1F1A7B7CEAAF55C77F0CA5C60503834CC12569CA (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
{
int32_t L_0 = *((uint8_t*)__this);
return (uint8_t)L_0;
}
}
IL2CPP_EXTERN_C uint8_t Byte_System_IConvertible_ToByte_m1F1A7B7CEAAF55C77F0CA5C60503834CC12569CA_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int32_t _offset = 1;
uint8_t* _thisAdjusted = reinterpret_cast<uint8_t*>(__this + _offset);
return Byte_System_IConvertible_ToByte_m1F1A7B7CEAAF55C77F0CA5C60503834CC12569CA(_thisAdjusted, ___provider0, method);
}
// System.Int16 System.Byte::System.IConvertible.ToInt16(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Byte_System_IConvertible_ToInt16_m134A951FF6D7DA4EECC86CB702A8B4DB2ADADDC8 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Byte_System_IConvertible_ToInt16_m134A951FF6D7DA4EECC86CB702A8B4DB2ADADDC8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = *((uint8_t*)__this);
IL2CPP_RUNTIME_CLASS_INIT(Convert_tDA947A979C1DAB4F09C461FAFD94FE194743A671_il2cpp_TypeInfo_var);
int16_t L_1 = Convert_ToInt16_mAB094F77E865F177DC22C5B7A890A431114EB0F7((uint8_t)L_0, /*hidden argument*/NULL);
return L_1;
}
}
IL2CPP_EXTERN_C int16_t Byte_System_IConvertible_ToInt16_m134A951FF6D7DA4EECC86CB702A8B4DB2ADADDC8_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int32_t _offset = 1;
uint8_t* _thisAdjusted = reinterpret_cast<uint8_t*>(__this + _offset);
return Byte_System_IConvertible_ToInt16_m134A951FF6D7DA4EECC86CB702A8B4DB2ADADDC8(_thisAdjusted, ___provider0, method);
}
// System.UInt16 System.Byte::System.IConvertible.ToUInt16(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Byte_System_IConvertible_ToUInt16_mCE446BE1A404904AEFD1DAB2706A4AF355186299 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Byte_System_IConvertible_ToUInt16_mCE446BE1A404904AEFD1DAB2706A4AF355186299_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = *((uint8_t*)__this);
IL2CPP_RUNTIME_CLASS_INIT(Convert_tDA947A979C1DAB4F09C461FAFD94FE194743A671_il2cpp_TypeInfo_var);
uint16_t L_1 = Convert_ToUInt16_m1D3CF6289026118B455490A549A72CFFA7E760A4((uint8_t)L_0, /*hidden argument*/NULL);
return L_1;
}
}
IL2CPP_EXTERN_C uint16_t Byte_System_IConvertible_ToUInt16_mCE446BE1A404904AEFD1DAB2706A4AF355186299_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int32_t _offset = 1;
uint8_t* _thisAdjusted = reinterpret_cast<uint8_t*>(__this + _offset);
return Byte_System_IConvertible_ToUInt16_mCE446BE1A404904AEFD1DAB2706A4AF355186299(_thisAdjusted, ___provider0, method);
}
// System.Int32 System.Byte::System.IConvertible.ToInt32(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Byte_System_IConvertible_ToInt32_m56A786C5BB3125C5C8ADAA2C40F28421959FBEB0 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Byte_System_IConvertible_ToInt32_m56A786C5BB3125C5C8ADAA2C40F28421959FBEB0_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = *((uint8_t*)__this);
IL2CPP_RUNTIME_CLASS_INIT(Convert_tDA947A979C1DAB4F09C461FAFD94FE194743A671_il2cpp_TypeInfo_var);
int32_t L_1 = Convert_ToInt32_m16B237FA188F31A702DA81BB98674A35EF58AE55((uint8_t)L_0, /*hidden argument*/NULL);
return L_1;
}
}
IL2CPP_EXTERN_C int32_t Byte_System_IConvertible_ToInt32_m56A786C5BB3125C5C8ADAA2C40F28421959FBEB0_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int32_t _offset = 1;
uint8_t* _thisAdjusted = reinterpret_cast<uint8_t*>(__this + _offset);
return Byte_System_IConvertible_ToInt32_m56A786C5BB3125C5C8ADAA2C40F28421959FBEB0(_thisAdjusted, ___provider0, method);
}
// System.UInt32 System.Byte::System.IConvertible.ToUInt32(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Byte_System_IConvertible_ToUInt32_m2D1C50FE2959C26DA3FA56BE5D91778B06F172C0 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Byte_System_IConvertible_ToUInt32_m2D1C50FE2959C26DA3FA56BE5D91778B06F172C0_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = *((uint8_t*)__this);
IL2CPP_RUNTIME_CLASS_INIT(Convert_tDA947A979C1DAB4F09C461FAFD94FE194743A671_il2cpp_TypeInfo_var);
uint32_t L_1 = Convert_ToUInt32_mEEC7840C89CE870AC02BE1C8D79F0A9D8423B15B((uint8_t)L_0, /*hidden argument*/NULL);
return L_1;
}
}
IL2CPP_EXTERN_C uint32_t Byte_System_IConvertible_ToUInt32_m2D1C50FE2959C26DA3FA56BE5D91778B06F172C0_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int32_t _offset = 1;
uint8_t* _thisAdjusted = reinterpret_cast<uint8_t*>(__this + _offset);
return Byte_System_IConvertible_ToUInt32_m2D1C50FE2959C26DA3FA56BE5D91778B06F172C0(_thisAdjusted, ___provider0, method);
}
// System.Int64 System.Byte::System.IConvertible.ToInt64(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Byte_System_IConvertible_ToInt64_m79BB20D0471F008EEFA00F72C560EF92BE8AB6BF (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Byte_System_IConvertible_ToInt64_m79BB20D0471F008EEFA00F72C560EF92BE8AB6BF_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = *((uint8_t*)__this);
IL2CPP_RUNTIME_CLASS_INIT(Convert_tDA947A979C1DAB4F09C461FAFD94FE194743A671_il2cpp_TypeInfo_var);
int64_t L_1 = Convert_ToInt64_mBD45B072725DA0FC2B4DC35B90C49B7607AEF786((uint8_t)L_0, /*hidden argument*/NULL);
return L_1;
}
}
IL2CPP_EXTERN_C int64_t Byte_System_IConvertible_ToInt64_m79BB20D0471F008EEFA00F72C560EF92BE8AB6BF_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int32_t _offset = 1;
uint8_t* _thisAdjusted = reinterpret_cast<uint8_t*>(__this + _offset);
return Byte_System_IConvertible_ToInt64_m79BB20D0471F008EEFA00F72C560EF92BE8AB6BF(_thisAdjusted, ___provider0, method);
}
// System.UInt64 System.Byte::System.IConvertible.ToUInt64(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Byte_System_IConvertible_ToUInt64_mD29B4938670EA99ADE6DCA11ADA0E57EA9D5CEC7 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Byte_System_IConvertible_ToUInt64_mD29B4938670EA99ADE6DCA11ADA0E57EA9D5CEC7_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = *((uint8_t*)__this);
IL2CPP_RUNTIME_CLASS_INIT(Convert_tDA947A979C1DAB4F09C461FAFD94FE194743A671_il2cpp_TypeInfo_var);
uint64_t L_1 = Convert_ToUInt64_m37B61A58D0E28B330FBEB2DBABBAB5973F68114A((uint8_t)L_0, /*hidden argument*/NULL);
return L_1;
}
}
IL2CPP_EXTERN_C uint64_t Byte_System_IConvertible_ToUInt64_mD29B4938670EA99ADE6DCA11ADA0E57EA9D5CEC7_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int32_t _offset = 1;
uint8_t* _thisAdjusted = reinterpret_cast<uint8_t*>(__this + _offset);
return Byte_System_IConvertible_ToUInt64_mD29B4938670EA99ADE6DCA11ADA0E57EA9D5CEC7(_thisAdjusted, ___provider0, method);
}
// System.Single System.Byte::System.IConvertible.ToSingle(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Byte_System_IConvertible_ToSingle_m5C04949AD8A80B18C9FF7895CB6DD9BD4ABF07CB (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Byte_System_IConvertible_ToSingle_m5C04949AD8A80B18C9FF7895CB6DD9BD4ABF07CB_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = *((uint8_t*)__this);
IL2CPP_RUNTIME_CLASS_INIT(Convert_tDA947A979C1DAB4F09C461FAFD94FE194743A671_il2cpp_TypeInfo_var);
float L_1 = Convert_ToSingle_m2A17E47670A0161319BE3E327A9269407B393321((uint8_t)L_0, /*hidden argument*/NULL);
return L_1;
}
}
IL2CPP_EXTERN_C float Byte_System_IConvertible_ToSingle_m5C04949AD8A80B18C9FF7895CB6DD9BD4ABF07CB_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int32_t _offset = 1;
uint8_t* _thisAdjusted = reinterpret_cast<uint8_t*>(__this + _offset);
return Byte_System_IConvertible_ToSingle_m5C04949AD8A80B18C9FF7895CB6DD9BD4ABF07CB(_thisAdjusted, ___provider0, method);
}
// System.Double System.Byte::System.IConvertible.ToDouble(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Byte_System_IConvertible_ToDouble_mAF1EAA014190ACF0A646AEE270FC1BFAF28F20A7 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Byte_System_IConvertible_ToDouble_mAF1EAA014190ACF0A646AEE270FC1BFAF28F20A7_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = *((uint8_t*)__this);
IL2CPP_RUNTIME_CLASS_INIT(Convert_tDA947A979C1DAB4F09C461FAFD94FE194743A671_il2cpp_TypeInfo_var);
double L_1 = Convert_ToDouble_m5E679F5FC59DBBB75860248459C3CE96638F9D6D((uint8_t)L_0, /*hidden argument*/NULL);
return L_1;
}
}
IL2CPP_EXTERN_C double Byte_System_IConvertible_ToDouble_mAF1EAA014190ACF0A646AEE270FC1BFAF28F20A7_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int32_t _offset = 1;
uint8_t* _thisAdjusted = reinterpret_cast<uint8_t*>(__this + _offset);
return Byte_System_IConvertible_ToDouble_mAF1EAA014190ACF0A646AEE270FC1BFAF28F20A7(_thisAdjusted, ___provider0, method);
}
// System.Decimal System.Byte::System.IConvertible.ToDecimal(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 Byte_System_IConvertible_ToDecimal_m765A4B2CA3E36C5F601BDD1E3A7917833E5A129E (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Byte_System_IConvertible_ToDecimal_m765A4B2CA3E36C5F601BDD1E3A7917833E5A129E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = *((uint8_t*)__this);
IL2CPP_RUNTIME_CLASS_INIT(Convert_tDA947A979C1DAB4F09C461FAFD94FE194743A671_il2cpp_TypeInfo_var);
Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 L_1 = Convert_ToDecimal_mE68EDBB62A7C808F042AB5BD365BE6B6186C26C1((uint8_t)L_0, /*hidden argument*/NULL);
return L_1;
}
}
IL2CPP_EXTERN_C Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 Byte_System_IConvertible_ToDecimal_m765A4B2CA3E36C5F601BDD1E3A7917833E5A129E_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int32_t _offset = 1;
uint8_t* _thisAdjusted = reinterpret_cast<uint8_t*>(__this + _offset);
return Byte_System_IConvertible_ToDecimal_m765A4B2CA3E36C5F601BDD1E3A7917833E5A129E(_thisAdjusted, ___provider0, method);
}
// System.DateTime System.Byte::System.IConvertible.ToDateTime(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 Byte_System_IConvertible_ToDateTime_m6B4FC95C76E2ADF6C56983B7A80AC4E1FF60A272 (uint8_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Byte_System_IConvertible_ToDateTime_m6B4FC95C76E2ADF6C56983B7A80AC4E1FF60A272_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_0 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var, (uint32_t)2);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_1 = L_0;
NullCheck(L_1);
ArrayElementTypeCheck (L_1, _stringLiteral072BA90B274B502615639084DC3D7FCC63407A24);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)_stringLiteral072BA90B274B502615639084DC3D7FCC63407A24);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_2 = L_1;
NullCheck(L_2);
ArrayElementTypeCheck (L_2, _stringLiteral401602777C44EA69B5FF9AB6AB2D47AEEC89D2AA);
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)_stringLiteral401602777C44EA69B5FF9AB6AB2D47AEEC89D2AA);
String_t* L_3 = Environment_GetResourceString_m9A30EE9F4E10F48B79F9EB56D18D52AE7E7EB602(_stringLiteral6E9AEBB5505B4A1DBC166711562BE9408419A24D, L_2, /*hidden argument*/NULL);
InvalidCastException_tD99F9FF94C3859C78E90F68C2F77A1558BCAF463 * L_4 = (InvalidCastException_tD99F9FF94C3859C78E90F68C2F77A1558BCAF463 *)il2cpp_codegen_object_new(InvalidCastException_tD99F9FF94C3859C78E90F68C2F77A1558BCAF463_il2cpp_TypeInfo_var);
InvalidCastException__ctor_m50103CBF0C211B93BF46697875413A10B5A5C5A3(L_4, L_3, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, Byte_System_IConvertible_ToDateTime_m6B4FC95C76E2ADF6C56983B7A80AC4E1FF60A272_RuntimeMethod_var);
}
}
IL2CPP_EXTERN_C DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 Byte_System_IConvertible_ToDateTime_m6B4FC95C76E2ADF6C56983B7A80AC4E1FF60A272_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int32_t _offset = 1;
uint8_t* _thisAdjusted = reinterpret_cast<uint8_t*>(__this + _offset);
return Byte_System_IConvertible_ToDateTime_m6B4FC95C76E2ADF6C56983B7A80AC4E1FF60A272(_thisAdjusted, ___provider0, method);
}
// System.Object System.Byte::System.IConvertible.ToType(System.Type,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Byte_System_IConvertible_ToType_mFADA0D226622C4FFF53B4D3AED98D6424AB17512 (uint8_t* __this, Type_t * ___type0, RuntimeObject* ___provider1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Byte_System_IConvertible_ToType_mFADA0D226622C4FFF53B4D3AED98D6424AB17512_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = *((uint8_t*)__this);
uint8_t L_1 = ((uint8_t)L_0);
RuntimeObject * L_2 = Box(Byte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_il2cpp_TypeInfo_var, &L_1);
Type_t * L_3 = ___type0;
RuntimeObject* L_4 = ___provider1;
IL2CPP_RUNTIME_CLASS_INIT(Convert_tDA947A979C1DAB4F09C461FAFD94FE194743A671_il2cpp_TypeInfo_var);
RuntimeObject * L_5 = Convert_DefaultToType_m49730E740820DF7AA76C18ACF700FA3635AFBC33((RuntimeObject*)L_2, L_3, L_4, /*hidden argument*/NULL);
return L_5;
}
}
IL2CPP_EXTERN_C RuntimeObject * Byte_System_IConvertible_ToType_mFADA0D226622C4FFF53B4D3AED98D6424AB17512_AdjustorThunk (RuntimeObject * __this, Type_t * ___type0, RuntimeObject* ___provider1, const RuntimeMethod* method)
{
int32_t _offset = 1;
uint8_t* _thisAdjusted = reinterpret_cast<uint8_t*>(__this + _offset);
return Byte_System_IConvertible_ToType_mFADA0D226622C4FFF53B4D3AED98D6424AB17512(_thisAdjusted, ___type0, ___provider1, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Boolean System.Collections.Generic.ByteEqualityComparer::Equals(System.Byte,System.Byte)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ByteEqualityComparer_Equals_mE11AB63E05608099F3342EF8B0D70E6D51633594 (ByteEqualityComparer_t5DEB0978C83C3FA68A8AE80E9A8E0F74F5F81026 * __this, uint8_t ___x0, uint8_t ___y1, const RuntimeMethod* method)
{
{
uint8_t L_0 = ___x0;
uint8_t L_1 = ___y1;
return (bool)((((int32_t)L_0) == ((int32_t)L_1))? 1 : 0);
}
}
// System.Int32 System.Collections.Generic.ByteEqualityComparer::GetHashCode(System.Byte)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ByteEqualityComparer_GetHashCode_m84141BEC028ED574EF25FCD6F616A0949A8442EB (ByteEqualityComparer_t5DEB0978C83C3FA68A8AE80E9A8E0F74F5F81026 * __this, uint8_t ___b0, const RuntimeMethod* method)
{
{
int32_t L_0 = Byte_GetHashCode_m5111B9229C948E0B734597AED742936F9542E093((uint8_t*)(&___b0), /*hidden argument*/NULL);
return L_0;
}
}
// System.Int32 System.Collections.Generic.ByteEqualityComparer::IndexOf(System.Byte[],System.Byte,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ByteEqualityComparer_IndexOf_m67B48B1C0E24BEB3869B1192103161A6E3B14475 (ByteEqualityComparer_t5DEB0978C83C3FA68A8AE80E9A8E0F74F5F81026 * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___array0, uint8_t ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ByteEqualityComparer_IndexOf_m67B48B1C0E24BEB3869B1192103161A6E3B14475_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
uint8_t* V_0 = NULL;
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* V_1 = NULL;
{
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_0 = ___array0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, _stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ByteEqualityComparer_IndexOf_m67B48B1C0E24BEB3869B1192103161A6E3B14475_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___startIndex2;
if ((((int32_t)L_2) >= ((int32_t)0)))
{
goto IL_0027;
}
}
{
String_t* L_3 = Environment_GetResourceString_m8DFF827596B5FD533D3FE56900FA095F7D674617(_stringLiteral569FEAE6AEE421BCD8D24F22865E84F808C2A1E4, /*hidden argument*/NULL);
ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_4 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_mE43AFC74F5F3932913C023A04B24905E093C5005(L_4, _stringLiteralE68FFE708FFE8FC1D5DA3BEDB8B81DE1CCC64C34, L_3, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ByteEqualityComparer_IndexOf_m67B48B1C0E24BEB3869B1192103161A6E3B14475_RuntimeMethod_var);
}
IL_0027:
{
int32_t L_5 = ___count3;
if ((((int32_t)L_5) >= ((int32_t)0)))
{
goto IL_0041;
}
}
{
String_t* L_6 = Environment_GetResourceString_m8DFF827596B5FD533D3FE56900FA095F7D674617(_stringLiteral00BA133FF3D84EAB4FB7DB5FB38F235C4E108ED9, /*hidden argument*/NULL);
ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_7 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_mE43AFC74F5F3932913C023A04B24905E093C5005(L_7, _stringLiteral07624473F417C06C74D59C64840A1532FCE2C626, L_6, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, ByteEqualityComparer_IndexOf_m67B48B1C0E24BEB3869B1192103161A6E3B14475_RuntimeMethod_var);
}
IL_0041:
{
int32_t L_8 = ___count3;
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_9 = ___array0;
NullCheck(L_9);
int32_t L_10 = ___startIndex2;
if ((((int32_t)L_8) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_9)->max_length)))), (int32_t)L_10)))))
{
goto IL_005a;
}
}
{
String_t* L_11 = Environment_GetResourceString_m8DFF827596B5FD533D3FE56900FA095F7D674617(_stringLiteral7F4C724BD10943E8B0B17A6E069F992E219EF5E8, /*hidden argument*/NULL);
ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_12 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var);
ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_12, L_11, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, ByteEqualityComparer_IndexOf_m67B48B1C0E24BEB3869B1192103161A6E3B14475_RuntimeMethod_var);
}
IL_005a:
{
int32_t L_13 = ___count3;
if (L_13)
{
goto IL_0060;
}
}
{
return (-1);
}
IL_0060:
{
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_14 = ___array0;
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_15 = L_14;
V_1 = L_15;
if (!L_15)
{
goto IL_006a;
}
}
{
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_16 = V_1;
NullCheck(L_16);
if ((((int32_t)((int32_t)(((RuntimeArray*)L_16)->max_length)))))
{
goto IL_006f;
}
}
IL_006a:
{
V_0 = (uint8_t*)(((uintptr_t)0));
goto IL_0078;
}
IL_006f:
{
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_17 = V_1;
NullCheck(L_17);
V_0 = (uint8_t*)(((uintptr_t)((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(0)))));
}
IL_0078:
{
uint8_t* L_18 = V_0;
uint8_t L_19 = ___value1;
int32_t L_20 = ___startIndex2;
int32_t L_21 = ___count3;
int32_t L_22 = Buffer_IndexOfByte_m0D3A92C2B7270C1D742085F55EA7AF5FF056DB4A((uint8_t*)(uint8_t*)L_18, L_19, L_20, L_21, /*hidden argument*/NULL);
return L_22;
}
}
// System.Int32 System.Collections.Generic.ByteEqualityComparer::LastIndexOf(System.Byte[],System.Byte,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ByteEqualityComparer_LastIndexOf_mDBC302F8798562C83AB5EA0EDD197777721C9AF1 (ByteEqualityComparer_t5DEB0978C83C3FA68A8AE80E9A8E0F74F5F81026 * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___array0, uint8_t ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
{
int32_t L_0 = ___startIndex2;
int32_t L_1 = ___count3;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)), (int32_t)1));
int32_t L_2 = ___startIndex2;
V_1 = L_2;
goto IL_0017;
}
IL_000b:
{
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_3 = ___array0;
int32_t L_4 = V_1;
NullCheck(L_3);
int32_t L_5 = L_4;
uint8_t L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
uint8_t L_7 = ___value1;
if ((!(((uint32_t)L_6) == ((uint32_t)L_7))))
{
goto IL_0013;
}
}
{
int32_t L_8 = V_1;
return L_8;
}
IL_0013:
{
int32_t L_9 = V_1;
V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)1));
}
IL_0017:
{
int32_t L_10 = V_1;
int32_t L_11 = V_0;
if ((((int32_t)L_10) >= ((int32_t)L_11)))
{
goto IL_000b;
}
}
{
return (-1);
}
}
// System.Boolean System.Collections.Generic.ByteEqualityComparer::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ByteEqualityComparer_Equals_m4F2100719B25AF04C27EC8C313A5440B09ECCE8C (ByteEqualityComparer_t5DEB0978C83C3FA68A8AE80E9A8E0F74F5F81026 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ByteEqualityComparer_Equals_m4F2100719B25AF04C27EC8C313A5440B09ECCE8C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___obj0;
return (bool)((!(((RuntimeObject*)(ByteEqualityComparer_t5DEB0978C83C3FA68A8AE80E9A8E0F74F5F81026 *)((ByteEqualityComparer_t5DEB0978C83C3FA68A8AE80E9A8E0F74F5F81026 *)IsInstClass((RuntimeObject*)L_0, ByteEqualityComparer_t5DEB0978C83C3FA68A8AE80E9A8E0F74F5F81026_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
}
// System.Int32 System.Collections.Generic.ByteEqualityComparer::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ByteEqualityComparer_GetHashCode_m6AC0C7E8E727DD20CD9E228AD1FFC3AD1FEDF101 (ByteEqualityComparer_t5DEB0978C83C3FA68A8AE80E9A8E0F74F5F81026 * __this, const RuntimeMethod* method)
{
{
Type_t * L_0 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B(__this, /*hidden argument*/NULL);
NullCheck(L_0);
String_t* L_1 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, L_0);
NullCheck(L_1);
int32_t L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, L_1);
return L_2;
}
}
// System.Void System.Collections.Generic.ByteEqualityComparer::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ByteEqualityComparer__ctor_mA8216A42E761A507D3B017FB7C2C939FACD21DE8 (ByteEqualityComparer_t5DEB0978C83C3FA68A8AE80E9A8E0F74F5F81026 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ByteEqualityComparer__ctor_mA8216A42E761A507D3B017FB7C2C939FACD21DE8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
EqualityComparer_1__ctor_m9E058C5D324E26AC7D53998B987EA6ED826103CA(__this, /*hidden argument*/EqualityComparer_1__ctor_m9E058C5D324E26AC7D53998B987EA6ED826103CA_RuntimeMethod_var);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.ByteMatcher::AddMapping(System.TermInfoStrings,System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ByteMatcher_AddMapping_m72BCCDBE2E1473253FF0E2A77A3A9584448E3899 (ByteMatcher_t22B28B6FEEDB86326E893675F4C6B5C74E66F5D7 * __this, int32_t ___key0, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___val1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ByteMatcher_AddMapping_m72BCCDBE2E1473253FF0E2A77A3A9584448E3899_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_0 = ___val1;
NullCheck(L_0);
if ((((RuntimeArray*)L_0)->max_length))
{
goto IL_0005;
}
}
{
return;
}
IL_0005:
{
Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_1 = __this->get_map_0();
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_2 = ___val1;
int32_t L_3 = ___key0;
int32_t L_4 = L_3;
RuntimeObject * L_5 = Box(TermInfoStrings_tC2CD768002EED548C9D83DCA65B040248D9BD7B5_il2cpp_TypeInfo_var, &L_4);
NullCheck(L_1);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(22 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_1, (RuntimeObject *)(RuntimeObject *)L_2, L_5);
Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_6 = __this->get_starts_1();
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_7 = ___val1;
NullCheck(L_7);
int32_t L_8 = 0;
uint8_t L_9 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_8));
int32_t L_10 = ((int32_t)L_9);
RuntimeObject * L_11 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_10);
bool L_12 = ((bool)1);
RuntimeObject * L_13 = Box(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_il2cpp_TypeInfo_var, &L_12);
NullCheck(L_6);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(22 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_6, L_11, L_13);
return;
}
}
// System.Void System.ByteMatcher::Sort()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ByteMatcher_Sort_m57D3139BB02ACEF4D957C94D53D5676BD3BE89EE (ByteMatcher_t22B28B6FEEDB86326E893675F4C6B5C74E66F5D7 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Boolean System.ByteMatcher::StartsWith(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ByteMatcher_StartsWith_m3FD18279359D5E475EA2028AA6A38B1F8B4986C2 (ByteMatcher_t22B28B6FEEDB86326E893675F4C6B5C74E66F5D7 * __this, int32_t ___c0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ByteMatcher_StartsWith_m3FD18279359D5E475EA2028AA6A38B1F8B4986C2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_0 = __this->get_starts_1();
int32_t L_1 = ___c0;
int32_t L_2 = L_1;
RuntimeObject * L_3 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_2);
NullCheck(L_0);
RuntimeObject * L_4 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(21 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_0, L_3);
return (bool)((!(((RuntimeObject*)(RuntimeObject *)L_4) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
}
// System.TermInfoStrings System.ByteMatcher::Match(System.Char[],System.Int32,System.Int32,System.Int32&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ByteMatcher_Match_m73533801AD0EA6452604CB13FD048E3C52AD8C5D (ByteMatcher_t22B28B6FEEDB86326E893675F4C6B5C74E66F5D7 * __this, CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___buffer0, int32_t ___offset1, int32_t ___length2, int32_t* ___used3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ByteMatcher_Match_m73533801AD0EA6452604CB13FD048E3C52AD8C5D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* V_1 = NULL;
int32_t V_2 = 0;
int32_t V_3 = 0;
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) * 2);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_0 = __this->get_map_0();
NullCheck(L_0);
RuntimeObject* L_1 = VirtFuncInvoker0< RuntimeObject* >::Invoke(26 /* System.Collections.ICollection System.Collections.Hashtable::get_Keys() */, L_0);
NullCheck(L_1);
RuntimeObject* L_2 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t47A618747A1BB2A868710316F7372094849163A2_il2cpp_TypeInfo_var, L_1);
V_0 = L_2;
}
IL_0011:
try
{ // begin try (depth: 1)
{
goto IL_005d;
}
IL_0013:
{
RuntimeObject* L_3 = V_0;
NullCheck(L_3);
RuntimeObject * L_4 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var, L_3);
V_1 = ((ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)Castclass((RuntimeObject*)L_4, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var));
V_2 = 0;
goto IL_0053;
}
IL_0023:
{
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_5 = V_1;
int32_t L_6 = V_2;
NullCheck(L_5);
int32_t L_7 = L_6;
uint8_t L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7));
CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_9 = ___buffer0;
int32_t L_10 = ___offset1;
int32_t L_11 = V_2;
NullCheck(L_9);
int32_t L_12 = ((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)L_11));
uint16_t L_13 = (uint16_t)(L_9)->GetAt(static_cast<il2cpp_array_size_t>(L_12));
if ((!(((uint32_t)L_8) == ((uint32_t)L_13))))
{
goto IL_005d;
}
}
IL_002d:
{
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_14 = V_1;
NullCheck(L_14);
int32_t L_15 = V_2;
if ((!(((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_14)->max_length)))), (int32_t)1))) == ((uint32_t)L_15))))
{
goto IL_004f;
}
}
IL_0035:
{
int32_t* L_16 = ___used3;
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_17 = V_1;
NullCheck(L_17);
*((int32_t*)L_16) = (int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_17)->max_length))));
Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_18 = __this->get_map_0();
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_19 = V_1;
NullCheck(L_18);
RuntimeObject * L_20 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(21 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_18, (RuntimeObject *)(RuntimeObject *)L_19);
V_3 = ((*(int32_t*)((int32_t*)UnBox(L_20, TermInfoStrings_tC2CD768002EED548C9D83DCA65B040248D9BD7B5_il2cpp_TypeInfo_var))));
IL2CPP_LEAVE(0x81, FINALLY_0067);
}
IL_004f:
{
int32_t L_21 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_21, (int32_t)1));
}
IL_0053:
{
int32_t L_22 = V_2;
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_23 = V_1;
NullCheck(L_23);
if ((((int32_t)L_22) >= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_23)->max_length)))))))
{
goto IL_005d;
}
}
IL_0059:
{
int32_t L_24 = V_2;
int32_t L_25 = ___length2;
if ((((int32_t)L_24) < ((int32_t)L_25)))
{
goto IL_0023;
}
}
IL_005d:
{
RuntimeObject* L_26 = V_0;
NullCheck(L_26);
bool L_27 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var, L_26);
if (L_27)
{
goto IL_0013;
}
}
IL_0065:
{
IL2CPP_LEAVE(0x7B, FINALLY_0067);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0067;
}
FINALLY_0067:
{ // begin finally (depth: 1)
{
RuntimeObject* L_28 = V_0;
V_4 = ((RuntimeObject*)IsInst((RuntimeObject*)L_28, IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var));
RuntimeObject* L_29 = V_4;
if (!L_29)
{
goto IL_007a;
}
}
IL_0073:
{
RuntimeObject* L_30 = V_4;
NullCheck(L_30);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var, L_30);
}
IL_007a:
{
IL2CPP_END_FINALLY(103)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(103)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
IL2CPP_JUMP_TBL(0x81, IL_0081)
IL2CPP_JUMP_TBL(0x7B, IL_007b)
}
IL_007b:
{
int32_t* L_31 = ___used3;
*((int32_t*)L_31) = (int32_t)0;
return (int32_t)((-1));
}
IL_0081:
{
int32_t L_32 = V_3;
return L_32;
}
}
// System.Void System.ByteMatcher::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ByteMatcher__ctor_m75A6660FF59B6009D9A64072CB3AD8D4A3170124 (ByteMatcher_t22B28B6FEEDB86326E893675F4C6B5C74E66F5D7 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ByteMatcher__ctor_m75A6660FF59B6009D9A64072CB3AD8D4A3170124_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_0 = (Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC *)il2cpp_codegen_object_new(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC_il2cpp_TypeInfo_var);
Hashtable__ctor_m2D9C25FB57ACD33B0DF8391D38A165975A1D9A91(L_0, /*hidden argument*/NULL);
__this->set_map_0(L_0);
Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_1 = (Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC *)il2cpp_codegen_object_new(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC_il2cpp_TypeInfo_var);
Hashtable__ctor_m2D9C25FB57ACD33B0DF8391D38A165975A1D9A91(L_1, /*hidden argument*/NULL);
__this->set_starts_1(L_1);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Runtime.Remoting.Messaging.CADArgHolder::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CADArgHolder__ctor_mF3CA12A631FF485AD30F83AAA07615E9753F4F0B (CADArgHolder_tF834CE7AC93B38AABC332460CBAB127B82A9389E * __this, int32_t ___i0, const RuntimeMethod* method)
{
{
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL);
int32_t L_0 = ___i0;
__this->set_index_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Runtime.Remoting.Messaging.CADMessageBase::.ctor(System.Runtime.Remoting.Messaging.IMethodMessage)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CADMessageBase__ctor_m71F0E8FFDF6EB2572A4C2382FDE2646D6E2C793D (CADMessageBase_t78A590A87FD9362D67AAD58A88C4062CA0A105C7 * __this, RuntimeObject* ___msg0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CADMessageBase__ctor_m71F0E8FFDF6EB2572A4C2382FDE2646D6E2C793D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
CADMethodRef_t9626FF46E076B15F71F14133E3FE884F10F50DD2 * V_0 = NULL;
{
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL);
RuntimeObject* L_0 = ___msg0;
CADMethodRef_t9626FF46E076B15F71F14133E3FE884F10F50DD2 * L_1 = (CADMethodRef_t9626FF46E076B15F71F14133E3FE884F10F50DD2 *)il2cpp_codegen_object_new(CADMethodRef_t9626FF46E076B15F71F14133E3FE884F10F50DD2_il2cpp_TypeInfo_var);
CADMethodRef__ctor_m2D3C6DF9E27DDA1BECEA81507C84F88115F63031(L_1, L_0, /*hidden argument*/NULL);
V_0 = L_1;
CADMethodRef_t9626FF46E076B15F71F14133E3FE884F10F50DD2 * L_2 = V_0;
MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * L_3 = CADSerializer_SerializeObject_mBA7285ACB82A1106EBBE97C1BE670C810496BF97(L_2, /*hidden argument*/NULL);
NullCheck(L_3);
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_4 = VirtFuncInvoker0< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* >::Invoke(25 /* System.Byte[] System.IO.MemoryStream::GetBuffer() */, L_3);
__this->set_serializedMethod_4(L_4);
return;
}
}
// System.Reflection.MethodBase System.Runtime.Remoting.Messaging.CADMessageBase::GetMethod()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodBase_t * CADMessageBase_GetMethod_mFC803AAB2D1BB231A44C1BDDFDB8E1FDBB221D81 (CADMessageBase_t78A590A87FD9362D67AAD58A88C4062CA0A105C7 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CADMessageBase_GetMethod_mFC803AAB2D1BB231A44C1BDDFDB8E1FDBB221D81_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_0 = __this->get_serializedMethod_4();
RuntimeObject * L_1 = CADSerializer_DeserializeObjectSafe_m6F6060CB4855A2B7A9DD8067DD592F520529E499(L_0, /*hidden argument*/NULL);
NullCheck(((CADMethodRef_t9626FF46E076B15F71F14133E3FE884F10F50DD2 *)CastclassClass((RuntimeObject*)L_1, CADMethodRef_t9626FF46E076B15F71F14133E3FE884F10F50DD2_il2cpp_TypeInfo_var)));
MethodBase_t * L_2 = CADMethodRef_Resolve_m08B2A1D9A1A5962F44D506E9AD67DE5AE7224427(((CADMethodRef_t9626FF46E076B15F71F14133E3FE884F10F50DD2 *)CastclassClass((RuntimeObject*)L_1, CADMethodRef_t9626FF46E076B15F71F14133E3FE884F10F50DD2_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
return L_2;
}
}
// System.Type[] System.Runtime.Remoting.Messaging.CADMessageBase::GetSignature(System.Reflection.MethodBase,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* CADMessageBase_GetSignature_mFB8E3BF0F46A201A285933187CDF859176B3ABE4 (MethodBase_t * ___methodBase0, bool ___load1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CADMessageBase_GetSignature_mFB8E3BF0F46A201A285933187CDF859176B3ABE4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ParameterInfoU5BU5D_tB1B367487BAA9E1B2DA7EAA95B443D0B183AF80B* V_0 = NULL;
TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* V_1 = NULL;
int32_t V_2 = 0;
{
MethodBase_t * L_0 = ___methodBase0;
NullCheck(L_0);
ParameterInfoU5BU5D_tB1B367487BAA9E1B2DA7EAA95B443D0B183AF80B* L_1 = VirtFuncInvoker0< ParameterInfoU5BU5D_tB1B367487BAA9E1B2DA7EAA95B443D0B183AF80B* >::Invoke(17 /* System.Reflection.ParameterInfo[] System.Reflection.MethodBase::GetParameters() */, L_0);
V_0 = L_1;
ParameterInfoU5BU5D_tB1B367487BAA9E1B2DA7EAA95B443D0B183AF80B* L_2 = V_0;
NullCheck(L_2);
TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* L_3 = (TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755*)(TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755*)SZArrayNew(TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755_il2cpp_TypeInfo_var, (uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length)))));
V_1 = L_3;
V_2 = 0;
goto IL_003e;
}
IL_0014:
{
bool L_4 = ___load1;
if (!L_4)
{
goto IL_002f;
}
}
{
TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* L_5 = V_1;
int32_t L_6 = V_2;
ParameterInfoU5BU5D_tB1B367487BAA9E1B2DA7EAA95B443D0B183AF80B* L_7 = V_0;
int32_t L_8 = V_2;
NullCheck(L_7);
int32_t L_9 = L_8;
ParameterInfo_t9D9DBDD93E685815E35F4F6D6F58E90EBC8852B7 * L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
NullCheck(L_10);
Type_t * L_11 = VirtFuncInvoker0< Type_t * >::Invoke(7 /* System.Type System.Reflection.ParameterInfo::get_ParameterType() */, L_10);
NullCheck(L_11);
String_t* L_12 = VirtFuncInvoker0< String_t* >::Invoke(27 /* System.String System.Type::get_AssemblyQualifiedName() */, L_11);
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_13 = il2cpp_codegen_get_type(Type_GetType_mCF53A469C313ACD667D1B7817F6794A62CE31700_RuntimeMethod_var, L_12, (bool)1, CADMessageBase_GetSignature_mFB8E3BF0F46A201A285933187CDF859176B3ABE4_RuntimeMethod_var);
NullCheck(L_5);
ArrayElementTypeCheck (L_5, L_13);
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(L_6), (Type_t *)L_13);
goto IL_003a;
}
IL_002f:
{
TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* L_14 = V_1;
int32_t L_15 = V_2;
ParameterInfoU5BU5D_tB1B367487BAA9E1B2DA7EAA95B443D0B183AF80B* L_16 = V_0;
int32_t L_17 = V_2;
NullCheck(L_16);
int32_t L_18 = L_17;
ParameterInfo_t9D9DBDD93E685815E35F4F6D6F58E90EBC8852B7 * L_19 = (L_16)->GetAt(static_cast<il2cpp_array_size_t>(L_18));
NullCheck(L_19);
Type_t * L_20 = VirtFuncInvoker0< Type_t * >::Invoke(7 /* System.Type System.Reflection.ParameterInfo::get_ParameterType() */, L_19);
NullCheck(L_14);
ArrayElementTypeCheck (L_14, L_20);
(L_14)->SetAt(static_cast<il2cpp_array_size_t>(L_15), (Type_t *)L_20);
}
IL_003a:
{
int32_t L_21 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_21, (int32_t)1));
}
IL_003e:
{
int32_t L_22 = V_2;
ParameterInfoU5BU5D_tB1B367487BAA9E1B2DA7EAA95B443D0B183AF80B* L_23 = V_0;
NullCheck(L_23);
if ((((int32_t)L_22) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_23)->max_length)))))))
{
goto IL_0014;
}
}
{
TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* L_24 = V_1;
return L_24;
}
}
// System.Int32 System.Runtime.Remoting.Messaging.CADMessageBase::MarshalProperties(System.Collections.IDictionary,System.Collections.ArrayList&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CADMessageBase_MarshalProperties_m2BCADE033725E722DCAAD23EFEEB49009465DA71 (RuntimeObject* ___dict0, ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 ** ___args1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CADMessageBase_MarshalProperties_m2BCADE033725E722DCAAD23EFEEB49009465DA71_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
int32_t V_1 = 0;
MessageDictionary_tF87E1D8408337642172945A13C9C116D7F9336BE * V_2 = NULL;
RuntimeObject* V_3 = NULL;
DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 V_4;
memset((&V_4), 0, sizeof(V_4));
RuntimeObject* V_5 = NULL;
DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 V_6;
memset((&V_6), 0, sizeof(V_6));
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) * 2);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
RuntimeObject* L_0 = ___dict0;
V_0 = L_0;
V_1 = 0;
RuntimeObject* L_1 = ___dict0;
V_2 = ((MessageDictionary_tF87E1D8408337642172945A13C9C116D7F9336BE *)IsInstClass((RuntimeObject*)L_1, MessageDictionary_tF87E1D8408337642172945A13C9C116D7F9336BE_il2cpp_TypeInfo_var));
MessageDictionary_tF87E1D8408337642172945A13C9C116D7F9336BE * L_2 = V_2;
if (!L_2)
{
goto IL_0078;
}
}
{
MessageDictionary_tF87E1D8408337642172945A13C9C116D7F9336BE * L_3 = V_2;
NullCheck(L_3);
bool L_4 = MessageDictionary_HasUserData_m341FC5483C6D6D4A1ED91EAB2AD71EE3557EAAE2(L_3, /*hidden argument*/NULL);
if (!L_4)
{
goto IL_00cd;
}
}
{
MessageDictionary_tF87E1D8408337642172945A13C9C116D7F9336BE * L_5 = V_2;
NullCheck(L_5);
RuntimeObject* L_6 = MessageDictionary_get_InternalDictionary_m470019EF42913C519215175446BE63F61AD1A10E(L_5, /*hidden argument*/NULL);
V_0 = L_6;
RuntimeObject* L_7 = V_0;
if (!L_7)
{
goto IL_00cd;
}
}
{
RuntimeObject* L_8 = V_0;
NullCheck(L_8);
RuntimeObject* L_9 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(4 /* System.Collections.IDictionaryEnumerator System.Collections.IDictionary::GetEnumerator() */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_8);
V_3 = L_9;
}
IL_002d:
try
{ // begin try (depth: 1)
{
goto IL_005a;
}
IL_002f:
{
RuntimeObject* L_10 = V_3;
NullCheck(L_10);
RuntimeObject * L_11 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var, L_10);
V_4 = ((*(DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 *)((DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 *)UnBox(L_11, DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_il2cpp_TypeInfo_var))));
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 ** L_12 = ___args1;
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_13 = *((ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 **)L_12);
if (L_13)
{
goto IL_0047;
}
}
IL_0040:
{
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 ** L_14 = ___args1;
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_15 = (ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 *)il2cpp_codegen_object_new(ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575_il2cpp_TypeInfo_var);
ArrayList__ctor_m6847CFECD6BDC2AD10A4AC9852A572B88B8D6B1B(L_15, /*hidden argument*/NULL);
*((RuntimeObject **)L_14) = (RuntimeObject *)L_15;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_14, (void*)(RuntimeObject *)L_15);
}
IL_0047:
{
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 ** L_16 = ___args1;
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_17 = *((ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 **)L_16);
DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_18 = V_4;
DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_19 = L_18;
RuntimeObject * L_20 = Box(DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_il2cpp_TypeInfo_var, &L_19);
NullCheck(L_17);
VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(24 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_17, L_20);
int32_t L_21 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_21, (int32_t)1));
}
IL_005a:
{
RuntimeObject* L_22 = V_3;
NullCheck(L_22);
bool L_23 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var, L_22);
if (L_23)
{
goto IL_002f;
}
}
IL_0062:
{
IL2CPP_LEAVE(0xCD, FINALLY_0064);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0064;
}
FINALLY_0064:
{ // begin finally (depth: 1)
{
RuntimeObject* L_24 = V_3;
V_5 = ((RuntimeObject*)IsInst((RuntimeObject*)L_24, IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var));
RuntimeObject* L_25 = V_5;
if (!L_25)
{
goto IL_0077;
}
}
IL_0070:
{
RuntimeObject* L_26 = V_5;
NullCheck(L_26);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var, L_26);
}
IL_0077:
{
IL2CPP_END_FINALLY(100)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(100)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
IL2CPP_JUMP_TBL(0xCD, IL_00cd)
}
IL_0078:
{
RuntimeObject* L_27 = ___dict0;
if (!L_27)
{
goto IL_00cd;
}
}
{
RuntimeObject* L_28 = V_0;
NullCheck(L_28);
RuntimeObject* L_29 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(4 /* System.Collections.IDictionaryEnumerator System.Collections.IDictionary::GetEnumerator() */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_28);
V_3 = L_29;
}
IL_0082:
try
{ // begin try (depth: 1)
{
goto IL_00af;
}
IL_0084:
{
RuntimeObject* L_30 = V_3;
NullCheck(L_30);
RuntimeObject * L_31 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var, L_30);
V_6 = ((*(DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 *)((DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 *)UnBox(L_31, DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_il2cpp_TypeInfo_var))));
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 ** L_32 = ___args1;
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_33 = *((ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 **)L_32);
if (L_33)
{
goto IL_009c;
}
}
IL_0095:
{
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 ** L_34 = ___args1;
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_35 = (ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 *)il2cpp_codegen_object_new(ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575_il2cpp_TypeInfo_var);
ArrayList__ctor_m6847CFECD6BDC2AD10A4AC9852A572B88B8D6B1B(L_35, /*hidden argument*/NULL);
*((RuntimeObject **)L_34) = (RuntimeObject *)L_35;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_34, (void*)(RuntimeObject *)L_35);
}
IL_009c:
{
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 ** L_36 = ___args1;
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_37 = *((ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 **)L_36);
DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_38 = V_6;
DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 L_39 = L_38;
RuntimeObject * L_40 = Box(DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_il2cpp_TypeInfo_var, &L_39);
NullCheck(L_37);
VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(24 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_37, L_40);
int32_t L_41 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_41, (int32_t)1));
}
IL_00af:
{
RuntimeObject* L_42 = V_3;
NullCheck(L_42);
bool L_43 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var, L_42);
if (L_43)
{
goto IL_0084;
}
}
IL_00b7:
{
IL2CPP_LEAVE(0xCD, FINALLY_00b9);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_00b9;
}
FINALLY_00b9:
{ // begin finally (depth: 1)
{
RuntimeObject* L_44 = V_3;
V_5 = ((RuntimeObject*)IsInst((RuntimeObject*)L_44, IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var));
RuntimeObject* L_45 = V_5;
if (!L_45)
{
goto IL_00cc;
}
}
IL_00c5:
{
RuntimeObject* L_46 = V_5;
NullCheck(L_46);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var, L_46);
}
IL_00cc:
{
IL2CPP_END_FINALLY(185)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(185)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
IL2CPP_JUMP_TBL(0xCD, IL_00cd)
}
IL_00cd:
{
int32_t L_47 = V_1;
return L_47;
}
}
// System.Void System.Runtime.Remoting.Messaging.CADMessageBase::UnmarshalProperties(System.Collections.IDictionary,System.Int32,System.Collections.ArrayList)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CADMessageBase_UnmarshalProperties_mCD869335EC1E9F1E6A0E8E19437DD3C609D67BCA (RuntimeObject* ___dict0, int32_t ___count1, ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * ___args2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CADMessageBase_UnmarshalProperties_mCD869335EC1E9F1E6A0E8E19437DD3C609D67BCA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 V_1;
memset((&V_1), 0, sizeof(V_1));
{
V_0 = 0;
goto IL_0029;
}
IL_0004:
{
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_0 = ___args2;
int32_t L_1 = V_0;
NullCheck(L_0);
RuntimeObject * L_2 = VirtFuncInvoker1< RuntimeObject *, int32_t >::Invoke(22 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_0, L_1);
V_1 = ((*(DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 *)((DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 *)UnBox(L_2, DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_il2cpp_TypeInfo_var))));
RuntimeObject* L_3 = ___dict0;
RuntimeObject * L_4 = DictionaryEntry_get_Key_m9A53AE1FA4CA017F0A7353F71658A9C36079E1D7_inline((DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 *)(&V_1), /*hidden argument*/NULL);
RuntimeObject * L_5 = DictionaryEntry_get_Value_m2D618D04C0A8EA2A065B171F528FEA98B059F9BC_inline((DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 *)(&V_1), /*hidden argument*/NULL);
NullCheck(L_3);
InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(1 /* System.Void System.Collections.IDictionary::set_Item(System.Object,System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_3, L_4, L_5);
int32_t L_6 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)1));
}
IL_0029:
{
int32_t L_7 = V_0;
int32_t L_8 = ___count1;
if ((((int32_t)L_7) < ((int32_t)L_8)))
{
goto IL_0004;
}
}
{
return;
}
}
// System.Boolean System.Runtime.Remoting.Messaging.CADMessageBase::IsPossibleToIgnoreMarshal(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CADMessageBase_IsPossibleToIgnoreMarshal_mC2BD0ADF8B42412F3DD53E6E160C70E46EE94753 (RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CADMessageBase_IsPossibleToIgnoreMarshal_mC2BD0ADF8B42412F3DD53E6E160C70E46EE94753_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Type_t * V_0 = NULL;
{
RuntimeObject * L_0 = ___obj0;
NullCheck(L_0);
Type_t * L_1 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B(L_0, /*hidden argument*/NULL);
V_0 = L_1;
Type_t * L_2 = V_0;
NullCheck(L_2);
bool L_3 = Type_get_IsPrimitive_m43E50D507C45CE3BD51C0DC07C8AB061AFD6B3C3(L_2, /*hidden argument*/NULL);
if (L_3)
{
goto IL_0021;
}
}
{
Type_t * L_4 = V_0;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_5 = { reinterpret_cast<intptr_t> (Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_6 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_5, /*hidden argument*/NULL);
bool L_7 = Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046(L_4, L_6, /*hidden argument*/NULL);
if (!L_7)
{
goto IL_0023;
}
}
IL_0021:
{
return (bool)1;
}
IL_0023:
{
Type_t * L_8 = V_0;
NullCheck(L_8);
bool L_9 = Type_get_IsArray_m15FE83DD8FAF090F9BDA924753C7750AAEA7CFD1(L_8, /*hidden argument*/NULL);
if (!L_9)
{
goto IL_0048;
}
}
{
Type_t * L_10 = V_0;
NullCheck(L_10);
Type_t * L_11 = VirtFuncInvoker0< Type_t * >::Invoke(91 /* System.Type System.Type::GetElementType() */, L_10);
NullCheck(L_11);
bool L_12 = Type_get_IsPrimitive_m43E50D507C45CE3BD51C0DC07C8AB061AFD6B3C3(L_11, /*hidden argument*/NULL);
if (!L_12)
{
goto IL_0048;
}
}
{
RuntimeObject * L_13 = ___obj0;
NullCheck(((RuntimeArray *)CastclassClass((RuntimeObject*)L_13, RuntimeArray_il2cpp_TypeInfo_var)));
int32_t L_14 = Array_get_Rank_mE9E4804EA433AA2265F9D9CA3B1B5082ECD757D0(((RuntimeArray *)CastclassClass((RuntimeObject*)L_13, RuntimeArray_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
if ((!(((uint32_t)L_14) == ((uint32_t)1))))
{
goto IL_0048;
}
}
{
return (bool)1;
}
IL_0048:
{
RuntimeObject * L_15 = ___obj0;
if (((String_t*)IsInstSealed((RuntimeObject*)L_15, String_t_il2cpp_TypeInfo_var)))
{
goto IL_0060;
}
}
{
RuntimeObject * L_16 = ___obj0;
if (((RuntimeObject *)IsInstSealed((RuntimeObject*)L_16, DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_il2cpp_TypeInfo_var)))
{
goto IL_0060;
}
}
{
RuntimeObject * L_17 = ___obj0;
if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_17, TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_il2cpp_TypeInfo_var)))
{
goto IL_0062;
}
}
IL_0060:
{
return (bool)1;
}
IL_0062:
{
return (bool)0;
}
}
// System.Object System.Runtime.Remoting.Messaging.CADMessageBase::MarshalArgument(System.Object,System.Collections.ArrayList&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * CADMessageBase_MarshalArgument_mA736DAF24AD049845F6C26A423A7D27E96E0C76A (CADMessageBase_t78A590A87FD9362D67AAD58A88C4062CA0A105C7 * __this, RuntimeObject * ___arg0, ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 ** ___args1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CADMessageBase_MarshalArgument_mA736DAF24AD049845F6C26A423A7D27E96E0C76A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8 * V_0 = NULL;
{
RuntimeObject * L_0 = ___arg0;
if (L_0)
{
goto IL_0005;
}
}
{
return NULL;
}
IL_0005:
{
RuntimeObject * L_1 = ___arg0;
bool L_2 = CADMessageBase_IsPossibleToIgnoreMarshal_mC2BD0ADF8B42412F3DD53E6E160C70E46EE94753(L_1, /*hidden argument*/NULL);
if (!L_2)
{
goto IL_000f;
}
}
{
RuntimeObject * L_3 = ___arg0;
return L_3;
}
IL_000f:
{
RuntimeObject * L_4 = ___arg0;
V_0 = ((MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8 *)IsInstClass((RuntimeObject*)L_4, MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8_il2cpp_TypeInfo_var));
MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8 * L_5 = V_0;
if (!L_5)
{
goto IL_0032;
}
}
{
MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8 * L_6 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(RemotingServices_tA253EA010FDD8986A2E814099EAB32BB98652786_il2cpp_TypeInfo_var);
bool L_7 = RemotingServices_IsTransparentProxy_m8BDBC7A18E514FD324215096D24234147C78897C(L_6, /*hidden argument*/NULL);
if (L_7)
{
goto IL_0032;
}
}
{
MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8 * L_8 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(RemotingServices_tA253EA010FDD8986A2E814099EAB32BB98652786_il2cpp_TypeInfo_var);
ObjRef_t10D53E2178851535F38935DC53B48634063C84D3 * L_9 = RemotingServices_Marshal_m3EC297B94FB66EB0363FD380750AC1B40A29015C(L_8, /*hidden argument*/NULL);
int32_t L_10 = Thread_GetDomainID_m90D6EA77161CF32BB05DE69B11ADAC42AD36F8A8(/*hidden argument*/NULL);
CADObjRef_tEBB48EB2D43F3C2012DFF53EC552B784A5FAA0FC * L_11 = (CADObjRef_tEBB48EB2D43F3C2012DFF53EC552B784A5FAA0FC *)il2cpp_codegen_object_new(CADObjRef_tEBB48EB2D43F3C2012DFF53EC552B784A5FAA0FC_il2cpp_TypeInfo_var);
CADObjRef__ctor_mB9FFF5A8CB955CCBAF1E4A3B87138A811B053D52(L_11, L_9, L_10, /*hidden argument*/NULL);
return L_11;
}
IL_0032:
{
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 ** L_12 = ___args1;
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_13 = *((ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 **)L_12);
if (L_13)
{
goto IL_003d;
}
}
{
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 ** L_14 = ___args1;
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_15 = (ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 *)il2cpp_codegen_object_new(ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575_il2cpp_TypeInfo_var);
ArrayList__ctor_m6847CFECD6BDC2AD10A4AC9852A572B88B8D6B1B(L_15, /*hidden argument*/NULL);
*((RuntimeObject **)L_14) = (RuntimeObject *)L_15;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_14, (void*)(RuntimeObject *)L_15);
}
IL_003d:
{
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 ** L_16 = ___args1;
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_17 = *((ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 **)L_16);
RuntimeObject * L_18 = ___arg0;
NullCheck(L_17);
VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(24 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_17, L_18);
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 ** L_19 = ___args1;
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_20 = *((ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 **)L_19);
NullCheck(L_20);
int32_t L_21 = VirtFuncInvoker0< int32_t >::Invoke(19 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_20);
CADArgHolder_tF834CE7AC93B38AABC332460CBAB127B82A9389E * L_22 = (CADArgHolder_tF834CE7AC93B38AABC332460CBAB127B82A9389E *)il2cpp_codegen_object_new(CADArgHolder_tF834CE7AC93B38AABC332460CBAB127B82A9389E_il2cpp_TypeInfo_var);
CADArgHolder__ctor_mF3CA12A631FF485AD30F83AAA07615E9753F4F0B(L_22, ((int32_t)il2cpp_codegen_subtract((int32_t)L_21, (int32_t)1)), /*hidden argument*/NULL);
return L_22;
}
}
// System.Object System.Runtime.Remoting.Messaging.CADMessageBase::UnmarshalArgument(System.Object,System.Collections.ArrayList)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * CADMessageBase_UnmarshalArgument_m51C7B602E843310F532F75E00EE2EA75EF2B0EEE (CADMessageBase_t78A590A87FD9362D67AAD58A88C4062CA0A105C7 * __this, RuntimeObject * ___arg0, ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * ___args1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CADMessageBase_UnmarshalArgument_m51C7B602E843310F532F75E00EE2EA75EF2B0EEE_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
CADArgHolder_tF834CE7AC93B38AABC332460CBAB127B82A9389E * V_0 = NULL;
CADObjRef_tEBB48EB2D43F3C2012DFF53EC552B784A5FAA0FC * V_1 = NULL;
RuntimeArray * V_2 = NULL;
RuntimeArray * V_3 = NULL;
int32_t V_4 = 0;
DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 V_5;
memset((&V_5), 0, sizeof(V_5));
TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 V_6;
memset((&V_6), 0, sizeof(V_6));
{
RuntimeObject * L_0 = ___arg0;
if (L_0)
{
goto IL_0005;
}
}
{
return NULL;
}
IL_0005:
{
RuntimeObject * L_1 = ___arg0;
V_0 = ((CADArgHolder_tF834CE7AC93B38AABC332460CBAB127B82A9389E *)IsInstClass((RuntimeObject*)L_1, CADArgHolder_tF834CE7AC93B38AABC332460CBAB127B82A9389E_il2cpp_TypeInfo_var));
CADArgHolder_tF834CE7AC93B38AABC332460CBAB127B82A9389E * L_2 = V_0;
if (!L_2)
{
goto IL_001c;
}
}
{
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_3 = ___args1;
CADArgHolder_tF834CE7AC93B38AABC332460CBAB127B82A9389E * L_4 = V_0;
NullCheck(L_4);
int32_t L_5 = L_4->get_index_0();
NullCheck(L_3);
RuntimeObject * L_6 = VirtFuncInvoker1< RuntimeObject *, int32_t >::Invoke(22 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_3, L_5);
return L_6;
}
IL_001c:
{
RuntimeObject * L_7 = ___arg0;
V_1 = ((CADObjRef_tEBB48EB2D43F3C2012DFF53EC552B784A5FAA0FC *)IsInstClass((RuntimeObject*)L_7, CADObjRef_tEBB48EB2D43F3C2012DFF53EC552B784A5FAA0FC_il2cpp_TypeInfo_var));
CADObjRef_tEBB48EB2D43F3C2012DFF53EC552B784A5FAA0FC * L_8 = V_1;
if (!L_8)
{
goto IL_0043;
}
}
{
CADObjRef_tEBB48EB2D43F3C2012DFF53EC552B784A5FAA0FC * L_9 = V_1;
NullCheck(L_9);
ObjRef_t10D53E2178851535F38935DC53B48634063C84D3 * L_10 = L_9->get_objref_0();
CADObjRef_tEBB48EB2D43F3C2012DFF53EC552B784A5FAA0FC * L_11 = V_1;
NullCheck(L_11);
int32_t L_12 = L_11->get_SourceDomain_1();
CADObjRef_tEBB48EB2D43F3C2012DFF53EC552B784A5FAA0FC * L_13 = V_1;
NullCheck(L_13);
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_14 = L_13->get_TypeInfo_2();
NullCheck(L_10);
ObjRef_t10D53E2178851535F38935DC53B48634063C84D3 * L_15 = ObjRef_DeserializeInTheCurrentDomain_m0AAC38F760FE0140488342DB5FB60D4F0575F90B(L_10, L_12, L_14, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(RemotingServices_tA253EA010FDD8986A2E814099EAB32BB98652786_il2cpp_TypeInfo_var);
RuntimeObject * L_16 = RemotingServices_Unmarshal_m8FB45EA51B7CD1D176A17E9C8A882AA397AFA9A7(L_15, /*hidden argument*/NULL);
return L_16;
}
IL_0043:
{
RuntimeObject * L_17 = ___arg0;
if (!((RuntimeArray *)IsInstClass((RuntimeObject*)L_17, RuntimeArray_il2cpp_TypeInfo_var)))
{
goto IL_017b;
}
}
{
RuntimeObject * L_18 = ___arg0;
V_2 = ((RuntimeArray *)CastclassClass((RuntimeObject*)L_18, RuntimeArray_il2cpp_TypeInfo_var));
RuntimeObject * L_19 = ___arg0;
NullCheck(L_19);
Type_t * L_20 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B(L_19, /*hidden argument*/NULL);
NullCheck(L_20);
Type_t * L_21 = VirtFuncInvoker0< Type_t * >::Invoke(91 /* System.Type System.Type::GetElementType() */, L_20);
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
int32_t L_22 = Type_GetTypeCode_m25B2ADC2D68FE33486DE032926C6B1EECC8D73CE(L_21, /*hidden argument*/NULL);
V_4 = L_22;
int32_t L_23 = V_4;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_23, (int32_t)3)))
{
case 0:
{
goto IL_00a9;
}
case 1:
{
goto IL_00cb;
}
case 2:
{
goto IL_0125;
}
case 3:
{
goto IL_00ba;
}
case 4:
{
goto IL_00fb;
}
case 5:
{
goto IL_0141;
}
case 6:
{
goto IL_0109;
}
case 7:
{
goto IL_014f;
}
case 8:
{
goto IL_0117;
}
case 9:
{
goto IL_015d;
}
case 10:
{
goto IL_0133;
}
case 11:
{
goto IL_00ed;
}
case 12:
{
goto IL_00dc;
}
}
}
{
goto IL_016b;
}
IL_00a9:
{
RuntimeArray * L_24 = V_2;
NullCheck(L_24);
int32_t L_25 = Array_get_Length_m12B3E61F1BF9880AB252640D69269B49665C0A10(L_24, /*hidden argument*/NULL);
BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C* L_26 = (BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C*)(BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C*)SZArrayNew(BooleanU5BU5D_tEC7BAF93C44F875016DAADC8696EE3A465644D3C_il2cpp_TypeInfo_var, (uint32_t)L_25);
V_3 = (RuntimeArray *)L_26;
goto IL_0171;
}
IL_00ba:
{
RuntimeArray * L_27 = V_2;
NullCheck(L_27);
int32_t L_28 = Array_get_Length_m12B3E61F1BF9880AB252640D69269B49665C0A10(L_27, /*hidden argument*/NULL);
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_29 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)SZArrayNew(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var, (uint32_t)L_28);
V_3 = (RuntimeArray *)L_29;
goto IL_0171;
}
IL_00cb:
{
RuntimeArray * L_30 = V_2;
NullCheck(L_30);
int32_t L_31 = Array_get_Length_m12B3E61F1BF9880AB252640D69269B49665C0A10(L_30, /*hidden argument*/NULL);
CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_32 = (CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34*)(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34*)SZArrayNew(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34_il2cpp_TypeInfo_var, (uint32_t)L_31);
V_3 = (RuntimeArray *)L_32;
goto IL_0171;
}
IL_00dc:
{
RuntimeArray * L_33 = V_2;
NullCheck(L_33);
int32_t L_34 = Array_get_Length_m12B3E61F1BF9880AB252640D69269B49665C0A10(L_33, /*hidden argument*/NULL);
DecimalU5BU5D_tAA3302A4A6ACCE77638A2346993A0FAAE2F9FDBA* L_35 = (DecimalU5BU5D_tAA3302A4A6ACCE77638A2346993A0FAAE2F9FDBA*)(DecimalU5BU5D_tAA3302A4A6ACCE77638A2346993A0FAAE2F9FDBA*)SZArrayNew(DecimalU5BU5D_tAA3302A4A6ACCE77638A2346993A0FAAE2F9FDBA_il2cpp_TypeInfo_var, (uint32_t)L_34);
V_3 = (RuntimeArray *)L_35;
goto IL_0171;
}
IL_00ed:
{
RuntimeArray * L_36 = V_2;
NullCheck(L_36);
int32_t L_37 = Array_get_Length_m12B3E61F1BF9880AB252640D69269B49665C0A10(L_36, /*hidden argument*/NULL);
DoubleU5BU5D_t8E1B42EB2ABB79FBD193A6B8C8D97A7CDE44A4FB* L_38 = (DoubleU5BU5D_t8E1B42EB2ABB79FBD193A6B8C8D97A7CDE44A4FB*)(DoubleU5BU5D_t8E1B42EB2ABB79FBD193A6B8C8D97A7CDE44A4FB*)SZArrayNew(DoubleU5BU5D_t8E1B42EB2ABB79FBD193A6B8C8D97A7CDE44A4FB_il2cpp_TypeInfo_var, (uint32_t)L_37);
V_3 = (RuntimeArray *)L_38;
goto IL_0171;
}
IL_00fb:
{
RuntimeArray * L_39 = V_2;
NullCheck(L_39);
int32_t L_40 = Array_get_Length_m12B3E61F1BF9880AB252640D69269B49665C0A10(L_39, /*hidden argument*/NULL);
Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* L_41 = (Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD*)(Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD*)SZArrayNew(Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD_il2cpp_TypeInfo_var, (uint32_t)L_40);
V_3 = (RuntimeArray *)L_41;
goto IL_0171;
}
IL_0109:
{
RuntimeArray * L_42 = V_2;
NullCheck(L_42);
int32_t L_43 = Array_get_Length_m12B3E61F1BF9880AB252640D69269B49665C0A10(L_42, /*hidden argument*/NULL);
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_44 = (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)SZArrayNew(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32_il2cpp_TypeInfo_var, (uint32_t)L_43);
V_3 = (RuntimeArray *)L_44;
goto IL_0171;
}
IL_0117:
{
RuntimeArray * L_45 = V_2;
NullCheck(L_45);
int32_t L_46 = Array_get_Length_m12B3E61F1BF9880AB252640D69269B49665C0A10(L_45, /*hidden argument*/NULL);
Int64U5BU5D_tCA61E42872C63A4286B24EEE6E0650143B43DCE6* L_47 = (Int64U5BU5D_tCA61E42872C63A4286B24EEE6E0650143B43DCE6*)(Int64U5BU5D_tCA61E42872C63A4286B24EEE6E0650143B43DCE6*)SZArrayNew(Int64U5BU5D_tCA61E42872C63A4286B24EEE6E0650143B43DCE6_il2cpp_TypeInfo_var, (uint32_t)L_46);
V_3 = (RuntimeArray *)L_47;
goto IL_0171;
}
IL_0125:
{
RuntimeArray * L_48 = V_2;
NullCheck(L_48);
int32_t L_49 = Array_get_Length_m12B3E61F1BF9880AB252640D69269B49665C0A10(L_48, /*hidden argument*/NULL);
SByteU5BU5D_t7D94C53295E6116625EA7CC7DEA21FEDC39869E7* L_50 = (SByteU5BU5D_t7D94C53295E6116625EA7CC7DEA21FEDC39869E7*)(SByteU5BU5D_t7D94C53295E6116625EA7CC7DEA21FEDC39869E7*)SZArrayNew(SByteU5BU5D_t7D94C53295E6116625EA7CC7DEA21FEDC39869E7_il2cpp_TypeInfo_var, (uint32_t)L_49);
V_3 = (RuntimeArray *)L_50;
goto IL_0171;
}
IL_0133:
{
RuntimeArray * L_51 = V_2;
NullCheck(L_51);
int32_t L_52 = Array_get_Length_m12B3E61F1BF9880AB252640D69269B49665C0A10(L_51, /*hidden argument*/NULL);
SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* L_53 = (SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA*)(SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA*)SZArrayNew(SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA_il2cpp_TypeInfo_var, (uint32_t)L_52);
V_3 = (RuntimeArray *)L_53;
goto IL_0171;
}
IL_0141:
{
RuntimeArray * L_54 = V_2;
NullCheck(L_54);
int32_t L_55 = Array_get_Length_m12B3E61F1BF9880AB252640D69269B49665C0A10(L_54, /*hidden argument*/NULL);
UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67* L_56 = (UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67*)(UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67*)SZArrayNew(UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67_il2cpp_TypeInfo_var, (uint32_t)L_55);
V_3 = (RuntimeArray *)L_56;
goto IL_0171;
}
IL_014f:
{
RuntimeArray * L_57 = V_2;
NullCheck(L_57);
int32_t L_58 = Array_get_Length_m12B3E61F1BF9880AB252640D69269B49665C0A10(L_57, /*hidden argument*/NULL);
UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* L_59 = (UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF*)(UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF*)SZArrayNew(UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF_il2cpp_TypeInfo_var, (uint32_t)L_58);
V_3 = (RuntimeArray *)L_59;
goto IL_0171;
}
IL_015d:
{
RuntimeArray * L_60 = V_2;
NullCheck(L_60);
int32_t L_61 = Array_get_Length_m12B3E61F1BF9880AB252640D69269B49665C0A10(L_60, /*hidden argument*/NULL);
UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2* L_62 = (UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2*)(UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2*)SZArrayNew(UInt64U5BU5D_t7C6E32D10F47677C1CEF3C30F4E4CE95B3A633E2_il2cpp_TypeInfo_var, (uint32_t)L_61);
V_3 = (RuntimeArray *)L_62;
goto IL_0171;
}
IL_016b:
{
NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_63 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var);
NotSupportedException__ctor_m3EA81A5B209A87C3ADA47443F2AFFF735E5256EE(L_63, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_63, CADMessageBase_UnmarshalArgument_m51C7B602E843310F532F75E00EE2EA75EF2B0EEE_RuntimeMethod_var);
}
IL_0171:
{
RuntimeArray * L_64 = V_2;
RuntimeArray * L_65 = V_3;
NullCheck(L_64);
Array_CopyTo_m6AF950973942E09BAB1F21B055BBD2CD58C980B2(L_64, L_65, 0, /*hidden argument*/NULL);
RuntimeArray * L_66 = V_3;
return L_66;
}
IL_017b:
{
RuntimeObject * L_67 = ___arg0;
NullCheck(L_67);
Type_t * L_68 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B(L_67, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
int32_t L_69 = Type_GetTypeCode_m25B2ADC2D68FE33486DE032926C6B1EECC8D73CE(L_68, /*hidden argument*/NULL);
V_4 = L_69;
int32_t L_70 = V_4;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_70, (int32_t)3)))
{
case 0:
{
goto IL_01d6;
}
case 1:
{
goto IL_01ee;
}
case 2:
{
goto IL_0236;
}
case 3:
{
goto IL_01e2;
}
case 4:
{
goto IL_0212;
}
case 5:
{
goto IL_024e;
}
case 6:
{
goto IL_021e;
}
case 7:
{
goto IL_025a;
}
case 8:
{
goto IL_022a;
}
case 9:
{
goto IL_0266;
}
case 10:
{
goto IL_0242;
}
case 11:
{
goto IL_0206;
}
case 12:
{
goto IL_01fa;
}
case 13:
{
goto IL_027e;
}
case 14:
{
goto IL_0298;
}
case 15:
{
goto IL_0272;
}
}
}
{
goto IL_0298;
}
IL_01d6:
{
RuntimeObject * L_71 = ___arg0;
bool L_72 = ((*(bool*)((bool*)UnBox(L_71, Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_il2cpp_TypeInfo_var))));
RuntimeObject * L_73 = Box(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_il2cpp_TypeInfo_var, &L_72);
return L_73;
}
IL_01e2:
{
RuntimeObject * L_74 = ___arg0;
uint8_t L_75 = ((*(uint8_t*)((uint8_t*)UnBox(L_74, Byte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_il2cpp_TypeInfo_var))));
RuntimeObject * L_76 = Box(Byte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_il2cpp_TypeInfo_var, &L_75);
return L_76;
}
IL_01ee:
{
RuntimeObject * L_77 = ___arg0;
Il2CppChar L_78 = ((*(Il2CppChar*)((Il2CppChar*)UnBox(L_77, Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_il2cpp_TypeInfo_var))));
RuntimeObject * L_79 = Box(Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_il2cpp_TypeInfo_var, &L_78);
return L_79;
}
IL_01fa:
{
RuntimeObject * L_80 = ___arg0;
Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 L_81 = ((*(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 *)((Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 *)UnBox(L_80, Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_il2cpp_TypeInfo_var))));
RuntimeObject * L_82 = Box(Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7_il2cpp_TypeInfo_var, &L_81);
return L_82;
}
IL_0206:
{
RuntimeObject * L_83 = ___arg0;
double L_84 = ((*(double*)((double*)UnBox(L_83, Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181_il2cpp_TypeInfo_var))));
RuntimeObject * L_85 = Box(Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181_il2cpp_TypeInfo_var, &L_84);
return L_85;
}
IL_0212:
{
RuntimeObject * L_86 = ___arg0;
int16_t L_87 = ((*(int16_t*)((int16_t*)UnBox(L_86, Int16_tD0F031114106263BB459DA1F099FF9F42691295A_il2cpp_TypeInfo_var))));
RuntimeObject * L_88 = Box(Int16_tD0F031114106263BB459DA1F099FF9F42691295A_il2cpp_TypeInfo_var, &L_87);
return L_88;
}
IL_021e:
{
RuntimeObject * L_89 = ___arg0;
int32_t L_90 = ((*(int32_t*)((int32_t*)UnBox(L_89, Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var))));
RuntimeObject * L_91 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_90);
return L_91;
}
IL_022a:
{
RuntimeObject * L_92 = ___arg0;
int64_t L_93 = ((*(int64_t*)((int64_t*)UnBox(L_92, Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_il2cpp_TypeInfo_var))));
RuntimeObject * L_94 = Box(Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_il2cpp_TypeInfo_var, &L_93);
return L_94;
}
IL_0236:
{
RuntimeObject * L_95 = ___arg0;
int8_t L_96 = ((*(int8_t*)((int8_t*)UnBox(L_95, SByte_t928712DD662DC29BA4FAAE8CE2230AFB23447F0B_il2cpp_TypeInfo_var))));
RuntimeObject * L_97 = Box(SByte_t928712DD662DC29BA4FAAE8CE2230AFB23447F0B_il2cpp_TypeInfo_var, &L_96);
return L_97;
}
IL_0242:
{
RuntimeObject * L_98 = ___arg0;
float L_99 = ((*(float*)((float*)UnBox(L_98, Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E_il2cpp_TypeInfo_var))));
RuntimeObject * L_100 = Box(Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E_il2cpp_TypeInfo_var, &L_99);
return L_100;
}
IL_024e:
{
RuntimeObject * L_101 = ___arg0;
uint16_t L_102 = ((*(uint16_t*)((uint16_t*)UnBox(L_101, UInt16_t894EA9D4FB7C799B244E7BBF2DF0EEEDBC77A8BD_il2cpp_TypeInfo_var))));
RuntimeObject * L_103 = Box(UInt16_t894EA9D4FB7C799B244E7BBF2DF0EEEDBC77A8BD_il2cpp_TypeInfo_var, &L_102);
return L_103;
}
IL_025a:
{
RuntimeObject * L_104 = ___arg0;
uint32_t L_105 = ((*(uint32_t*)((uint32_t*)UnBox(L_104, UInt32_tE60352A06233E4E69DD198BCC67142159F686B15_il2cpp_TypeInfo_var))));
RuntimeObject * L_106 = Box(UInt32_tE60352A06233E4E69DD198BCC67142159F686B15_il2cpp_TypeInfo_var, &L_105);
return L_106;
}
IL_0266:
{
RuntimeObject * L_107 = ___arg0;
uint64_t L_108 = ((*(uint64_t*)((uint64_t*)UnBox(L_107, UInt64_tEC57511B3E3CA2DBA1BEBD434C6983E31C943281_il2cpp_TypeInfo_var))));
RuntimeObject * L_109 = Box(UInt64_tEC57511B3E3CA2DBA1BEBD434C6983E31C943281_il2cpp_TypeInfo_var, &L_108);
return L_109;
}
IL_0272:
{
RuntimeObject * L_110 = ___arg0;
String_t* L_111 = String_Copy_m1F20BA801D1E14D45A1D16DC1647450175F311BC(((String_t*)CastclassSealed((RuntimeObject*)L_110, String_t_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
return L_111;
}
IL_027e:
{
RuntimeObject * L_112 = ___arg0;
V_5 = ((*(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 *)((DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 *)UnBox(L_112, DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_il2cpp_TypeInfo_var))));
int64_t L_113 = DateTime_get_Ticks_m175EDB41A50DB06872CC48CAB603FEBD1DFF46A9((DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 *)(&V_5), /*hidden argument*/NULL);
DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 L_114;
memset((&L_114), 0, sizeof(L_114));
DateTime__ctor_m14D7C60472AE477F824F8BEE8830C5F5D4FCA16A((&L_114), L_113, /*hidden argument*/NULL);
DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 L_115 = L_114;
RuntimeObject * L_116 = Box(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_il2cpp_TypeInfo_var, &L_115);
return L_116;
}
IL_0298:
{
RuntimeObject * L_117 = ___arg0;
if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_117, TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_il2cpp_TypeInfo_var)))
{
goto IL_02ba;
}
}
{
RuntimeObject * L_118 = ___arg0;
V_6 = ((*(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 *)((TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 *)UnBox(L_118, TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_il2cpp_TypeInfo_var))));
int64_t L_119 = TimeSpan_get_Ticks_mE4C9E1F27DC794028CEDCF7CB5BD092D16DBACD4_inline((TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 *)(&V_6), /*hidden argument*/NULL);
TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 L_120;
memset((&L_120), 0, sizeof(L_120));
TimeSpan__ctor_mC80FA729ECA3A7AF31D9F517A95E60FC23EB86B0_inline((&L_120), L_119, /*hidden argument*/NULL);
TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 L_121 = L_120;
RuntimeObject * L_122 = Box(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_il2cpp_TypeInfo_var, &L_121);
return L_122;
}
IL_02ba:
{
RuntimeObject * L_123 = ___arg0;
if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_123, IntPtr_t_il2cpp_TypeInfo_var)))
{
goto IL_02ce;
}
}
{
RuntimeObject * L_124 = ___arg0;
intptr_t L_125 = ((*(intptr_t*)((intptr_t*)UnBox(L_124, IntPtr_t_il2cpp_TypeInfo_var))));
RuntimeObject * L_126 = Box(IntPtr_t_il2cpp_TypeInfo_var, &L_125);
return L_126;
}
IL_02ce:
{
RuntimeObject * L_127 = ___arg0;
NullCheck(L_127);
Type_t * L_128 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B(L_127, /*hidden argument*/NULL);
String_t* L_129 = String_Concat_mFCF5F98D38F99DE7C831CBB9A1BAAAB148FC7D57(_stringLiteralA19ED9377F21EF1A016E2793CAC9E2C68FCEA42D, L_128, _stringLiteralD69278362EF033D8D40906B0032FC83408022B8C, /*hidden argument*/NULL);
NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_130 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var);
NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_130, L_129, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_130, CADMessageBase_UnmarshalArgument_m51C7B602E843310F532F75E00EE2EA75EF2B0EEE_RuntimeMethod_var);
}
}
// System.Object[] System.Runtime.Remoting.Messaging.CADMessageBase::MarshalArguments(System.Object[],System.Collections.ArrayList&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* CADMessageBase_MarshalArguments_m6C8DC3BDDDABA29BD29C5BD8E77B3392AFAE8B61 (CADMessageBase_t78A590A87FD9362D67AAD58A88C4062CA0A105C7 * __this, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___arguments0, ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 ** ___args1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CADMessageBase_MarshalArguments_m6C8DC3BDDDABA29BD29C5BD8E77B3392AFAE8B61_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* V_0 = NULL;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_0 = ___arguments0;
NullCheck(L_0);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_1 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var, (uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_0)->max_length)))));
V_0 = L_1;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_2 = ___arguments0;
NullCheck(L_2);
V_1 = (((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length))));
V_2 = 0;
goto IL_0022;
}
IL_0011:
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_3 = V_0;
int32_t L_4 = V_2;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_5 = ___arguments0;
int32_t L_6 = V_2;
NullCheck(L_5);
int32_t L_7 = L_6;
RuntimeObject * L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7));
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 ** L_9 = ___args1;
RuntimeObject * L_10 = CADMessageBase_MarshalArgument_mA736DAF24AD049845F6C26A423A7D27E96E0C76A(__this, L_8, (ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 **)L_9, /*hidden argument*/NULL);
NullCheck(L_3);
ArrayElementTypeCheck (L_3, L_10);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(L_4), (RuntimeObject *)L_10);
int32_t L_11 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)1));
}
IL_0022:
{
int32_t L_12 = V_2;
int32_t L_13 = V_1;
if ((((int32_t)L_12) < ((int32_t)L_13)))
{
goto IL_0011;
}
}
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_14 = V_0;
return L_14;
}
}
// System.Object[] System.Runtime.Remoting.Messaging.CADMessageBase::UnmarshalArguments(System.Object[],System.Collections.ArrayList)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* CADMessageBase_UnmarshalArguments_mB203B887D7331D5213A510DF0F25EB7FFF683464 (CADMessageBase_t78A590A87FD9362D67AAD58A88C4062CA0A105C7 * __this, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___arguments0, ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * ___args1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CADMessageBase_UnmarshalArguments_mB203B887D7331D5213A510DF0F25EB7FFF683464_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* V_0 = NULL;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_0 = ___arguments0;
NullCheck(L_0);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_1 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var, (uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_0)->max_length)))));
V_0 = L_1;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_2 = ___arguments0;
NullCheck(L_2);
V_1 = (((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length))));
V_2 = 0;
goto IL_0022;
}
IL_0011:
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_3 = V_0;
int32_t L_4 = V_2;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_5 = ___arguments0;
int32_t L_6 = V_2;
NullCheck(L_5);
int32_t L_7 = L_6;
RuntimeObject * L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7));
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_9 = ___args1;
RuntimeObject * L_10 = CADMessageBase_UnmarshalArgument_m51C7B602E843310F532F75E00EE2EA75EF2B0EEE(__this, L_8, L_9, /*hidden argument*/NULL);
NullCheck(L_3);
ArrayElementTypeCheck (L_3, L_10);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(L_4), (RuntimeObject *)L_10);
int32_t L_11 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)1));
}
IL_0022:
{
int32_t L_12 = V_2;
int32_t L_13 = V_1;
if ((((int32_t)L_12) < ((int32_t)L_13)))
{
goto IL_0011;
}
}
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_14 = V_0;
return L_14;
}
}
// System.Void System.Runtime.Remoting.Messaging.CADMessageBase::SaveLogicalCallContext(System.Runtime.Remoting.Messaging.IMethodMessage,System.Collections.ArrayList&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CADMessageBase_SaveLogicalCallContext_m51A5FFCA892096B57F8250CB578B6F3CF780325B (CADMessageBase_t78A590A87FD9362D67AAD58A88C4062CA0A105C7 * __this, RuntimeObject* ___msg0, ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 ** ___serializeList1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CADMessageBase_SaveLogicalCallContext_m51A5FFCA892096B57F8250CB578B6F3CF780325B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___msg0;
NullCheck(L_0);
LogicalCallContext_tB537C2A13F19FCC7EBC74757A415F2CA5C8FA1C3 * L_1 = InterfaceFuncInvoker0< LogicalCallContext_tB537C2A13F19FCC7EBC74757A415F2CA5C8FA1C3 * >::Invoke(2 /* System.Runtime.Remoting.Messaging.LogicalCallContext System.Runtime.Remoting.Messaging.IMethodMessage::get_LogicalCallContext() */, IMethodMessage_tF1E8AAA822A4BC884BC20CAB4B84F5826BBE282C_il2cpp_TypeInfo_var, L_0);
if (!L_1)
{
goto IL_0040;
}
}
{
RuntimeObject* L_2 = ___msg0;
NullCheck(L_2);
LogicalCallContext_tB537C2A13F19FCC7EBC74757A415F2CA5C8FA1C3 * L_3 = InterfaceFuncInvoker0< LogicalCallContext_tB537C2A13F19FCC7EBC74757A415F2CA5C8FA1C3 * >::Invoke(2 /* System.Runtime.Remoting.Messaging.LogicalCallContext System.Runtime.Remoting.Messaging.IMethodMessage::get_LogicalCallContext() */, IMethodMessage_tF1E8AAA822A4BC884BC20CAB4B84F5826BBE282C_il2cpp_TypeInfo_var, L_2);
NullCheck(L_3);
bool L_4 = LogicalCallContext_get_HasInfo_m672F8CB7E00BB2C3022944D1032566098BA63DCA(L_3, /*hidden argument*/NULL);
if (!L_4)
{
goto IL_0040;
}
}
{
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 ** L_5 = ___serializeList1;
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_6 = *((ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 **)L_5);
if (L_6)
{
goto IL_0020;
}
}
{
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 ** L_7 = ___serializeList1;
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_8 = (ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 *)il2cpp_codegen_object_new(ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575_il2cpp_TypeInfo_var);
ArrayList__ctor_m6847CFECD6BDC2AD10A4AC9852A572B88B8D6B1B(L_8, /*hidden argument*/NULL);
*((RuntimeObject **)L_7) = (RuntimeObject *)L_8;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_7, (void*)(RuntimeObject *)L_8);
}
IL_0020:
{
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 ** L_9 = ___serializeList1;
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_10 = *((ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 **)L_9);
NullCheck(L_10);
int32_t L_11 = VirtFuncInvoker0< int32_t >::Invoke(19 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_10);
CADArgHolder_tF834CE7AC93B38AABC332460CBAB127B82A9389E * L_12 = (CADArgHolder_tF834CE7AC93B38AABC332460CBAB127B82A9389E *)il2cpp_codegen_object_new(CADArgHolder_tF834CE7AC93B38AABC332460CBAB127B82A9389E_il2cpp_TypeInfo_var);
CADArgHolder__ctor_mF3CA12A631FF485AD30F83AAA07615E9753F4F0B(L_12, L_11, /*hidden argument*/NULL);
__this->set__callContext_3(L_12);
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 ** L_13 = ___serializeList1;
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_14 = *((ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 **)L_13);
RuntimeObject* L_15 = ___msg0;
NullCheck(L_15);
LogicalCallContext_tB537C2A13F19FCC7EBC74757A415F2CA5C8FA1C3 * L_16 = InterfaceFuncInvoker0< LogicalCallContext_tB537C2A13F19FCC7EBC74757A415F2CA5C8FA1C3 * >::Invoke(2 /* System.Runtime.Remoting.Messaging.LogicalCallContext System.Runtime.Remoting.Messaging.IMethodMessage::get_LogicalCallContext() */, IMethodMessage_tF1E8AAA822A4BC884BC20CAB4B84F5826BBE282C_il2cpp_TypeInfo_var, L_15);
NullCheck(L_14);
VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(24 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_14, L_16);
}
IL_0040:
{
return;
}
}
// System.Runtime.Remoting.Messaging.LogicalCallContext System.Runtime.Remoting.Messaging.CADMessageBase::GetLogicalCallContext(System.Collections.ArrayList)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LogicalCallContext_tB537C2A13F19FCC7EBC74757A415F2CA5C8FA1C3 * CADMessageBase_GetLogicalCallContext_m96E42D0B1810E9C20918D6F1BD279DD06F58AA96 (CADMessageBase_t78A590A87FD9362D67AAD58A88C4062CA0A105C7 * __this, ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * ___args0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CADMessageBase_GetLogicalCallContext_m96E42D0B1810E9C20918D6F1BD279DD06F58AA96_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
CADArgHolder_tF834CE7AC93B38AABC332460CBAB127B82A9389E * L_0 = __this->get__callContext_3();
if (L_0)
{
goto IL_000a;
}
}
{
return (LogicalCallContext_tB537C2A13F19FCC7EBC74757A415F2CA5C8FA1C3 *)NULL;
}
IL_000a:
{
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_1 = ___args0;
CADArgHolder_tF834CE7AC93B38AABC332460CBAB127B82A9389E * L_2 = __this->get__callContext_3();
NullCheck(L_2);
int32_t L_3 = L_2->get_index_0();
NullCheck(L_1);
RuntimeObject * L_4 = VirtFuncInvoker1< RuntimeObject *, int32_t >::Invoke(22 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_1, L_3);
return ((LogicalCallContext_tB537C2A13F19FCC7EBC74757A415F2CA5C8FA1C3 *)CastclassSealed((RuntimeObject*)L_4, LogicalCallContext_tB537C2A13F19FCC7EBC74757A415F2CA5C8FA1C3_il2cpp_TypeInfo_var));
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.String System.Runtime.Remoting.Messaging.CADMethodCallMessage::get_Uri()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* CADMethodCallMessage_get_Uri_mCD84937EB50C6AF477050924D1E4C894D5F92754 (CADMethodCallMessage_t57296ECCBF254F676C852CB37D8A35782059F906 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get__uri_5();
return L_0;
}
}
// System.Runtime.Remoting.Messaging.CADMethodCallMessage System.Runtime.Remoting.Messaging.CADMethodCallMessage::Create(System.Runtime.Remoting.Messaging.IMessage)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CADMethodCallMessage_t57296ECCBF254F676C852CB37D8A35782059F906 * CADMethodCallMessage_Create_m512596F3080E32E85E497F8FAAB9EA75DE03D6B4 (RuntimeObject* ___callMsg0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CADMethodCallMessage_Create_m512596F3080E32E85E497F8FAAB9EA75DE03D6B4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
{
RuntimeObject* L_0 = ___callMsg0;
V_0 = ((RuntimeObject*)IsInst((RuntimeObject*)L_0, IMethodCallMessage_t5C6204CBDF0F7151187809C69BA5504C88EEDE44_il2cpp_TypeInfo_var));
RuntimeObject* L_1 = V_0;
if (L_1)
{
goto IL_000c;
}
}
{
return (CADMethodCallMessage_t57296ECCBF254F676C852CB37D8A35782059F906 *)NULL;
}
IL_000c:
{
RuntimeObject* L_2 = V_0;
CADMethodCallMessage_t57296ECCBF254F676C852CB37D8A35782059F906 * L_3 = (CADMethodCallMessage_t57296ECCBF254F676C852CB37D8A35782059F906 *)il2cpp_codegen_object_new(CADMethodCallMessage_t57296ECCBF254F676C852CB37D8A35782059F906_il2cpp_TypeInfo_var);
CADMethodCallMessage__ctor_m811D56C92BEAFBAB0FD2033FB74037F7CFF3B6BE(L_3, L_2, /*hidden argument*/NULL);
return L_3;
}
}
// System.Void System.Runtime.Remoting.Messaging.CADMethodCallMessage::.ctor(System.Runtime.Remoting.Messaging.IMethodCallMessage)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CADMethodCallMessage__ctor_m811D56C92BEAFBAB0FD2033FB74037F7CFF3B6BE (CADMethodCallMessage_t57296ECCBF254F676C852CB37D8A35782059F906 * __this, RuntimeObject* ___callMsg0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CADMethodCallMessage__ctor_m811D56C92BEAFBAB0FD2033FB74037F7CFF3B6BE_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * V_0 = NULL;
MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * V_1 = NULL;
{
RuntimeObject* L_0 = ___callMsg0;
CADMessageBase__ctor_m71F0E8FFDF6EB2572A4C2382FDE2646D6E2C793D(__this, L_0, /*hidden argument*/NULL);
RuntimeObject* L_1 = ___callMsg0;
NullCheck(L_1);
String_t* L_2 = InterfaceFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Runtime.Remoting.Messaging.IMethodMessage::get_Uri() */, IMethodMessage_tF1E8AAA822A4BC884BC20CAB4B84F5826BBE282C_il2cpp_TypeInfo_var, L_1);
__this->set__uri_5(L_2);
V_0 = (ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 *)NULL;
RuntimeObject* L_3 = ___callMsg0;
NullCheck(L_3);
RuntimeObject* L_4 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IDictionary System.Runtime.Remoting.Messaging.IMessage::get_Properties() */, IMessage_tFB62BF93B045EA3FA0278D55C5044B322E7B4545_il2cpp_TypeInfo_var, L_3);
int32_t L_5 = CADMessageBase_MarshalProperties_m2BCADE033725E722DCAAD23EFEEB49009465DA71(L_4, (ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 **)(&V_0), /*hidden argument*/NULL);
((CADMessageBase_t78A590A87FD9362D67AAD58A88C4062CA0A105C7 *)__this)->set__propertyCount_2(L_5);
RuntimeObject* L_6 = ___callMsg0;
NullCheck(L_6);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_7 = InterfaceFuncInvoker0< ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* >::Invoke(1 /* System.Object[] System.Runtime.Remoting.Messaging.IMethodMessage::get_Args() */, IMethodMessage_tF1E8AAA822A4BC884BC20CAB4B84F5826BBE282C_il2cpp_TypeInfo_var, L_6);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_8 = CADMessageBase_MarshalArguments_m6C8DC3BDDDABA29BD29C5BD8E77B3392AFAE8B61(__this, L_7, (ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 **)(&V_0), /*hidden argument*/NULL);
((CADMessageBase_t78A590A87FD9362D67AAD58A88C4062CA0A105C7 *)__this)->set__args_0(L_8);
RuntimeObject* L_9 = ___callMsg0;
CADMessageBase_SaveLogicalCallContext_m51A5FFCA892096B57F8250CB578B6F3CF780325B(__this, L_9, (ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 **)(&V_0), /*hidden argument*/NULL);
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_10 = V_0;
if (!L_10)
{
goto IL_0060;
}
}
{
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_11 = V_0;
NullCheck(L_11);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_12 = VirtFuncInvoker0< ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* >::Invoke(36 /* System.Object[] System.Collections.ArrayList::ToArray() */, L_11);
MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * L_13 = CADSerializer_SerializeObject_mBA7285ACB82A1106EBBE97C1BE670C810496BF97((RuntimeObject *)(RuntimeObject *)L_12, /*hidden argument*/NULL);
V_1 = L_13;
MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * L_14 = V_1;
NullCheck(L_14);
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_15 = VirtFuncInvoker0< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* >::Invoke(25 /* System.Byte[] System.IO.MemoryStream::GetBuffer() */, L_14);
((CADMessageBase_t78A590A87FD9362D67AAD58A88C4062CA0A105C7 *)__this)->set__serializedArgs_1(L_15);
}
IL_0060:
{
return;
}
}
// System.Collections.ArrayList System.Runtime.Remoting.Messaging.CADMethodCallMessage::GetArguments()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * CADMethodCallMessage_GetArguments_m8874407AB2CAE40E76E69E89F2CD849D14B2FCEB (CADMethodCallMessage_t57296ECCBF254F676C852CB37D8A35782059F906 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CADMethodCallMessage_GetArguments_m8874407AB2CAE40E76E69E89F2CD849D14B2FCEB_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * V_0 = NULL;
{
V_0 = (ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 *)NULL;
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_0 = ((CADMessageBase_t78A590A87FD9362D67AAD58A88C4062CA0A105C7 *)__this)->get__serializedArgs_1();
if (!L_0)
{
goto IL_002c;
}
}
{
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_1 = ((CADMessageBase_t78A590A87FD9362D67AAD58A88C4062CA0A105C7 *)__this)->get__serializedArgs_1();
MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * L_2 = (MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C *)il2cpp_codegen_object_new(MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C_il2cpp_TypeInfo_var);
MemoryStream__ctor_m3E041ADD3DB7EA42E7DB56FE862097819C02B9C2(L_2, L_1, /*hidden argument*/NULL);
RuntimeObject * L_3 = CADSerializer_DeserializeObject_mE789D2C1B31F27E5232031ED028CDF20088DFABB(L_2, /*hidden argument*/NULL);
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_4 = (ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 *)il2cpp_codegen_object_new(ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575_il2cpp_TypeInfo_var);
ArrayList__ctor_m77974C35DD788BA972324A11F57EAD56BE36A035(L_4, (RuntimeObject*)(RuntimeObject*)((ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)Castclass((RuntimeObject*)L_3, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
V_0 = L_4;
((CADMessageBase_t78A590A87FD9362D67AAD58A88C4062CA0A105C7 *)__this)->set__serializedArgs_1((ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)NULL);
}
IL_002c:
{
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_5 = V_0;
return L_5;
}
}
// System.Object[] System.Runtime.Remoting.Messaging.CADMethodCallMessage::GetArgs(System.Collections.ArrayList)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* CADMethodCallMessage_GetArgs_m6F9DD82C511413E9E576D8C3E963D3A608601749 (CADMethodCallMessage_t57296ECCBF254F676C852CB37D8A35782059F906 * __this, ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * ___args0, const RuntimeMethod* method)
{
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_0 = ((CADMessageBase_t78A590A87FD9362D67AAD58A88C4062CA0A105C7 *)__this)->get__args_0();
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_1 = ___args0;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_2 = CADMessageBase_UnmarshalArguments_mB203B887D7331D5213A510DF0F25EB7FFF683464(__this, L_0, L_1, /*hidden argument*/NULL);
return L_2;
}
}
// System.Int32 System.Runtime.Remoting.Messaging.CADMethodCallMessage::get_PropertiesCount()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CADMethodCallMessage_get_PropertiesCount_mC20C515FA9ABA9D42DF7506DA97883763F078711 (CADMethodCallMessage_t57296ECCBF254F676C852CB37D8A35782059F906 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = ((CADMessageBase_t78A590A87FD9362D67AAD58A88C4062CA0A105C7 *)__this)->get__propertyCount_2();
return L_0;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Type[] System.Runtime.Remoting.Messaging.CADMethodRef::GetTypes(System.String[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* CADMethodRef_GetTypes_mF8A1196B363CD160B1D0A1F1AA8DF1CA3578FDA4 (CADMethodRef_t9626FF46E076B15F71F14133E3FE884F10F50DD2 * __this, StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___typeArray0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CADMethodRef_GetTypes_mF8A1196B363CD160B1D0A1F1AA8DF1CA3578FDA4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* V_0 = NULL;
int32_t V_1 = 0;
{
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_0 = ___typeArray0;
NullCheck(L_0);
TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* L_1 = (TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755*)(TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755*)SZArrayNew(TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755_il2cpp_TypeInfo_var, (uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_0)->max_length)))));
V_0 = L_1;
V_1 = 0;
goto IL_001d;
}
IL_000d:
{
TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* L_2 = V_0;
int32_t L_3 = V_1;
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_4 = ___typeArray0;
int32_t L_5 = V_1;
NullCheck(L_4);
int32_t L_6 = L_5;
String_t* L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_8 = il2cpp_codegen_get_type(Type_GetType_mCF53A469C313ACD667D1B7817F6794A62CE31700_RuntimeMethod_var, L_7, (bool)1, CADMethodRef_GetTypes_mF8A1196B363CD160B1D0A1F1AA8DF1CA3578FDA4_RuntimeMethod_var);
NullCheck(L_2);
ArrayElementTypeCheck (L_2, L_8);
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(L_3), (Type_t *)L_8);
int32_t L_9 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1));
}
IL_001d:
{
int32_t L_10 = V_1;
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_11 = ___typeArray0;
NullCheck(L_11);
if ((((int32_t)L_10) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_11)->max_length)))))))
{
goto IL_000d;
}
}
{
TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* L_12 = V_0;
return L_12;
}
}
// System.Reflection.MethodBase System.Runtime.Remoting.Messaging.CADMethodRef::Resolve()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodBase_t * CADMethodRef_Resolve_m08B2A1D9A1A5962F44D506E9AD67DE5AE7224427 (CADMethodRef_t9626FF46E076B15F71F14133E3FE884F10F50DD2 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CADMethodRef_Resolve_m08B2A1D9A1A5962F44D506E9AD67DE5AE7224427_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Type_t * V_0 = NULL;
MethodBase_t * V_1 = NULL;
TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* V_2 = NULL;
MethodInfoU5BU5D_t86AA7E1AF11D62BAE3189F25907B252596FA627E* V_3 = NULL;
int32_t V_4 = 0;
MethodInfo_t * V_5 = NULL;
ParameterInfoU5BU5D_tB1B367487BAA9E1B2DA7EAA95B443D0B183AF80B* V_6 = NULL;
int32_t V_7 = 0;
{
String_t* L_0 = __this->get_typeName_1();
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_1 = il2cpp_codegen_get_type(Type_GetType_mCF53A469C313ACD667D1B7817F6794A62CE31700_RuntimeMethod_var, L_0, (bool)1, CADMethodRef_Resolve_m08B2A1D9A1A5962F44D506E9AD67DE5AE7224427_RuntimeMethod_var);
V_0 = L_1;
V_1 = (MethodBase_t *)NULL;
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_2 = __this->get_param_names_3();
TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* L_3 = CADMethodRef_GetTypes_mF8A1196B363CD160B1D0A1F1AA8DF1CA3578FDA4(__this, L_2, /*hidden argument*/NULL);
V_2 = L_3;
bool L_4 = __this->get_ctor_0();
if (!L_4)
{
goto IL_0032;
}
}
{
Type_t * L_5 = V_0;
TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* L_6 = V_2;
NullCheck(L_5);
ConstructorInfo_t449AEC508DCA508EE46784C4F2716545488ACD5B * L_7 = Type_GetConstructor_m7D94831F070BECE7BECDAEAFB024981CCC4E03CE(L_5, ((int32_t)52), (Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 *)NULL, L_6, (ParameterModifierU5BU5D_tFF6F73F1CFE837331D6AAA11CC78CE5D9B5F0A2B*)(ParameterModifierU5BU5D_tFF6F73F1CFE837331D6AAA11CC78CE5D9B5F0A2B*)NULL, /*hidden argument*/NULL);
V_1 = L_7;
goto IL_0044;
}
IL_0032:
{
Type_t * L_8 = V_0;
String_t* L_9 = __this->get_methodName_2();
TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* L_10 = V_2;
NullCheck(L_8);
MethodInfo_t * L_11 = Type_GetMethod_m69EE86B5A87244C925333CCF1B6D6B9BCFED8A89(L_8, L_9, ((int32_t)52), (Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 *)NULL, L_10, (ParameterModifierU5BU5D_tFF6F73F1CFE837331D6AAA11CC78CE5D9B5F0A2B*)(ParameterModifierU5BU5D_tFF6F73F1CFE837331D6AAA11CC78CE5D9B5F0A2B*)NULL, /*hidden argument*/NULL);
V_1 = L_11;
}
IL_0044:
{
MethodBase_t * L_12 = V_1;
bool L_13 = MethodBase_op_Inequality_m43FB6861A2B47B543F0C57873C23974FF42723F6(L_12, (MethodBase_t *)NULL, /*hidden argument*/NULL);
if (!L_13)
{
goto IL_005f;
}
}
{
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_14 = __this->get_generic_arg_names_4();
if (!L_14)
{
goto IL_005f;
}
}
{
MethodBase_t * L_15 = V_1;
NullCheck(L_15);
bool L_16 = VirtFuncInvoker0< bool >::Invoke(24 /* System.Boolean System.Reflection.MethodBase::get_IsGenericMethodDefinition() */, L_15);
if (L_16)
{
goto IL_005f;
}
}
{
V_1 = (MethodBase_t *)NULL;
}
IL_005f:
{
MethodBase_t * L_17 = V_1;
bool L_18 = MethodBase_op_Inequality_m43FB6861A2B47B543F0C57873C23974FF42723F6(L_17, (MethodBase_t *)NULL, /*hidden argument*/NULL);
if (!L_18)
{
goto IL_0088;
}
}
{
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_19 = __this->get_generic_arg_names_4();
if (!L_19)
{
goto IL_0088;
}
}
{
MethodBase_t * L_20 = V_1;
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_21 = __this->get_generic_arg_names_4();
TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* L_22 = CADMethodRef_GetTypes_mF8A1196B363CD160B1D0A1F1AA8DF1CA3578FDA4(__this, L_21, /*hidden argument*/NULL);
NullCheck(((MethodInfo_t *)CastclassClass((RuntimeObject*)L_20, MethodInfo_t_il2cpp_TypeInfo_var)));
MethodInfo_t * L_23 = VirtFuncInvoker1< MethodInfo_t *, TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* >::Invoke(40 /* System.Reflection.MethodInfo System.Reflection.MethodInfo::MakeGenericMethod(System.Type[]) */, ((MethodInfo_t *)CastclassClass((RuntimeObject*)L_20, MethodInfo_t_il2cpp_TypeInfo_var)), L_22);
V_1 = L_23;
}
IL_0088:
{
MethodBase_t * L_24 = V_1;
bool L_25 = MethodBase_op_Equality_mE51D1B8866596BB4F10236536444F5923A21DFD4(L_24, (MethodBase_t *)NULL, /*hidden argument*/NULL);
if (!L_25)
{
goto IL_0160;
}
}
{
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_26 = __this->get_generic_arg_names_4();
if (!L_26)
{
goto IL_0160;
}
}
{
Type_t * L_27 = V_0;
NullCheck(L_27);
MethodInfoU5BU5D_t86AA7E1AF11D62BAE3189F25907B252596FA627E* L_28 = Type_GetMethods_m5412C161832F16B9CFE8F201F72E11AF0C61D91C(L_27, /*hidden argument*/NULL);
V_3 = L_28;
V_4 = 0;
goto IL_0156;
}
IL_00ae:
{
MethodInfoU5BU5D_t86AA7E1AF11D62BAE3189F25907B252596FA627E* L_29 = V_3;
int32_t L_30 = V_4;
NullCheck(L_29);
int32_t L_31 = L_30;
MethodInfo_t * L_32 = (L_29)->GetAt(static_cast<il2cpp_array_size_t>(L_31));
V_5 = L_32;
MethodInfo_t * L_33 = V_5;
NullCheck(L_33);
String_t* L_34 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, L_33);
String_t* L_35 = __this->get_methodName_2();
bool L_36 = String_op_Inequality_mDDA2DDED3E7EF042987EB7180EE3E88105F0AAE2(L_34, L_35, /*hidden argument*/NULL);
if (L_36)
{
goto IL_0150;
}
}
{
MethodInfo_t * L_37 = V_5;
NullCheck(L_37);
bool L_38 = VirtFuncInvoker0< bool >::Invoke(24 /* System.Boolean System.Reflection.MethodBase::get_IsGenericMethodDefinition() */, L_37);
if (!L_38)
{
goto IL_0150;
}
}
{
MethodInfo_t * L_39 = V_5;
NullCheck(L_39);
TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* L_40 = VirtFuncInvoker0< TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* >::Invoke(23 /* System.Type[] System.Reflection.MethodBase::GetGenericArguments() */, L_39);
NullCheck(L_40);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_41 = __this->get_generic_arg_names_4();
NullCheck(L_41);
if ((!(((uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_40)->max_length))))) == ((uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_41)->max_length))))))))
{
goto IL_0150;
}
}
{
MethodInfo_t * L_42 = V_5;
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_43 = __this->get_generic_arg_names_4();
TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* L_44 = CADMethodRef_GetTypes_mF8A1196B363CD160B1D0A1F1AA8DF1CA3578FDA4(__this, L_43, /*hidden argument*/NULL);
NullCheck(L_42);
MethodInfo_t * L_45 = VirtFuncInvoker1< MethodInfo_t *, TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* >::Invoke(40 /* System.Reflection.MethodInfo System.Reflection.MethodInfo::MakeGenericMethod(System.Type[]) */, L_42, L_44);
V_1 = L_45;
MethodBase_t * L_46 = V_1;
NullCheck(L_46);
ParameterInfoU5BU5D_tB1B367487BAA9E1B2DA7EAA95B443D0B183AF80B* L_47 = VirtFuncInvoker0< ParameterInfoU5BU5D_tB1B367487BAA9E1B2DA7EAA95B443D0B183AF80B* >::Invoke(17 /* System.Reflection.ParameterInfo[] System.Reflection.MethodBase::GetParameters() */, L_46);
V_6 = L_47;
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_48 = __this->get_param_names_3();
NullCheck(L_48);
ParameterInfoU5BU5D_tB1B367487BAA9E1B2DA7EAA95B443D0B183AF80B* L_49 = V_6;
NullCheck(L_49);
if ((!(((uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_48)->max_length))))) == ((uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_49)->max_length))))))))
{
goto IL_0150;
}
}
{
V_7 = 0;
goto IL_013f;
}
IL_0116:
{
ParameterInfoU5BU5D_tB1B367487BAA9E1B2DA7EAA95B443D0B183AF80B* L_50 = V_6;
int32_t L_51 = V_7;
NullCheck(L_50);
int32_t L_52 = L_51;
ParameterInfo_t9D9DBDD93E685815E35F4F6D6F58E90EBC8852B7 * L_53 = (L_50)->GetAt(static_cast<il2cpp_array_size_t>(L_52));
NullCheck(L_53);
Type_t * L_54 = VirtFuncInvoker0< Type_t * >::Invoke(7 /* System.Type System.Reflection.ParameterInfo::get_ParameterType() */, L_53);
NullCheck(L_54);
String_t* L_55 = VirtFuncInvoker0< String_t* >::Invoke(27 /* System.String System.Type::get_AssemblyQualifiedName() */, L_54);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_56 = __this->get_param_names_3();
int32_t L_57 = V_7;
NullCheck(L_56);
int32_t L_58 = L_57;
String_t* L_59 = (L_56)->GetAt(static_cast<il2cpp_array_size_t>(L_58));
bool L_60 = String_op_Inequality_mDDA2DDED3E7EF042987EB7180EE3E88105F0AAE2(L_55, L_59, /*hidden argument*/NULL);
if (!L_60)
{
goto IL_0139;
}
}
{
V_1 = (MethodBase_t *)NULL;
goto IL_0147;
}
IL_0139:
{
int32_t L_61 = V_7;
V_7 = ((int32_t)il2cpp_codegen_add((int32_t)L_61, (int32_t)1));
}
IL_013f:
{
int32_t L_62 = V_7;
ParameterInfoU5BU5D_tB1B367487BAA9E1B2DA7EAA95B443D0B183AF80B* L_63 = V_6;
NullCheck(L_63);
if ((((int32_t)L_62) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_63)->max_length)))))))
{
goto IL_0116;
}
}
IL_0147:
{
MethodBase_t * L_64 = V_1;
bool L_65 = MethodBase_op_Inequality_m43FB6861A2B47B543F0C57873C23974FF42723F6(L_64, (MethodBase_t *)NULL, /*hidden argument*/NULL);
if (L_65)
{
goto IL_0160;
}
}
IL_0150:
{
int32_t L_66 = V_4;
V_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_66, (int32_t)1));
}
IL_0156:
{
int32_t L_67 = V_4;
MethodInfoU5BU5D_t86AA7E1AF11D62BAE3189F25907B252596FA627E* L_68 = V_3;
NullCheck(L_68);
if ((((int32_t)L_67) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_68)->max_length)))))))
{
goto IL_00ae;
}
}
IL_0160:
{
MethodBase_t * L_69 = V_1;
bool L_70 = MethodBase_op_Equality_mE51D1B8866596BB4F10236536444F5923A21DFD4(L_69, (MethodBase_t *)NULL, /*hidden argument*/NULL);
if (!L_70)
{
goto IL_0185;
}
}
{
String_t* L_71 = __this->get_methodName_2();
String_t* L_72 = __this->get_typeName_1();
String_t* L_73 = String_Format_m8D1CB0410C35E052A53AE957C914C841E54BAB66(_stringLiteralA753857E01AAD2EC90D0C03385ADABE75EC31462, L_71, L_72, /*hidden argument*/NULL);
RemotingException_tEFFC0A283D7F4169F5481926B7FF6C2EB8C76F1B * L_74 = (RemotingException_tEFFC0A283D7F4169F5481926B7FF6C2EB8C76F1B *)il2cpp_codegen_object_new(RemotingException_tEFFC0A283D7F4169F5481926B7FF6C2EB8C76F1B_il2cpp_TypeInfo_var);
RemotingException__ctor_m9D41822220B296C09BE7175E8C2D6F65C195F4E9(L_74, L_73, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_74, CADMethodRef_Resolve_m08B2A1D9A1A5962F44D506E9AD67DE5AE7224427_RuntimeMethod_var);
}
IL_0185:
{
MethodBase_t * L_75 = V_1;
return L_75;
}
}
// System.Void System.Runtime.Remoting.Messaging.CADMethodRef::.ctor(System.Runtime.Remoting.Messaging.IMethodMessage)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CADMethodRef__ctor_m2D3C6DF9E27DDA1BECEA81507C84F88115F63031 (CADMethodRef_t9626FF46E076B15F71F14133E3FE884F10F50DD2 * __this, RuntimeObject* ___msg0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CADMethodRef__ctor_m2D3C6DF9E27DDA1BECEA81507C84F88115F63031_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
MethodBase_t * V_0 = NULL;
ParameterInfoU5BU5D_tB1B367487BAA9E1B2DA7EAA95B443D0B183AF80B* V_1 = NULL;
int32_t V_2 = 0;
TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* V_3 = NULL;
int32_t V_4 = 0;
{
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL);
RuntimeObject* L_0 = ___msg0;
NullCheck(L_0);
MethodBase_t * L_1 = InterfaceFuncInvoker0< MethodBase_t * >::Invoke(3 /* System.Reflection.MethodBase System.Runtime.Remoting.Messaging.IMethodMessage::get_MethodBase() */, IMethodMessage_tF1E8AAA822A4BC884BC20CAB4B84F5826BBE282C_il2cpp_TypeInfo_var, L_0);
V_0 = L_1;
MethodBase_t * L_2 = V_0;
NullCheck(L_2);
Type_t * L_3 = VirtFuncInvoker0< Type_t * >::Invoke(8 /* System.Type System.Reflection.MemberInfo::get_DeclaringType() */, L_2);
NullCheck(L_3);
String_t* L_4 = VirtFuncInvoker0< String_t* >::Invoke(27 /* System.String System.Type::get_AssemblyQualifiedName() */, L_3);
__this->set_typeName_1(L_4);
MethodBase_t * L_5 = V_0;
NullCheck(L_5);
bool L_6 = MethodBase_get_IsConstructor_m953B470BF9EB07E4C58E43983D6EB3CD872DC715(L_5, /*hidden argument*/NULL);
__this->set_ctor_0(L_6);
MethodBase_t * L_7 = V_0;
NullCheck(L_7);
String_t* L_8 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, L_7);
__this->set_methodName_2(L_8);
MethodBase_t * L_9 = V_0;
NullCheck(L_9);
ParameterInfoU5BU5D_tB1B367487BAA9E1B2DA7EAA95B443D0B183AF80B* L_10 = VirtFuncInvoker0< ParameterInfoU5BU5D_tB1B367487BAA9E1B2DA7EAA95B443D0B183AF80B* >::Invoke(17 /* System.Reflection.ParameterInfo[] System.Reflection.MethodBase::GetParameters() */, L_9);
V_1 = L_10;
ParameterInfoU5BU5D_tB1B367487BAA9E1B2DA7EAA95B443D0B183AF80B* L_11 = V_1;
NullCheck(L_11);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_12 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)SZArrayNew(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var, (uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_11)->max_length)))));
__this->set_param_names_3(L_12);
V_2 = 0;
goto IL_0068;
}
IL_004f:
{
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_13 = __this->get_param_names_3();
int32_t L_14 = V_2;
ParameterInfoU5BU5D_tB1B367487BAA9E1B2DA7EAA95B443D0B183AF80B* L_15 = V_1;
int32_t L_16 = V_2;
NullCheck(L_15);
int32_t L_17 = L_16;
ParameterInfo_t9D9DBDD93E685815E35F4F6D6F58E90EBC8852B7 * L_18 = (L_15)->GetAt(static_cast<il2cpp_array_size_t>(L_17));
NullCheck(L_18);
Type_t * L_19 = VirtFuncInvoker0< Type_t * >::Invoke(7 /* System.Type System.Reflection.ParameterInfo::get_ParameterType() */, L_18);
NullCheck(L_19);
String_t* L_20 = VirtFuncInvoker0< String_t* >::Invoke(27 /* System.String System.Type::get_AssemblyQualifiedName() */, L_19);
NullCheck(L_13);
ArrayElementTypeCheck (L_13, L_20);
(L_13)->SetAt(static_cast<il2cpp_array_size_t>(L_14), (String_t*)L_20);
int32_t L_21 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_21, (int32_t)1));
}
IL_0068:
{
int32_t L_22 = V_2;
ParameterInfoU5BU5D_tB1B367487BAA9E1B2DA7EAA95B443D0B183AF80B* L_23 = V_1;
NullCheck(L_23);
if ((((int32_t)L_22) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_23)->max_length)))))))
{
goto IL_004f;
}
}
{
bool L_24 = __this->get_ctor_0();
if (L_24)
{
goto IL_00b7;
}
}
{
MethodBase_t * L_25 = V_0;
NullCheck(L_25);
bool L_26 = VirtFuncInvoker0< bool >::Invoke(26 /* System.Boolean System.Reflection.MethodBase::get_IsGenericMethod() */, L_25);
if (!L_26)
{
goto IL_00b7;
}
}
{
MethodBase_t * L_27 = V_0;
NullCheck(L_27);
TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* L_28 = VirtFuncInvoker0< TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* >::Invoke(23 /* System.Type[] System.Reflection.MethodBase::GetGenericArguments() */, L_27);
V_3 = L_28;
TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* L_29 = V_3;
NullCheck(L_29);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_30 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)SZArrayNew(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var, (uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_29)->max_length)))));
__this->set_generic_arg_names_4(L_30);
V_4 = 0;
goto IL_00b0;
}
IL_0098:
{
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_31 = __this->get_generic_arg_names_4();
int32_t L_32 = V_4;
TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* L_33 = V_3;
int32_t L_34 = V_4;
NullCheck(L_33);
int32_t L_35 = L_34;
Type_t * L_36 = (L_33)->GetAt(static_cast<il2cpp_array_size_t>(L_35));
NullCheck(L_36);
String_t* L_37 = VirtFuncInvoker0< String_t* >::Invoke(27 /* System.String System.Type::get_AssemblyQualifiedName() */, L_36);
NullCheck(L_31);
ArrayElementTypeCheck (L_31, L_37);
(L_31)->SetAt(static_cast<il2cpp_array_size_t>(L_32), (String_t*)L_37);
int32_t L_38 = V_4;
V_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_38, (int32_t)1));
}
IL_00b0:
{
int32_t L_39 = V_4;
TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* L_40 = V_3;
NullCheck(L_40);
if ((((int32_t)L_39) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_40)->max_length)))))))
{
goto IL_0098;
}
}
IL_00b7:
{
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.Remoting.Messaging.CADMethodReturnMessage System.Runtime.Remoting.Messaging.CADMethodReturnMessage::Create(System.Runtime.Remoting.Messaging.IMessage)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CADMethodReturnMessage_t875AA26C474A6CC70596D42E9D74006BCC86A272 * CADMethodReturnMessage_Create_mB27472465DD92468163751EEA8773399E5D5F09D (RuntimeObject* ___callMsg0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CADMethodReturnMessage_Create_mB27472465DD92468163751EEA8773399E5D5F09D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
{
RuntimeObject* L_0 = ___callMsg0;
V_0 = ((RuntimeObject*)IsInst((RuntimeObject*)L_0, IMethodReturnMessage_t4B84F631CB7E599CD495048748DE5E21B62390B0_il2cpp_TypeInfo_var));
RuntimeObject* L_1 = V_0;
if (L_1)
{
goto IL_000c;
}
}
{
return (CADMethodReturnMessage_t875AA26C474A6CC70596D42E9D74006BCC86A272 *)NULL;
}
IL_000c:
{
RuntimeObject* L_2 = V_0;
CADMethodReturnMessage_t875AA26C474A6CC70596D42E9D74006BCC86A272 * L_3 = (CADMethodReturnMessage_t875AA26C474A6CC70596D42E9D74006BCC86A272 *)il2cpp_codegen_object_new(CADMethodReturnMessage_t875AA26C474A6CC70596D42E9D74006BCC86A272_il2cpp_TypeInfo_var);
CADMethodReturnMessage__ctor_m7BE55A80B393E42A3B6E9C35D84BD924CAE52B87(L_3, L_2, /*hidden argument*/NULL);
return L_3;
}
}
// System.Void System.Runtime.Remoting.Messaging.CADMethodReturnMessage::.ctor(System.Runtime.Remoting.Messaging.IMethodReturnMessage)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CADMethodReturnMessage__ctor_m7BE55A80B393E42A3B6E9C35D84BD924CAE52B87 (CADMethodReturnMessage_t875AA26C474A6CC70596D42E9D74006BCC86A272 * __this, RuntimeObject* ___retMsg0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CADMethodReturnMessage__ctor_m7BE55A80B393E42A3B6E9C35D84BD924CAE52B87_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * V_0 = NULL;
MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * V_1 = NULL;
{
RuntimeObject* L_0 = ___retMsg0;
CADMessageBase__ctor_m71F0E8FFDF6EB2572A4C2382FDE2646D6E2C793D(__this, L_0, /*hidden argument*/NULL);
V_0 = (ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 *)NULL;
RuntimeObject* L_1 = ___retMsg0;
NullCheck(L_1);
RuntimeObject* L_2 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IDictionary System.Runtime.Remoting.Messaging.IMessage::get_Properties() */, IMessage_tFB62BF93B045EA3FA0278D55C5044B322E7B4545_il2cpp_TypeInfo_var, L_1);
int32_t L_3 = CADMessageBase_MarshalProperties_m2BCADE033725E722DCAAD23EFEEB49009465DA71(L_2, (ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 **)(&V_0), /*hidden argument*/NULL);
((CADMessageBase_t78A590A87FD9362D67AAD58A88C4062CA0A105C7 *)__this)->set__propertyCount_2(L_3);
RuntimeObject* L_4 = ___retMsg0;
NullCheck(L_4);
RuntimeObject * L_5 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(2 /* System.Object System.Runtime.Remoting.Messaging.IMethodReturnMessage::get_ReturnValue() */, IMethodReturnMessage_t4B84F631CB7E599CD495048748DE5E21B62390B0_il2cpp_TypeInfo_var, L_4);
RuntimeObject * L_6 = CADMessageBase_MarshalArgument_mA736DAF24AD049845F6C26A423A7D27E96E0C76A(__this, L_5, (ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 **)(&V_0), /*hidden argument*/NULL);
__this->set__returnValue_5(L_6);
RuntimeObject* L_7 = ___retMsg0;
NullCheck(L_7);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_8 = InterfaceFuncInvoker0< ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* >::Invoke(1 /* System.Object[] System.Runtime.Remoting.Messaging.IMethodMessage::get_Args() */, IMethodMessage_tF1E8AAA822A4BC884BC20CAB4B84F5826BBE282C_il2cpp_TypeInfo_var, L_7);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_9 = CADMessageBase_MarshalArguments_m6C8DC3BDDDABA29BD29C5BD8E77B3392AFAE8B61(__this, L_8, (ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 **)(&V_0), /*hidden argument*/NULL);
((CADMessageBase_t78A590A87FD9362D67AAD58A88C4062CA0A105C7 *)__this)->set__args_0(L_9);
MethodBase_t * L_10 = CADMessageBase_GetMethod_mFC803AAB2D1BB231A44C1BDDFDB8E1FDBB221D81(__this, /*hidden argument*/NULL);
TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* L_11 = CADMessageBase_GetSignature_mFB8E3BF0F46A201A285933187CDF859176B3ABE4(L_10, (bool)1, /*hidden argument*/NULL);
__this->set__sig_7(L_11);
RuntimeObject* L_12 = ___retMsg0;
NullCheck(L_12);
Exception_t * L_13 = InterfaceFuncInvoker0< Exception_t * >::Invoke(0 /* System.Exception System.Runtime.Remoting.Messaging.IMethodReturnMessage::get_Exception() */, IMethodReturnMessage_t4B84F631CB7E599CD495048748DE5E21B62390B0_il2cpp_TypeInfo_var, L_12);
if (!L_13)
{
goto IL_0085;
}
}
{
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_14 = V_0;
if (L_14)
{
goto IL_0067;
}
}
{
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_15 = (ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 *)il2cpp_codegen_object_new(ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575_il2cpp_TypeInfo_var);
ArrayList__ctor_m6847CFECD6BDC2AD10A4AC9852A572B88B8D6B1B(L_15, /*hidden argument*/NULL);
V_0 = L_15;
}
IL_0067:
{
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_16 = V_0;
NullCheck(L_16);
int32_t L_17 = VirtFuncInvoker0< int32_t >::Invoke(19 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_16);
CADArgHolder_tF834CE7AC93B38AABC332460CBAB127B82A9389E * L_18 = (CADArgHolder_tF834CE7AC93B38AABC332460CBAB127B82A9389E *)il2cpp_codegen_object_new(CADArgHolder_tF834CE7AC93B38AABC332460CBAB127B82A9389E_il2cpp_TypeInfo_var);
CADArgHolder__ctor_mF3CA12A631FF485AD30F83AAA07615E9753F4F0B(L_18, L_17, /*hidden argument*/NULL);
__this->set__exception_6(L_18);
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_19 = V_0;
RuntimeObject* L_20 = ___retMsg0;
NullCheck(L_20);
Exception_t * L_21 = InterfaceFuncInvoker0< Exception_t * >::Invoke(0 /* System.Exception System.Runtime.Remoting.Messaging.IMethodReturnMessage::get_Exception() */, IMethodReturnMessage_t4B84F631CB7E599CD495048748DE5E21B62390B0_il2cpp_TypeInfo_var, L_20);
NullCheck(L_19);
VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(24 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_19, L_21);
}
IL_0085:
{
RuntimeObject* L_22 = ___retMsg0;
CADMessageBase_SaveLogicalCallContext_m51A5FFCA892096B57F8250CB578B6F3CF780325B(__this, L_22, (ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 **)(&V_0), /*hidden argument*/NULL);
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_23 = V_0;
if (!L_23)
{
goto IL_00a9;
}
}
{
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_24 = V_0;
NullCheck(L_24);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_25 = VirtFuncInvoker0< ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* >::Invoke(36 /* System.Object[] System.Collections.ArrayList::ToArray() */, L_24);
MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * L_26 = CADSerializer_SerializeObject_mBA7285ACB82A1106EBBE97C1BE670C810496BF97((RuntimeObject *)(RuntimeObject *)L_25, /*hidden argument*/NULL);
V_1 = L_26;
MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * L_27 = V_1;
NullCheck(L_27);
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_28 = VirtFuncInvoker0< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* >::Invoke(25 /* System.Byte[] System.IO.MemoryStream::GetBuffer() */, L_27);
((CADMessageBase_t78A590A87FD9362D67AAD58A88C4062CA0A105C7 *)__this)->set__serializedArgs_1(L_28);
}
IL_00a9:
{
return;
}
}
// System.Collections.ArrayList System.Runtime.Remoting.Messaging.CADMethodReturnMessage::GetArguments()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * CADMethodReturnMessage_GetArguments_m29A72306751D84662543B4D22531AE085FB92A17 (CADMethodReturnMessage_t875AA26C474A6CC70596D42E9D74006BCC86A272 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CADMethodReturnMessage_GetArguments_m29A72306751D84662543B4D22531AE085FB92A17_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * V_0 = NULL;
{
V_0 = (ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 *)NULL;
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_0 = ((CADMessageBase_t78A590A87FD9362D67AAD58A88C4062CA0A105C7 *)__this)->get__serializedArgs_1();
if (!L_0)
{
goto IL_002c;
}
}
{
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_1 = ((CADMessageBase_t78A590A87FD9362D67AAD58A88C4062CA0A105C7 *)__this)->get__serializedArgs_1();
MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * L_2 = (MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C *)il2cpp_codegen_object_new(MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C_il2cpp_TypeInfo_var);
MemoryStream__ctor_m3E041ADD3DB7EA42E7DB56FE862097819C02B9C2(L_2, L_1, /*hidden argument*/NULL);
RuntimeObject * L_3 = CADSerializer_DeserializeObject_mE789D2C1B31F27E5232031ED028CDF20088DFABB(L_2, /*hidden argument*/NULL);
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_4 = (ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 *)il2cpp_codegen_object_new(ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575_il2cpp_TypeInfo_var);
ArrayList__ctor_m77974C35DD788BA972324A11F57EAD56BE36A035(L_4, (RuntimeObject*)(RuntimeObject*)((ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)Castclass((RuntimeObject*)L_3, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
V_0 = L_4;
((CADMessageBase_t78A590A87FD9362D67AAD58A88C4062CA0A105C7 *)__this)->set__serializedArgs_1((ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)NULL);
}
IL_002c:
{
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_5 = V_0;
return L_5;
}
}
// System.Object[] System.Runtime.Remoting.Messaging.CADMethodReturnMessage::GetArgs(System.Collections.ArrayList)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* CADMethodReturnMessage_GetArgs_m52FB6E5C57CF9B0151C901E89DE5DE78BCFCCAFC (CADMethodReturnMessage_t875AA26C474A6CC70596D42E9D74006BCC86A272 * __this, ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * ___args0, const RuntimeMethod* method)
{
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_0 = ((CADMessageBase_t78A590A87FD9362D67AAD58A88C4062CA0A105C7 *)__this)->get__args_0();
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_1 = ___args0;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_2 = CADMessageBase_UnmarshalArguments_mB203B887D7331D5213A510DF0F25EB7FFF683464(__this, L_0, L_1, /*hidden argument*/NULL);
return L_2;
}
}
// System.Object System.Runtime.Remoting.Messaging.CADMethodReturnMessage::GetReturnValue(System.Collections.ArrayList)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * CADMethodReturnMessage_GetReturnValue_m71354B86E39947BA2A8557105B2A3C78B5CD838C (CADMethodReturnMessage_t875AA26C474A6CC70596D42E9D74006BCC86A272 * __this, ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * ___args0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = __this->get__returnValue_5();
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_1 = ___args0;
RuntimeObject * L_2 = CADMessageBase_UnmarshalArgument_m51C7B602E843310F532F75E00EE2EA75EF2B0EEE(__this, L_0, L_1, /*hidden argument*/NULL);
return L_2;
}
}
// System.Exception System.Runtime.Remoting.Messaging.CADMethodReturnMessage::GetException(System.Collections.ArrayList)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * CADMethodReturnMessage_GetException_m3466192E903E522737C0C8376319120B8802A2DD (CADMethodReturnMessage_t875AA26C474A6CC70596D42E9D74006BCC86A272 * __this, ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * ___args0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CADMethodReturnMessage_GetException_m3466192E903E522737C0C8376319120B8802A2DD_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
CADArgHolder_tF834CE7AC93B38AABC332460CBAB127B82A9389E * L_0 = __this->get__exception_6();
if (L_0)
{
goto IL_000a;
}
}
{
return (Exception_t *)NULL;
}
IL_000a:
{
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_1 = ___args0;
CADArgHolder_tF834CE7AC93B38AABC332460CBAB127B82A9389E * L_2 = __this->get__exception_6();
NullCheck(L_2);
int32_t L_3 = L_2->get_index_0();
NullCheck(L_1);
RuntimeObject * L_4 = VirtFuncInvoker1< RuntimeObject *, int32_t >::Invoke(22 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_1, L_3);
return ((Exception_t *)CastclassClass((RuntimeObject*)L_4, Exception_t_il2cpp_TypeInfo_var));
}
}
// System.Int32 System.Runtime.Remoting.Messaging.CADMethodReturnMessage::get_PropertiesCount()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CADMethodReturnMessage_get_PropertiesCount_mA6BD11359F9EBD26B4469AD35C217D823707B99E (CADMethodReturnMessage_t875AA26C474A6CC70596D42E9D74006BCC86A272 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = ((CADMessageBase_t78A590A87FD9362D67AAD58A88C4062CA0A105C7 *)__this)->get__propertyCount_2();
return L_0;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Runtime.Remoting.Messaging.CADObjRef::.ctor(System.Runtime.Remoting.ObjRef,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CADObjRef__ctor_mB9FFF5A8CB955CCBAF1E4A3B87138A811B053D52 (CADObjRef_tEBB48EB2D43F3C2012DFF53EC552B784A5FAA0FC * __this, ObjRef_t10D53E2178851535F38935DC53B48634063C84D3 * ___o0, int32_t ___sourceDomain1, const RuntimeMethod* method)
{
{
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL);
ObjRef_t10D53E2178851535F38935DC53B48634063C84D3 * L_0 = ___o0;
__this->set_objref_0(L_0);
ObjRef_t10D53E2178851535F38935DC53B48634063C84D3 * L_1 = ___o0;
NullCheck(L_1);
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_2 = ObjRef_SerializeType_mD2B0D47321EA188DED31AC265CE3AE15F09D1D91(L_1, /*hidden argument*/NULL);
__this->set_TypeInfo_2(L_2);
int32_t L_3 = ___sourceDomain1;
__this->set_SourceDomain_1(L_3);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.Remoting.Messaging.IMessage System.Runtime.Remoting.Channels.CADSerializer::DeserializeMessage(System.IO.MemoryStream,System.Runtime.Remoting.Messaging.IMethodCallMessage)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* CADSerializer_DeserializeMessage_m70DD2368B1037A7D1D46BD6B0CCFE0CFF1F3C767 (MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * ___mem0, RuntimeObject* ___msg1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CADSerializer_DeserializeMessage_m70DD2368B1037A7D1D46BD6B0CCFE0CFF1F3C767_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var);
NotSupportedException__ctor_m3EA81A5B209A87C3ADA47443F2AFFF735E5256EE(L_0, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, CADSerializer_DeserializeMessage_m70DD2368B1037A7D1D46BD6B0CCFE0CFF1F3C767_RuntimeMethod_var);
}
}
// System.IO.MemoryStream System.Runtime.Remoting.Channels.CADSerializer::SerializeMessage(System.Runtime.Remoting.Messaging.IMessage)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * CADSerializer_SerializeMessage_mB35012D0664D40CC33DBC06FAF0A6E4056D2DC8D (RuntimeObject* ___msg0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CADSerializer_SerializeMessage_mB35012D0664D40CC33DBC06FAF0A6E4056D2DC8D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * V_0 = NULL;
{
MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * L_0 = (MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C *)il2cpp_codegen_object_new(MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C_il2cpp_TypeInfo_var);
MemoryStream__ctor_mD27B3DF2400D46A4A81EE78B0BD2C29EFCFAA44F(L_0, /*hidden argument*/NULL);
V_0 = L_0;
BinaryFormatter_tAA0465FE94B272FAC7C99F6AD38120E9319C5F55 * L_1 = (BinaryFormatter_tAA0465FE94B272FAC7C99F6AD38120E9319C5F55 *)il2cpp_codegen_object_new(BinaryFormatter_tAA0465FE94B272FAC7C99F6AD38120E9319C5F55_il2cpp_TypeInfo_var);
BinaryFormatter__ctor_m63B98FC5BE3E28A871125318FECE87CEA83D9126(L_1, /*hidden argument*/NULL);
BinaryFormatter_tAA0465FE94B272FAC7C99F6AD38120E9319C5F55 * L_2 = L_1;
RemotingSurrogateSelector_t1E36D625AE2C1058EA107D872577F1EFD04B5FCA * L_3 = (RemotingSurrogateSelector_t1E36D625AE2C1058EA107D872577F1EFD04B5FCA *)il2cpp_codegen_object_new(RemotingSurrogateSelector_t1E36D625AE2C1058EA107D872577F1EFD04B5FCA_il2cpp_TypeInfo_var);
RemotingSurrogateSelector__ctor_m034077907A6E35E52D6944E20F24053DA4532B84(L_3, /*hidden argument*/NULL);
NullCheck(L_2);
BinaryFormatter_set_SurrogateSelector_m696A2BF6895EE02E36D1D735689A026D53A027B6_inline(L_2, L_3, /*hidden argument*/NULL);
MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * L_4 = V_0;
RuntimeObject* L_5 = ___msg0;
NullCheck(L_2);
BinaryFormatter_Serialize_m780327356D3B5B1B734338AB398B32E65AD6CB5B(L_2, L_4, L_5, /*hidden argument*/NULL);
MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * L_6 = V_0;
NullCheck(L_6);
VirtActionInvoker1< int64_t >::Invoke(12 /* System.Void System.IO.Stream::set_Position(System.Int64) */, L_6, (((int64_t)((int64_t)0))));
MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * L_7 = V_0;
return L_7;
}
}
// System.Object System.Runtime.Remoting.Channels.CADSerializer::DeserializeObjectSafe(System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * CADSerializer_DeserializeObjectSafe_m6F6060CB4855A2B7A9DD8067DD592F520529E499 (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___mem0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CADSerializer_DeserializeObjectSafe_m6F6060CB4855A2B7A9DD8067DD592F520529E499_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* V_0 = NULL;
{
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_0 = ___mem0;
NullCheck(L_0);
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_1 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)SZArrayNew(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var, (uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_0)->max_length)))));
V_0 = L_1;
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_2 = ___mem0;
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_3 = V_0;
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_4 = ___mem0;
NullCheck(L_4);
Array_Copy_m40103AA97DC582C557B912CF4BBE86A4D166F803((RuntimeArray *)(RuntimeArray *)L_2, (RuntimeArray *)(RuntimeArray *)L_3, (((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))), /*hidden argument*/NULL);
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_5 = V_0;
MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * L_6 = (MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C *)il2cpp_codegen_object_new(MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C_il2cpp_TypeInfo_var);
MemoryStream__ctor_m3E041ADD3DB7EA42E7DB56FE862097819C02B9C2(L_6, L_5, /*hidden argument*/NULL);
RuntimeObject * L_7 = CADSerializer_DeserializeObject_mE789D2C1B31F27E5232031ED028CDF20088DFABB(L_6, /*hidden argument*/NULL);
return L_7;
}
}
// System.IO.MemoryStream System.Runtime.Remoting.Channels.CADSerializer::SerializeObject(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * CADSerializer_SerializeObject_mBA7285ACB82A1106EBBE97C1BE670C810496BF97 (RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CADSerializer_SerializeObject_mBA7285ACB82A1106EBBE97C1BE670C810496BF97_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * V_0 = NULL;
{
MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * L_0 = (MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C *)il2cpp_codegen_object_new(MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C_il2cpp_TypeInfo_var);
MemoryStream__ctor_mD27B3DF2400D46A4A81EE78B0BD2C29EFCFAA44F(L_0, /*hidden argument*/NULL);
V_0 = L_0;
BinaryFormatter_tAA0465FE94B272FAC7C99F6AD38120E9319C5F55 * L_1 = (BinaryFormatter_tAA0465FE94B272FAC7C99F6AD38120E9319C5F55 *)il2cpp_codegen_object_new(BinaryFormatter_tAA0465FE94B272FAC7C99F6AD38120E9319C5F55_il2cpp_TypeInfo_var);
BinaryFormatter__ctor_m63B98FC5BE3E28A871125318FECE87CEA83D9126(L_1, /*hidden argument*/NULL);
BinaryFormatter_tAA0465FE94B272FAC7C99F6AD38120E9319C5F55 * L_2 = L_1;
RemotingSurrogateSelector_t1E36D625AE2C1058EA107D872577F1EFD04B5FCA * L_3 = (RemotingSurrogateSelector_t1E36D625AE2C1058EA107D872577F1EFD04B5FCA *)il2cpp_codegen_object_new(RemotingSurrogateSelector_t1E36D625AE2C1058EA107D872577F1EFD04B5FCA_il2cpp_TypeInfo_var);
RemotingSurrogateSelector__ctor_m034077907A6E35E52D6944E20F24053DA4532B84(L_3, /*hidden argument*/NULL);
NullCheck(L_2);
BinaryFormatter_set_SurrogateSelector_m696A2BF6895EE02E36D1D735689A026D53A027B6_inline(L_2, L_3, /*hidden argument*/NULL);
MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * L_4 = V_0;
RuntimeObject * L_5 = ___obj0;
NullCheck(L_2);
BinaryFormatter_Serialize_m780327356D3B5B1B734338AB398B32E65AD6CB5B(L_2, L_4, L_5, /*hidden argument*/NULL);
MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * L_6 = V_0;
NullCheck(L_6);
VirtActionInvoker1< int64_t >::Invoke(12 /* System.Void System.IO.Stream::set_Position(System.Int64) */, L_6, (((int64_t)((int64_t)0))));
MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * L_7 = V_0;
return L_7;
}
}
// System.Object System.Runtime.Remoting.Channels.CADSerializer::DeserializeObject(System.IO.MemoryStream)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * CADSerializer_DeserializeObject_mE789D2C1B31F27E5232031ED028CDF20088DFABB (MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * ___mem0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CADSerializer_DeserializeObject_mE789D2C1B31F27E5232031ED028CDF20088DFABB_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
BinaryFormatter_tAA0465FE94B272FAC7C99F6AD38120E9319C5F55 * L_0 = (BinaryFormatter_tAA0465FE94B272FAC7C99F6AD38120E9319C5F55 *)il2cpp_codegen_object_new(BinaryFormatter_tAA0465FE94B272FAC7C99F6AD38120E9319C5F55_il2cpp_TypeInfo_var);
BinaryFormatter__ctor_m63B98FC5BE3E28A871125318FECE87CEA83D9126(L_0, /*hidden argument*/NULL);
BinaryFormatter_tAA0465FE94B272FAC7C99F6AD38120E9319C5F55 * L_1 = L_0;
NullCheck(L_1);
BinaryFormatter_set_SurrogateSelector_m696A2BF6895EE02E36D1D735689A026D53A027B6_inline(L_1, (RuntimeObject*)NULL, /*hidden argument*/NULL);
MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * L_2 = ___mem0;
NullCheck(L_2);
VirtActionInvoker1< int64_t >::Invoke(12 /* System.Void System.IO.Stream::set_Position(System.Int64) */, L_2, (((int64_t)((int64_t)0))));
MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * L_3 = ___mem0;
NullCheck(L_1);
RuntimeObject * L_4 = BinaryFormatter_Deserialize_mF7AFD0FE0E41A77BC60B11705FA7CC76EFE63DBC(L_1, L_3, /*hidden argument*/NULL);
return L_4;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Collections.Concurrent.CDSCollectionETWBCLProvider::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CDSCollectionETWBCLProvider__ctor_m00C916EEA7551A2BE50DC295437B304826F27F17 (CDSCollectionETWBCLProvider_tEF5FCC038F98C60A7A17E73AB11508EE6E2F4266 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CDSCollectionETWBCLProvider__ctor_m00C916EEA7551A2BE50DC295437B304826F27F17_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(EventSource_t02B6E43167F06B74646A32A3BBC58988BFC3EA6A_il2cpp_TypeInfo_var);
EventSource__ctor_m269E04845C481161A894037B5656C992F0D49021(__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Collections.Concurrent.CDSCollectionETWBCLProvider::ConcurrentDictionary_AcquiringAllLocks(System.Int32)
IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void CDSCollectionETWBCLProvider_ConcurrentDictionary_AcquiringAllLocks_m6D5F32C60870EBA61A6521B646C9E18EF54ED5E1 (CDSCollectionETWBCLProvider_tEF5FCC038F98C60A7A17E73AB11508EE6E2F4266 * __this, int32_t ___numOfBuckets0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CDSCollectionETWBCLProvider_ConcurrentDictionary_AcquiringAllLocks_m6D5F32C60870EBA61A6521B646C9E18EF54ED5E1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var);
NotSupportedException__ctor_m40BC57BDA6E0E119B73700CC809A14B57DC65A90(L_0, _stringLiteralFFEC460DC61811C6FD0F0A356298DC095225A991, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, CDSCollectionETWBCLProvider_ConcurrentDictionary_AcquiringAllLocks_m6D5F32C60870EBA61A6521B646C9E18EF54ED5E1_RuntimeMethod_var);
}
}
// System.Void System.Collections.Concurrent.CDSCollectionETWBCLProvider::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CDSCollectionETWBCLProvider__cctor_mF905251220171424CF71F236012919A04B266123 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CDSCollectionETWBCLProvider__cctor_mF905251220171424CF71F236012919A04B266123_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
CDSCollectionETWBCLProvider_tEF5FCC038F98C60A7A17E73AB11508EE6E2F4266 * L_0 = (CDSCollectionETWBCLProvider_tEF5FCC038F98C60A7A17E73AB11508EE6E2F4266 *)il2cpp_codegen_object_new(CDSCollectionETWBCLProvider_tEF5FCC038F98C60A7A17E73AB11508EE6E2F4266_il2cpp_TypeInfo_var);
CDSCollectionETWBCLProvider__ctor_m00C916EEA7551A2BE50DC295437B304826F27F17(L_0, /*hidden argument*/NULL);
((CDSCollectionETWBCLProvider_tEF5FCC038F98C60A7A17E73AB11508EE6E2F4266_StaticFields*)il2cpp_codegen_static_fields_for(CDSCollectionETWBCLProvider_tEF5FCC038F98C60A7A17E73AB11508EE6E2F4266_il2cpp_TypeInfo_var))->set_Log_3(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Boolean System.CLRConfig::CheckThrowUnobservedTaskExceptions()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CLRConfig_CheckThrowUnobservedTaskExceptions_mBBEE5B2CA413D04FE405E89AC8BEE783314F0277 (const RuntimeMethod* method)
{
typedef bool (*CLRConfig_CheckThrowUnobservedTaskExceptions_mBBEE5B2CA413D04FE405E89AC8BEE783314F0277_ftn) ();
using namespace il2cpp::icalls;
return ((CLRConfig_CheckThrowUnobservedTaskExceptions_mBBEE5B2CA413D04FE405E89AC8BEE783314F0277_ftn)mscorlib::System::CLRConfig::CheckThrowUnobservedTaskExceptions) ();
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.CLSCompliantAttribute::.ctor(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CLSCompliantAttribute__ctor_m340EDA4DA5E45506AD631FE84241ADFB6B3F0270 (CLSCompliantAttribute_tA28EF6D4ADBD3C5C429DE9A70DD1E927C8906249 * __this, bool ___isCompliant0, const RuntimeMethod* method)
{
{
Attribute__ctor_m5C1862A7DFC2C25A4797A8C5F681FBB5CB53ECE1(__this, /*hidden argument*/NULL);
bool L_0 = ___isCompliant0;
__this->set_m_compliant_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Runtime.InteropServices.COMException::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void COMException__ctor_m0A59E30D378EDDC2FA0AED1B0D35563679909A17 (COMException_t85EBB13764071A376ECA5BE9675860DAE79C768C * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (COMException__ctor_m0A59E30D378EDDC2FA0AED1B0D35563679909A17_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = Environment_GetResourceString_m8DFF827596B5FD533D3FE56900FA095F7D674617(_stringLiteral7D58B049E216EB50EA83E484A70559E5E4785F6C, /*hidden argument*/NULL);
ExternalException__ctor_m8A6870938AE42D989A00B950B2F298F70FD32AAA(__this, L_0, /*hidden argument*/NULL);
Exception_SetErrorCode_m92A787DA80F9CBC81E05D158F3D8099A8F1DD44D(__this, ((int32_t)-2147467259), /*hidden argument*/NULL);
return;
}
}
// System.Void System.Runtime.InteropServices.COMException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void COMException__ctor_m0526AAAA887691C2FA49BC081EC7B31A22FE3FC2 (COMException_t85EBB13764071A376ECA5BE9675860DAE79C768C * __this, SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * ___info0, StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 ___context1, const RuntimeMethod* method)
{
{
SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * L_0 = ___info0;
StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 L_1 = ___context1;
ExternalException__ctor_mF237400F375CB6BA1857B5C5EE7419AA59069184(__this, L_0, L_1, /*hidden argument*/NULL);
return;
}
}
// System.String System.Runtime.InteropServices.COMException::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* COMException_ToString_m0C0458B5B5887E3FFEF3A479A07AADB3F200D927 (COMException_t85EBB13764071A376ECA5BE9675860DAE79C768C * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (COMException_ToString_m0C0458B5B5887E3FFEF3A479A07AADB3F200D927_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
String_t* V_1 = NULL;
Exception_t * V_2 = NULL;
int32_t V_3 = 0;
{
String_t* L_0 = VirtFuncInvoker0< String_t* >::Invoke(5 /* System.String System.Exception::get_Message() */, __this);
V_0 = L_0;
Type_t * L_1 = Exception_GetType_mC5B8B5C944B326B751282AB0E8C25A7F85457D9F(__this, /*hidden argument*/NULL);
NullCheck(L_1);
String_t* L_2 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_1);
int32_t L_3 = Exception_get_HResult_mAF0FE56C31C3C7D5567539FB46BE80D6B9D1AD42_inline(__this, /*hidden argument*/NULL);
V_3 = L_3;
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var);
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_4 = CultureInfo_get_InvariantCulture_m9FAAFAF8A00091EE1FCB7098AD3F163ECDF02164(/*hidden argument*/NULL);
String_t* L_5 = Int32_ToString_m246774E1922012AE787EB97743F42CB798B70CD8((int32_t*)(&V_3), _stringLiteral1673B4D06ED01C7C0212BB2E7412E02E9578984F, L_4, /*hidden argument*/NULL);
String_t* L_6 = String_Concat_m37A5BF26F8F8F1892D60D727303B23FB604FEE78(L_2, _stringLiteral9AF9FF4500EB6B70FD164AC9B6F526595198624A, L_5, _stringLiteralB3F14BF976EFD974E34846B742502C802FABAE9D, /*hidden argument*/NULL);
V_1 = L_6;
String_t* L_7 = V_0;
if (!L_7)
{
goto IL_0053;
}
}
{
String_t* L_8 = V_0;
NullCheck(L_8);
int32_t L_9 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_8, /*hidden argument*/NULL);
if ((((int32_t)L_9) <= ((int32_t)0)))
{
goto IL_0053;
}
}
{
String_t* L_10 = V_1;
String_t* L_11 = V_0;
String_t* L_12 = String_Concat_m89EAB4C6A96B0E5C3F87300D6BE78D386B9EFC44(L_10, _stringLiteral1168E92C164109D6220480DEDA987085B2A21155, L_11, /*hidden argument*/NULL);
V_1 = L_12;
}
IL_0053:
{
Exception_t * L_13 = Exception_get_InnerException_m10D85773B6B191C7D4E7D3C2954B84F9BB195218_inline(__this, /*hidden argument*/NULL);
V_2 = L_13;
Exception_t * L_14 = V_2;
if (!L_14)
{
goto IL_006f;
}
}
{
String_t* L_15 = V_1;
Exception_t * L_16 = V_2;
NullCheck(L_16);
String_t* L_17 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_16);
String_t* L_18 = String_Concat_m89EAB4C6A96B0E5C3F87300D6BE78D386B9EFC44(L_15, _stringLiteral032CE4B2D2D7086FA0A51B767B66E2925BB4FC5D, L_17, /*hidden argument*/NULL);
V_1 = L_18;
}
IL_006f:
{
String_t* L_19 = VirtFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Exception::get_StackTrace() */, __this);
if (!L_19)
{
goto IL_0089;
}
}
{
String_t* L_20 = V_1;
String_t* L_21 = Environment_get_NewLine_mD145C8EE917C986BAA7C5243DEFAF4D333C521B4(/*hidden argument*/NULL);
String_t* L_22 = VirtFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Exception::get_StackTrace() */, __this);
String_t* L_23 = String_Concat_m89EAB4C6A96B0E5C3F87300D6BE78D386B9EFC44(L_20, L_21, L_22, /*hidden argument*/NULL);
V_1 = L_23;
}
IL_0089:
{
String_t* L_24 = V_1;
return L_24;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.IO.CStreamReader::.ctor(System.IO.Stream,System.Text.Encoding)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CStreamReader__ctor_m80BA3B2430FAF4BED3D63F368E07D81D2926628F (CStreamReader_tF270C75526507F4F57000088E805BDC8B4C2BD53 * __this, Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___stream0, Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * ___encoding1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CStreamReader__ctor_m80BA3B2430FAF4BED3D63F368E07D81D2926628F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * L_0 = ___stream0;
Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * L_1 = ___encoding1;
IL2CPP_RUNTIME_CLASS_INIT(StreamReader_tA857ACC7ABF9AA4638E1291E6D2539C14D2963D3_il2cpp_TypeInfo_var);
StreamReader__ctor_mFA7564812FC1200208BCC51CF24D3BE25BD15497(__this, L_0, L_1, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(ConsoleDriver_tFC1E81F456E9440AB760A599AA5BB301BBD12B11_il2cpp_TypeInfo_var);
RuntimeObject* L_2 = ((ConsoleDriver_tFC1E81F456E9440AB760A599AA5BB301BBD12B11_StaticFields*)il2cpp_codegen_static_fields_for(ConsoleDriver_tFC1E81F456E9440AB760A599AA5BB301BBD12B11_il2cpp_TypeInfo_var))->get_driver_0();
__this->set_driver_21(((TermInfoDriver_t4BA3410FC3FAB83D567ADF15C94124D8148A0E03 *)CastclassClass((RuntimeObject*)L_2, TermInfoDriver_t4BA3410FC3FAB83D567ADF15C94124D8148A0E03_il2cpp_TypeInfo_var)));
return;
}
}
// System.Int32 System.IO.CStreamReader::Peek()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CStreamReader_Peek_m679FBE34E8483BE7007CB9D9CB224E644BBD32E6 (CStreamReader_tF270C75526507F4F57000088E805BDC8B4C2BD53 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CStreamReader_Peek_m679FBE34E8483BE7007CB9D9CB224E644BBD32E6_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
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) * 2);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
IL_0000:
try
{ // begin try (depth: 1)
int32_t L_0 = StreamReader_Peek_m368511E5A8F1186EB4EF5C5BD6C71BE4008CDECD(__this, /*hidden argument*/NULL);
V_0 = L_0;
goto IL_000e;
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0009;
throw e;
}
CATCH_0009:
{ // begin catch(System.IO.IOException)
goto IL_000c;
} // end catch (depth: 1)
IL_000c:
{
return (-1);
}
IL_000e:
{
int32_t L_1 = V_0;
return L_1;
}
}
// System.Int32 System.IO.CStreamReader::Read()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CStreamReader_Read_m9491BF9EDF4372F94F74D946392994488B9B257F (CStreamReader_tF270C75526507F4F57000088E805BDC8B4C2BD53 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CStreamReader_Read_m9491BF9EDF4372F94F74D946392994488B9B257F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ConsoleKeyInfo_tDA8AC07839288484FCB167A81B4FBA92ECCEAF88 V_0;
memset((&V_0), 0, sizeof(V_0));
int32_t V_1 = 0;
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) * 2);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
IL_0000:
try
{ // begin try (depth: 1)
IL2CPP_RUNTIME_CLASS_INIT(Console_t79987B1B5914E76054A8CBE506B9E11936A8BC07_il2cpp_TypeInfo_var);
ConsoleKeyInfo_tDA8AC07839288484FCB167A81B4FBA92ECCEAF88 L_0 = Console_ReadKey_mFB50402A43E0994EBC4CB125217B21F60F6AA07C(/*hidden argument*/NULL);
V_0 = L_0;
Il2CppChar L_1 = ConsoleKeyInfo_get_KeyChar_m85F4AA380907696C19C1BFFB73FA5DCA0975A82D_inline((ConsoleKeyInfo_tDA8AC07839288484FCB167A81B4FBA92ECCEAF88 *)(&V_0), /*hidden argument*/NULL);
V_1 = L_1;
goto IL_0015;
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0010;
throw e;
}
CATCH_0010:
{ // begin catch(System.IO.IOException)
goto IL_0013;
} // end catch (depth: 1)
IL_0013:
{
return (-1);
}
IL_0015:
{
int32_t L_2 = V_1;
return L_2;
}
}
// System.Int32 System.IO.CStreamReader::Read(System.Char[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CStreamReader_Read_mC736E73CC704DCBE3092724576321CAFB749B1B9 (CStreamReader_tF270C75526507F4F57000088E805BDC8B4C2BD53 * __this, CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___dest0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CStreamReader_Read_mC736E73CC704DCBE3092724576321CAFB749B1B9_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
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) * 2);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_0 = ___dest0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, _stringLiteral532F5429956965038FA49DA954E9A0D4D34B41A9, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, CStreamReader_Read_mC736E73CC704DCBE3092724576321CAFB749B1B9_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___index1;
if ((((int32_t)L_2) >= ((int32_t)0)))
{
goto IL_0022;
}
}
{
ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_3 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_mE43AFC74F5F3932913C023A04B24905E093C5005(L_3, _stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1, _stringLiteral76090A3CE9567D0D26B5213CB891A873540230EE, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, CStreamReader_Read_mC736E73CC704DCBE3092724576321CAFB749B1B9_RuntimeMethod_var);
}
IL_0022:
{
int32_t L_4 = ___count2;
if ((((int32_t)L_4) >= ((int32_t)0)))
{
goto IL_0036;
}
}
{
ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_5 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_mE43AFC74F5F3932913C023A04B24905E093C5005(L_5, _stringLiteral07624473F417C06C74D59C64840A1532FCE2C626, _stringLiteral76090A3CE9567D0D26B5213CB891A873540230EE, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, CStreamReader_Read_mC736E73CC704DCBE3092724576321CAFB749B1B9_RuntimeMethod_var);
}
IL_0036:
{
int32_t L_6 = ___index1;
CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_7 = ___dest0;
NullCheck(L_7);
int32_t L_8 = ___count2;
if ((((int32_t)L_6) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_7)->max_length)))), (int32_t)L_8)))))
{
goto IL_0049;
}
}
{
ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_9 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var);
ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_9, _stringLiteral8FAFE0C7CF4DAF4B0E2865AE5128EAAA4A3DE940, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, CStreamReader_Read_mC736E73CC704DCBE3092724576321CAFB749B1B9_RuntimeMethod_var);
}
IL_0049:
{
}
IL_004a:
try
{ // begin try (depth: 1)
TermInfoDriver_t4BA3410FC3FAB83D567ADF15C94124D8148A0E03 * L_10 = __this->get_driver_21();
CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_11 = ___dest0;
int32_t L_12 = ___index1;
int32_t L_13 = ___count2;
NullCheck(L_10);
int32_t L_14 = TermInfoDriver_Read_m007929B4E94873B778BF0D94200725E581E4EE04(L_10, L_11, L_12, L_13, /*hidden argument*/NULL);
V_0 = L_14;
goto IL_0060;
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_005b;
throw e;
}
CATCH_005b:
{ // begin catch(System.IO.IOException)
goto IL_005e;
} // end catch (depth: 1)
IL_005e:
{
return 0;
}
IL_0060:
{
int32_t L_15 = V_0;
return L_15;
}
}
// System.String System.IO.CStreamReader::ReadLine()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* CStreamReader_ReadLine_mB8117FBB2E2E47FAE94DEB11BB52015BFB68C5E6 (CStreamReader_tF270C75526507F4F57000088E805BDC8B4C2BD53 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CStreamReader_ReadLine_mB8117FBB2E2E47FAE94DEB11BB52015BFB68C5E6_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = 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) * 2);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
IL_0000:
try
{ // begin try (depth: 1)
TermInfoDriver_t4BA3410FC3FAB83D567ADF15C94124D8148A0E03 * L_0 = __this->get_driver_21();
NullCheck(L_0);
String_t* L_1 = TermInfoDriver_ReadLine_m21228092B7E5C249325613CF07119591A79E3BC1(L_0, /*hidden argument*/NULL);
V_0 = L_1;
goto IL_0013;
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_000e;
throw e;
}
CATCH_000e:
{ // begin catch(System.IO.IOException)
goto IL_0011;
} // end catch (depth: 1)
IL_0011:
{
return (String_t*)NULL;
}
IL_0013:
{
String_t* L_2 = V_0;
return L_2;
}
}
// System.String System.IO.CStreamReader::ReadToEnd()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* CStreamReader_ReadToEnd_m8F890BF2E1F860621CD597CB29831219FEC4717B (CStreamReader_tF270C75526507F4F57000088E805BDC8B4C2BD53 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CStreamReader_ReadToEnd_m8F890BF2E1F860621CD597CB29831219FEC4717B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = 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) * 2);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
IL_0000:
try
{ // begin try (depth: 1)
TermInfoDriver_t4BA3410FC3FAB83D567ADF15C94124D8148A0E03 * L_0 = __this->get_driver_21();
NullCheck(L_0);
String_t* L_1 = TermInfoDriver_ReadToEnd_m32D5255A7874B94E6B1BC0350E366EF28BAF6A40(L_0, /*hidden argument*/NULL);
V_0 = L_1;
goto IL_0013;
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_000e;
throw e;
}
CATCH_000e:
{ // begin catch(System.IO.IOException)
goto IL_0011;
} // end catch (depth: 1)
IL_0011:
{
return (String_t*)NULL;
}
IL_0013:
{
String_t* L_2 = V_0;
return L_2;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.IO.CStreamWriter::.ctor(System.IO.Stream,System.Text.Encoding,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CStreamWriter__ctor_mDEC4D7D0987E42004657A6F4F91124135420266F (CStreamWriter_tBC3C3F9F3E738D2FF586EF7A680A077D5AA3D27A * __this, Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___stream0, Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * ___encoding1, bool ___leaveOpen2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CStreamWriter__ctor_mDEC4D7D0987E42004657A6F4F91124135420266F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * L_0 = ___stream0;
Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * L_1 = ___encoding1;
bool L_2 = ___leaveOpen2;
IL2CPP_RUNTIME_CLASS_INIT(StreamWriter_t3E267B7F3C9522AF936C26ABF158398BB779FAF6_il2cpp_TypeInfo_var);
StreamWriter__ctor_m8A6308267FE9C25AC4D31D1E7E909B2AE67B9A8B(__this, L_0, L_1, ((int32_t)1024), L_2, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(ConsoleDriver_tFC1E81F456E9440AB760A599AA5BB301BBD12B11_il2cpp_TypeInfo_var);
RuntimeObject* L_3 = ((ConsoleDriver_tFC1E81F456E9440AB760A599AA5BB301BBD12B11_StaticFields*)il2cpp_codegen_static_fields_for(ConsoleDriver_tFC1E81F456E9440AB760A599AA5BB301BBD12B11_il2cpp_TypeInfo_var))->get_driver_0();
__this->set_driver_24(((TermInfoDriver_t4BA3410FC3FAB83D567ADF15C94124D8148A0E03 *)CastclassClass((RuntimeObject*)L_3, TermInfoDriver_t4BA3410FC3FAB83D567ADF15C94124D8148A0E03_il2cpp_TypeInfo_var)));
return;
}
}
// System.Void System.IO.CStreamWriter::Write(System.Char[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CStreamWriter_Write_m7E856E03F11E46545D1C4749CCC870F6170904F5 (CStreamWriter_tBC3C3F9F3E738D2FF586EF7A680A077D5AA3D27A * __this, CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___buffer0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CStreamWriter_Write_m7E856E03F11E46545D1C4749CCC870F6170904F5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
CStreamWriter_tBC3C3F9F3E738D2FF586EF7A680A077D5AA3D27A * V_0 = NULL;
bool V_1 = false;
int32_t V_2 = 0;
int32_t V_3 = 0;
int32_t V_4 = 0;
Il2CppChar V_5 = 0x0;
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) * 7);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
int32_t L_0 = ___count2;
if ((((int32_t)L_0) > ((int32_t)0)))
{
goto IL_0005;
}
}
{
return;
}
IL_0005:
{
TermInfoDriver_t4BA3410FC3FAB83D567ADF15C94124D8148A0E03 * L_1 = __this->get_driver_24();
NullCheck(L_1);
bool L_2 = TermInfoDriver_get_Initialized_m638E51B051705D6784651A9FD9B75983D2674E8E_inline(L_1, /*hidden argument*/NULL);
if (L_2)
{
goto IL_0021;
}
}
IL_0012:
try
{ // begin try (depth: 1)
CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_3 = ___buffer0;
int32_t L_4 = ___index1;
int32_t L_5 = ___count2;
StreamWriter_Write_m221171E1EE9CD6D0058AA762C9DB5EEA169C5EBE(__this, L_3, L_4, L_5, /*hidden argument*/NULL);
goto IL_0020;
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_001d;
throw e;
}
CATCH_001d:
{ // begin catch(System.IO.IOException)
goto IL_0020;
} // end catch (depth: 1)
IL_0020:
{
return;
}
IL_0021:
{
V_0 = __this;
V_1 = (bool)0;
}
IL_0025:
try
{ // begin try (depth: 1)
{
CStreamWriter_tBC3C3F9F3E738D2FF586EF7A680A077D5AA3D27A * L_6 = V_0;
Monitor_Enter_mBEB6CC84184B46F26375EC3FC8921D16E48EA4C4(L_6, (bool*)(&V_1), /*hidden argument*/NULL);
int32_t L_7 = ___index1;
int32_t L_8 = ___count2;
V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
int32_t L_9 = ___index1;
V_3 = L_9;
V_4 = 0;
}
IL_0036:
{
CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_10 = ___buffer0;
int32_t L_11 = V_3;
int32_t L_12 = L_11;
V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1));
NullCheck(L_10);
int32_t L_13 = L_12;
uint16_t L_14 = (uint16_t)(L_10)->GetAt(static_cast<il2cpp_array_size_t>(L_13));
V_5 = L_14;
TermInfoDriver_t4BA3410FC3FAB83D567ADF15C94124D8148A0E03 * L_15 = __this->get_driver_24();
Il2CppChar L_16 = V_5;
NullCheck(L_15);
bool L_17 = TermInfoDriver_IsSpecialKey_m28A4E7401DEF858F48BDF8F5F8D79AFC00E97E79(L_15, L_16, /*hidden argument*/NULL);
if (!L_17)
{
goto IL_0077;
}
}
IL_004e:
{
int32_t L_18 = V_4;
if ((((int32_t)L_18) <= ((int32_t)0)))
{
goto IL_0065;
}
}
IL_0053:
try
{ // begin try (depth: 2)
CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_19 = ___buffer0;
int32_t L_20 = ___index1;
int32_t L_21 = V_4;
StreamWriter_Write_m221171E1EE9CD6D0058AA762C9DB5EEA169C5EBE(__this, L_19, L_20, L_21, /*hidden argument*/NULL);
goto IL_0062;
} // end try (depth: 2)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_005f;
throw e;
}
CATCH_005f:
{ // begin catch(System.IO.IOException)
goto IL_0062;
} // end catch (depth: 2)
IL_0062:
{
V_4 = 0;
}
IL_0065:
{
TermInfoDriver_t4BA3410FC3FAB83D567ADF15C94124D8148A0E03 * L_22 = __this->get_driver_24();
Il2CppChar L_23 = V_5;
NullCheck(L_22);
TermInfoDriver_WriteSpecialKey_mA87BA57992559C1E3389ED4E3518AC522A7EC99E(L_22, L_23, /*hidden argument*/NULL);
int32_t L_24 = V_3;
___index1 = L_24;
goto IL_007d;
}
IL_0077:
{
int32_t L_25 = V_4;
V_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_25, (int32_t)1));
}
IL_007d:
{
int32_t L_26 = V_3;
int32_t L_27 = V_2;
if ((((int32_t)L_26) < ((int32_t)L_27)))
{
goto IL_0036;
}
}
IL_0081:
{
int32_t L_28 = V_4;
if ((((int32_t)L_28) <= ((int32_t)0)))
{
goto IL_0095;
}
}
IL_0086:
try
{ // begin try (depth: 2)
CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_29 = ___buffer0;
int32_t L_30 = ___index1;
int32_t L_31 = V_4;
StreamWriter_Write_m221171E1EE9CD6D0058AA762C9DB5EEA169C5EBE(__this, L_29, L_30, L_31, /*hidden argument*/NULL);
IL2CPP_LEAVE(0xA1, FINALLY_0097);
} // end try (depth: 2)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0092;
throw e;
}
CATCH_0092:
{ // begin catch(System.IO.IOException)
IL2CPP_LEAVE(0xA1, FINALLY_0097);
} // end catch (depth: 2)
IL_0095:
{
IL2CPP_LEAVE(0xA1, FINALLY_0097);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0097;
}
FINALLY_0097:
{ // begin finally (depth: 1)
{
bool L_32 = V_1;
if (!L_32)
{
goto IL_00a0;
}
}
IL_009a:
{
CStreamWriter_tBC3C3F9F3E738D2FF586EF7A680A077D5AA3D27A * L_33 = V_0;
Monitor_Exit_mA776B403DA88AC77CDEEF67AB9F0D0E77ABD254A(L_33, /*hidden argument*/NULL);
}
IL_00a0:
{
IL2CPP_END_FINALLY(151)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(151)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
IL2CPP_JUMP_TBL(0xA1, IL_00a1)
}
IL_00a1:
{
return;
}
}
// System.Void System.IO.CStreamWriter::Write(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CStreamWriter_Write_mA9151D44EE757AA7C0C25FA3AD596CD40F4D01A5 (CStreamWriter_tBC3C3F9F3E738D2FF586EF7A680A077D5AA3D27A * __this, Il2CppChar ___val0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CStreamWriter_Write_mA9151D44EE757AA7C0C25FA3AD596CD40F4D01A5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
CStreamWriter_tBC3C3F9F3E738D2FF586EF7A680A077D5AA3D27A * V_0 = NULL;
bool V_1 = false;
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) * 2);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
V_0 = __this;
V_1 = (bool)0;
}
IL_0004:
try
{ // begin try (depth: 1)
{
CStreamWriter_tBC3C3F9F3E738D2FF586EF7A680A077D5AA3D27A * L_0 = V_0;
Monitor_Enter_mBEB6CC84184B46F26375EC3FC8921D16E48EA4C4(L_0, (bool*)(&V_1), /*hidden argument*/NULL);
}
IL_000c:
try
{ // begin try (depth: 2)
{
TermInfoDriver_t4BA3410FC3FAB83D567ADF15C94124D8148A0E03 * L_1 = __this->get_driver_24();
Il2CppChar L_2 = ___val0;
NullCheck(L_1);
bool L_3 = TermInfoDriver_IsSpecialKey_m28A4E7401DEF858F48BDF8F5F8D79AFC00E97E79(L_1, L_2, /*hidden argument*/NULL);
if (!L_3)
{
goto IL_0028;
}
}
IL_001a:
{
TermInfoDriver_t4BA3410FC3FAB83D567ADF15C94124D8148A0E03 * L_4 = __this->get_driver_24();
Il2CppChar L_5 = ___val0;
NullCheck(L_4);
TermInfoDriver_WriteSpecialKey_mA87BA57992559C1E3389ED4E3518AC522A7EC99E(L_4, L_5, /*hidden argument*/NULL);
goto IL_002f;
}
IL_0028:
{
Il2CppChar L_6 = ___val0;
CStreamWriter_InternalWriteChar_mCE65984A39D3EB1848DA0E80116620494773A697(__this, L_6, /*hidden argument*/NULL);
}
IL_002f:
{
IL2CPP_LEAVE(0x3E, FINALLY_0034);
}
} // end try (depth: 2)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0031;
throw e;
}
CATCH_0031:
{ // begin catch(System.IO.IOException)
IL2CPP_LEAVE(0x3E, FINALLY_0034);
} // end catch (depth: 2)
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0034;
}
FINALLY_0034:
{ // begin finally (depth: 1)
{
bool L_7 = V_1;
if (!L_7)
{
goto IL_003d;
}
}
IL_0037:
{
CStreamWriter_tBC3C3F9F3E738D2FF586EF7A680A077D5AA3D27A * L_8 = V_0;
Monitor_Exit_mA776B403DA88AC77CDEEF67AB9F0D0E77ABD254A(L_8, /*hidden argument*/NULL);
}
IL_003d:
{
IL2CPP_END_FINALLY(52)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(52)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
IL2CPP_JUMP_TBL(0x3E, IL_003e)
}
IL_003e:
{
return;
}
}
// System.Void System.IO.CStreamWriter::InternalWriteString(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CStreamWriter_InternalWriteString_m9AF77B6AD303A0432032DEB1C8528DE2BD2047BB (CStreamWriter_tBC3C3F9F3E738D2FF586EF7A680A077D5AA3D27A * __this, String_t* ___val0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CStreamWriter_InternalWriteString_m9AF77B6AD303A0432032DEB1C8528DE2BD2047BB_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
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) * 2);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
IL_0000:
try
{ // begin try (depth: 1)
String_t* L_0 = ___val0;
StreamWriter_Write_m70C7F2CFB1D4EE4D733A798742B1586D42F9A04E(__this, L_0, /*hidden argument*/NULL);
goto IL_000c;
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0009;
throw e;
}
CATCH_0009:
{ // begin catch(System.IO.IOException)
goto IL_000c;
} // end catch (depth: 1)
IL_000c:
{
return;
}
}
// System.Void System.IO.CStreamWriter::InternalWriteChar(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CStreamWriter_InternalWriteChar_mCE65984A39D3EB1848DA0E80116620494773A697 (CStreamWriter_tBC3C3F9F3E738D2FF586EF7A680A077D5AA3D27A * __this, Il2CppChar ___val0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CStreamWriter_InternalWriteChar_mCE65984A39D3EB1848DA0E80116620494773A697_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
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) * 2);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
IL_0000:
try
{ // begin try (depth: 1)
Il2CppChar L_0 = ___val0;
StreamWriter_Write_mABBB5B9472A516EE1C9FCC92ECCD1513AC063226(__this, L_0, /*hidden argument*/NULL);
goto IL_000c;
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0009;
throw e;
}
CATCH_0009:
{ // begin catch(System.IO.IOException)
goto IL_000c;
} // end catch (depth: 1)
IL_000c:
{
return;
}
}
// System.Void System.IO.CStreamWriter::InternalWriteChars(System.Char[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CStreamWriter_InternalWriteChars_m64775CD216B4A0F1BE0ECD0A9B92EA9E6198AB9D (CStreamWriter_tBC3C3F9F3E738D2FF586EF7A680A077D5AA3D27A * __this, CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___buffer0, int32_t ___n1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CStreamWriter_InternalWriteChars_m64775CD216B4A0F1BE0ECD0A9B92EA9E6198AB9D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
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) * 2);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
IL_0000:
try
{ // begin try (depth: 1)
CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_0 = ___buffer0;
int32_t L_1 = ___n1;
StreamWriter_Write_m221171E1EE9CD6D0058AA762C9DB5EEA169C5EBE(__this, L_0, 0, L_1, /*hidden argument*/NULL);
goto IL_000e;
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_000b;
throw e;
}
CATCH_000b:
{ // begin catch(System.IO.IOException)
goto IL_000e;
} // end catch (depth: 1)
IL_000e:
{
return;
}
}
// System.Void System.IO.CStreamWriter::Write(System.Char[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CStreamWriter_Write_mDC40E57DADDDDF43DDB99E60A484351EE428658C (CStreamWriter_tBC3C3F9F3E738D2FF586EF7A680A077D5AA3D27A * __this, CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___val0, const RuntimeMethod* method)
{
{
CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_0 = ___val0;
CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_1 = ___val0;
NullCheck(L_1);
VirtActionInvoker3< CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34*, int32_t, int32_t >::Invoke(12 /* System.Void System.IO.TextWriter::Write(System.Char[],System.Int32,System.Int32) */, __this, L_0, 0, (((int32_t)((int32_t)(((RuntimeArray*)L_1)->max_length)))));
return;
}
}
// System.Void System.IO.CStreamWriter::Write(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CStreamWriter_Write_m15BBC60012B2F244AF332FBC75D85058A2705B3E (CStreamWriter_tBC3C3F9F3E738D2FF586EF7A680A077D5AA3D27A * __this, String_t* ___val0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CStreamWriter_Write_m15BBC60012B2F244AF332FBC75D85058A2705B3E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
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) * 2);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
String_t* L_0 = ___val0;
if (L_0)
{
goto IL_0004;
}
}
{
return;
}
IL_0004:
{
TermInfoDriver_t4BA3410FC3FAB83D567ADF15C94124D8148A0E03 * L_1 = __this->get_driver_24();
NullCheck(L_1);
bool L_2 = TermInfoDriver_get_Initialized_m638E51B051705D6784651A9FD9B75983D2674E8E_inline(L_1, /*hidden argument*/NULL);
if (!L_2)
{
goto IL_001e;
}
}
{
String_t* L_3 = ___val0;
NullCheck(L_3);
CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_4 = String_ToCharArray_m33E93AEB7086CBEBDFA5730EAAC49686F144089C(L_3, /*hidden argument*/NULL);
VirtActionInvoker1< CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* >::Invoke(11 /* System.Void System.IO.TextWriter::Write(System.Char[]) */, __this, L_4);
return;
}
IL_001e:
{
}
IL_001f:
try
{ // begin try (depth: 1)
String_t* L_5 = ___val0;
StreamWriter_Write_m70C7F2CFB1D4EE4D733A798742B1586D42F9A04E(__this, L_5, /*hidden argument*/NULL);
goto IL_002b;
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (IOException_t09E5C01DA4748C36D703728C4668C5CDF3882EBA_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0028;
throw e;
}
CATCH_0028:
{ // begin catch(System.IO.IOException)
goto IL_002b;
} // end catch (depth: 1)
IL_002b:
{
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.DateTime System.Globalization.Calendar::get_MinSupportedDateTime()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 Calendar_get_MinSupportedDateTime_m172A52CAF1525424F3515178E1C92037F09D7762 (Calendar_t3D638AEAB45F029DF47138EDA4CF9A7CBBB1C32A * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Calendar_get_MinSupportedDateTime_m172A52CAF1525424F3515178E1C92037F09D7762_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_il2cpp_TypeInfo_var);
DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 L_0 = ((DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_il2cpp_TypeInfo_var))->get_MinValue_31();
return L_0;
}
}
// System.DateTime System.Globalization.Calendar::get_MaxSupportedDateTime()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 Calendar_get_MaxSupportedDateTime_m6B31DC95AFD6710D9BEB8627CB945428A5AC6223 (Calendar_t3D638AEAB45F029DF47138EDA4CF9A7CBBB1C32A * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Calendar_get_MaxSupportedDateTime_m6B31DC95AFD6710D9BEB8627CB945428A5AC6223_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_il2cpp_TypeInfo_var);
DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 L_0 = ((DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_il2cpp_TypeInfo_var))->get_MaxValue_32();
return L_0;
}
}
// System.Void System.Globalization.Calendar::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Calendar__ctor_m47E3F85BE41EAA1FB9D82DA56647EF6481CF6EAD (Calendar_t3D638AEAB45F029DF47138EDA4CF9A7CBBB1C32A * __this, const RuntimeMethod* method)
{
{
__this->set_m_currentEraValue_0((-1));
__this->set_twoDigitYearMax_2((-1));
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL);
return;
}
}
// System.Int32 System.Globalization.Calendar::get_ID()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Calendar_get_ID_m7FCC60C84AEEF0EFB098E66BCB9BFE808E5B0FEF (Calendar_t3D638AEAB45F029DF47138EDA4CF9A7CBBB1C32A * __this, const RuntimeMethod* method)
{
{
return (-1);
}
}
// System.Int32 System.Globalization.Calendar::get_BaseCalendarID()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Calendar_get_BaseCalendarID_m2E4D7584B3FBF1BAF1A3A66FB794DD4E81F8D1C4 (Calendar_t3D638AEAB45F029DF47138EDA4CF9A7CBBB1C32A * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = VirtFuncInvoker0< int32_t >::Invoke(7 /* System.Int32 System.Globalization.Calendar::get_ID() */, __this);
return L_0;
}
}
// System.Object System.Globalization.Calendar::Clone()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Calendar_Clone_mDA3317FBF3D8700B67BDF835A4B689F0C8ABF369 (Calendar_t3D638AEAB45F029DF47138EDA4CF9A7CBBB1C32A * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Calendar_Clone_mDA3317FBF3D8700B67BDF835A4B689F0C8ABF369_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = Object_MemberwiseClone_m0AEE84C38E9A87C372139B4C342454553F0F6392(__this, /*hidden argument*/NULL);
RuntimeObject * L_1 = L_0;
NullCheck(((Calendar_t3D638AEAB45F029DF47138EDA4CF9A7CBBB1C32A *)CastclassClass((RuntimeObject*)L_1, Calendar_t3D638AEAB45F029DF47138EDA4CF9A7CBBB1C32A_il2cpp_TypeInfo_var)));
Calendar_SetReadOnlyState_m5585F5423EAE536937889E2F997BB8E1E99ED10A_inline(((Calendar_t3D638AEAB45F029DF47138EDA4CF9A7CBBB1C32A *)CastclassClass((RuntimeObject*)L_1, Calendar_t3D638AEAB45F029DF47138EDA4CF9A7CBBB1C32A_il2cpp_TypeInfo_var)), (bool)0, /*hidden argument*/NULL);
return L_1;
}
}
// System.Void System.Globalization.Calendar::SetReadOnlyState(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Calendar_SetReadOnlyState_m5585F5423EAE536937889E2F997BB8E1E99ED10A (Calendar_t3D638AEAB45F029DF47138EDA4CF9A7CBBB1C32A * __this, bool ___readOnly0, const RuntimeMethod* method)
{
{
bool L_0 = ___readOnly0;
__this->set_m_isReadOnly_1(L_0);
return;
}
}
// System.Int32 System.Globalization.Calendar::get_CurrentEraValue()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Calendar_get_CurrentEraValue_mC42FEA7E9355FC8A4012CC00D73B1B6CE6B3035F (Calendar_t3D638AEAB45F029DF47138EDA4CF9A7CBBB1C32A * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Calendar_get_CurrentEraValue_mC42FEA7E9355FC8A4012CC00D73B1B6CE6B3035F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = __this->get_m_currentEraValue_0();
if ((!(((uint32_t)L_0) == ((uint32_t)(-1)))))
{
goto IL_001f;
}
}
{
int32_t L_1 = VirtFuncInvoker0< int32_t >::Invoke(8 /* System.Int32 System.Globalization.Calendar::get_BaseCalendarID() */, __this);
IL2CPP_RUNTIME_CLASS_INIT(CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4_il2cpp_TypeInfo_var);
CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4 * L_2 = CalendarData_GetCalendarData_mDDDDDD6CFF169145E762928778E65C8335CB4FE0(L_1, /*hidden argument*/NULL);
NullCheck(L_2);
int32_t L_3 = L_2->get_iCurrentEra_18();
__this->set_m_currentEraValue_0(L_3);
}
IL_001f:
{
int32_t L_4 = __this->get_m_currentEraValue_0();
return L_4;
}
}
// System.Boolean System.Globalization.Calendar::IsLeapYear(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Calendar_IsLeapYear_mE7791FA5B18B9C2DD23FBB9B89EA7CD03A7AF710 (Calendar_t3D638AEAB45F029DF47138EDA4CF9A7CBBB1C32A * __this, int32_t ___year0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___year0;
bool L_1 = VirtFuncInvoker2< bool, int32_t, int32_t >::Invoke(20 /* System.Boolean System.Globalization.Calendar::IsLeapYear(System.Int32,System.Int32) */, __this, L_0, 0);
return L_1;
}
}
// System.Boolean System.Globalization.Calendar::TryToDateTime(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.DateTime&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Calendar_TryToDateTime_mD5D93B2A3CEBDB848BD9D90506A98C01AF287B64 (Calendar_t3D638AEAB45F029DF47138EDA4CF9A7CBBB1C32A * __this, int32_t ___year0, int32_t ___month1, int32_t ___day2, int32_t ___hour3, int32_t ___minute4, int32_t ___second5, int32_t ___millisecond6, int32_t ___era7, DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * ___result8, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Calendar_TryToDateTime_mD5D93B2A3CEBDB848BD9D90506A98C01AF287B64_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
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) * 2);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * L_0 = ___result8;
IL2CPP_RUNTIME_CLASS_INIT(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_il2cpp_TypeInfo_var);
DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 L_1 = ((DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_StaticFields*)il2cpp_codegen_static_fields_for(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405_il2cpp_TypeInfo_var))->get_MinValue_31();
*(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 *)L_0 = L_1;
}
IL_000c:
try
{ // begin try (depth: 1)
DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 * L_2 = ___result8;
int32_t L_3 = ___year0;
int32_t L_4 = ___month1;
int32_t L_5 = ___day2;
int32_t L_6 = ___hour3;
int32_t L_7 = ___minute4;
int32_t L_8 = ___second5;
int32_t L_9 = ___millisecond6;
int32_t L_10 = ___era7;
DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 L_11 = VirtFuncInvoker8< DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 , int32_t, int32_t, int32_t, int32_t, int32_t, int32_t, int32_t, int32_t >::Invoke(21 /* System.DateTime System.Globalization.Calendar::ToDateTime(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32) */, __this, L_3, L_4, L_5, L_6, L_7, L_8, L_9, L_10);
*(DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 *)L_2 = L_11;
V_0 = (bool)1;
goto IL_002f;
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_002a;
throw e;
}
CATCH_002a:
{ // begin catch(System.ArgumentException)
V_0 = (bool)0;
goto IL_002f;
} // end catch (depth: 1)
IL_002f:
{
bool L_12 = V_0;
return L_12;
}
}
// System.Boolean System.Globalization.Calendar::IsValidYear(System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Calendar_IsValidYear_m4E202ED339C9D2467136BCA2FADECAA3622A51C3 (Calendar_t3D638AEAB45F029DF47138EDA4CF9A7CBBB1C32A * __this, int32_t ___year0, int32_t ___era1, const RuntimeMethod* method)
{
{
int32_t L_0 = ___year0;
DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 L_1 = VirtFuncInvoker0< DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 >::Invoke(5 /* System.DateTime System.Globalization.Calendar::get_MinSupportedDateTime() */, __this);
int32_t L_2 = VirtFuncInvoker1< int32_t, DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 >::Invoke(18 /* System.Int32 System.Globalization.Calendar::GetYear(System.DateTime) */, __this, L_1);
if ((((int32_t)L_0) < ((int32_t)L_2)))
{
goto IL_0022;
}
}
{
int32_t L_3 = ___year0;
DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 L_4 = VirtFuncInvoker0< DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 >::Invoke(6 /* System.DateTime System.Globalization.Calendar::get_MaxSupportedDateTime() */, __this);
int32_t L_5 = VirtFuncInvoker1< int32_t, DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 >::Invoke(18 /* System.Int32 System.Globalization.Calendar::GetYear(System.DateTime) */, __this, L_4);
return (bool)((((int32_t)((((int32_t)L_3) > ((int32_t)L_5))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_0022:
{
return (bool)0;
}
}
// System.Boolean System.Globalization.Calendar::IsValidMonth(System.Int32,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Calendar_IsValidMonth_m24279B6BA739858602FD0B8E951A6BFE1E2F5562 (Calendar_t3D638AEAB45F029DF47138EDA4CF9A7CBBB1C32A * __this, int32_t ___year0, int32_t ___month1, int32_t ___era2, const RuntimeMethod* method)
{
{
int32_t L_0 = ___year0;
int32_t L_1 = ___era2;
bool L_2 = VirtFuncInvoker2< bool, int32_t, int32_t >::Invoke(23 /* System.Boolean System.Globalization.Calendar::IsValidYear(System.Int32,System.Int32) */, __this, L_0, L_1);
if (!L_2)
{
goto IL_001d;
}
}
{
int32_t L_3 = ___month1;
if ((((int32_t)L_3) < ((int32_t)1)))
{
goto IL_001d;
}
}
{
int32_t L_4 = ___month1;
int32_t L_5 = ___year0;
int32_t L_6 = ___era2;
int32_t L_7 = VirtFuncInvoker2< int32_t, int32_t, int32_t >::Invoke(17 /* System.Int32 System.Globalization.Calendar::GetMonthsInYear(System.Int32,System.Int32) */, __this, L_5, L_6);
return (bool)((((int32_t)((((int32_t)L_4) > ((int32_t)L_7))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_001d:
{
return (bool)0;
}
}
// System.Boolean System.Globalization.Calendar::IsValidDay(System.Int32,System.Int32,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Calendar_IsValidDay_mE01C16092EBDF6802BA730D805BF76427BA70DDC (Calendar_t3D638AEAB45F029DF47138EDA4CF9A7CBBB1C32A * __this, int32_t ___year0, int32_t ___month1, int32_t ___day2, int32_t ___era3, const RuntimeMethod* method)
{
{
int32_t L_0 = ___year0;
int32_t L_1 = ___month1;
int32_t L_2 = ___era3;
bool L_3 = VirtFuncInvoker3< bool, int32_t, int32_t, int32_t >::Invoke(24 /* System.Boolean System.Globalization.Calendar::IsValidMonth(System.Int32,System.Int32,System.Int32) */, __this, L_0, L_1, L_2);
if (!L_3)
{
goto IL_0021;
}
}
{
int32_t L_4 = ___day2;
if ((((int32_t)L_4) < ((int32_t)1)))
{
goto IL_0021;
}
}
{
int32_t L_5 = ___day2;
int32_t L_6 = ___year0;
int32_t L_7 = ___month1;
int32_t L_8 = ___era3;
int32_t L_9 = VirtFuncInvoker3< int32_t, int32_t, int32_t, int32_t >::Invoke(13 /* System.Int32 System.Globalization.Calendar::GetDaysInMonth(System.Int32,System.Int32,System.Int32) */, __this, L_6, L_7, L_8);
return (bool)((((int32_t)((((int32_t)L_5) > ((int32_t)L_9))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_0021:
{
return (bool)0;
}
}
// System.Int32 System.Globalization.Calendar::get_TwoDigitYearMax()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Calendar_get_TwoDigitYearMax_m2CF184A889067B26BF0379B5B8802C42BA4D816B (Calendar_t3D638AEAB45F029DF47138EDA4CF9A7CBBB1C32A * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_twoDigitYearMax_2();
return L_0;
}
}
// System.Int32 System.Globalization.Calendar::ToFourDigitYear(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Calendar_ToFourDigitYear_m24F56E3C6245FA4317A17078D97AE59ADAF5C81B (Calendar_t3D638AEAB45F029DF47138EDA4CF9A7CBBB1C32A * __this, int32_t ___year0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Calendar_ToFourDigitYear_m24F56E3C6245FA4317A17078D97AE59ADAF5C81B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t G_B5_0 = 0;
int32_t G_B4_0 = 0;
int32_t G_B6_0 = 0;
int32_t G_B6_1 = 0;
{
int32_t L_0 = ___year0;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Environment_GetResourceString_m8DFF827596B5FD533D3FE56900FA095F7D674617(_stringLiteral38E3DBC7FC353425EF3A98DC8DAC6689AF5FD1BE, /*hidden argument*/NULL);
ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_2 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_mE43AFC74F5F3932913C023A04B24905E093C5005(L_2, _stringLiteral1DEDCD1168FE0A01C595FF5B7901D1C14F15F786, L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Calendar_ToFourDigitYear_m24F56E3C6245FA4317A17078D97AE59ADAF5C81B_RuntimeMethod_var);
}
IL_0019:
{
int32_t L_3 = ___year0;
if ((((int32_t)L_3) >= ((int32_t)((int32_t)100))))
{
goto IL_003e;
}
}
{
int32_t L_4 = VirtFuncInvoker0< int32_t >::Invoke(26 /* System.Int32 System.Globalization.Calendar::get_TwoDigitYearMax() */, __this);
int32_t L_5 = ___year0;
int32_t L_6 = VirtFuncInvoker0< int32_t >::Invoke(26 /* System.Int32 System.Globalization.Calendar::get_TwoDigitYearMax() */, __this);
G_B4_0 = ((int32_t)((int32_t)L_4/(int32_t)((int32_t)100)));
if ((((int32_t)L_5) > ((int32_t)((int32_t)((int32_t)L_6%(int32_t)((int32_t)100))))))
{
G_B5_0 = ((int32_t)((int32_t)L_4/(int32_t)((int32_t)100)));
goto IL_0036;
}
}
{
G_B6_0 = 0;
G_B6_1 = G_B4_0;
goto IL_0037;
}
IL_0036:
{
G_B6_0 = 1;
G_B6_1 = G_B5_0;
}
IL_0037:
{
int32_t L_7 = ___year0;
return ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)G_B6_1, (int32_t)G_B6_0)), (int32_t)((int32_t)100))), (int32_t)L_7));
}
IL_003e:
{
int32_t L_8 = ___year0;
return L_8;
}
}
// System.Int32 System.Globalization.Calendar::GetSystemTwoDigitYearSetting(System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Calendar_GetSystemTwoDigitYearSetting_mF12E6A472DAC24009E72B4B95CF451F80CCB1CD8 (int32_t ___CalID0, int32_t ___defaultYearValue1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Calendar_GetSystemTwoDigitYearSetting_mF12E6A472DAC24009E72B4B95CF451F80CCB1CD8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
int32_t L_0 = ___CalID0;
IL2CPP_RUNTIME_CLASS_INIT(CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4_il2cpp_TypeInfo_var);
int32_t L_1 = CalendarData_nativeGetTwoDigitYearMax_m1681AA3757D4C8A034E8CDBF8345C1F56F9607F9(L_0, /*hidden argument*/NULL);
V_0 = L_1;
int32_t L_2 = V_0;
if ((((int32_t)L_2) >= ((int32_t)0)))
{
goto IL_000d;
}
}
{
int32_t L_3 = ___defaultYearValue1;
V_0 = L_3;
}
IL_000d:
{
int32_t L_4 = V_0;
return L_4;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Conversion methods for marshalling of: System.Globalization.CalendarData
IL2CPP_EXTERN_C void CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4_marshal_pinvoke(const CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4& unmarshaled, CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4_marshaled_pinvoke& marshaled)
{
Exception_t* ___saShortDates_2Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'saShortDates' of type 'CalendarData'.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___saShortDates_2Exception, NULL);
}
IL2CPP_EXTERN_C void CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4_marshal_pinvoke_back(const CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4_marshaled_pinvoke& marshaled, CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4& unmarshaled)
{
Exception_t* ___saShortDates_2Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'saShortDates' of type 'CalendarData'.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___saShortDates_2Exception, NULL);
}
// Conversion method for clean up from marshalling of: System.Globalization.CalendarData
IL2CPP_EXTERN_C void CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4_marshal_pinvoke_cleanup(CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4_marshaled_pinvoke& marshaled)
{
}
// Conversion methods for marshalling of: System.Globalization.CalendarData
IL2CPP_EXTERN_C void CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4_marshal_com(const CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4& unmarshaled, CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4_marshaled_com& marshaled)
{
Exception_t* ___saShortDates_2Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'saShortDates' of type 'CalendarData'.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___saShortDates_2Exception, NULL);
}
IL2CPP_EXTERN_C void CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4_marshal_com_back(const CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4_marshaled_com& marshaled, CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4& unmarshaled)
{
Exception_t* ___saShortDates_2Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'saShortDates' of type 'CalendarData'.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___saShortDates_2Exception, NULL);
}
// Conversion method for clean up from marshalling of: System.Globalization.CalendarData
IL2CPP_EXTERN_C void CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4_marshal_com_cleanup(CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4_marshaled_com& marshaled)
{
}
// System.Void System.Globalization.CalendarData::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CalendarData__ctor_m502F39249669A06BEF8644C129322AEE5C444A9D (CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4 * __this, const RuntimeMethod* method)
{
{
__this->set_iTwoDigitYearMax_17(((int32_t)2029));
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Globalization.CalendarData::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CalendarData__cctor_m81D9318AD06EF2E6286594DD1BE2A72D07D5D8BA (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CalendarData__cctor_m81D9318AD06EF2E6286594DD1BE2A72D07D5D8BA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4 * V_0 = NULL;
{
CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4 * L_0 = (CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4 *)il2cpp_codegen_object_new(CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4_il2cpp_TypeInfo_var);
CalendarData__ctor_m502F39249669A06BEF8644C129322AEE5C444A9D(L_0, /*hidden argument*/NULL);
V_0 = L_0;
CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4 * L_1 = V_0;
NullCheck(L_1);
L_1->set_sNativeName_1(_stringLiteral1DE83F142760C720E9B94F8464E7B0938F39B348);
CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4 * L_2 = V_0;
NullCheck(L_2);
L_2->set_iTwoDigitYearMax_17(((int32_t)2029));
CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4 * L_3 = V_0;
NullCheck(L_3);
L_3->set_iCurrentEra_18(1);
CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4 * L_4 = V_0;
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_5 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)SZArrayNew(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_6 = L_5;
NullCheck(L_6);
ArrayElementTypeCheck (L_6, _stringLiteralDF1F418CE84363901A6E59A9908750663EB1655F);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteralDF1F418CE84363901A6E59A9908750663EB1655F);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_7 = L_6;
NullCheck(L_7);
ArrayElementTypeCheck (L_7, _stringLiteral7BE89227A0BBC17012796DD27BB68B0D5FB2D35E);
(L_7)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral7BE89227A0BBC17012796DD27BB68B0D5FB2D35E);
NullCheck(L_4);
L_4->set_saShortDates_2(L_7);
CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4 * L_8 = V_0;
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_9 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)SZArrayNew(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var, (uint32_t)1);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_10 = L_9;
NullCheck(L_10);
ArrayElementTypeCheck (L_10, _stringLiteralA72868781652C6F635459ABB9A9397C8A7FE4A07);
(L_10)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteralA72868781652C6F635459ABB9A9397C8A7FE4A07);
NullCheck(L_8);
L_8->set_saLongDates_4(L_10);
CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4 * L_11 = V_0;
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_12 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)SZArrayNew(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var, (uint32_t)1);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_13 = L_12;
NullCheck(L_13);
ArrayElementTypeCheck (L_13, _stringLiteralA1E66CCF76473906B7C3C6EFF6389959F5A35C31);
(L_13)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteralA1E66CCF76473906B7C3C6EFF6389959F5A35C31);
NullCheck(L_11);
L_11->set_saYearMonths_3(L_13);
CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4 * L_14 = V_0;
NullCheck(L_14);
L_14->set_sMonthDay_5(_stringLiteralFC0D95D2A79064B853A47BF840D6D134FC877F9F);
CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4 * L_15 = V_0;
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_16 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)SZArrayNew(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var, (uint32_t)1);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_17 = L_16;
NullCheck(L_17);
ArrayElementTypeCheck (L_17, _stringLiteral6FAA69737248D54232C9439E0232531518229AB0);
(L_17)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral6FAA69737248D54232C9439E0232531518229AB0);
NullCheck(L_15);
L_15->set_saEraNames_6(L_17);
CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4 * L_18 = V_0;
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_19 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)SZArrayNew(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var, (uint32_t)1);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_20 = L_19;
NullCheck(L_20);
ArrayElementTypeCheck (L_20, _stringLiteralF59CBCDB97B7386D817652C197B0F6C77423B16C);
(L_20)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteralF59CBCDB97B7386D817652C197B0F6C77423B16C);
NullCheck(L_18);
L_18->set_saAbbrevEraNames_7(L_20);
CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4 * L_21 = V_0;
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_22 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)SZArrayNew(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var, (uint32_t)1);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_23 = L_22;
NullCheck(L_23);
ArrayElementTypeCheck (L_23, _stringLiteralF59CBCDB97B7386D817652C197B0F6C77423B16C);
(L_23)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteralF59CBCDB97B7386D817652C197B0F6C77423B16C);
NullCheck(L_21);
L_21->set_saAbbrevEnglishEraNames_8(L_23);
CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4 * L_24 = V_0;
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_25 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)SZArrayNew(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var, (uint32_t)7);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_26 = L_25;
NullCheck(L_26);
ArrayElementTypeCheck (L_26, _stringLiteral74DD10D97D53CB0F2EF9CC344F0E4FA1D2C6ADE5);
(L_26)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral74DD10D97D53CB0F2EF9CC344F0E4FA1D2C6ADE5);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_27 = L_26;
NullCheck(L_27);
ArrayElementTypeCheck (L_27, _stringLiteralF95A691930F316715992F54F1FFE42EA0A08AB88);
(L_27)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteralF95A691930F316715992F54F1FFE42EA0A08AB88);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_28 = L_27;
NullCheck(L_28);
ArrayElementTypeCheck (L_28, _stringLiteral180ABD02DC03A9EB8A130CD469441B38082AE000);
(L_28)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)_stringLiteral180ABD02DC03A9EB8A130CD469441B38082AE000);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_29 = L_28;
NullCheck(L_29);
ArrayElementTypeCheck (L_29, _stringLiteralD565E3901235294A6A19C625B8A232DBED8DAC34);
(L_29)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)_stringLiteralD565E3901235294A6A19C625B8A232DBED8DAC34);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_30 = L_29;
NullCheck(L_30);
ArrayElementTypeCheck (L_30, _stringLiteral245CEF01D16A6B24F94091A25ACF49DF211D7851);
(L_30)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)_stringLiteral245CEF01D16A6B24F94091A25ACF49DF211D7851);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_31 = L_30;
NullCheck(L_31);
ArrayElementTypeCheck (L_31, _stringLiteral5D0CA6B90F85D9B6B0F1EC401EB9F17237309DC4);
(L_31)->SetAt(static_cast<il2cpp_array_size_t>(5), (String_t*)_stringLiteral5D0CA6B90F85D9B6B0F1EC401EB9F17237309DC4);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_32 = L_31;
NullCheck(L_32);
ArrayElementTypeCheck (L_32, _stringLiteralA50D93AD9EE5FCEB95FF556A60A2EE2A7564DB1A);
(L_32)->SetAt(static_cast<il2cpp_array_size_t>(6), (String_t*)_stringLiteralA50D93AD9EE5FCEB95FF556A60A2EE2A7564DB1A);
NullCheck(L_24);
L_24->set_saDayNames_9(L_32);
CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4 * L_33 = V_0;
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_34 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)SZArrayNew(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var, (uint32_t)7);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_35 = L_34;
NullCheck(L_35);
ArrayElementTypeCheck (L_35, _stringLiteralE90B3FD05322B9BC016B260EB1335370FDAE2F8D);
(L_35)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteralE90B3FD05322B9BC016B260EB1335370FDAE2F8D);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_36 = L_35;
NullCheck(L_36);
ArrayElementTypeCheck (L_36, _stringLiteralDEB6151726FE2B58FB330790F41216FEC24DB4CF);
(L_36)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteralDEB6151726FE2B58FB330790F41216FEC24DB4CF);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_37 = L_36;
NullCheck(L_37);
ArrayElementTypeCheck (L_37, _stringLiteralECFC3D8CBE5756160E6DCB9B79730BA17B0E2A2E);
(L_37)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)_stringLiteralECFC3D8CBE5756160E6DCB9B79730BA17B0E2A2E);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_38 = L_37;
NullCheck(L_38);
ArrayElementTypeCheck (L_38, _stringLiteral941110A9D02213F4971B8FCCE11F9AA67540A804);
(L_38)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)_stringLiteral941110A9D02213F4971B8FCCE11F9AA67540A804);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_39 = L_38;
NullCheck(L_39);
ArrayElementTypeCheck (L_39, _stringLiteralA3DF8D57E7B23E8545369C5AA68E5EC834890EFA);
(L_39)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)_stringLiteralA3DF8D57E7B23E8545369C5AA68E5EC834890EFA);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_40 = L_39;
NullCheck(L_40);
ArrayElementTypeCheck (L_40, _stringLiteral421946A468AE72240EF7B18CB3D945907D863146);
(L_40)->SetAt(static_cast<il2cpp_array_size_t>(5), (String_t*)_stringLiteral421946A468AE72240EF7B18CB3D945907D863146);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_41 = L_40;
NullCheck(L_41);
ArrayElementTypeCheck (L_41, _stringLiteral505456B5574CB90C2805A00F62F817D3448B79E5);
(L_41)->SetAt(static_cast<il2cpp_array_size_t>(6), (String_t*)_stringLiteral505456B5574CB90C2805A00F62F817D3448B79E5);
NullCheck(L_33);
L_33->set_saAbbrevDayNames_10(L_41);
CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4 * L_42 = V_0;
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_43 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)SZArrayNew(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var, (uint32_t)7);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_44 = L_43;
NullCheck(L_44);
ArrayElementTypeCheck (L_44, _stringLiteralDDD498ED034BB375659C07A77BF48AC0FDC1E8F2);
(L_44)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteralDDD498ED034BB375659C07A77BF48AC0FDC1E8F2);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_45 = L_44;
NullCheck(L_45);
ArrayElementTypeCheck (L_45, _stringLiteral6775028FD44745B07D83DC088697F56152E25D33);
(L_45)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral6775028FD44745B07D83DC088697F56152E25D33);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_46 = L_45;
NullCheck(L_46);
ArrayElementTypeCheck (L_46, _stringLiteral07C65E0263E8C89F4054B191C34729C2341AF387);
(L_46)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)_stringLiteral07C65E0263E8C89F4054B191C34729C2341AF387);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_47 = L_46;
NullCheck(L_47);
ArrayElementTypeCheck (L_47, _stringLiteral7F7371C6D16A84530B0AEE2259FBCF944A35C392);
(L_47)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)_stringLiteral7F7371C6D16A84530B0AEE2259FBCF944A35C392);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_48 = L_47;
NullCheck(L_48);
ArrayElementTypeCheck (L_48, _stringLiteral9057DF3C7D220194368FF3C0F5478822A33D43C2);
(L_48)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)_stringLiteral9057DF3C7D220194368FF3C0F5478822A33D43C2);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_49 = L_48;
NullCheck(L_49);
ArrayElementTypeCheck (L_49, _stringLiteralF10CBFB1465C4A75BADE2EF50F42177A2191723B);
(L_49)->SetAt(static_cast<il2cpp_array_size_t>(5), (String_t*)_stringLiteralF10CBFB1465C4A75BADE2EF50F42177A2191723B);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_50 = L_49;
NullCheck(L_50);
ArrayElementTypeCheck (L_50, _stringLiteral201EE4375A9E01A380464D54C52CD60D7844F5B3);
(L_50)->SetAt(static_cast<il2cpp_array_size_t>(6), (String_t*)_stringLiteral201EE4375A9E01A380464D54C52CD60D7844F5B3);
NullCheck(L_42);
L_42->set_saSuperShortDayNames_11(L_50);
CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4 * L_51 = V_0;
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_52 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)SZArrayNew(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var, (uint32_t)((int32_t)13));
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_53 = L_52;
NullCheck(L_53);
ArrayElementTypeCheck (L_53, _stringLiteral118B7EF5534C6D8FC0C604519BCCF879FEBC10D4);
(L_53)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral118B7EF5534C6D8FC0C604519BCCF879FEBC10D4);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_54 = L_53;
NullCheck(L_54);
ArrayElementTypeCheck (L_54, _stringLiteral996BC64180ACE658CBBD000606F4642C8A305B83);
(L_54)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral996BC64180ACE658CBBD000606F4642C8A305B83);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_55 = L_54;
NullCheck(L_55);
ArrayElementTypeCheck (L_55, _stringLiteral2DC5EDCAC37BBBCABC85B64AC9D760F28715A646);
(L_55)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)_stringLiteral2DC5EDCAC37BBBCABC85B64AC9D760F28715A646);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_56 = L_55;
NullCheck(L_56);
ArrayElementTypeCheck (L_56, _stringLiteralADEDA899B28A6840973C52FCE9F2853EB9FFCA2D);
(L_56)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)_stringLiteralADEDA899B28A6840973C52FCE9F2853EB9FFCA2D);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_57 = L_56;
NullCheck(L_57);
ArrayElementTypeCheck (L_57, _stringLiteral9EE57D52543835D23EEE1E2B0B48884E070F1F2E);
(L_57)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)_stringLiteral9EE57D52543835D23EEE1E2B0B48884E070F1F2E);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_58 = L_57;
NullCheck(L_58);
ArrayElementTypeCheck (L_58, _stringLiteralB3BA12068BD3071A73C63693CDF05EA94DE8C795);
(L_58)->SetAt(static_cast<il2cpp_array_size_t>(5), (String_t*)_stringLiteralB3BA12068BD3071A73C63693CDF05EA94DE8C795);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_59 = L_58;
NullCheck(L_59);
ArrayElementTypeCheck (L_59, _stringLiteral5BE7BD24523F2E62348601708F0511CE5DAFA28D);
(L_59)->SetAt(static_cast<il2cpp_array_size_t>(6), (String_t*)_stringLiteral5BE7BD24523F2E62348601708F0511CE5DAFA28D);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_60 = L_59;
NullCheck(L_60);
ArrayElementTypeCheck (L_60, _stringLiteral53720F3359683C225C1811C323C518BF79B9C36B);
(L_60)->SetAt(static_cast<il2cpp_array_size_t>(7), (String_t*)_stringLiteral53720F3359683C225C1811C323C518BF79B9C36B);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_61 = L_60;
NullCheck(L_61);
ArrayElementTypeCheck (L_61, _stringLiteralF5E1D066B4A00962BB3ACC2B4EDEF1DB99FE1E0A);
(L_61)->SetAt(static_cast<il2cpp_array_size_t>(8), (String_t*)_stringLiteralF5E1D066B4A00962BB3ACC2B4EDEF1DB99FE1E0A);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_62 = L_61;
NullCheck(L_62);
ArrayElementTypeCheck (L_62, _stringLiteral9542ADC5ED3F05F0B5758A7F97D8963E05354990);
(L_62)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)9)), (String_t*)_stringLiteral9542ADC5ED3F05F0B5758A7F97D8963E05354990);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_63 = L_62;
NullCheck(L_63);
ArrayElementTypeCheck (L_63, _stringLiteral41CFBFEBC2609F9B3023E74B5DBE88079E7A9E8A);
(L_63)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)10)), (String_t*)_stringLiteral41CFBFEBC2609F9B3023E74B5DBE88079E7A9E8A);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_64 = L_63;
NullCheck(L_64);
ArrayElementTypeCheck (L_64, _stringLiteral85E5220174C73ACFFFBBA9BBC35A341F1A794FA7);
(L_64)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)11)), (String_t*)_stringLiteral85E5220174C73ACFFFBBA9BBC35A341F1A794FA7);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_65 = L_64;
String_t* L_66 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5();
NullCheck(L_65);
ArrayElementTypeCheck (L_65, L_66);
(L_65)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)12)), (String_t*)L_66);
NullCheck(L_51);
L_51->set_saMonthNames_12(L_65);
CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4 * L_67 = V_0;
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_68 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)SZArrayNew(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var, (uint32_t)((int32_t)13));
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_69 = L_68;
NullCheck(L_69);
ArrayElementTypeCheck (L_69, _stringLiteral1479E9D25132D58E06C7816F09642D0A781F369D);
(L_69)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral1479E9D25132D58E06C7816F09642D0A781F369D);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_70 = L_69;
NullCheck(L_70);
ArrayElementTypeCheck (L_70, _stringLiteral1BF8D8D253960D24F13B509B7C684DE1748EEB9A);
(L_70)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral1BF8D8D253960D24F13B509B7C684DE1748EEB9A);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_71 = L_70;
NullCheck(L_71);
ArrayElementTypeCheck (L_71, _stringLiteral4C00FC698CF2CAB7258B33131C419880B701D552);
(L_71)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)_stringLiteral4C00FC698CF2CAB7258B33131C419880B701D552);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_72 = L_71;
NullCheck(L_72);
ArrayElementTypeCheck (L_72, _stringLiteralC7C14D71A1F56C44B9675A7669830348936D8FAA);
(L_72)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)_stringLiteralC7C14D71A1F56C44B9675A7669830348936D8FAA);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_73 = L_72;
NullCheck(L_73);
ArrayElementTypeCheck (L_73, _stringLiteral9EE57D52543835D23EEE1E2B0B48884E070F1F2E);
(L_73)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)_stringLiteral9EE57D52543835D23EEE1E2B0B48884E070F1F2E);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_74 = L_73;
NullCheck(L_74);
ArrayElementTypeCheck (L_74, _stringLiteral4DD1381E4145425E1CF5C6C3E3BCD0EC73DE8431);
(L_74)->SetAt(static_cast<il2cpp_array_size_t>(5), (String_t*)_stringLiteral4DD1381E4145425E1CF5C6C3E3BCD0EC73DE8431);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_75 = L_74;
NullCheck(L_75);
ArrayElementTypeCheck (L_75, _stringLiteral709EE1E1FB1C7810981A84E6BC5DFA3C36544401);
(L_75)->SetAt(static_cast<il2cpp_array_size_t>(6), (String_t*)_stringLiteral709EE1E1FB1C7810981A84E6BC5DFA3C36544401);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_76 = L_75;
NullCheck(L_76);
ArrayElementTypeCheck (L_76, _stringLiteral90A5392A183E89DBE999F126162F8DFCB0D89D7E);
(L_76)->SetAt(static_cast<il2cpp_array_size_t>(7), (String_t*)_stringLiteral90A5392A183E89DBE999F126162F8DFCB0D89D7E);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_77 = L_76;
NullCheck(L_77);
ArrayElementTypeCheck (L_77, _stringLiteral4EA9DD5945948A05CFAA3089FB39E5356765948B);
(L_77)->SetAt(static_cast<il2cpp_array_size_t>(8), (String_t*)_stringLiteral4EA9DD5945948A05CFAA3089FB39E5356765948B);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_78 = L_77;
NullCheck(L_78);
ArrayElementTypeCheck (L_78, _stringLiteralCD72E754EFE3E1665E07A8C232230015A25B5E3E);
(L_78)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)9)), (String_t*)_stringLiteralCD72E754EFE3E1665E07A8C232230015A25B5E3E);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_79 = L_78;
NullCheck(L_79);
ArrayElementTypeCheck (L_79, _stringLiteral4F215A76D6AA3EECEB0B27292DBEA57631110BCC);
(L_79)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)10)), (String_t*)_stringLiteral4F215A76D6AA3EECEB0B27292DBEA57631110BCC);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_80 = L_79;
NullCheck(L_80);
ArrayElementTypeCheck (L_80, _stringLiteralBD28F0EF55CF843B2EC91B524FC8E2392F227EAB);
(L_80)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)11)), (String_t*)_stringLiteralBD28F0EF55CF843B2EC91B524FC8E2392F227EAB);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_81 = L_80;
String_t* L_82 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5();
NullCheck(L_81);
ArrayElementTypeCheck (L_81, L_82);
(L_81)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)12)), (String_t*)L_82);
NullCheck(L_67);
L_67->set_saAbbrevMonthNames_13(L_81);
CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4 * L_83 = V_0;
CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4 * L_84 = V_0;
NullCheck(L_84);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_85 = L_84->get_saMonthNames_12();
NullCheck(L_83);
L_83->set_saMonthGenitiveNames_14(L_85);
CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4 * L_86 = V_0;
CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4 * L_87 = V_0;
NullCheck(L_87);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_88 = L_87->get_saAbbrevMonthNames_13();
NullCheck(L_86);
L_86->set_saAbbrevMonthGenitiveNames_15(L_88);
CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4 * L_89 = V_0;
CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4 * L_90 = V_0;
NullCheck(L_90);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_91 = L_90->get_saMonthNames_12();
NullCheck(L_89);
L_89->set_saLeapYearMonthNames_16(L_91);
CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4 * L_92 = V_0;
NullCheck(L_92);
L_92->set_bUseUserOverrides_19((bool)0);
CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4 * L_93 = V_0;
((CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4_StaticFields*)il2cpp_codegen_static_fields_for(CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4_il2cpp_TypeInfo_var))->set_Invariant_20(L_93);
return;
}
}
// System.Void System.Globalization.CalendarData::.ctor(System.String,System.Int32,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CalendarData__ctor_m305E27F818FF3CA1939158C37AEA5E944C9D5577 (CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4 * __this, String_t* ___localeName0, int32_t ___calendarId1, bool ___bUseUserOverrides2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CalendarData__ctor_m305E27F818FF3CA1939158C37AEA5E944C9D5577_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
__this->set_iTwoDigitYearMax_17(((int32_t)2029));
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL);
bool L_0 = ___bUseUserOverrides2;
__this->set_bUseUserOverrides_19(L_0);
String_t* L_1 = ___localeName0;
int32_t L_2 = ___calendarId1;
IL2CPP_RUNTIME_CLASS_INIT(CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4_il2cpp_TypeInfo_var);
bool L_3 = CalendarData_nativeGetCalendarData_mC4AE4E642FE8DBBEE72B9AF5FC65F8AA0CB535FC(__this, L_1, L_2, /*hidden argument*/NULL);
if (L_3)
{
goto IL_0158;
}
}
{
String_t* L_4 = __this->get_sNativeName_1();
if (L_4)
{
goto IL_0038;
}
}
{
String_t* L_5 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5();
__this->set_sNativeName_1(L_5);
}
IL_0038:
{
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_6 = __this->get_saShortDates_2();
if (L_6)
{
goto IL_0050;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4_il2cpp_TypeInfo_var);
CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4 * L_7 = ((CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4_StaticFields*)il2cpp_codegen_static_fields_for(CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4_il2cpp_TypeInfo_var))->get_Invariant_20();
NullCheck(L_7);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_8 = L_7->get_saShortDates_2();
__this->set_saShortDates_2(L_8);
}
IL_0050:
{
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_9 = __this->get_saYearMonths_3();
if (L_9)
{
goto IL_0068;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4_il2cpp_TypeInfo_var);
CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4 * L_10 = ((CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4_StaticFields*)il2cpp_codegen_static_fields_for(CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4_il2cpp_TypeInfo_var))->get_Invariant_20();
NullCheck(L_10);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_11 = L_10->get_saYearMonths_3();
__this->set_saYearMonths_3(L_11);
}
IL_0068:
{
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_12 = __this->get_saLongDates_4();
if (L_12)
{
goto IL_0080;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4_il2cpp_TypeInfo_var);
CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4 * L_13 = ((CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4_StaticFields*)il2cpp_codegen_static_fields_for(CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4_il2cpp_TypeInfo_var))->get_Invariant_20();
NullCheck(L_13);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_14 = L_13->get_saLongDates_4();
__this->set_saLongDates_4(L_14);
}
IL_0080:
{
String_t* L_15 = __this->get_sMonthDay_5();
if (L_15)
{
goto IL_0098;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4_il2cpp_TypeInfo_var);
CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4 * L_16 = ((CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4_StaticFields*)il2cpp_codegen_static_fields_for(CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4_il2cpp_TypeInfo_var))->get_Invariant_20();
NullCheck(L_16);
String_t* L_17 = L_16->get_sMonthDay_5();
__this->set_sMonthDay_5(L_17);
}
IL_0098:
{
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_18 = __this->get_saEraNames_6();
if (L_18)
{
goto IL_00b0;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4_il2cpp_TypeInfo_var);
CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4 * L_19 = ((CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4_StaticFields*)il2cpp_codegen_static_fields_for(CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4_il2cpp_TypeInfo_var))->get_Invariant_20();
NullCheck(L_19);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_20 = L_19->get_saEraNames_6();
__this->set_saEraNames_6(L_20);
}
IL_00b0:
{
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_21 = __this->get_saAbbrevEraNames_7();
if (L_21)
{
goto IL_00c8;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4_il2cpp_TypeInfo_var);
CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4 * L_22 = ((CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4_StaticFields*)il2cpp_codegen_static_fields_for(CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4_il2cpp_TypeInfo_var))->get_Invariant_20();
NullCheck(L_22);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_23 = L_22->get_saAbbrevEraNames_7();
__this->set_saAbbrevEraNames_7(L_23);
}
IL_00c8:
{
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_24 = __this->get_saAbbrevEnglishEraNames_8();
if (L_24)
{
goto IL_00e0;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4_il2cpp_TypeInfo_var);
CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4 * L_25 = ((CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4_StaticFields*)il2cpp_codegen_static_fields_for(CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4_il2cpp_TypeInfo_var))->get_Invariant_20();
NullCheck(L_25);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_26 = L_25->get_saAbbrevEnglishEraNames_8();
__this->set_saAbbrevEnglishEraNames_8(L_26);
}
IL_00e0:
{
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_27 = __this->get_saDayNames_9();
if (L_27)
{
goto IL_00f8;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4_il2cpp_TypeInfo_var);
CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4 * L_28 = ((CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4_StaticFields*)il2cpp_codegen_static_fields_for(CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4_il2cpp_TypeInfo_var))->get_Invariant_20();
NullCheck(L_28);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_29 = L_28->get_saDayNames_9();
__this->set_saDayNames_9(L_29);
}
IL_00f8:
{
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_30 = __this->get_saAbbrevDayNames_10();
if (L_30)
{
goto IL_0110;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4_il2cpp_TypeInfo_var);
CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4 * L_31 = ((CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4_StaticFields*)il2cpp_codegen_static_fields_for(CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4_il2cpp_TypeInfo_var))->get_Invariant_20();
NullCheck(L_31);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_32 = L_31->get_saAbbrevDayNames_10();
__this->set_saAbbrevDayNames_10(L_32);
}
IL_0110:
{
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_33 = __this->get_saSuperShortDayNames_11();
if (L_33)
{
goto IL_0128;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4_il2cpp_TypeInfo_var);
CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4 * L_34 = ((CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4_StaticFields*)il2cpp_codegen_static_fields_for(CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4_il2cpp_TypeInfo_var))->get_Invariant_20();
NullCheck(L_34);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_35 = L_34->get_saSuperShortDayNames_11();
__this->set_saSuperShortDayNames_11(L_35);
}
IL_0128:
{
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_36 = __this->get_saMonthNames_12();
if (L_36)
{
goto IL_0140;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4_il2cpp_TypeInfo_var);
CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4 * L_37 = ((CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4_StaticFields*)il2cpp_codegen_static_fields_for(CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4_il2cpp_TypeInfo_var))->get_Invariant_20();
NullCheck(L_37);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_38 = L_37->get_saMonthNames_12();
__this->set_saMonthNames_12(L_38);
}
IL_0140:
{
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_39 = __this->get_saAbbrevMonthNames_13();
if (L_39)
{
goto IL_0158;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4_il2cpp_TypeInfo_var);
CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4 * L_40 = ((CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4_StaticFields*)il2cpp_codegen_static_fields_for(CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4_il2cpp_TypeInfo_var))->get_Invariant_20();
NullCheck(L_40);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_41 = L_40->get_saAbbrevMonthNames_13();
__this->set_saAbbrevMonthNames_13(L_41);
}
IL_0158:
{
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_42 = __this->get_saShortDates_2();
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_43 = CultureData_ReescapeWin32Strings_m2BC34824C7541A843F99E96B0E6462766805C409(L_42, /*hidden argument*/NULL);
__this->set_saShortDates_2(L_43);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_44 = __this->get_saLongDates_4();
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_45 = CultureData_ReescapeWin32Strings_m2BC34824C7541A843F99E96B0E6462766805C409(L_44, /*hidden argument*/NULL);
__this->set_saLongDates_4(L_45);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_46 = __this->get_saYearMonths_3();
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_47 = CultureData_ReescapeWin32Strings_m2BC34824C7541A843F99E96B0E6462766805C409(L_46, /*hidden argument*/NULL);
__this->set_saYearMonths_3(L_47);
String_t* L_48 = __this->get_sMonthDay_5();
String_t* L_49 = CultureData_ReescapeWin32String_mF75AC1587EF582BF36E66CEE5D4273FDD10A436A(L_48, /*hidden argument*/NULL);
__this->set_sMonthDay_5(L_49);
int32_t L_50 = ___calendarId1;
if ((!(((uint32_t)(((int32_t)((uint16_t)L_50)))) == ((uint32_t)4))))
{
goto IL_01c0;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var);
bool L_51 = ((CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_StaticFields*)il2cpp_codegen_static_fields_for(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var))->get_IsTaiwanSku_37();
if (!L_51)
{
goto IL_01b5;
}
}
{
__this->set_sNativeName_1(_stringLiteralA9C9EAF2B321FB535896193237050E1B326F1ADE);
goto IL_01c0;
}
IL_01b5:
{
String_t* L_52 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5();
__this->set_sNativeName_1(L_52);
}
IL_01c0:
{
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_53 = __this->get_saMonthGenitiveNames_14();
if (!L_53)
{
goto IL_01d7;
}
}
{
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_54 = __this->get_saMonthGenitiveNames_14();
NullCheck(L_54);
int32_t L_55 = 0;
String_t* L_56 = (L_54)->GetAt(static_cast<il2cpp_array_size_t>(L_55));
bool L_57 = String_IsNullOrEmpty_m9AFBB5335B441B94E884B8A9D4A27AD60E3D7F7C(L_56, /*hidden argument*/NULL);
if (!L_57)
{
goto IL_01e3;
}
}
IL_01d7:
{
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_58 = __this->get_saMonthNames_12();
__this->set_saMonthGenitiveNames_14(L_58);
}
IL_01e3:
{
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_59 = __this->get_saAbbrevMonthGenitiveNames_15();
if (!L_59)
{
goto IL_01fa;
}
}
{
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_60 = __this->get_saAbbrevMonthGenitiveNames_15();
NullCheck(L_60);
int32_t L_61 = 0;
String_t* L_62 = (L_60)->GetAt(static_cast<il2cpp_array_size_t>(L_61));
bool L_63 = String_IsNullOrEmpty_m9AFBB5335B441B94E884B8A9D4A27AD60E3D7F7C(L_62, /*hidden argument*/NULL);
if (!L_63)
{
goto IL_0206;
}
}
IL_01fa:
{
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_64 = __this->get_saAbbrevMonthNames_13();
__this->set_saAbbrevMonthGenitiveNames_15(L_64);
}
IL_0206:
{
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_65 = __this->get_saLeapYearMonthNames_16();
if (!L_65)
{
goto IL_021d;
}
}
{
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_66 = __this->get_saLeapYearMonthNames_16();
NullCheck(L_66);
int32_t L_67 = 0;
String_t* L_68 = (L_66)->GetAt(static_cast<il2cpp_array_size_t>(L_67));
bool L_69 = String_IsNullOrEmpty_m9AFBB5335B441B94E884B8A9D4A27AD60E3D7F7C(L_68, /*hidden argument*/NULL);
if (!L_69)
{
goto IL_0229;
}
}
IL_021d:
{
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_70 = __this->get_saMonthNames_12();
__this->set_saLeapYearMonthNames_16(L_70);
}
IL_0229:
{
String_t* L_71 = ___localeName0;
int32_t L_72 = ___calendarId1;
CalendarData_InitializeEraNames_m2DFE9DF5291C6F5B046741E52092E622B00784FC(__this, L_71, L_72, /*hidden argument*/NULL);
String_t* L_73 = ___localeName0;
int32_t L_74 = ___calendarId1;
CalendarData_InitializeAbbreviatedEraNames_m6B79BD851F7313E96F487F2C5AAFB0EF88E98EA7(__this, L_73, L_74, /*hidden argument*/NULL);
int32_t L_75 = ___calendarId1;
if ((!(((uint32_t)L_75) == ((uint32_t)3))))
{
goto IL_024a;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(JapaneseCalendar_t9B3E6C121CD0B742AC6413D33DE394DE3E3C6360_il2cpp_TypeInfo_var);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_76 = JapaneseCalendar_EnglishEraNames_m047F571AE172163CCA38508F4F9F756B6585D6A4(/*hidden argument*/NULL);
__this->set_saAbbrevEnglishEraNames_8(L_76);
goto IL_025e;
}
IL_024a:
{
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_77 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)SZArrayNew(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var, (uint32_t)1);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_78 = L_77;
NullCheck(L_78);
ArrayElementTypeCheck (L_78, _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709);
(L_78)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709);
__this->set_saAbbrevEnglishEraNames_8(L_78);
}
IL_025e:
{
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_79 = __this->get_saEraNames_6();
NullCheck(L_79);
__this->set_iCurrentEra_18((((int32_t)((int32_t)(((RuntimeArray*)L_79)->max_length)))));
return;
}
}
// System.Void System.Globalization.CalendarData::InitializeEraNames(System.String,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CalendarData_InitializeEraNames_m2DFE9DF5291C6F5B046741E52092E622B00784FC (CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4 * __this, String_t* ___localeName0, int32_t ___calendarId1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CalendarData_InitializeEraNames_m2DFE9DF5291C6F5B046741E52092E622B00784FC_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
uint16_t V_0 = 0;
{
int32_t L_0 = ___calendarId1;
V_0 = (((int32_t)((uint16_t)L_0)));
uint16_t L_1 = V_0;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_1, (int32_t)1)))
{
case 0:
{
goto IL_006c;
}
case 1:
{
goto IL_00a4;
}
case 2:
{
goto IL_018a;
}
case 3:
{
goto IL_012f;
}
case 4:
{
goto IL_0160;
}
case 5:
{
goto IL_00ce;
}
case 6:
{
goto IL_0175;
}
case 7:
{
goto IL_00b9;
}
case 8:
{
goto IL_011a;
}
case 9:
{
goto IL_0105;
}
case 10:
{
goto IL_0105;
}
case 11:
{
goto IL_0105;
}
case 12:
{
goto IL_00a4;
}
case 13:
{
goto IL_018a;
}
case 14:
{
goto IL_01cb;
}
case 15:
{
goto IL_01cb;
}
case 16:
{
goto IL_01cb;
}
case 17:
{
goto IL_01cb;
}
case 18:
{
goto IL_01cb;
}
case 19:
{
goto IL_01cb;
}
case 20:
{
goto IL_01cb;
}
case 21:
{
goto IL_0196;
}
case 22:
{
goto IL_00ce;
}
}
}
{
goto IL_01cb;
}
IL_006c:
{
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_2 = __this->get_saEraNames_6();
if (!L_2)
{
goto IL_008f;
}
}
{
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_3 = __this->get_saEraNames_6();
NullCheck(L_3);
if (!(((RuntimeArray*)L_3)->max_length))
{
goto IL_008f;
}
}
{
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_4 = __this->get_saEraNames_6();
NullCheck(L_4);
int32_t L_5 = 0;
String_t* L_6 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
bool L_7 = String_IsNullOrEmpty_m9AFBB5335B441B94E884B8A9D4A27AD60E3D7F7C(L_6, /*hidden argument*/NULL);
if (!L_7)
{
goto IL_01db;
}
}
IL_008f:
{
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_8 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)SZArrayNew(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var, (uint32_t)1);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_9 = L_8;
NullCheck(L_9);
ArrayElementTypeCheck (L_9, _stringLiteral6FAA69737248D54232C9439E0232531518229AB0);
(L_9)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral6FAA69737248D54232C9439E0232531518229AB0);
__this->set_saEraNames_6(L_9);
return;
}
IL_00a4:
{
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_10 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)SZArrayNew(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var, (uint32_t)1);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_11 = L_10;
NullCheck(L_11);
ArrayElementTypeCheck (L_11, _stringLiteral6FAA69737248D54232C9439E0232531518229AB0);
(L_11)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral6FAA69737248D54232C9439E0232531518229AB0);
__this->set_saEraNames_6(L_11);
return;
}
IL_00b9:
{
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_12 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)SZArrayNew(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var, (uint32_t)1);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_13 = L_12;
NullCheck(L_13);
ArrayElementTypeCheck (L_13, _stringLiteral08452990226EC2AD31640A0B3014BF487DF9E5EC);
(L_13)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral08452990226EC2AD31640A0B3014BF487DF9E5EC);
__this->set_saEraNames_6(L_13);
return;
}
IL_00ce:
{
String_t* L_14 = ___localeName0;
bool L_15 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_14, _stringLiteral703C3487AEE69DB9DF017E809F1B5784A3573EDD, /*hidden argument*/NULL);
if (!L_15)
{
goto IL_00f0;
}
}
{
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_16 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)SZArrayNew(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var, (uint32_t)1);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_17 = L_16;
NullCheck(L_17);
ArrayElementTypeCheck (L_17, _stringLiteralCBCEEAD2814FD2AF3A0CDF1DF5717F3CA49EAF45);
(L_17)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteralCBCEEAD2814FD2AF3A0CDF1DF5717F3CA49EAF45);
__this->set_saEraNames_6(L_17);
return;
}
IL_00f0:
{
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_18 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)SZArrayNew(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var, (uint32_t)1);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_19 = L_18;
NullCheck(L_19);
ArrayElementTypeCheck (L_19, _stringLiteralE495989835F4A362653B821A47341B10BC22289A);
(L_19)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteralE495989835F4A362653B821A47341B10BC22289A);
__this->set_saEraNames_6(L_19);
return;
}
IL_0105:
{
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_20 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)SZArrayNew(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var, (uint32_t)1);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_21 = L_20;
NullCheck(L_21);
ArrayElementTypeCheck (L_21, _stringLiteralBDC15940CAB884AEC083C2E30F425EB82D3FCD4E);
(L_21)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteralBDC15940CAB884AEC083C2E30F425EB82D3FCD4E);
__this->set_saEraNames_6(L_21);
return;
}
IL_011a:
{
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_22 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)SZArrayNew(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var, (uint32_t)1);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_23 = L_22;
NullCheck(L_23);
ArrayElementTypeCheck (L_23, _stringLiteralF8E65647F573BF4EE52C5737CABC015B3A57B37E);
(L_23)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteralF8E65647F573BF4EE52C5737CABC015B3A57B37E);
__this->set_saEraNames_6(L_23);
return;
}
IL_012f:
{
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var);
bool L_24 = ((CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_StaticFields*)il2cpp_codegen_static_fields_for(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var))->get_IsTaiwanSku_37();
if (!L_24)
{
goto IL_014b;
}
}
{
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_25 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)SZArrayNew(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var, (uint32_t)1);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_26 = L_25;
NullCheck(L_26);
ArrayElementTypeCheck (L_26, _stringLiteral2F8195E8BB521CC483F63F9A7ED0B08AEED234FA);
(L_26)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral2F8195E8BB521CC483F63F9A7ED0B08AEED234FA);
__this->set_saEraNames_6(L_26);
return;
}
IL_014b:
{
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_27 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)SZArrayNew(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var, (uint32_t)1);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_28 = L_27;
String_t* L_29 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5();
NullCheck(L_28);
ArrayElementTypeCheck (L_28, L_29);
(L_28)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)L_29);
__this->set_saEraNames_6(L_28);
return;
}
IL_0160:
{
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_30 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)SZArrayNew(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var, (uint32_t)1);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_31 = L_30;
NullCheck(L_31);
ArrayElementTypeCheck (L_31, _stringLiteral7604CE64DF0D0C88AAD5295874D8174F1A4E59F1);
(L_31)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral7604CE64DF0D0C88AAD5295874D8174F1A4E59F1);
__this->set_saEraNames_6(L_31);
return;
}
IL_0175:
{
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_32 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)SZArrayNew(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var, (uint32_t)1);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_33 = L_32;
NullCheck(L_33);
ArrayElementTypeCheck (L_33, _stringLiteralDC6D4531567379E9E727DD524E7257B4C724B383);
(L_33)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteralDC6D4531567379E9E727DD524E7257B4C724B383);
__this->set_saEraNames_6(L_33);
return;
}
IL_018a:
{
IL2CPP_RUNTIME_CLASS_INIT(JapaneseCalendar_t9B3E6C121CD0B742AC6413D33DE394DE3E3C6360_il2cpp_TypeInfo_var);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_34 = JapaneseCalendar_EraNames_mBB679264567E6E5A28F405DAFFA1E644B8B466F5(/*hidden argument*/NULL);
__this->set_saEraNames_6(L_34);
return;
}
IL_0196:
{
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_35 = __this->get_saEraNames_6();
if (!L_35)
{
goto IL_01b6;
}
}
{
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_36 = __this->get_saEraNames_6();
NullCheck(L_36);
if (!(((RuntimeArray*)L_36)->max_length))
{
goto IL_01b6;
}
}
{
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_37 = __this->get_saEraNames_6();
NullCheck(L_37);
int32_t L_38 = 0;
String_t* L_39 = (L_37)->GetAt(static_cast<il2cpp_array_size_t>(L_38));
bool L_40 = String_IsNullOrEmpty_m9AFBB5335B441B94E884B8A9D4A27AD60E3D7F7C(L_39, /*hidden argument*/NULL);
if (!L_40)
{
goto IL_01db;
}
}
IL_01b6:
{
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_41 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)SZArrayNew(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var, (uint32_t)1);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_42 = L_41;
NullCheck(L_42);
ArrayElementTypeCheck (L_42, _stringLiteralB4509A49FFFA8752252D9278F09E16BE5144DA8C);
(L_42)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteralB4509A49FFFA8752252D9278F09E16BE5144DA8C);
__this->set_saEraNames_6(L_42);
return;
}
IL_01cb:
{
IL2CPP_RUNTIME_CLASS_INIT(CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4_il2cpp_TypeInfo_var);
CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4 * L_43 = ((CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4_StaticFields*)il2cpp_codegen_static_fields_for(CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4_il2cpp_TypeInfo_var))->get_Invariant_20();
NullCheck(L_43);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_44 = L_43->get_saEraNames_6();
__this->set_saEraNames_6(L_44);
}
IL_01db:
{
return;
}
}
// System.Void System.Globalization.CalendarData::InitializeAbbreviatedEraNames(System.String,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CalendarData_InitializeAbbreviatedEraNames_m6B79BD851F7313E96F487F2C5AAFB0EF88E98EA7 (CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4 * __this, String_t* ___localeName0, int32_t ___calendarId1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CalendarData_InitializeAbbreviatedEraNames_m6B79BD851F7313E96F487F2C5AAFB0EF88E98EA7_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
uint16_t V_0 = 0;
{
int32_t L_0 = ___calendarId1;
V_0 = (((int32_t)((uint16_t)L_0)));
uint16_t L_1 = V_0;
if ((!(((uint32_t)L_1) <= ((uint32_t)((int32_t)13)))))
{
goto IL_0032;
}
}
{
uint16_t L_2 = V_0;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_2, (int32_t)1)))
{
case 0:
{
goto IL_0049;
}
case 1:
{
goto IL_0081;
}
case 2:
{
goto IL_0096;
}
case 3:
{
goto IL_00d9;
}
case 4:
{
goto IL_014b;
}
case 5:
{
goto IL_00a2;
}
}
}
{
uint16_t L_3 = V_0;
if ((((int32_t)L_3) == ((int32_t)((int32_t)13))))
{
goto IL_0081;
}
}
{
goto IL_014b;
}
IL_0032:
{
uint16_t L_4 = V_0;
if ((((int32_t)L_4) == ((int32_t)((int32_t)14))))
{
goto IL_0096;
}
}
{
uint16_t L_5 = V_0;
if ((((int32_t)L_5) == ((int32_t)((int32_t)22))))
{
goto IL_011e;
}
}
{
uint16_t L_6 = V_0;
if ((((int32_t)L_6) == ((int32_t)((int32_t)23))))
{
goto IL_00a2;
}
}
{
goto IL_014b;
}
IL_0049:
{
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_7 = __this->get_saAbbrevEraNames_7();
if (!L_7)
{
goto IL_006c;
}
}
{
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_8 = __this->get_saAbbrevEraNames_7();
NullCheck(L_8);
if (!(((RuntimeArray*)L_8)->max_length))
{
goto IL_006c;
}
}
{
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_9 = __this->get_saAbbrevEraNames_7();
NullCheck(L_9);
int32_t L_10 = 0;
String_t* L_11 = (L_9)->GetAt(static_cast<il2cpp_array_size_t>(L_10));
bool L_12 = String_IsNullOrEmpty_m9AFBB5335B441B94E884B8A9D4A27AD60E3D7F7C(L_11, /*hidden argument*/NULL);
if (!L_12)
{
goto IL_0157;
}
}
IL_006c:
{
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_13 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)SZArrayNew(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var, (uint32_t)1);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_14 = L_13;
NullCheck(L_14);
ArrayElementTypeCheck (L_14, _stringLiteralF59CBCDB97B7386D817652C197B0F6C77423B16C);
(L_14)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteralF59CBCDB97B7386D817652C197B0F6C77423B16C);
__this->set_saAbbrevEraNames_7(L_14);
return;
}
IL_0081:
{
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_15 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)SZArrayNew(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var, (uint32_t)1);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_16 = L_15;
NullCheck(L_16);
ArrayElementTypeCheck (L_16, _stringLiteralF59CBCDB97B7386D817652C197B0F6C77423B16C);
(L_16)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteralF59CBCDB97B7386D817652C197B0F6C77423B16C);
__this->set_saAbbrevEraNames_7(L_16);
return;
}
IL_0096:
{
IL2CPP_RUNTIME_CLASS_INIT(JapaneseCalendar_t9B3E6C121CD0B742AC6413D33DE394DE3E3C6360_il2cpp_TypeInfo_var);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_17 = JapaneseCalendar_AbbrevEraNames_m59797786323212AAF463A000026BDC0DBA59D894(/*hidden argument*/NULL);
__this->set_saAbbrevEraNames_7(L_17);
return;
}
IL_00a2:
{
String_t* L_18 = ___localeName0;
bool L_19 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_18, _stringLiteral703C3487AEE69DB9DF017E809F1B5784A3573EDD, /*hidden argument*/NULL);
if (!L_19)
{
goto IL_00c4;
}
}
{
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_20 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)SZArrayNew(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var, (uint32_t)1);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_21 = L_20;
NullCheck(L_21);
ArrayElementTypeCheck (L_21, _stringLiteral94C1D1D5DFBE8817002E6ACE4594F5AF62E365A2);
(L_21)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral94C1D1D5DFBE8817002E6ACE4594F5AF62E365A2);
__this->set_saAbbrevEraNames_7(L_21);
return;
}
IL_00c4:
{
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_22 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)SZArrayNew(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var, (uint32_t)1);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_23 = L_22;
NullCheck(L_23);
ArrayElementTypeCheck (L_23, _stringLiteral36AAB4FAC53A9D2E9C364A8A00F31042B32C7D37);
(L_23)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral36AAB4FAC53A9D2E9C364A8A00F31042B32C7D37);
__this->set_saAbbrevEraNames_7(L_23);
return;
}
IL_00d9:
{
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_24 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)SZArrayNew(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var, (uint32_t)1);
__this->set_saAbbrevEraNames_7(L_24);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_25 = __this->get_saEraNames_6();
NullCheck(L_25);
int32_t L_26 = 0;
String_t* L_27 = (L_25)->GetAt(static_cast<il2cpp_array_size_t>(L_26));
NullCheck(L_27);
int32_t L_28 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_27, /*hidden argument*/NULL);
if ((!(((uint32_t)L_28) == ((uint32_t)4))))
{
goto IL_010d;
}
}
{
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_29 = __this->get_saAbbrevEraNames_7();
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_30 = __this->get_saEraNames_6();
NullCheck(L_30);
int32_t L_31 = 0;
String_t* L_32 = (L_30)->GetAt(static_cast<il2cpp_array_size_t>(L_31));
NullCheck(L_32);
String_t* L_33 = String_Substring_m7A39A2AC0893AE940CF4CEC841326D56FFB9D86B(L_32, 2, 2, /*hidden argument*/NULL);
NullCheck(L_29);
ArrayElementTypeCheck (L_29, L_33);
(L_29)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)L_33);
return;
}
IL_010d:
{
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_34 = __this->get_saAbbrevEraNames_7();
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_35 = __this->get_saEraNames_6();
NullCheck(L_35);
int32_t L_36 = 0;
String_t* L_37 = (L_35)->GetAt(static_cast<il2cpp_array_size_t>(L_36));
NullCheck(L_34);
ArrayElementTypeCheck (L_34, L_37);
(L_34)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)L_37);
return;
}
IL_011e:
{
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_38 = __this->get_saAbbrevEraNames_7();
if (!L_38)
{
goto IL_013e;
}
}
{
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_39 = __this->get_saAbbrevEraNames_7();
NullCheck(L_39);
if (!(((RuntimeArray*)L_39)->max_length))
{
goto IL_013e;
}
}
{
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_40 = __this->get_saAbbrevEraNames_7();
NullCheck(L_40);
int32_t L_41 = 0;
String_t* L_42 = (L_40)->GetAt(static_cast<il2cpp_array_size_t>(L_41));
bool L_43 = String_IsNullOrEmpty_m9AFBB5335B441B94E884B8A9D4A27AD60E3D7F7C(L_42, /*hidden argument*/NULL);
if (!L_43)
{
goto IL_0157;
}
}
IL_013e:
{
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_44 = __this->get_saEraNames_6();
__this->set_saAbbrevEraNames_7(L_44);
return;
}
IL_014b:
{
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_45 = __this->get_saEraNames_6();
__this->set_saAbbrevEraNames_7(L_45);
}
IL_0157:
{
return;
}
}
// System.Globalization.CalendarData System.Globalization.CalendarData::GetCalendarData(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4 * CalendarData_GetCalendarData_mDDDDDD6CFF169145E762928778E65C8335CB4FE0 (int32_t ___calendarId0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CalendarData_GetCalendarData_mDDDDDD6CFF169145E762928778E65C8335CB4FE0_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___calendarId0;
IL2CPP_RUNTIME_CLASS_INIT(CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4_il2cpp_TypeInfo_var);
String_t* L_1 = CalendarData_CalendarIdToCultureName_mD748CB6E9AEA2E8F6EAB566CCD474F409C9B5CC4(L_0, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var);
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_2 = CultureInfo_GetCultureInfo_m757F4A8A690B1CDA1A498EBD2ED031B7A76546F3(L_1, /*hidden argument*/NULL);
NullCheck(L_2);
CultureData_t53CDF1C5F789A28897415891667799420D3C5529 * L_3 = L_2->get_m_cultureData_28();
int32_t L_4 = ___calendarId0;
NullCheck(L_3);
CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4 * L_5 = CultureData_GetCalendar_mA6A5903C7B65650B9F93168023FFCC4DCAD14F01(L_3, L_4, /*hidden argument*/NULL);
return L_5;
}
}
// System.String System.Globalization.CalendarData::CalendarIdToCultureName(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* CalendarData_CalendarIdToCultureName_mD748CB6E9AEA2E8F6EAB566CCD474F409C9B5CC4 (int32_t ___calendarId0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CalendarData_CalendarIdToCultureName_mD748CB6E9AEA2E8F6EAB566CCD474F409C9B5CC4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___calendarId0;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)2)))
{
case 0:
{
goto IL_0062;
}
case 1:
{
goto IL_0068;
}
case 2:
{
goto IL_006e;
}
case 3:
{
goto IL_0074;
}
case 4:
{
goto IL_007a;
}
case 5:
{
goto IL_0080;
}
case 6:
{
goto IL_0086;
}
case 7:
{
goto IL_008c;
}
case 8:
{
goto IL_007a;
}
case 9:
{
goto IL_0092;
}
case 10:
{
goto IL_0092;
}
case 11:
{
goto IL_0098;
}
case 12:
{
goto IL_0098;
}
case 13:
{
goto IL_0098;
}
case 14:
{
goto IL_0098;
}
case 15:
{
goto IL_0098;
}
case 16:
{
goto IL_0098;
}
case 17:
{
goto IL_0098;
}
case 18:
{
goto IL_0098;
}
case 19:
{
goto IL_0098;
}
case 20:
{
goto IL_0098;
}
case 21:
{
goto IL_007a;
}
}
}
{
goto IL_0098;
}
IL_0062:
{
return _stringLiteral4B896CA0A2BC44D9A8CED783CEFABA7570F20DBD;
}
IL_0068:
{
return _stringLiteral9DF54E9FB641DBA4B94F96FF3454CDAD9970E6C8;
}
IL_006e:
{
return _stringLiteralBFFE556F7CC5A872AFD8DD5F0E974020A23AF585;
}
IL_0074:
{
return _stringLiteralAE9D6A0B88B2447EB31ABF04D08C209B24A5C50E;
}
IL_007a:
{
return _stringLiteralF63581A94CE4CBEC88BF1CC47F97C9F6F68E56BA;
}
IL_0080:
{
return _stringLiteral3A50E886F50E292CF8471ADF9B446694CBE92C2E;
}
IL_0086:
{
return _stringLiteral7D9366B62C745A26836F06770906ECFBBDA943C2;
}
IL_008c:
{
return _stringLiteralFA8996A8164B28D595752E84EFD1FCA1F9AC458D;
}
IL_0092:
{
return _stringLiteral25BA86D351FA0013EE595518C4713ECE93CB1E7F;
}
IL_0098:
{
return _stringLiteral3A971881AF6B7B211E34707E857DEC5F36487877;
}
}
// System.Int32 System.Globalization.CalendarData::nativeGetTwoDigitYearMax(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CalendarData_nativeGetTwoDigitYearMax_m1681AA3757D4C8A034E8CDBF8345C1F56F9607F9 (int32_t ___calID0, const RuntimeMethod* method)
{
{
return (-1);
}
}
// System.Boolean System.Globalization.CalendarData::nativeGetCalendarData(System.Globalization.CalendarData,System.String,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CalendarData_nativeGetCalendarData_mC4AE4E642FE8DBBEE72B9AF5FC65F8AA0CB535FC (CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4 * ___data0, String_t* ___localeName1, int32_t ___calendarId2, const RuntimeMethod* method)
{
{
CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4 * L_0 = ___data0;
String_t* L_1 = ___localeName1;
NullCheck(L_1);
String_t* L_2 = String_ToLowerInvariant_m070E99F11A6005755BD6579A6CC835694395F79F(L_1, /*hidden argument*/NULL);
int32_t L_3 = ___calendarId2;
NullCheck(L_0);
bool L_4 = CalendarData_fill_calendar_data_m53D675C1D161845EB120DC3BAAF183611011C012(L_0, L_2, L_3, /*hidden argument*/NULL);
return L_4;
}
}
// System.Boolean System.Globalization.CalendarData::fill_calendar_data(System.String,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CalendarData_fill_calendar_data_m53D675C1D161845EB120DC3BAAF183611011C012 (CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4 * __this, String_t* ___localeName0, int32_t ___datetimeIndex1, const RuntimeMethod* method)
{
typedef bool (*CalendarData_fill_calendar_data_m53D675C1D161845EB120DC3BAAF183611011C012_ftn) (CalendarData_t76EF6EAAED8C2BC4089643722CE589E213F7B4A4 *, String_t*, int32_t);
using namespace il2cpp::icalls;
return ((CalendarData_fill_calendar_data_m53D675C1D161845EB120DC3BAAF183611011C012_ftn)mscorlib::System::Globalization::CalendarData::fill_calendar_data) (__this, ___localeName0, ___datetimeIndex1);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Runtime.Remoting.Messaging.CallContext::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CallContext__ctor_m490E4DA3808DA2E87826EE28D7FEB82D9FE9559E (CallContext_t90895C0015A31D6E8A4F5185486EB6FB76A1544F * __this, const RuntimeMethod* method)
{
{
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL);
return;
}
}
// System.Object System.Runtime.Remoting.Messaging.CallContext::SetCurrentCallContext(System.Runtime.Remoting.Messaging.LogicalCallContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * CallContext_SetCurrentCallContext_m1316DF3683696E6C533389E917C1E52FCF0B735F (LogicalCallContext_tB537C2A13F19FCC7EBC74757A415F2CA5C8FA1C3 * ___ctx0, const RuntimeMethod* method)
{
{
return NULL;
}
}
// System.Runtime.Remoting.Messaging.LogicalCallContext System.Runtime.Remoting.Messaging.CallContext::SetLogicalCallContext(System.Runtime.Remoting.Messaging.LogicalCallContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LogicalCallContext_tB537C2A13F19FCC7EBC74757A415F2CA5C8FA1C3 * CallContext_SetLogicalCallContext_m2FB716687B320BCBAFB819D32400D614786ADA86 (LogicalCallContext_tB537C2A13F19FCC7EBC74757A415F2CA5C8FA1C3 * ___callCtx0, const RuntimeMethod* method)
{
LogicalCallContext_tB537C2A13F19FCC7EBC74757A415F2CA5C8FA1C3 * V_0 = NULL;
{
Thread_tB9EB71664220EE16451AF3276D78DE6614D2A414 * L_0 = Thread_get_CurrentThread_m80236D2457FBCC1F76A08711E059A0B738DA71EC(/*hidden argument*/NULL);
NullCheck(L_0);
ExecutionContext_t16AC73BB21FEEEAD34A017877AC18DD8BB836414 * L_1 = Thread_GetMutableExecutionContext_mB95698B8C9F29FF69E6F2C7DBD0588CE4B3EBCFC(L_0, /*hidden argument*/NULL);
ExecutionContext_t16AC73BB21FEEEAD34A017877AC18DD8BB836414 * L_2 = L_1;
NullCheck(L_2);
LogicalCallContext_tB537C2A13F19FCC7EBC74757A415F2CA5C8FA1C3 * L_3 = ExecutionContext_get_LogicalCallContext_m2F95375B6A7C4D20848EB4AFC750E37D94D96139(L_2, /*hidden argument*/NULL);
V_0 = L_3;
LogicalCallContext_tB537C2A13F19FCC7EBC74757A415F2CA5C8FA1C3 * L_4 = ___callCtx0;
NullCheck(L_2);
ExecutionContext_set_LogicalCallContext_m140A85BD2BC1C60235ED4661A5FB193B40207656_inline(L_2, L_4, /*hidden argument*/NULL);
LogicalCallContext_tB537C2A13F19FCC7EBC74757A415F2CA5C8FA1C3 * L_5 = V_0;
return L_5;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.String System.Runtime.Remoting.Messaging.CallContextRemotingData::get_LogicalCallID()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* CallContextRemotingData_get_LogicalCallID_mE47A77416A15B1D0473E471D449F4EF400E38130 (CallContextRemotingData_t91D21A898FED729F67E6899F29076D9CF39E419E * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get__logicalCallID_0();
return L_0;
}
}
// System.Void System.Runtime.Remoting.Messaging.CallContextRemotingData::set_LogicalCallID(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CallContextRemotingData_set_LogicalCallID_mC234B22CD43CF7FD7DB66C5A0DAF35C246840E1A (CallContextRemotingData_t91D21A898FED729F67E6899F29076D9CF39E419E * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->set__logicalCallID_0(L_0);
return;
}
}
// System.Boolean System.Runtime.Remoting.Messaging.CallContextRemotingData::get_HasInfo()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CallContextRemotingData_get_HasInfo_m73615C7A0373CB8A99BD51668AAEF936DD5E5464 (CallContextRemotingData_t91D21A898FED729F67E6899F29076D9CF39E419E * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get__logicalCallID_0();
return (bool)((!(((RuntimeObject*)(String_t*)L_0) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
}
// System.Object System.Runtime.Remoting.Messaging.CallContextRemotingData::Clone()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * CallContextRemotingData_Clone_m52982AAA08A83E9C9ECAA30CF0BC3D129F60FF8A (CallContextRemotingData_t91D21A898FED729F67E6899F29076D9CF39E419E * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CallContextRemotingData_Clone_m52982AAA08A83E9C9ECAA30CF0BC3D129F60FF8A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
CallContextRemotingData_t91D21A898FED729F67E6899F29076D9CF39E419E * L_0 = (CallContextRemotingData_t91D21A898FED729F67E6899F29076D9CF39E419E *)il2cpp_codegen_object_new(CallContextRemotingData_t91D21A898FED729F67E6899F29076D9CF39E419E_il2cpp_TypeInfo_var);
CallContextRemotingData__ctor_m3CF9B317F2D36C1C2C7A2C0F4AF8A4734901088C(L_0, /*hidden argument*/NULL);
CallContextRemotingData_t91D21A898FED729F67E6899F29076D9CF39E419E * L_1 = L_0;
String_t* L_2 = CallContextRemotingData_get_LogicalCallID_mE47A77416A15B1D0473E471D449F4EF400E38130_inline(__this, /*hidden argument*/NULL);
NullCheck(L_1);
CallContextRemotingData_set_LogicalCallID_mC234B22CD43CF7FD7DB66C5A0DAF35C246840E1A_inline(L_1, L_2, /*hidden argument*/NULL);
return L_1;
}
}
// System.Void System.Runtime.Remoting.Messaging.CallContextRemotingData::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CallContextRemotingData__ctor_m3CF9B317F2D36C1C2C7A2C0F4AF8A4734901088C (CallContextRemotingData_t91D21A898FED729F67E6899F29076D9CF39E419E * __this, const RuntimeMethod* method)
{
{
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Boolean System.Runtime.Remoting.Messaging.CallContextSecurityData::get_HasInfo()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CallContextSecurityData_get_HasInfo_m8438D868292B930CCB03B4829E6761D5B3019D5A (CallContextSecurityData_t57A7D75CA887E871D0AF1E3AF1AB9624AB99B431 * __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = __this->get__principal_0();
return (bool)((!(((RuntimeObject*)(RuntimeObject*)L_0) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
}
// System.Object System.Runtime.Remoting.Messaging.CallContextSecurityData::Clone()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * CallContextSecurityData_Clone_m38FD55B8E084E77C08C0512A41FB953580311FB7 (CallContextSecurityData_t57A7D75CA887E871D0AF1E3AF1AB9624AB99B431 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CallContextSecurityData_Clone_m38FD55B8E084E77C08C0512A41FB953580311FB7_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
CallContextSecurityData_t57A7D75CA887E871D0AF1E3AF1AB9624AB99B431 * L_0 = (CallContextSecurityData_t57A7D75CA887E871D0AF1E3AF1AB9624AB99B431 *)il2cpp_codegen_object_new(CallContextSecurityData_t57A7D75CA887E871D0AF1E3AF1AB9624AB99B431_il2cpp_TypeInfo_var);
CallContextSecurityData__ctor_mCC0F926529019EC64F37A78EAB101C8F3B74230B(L_0, /*hidden argument*/NULL);
CallContextSecurityData_t57A7D75CA887E871D0AF1E3AF1AB9624AB99B431 * L_1 = L_0;
RuntimeObject* L_2 = __this->get__principal_0();
NullCheck(L_1);
L_1->set__principal_0(L_2);
return L_1;
}
}
// System.Void System.Runtime.Remoting.Messaging.CallContextSecurityData::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CallContextSecurityData__ctor_mCC0F926529019EC64F37A78EAB101C8F3B74230B (CallContextSecurityData_t57A7D75CA887E871D0AF1E3AF1AB9624AB99B431 * __this, const RuntimeMethod* method)
{
{
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Conversion methods for marshalling of: System.Threading.CancellationCallbackCoreWorkArguments
IL2CPP_EXTERN_C void CancellationCallbackCoreWorkArguments_t9ECCD883EF9DF3283696D1CE1F7A81C0F075923E_marshal_pinvoke(const CancellationCallbackCoreWorkArguments_t9ECCD883EF9DF3283696D1CE1F7A81C0F075923E& unmarshaled, CancellationCallbackCoreWorkArguments_t9ECCD883EF9DF3283696D1CE1F7A81C0F075923E_marshaled_pinvoke& marshaled)
{
Exception_t* ___m_currArrayFragment_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_currArrayFragment' of type 'CancellationCallbackCoreWorkArguments'.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_currArrayFragment_0Exception, NULL);
}
IL2CPP_EXTERN_C void CancellationCallbackCoreWorkArguments_t9ECCD883EF9DF3283696D1CE1F7A81C0F075923E_marshal_pinvoke_back(const CancellationCallbackCoreWorkArguments_t9ECCD883EF9DF3283696D1CE1F7A81C0F075923E_marshaled_pinvoke& marshaled, CancellationCallbackCoreWorkArguments_t9ECCD883EF9DF3283696D1CE1F7A81C0F075923E& unmarshaled)
{
Exception_t* ___m_currArrayFragment_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_currArrayFragment' of type 'CancellationCallbackCoreWorkArguments'.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_currArrayFragment_0Exception, NULL);
}
// Conversion method for clean up from marshalling of: System.Threading.CancellationCallbackCoreWorkArguments
IL2CPP_EXTERN_C void CancellationCallbackCoreWorkArguments_t9ECCD883EF9DF3283696D1CE1F7A81C0F075923E_marshal_pinvoke_cleanup(CancellationCallbackCoreWorkArguments_t9ECCD883EF9DF3283696D1CE1F7A81C0F075923E_marshaled_pinvoke& marshaled)
{
}
// Conversion methods for marshalling of: System.Threading.CancellationCallbackCoreWorkArguments
IL2CPP_EXTERN_C void CancellationCallbackCoreWorkArguments_t9ECCD883EF9DF3283696D1CE1F7A81C0F075923E_marshal_com(const CancellationCallbackCoreWorkArguments_t9ECCD883EF9DF3283696D1CE1F7A81C0F075923E& unmarshaled, CancellationCallbackCoreWorkArguments_t9ECCD883EF9DF3283696D1CE1F7A81C0F075923E_marshaled_com& marshaled)
{
Exception_t* ___m_currArrayFragment_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_currArrayFragment' of type 'CancellationCallbackCoreWorkArguments'.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_currArrayFragment_0Exception, NULL);
}
IL2CPP_EXTERN_C void CancellationCallbackCoreWorkArguments_t9ECCD883EF9DF3283696D1CE1F7A81C0F075923E_marshal_com_back(const CancellationCallbackCoreWorkArguments_t9ECCD883EF9DF3283696D1CE1F7A81C0F075923E_marshaled_com& marshaled, CancellationCallbackCoreWorkArguments_t9ECCD883EF9DF3283696D1CE1F7A81C0F075923E& unmarshaled)
{
Exception_t* ___m_currArrayFragment_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_currArrayFragment' of type 'CancellationCallbackCoreWorkArguments'.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_currArrayFragment_0Exception, NULL);
}
// Conversion method for clean up from marshalling of: System.Threading.CancellationCallbackCoreWorkArguments
IL2CPP_EXTERN_C void CancellationCallbackCoreWorkArguments_t9ECCD883EF9DF3283696D1CE1F7A81C0F075923E_marshal_com_cleanup(CancellationCallbackCoreWorkArguments_t9ECCD883EF9DF3283696D1CE1F7A81C0F075923E_marshaled_com& marshaled)
{
}
// System.Void System.Threading.CancellationCallbackCoreWorkArguments::.ctor(System.Threading.SparselyPopulatedArrayFragment`1<System.Threading.CancellationCallbackInfo>,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CancellationCallbackCoreWorkArguments__ctor_m5E2EF8B57D020415220D0EAF8602E1A4D27BD00A (CancellationCallbackCoreWorkArguments_t9ECCD883EF9DF3283696D1CE1F7A81C0F075923E * __this, SparselyPopulatedArrayFragment_1_t93197EF47D6A025755987003D5D62F3AED371C21 * ___currArrayFragment0, int32_t ___currArrayIndex1, const RuntimeMethod* method)
{
{
SparselyPopulatedArrayFragment_1_t93197EF47D6A025755987003D5D62F3AED371C21 * L_0 = ___currArrayFragment0;
__this->set_m_currArrayFragment_0(L_0);
int32_t L_1 = ___currArrayIndex1;
__this->set_m_currArrayIndex_1(L_1);
return;
}
}
IL2CPP_EXTERN_C void CancellationCallbackCoreWorkArguments__ctor_m5E2EF8B57D020415220D0EAF8602E1A4D27BD00A_AdjustorThunk (RuntimeObject * __this, SparselyPopulatedArrayFragment_1_t93197EF47D6A025755987003D5D62F3AED371C21 * ___currArrayFragment0, int32_t ___currArrayIndex1, const RuntimeMethod* method)
{
int32_t _offset = 1;
CancellationCallbackCoreWorkArguments_t9ECCD883EF9DF3283696D1CE1F7A81C0F075923E * _thisAdjusted = reinterpret_cast<CancellationCallbackCoreWorkArguments_t9ECCD883EF9DF3283696D1CE1F7A81C0F075923E *>(__this + _offset);
CancellationCallbackCoreWorkArguments__ctor_m5E2EF8B57D020415220D0EAF8602E1A4D27BD00A(_thisAdjusted, ___currArrayFragment0, ___currArrayIndex1, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Threading.CancellationCallbackInfo::.ctor(System.Action`1<System.Object>,System.Object,System.Threading.SynchronizationContext,System.Threading.ExecutionContext,System.Threading.CancellationTokenSource)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CancellationCallbackInfo__ctor_mC68C97270111CBBD71637A10DEC422493183A0B5 (CancellationCallbackInfo_t7FC8CF6DB4845FCB0138771E86AE058710B1117B * __this, Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * ___callback0, RuntimeObject * ___stateForCallback1, SynchronizationContext_t17D9365B5E0D30A0910A16FA4351C525232EF069 * ___targetSyncContext2, ExecutionContext_t16AC73BB21FEEEAD34A017877AC18DD8BB836414 * ___targetExecutionContext3, CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * ___cancellationTokenSource4, const RuntimeMethod* method)
{
{
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL);
Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * L_0 = ___callback0;
__this->set_Callback_0(L_0);
RuntimeObject * L_1 = ___stateForCallback1;
__this->set_StateForCallback_1(L_1);
SynchronizationContext_t17D9365B5E0D30A0910A16FA4351C525232EF069 * L_2 = ___targetSyncContext2;
__this->set_TargetSyncContext_2(L_2);
ExecutionContext_t16AC73BB21FEEEAD34A017877AC18DD8BB836414 * L_3 = ___targetExecutionContext3;
__this->set_TargetExecutionContext_3(L_3);
CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * L_4 = ___cancellationTokenSource4;
__this->set_CancellationTokenSource_4(L_4);
return;
}
}
// System.Void System.Threading.CancellationCallbackInfo::ExecuteCallback()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CancellationCallbackInfo_ExecuteCallback_m7042487D5FCE84590D95167D0B84910D02DBDF81 (CancellationCallbackInfo_t7FC8CF6DB4845FCB0138771E86AE058710B1117B * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CancellationCallbackInfo_ExecuteCallback_m7042487D5FCE84590D95167D0B84910D02DBDF81_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ContextCallback_t93707E0430F4FF3E15E1FB5A4844BE89C657AE8B * V_0 = NULL;
{
ExecutionContext_t16AC73BB21FEEEAD34A017877AC18DD8BB836414 * L_0 = __this->get_TargetExecutionContext_3();
if (!L_0)
{
goto IL_0032;
}
}
{
ContextCallback_t93707E0430F4FF3E15E1FB5A4844BE89C657AE8B * L_1 = ((CancellationCallbackInfo_t7FC8CF6DB4845FCB0138771E86AE058710B1117B_StaticFields*)il2cpp_codegen_static_fields_for(CancellationCallbackInfo_t7FC8CF6DB4845FCB0138771E86AE058710B1117B_il2cpp_TypeInfo_var))->get_s_executionContextCallback_5();
V_0 = L_1;
ContextCallback_t93707E0430F4FF3E15E1FB5A4844BE89C657AE8B * L_2 = V_0;
if (L_2)
{
goto IL_0024;
}
}
{
ContextCallback_t93707E0430F4FF3E15E1FB5A4844BE89C657AE8B * L_3 = (ContextCallback_t93707E0430F4FF3E15E1FB5A4844BE89C657AE8B *)il2cpp_codegen_object_new(ContextCallback_t93707E0430F4FF3E15E1FB5A4844BE89C657AE8B_il2cpp_TypeInfo_var);
ContextCallback__ctor_mC019DFC7EF9F0900B3B8915F92706BC3BC4EB477(L_3, NULL, (intptr_t)((intptr_t)CancellationCallbackInfo_ExecutionContextCallback_mC38ACCB5287DE0BE9F2D08C1A42C89F73007C862_RuntimeMethod_var), /*hidden argument*/NULL);
ContextCallback_t93707E0430F4FF3E15E1FB5A4844BE89C657AE8B * L_4 = L_3;
V_0 = L_4;
((CancellationCallbackInfo_t7FC8CF6DB4845FCB0138771E86AE058710B1117B_StaticFields*)il2cpp_codegen_static_fields_for(CancellationCallbackInfo_t7FC8CF6DB4845FCB0138771E86AE058710B1117B_il2cpp_TypeInfo_var))->set_s_executionContextCallback_5(L_4);
}
IL_0024:
{
ExecutionContext_t16AC73BB21FEEEAD34A017877AC18DD8BB836414 * L_5 = __this->get_TargetExecutionContext_3();
ContextCallback_t93707E0430F4FF3E15E1FB5A4844BE89C657AE8B * L_6 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(ExecutionContext_t16AC73BB21FEEEAD34A017877AC18DD8BB836414_il2cpp_TypeInfo_var);
ExecutionContext_Run_m818AB2408824BF47B0D639082CDC164DBF9259D4(L_5, L_6, __this, /*hidden argument*/NULL);
return;
}
IL_0032:
{
CancellationCallbackInfo_ExecutionContextCallback_mC38ACCB5287DE0BE9F2D08C1A42C89F73007C862(__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Threading.CancellationCallbackInfo::ExecutionContextCallback(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CancellationCallbackInfo_ExecutionContextCallback_mC38ACCB5287DE0BE9F2D08C1A42C89F73007C862 (RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CancellationCallbackInfo_ExecutionContextCallback_mC38ACCB5287DE0BE9F2D08C1A42C89F73007C862_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
CancellationCallbackInfo_t7FC8CF6DB4845FCB0138771E86AE058710B1117B * V_0 = NULL;
{
RuntimeObject * L_0 = ___obj0;
V_0 = ((CancellationCallbackInfo_t7FC8CF6DB4845FCB0138771E86AE058710B1117B *)IsInstClass((RuntimeObject*)L_0, CancellationCallbackInfo_t7FC8CF6DB4845FCB0138771E86AE058710B1117B_il2cpp_TypeInfo_var));
CancellationCallbackInfo_t7FC8CF6DB4845FCB0138771E86AE058710B1117B * L_1 = V_0;
NullCheck(L_1);
Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * L_2 = L_1->get_Callback_0();
CancellationCallbackInfo_t7FC8CF6DB4845FCB0138771E86AE058710B1117B * L_3 = V_0;
NullCheck(L_3);
RuntimeObject * L_4 = L_3->get_StateForCallback_1();
NullCheck(L_2);
Action_1_Invoke_m587509C88BB83721D7918D89DF07606BB752D744(L_2, L_4, /*hidden argument*/Action_1_Invoke_m587509C88BB83721D7918D89DF07606BB752D744_RuntimeMethod_var);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Conversion methods for marshalling of: System.Threading.CancellationToken
IL2CPP_EXTERN_C void CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD_marshal_pinvoke(const CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD& unmarshaled, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD_marshaled_pinvoke& marshaled)
{
Exception_t* ___m_source_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_source' of type 'CancellationToken': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_source_0Exception, NULL);
}
IL2CPP_EXTERN_C void CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD_marshal_pinvoke_back(const CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD_marshaled_pinvoke& marshaled, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD& unmarshaled)
{
Exception_t* ___m_source_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_source' of type 'CancellationToken': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_source_0Exception, NULL);
}
// Conversion method for clean up from marshalling of: System.Threading.CancellationToken
IL2CPP_EXTERN_C void CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD_marshal_pinvoke_cleanup(CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD_marshaled_pinvoke& marshaled)
{
}
// Conversion methods for marshalling of: System.Threading.CancellationToken
IL2CPP_EXTERN_C void CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD_marshal_com(const CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD& unmarshaled, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD_marshaled_com& marshaled)
{
Exception_t* ___m_source_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_source' of type 'CancellationToken': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_source_0Exception, NULL);
}
IL2CPP_EXTERN_C void CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD_marshal_com_back(const CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD_marshaled_com& marshaled, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD& unmarshaled)
{
Exception_t* ___m_source_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_source' of type 'CancellationToken': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_source_0Exception, NULL);
}
// Conversion method for clean up from marshalling of: System.Threading.CancellationToken
IL2CPP_EXTERN_C void CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD_marshal_com_cleanup(CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD_marshaled_com& marshaled)
{
}
// System.Threading.CancellationToken System.Threading.CancellationToken::get_None()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD CancellationToken_get_None_m13F4B9DCF5D7BE8E9E3F60026C98E50A946FE9DF (const RuntimeMethod* method)
{
CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD V_0;
memset((&V_0), 0, sizeof(V_0));
{
il2cpp_codegen_initobj((&V_0), sizeof(CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ));
CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_0 = V_0;
return L_0;
}
}
// System.Boolean System.Threading.CancellationToken::get_IsCancellationRequested()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CancellationToken_get_IsCancellationRequested_mC0A51CBEAEDE8789A0D04A79B20884ADABEB0D90 (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD * __this, const RuntimeMethod* method)
{
{
CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * L_0 = __this->get_m_source_0();
if (!L_0)
{
goto IL_0014;
}
}
{
CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * L_1 = __this->get_m_source_0();
NullCheck(L_1);
bool L_2 = CancellationTokenSource_get_IsCancellationRequested_m376281E83A2485CF743433D0660DFE939AFDBA42(L_1, /*hidden argument*/NULL);
return L_2;
}
IL_0014:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool CancellationToken_get_IsCancellationRequested_mC0A51CBEAEDE8789A0D04A79B20884ADABEB0D90_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD * _thisAdjusted = reinterpret_cast<CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD *>(__this + _offset);
return CancellationToken_get_IsCancellationRequested_mC0A51CBEAEDE8789A0D04A79B20884ADABEB0D90(_thisAdjusted, method);
}
// System.Boolean System.Threading.CancellationToken::get_CanBeCanceled()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CancellationToken_get_CanBeCanceled_m6E3578EE53E9E051760D798F120A1EB4357B4E09 (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD * __this, const RuntimeMethod* method)
{
{
CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * L_0 = __this->get_m_source_0();
if (!L_0)
{
goto IL_0014;
}
}
{
CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * L_1 = __this->get_m_source_0();
NullCheck(L_1);
bool L_2 = CancellationTokenSource_get_CanBeCanceled_m28225FFB3ED13D4B4EC84BDDCE8C10EB82D539CC(L_1, /*hidden argument*/NULL);
return L_2;
}
IL_0014:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool CancellationToken_get_CanBeCanceled_m6E3578EE53E9E051760D798F120A1EB4357B4E09_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD * _thisAdjusted = reinterpret_cast<CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD *>(__this + _offset);
return CancellationToken_get_CanBeCanceled_m6E3578EE53E9E051760D798F120A1EB4357B4E09(_thisAdjusted, method);
}
// System.Void System.Threading.CancellationToken::.ctor(System.Threading.CancellationTokenSource)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CancellationToken__ctor_mC19C6E7AC3BB22E07FCB343BAEA35975B878F9A0 (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD * __this, CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * ___source0, const RuntimeMethod* method)
{
{
CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * L_0 = ___source0;
__this->set_m_source_0(L_0);
return;
}
}
IL2CPP_EXTERN_C void CancellationToken__ctor_mC19C6E7AC3BB22E07FCB343BAEA35975B878F9A0_AdjustorThunk (RuntimeObject * __this, CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * ___source0, const RuntimeMethod* method)
{
int32_t _offset = 1;
CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD * _thisAdjusted = reinterpret_cast<CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD *>(__this + _offset);
CancellationToken__ctor_mC19C6E7AC3BB22E07FCB343BAEA35975B878F9A0_inline(_thisAdjusted, ___source0, method);
}
// System.Void System.Threading.CancellationToken::ActionToActionObjShunt(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CancellationToken_ActionToActionObjShunt_m8DF8861A46D0105C06889C16DB2489F1EAAF1B07 (RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CancellationToken_ActionToActionObjShunt_m8DF8861A46D0105C06889C16DB2489F1EAAF1B07_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___obj0;
NullCheck(((Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 *)IsInstSealed((RuntimeObject*)L_0, Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6_il2cpp_TypeInfo_var)));
Action_Invoke_m3FFA5BE3D64F0FF8E1E1CB6F953913FADB5EB89E(((Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 *)IsInstSealed((RuntimeObject*)L_0, Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
return;
}
}
// System.Threading.CancellationTokenRegistration System.Threading.CancellationToken::InternalRegisterWithoutEC(System.Action`1<System.Object>,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A CancellationToken_InternalRegisterWithoutEC_m2450607A39759489E06741B35DE71DD2C677B5CC (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD * __this, Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * ___callback0, RuntimeObject * ___state1, const RuntimeMethod* method)
{
{
Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * L_0 = ___callback0;
RuntimeObject * L_1 = ___state1;
CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A L_2 = CancellationToken_Register_m44D79B3CC75D28193A9C7369AD81D7A93E9D791C((CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD *)__this, L_0, L_1, (bool)0, (bool)0, /*hidden argument*/NULL);
return L_2;
}
}
IL2CPP_EXTERN_C CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A CancellationToken_InternalRegisterWithoutEC_m2450607A39759489E06741B35DE71DD2C677B5CC_AdjustorThunk (RuntimeObject * __this, Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * ___callback0, RuntimeObject * ___state1, const RuntimeMethod* method)
{
int32_t _offset = 1;
CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD * _thisAdjusted = reinterpret_cast<CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD *>(__this + _offset);
return CancellationToken_InternalRegisterWithoutEC_m2450607A39759489E06741B35DE71DD2C677B5CC(_thisAdjusted, ___callback0, ___state1, method);
}
// System.Threading.CancellationTokenRegistration System.Threading.CancellationToken::Register(System.Action`1<System.Object>,System.Object,System.Boolean,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A CancellationToken_Register_m44D79B3CC75D28193A9C7369AD81D7A93E9D791C (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD * __this, Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * ___callback0, RuntimeObject * ___state1, bool ___useSynchronizationContext2, bool ___useExecutionContext3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CancellationToken_Register_m44D79B3CC75D28193A9C7369AD81D7A93E9D791C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
SynchronizationContext_t17D9365B5E0D30A0910A16FA4351C525232EF069 * V_1 = NULL;
ExecutionContext_t16AC73BB21FEEEAD34A017877AC18DD8BB836414 * V_2 = NULL;
CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A V_3;
memset((&V_3), 0, sizeof(V_3));
{
V_0 = 1;
Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * L_0 = ___callback0;
if (L_0)
{
goto IL_0010;
}
}
{
ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, _stringLiteralDC71B380AFF23A38F6029B32B61C6943CB960350, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, CancellationToken_Register_m44D79B3CC75D28193A9C7369AD81D7A93E9D791C_RuntimeMethod_var);
}
IL_0010:
{
bool L_2 = CancellationToken_get_CanBeCanceled_m6E3578EE53E9E051760D798F120A1EB4357B4E09((CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD *)__this, /*hidden argument*/NULL);
if (L_2)
{
goto IL_0022;
}
}
{
il2cpp_codegen_initobj((&V_3), sizeof(CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A ));
CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A L_3 = V_3;
return L_3;
}
IL_0022:
{
V_1 = (SynchronizationContext_t17D9365B5E0D30A0910A16FA4351C525232EF069 *)NULL;
V_2 = (ExecutionContext_t16AC73BB21FEEEAD34A017877AC18DD8BB836414 *)NULL;
bool L_4 = CancellationToken_get_IsCancellationRequested_mC0A51CBEAEDE8789A0D04A79B20884ADABEB0D90((CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD *)__this, /*hidden argument*/NULL);
if (L_4)
{
goto IL_0044;
}
}
{
bool L_5 = ___useSynchronizationContext2;
if (!L_5)
{
goto IL_0037;
}
}
{
SynchronizationContext_t17D9365B5E0D30A0910A16FA4351C525232EF069 * L_6 = SynchronizationContext_get_Current_m4841CFFADFD0F0D82CE91800EE1225926440B942(/*hidden argument*/NULL);
V_1 = L_6;
}
IL_0037:
{
bool L_7 = ___useExecutionContext3;
if (!L_7)
{
goto IL_0044;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(ExecutionContext_t16AC73BB21FEEEAD34A017877AC18DD8BB836414_il2cpp_TypeInfo_var);
ExecutionContext_t16AC73BB21FEEEAD34A017877AC18DD8BB836414 * L_8 = ExecutionContext_Capture_m7D895FB8D9C0005CF084E521BA4F030148D984A3((int32_t*)(&V_0), 2, /*hidden argument*/NULL);
V_2 = L_8;
}
IL_0044:
{
CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * L_9 = __this->get_m_source_0();
Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * L_10 = ___callback0;
RuntimeObject * L_11 = ___state1;
SynchronizationContext_t17D9365B5E0D30A0910A16FA4351C525232EF069 * L_12 = V_1;
ExecutionContext_t16AC73BB21FEEEAD34A017877AC18DD8BB836414 * L_13 = V_2;
NullCheck(L_9);
CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A L_14 = CancellationTokenSource_InternalRegister_m267B0001480B4E72BD49B668135B8E988B86AD71(L_9, L_10, L_11, L_12, L_13, /*hidden argument*/NULL);
return L_14;
}
}
IL2CPP_EXTERN_C CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A CancellationToken_Register_m44D79B3CC75D28193A9C7369AD81D7A93E9D791C_AdjustorThunk (RuntimeObject * __this, Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * ___callback0, RuntimeObject * ___state1, bool ___useSynchronizationContext2, bool ___useExecutionContext3, const RuntimeMethod* method)
{
int32_t _offset = 1;
CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD * _thisAdjusted = reinterpret_cast<CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD *>(__this + _offset);
return CancellationToken_Register_m44D79B3CC75D28193A9C7369AD81D7A93E9D791C(_thisAdjusted, ___callback0, ___state1, ___useSynchronizationContext2, ___useExecutionContext3, method);
}
// System.Boolean System.Threading.CancellationToken::Equals(System.Threading.CancellationToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CancellationToken_Equals_m8485C6EC16CB28ECDC780F96911E612CE0698025 (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD * __this, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___other0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CancellationToken_Equals_m8485C6EC16CB28ECDC780F96911E612CE0698025_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * L_0 = __this->get_m_source_0();
if (L_0)
{
goto IL_0012;
}
}
{
CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_1 = ___other0;
CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * L_2 = L_1.get_m_source_0();
if (L_2)
{
goto IL_0012;
}
}
{
return (bool)1;
}
IL_0012:
{
CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * L_3 = __this->get_m_source_0();
if (L_3)
{
goto IL_0029;
}
}
{
CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_4 = ___other0;
CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * L_5 = L_4.get_m_source_0();
IL2CPP_RUNTIME_CLASS_INIT(CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3_il2cpp_TypeInfo_var);
CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * L_6 = CancellationTokenSource_InternalGetStaticSource_m687D6ABA75BAC174574BC37E67CEC352DAB5834A((bool)0, /*hidden argument*/NULL);
return (bool)((((RuntimeObject*)(CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 *)L_5) == ((RuntimeObject*)(CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 *)L_6))? 1 : 0);
}
IL_0029:
{
CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_7 = ___other0;
CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * L_8 = L_7.get_m_source_0();
if (L_8)
{
goto IL_0040;
}
}
{
CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * L_9 = __this->get_m_source_0();
IL2CPP_RUNTIME_CLASS_INIT(CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3_il2cpp_TypeInfo_var);
CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * L_10 = CancellationTokenSource_InternalGetStaticSource_m687D6ABA75BAC174574BC37E67CEC352DAB5834A((bool)0, /*hidden argument*/NULL);
return (bool)((((RuntimeObject*)(CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 *)L_9) == ((RuntimeObject*)(CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 *)L_10))? 1 : 0);
}
IL_0040:
{
CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * L_11 = __this->get_m_source_0();
CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_12 = ___other0;
CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * L_13 = L_12.get_m_source_0();
return (bool)((((RuntimeObject*)(CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 *)L_11) == ((RuntimeObject*)(CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 *)L_13))? 1 : 0);
}
}
IL2CPP_EXTERN_C bool CancellationToken_Equals_m8485C6EC16CB28ECDC780F96911E612CE0698025_AdjustorThunk (RuntimeObject * __this, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___other0, const RuntimeMethod* method)
{
int32_t _offset = 1;
CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD * _thisAdjusted = reinterpret_cast<CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD *>(__this + _offset);
return CancellationToken_Equals_m8485C6EC16CB28ECDC780F96911E612CE0698025(_thisAdjusted, ___other0, method);
}
// System.Boolean System.Threading.CancellationToken::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CancellationToken_Equals_mF69DB5B6FC599F06A035F27A4F057D7650592A19 (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD * __this, RuntimeObject * ___other0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CancellationToken_Equals_mF69DB5B6FC599F06A035F27A4F057D7650592A19_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___other0;
if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_0, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD_il2cpp_TypeInfo_var)))
{
goto IL_0015;
}
}
{
RuntimeObject * L_1 = ___other0;
bool L_2 = CancellationToken_Equals_m8485C6EC16CB28ECDC780F96911E612CE0698025((CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD *)__this, ((*(CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD *)((CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD *)UnBox(L_1, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL);
return L_2;
}
IL_0015:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool CancellationToken_Equals_mF69DB5B6FC599F06A035F27A4F057D7650592A19_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___other0, const RuntimeMethod* method)
{
int32_t _offset = 1;
CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD * _thisAdjusted = reinterpret_cast<CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD *>(__this + _offset);
return CancellationToken_Equals_mF69DB5B6FC599F06A035F27A4F057D7650592A19(_thisAdjusted, ___other0, method);
}
// System.Int32 System.Threading.CancellationToken::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CancellationToken_GetHashCode_m06AA635E3F74B3743001F0609F5AC187E52E32DB (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CancellationToken_GetHashCode_m06AA635E3F74B3743001F0609F5AC187E52E32DB_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * L_0 = __this->get_m_source_0();
if (L_0)
{
goto IL_0014;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3_il2cpp_TypeInfo_var);
CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * L_1 = CancellationTokenSource_InternalGetStaticSource_m687D6ABA75BAC174574BC37E67CEC352DAB5834A((bool)0, /*hidden argument*/NULL);
NullCheck(L_1);
int32_t L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, L_1);
return L_2;
}
IL_0014:
{
CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * L_3 = __this->get_m_source_0();
NullCheck(L_3);
int32_t L_4 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, L_3);
return L_4;
}
}
IL2CPP_EXTERN_C int32_t CancellationToken_GetHashCode_m06AA635E3F74B3743001F0609F5AC187E52E32DB_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD * _thisAdjusted = reinterpret_cast<CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD *>(__this + _offset);
return CancellationToken_GetHashCode_m06AA635E3F74B3743001F0609F5AC187E52E32DB(_thisAdjusted, method);
}
// System.Boolean System.Threading.CancellationToken::op_Equality(System.Threading.CancellationToken,System.Threading.CancellationToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CancellationToken_op_Equality_m12AAE18B6D4A8D0711F4F39D023CEBF34AD6A21A (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___left0, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___right1, const RuntimeMethod* method)
{
{
CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_0 = ___right1;
bool L_1 = CancellationToken_Equals_m8485C6EC16CB28ECDC780F96911E612CE0698025((CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD *)(&___left0), L_0, /*hidden argument*/NULL);
return L_1;
}
}
// System.Boolean System.Threading.CancellationToken::op_Inequality(System.Threading.CancellationToken,System.Threading.CancellationToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CancellationToken_op_Inequality_m7CC475A961147C03C3665DBF0CB9DA0D1F08B2B7 (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___left0, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___right1, const RuntimeMethod* method)
{
{
CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_0 = ___right1;
bool L_1 = CancellationToken_Equals_m8485C6EC16CB28ECDC780F96911E612CE0698025((CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD *)(&___left0), L_0, /*hidden argument*/NULL);
return (bool)((((int32_t)L_1) == ((int32_t)0))? 1 : 0);
}
}
// System.Void System.Threading.CancellationToken::ThrowIfCancellationRequested()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CancellationToken_ThrowIfCancellationRequested_m987F0BEA5521F5575C5E766345C04E7E5E0CD210 (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD * __this, const RuntimeMethod* method)
{
{
bool L_0 = CancellationToken_get_IsCancellationRequested_mC0A51CBEAEDE8789A0D04A79B20884ADABEB0D90((CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD *)__this, /*hidden argument*/NULL);
if (!L_0)
{
goto IL_000e;
}
}
{
CancellationToken_ThrowOperationCanceledException_mE5D2CC82A6787FCF7606FFCC434E65D6502B6FBD((CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD *)__this, /*hidden argument*/NULL);
}
IL_000e:
{
return;
}
}
IL2CPP_EXTERN_C void CancellationToken_ThrowIfCancellationRequested_m987F0BEA5521F5575C5E766345C04E7E5E0CD210_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD * _thisAdjusted = reinterpret_cast<CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD *>(__this + _offset);
CancellationToken_ThrowIfCancellationRequested_m987F0BEA5521F5575C5E766345C04E7E5E0CD210(_thisAdjusted, method);
}
// System.Void System.Threading.CancellationToken::ThrowIfSourceDisposed()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CancellationToken_ThrowIfSourceDisposed_mE5B50ED7B6461AD467CE75BC31F587BE0EE139CF (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CancellationToken_ThrowIfSourceDisposed_mE5B50ED7B6461AD467CE75BC31F587BE0EE139CF_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * L_0 = __this->get_m_source_0();
if (!L_0)
{
goto IL_001a;
}
}
{
CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * L_1 = __this->get_m_source_0();
NullCheck(L_1);
bool L_2 = CancellationTokenSource_get_IsDisposed_m2B0724AA0E669866A2D9E1D974AA06BB241AD43A_inline(L_1, /*hidden argument*/NULL);
if (!L_2)
{
goto IL_001a;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD_il2cpp_TypeInfo_var);
CancellationToken_ThrowObjectDisposedException_m16484257FAD477378B1C6D7A83CEC7EDCA36AEA2(/*hidden argument*/NULL);
}
IL_001a:
{
return;
}
}
IL2CPP_EXTERN_C void CancellationToken_ThrowIfSourceDisposed_mE5B50ED7B6461AD467CE75BC31F587BE0EE139CF_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD * _thisAdjusted = reinterpret_cast<CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD *>(__this + _offset);
CancellationToken_ThrowIfSourceDisposed_mE5B50ED7B6461AD467CE75BC31F587BE0EE139CF(_thisAdjusted, method);
}
// System.Void System.Threading.CancellationToken::ThrowOperationCanceledException()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CancellationToken_ThrowOperationCanceledException_mE5D2CC82A6787FCF7606FFCC434E65D6502B6FBD (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CancellationToken_ThrowOperationCanceledException_mE5D2CC82A6787FCF7606FFCC434E65D6502B6FBD_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = Environment_GetResourceString_m8DFF827596B5FD533D3FE56900FA095F7D674617(_stringLiteralF52C96F075DF3B9BEEED0041B01B18D3571ADA6A, /*hidden argument*/NULL);
CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_1 = (*(CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD *)__this);
OperationCanceledException_tA90317406FAE39FB4E2C6AA84E12135E1D56B6FB * L_2 = (OperationCanceledException_tA90317406FAE39FB4E2C6AA84E12135E1D56B6FB *)il2cpp_codegen_object_new(OperationCanceledException_tA90317406FAE39FB4E2C6AA84E12135E1D56B6FB_il2cpp_TypeInfo_var);
OperationCanceledException__ctor_m56FFE1DDC33A14CAAC5C357C0E4EA82087998B1A(L_2, L_0, L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, CancellationToken_ThrowOperationCanceledException_mE5D2CC82A6787FCF7606FFCC434E65D6502B6FBD_RuntimeMethod_var);
}
}
IL2CPP_EXTERN_C void CancellationToken_ThrowOperationCanceledException_mE5D2CC82A6787FCF7606FFCC434E65D6502B6FBD_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD * _thisAdjusted = reinterpret_cast<CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD *>(__this + _offset);
CancellationToken_ThrowOperationCanceledException_mE5D2CC82A6787FCF7606FFCC434E65D6502B6FBD(_thisAdjusted, method);
}
// System.Void System.Threading.CancellationToken::ThrowObjectDisposedException()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CancellationToken_ThrowObjectDisposedException_m16484257FAD477378B1C6D7A83CEC7EDCA36AEA2 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CancellationToken_ThrowObjectDisposedException_m16484257FAD477378B1C6D7A83CEC7EDCA36AEA2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = Environment_GetResourceString_m8DFF827596B5FD533D3FE56900FA095F7D674617(_stringLiteralCDFD9CA4729AEEFF50B04F5B4F46213329D0BEB1, /*hidden argument*/NULL);
ObjectDisposedException_t29EF6F519F16BA477EC682F23E8344BB1E9A958A * L_1 = (ObjectDisposedException_t29EF6F519F16BA477EC682F23E8344BB1E9A958A *)il2cpp_codegen_object_new(ObjectDisposedException_t29EF6F519F16BA477EC682F23E8344BB1E9A958A_il2cpp_TypeInfo_var);
ObjectDisposedException__ctor_mC830C2F97D5314DF72EEFFE749E7F7FB467D0382(L_1, (String_t*)NULL, L_0, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, CancellationToken_ThrowObjectDisposedException_m16484257FAD477378B1C6D7A83CEC7EDCA36AEA2_RuntimeMethod_var);
}
}
// System.Void System.Threading.CancellationToken::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CancellationToken__cctor_m8AD3131687AFE9EE954A86FE8B735280148425F5 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CancellationToken__cctor_m8AD3131687AFE9EE954A86FE8B735280148425F5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * L_0 = (Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC *)il2cpp_codegen_object_new(Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC_il2cpp_TypeInfo_var);
Action_1__ctor_mA671E933C9D3DAE4E3F71D34FDDA971739618158(L_0, NULL, (intptr_t)((intptr_t)CancellationToken_ActionToActionObjShunt_m8DF8861A46D0105C06889C16DB2489F1EAAF1B07_RuntimeMethod_var), /*hidden argument*/Action_1__ctor_mA671E933C9D3DAE4E3F71D34FDDA971739618158_RuntimeMethod_var);
((CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD_StaticFields*)il2cpp_codegen_static_fields_for(CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD_il2cpp_TypeInfo_var))->set_s_ActionToActionObjShunt_1(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Conversion methods for marshalling of: System.Threading.CancellationTokenRegistration
IL2CPP_EXTERN_C void CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A_marshal_pinvoke(const CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A& unmarshaled, CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A_marshaled_pinvoke& marshaled)
{
Exception_t* ___m_callbackInfo_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_callbackInfo' of type 'CancellationTokenRegistration': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_callbackInfo_0Exception, NULL);
}
IL2CPP_EXTERN_C void CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A_marshal_pinvoke_back(const CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A_marshaled_pinvoke& marshaled, CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A& unmarshaled)
{
Exception_t* ___m_callbackInfo_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_callbackInfo' of type 'CancellationTokenRegistration': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_callbackInfo_0Exception, NULL);
}
// Conversion method for clean up from marshalling of: System.Threading.CancellationTokenRegistration
IL2CPP_EXTERN_C void CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A_marshal_pinvoke_cleanup(CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A_marshaled_pinvoke& marshaled)
{
}
// Conversion methods for marshalling of: System.Threading.CancellationTokenRegistration
IL2CPP_EXTERN_C void CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A_marshal_com(const CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A& unmarshaled, CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A_marshaled_com& marshaled)
{
Exception_t* ___m_callbackInfo_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_callbackInfo' of type 'CancellationTokenRegistration': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_callbackInfo_0Exception, NULL);
}
IL2CPP_EXTERN_C void CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A_marshal_com_back(const CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A_marshaled_com& marshaled, CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A& unmarshaled)
{
Exception_t* ___m_callbackInfo_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_callbackInfo' of type 'CancellationTokenRegistration': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_callbackInfo_0Exception, NULL);
}
// Conversion method for clean up from marshalling of: System.Threading.CancellationTokenRegistration
IL2CPP_EXTERN_C void CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A_marshal_com_cleanup(CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A_marshaled_com& marshaled)
{
}
// System.Void System.Threading.CancellationTokenRegistration::.ctor(System.Threading.CancellationCallbackInfo,System.Threading.SparselyPopulatedArrayAddInfo`1<System.Threading.CancellationCallbackInfo>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CancellationTokenRegistration__ctor_m2C98F974EA487E2A4D7CE75255D5257FC7071469 (CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A * __this, CancellationCallbackInfo_t7FC8CF6DB4845FCB0138771E86AE058710B1117B * ___callbackInfo0, SparselyPopulatedArrayAddInfo_1_t6EE25E0D720E03DE7A660791DB554CADCD247FC0 ___registrationInfo1, const RuntimeMethod* method)
{
{
CancellationCallbackInfo_t7FC8CF6DB4845FCB0138771E86AE058710B1117B * L_0 = ___callbackInfo0;
__this->set_m_callbackInfo_0(L_0);
SparselyPopulatedArrayAddInfo_1_t6EE25E0D720E03DE7A660791DB554CADCD247FC0 L_1 = ___registrationInfo1;
__this->set_m_registrationInfo_1(L_1);
return;
}
}
IL2CPP_EXTERN_C void CancellationTokenRegistration__ctor_m2C98F974EA487E2A4D7CE75255D5257FC7071469_AdjustorThunk (RuntimeObject * __this, CancellationCallbackInfo_t7FC8CF6DB4845FCB0138771E86AE058710B1117B * ___callbackInfo0, SparselyPopulatedArrayAddInfo_1_t6EE25E0D720E03DE7A660791DB554CADCD247FC0 ___registrationInfo1, const RuntimeMethod* method)
{
int32_t _offset = 1;
CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A * _thisAdjusted = reinterpret_cast<CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A *>(__this + _offset);
CancellationTokenRegistration__ctor_m2C98F974EA487E2A4D7CE75255D5257FC7071469(_thisAdjusted, ___callbackInfo0, ___registrationInfo1, method);
}
// System.Boolean System.Threading.CancellationTokenRegistration::TryDeregister()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CancellationTokenRegistration_TryDeregister_m07D7CD3452E63F1E9304D6CB26E4E1A8E347241D (CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CancellationTokenRegistration_TryDeregister_m07D7CD3452E63F1E9304D6CB26E4E1A8E347241D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
SparselyPopulatedArrayAddInfo_1_t6EE25E0D720E03DE7A660791DB554CADCD247FC0 V_0;
memset((&V_0), 0, sizeof(V_0));
{
SparselyPopulatedArrayAddInfo_1_t6EE25E0D720E03DE7A660791DB554CADCD247FC0 L_0 = __this->get_m_registrationInfo_1();
V_0 = L_0;
SparselyPopulatedArrayFragment_1_t93197EF47D6A025755987003D5D62F3AED371C21 * L_1 = SparselyPopulatedArrayAddInfo_1_get_Source_mEEDA9C531532DA8150BD428185A3A1EB9EB492E6_inline((SparselyPopulatedArrayAddInfo_1_t6EE25E0D720E03DE7A660791DB554CADCD247FC0 *)(&V_0), /*hidden argument*/SparselyPopulatedArrayAddInfo_1_get_Source_mEEDA9C531532DA8150BD428185A3A1EB9EB492E6_RuntimeMethod_var);
if (L_1)
{
goto IL_0012;
}
}
{
return (bool)0;
}
IL_0012:
{
SparselyPopulatedArrayAddInfo_1_t6EE25E0D720E03DE7A660791DB554CADCD247FC0 L_2 = __this->get_m_registrationInfo_1();
V_0 = L_2;
SparselyPopulatedArrayFragment_1_t93197EF47D6A025755987003D5D62F3AED371C21 * L_3 = SparselyPopulatedArrayAddInfo_1_get_Source_mEEDA9C531532DA8150BD428185A3A1EB9EB492E6_inline((SparselyPopulatedArrayAddInfo_1_t6EE25E0D720E03DE7A660791DB554CADCD247FC0 *)(&V_0), /*hidden argument*/SparselyPopulatedArrayAddInfo_1_get_Source_mEEDA9C531532DA8150BD428185A3A1EB9EB492E6_RuntimeMethod_var);
SparselyPopulatedArrayAddInfo_1_t6EE25E0D720E03DE7A660791DB554CADCD247FC0 L_4 = __this->get_m_registrationInfo_1();
V_0 = L_4;
int32_t L_5 = SparselyPopulatedArrayAddInfo_1_get_Index_mB5BBB1060D57990F7441F44FDFFA982A07992177_inline((SparselyPopulatedArrayAddInfo_1_t6EE25E0D720E03DE7A660791DB554CADCD247FC0 *)(&V_0), /*hidden argument*/SparselyPopulatedArrayAddInfo_1_get_Index_mB5BBB1060D57990F7441F44FDFFA982A07992177_RuntimeMethod_var);
CancellationCallbackInfo_t7FC8CF6DB4845FCB0138771E86AE058710B1117B * L_6 = __this->get_m_callbackInfo_0();
NullCheck(L_3);
CancellationCallbackInfo_t7FC8CF6DB4845FCB0138771E86AE058710B1117B * L_7 = SparselyPopulatedArrayFragment_1_SafeAtomicRemove_m3437B32D4F3791CD88594253B6B9FDED9BAF053D(L_3, L_5, L_6, /*hidden argument*/SparselyPopulatedArrayFragment_1_SafeAtomicRemove_m3437B32D4F3791CD88594253B6B9FDED9BAF053D_RuntimeMethod_var);
CancellationCallbackInfo_t7FC8CF6DB4845FCB0138771E86AE058710B1117B * L_8 = __this->get_m_callbackInfo_0();
if ((((RuntimeObject*)(CancellationCallbackInfo_t7FC8CF6DB4845FCB0138771E86AE058710B1117B *)L_7) == ((RuntimeObject*)(CancellationCallbackInfo_t7FC8CF6DB4845FCB0138771E86AE058710B1117B *)L_8)))
{
goto IL_0043;
}
}
{
return (bool)0;
}
IL_0043:
{
return (bool)1;
}
}
IL2CPP_EXTERN_C bool CancellationTokenRegistration_TryDeregister_m07D7CD3452E63F1E9304D6CB26E4E1A8E347241D_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A * _thisAdjusted = reinterpret_cast<CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A *>(__this + _offset);
return CancellationTokenRegistration_TryDeregister_m07D7CD3452E63F1E9304D6CB26E4E1A8E347241D(_thisAdjusted, method);
}
// System.Void System.Threading.CancellationTokenRegistration::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CancellationTokenRegistration_Dispose_mAE8E6F50C883B44EFF2F74E9EA4AD31E9571743F (CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A * __this, const RuntimeMethod* method)
{
bool V_0 = false;
CancellationCallbackInfo_t7FC8CF6DB4845FCB0138771E86AE058710B1117B * V_1 = NULL;
CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * V_2 = NULL;
{
bool L_0 = CancellationTokenRegistration_TryDeregister_m07D7CD3452E63F1E9304D6CB26E4E1A8E347241D((CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A *)__this, /*hidden argument*/NULL);
V_0 = L_0;
CancellationCallbackInfo_t7FC8CF6DB4845FCB0138771E86AE058710B1117B * L_1 = __this->get_m_callbackInfo_0();
V_1 = L_1;
CancellationCallbackInfo_t7FC8CF6DB4845FCB0138771E86AE058710B1117B * L_2 = V_1;
if (!L_2)
{
goto IL_0049;
}
}
{
CancellationCallbackInfo_t7FC8CF6DB4845FCB0138771E86AE058710B1117B * L_3 = V_1;
NullCheck(L_3);
CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * L_4 = L_3->get_CancellationTokenSource_4();
V_2 = L_4;
CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * L_5 = V_2;
NullCheck(L_5);
bool L_6 = CancellationTokenSource_get_IsCancellationRequested_m376281E83A2485CF743433D0660DFE939AFDBA42(L_5, /*hidden argument*/NULL);
if (!L_6)
{
goto IL_0049;
}
}
{
CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * L_7 = V_2;
NullCheck(L_7);
bool L_8 = CancellationTokenSource_get_IsCancellationCompleted_mEEE9FCBCF5B8C17636F3B028A872EAB6AE4D31AC(L_7, /*hidden argument*/NULL);
if (L_8)
{
goto IL_0049;
}
}
{
bool L_9 = V_0;
if (L_9)
{
goto IL_0049;
}
}
{
CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * L_10 = V_2;
NullCheck(L_10);
int32_t L_11 = CancellationTokenSource_get_ThreadIDExecutingCallbacks_m21BA1D4DFE0D97C010B138B67DA830F624E8B5B5(L_10, /*hidden argument*/NULL);
Thread_tB9EB71664220EE16451AF3276D78DE6614D2A414 * L_12 = Thread_get_CurrentThread_m80236D2457FBCC1F76A08711E059A0B738DA71EC(/*hidden argument*/NULL);
NullCheck(L_12);
int32_t L_13 = Thread_get_ManagedThreadId_m7818C94F78A2DE2C7C278F6EA24B31F2BB758FD0(L_12, /*hidden argument*/NULL);
if ((((int32_t)L_11) == ((int32_t)L_13)))
{
goto IL_0049;
}
}
{
CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * L_14 = V_2;
CancellationCallbackInfo_t7FC8CF6DB4845FCB0138771E86AE058710B1117B * L_15 = __this->get_m_callbackInfo_0();
NullCheck(L_14);
CancellationTokenSource_WaitForCallbackToComplete_m82707ECECF88825CA048EDE223BE5342BB502B71(L_14, L_15, /*hidden argument*/NULL);
}
IL_0049:
{
return;
}
}
IL2CPP_EXTERN_C void CancellationTokenRegistration_Dispose_mAE8E6F50C883B44EFF2F74E9EA4AD31E9571743F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A * _thisAdjusted = reinterpret_cast<CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A *>(__this + _offset);
CancellationTokenRegistration_Dispose_mAE8E6F50C883B44EFF2F74E9EA4AD31E9571743F(_thisAdjusted, method);
}
// System.Boolean System.Threading.CancellationTokenRegistration::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CancellationTokenRegistration_Equals_m596856287836431D530AE23A73053BD2A089E126 (CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CancellationTokenRegistration_Equals_m596856287836431D530AE23A73053BD2A089E126_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___obj0;
if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_0, CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A_il2cpp_TypeInfo_var)))
{
goto IL_0015;
}
}
{
RuntimeObject * L_1 = ___obj0;
bool L_2 = CancellationTokenRegistration_Equals_mBB4613C10EE146E0FBE7578A85CBC40A4205C3C2((CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A *)__this, ((*(CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A *)((CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A *)UnBox(L_1, CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL);
return L_2;
}
IL_0015:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool CancellationTokenRegistration_Equals_m596856287836431D530AE23A73053BD2A089E126_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
int32_t _offset = 1;
CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A * _thisAdjusted = reinterpret_cast<CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A *>(__this + _offset);
return CancellationTokenRegistration_Equals_m596856287836431D530AE23A73053BD2A089E126(_thisAdjusted, ___obj0, method);
}
// System.Boolean System.Threading.CancellationTokenRegistration::Equals(System.Threading.CancellationTokenRegistration)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CancellationTokenRegistration_Equals_mBB4613C10EE146E0FBE7578A85CBC40A4205C3C2 (CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A * __this, CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A ___other0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CancellationTokenRegistration_Equals_mBB4613C10EE146E0FBE7578A85CBC40A4205C3C2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
SparselyPopulatedArrayAddInfo_1_t6EE25E0D720E03DE7A660791DB554CADCD247FC0 V_0;
memset((&V_0), 0, sizeof(V_0));
{
CancellationCallbackInfo_t7FC8CF6DB4845FCB0138771E86AE058710B1117B * L_0 = __this->get_m_callbackInfo_0();
CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A L_1 = ___other0;
CancellationCallbackInfo_t7FC8CF6DB4845FCB0138771E86AE058710B1117B * L_2 = L_1.get_m_callbackInfo_0();
if ((!(((RuntimeObject*)(CancellationCallbackInfo_t7FC8CF6DB4845FCB0138771E86AE058710B1117B *)L_0) == ((RuntimeObject*)(CancellationCallbackInfo_t7FC8CF6DB4845FCB0138771E86AE058710B1117B *)L_2))))
{
goto IL_004b;
}
}
{
SparselyPopulatedArrayAddInfo_1_t6EE25E0D720E03DE7A660791DB554CADCD247FC0 L_3 = __this->get_m_registrationInfo_1();
V_0 = L_3;
SparselyPopulatedArrayFragment_1_t93197EF47D6A025755987003D5D62F3AED371C21 * L_4 = SparselyPopulatedArrayAddInfo_1_get_Source_mEEDA9C531532DA8150BD428185A3A1EB9EB492E6_inline((SparselyPopulatedArrayAddInfo_1_t6EE25E0D720E03DE7A660791DB554CADCD247FC0 *)(&V_0), /*hidden argument*/SparselyPopulatedArrayAddInfo_1_get_Source_mEEDA9C531532DA8150BD428185A3A1EB9EB492E6_RuntimeMethod_var);
CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A L_5 = ___other0;
SparselyPopulatedArrayAddInfo_1_t6EE25E0D720E03DE7A660791DB554CADCD247FC0 L_6 = L_5.get_m_registrationInfo_1();
V_0 = L_6;
SparselyPopulatedArrayFragment_1_t93197EF47D6A025755987003D5D62F3AED371C21 * L_7 = SparselyPopulatedArrayAddInfo_1_get_Source_mEEDA9C531532DA8150BD428185A3A1EB9EB492E6_inline((SparselyPopulatedArrayAddInfo_1_t6EE25E0D720E03DE7A660791DB554CADCD247FC0 *)(&V_0), /*hidden argument*/SparselyPopulatedArrayAddInfo_1_get_Source_mEEDA9C531532DA8150BD428185A3A1EB9EB492E6_RuntimeMethod_var);
if ((!(((RuntimeObject*)(SparselyPopulatedArrayFragment_1_t93197EF47D6A025755987003D5D62F3AED371C21 *)L_4) == ((RuntimeObject*)(SparselyPopulatedArrayFragment_1_t93197EF47D6A025755987003D5D62F3AED371C21 *)L_7))))
{
goto IL_004b;
}
}
{
SparselyPopulatedArrayAddInfo_1_t6EE25E0D720E03DE7A660791DB554CADCD247FC0 L_8 = __this->get_m_registrationInfo_1();
V_0 = L_8;
int32_t L_9 = SparselyPopulatedArrayAddInfo_1_get_Index_mB5BBB1060D57990F7441F44FDFFA982A07992177_inline((SparselyPopulatedArrayAddInfo_1_t6EE25E0D720E03DE7A660791DB554CADCD247FC0 *)(&V_0), /*hidden argument*/SparselyPopulatedArrayAddInfo_1_get_Index_mB5BBB1060D57990F7441F44FDFFA982A07992177_RuntimeMethod_var);
CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A L_10 = ___other0;
SparselyPopulatedArrayAddInfo_1_t6EE25E0D720E03DE7A660791DB554CADCD247FC0 L_11 = L_10.get_m_registrationInfo_1();
V_0 = L_11;
int32_t L_12 = SparselyPopulatedArrayAddInfo_1_get_Index_mB5BBB1060D57990F7441F44FDFFA982A07992177_inline((SparselyPopulatedArrayAddInfo_1_t6EE25E0D720E03DE7A660791DB554CADCD247FC0 *)(&V_0), /*hidden argument*/SparselyPopulatedArrayAddInfo_1_get_Index_mB5BBB1060D57990F7441F44FDFFA982A07992177_RuntimeMethod_var);
return (bool)((((int32_t)L_9) == ((int32_t)L_12))? 1 : 0);
}
IL_004b:
{
return (bool)0;
}
}
IL2CPP_EXTERN_C bool CancellationTokenRegistration_Equals_mBB4613C10EE146E0FBE7578A85CBC40A4205C3C2_AdjustorThunk (RuntimeObject * __this, CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A ___other0, const RuntimeMethod* method)
{
int32_t _offset = 1;
CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A * _thisAdjusted = reinterpret_cast<CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A *>(__this + _offset);
return CancellationTokenRegistration_Equals_mBB4613C10EE146E0FBE7578A85CBC40A4205C3C2(_thisAdjusted, ___other0, method);
}
// System.Int32 System.Threading.CancellationTokenRegistration::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CancellationTokenRegistration_GetHashCode_m8E90FC8DC515F4F690D840BC9A1830C8287DD9B6 (CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CancellationTokenRegistration_GetHashCode_m8E90FC8DC515F4F690D840BC9A1830C8287DD9B6_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
SparselyPopulatedArrayAddInfo_1_t6EE25E0D720E03DE7A660791DB554CADCD247FC0 V_0;
memset((&V_0), 0, sizeof(V_0));
int32_t V_1 = 0;
{
SparselyPopulatedArrayAddInfo_1_t6EE25E0D720E03DE7A660791DB554CADCD247FC0 L_0 = __this->get_m_registrationInfo_1();
V_0 = L_0;
SparselyPopulatedArrayFragment_1_t93197EF47D6A025755987003D5D62F3AED371C21 * L_1 = SparselyPopulatedArrayAddInfo_1_get_Source_mEEDA9C531532DA8150BD428185A3A1EB9EB492E6_inline((SparselyPopulatedArrayAddInfo_1_t6EE25E0D720E03DE7A660791DB554CADCD247FC0 *)(&V_0), /*hidden argument*/SparselyPopulatedArrayAddInfo_1_get_Source_mEEDA9C531532DA8150BD428185A3A1EB9EB492E6_RuntimeMethod_var);
if (!L_1)
{
goto IL_003b;
}
}
{
SparselyPopulatedArrayAddInfo_1_t6EE25E0D720E03DE7A660791DB554CADCD247FC0 L_2 = __this->get_m_registrationInfo_1();
V_0 = L_2;
SparselyPopulatedArrayFragment_1_t93197EF47D6A025755987003D5D62F3AED371C21 * L_3 = SparselyPopulatedArrayAddInfo_1_get_Source_mEEDA9C531532DA8150BD428185A3A1EB9EB492E6_inline((SparselyPopulatedArrayAddInfo_1_t6EE25E0D720E03DE7A660791DB554CADCD247FC0 *)(&V_0), /*hidden argument*/SparselyPopulatedArrayAddInfo_1_get_Source_mEEDA9C531532DA8150BD428185A3A1EB9EB492E6_RuntimeMethod_var);
NullCheck(L_3);
int32_t L_4 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, L_3);
SparselyPopulatedArrayAddInfo_1_t6EE25E0D720E03DE7A660791DB554CADCD247FC0 L_5 = __this->get_m_registrationInfo_1();
V_0 = L_5;
int32_t L_6 = SparselyPopulatedArrayAddInfo_1_get_Index_mB5BBB1060D57990F7441F44FDFFA982A07992177_inline((SparselyPopulatedArrayAddInfo_1_t6EE25E0D720E03DE7A660791DB554CADCD247FC0 *)(&V_0), /*hidden argument*/SparselyPopulatedArrayAddInfo_1_get_Index_mB5BBB1060D57990F7441F44FDFFA982A07992177_RuntimeMethod_var);
V_1 = L_6;
int32_t L_7 = Int32_GetHashCode_mEDD3F492A5F7CF021125AE3F38E2B8F8743FC667((int32_t*)(&V_1), /*hidden argument*/NULL);
return ((int32_t)((int32_t)L_4^(int32_t)L_7));
}
IL_003b:
{
SparselyPopulatedArrayAddInfo_1_t6EE25E0D720E03DE7A660791DB554CADCD247FC0 L_8 = __this->get_m_registrationInfo_1();
V_0 = L_8;
int32_t L_9 = SparselyPopulatedArrayAddInfo_1_get_Index_mB5BBB1060D57990F7441F44FDFFA982A07992177_inline((SparselyPopulatedArrayAddInfo_1_t6EE25E0D720E03DE7A660791DB554CADCD247FC0 *)(&V_0), /*hidden argument*/SparselyPopulatedArrayAddInfo_1_get_Index_mB5BBB1060D57990F7441F44FDFFA982A07992177_RuntimeMethod_var);
V_1 = L_9;
int32_t L_10 = Int32_GetHashCode_mEDD3F492A5F7CF021125AE3F38E2B8F8743FC667((int32_t*)(&V_1), /*hidden argument*/NULL);
return L_10;
}
}
IL2CPP_EXTERN_C int32_t CancellationTokenRegistration_GetHashCode_m8E90FC8DC515F4F690D840BC9A1830C8287DD9B6_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A * _thisAdjusted = reinterpret_cast<CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A *>(__this + _offset);
return CancellationTokenRegistration_GetHashCode_m8E90FC8DC515F4F690D840BC9A1830C8287DD9B6(_thisAdjusted, method);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Threading.CancellationTokenSource::LinkedTokenCancelDelegate(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CancellationTokenSource_LinkedTokenCancelDelegate_m734F7AC3FE79561862209F51B80266E40752E0A5 (RuntimeObject * ___source0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CancellationTokenSource_LinkedTokenCancelDelegate_m734F7AC3FE79561862209F51B80266E40752E0A5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___source0;
NullCheck(((CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 *)IsInstClass((RuntimeObject*)L_0, CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3_il2cpp_TypeInfo_var)));
CancellationTokenSource_Cancel_m2D87D42962FF166576B4FB3A34DF5C07F4AECEF1(((CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 *)IsInstClass((RuntimeObject*)L_0, CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
return;
}
}
// System.Boolean System.Threading.CancellationTokenSource::get_IsCancellationRequested()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CancellationTokenSource_get_IsCancellationRequested_m376281E83A2485CF743433D0660DFE939AFDBA42 (CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_m_state_5();
il2cpp_codegen_memory_barrier();
return (bool)((((int32_t)((((int32_t)L_0) < ((int32_t)2))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
}
// System.Boolean System.Threading.CancellationTokenSource::get_IsCancellationCompleted()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CancellationTokenSource_get_IsCancellationCompleted_mEEE9FCBCF5B8C17636F3B028A872EAB6AE4D31AC (CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_m_state_5();
il2cpp_codegen_memory_barrier();
return (bool)((((int32_t)L_0) == ((int32_t)3))? 1 : 0);
}
}
// System.Boolean System.Threading.CancellationTokenSource::get_IsDisposed()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CancellationTokenSource_get_IsDisposed_m2B0724AA0E669866A2D9E1D974AA06BB241AD43A (CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_m_disposed_7();
return L_0;
}
}
// System.Void System.Threading.CancellationTokenSource::set_ThreadIDExecutingCallbacks(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CancellationTokenSource_set_ThreadIDExecutingCallbacks_m463EA20D8480CF58451097E4F789315EC0D7A6C3 (CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
il2cpp_codegen_memory_barrier();
__this->set_m_threadIDExecutingCallbacks_6(L_0);
return;
}
}
// System.Int32 System.Threading.CancellationTokenSource::get_ThreadIDExecutingCallbacks()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CancellationTokenSource_get_ThreadIDExecutingCallbacks_m21BA1D4DFE0D97C010B138B67DA830F624E8B5B5 (CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_m_threadIDExecutingCallbacks_6();
il2cpp_codegen_memory_barrier();
return L_0;
}
}
// System.Threading.CancellationToken System.Threading.CancellationTokenSource::get_Token()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD CancellationTokenSource_get_Token_m2A9A82BA3532B89870363E8C1DEAE2F1EFD3962C (CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * __this, const RuntimeMethod* method)
{
{
CancellationTokenSource_ThrowIfDisposed_m8DC7CEE4A830A6A52C568F66A416549C817CFD43(__this, /*hidden argument*/NULL);
CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD L_0;
memset((&L_0), 0, sizeof(L_0));
CancellationToken__ctor_mC19C6E7AC3BB22E07FCB343BAEA35975B878F9A0_inline((&L_0), __this, /*hidden argument*/NULL);
return L_0;
}
}
// System.Boolean System.Threading.CancellationTokenSource::get_CanBeCanceled()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CancellationTokenSource_get_CanBeCanceled_m28225FFB3ED13D4B4EC84BDDCE8C10EB82D539CC (CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_m_state_5();
il2cpp_codegen_memory_barrier();
return (bool)((!(((uint32_t)L_0) <= ((uint32_t)0)))? 1 : 0);
}
}
// System.Threading.CancellationCallbackInfo System.Threading.CancellationTokenSource::get_ExecutingCallback()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CancellationCallbackInfo_t7FC8CF6DB4845FCB0138771E86AE058710B1117B * CancellationTokenSource_get_ExecutingCallback_m3426CE920853CC59E4A26C45D0555B46DB2BA557 (CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * __this, const RuntimeMethod* method)
{
{
CancellationCallbackInfo_t7FC8CF6DB4845FCB0138771E86AE058710B1117B * L_0 = __this->get_m_executingCallback_10();
il2cpp_codegen_memory_barrier();
return L_0;
}
}
// System.Void System.Threading.CancellationTokenSource::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CancellationTokenSource__ctor_mC30FDC4F672A8495141CC213126B7FEA2A1BDCEB (CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * __this, const RuntimeMethod* method)
{
{
il2cpp_codegen_memory_barrier();
__this->set_m_threadIDExecutingCallbacks_6((-1));
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL);
il2cpp_codegen_memory_barrier();
__this->set_m_state_5(1);
return;
}
}
// System.Void System.Threading.CancellationTokenSource::.ctor(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CancellationTokenSource__ctor_m2B949404F9AA4D9E7C56C6EA5A5EFA7011BE3409 (CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * __this, bool ___set0, const RuntimeMethod* method)
{
CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * G_B2_0 = NULL;
CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * G_B1_0 = NULL;
int32_t G_B3_0 = 0;
CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * G_B3_1 = NULL;
{
il2cpp_codegen_memory_barrier();
__this->set_m_threadIDExecutingCallbacks_6((-1));
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL);
bool L_0 = ___set0;
G_B1_0 = __this;
if (L_0)
{
G_B2_0 = __this;
goto IL_0016;
}
}
{
G_B3_0 = 0;
G_B3_1 = G_B1_0;
goto IL_0017;
}
IL_0016:
{
G_B3_0 = 3;
G_B3_1 = G_B2_0;
}
IL_0017:
{
NullCheck(G_B3_1);
il2cpp_codegen_memory_barrier();
G_B3_1->set_m_state_5(G_B3_0);
return;
}
}
// System.Void System.Threading.CancellationTokenSource::Cancel()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CancellationTokenSource_Cancel_m2D87D42962FF166576B4FB3A34DF5C07F4AECEF1 (CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * __this, const RuntimeMethod* method)
{
{
CancellationTokenSource_Cancel_mB8906521162FEEA6B08E988914457121D32AD48C(__this, (bool)0, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Threading.CancellationTokenSource::Cancel(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CancellationTokenSource_Cancel_mB8906521162FEEA6B08E988914457121D32AD48C (CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * __this, bool ___throwOnFirstException0, const RuntimeMethod* method)
{
{
CancellationTokenSource_ThrowIfDisposed_m8DC7CEE4A830A6A52C568F66A416549C817CFD43(__this, /*hidden argument*/NULL);
bool L_0 = ___throwOnFirstException0;
CancellationTokenSource_NotifyCancellation_m20C2AD82704504311CFEE5E421925917E48663AC(__this, L_0, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Threading.CancellationTokenSource::TimerCallbackLogic(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CancellationTokenSource_TimerCallbackLogic_m6121903E434EDF32A11CA6ED7D4D6CDE7DDE28D8 (RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CancellationTokenSource_TimerCallbackLogic_m6121903E434EDF32A11CA6ED7D4D6CDE7DDE28D8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * V_0 = 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) * 2);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
RuntimeObject * L_0 = ___obj0;
V_0 = ((CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 *)CastclassClass((RuntimeObject*)L_0, CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3_il2cpp_TypeInfo_var));
CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * L_1 = V_0;
NullCheck(L_1);
bool L_2 = CancellationTokenSource_get_IsDisposed_m2B0724AA0E669866A2D9E1D974AA06BB241AD43A_inline(L_1, /*hidden argument*/NULL);
if (L_2)
{
goto IL_0024;
}
}
IL_000f:
try
{ // begin try (depth: 1)
CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * L_3 = V_0;
NullCheck(L_3);
CancellationTokenSource_Cancel_m2D87D42962FF166576B4FB3A34DF5C07F4AECEF1(L_3, /*hidden argument*/NULL);
goto IL_0024;
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (ObjectDisposedException_t29EF6F519F16BA477EC682F23E8344BB1E9A958A_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0017;
throw e;
}
CATCH_0017:
{ // begin catch(System.ObjectDisposedException)
{
CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * L_4 = V_0;
NullCheck(L_4);
bool L_5 = CancellationTokenSource_get_IsDisposed_m2B0724AA0E669866A2D9E1D974AA06BB241AD43A_inline(L_4, /*hidden argument*/NULL);
if (L_5)
{
goto IL_0022;
}
}
IL_0020:
{
IL2CPP_RAISE_MANAGED_EXCEPTION(__exception_local, CancellationTokenSource_TimerCallbackLogic_m6121903E434EDF32A11CA6ED7D4D6CDE7DDE28D8_RuntimeMethod_var);
}
IL_0022:
{
goto IL_0024;
}
} // end catch (depth: 1)
IL_0024:
{
return;
}
}
// System.Void System.Threading.CancellationTokenSource::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CancellationTokenSource_Dispose_m7040D247EFB6C234491C6450AAFFCA879E3ED070 (CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CancellationTokenSource_Dispose_m7040D247EFB6C234491C6450AAFFCA879E3ED070_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
VirtActionInvoker1< bool >::Invoke(5 /* System.Void System.Threading.CancellationTokenSource::Dispose(System.Boolean) */, __this, (bool)1);
IL2CPP_RUNTIME_CLASS_INIT(GC_tD6F0377620BF01385965FD29272CF088A4309C0D_il2cpp_TypeInfo_var);
GC_SuppressFinalize_mEE880E988C6AF32AA2F67F2D62715281EAA41555(__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Threading.CancellationTokenSource::Dispose(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CancellationTokenSource_Dispose_mC34021F6AE30942351855A978782C5D3F79E2F6D (CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * __this, bool ___disposing0, const RuntimeMethod* method)
{
CancellationTokenRegistrationU5BU5D_t864BA2E1E6485FDC593F17F7C01525F33CCE7910* V_0 = NULL;
ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA * V_1 = NULL;
int32_t V_2 = 0;
{
bool L_0 = ___disposing0;
if (!L_0)
{
goto IL_0079;
}
}
{
bool L_1 = __this->get_m_disposed_7();
if (!L_1)
{
goto IL_000c;
}
}
{
return;
}
IL_000c:
{
Timer_t31BE4EDDA5C1CB5CFDF698231850B47B7F9DE9CB * L_2 = __this->get_m_timer_11();
il2cpp_codegen_memory_barrier();
if (!L_2)
{
goto IL_0023;
}
}
{
Timer_t31BE4EDDA5C1CB5CFDF698231850B47B7F9DE9CB * L_3 = __this->get_m_timer_11();
il2cpp_codegen_memory_barrier();
NullCheck(L_3);
Timer_Dispose_m89DE06BE1C2F2AF372D469826A0AA3560665B571(L_3, /*hidden argument*/NULL);
}
IL_0023:
{
CancellationTokenRegistrationU5BU5D_t864BA2E1E6485FDC593F17F7C01525F33CCE7910* L_4 = __this->get_m_linkingRegistrations_8();
V_0 = L_4;
CancellationTokenRegistrationU5BU5D_t864BA2E1E6485FDC593F17F7C01525F33CCE7910* L_5 = V_0;
if (!L_5)
{
goto IL_004e;
}
}
{
__this->set_m_linkingRegistrations_8((CancellationTokenRegistrationU5BU5D_t864BA2E1E6485FDC593F17F7C01525F33CCE7910*)NULL);
V_2 = 0;
goto IL_0048;
}
IL_0038:
{
CancellationTokenRegistrationU5BU5D_t864BA2E1E6485FDC593F17F7C01525F33CCE7910* L_6 = V_0;
int32_t L_7 = V_2;
NullCheck(L_6);
CancellationTokenRegistration_Dispose_mAE8E6F50C883B44EFF2F74E9EA4AD31E9571743F((CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A *)((L_6)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_7))), /*hidden argument*/NULL);
int32_t L_8 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1));
}
IL_0048:
{
int32_t L_9 = V_2;
CancellationTokenRegistrationU5BU5D_t864BA2E1E6485FDC593F17F7C01525F33CCE7910* L_10 = V_0;
NullCheck(L_10);
if ((((int32_t)L_9) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_10)->max_length)))))))
{
goto IL_0038;
}
}
IL_004e:
{
il2cpp_codegen_memory_barrier();
__this->set_m_registeredCallbacksLists_4((SparselyPopulatedArray_1U5BU5D_t4D2064CEC206620DC5001D7C857A845833DCB52A*)NULL);
ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA * L_11 = __this->get_m_kernelEvent_3();
il2cpp_codegen_memory_barrier();
V_1 = L_11;
ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA * L_12 = V_1;
if (!L_12)
{
goto IL_0072;
}
}
{
il2cpp_codegen_memory_barrier();
__this->set_m_kernelEvent_3((ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA *)NULL);
ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA * L_13 = V_1;
NullCheck(L_13);
VirtActionInvoker0::Invoke(11 /* System.Void System.Threading.WaitHandle::Close() */, L_13);
}
IL_0072:
{
__this->set_m_disposed_7((bool)1);
}
IL_0079:
{
return;
}
}
// System.Void System.Threading.CancellationTokenSource::ThrowIfDisposed()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CancellationTokenSource_ThrowIfDisposed_m8DC7CEE4A830A6A52C568F66A416549C817CFD43 (CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CancellationTokenSource_ThrowIfDisposed_m8DC7CEE4A830A6A52C568F66A416549C817CFD43_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
bool L_0 = __this->get_m_disposed_7();
if (!L_0)
{
goto IL_000d;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3_il2cpp_TypeInfo_var);
CancellationTokenSource_ThrowObjectDisposedException_mC6667F20FDC8ECD522C122BF4D18E50BD77D2E06(/*hidden argument*/NULL);
}
IL_000d:
{
return;
}
}
// System.Void System.Threading.CancellationTokenSource::ThrowObjectDisposedException()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CancellationTokenSource_ThrowObjectDisposedException_mC6667F20FDC8ECD522C122BF4D18E50BD77D2E06 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CancellationTokenSource_ThrowObjectDisposedException_mC6667F20FDC8ECD522C122BF4D18E50BD77D2E06_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = Environment_GetResourceString_m8DFF827596B5FD533D3FE56900FA095F7D674617(_stringLiteralF15A890825336F78F675B56DD46CF013E4408900, /*hidden argument*/NULL);
ObjectDisposedException_t29EF6F519F16BA477EC682F23E8344BB1E9A958A * L_1 = (ObjectDisposedException_t29EF6F519F16BA477EC682F23E8344BB1E9A958A *)il2cpp_codegen_object_new(ObjectDisposedException_t29EF6F519F16BA477EC682F23E8344BB1E9A958A_il2cpp_TypeInfo_var);
ObjectDisposedException__ctor_mC830C2F97D5314DF72EEFFE749E7F7FB467D0382(L_1, (String_t*)NULL, L_0, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, CancellationTokenSource_ThrowObjectDisposedException_mC6667F20FDC8ECD522C122BF4D18E50BD77D2E06_RuntimeMethod_var);
}
}
// System.Threading.CancellationTokenSource System.Threading.CancellationTokenSource::InternalGetStaticSource(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * CancellationTokenSource_InternalGetStaticSource_m687D6ABA75BAC174574BC37E67CEC352DAB5834A (bool ___set0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CancellationTokenSource_InternalGetStaticSource_m687D6ABA75BAC174574BC37E67CEC352DAB5834A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
bool L_0 = ___set0;
if (L_0)
{
goto IL_0009;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3_il2cpp_TypeInfo_var);
CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * L_1 = ((CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3_StaticFields*)il2cpp_codegen_static_fields_for(CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3_il2cpp_TypeInfo_var))->get__staticSource_NotCancelable_1();
return L_1;
}
IL_0009:
{
IL2CPP_RUNTIME_CLASS_INIT(CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3_il2cpp_TypeInfo_var);
CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * L_2 = ((CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3_StaticFields*)il2cpp_codegen_static_fields_for(CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3_il2cpp_TypeInfo_var))->get__staticSource_Set_0();
return L_2;
}
}
// System.Threading.CancellationTokenRegistration System.Threading.CancellationTokenSource::InternalRegister(System.Action`1<System.Object>,System.Object,System.Threading.SynchronizationContext,System.Threading.ExecutionContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A CancellationTokenSource_InternalRegister_m267B0001480B4E72BD49B668135B8E988B86AD71 (CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * __this, Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * ___callback0, RuntimeObject * ___stateForCallback1, SynchronizationContext_t17D9365B5E0D30A0910A16FA4351C525232EF069 * ___targetSyncContext2, ExecutionContext_t16AC73BB21FEEEAD34A017877AC18DD8BB836414 * ___executionContext3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CancellationTokenSource_InternalRegister_m267B0001480B4E72BD49B668135B8E988B86AD71_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
CancellationCallbackInfo_t7FC8CF6DB4845FCB0138771E86AE058710B1117B * V_1 = NULL;
SparselyPopulatedArray_1U5BU5D_t4D2064CEC206620DC5001D7C857A845833DCB52A* V_2 = NULL;
SparselyPopulatedArray_1_tA18952D126B9E09096751CC472A19196C8B6C17A * V_3 = NULL;
SparselyPopulatedArrayAddInfo_1_t6EE25E0D720E03DE7A660791DB554CADCD247FC0 V_4;
memset((&V_4), 0, sizeof(V_4));
CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A V_5;
memset((&V_5), 0, sizeof(V_5));
CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A V_6;
memset((&V_6), 0, sizeof(V_6));
SparselyPopulatedArray_1U5BU5D_t4D2064CEC206620DC5001D7C857A845833DCB52A* V_7 = NULL;
SparselyPopulatedArray_1_tA18952D126B9E09096751CC472A19196C8B6C17A * V_8 = NULL;
{
bool L_0 = ((AppContextSwitches_tB32AD47AEBBE99D856C1BC9ACFDAB18C959E4A21_StaticFields*)il2cpp_codegen_static_fields_for(AppContextSwitches_tB32AD47AEBBE99D856C1BC9ACFDAB18C959E4A21_il2cpp_TypeInfo_var))->get_ThrowExceptionIfDisposedCancellationTokenSource_0();
if (!L_0)
{
goto IL_000d;
}
}
{
CancellationTokenSource_ThrowIfDisposed_m8DC7CEE4A830A6A52C568F66A416549C817CFD43(__this, /*hidden argument*/NULL);
}
IL_000d:
{
bool L_1 = CancellationTokenSource_get_IsCancellationRequested_m376281E83A2485CF743433D0660DFE939AFDBA42(__this, /*hidden argument*/NULL);
if (L_1)
{
goto IL_00d2;
}
}
{
bool L_2 = __this->get_m_disposed_7();
if (!L_2)
{
goto IL_0032;
}
}
{
bool L_3 = ((AppContextSwitches_tB32AD47AEBBE99D856C1BC9ACFDAB18C959E4A21_StaticFields*)il2cpp_codegen_static_fields_for(AppContextSwitches_tB32AD47AEBBE99D856C1BC9ACFDAB18C959E4A21_il2cpp_TypeInfo_var))->get_ThrowExceptionIfDisposedCancellationTokenSource_0();
if (L_3)
{
goto IL_0032;
}
}
{
il2cpp_codegen_initobj((&V_6), sizeof(CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A ));
CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A L_4 = V_6;
return L_4;
}
IL_0032:
{
Thread_tB9EB71664220EE16451AF3276D78DE6614D2A414 * L_5 = Thread_get_CurrentThread_m80236D2457FBCC1F76A08711E059A0B738DA71EC(/*hidden argument*/NULL);
NullCheck(L_5);
int32_t L_6 = Thread_get_ManagedThreadId_m7818C94F78A2DE2C7C278F6EA24B31F2BB758FD0(L_5, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3_il2cpp_TypeInfo_var);
int32_t L_7 = ((CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3_StaticFields*)il2cpp_codegen_static_fields_for(CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3_il2cpp_TypeInfo_var))->get_s_nLists_2();
V_0 = ((int32_t)((int32_t)L_6%(int32_t)L_7));
Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * L_8 = ___callback0;
RuntimeObject * L_9 = ___stateForCallback1;
SynchronizationContext_t17D9365B5E0D30A0910A16FA4351C525232EF069 * L_10 = ___targetSyncContext2;
ExecutionContext_t16AC73BB21FEEEAD34A017877AC18DD8BB836414 * L_11 = ___executionContext3;
CancellationCallbackInfo_t7FC8CF6DB4845FCB0138771E86AE058710B1117B * L_12 = (CancellationCallbackInfo_t7FC8CF6DB4845FCB0138771E86AE058710B1117B *)il2cpp_codegen_object_new(CancellationCallbackInfo_t7FC8CF6DB4845FCB0138771E86AE058710B1117B_il2cpp_TypeInfo_var);
CancellationCallbackInfo__ctor_mC68C97270111CBBD71637A10DEC422493183A0B5(L_12, L_8, L_9, L_10, L_11, __this, /*hidden argument*/NULL);
V_1 = L_12;
SparselyPopulatedArray_1U5BU5D_t4D2064CEC206620DC5001D7C857A845833DCB52A* L_13 = __this->get_m_registeredCallbacksLists_4();
il2cpp_codegen_memory_barrier();
V_2 = L_13;
SparselyPopulatedArray_1U5BU5D_t4D2064CEC206620DC5001D7C857A845833DCB52A* L_14 = V_2;
if (L_14)
{
goto IL_007c;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3_il2cpp_TypeInfo_var);
int32_t L_15 = ((CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3_StaticFields*)il2cpp_codegen_static_fields_for(CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3_il2cpp_TypeInfo_var))->get_s_nLists_2();
SparselyPopulatedArray_1U5BU5D_t4D2064CEC206620DC5001D7C857A845833DCB52A* L_16 = (SparselyPopulatedArray_1U5BU5D_t4D2064CEC206620DC5001D7C857A845833DCB52A*)(SparselyPopulatedArray_1U5BU5D_t4D2064CEC206620DC5001D7C857A845833DCB52A*)SZArrayNew(SparselyPopulatedArray_1U5BU5D_t4D2064CEC206620DC5001D7C857A845833DCB52A_il2cpp_TypeInfo_var, (uint32_t)L_15);
V_7 = L_16;
SparselyPopulatedArray_1U5BU5D_t4D2064CEC206620DC5001D7C857A845833DCB52A** L_17 = __this->get_address_of_m_registeredCallbacksLists_4();
il2cpp_codegen_memory_barrier();
SparselyPopulatedArray_1U5BU5D_t4D2064CEC206620DC5001D7C857A845833DCB52A* L_18 = V_7;
SparselyPopulatedArray_1U5BU5D_t4D2064CEC206620DC5001D7C857A845833DCB52A* L_19 = InterlockedCompareExchangeImpl<SparselyPopulatedArray_1U5BU5D_t4D2064CEC206620DC5001D7C857A845833DCB52A*>((SparselyPopulatedArray_1U5BU5D_t4D2064CEC206620DC5001D7C857A845833DCB52A**)L_17, L_18, (SparselyPopulatedArray_1U5BU5D_t4D2064CEC206620DC5001D7C857A845833DCB52A*)(SparselyPopulatedArray_1U5BU5D_t4D2064CEC206620DC5001D7C857A845833DCB52A*)NULL);
V_2 = L_19;
SparselyPopulatedArray_1U5BU5D_t4D2064CEC206620DC5001D7C857A845833DCB52A* L_20 = V_2;
if (L_20)
{
goto IL_007c;
}
}
{
SparselyPopulatedArray_1U5BU5D_t4D2064CEC206620DC5001D7C857A845833DCB52A* L_21 = V_7;
V_2 = L_21;
}
IL_007c:
{
SparselyPopulatedArray_1U5BU5D_t4D2064CEC206620DC5001D7C857A845833DCB52A* L_22 = V_2;
int32_t L_23 = V_0;
NullCheck(L_22);
SparselyPopulatedArray_1_tA18952D126B9E09096751CC472A19196C8B6C17A * L_24 = VolatileRead((SparselyPopulatedArray_1_tA18952D126B9E09096751CC472A19196C8B6C17A **)((L_22)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_23))));
V_3 = L_24;
SparselyPopulatedArray_1_tA18952D126B9E09096751CC472A19196C8B6C17A * L_25 = V_3;
if (L_25)
{
goto IL_00a8;
}
}
{
SparselyPopulatedArray_1_tA18952D126B9E09096751CC472A19196C8B6C17A * L_26 = (SparselyPopulatedArray_1_tA18952D126B9E09096751CC472A19196C8B6C17A *)il2cpp_codegen_object_new(SparselyPopulatedArray_1_tA18952D126B9E09096751CC472A19196C8B6C17A_il2cpp_TypeInfo_var);
SparselyPopulatedArray_1__ctor_m0542398F4469E233FFE39F752ACCDA61CFF0713C(L_26, 4, /*hidden argument*/SparselyPopulatedArray_1__ctor_m0542398F4469E233FFE39F752ACCDA61CFF0713C_RuntimeMethod_var);
V_8 = L_26;
SparselyPopulatedArray_1U5BU5D_t4D2064CEC206620DC5001D7C857A845833DCB52A* L_27 = V_2;
int32_t L_28 = V_0;
NullCheck(L_27);
SparselyPopulatedArray_1_tA18952D126B9E09096751CC472A19196C8B6C17A * L_29 = V_8;
InterlockedCompareExchangeImpl<SparselyPopulatedArray_1_tA18952D126B9E09096751CC472A19196C8B6C17A *>((SparselyPopulatedArray_1_tA18952D126B9E09096751CC472A19196C8B6C17A **)((L_27)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_28))), L_29, (SparselyPopulatedArray_1_tA18952D126B9E09096751CC472A19196C8B6C17A *)NULL);
SparselyPopulatedArray_1U5BU5D_t4D2064CEC206620DC5001D7C857A845833DCB52A* L_30 = V_2;
int32_t L_31 = V_0;
NullCheck(L_30);
int32_t L_32 = L_31;
SparselyPopulatedArray_1_tA18952D126B9E09096751CC472A19196C8B6C17A * L_33 = (SparselyPopulatedArray_1_tA18952D126B9E09096751CC472A19196C8B6C17A *)(L_30)->GetAt(static_cast<il2cpp_array_size_t>(L_32));
V_3 = L_33;
}
IL_00a8:
{
SparselyPopulatedArray_1_tA18952D126B9E09096751CC472A19196C8B6C17A * L_34 = V_3;
CancellationCallbackInfo_t7FC8CF6DB4845FCB0138771E86AE058710B1117B * L_35 = V_1;
NullCheck(L_34);
SparselyPopulatedArrayAddInfo_1_t6EE25E0D720E03DE7A660791DB554CADCD247FC0 L_36 = SparselyPopulatedArray_1_Add_m03AC48E0BC65266B22D95F393919F1C0FC1AC267(L_34, L_35, /*hidden argument*/SparselyPopulatedArray_1_Add_m03AC48E0BC65266B22D95F393919F1C0FC1AC267_RuntimeMethod_var);
V_4 = L_36;
CancellationCallbackInfo_t7FC8CF6DB4845FCB0138771E86AE058710B1117B * L_37 = V_1;
SparselyPopulatedArrayAddInfo_1_t6EE25E0D720E03DE7A660791DB554CADCD247FC0 L_38 = V_4;
CancellationTokenRegistration__ctor_m2C98F974EA487E2A4D7CE75255D5257FC7071469((CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A *)(&V_5), L_37, L_38, /*hidden argument*/NULL);
bool L_39 = CancellationTokenSource_get_IsCancellationRequested_m376281E83A2485CF743433D0660DFE939AFDBA42(__this, /*hidden argument*/NULL);
if (L_39)
{
goto IL_00c6;
}
}
{
CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A L_40 = V_5;
return L_40;
}
IL_00c6:
{
bool L_41 = CancellationTokenRegistration_TryDeregister_m07D7CD3452E63F1E9304D6CB26E4E1A8E347241D((CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A *)(&V_5), /*hidden argument*/NULL);
if (L_41)
{
goto IL_00d2;
}
}
{
CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A L_42 = V_5;
return L_42;
}
IL_00d2:
{
Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * L_43 = ___callback0;
RuntimeObject * L_44 = ___stateForCallback1;
NullCheck(L_43);
Action_1_Invoke_m587509C88BB83721D7918D89DF07606BB752D744(L_43, L_44, /*hidden argument*/Action_1_Invoke_m587509C88BB83721D7918D89DF07606BB752D744_RuntimeMethod_var);
il2cpp_codegen_initobj((&V_6), sizeof(CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A ));
CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A L_45 = V_6;
return L_45;
}
}
// System.Void System.Threading.CancellationTokenSource::NotifyCancellation(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CancellationTokenSource_NotifyCancellation_m20C2AD82704504311CFEE5E421925917E48663AC (CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * __this, bool ___throwOnFirstException0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CancellationTokenSource_NotifyCancellation_m20C2AD82704504311CFEE5E421925917E48663AC_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Timer_t31BE4EDDA5C1CB5CFDF698231850B47B7F9DE9CB * V_0 = NULL;
ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA * V_1 = 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) * 2);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
bool L_0 = CancellationTokenSource_get_IsCancellationRequested_m376281E83A2485CF743433D0660DFE939AFDBA42(__this, /*hidden argument*/NULL);
if (!L_0)
{
goto IL_0009;
}
}
{
return;
}
IL_0009:
{
int32_t* L_1 = __this->get_address_of_m_state_5();
il2cpp_codegen_memory_barrier();
int32_t L_2 = Interlocked_CompareExchange_m317AD9524376B7BE74DD9069346E345F2B131382((int32_t*)L_1, 2, 1, /*hidden argument*/NULL);
if ((!(((uint32_t)L_2) == ((uint32_t)1))))
{
goto IL_0066;
}
}
{
Timer_t31BE4EDDA5C1CB5CFDF698231850B47B7F9DE9CB * L_3 = __this->get_m_timer_11();
il2cpp_codegen_memory_barrier();
V_0 = L_3;
Timer_t31BE4EDDA5C1CB5CFDF698231850B47B7F9DE9CB * L_4 = V_0;
if (!L_4)
{
goto IL_002b;
}
}
{
Timer_t31BE4EDDA5C1CB5CFDF698231850B47B7F9DE9CB * L_5 = V_0;
NullCheck(L_5);
Timer_Dispose_m89DE06BE1C2F2AF372D469826A0AA3560665B571(L_5, /*hidden argument*/NULL);
}
IL_002b:
{
Thread_tB9EB71664220EE16451AF3276D78DE6614D2A414 * L_6 = Thread_get_CurrentThread_m80236D2457FBCC1F76A08711E059A0B738DA71EC(/*hidden argument*/NULL);
NullCheck(L_6);
int32_t L_7 = Thread_get_ManagedThreadId_m7818C94F78A2DE2C7C278F6EA24B31F2BB758FD0(L_6, /*hidden argument*/NULL);
CancellationTokenSource_set_ThreadIDExecutingCallbacks_m463EA20D8480CF58451097E4F789315EC0D7A6C3(__this, L_7, /*hidden argument*/NULL);
ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA * L_8 = __this->get_m_kernelEvent_3();
il2cpp_codegen_memory_barrier();
V_1 = L_8;
ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA * L_9 = V_1;
if (!L_9)
{
goto IL_005f;
}
}
IL_0047:
try
{ // begin try (depth: 1)
ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA * L_10 = V_1;
NullCheck(L_10);
EventWaitHandle_Set_m81764C887F38A1153224557B26CD688B59987B38(L_10, /*hidden argument*/NULL);
goto IL_005f;
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (ObjectDisposedException_t29EF6F519F16BA477EC682F23E8344BB1E9A958A_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0050;
throw e;
}
CATCH_0050:
{ // begin catch(System.ObjectDisposedException)
{
ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA * L_11 = __this->get_m_kernelEvent_3();
il2cpp_codegen_memory_barrier();
if (!L_11)
{
goto IL_005d;
}
}
IL_005b:
{
IL2CPP_RAISE_MANAGED_EXCEPTION(__exception_local, CancellationTokenSource_NotifyCancellation_m20C2AD82704504311CFEE5E421925917E48663AC_RuntimeMethod_var);
}
IL_005d:
{
goto IL_005f;
}
} // end catch (depth: 1)
IL_005f:
{
bool L_12 = ___throwOnFirstException0;
CancellationTokenSource_ExecuteCallbackHandlers_m6E5B184DFC8D9705C23FE425748588C4930F3B3A(__this, L_12, /*hidden argument*/NULL);
}
IL_0066:
{
return;
}
}
// System.Void System.Threading.CancellationTokenSource::ExecuteCallbackHandlers(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CancellationTokenSource_ExecuteCallbackHandlers_m6E5B184DFC8D9705C23FE425748588C4930F3B3A (CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * __this, bool ___throwOnFirstException0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CancellationTokenSource_ExecuteCallbackHandlers_m6E5B184DFC8D9705C23FE425748588C4930F3B3A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
List_1_t433251677FFAE6CDCEC92C181CEA282328DA13EB * V_0 = NULL;
SparselyPopulatedArray_1U5BU5D_t4D2064CEC206620DC5001D7C857A845833DCB52A* V_1 = NULL;
int32_t V_2 = 0;
SparselyPopulatedArray_1_tA18952D126B9E09096751CC472A19196C8B6C17A * V_3 = NULL;
SparselyPopulatedArrayFragment_1_t93197EF47D6A025755987003D5D62F3AED371C21 * V_4 = NULL;
int32_t V_5 = 0;
CancellationCallbackCoreWorkArguments_t9ECCD883EF9DF3283696D1CE1F7A81C0F075923E V_6;
memset((&V_6), 0, sizeof(V_6));
Exception_t * V_7 = 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) * 3);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
V_0 = (List_1_t433251677FFAE6CDCEC92C181CEA282328DA13EB *)NULL;
SparselyPopulatedArray_1U5BU5D_t4D2064CEC206620DC5001D7C857A845833DCB52A* L_0 = __this->get_m_registeredCallbacksLists_4();
il2cpp_codegen_memory_barrier();
V_1 = L_0;
SparselyPopulatedArray_1U5BU5D_t4D2064CEC206620DC5001D7C857A845833DCB52A* L_1 = V_1;
if (L_1)
{
goto IL_001c;
}
}
{
int32_t* L_2 = __this->get_address_of_m_state_5();
il2cpp_codegen_memory_barrier();
Interlocked_Exchange_mCB69CAC317F723A1CB6B52194C5917B49C456794((int32_t*)L_2, 3, /*hidden argument*/NULL);
return;
}
IL_001c:
{
}
IL_001d:
try
{ // begin try (depth: 1)
{
V_2 = 0;
goto IL_0106;
}
IL_0024:
{
SparselyPopulatedArray_1U5BU5D_t4D2064CEC206620DC5001D7C857A845833DCB52A* L_3 = V_1;
int32_t L_4 = V_2;
NullCheck(L_3);
SparselyPopulatedArray_1_tA18952D126B9E09096751CC472A19196C8B6C17A * L_5 = VolatileRead((SparselyPopulatedArray_1_tA18952D126B9E09096751CC472A19196C8B6C17A **)((L_3)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_4))));
V_3 = L_5;
SparselyPopulatedArray_1_tA18952D126B9E09096751CC472A19196C8B6C17A * L_6 = V_3;
if (!L_6)
{
goto IL_0102;
}
}
IL_0037:
{
SparselyPopulatedArray_1_tA18952D126B9E09096751CC472A19196C8B6C17A * L_7 = V_3;
NullCheck(L_7);
SparselyPopulatedArrayFragment_1_t93197EF47D6A025755987003D5D62F3AED371C21 * L_8 = SparselyPopulatedArray_1_get_Tail_m7749F3933E39089960D3DB149DEBA7E701978651(L_7, /*hidden argument*/SparselyPopulatedArray_1_get_Tail_m7749F3933E39089960D3DB149DEBA7E701978651_RuntimeMethod_var);
V_4 = L_8;
goto IL_00fb;
}
IL_0044:
{
SparselyPopulatedArrayFragment_1_t93197EF47D6A025755987003D5D62F3AED371C21 * L_9 = V_4;
NullCheck(L_9);
int32_t L_10 = SparselyPopulatedArrayFragment_1_get_Length_m9FED821013845290BD7D80EA322F79C7EBD9B4ED(L_9, /*hidden argument*/SparselyPopulatedArrayFragment_1_get_Length_m9FED821013845290BD7D80EA322F79C7EBD9B4ED_RuntimeMethod_var);
V_5 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_10, (int32_t)1));
goto IL_00ea;
}
IL_0054:
{
SparselyPopulatedArrayFragment_1_t93197EF47D6A025755987003D5D62F3AED371C21 * L_11 = V_4;
int32_t L_12 = V_5;
NullCheck(L_11);
CancellationCallbackInfo_t7FC8CF6DB4845FCB0138771E86AE058710B1117B * L_13 = SparselyPopulatedArrayFragment_1_get_Item_mF46D1EABA9E4CD31BF19C89ADB562D4470A95330(L_11, L_12, /*hidden argument*/SparselyPopulatedArrayFragment_1_get_Item_mF46D1EABA9E4CD31BF19C89ADB562D4470A95330_RuntimeMethod_var);
il2cpp_codegen_memory_barrier();
__this->set_m_executingCallback_10(L_13);
CancellationCallbackInfo_t7FC8CF6DB4845FCB0138771E86AE058710B1117B * L_14 = __this->get_m_executingCallback_10();
il2cpp_codegen_memory_barrier();
if (!L_14)
{
goto IL_00e4;
}
}
IL_006f:
{
SparselyPopulatedArrayFragment_1_t93197EF47D6A025755987003D5D62F3AED371C21 * L_15 = V_4;
int32_t L_16 = V_5;
CancellationCallbackCoreWorkArguments__ctor_m5E2EF8B57D020415220D0EAF8602E1A4D27BD00A((CancellationCallbackCoreWorkArguments_t9ECCD883EF9DF3283696D1CE1F7A81C0F075923E *)(&V_6), L_15, L_16, /*hidden argument*/NULL);
}
IL_007a:
try
{ // begin try (depth: 2)
{
CancellationCallbackInfo_t7FC8CF6DB4845FCB0138771E86AE058710B1117B * L_17 = __this->get_m_executingCallback_10();
il2cpp_codegen_memory_barrier();
NullCheck(L_17);
SynchronizationContext_t17D9365B5E0D30A0910A16FA4351C525232EF069 * L_18 = ((CancellationCallbackInfo_t7FC8CF6DB4845FCB0138771E86AE058710B1117B *)L_17)->get_TargetSyncContext_2();
if (!L_18)
{
goto IL_00c0;
}
}
IL_0089:
{
CancellationCallbackInfo_t7FC8CF6DB4845FCB0138771E86AE058710B1117B * L_19 = __this->get_m_executingCallback_10();
il2cpp_codegen_memory_barrier();
NullCheck(L_19);
SynchronizationContext_t17D9365B5E0D30A0910A16FA4351C525232EF069 * L_20 = ((CancellationCallbackInfo_t7FC8CF6DB4845FCB0138771E86AE058710B1117B *)L_19)->get_TargetSyncContext_2();
SendOrPostCallback_t6B7334CE017AF595535507519400AC02D688DC3C * L_21 = (SendOrPostCallback_t6B7334CE017AF595535507519400AC02D688DC3C *)il2cpp_codegen_object_new(SendOrPostCallback_t6B7334CE017AF595535507519400AC02D688DC3C_il2cpp_TypeInfo_var);
SendOrPostCallback__ctor_m68774F2BDC46DE2BA6C3D61D66481FD4D994F6A4(L_21, __this, (intptr_t)((intptr_t)CancellationTokenSource_CancellationCallbackCoreWork_OnSyncContext_m0B8219A75EE0623356F2551BD8D8C990DEBA1465_RuntimeMethod_var), /*hidden argument*/NULL);
CancellationCallbackCoreWorkArguments_t9ECCD883EF9DF3283696D1CE1F7A81C0F075923E L_22 = V_6;
CancellationCallbackCoreWorkArguments_t9ECCD883EF9DF3283696D1CE1F7A81C0F075923E L_23 = L_22;
RuntimeObject * L_24 = Box(CancellationCallbackCoreWorkArguments_t9ECCD883EF9DF3283696D1CE1F7A81C0F075923E_il2cpp_TypeInfo_var, &L_23);
NullCheck(L_20);
VirtActionInvoker2< SendOrPostCallback_t6B7334CE017AF595535507519400AC02D688DC3C *, RuntimeObject * >::Invoke(4 /* System.Void System.Threading.SynchronizationContext::Send(System.Threading.SendOrPostCallback,System.Object) */, L_20, L_21, L_24);
Thread_tB9EB71664220EE16451AF3276D78DE6614D2A414 * L_25 = Thread_get_CurrentThread_m80236D2457FBCC1F76A08711E059A0B738DA71EC(/*hidden argument*/NULL);
NullCheck(L_25);
int32_t L_26 = Thread_get_ManagedThreadId_m7818C94F78A2DE2C7C278F6EA24B31F2BB758FD0(L_25, /*hidden argument*/NULL);
CancellationTokenSource_set_ThreadIDExecutingCallbacks_m463EA20D8480CF58451097E4F789315EC0D7A6C3(__this, L_26, /*hidden argument*/NULL);
goto IL_00c8;
}
IL_00c0:
{
CancellationCallbackCoreWorkArguments_t9ECCD883EF9DF3283696D1CE1F7A81C0F075923E L_27 = V_6;
CancellationTokenSource_CancellationCallbackCoreWork_mB9D81B1EC9C03428670954135B73B2BE14E02260(__this, L_27, /*hidden argument*/NULL);
}
IL_00c8:
{
goto IL_00e4;
}
} // end try (depth: 2)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_00ca;
throw e;
}
CATCH_00ca:
{ // begin catch(System.Exception)
{
V_7 = ((Exception_t *)__exception_local);
bool L_28 = ___throwOnFirstException0;
if (!L_28)
{
goto IL_00d1;
}
}
IL_00cf:
{
IL2CPP_RAISE_MANAGED_EXCEPTION(__exception_local, CancellationTokenSource_ExecuteCallbackHandlers_m6E5B184DFC8D9705C23FE425748588C4930F3B3A_RuntimeMethod_var);
}
IL_00d1:
{
List_1_t433251677FFAE6CDCEC92C181CEA282328DA13EB * L_29 = V_0;
if (L_29)
{
goto IL_00da;
}
}
IL_00d4:
{
List_1_t433251677FFAE6CDCEC92C181CEA282328DA13EB * L_30 = (List_1_t433251677FFAE6CDCEC92C181CEA282328DA13EB *)il2cpp_codegen_object_new(List_1_t433251677FFAE6CDCEC92C181CEA282328DA13EB_il2cpp_TypeInfo_var);
List_1__ctor_m35CA066810D9B3641F72BBF74383AAA4CF7EC3DE(L_30, /*hidden argument*/List_1__ctor_m35CA066810D9B3641F72BBF74383AAA4CF7EC3DE_RuntimeMethod_var);
V_0 = L_30;
}
IL_00da:
{
List_1_t433251677FFAE6CDCEC92C181CEA282328DA13EB * L_31 = V_0;
Exception_t * L_32 = V_7;
NullCheck(L_31);
List_1_Add_m11BADA3EECE6909E4F094E70A7EC1FED692E1892(L_31, L_32, /*hidden argument*/List_1_Add_m11BADA3EECE6909E4F094E70A7EC1FED692E1892_RuntimeMethod_var);
goto IL_00e4;
}
} // end catch (depth: 2)
IL_00e4:
{
int32_t L_33 = V_5;
V_5 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_33, (int32_t)1));
}
IL_00ea:
{
int32_t L_34 = V_5;
if ((((int32_t)L_34) >= ((int32_t)0)))
{
goto IL_0054;
}
}
IL_00f2:
{
SparselyPopulatedArrayFragment_1_t93197EF47D6A025755987003D5D62F3AED371C21 * L_35 = V_4;
NullCheck(L_35);
SparselyPopulatedArrayFragment_1_t93197EF47D6A025755987003D5D62F3AED371C21 * L_36 = SparselyPopulatedArrayFragment_1_get_Prev_m42ED5979D69ED7B9F7F13903C9AEB064DD014F27(L_35, /*hidden argument*/SparselyPopulatedArrayFragment_1_get_Prev_m42ED5979D69ED7B9F7F13903C9AEB064DD014F27_RuntimeMethod_var);
V_4 = L_36;
}
IL_00fb:
{
SparselyPopulatedArrayFragment_1_t93197EF47D6A025755987003D5D62F3AED371C21 * L_37 = V_4;
if (L_37)
{
goto IL_0044;
}
}
IL_0102:
{
int32_t L_38 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_38, (int32_t)1));
}
IL_0106:
{
int32_t L_39 = V_2;
SparselyPopulatedArray_1U5BU5D_t4D2064CEC206620DC5001D7C857A845833DCB52A* L_40 = V_1;
NullCheck(L_40);
if ((((int32_t)L_39) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_40)->max_length)))))))
{
goto IL_0024;
}
}
IL_010f:
{
IL2CPP_LEAVE(0x129, FINALLY_0111);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0111;
}
FINALLY_0111:
{ // begin finally (depth: 1)
il2cpp_codegen_memory_barrier();
__this->set_m_state_5(3);
il2cpp_codegen_memory_barrier();
__this->set_m_executingCallback_10((CancellationCallbackInfo_t7FC8CF6DB4845FCB0138771E86AE058710B1117B *)NULL);
Thread_MemoryBarrier_m9E2B68F7889D5D3AD76126930EE120D51C1B3402(/*hidden argument*/NULL);
IL2CPP_END_FINALLY(273)
} // end finally (depth: 1)
IL2CPP_CLEANUP(273)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
IL2CPP_JUMP_TBL(0x129, IL_0129)
}
IL_0129:
{
List_1_t433251677FFAE6CDCEC92C181CEA282328DA13EB * L_41 = V_0;
if (!L_41)
{
goto IL_0133;
}
}
{
List_1_t433251677FFAE6CDCEC92C181CEA282328DA13EB * L_42 = V_0;
AggregateException_t45A871D3DBDA3E28FBCD8DF21F6772238FC55BD1 * L_43 = (AggregateException_t45A871D3DBDA3E28FBCD8DF21F6772238FC55BD1 *)il2cpp_codegen_object_new(AggregateException_t45A871D3DBDA3E28FBCD8DF21F6772238FC55BD1_il2cpp_TypeInfo_var);
AggregateException__ctor_m8402940DB4199F47B93D5E4A649438657D288BC1(L_43, L_42, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_43, CancellationTokenSource_ExecuteCallbackHandlers_m6E5B184DFC8D9705C23FE425748588C4930F3B3A_RuntimeMethod_var);
}
IL_0133:
{
return;
}
}
// System.Void System.Threading.CancellationTokenSource::CancellationCallbackCoreWork_OnSyncContext(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CancellationTokenSource_CancellationCallbackCoreWork_OnSyncContext_m0B8219A75EE0623356F2551BD8D8C990DEBA1465 (CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CancellationTokenSource_CancellationCallbackCoreWork_OnSyncContext_m0B8219A75EE0623356F2551BD8D8C990DEBA1465_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___obj0;
CancellationTokenSource_CancellationCallbackCoreWork_mB9D81B1EC9C03428670954135B73B2BE14E02260(__this, ((*(CancellationCallbackCoreWorkArguments_t9ECCD883EF9DF3283696D1CE1F7A81C0F075923E *)((CancellationCallbackCoreWorkArguments_t9ECCD883EF9DF3283696D1CE1F7A81C0F075923E *)UnBox(L_0, CancellationCallbackCoreWorkArguments_t9ECCD883EF9DF3283696D1CE1F7A81C0F075923E_il2cpp_TypeInfo_var)))), /*hidden argument*/NULL);
return;
}
}
// System.Void System.Threading.CancellationTokenSource::CancellationCallbackCoreWork(System.Threading.CancellationCallbackCoreWorkArguments)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CancellationTokenSource_CancellationCallbackCoreWork_mB9D81B1EC9C03428670954135B73B2BE14E02260 (CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * __this, CancellationCallbackCoreWorkArguments_t9ECCD883EF9DF3283696D1CE1F7A81C0F075923E ___args0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CancellationTokenSource_CancellationCallbackCoreWork_mB9D81B1EC9C03428670954135B73B2BE14E02260_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
CancellationCallbackInfo_t7FC8CF6DB4845FCB0138771E86AE058710B1117B * V_0 = NULL;
{
CancellationCallbackCoreWorkArguments_t9ECCD883EF9DF3283696D1CE1F7A81C0F075923E L_0 = ___args0;
SparselyPopulatedArrayFragment_1_t93197EF47D6A025755987003D5D62F3AED371C21 * L_1 = L_0.get_m_currArrayFragment_0();
CancellationCallbackCoreWorkArguments_t9ECCD883EF9DF3283696D1CE1F7A81C0F075923E L_2 = ___args0;
int32_t L_3 = L_2.get_m_currArrayIndex_1();
CancellationCallbackInfo_t7FC8CF6DB4845FCB0138771E86AE058710B1117B * L_4 = __this->get_m_executingCallback_10();
il2cpp_codegen_memory_barrier();
NullCheck(L_1);
CancellationCallbackInfo_t7FC8CF6DB4845FCB0138771E86AE058710B1117B * L_5 = SparselyPopulatedArrayFragment_1_SafeAtomicRemove_m3437B32D4F3791CD88594253B6B9FDED9BAF053D(L_1, L_3, L_4, /*hidden argument*/SparselyPopulatedArrayFragment_1_SafeAtomicRemove_m3437B32D4F3791CD88594253B6B9FDED9BAF053D_RuntimeMethod_var);
V_0 = L_5;
CancellationCallbackInfo_t7FC8CF6DB4845FCB0138771E86AE058710B1117B * L_6 = V_0;
CancellationCallbackInfo_t7FC8CF6DB4845FCB0138771E86AE058710B1117B * L_7 = __this->get_m_executingCallback_10();
il2cpp_codegen_memory_barrier();
if ((!(((RuntimeObject*)(CancellationCallbackInfo_t7FC8CF6DB4845FCB0138771E86AE058710B1117B *)L_6) == ((RuntimeObject*)(CancellationCallbackInfo_t7FC8CF6DB4845FCB0138771E86AE058710B1117B *)L_7))))
{
goto IL_0048;
}
}
{
CancellationCallbackInfo_t7FC8CF6DB4845FCB0138771E86AE058710B1117B * L_8 = V_0;
NullCheck(L_8);
ExecutionContext_t16AC73BB21FEEEAD34A017877AC18DD8BB836414 * L_9 = L_8->get_TargetExecutionContext_3();
if (!L_9)
{
goto IL_0042;
}
}
{
CancellationCallbackInfo_t7FC8CF6DB4845FCB0138771E86AE058710B1117B * L_10 = V_0;
NullCheck(L_10);
CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * L_11 = L_10->get_CancellationTokenSource_4();
Thread_tB9EB71664220EE16451AF3276D78DE6614D2A414 * L_12 = Thread_get_CurrentThread_m80236D2457FBCC1F76A08711E059A0B738DA71EC(/*hidden argument*/NULL);
NullCheck(L_12);
int32_t L_13 = Thread_get_ManagedThreadId_m7818C94F78A2DE2C7C278F6EA24B31F2BB758FD0(L_12, /*hidden argument*/NULL);
NullCheck(L_11);
CancellationTokenSource_set_ThreadIDExecutingCallbacks_m463EA20D8480CF58451097E4F789315EC0D7A6C3(L_11, L_13, /*hidden argument*/NULL);
}
IL_0042:
{
CancellationCallbackInfo_t7FC8CF6DB4845FCB0138771E86AE058710B1117B * L_14 = V_0;
NullCheck(L_14);
CancellationCallbackInfo_ExecuteCallback_m7042487D5FCE84590D95167D0B84910D02DBDF81(L_14, /*hidden argument*/NULL);
}
IL_0048:
{
return;
}
}
// System.Threading.CancellationTokenSource System.Threading.CancellationTokenSource::CreateLinkedTokenSource(System.Threading.CancellationToken,System.Threading.CancellationToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * CancellationTokenSource_CreateLinkedTokenSource_mBCC8769107D706E358D18C97520172AD8CE79480 (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___token10, CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD ___token21, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CancellationTokenSource_CreateLinkedTokenSource_mBCC8769107D706E358D18C97520172AD8CE79480_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * V_0 = NULL;
bool V_1 = false;
int32_t V_2 = 0;
CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * G_B3_0 = NULL;
CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * G_B2_0 = NULL;
int32_t G_B4_0 = 0;
CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * G_B4_1 = NULL;
{
CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * L_0 = (CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 *)il2cpp_codegen_object_new(CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3_il2cpp_TypeInfo_var);
CancellationTokenSource__ctor_mC30FDC4F672A8495141CC213126B7FEA2A1BDCEB(L_0, /*hidden argument*/NULL);
V_0 = L_0;
bool L_1 = CancellationToken_get_CanBeCanceled_m6E3578EE53E9E051760D798F120A1EB4357B4E09((CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD *)(&___token21), /*hidden argument*/NULL);
V_1 = L_1;
bool L_2 = CancellationToken_get_CanBeCanceled_m6E3578EE53E9E051760D798F120A1EB4357B4E09((CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD *)(&___token10), /*hidden argument*/NULL);
if (!L_2)
{
goto IL_0042;
}
}
{
CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * L_3 = V_0;
bool L_4 = V_1;
G_B2_0 = L_3;
if (L_4)
{
G_B3_0 = L_3;
goto IL_001e;
}
}
{
G_B4_0 = 1;
G_B4_1 = G_B2_0;
goto IL_001f;
}
IL_001e:
{
G_B4_0 = 2;
G_B4_1 = G_B3_0;
}
IL_001f:
{
CancellationTokenRegistrationU5BU5D_t864BA2E1E6485FDC593F17F7C01525F33CCE7910* L_5 = (CancellationTokenRegistrationU5BU5D_t864BA2E1E6485FDC593F17F7C01525F33CCE7910*)(CancellationTokenRegistrationU5BU5D_t864BA2E1E6485FDC593F17F7C01525F33CCE7910*)SZArrayNew(CancellationTokenRegistrationU5BU5D_t864BA2E1E6485FDC593F17F7C01525F33CCE7910_il2cpp_TypeInfo_var, (uint32_t)G_B4_0);
NullCheck(G_B4_1);
G_B4_1->set_m_linkingRegistrations_8(L_5);
CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * L_6 = V_0;
NullCheck(L_6);
CancellationTokenRegistrationU5BU5D_t864BA2E1E6485FDC593F17F7C01525F33CCE7910* L_7 = L_6->get_m_linkingRegistrations_8();
IL2CPP_RUNTIME_CLASS_INIT(CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3_il2cpp_TypeInfo_var);
Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * L_8 = ((CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3_StaticFields*)il2cpp_codegen_static_fields_for(CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3_il2cpp_TypeInfo_var))->get_s_LinkedTokenCancelDelegate_9();
CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * L_9 = V_0;
CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A L_10 = CancellationToken_InternalRegisterWithoutEC_m2450607A39759489E06741B35DE71DD2C677B5CC((CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD *)(&___token10), L_8, L_9, /*hidden argument*/NULL);
NullCheck(L_7);
(L_7)->SetAt(static_cast<il2cpp_array_size_t>(0), (CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A )L_10);
}
IL_0042:
{
bool L_11 = V_1;
if (!L_11)
{
goto IL_0076;
}
}
{
V_2 = 1;
CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * L_12 = V_0;
NullCheck(L_12);
CancellationTokenRegistrationU5BU5D_t864BA2E1E6485FDC593F17F7C01525F33CCE7910* L_13 = L_12->get_m_linkingRegistrations_8();
if (L_13)
{
goto IL_005d;
}
}
{
CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * L_14 = V_0;
CancellationTokenRegistrationU5BU5D_t864BA2E1E6485FDC593F17F7C01525F33CCE7910* L_15 = (CancellationTokenRegistrationU5BU5D_t864BA2E1E6485FDC593F17F7C01525F33CCE7910*)(CancellationTokenRegistrationU5BU5D_t864BA2E1E6485FDC593F17F7C01525F33CCE7910*)SZArrayNew(CancellationTokenRegistrationU5BU5D_t864BA2E1E6485FDC593F17F7C01525F33CCE7910_il2cpp_TypeInfo_var, (uint32_t)1);
NullCheck(L_14);
L_14->set_m_linkingRegistrations_8(L_15);
V_2 = 0;
}
IL_005d:
{
CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * L_16 = V_0;
NullCheck(L_16);
CancellationTokenRegistrationU5BU5D_t864BA2E1E6485FDC593F17F7C01525F33CCE7910* L_17 = L_16->get_m_linkingRegistrations_8();
int32_t L_18 = V_2;
IL2CPP_RUNTIME_CLASS_INIT(CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3_il2cpp_TypeInfo_var);
Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * L_19 = ((CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3_StaticFields*)il2cpp_codegen_static_fields_for(CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3_il2cpp_TypeInfo_var))->get_s_LinkedTokenCancelDelegate_9();
CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * L_20 = V_0;
CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A L_21 = CancellationToken_InternalRegisterWithoutEC_m2450607A39759489E06741B35DE71DD2C677B5CC((CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD *)(&___token21), L_19, L_20, /*hidden argument*/NULL);
NullCheck(L_17);
(L_17)->SetAt(static_cast<il2cpp_array_size_t>(L_18), (CancellationTokenRegistration_t407059AA0E00ABE74F43C533E7D035C4BA451F6A )L_21);
}
IL_0076:
{
CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * L_22 = V_0;
return L_22;
}
}
// System.Void System.Threading.CancellationTokenSource::WaitForCallbackToComplete(System.Threading.CancellationCallbackInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CancellationTokenSource_WaitForCallbackToComplete_m82707ECECF88825CA048EDE223BE5342BB502B71 (CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * __this, CancellationCallbackInfo_t7FC8CF6DB4845FCB0138771E86AE058710B1117B * ___callbackInfo0, const RuntimeMethod* method)
{
SpinWait_tEBEEDAE5AEEBBDDEA635932A22308A8398C9AED9 V_0;
memset((&V_0), 0, sizeof(V_0));
{
il2cpp_codegen_initobj((&V_0), sizeof(SpinWait_tEBEEDAE5AEEBBDDEA635932A22308A8398C9AED9 ));
goto IL_0011;
}
IL_000a:
{
SpinWait_SpinOnce_m79A8F770ED24E400B6AEFA421A33084CA54E59DB((SpinWait_tEBEEDAE5AEEBBDDEA635932A22308A8398C9AED9 *)(&V_0), /*hidden argument*/NULL);
}
IL_0011:
{
CancellationCallbackInfo_t7FC8CF6DB4845FCB0138771E86AE058710B1117B * L_0 = CancellationTokenSource_get_ExecutingCallback_m3426CE920853CC59E4A26C45D0555B46DB2BA557(__this, /*hidden argument*/NULL);
CancellationCallbackInfo_t7FC8CF6DB4845FCB0138771E86AE058710B1117B * L_1 = ___callbackInfo0;
if ((((RuntimeObject*)(CancellationCallbackInfo_t7FC8CF6DB4845FCB0138771E86AE058710B1117B *)L_0) == ((RuntimeObject*)(CancellationCallbackInfo_t7FC8CF6DB4845FCB0138771E86AE058710B1117B *)L_1)))
{
goto IL_000a;
}
}
{
return;
}
}
// System.Void System.Threading.CancellationTokenSource::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CancellationTokenSource__cctor_m074DD94C233CE72B6F7455591D509B588BD28867 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CancellationTokenSource__cctor_m074DD94C233CE72B6F7455591D509B588BD28867_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t G_B3_0 = 0;
{
CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * L_0 = (CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 *)il2cpp_codegen_object_new(CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3_il2cpp_TypeInfo_var);
CancellationTokenSource__ctor_m2B949404F9AA4D9E7C56C6EA5A5EFA7011BE3409(L_0, (bool)1, /*hidden argument*/NULL);
((CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3_StaticFields*)il2cpp_codegen_static_fields_for(CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3_il2cpp_TypeInfo_var))->set__staticSource_Set_0(L_0);
CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * L_1 = (CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 *)il2cpp_codegen_object_new(CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3_il2cpp_TypeInfo_var);
CancellationTokenSource__ctor_m2B949404F9AA4D9E7C56C6EA5A5EFA7011BE3409(L_1, (bool)0, /*hidden argument*/NULL);
((CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3_StaticFields*)il2cpp_codegen_static_fields_for(CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3_il2cpp_TypeInfo_var))->set__staticSource_NotCancelable_1(L_1);
int32_t L_2 = PlatformHelper_get_ProcessorCount_m2FC3FF428431A972832C7BFE6CFAB8A262F42CA0(/*hidden argument*/NULL);
if ((((int32_t)L_2) > ((int32_t)((int32_t)24))))
{
goto IL_0026;
}
}
{
int32_t L_3 = PlatformHelper_get_ProcessorCount_m2FC3FF428431A972832C7BFE6CFAB8A262F42CA0(/*hidden argument*/NULL);
G_B3_0 = L_3;
goto IL_0028;
}
IL_0026:
{
G_B3_0 = ((int32_t)24);
}
IL_0028:
{
((CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3_StaticFields*)il2cpp_codegen_static_fields_for(CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3_il2cpp_TypeInfo_var))->set_s_nLists_2(G_B3_0);
Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC * L_4 = (Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC *)il2cpp_codegen_object_new(Action_1_tD9663D9715FAA4E62035CFCF1AD4D094EE7872DC_il2cpp_TypeInfo_var);
Action_1__ctor_mA671E933C9D3DAE4E3F71D34FDDA971739618158(L_4, NULL, (intptr_t)((intptr_t)CancellationTokenSource_LinkedTokenCancelDelegate_m734F7AC3FE79561862209F51B80266E40752E0A5_RuntimeMethod_var), /*hidden argument*/Action_1__ctor_mA671E933C9D3DAE4E3F71D34FDDA971739618158_RuntimeMethod_var);
((CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3_StaticFields*)il2cpp_codegen_static_fields_for(CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3_il2cpp_TypeInfo_var))->set_s_LinkedTokenCancelDelegate_9(L_4);
TimerCallback_tD193CC50BF27E129E6857E1E8A7EAC24BD131814 * L_5 = (TimerCallback_tD193CC50BF27E129E6857E1E8A7EAC24BD131814 *)il2cpp_codegen_object_new(TimerCallback_tD193CC50BF27E129E6857E1E8A7EAC24BD131814_il2cpp_TypeInfo_var);
TimerCallback__ctor_mA825B3FFCCA028905D47A189B70186E047283684(L_5, NULL, (intptr_t)((intptr_t)CancellationTokenSource_TimerCallbackLogic_m6121903E434EDF32A11CA6ED7D4D6CDE7DDE28D8_RuntimeMethod_var), /*hidden argument*/NULL);
((CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3_StaticFields*)il2cpp_codegen_static_fields_for(CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3_il2cpp_TypeInfo_var))->set_s_timerCallback_12(L_5);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.CannotUnloadAppDomainException::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CannotUnloadAppDomainException__ctor_mAA7C49AE60E95186278F0FEE279E9CDB77DB861D (CannotUnloadAppDomainException_t65AADF8792D8CCF6BAF22D51D8E4B7AB92960F9C * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CannotUnloadAppDomainException__ctor_mAA7C49AE60E95186278F0FEE279E9CDB77DB861D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = Environment_GetResourceString_m8DFF827596B5FD533D3FE56900FA095F7D674617(_stringLiteral1C59521BF2B6D8FF8714D3F8322FE24B5D7A5CC1, /*hidden argument*/NULL);
SystemException__ctor_m65B6562BDBB8EF84A384B217BE96647C0BAC770A(__this, L_0, /*hidden argument*/NULL);
Exception_SetErrorCode_m92A787DA80F9CBC81E05D158F3D8099A8F1DD44D(__this, ((int32_t)-2146234347), /*hidden argument*/NULL);
return;
}
}
// System.Void System.CannotUnloadAppDomainException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CannotUnloadAppDomainException__ctor_m7451C21E28F0F7CF9F3A74ADCD2B49AB18AA1331 (CannotUnloadAppDomainException_t65AADF8792D8CCF6BAF22D51D8E4B7AB92960F9C * __this, String_t* ___message0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___message0;
SystemException__ctor_m65B6562BDBB8EF84A384B217BE96647C0BAC770A(__this, L_0, /*hidden argument*/NULL);
Exception_SetErrorCode_m92A787DA80F9CBC81E05D158F3D8099A8F1DD44D(__this, ((int32_t)-2146234347), /*hidden argument*/NULL);
return;
}
}
// System.Void System.CannotUnloadAppDomainException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CannotUnloadAppDomainException__ctor_m4381DA6AAECECEC087A84B07AB7C9CB0AAC1F3DE (CannotUnloadAppDomainException_t65AADF8792D8CCF6BAF22D51D8E4B7AB92960F9C * __this, SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * ___info0, StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 ___context1, const RuntimeMethod* method)
{
{
SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * L_0 = ___info0;
StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 L_1 = ___context1;
SystemException__ctor_m20F619D15EAA349C6CE181A65A47C336200EBD19(__this, L_0, L_1, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Collections.CaseInsensitiveComparer::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CaseInsensitiveComparer__ctor_m305B7AD77730615623A49F8CB3AB72AC73840946 (CaseInsensitiveComparer_t6261A2A5410CBE32D356D9D93017732DF0AADC6C * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CaseInsensitiveComparer__ctor_m305B7AD77730615623A49F8CB3AB72AC73840946_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var);
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_0 = CultureInfo_get_CurrentCulture_m99E5F5BD20445F2A73F7EA0014A4E783DF3840BB(/*hidden argument*/NULL);
NullCheck(L_0);
CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * L_1 = VirtFuncInvoker0< CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * >::Invoke(12 /* System.Globalization.CompareInfo System.Globalization.CultureInfo::get_CompareInfo() */, L_0);
__this->set_m_compareInfo_0(L_1);
return;
}
}
// System.Void System.Collections.CaseInsensitiveComparer::.ctor(System.Globalization.CultureInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CaseInsensitiveComparer__ctor_mD14E129C0E3097F0E076A4E04E87D5081C4E666B (CaseInsensitiveComparer_t6261A2A5410CBE32D356D9D93017732DF0AADC6C * __this, CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * ___culture0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CaseInsensitiveComparer__ctor_mD14E129C0E3097F0E076A4E04E87D5081C4E666B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL);
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_0 = ___culture0;
if (L_0)
{
goto IL_0014;
}
}
{
ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, _stringLiteralB657B9EBAD0A09A09ED1FD8D1CCD0E421CD7BDC7, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, CaseInsensitiveComparer__ctor_mD14E129C0E3097F0E076A4E04E87D5081C4E666B_RuntimeMethod_var);
}
IL_0014:
{
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_2 = ___culture0;
NullCheck(L_2);
CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * L_3 = VirtFuncInvoker0< CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * >::Invoke(12 /* System.Globalization.CompareInfo System.Globalization.CultureInfo::get_CompareInfo() */, L_2);
__this->set_m_compareInfo_0(L_3);
return;
}
}
// System.Collections.CaseInsensitiveComparer System.Collections.CaseInsensitiveComparer::get_Default()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CaseInsensitiveComparer_t6261A2A5410CBE32D356D9D93017732DF0AADC6C * CaseInsensitiveComparer_get_Default_m4E8D43C4B6B445886A74BE979059E383A367A5A1 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CaseInsensitiveComparer_get_Default_m4E8D43C4B6B445886A74BE979059E383A367A5A1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var);
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_0 = CultureInfo_get_CurrentCulture_m99E5F5BD20445F2A73F7EA0014A4E783DF3840BB(/*hidden argument*/NULL);
CaseInsensitiveComparer_t6261A2A5410CBE32D356D9D93017732DF0AADC6C * L_1 = (CaseInsensitiveComparer_t6261A2A5410CBE32D356D9D93017732DF0AADC6C *)il2cpp_codegen_object_new(CaseInsensitiveComparer_t6261A2A5410CBE32D356D9D93017732DF0AADC6C_il2cpp_TypeInfo_var);
CaseInsensitiveComparer__ctor_mD14E129C0E3097F0E076A4E04E87D5081C4E666B(L_1, L_0, /*hidden argument*/NULL);
return L_1;
}
}
// System.Int32 System.Collections.CaseInsensitiveComparer::Compare(System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CaseInsensitiveComparer_Compare_m40C8E8BED8C4C81D531B8444072D330D92024148 (CaseInsensitiveComparer_t6261A2A5410CBE32D356D9D93017732DF0AADC6C * __this, RuntimeObject * ___a0, RuntimeObject * ___b1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CaseInsensitiveComparer_Compare_m40C8E8BED8C4C81D531B8444072D330D92024148_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
String_t* V_1 = NULL;
{
RuntimeObject * L_0 = ___a0;
V_0 = ((String_t*)IsInstSealed((RuntimeObject*)L_0, String_t_il2cpp_TypeInfo_var));
RuntimeObject * L_1 = ___b1;
V_1 = ((String_t*)IsInstSealed((RuntimeObject*)L_1, String_t_il2cpp_TypeInfo_var));
String_t* L_2 = V_0;
if (!L_2)
{
goto IL_0023;
}
}
{
String_t* L_3 = V_1;
if (!L_3)
{
goto IL_0023;
}
}
{
CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * L_4 = __this->get_m_compareInfo_0();
String_t* L_5 = V_0;
String_t* L_6 = V_1;
NullCheck(L_4);
int32_t L_7 = VirtFuncInvoker3< int32_t, String_t*, String_t*, int32_t >::Invoke(7 /* System.Int32 System.Globalization.CompareInfo::Compare(System.String,System.String,System.Globalization.CompareOptions) */, L_4, L_5, L_6, 1);
return L_7;
}
IL_0023:
{
IL2CPP_RUNTIME_CLASS_INIT(Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var);
Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 * L_8 = ((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_StaticFields*)il2cpp_codegen_static_fields_for(Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var))->get_Default_1();
RuntimeObject * L_9 = ___a0;
RuntimeObject * L_10 = ___b1;
NullCheck(L_8);
int32_t L_11 = Comparer_Compare_mBBF5C0BAD0C29DC7BE771AB2F0A2500D5E0E60A3(L_8, L_9, L_10, /*hidden argument*/NULL);
return L_11;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Collections.CaseInsensitiveHashCodeProvider::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CaseInsensitiveHashCodeProvider__ctor_m4C2502D5DFE2F58D5BAF2699B820CD07C4F697E0 (CaseInsensitiveHashCodeProvider_tBB49394EF70D0021AE2D095430A23CB71AD512FA * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CaseInsensitiveHashCodeProvider__ctor_m4C2502D5DFE2F58D5BAF2699B820CD07C4F697E0_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var);
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_0 = CultureInfo_get_CurrentCulture_m99E5F5BD20445F2A73F7EA0014A4E783DF3840BB(/*hidden argument*/NULL);
NullCheck(L_0);
TextInfo_tE823D0684BFE8B203501C9B2B38585E8F06E872C * L_1 = VirtFuncInvoker0< TextInfo_tE823D0684BFE8B203501C9B2B38585E8F06E872C * >::Invoke(10 /* System.Globalization.TextInfo System.Globalization.CultureInfo::get_TextInfo() */, L_0);
__this->set_m_text_0(L_1);
return;
}
}
// System.Void System.Collections.CaseInsensitiveHashCodeProvider::.ctor(System.Globalization.CultureInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CaseInsensitiveHashCodeProvider__ctor_mA20A70E69A24912F9688675F259E538C46034D63 (CaseInsensitiveHashCodeProvider_tBB49394EF70D0021AE2D095430A23CB71AD512FA * __this, CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * ___culture0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CaseInsensitiveHashCodeProvider__ctor_mA20A70E69A24912F9688675F259E538C46034D63_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL);
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_0 = ___culture0;
if (L_0)
{
goto IL_0014;
}
}
{
ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, _stringLiteralB657B9EBAD0A09A09ED1FD8D1CCD0E421CD7BDC7, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, CaseInsensitiveHashCodeProvider__ctor_mA20A70E69A24912F9688675F259E538C46034D63_RuntimeMethod_var);
}
IL_0014:
{
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_2 = ___culture0;
NullCheck(L_2);
TextInfo_tE823D0684BFE8B203501C9B2B38585E8F06E872C * L_3 = VirtFuncInvoker0< TextInfo_tE823D0684BFE8B203501C9B2B38585E8F06E872C * >::Invoke(10 /* System.Globalization.TextInfo System.Globalization.CultureInfo::get_TextInfo() */, L_2);
__this->set_m_text_0(L_3);
return;
}
}
// System.Collections.CaseInsensitiveHashCodeProvider System.Collections.CaseInsensitiveHashCodeProvider::get_Default()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CaseInsensitiveHashCodeProvider_tBB49394EF70D0021AE2D095430A23CB71AD512FA * CaseInsensitiveHashCodeProvider_get_Default_m112A7BC3EA46411ADB8D603F9D7521C5C745B9DF (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CaseInsensitiveHashCodeProvider_get_Default_m112A7BC3EA46411ADB8D603F9D7521C5C745B9DF_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var);
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_0 = CultureInfo_get_CurrentCulture_m99E5F5BD20445F2A73F7EA0014A4E783DF3840BB(/*hidden argument*/NULL);
CaseInsensitiveHashCodeProvider_tBB49394EF70D0021AE2D095430A23CB71AD512FA * L_1 = (CaseInsensitiveHashCodeProvider_tBB49394EF70D0021AE2D095430A23CB71AD512FA *)il2cpp_codegen_object_new(CaseInsensitiveHashCodeProvider_tBB49394EF70D0021AE2D095430A23CB71AD512FA_il2cpp_TypeInfo_var);
CaseInsensitiveHashCodeProvider__ctor_mA20A70E69A24912F9688675F259E538C46034D63(L_1, L_0, /*hidden argument*/NULL);
return L_1;
}
}
// System.Int32 System.Collections.CaseInsensitiveHashCodeProvider::GetHashCode(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CaseInsensitiveHashCodeProvider_GetHashCode_mB1F6B6BAA53D16D77C1CD9180E1EF9994B3FA24A (CaseInsensitiveHashCodeProvider_tBB49394EF70D0021AE2D095430A23CB71AD512FA * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CaseInsensitiveHashCodeProvider_GetHashCode_mB1F6B6BAA53D16D77C1CD9180E1EF9994B3FA24A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
RuntimeObject * L_0 = ___obj0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, _stringLiteral690BF02630AC0BD6AA6BD08D2C36A28E1FC54F3E, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, CaseInsensitiveHashCodeProvider_GetHashCode_mB1F6B6BAA53D16D77C1CD9180E1EF9994B3FA24A_RuntimeMethod_var);
}
IL_000e:
{
RuntimeObject * L_2 = ___obj0;
V_0 = ((String_t*)IsInstSealed((RuntimeObject*)L_2, String_t_il2cpp_TypeInfo_var));
String_t* L_3 = V_0;
if (L_3)
{
goto IL_001f;
}
}
{
RuntimeObject * L_4 = ___obj0;
NullCheck(L_4);
int32_t L_5 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, L_4);
return L_5;
}
IL_001f:
{
TextInfo_tE823D0684BFE8B203501C9B2B38585E8F06E872C * L_6 = __this->get_m_text_0();
String_t* L_7 = V_0;
NullCheck(L_6);
int32_t L_8 = TextInfo_GetCaseInsensitiveHashCode_m7E7FDF57240A388E31BE8C34C1D8D0720F100312(L_6, L_7, /*hidden argument*/NULL);
return L_8;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.ArrayList System.Runtime.Remoting.ChannelData::get_ServerProviders()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * ChannelData_get_ServerProviders_mC580FA7210BF153873E24FF2DBF8CADC43CEFC62 (ChannelData_tEA64A2F1AEEC413430B61C6C7C4A1652EFDD9827 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ChannelData_get_ServerProviders_mC580FA7210BF153873E24FF2DBF8CADC43CEFC62_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_0 = __this->get__serverProviders_4();
if (L_0)
{
goto IL_0013;
}
}
{
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_1 = (ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 *)il2cpp_codegen_object_new(ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575_il2cpp_TypeInfo_var);
ArrayList__ctor_m6847CFECD6BDC2AD10A4AC9852A572B88B8D6B1B(L_1, /*hidden argument*/NULL);
__this->set__serverProviders_4(L_1);
}
IL_0013:
{
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_2 = __this->get__serverProviders_4();
return L_2;
}
}
// System.Collections.ArrayList System.Runtime.Remoting.ChannelData::get_ClientProviders()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * ChannelData_get_ClientProviders_m79FC4B0BD88C0ECDCC35189CBA5CB8859959ED0E (ChannelData_tEA64A2F1AEEC413430B61C6C7C4A1652EFDD9827 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ChannelData_get_ClientProviders_m79FC4B0BD88C0ECDCC35189CBA5CB8859959ED0E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_0 = __this->get__clientProviders_5();
if (L_0)
{
goto IL_0013;
}
}
{
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_1 = (ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 *)il2cpp_codegen_object_new(ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575_il2cpp_TypeInfo_var);
ArrayList__ctor_m6847CFECD6BDC2AD10A4AC9852A572B88B8D6B1B(L_1, /*hidden argument*/NULL);
__this->set__clientProviders_5(L_1);
}
IL_0013:
{
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_2 = __this->get__clientProviders_5();
return L_2;
}
}
// System.Collections.Hashtable System.Runtime.Remoting.ChannelData::get_CustomProperties()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * ChannelData_get_CustomProperties_mA74E570017A4CBA845C655F6D5C4FB6836897969 (ChannelData_tEA64A2F1AEEC413430B61C6C7C4A1652EFDD9827 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ChannelData_get_CustomProperties_mA74E570017A4CBA845C655F6D5C4FB6836897969_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_0 = __this->get__customProperties_6();
if (L_0)
{
goto IL_0013;
}
}
{
Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_1 = (Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC *)il2cpp_codegen_object_new(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC_il2cpp_TypeInfo_var);
Hashtable__ctor_m2D9C25FB57ACD33B0DF8391D38A165975A1D9A91(L_1, /*hidden argument*/NULL);
__this->set__customProperties_6(L_1);
}
IL_0013:
{
Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_2 = __this->get__customProperties_6();
return L_2;
}
}
// System.Void System.Runtime.Remoting.ChannelData::CopyFrom(System.Runtime.Remoting.ChannelData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ChannelData_CopyFrom_m5519012E1A440EE63EF5CEC24BDF2E319CF26BE4 (ChannelData_tEA64A2F1AEEC413430B61C6C7C4A1652EFDD9827 * __this, ChannelData_tEA64A2F1AEEC413430B61C6C7C4A1652EFDD9827 * ___other0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ChannelData_CopyFrom_m5519012E1A440EE63EF5CEC24BDF2E319CF26BE4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 V_1;
memset((&V_1), 0, sizeof(V_1));
RuntimeObject* V_2 = NULL;
RuntimeObject* V_3 = NULL;
ProviderData_t2E4B222839D59BB2D2C44E370FA8ED37DAF4F582 * V_4 = NULL;
ProviderData_t2E4B222839D59BB2D2C44E370FA8ED37DAF4F582 * V_5 = NULL;
ProviderData_t2E4B222839D59BB2D2C44E370FA8ED37DAF4F582 * V_6 = NULL;
ProviderData_t2E4B222839D59BB2D2C44E370FA8ED37DAF4F582 * V_7 = 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) * 3);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
String_t* L_0 = __this->get_Ref_0();
if (L_0)
{
goto IL_0014;
}
}
{
ChannelData_tEA64A2F1AEEC413430B61C6C7C4A1652EFDD9827 * L_1 = ___other0;
NullCheck(L_1);
String_t* L_2 = L_1->get_Ref_0();
__this->set_Ref_0(L_2);
}
IL_0014:
{
String_t* L_3 = __this->get_Id_2();
if (L_3)
{
goto IL_0028;
}
}
{
ChannelData_tEA64A2F1AEEC413430B61C6C7C4A1652EFDD9827 * L_4 = ___other0;
NullCheck(L_4);
String_t* L_5 = L_4->get_Id_2();
__this->set_Id_2(L_5);
}
IL_0028:
{
String_t* L_6 = __this->get_Type_1();
if (L_6)
{
goto IL_003c;
}
}
{
ChannelData_tEA64A2F1AEEC413430B61C6C7C4A1652EFDD9827 * L_7 = ___other0;
NullCheck(L_7);
String_t* L_8 = L_7->get_Type_1();
__this->set_Type_1(L_8);
}
IL_003c:
{
String_t* L_9 = __this->get_DelayLoadAsClientChannel_3();
if (L_9)
{
goto IL_0050;
}
}
{
ChannelData_tEA64A2F1AEEC413430B61C6C7C4A1652EFDD9827 * L_10 = ___other0;
NullCheck(L_10);
String_t* L_11 = L_10->get_DelayLoadAsClientChannel_3();
__this->set_DelayLoadAsClientChannel_3(L_11);
}
IL_0050:
{
ChannelData_tEA64A2F1AEEC413430B61C6C7C4A1652EFDD9827 * L_12 = ___other0;
NullCheck(L_12);
Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_13 = L_12->get__customProperties_6();
if (!L_13)
{
goto IL_00ba;
}
}
{
ChannelData_tEA64A2F1AEEC413430B61C6C7C4A1652EFDD9827 * L_14 = ___other0;
NullCheck(L_14);
Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_15 = L_14->get__customProperties_6();
NullCheck(L_15);
RuntimeObject* L_16 = VirtFuncInvoker0< RuntimeObject* >::Invoke(23 /* System.Collections.IDictionaryEnumerator System.Collections.Hashtable::GetEnumerator() */, L_15);
V_0 = L_16;
}
IL_0064:
try
{ // begin try (depth: 1)
{
goto IL_009f;
}
IL_0066:
{
RuntimeObject* L_17 = V_0;
NullCheck(L_17);
RuntimeObject * L_18 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var, L_17);
V_1 = ((*(DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 *)((DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 *)UnBox(L_18, DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_il2cpp_TypeInfo_var))));
Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_19 = ChannelData_get_CustomProperties_mA74E570017A4CBA845C655F6D5C4FB6836897969(__this, /*hidden argument*/NULL);
RuntimeObject * L_20 = DictionaryEntry_get_Key_m9A53AE1FA4CA017F0A7353F71658A9C36079E1D7_inline((DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 *)(&V_1), /*hidden argument*/NULL);
NullCheck(L_19);
bool L_21 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(19 /* System.Boolean System.Collections.Hashtable::ContainsKey(System.Object) */, L_19, L_20);
if (L_21)
{
goto IL_009f;
}
}
IL_0086:
{
Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_22 = ChannelData_get_CustomProperties_mA74E570017A4CBA845C655F6D5C4FB6836897969(__this, /*hidden argument*/NULL);
RuntimeObject * L_23 = DictionaryEntry_get_Key_m9A53AE1FA4CA017F0A7353F71658A9C36079E1D7_inline((DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 *)(&V_1), /*hidden argument*/NULL);
RuntimeObject * L_24 = DictionaryEntry_get_Value_m2D618D04C0A8EA2A065B171F528FEA98B059F9BC_inline((DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 *)(&V_1), /*hidden argument*/NULL);
NullCheck(L_22);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(22 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_22, L_23, L_24);
}
IL_009f:
{
RuntimeObject* L_25 = V_0;
NullCheck(L_25);
bool L_26 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var, L_25);
if (L_26)
{
goto IL_0066;
}
}
IL_00a7:
{
IL2CPP_LEAVE(0xBA, FINALLY_00a9);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_00a9;
}
FINALLY_00a9:
{ // begin finally (depth: 1)
{
RuntimeObject* L_27 = V_0;
V_2 = ((RuntimeObject*)IsInst((RuntimeObject*)L_27, IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var));
RuntimeObject* L_28 = V_2;
if (!L_28)
{
goto IL_00b9;
}
}
IL_00b3:
{
RuntimeObject* L_29 = V_2;
NullCheck(L_29);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var, L_29);
}
IL_00b9:
{
IL2CPP_END_FINALLY(169)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(169)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
IL2CPP_JUMP_TBL(0xBA, IL_00ba)
}
IL_00ba:
{
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_30 = __this->get__serverProviders_4();
if (L_30)
{
goto IL_011e;
}
}
{
ChannelData_tEA64A2F1AEEC413430B61C6C7C4A1652EFDD9827 * L_31 = ___other0;
NullCheck(L_31);
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_32 = L_31->get__serverProviders_4();
if (!L_32)
{
goto IL_011e;
}
}
{
ChannelData_tEA64A2F1AEEC413430B61C6C7C4A1652EFDD9827 * L_33 = ___other0;
NullCheck(L_33);
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_34 = L_33->get__serverProviders_4();
NullCheck(L_34);
RuntimeObject* L_35 = VirtFuncInvoker0< RuntimeObject* >::Invoke(30 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_34);
V_3 = L_35;
}
IL_00d6:
try
{ // begin try (depth: 1)
{
goto IL_0103;
}
IL_00d8:
{
RuntimeObject* L_36 = V_3;
NullCheck(L_36);
RuntimeObject * L_37 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var, L_36);
V_4 = ((ProviderData_t2E4B222839D59BB2D2C44E370FA8ED37DAF4F582 *)CastclassClass((RuntimeObject*)L_37, ProviderData_t2E4B222839D59BB2D2C44E370FA8ED37DAF4F582_il2cpp_TypeInfo_var));
ProviderData_t2E4B222839D59BB2D2C44E370FA8ED37DAF4F582 * L_38 = (ProviderData_t2E4B222839D59BB2D2C44E370FA8ED37DAF4F582 *)il2cpp_codegen_object_new(ProviderData_t2E4B222839D59BB2D2C44E370FA8ED37DAF4F582_il2cpp_TypeInfo_var);
ProviderData__ctor_mD5E0B1DB88554294B57100CA92B42A01F94E4CAA(L_38, /*hidden argument*/NULL);
V_5 = L_38;
ProviderData_t2E4B222839D59BB2D2C44E370FA8ED37DAF4F582 * L_39 = V_5;
ProviderData_t2E4B222839D59BB2D2C44E370FA8ED37DAF4F582 * L_40 = V_4;
NullCheck(L_39);
ProviderData_CopyFrom_m7700C38B130BBC2840A37B1652E9ED68C4D65479(L_39, L_40, /*hidden argument*/NULL);
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_41 = ChannelData_get_ServerProviders_mC580FA7210BF153873E24FF2DBF8CADC43CEFC62(__this, /*hidden argument*/NULL);
ProviderData_t2E4B222839D59BB2D2C44E370FA8ED37DAF4F582 * L_42 = V_5;
NullCheck(L_41);
VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(24 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_41, L_42);
}
IL_0103:
{
RuntimeObject* L_43 = V_3;
NullCheck(L_43);
bool L_44 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var, L_43);
if (L_44)
{
goto IL_00d8;
}
}
IL_010b:
{
IL2CPP_LEAVE(0x11E, FINALLY_010d);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_010d;
}
FINALLY_010d:
{ // begin finally (depth: 1)
{
RuntimeObject* L_45 = V_3;
V_2 = ((RuntimeObject*)IsInst((RuntimeObject*)L_45, IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var));
RuntimeObject* L_46 = V_2;
if (!L_46)
{
goto IL_011d;
}
}
IL_0117:
{
RuntimeObject* L_47 = V_2;
NullCheck(L_47);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var, L_47);
}
IL_011d:
{
IL2CPP_END_FINALLY(269)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(269)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
IL2CPP_JUMP_TBL(0x11E, IL_011e)
}
IL_011e:
{
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_48 = __this->get__clientProviders_5();
if (L_48)
{
goto IL_0182;
}
}
{
ChannelData_tEA64A2F1AEEC413430B61C6C7C4A1652EFDD9827 * L_49 = ___other0;
NullCheck(L_49);
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_50 = L_49->get__clientProviders_5();
if (!L_50)
{
goto IL_0182;
}
}
{
ChannelData_tEA64A2F1AEEC413430B61C6C7C4A1652EFDD9827 * L_51 = ___other0;
NullCheck(L_51);
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_52 = L_51->get__clientProviders_5();
NullCheck(L_52);
RuntimeObject* L_53 = VirtFuncInvoker0< RuntimeObject* >::Invoke(30 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_52);
V_3 = L_53;
}
IL_013a:
try
{ // begin try (depth: 1)
{
goto IL_0167;
}
IL_013c:
{
RuntimeObject* L_54 = V_3;
NullCheck(L_54);
RuntimeObject * L_55 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var, L_54);
V_6 = ((ProviderData_t2E4B222839D59BB2D2C44E370FA8ED37DAF4F582 *)CastclassClass((RuntimeObject*)L_55, ProviderData_t2E4B222839D59BB2D2C44E370FA8ED37DAF4F582_il2cpp_TypeInfo_var));
ProviderData_t2E4B222839D59BB2D2C44E370FA8ED37DAF4F582 * L_56 = (ProviderData_t2E4B222839D59BB2D2C44E370FA8ED37DAF4F582 *)il2cpp_codegen_object_new(ProviderData_t2E4B222839D59BB2D2C44E370FA8ED37DAF4F582_il2cpp_TypeInfo_var);
ProviderData__ctor_mD5E0B1DB88554294B57100CA92B42A01F94E4CAA(L_56, /*hidden argument*/NULL);
V_7 = L_56;
ProviderData_t2E4B222839D59BB2D2C44E370FA8ED37DAF4F582 * L_57 = V_7;
ProviderData_t2E4B222839D59BB2D2C44E370FA8ED37DAF4F582 * L_58 = V_6;
NullCheck(L_57);
ProviderData_CopyFrom_m7700C38B130BBC2840A37B1652E9ED68C4D65479(L_57, L_58, /*hidden argument*/NULL);
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_59 = ChannelData_get_ClientProviders_m79FC4B0BD88C0ECDCC35189CBA5CB8859959ED0E(__this, /*hidden argument*/NULL);
ProviderData_t2E4B222839D59BB2D2C44E370FA8ED37DAF4F582 * L_60 = V_7;
NullCheck(L_59);
VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(24 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_59, L_60);
}
IL_0167:
{
RuntimeObject* L_61 = V_3;
NullCheck(L_61);
bool L_62 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var, L_61);
if (L_62)
{
goto IL_013c;
}
}
IL_016f:
{
IL2CPP_LEAVE(0x182, FINALLY_0171);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0171;
}
FINALLY_0171:
{ // begin finally (depth: 1)
{
RuntimeObject* L_63 = V_3;
V_2 = ((RuntimeObject*)IsInst((RuntimeObject*)L_63, IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var));
RuntimeObject* L_64 = V_2;
if (!L_64)
{
goto IL_0181;
}
}
IL_017b:
{
RuntimeObject* L_65 = V_2;
NullCheck(L_65);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var, L_65);
}
IL_0181:
{
IL2CPP_END_FINALLY(369)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(369)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
IL2CPP_JUMP_TBL(0x182, IL_0182)
}
IL_0182:
{
return;
}
}
// System.Void System.Runtime.Remoting.ChannelData::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ChannelData__ctor_mC02825366B59C459F8BED049B0FB88907ACF9FA8 (ChannelData_tEA64A2F1AEEC413430B61C6C7C4A1652EFDD9827 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ChannelData__ctor_mC02825366B59C459F8BED049B0FB88907ACF9FA8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_0 = (ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 *)il2cpp_codegen_object_new(ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575_il2cpp_TypeInfo_var);
ArrayList__ctor_m6847CFECD6BDC2AD10A4AC9852A572B88B8D6B1B(L_0, /*hidden argument*/NULL);
__this->set__serverProviders_4(L_0);
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_1 = (ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 *)il2cpp_codegen_object_new(ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575_il2cpp_TypeInfo_var);
ArrayList__ctor_m6847CFECD6BDC2AD10A4AC9852A572B88B8D6B1B(L_1, /*hidden argument*/NULL);
__this->set__clientProviders_5(L_1);
Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_2 = (Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC *)il2cpp_codegen_object_new(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC_il2cpp_TypeInfo_var);
Hashtable__ctor_m2D9C25FB57ACD33B0DF8391D38A165975A1D9A91(L_2, /*hidden argument*/NULL);
__this->set__customProperties_6(L_2);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Runtime.Remoting.ChannelInfo::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ChannelInfo__ctor_m748539D1DBE9CED98AD8FD4CC51DBC2B8A223A3F (ChannelInfo_tBB8BB773743C20D696B007291EC5597F00703E79 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ChannelInfo__ctor_m748539D1DBE9CED98AD8FD4CC51DBC2B8A223A3F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(ChannelServices_tE1834D9FC8B4A62937AEF20FF29A91B9D3A07B28_il2cpp_TypeInfo_var);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_0 = ChannelServices_GetCurrentChannelInfo_m0EA3A6166C70679FE9953FCBB9DF1334A7C01FD0(/*hidden argument*/NULL);
__this->set_channelData_0(L_0);
return;
}
}
// System.Void System.Runtime.Remoting.ChannelInfo::.ctor(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ChannelInfo__ctor_mE225F30C0E924A3D793A3463CABC37A8EEDB2D32 (ChannelInfo_tBB8BB773743C20D696B007291EC5597F00703E79 * __this, RuntimeObject * ___remoteChannelData0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ChannelInfo__ctor_mE225F30C0E924A3D793A3463CABC37A8EEDB2D32_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_0 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_1 = L_0;
RuntimeObject * L_2 = ___remoteChannelData0;
NullCheck(L_1);
ArrayElementTypeCheck (L_1, L_2);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_2);
__this->set_channelData_0(L_1);
return;
}
}
// System.Object[] System.Runtime.Remoting.ChannelInfo::get_ChannelData()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ChannelInfo_get_ChannelData_mB0FBBF6758C3ED2689EF3C503532B634A34C9D84 (ChannelInfo_tBB8BB773743C20D696B007291EC5597F00703E79 * __this, const RuntimeMethod* method)
{
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_0 = __this->get_channelData_0();
return L_0;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.Remoting.Contexts.CrossContextChannel System.Runtime.Remoting.Channels.ChannelServices::get_CrossContextChannel()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CrossContextChannel_tF0389BFF59F875ADDC660EBAF4BA5267F13A88AD * ChannelServices_get_CrossContextChannel_m6E66AD17E15A70CF626174FE2C75B481A268882B (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ChannelServices_get_CrossContextChannel_m6E66AD17E15A70CF626174FE2C75B481A268882B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(ChannelServices_tE1834D9FC8B4A62937AEF20FF29A91B9D3A07B28_il2cpp_TypeInfo_var);
CrossContextChannel_tF0389BFF59F875ADDC660EBAF4BA5267F13A88AD * L_0 = ((ChannelServices_tE1834D9FC8B4A62937AEF20FF29A91B9D3A07B28_StaticFields*)il2cpp_codegen_static_fields_for(ChannelServices_tE1834D9FC8B4A62937AEF20FF29A91B9D3A07B28_il2cpp_TypeInfo_var))->get__crossContextSink_2();
return L_0;
}
}
// System.Runtime.Remoting.Messaging.IMessageSink System.Runtime.Remoting.Channels.ChannelServices::CreateClientChannelSinkChain(System.String,System.Object,System.String&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ChannelServices_CreateClientChannelSinkChain_m305C00852F9C9407E9E3D7AA5DDE78DB2ED5EA6F (String_t* ___url0, RuntimeObject * ___remoteChannelData1, String_t** ___objectUri2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ChannelServices_CreateClientChannelSinkChain_m305C00852F9C9407E9E3D7AA5DDE78DB2ED5EA6F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* V_0 = NULL;
RuntimeObject * V_1 = NULL;
bool V_2 = false;
RuntimeObject* V_3 = NULL;
RuntimeObject* V_4 = NULL;
RuntimeObject* V_5 = NULL;
RuntimeObject* V_6 = NULL;
RuntimeObject* V_7 = NULL;
RuntimeObject* V_8 = NULL;
RuntimeObject* V_9 = 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) * 4);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
RuntimeObject * L_0 = ___remoteChannelData1;
V_0 = ((ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)Castclass((RuntimeObject*)L_0, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var));
IL2CPP_RUNTIME_CLASS_INIT(ChannelServices_tE1834D9FC8B4A62937AEF20FF29A91B9D3A07B28_il2cpp_TypeInfo_var);
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_1 = ((ChannelServices_tE1834D9FC8B4A62937AEF20FF29A91B9D3A07B28_StaticFields*)il2cpp_codegen_static_fields_for(ChannelServices_tE1834D9FC8B4A62937AEF20FF29A91B9D3A07B28_il2cpp_TypeInfo_var))->get_registeredChannels_0();
NullCheck(L_1);
RuntimeObject * L_2 = VirtFuncInvoker0< RuntimeObject * >::Invoke(21 /* System.Object System.Collections.ArrayList::get_SyncRoot() */, L_1);
V_1 = L_2;
V_2 = (bool)0;
}
IL_0014:
try
{ // begin try (depth: 1)
{
RuntimeObject * L_3 = V_1;
Monitor_Enter_mBEB6CC84184B46F26375EC3FC8921D16E48EA4C4(L_3, (bool*)(&V_2), /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(ChannelServices_tE1834D9FC8B4A62937AEF20FF29A91B9D3A07B28_il2cpp_TypeInfo_var);
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_4 = ((ChannelServices_tE1834D9FC8B4A62937AEF20FF29A91B9D3A07B28_StaticFields*)il2cpp_codegen_static_fields_for(ChannelServices_tE1834D9FC8B4A62937AEF20FF29A91B9D3A07B28_il2cpp_TypeInfo_var))->get_registeredChannels_0();
NullCheck(L_4);
RuntimeObject* L_5 = VirtFuncInvoker0< RuntimeObject* >::Invoke(30 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_4);
V_3 = L_5;
}
IL_0027:
try
{ // begin try (depth: 2)
{
goto IL_0058;
}
IL_0029:
{
RuntimeObject* L_6 = V_3;
NullCheck(L_6);
RuntimeObject * L_7 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var, L_6);
V_4 = ((RuntimeObject*)IsInst((RuntimeObject*)((RuntimeObject*)Castclass((RuntimeObject*)L_7, IChannel_tAAB2462B4D468FB11A38ACC68C561C9BA8E9A8B0_il2cpp_TypeInfo_var)), IChannelSender_tC9474F74732657C8839C64D56543D40F9C9A3724_il2cpp_TypeInfo_var));
RuntimeObject* L_8 = V_4;
if (!L_8)
{
goto IL_0058;
}
}
IL_003f:
{
RuntimeObject* L_9 = V_4;
String_t* L_10 = ___url0;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_11 = V_0;
String_t** L_12 = ___objectUri2;
IL2CPP_RUNTIME_CLASS_INIT(ChannelServices_tE1834D9FC8B4A62937AEF20FF29A91B9D3A07B28_il2cpp_TypeInfo_var);
RuntimeObject* L_13 = ChannelServices_CreateClientChannelSinkChain_m0844D4CED48ABDB9E407CA4B0453424BFFD5BE93(L_9, L_10, L_11, (String_t**)L_12, /*hidden argument*/NULL);
V_5 = L_13;
RuntimeObject* L_14 = V_5;
if (!L_14)
{
goto IL_0058;
}
}
IL_004f:
{
RuntimeObject* L_15 = V_5;
V_6 = L_15;
IL2CPP_LEAVE(0xEB, FINALLY_0062);
}
IL_0058:
{
RuntimeObject* L_16 = V_3;
NullCheck(L_16);
bool L_17 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var, L_16);
if (L_17)
{
goto IL_0029;
}
}
IL_0060:
{
IL2CPP_LEAVE(0x76, FINALLY_0062);
}
} // end try (depth: 2)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0062;
}
FINALLY_0062:
{ // begin finally (depth: 2)
{
RuntimeObject* L_18 = V_3;
V_7 = ((RuntimeObject*)IsInst((RuntimeObject*)L_18, IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var));
RuntimeObject* L_19 = V_7;
if (!L_19)
{
goto IL_0075;
}
}
IL_006e:
{
RuntimeObject* L_20 = V_7;
NullCheck(L_20);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var, L_20);
}
IL_0075:
{
IL2CPP_END_FINALLY(98)
}
} // end finally (depth: 2)
IL2CPP_CLEANUP(98)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
IL2CPP_END_CLEANUP(0xEB, FINALLY_00dc);
IL2CPP_JUMP_TBL(0x76, IL_0076)
}
IL_0076:
{
IL2CPP_RUNTIME_CLASS_INIT(RemotingConfiguration_t9AFFB44D1A1D02A702140D927B0173593B67D0C5_il2cpp_TypeInfo_var);
RemotingConfiguration_LoadDefaultDelayedChannels_mE17C622475EFA9EEF74979AB18DAED9D562089B3(/*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(ChannelServices_tE1834D9FC8B4A62937AEF20FF29A91B9D3A07B28_il2cpp_TypeInfo_var);
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_21 = ((ChannelServices_tE1834D9FC8B4A62937AEF20FF29A91B9D3A07B28_StaticFields*)il2cpp_codegen_static_fields_for(ChannelServices_tE1834D9FC8B4A62937AEF20FF29A91B9D3A07B28_il2cpp_TypeInfo_var))->get_delayedClientChannels_1();
NullCheck(L_21);
RuntimeObject* L_22 = VirtFuncInvoker0< RuntimeObject* >::Invoke(30 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_21);
V_3 = L_22;
}
IL_0086:
try
{ // begin try (depth: 2)
{
goto IL_00be;
}
IL_0088:
{
RuntimeObject* L_23 = V_3;
NullCheck(L_23);
RuntimeObject * L_24 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var, L_23);
V_8 = ((RuntimeObject*)Castclass((RuntimeObject*)L_24, IChannelSender_tC9474F74732657C8839C64D56543D40F9C9A3724_il2cpp_TypeInfo_var));
RuntimeObject* L_25 = V_8;
String_t* L_26 = ___url0;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_27 = V_0;
String_t** L_28 = ___objectUri2;
IL2CPP_RUNTIME_CLASS_INIT(ChannelServices_tE1834D9FC8B4A62937AEF20FF29A91B9D3A07B28_il2cpp_TypeInfo_var);
RuntimeObject* L_29 = ChannelServices_CreateClientChannelSinkChain_m0844D4CED48ABDB9E407CA4B0453424BFFD5BE93(L_25, L_26, L_27, (String_t**)L_28, /*hidden argument*/NULL);
V_9 = L_29;
RuntimeObject* L_30 = V_9;
if (!L_30)
{
goto IL_00be;
}
}
IL_00a5:
{
IL2CPP_RUNTIME_CLASS_INIT(ChannelServices_tE1834D9FC8B4A62937AEF20FF29A91B9D3A07B28_il2cpp_TypeInfo_var);
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_31 = ((ChannelServices_tE1834D9FC8B4A62937AEF20FF29A91B9D3A07B28_StaticFields*)il2cpp_codegen_static_fields_for(ChannelServices_tE1834D9FC8B4A62937AEF20FF29A91B9D3A07B28_il2cpp_TypeInfo_var))->get_delayedClientChannels_1();
RuntimeObject* L_32 = V_8;
NullCheck(L_31);
VirtActionInvoker1< RuntimeObject * >::Invoke(34 /* System.Void System.Collections.ArrayList::Remove(System.Object) */, L_31, L_32);
RuntimeObject* L_33 = V_8;
ChannelServices_RegisterChannel_m93E43A37CE8627ECCE5D5BCB2422A1441A55B22B(L_33, /*hidden argument*/NULL);
RuntimeObject* L_34 = V_9;
V_6 = L_34;
IL2CPP_LEAVE(0xEB, FINALLY_00c8);
}
IL_00be:
{
RuntimeObject* L_35 = V_3;
NullCheck(L_35);
bool L_36 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var, L_35);
if (L_36)
{
goto IL_0088;
}
}
IL_00c6:
{
IL2CPP_LEAVE(0xE6, FINALLY_00c8);
}
} // end try (depth: 2)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_00c8;
}
FINALLY_00c8:
{ // begin finally (depth: 2)
{
RuntimeObject* L_37 = V_3;
V_7 = ((RuntimeObject*)IsInst((RuntimeObject*)L_37, IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var));
RuntimeObject* L_38 = V_7;
if (!L_38)
{
goto IL_00db;
}
}
IL_00d4:
{
RuntimeObject* L_39 = V_7;
NullCheck(L_39);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var, L_39);
}
IL_00db:
{
IL2CPP_END_FINALLY(200)
}
} // end finally (depth: 2)
IL2CPP_CLEANUP(200)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
IL2CPP_END_CLEANUP(0xEB, FINALLY_00dc);
IL2CPP_END_CLEANUP(0xE6, FINALLY_00dc);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_00dc;
}
FINALLY_00dc:
{ // begin finally (depth: 1)
{
bool L_40 = V_2;
if (!L_40)
{
goto IL_00e5;
}
}
IL_00df:
{
RuntimeObject * L_41 = V_1;
Monitor_Exit_mA776B403DA88AC77CDEEF67AB9F0D0E77ABD254A(L_41, /*hidden argument*/NULL);
}
IL_00e5:
{
IL2CPP_END_FINALLY(220)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(220)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
IL2CPP_JUMP_TBL(0xEB, IL_00eb)
IL2CPP_JUMP_TBL(0xE6, IL_00e6)
}
IL_00e6:
{
String_t** L_42 = ___objectUri2;
*((RuntimeObject **)L_42) = (RuntimeObject *)NULL;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_42, (void*)(RuntimeObject *)NULL);
return (RuntimeObject*)NULL;
}
IL_00eb:
{
RuntimeObject* L_43 = V_6;
return L_43;
}
}
// System.Runtime.Remoting.Messaging.IMessageSink System.Runtime.Remoting.Channels.ChannelServices::CreateClientChannelSinkChain(System.Runtime.Remoting.Channels.IChannelSender,System.String,System.Object[],System.String&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ChannelServices_CreateClientChannelSinkChain_m0844D4CED48ABDB9E407CA4B0453424BFFD5BE93 (RuntimeObject* ___sender0, String_t* ___url1, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___channelDataArray2, String_t** ___objectUri3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ChannelServices_CreateClientChannelSinkChain_m0844D4CED48ABDB9E407CA4B0453424BFFD5BE93_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* V_0 = NULL;
int32_t V_1 = 0;
RuntimeObject * V_2 = NULL;
RuntimeObject* V_3 = NULL;
{
String_t** L_0 = ___objectUri3;
*((RuntimeObject **)L_0) = (RuntimeObject *)NULL;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_0, (void*)(RuntimeObject *)NULL);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_1 = ___channelDataArray2;
if (L_1)
{
goto IL_0010;
}
}
{
RuntimeObject* L_2 = ___sender0;
String_t* L_3 = ___url1;
String_t** L_4 = ___objectUri3;
NullCheck(L_2);
RuntimeObject* L_5 = InterfaceFuncInvoker3< RuntimeObject*, String_t*, RuntimeObject *, String_t** >::Invoke(0 /* System.Runtime.Remoting.Messaging.IMessageSink System.Runtime.Remoting.Channels.IChannelSender::CreateMessageSink(System.String,System.Object,System.String&) */, IChannelSender_tC9474F74732657C8839C64D56543D40F9C9A3724_il2cpp_TypeInfo_var, L_2, L_3, NULL, (String_t**)L_4);
return L_5;
}
IL_0010:
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_6 = ___channelDataArray2;
V_0 = L_6;
V_1 = 0;
goto IL_0041;
}
IL_0016:
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_7 = V_0;
int32_t L_8 = V_1;
NullCheck(L_7);
int32_t L_9 = L_8;
RuntimeObject * L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
V_2 = L_10;
RuntimeObject * L_11 = V_2;
if (!((RuntimeObject*)IsInst((RuntimeObject*)L_11, IChannelDataStore_tC196EC915AAAD6588FCA457AA74EB30BE1F5BC9C_il2cpp_TypeInfo_var)))
{
goto IL_002e;
}
}
{
RuntimeObject* L_12 = ___sender0;
RuntimeObject * L_13 = V_2;
String_t** L_14 = ___objectUri3;
NullCheck(L_12);
RuntimeObject* L_15 = InterfaceFuncInvoker3< RuntimeObject*, String_t*, RuntimeObject *, String_t** >::Invoke(0 /* System.Runtime.Remoting.Messaging.IMessageSink System.Runtime.Remoting.Channels.IChannelSender::CreateMessageSink(System.String,System.Object,System.String&) */, IChannelSender_tC9474F74732657C8839C64D56543D40F9C9A3724_il2cpp_TypeInfo_var, L_12, (String_t*)NULL, L_13, (String_t**)L_14);
V_3 = L_15;
goto IL_0038;
}
IL_002e:
{
RuntimeObject* L_16 = ___sender0;
String_t* L_17 = ___url1;
RuntimeObject * L_18 = V_2;
String_t** L_19 = ___objectUri3;
NullCheck(L_16);
RuntimeObject* L_20 = InterfaceFuncInvoker3< RuntimeObject*, String_t*, RuntimeObject *, String_t** >::Invoke(0 /* System.Runtime.Remoting.Messaging.IMessageSink System.Runtime.Remoting.Channels.IChannelSender::CreateMessageSink(System.String,System.Object,System.String&) */, IChannelSender_tC9474F74732657C8839C64D56543D40F9C9A3724_il2cpp_TypeInfo_var, L_16, L_17, L_18, (String_t**)L_19);
V_3 = L_20;
}
IL_0038:
{
RuntimeObject* L_21 = V_3;
if (!L_21)
{
goto IL_003d;
}
}
{
RuntimeObject* L_22 = V_3;
return L_22;
}
IL_003d:
{
int32_t L_23 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1));
}
IL_0041:
{
int32_t L_24 = V_1;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_25 = V_0;
NullCheck(L_25);
if ((((int32_t)L_24) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_25)->max_length)))))))
{
goto IL_0016;
}
}
{
return (RuntimeObject*)NULL;
}
}
// System.Void System.Runtime.Remoting.Channels.ChannelServices::RegisterChannel(System.Runtime.Remoting.Channels.IChannel)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ChannelServices_RegisterChannel_m93E43A37CE8627ECCE5D5BCB2422A1441A55B22B (RuntimeObject* ___chnl0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ChannelServices_RegisterChannel_m93E43A37CE8627ECCE5D5BCB2422A1441A55B22B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___chnl0;
IL2CPP_RUNTIME_CLASS_INIT(ChannelServices_tE1834D9FC8B4A62937AEF20FF29A91B9D3A07B28_il2cpp_TypeInfo_var);
ChannelServices_RegisterChannel_m7C03F538173935C9B051D24D2ED89667BFCC3DBE(L_0, (bool)0, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Runtime.Remoting.Channels.ChannelServices::RegisterChannel(System.Runtime.Remoting.Channels.IChannel,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ChannelServices_RegisterChannel_m7C03F538173935C9B051D24D2ED89667BFCC3DBE (RuntimeObject* ___chnl0, bool ___ensureSecurity1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ChannelServices_RegisterChannel_m7C03F538173935C9B051D24D2ED89667BFCC3DBE_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject * V_0 = NULL;
bool V_1 = false;
int32_t V_2 = 0;
RuntimeObject* V_3 = NULL;
int32_t V_4 = 0;
RuntimeObject* V_5 = 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* G_B5_0 = NULL;
RuntimeObject* G_B4_0 = NULL;
{
RuntimeObject* L_0 = ___chnl0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, _stringLiteralD45487222C981ED9BE87F0E0426849BA1A76E60D, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ChannelServices_RegisterChannel_m7C03F538173935C9B051D24D2ED89667BFCC3DBE_RuntimeMethod_var);
}
IL_000e:
{
bool L_2 = ___ensureSecurity1;
if (!L_2)
{
goto IL_0036;
}
}
{
RuntimeObject* L_3 = ___chnl0;
RuntimeObject* L_4 = ((RuntimeObject*)IsInst((RuntimeObject*)L_3, ISecurableChannel_t1456041094B227950296C0E8174F701C31E4F3EA_il2cpp_TypeInfo_var));
G_B4_0 = L_4;
if (L_4)
{
G_B5_0 = L_4;
goto IL_0030;
}
}
{
RuntimeObject* L_5 = ___chnl0;
NullCheck(L_5);
String_t* L_6 = InterfaceFuncInvoker0< String_t* >::Invoke(0 /* System.String System.Runtime.Remoting.Channels.IChannel::get_ChannelName() */, IChannel_tAAB2462B4D468FB11A38ACC68C561C9BA8E9A8B0_il2cpp_TypeInfo_var, L_5);
String_t* L_7 = String_Format_mB3D38E5238C3164DB4D7D29339D9E225A4496D17(_stringLiteralAE622B2B822F056AE608B7DB123F0944386EE884, L_6, /*hidden argument*/NULL);
RemotingException_tEFFC0A283D7F4169F5481926B7FF6C2EB8C76F1B * L_8 = (RemotingException_tEFFC0A283D7F4169F5481926B7FF6C2EB8C76F1B *)il2cpp_codegen_object_new(RemotingException_tEFFC0A283D7F4169F5481926B7FF6C2EB8C76F1B_il2cpp_TypeInfo_var);
RemotingException__ctor_m9D41822220B296C09BE7175E8C2D6F65C195F4E9(L_8, L_7, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ChannelServices_RegisterChannel_m7C03F538173935C9B051D24D2ED89667BFCC3DBE_RuntimeMethod_var);
}
IL_0030:
{
NullCheck(G_B5_0);
InterfaceActionInvoker1< bool >::Invoke(0 /* System.Void System.Runtime.Remoting.Channels.ISecurableChannel::set_IsSecured(System.Boolean) */, ISecurableChannel_t1456041094B227950296C0E8174F701C31E4F3EA_il2cpp_TypeInfo_var, G_B5_0, (bool)1);
}
IL_0036:
{
IL2CPP_RUNTIME_CLASS_INIT(ChannelServices_tE1834D9FC8B4A62937AEF20FF29A91B9D3A07B28_il2cpp_TypeInfo_var);
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_9 = ((ChannelServices_tE1834D9FC8B4A62937AEF20FF29A91B9D3A07B28_StaticFields*)il2cpp_codegen_static_fields_for(ChannelServices_tE1834D9FC8B4A62937AEF20FF29A91B9D3A07B28_il2cpp_TypeInfo_var))->get_registeredChannels_0();
NullCheck(L_9);
RuntimeObject * L_10 = VirtFuncInvoker0< RuntimeObject * >::Invoke(21 /* System.Object System.Collections.ArrayList::get_SyncRoot() */, L_9);
V_0 = L_10;
V_1 = (bool)0;
}
IL_0043:
try
{ // begin try (depth: 1)
{
RuntimeObject * L_11 = V_0;
Monitor_Enter_mBEB6CC84184B46F26375EC3FC8921D16E48EA4C4(L_11, (bool*)(&V_1), /*hidden argument*/NULL);
V_2 = (-1);
V_4 = 0;
goto IL_00c3;
}
IL_0052:
{
IL2CPP_RUNTIME_CLASS_INIT(ChannelServices_tE1834D9FC8B4A62937AEF20FF29A91B9D3A07B28_il2cpp_TypeInfo_var);
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_12 = ((ChannelServices_tE1834D9FC8B4A62937AEF20FF29A91B9D3A07B28_StaticFields*)il2cpp_codegen_static_fields_for(ChannelServices_tE1834D9FC8B4A62937AEF20FF29A91B9D3A07B28_il2cpp_TypeInfo_var))->get_registeredChannels_0();
int32_t L_13 = V_4;
NullCheck(L_12);
RuntimeObject * L_14 = VirtFuncInvoker1< RuntimeObject *, int32_t >::Invoke(22 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_12, L_13);
V_5 = ((RuntimeObject*)Castclass((RuntimeObject*)L_14, IChannel_tAAB2462B4D468FB11A38ACC68C561C9BA8E9A8B0_il2cpp_TypeInfo_var));
RuntimeObject* L_15 = V_5;
NullCheck(L_15);
String_t* L_16 = InterfaceFuncInvoker0< String_t* >::Invoke(0 /* System.String System.Runtime.Remoting.Channels.IChannel::get_ChannelName() */, IChannel_tAAB2462B4D468FB11A38ACC68C561C9BA8E9A8B0_il2cpp_TypeInfo_var, L_15);
RuntimeObject* L_17 = ___chnl0;
NullCheck(L_17);
String_t* L_18 = InterfaceFuncInvoker0< String_t* >::Invoke(0 /* System.String System.Runtime.Remoting.Channels.IChannel::get_ChannelName() */, IChannel_tAAB2462B4D468FB11A38ACC68C561C9BA8E9A8B0_il2cpp_TypeInfo_var, L_17);
bool L_19 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_16, L_18, /*hidden argument*/NULL);
if (!L_19)
{
goto IL_00a7;
}
}
IL_0079:
{
RuntimeObject* L_20 = ___chnl0;
NullCheck(L_20);
String_t* L_21 = InterfaceFuncInvoker0< String_t* >::Invoke(0 /* System.String System.Runtime.Remoting.Channels.IChannel::get_ChannelName() */, IChannel_tAAB2462B4D468FB11A38ACC68C561C9BA8E9A8B0_il2cpp_TypeInfo_var, L_20);
bool L_22 = String_op_Inequality_mDDA2DDED3E7EF042987EB7180EE3E88105F0AAE2(L_21, _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709, /*hidden argument*/NULL);
if (!L_22)
{
goto IL_00a7;
}
}
IL_008b:
{
RuntimeObject* L_23 = V_5;
NullCheck(L_23);
String_t* L_24 = InterfaceFuncInvoker0< String_t* >::Invoke(0 /* System.String System.Runtime.Remoting.Channels.IChannel::get_ChannelName() */, IChannel_tAAB2462B4D468FB11A38ACC68C561C9BA8E9A8B0_il2cpp_TypeInfo_var, L_23);
String_t* L_25 = String_Concat_m89EAB4C6A96B0E5C3F87300D6BE78D386B9EFC44(_stringLiteralD0A9AA74760549C6A732B0EC13F9519F26FC67E4, L_24, _stringLiteral0B31AB38360ECF9683ADAB607974B916C9663192, /*hidden argument*/NULL);
RemotingException_tEFFC0A283D7F4169F5481926B7FF6C2EB8C76F1B * L_26 = (RemotingException_tEFFC0A283D7F4169F5481926B7FF6C2EB8C76F1B *)il2cpp_codegen_object_new(RemotingException_tEFFC0A283D7F4169F5481926B7FF6C2EB8C76F1B_il2cpp_TypeInfo_var);
RemotingException__ctor_m9D41822220B296C09BE7175E8C2D6F65C195F4E9(L_26, L_25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_26, ChannelServices_RegisterChannel_m7C03F538173935C9B051D24D2ED89667BFCC3DBE_RuntimeMethod_var);
}
IL_00a7:
{
RuntimeObject* L_27 = V_5;
NullCheck(L_27);
int32_t L_28 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Runtime.Remoting.Channels.IChannel::get_ChannelPriority() */, IChannel_tAAB2462B4D468FB11A38ACC68C561C9BA8E9A8B0_il2cpp_TypeInfo_var, L_27);
RuntimeObject* L_29 = ___chnl0;
NullCheck(L_29);
int32_t L_30 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Runtime.Remoting.Channels.IChannel::get_ChannelPriority() */, IChannel_tAAB2462B4D468FB11A38ACC68C561C9BA8E9A8B0_il2cpp_TypeInfo_var, L_29);
if ((((int32_t)L_28) >= ((int32_t)L_30)))
{
goto IL_00bd;
}
}
IL_00b6:
{
int32_t L_31 = V_2;
if ((!(((uint32_t)L_31) == ((uint32_t)(-1)))))
{
goto IL_00bd;
}
}
IL_00ba:
{
int32_t L_32 = V_4;
V_2 = L_32;
}
IL_00bd:
{
int32_t L_33 = V_4;
V_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_33, (int32_t)1));
}
IL_00c3:
{
int32_t L_34 = V_4;
IL2CPP_RUNTIME_CLASS_INIT(ChannelServices_tE1834D9FC8B4A62937AEF20FF29A91B9D3A07B28_il2cpp_TypeInfo_var);
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_35 = ((ChannelServices_tE1834D9FC8B4A62937AEF20FF29A91B9D3A07B28_StaticFields*)il2cpp_codegen_static_fields_for(ChannelServices_tE1834D9FC8B4A62937AEF20FF29A91B9D3A07B28_il2cpp_TypeInfo_var))->get_registeredChannels_0();
NullCheck(L_35);
int32_t L_36 = VirtFuncInvoker0< int32_t >::Invoke(19 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_35);
if ((((int32_t)L_34) < ((int32_t)L_36)))
{
goto IL_0052;
}
}
IL_00d1:
{
int32_t L_37 = V_2;
if ((((int32_t)L_37) == ((int32_t)(-1))))
{
goto IL_00e3;
}
}
IL_00d5:
{
IL2CPP_RUNTIME_CLASS_INIT(ChannelServices_tE1834D9FC8B4A62937AEF20FF29A91B9D3A07B28_il2cpp_TypeInfo_var);
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_38 = ((ChannelServices_tE1834D9FC8B4A62937AEF20FF29A91B9D3A07B28_StaticFields*)il2cpp_codegen_static_fields_for(ChannelServices_tE1834D9FC8B4A62937AEF20FF29A91B9D3A07B28_il2cpp_TypeInfo_var))->get_registeredChannels_0();
int32_t L_39 = V_2;
RuntimeObject* L_40 = ___chnl0;
NullCheck(L_38);
VirtActionInvoker2< int32_t, RuntimeObject * >::Invoke(32 /* System.Void System.Collections.ArrayList::Insert(System.Int32,System.Object) */, L_38, L_39, L_40);
goto IL_00ef;
}
IL_00e3:
{
IL2CPP_RUNTIME_CLASS_INIT(ChannelServices_tE1834D9FC8B4A62937AEF20FF29A91B9D3A07B28_il2cpp_TypeInfo_var);
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_41 = ((ChannelServices_tE1834D9FC8B4A62937AEF20FF29A91B9D3A07B28_StaticFields*)il2cpp_codegen_static_fields_for(ChannelServices_tE1834D9FC8B4A62937AEF20FF29A91B9D3A07B28_il2cpp_TypeInfo_var))->get_registeredChannels_0();
RuntimeObject* L_42 = ___chnl0;
NullCheck(L_41);
VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(24 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_41, L_42);
}
IL_00ef:
{
RuntimeObject* L_43 = ___chnl0;
V_3 = ((RuntimeObject*)IsInst((RuntimeObject*)L_43, IChannelReceiver_tAB4C6F19EF8F5D5641CB3C4BE305C97819D9B92B_il2cpp_TypeInfo_var));
RuntimeObject* L_44 = V_3;
if (!L_44)
{
goto IL_0117;
}
}
IL_00f9:
{
IL2CPP_RUNTIME_CLASS_INIT(ChannelServices_tE1834D9FC8B4A62937AEF20FF29A91B9D3A07B28_il2cpp_TypeInfo_var);
RuntimeObject* L_45 = ((ChannelServices_tE1834D9FC8B4A62937AEF20FF29A91B9D3A07B28_StaticFields*)il2cpp_codegen_static_fields_for(ChannelServices_tE1834D9FC8B4A62937AEF20FF29A91B9D3A07B28_il2cpp_TypeInfo_var))->get_oldStartModeTypes_4();
RuntimeObject* L_46 = ___chnl0;
NullCheck(L_46);
Type_t * L_47 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B(L_46, /*hidden argument*/NULL);
NullCheck(L_47);
String_t* L_48 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_47);
NullCheck(L_45);
bool L_49 = InterfaceFuncInvoker1< bool, RuntimeObject * >::Invoke(3 /* System.Boolean System.Collections.IList::Contains(System.Object) */, IList_tB15A9D6625D09661D6E47976BB626C703EC81910_il2cpp_TypeInfo_var, L_45, L_48);
if (!L_49)
{
goto IL_0117;
}
}
IL_0110:
{
RuntimeObject* L_50 = V_3;
NullCheck(L_50);
InterfaceActionInvoker1< RuntimeObject * >::Invoke(1 /* System.Void System.Runtime.Remoting.Channels.IChannelReceiver::StartListening(System.Object) */, IChannelReceiver_tAB4C6F19EF8F5D5641CB3C4BE305C97819D9B92B_il2cpp_TypeInfo_var, L_50, NULL);
}
IL_0117:
{
IL2CPP_LEAVE(0x123, FINALLY_0119);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0119;
}
FINALLY_0119:
{ // begin finally (depth: 1)
{
bool L_51 = V_1;
if (!L_51)
{
goto IL_0122;
}
}
IL_011c:
{
RuntimeObject * L_52 = V_0;
Monitor_Exit_mA776B403DA88AC77CDEEF67AB9F0D0E77ABD254A(L_52, /*hidden argument*/NULL);
}
IL_0122:
{
IL2CPP_END_FINALLY(281)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(281)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
IL2CPP_JUMP_TBL(0x123, IL_0123)
}
IL_0123:
{
return;
}
}
// System.Void System.Runtime.Remoting.Channels.ChannelServices::RegisterChannelConfig(System.Runtime.Remoting.ChannelData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ChannelServices_RegisterChannelConfig_m3029FA89B6116B34F0496B276C948AB73522BBFD (ChannelData_tEA64A2F1AEEC413430B61C6C7C4A1652EFDD9827 * ___channel0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ChannelServices_RegisterChannelConfig_m3029FA89B6116B34F0496B276C948AB73522BBFD_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
RuntimeObject* V_1 = NULL;
Type_t * V_2 = NULL;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* V_3 = NULL;
TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* V_4 = NULL;
bool V_5 = false;
bool V_6 = false;
ConstructorInfo_t449AEC508DCA508EE46784C4F2716545488ACD5B * V_7 = NULL;
RuntimeObject* V_8 = NULL;
int32_t V_9 = 0;
int32_t V_10 = 0;
RuntimeObject * V_11 = NULL;
bool V_12 = false;
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) * 3);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
V_0 = (RuntimeObject*)NULL;
V_1 = (RuntimeObject*)NULL;
ChannelData_tEA64A2F1AEEC413430B61C6C7C4A1652EFDD9827 * L_0 = ___channel0;
NullCheck(L_0);
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_1 = ChannelData_get_ServerProviders_mC580FA7210BF153873E24FF2DBF8CADC43CEFC62(L_0, /*hidden argument*/NULL);
NullCheck(L_1);
int32_t L_2 = VirtFuncInvoker0< int32_t >::Invoke(19 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_1);
V_9 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_2, (int32_t)1));
goto IL_003f;
}
IL_0015:
{
ChannelData_tEA64A2F1AEEC413430B61C6C7C4A1652EFDD9827 * L_3 = ___channel0;
NullCheck(L_3);
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_4 = ChannelData_get_ServerProviders_mC580FA7210BF153873E24FF2DBF8CADC43CEFC62(L_3, /*hidden argument*/NULL);
int32_t L_5 = V_9;
NullCheck(L_4);
RuntimeObject * L_6 = VirtFuncInvoker1< RuntimeObject *, int32_t >::Invoke(22 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_4, L_5);
IL2CPP_RUNTIME_CLASS_INIT(ChannelServices_tE1834D9FC8B4A62937AEF20FF29A91B9D3A07B28_il2cpp_TypeInfo_var);
RuntimeObject * L_7 = ChannelServices_CreateProvider_mF1C0C24B14C8A7E8393A783A058BDABEBECB9745(((ProviderData_t2E4B222839D59BB2D2C44E370FA8ED37DAF4F582 *)IsInstClass((RuntimeObject*)L_6, ProviderData_t2E4B222839D59BB2D2C44E370FA8ED37DAF4F582_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
RuntimeObject* L_8 = ((RuntimeObject*)Castclass((RuntimeObject*)L_7, IServerChannelSinkProvider_t24A95E44364690525F5E4CD5ADEB549D8E1EB429_il2cpp_TypeInfo_var));
RuntimeObject* L_9 = V_0;
NullCheck(L_8);
InterfaceActionInvoker1< RuntimeObject* >::Invoke(0 /* System.Void System.Runtime.Remoting.Channels.IServerChannelSinkProvider::set_Next(System.Runtime.Remoting.Channels.IServerChannelSinkProvider) */, IServerChannelSinkProvider_t24A95E44364690525F5E4CD5ADEB549D8E1EB429_il2cpp_TypeInfo_var, L_8, L_9);
V_0 = L_8;
int32_t L_10 = V_9;
V_9 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_10, (int32_t)1));
}
IL_003f:
{
int32_t L_11 = V_9;
if ((((int32_t)L_11) >= ((int32_t)0)))
{
goto IL_0015;
}
}
{
ChannelData_tEA64A2F1AEEC413430B61C6C7C4A1652EFDD9827 * L_12 = ___channel0;
NullCheck(L_12);
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_13 = ChannelData_get_ClientProviders_m79FC4B0BD88C0ECDCC35189CBA5CB8859959ED0E(L_12, /*hidden argument*/NULL);
NullCheck(L_13);
int32_t L_14 = VirtFuncInvoker0< int32_t >::Invoke(19 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_13);
V_10 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_14, (int32_t)1));
goto IL_007f;
}
IL_0055:
{
ChannelData_tEA64A2F1AEEC413430B61C6C7C4A1652EFDD9827 * L_15 = ___channel0;
NullCheck(L_15);
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_16 = ChannelData_get_ClientProviders_m79FC4B0BD88C0ECDCC35189CBA5CB8859959ED0E(L_15, /*hidden argument*/NULL);
int32_t L_17 = V_10;
NullCheck(L_16);
RuntimeObject * L_18 = VirtFuncInvoker1< RuntimeObject *, int32_t >::Invoke(22 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_16, L_17);
IL2CPP_RUNTIME_CLASS_INIT(ChannelServices_tE1834D9FC8B4A62937AEF20FF29A91B9D3A07B28_il2cpp_TypeInfo_var);
RuntimeObject * L_19 = ChannelServices_CreateProvider_mF1C0C24B14C8A7E8393A783A058BDABEBECB9745(((ProviderData_t2E4B222839D59BB2D2C44E370FA8ED37DAF4F582 *)IsInstClass((RuntimeObject*)L_18, ProviderData_t2E4B222839D59BB2D2C44E370FA8ED37DAF4F582_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
RuntimeObject* L_20 = ((RuntimeObject*)Castclass((RuntimeObject*)L_19, IClientChannelSinkProvider_tB3CC676B6211DA8F57838434B0443C12B25FC422_il2cpp_TypeInfo_var));
RuntimeObject* L_21 = V_1;
NullCheck(L_20);
InterfaceActionInvoker1< RuntimeObject* >::Invoke(0 /* System.Void System.Runtime.Remoting.Channels.IClientChannelSinkProvider::set_Next(System.Runtime.Remoting.Channels.IClientChannelSinkProvider) */, IClientChannelSinkProvider_tB3CC676B6211DA8F57838434B0443C12B25FC422_il2cpp_TypeInfo_var, L_20, L_21);
V_1 = L_20;
int32_t L_22 = V_10;
V_10 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_22, (int32_t)1));
}
IL_007f:
{
int32_t L_23 = V_10;
if ((((int32_t)L_23) >= ((int32_t)0)))
{
goto IL_0055;
}
}
{
ChannelData_tEA64A2F1AEEC413430B61C6C7C4A1652EFDD9827 * L_24 = ___channel0;
NullCheck(L_24);
String_t* L_25 = L_24->get_Type_1();
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_26 = il2cpp_codegen_get_type(Type_GetType_m2D692327E10692E11116805CC604CD47F144A9E4_RuntimeMethod_var, L_25, ChannelServices_RegisterChannelConfig_m3029FA89B6116B34F0496B276C948AB73522BBFD_RuntimeMethod_var);
V_2 = L_26;
Type_t * L_27 = V_2;
bool L_28 = Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046(L_27, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_28)
{
goto IL_00b4;
}
}
{
ChannelData_tEA64A2F1AEEC413430B61C6C7C4A1652EFDD9827 * L_29 = ___channel0;
NullCheck(L_29);
String_t* L_30 = L_29->get_Type_1();
String_t* L_31 = String_Concat_m89EAB4C6A96B0E5C3F87300D6BE78D386B9EFC44(_stringLiteral3C686C624D22B0C45E4FADFB00FA535DDDC88AD7, L_30, _stringLiteralD8DCBB96A969755857FECA260F5484078B4AD706, /*hidden argument*/NULL);
RemotingException_tEFFC0A283D7F4169F5481926B7FF6C2EB8C76F1B * L_32 = (RemotingException_tEFFC0A283D7F4169F5481926B7FF6C2EB8C76F1B *)il2cpp_codegen_object_new(RemotingException_tEFFC0A283D7F4169F5481926B7FF6C2EB8C76F1B_il2cpp_TypeInfo_var);
RemotingException__ctor_m9D41822220B296C09BE7175E8C2D6F65C195F4E9(L_32, L_31, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_32, ChannelServices_RegisterChannelConfig_m3029FA89B6116B34F0496B276C948AB73522BBFD_RuntimeMethod_var);
}
IL_00b4:
{
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_33 = { reinterpret_cast<intptr_t> (IChannelSender_tC9474F74732657C8839C64D56543D40F9C9A3724_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_34 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_33, /*hidden argument*/NULL);
Type_t * L_35 = V_2;
NullCheck(L_34);
bool L_36 = VirtFuncInvoker1< bool, Type_t * >::Invoke(102 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_34, L_35);
V_5 = L_36;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_37 = { reinterpret_cast<intptr_t> (IChannelReceiver_tAB4C6F19EF8F5D5641CB3C4BE305C97819D9B92B_0_0_0_var) };
Type_t * L_38 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_37, /*hidden argument*/NULL);
Type_t * L_39 = V_2;
NullCheck(L_38);
bool L_40 = VirtFuncInvoker1< bool, Type_t * >::Invoke(102 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_38, L_39);
V_6 = L_40;
bool L_41 = V_5;
bool L_42 = V_6;
if (!((int32_t)((int32_t)L_41&(int32_t)L_42)))
{
goto IL_012b;
}
}
{
TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* L_43 = (TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755*)(TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755*)SZArrayNew(TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755_il2cpp_TypeInfo_var, (uint32_t)3);
TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* L_44 = L_43;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_45 = { reinterpret_cast<intptr_t> (IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_46 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_45, /*hidden argument*/NULL);
NullCheck(L_44);
ArrayElementTypeCheck (L_44, L_46);
(L_44)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_46);
TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* L_47 = L_44;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_48 = { reinterpret_cast<intptr_t> (IClientChannelSinkProvider_tB3CC676B6211DA8F57838434B0443C12B25FC422_0_0_0_var) };
Type_t * L_49 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_48, /*hidden argument*/NULL);
NullCheck(L_47);
ArrayElementTypeCheck (L_47, L_49);
(L_47)->SetAt(static_cast<il2cpp_array_size_t>(1), (Type_t *)L_49);
TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* L_50 = L_47;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_51 = { reinterpret_cast<intptr_t> (IServerChannelSinkProvider_t24A95E44364690525F5E4CD5ADEB549D8E1EB429_0_0_0_var) };
Type_t * L_52 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_51, /*hidden argument*/NULL);
NullCheck(L_50);
ArrayElementTypeCheck (L_50, L_52);
(L_50)->SetAt(static_cast<il2cpp_array_size_t>(2), (Type_t *)L_52);
V_4 = L_50;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_53 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var, (uint32_t)3);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_54 = L_53;
ChannelData_tEA64A2F1AEEC413430B61C6C7C4A1652EFDD9827 * L_55 = ___channel0;
NullCheck(L_55);
Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_56 = ChannelData_get_CustomProperties_mA74E570017A4CBA845C655F6D5C4FB6836897969(L_55, /*hidden argument*/NULL);
NullCheck(L_54);
ArrayElementTypeCheck (L_54, L_56);
(L_54)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_56);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_57 = L_54;
RuntimeObject* L_58 = V_1;
NullCheck(L_57);
ArrayElementTypeCheck (L_57, L_58);
(L_57)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_58);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_59 = L_57;
RuntimeObject* L_60 = V_0;
NullCheck(L_59);
ArrayElementTypeCheck (L_59, L_60);
(L_59)->SetAt(static_cast<il2cpp_array_size_t>(2), (RuntimeObject *)L_60);
V_3 = L_59;
goto IL_01b4;
}
IL_012b:
{
bool L_61 = V_5;
if (!L_61)
{
goto IL_0167;
}
}
{
TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* L_62 = (TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755*)(TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755*)SZArrayNew(TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755_il2cpp_TypeInfo_var, (uint32_t)2);
TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* L_63 = L_62;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_64 = { reinterpret_cast<intptr_t> (IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_65 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_64, /*hidden argument*/NULL);
NullCheck(L_63);
ArrayElementTypeCheck (L_63, L_65);
(L_63)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_65);
TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* L_66 = L_63;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_67 = { reinterpret_cast<intptr_t> (IClientChannelSinkProvider_tB3CC676B6211DA8F57838434B0443C12B25FC422_0_0_0_var) };
Type_t * L_68 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_67, /*hidden argument*/NULL);
NullCheck(L_66);
ArrayElementTypeCheck (L_66, L_68);
(L_66)->SetAt(static_cast<il2cpp_array_size_t>(1), (Type_t *)L_68);
V_4 = L_66;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_69 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var, (uint32_t)2);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_70 = L_69;
ChannelData_tEA64A2F1AEEC413430B61C6C7C4A1652EFDD9827 * L_71 = ___channel0;
NullCheck(L_71);
Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_72 = ChannelData_get_CustomProperties_mA74E570017A4CBA845C655F6D5C4FB6836897969(L_71, /*hidden argument*/NULL);
NullCheck(L_70);
ArrayElementTypeCheck (L_70, L_72);
(L_70)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_72);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_73 = L_70;
RuntimeObject* L_74 = V_1;
NullCheck(L_73);
ArrayElementTypeCheck (L_73, L_74);
(L_73)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_74);
V_3 = L_73;
goto IL_01b4;
}
IL_0167:
{
bool L_75 = V_6;
if (!L_75)
{
goto IL_01a3;
}
}
{
TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* L_76 = (TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755*)(TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755*)SZArrayNew(TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755_il2cpp_TypeInfo_var, (uint32_t)2);
TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* L_77 = L_76;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_78 = { reinterpret_cast<intptr_t> (IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_79 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_78, /*hidden argument*/NULL);
NullCheck(L_77);
ArrayElementTypeCheck (L_77, L_79);
(L_77)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t *)L_79);
TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* L_80 = L_77;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_81 = { reinterpret_cast<intptr_t> (IServerChannelSinkProvider_t24A95E44364690525F5E4CD5ADEB549D8E1EB429_0_0_0_var) };
Type_t * L_82 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_81, /*hidden argument*/NULL);
NullCheck(L_80);
ArrayElementTypeCheck (L_80, L_82);
(L_80)->SetAt(static_cast<il2cpp_array_size_t>(1), (Type_t *)L_82);
V_4 = L_80;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_83 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var, (uint32_t)2);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_84 = L_83;
ChannelData_tEA64A2F1AEEC413430B61C6C7C4A1652EFDD9827 * L_85 = ___channel0;
NullCheck(L_85);
Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_86 = ChannelData_get_CustomProperties_mA74E570017A4CBA845C655F6D5C4FB6836897969(L_85, /*hidden argument*/NULL);
NullCheck(L_84);
ArrayElementTypeCheck (L_84, L_86);
(L_84)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_86);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_87 = L_84;
RuntimeObject* L_88 = V_0;
NullCheck(L_87);
ArrayElementTypeCheck (L_87, L_88);
(L_87)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_88);
V_3 = L_87;
goto IL_01b4;
}
IL_01a3:
{
Type_t * L_89 = V_2;
String_t* L_90 = String_Concat_m4D0DDA7FEDB75304E5FDAF8489A0478EE58A45F2(L_89, _stringLiteralA7E0C9B3AD574A635E7A55DDA234BE73FC64A575, /*hidden argument*/NULL);
RemotingException_tEFFC0A283D7F4169F5481926B7FF6C2EB8C76F1B * L_91 = (RemotingException_tEFFC0A283D7F4169F5481926B7FF6C2EB8C76F1B *)il2cpp_codegen_object_new(RemotingException_tEFFC0A283D7F4169F5481926B7FF6C2EB8C76F1B_il2cpp_TypeInfo_var);
RemotingException__ctor_m9D41822220B296C09BE7175E8C2D6F65C195F4E9(L_91, L_90, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_91, ChannelServices_RegisterChannelConfig_m3029FA89B6116B34F0496B276C948AB73522BBFD_RuntimeMethod_var);
}
IL_01b4:
{
Type_t * L_92 = V_2;
TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* L_93 = V_4;
NullCheck(L_92);
ConstructorInfo_t449AEC508DCA508EE46784C4F2716545488ACD5B * L_94 = Type_GetConstructor_m98D609FCFA8EB6E54A9FF705D77EEE16603B278C(L_92, L_93, /*hidden argument*/NULL);
V_7 = L_94;
ConstructorInfo_t449AEC508DCA508EE46784C4F2716545488ACD5B * L_95 = V_7;
IL2CPP_RUNTIME_CLASS_INIT(ConstructorInfo_t449AEC508DCA508EE46784C4F2716545488ACD5B_il2cpp_TypeInfo_var);
bool L_96 = ConstructorInfo_op_Equality_m5B7B5656578241A10343041B4FF20CEF46CAD453(L_95, (ConstructorInfo_t449AEC508DCA508EE46784C4F2716545488ACD5B *)NULL, /*hidden argument*/NULL);
if (!L_96)
{
goto IL_01d9;
}
}
{
Type_t * L_97 = V_2;
String_t* L_98 = String_Concat_m4D0DDA7FEDB75304E5FDAF8489A0478EE58A45F2(L_97, _stringLiteral426BBECB217FE21AC02D68793294AB84FA0CA2E2, /*hidden argument*/NULL);
RemotingException_tEFFC0A283D7F4169F5481926B7FF6C2EB8C76F1B * L_99 = (RemotingException_tEFFC0A283D7F4169F5481926B7FF6C2EB8C76F1B *)il2cpp_codegen_object_new(RemotingException_tEFFC0A283D7F4169F5481926B7FF6C2EB8C76F1B_il2cpp_TypeInfo_var);
RemotingException__ctor_m9D41822220B296C09BE7175E8C2D6F65C195F4E9(L_99, L_98, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_99, ChannelServices_RegisterChannelConfig_m3029FA89B6116B34F0496B276C948AB73522BBFD_RuntimeMethod_var);
}
IL_01d9:
{
}
IL_01da:
try
{ // begin try (depth: 1)
ConstructorInfo_t449AEC508DCA508EE46784C4F2716545488ACD5B * L_100 = V_7;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_101 = V_3;
NullCheck(L_100);
RuntimeObject * L_102 = ConstructorInfo_Invoke_m8DF5D6F53038C7B6443EEA82D922724F39CD2906(L_100, L_101, /*hidden argument*/NULL);
V_8 = ((RuntimeObject*)Castclass((RuntimeObject*)L_102, IChannel_tAAB2462B4D468FB11A38ACC68C561C9BA8E9A8B0_il2cpp_TypeInfo_var));
goto IL_01f1;
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (TargetInvocationException_t30F4C50D323F448CD2E08BDB8F47694B08EB354C_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_01eb;
throw e;
}
CATCH_01eb:
{ // begin catch(System.Reflection.TargetInvocationException)
NullCheck(((TargetInvocationException_t30F4C50D323F448CD2E08BDB8F47694B08EB354C *)__exception_local));
Exception_t * L_103 = Exception_get_InnerException_m10D85773B6B191C7D4E7D3C2954B84F9BB195218_inline(((TargetInvocationException_t30F4C50D323F448CD2E08BDB8F47694B08EB354C *)__exception_local), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_103, ChannelServices_RegisterChannelConfig_m3029FA89B6116B34F0496B276C948AB73522BBFD_RuntimeMethod_var);
} // end catch (depth: 1)
IL_01f1:
{
IL2CPP_RUNTIME_CLASS_INIT(ChannelServices_tE1834D9FC8B4A62937AEF20FF29A91B9D3A07B28_il2cpp_TypeInfo_var);
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_104 = ((ChannelServices_tE1834D9FC8B4A62937AEF20FF29A91B9D3A07B28_StaticFields*)il2cpp_codegen_static_fields_for(ChannelServices_tE1834D9FC8B4A62937AEF20FF29A91B9D3A07B28_il2cpp_TypeInfo_var))->get_registeredChannels_0();
NullCheck(L_104);
RuntimeObject * L_105 = VirtFuncInvoker0< RuntimeObject * >::Invoke(21 /* System.Object System.Collections.ArrayList::get_SyncRoot() */, L_104);
V_11 = L_105;
V_12 = (bool)0;
}
IL_0200:
try
{ // begin try (depth: 1)
{
RuntimeObject * L_106 = V_11;
Monitor_Enter_mBEB6CC84184B46F26375EC3FC8921D16E48EA4C4(L_106, (bool*)(&V_12), /*hidden argument*/NULL);
ChannelData_tEA64A2F1AEEC413430B61C6C7C4A1652EFDD9827 * L_107 = ___channel0;
NullCheck(L_107);
String_t* L_108 = L_107->get_DelayLoadAsClientChannel_3();
bool L_109 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_108, _stringLiteralB7C45DD316C68ABF3429C20058C2981C652192F2, /*hidden argument*/NULL);
if (!L_109)
{
goto IL_0233;
}
}
IL_021b:
{
RuntimeObject* L_110 = V_8;
if (((RuntimeObject*)IsInst((RuntimeObject*)L_110, IChannelReceiver_tAB4C6F19EF8F5D5641CB3C4BE305C97819D9B92B_il2cpp_TypeInfo_var)))
{
goto IL_0233;
}
}
IL_0224:
{
IL2CPP_RUNTIME_CLASS_INIT(ChannelServices_tE1834D9FC8B4A62937AEF20FF29A91B9D3A07B28_il2cpp_TypeInfo_var);
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_111 = ((ChannelServices_tE1834D9FC8B4A62937AEF20FF29A91B9D3A07B28_StaticFields*)il2cpp_codegen_static_fields_for(ChannelServices_tE1834D9FC8B4A62937AEF20FF29A91B9D3A07B28_il2cpp_TypeInfo_var))->get_delayedClientChannels_1();
RuntimeObject* L_112 = V_8;
NullCheck(L_111);
VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(24 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_111, L_112);
IL2CPP_LEAVE(0x248, FINALLY_023c);
}
IL_0233:
{
RuntimeObject* L_113 = V_8;
IL2CPP_RUNTIME_CLASS_INIT(ChannelServices_tE1834D9FC8B4A62937AEF20FF29A91B9D3A07B28_il2cpp_TypeInfo_var);
ChannelServices_RegisterChannel_m93E43A37CE8627ECCE5D5BCB2422A1441A55B22B(L_113, /*hidden argument*/NULL);
IL2CPP_LEAVE(0x248, FINALLY_023c);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_023c;
}
FINALLY_023c:
{ // begin finally (depth: 1)
{
bool L_114 = V_12;
if (!L_114)
{
goto IL_0247;
}
}
IL_0240:
{
RuntimeObject * L_115 = V_11;
Monitor_Exit_mA776B403DA88AC77CDEEF67AB9F0D0E77ABD254A(L_115, /*hidden argument*/NULL);
}
IL_0247:
{
IL2CPP_END_FINALLY(572)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(572)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
IL2CPP_JUMP_TBL(0x248, IL_0248)
}
IL_0248:
{
return;
}
}
// System.Object System.Runtime.Remoting.Channels.ChannelServices::CreateProvider(System.Runtime.Remoting.ProviderData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ChannelServices_CreateProvider_mF1C0C24B14C8A7E8393A783A058BDABEBECB9745 (ProviderData_t2E4B222839D59BB2D2C44E370FA8ED37DAF4F582 * ___prov0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ChannelServices_CreateProvider_mF1C0C24B14C8A7E8393A783A058BDABEBECB9745_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Type_t * V_0 = NULL;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* V_1 = NULL;
RuntimeObject * V_2 = NULL;
Exception_t * V_3 = 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);
{
ProviderData_t2E4B222839D59BB2D2C44E370FA8ED37DAF4F582 * L_0 = ___prov0;
NullCheck(L_0);
String_t* L_1 = L_0->get_Type_1();
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_2 = il2cpp_codegen_get_type(Type_GetType_m2D692327E10692E11116805CC604CD47F144A9E4_RuntimeMethod_var, L_1, ChannelServices_CreateProvider_mF1C0C24B14C8A7E8393A783A058BDABEBECB9745_RuntimeMethod_var);
V_0 = L_2;
Type_t * L_3 = V_0;
bool L_4 = Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046(L_3, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_4)
{
goto IL_0030;
}
}
{
ProviderData_t2E4B222839D59BB2D2C44E370FA8ED37DAF4F582 * L_5 = ___prov0;
NullCheck(L_5);
String_t* L_6 = L_5->get_Type_1();
String_t* L_7 = String_Concat_m89EAB4C6A96B0E5C3F87300D6BE78D386B9EFC44(_stringLiteral3C686C624D22B0C45E4FADFB00FA535DDDC88AD7, L_6, _stringLiteralD8DCBB96A969755857FECA260F5484078B4AD706, /*hidden argument*/NULL);
RemotingException_tEFFC0A283D7F4169F5481926B7FF6C2EB8C76F1B * L_8 = (RemotingException_tEFFC0A283D7F4169F5481926B7FF6C2EB8C76F1B *)il2cpp_codegen_object_new(RemotingException_tEFFC0A283D7F4169F5481926B7FF6C2EB8C76F1B_il2cpp_TypeInfo_var);
RemotingException__ctor_m9D41822220B296C09BE7175E8C2D6F65C195F4E9(L_8, L_7, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ChannelServices_CreateProvider_mF1C0C24B14C8A7E8393A783A058BDABEBECB9745_RuntimeMethod_var);
}
IL_0030:
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_9 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var, (uint32_t)2);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_10 = L_9;
ProviderData_t2E4B222839D59BB2D2C44E370FA8ED37DAF4F582 * L_11 = ___prov0;
NullCheck(L_11);
Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_12 = L_11->get_CustomProperties_3();
NullCheck(L_10);
ArrayElementTypeCheck (L_10, L_12);
(L_10)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_12);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_13 = L_10;
ProviderData_t2E4B222839D59BB2D2C44E370FA8ED37DAF4F582 * L_14 = ___prov0;
NullCheck(L_14);
RuntimeObject* L_15 = L_14->get_CustomData_4();
NullCheck(L_13);
ArrayElementTypeCheck (L_13, L_15);
(L_13)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_15);
V_1 = L_13;
}
IL_0049:
try
{ // begin try (depth: 1)
Type_t * L_16 = V_0;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_17 = V_1;
RuntimeObject * L_18 = Activator_CreateInstance_mF3E09E8AC19EE563314B326117091D4B9CC918C1(L_16, L_17, /*hidden argument*/NULL);
V_2 = L_18;
goto IL_0096;
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0053;
throw e;
}
CATCH_0053:
{ // begin catch(System.Exception)
{
V_3 = ((Exception_t *)__exception_local);
Exception_t * L_19 = V_3;
if (!((TargetInvocationException_t30F4C50D323F448CD2E08BDB8F47694B08EB354C *)IsInstSealed((RuntimeObject*)L_19, TargetInvocationException_t30F4C50D323F448CD2E08BDB8F47694B08EB354C_il2cpp_TypeInfo_var)))
{
goto IL_0068;
}
}
IL_005c:
{
Exception_t * L_20 = V_3;
NullCheck(((TargetInvocationException_t30F4C50D323F448CD2E08BDB8F47694B08EB354C *)CastclassSealed((RuntimeObject*)L_20, TargetInvocationException_t30F4C50D323F448CD2E08BDB8F47694B08EB354C_il2cpp_TypeInfo_var)));
Exception_t * L_21 = Exception_get_InnerException_m10D85773B6B191C7D4E7D3C2954B84F9BB195218_inline(((TargetInvocationException_t30F4C50D323F448CD2E08BDB8F47694B08EB354C *)CastclassSealed((RuntimeObject*)L_20, TargetInvocationException_t30F4C50D323F448CD2E08BDB8F47694B08EB354C_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
V_3 = L_21;
}
IL_0068:
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_22 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var, (uint32_t)4);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_23 = L_22;
NullCheck(L_23);
ArrayElementTypeCheck (L_23, _stringLiteral9E97B7B0222C61489C2684AE49BC8FB3A3C911F3);
(L_23)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)_stringLiteral9E97B7B0222C61489C2684AE49BC8FB3A3C911F3);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_24 = L_23;
Type_t * L_25 = V_0;
NullCheck(L_24);
ArrayElementTypeCheck (L_24, L_25);
(L_24)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_25);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_26 = L_24;
NullCheck(L_26);
ArrayElementTypeCheck (L_26, _stringLiteral4D987B618DF7A49E2E03FEAF82F4F9331C0325B2);
(L_26)->SetAt(static_cast<il2cpp_array_size_t>(2), (RuntimeObject *)_stringLiteral4D987B618DF7A49E2E03FEAF82F4F9331C0325B2);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_27 = L_26;
Exception_t * L_28 = V_3;
NullCheck(L_28);
String_t* L_29 = VirtFuncInvoker0< String_t* >::Invoke(5 /* System.String System.Exception::get_Message() */, L_28);
NullCheck(L_27);
ArrayElementTypeCheck (L_27, L_29);
(L_27)->SetAt(static_cast<il2cpp_array_size_t>(3), (RuntimeObject *)L_29);
String_t* L_30 = String_Concat_m6F0ED62933448F8B944E52872E1EE86F6705D306(L_27, /*hidden argument*/NULL);
RemotingException_tEFFC0A283D7F4169F5481926B7FF6C2EB8C76F1B * L_31 = (RemotingException_tEFFC0A283D7F4169F5481926B7FF6C2EB8C76F1B *)il2cpp_codegen_object_new(RemotingException_tEFFC0A283D7F4169F5481926B7FF6C2EB8C76F1B_il2cpp_TypeInfo_var);
RemotingException__ctor_m9D41822220B296C09BE7175E8C2D6F65C195F4E9(L_31, L_30, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_31, ChannelServices_CreateProvider_mF1C0C24B14C8A7E8393A783A058BDABEBECB9745_RuntimeMethod_var);
}
} // end catch (depth: 1)
IL_0096:
{
RuntimeObject * L_32 = V_2;
return L_32;
}
}
// System.Runtime.Remoting.Messaging.IMessage System.Runtime.Remoting.Channels.ChannelServices::SyncDispatchMessage(System.Runtime.Remoting.Messaging.IMessage)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ChannelServices_SyncDispatchMessage_mD86045EA59ADDD9A58DA5B75163D5F4070062426 (RuntimeObject* ___msg0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ChannelServices_SyncDispatchMessage_mD86045EA59ADDD9A58DA5B75163D5F4070062426_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
{
RuntimeObject* L_0 = ___msg0;
IL2CPP_RUNTIME_CLASS_INIT(ChannelServices_tE1834D9FC8B4A62937AEF20FF29A91B9D3A07B28_il2cpp_TypeInfo_var);
ReturnMessage_tBC416F1575159EF223AB8AF256F46F5832E3F3F9 * L_1 = ChannelServices_CheckIncomingMessage_m87435941FE738589D9657BE5E0E3BC8818B4BD3D(L_0, /*hidden argument*/NULL);
V_0 = L_1;
RuntimeObject* L_2 = V_0;
if (!L_2)
{
goto IL_0012;
}
}
{
RuntimeObject* L_3 = ___msg0;
RuntimeObject* L_4 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(ChannelServices_tE1834D9FC8B4A62937AEF20FF29A91B9D3A07B28_il2cpp_TypeInfo_var);
RuntimeObject* L_5 = ChannelServices_CheckReturnMessage_mDF8F2D0FBEB48912A8710A5019789D3DF6033634(L_3, L_4, /*hidden argument*/NULL);
return L_5;
}
IL_0012:
{
IL2CPP_RUNTIME_CLASS_INIT(ChannelServices_tE1834D9FC8B4A62937AEF20FF29A91B9D3A07B28_il2cpp_TypeInfo_var);
CrossContextChannel_tF0389BFF59F875ADDC660EBAF4BA5267F13A88AD * L_6 = ((ChannelServices_tE1834D9FC8B4A62937AEF20FF29A91B9D3A07B28_StaticFields*)il2cpp_codegen_static_fields_for(ChannelServices_tE1834D9FC8B4A62937AEF20FF29A91B9D3A07B28_il2cpp_TypeInfo_var))->get__crossContextSink_2();
RuntimeObject* L_7 = ___msg0;
NullCheck(L_6);
RuntimeObject* L_8 = CrossContextChannel_SyncProcessMessage_m756F4AC5B96F65BE4BB4831FB0E63B12DAFDEFED(L_6, L_7, /*hidden argument*/NULL);
V_0 = L_8;
RuntimeObject* L_9 = ___msg0;
RuntimeObject* L_10 = V_0;
RuntimeObject* L_11 = ChannelServices_CheckReturnMessage_mDF8F2D0FBEB48912A8710A5019789D3DF6033634(L_9, L_10, /*hidden argument*/NULL);
return L_11;
}
}
// System.Runtime.Remoting.Messaging.ReturnMessage System.Runtime.Remoting.Channels.ChannelServices::CheckIncomingMessage(System.Runtime.Remoting.Messaging.IMessage)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReturnMessage_tBC416F1575159EF223AB8AF256F46F5832E3F3F9 * ChannelServices_CheckIncomingMessage_m87435941FE738589D9657BE5E0E3BC8818B4BD3D (RuntimeObject* ___msg0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ChannelServices_CheckIncomingMessage_m87435941FE738589D9657BE5E0E3BC8818B4BD3D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
ServerIdentity_t5689BF0CA0122A8E597C9900D39F11F07D79D3A8 * V_1 = NULL;
{
RuntimeObject* L_0 = ___msg0;
V_0 = ((RuntimeObject*)Castclass((RuntimeObject*)L_0, IMethodMessage_tF1E8AAA822A4BC884BC20CAB4B84F5826BBE282C_il2cpp_TypeInfo_var));
RuntimeObject* L_1 = V_0;
NullCheck(L_1);
String_t* L_2 = InterfaceFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Runtime.Remoting.Messaging.IMethodMessage::get_Uri() */, IMethodMessage_tF1E8AAA822A4BC884BC20CAB4B84F5826BBE282C_il2cpp_TypeInfo_var, L_1);
IL2CPP_RUNTIME_CLASS_INIT(RemotingServices_tA253EA010FDD8986A2E814099EAB32BB98652786_il2cpp_TypeInfo_var);
Identity_t640A44175E23F75AB432A7C00569D863BF48AAD5 * L_3 = RemotingServices_GetIdentityForUri_m29B1471423DFE2A83F3565AF3E68F7E4C1356D35(L_2, /*hidden argument*/NULL);
V_1 = ((ServerIdentity_t5689BF0CA0122A8E597C9900D39F11F07D79D3A8 *)IsInstClass((RuntimeObject*)L_3, ServerIdentity_t5689BF0CA0122A8E597C9900D39F11F07D79D3A8_il2cpp_TypeInfo_var));
ServerIdentity_t5689BF0CA0122A8E597C9900D39F11F07D79D3A8 * L_4 = V_1;
if (L_4)
{
goto IL_003c;
}
}
{
RuntimeObject* L_5 = V_0;
NullCheck(L_5);
String_t* L_6 = InterfaceFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Runtime.Remoting.Messaging.IMethodMessage::get_Uri() */, IMethodMessage_tF1E8AAA822A4BC884BC20CAB4B84F5826BBE282C_il2cpp_TypeInfo_var, L_5);
String_t* L_7 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(_stringLiteral0FE08127C956C63EBBF50CF1F98DF6B7971E092A, L_6, /*hidden argument*/NULL);
RemotingException_tEFFC0A283D7F4169F5481926B7FF6C2EB8C76F1B * L_8 = (RemotingException_tEFFC0A283D7F4169F5481926B7FF6C2EB8C76F1B *)il2cpp_codegen_object_new(RemotingException_tEFFC0A283D7F4169F5481926B7FF6C2EB8C76F1B_il2cpp_TypeInfo_var);
RemotingException__ctor_m9D41822220B296C09BE7175E8C2D6F65C195F4E9(L_8, L_7, /*hidden argument*/NULL);
RuntimeObject* L_9 = ___msg0;
ReturnMessage_tBC416F1575159EF223AB8AF256F46F5832E3F3F9 * L_10 = (ReturnMessage_tBC416F1575159EF223AB8AF256F46F5832E3F3F9 *)il2cpp_codegen_object_new(ReturnMessage_tBC416F1575159EF223AB8AF256F46F5832E3F3F9_il2cpp_TypeInfo_var);
ReturnMessage__ctor_m476904D3D33C1AD682A67958BB303E8A431CEAD5(L_10, L_8, ((RuntimeObject*)Castclass((RuntimeObject*)L_9, IMethodCallMessage_t5C6204CBDF0F7151187809C69BA5504C88EEDE44_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
return L_10;
}
IL_003c:
{
RuntimeObject* L_11 = ___msg0;
ServerIdentity_t5689BF0CA0122A8E597C9900D39F11F07D79D3A8 * L_12 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(RemotingServices_tA253EA010FDD8986A2E814099EAB32BB98652786_il2cpp_TypeInfo_var);
RemotingServices_SetMessageTargetIdentity_m9C7D340CF99D801800DEE109F81EAAC8069A146B(L_11, L_12, /*hidden argument*/NULL);
return (ReturnMessage_tBC416F1575159EF223AB8AF256F46F5832E3F3F9 *)NULL;
}
}
// System.Runtime.Remoting.Messaging.IMessage System.Runtime.Remoting.Channels.ChannelServices::CheckReturnMessage(System.Runtime.Remoting.Messaging.IMessage,System.Runtime.Remoting.Messaging.IMessage)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ChannelServices_CheckReturnMessage_mDF8F2D0FBEB48912A8710A5019789D3DF6033634 (RuntimeObject* ___callMsg0, RuntimeObject* ___retMsg1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ChannelServices_CheckReturnMessage_mDF8F2D0FBEB48912A8710A5019789D3DF6033634_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
{
RuntimeObject* L_0 = ___retMsg1;
V_0 = ((RuntimeObject*)IsInst((RuntimeObject*)L_0, IMethodReturnMessage_t4B84F631CB7E599CD495048748DE5E21B62390B0_il2cpp_TypeInfo_var));
RuntimeObject* L_1 = V_0;
if (!L_1)
{
goto IL_0036;
}
}
{
RuntimeObject* L_2 = V_0;
NullCheck(L_2);
Exception_t * L_3 = InterfaceFuncInvoker0< Exception_t * >::Invoke(0 /* System.Exception System.Runtime.Remoting.Messaging.IMethodReturnMessage::get_Exception() */, IMethodReturnMessage_t4B84F631CB7E599CD495048748DE5E21B62390B0_il2cpp_TypeInfo_var, L_2);
if (!L_3)
{
goto IL_0036;
}
}
{
RuntimeObject* L_4 = ___callMsg0;
IL2CPP_RUNTIME_CLASS_INIT(ChannelServices_tE1834D9FC8B4A62937AEF20FF29A91B9D3A07B28_il2cpp_TypeInfo_var);
bool L_5 = ChannelServices_IsLocalCall_m1A661824B8A50BA67518839FF3E1F0D0518D45DF(L_4, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(RemotingConfiguration_t9AFFB44D1A1D02A702140D927B0173593B67D0C5_il2cpp_TypeInfo_var);
bool L_6 = RemotingConfiguration_CustomErrorsEnabled_m4B6F1334A694CEE4D5E8D65F96E321998F42045A(L_5, /*hidden argument*/NULL);
if (!L_6)
{
goto IL_0036;
}
}
{
Exception_t * L_7 = (Exception_t *)il2cpp_codegen_object_new(Exception_t_il2cpp_TypeInfo_var);
Exception__ctor_m8ECDE8ACA7F2E0EF1144BD1200FB5DB2870B5F11(L_7, _stringLiteralDD8D882CE529CBE19E118FBA7454A7E8DE0B2578, /*hidden argument*/NULL);
RuntimeObject* L_8 = ___callMsg0;
MethodResponse_tF8C71D003BA7D3DFB7C5079C1586139A6130ADC5 * L_9 = (MethodResponse_tF8C71D003BA7D3DFB7C5079C1586139A6130ADC5 *)il2cpp_codegen_object_new(MethodResponse_tF8C71D003BA7D3DFB7C5079C1586139A6130ADC5_il2cpp_TypeInfo_var);
MethodResponse__ctor_mFE56F04DEC8529E42CCB889F4F29E975A4643218(L_9, L_7, ((RuntimeObject*)Castclass((RuntimeObject*)L_8, IMethodCallMessage_t5C6204CBDF0F7151187809C69BA5504C88EEDE44_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
___retMsg1 = L_9;
}
IL_0036:
{
RuntimeObject* L_10 = ___retMsg1;
return L_10;
}
}
// System.Boolean System.Runtime.Remoting.Channels.ChannelServices::IsLocalCall(System.Runtime.Remoting.Messaging.IMessage)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ChannelServices_IsLocalCall_m1A661824B8A50BA67518839FF3E1F0D0518D45DF (RuntimeObject* ___callMsg0, const RuntimeMethod* method)
{
{
return (bool)1;
}
}
// System.Object[] System.Runtime.Remoting.Channels.ChannelServices::GetCurrentChannelInfo()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ChannelServices_GetCurrentChannelInfo_m0EA3A6166C70679FE9953FCBB9DF1334A7C01FD0 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ChannelServices_GetCurrentChannelInfo_m0EA3A6166C70679FE9953FCBB9DF1334A7C01FD0_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * V_0 = NULL;
RuntimeObject * V_1 = NULL;
bool V_2 = false;
RuntimeObject* V_3 = NULL;
RuntimeObject* V_4 = NULL;
RuntimeObject * V_5 = NULL;
RuntimeObject* V_6 = 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);
{
List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * L_0 = (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 *)il2cpp_codegen_object_new(List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5_il2cpp_TypeInfo_var);
List_1__ctor_m0F0E00088CF56FEACC9E32D8B7D91B93D91DAA3B(L_0, /*hidden argument*/List_1__ctor_m0F0E00088CF56FEACC9E32D8B7D91B93D91DAA3B_RuntimeMethod_var);
V_0 = L_0;
IL2CPP_RUNTIME_CLASS_INIT(ChannelServices_tE1834D9FC8B4A62937AEF20FF29A91B9D3A07B28_il2cpp_TypeInfo_var);
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_1 = ((ChannelServices_tE1834D9FC8B4A62937AEF20FF29A91B9D3A07B28_StaticFields*)il2cpp_codegen_static_fields_for(ChannelServices_tE1834D9FC8B4A62937AEF20FF29A91B9D3A07B28_il2cpp_TypeInfo_var))->get_registeredChannels_0();
NullCheck(L_1);
RuntimeObject * L_2 = VirtFuncInvoker0< RuntimeObject * >::Invoke(21 /* System.Object System.Collections.ArrayList::get_SyncRoot() */, L_1);
V_1 = L_2;
V_2 = (bool)0;
}
IL_0013:
try
{ // begin try (depth: 1)
{
RuntimeObject * L_3 = V_1;
Monitor_Enter_mBEB6CC84184B46F26375EC3FC8921D16E48EA4C4(L_3, (bool*)(&V_2), /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(ChannelServices_tE1834D9FC8B4A62937AEF20FF29A91B9D3A07B28_il2cpp_TypeInfo_var);
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_4 = ((ChannelServices_tE1834D9FC8B4A62937AEF20FF29A91B9D3A07B28_StaticFields*)il2cpp_codegen_static_fields_for(ChannelServices_tE1834D9FC8B4A62937AEF20FF29A91B9D3A07B28_il2cpp_TypeInfo_var))->get_registeredChannels_0();
NullCheck(L_4);
RuntimeObject* L_5 = VirtFuncInvoker0< RuntimeObject* >::Invoke(30 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_4);
V_3 = L_5;
}
IL_0026:
try
{ // begin try (depth: 2)
{
goto IL_004e;
}
IL_0028:
{
RuntimeObject* L_6 = V_3;
NullCheck(L_6);
RuntimeObject * L_7 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var, L_6);
V_4 = ((RuntimeObject*)IsInst((RuntimeObject*)L_7, IChannelReceiver_tAB4C6F19EF8F5D5641CB3C4BE305C97819D9B92B_il2cpp_TypeInfo_var));
RuntimeObject* L_8 = V_4;
if (!L_8)
{
goto IL_004e;
}
}
IL_0039:
{
RuntimeObject* L_9 = V_4;
NullCheck(L_9);
RuntimeObject * L_10 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(0 /* System.Object System.Runtime.Remoting.Channels.IChannelReceiver::get_ChannelData() */, IChannelReceiver_tAB4C6F19EF8F5D5641CB3C4BE305C97819D9B92B_il2cpp_TypeInfo_var, L_9);
V_5 = L_10;
RuntimeObject * L_11 = V_5;
if (!L_11)
{
goto IL_004e;
}
}
IL_0046:
{
List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * L_12 = V_0;
RuntimeObject * L_13 = V_5;
NullCheck(L_12);
List_1_Add_mE5B3CBB3A625606D9BC4337FEAAF1D66BCB6F96E(L_12, L_13, /*hidden argument*/List_1_Add_mE5B3CBB3A625606D9BC4337FEAAF1D66BCB6F96E_RuntimeMethod_var);
}
IL_004e:
{
RuntimeObject* L_14 = V_3;
NullCheck(L_14);
bool L_15 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var, L_14);
if (L_15)
{
goto IL_0028;
}
}
IL_0056:
{
IL2CPP_LEAVE(0x76, FINALLY_0058);
}
} // end try (depth: 2)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0058;
}
FINALLY_0058:
{ // begin finally (depth: 2)
{
RuntimeObject* L_16 = V_3;
V_6 = ((RuntimeObject*)IsInst((RuntimeObject*)L_16, IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var));
RuntimeObject* L_17 = V_6;
if (!L_17)
{
goto IL_006b;
}
}
IL_0064:
{
RuntimeObject* L_18 = V_6;
NullCheck(L_18);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var, L_18);
}
IL_006b:
{
IL2CPP_END_FINALLY(88)
}
} // end finally (depth: 2)
IL2CPP_CLEANUP(88)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
IL2CPP_END_CLEANUP(0x76, FINALLY_006c);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_006c;
}
FINALLY_006c:
{ // begin finally (depth: 1)
{
bool L_19 = V_2;
if (!L_19)
{
goto IL_0075;
}
}
IL_006f:
{
RuntimeObject * L_20 = V_1;
Monitor_Exit_mA776B403DA88AC77CDEEF67AB9F0D0E77ABD254A(L_20, /*hidden argument*/NULL);
}
IL_0075:
{
IL2CPP_END_FINALLY(108)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(108)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
IL2CPP_JUMP_TBL(0x76, IL_0076)
}
IL_0076:
{
List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * L_21 = V_0;
NullCheck(L_21);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_22 = List_1_ToArray_mA737986DE6389E9DD8FA8E3D4E222DE4DA34958D(L_21, /*hidden argument*/List_1_ToArray_mA737986DE6389E9DD8FA8E3D4E222DE4DA34958D_RuntimeMethod_var);
return L_22;
}
}
// System.Void System.Runtime.Remoting.Channels.ChannelServices::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ChannelServices__cctor_m5C42CEDBD5444C1D3B49265DAA5CE9CBFDCCBC93 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ChannelServices__cctor_m5C42CEDBD5444C1D3B49265DAA5CE9CBFDCCBC93_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_0 = (ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 *)il2cpp_codegen_object_new(ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575_il2cpp_TypeInfo_var);
ArrayList__ctor_m6847CFECD6BDC2AD10A4AC9852A572B88B8D6B1B(L_0, /*hidden argument*/NULL);
((ChannelServices_tE1834D9FC8B4A62937AEF20FF29A91B9D3A07B28_StaticFields*)il2cpp_codegen_static_fields_for(ChannelServices_tE1834D9FC8B4A62937AEF20FF29A91B9D3A07B28_il2cpp_TypeInfo_var))->set_registeredChannels_0(L_0);
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_1 = (ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 *)il2cpp_codegen_object_new(ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575_il2cpp_TypeInfo_var);
ArrayList__ctor_m6847CFECD6BDC2AD10A4AC9852A572B88B8D6B1B(L_1, /*hidden argument*/NULL);
((ChannelServices_tE1834D9FC8B4A62937AEF20FF29A91B9D3A07B28_StaticFields*)il2cpp_codegen_static_fields_for(ChannelServices_tE1834D9FC8B4A62937AEF20FF29A91B9D3A07B28_il2cpp_TypeInfo_var))->set_delayedClientChannels_1(L_1);
CrossContextChannel_tF0389BFF59F875ADDC660EBAF4BA5267F13A88AD * L_2 = (CrossContextChannel_tF0389BFF59F875ADDC660EBAF4BA5267F13A88AD *)il2cpp_codegen_object_new(CrossContextChannel_tF0389BFF59F875ADDC660EBAF4BA5267F13A88AD_il2cpp_TypeInfo_var);
CrossContextChannel__ctor_m959C9981BAA4534895361E9C806FF05DA3D3785E(L_2, /*hidden argument*/NULL);
((ChannelServices_tE1834D9FC8B4A62937AEF20FF29A91B9D3A07B28_StaticFields*)il2cpp_codegen_static_fields_for(ChannelServices_tE1834D9FC8B4A62937AEF20FF29A91B9D3A07B28_il2cpp_TypeInfo_var))->set__crossContextSink_2(L_2);
((ChannelServices_tE1834D9FC8B4A62937AEF20FF29A91B9D3A07B28_StaticFields*)il2cpp_codegen_static_fields_for(ChannelServices_tE1834D9FC8B4A62937AEF20FF29A91B9D3A07B28_il2cpp_TypeInfo_var))->set_CrossContextUrl_3(_stringLiteralF78DB34483D8EE55037A5BA57AC6FE14AA2E97AE);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_3 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)SZArrayNew(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_4 = L_3;
NullCheck(L_4);
ArrayElementTypeCheck (L_4, _stringLiteral6F13F54F494E28F28376880BC025DFFCA08EF69F);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral6F13F54F494E28F28376880BC025DFFCA08EF69F);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_5 = L_4;
NullCheck(L_5);
ArrayElementTypeCheck (L_5, _stringLiteralB505BEB437FEA875B33D15B66239CDB24A866657);
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteralB505BEB437FEA875B33D15B66239CDB24A866657);
((ChannelServices_tE1834D9FC8B4A62937AEF20FF29A91B9D3A07B28_StaticFields*)il2cpp_codegen_static_fields_for(ChannelServices_tE1834D9FC8B4A62937AEF20FF29A91B9D3A07B28_il2cpp_TypeInfo_var))->set_oldStartModeTypes_4((RuntimeObject*)L_5);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Boolean System.Char::IsLatin1(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsLatin1_mDD9255953CD679C2C126D78A6424CC1ED42336DD (Il2CppChar ___ch0, const RuntimeMethod* method)
{
{
Il2CppChar L_0 = ___ch0;
return (bool)((((int32_t)((((int32_t)L_0) > ((int32_t)((int32_t)255)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
}
// System.Boolean System.Char::IsAscii(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsAscii_mFAFA84C71BBA081F42419C8CDD086949934DEA47 (Il2CppChar ___ch0, const RuntimeMethod* method)
{
{
Il2CppChar L_0 = ___ch0;
return (bool)((((int32_t)((((int32_t)L_0) > ((int32_t)((int32_t)127)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
}
// System.Globalization.UnicodeCategory System.Char::GetLatin1UnicodeCategory(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Char_GetLatin1UnicodeCategory_m3E7F31DAC8AEEDF458F429D991D3B022CD1526D4 (Il2CppChar ___ch0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Char_GetLatin1UnicodeCategory_m3E7F31DAC8AEEDF458F429D991D3B022CD1526D4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_il2cpp_TypeInfo_var);
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_0 = ((Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_StaticFields*)il2cpp_codegen_static_fields_for(Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_il2cpp_TypeInfo_var))->get_categoryForLatin1_3();
Il2CppChar L_1 = ___ch0;
NullCheck(L_0);
Il2CppChar L_2 = L_1;
uint8_t L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
return (int32_t)(L_3);
}
}
// System.Int32 System.Char::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Char_GetHashCode_mC265A6C986A17DD86981F26BBB0BE362DBE45B1B (Il2CppChar* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = *((uint16_t*)__this);
int32_t L_1 = *((uint16_t*)__this);
return ((int32_t)((int32_t)L_0|(int32_t)((int32_t)((int32_t)L_1<<(int32_t)((int32_t)16)))));
}
}
IL2CPP_EXTERN_C int32_t Char_GetHashCode_mC265A6C986A17DD86981F26BBB0BE362DBE45B1B_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Il2CppChar* _thisAdjusted = reinterpret_cast<Il2CppChar*>(__this + _offset);
return Char_GetHashCode_mC265A6C986A17DD86981F26BBB0BE362DBE45B1B(_thisAdjusted, method);
}
// System.Boolean System.Char::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_Equals_mEF0A8A611838D99B799EC01C6EB6A8BE7F8087F8 (Il2CppChar* __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Char_Equals_mEF0A8A611838D99B799EC01C6EB6A8BE7F8087F8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___obj0;
if (((RuntimeObject *)IsInstSealed((RuntimeObject*)L_0, Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_il2cpp_TypeInfo_var)))
{
goto IL_000a;
}
}
{
return (bool)0;
}
IL_000a:
{
int32_t L_1 = *((uint16_t*)__this);
RuntimeObject * L_2 = ___obj0;
return (bool)((((int32_t)L_1) == ((int32_t)((*(Il2CppChar*)((Il2CppChar*)UnBox(L_2, Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_il2cpp_TypeInfo_var))))))? 1 : 0);
}
}
IL2CPP_EXTERN_C bool Char_Equals_mEF0A8A611838D99B799EC01C6EB6A8BE7F8087F8_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
int32_t _offset = 1;
Il2CppChar* _thisAdjusted = reinterpret_cast<Il2CppChar*>(__this + _offset);
return Char_Equals_mEF0A8A611838D99B799EC01C6EB6A8BE7F8087F8(_thisAdjusted, ___obj0, method);
}
// System.Boolean System.Char::Equals(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_Equals_m9A48E390489A3A6074F4FE5A37058A208C35A919 (Il2CppChar* __this, Il2CppChar ___obj0, const RuntimeMethod* method)
{
{
int32_t L_0 = *((uint16_t*)__this);
Il2CppChar L_1 = ___obj0;
return (bool)((((int32_t)L_0) == ((int32_t)L_1))? 1 : 0);
}
}
IL2CPP_EXTERN_C bool Char_Equals_m9A48E390489A3A6074F4FE5A37058A208C35A919_AdjustorThunk (RuntimeObject * __this, Il2CppChar ___obj0, const RuntimeMethod* method)
{
int32_t _offset = 1;
Il2CppChar* _thisAdjusted = reinterpret_cast<Il2CppChar*>(__this + _offset);
return Char_Equals_m9A48E390489A3A6074F4FE5A37058A208C35A919(_thisAdjusted, ___obj0, method);
}
// System.Int32 System.Char::CompareTo(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Char_CompareTo_mE7D17FE8150AD7502B0FD0BF075FD050E544B232 (Il2CppChar* __this, RuntimeObject * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Char_CompareTo_mE7D17FE8150AD7502B0FD0BF075FD050E544B232_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___value0;
if (L_0)
{
goto IL_0005;
}
}
{
return 1;
}
IL_0005:
{
RuntimeObject * L_1 = ___value0;
if (((RuntimeObject *)IsInstSealed((RuntimeObject*)L_1, Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_il2cpp_TypeInfo_var)))
{
goto IL_001d;
}
}
{
String_t* L_2 = Environment_GetResourceString_m8DFF827596B5FD533D3FE56900FA095F7D674617(_stringLiteral5A7ADFD6756FB3736B5F1DD62B8C220E85E5A9A6, /*hidden argument*/NULL);
ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_3 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var);
ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_3, L_2, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, Char_CompareTo_mE7D17FE8150AD7502B0FD0BF075FD050E544B232_RuntimeMethod_var);
}
IL_001d:
{
int32_t L_4 = *((uint16_t*)__this);
RuntimeObject * L_5 = ___value0;
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)((*(Il2CppChar*)((Il2CppChar*)UnBox(L_5, Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_il2cpp_TypeInfo_var))))));
}
}
IL2CPP_EXTERN_C int32_t Char_CompareTo_mE7D17FE8150AD7502B0FD0BF075FD050E544B232_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
{
int32_t _offset = 1;
Il2CppChar* _thisAdjusted = reinterpret_cast<Il2CppChar*>(__this + _offset);
return Char_CompareTo_mE7D17FE8150AD7502B0FD0BF075FD050E544B232(_thisAdjusted, ___value0, method);
}
// System.Int32 System.Char::CompareTo(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Char_CompareTo_m9F4915009A1AD54CF6977E9E16CE112FD244499D (Il2CppChar* __this, Il2CppChar ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = *((uint16_t*)__this);
Il2CppChar L_1 = ___value0;
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1));
}
}
IL2CPP_EXTERN_C int32_t Char_CompareTo_m9F4915009A1AD54CF6977E9E16CE112FD244499D_AdjustorThunk (RuntimeObject * __this, Il2CppChar ___value0, const RuntimeMethod* method)
{
int32_t _offset = 1;
Il2CppChar* _thisAdjusted = reinterpret_cast<Il2CppChar*>(__this + _offset);
return Char_CompareTo_m9F4915009A1AD54CF6977E9E16CE112FD244499D(_thisAdjusted, ___value0, method);
}
// System.String System.Char::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Char_ToString_mE0DE433463C56FD30A4F0A50539553B17147C2F8 (Il2CppChar* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Char_ToString_mE0DE433463C56FD30A4F0A50539553B17147C2F8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = *((uint16_t*)__this);
IL2CPP_RUNTIME_CLASS_INIT(Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_il2cpp_TypeInfo_var);
String_t* L_1 = Char_ToString_mCCD91C745EEDC81490566AAC095F5758F80077F7(L_0, /*hidden argument*/NULL);
return L_1;
}
}
IL2CPP_EXTERN_C String_t* Char_ToString_mE0DE433463C56FD30A4F0A50539553B17147C2F8_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Il2CppChar* _thisAdjusted = reinterpret_cast<Il2CppChar*>(__this + _offset);
return Char_ToString_mE0DE433463C56FD30A4F0A50539553B17147C2F8(_thisAdjusted, method);
}
// System.String System.Char::ToString(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Char_ToString_m06BE905F629AFE67313D613EC0ABFA8572CAEFC2 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Char_ToString_m06BE905F629AFE67313D613EC0ABFA8572CAEFC2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = *((uint16_t*)__this);
IL2CPP_RUNTIME_CLASS_INIT(Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_il2cpp_TypeInfo_var);
String_t* L_1 = Char_ToString_mCCD91C745EEDC81490566AAC095F5758F80077F7(L_0, /*hidden argument*/NULL);
return L_1;
}
}
IL2CPP_EXTERN_C String_t* Char_ToString_m06BE905F629AFE67313D613EC0ABFA8572CAEFC2_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int32_t _offset = 1;
Il2CppChar* _thisAdjusted = reinterpret_cast<Il2CppChar*>(__this + _offset);
return Char_ToString_m06BE905F629AFE67313D613EC0ABFA8572CAEFC2(_thisAdjusted, ___provider0, method);
}
// System.String System.Char::ToString(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Char_ToString_mCCD91C745EEDC81490566AAC095F5758F80077F7 (Il2CppChar ___c0, const RuntimeMethod* method)
{
{
Il2CppChar L_0 = ___c0;
String_t* L_1 = String_CreateString_m4CBF2A74FB65655B0BB1452CA748E9CF78D974ED(NULL, L_0, 1, /*hidden argument*/NULL);
return L_1;
}
}
// System.Char System.Char::Parse(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Char_Parse_m47770850BCFCC5ABE9AA260294EB56BEF85531DE (String_t* ___s0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Char_Parse_m47770850BCFCC5ABE9AA260294EB56BEF85531DE_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___s0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, _stringLiteralDAF2BD03270A51BF9C135F3694DCAD2D3E66F465, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Char_Parse_m47770850BCFCC5ABE9AA260294EB56BEF85531DE_RuntimeMethod_var);
}
IL_000e:
{
String_t* L_2 = ___s0;
NullCheck(L_2);
int32_t L_3 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_2, /*hidden argument*/NULL);
if ((((int32_t)L_3) == ((int32_t)1)))
{
goto IL_0027;
}
}
{
String_t* L_4 = Environment_GetResourceString_m8DFF827596B5FD533D3FE56900FA095F7D674617(_stringLiteral1885083B225A9C3413CEAE49DFF7E6B5770675FB, /*hidden argument*/NULL);
FormatException_t119BB207B54B4B1BC28D9B1783C4625AE23D4759 * L_5 = (FormatException_t119BB207B54B4B1BC28D9B1783C4625AE23D4759 *)il2cpp_codegen_object_new(FormatException_t119BB207B54B4B1BC28D9B1783C4625AE23D4759_il2cpp_TypeInfo_var);
FormatException__ctor_mB8F9A26F985EF9A6C0C082F7D70CFDF2DBDBB23B(L_5, L_4, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, Char_Parse_m47770850BCFCC5ABE9AA260294EB56BEF85531DE_RuntimeMethod_var);
}
IL_0027:
{
String_t* L_6 = ___s0;
NullCheck(L_6);
Il2CppChar L_7 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_6, 0, /*hidden argument*/NULL);
return L_7;
}
}
// System.Boolean System.Char::IsDigit(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsDigit_mC19135099993954C820E030363B943034575F504 (Il2CppChar ___c0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Char_IsDigit_mC19135099993954C820E030363B943034575F504_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Il2CppChar L_0 = ___c0;
IL2CPP_RUNTIME_CLASS_INIT(Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_il2cpp_TypeInfo_var);
bool L_1 = Char_IsLatin1_mDD9255953CD679C2C126D78A6424CC1ED42336DD(L_0, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_0018;
}
}
{
Il2CppChar L_2 = ___c0;
if ((((int32_t)L_2) < ((int32_t)((int32_t)48))))
{
goto IL_0016;
}
}
{
Il2CppChar L_3 = ___c0;
return (bool)((((int32_t)((((int32_t)L_3) > ((int32_t)((int32_t)57)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_0016:
{
return (bool)0;
}
IL_0018:
{
Il2CppChar L_4 = ___c0;
IL2CPP_RUNTIME_CLASS_INIT(CharUnicodeInfo_t9D4692B295E2A9DA68C289734E499AE3F4B41876_il2cpp_TypeInfo_var);
int32_t L_5 = CharUnicodeInfo_GetUnicodeCategory_mD49545DFE510D28FA0B7EB74845DD55F19FF0E21(L_4, /*hidden argument*/NULL);
return (bool)((((int32_t)L_5) == ((int32_t)8))? 1 : 0);
}
}
// System.Boolean System.Char::CheckLetter(System.Globalization.UnicodeCategory)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_CheckLetter_m1AB89A01FD35AAA5EB1790F2E4A78B4829E1E1B6 (int32_t ___uc0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___uc0;
if ((!(((uint32_t)L_0) <= ((uint32_t)4))))
{
goto IL_0006;
}
}
{
return (bool)1;
}
IL_0006:
{
return (bool)0;
}
}
// System.Boolean System.Char::IsLetter(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsLetter_mF204E476D37A9EC10C965929AF16A362CBEA8950 (Il2CppChar ___c0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Char_IsLetter_mF204E476D37A9EC10C965929AF16A362CBEA8950_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Il2CppChar L_0 = ___c0;
IL2CPP_RUNTIME_CLASS_INIT(Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_il2cpp_TypeInfo_var);
bool L_1 = Char_IsLatin1_mDD9255953CD679C2C126D78A6424CC1ED42336DD(L_0, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_0033;
}
}
{
Il2CppChar L_2 = ___c0;
IL2CPP_RUNTIME_CLASS_INIT(Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_il2cpp_TypeInfo_var);
bool L_3 = Char_IsAscii_mFAFA84C71BBA081F42419C8CDD086949934DEA47(L_2, /*hidden argument*/NULL);
if (!L_3)
{
goto IL_0027;
}
}
{
Il2CppChar L_4 = ___c0;
___c0 = (((int32_t)((uint16_t)((int32_t)((int32_t)L_4|(int32_t)((int32_t)32))))));
Il2CppChar L_5 = ___c0;
if ((((int32_t)L_5) < ((int32_t)((int32_t)97))))
{
goto IL_0025;
}
}
{
Il2CppChar L_6 = ___c0;
return (bool)((((int32_t)((((int32_t)L_6) > ((int32_t)((int32_t)122)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_0025:
{
return (bool)0;
}
IL_0027:
{
Il2CppChar L_7 = ___c0;
IL2CPP_RUNTIME_CLASS_INIT(Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_il2cpp_TypeInfo_var);
int32_t L_8 = Char_GetLatin1UnicodeCategory_m3E7F31DAC8AEEDF458F429D991D3B022CD1526D4(L_7, /*hidden argument*/NULL);
bool L_9 = Char_CheckLetter_m1AB89A01FD35AAA5EB1790F2E4A78B4829E1E1B6(L_8, /*hidden argument*/NULL);
return L_9;
}
IL_0033:
{
Il2CppChar L_10 = ___c0;
IL2CPP_RUNTIME_CLASS_INIT(CharUnicodeInfo_t9D4692B295E2A9DA68C289734E499AE3F4B41876_il2cpp_TypeInfo_var);
int32_t L_11 = CharUnicodeInfo_GetUnicodeCategory_mD49545DFE510D28FA0B7EB74845DD55F19FF0E21(L_10, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_il2cpp_TypeInfo_var);
bool L_12 = Char_CheckLetter_m1AB89A01FD35AAA5EB1790F2E4A78B4829E1E1B6(L_11, /*hidden argument*/NULL);
return L_12;
}
}
// System.Boolean System.Char::IsWhiteSpaceLatin1(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsWhiteSpaceLatin1_m3F481728E03EFCD73EEAC4A471E7AB31E29CFA39 (Il2CppChar ___c0, const RuntimeMethod* method)
{
{
Il2CppChar L_0 = ___c0;
if ((((int32_t)L_0) == ((int32_t)((int32_t)32))))
{
goto IL_001f;
}
}
{
Il2CppChar L_1 = ___c0;
if ((((int32_t)L_1) < ((int32_t)((int32_t)9))))
{
goto IL_000f;
}
}
{
Il2CppChar L_2 = ___c0;
if ((((int32_t)L_2) <= ((int32_t)((int32_t)13))))
{
goto IL_001f;
}
}
IL_000f:
{
Il2CppChar L_3 = ___c0;
if ((((int32_t)L_3) == ((int32_t)((int32_t)160))))
{
goto IL_001f;
}
}
{
Il2CppChar L_4 = ___c0;
if ((!(((uint32_t)L_4) == ((uint32_t)((int32_t)133)))))
{
goto IL_0021;
}
}
IL_001f:
{
return (bool)1;
}
IL_0021:
{
return (bool)0;
}
}
// System.Boolean System.Char::IsWhiteSpace(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsWhiteSpace_m99A5E1BE1EB9F17EA530A67A607DA8C260BCBF99 (Il2CppChar ___c0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Char_IsWhiteSpace_m99A5E1BE1EB9F17EA530A67A607DA8C260BCBF99_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Il2CppChar L_0 = ___c0;
IL2CPP_RUNTIME_CLASS_INIT(Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_il2cpp_TypeInfo_var);
bool L_1 = Char_IsLatin1_mDD9255953CD679C2C126D78A6424CC1ED42336DD(L_0, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_000f;
}
}
{
Il2CppChar L_2 = ___c0;
IL2CPP_RUNTIME_CLASS_INIT(Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_il2cpp_TypeInfo_var);
bool L_3 = Char_IsWhiteSpaceLatin1_m3F481728E03EFCD73EEAC4A471E7AB31E29CFA39(L_2, /*hidden argument*/NULL);
return L_3;
}
IL_000f:
{
Il2CppChar L_4 = ___c0;
IL2CPP_RUNTIME_CLASS_INIT(CharUnicodeInfo_t9D4692B295E2A9DA68C289734E499AE3F4B41876_il2cpp_TypeInfo_var);
bool L_5 = CharUnicodeInfo_IsWhiteSpace_mFAE454BD5297E59D1B5B6276F3B1F592A4485F67(L_4, /*hidden argument*/NULL);
return L_5;
}
}
// System.Boolean System.Char::CheckLetterOrDigit(System.Globalization.UnicodeCategory)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_CheckLetterOrDigit_m390DEDDA9D0FCCB93C7B84D3E719C34C514027FD (int32_t ___uc0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___uc0;
if ((!(((uint32_t)L_0) > ((uint32_t)4))))
{
goto IL_0008;
}
}
{
int32_t L_1 = ___uc0;
if ((!(((uint32_t)L_1) == ((uint32_t)8))))
{
goto IL_000a;
}
}
IL_0008:
{
return (bool)1;
}
IL_000a:
{
return (bool)0;
}
}
// System.Boolean System.Char::IsLetterOrDigit(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsLetterOrDigit_m1C9B58CBEB1A3909369234582FA308E3C85F34D6 (Il2CppChar ___c0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Char_IsLetterOrDigit_m1C9B58CBEB1A3909369234582FA308E3C85F34D6_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Il2CppChar L_0 = ___c0;
IL2CPP_RUNTIME_CLASS_INIT(Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_il2cpp_TypeInfo_var);
bool L_1 = Char_IsLatin1_mDD9255953CD679C2C126D78A6424CC1ED42336DD(L_0, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_0014;
}
}
{
Il2CppChar L_2 = ___c0;
IL2CPP_RUNTIME_CLASS_INIT(Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_il2cpp_TypeInfo_var);
int32_t L_3 = Char_GetLatin1UnicodeCategory_m3E7F31DAC8AEEDF458F429D991D3B022CD1526D4(L_2, /*hidden argument*/NULL);
bool L_4 = Char_CheckLetterOrDigit_m390DEDDA9D0FCCB93C7B84D3E719C34C514027FD(L_3, /*hidden argument*/NULL);
return L_4;
}
IL_0014:
{
Il2CppChar L_5 = ___c0;
IL2CPP_RUNTIME_CLASS_INIT(CharUnicodeInfo_t9D4692B295E2A9DA68C289734E499AE3F4B41876_il2cpp_TypeInfo_var);
int32_t L_6 = CharUnicodeInfo_GetUnicodeCategory_mD49545DFE510D28FA0B7EB74845DD55F19FF0E21(L_5, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_il2cpp_TypeInfo_var);
bool L_7 = Char_CheckLetterOrDigit_m390DEDDA9D0FCCB93C7B84D3E719C34C514027FD(L_6, /*hidden argument*/NULL);
return L_7;
}
}
// System.Char System.Char::ToUpper(System.Char,System.Globalization.CultureInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Char_ToUpper_m29916B8AB603D589D84653BEEA12C5B2A8337E27 (Il2CppChar ___c0, CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * ___culture1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Char_ToUpper_m29916B8AB603D589D84653BEEA12C5B2A8337E27_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_0 = ___culture1;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, _stringLiteralB657B9EBAD0A09A09ED1FD8D1CCD0E421CD7BDC7, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Char_ToUpper_m29916B8AB603D589D84653BEEA12C5B2A8337E27_RuntimeMethod_var);
}
IL_000e:
{
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_2 = ___culture1;
NullCheck(L_2);
TextInfo_tE823D0684BFE8B203501C9B2B38585E8F06E872C * L_3 = VirtFuncInvoker0< TextInfo_tE823D0684BFE8B203501C9B2B38585E8F06E872C * >::Invoke(10 /* System.Globalization.TextInfo System.Globalization.CultureInfo::get_TextInfo() */, L_2);
Il2CppChar L_4 = ___c0;
NullCheck(L_3);
Il2CppChar L_5 = VirtFuncInvoker1< Il2CppChar, Il2CppChar >::Invoke(9 /* System.Char System.Globalization.TextInfo::ToUpper(System.Char) */, L_3, L_4);
return L_5;
}
}
// System.Char System.Char::ToUpperInvariant(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Char_ToUpperInvariant_mC633E91835362149763FD5541D09574AF05D541D (Il2CppChar ___c0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Char_ToUpperInvariant_mC633E91835362149763FD5541D09574AF05D541D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Il2CppChar L_0 = ___c0;
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var);
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_1 = CultureInfo_get_InvariantCulture_m9FAAFAF8A00091EE1FCB7098AD3F163ECDF02164(/*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_il2cpp_TypeInfo_var);
Il2CppChar L_2 = Char_ToUpper_m29916B8AB603D589D84653BEEA12C5B2A8337E27(L_0, L_1, /*hidden argument*/NULL);
return L_2;
}
}
// System.Char System.Char::ToLower(System.Char,System.Globalization.CultureInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Char_ToLower_m42C052EB06C3F461C8CEBAD492E102EB721FDECE (Il2CppChar ___c0, CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * ___culture1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Char_ToLower_m42C052EB06C3F461C8CEBAD492E102EB721FDECE_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_0 = ___culture1;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, _stringLiteralB657B9EBAD0A09A09ED1FD8D1CCD0E421CD7BDC7, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Char_ToLower_m42C052EB06C3F461C8CEBAD492E102EB721FDECE_RuntimeMethod_var);
}
IL_000e:
{
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_2 = ___culture1;
NullCheck(L_2);
TextInfo_tE823D0684BFE8B203501C9B2B38585E8F06E872C * L_3 = VirtFuncInvoker0< TextInfo_tE823D0684BFE8B203501C9B2B38585E8F06E872C * >::Invoke(10 /* System.Globalization.TextInfo System.Globalization.CultureInfo::get_TextInfo() */, L_2);
Il2CppChar L_4 = ___c0;
NullCheck(L_3);
Il2CppChar L_5 = VirtFuncInvoker1< Il2CppChar, Il2CppChar >::Invoke(7 /* System.Char System.Globalization.TextInfo::ToLower(System.Char) */, L_3, L_4);
return L_5;
}
}
// System.Char System.Char::ToLowerInvariant(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Char_ToLowerInvariant_mA5541ADE6FA5082D0877F64FAA44F3C7C518866C (Il2CppChar ___c0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Char_ToLowerInvariant_mA5541ADE6FA5082D0877F64FAA44F3C7C518866C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Il2CppChar L_0 = ___c0;
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var);
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_1 = CultureInfo_get_InvariantCulture_m9FAAFAF8A00091EE1FCB7098AD3F163ECDF02164(/*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_il2cpp_TypeInfo_var);
Il2CppChar L_2 = Char_ToLower_m42C052EB06C3F461C8CEBAD492E102EB721FDECE(L_0, L_1, /*hidden argument*/NULL);
return L_2;
}
}
// System.TypeCode System.Char::GetTypeCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Char_GetTypeCode_mE055D071B128B63F5F347F7C9305922A51F495C7 (Il2CppChar* __this, const RuntimeMethod* method)
{
{
return (int32_t)(4);
}
}
IL2CPP_EXTERN_C int32_t Char_GetTypeCode_mE055D071B128B63F5F347F7C9305922A51F495C7_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
Il2CppChar* _thisAdjusted = reinterpret_cast<Il2CppChar*>(__this + _offset);
return Char_GetTypeCode_mE055D071B128B63F5F347F7C9305922A51F495C7(_thisAdjusted, method);
}
// System.Boolean System.Char::System.IConvertible.ToBoolean(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_System_IConvertible_ToBoolean_m8131B0F7E5172597E2DDF2BBF99B1F7F6756527F (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Char_System_IConvertible_ToBoolean_m8131B0F7E5172597E2DDF2BBF99B1F7F6756527F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_0 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var, (uint32_t)2);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_1 = L_0;
NullCheck(L_1);
ArrayElementTypeCheck (L_1, _stringLiteralE75F4F4A9D67BC98BA7DB8DBE3C519516572DA4E);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)_stringLiteralE75F4F4A9D67BC98BA7DB8DBE3C519516572DA4E);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_2 = L_1;
NullCheck(L_2);
ArrayElementTypeCheck (L_2, _stringLiteral6C8C975CC62CF419550282B028FB7E3A1F591D06);
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)_stringLiteral6C8C975CC62CF419550282B028FB7E3A1F591D06);
String_t* L_3 = Environment_GetResourceString_m9A30EE9F4E10F48B79F9EB56D18D52AE7E7EB602(_stringLiteral6E9AEBB5505B4A1DBC166711562BE9408419A24D, L_2, /*hidden argument*/NULL);
InvalidCastException_tD99F9FF94C3859C78E90F68C2F77A1558BCAF463 * L_4 = (InvalidCastException_tD99F9FF94C3859C78E90F68C2F77A1558BCAF463 *)il2cpp_codegen_object_new(InvalidCastException_tD99F9FF94C3859C78E90F68C2F77A1558BCAF463_il2cpp_TypeInfo_var);
InvalidCastException__ctor_m50103CBF0C211B93BF46697875413A10B5A5C5A3(L_4, L_3, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, Char_System_IConvertible_ToBoolean_m8131B0F7E5172597E2DDF2BBF99B1F7F6756527F_RuntimeMethod_var);
}
}
IL2CPP_EXTERN_C bool Char_System_IConvertible_ToBoolean_m8131B0F7E5172597E2DDF2BBF99B1F7F6756527F_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int32_t _offset = 1;
Il2CppChar* _thisAdjusted = reinterpret_cast<Il2CppChar*>(__this + _offset);
return Char_System_IConvertible_ToBoolean_m8131B0F7E5172597E2DDF2BBF99B1F7F6756527F(_thisAdjusted, ___provider0, method);
}
// System.Char System.Char::System.IConvertible.ToChar(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Char_System_IConvertible_ToChar_mF78D23EE96D9FB964F7A9670E82FC35EEE3C67F6 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
{
int32_t L_0 = *((uint16_t*)__this);
return L_0;
}
}
IL2CPP_EXTERN_C Il2CppChar Char_System_IConvertible_ToChar_mF78D23EE96D9FB964F7A9670E82FC35EEE3C67F6_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int32_t _offset = 1;
Il2CppChar* _thisAdjusted = reinterpret_cast<Il2CppChar*>(__this + _offset);
return Char_System_IConvertible_ToChar_mF78D23EE96D9FB964F7A9670E82FC35EEE3C67F6(_thisAdjusted, ___provider0, method);
}
// System.SByte System.Char::System.IConvertible.ToSByte(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t Char_System_IConvertible_ToSByte_mA03BCFDBB057C48B0C7F8D290B8F32B413D6BFDF (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Char_System_IConvertible_ToSByte_mA03BCFDBB057C48B0C7F8D290B8F32B413D6BFDF_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = *((uint16_t*)__this);
IL2CPP_RUNTIME_CLASS_INIT(Convert_tDA947A979C1DAB4F09C461FAFD94FE194743A671_il2cpp_TypeInfo_var);
int8_t L_1 = Convert_ToSByte_m015CE5F044870DD85FC1187A414CDA1AB4FA287E(L_0, /*hidden argument*/NULL);
return L_1;
}
}
IL2CPP_EXTERN_C int8_t Char_System_IConvertible_ToSByte_mA03BCFDBB057C48B0C7F8D290B8F32B413D6BFDF_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int32_t _offset = 1;
Il2CppChar* _thisAdjusted = reinterpret_cast<Il2CppChar*>(__this + _offset);
return Char_System_IConvertible_ToSByte_mA03BCFDBB057C48B0C7F8D290B8F32B413D6BFDF(_thisAdjusted, ___provider0, method);
}
// System.Byte System.Char::System.IConvertible.ToByte(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Char_System_IConvertible_ToByte_m98DB98CD2C1B5B12D5F578CBC74C08BE66139D30 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Char_System_IConvertible_ToByte_m98DB98CD2C1B5B12D5F578CBC74C08BE66139D30_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = *((uint16_t*)__this);
IL2CPP_RUNTIME_CLASS_INIT(Convert_tDA947A979C1DAB4F09C461FAFD94FE194743A671_il2cpp_TypeInfo_var);
uint8_t L_1 = Convert_ToByte_m89B9D00AB06D6EA6D880E203547497B2E865783F(L_0, /*hidden argument*/NULL);
return L_1;
}
}
IL2CPP_EXTERN_C uint8_t Char_System_IConvertible_ToByte_m98DB98CD2C1B5B12D5F578CBC74C08BE66139D30_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int32_t _offset = 1;
Il2CppChar* _thisAdjusted = reinterpret_cast<Il2CppChar*>(__this + _offset);
return Char_System_IConvertible_ToByte_m98DB98CD2C1B5B12D5F578CBC74C08BE66139D30(_thisAdjusted, ___provider0, method);
}
// System.Int16 System.Char::System.IConvertible.ToInt16(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t Char_System_IConvertible_ToInt16_mA007C3EFCD8EF6CB2EEB60DC09650473120F944A (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Char_System_IConvertible_ToInt16_mA007C3EFCD8EF6CB2EEB60DC09650473120F944A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = *((uint16_t*)__this);
IL2CPP_RUNTIME_CLASS_INIT(Convert_tDA947A979C1DAB4F09C461FAFD94FE194743A671_il2cpp_TypeInfo_var);
int16_t L_1 = Convert_ToInt16_mC0EEC22D6804829535BE385D1EF33C50A2805942(L_0, /*hidden argument*/NULL);
return L_1;
}
}
IL2CPP_EXTERN_C int16_t Char_System_IConvertible_ToInt16_mA007C3EFCD8EF6CB2EEB60DC09650473120F944A_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int32_t _offset = 1;
Il2CppChar* _thisAdjusted = reinterpret_cast<Il2CppChar*>(__this + _offset);
return Char_System_IConvertible_ToInt16_mA007C3EFCD8EF6CB2EEB60DC09650473120F944A(_thisAdjusted, ___provider0, method);
}
// System.UInt16 System.Char::System.IConvertible.ToUInt16(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Char_System_IConvertible_ToUInt16_m93424CACB856513E093FE4A38904940118EA370E (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Char_System_IConvertible_ToUInt16_m93424CACB856513E093FE4A38904940118EA370E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = *((uint16_t*)__this);
IL2CPP_RUNTIME_CLASS_INIT(Convert_tDA947A979C1DAB4F09C461FAFD94FE194743A671_il2cpp_TypeInfo_var);
uint16_t L_1 = Convert_ToUInt16_m2C0380D82FEEB5D51625D33EF9C7C8E8DF78D8BC(L_0, /*hidden argument*/NULL);
return L_1;
}
}
IL2CPP_EXTERN_C uint16_t Char_System_IConvertible_ToUInt16_m93424CACB856513E093FE4A38904940118EA370E_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int32_t _offset = 1;
Il2CppChar* _thisAdjusted = reinterpret_cast<Il2CppChar*>(__this + _offset);
return Char_System_IConvertible_ToUInt16_m93424CACB856513E093FE4A38904940118EA370E(_thisAdjusted, ___provider0, method);
}
// System.Int32 System.Char::System.IConvertible.ToInt32(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Char_System_IConvertible_ToInt32_mFBC76E62BEBFE0E8E72583C6065DE465DE068B54 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Char_System_IConvertible_ToInt32_mFBC76E62BEBFE0E8E72583C6065DE465DE068B54_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = *((uint16_t*)__this);
IL2CPP_RUNTIME_CLASS_INIT(Convert_tDA947A979C1DAB4F09C461FAFD94FE194743A671_il2cpp_TypeInfo_var);
int32_t L_1 = Convert_ToInt32_m0B80BF2883121B16934DF6F71590CAE15442A5BC(L_0, /*hidden argument*/NULL);
return L_1;
}
}
IL2CPP_EXTERN_C int32_t Char_System_IConvertible_ToInt32_mFBC76E62BEBFE0E8E72583C6065DE465DE068B54_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int32_t _offset = 1;
Il2CppChar* _thisAdjusted = reinterpret_cast<Il2CppChar*>(__this + _offset);
return Char_System_IConvertible_ToInt32_mFBC76E62BEBFE0E8E72583C6065DE465DE068B54(_thisAdjusted, ___provider0, method);
}
// System.UInt32 System.Char::System.IConvertible.ToUInt32(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Char_System_IConvertible_ToUInt32_mBFC199578C9339A68C5832FFA7E1D75EE8DC0757 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Char_System_IConvertible_ToUInt32_mBFC199578C9339A68C5832FFA7E1D75EE8DC0757_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = *((uint16_t*)__this);
IL2CPP_RUNTIME_CLASS_INIT(Convert_tDA947A979C1DAB4F09C461FAFD94FE194743A671_il2cpp_TypeInfo_var);
uint32_t L_1 = Convert_ToUInt32_mF0C89AA5332B4EC293477EEC70ED25776B6686B9(L_0, /*hidden argument*/NULL);
return L_1;
}
}
IL2CPP_EXTERN_C uint32_t Char_System_IConvertible_ToUInt32_mBFC199578C9339A68C5832FFA7E1D75EE8DC0757_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int32_t _offset = 1;
Il2CppChar* _thisAdjusted = reinterpret_cast<Il2CppChar*>(__this + _offset);
return Char_System_IConvertible_ToUInt32_mBFC199578C9339A68C5832FFA7E1D75EE8DC0757(_thisAdjusted, ___provider0, method);
}
// System.Int64 System.Char::System.IConvertible.ToInt64(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Char_System_IConvertible_ToInt64_mFA3A5CB789A1A727A69EC653A680B74FB54298F0 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Char_System_IConvertible_ToInt64_mFA3A5CB789A1A727A69EC653A680B74FB54298F0_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = *((uint16_t*)__this);
IL2CPP_RUNTIME_CLASS_INIT(Convert_tDA947A979C1DAB4F09C461FAFD94FE194743A671_il2cpp_TypeInfo_var);
int64_t L_1 = Convert_ToInt64_m9C841198EEA538F9452B24B2CA7302E466E008C6(L_0, /*hidden argument*/NULL);
return L_1;
}
}
IL2CPP_EXTERN_C int64_t Char_System_IConvertible_ToInt64_mFA3A5CB789A1A727A69EC653A680B74FB54298F0_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int32_t _offset = 1;
Il2CppChar* _thisAdjusted = reinterpret_cast<Il2CppChar*>(__this + _offset);
return Char_System_IConvertible_ToInt64_mFA3A5CB789A1A727A69EC653A680B74FB54298F0(_thisAdjusted, ___provider0, method);
}
// System.UInt64 System.Char::System.IConvertible.ToUInt64(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Char_System_IConvertible_ToUInt64_m490ACA7483A9781ED948CDBBDAE36EB29B731BF3 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Char_System_IConvertible_ToUInt64_m490ACA7483A9781ED948CDBBDAE36EB29B731BF3_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = *((uint16_t*)__this);
IL2CPP_RUNTIME_CLASS_INIT(Convert_tDA947A979C1DAB4F09C461FAFD94FE194743A671_il2cpp_TypeInfo_var);
uint64_t L_1 = Convert_ToUInt64_m272F4A787DB6E15CE656FA41A1969A6D6EE38516(L_0, /*hidden argument*/NULL);
return L_1;
}
}
IL2CPP_EXTERN_C uint64_t Char_System_IConvertible_ToUInt64_m490ACA7483A9781ED948CDBBDAE36EB29B731BF3_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int32_t _offset = 1;
Il2CppChar* _thisAdjusted = reinterpret_cast<Il2CppChar*>(__this + _offset);
return Char_System_IConvertible_ToUInt64_m490ACA7483A9781ED948CDBBDAE36EB29B731BF3(_thisAdjusted, ___provider0, method);
}
// System.Single System.Char::System.IConvertible.ToSingle(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Char_System_IConvertible_ToSingle_mBEEA918E0DDB880615B78AA7E68EFDA5628739B0 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Char_System_IConvertible_ToSingle_mBEEA918E0DDB880615B78AA7E68EFDA5628739B0_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_0 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var, (uint32_t)2);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_1 = L_0;
NullCheck(L_1);
ArrayElementTypeCheck (L_1, _stringLiteralE75F4F4A9D67BC98BA7DB8DBE3C519516572DA4E);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)_stringLiteralE75F4F4A9D67BC98BA7DB8DBE3C519516572DA4E);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_2 = L_1;
NullCheck(L_2);
ArrayElementTypeCheck (L_2, _stringLiteralE895F499BC653C0CA36FB31C5936FC768CAD263E);
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)_stringLiteralE895F499BC653C0CA36FB31C5936FC768CAD263E);
String_t* L_3 = Environment_GetResourceString_m9A30EE9F4E10F48B79F9EB56D18D52AE7E7EB602(_stringLiteral6E9AEBB5505B4A1DBC166711562BE9408419A24D, L_2, /*hidden argument*/NULL);
InvalidCastException_tD99F9FF94C3859C78E90F68C2F77A1558BCAF463 * L_4 = (InvalidCastException_tD99F9FF94C3859C78E90F68C2F77A1558BCAF463 *)il2cpp_codegen_object_new(InvalidCastException_tD99F9FF94C3859C78E90F68C2F77A1558BCAF463_il2cpp_TypeInfo_var);
InvalidCastException__ctor_m50103CBF0C211B93BF46697875413A10B5A5C5A3(L_4, L_3, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, Char_System_IConvertible_ToSingle_mBEEA918E0DDB880615B78AA7E68EFDA5628739B0_RuntimeMethod_var);
}
}
IL2CPP_EXTERN_C float Char_System_IConvertible_ToSingle_mBEEA918E0DDB880615B78AA7E68EFDA5628739B0_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int32_t _offset = 1;
Il2CppChar* _thisAdjusted = reinterpret_cast<Il2CppChar*>(__this + _offset);
return Char_System_IConvertible_ToSingle_mBEEA918E0DDB880615B78AA7E68EFDA5628739B0(_thisAdjusted, ___provider0, method);
}
// System.Double System.Char::System.IConvertible.ToDouble(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Char_System_IConvertible_ToDouble_m4A38F71DD4D245195E4A8A9454698747FF839973 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Char_System_IConvertible_ToDouble_m4A38F71DD4D245195E4A8A9454698747FF839973_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_0 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var, (uint32_t)2);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_1 = L_0;
NullCheck(L_1);
ArrayElementTypeCheck (L_1, _stringLiteralE75F4F4A9D67BC98BA7DB8DBE3C519516572DA4E);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)_stringLiteralE75F4F4A9D67BC98BA7DB8DBE3C519516572DA4E);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_2 = L_1;
NullCheck(L_2);
ArrayElementTypeCheck (L_2, _stringLiteralF13E4BFF086D4E511E68B0617B76ACC5BD5AFFE7);
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)_stringLiteralF13E4BFF086D4E511E68B0617B76ACC5BD5AFFE7);
String_t* L_3 = Environment_GetResourceString_m9A30EE9F4E10F48B79F9EB56D18D52AE7E7EB602(_stringLiteral6E9AEBB5505B4A1DBC166711562BE9408419A24D, L_2, /*hidden argument*/NULL);
InvalidCastException_tD99F9FF94C3859C78E90F68C2F77A1558BCAF463 * L_4 = (InvalidCastException_tD99F9FF94C3859C78E90F68C2F77A1558BCAF463 *)il2cpp_codegen_object_new(InvalidCastException_tD99F9FF94C3859C78E90F68C2F77A1558BCAF463_il2cpp_TypeInfo_var);
InvalidCastException__ctor_m50103CBF0C211B93BF46697875413A10B5A5C5A3(L_4, L_3, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, Char_System_IConvertible_ToDouble_m4A38F71DD4D245195E4A8A9454698747FF839973_RuntimeMethod_var);
}
}
IL2CPP_EXTERN_C double Char_System_IConvertible_ToDouble_m4A38F71DD4D245195E4A8A9454698747FF839973_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int32_t _offset = 1;
Il2CppChar* _thisAdjusted = reinterpret_cast<Il2CppChar*>(__this + _offset);
return Char_System_IConvertible_ToDouble_m4A38F71DD4D245195E4A8A9454698747FF839973(_thisAdjusted, ___provider0, method);
}
// System.Decimal System.Char::System.IConvertible.ToDecimal(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 Char_System_IConvertible_ToDecimal_mAFFF4BCA3B972F1857572AB7A556014FDDFAE142 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Char_System_IConvertible_ToDecimal_mAFFF4BCA3B972F1857572AB7A556014FDDFAE142_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_0 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var, (uint32_t)2);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_1 = L_0;
NullCheck(L_1);
ArrayElementTypeCheck (L_1, _stringLiteralE75F4F4A9D67BC98BA7DB8DBE3C519516572DA4E);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)_stringLiteralE75F4F4A9D67BC98BA7DB8DBE3C519516572DA4E);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_2 = L_1;
NullCheck(L_2);
ArrayElementTypeCheck (L_2, _stringLiteral5B41A58E45555854EC2026B9B5F8243AA9E7ED4B);
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)_stringLiteral5B41A58E45555854EC2026B9B5F8243AA9E7ED4B);
String_t* L_3 = Environment_GetResourceString_m9A30EE9F4E10F48B79F9EB56D18D52AE7E7EB602(_stringLiteral6E9AEBB5505B4A1DBC166711562BE9408419A24D, L_2, /*hidden argument*/NULL);
InvalidCastException_tD99F9FF94C3859C78E90F68C2F77A1558BCAF463 * L_4 = (InvalidCastException_tD99F9FF94C3859C78E90F68C2F77A1558BCAF463 *)il2cpp_codegen_object_new(InvalidCastException_tD99F9FF94C3859C78E90F68C2F77A1558BCAF463_il2cpp_TypeInfo_var);
InvalidCastException__ctor_m50103CBF0C211B93BF46697875413A10B5A5C5A3(L_4, L_3, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, Char_System_IConvertible_ToDecimal_mAFFF4BCA3B972F1857572AB7A556014FDDFAE142_RuntimeMethod_var);
}
}
IL2CPP_EXTERN_C Decimal_t2978B229CA86D3B7BA66A0AEEE014E0DE4F940D7 Char_System_IConvertible_ToDecimal_mAFFF4BCA3B972F1857572AB7A556014FDDFAE142_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int32_t _offset = 1;
Il2CppChar* _thisAdjusted = reinterpret_cast<Il2CppChar*>(__this + _offset);
return Char_System_IConvertible_ToDecimal_mAFFF4BCA3B972F1857572AB7A556014FDDFAE142(_thisAdjusted, ___provider0, method);
}
// System.DateTime System.Char::System.IConvertible.ToDateTime(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 Char_System_IConvertible_ToDateTime_m4914992CA9F261994C101161C1AE023B94CCD744 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Char_System_IConvertible_ToDateTime_m4914992CA9F261994C101161C1AE023B94CCD744_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_0 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var, (uint32_t)2);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_1 = L_0;
NullCheck(L_1);
ArrayElementTypeCheck (L_1, _stringLiteralE75F4F4A9D67BC98BA7DB8DBE3C519516572DA4E);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)_stringLiteralE75F4F4A9D67BC98BA7DB8DBE3C519516572DA4E);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_2 = L_1;
NullCheck(L_2);
ArrayElementTypeCheck (L_2, _stringLiteral401602777C44EA69B5FF9AB6AB2D47AEEC89D2AA);
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)_stringLiteral401602777C44EA69B5FF9AB6AB2D47AEEC89D2AA);
String_t* L_3 = Environment_GetResourceString_m9A30EE9F4E10F48B79F9EB56D18D52AE7E7EB602(_stringLiteral6E9AEBB5505B4A1DBC166711562BE9408419A24D, L_2, /*hidden argument*/NULL);
InvalidCastException_tD99F9FF94C3859C78E90F68C2F77A1558BCAF463 * L_4 = (InvalidCastException_tD99F9FF94C3859C78E90F68C2F77A1558BCAF463 *)il2cpp_codegen_object_new(InvalidCastException_tD99F9FF94C3859C78E90F68C2F77A1558BCAF463_il2cpp_TypeInfo_var);
InvalidCastException__ctor_m50103CBF0C211B93BF46697875413A10B5A5C5A3(L_4, L_3, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, Char_System_IConvertible_ToDateTime_m4914992CA9F261994C101161C1AE023B94CCD744_RuntimeMethod_var);
}
}
IL2CPP_EXTERN_C DateTime_tEAF2CD16E071DF5441F40822E4CFE880E5245405 Char_System_IConvertible_ToDateTime_m4914992CA9F261994C101161C1AE023B94CCD744_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___provider0, const RuntimeMethod* method)
{
int32_t _offset = 1;
Il2CppChar* _thisAdjusted = reinterpret_cast<Il2CppChar*>(__this + _offset);
return Char_System_IConvertible_ToDateTime_m4914992CA9F261994C101161C1AE023B94CCD744(_thisAdjusted, ___provider0, method);
}
// System.Object System.Char::System.IConvertible.ToType(System.Type,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Char_System_IConvertible_ToType_mAAAA2971F85C8C4AFF3CE57C77D5F1924FE079D5 (Il2CppChar* __this, Type_t * ___type0, RuntimeObject* ___provider1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Char_System_IConvertible_ToType_mAAAA2971F85C8C4AFF3CE57C77D5F1924FE079D5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = *((uint16_t*)__this);
Il2CppChar L_1 = ((Il2CppChar)L_0);
RuntimeObject * L_2 = Box(Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_il2cpp_TypeInfo_var, &L_1);
Type_t * L_3 = ___type0;
RuntimeObject* L_4 = ___provider1;
IL2CPP_RUNTIME_CLASS_INIT(Convert_tDA947A979C1DAB4F09C461FAFD94FE194743A671_il2cpp_TypeInfo_var);
RuntimeObject * L_5 = Convert_DefaultToType_m49730E740820DF7AA76C18ACF700FA3635AFBC33((RuntimeObject*)L_2, L_3, L_4, /*hidden argument*/NULL);
return L_5;
}
}
IL2CPP_EXTERN_C RuntimeObject * Char_System_IConvertible_ToType_mAAAA2971F85C8C4AFF3CE57C77D5F1924FE079D5_AdjustorThunk (RuntimeObject * __this, Type_t * ___type0, RuntimeObject* ___provider1, const RuntimeMethod* method)
{
int32_t _offset = 1;
Il2CppChar* _thisAdjusted = reinterpret_cast<Il2CppChar*>(__this + _offset);
return Char_System_IConvertible_ToType_mAAAA2971F85C8C4AFF3CE57C77D5F1924FE079D5(_thisAdjusted, ___type0, ___provider1, method);
}
// System.Boolean System.Char::IsLetterOrDigit(System.String,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsLetterOrDigit_mD4066056FDE44A25DBC022E73FED10C34CF642D8 (String_t* ___s0, int32_t ___index1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Char_IsLetterOrDigit_mD4066056FDE44A25DBC022E73FED10C34CF642D8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Il2CppChar V_0 = 0x0;
{
String_t* L_0 = ___s0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, _stringLiteralDAF2BD03270A51BF9C135F3694DCAD2D3E66F465, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Char_IsLetterOrDigit_mD4066056FDE44A25DBC022E73FED10C34CF642D8_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___index1;
String_t* L_3 = ___s0;
NullCheck(L_3);
int32_t L_4 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_3, /*hidden argument*/NULL);
if ((!(((uint32_t)L_2) >= ((uint32_t)L_4))))
{
goto IL_0022;
}
}
{
ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_5 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m329C2882A4CB69F185E98D0DD7E853AA9220960A(L_5, _stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, Char_IsLetterOrDigit_mD4066056FDE44A25DBC022E73FED10C34CF642D8_RuntimeMethod_var);
}
IL_0022:
{
String_t* L_6 = ___s0;
int32_t L_7 = ___index1;
NullCheck(L_6);
Il2CppChar L_8 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_6, L_7, /*hidden argument*/NULL);
V_0 = L_8;
Il2CppChar L_9 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_il2cpp_TypeInfo_var);
bool L_10 = Char_IsLatin1_mDD9255953CD679C2C126D78A6424CC1ED42336DD(L_9, /*hidden argument*/NULL);
if (!L_10)
{
goto IL_003e;
}
}
{
Il2CppChar L_11 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_il2cpp_TypeInfo_var);
int32_t L_12 = Char_GetLatin1UnicodeCategory_m3E7F31DAC8AEEDF458F429D991D3B022CD1526D4(L_11, /*hidden argument*/NULL);
bool L_13 = Char_CheckLetterOrDigit_m390DEDDA9D0FCCB93C7B84D3E719C34C514027FD(L_12, /*hidden argument*/NULL);
return L_13;
}
IL_003e:
{
String_t* L_14 = ___s0;
int32_t L_15 = ___index1;
IL2CPP_RUNTIME_CLASS_INIT(CharUnicodeInfo_t9D4692B295E2A9DA68C289734E499AE3F4B41876_il2cpp_TypeInfo_var);
int32_t L_16 = CharUnicodeInfo_GetUnicodeCategory_m27B7793950B7DE1E7446CDEE6DC2363FD83D785A(L_14, L_15, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_il2cpp_TypeInfo_var);
bool L_17 = Char_CheckLetterOrDigit_m390DEDDA9D0FCCB93C7B84D3E719C34C514027FD(L_16, /*hidden argument*/NULL);
return L_17;
}
}
// System.Boolean System.Char::CheckNumber(System.Globalization.UnicodeCategory)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_CheckNumber_m138086CACA363A8889B25EC309D3ECCB73D99214 (int32_t ___uc0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___uc0;
if ((!(((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)8))) <= ((uint32_t)2))))
{
goto IL_0008;
}
}
{
return (bool)1;
}
IL_0008:
{
return (bool)0;
}
}
// System.Boolean System.Char::IsNumber(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsNumber_m1575CB90219C78EABADD70B3E53D53522CB0BB9D (Il2CppChar ___c0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Char_IsNumber_m1575CB90219C78EABADD70B3E53D53522CB0BB9D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Il2CppChar L_0 = ___c0;
IL2CPP_RUNTIME_CLASS_INIT(Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_il2cpp_TypeInfo_var);
bool L_1 = Char_IsLatin1_mDD9255953CD679C2C126D78A6424CC1ED42336DD(L_0, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_002c;
}
}
{
Il2CppChar L_2 = ___c0;
IL2CPP_RUNTIME_CLASS_INIT(Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_il2cpp_TypeInfo_var);
bool L_3 = Char_IsAscii_mFAFA84C71BBA081F42419C8CDD086949934DEA47(L_2, /*hidden argument*/NULL);
if (!L_3)
{
goto IL_0020;
}
}
{
Il2CppChar L_4 = ___c0;
if ((((int32_t)L_4) < ((int32_t)((int32_t)48))))
{
goto IL_001e;
}
}
{
Il2CppChar L_5 = ___c0;
return (bool)((((int32_t)((((int32_t)L_5) > ((int32_t)((int32_t)57)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_001e:
{
return (bool)0;
}
IL_0020:
{
Il2CppChar L_6 = ___c0;
IL2CPP_RUNTIME_CLASS_INIT(Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_il2cpp_TypeInfo_var);
int32_t L_7 = Char_GetLatin1UnicodeCategory_m3E7F31DAC8AEEDF458F429D991D3B022CD1526D4(L_6, /*hidden argument*/NULL);
bool L_8 = Char_CheckNumber_m138086CACA363A8889B25EC309D3ECCB73D99214(L_7, /*hidden argument*/NULL);
return L_8;
}
IL_002c:
{
Il2CppChar L_9 = ___c0;
IL2CPP_RUNTIME_CLASS_INIT(CharUnicodeInfo_t9D4692B295E2A9DA68C289734E499AE3F4B41876_il2cpp_TypeInfo_var);
int32_t L_10 = CharUnicodeInfo_GetUnicodeCategory_mD49545DFE510D28FA0B7EB74845DD55F19FF0E21(L_9, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_il2cpp_TypeInfo_var);
bool L_11 = Char_CheckNumber_m138086CACA363A8889B25EC309D3ECCB73D99214(L_10, /*hidden argument*/NULL);
return L_11;
}
}
// System.Boolean System.Char::IsSurrogate(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsSurrogate_mDE2EA47FEF5F4816C883C5FF7DA85364025B5CDE (Il2CppChar ___c0, const RuntimeMethod* method)
{
{
Il2CppChar L_0 = ___c0;
if ((((int32_t)L_0) < ((int32_t)((int32_t)55296))))
{
goto IL_0014;
}
}
{
Il2CppChar L_1 = ___c0;
return (bool)((((int32_t)((((int32_t)L_1) > ((int32_t)((int32_t)57343)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_0014:
{
return (bool)0;
}
}
// System.Boolean System.Char::IsSurrogate(System.String,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsSurrogate_mD2B48C9B28ADA8F0DF0869E21F6527FD1F048D5C (String_t* ___s0, int32_t ___index1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Char_IsSurrogate_mD2B48C9B28ADA8F0DF0869E21F6527FD1F048D5C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___s0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, _stringLiteralDAF2BD03270A51BF9C135F3694DCAD2D3E66F465, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Char_IsSurrogate_mD2B48C9B28ADA8F0DF0869E21F6527FD1F048D5C_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___index1;
String_t* L_3 = ___s0;
NullCheck(L_3);
int32_t L_4 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_3, /*hidden argument*/NULL);
if ((!(((uint32_t)L_2) >= ((uint32_t)L_4))))
{
goto IL_0022;
}
}
{
ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_5 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m329C2882A4CB69F185E98D0DD7E853AA9220960A(L_5, _stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, Char_IsSurrogate_mD2B48C9B28ADA8F0DF0869E21F6527FD1F048D5C_RuntimeMethod_var);
}
IL_0022:
{
String_t* L_6 = ___s0;
int32_t L_7 = ___index1;
NullCheck(L_6);
Il2CppChar L_8 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_6, L_7, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_il2cpp_TypeInfo_var);
bool L_9 = Char_IsSurrogate_mDE2EA47FEF5F4816C883C5FF7DA85364025B5CDE(L_8, /*hidden argument*/NULL);
return L_9;
}
}
// System.Boolean System.Char::IsWhiteSpace(System.String,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsWhiteSpace_m23E361BAE86A2B42BEEA0F8362E033BACFEDB3FC (String_t* ___s0, int32_t ___index1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Char_IsWhiteSpace_m23E361BAE86A2B42BEEA0F8362E033BACFEDB3FC_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___s0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, _stringLiteralDAF2BD03270A51BF9C135F3694DCAD2D3E66F465, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Char_IsWhiteSpace_m23E361BAE86A2B42BEEA0F8362E033BACFEDB3FC_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___index1;
String_t* L_3 = ___s0;
NullCheck(L_3);
int32_t L_4 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_3, /*hidden argument*/NULL);
if ((!(((uint32_t)L_2) >= ((uint32_t)L_4))))
{
goto IL_0022;
}
}
{
ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_5 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m329C2882A4CB69F185E98D0DD7E853AA9220960A(L_5, _stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, Char_IsWhiteSpace_m23E361BAE86A2B42BEEA0F8362E033BACFEDB3FC_RuntimeMethod_var);
}
IL_0022:
{
String_t* L_6 = ___s0;
int32_t L_7 = ___index1;
NullCheck(L_6);
Il2CppChar L_8 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_6, L_7, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_il2cpp_TypeInfo_var);
bool L_9 = Char_IsLatin1_mDD9255953CD679C2C126D78A6424CC1ED42336DD(L_8, /*hidden argument*/NULL);
if (!L_9)
{
goto IL_003d;
}
}
{
String_t* L_10 = ___s0;
int32_t L_11 = ___index1;
NullCheck(L_10);
Il2CppChar L_12 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_10, L_11, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_il2cpp_TypeInfo_var);
bool L_13 = Char_IsWhiteSpaceLatin1_m3F481728E03EFCD73EEAC4A471E7AB31E29CFA39(L_12, /*hidden argument*/NULL);
return L_13;
}
IL_003d:
{
String_t* L_14 = ___s0;
int32_t L_15 = ___index1;
IL2CPP_RUNTIME_CLASS_INIT(CharUnicodeInfo_t9D4692B295E2A9DA68C289734E499AE3F4B41876_il2cpp_TypeInfo_var);
bool L_16 = CharUnicodeInfo_IsWhiteSpace_m55B2F2B2342B7374964ACE40FBC5CD19D90C1A3A(L_14, L_15, /*hidden argument*/NULL);
return L_16;
}
}
// System.Globalization.UnicodeCategory System.Char::GetUnicodeCategory(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Char_GetUnicodeCategory_mB8DCE545E28F2858B0E8AD91393B9FD048F80BC1 (Il2CppChar ___c0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Char_GetUnicodeCategory_mB8DCE545E28F2858B0E8AD91393B9FD048F80BC1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Il2CppChar L_0 = ___c0;
IL2CPP_RUNTIME_CLASS_INIT(Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_il2cpp_TypeInfo_var);
bool L_1 = Char_IsLatin1_mDD9255953CD679C2C126D78A6424CC1ED42336DD(L_0, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_000f;
}
}
{
Il2CppChar L_2 = ___c0;
IL2CPP_RUNTIME_CLASS_INIT(Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_il2cpp_TypeInfo_var);
int32_t L_3 = Char_GetLatin1UnicodeCategory_m3E7F31DAC8AEEDF458F429D991D3B022CD1526D4(L_2, /*hidden argument*/NULL);
return L_3;
}
IL_000f:
{
Il2CppChar L_4 = ___c0;
IL2CPP_RUNTIME_CLASS_INIT(CharUnicodeInfo_t9D4692B295E2A9DA68C289734E499AE3F4B41876_il2cpp_TypeInfo_var);
int32_t L_5 = CharUnicodeInfo_InternalGetUnicodeCategory_mA3B1409970AA5AE0E4ACAADF86DC0EE15BFD2D9B(L_4, /*hidden argument*/NULL);
return L_5;
}
}
// System.Globalization.UnicodeCategory System.Char::GetUnicodeCategory(System.String,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Char_GetUnicodeCategory_mB8BD13766FB2401A713B056084ACA5C348340475 (String_t* ___s0, int32_t ___index1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Char_GetUnicodeCategory_mB8BD13766FB2401A713B056084ACA5C348340475_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___s0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, _stringLiteralDAF2BD03270A51BF9C135F3694DCAD2D3E66F465, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Char_GetUnicodeCategory_mB8BD13766FB2401A713B056084ACA5C348340475_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___index1;
String_t* L_3 = ___s0;
NullCheck(L_3);
int32_t L_4 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_3, /*hidden argument*/NULL);
if ((!(((uint32_t)L_2) >= ((uint32_t)L_4))))
{
goto IL_0022;
}
}
{
ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_5 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m329C2882A4CB69F185E98D0DD7E853AA9220960A(L_5, _stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, Char_GetUnicodeCategory_mB8BD13766FB2401A713B056084ACA5C348340475_RuntimeMethod_var);
}
IL_0022:
{
String_t* L_6 = ___s0;
int32_t L_7 = ___index1;
NullCheck(L_6);
Il2CppChar L_8 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_6, L_7, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_il2cpp_TypeInfo_var);
bool L_9 = Char_IsLatin1_mDD9255953CD679C2C126D78A6424CC1ED42336DD(L_8, /*hidden argument*/NULL);
if (!L_9)
{
goto IL_003d;
}
}
{
String_t* L_10 = ___s0;
int32_t L_11 = ___index1;
NullCheck(L_10);
Il2CppChar L_12 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_10, L_11, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_il2cpp_TypeInfo_var);
int32_t L_13 = Char_GetLatin1UnicodeCategory_m3E7F31DAC8AEEDF458F429D991D3B022CD1526D4(L_12, /*hidden argument*/NULL);
return L_13;
}
IL_003d:
{
String_t* L_14 = ___s0;
int32_t L_15 = ___index1;
IL2CPP_RUNTIME_CLASS_INIT(CharUnicodeInfo_t9D4692B295E2A9DA68C289734E499AE3F4B41876_il2cpp_TypeInfo_var);
int32_t L_16 = CharUnicodeInfo_InternalGetUnicodeCategory_mFD62434F9ABFE74E9ADA8CE15EADAF9AC6F16E3C(L_14, L_15, /*hidden argument*/NULL);
return L_16;
}
}
// System.Boolean System.Char::IsHighSurrogate(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsHighSurrogate_m7BECD1C98C902946F069D8936F8A557F1F7DFF01 (Il2CppChar ___c0, const RuntimeMethod* method)
{
{
Il2CppChar L_0 = ___c0;
if ((((int32_t)L_0) < ((int32_t)((int32_t)55296))))
{
goto IL_0014;
}
}
{
Il2CppChar L_1 = ___c0;
return (bool)((((int32_t)((((int32_t)L_1) > ((int32_t)((int32_t)56319)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_0014:
{
return (bool)0;
}
}
// System.Boolean System.Char::IsHighSurrogate(System.String,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsHighSurrogate_mA3731702417E3DD2B8CFCA16648849FEBC7F98FF (String_t* ___s0, int32_t ___index1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Char_IsHighSurrogate_mA3731702417E3DD2B8CFCA16648849FEBC7F98FF_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___s0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, _stringLiteralDAF2BD03270A51BF9C135F3694DCAD2D3E66F465, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Char_IsHighSurrogate_mA3731702417E3DD2B8CFCA16648849FEBC7F98FF_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___index1;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_001b;
}
}
{
int32_t L_3 = ___index1;
String_t* L_4 = ___s0;
NullCheck(L_4);
int32_t L_5 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_4, /*hidden argument*/NULL);
if ((((int32_t)L_3) < ((int32_t)L_5)))
{
goto IL_0026;
}
}
IL_001b:
{
ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_6 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m329C2882A4CB69F185E98D0DD7E853AA9220960A(L_6, _stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, Char_IsHighSurrogate_mA3731702417E3DD2B8CFCA16648849FEBC7F98FF_RuntimeMethod_var);
}
IL_0026:
{
String_t* L_7 = ___s0;
int32_t L_8 = ___index1;
NullCheck(L_7);
Il2CppChar L_9 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_7, L_8, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_il2cpp_TypeInfo_var);
bool L_10 = Char_IsHighSurrogate_m7BECD1C98C902946F069D8936F8A557F1F7DFF01(L_9, /*hidden argument*/NULL);
return L_10;
}
}
// System.Boolean System.Char::IsLowSurrogate(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsLowSurrogate_m44FA7AA923FDA925E1D536F3DA0A7E1E049E936E (Il2CppChar ___c0, const RuntimeMethod* method)
{
{
Il2CppChar L_0 = ___c0;
if ((((int32_t)L_0) < ((int32_t)((int32_t)56320))))
{
goto IL_0014;
}
}
{
Il2CppChar L_1 = ___c0;
return (bool)((((int32_t)((((int32_t)L_1) > ((int32_t)((int32_t)57343)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_0014:
{
return (bool)0;
}
}
// System.Boolean System.Char::IsSurrogatePair(System.Char,System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsSurrogatePair_m6EAA02AF7F2918866B74A89988A00373EFF50709 (Il2CppChar ___highSurrogate0, Il2CppChar ___lowSurrogate1, const RuntimeMethod* method)
{
{
Il2CppChar L_0 = ___highSurrogate0;
if ((((int32_t)L_0) < ((int32_t)((int32_t)55296))))
{
goto IL_0026;
}
}
{
Il2CppChar L_1 = ___highSurrogate0;
if ((((int32_t)L_1) > ((int32_t)((int32_t)56319))))
{
goto IL_0026;
}
}
{
Il2CppChar L_2 = ___lowSurrogate1;
if ((((int32_t)L_2) < ((int32_t)((int32_t)56320))))
{
goto IL_0024;
}
}
{
Il2CppChar L_3 = ___lowSurrogate1;
return (bool)((((int32_t)((((int32_t)L_3) > ((int32_t)((int32_t)57343)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_0024:
{
return (bool)0;
}
IL_0026:
{
return (bool)0;
}
}
// System.Int32 System.Char::ConvertToUtf32(System.Char,System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Char_ConvertToUtf32_m6B16D001D0676268AE879C540A2834DD3AE2A7A1 (Il2CppChar ___highSurrogate0, Il2CppChar ___lowSurrogate1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Char_ConvertToUtf32_m6B16D001D0676268AE879C540A2834DD3AE2A7A1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Il2CppChar L_0 = ___highSurrogate0;
IL2CPP_RUNTIME_CLASS_INIT(Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_il2cpp_TypeInfo_var);
bool L_1 = Char_IsHighSurrogate_m7BECD1C98C902946F069D8936F8A557F1F7DFF01(L_0, /*hidden argument*/NULL);
if (L_1)
{
goto IL_001d;
}
}
{
String_t* L_2 = Environment_GetResourceString_m8DFF827596B5FD533D3FE56900FA095F7D674617(_stringLiteralDA144A4546BA813419D20020C8E1F983163D5616, /*hidden argument*/NULL);
ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_3 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_mE43AFC74F5F3932913C023A04B24905E093C5005(L_3, _stringLiteralDFEB75073613366ED790055534C407E4105DE290, L_2, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, Char_ConvertToUtf32_m6B16D001D0676268AE879C540A2834DD3AE2A7A1_RuntimeMethod_var);
}
IL_001d:
{
Il2CppChar L_4 = ___lowSurrogate1;
IL2CPP_RUNTIME_CLASS_INIT(Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_il2cpp_TypeInfo_var);
bool L_5 = Char_IsLowSurrogate_m44FA7AA923FDA925E1D536F3DA0A7E1E049E936E(L_4, /*hidden argument*/NULL);
if (L_5)
{
goto IL_003a;
}
}
{
String_t* L_6 = Environment_GetResourceString_m8DFF827596B5FD533D3FE56900FA095F7D674617(_stringLiteralD8BC2BD13ADDE8D5A4042FB0941980613775040D, /*hidden argument*/NULL);
ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_7 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_mE43AFC74F5F3932913C023A04B24905E093C5005(L_7, _stringLiteralF7C654A6F7651FC5597CD86E2E325E8384CCF203, L_6, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, Char_ConvertToUtf32_m6B16D001D0676268AE879C540A2834DD3AE2A7A1_RuntimeMethod_var);
}
IL_003a:
{
Il2CppChar L_8 = ___highSurrogate0;
Il2CppChar L_9 = ___lowSurrogate1;
return ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_8, (int32_t)((int32_t)55296))), (int32_t)((int32_t)1024))), (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)((int32_t)56320))))), (int32_t)((int32_t)65536)));
}
}
// System.Void System.Char::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Char__cctor_m96787A782FB2C8AD7E7488DE2D3DB5DF3133006C (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Char__cctor_m96787A782FB2C8AD7E7488DE2D3DB5DF3133006C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_0 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)SZArrayNew(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var, (uint32_t)((int32_t)256));
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_1 = L_0;
RuntimeFieldHandle_t7BE65FC857501059EBAC9772C93B02CD413D9C96 L_2 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8____B53A2C6DF21FC88B17AEFC40EB895B8D63210CDF_71_FieldInfo_var) };
RuntimeHelpers_InitializeArray_mE27238308FED781F2D6A719F0903F2E1311B058F((RuntimeArray *)(RuntimeArray *)L_1, L_2, /*hidden argument*/NULL);
((Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_StaticFields*)il2cpp_codegen_static_fields_for(Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_il2cpp_TypeInfo_var))->set_categoryForLatin1_3(L_1);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.CharEnumerator::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CharEnumerator__ctor_m6E00AFC85D31B3783879F35EBED9CDD5DC2E80A7 (CharEnumerator_t307E02F1AF2C2C98EE2FFEEE3045A790F2140D75 * __this, String_t* ___str0, const RuntimeMethod* method)
{
{
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL);
String_t* L_0 = ___str0;
__this->set_str_0(L_0);
__this->set_index_1((-1));
return;
}
}
// System.Object System.CharEnumerator::Clone()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * CharEnumerator_Clone_mEDA3A1900E804D16AAE0B9E27C99B46D3616C444 (CharEnumerator_t307E02F1AF2C2C98EE2FFEEE3045A790F2140D75 * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = Object_MemberwiseClone_m0AEE84C38E9A87C372139B4C342454553F0F6392(__this, /*hidden argument*/NULL);
return L_0;
}
}
// System.Boolean System.CharEnumerator::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CharEnumerator_MoveNext_m26EE32A48F3296F95321FB9FC405EF683D6D509E (CharEnumerator_t307E02F1AF2C2C98EE2FFEEE3045A790F2140D75 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_index_1();
String_t* L_1 = __this->get_str_0();
NullCheck(L_1);
int32_t L_2 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_1, /*hidden argument*/NULL);
if ((((int32_t)L_0) >= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_2, (int32_t)1)))))
{
goto IL_003c;
}
}
{
int32_t L_3 = __this->get_index_1();
__this->set_index_1(((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)));
String_t* L_4 = __this->get_str_0();
int32_t L_5 = __this->get_index_1();
NullCheck(L_4);
Il2CppChar L_6 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_4, L_5, /*hidden argument*/NULL);
__this->set_currentElement_2(L_6);
return (bool)1;
}
IL_003c:
{
String_t* L_7 = __this->get_str_0();
NullCheck(L_7);
int32_t L_8 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_7, /*hidden argument*/NULL);
__this->set_index_1(L_8);
return (bool)0;
}
}
// System.Void System.CharEnumerator::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CharEnumerator_Dispose_mC7F78D74670CE13054BDDCBCD624CBFD4659DFED (CharEnumerator_t307E02F1AF2C2C98EE2FFEEE3045A790F2140D75 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_str_0();
if (!L_0)
{
goto IL_0019;
}
}
{
String_t* L_1 = __this->get_str_0();
NullCheck(L_1);
int32_t L_2 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_1, /*hidden argument*/NULL);
__this->set_index_1(L_2);
}
IL_0019:
{
__this->set_str_0((String_t*)NULL);
return;
}
}
// System.Object System.CharEnumerator::System.Collections.IEnumerator.get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * CharEnumerator_System_Collections_IEnumerator_get_Current_mD136FC1D1A13D8EA87900A651E21BE1B08B100C7 (CharEnumerator_t307E02F1AF2C2C98EE2FFEEE3045A790F2140D75 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CharEnumerator_System_Collections_IEnumerator_get_Current_mD136FC1D1A13D8EA87900A651E21BE1B08B100C7_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = __this->get_index_1();
if ((!(((uint32_t)L_0) == ((uint32_t)(-1)))))
{
goto IL_0019;
}
}
{
String_t* L_1 = Environment_GetResourceString_m8DFF827596B5FD533D3FE56900FA095F7D674617(_stringLiteral2390D6884F59E2E4EA04837AD7D6268548597633, /*hidden argument*/NULL);
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_2 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_2, L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, CharEnumerator_System_Collections_IEnumerator_get_Current_mD136FC1D1A13D8EA87900A651E21BE1B08B100C7_RuntimeMethod_var);
}
IL_0019:
{
int32_t L_3 = __this->get_index_1();
String_t* L_4 = __this->get_str_0();
NullCheck(L_4);
int32_t L_5 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_4, /*hidden argument*/NULL);
if ((((int32_t)L_3) < ((int32_t)L_5)))
{
goto IL_003c;
}
}
{
String_t* L_6 = Environment_GetResourceString_m8DFF827596B5FD533D3FE56900FA095F7D674617(_stringLiteral834F4B6837B71847C4048C946DF8754B323D6BF9, /*hidden argument*/NULL);
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_7 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_7, L_6, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, CharEnumerator_System_Collections_IEnumerator_get_Current_mD136FC1D1A13D8EA87900A651E21BE1B08B100C7_RuntimeMethod_var);
}
IL_003c:
{
Il2CppChar L_8 = __this->get_currentElement_2();
Il2CppChar L_9 = L_8;
RuntimeObject * L_10 = Box(Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_il2cpp_TypeInfo_var, &L_9);
return L_10;
}
}
// System.Char System.CharEnumerator::get_Current()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar CharEnumerator_get_Current_m6920EEF2A97509789BD9F4DB86F6DA86EB323A0B (CharEnumerator_t307E02F1AF2C2C98EE2FFEEE3045A790F2140D75 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CharEnumerator_get_Current_m6920EEF2A97509789BD9F4DB86F6DA86EB323A0B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = __this->get_index_1();
if ((!(((uint32_t)L_0) == ((uint32_t)(-1)))))
{
goto IL_0019;
}
}
{
String_t* L_1 = Environment_GetResourceString_m8DFF827596B5FD533D3FE56900FA095F7D674617(_stringLiteral2390D6884F59E2E4EA04837AD7D6268548597633, /*hidden argument*/NULL);
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_2 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_2, L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, CharEnumerator_get_Current_m6920EEF2A97509789BD9F4DB86F6DA86EB323A0B_RuntimeMethod_var);
}
IL_0019:
{
int32_t L_3 = __this->get_index_1();
String_t* L_4 = __this->get_str_0();
NullCheck(L_4);
int32_t L_5 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_4, /*hidden argument*/NULL);
if ((((int32_t)L_3) < ((int32_t)L_5)))
{
goto IL_003c;
}
}
{
String_t* L_6 = Environment_GetResourceString_m8DFF827596B5FD533D3FE56900FA095F7D674617(_stringLiteral834F4B6837B71847C4048C946DF8754B323D6BF9, /*hidden argument*/NULL);
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_7 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_7, L_6, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, CharEnumerator_get_Current_m6920EEF2A97509789BD9F4DB86F6DA86EB323A0B_RuntimeMethod_var);
}
IL_003c:
{
Il2CppChar L_8 = __this->get_currentElement_2();
return L_8;
}
}
// System.Void System.CharEnumerator::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CharEnumerator__ctor_mC88EF64AFC0D2C039B3265A76AC61A65BC3D2FED (CharEnumerator_t307E02F1AF2C2C98EE2FFEEE3045A790F2140D75 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CharEnumerator__ctor_mC88EF64AFC0D2C039B3265A76AC61A65BC3D2FED_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_raise_profile_exception(CharEnumerator__ctor_mC88EF64AFC0D2C039B3265A76AC61A65BC3D2FED_RuntimeMethod_var);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Int32 System.Globalization.CharUnicodeInfo::InternalConvertToUtf32(System.String,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CharUnicodeInfo_InternalConvertToUtf32_m7477C6B8C5CE731915B3D1BECB1742C044B31143 (String_t* ___s0, int32_t ___index1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CharUnicodeInfo_InternalConvertToUtf32_m7477C6B8C5CE731915B3D1BECB1742C044B31143_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t G_B3_0 = 0;
{
String_t* L_0 = ___s0;
Debug_Assert_mA721B0C9BDC00172E2AD69FB6EDD03EFEDE770E8((bool)((!(((RuntimeObject*)(String_t*)L_0) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0), _stringLiteralDFEC282F361DA4A76166D7EACEAE3364F7F45245, /*hidden argument*/NULL);
int32_t L_1 = ___index1;
if ((((int32_t)L_1) < ((int32_t)0)))
{
goto IL_001d;
}
}
{
int32_t L_2 = ___index1;
String_t* L_3 = ___s0;
NullCheck(L_3);
int32_t L_4 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_3, /*hidden argument*/NULL);
G_B3_0 = ((((int32_t)L_2) < ((int32_t)L_4))? 1 : 0);
goto IL_001e;
}
IL_001d:
{
G_B3_0 = 0;
}
IL_001e:
{
Debug_Assert_mA721B0C9BDC00172E2AD69FB6EDD03EFEDE770E8((bool)G_B3_0, _stringLiteral5B7E9DC00CB9009F6B8B6197E636C097852B1458, /*hidden argument*/NULL);
int32_t L_5 = ___index1;
String_t* L_6 = ___s0;
NullCheck(L_6);
int32_t L_7 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_6, /*hidden argument*/NULL);
if ((((int32_t)L_5) >= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_7, (int32_t)1)))))
{
goto IL_0079;
}
}
{
String_t* L_8 = ___s0;
int32_t L_9 = ___index1;
NullCheck(L_8);
Il2CppChar L_10 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_8, L_9, /*hidden argument*/NULL);
V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_10, (int32_t)((int32_t)55296)));
int32_t L_11 = V_0;
if ((((int32_t)L_11) < ((int32_t)0)))
{
goto IL_0079;
}
}
{
int32_t L_12 = V_0;
if ((((int32_t)L_12) > ((int32_t)((int32_t)1023))))
{
goto IL_0079;
}
}
{
String_t* L_13 = ___s0;
int32_t L_14 = ___index1;
NullCheck(L_13);
Il2CppChar L_15 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_13, ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)1)), /*hidden argument*/NULL);
V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_15, (int32_t)((int32_t)56320)));
int32_t L_16 = V_1;
if ((((int32_t)L_16) < ((int32_t)0)))
{
goto IL_0079;
}
}
{
int32_t L_17 = V_1;
if ((((int32_t)L_17) > ((int32_t)((int32_t)1023))))
{
goto IL_0079;
}
}
{
int32_t L_18 = V_0;
int32_t L_19 = V_1;
return ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_18, (int32_t)((int32_t)1024))), (int32_t)L_19)), (int32_t)((int32_t)65536)));
}
IL_0079:
{
String_t* L_20 = ___s0;
int32_t L_21 = ___index1;
NullCheck(L_20);
Il2CppChar L_22 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_20, L_21, /*hidden argument*/NULL);
return L_22;
}
}
// System.Boolean System.Globalization.CharUnicodeInfo::IsWhiteSpace(System.String,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CharUnicodeInfo_IsWhiteSpace_m55B2F2B2342B7374964ACE40FBC5CD19D90C1A3A (String_t* ___s0, int32_t ___index1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CharUnicodeInfo_IsWhiteSpace_m55B2F2B2342B7374964ACE40FBC5CD19D90C1A3A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t G_B3_0 = 0;
{
String_t* L_0 = ___s0;
Debug_Assert_mA721B0C9BDC00172E2AD69FB6EDD03EFEDE770E8((bool)((!(((RuntimeObject*)(String_t*)L_0) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0), _stringLiteral542508530066555AD949C9365798A5D72D7F46E5, /*hidden argument*/NULL);
int32_t L_1 = ___index1;
if ((((int32_t)L_1) < ((int32_t)0)))
{
goto IL_001d;
}
}
{
int32_t L_2 = ___index1;
String_t* L_3 = ___s0;
NullCheck(L_3);
int32_t L_4 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_3, /*hidden argument*/NULL);
G_B3_0 = ((((int32_t)L_2) < ((int32_t)L_4))? 1 : 0);
goto IL_001e;
}
IL_001d:
{
G_B3_0 = 0;
}
IL_001e:
{
Debug_Assert_mA721B0C9BDC00172E2AD69FB6EDD03EFEDE770E8((bool)G_B3_0, _stringLiteral771CD4100BE80B40BA45C073147E987B92196BE9, /*hidden argument*/NULL);
String_t* L_5 = ___s0;
int32_t L_6 = ___index1;
IL2CPP_RUNTIME_CLASS_INIT(CharUnicodeInfo_t9D4692B295E2A9DA68C289734E499AE3F4B41876_il2cpp_TypeInfo_var);
int32_t L_7 = CharUnicodeInfo_GetUnicodeCategory_m27B7793950B7DE1E7446CDEE6DC2363FD83D785A(L_5, L_6, /*hidden argument*/NULL);
V_0 = L_7;
int32_t L_8 = V_0;
if ((!(((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_8, (int32_t)((int32_t)11)))) <= ((uint32_t)2))))
{
goto IL_0039;
}
}
{
return (bool)1;
}
IL_0039:
{
return (bool)0;
}
}
// System.Boolean System.Globalization.CharUnicodeInfo::IsWhiteSpace(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CharUnicodeInfo_IsWhiteSpace_mFAE454BD5297E59D1B5B6276F3B1F592A4485F67 (Il2CppChar ___c0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CharUnicodeInfo_IsWhiteSpace_mFAE454BD5297E59D1B5B6276F3B1F592A4485F67_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
Il2CppChar L_0 = ___c0;
IL2CPP_RUNTIME_CLASS_INIT(CharUnicodeInfo_t9D4692B295E2A9DA68C289734E499AE3F4B41876_il2cpp_TypeInfo_var);
int32_t L_1 = CharUnicodeInfo_GetUnicodeCategory_mD49545DFE510D28FA0B7EB74845DD55F19FF0E21(L_0, /*hidden argument*/NULL);
V_0 = L_1;
int32_t L_2 = V_0;
if ((!(((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_2, (int32_t)((int32_t)11)))) <= ((uint32_t)2))))
{
goto IL_0010;
}
}
{
return (bool)1;
}
IL_0010:
{
return (bool)0;
}
}
// System.Globalization.UnicodeCategory System.Globalization.CharUnicodeInfo::GetUnicodeCategory(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CharUnicodeInfo_GetUnicodeCategory_mD49545DFE510D28FA0B7EB74845DD55F19FF0E21 (Il2CppChar ___ch0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CharUnicodeInfo_GetUnicodeCategory_mD49545DFE510D28FA0B7EB74845DD55F19FF0E21_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Il2CppChar L_0 = ___ch0;
IL2CPP_RUNTIME_CLASS_INIT(CharUnicodeInfo_t9D4692B295E2A9DA68C289734E499AE3F4B41876_il2cpp_TypeInfo_var);
int32_t L_1 = CharUnicodeInfo_InternalGetUnicodeCategory_mA3B1409970AA5AE0E4ACAADF86DC0EE15BFD2D9B(L_0, /*hidden argument*/NULL);
return L_1;
}
}
// System.Globalization.UnicodeCategory System.Globalization.CharUnicodeInfo::GetUnicodeCategory(System.String,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CharUnicodeInfo_GetUnicodeCategory_m27B7793950B7DE1E7446CDEE6DC2363FD83D785A (String_t* ___s0, int32_t ___index1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CharUnicodeInfo_GetUnicodeCategory_m27B7793950B7DE1E7446CDEE6DC2363FD83D785A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___s0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, _stringLiteralDAF2BD03270A51BF9C135F3694DCAD2D3E66F465, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, CharUnicodeInfo_GetUnicodeCategory_m27B7793950B7DE1E7446CDEE6DC2363FD83D785A_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___index1;
String_t* L_3 = ___s0;
NullCheck(L_3);
int32_t L_4 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_3, /*hidden argument*/NULL);
if ((!(((uint32_t)L_2) >= ((uint32_t)L_4))))
{
goto IL_0022;
}
}
{
ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_5 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m329C2882A4CB69F185E98D0DD7E853AA9220960A(L_5, _stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, CharUnicodeInfo_GetUnicodeCategory_m27B7793950B7DE1E7446CDEE6DC2363FD83D785A_RuntimeMethod_var);
}
IL_0022:
{
String_t* L_6 = ___s0;
int32_t L_7 = ___index1;
IL2CPP_RUNTIME_CLASS_INIT(CharUnicodeInfo_t9D4692B295E2A9DA68C289734E499AE3F4B41876_il2cpp_TypeInfo_var);
int32_t L_8 = CharUnicodeInfo_InternalGetUnicodeCategory_mFD62434F9ABFE74E9ADA8CE15EADAF9AC6F16E3C(L_6, L_7, /*hidden argument*/NULL);
return L_8;
}
}
// System.Globalization.UnicodeCategory System.Globalization.CharUnicodeInfo::InternalGetUnicodeCategory(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CharUnicodeInfo_InternalGetUnicodeCategory_mA3B1409970AA5AE0E4ACAADF86DC0EE15BFD2D9B (int32_t ___ch0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CharUnicodeInfo_InternalGetUnicodeCategory_mA3B1409970AA5AE0E4ACAADF86DC0EE15BFD2D9B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___ch0;
IL2CPP_RUNTIME_CLASS_INIT(CharUnicodeInfo_t9D4692B295E2A9DA68C289734E499AE3F4B41876_il2cpp_TypeInfo_var);
uint8_t L_1 = CharUnicodeInfo_InternalGetCategoryValue_mA208E95EB17E126853D652FABFA61BB95E021168(L_0, 0, /*hidden argument*/NULL);
return (int32_t)(L_1);
}
}
// System.Byte System.Globalization.CharUnicodeInfo::InternalGetCategoryValue(System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t CharUnicodeInfo_InternalGetCategoryValue_mA208E95EB17E126853D652FABFA61BB95E021168 (int32_t ___ch0, int32_t ___offset1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CharUnicodeInfo_InternalGetCategoryValue_mA208E95EB17E126853D652FABFA61BB95E021168_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
uint16_t V_0 = 0;
uint16_t* V_1 = NULL;
uint8_t* V_2 = NULL;
uint8_t V_3 = 0x0;
int32_t G_B3_0 = 0;
{
int32_t L_0 = ___ch0;
if ((((int32_t)L_0) < ((int32_t)0)))
{
goto IL_0011;
}
}
{
int32_t L_1 = ___ch0;
G_B3_0 = ((((int32_t)((((int32_t)L_1) > ((int32_t)((int32_t)1114111)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_0012;
}
IL_0011:
{
G_B3_0 = 0;
}
IL_0012:
{
Debug_Assert_mA721B0C9BDC00172E2AD69FB6EDD03EFEDE770E8((bool)G_B3_0, _stringLiteral8AA1346A31D4392D363319D2557E15D69F536291, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(CharUnicodeInfo_t9D4692B295E2A9DA68C289734E499AE3F4B41876_il2cpp_TypeInfo_var);
UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67* L_2 = ((CharUnicodeInfo_t9D4692B295E2A9DA68C289734E499AE3F4B41876_StaticFields*)il2cpp_codegen_static_fields_for(CharUnicodeInfo_t9D4692B295E2A9DA68C289734E499AE3F4B41876_il2cpp_TypeInfo_var))->get_s_pCategoryLevel1Index_0();
int32_t L_3 = ___ch0;
NullCheck(L_2);
int32_t L_4 = ((int32_t)((int32_t)L_3>>(int32_t)8));
uint16_t L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
V_0 = L_5;
UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67* L_6 = ((CharUnicodeInfo_t9D4692B295E2A9DA68C289734E499AE3F4B41876_StaticFields*)il2cpp_codegen_static_fields_for(CharUnicodeInfo_t9D4692B295E2A9DA68C289734E499AE3F4B41876_il2cpp_TypeInfo_var))->get_s_pCategoryLevel1Index_0();
uint16_t L_7 = V_0;
int32_t L_8 = ___ch0;
NullCheck(L_6);
int32_t L_9 = ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_8>>(int32_t)4))&(int32_t)((int32_t)15)))));
uint16_t L_10 = (L_6)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
V_0 = L_10;
UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67* L_11 = ((CharUnicodeInfo_t9D4692B295E2A9DA68C289734E499AE3F4B41876_StaticFields*)il2cpp_codegen_static_fields_for(CharUnicodeInfo_t9D4692B295E2A9DA68C289734E499AE3F4B41876_il2cpp_TypeInfo_var))->get_s_pCategoryLevel1Index_0();
uint16_t L_12 = V_0;
NullCheck(L_11);
V_1 = (uint16_t*)((L_11)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_12)));
uint16_t* L_13 = V_1;
V_2 = (uint8_t*)(((uintptr_t)L_13));
uint8_t* L_14 = V_2;
int32_t L_15 = ___ch0;
int32_t L_16 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_14, (int32_t)((int32_t)((int32_t)L_15&(int32_t)((int32_t)15))))));
V_3 = (uint8_t)L_16;
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_17 = ((CharUnicodeInfo_t9D4692B295E2A9DA68C289734E499AE3F4B41876_StaticFields*)il2cpp_codegen_static_fields_for(CharUnicodeInfo_t9D4692B295E2A9DA68C289734E499AE3F4B41876_il2cpp_TypeInfo_var))->get_s_pCategoriesValue_1();
uint8_t L_18 = V_3;
int32_t L_19 = ___offset1;
NullCheck(L_17);
int32_t L_20 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_18, (int32_t)2)), (int32_t)L_19));
uint8_t L_21 = (L_17)->GetAt(static_cast<il2cpp_array_size_t>(L_20));
return L_21;
}
}
// System.Globalization.UnicodeCategory System.Globalization.CharUnicodeInfo::InternalGetUnicodeCategory(System.String,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CharUnicodeInfo_InternalGetUnicodeCategory_mFD62434F9ABFE74E9ADA8CE15EADAF9AC6F16E3C (String_t* ___value0, int32_t ___index1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CharUnicodeInfo_InternalGetUnicodeCategory_mFD62434F9ABFE74E9ADA8CE15EADAF9AC6F16E3C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___value0;
Debug_Assert_mA721B0C9BDC00172E2AD69FB6EDD03EFEDE770E8((bool)((!(((RuntimeObject*)(String_t*)L_0) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0), _stringLiteral7965C39E5C9F51E71E63A24FE3AC5143A88FD42F, /*hidden argument*/NULL);
int32_t L_1 = ___index1;
String_t* L_2 = ___value0;
NullCheck(L_2);
int32_t L_3 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_2, /*hidden argument*/NULL);
Debug_Assert_mA721B0C9BDC00172E2AD69FB6EDD03EFEDE770E8((bool)((((int32_t)L_1) < ((int32_t)L_3))? 1 : 0), _stringLiteralA8B6AD1EBB9C453BCCED7D1D66C117C4D479E48D, /*hidden argument*/NULL);
String_t* L_4 = ___value0;
int32_t L_5 = ___index1;
IL2CPP_RUNTIME_CLASS_INIT(CharUnicodeInfo_t9D4692B295E2A9DA68C289734E499AE3F4B41876_il2cpp_TypeInfo_var);
int32_t L_6 = CharUnicodeInfo_InternalConvertToUtf32_m7477C6B8C5CE731915B3D1BECB1742C044B31143(L_4, L_5, /*hidden argument*/NULL);
int32_t L_7 = CharUnicodeInfo_InternalGetUnicodeCategory_mA3B1409970AA5AE0E4ACAADF86DC0EE15BFD2D9B(L_6, /*hidden argument*/NULL);
return L_7;
}
}
// System.Void System.Globalization.CharUnicodeInfo::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CharUnicodeInfo__cctor_mF011A4AE76DF23552484E2ACD537B16BC499555F (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CharUnicodeInfo__cctor_mF011A4AE76DF23552484E2ACD537B16BC499555F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67* L_0 = (UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67*)(UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67*)SZArrayNew(UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67_il2cpp_TypeInfo_var, (uint32_t)((int32_t)10626));
UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67* L_1 = L_0;
RuntimeFieldHandle_t7BE65FC857501059EBAC9772C93B02CD413D9C96 L_2 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8____811A927B7DADD378BE60BBDE794B9277AA9B50EC_46_FieldInfo_var) };
RuntimeHelpers_InitializeArray_mE27238308FED781F2D6A719F0903F2E1311B058F((RuntimeArray *)(RuntimeArray *)L_1, L_2, /*hidden argument*/NULL);
((CharUnicodeInfo_t9D4692B295E2A9DA68C289734E499AE3F4B41876_StaticFields*)il2cpp_codegen_static_fields_for(CharUnicodeInfo_t9D4692B295E2A9DA68C289734E499AE3F4B41876_il2cpp_TypeInfo_var))->set_s_pCategoryLevel1Index_0(L_1);
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_3 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)SZArrayNew(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var, (uint32_t)((int32_t)162));
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_4 = L_3;
RuntimeFieldHandle_t7BE65FC857501059EBAC9772C93B02CD413D9C96 L_5 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8____B8864ACB9DD69E3D42151513C840AAE270BF21C8_73_FieldInfo_var) };
RuntimeHelpers_InitializeArray_mE27238308FED781F2D6A719F0903F2E1311B058F((RuntimeArray *)(RuntimeArray *)L_4, L_5, /*hidden argument*/NULL);
((CharUnicodeInfo_t9D4692B295E2A9DA68C289734E499AE3F4B41876_StaticFields*)il2cpp_codegen_static_fields_for(CharUnicodeInfo_t9D4692B295E2A9DA68C289734E499AE3F4B41876_il2cpp_TypeInfo_var))->set_s_pCategoriesValue_1(L_4);
UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67* L_6 = (UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67*)(UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67*)SZArrayNew(UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67_il2cpp_TypeInfo_var, (uint32_t)((int32_t)5807));
UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67* L_7 = L_6;
RuntimeFieldHandle_t7BE65FC857501059EBAC9772C93B02CD413D9C96 L_8 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8____F073AA332018FDA0D572E99448FFF1D6422BD520_95_FieldInfo_var) };
RuntimeHelpers_InitializeArray_mE27238308FED781F2D6A719F0903F2E1311B058F((RuntimeArray *)(RuntimeArray *)L_7, L_8, /*hidden argument*/NULL);
((CharUnicodeInfo_t9D4692B295E2A9DA68C289734E499AE3F4B41876_StaticFields*)il2cpp_codegen_static_fields_for(CharUnicodeInfo_t9D4692B295E2A9DA68C289734E499AE3F4B41876_il2cpp_TypeInfo_var))->set_s_pNumericLevel1Index_2(L_7);
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_9 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)SZArrayNew(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var, (uint32_t)((int32_t)1080));
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_10 = L_9;
RuntimeFieldHandle_t7BE65FC857501059EBAC9772C93B02CD413D9C96 L_11 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8____5382CEF491F422BFE0D6FC46EFAFF9EF9D4C89F3_28_FieldInfo_var) };
RuntimeHelpers_InitializeArray_mE27238308FED781F2D6A719F0903F2E1311B058F((RuntimeArray *)(RuntimeArray *)L_10, L_11, /*hidden argument*/NULL);
((CharUnicodeInfo_t9D4692B295E2A9DA68C289734E499AE3F4B41876_StaticFields*)il2cpp_codegen_static_fields_for(CharUnicodeInfo_t9D4692B295E2A9DA68C289734E499AE3F4B41876_il2cpp_TypeInfo_var))->set_s_pNumericValues_3(L_10);
UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67* L_12 = (UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67*)(UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67*)SZArrayNew(UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67_il2cpp_TypeInfo_var, (uint32_t)((int32_t)160));
UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67* L_13 = L_12;
RuntimeFieldHandle_t7BE65FC857501059EBAC9772C93B02CD413D9C96 L_14 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8____3C53AFB51FEC23491684C7BEDBC6D4E0F409F851_19_FieldInfo_var) };
RuntimeHelpers_InitializeArray_mE27238308FED781F2D6A719F0903F2E1311B058F((RuntimeArray *)(RuntimeArray *)L_13, L_14, /*hidden argument*/NULL);
((CharUnicodeInfo_t9D4692B295E2A9DA68C289734E499AE3F4B41876_StaticFields*)il2cpp_codegen_static_fields_for(CharUnicodeInfo_t9D4692B295E2A9DA68C289734E499AE3F4B41876_il2cpp_TypeInfo_var))->set_s_pDigitValues_4(L_13);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Runtime.InteropServices.ClassInterfaceAttribute::.ctor(System.Runtime.InteropServices.ClassInterfaceType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ClassInterfaceAttribute__ctor_m7AA7B6AE0769F0E3FD553A6B575AD4C51E2EE9A4 (ClassInterfaceAttribute_tAC9219C38D4BECF25B48BA254128B82AE8849875 * __this, int32_t ___classInterfaceType0, const RuntimeMethod* method)
{
{
Attribute__ctor_m5C1862A7DFC2C25A4797A8C5F681FBB5CB53ECE1(__this, /*hidden argument*/NULL);
int32_t L_0 = ___classInterfaceType0;
__this->set__val_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Runtime.Remoting.ClientActivatedIdentity::.ctor(System.String,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ClientActivatedIdentity__ctor_m1C203F306A871FB91EC0D78A8FCA3E8DBEC351CE (ClientActivatedIdentity_t15889AD8330630DE5A85C02BD4F07FE7FC72AEC6 * __this, String_t* ___objectUri0, Type_t * ___objectType1, const RuntimeMethod* method)
{
{
String_t* L_0 = ___objectUri0;
Type_t * L_1 = ___objectType1;
ServerIdentity__ctor_m9E44F1B908070031C768EFE2AE3DCC1681269A63(__this, L_0, (Context_t8A5B564FD0F970E10A97ACB8A7579FFF3EE4C678 *)NULL, L_1, /*hidden argument*/NULL);
return;
}
}
// System.MarshalByRefObject System.Runtime.Remoting.ClientActivatedIdentity::GetServerObject()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8 * ClientActivatedIdentity_GetServerObject_m261F32053C0E230AB69EBDCC92E72121D93F5E3E (ClientActivatedIdentity_t15889AD8330630DE5A85C02BD4F07FE7FC72AEC6 * __this, const RuntimeMethod* method)
{
{
MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8 * L_0 = ((ServerIdentity_t5689BF0CA0122A8E597C9900D39F11F07D79D3A8 *)__this)->get__serverObject_8();
return L_0;
}
}
// System.Void System.Runtime.Remoting.ClientActivatedIdentity::SetClientProxy(System.MarshalByRefObject)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ClientActivatedIdentity_SetClientProxy_mC97B8FB476627D9136AA86BAAD99026A1C7C1C6B (ClientActivatedIdentity_t15889AD8330630DE5A85C02BD4F07FE7FC72AEC6 * __this, MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8 * ___obj0, const RuntimeMethod* method)
{
{
MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8 * L_0 = ___obj0;
__this->set__targetThis_12(L_0);
return;
}
}
// System.Void System.Runtime.Remoting.ClientActivatedIdentity::OnLifetimeExpired()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ClientActivatedIdentity_OnLifetimeExpired_m3A7F53137B81EC0A9650DAAED0DB579D1D937793 (ClientActivatedIdentity_t15889AD8330630DE5A85C02BD4F07FE7FC72AEC6 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ClientActivatedIdentity_OnLifetimeExpired_m3A7F53137B81EC0A9650DAAED0DB579D1D937793_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ServerIdentity_OnLifetimeExpired_mD2096F3E9D7C5237427B993849160DFBFC660F4B(__this, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(RemotingServices_tA253EA010FDD8986A2E814099EAB32BB98652786_il2cpp_TypeInfo_var);
RemotingServices_DisposeIdentity_mE06A3AAFD8426FC358FB4A278B3D75B6FA20DED6(__this, /*hidden argument*/NULL);
return;
}
}
// System.Runtime.Remoting.Messaging.IMessage System.Runtime.Remoting.ClientActivatedIdentity::SyncObjectProcessMessage(System.Runtime.Remoting.Messaging.IMessage)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ClientActivatedIdentity_SyncObjectProcessMessage_mAB5CB9E8105B7FD16701FB44D6B53AF79B0836F3 (ClientActivatedIdentity_t15889AD8330630DE5A85C02BD4F07FE7FC72AEC6 * __this, RuntimeObject* ___msg0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ClientActivatedIdentity_SyncObjectProcessMessage_mAB5CB9E8105B7FD16701FB44D6B53AF79B0836F3_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
Context_t8A5B564FD0F970E10A97ACB8A7579FFF3EE4C678 * G_B3_0 = NULL;
ClientActivatedIdentity_t15889AD8330630DE5A85C02BD4F07FE7FC72AEC6 * G_B3_1 = NULL;
Context_t8A5B564FD0F970E10A97ACB8A7579FFF3EE4C678 * G_B2_0 = NULL;
ClientActivatedIdentity_t15889AD8330630DE5A85C02BD4F07FE7FC72AEC6 * G_B2_1 = NULL;
MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8 * G_B4_0 = NULL;
Context_t8A5B564FD0F970E10A97ACB8A7579FFF3EE4C678 * G_B4_1 = NULL;
ClientActivatedIdentity_t15889AD8330630DE5A85C02BD4F07FE7FC72AEC6 * G_B4_2 = NULL;
{
RuntimeObject* L_0 = ((ServerIdentity_t5689BF0CA0122A8E597C9900D39F11F07D79D3A8 *)__this)->get__serverSink_9();
if (L_0)
{
goto IL_0035;
}
}
{
MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8 * L_1 = __this->get__targetThis_12();
V_0 = (bool)((!(((RuntimeObject*)(MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8 *)L_1) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
Context_t8A5B564FD0F970E10A97ACB8A7579FFF3EE4C678 * L_2 = ((ServerIdentity_t5689BF0CA0122A8E597C9900D39F11F07D79D3A8 *)__this)->get__context_10();
bool L_3 = V_0;
G_B2_0 = L_2;
G_B2_1 = __this;
if (L_3)
{
G_B3_0 = L_2;
G_B3_1 = __this;
goto IL_0024;
}
}
{
MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8 * L_4 = ((ServerIdentity_t5689BF0CA0122A8E597C9900D39F11F07D79D3A8 *)__this)->get__serverObject_8();
G_B4_0 = L_4;
G_B4_1 = G_B2_0;
G_B4_2 = G_B2_1;
goto IL_002a;
}
IL_0024:
{
MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8 * L_5 = __this->get__targetThis_12();
G_B4_0 = L_5;
G_B4_1 = G_B3_0;
G_B4_2 = G_B3_1;
}
IL_002a:
{
bool L_6 = V_0;
NullCheck(G_B4_1);
RuntimeObject* L_7 = Context_CreateServerObjectSinkChain_m3D50B4AC3A65E16E3AABF9FBEA409C0376C736E5(G_B4_1, G_B4_0, L_6, /*hidden argument*/NULL);
NullCheck(G_B4_2);
((ServerIdentity_t5689BF0CA0122A8E597C9900D39F11F07D79D3A8 *)G_B4_2)->set__serverSink_9(L_7);
}
IL_0035:
{
RuntimeObject* L_8 = ((ServerIdentity_t5689BF0CA0122A8E597C9900D39F11F07D79D3A8 *)__this)->get__serverSink_9();
RuntimeObject* L_9 = ___msg0;
NullCheck(L_8);
RuntimeObject* L_10 = InterfaceFuncInvoker1< RuntimeObject*, RuntimeObject* >::Invoke(0 /* System.Runtime.Remoting.Messaging.IMessage System.Runtime.Remoting.Messaging.IMessageSink::SyncProcessMessage(System.Runtime.Remoting.Messaging.IMessage) */, IMessageSink_t5C83B21C4C8767A5B9820EBBE611F7107BC7605F_il2cpp_TypeInfo_var, L_8, L_9);
return L_10;
}
}
// System.Runtime.Remoting.Messaging.IMessageCtrl System.Runtime.Remoting.ClientActivatedIdentity::AsyncObjectProcessMessage(System.Runtime.Remoting.Messaging.IMessage,System.Runtime.Remoting.Messaging.IMessageSink)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ClientActivatedIdentity_AsyncObjectProcessMessage_mE31B5FBC1CDC210AA8F372E850807ED668C94821 (ClientActivatedIdentity_t15889AD8330630DE5A85C02BD4F07FE7FC72AEC6 * __this, RuntimeObject* ___msg0, RuntimeObject* ___replySink1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ClientActivatedIdentity_AsyncObjectProcessMessage_mE31B5FBC1CDC210AA8F372E850807ED668C94821_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
Context_t8A5B564FD0F970E10A97ACB8A7579FFF3EE4C678 * G_B3_0 = NULL;
ClientActivatedIdentity_t15889AD8330630DE5A85C02BD4F07FE7FC72AEC6 * G_B3_1 = NULL;
Context_t8A5B564FD0F970E10A97ACB8A7579FFF3EE4C678 * G_B2_0 = NULL;
ClientActivatedIdentity_t15889AD8330630DE5A85C02BD4F07FE7FC72AEC6 * G_B2_1 = NULL;
MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8 * G_B4_0 = NULL;
Context_t8A5B564FD0F970E10A97ACB8A7579FFF3EE4C678 * G_B4_1 = NULL;
ClientActivatedIdentity_t15889AD8330630DE5A85C02BD4F07FE7FC72AEC6 * G_B4_2 = NULL;
{
RuntimeObject* L_0 = ((ServerIdentity_t5689BF0CA0122A8E597C9900D39F11F07D79D3A8 *)__this)->get__serverSink_9();
if (L_0)
{
goto IL_0035;
}
}
{
MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8 * L_1 = __this->get__targetThis_12();
V_0 = (bool)((!(((RuntimeObject*)(MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8 *)L_1) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
Context_t8A5B564FD0F970E10A97ACB8A7579FFF3EE4C678 * L_2 = ((ServerIdentity_t5689BF0CA0122A8E597C9900D39F11F07D79D3A8 *)__this)->get__context_10();
bool L_3 = V_0;
G_B2_0 = L_2;
G_B2_1 = __this;
if (L_3)
{
G_B3_0 = L_2;
G_B3_1 = __this;
goto IL_0024;
}
}
{
MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8 * L_4 = ((ServerIdentity_t5689BF0CA0122A8E597C9900D39F11F07D79D3A8 *)__this)->get__serverObject_8();
G_B4_0 = L_4;
G_B4_1 = G_B2_0;
G_B4_2 = G_B2_1;
goto IL_002a;
}
IL_0024:
{
MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8 * L_5 = __this->get__targetThis_12();
G_B4_0 = L_5;
G_B4_1 = G_B3_0;
G_B4_2 = G_B3_1;
}
IL_002a:
{
bool L_6 = V_0;
NullCheck(G_B4_1);
RuntimeObject* L_7 = Context_CreateServerObjectSinkChain_m3D50B4AC3A65E16E3AABF9FBEA409C0376C736E5(G_B4_1, G_B4_0, L_6, /*hidden argument*/NULL);
NullCheck(G_B4_2);
((ServerIdentity_t5689BF0CA0122A8E597C9900D39F11F07D79D3A8 *)G_B4_2)->set__serverSink_9(L_7);
}
IL_0035:
{
RuntimeObject* L_8 = ((ServerIdentity_t5689BF0CA0122A8E597C9900D39F11F07D79D3A8 *)__this)->get__serverSink_9();
RuntimeObject* L_9 = ___msg0;
RuntimeObject* L_10 = ___replySink1;
NullCheck(L_8);
RuntimeObject* L_11 = InterfaceFuncInvoker2< RuntimeObject*, RuntimeObject*, RuntimeObject* >::Invoke(1 /* System.Runtime.Remoting.Messaging.IMessageCtrl System.Runtime.Remoting.Messaging.IMessageSink::AsyncProcessMessage(System.Runtime.Remoting.Messaging.IMessage,System.Runtime.Remoting.Messaging.IMessageSink) */, IMessageSink_t5C83B21C4C8767A5B9820EBBE611F7107BC7605F_il2cpp_TypeInfo_var, L_8, L_9, L_10);
return L_11;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Runtime.Remoting.Messaging.ClientContextReplySink::.ctor(System.Runtime.Remoting.Contexts.Context,System.Runtime.Remoting.Messaging.IMessageSink)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ClientContextReplySink__ctor_mD78845921ADC12331C6B925A13674A65CF414D16 (ClientContextReplySink_tAB77283D5E284109DBA2762B990D89C2F2BE24C8 * __this, Context_t8A5B564FD0F970E10A97ACB8A7579FFF3EE4C678 * ___ctx0, RuntimeObject* ___replySink1, const RuntimeMethod* method)
{
{
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL);
RuntimeObject* L_0 = ___replySink1;
__this->set__replySink_0(L_0);
Context_t8A5B564FD0F970E10A97ACB8A7579FFF3EE4C678 * L_1 = ___ctx0;
__this->set__context_1(L_1);
return;
}
}
// System.Runtime.Remoting.Messaging.IMessage System.Runtime.Remoting.Messaging.ClientContextReplySink::SyncProcessMessage(System.Runtime.Remoting.Messaging.IMessage)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ClientContextReplySink_SyncProcessMessage_m34389DE38E948FEB75A1A7C64D2E6F0DA3812D62 (ClientContextReplySink_tAB77283D5E284109DBA2762B990D89C2F2BE24C8 * __this, RuntimeObject* ___msg0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ClientContextReplySink_SyncProcessMessage_m34389DE38E948FEB75A1A7C64D2E6F0DA3812D62_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___msg0;
IL2CPP_RUNTIME_CLASS_INIT(Context_t8A5B564FD0F970E10A97ACB8A7579FFF3EE4C678_il2cpp_TypeInfo_var);
Context_NotifyGlobalDynamicSinks_m38D3F9A94E672E49AB5D2ECFC25769B7DB28D4A8((bool)0, L_0, (bool)1, (bool)1, /*hidden argument*/NULL);
Context_t8A5B564FD0F970E10A97ACB8A7579FFF3EE4C678 * L_1 = __this->get__context_1();
RuntimeObject* L_2 = ___msg0;
NullCheck(L_1);
Context_NotifyDynamicSinks_m0AFC3D1E5E58818673E4FB318C5BFB36D1CD2A41(L_1, (bool)0, L_2, (bool)1, (bool)1, /*hidden argument*/NULL);
RuntimeObject* L_3 = __this->get__replySink_0();
RuntimeObject* L_4 = ___msg0;
NullCheck(L_3);
RuntimeObject* L_5 = InterfaceFuncInvoker1< RuntimeObject*, RuntimeObject* >::Invoke(0 /* System.Runtime.Remoting.Messaging.IMessage System.Runtime.Remoting.Messaging.IMessageSink::SyncProcessMessage(System.Runtime.Remoting.Messaging.IMessage) */, IMessageSink_t5C83B21C4C8767A5B9820EBBE611F7107BC7605F_il2cpp_TypeInfo_var, L_3, L_4);
return L_5;
}
}
// System.Runtime.Remoting.Messaging.IMessageCtrl System.Runtime.Remoting.Messaging.ClientContextReplySink::AsyncProcessMessage(System.Runtime.Remoting.Messaging.IMessage,System.Runtime.Remoting.Messaging.IMessageSink)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ClientContextReplySink_AsyncProcessMessage_mC187CEA2F76C41A5359971DB0FB66C413E73062C (ClientContextReplySink_tAB77283D5E284109DBA2762B990D89C2F2BE24C8 * __this, RuntimeObject* ___msg0, RuntimeObject* ___replySink1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ClientContextReplySink_AsyncProcessMessage_mC187CEA2F76C41A5359971DB0FB66C413E73062C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var);
NotSupportedException__ctor_m3EA81A5B209A87C3ADA47443F2AFFF735E5256EE(L_0, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ClientContextReplySink_AsyncProcessMessage_mC187CEA2F76C41A5359971DB0FB66C413E73062C_RuntimeMethod_var);
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Runtime.Remoting.Messaging.ClientContextTerminatorSink::.ctor(System.Runtime.Remoting.Contexts.Context)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ClientContextTerminatorSink__ctor_m761A76FE8DCCAD9B3AFC6BF88A03CA9C7886BE93 (ClientContextTerminatorSink_tA6083D944E104518F33798B16754D1BA236A3C20 * __this, Context_t8A5B564FD0F970E10A97ACB8A7579FFF3EE4C678 * ___ctx0, const RuntimeMethod* method)
{
{
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL);
Context_t8A5B564FD0F970E10A97ACB8A7579FFF3EE4C678 * L_0 = ___ctx0;
__this->set__context_0(L_0);
return;
}
}
// System.Runtime.Remoting.Messaging.IMessage System.Runtime.Remoting.Messaging.ClientContextTerminatorSink::SyncProcessMessage(System.Runtime.Remoting.Messaging.IMessage)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ClientContextTerminatorSink_SyncProcessMessage_m0F96D657861BB99F2CF942649BA209578EF41A59 (ClientContextTerminatorSink_tA6083D944E104518F33798B16754D1BA236A3C20 * __this, RuntimeObject* ___msg0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ClientContextTerminatorSink_SyncProcessMessage_m0F96D657861BB99F2CF942649BA209578EF41A59_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
{
RuntimeObject* L_0 = ___msg0;
IL2CPP_RUNTIME_CLASS_INIT(Context_t8A5B564FD0F970E10A97ACB8A7579FFF3EE4C678_il2cpp_TypeInfo_var);
Context_NotifyGlobalDynamicSinks_m38D3F9A94E672E49AB5D2ECFC25769B7DB28D4A8((bool)1, L_0, (bool)1, (bool)0, /*hidden argument*/NULL);
Context_t8A5B564FD0F970E10A97ACB8A7579FFF3EE4C678 * L_1 = __this->get__context_0();
RuntimeObject* L_2 = ___msg0;
NullCheck(L_1);
Context_NotifyDynamicSinks_m0AFC3D1E5E58818673E4FB318C5BFB36D1CD2A41(L_1, (bool)1, L_2, (bool)1, (bool)0, /*hidden argument*/NULL);
RuntimeObject* L_3 = ___msg0;
if (!((RuntimeObject*)IsInst((RuntimeObject*)L_3, IConstructionCallMessage_tC83D3CB206252626FBA0E8A12360CD6FA53630C7_il2cpp_TypeInfo_var)))
{
goto IL_002e;
}
}
{
RuntimeObject* L_4 = ___msg0;
RuntimeObject* L_5 = ActivationServices_RemoteActivate_m5913C4D1E45D5C3777A25FBACFB37FE7DCED8B77(((RuntimeObject*)Castclass((RuntimeObject*)L_4, IConstructionCallMessage_tC83D3CB206252626FBA0E8A12360CD6FA53630C7_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
V_0 = L_5;
goto IL_0040;
}
IL_002e:
{
RuntimeObject* L_6 = ___msg0;
IL2CPP_RUNTIME_CLASS_INIT(RemotingServices_tA253EA010FDD8986A2E814099EAB32BB98652786_il2cpp_TypeInfo_var);
Identity_t640A44175E23F75AB432A7C00569D863BF48AAD5 * L_7 = RemotingServices_GetMessageTargetIdentity_m0BE53DC180F8AEBD59A1A498BA4F5BC4BE187769(L_6, /*hidden argument*/NULL);
NullCheck(L_7);
RuntimeObject* L_8 = Identity_get_ChannelSink_m65E342D8B02C4B9A49BA932ACAEB0D3E1DF9A5D5_inline(L_7, /*hidden argument*/NULL);
RuntimeObject* L_9 = ___msg0;
NullCheck(L_8);
RuntimeObject* L_10 = InterfaceFuncInvoker1< RuntimeObject*, RuntimeObject* >::Invoke(0 /* System.Runtime.Remoting.Messaging.IMessage System.Runtime.Remoting.Messaging.IMessageSink::SyncProcessMessage(System.Runtime.Remoting.Messaging.IMessage) */, IMessageSink_t5C83B21C4C8767A5B9820EBBE611F7107BC7605F_il2cpp_TypeInfo_var, L_8, L_9);
V_0 = L_10;
}
IL_0040:
{
RuntimeObject* L_11 = ___msg0;
IL2CPP_RUNTIME_CLASS_INIT(Context_t8A5B564FD0F970E10A97ACB8A7579FFF3EE4C678_il2cpp_TypeInfo_var);
Context_NotifyGlobalDynamicSinks_m38D3F9A94E672E49AB5D2ECFC25769B7DB28D4A8((bool)0, L_11, (bool)1, (bool)0, /*hidden argument*/NULL);
Context_t8A5B564FD0F970E10A97ACB8A7579FFF3EE4C678 * L_12 = __this->get__context_0();
RuntimeObject* L_13 = ___msg0;
NullCheck(L_12);
Context_NotifyDynamicSinks_m0AFC3D1E5E58818673E4FB318C5BFB36D1CD2A41(L_12, (bool)0, L_13, (bool)1, (bool)0, /*hidden argument*/NULL);
RuntimeObject* L_14 = V_0;
return L_14;
}
}
// System.Runtime.Remoting.Messaging.IMessageCtrl System.Runtime.Remoting.Messaging.ClientContextTerminatorSink::AsyncProcessMessage(System.Runtime.Remoting.Messaging.IMessage,System.Runtime.Remoting.Messaging.IMessageSink)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ClientContextTerminatorSink_AsyncProcessMessage_m3ABE244DE8754ECA63629C99C47EA9206180E71A (ClientContextTerminatorSink_tA6083D944E104518F33798B16754D1BA236A3C20 * __this, RuntimeObject* ___msg0, RuntimeObject* ___replySink1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ClientContextTerminatorSink_AsyncProcessMessage_m3ABE244DE8754ECA63629C99C47EA9206180E71A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* G_B8_0 = NULL;
RuntimeObject* G_B5_0 = NULL;
RuntimeObject* G_B7_0 = NULL;
RuntimeObject* G_B6_0 = NULL;
{
Context_t8A5B564FD0F970E10A97ACB8A7579FFF3EE4C678 * L_0 = __this->get__context_0();
NullCheck(L_0);
bool L_1 = Context_get_HasDynamicSinks_m21E2C0BF9F77CB3203D41EE596E5379B2AC989EA(L_0, /*hidden argument*/NULL);
if (L_1)
{
goto IL_0014;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(Context_t8A5B564FD0F970E10A97ACB8A7579FFF3EE4C678_il2cpp_TypeInfo_var);
bool L_2 = Context_get_HasGlobalDynamicSinks_m2436361B864C92F78E48A26A40E2E39C45119193(/*hidden argument*/NULL);
if (!L_2)
{
goto IL_003d;
}
}
IL_0014:
{
RuntimeObject* L_3 = ___msg0;
IL2CPP_RUNTIME_CLASS_INIT(Context_t8A5B564FD0F970E10A97ACB8A7579FFF3EE4C678_il2cpp_TypeInfo_var);
Context_NotifyGlobalDynamicSinks_m38D3F9A94E672E49AB5D2ECFC25769B7DB28D4A8((bool)1, L_3, (bool)1, (bool)1, /*hidden argument*/NULL);
Context_t8A5B564FD0F970E10A97ACB8A7579FFF3EE4C678 * L_4 = __this->get__context_0();
RuntimeObject* L_5 = ___msg0;
NullCheck(L_4);
Context_NotifyDynamicSinks_m0AFC3D1E5E58818673E4FB318C5BFB36D1CD2A41(L_4, (bool)1, L_5, (bool)1, (bool)1, /*hidden argument*/NULL);
RuntimeObject* L_6 = ___replySink1;
if (!L_6)
{
goto IL_003d;
}
}
{
Context_t8A5B564FD0F970E10A97ACB8A7579FFF3EE4C678 * L_7 = __this->get__context_0();
RuntimeObject* L_8 = ___replySink1;
ClientContextReplySink_tAB77283D5E284109DBA2762B990D89C2F2BE24C8 * L_9 = (ClientContextReplySink_tAB77283D5E284109DBA2762B990D89C2F2BE24C8 *)il2cpp_codegen_object_new(ClientContextReplySink_tAB77283D5E284109DBA2762B990D89C2F2BE24C8_il2cpp_TypeInfo_var);
ClientContextReplySink__ctor_mD78845921ADC12331C6B925A13674A65CF414D16(L_9, L_7, L_8, /*hidden argument*/NULL);
___replySink1 = L_9;
}
IL_003d:
{
RuntimeObject* L_10 = ___msg0;
IL2CPP_RUNTIME_CLASS_INIT(RemotingServices_tA253EA010FDD8986A2E814099EAB32BB98652786_il2cpp_TypeInfo_var);
Identity_t640A44175E23F75AB432A7C00569D863BF48AAD5 * L_11 = RemotingServices_GetMessageTargetIdentity_m0BE53DC180F8AEBD59A1A498BA4F5BC4BE187769(L_10, /*hidden argument*/NULL);
NullCheck(L_11);
RuntimeObject* L_12 = Identity_get_ChannelSink_m65E342D8B02C4B9A49BA932ACAEB0D3E1DF9A5D5_inline(L_11, /*hidden argument*/NULL);
RuntimeObject* L_13 = ___msg0;
RuntimeObject* L_14 = ___replySink1;
NullCheck(L_12);
RuntimeObject* L_15 = InterfaceFuncInvoker2< RuntimeObject*, RuntimeObject*, RuntimeObject* >::Invoke(1 /* System.Runtime.Remoting.Messaging.IMessageCtrl System.Runtime.Remoting.Messaging.IMessageSink::AsyncProcessMessage(System.Runtime.Remoting.Messaging.IMessage,System.Runtime.Remoting.Messaging.IMessageSink) */, IMessageSink_t5C83B21C4C8767A5B9820EBBE611F7107BC7605F_il2cpp_TypeInfo_var, L_12, L_13, L_14);
RuntimeObject* L_16 = ___replySink1;
G_B5_0 = L_15;
if (L_16)
{
G_B8_0 = L_15;
goto IL_007e;
}
}
{
Context_t8A5B564FD0F970E10A97ACB8A7579FFF3EE4C678 * L_17 = __this->get__context_0();
NullCheck(L_17);
bool L_18 = Context_get_HasDynamicSinks_m21E2C0BF9F77CB3203D41EE596E5379B2AC989EA(L_17, /*hidden argument*/NULL);
G_B6_0 = G_B5_0;
if (L_18)
{
G_B7_0 = G_B5_0;
goto IL_0066;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(Context_t8A5B564FD0F970E10A97ACB8A7579FFF3EE4C678_il2cpp_TypeInfo_var);
bool L_19 = Context_get_HasGlobalDynamicSinks_m2436361B864C92F78E48A26A40E2E39C45119193(/*hidden argument*/NULL);
G_B7_0 = G_B6_0;
if (!L_19)
{
G_B8_0 = G_B6_0;
goto IL_007e;
}
}
IL_0066:
{
RuntimeObject* L_20 = ___msg0;
IL2CPP_RUNTIME_CLASS_INIT(Context_t8A5B564FD0F970E10A97ACB8A7579FFF3EE4C678_il2cpp_TypeInfo_var);
Context_NotifyGlobalDynamicSinks_m38D3F9A94E672E49AB5D2ECFC25769B7DB28D4A8((bool)0, L_20, (bool)1, (bool)1, /*hidden argument*/NULL);
Context_t8A5B564FD0F970E10A97ACB8A7579FFF3EE4C678 * L_21 = __this->get__context_0();
RuntimeObject* L_22 = ___msg0;
NullCheck(L_21);
Context_NotifyDynamicSinks_m0AFC3D1E5E58818673E4FB318C5BFB36D1CD2A41(L_21, (bool)0, L_22, (bool)1, (bool)1, /*hidden argument*/NULL);
G_B8_0 = G_B7_0;
}
IL_007e:
{
return G_B8_0;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Runtime.Remoting.ClientIdentity::.ctor(System.String,System.Runtime.Remoting.ObjRef)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ClientIdentity__ctor_m177DDBCE6F68BBDA464B671BB84F0F9EE6373AE6 (ClientIdentity_tF35F3D3529880FBF0017AB612179C8E060AE611E * __this, String_t* ___objectUri0, ObjRef_t10D53E2178851535F38935DC53B48634063C84D3 * ___objRef1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ClientIdentity__ctor_m177DDBCE6F68BBDA464B671BB84F0F9EE6373AE6_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ClientIdentity_tF35F3D3529880FBF0017AB612179C8E060AE611E * G_B2_0 = NULL;
ClientIdentity_tF35F3D3529880FBF0017AB612179C8E060AE611E * G_B1_0 = NULL;
RuntimeObject* G_B3_0 = NULL;
ClientIdentity_tF35F3D3529880FBF0017AB612179C8E060AE611E * G_B3_1 = NULL;
{
String_t* L_0 = ___objectUri0;
Identity__ctor_mDE97546186596A4BAEF58B596246F970735117CB(__this, L_0, /*hidden argument*/NULL);
ObjRef_t10D53E2178851535F38935DC53B48634063C84D3 * L_1 = ___objRef1;
((Identity_t640A44175E23F75AB432A7C00569D863BF48AAD5 *)__this)->set__objRef_5(L_1);
ObjRef_t10D53E2178851535F38935DC53B48634063C84D3 * L_2 = ((Identity_t640A44175E23F75AB432A7C00569D863BF48AAD5 *)__this)->get__objRef_5();
NullCheck(L_2);
RuntimeObject* L_3 = VirtFuncInvoker0< RuntimeObject* >::Invoke(7 /* System.Runtime.Remoting.IEnvoyInfo System.Runtime.Remoting.ObjRef::get_EnvoyInfo() */, L_2);
G_B1_0 = __this;
if (L_3)
{
G_B2_0 = __this;
goto IL_001f;
}
}
{
G_B3_0 = ((RuntimeObject*)(NULL));
G_B3_1 = G_B1_0;
goto IL_002f;
}
IL_001f:
{
ObjRef_t10D53E2178851535F38935DC53B48634063C84D3 * L_4 = ((Identity_t640A44175E23F75AB432A7C00569D863BF48AAD5 *)__this)->get__objRef_5();
NullCheck(L_4);
RuntimeObject* L_5 = VirtFuncInvoker0< RuntimeObject* >::Invoke(7 /* System.Runtime.Remoting.IEnvoyInfo System.Runtime.Remoting.ObjRef::get_EnvoyInfo() */, L_4);
NullCheck(L_5);
RuntimeObject* L_6 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Runtime.Remoting.Messaging.IMessageSink System.Runtime.Remoting.IEnvoyInfo::get_EnvoySinks() */, IEnvoyInfo_t0D9B51B59DD51C108742B0B18E09DC1B0AD6B713_il2cpp_TypeInfo_var, L_5);
G_B3_0 = L_6;
G_B3_1 = G_B2_0;
}
IL_002f:
{
NullCheck(G_B3_1);
((Identity_t640A44175E23F75AB432A7C00569D863BF48AAD5 *)G_B3_1)->set__envoySink_2(G_B3_0);
return;
}
}
// System.MarshalByRefObject System.Runtime.Remoting.ClientIdentity::get_ClientProxy()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8 * ClientIdentity_get_ClientProxy_mF9FD38F47C7BDC3020712AC6DCA6AABDCE3B2C75 (ClientIdentity_tF35F3D3529880FBF0017AB612179C8E060AE611E * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ClientIdentity_get_ClientProxy_mF9FD38F47C7BDC3020712AC6DCA6AABDCE3B2C75_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
WeakReference_tB8558D16C98417FD98C920C42C0CC5C9FF825C76 * L_0 = __this->get__proxyReference_7();
NullCheck(L_0);
RuntimeObject * L_1 = VirtFuncInvoker0< RuntimeObject * >::Invoke(5 /* System.Object System.WeakReference::get_Target() */, L_0);
return ((MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8 *)CastclassClass((RuntimeObject*)L_1, MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8_il2cpp_TypeInfo_var));
}
}
// System.Void System.Runtime.Remoting.ClientIdentity::set_ClientProxy(System.MarshalByRefObject)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ClientIdentity_set_ClientProxy_m309F0279F70335C8F9904503C1A0ADB5B4E21826 (ClientIdentity_tF35F3D3529880FBF0017AB612179C8E060AE611E * __this, MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8 * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ClientIdentity_set_ClientProxy_m309F0279F70335C8F9904503C1A0ADB5B4E21826_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8 * L_0 = ___value0;
WeakReference_tB8558D16C98417FD98C920C42C0CC5C9FF825C76 * L_1 = (WeakReference_tB8558D16C98417FD98C920C42C0CC5C9FF825C76 *)il2cpp_codegen_object_new(WeakReference_tB8558D16C98417FD98C920C42C0CC5C9FF825C76_il2cpp_TypeInfo_var);
WeakReference__ctor_m11BFDB039514BDCE23425FD90E8C414D051B2F13(L_1, L_0, /*hidden argument*/NULL);
__this->set__proxyReference_7(L_1);
return;
}
}
// System.Runtime.Remoting.ObjRef System.Runtime.Remoting.ClientIdentity::CreateObjRef(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjRef_t10D53E2178851535F38935DC53B48634063C84D3 * ClientIdentity_CreateObjRef_mAFEC1FF5E53C1BCE1CCB075FE7B2E9549DEFF558 (ClientIdentity_tF35F3D3529880FBF0017AB612179C8E060AE611E * __this, Type_t * ___requestedType0, const RuntimeMethod* method)
{
{
ObjRef_t10D53E2178851535F38935DC53B48634063C84D3 * L_0 = ((Identity_t640A44175E23F75AB432A7C00569D863BF48AAD5 *)__this)->get__objRef_5();
return L_0;
}
}
// System.String System.Runtime.Remoting.ClientIdentity::get_TargetUri()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ClientIdentity_get_TargetUri_m39AC30AD00910B77B781107E83EC4C99582E039F (ClientIdentity_tF35F3D3529880FBF0017AB612179C8E060AE611E * __this, const RuntimeMethod* method)
{
{
ObjRef_t10D53E2178851535F38935DC53B48634063C84D3 * L_0 = ((Identity_t640A44175E23F75AB432A7C00569D863BF48AAD5 *)__this)->get__objRef_5();
NullCheck(L_0);
String_t* L_1 = VirtFuncInvoker0< String_t* >::Invoke(11 /* System.String System.Runtime.Remoting.ObjRef::get_URI() */, L_0);
return L_1;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Globalization.CodePageDataItem::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CodePageDataItem__ctor_m8A1832B270F2CF8A48231E91AB35135704554F47 (CodePageDataItem_t09A62F57142BF0456C8F414898A37E79BCC9F09E * __this, int32_t ___dataIndex0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CodePageDataItem__ctor_m8A1832B270F2CF8A48231E91AB35135704554F47_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL);
int32_t L_0 = ___dataIndex0;
__this->set_m_dataIndex_0(L_0);
IL2CPP_RUNTIME_CLASS_INIT(EncodingTable_t694F812B48CC2BA6D23BDF77EA7E71E330497529_il2cpp_TypeInfo_var);
InternalCodePageDataItemU5BU5D_t14F50FF811A5CE312AAFE9726715A79B23230CA1* L_1 = ((EncodingTable_t694F812B48CC2BA6D23BDF77EA7E71E330497529_StaticFields*)il2cpp_codegen_static_fields_for(EncodingTable_t694F812B48CC2BA6D23BDF77EA7E71E330497529_il2cpp_TypeInfo_var))->get_codePageDataPtr_1();
int32_t L_2 = ___dataIndex0;
NullCheck(L_1);
uint16_t L_3 = ((L_1)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_2)))->get_uiFamilyCodePage_1();
__this->set_m_uiFamilyCodePage_1(L_3);
InternalCodePageDataItemU5BU5D_t14F50FF811A5CE312AAFE9726715A79B23230CA1* L_4 = ((EncodingTable_t694F812B48CC2BA6D23BDF77EA7E71E330497529_StaticFields*)il2cpp_codegen_static_fields_for(EncodingTable_t694F812B48CC2BA6D23BDF77EA7E71E330497529_il2cpp_TypeInfo_var))->get_codePageDataPtr_1();
int32_t L_5 = ___dataIndex0;
NullCheck(L_4);
uint32_t L_6 = ((L_4)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_5)))->get_flags_2();
__this->set_m_flags_2(L_6);
return;
}
}
// System.Void System.Globalization.CodePageDataItem::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CodePageDataItem__cctor_m68D774B6999C1A023C5CE53C468FA61FA4E9C937 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CodePageDataItem__cctor_m68D774B6999C1A023C5CE53C468FA61FA4E9C937_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_0 = (CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34*)(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34*)SZArrayNew(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34_il2cpp_TypeInfo_var, (uint32_t)1);
CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_1 = L_0;
NullCheck(L_1);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (Il2CppChar)((int32_t)124));
((CodePageDataItem_t09A62F57142BF0456C8F414898A37E79BCC9F09E_StaticFields*)il2cpp_codegen_static_fields_for(CodePageDataItem_t09A62F57142BF0456C8F414898A37E79BCC9F09E_il2cpp_TypeInfo_var))->set_sep_3(L_1);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Mono.Globalization.Unicode.CodePointIndexer::.ctor(System.Int32[],System.Int32[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CodePointIndexer__ctor_m48F5D89B02D13A9ADBDD6E924E0FC47FC7544E39 (CodePointIndexer_t0A6A7AB35984E2136E67DB8EF953A28C6553FD81 * __this, Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___starts0, Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___ends1, int32_t ___defaultIndex2, int32_t ___defaultCP3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CodePointIndexer__ctor_m48F5D89B02D13A9ADBDD6E924E0FC47FC7544E39_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t G_B3_0 = 0;
int32_t G_B3_1 = 0;
int32_t G_B3_2 = 0;
TableRangeU5BU5D_t529A3048AC157A0702514DB337164442AF1530C7* G_B3_3 = NULL;
int32_t G_B2_0 = 0;
int32_t G_B2_1 = 0;
int32_t G_B2_2 = 0;
TableRangeU5BU5D_t529A3048AC157A0702514DB337164442AF1530C7* G_B2_3 = NULL;
int32_t G_B4_0 = 0;
int32_t G_B4_1 = 0;
int32_t G_B4_2 = 0;
int32_t G_B4_3 = 0;
TableRangeU5BU5D_t529A3048AC157A0702514DB337164442AF1530C7* G_B4_4 = NULL;
{
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL);
int32_t L_0 = ___defaultIndex2;
__this->set_defaultIndex_2(L_0);
int32_t L_1 = ___defaultCP3;
__this->set_defaultCP_3(L_1);
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_2 = ___starts0;
NullCheck(L_2);
TableRangeU5BU5D_t529A3048AC157A0702514DB337164442AF1530C7* L_3 = (TableRangeU5BU5D_t529A3048AC157A0702514DB337164442AF1530C7*)(TableRangeU5BU5D_t529A3048AC157A0702514DB337164442AF1530C7*)SZArrayNew(TableRangeU5BU5D_t529A3048AC157A0702514DB337164442AF1530C7_il2cpp_TypeInfo_var, (uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length)))));
__this->set_ranges_0(L_3);
V_0 = 0;
goto IL_006f;
}
IL_0027:
{
TableRangeU5BU5D_t529A3048AC157A0702514DB337164442AF1530C7* L_4 = __this->get_ranges_0();
int32_t L_5 = V_0;
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_6 = ___starts0;
int32_t L_7 = V_0;
NullCheck(L_6);
int32_t L_8 = L_7;
int32_t L_9 = (L_6)->GetAt(static_cast<il2cpp_array_size_t>(L_8));
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_10 = ___ends1;
int32_t L_11 = V_0;
NullCheck(L_10);
int32_t L_12 = L_11;
int32_t L_13 = (L_10)->GetAt(static_cast<il2cpp_array_size_t>(L_12));
int32_t L_14 = V_0;
G_B2_0 = L_13;
G_B2_1 = L_9;
G_B2_2 = L_5;
G_B2_3 = L_4;
if (!L_14)
{
G_B3_0 = L_13;
G_B3_1 = L_9;
G_B3_2 = L_5;
G_B3_3 = L_4;
goto IL_0060;
}
}
{
TableRangeU5BU5D_t529A3048AC157A0702514DB337164442AF1530C7* L_15 = __this->get_ranges_0();
int32_t L_16 = V_0;
NullCheck(L_15);
int32_t L_17 = ((L_15)->GetAddressAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_subtract((int32_t)L_16, (int32_t)1)))))->get_IndexStart_3();
TableRangeU5BU5D_t529A3048AC157A0702514DB337164442AF1530C7* L_18 = __this->get_ranges_0();
int32_t L_19 = V_0;
NullCheck(L_18);
int32_t L_20 = ((L_18)->GetAddressAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1)))))->get_Count_2();
G_B4_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)L_20));
G_B4_1 = G_B2_0;
G_B4_2 = G_B2_1;
G_B4_3 = G_B2_2;
G_B4_4 = G_B2_3;
goto IL_0061;
}
IL_0060:
{
G_B4_0 = 0;
G_B4_1 = G_B3_0;
G_B4_2 = G_B3_1;
G_B4_3 = G_B3_2;
G_B4_4 = G_B3_3;
}
IL_0061:
{
TableRange_t0D96EE3F7B1008C60DD683B3A6985C602854E6F1 L_21;
memset((&L_21), 0, sizeof(L_21));
TableRange__ctor_m6E3D790986521CB8EE68A14BF434F876A7D934E2((&L_21), G_B4_2, G_B4_1, G_B4_0, /*hidden argument*/NULL);
NullCheck(G_B4_4);
(G_B4_4)->SetAt(static_cast<il2cpp_array_size_t>(G_B4_3), (TableRange_t0D96EE3F7B1008C60DD683B3A6985C602854E6F1 )L_21);
int32_t L_22 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_22, (int32_t)1));
}
IL_006f:
{
int32_t L_23 = V_0;
TableRangeU5BU5D_t529A3048AC157A0702514DB337164442AF1530C7* L_24 = __this->get_ranges_0();
NullCheck(L_24);
if ((((int32_t)L_23) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_24)->max_length)))))))
{
goto IL_0027;
}
}
{
V_1 = 0;
goto IL_00a0;
}
IL_007e:
{
int32_t L_25 = __this->get_TotalCount_1();
TableRangeU5BU5D_t529A3048AC157A0702514DB337164442AF1530C7* L_26 = __this->get_ranges_0();
int32_t L_27 = V_1;
NullCheck(L_26);
int32_t L_28 = ((L_26)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_27)))->get_Count_2();
__this->set_TotalCount_1(((int32_t)il2cpp_codegen_add((int32_t)L_25, (int32_t)L_28)));
int32_t L_29 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_29, (int32_t)1));
}
IL_00a0:
{
int32_t L_30 = V_1;
TableRangeU5BU5D_t529A3048AC157A0702514DB337164442AF1530C7* L_31 = __this->get_ranges_0();
NullCheck(L_31);
if ((((int32_t)L_30) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_31)->max_length)))))))
{
goto IL_007e;
}
}
{
return;
}
}
// System.Int32 Mono.Globalization.Unicode.CodePointIndexer::ToIndex(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CodePointIndexer_ToIndex_mB4F6BB9A4B18B72848B4EFC66031EC2E39FA4C54 (CodePointIndexer_t0A6A7AB35984E2136E67DB8EF953A28C6553FD81 * __this, int32_t ___cp0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
V_0 = 0;
goto IL_005d;
}
IL_0004:
{
int32_t L_0 = ___cp0;
TableRangeU5BU5D_t529A3048AC157A0702514DB337164442AF1530C7* L_1 = __this->get_ranges_0();
int32_t L_2 = V_0;
NullCheck(L_1);
int32_t L_3 = ((L_1)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_2)))->get_Start_0();
if ((((int32_t)L_0) >= ((int32_t)L_3)))
{
goto IL_001f;
}
}
{
int32_t L_4 = __this->get_defaultIndex_2();
return L_4;
}
IL_001f:
{
int32_t L_5 = ___cp0;
TableRangeU5BU5D_t529A3048AC157A0702514DB337164442AF1530C7* L_6 = __this->get_ranges_0();
int32_t L_7 = V_0;
NullCheck(L_6);
int32_t L_8 = ((L_6)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_7)))->get_End_1();
if ((((int32_t)L_5) >= ((int32_t)L_8)))
{
goto IL_0059;
}
}
{
int32_t L_9 = ___cp0;
TableRangeU5BU5D_t529A3048AC157A0702514DB337164442AF1530C7* L_10 = __this->get_ranges_0();
int32_t L_11 = V_0;
NullCheck(L_10);
int32_t L_12 = ((L_10)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_11)))->get_Start_0();
TableRangeU5BU5D_t529A3048AC157A0702514DB337164442AF1530C7* L_13 = __this->get_ranges_0();
int32_t L_14 = V_0;
NullCheck(L_13);
int32_t L_15 = ((L_13)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_14)))->get_IndexStart_3();
return ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)L_12)), (int32_t)L_15));
}
IL_0059:
{
int32_t L_16 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_005d:
{
int32_t L_17 = V_0;
TableRangeU5BU5D_t529A3048AC157A0702514DB337164442AF1530C7* L_18 = __this->get_ranges_0();
NullCheck(L_18);
if ((((int32_t)L_17) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_18)->max_length)))))))
{
goto IL_0004;
}
}
{
int32_t L_19 = __this->get_defaultIndex_2();
return L_19;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Runtime.InteropServices.ComCompatibleVersionAttribute::.ctor(System.Int32,System.Int32,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ComCompatibleVersionAttribute__ctor_m282481343E764237947903A5A5A3E65F3E462CB2 (ComCompatibleVersionAttribute_tC75249EF0E76BDB5322EC20EBCADDF5E8F9E183A * __this, int32_t ___major0, int32_t ___minor1, int32_t ___build2, int32_t ___revision3, const RuntimeMethod* method)
{
{
Attribute__ctor_m5C1862A7DFC2C25A4797A8C5F681FBB5CB53ECE1(__this, /*hidden argument*/NULL);
int32_t L_0 = ___major0;
__this->set__major_0(L_0);
int32_t L_1 = ___minor1;
__this->set__minor_1(L_1);
int32_t L_2 = ___build2;
__this->set__build_2(L_2);
int32_t L_3 = ___revision3;
__this->set__revision_3(L_3);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Runtime.InteropServices.ComDefaultInterfaceAttribute::.ctor(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ComDefaultInterfaceAttribute__ctor_m9FB2DFCD28D6C58C8B23F8F199CCC7CC49D2A436 (ComDefaultInterfaceAttribute_tC170FF54A68C3A32A635632D3DB9E6410F02FE72 * __this, Type_t * ___defaultInterface0, const RuntimeMethod* method)
{
{
Attribute__ctor_m5C1862A7DFC2C25A4797A8C5F681FBB5CB53ECE1(__this, /*hidden argument*/NULL);
Type_t * L_0 = ___defaultInterface0;
__this->set__val_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Runtime.InteropServices.ComImportAttribute::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ComImportAttribute__ctor_m7B364E4538E09D5270B8AE235319D7094241D885 (ComImportAttribute_t8A6BBE54E3259B07ACE4161A64FF180879E82E15 * __this, const RuntimeMethod* method)
{
{
Attribute__ctor_m5C1862A7DFC2C25A4797A8C5F681FBB5CB53ECE1(__this, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Runtime.InteropServices.ComVisibleAttribute::.ctor(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ComVisibleAttribute__ctor_mBDE8E12A0233C07B98D6D5103511F4DD5B1FC172 (ComVisibleAttribute_tCE3DF5E341F3ECE4C81FE85C15B3D782AB302A2A * __this, bool ___visibility0, const RuntimeMethod* method)
{
{
Attribute__ctor_m5C1862A7DFC2C25A4797A8C5F681FBB5CB53ECE1(__this, /*hidden argument*/NULL);
bool L_0 = ___visibility0;
__this->set__val_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Globalization.CompareInfo::.ctor(System.Globalization.CultureInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CompareInfo__ctor_m1E81C42D747D946A24D1999E714CFB9DDE120725 (CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * __this, CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * ___culture0, const RuntimeMethod* method)
{
{
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL);
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_0 = ___culture0;
NullCheck(L_0);
String_t* L_1 = L_0->get_m_name_13();
__this->set_m_name_3(L_1);
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_2 = ___culture0;
NullCheck(L_2);
String_t* L_3 = CultureInfo_get_SortName_mB0617CF8B75431B13A7E3D470E9868B35747E9B6_inline(L_2, /*hidden argument*/NULL);
__this->set_m_sortName_4(L_3);
return;
}
}
// System.Globalization.CompareInfo System.Globalization.CompareInfo::GetCompareInfo(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * CompareInfo_GetCompareInfo_mC9F7EFE808B590B2516F666583BB55ED81EA6A91 (String_t* ___name0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CompareInfo_GetCompareInfo_mC9F7EFE808B590B2516F666583BB55ED81EA6A91_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___name0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, _stringLiteralCE18B047107AA23D1AA9B2ED32D316148E02655F, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, CompareInfo_GetCompareInfo_mC9F7EFE808B590B2516F666583BB55ED81EA6A91_RuntimeMethod_var);
}
IL_000e:
{
String_t* L_2 = ___name0;
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var);
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_3 = CultureInfo_GetCultureInfo_m757F4A8A690B1CDA1A498EBD2ED031B7A76546F3(L_2, /*hidden argument*/NULL);
NullCheck(L_3);
CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * L_4 = VirtFuncInvoker0< CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * >::Invoke(12 /* System.Globalization.CompareInfo System.Globalization.CultureInfo::get_CompareInfo() */, L_3);
return L_4;
}
}
// System.Void System.Globalization.CompareInfo::OnDeserializing(System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CompareInfo_OnDeserializing_m4D6CA99822B71F54B90037999731EC0FD524D8A8 (CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * __this, StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 ___ctx0, const RuntimeMethod* method)
{
{
__this->set_m_name_3((String_t*)NULL);
return;
}
}
// System.Void System.Globalization.CompareInfo::OnDeserialized()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CompareInfo_OnDeserialized_m2A4271526A5A90EE87689F66A7A5EB6F58D24FF7 (CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CompareInfo_OnDeserialized_m2A4271526A5A90EE87689F66A7A5EB6F58D24FF7_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * V_0 = NULL;
{
String_t* L_0 = __this->get_m_name_3();
if (L_0)
{
goto IL_0022;
}
}
{
int32_t L_1 = __this->get_culture_6();
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var);
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_2 = CultureInfo_GetCultureInfo_mB0697F9A11B0ECED167EF993E87AF22C201A16A6(L_1, /*hidden argument*/NULL);
V_0 = L_2;
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_3 = V_0;
NullCheck(L_3);
String_t* L_4 = L_3->get_m_name_13();
__this->set_m_name_3(L_4);
goto IL_002e;
}
IL_0022:
{
String_t* L_5 = __this->get_m_name_3();
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var);
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_6 = CultureInfo_GetCultureInfo_m757F4A8A690B1CDA1A498EBD2ED031B7A76546F3(L_5, /*hidden argument*/NULL);
V_0 = L_6;
}
IL_002e:
{
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_7 = V_0;
NullCheck(L_7);
String_t* L_8 = CultureInfo_get_SortName_mB0617CF8B75431B13A7E3D470E9868B35747E9B6_inline(L_7, /*hidden argument*/NULL);
__this->set_m_sortName_4(L_8);
return;
}
}
// System.Void System.Globalization.CompareInfo::OnDeserialized(System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CompareInfo_OnDeserialized_mF2CE41925051B4758D81B5B4E1C9952E6E53B5BF (CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * __this, StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 ___ctx0, const RuntimeMethod* method)
{
{
CompareInfo_OnDeserialized_m2A4271526A5A90EE87689F66A7A5EB6F58D24FF7(__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Globalization.CompareInfo::OnSerializing(System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CompareInfo_OnSerializing_m13621EB8EBA0B199808F941C381EFBFBAFDE70BD (CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * __this, StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 ___ctx0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CompareInfo_OnSerializing_m13621EB8EBA0B199808F941C381EFBFBAFDE70BD_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = VirtFuncInvoker0< String_t* >::Invoke(5 /* System.String System.Globalization.CompareInfo::get_Name() */, __this);
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var);
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_1 = CultureInfo_GetCultureInfo_m757F4A8A690B1CDA1A498EBD2ED031B7A76546F3(L_0, /*hidden argument*/NULL);
NullCheck(L_1);
int32_t L_2 = VirtFuncInvoker0< int32_t >::Invoke(6 /* System.Int32 System.Globalization.CultureInfo::get_LCID() */, L_1);
__this->set_culture_6(L_2);
return;
}
}
// System.Void System.Globalization.CompareInfo::System.Runtime.Serialization.IDeserializationCallback.OnDeserialization(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CompareInfo_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_m50A2E4C80A8D1E73C34D9D11C126E1DB6E015DC3 (CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * __this, RuntimeObject * ___sender0, const RuntimeMethod* method)
{
{
CompareInfo_OnDeserialized_m2A4271526A5A90EE87689F66A7A5EB6F58D24FF7(__this, /*hidden argument*/NULL);
return;
}
}
// System.String System.Globalization.CompareInfo::get_Name()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* CompareInfo_get_Name_m5672E0F4F33E71DE0DDD443642C8D7F0DF2CE94D (CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CompareInfo_get_Name_m5672E0F4F33E71DE0DDD443642C8D7F0DF2CE94D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = __this->get_m_name_3();
bool L_1 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_0, _stringLiteral737BFFF97B66248A4653D6DA8ADA91C6C1065CAF, /*hidden argument*/NULL);
if (L_1)
{
goto IL_0024;
}
}
{
String_t* L_2 = __this->get_m_name_3();
bool L_3 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_2, _stringLiteralA65DBA682C40E29506EA08E50296520D49939CB9, /*hidden argument*/NULL);
if (!L_3)
{
goto IL_002b;
}
}
IL_0024:
{
String_t* L_4 = __this->get_m_name_3();
return L_4;
}
IL_002b:
{
String_t* L_5 = __this->get_m_sortName_4();
return L_5;
}
}
// System.Int32 System.Globalization.CompareInfo::Compare(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CompareInfo_Compare_m76CAABA88508311E4C9F67EC2ADB5500503C643F (CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * __this, String_t* ___string10, String_t* ___string21, const RuntimeMethod* method)
{
{
String_t* L_0 = ___string10;
String_t* L_1 = ___string21;
int32_t L_2 = VirtFuncInvoker3< int32_t, String_t*, String_t*, int32_t >::Invoke(7 /* System.Int32 System.Globalization.CompareInfo::Compare(System.String,System.String,System.Globalization.CompareOptions) */, __this, L_0, L_1, 0);
return L_2;
}
}
// System.Int32 System.Globalization.CompareInfo::Compare(System.String,System.String,System.Globalization.CompareOptions)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CompareInfo_Compare_mF33ED9ED26EFB30E9609D1E9BF06157F16D4E77E (CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * __this, String_t* ___string10, String_t* ___string21, int32_t ___options2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CompareInfo_Compare_mF33ED9ED26EFB30E9609D1E9BF06157F16D4E77E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___options2;
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)268435456)))))
{
goto IL_0011;
}
}
{
String_t* L_1 = ___string10;
String_t* L_2 = ___string21;
int32_t L_3 = String_Compare_mDAE9D10BC450FF38960C691874EBFC3EAF6A39DD(L_1, L_2, 5, /*hidden argument*/NULL);
return L_3;
}
IL_0011:
{
int32_t L_4 = ___options2;
if (!((int32_t)((int32_t)L_4&(int32_t)((int32_t)1073741824))))
{
goto IL_003f;
}
}
{
int32_t L_5 = ___options2;
if ((((int32_t)L_5) == ((int32_t)((int32_t)1073741824))))
{
goto IL_0037;
}
}
{
String_t* L_6 = Environment_GetResourceString_m8DFF827596B5FD533D3FE56900FA095F7D674617(_stringLiteral723E46A41FA30E7C7F196DE580152E6EF9C3D31C, /*hidden argument*/NULL);
ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_7 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var);
ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_7, L_6, _stringLiteralCF7DF948FC4905FED1A56776B9DFCCB86C46912A, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, CompareInfo_Compare_mF33ED9ED26EFB30E9609D1E9BF06157F16D4E77E_RuntimeMethod_var);
}
IL_0037:
{
String_t* L_8 = ___string10;
String_t* L_9 = ___string21;
int32_t L_10 = String_CompareOrdinal_m1C7F94040504F35C89EBC8826D77FEA81B9C2C0E(L_8, L_9, /*hidden argument*/NULL);
return L_10;
}
IL_003f:
{
int32_t L_11 = ___options2;
if (!((int32_t)((int32_t)L_11&(int32_t)((int32_t)-536870944))))
{
goto IL_005d;
}
}
{
String_t* L_12 = Environment_GetResourceString_m8DFF827596B5FD533D3FE56900FA095F7D674617(_stringLiteralD56ECCB13770E8300FEE31DF9CFA9B022470BE5A, /*hidden argument*/NULL);
ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_13 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var);
ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_13, L_12, _stringLiteralCF7DF948FC4905FED1A56776B9DFCCB86C46912A, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, CompareInfo_Compare_mF33ED9ED26EFB30E9609D1E9BF06157F16D4E77E_RuntimeMethod_var);
}
IL_005d:
{
String_t* L_14 = ___string10;
if (L_14)
{
goto IL_0067;
}
}
{
String_t* L_15 = ___string21;
if (L_15)
{
goto IL_0065;
}
}
{
return 0;
}
IL_0065:
{
return (-1);
}
IL_0067:
{
String_t* L_16 = ___string21;
if (L_16)
{
goto IL_006c;
}
}
{
return 1;
}
IL_006c:
{
String_t* L_17 = ___string10;
String_t* L_18 = ___string10;
NullCheck(L_18);
int32_t L_19 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_18, /*hidden argument*/NULL);
String_t* L_20 = ___string21;
String_t* L_21 = ___string21;
NullCheck(L_21);
int32_t L_22 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_21, /*hidden argument*/NULL);
int32_t L_23 = ___options2;
int32_t L_24 = CompareInfo_internal_compare_switch_m1FEAE9C0E2860A333FC6FC8C2E3D3B9BE6F24847(__this, L_17, 0, L_19, L_20, 0, L_22, L_23, /*hidden argument*/NULL);
return L_24;
}
}
// System.Int32 System.Globalization.CompareInfo::Compare(System.String,System.Int32,System.Int32,System.String,System.Int32,System.Int32,System.Globalization.CompareOptions)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CompareInfo_Compare_m80B7BFB5C8FA4D134927913C3B4838894CD56542 (CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * __this, String_t* ___string10, int32_t ___offset11, int32_t ___length12, String_t* ___string23, int32_t ___offset24, int32_t ___length25, int32_t ___options6, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CompareInfo_Compare_m80B7BFB5C8FA4D134927913C3B4838894CD56542_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t G_B3_0 = 0;
String_t* G_B3_1 = NULL;
int32_t G_B3_2 = 0;
String_t* G_B3_3 = NULL;
int32_t G_B2_0 = 0;
String_t* G_B2_1 = NULL;
int32_t G_B2_2 = 0;
String_t* G_B2_3 = NULL;
int32_t G_B4_0 = 0;
int32_t G_B4_1 = 0;
String_t* G_B4_2 = NULL;
int32_t G_B4_3 = 0;
String_t* G_B4_4 = NULL;
String_t* G_B15_0 = NULL;
String_t* G_B21_0 = NULL;
int32_t G_B24_0 = 0;
int32_t G_B23_0 = 0;
int32_t G_B25_0 = 0;
int32_t G_B25_1 = 0;
int32_t G_B29_0 = 0;
int32_t G_B28_0 = 0;
int32_t G_B30_0 = 0;
int32_t G_B30_1 = 0;
{
int32_t L_0 = ___options6;
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)268435456)))))
{
goto IL_0033;
}
}
{
String_t* L_1 = ___string10;
int32_t L_2 = ___offset11;
String_t* L_3 = ___string23;
int32_t L_4 = ___offset24;
int32_t L_5 = ___length12;
int32_t L_6 = ___length25;
G_B2_0 = L_4;
G_B2_1 = L_3;
G_B2_2 = L_2;
G_B2_3 = L_1;
if ((((int32_t)L_5) < ((int32_t)L_6)))
{
G_B3_0 = L_4;
G_B3_1 = L_3;
G_B3_2 = L_2;
G_B3_3 = L_1;
goto IL_0018;
}
}
{
int32_t L_7 = ___length25;
G_B4_0 = L_7;
G_B4_1 = G_B2_0;
G_B4_2 = G_B2_1;
G_B4_3 = G_B2_2;
G_B4_4 = G_B2_3;
goto IL_0019;
}
IL_0018:
{
int32_t L_8 = ___length12;
G_B4_0 = L_8;
G_B4_1 = G_B3_0;
G_B4_2 = G_B3_1;
G_B4_3 = G_B3_2;
G_B4_4 = G_B3_3;
}
IL_0019:
{
int32_t L_9 = String_Compare_m235536D851DC456E92886872EB685E9746CD8842(G_B4_4, G_B4_3, G_B4_2, G_B4_1, G_B4_0, 5, /*hidden argument*/NULL);
V_0 = L_9;
int32_t L_10 = ___length12;
int32_t L_11 = ___length25;
if ((((int32_t)L_10) == ((int32_t)L_11)))
{
goto IL_0031;
}
}
{
int32_t L_12 = V_0;
if (L_12)
{
goto IL_0031;
}
}
{
int32_t L_13 = ___length12;
int32_t L_14 = ___length25;
if ((((int32_t)L_13) > ((int32_t)L_14)))
{
goto IL_002f;
}
}
{
return (-1);
}
IL_002f:
{
return 1;
}
IL_0031:
{
int32_t L_15 = V_0;
return L_15;
}
IL_0033:
{
int32_t L_16 = ___length12;
if ((((int32_t)L_16) < ((int32_t)0)))
{
goto IL_003c;
}
}
{
int32_t L_17 = ___length25;
if ((((int32_t)L_17) >= ((int32_t)0)))
{
goto IL_005c;
}
}
IL_003c:
{
int32_t L_18 = ___length12;
if ((((int32_t)L_18) < ((int32_t)0)))
{
goto IL_0047;
}
}
{
G_B15_0 = _stringLiteral6018A7E9E4395D2196E577EAEE1F24DCC0E7EF5C;
goto IL_004c;
}
IL_0047:
{
G_B15_0 = _stringLiteral20A854C830175E5869E4B5AC3198664C56CCEA9C;
}
IL_004c:
{
String_t* L_19 = Environment_GetResourceString_m8DFF827596B5FD533D3FE56900FA095F7D674617(_stringLiteralC80EAF7D556B35E97D7BD4261C87B1BF066A0221, /*hidden argument*/NULL);
ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_20 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_mE43AFC74F5F3932913C023A04B24905E093C5005(L_20, G_B15_0, L_19, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_20, CompareInfo_Compare_m80B7BFB5C8FA4D134927913C3B4838894CD56542_RuntimeMethod_var);
}
IL_005c:
{
int32_t L_21 = ___offset11;
if ((((int32_t)L_21) < ((int32_t)0)))
{
goto IL_0065;
}
}
{
int32_t L_22 = ___offset24;
if ((((int32_t)L_22) >= ((int32_t)0)))
{
goto IL_0085;
}
}
IL_0065:
{
int32_t L_23 = ___offset11;
if ((((int32_t)L_23) < ((int32_t)0)))
{
goto IL_0070;
}
}
{
G_B21_0 = _stringLiteralA3C60DDE32C733BF4E29DF56605E774755924A9A;
goto IL_0075;
}
IL_0070:
{
G_B21_0 = _stringLiteral9A55D88104EFE4189E91600732E17785B1FA4735;
}
IL_0075:
{
String_t* L_24 = Environment_GetResourceString_m8DFF827596B5FD533D3FE56900FA095F7D674617(_stringLiteralC80EAF7D556B35E97D7BD4261C87B1BF066A0221, /*hidden argument*/NULL);
ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_25 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_mE43AFC74F5F3932913C023A04B24905E093C5005(L_25, G_B21_0, L_24, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_25, CompareInfo_Compare_m80B7BFB5C8FA4D134927913C3B4838894CD56542_RuntimeMethod_var);
}
IL_0085:
{
int32_t L_26 = ___offset11;
String_t* L_27 = ___string10;
G_B23_0 = L_26;
if (!L_27)
{
G_B24_0 = L_26;
goto IL_0091;
}
}
{
String_t* L_28 = ___string10;
NullCheck(L_28);
int32_t L_29 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_28, /*hidden argument*/NULL);
G_B25_0 = L_29;
G_B25_1 = G_B23_0;
goto IL_0092;
}
IL_0091:
{
G_B25_0 = 0;
G_B25_1 = G_B24_0;
}
IL_0092:
{
int32_t L_30 = ___length12;
if ((((int32_t)G_B25_1) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)G_B25_0, (int32_t)L_30)))))
{
goto IL_00ab;
}
}
{
String_t* L_31 = Environment_GetResourceString_m8DFF827596B5FD533D3FE56900FA095F7D674617(_stringLiteral8532458685731C44156899992CA7A144A15B177F, /*hidden argument*/NULL);
ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_32 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_mE43AFC74F5F3932913C023A04B24905E093C5005(L_32, _stringLiteralFB62F81D49870FA4F12D3D5BB2A66FA6EF3EA9DD, L_31, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_32, CompareInfo_Compare_m80B7BFB5C8FA4D134927913C3B4838894CD56542_RuntimeMethod_var);
}
IL_00ab:
{
int32_t L_33 = ___offset24;
String_t* L_34 = ___string23;
G_B28_0 = L_33;
if (!L_34)
{
G_B29_0 = L_33;
goto IL_00ba;
}
}
{
String_t* L_35 = ___string23;
NullCheck(L_35);
int32_t L_36 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_35, /*hidden argument*/NULL);
G_B30_0 = L_36;
G_B30_1 = G_B28_0;
goto IL_00bb;
}
IL_00ba:
{
G_B30_0 = 0;
G_B30_1 = G_B29_0;
}
IL_00bb:
{
int32_t L_37 = ___length25;
if ((((int32_t)G_B30_1) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)G_B30_0, (int32_t)L_37)))))
{
goto IL_00d5;
}
}
{
String_t* L_38 = Environment_GetResourceString_m8DFF827596B5FD533D3FE56900FA095F7D674617(_stringLiteral8532458685731C44156899992CA7A144A15B177F, /*hidden argument*/NULL);
ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_39 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_mE43AFC74F5F3932913C023A04B24905E093C5005(L_39, _stringLiteralCFC4A754642031A9C52CF57557A9814B6FE93322, L_38, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_39, CompareInfo_Compare_m80B7BFB5C8FA4D134927913C3B4838894CD56542_RuntimeMethod_var);
}
IL_00d5:
{
int32_t L_40 = ___options6;
if (!((int32_t)((int32_t)L_40&(int32_t)((int32_t)1073741824))))
{
goto IL_00fd;
}
}
{
int32_t L_41 = ___options6;
if ((((int32_t)L_41) == ((int32_t)((int32_t)1073741824))))
{
goto IL_011c;
}
}
{
String_t* L_42 = Environment_GetResourceString_m8DFF827596B5FD533D3FE56900FA095F7D674617(_stringLiteral723E46A41FA30E7C7F196DE580152E6EF9C3D31C, /*hidden argument*/NULL);
ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_43 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var);
ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_43, L_42, _stringLiteralCF7DF948FC4905FED1A56776B9DFCCB86C46912A, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_43, CompareInfo_Compare_m80B7BFB5C8FA4D134927913C3B4838894CD56542_RuntimeMethod_var);
}
IL_00fd:
{
int32_t L_44 = ___options6;
if (!((int32_t)((int32_t)L_44&(int32_t)((int32_t)-536870944))))
{
goto IL_011c;
}
}
{
String_t* L_45 = Environment_GetResourceString_m8DFF827596B5FD533D3FE56900FA095F7D674617(_stringLiteralD56ECCB13770E8300FEE31DF9CFA9B022470BE5A, /*hidden argument*/NULL);
ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_46 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var);
ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_46, L_45, _stringLiteralCF7DF948FC4905FED1A56776B9DFCCB86C46912A, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_46, CompareInfo_Compare_m80B7BFB5C8FA4D134927913C3B4838894CD56542_RuntimeMethod_var);
}
IL_011c:
{
String_t* L_47 = ___string10;
if (L_47)
{
goto IL_0127;
}
}
{
String_t* L_48 = ___string23;
if (L_48)
{
goto IL_0125;
}
}
{
return 0;
}
IL_0125:
{
return (-1);
}
IL_0127:
{
String_t* L_49 = ___string23;
if (L_49)
{
goto IL_012d;
}
}
{
return 1;
}
IL_012d:
{
int32_t L_50 = ___options6;
if ((!(((uint32_t)L_50) == ((uint32_t)((int32_t)1073741824)))))
{
goto IL_0145;
}
}
{
String_t* L_51 = ___string10;
int32_t L_52 = ___offset11;
int32_t L_53 = ___length12;
String_t* L_54 = ___string23;
int32_t L_55 = ___offset24;
int32_t L_56 = ___length25;
int32_t L_57 = CompareInfo_CompareOrdinal_m33AB738164EFA204BC89F2A7269923A3F3511118(L_51, L_52, L_53, L_54, L_55, L_56, /*hidden argument*/NULL);
return L_57;
}
IL_0145:
{
String_t* L_58 = ___string10;
int32_t L_59 = ___offset11;
int32_t L_60 = ___length12;
String_t* L_61 = ___string23;
int32_t L_62 = ___offset24;
int32_t L_63 = ___length25;
int32_t L_64 = ___options6;
int32_t L_65 = CompareInfo_internal_compare_switch_m1FEAE9C0E2860A333FC6FC8C2E3D3B9BE6F24847(__this, L_58, L_59, L_60, L_61, L_62, L_63, L_64, /*hidden argument*/NULL);
return L_65;
}
}
// System.Int32 System.Globalization.CompareInfo::CompareOrdinal(System.String,System.Int32,System.Int32,System.String,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CompareInfo_CompareOrdinal_m33AB738164EFA204BC89F2A7269923A3F3511118 (String_t* ___string10, int32_t ___offset11, int32_t ___length12, String_t* ___string23, int32_t ___offset24, int32_t ___length25, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t G_B2_0 = 0;
String_t* G_B2_1 = NULL;
int32_t G_B2_2 = 0;
String_t* G_B2_3 = NULL;
int32_t G_B1_0 = 0;
String_t* G_B1_1 = NULL;
int32_t G_B1_2 = 0;
String_t* G_B1_3 = NULL;
int32_t G_B3_0 = 0;
int32_t G_B3_1 = 0;
String_t* G_B3_2 = NULL;
int32_t G_B3_3 = 0;
String_t* G_B3_4 = NULL;
{
String_t* L_0 = ___string10;
int32_t L_1 = ___offset11;
String_t* L_2 = ___string23;
int32_t L_3 = ___offset24;
int32_t L_4 = ___length12;
int32_t L_5 = ___length25;
G_B1_0 = L_3;
G_B1_1 = L_2;
G_B1_2 = L_1;
G_B1_3 = L_0;
if ((((int32_t)L_4) < ((int32_t)L_5)))
{
G_B2_0 = L_3;
G_B2_1 = L_2;
G_B2_2 = L_1;
G_B2_3 = L_0;
goto IL_000e;
}
}
{
int32_t L_6 = ___length25;
G_B3_0 = L_6;
G_B3_1 = G_B1_0;
G_B3_2 = G_B1_1;
G_B3_3 = G_B1_2;
G_B3_4 = G_B1_3;
goto IL_000f;
}
IL_000e:
{
int32_t L_7 = ___length12;
G_B3_0 = L_7;
G_B3_1 = G_B2_0;
G_B3_2 = G_B2_1;
G_B3_3 = G_B2_2;
G_B3_4 = G_B2_3;
}
IL_000f:
{
int32_t L_8 = String_nativeCompareOrdinalEx_mE22F6EA686A103B4B35D18793AF30FE8C668D549(G_B3_4, G_B3_3, G_B3_2, G_B3_1, G_B3_0, /*hidden argument*/NULL);
V_0 = L_8;
int32_t L_9 = ___length12;
int32_t L_10 = ___length25;
if ((((int32_t)L_9) == ((int32_t)L_10)))
{
goto IL_0026;
}
}
{
int32_t L_11 = V_0;
if (L_11)
{
goto IL_0026;
}
}
{
int32_t L_12 = ___length12;
int32_t L_13 = ___length25;
if ((((int32_t)L_12) > ((int32_t)L_13)))
{
goto IL_0024;
}
}
{
return (-1);
}
IL_0024:
{
return 1;
}
IL_0026:
{
int32_t L_14 = V_0;
return L_14;
}
}
// System.Boolean System.Globalization.CompareInfo::IsPrefix(System.String,System.String,System.Globalization.CompareOptions)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CompareInfo_IsPrefix_mEF00D16D132729410D36C5F10579A1D088DD6DF6 (CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * __this, String_t* ___source0, String_t* ___prefix1, int32_t ___options2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CompareInfo_IsPrefix_mEF00D16D132729410D36C5F10579A1D088DD6DF6_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* G_B5_0 = NULL;
{
String_t* L_0 = ___source0;
if (!L_0)
{
goto IL_0006;
}
}
{
String_t* L_1 = ___prefix1;
if (L_1)
{
goto IL_0025;
}
}
IL_0006:
{
String_t* L_2 = ___source0;
if (!L_2)
{
goto IL_0010;
}
}
{
G_B5_0 = _stringLiteralCB5CDE966F99FDC7AE4101331D907BCEF208D664;
goto IL_0015;
}
IL_0010:
{
G_B5_0 = _stringLiteral66F9618FDA792CAB23AF2D7FFB50AB2D3E393DC5;
}
IL_0015:
{
String_t* L_3 = Environment_GetResourceString_m8DFF827596B5FD533D3FE56900FA095F7D674617(_stringLiteral6138241A3DE02B2D3DCE5A7D8521E6799652D9B9, /*hidden argument*/NULL);
ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_4 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mAD2F05A24C92A657CBCA8C43A9A373C53739A283(L_4, G_B5_0, L_3, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, CompareInfo_IsPrefix_mEF00D16D132729410D36C5F10579A1D088DD6DF6_RuntimeMethod_var);
}
IL_0025:
{
String_t* L_5 = ___prefix1;
NullCheck(L_5);
int32_t L_6 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_5, /*hidden argument*/NULL);
if (L_6)
{
goto IL_002f;
}
}
{
return (bool)1;
}
IL_002f:
{
int32_t L_7 = ___options2;
if ((!(((uint32_t)L_7) == ((uint32_t)((int32_t)268435456)))))
{
goto IL_0040;
}
}
{
String_t* L_8 = ___source0;
String_t* L_9 = ___prefix1;
NullCheck(L_8);
bool L_10 = String_StartsWith_mEA750A0572C706249CDD826681741B7DD733381E(L_8, L_9, 5, /*hidden argument*/NULL);
return L_10;
}
IL_0040:
{
int32_t L_11 = ___options2;
if ((!(((uint32_t)L_11) == ((uint32_t)((int32_t)1073741824)))))
{
goto IL_0051;
}
}
{
String_t* L_12 = ___source0;
String_t* L_13 = ___prefix1;
NullCheck(L_12);
bool L_14 = String_StartsWith_mEA750A0572C706249CDD826681741B7DD733381E(L_12, L_13, 4, /*hidden argument*/NULL);
return L_14;
}
IL_0051:
{
int32_t L_15 = ___options2;
if (!((int32_t)((int32_t)L_15&(int32_t)((int32_t)-32))))
{
goto IL_006c;
}
}
{
String_t* L_16 = Environment_GetResourceString_m8DFF827596B5FD533D3FE56900FA095F7D674617(_stringLiteralD56ECCB13770E8300FEE31DF9CFA9B022470BE5A, /*hidden argument*/NULL);
ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_17 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var);
ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_17, L_16, _stringLiteralCF7DF948FC4905FED1A56776B9DFCCB86C46912A, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_17, CompareInfo_IsPrefix_mEF00D16D132729410D36C5F10579A1D088DD6DF6_RuntimeMethod_var);
}
IL_006c:
{
bool L_18 = CompareInfo_get_UseManagedCollation_m62E6F0EFBDE261B0AB5BDF80E8151E7BD6301F43(/*hidden argument*/NULL);
if (!L_18)
{
goto IL_0082;
}
}
{
SimpleCollator_t60F8CB5F37FA4A008E484C0BD0429E65E5904266 * L_19 = CompareInfo_GetCollator_mEB0C36DF59D8E9FD513E35D7587A3B9EF49337D7(__this, /*hidden argument*/NULL);
String_t* L_20 = ___source0;
String_t* L_21 = ___prefix1;
int32_t L_22 = ___options2;
NullCheck(L_19);
bool L_23 = SimpleCollator_IsPrefix_m3C264B704EB76964952AF0E136AFD323B7D22E3E(L_19, L_20, L_21, L_22, /*hidden argument*/NULL);
return L_23;
}
IL_0082:
{
String_t* L_24 = ___source0;
NullCheck(L_24);
int32_t L_25 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_24, /*hidden argument*/NULL);
String_t* L_26 = ___prefix1;
NullCheck(L_26);
int32_t L_27 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_26, /*hidden argument*/NULL);
if ((((int32_t)L_25) >= ((int32_t)L_27)))
{
goto IL_0092;
}
}
{
return (bool)0;
}
IL_0092:
{
String_t* L_28 = ___source0;
String_t* L_29 = ___prefix1;
NullCheck(L_29);
int32_t L_30 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_29, /*hidden argument*/NULL);
String_t* L_31 = ___prefix1;
String_t* L_32 = ___prefix1;
NullCheck(L_32);
int32_t L_33 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_32, /*hidden argument*/NULL);
int32_t L_34 = ___options2;
int32_t L_35 = VirtFuncInvoker7< int32_t, String_t*, int32_t, int32_t, String_t*, int32_t, int32_t, int32_t >::Invoke(8 /* System.Int32 System.Globalization.CompareInfo::Compare(System.String,System.Int32,System.Int32,System.String,System.Int32,System.Int32,System.Globalization.CompareOptions) */, __this, L_28, 0, L_30, L_31, 0, L_33, L_34);
return (bool)((((int32_t)L_35) == ((int32_t)0))? 1 : 0);
}
}
// System.Boolean System.Globalization.CompareInfo::IsSuffix(System.String,System.String,System.Globalization.CompareOptions)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CompareInfo_IsSuffix_m47F4E6558E4202AB5BB8CF8B3E052AC9AE936E63 (CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * __this, String_t* ___source0, String_t* ___suffix1, int32_t ___options2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CompareInfo_IsSuffix_m47F4E6558E4202AB5BB8CF8B3E052AC9AE936E63_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* G_B5_0 = NULL;
{
String_t* L_0 = ___source0;
if (!L_0)
{
goto IL_0006;
}
}
{
String_t* L_1 = ___suffix1;
if (L_1)
{
goto IL_0025;
}
}
IL_0006:
{
String_t* L_2 = ___source0;
if (!L_2)
{
goto IL_0010;
}
}
{
G_B5_0 = _stringLiteralEE77384131B17CE853EE959871A8222FC81E9CF5;
goto IL_0015;
}
IL_0010:
{
G_B5_0 = _stringLiteral66F9618FDA792CAB23AF2D7FFB50AB2D3E393DC5;
}
IL_0015:
{
String_t* L_3 = Environment_GetResourceString_m8DFF827596B5FD533D3FE56900FA095F7D674617(_stringLiteral6138241A3DE02B2D3DCE5A7D8521E6799652D9B9, /*hidden argument*/NULL);
ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_4 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mAD2F05A24C92A657CBCA8C43A9A373C53739A283(L_4, G_B5_0, L_3, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, CompareInfo_IsSuffix_m47F4E6558E4202AB5BB8CF8B3E052AC9AE936E63_RuntimeMethod_var);
}
IL_0025:
{
String_t* L_5 = ___suffix1;
NullCheck(L_5);
int32_t L_6 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_5, /*hidden argument*/NULL);
if (L_6)
{
goto IL_002f;
}
}
{
return (bool)1;
}
IL_002f:
{
int32_t L_7 = ___options2;
if ((!(((uint32_t)L_7) == ((uint32_t)((int32_t)268435456)))))
{
goto IL_0040;
}
}
{
String_t* L_8 = ___source0;
String_t* L_9 = ___suffix1;
NullCheck(L_8);
bool L_10 = String_EndsWith_mB6E4F554EB12AF5BB822050E738AB867AF5C9864(L_8, L_9, 5, /*hidden argument*/NULL);
return L_10;
}
IL_0040:
{
int32_t L_11 = ___options2;
if ((!(((uint32_t)L_11) == ((uint32_t)((int32_t)1073741824)))))
{
goto IL_0051;
}
}
{
String_t* L_12 = ___source0;
String_t* L_13 = ___suffix1;
NullCheck(L_12);
bool L_14 = String_EndsWith_mB6E4F554EB12AF5BB822050E738AB867AF5C9864(L_12, L_13, 4, /*hidden argument*/NULL);
return L_14;
}
IL_0051:
{
int32_t L_15 = ___options2;
if (!((int32_t)((int32_t)L_15&(int32_t)((int32_t)-32))))
{
goto IL_006c;
}
}
{
String_t* L_16 = Environment_GetResourceString_m8DFF827596B5FD533D3FE56900FA095F7D674617(_stringLiteralD56ECCB13770E8300FEE31DF9CFA9B022470BE5A, /*hidden argument*/NULL);
ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_17 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var);
ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_17, L_16, _stringLiteralCF7DF948FC4905FED1A56776B9DFCCB86C46912A, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_17, CompareInfo_IsSuffix_m47F4E6558E4202AB5BB8CF8B3E052AC9AE936E63_RuntimeMethod_var);
}
IL_006c:
{
bool L_18 = CompareInfo_get_UseManagedCollation_m62E6F0EFBDE261B0AB5BDF80E8151E7BD6301F43(/*hidden argument*/NULL);
if (!L_18)
{
goto IL_0082;
}
}
{
SimpleCollator_t60F8CB5F37FA4A008E484C0BD0429E65E5904266 * L_19 = CompareInfo_GetCollator_mEB0C36DF59D8E9FD513E35D7587A3B9EF49337D7(__this, /*hidden argument*/NULL);
String_t* L_20 = ___source0;
String_t* L_21 = ___suffix1;
int32_t L_22 = ___options2;
NullCheck(L_19);
bool L_23 = SimpleCollator_IsSuffix_m31E273F31D791A0A9DE2B2F99C49E3CAC8931F6F(L_19, L_20, L_21, L_22, /*hidden argument*/NULL);
return L_23;
}
IL_0082:
{
String_t* L_24 = ___source0;
NullCheck(L_24);
int32_t L_25 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_24, /*hidden argument*/NULL);
String_t* L_26 = ___suffix1;
NullCheck(L_26);
int32_t L_27 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_26, /*hidden argument*/NULL);
if ((((int32_t)L_25) >= ((int32_t)L_27)))
{
goto IL_0092;
}
}
{
return (bool)0;
}
IL_0092:
{
String_t* L_28 = ___source0;
String_t* L_29 = ___source0;
NullCheck(L_29);
int32_t L_30 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_29, /*hidden argument*/NULL);
String_t* L_31 = ___suffix1;
NullCheck(L_31);
int32_t L_32 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_31, /*hidden argument*/NULL);
String_t* L_33 = ___suffix1;
NullCheck(L_33);
int32_t L_34 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_33, /*hidden argument*/NULL);
String_t* L_35 = ___suffix1;
String_t* L_36 = ___suffix1;
NullCheck(L_36);
int32_t L_37 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_36, /*hidden argument*/NULL);
int32_t L_38 = ___options2;
int32_t L_39 = VirtFuncInvoker7< int32_t, String_t*, int32_t, int32_t, String_t*, int32_t, int32_t, int32_t >::Invoke(8 /* System.Int32 System.Globalization.CompareInfo::Compare(System.String,System.Int32,System.Int32,System.String,System.Int32,System.Int32,System.Globalization.CompareOptions) */, __this, L_28, ((int32_t)il2cpp_codegen_subtract((int32_t)L_30, (int32_t)L_32)), L_34, L_35, 0, L_37, L_38);
return (bool)((((int32_t)L_39) == ((int32_t)0))? 1 : 0);
}
}
// System.Int32 System.Globalization.CompareInfo::IndexOf(System.String,System.String,System.Int32,System.Int32,System.Globalization.CompareOptions)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CompareInfo_IndexOf_m812CCDE396A13602AA3A78E4E96AA7CC3FEA2FE1 (CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * __this, String_t* ___source0, String_t* ___value1, int32_t ___startIndex2, int32_t ___count3, int32_t ___options4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CompareInfo_IndexOf_m812CCDE396A13602AA3A78E4E96AA7CC3FEA2FE1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___source0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, _stringLiteral66F9618FDA792CAB23AF2D7FFB50AB2D3E393DC5, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, CompareInfo_IndexOf_m812CCDE396A13602AA3A78E4E96AA7CC3FEA2FE1_RuntimeMethod_var);
}
IL_000e:
{
String_t* L_2 = ___value1;
if (L_2)
{
goto IL_001c;
}
}
{
ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_3 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_3, _stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, CompareInfo_IndexOf_m812CCDE396A13602AA3A78E4E96AA7CC3FEA2FE1_RuntimeMethod_var);
}
IL_001c:
{
int32_t L_4 = ___startIndex2;
String_t* L_5 = ___source0;
NullCheck(L_5);
int32_t L_6 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_5, /*hidden argument*/NULL);
if ((((int32_t)L_4) <= ((int32_t)L_6)))
{
goto IL_003a;
}
}
{
String_t* L_7 = Environment_GetResourceString_m8DFF827596B5FD533D3FE56900FA095F7D674617(_stringLiteral569FEAE6AEE421BCD8D24F22865E84F808C2A1E4, /*hidden argument*/NULL);
ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_8 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_mE43AFC74F5F3932913C023A04B24905E093C5005(L_8, _stringLiteralE68FFE708FFE8FC1D5DA3BEDB8B81DE1CCC64C34, L_7, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, CompareInfo_IndexOf_m812CCDE396A13602AA3A78E4E96AA7CC3FEA2FE1_RuntimeMethod_var);
}
IL_003a:
{
String_t* L_9 = ___source0;
NullCheck(L_9);
int32_t L_10 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_9, /*hidden argument*/NULL);
if (L_10)
{
goto IL_004e;
}
}
{
String_t* L_11 = ___value1;
NullCheck(L_11);
int32_t L_12 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_11, /*hidden argument*/NULL);
if (L_12)
{
goto IL_004c;
}
}
{
return 0;
}
IL_004c:
{
return (-1);
}
IL_004e:
{
int32_t L_13 = ___startIndex2;
if ((((int32_t)L_13) >= ((int32_t)0)))
{
goto IL_0067;
}
}
{
String_t* L_14 = Environment_GetResourceString_m8DFF827596B5FD533D3FE56900FA095F7D674617(_stringLiteral569FEAE6AEE421BCD8D24F22865E84F808C2A1E4, /*hidden argument*/NULL);
ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_15 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_mE43AFC74F5F3932913C023A04B24905E093C5005(L_15, _stringLiteralE68FFE708FFE8FC1D5DA3BEDB8B81DE1CCC64C34, L_14, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, CompareInfo_IndexOf_m812CCDE396A13602AA3A78E4E96AA7CC3FEA2FE1_RuntimeMethod_var);
}
IL_0067:
{
int32_t L_16 = ___count3;
if ((((int32_t)L_16) < ((int32_t)0)))
{
goto IL_0078;
}
}
{
int32_t L_17 = ___startIndex2;
String_t* L_18 = ___source0;
NullCheck(L_18);
int32_t L_19 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_18, /*hidden argument*/NULL);
int32_t L_20 = ___count3;
if ((((int32_t)L_17) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)L_20)))))
{
goto IL_008d;
}
}
IL_0078:
{
String_t* L_21 = Environment_GetResourceString_m8DFF827596B5FD533D3FE56900FA095F7D674617(_stringLiteral00BA133FF3D84EAB4FB7DB5FB38F235C4E108ED9, /*hidden argument*/NULL);
ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_22 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_mE43AFC74F5F3932913C023A04B24905E093C5005(L_22, _stringLiteral07624473F417C06C74D59C64840A1532FCE2C626, L_21, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_22, CompareInfo_IndexOf_m812CCDE396A13602AA3A78E4E96AA7CC3FEA2FE1_RuntimeMethod_var);
}
IL_008d:
{
int32_t L_23 = ___options4;
if ((!(((uint32_t)L_23) == ((uint32_t)((int32_t)268435456)))))
{
goto IL_00a2;
}
}
{
String_t* L_24 = ___source0;
String_t* L_25 = ___value1;
int32_t L_26 = ___startIndex2;
int32_t L_27 = ___count3;
NullCheck(L_24);
int32_t L_28 = String_IndexOf_m32C80853F9895B0E498AC68FE8BEEF36B058E50E(L_24, L_25, L_26, L_27, 5, /*hidden argument*/NULL);
return L_28;
}
IL_00a2:
{
int32_t L_29 = ___options4;
if (!((int32_t)((int32_t)L_29&(int32_t)((int32_t)-32))))
{
goto IL_00c7;
}
}
{
int32_t L_30 = ___options4;
if ((((int32_t)L_30) == ((int32_t)((int32_t)1073741824))))
{
goto IL_00c7;
}
}
{
String_t* L_31 = Environment_GetResourceString_m8DFF827596B5FD533D3FE56900FA095F7D674617(_stringLiteralD56ECCB13770E8300FEE31DF9CFA9B022470BE5A, /*hidden argument*/NULL);
ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_32 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var);
ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_32, L_31, _stringLiteralCF7DF948FC4905FED1A56776B9DFCCB86C46912A, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_32, CompareInfo_IndexOf_m812CCDE396A13602AA3A78E4E96AA7CC3FEA2FE1_RuntimeMethod_var);
}
IL_00c7:
{
String_t* L_33 = ___source0;
int32_t L_34 = ___startIndex2;
int32_t L_35 = ___count3;
String_t* L_36 = ___value1;
int32_t L_37 = ___options4;
int32_t L_38 = CompareInfo_internal_index_switch_m0BCA8F9380213FDD09F89F118BF4E13EC38F47D9(__this, L_33, L_34, L_35, L_36, L_37, (bool)1, /*hidden argument*/NULL);
return L_38;
}
}
// System.Int32 System.Globalization.CompareInfo::LastIndexOf(System.String,System.String,System.Int32,System.Int32,System.Globalization.CompareOptions)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CompareInfo_LastIndexOf_m86E9E54A32DE8AAE01D846DC70CD3CE15A0C40AC (CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * __this, String_t* ___source0, String_t* ___value1, int32_t ___startIndex2, int32_t ___count3, int32_t ___options4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CompareInfo_LastIndexOf_m86E9E54A32DE8AAE01D846DC70CD3CE15A0C40AC_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___source0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, _stringLiteral66F9618FDA792CAB23AF2D7FFB50AB2D3E393DC5, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, CompareInfo_LastIndexOf_m86E9E54A32DE8AAE01D846DC70CD3CE15A0C40AC_RuntimeMethod_var);
}
IL_000e:
{
String_t* L_2 = ___value1;
if (L_2)
{
goto IL_001c;
}
}
{
ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_3 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_3, _stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, CompareInfo_LastIndexOf_m86E9E54A32DE8AAE01D846DC70CD3CE15A0C40AC_RuntimeMethod_var);
}
IL_001c:
{
int32_t L_4 = ___options4;
if (!((int32_t)((int32_t)L_4&(int32_t)((int32_t)-32))))
{
goto IL_004a;
}
}
{
int32_t L_5 = ___options4;
if ((((int32_t)L_5) == ((int32_t)((int32_t)1073741824))))
{
goto IL_004a;
}
}
{
int32_t L_6 = ___options4;
if ((((int32_t)L_6) == ((int32_t)((int32_t)268435456))))
{
goto IL_004a;
}
}
{
String_t* L_7 = Environment_GetResourceString_m8DFF827596B5FD533D3FE56900FA095F7D674617(_stringLiteralD56ECCB13770E8300FEE31DF9CFA9B022470BE5A, /*hidden argument*/NULL);
ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_8 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var);
ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_8, L_7, _stringLiteralCF7DF948FC4905FED1A56776B9DFCCB86C46912A, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, CompareInfo_LastIndexOf_m86E9E54A32DE8AAE01D846DC70CD3CE15A0C40AC_RuntimeMethod_var);
}
IL_004a:
{
String_t* L_9 = ___source0;
NullCheck(L_9);
int32_t L_10 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_9, /*hidden argument*/NULL);
if (L_10)
{
goto IL_0065;
}
}
{
int32_t L_11 = ___startIndex2;
if ((((int32_t)L_11) == ((int32_t)(-1))))
{
goto IL_0059;
}
}
{
int32_t L_12 = ___startIndex2;
if (L_12)
{
goto IL_0065;
}
}
IL_0059:
{
String_t* L_13 = ___value1;
NullCheck(L_13);
int32_t L_14 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_13, /*hidden argument*/NULL);
if (!L_14)
{
goto IL_0063;
}
}
{
return (-1);
}
IL_0063:
{
return 0;
}
IL_0065:
{
int32_t L_15 = ___startIndex2;
if ((((int32_t)L_15) < ((int32_t)0)))
{
goto IL_0072;
}
}
{
int32_t L_16 = ___startIndex2;
String_t* L_17 = ___source0;
NullCheck(L_17);
int32_t L_18 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_17, /*hidden argument*/NULL);
if ((((int32_t)L_16) <= ((int32_t)L_18)))
{
goto IL_0087;
}
}
IL_0072:
{
String_t* L_19 = Environment_GetResourceString_m8DFF827596B5FD533D3FE56900FA095F7D674617(_stringLiteral569FEAE6AEE421BCD8D24F22865E84F808C2A1E4, /*hidden argument*/NULL);
ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_20 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_mE43AFC74F5F3932913C023A04B24905E093C5005(L_20, _stringLiteralE68FFE708FFE8FC1D5DA3BEDB8B81DE1CCC64C34, L_19, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_20, CompareInfo_LastIndexOf_m86E9E54A32DE8AAE01D846DC70CD3CE15A0C40AC_RuntimeMethod_var);
}
IL_0087:
{
int32_t L_21 = ___startIndex2;
String_t* L_22 = ___source0;
NullCheck(L_22);
int32_t L_23 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_22, /*hidden argument*/NULL);
if ((!(((uint32_t)L_21) == ((uint32_t)L_23))))
{
goto IL_00b8;
}
}
{
int32_t L_24 = ___startIndex2;
___startIndex2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_24, (int32_t)1));
int32_t L_25 = ___count3;
if ((((int32_t)L_25) <= ((int32_t)0)))
{
goto IL_00a0;
}
}
{
int32_t L_26 = ___count3;
___count3 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_26, (int32_t)1));
}
IL_00a0:
{
String_t* L_27 = ___value1;
NullCheck(L_27);
int32_t L_28 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_27, /*hidden argument*/NULL);
if (L_28)
{
goto IL_00b8;
}
}
{
int32_t L_29 = ___count3;
if ((((int32_t)L_29) < ((int32_t)0)))
{
goto IL_00b8;
}
}
{
int32_t L_30 = ___startIndex2;
int32_t L_31 = ___count3;
if ((((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_30, (int32_t)L_31)), (int32_t)1))) < ((int32_t)0)))
{
goto IL_00b8;
}
}
{
int32_t L_32 = ___startIndex2;
return L_32;
}
IL_00b8:
{
int32_t L_33 = ___count3;
if ((((int32_t)L_33) < ((int32_t)0)))
{
goto IL_00c6;
}
}
{
int32_t L_34 = ___startIndex2;
int32_t L_35 = ___count3;
if ((((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_34, (int32_t)L_35)), (int32_t)1))) >= ((int32_t)0)))
{
goto IL_00db;
}
}
IL_00c6:
{
String_t* L_36 = Environment_GetResourceString_m8DFF827596B5FD533D3FE56900FA095F7D674617(_stringLiteral00BA133FF3D84EAB4FB7DB5FB38F235C4E108ED9, /*hidden argument*/NULL);
ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_37 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_mE43AFC74F5F3932913C023A04B24905E093C5005(L_37, _stringLiteral07624473F417C06C74D59C64840A1532FCE2C626, L_36, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_37, CompareInfo_LastIndexOf_m86E9E54A32DE8AAE01D846DC70CD3CE15A0C40AC_RuntimeMethod_var);
}
IL_00db:
{
int32_t L_38 = ___options4;
if ((!(((uint32_t)L_38) == ((uint32_t)((int32_t)268435456)))))
{
goto IL_00f0;
}
}
{
String_t* L_39 = ___source0;
String_t* L_40 = ___value1;
int32_t L_41 = ___startIndex2;
int32_t L_42 = ___count3;
NullCheck(L_39);
int32_t L_43 = String_LastIndexOf_mEF87632504FB227E57DFC91BA3A0EE0E651E0EAE(L_39, L_40, L_41, L_42, 5, /*hidden argument*/NULL);
return L_43;
}
IL_00f0:
{
String_t* L_44 = ___source0;
int32_t L_45 = ___startIndex2;
int32_t L_46 = ___count3;
String_t* L_47 = ___value1;
int32_t L_48 = ___options4;
int32_t L_49 = CompareInfo_internal_index_switch_m0BCA8F9380213FDD09F89F118BF4E13EC38F47D9(__this, L_44, L_45, L_46, L_47, L_48, (bool)0, /*hidden argument*/NULL);
return L_49;
}
}
// System.Globalization.SortKey System.Globalization.CompareInfo::GetSortKey(System.String,System.Globalization.CompareOptions)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SortKey_tBBD5A739AC7187C1514CBA47698C1D5E36877F52 * CompareInfo_GetSortKey_mCD3918F6037FC79B9005A833BB4C7C5AD4CB0A3A (CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * __this, String_t* ___source0, int32_t ___options1, const RuntimeMethod* method)
{
{
String_t* L_0 = ___source0;
int32_t L_1 = ___options1;
SortKey_tBBD5A739AC7187C1514CBA47698C1D5E36877F52 * L_2 = CompareInfo_CreateSortKey_m6DA8DF9FFA44EC08E8E51A0F83C147D657E2801F(__this, L_0, L_1, /*hidden argument*/NULL);
return L_2;
}
}
// System.Globalization.SortKey System.Globalization.CompareInfo::CreateSortKey(System.String,System.Globalization.CompareOptions)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SortKey_tBBD5A739AC7187C1514CBA47698C1D5E36877F52 * CompareInfo_CreateSortKey_m6DA8DF9FFA44EC08E8E51A0F83C147D657E2801F (CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * __this, String_t* ___source0, int32_t ___options1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CompareInfo_CreateSortKey_m6DA8DF9FFA44EC08E8E51A0F83C147D657E2801F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___source0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, _stringLiteral66F9618FDA792CAB23AF2D7FFB50AB2D3E393DC5, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, CompareInfo_CreateSortKey_m6DA8DF9FFA44EC08E8E51A0F83C147D657E2801F_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___options1;
if (!((int32_t)((int32_t)L_2&(int32_t)((int32_t)-536870944))))
{
goto IL_002c;
}
}
{
String_t* L_3 = Environment_GetResourceString_m8DFF827596B5FD533D3FE56900FA095F7D674617(_stringLiteralD56ECCB13770E8300FEE31DF9CFA9B022470BE5A, /*hidden argument*/NULL);
ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_4 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var);
ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_4, L_3, _stringLiteralCF7DF948FC4905FED1A56776B9DFCCB86C46912A, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, CompareInfo_CreateSortKey_m6DA8DF9FFA44EC08E8E51A0F83C147D657E2801F_RuntimeMethod_var);
}
IL_002c:
{
String_t* L_5 = ___source0;
bool L_6 = String_IsNullOrEmpty_m9AFBB5335B441B94E884B8A9D4A27AD60E3D7F7C(L_5, /*hidden argument*/NULL);
if (!L_6)
{
goto IL_003b;
}
}
{
___source0 = _stringLiteral1489F923C4DCA729178B3E3233458550D8DDDF29;
}
IL_003b:
{
String_t* L_7 = ___source0;
int32_t L_8 = ___options1;
SortKey_tBBD5A739AC7187C1514CBA47698C1D5E36877F52 * L_9 = CompareInfo_CreateSortKeyCore_m4219346C4396B3F24C697CBF7B352B05C6543440(__this, L_7, L_8, /*hidden argument*/NULL);
return L_9;
}
}
// System.Boolean System.Globalization.CompareInfo::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CompareInfo_Equals_m7245B7EF15D9021AA4D9F572E430BF75C479FDD5 (CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CompareInfo_Equals_m7245B7EF15D9021AA4D9F572E430BF75C479FDD5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * V_0 = NULL;
{
RuntimeObject * L_0 = ___value0;
V_0 = ((CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 *)IsInstClass((RuntimeObject*)L_0, CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9_il2cpp_TypeInfo_var));
CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * L_1 = V_0;
if (!L_1)
{
goto IL_001c;
}
}
{
String_t* L_2 = VirtFuncInvoker0< String_t* >::Invoke(5 /* System.String System.Globalization.CompareInfo::get_Name() */, __this);
CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * L_3 = V_0;
NullCheck(L_3);
String_t* L_4 = VirtFuncInvoker0< String_t* >::Invoke(5 /* System.String System.Globalization.CompareInfo::get_Name() */, L_3);
bool L_5 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_2, L_4, /*hidden argument*/NULL);
return L_5;
}
IL_001c:
{
return (bool)0;
}
}
// System.Int32 System.Globalization.CompareInfo::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CompareInfo_GetHashCode_m9C11C15F431D182BCDCC3D76FB7CB22AFC04029D (CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = VirtFuncInvoker0< String_t* >::Invoke(5 /* System.String System.Globalization.CompareInfo::get_Name() */, __this);
NullCheck(L_0);
int32_t L_1 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, L_0);
return L_1;
}
}
// System.Int32 System.Globalization.CompareInfo::GetHashCodeOfString(System.String,System.Globalization.CompareOptions)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CompareInfo_GetHashCodeOfString_m4A90025D7EC9CB1400C3367AC726131C4F193039 (CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * __this, String_t* ___source0, int32_t ___options1, const RuntimeMethod* method)
{
{
String_t* L_0 = ___source0;
int32_t L_1 = ___options1;
int32_t L_2 = CompareInfo_GetHashCodeOfString_m12227E55AA29A314AA97AFE8F0DDBAF45B1018C9(__this, L_0, L_1, (bool)0, (((int64_t)((int64_t)0))), /*hidden argument*/NULL);
return L_2;
}
}
// System.Int32 System.Globalization.CompareInfo::GetHashCodeOfString(System.String,System.Globalization.CompareOptions,System.Boolean,System.Int64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CompareInfo_GetHashCodeOfString_m12227E55AA29A314AA97AFE8F0DDBAF45B1018C9 (CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * __this, String_t* ___source0, int32_t ___options1, bool ___forceRandomizedHashing2, int64_t ___additionalEntropy3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CompareInfo_GetHashCodeOfString_m12227E55AA29A314AA97AFE8F0DDBAF45B1018C9_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___source0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, _stringLiteral66F9618FDA792CAB23AF2D7FFB50AB2D3E393DC5, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, CompareInfo_GetHashCodeOfString_m12227E55AA29A314AA97AFE8F0DDBAF45B1018C9_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___options1;
if (!((int32_t)((int32_t)L_2&(int32_t)((int32_t)-32))))
{
goto IL_0029;
}
}
{
String_t* L_3 = Environment_GetResourceString_m8DFF827596B5FD533D3FE56900FA095F7D674617(_stringLiteralD56ECCB13770E8300FEE31DF9CFA9B022470BE5A, /*hidden argument*/NULL);
ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_4 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var);
ArgumentException__ctor_m71044C2110E357B71A1C30D2561C3F861AF1DC0D(L_4, L_3, _stringLiteralCF7DF948FC4905FED1A56776B9DFCCB86C46912A, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, CompareInfo_GetHashCodeOfString_m12227E55AA29A314AA97AFE8F0DDBAF45B1018C9_RuntimeMethod_var);
}
IL_0029:
{
String_t* L_5 = ___source0;
NullCheck(L_5);
int32_t L_6 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_5, /*hidden argument*/NULL);
if (L_6)
{
goto IL_0033;
}
}
{
return 0;
}
IL_0033:
{
String_t* L_7 = ___source0;
int32_t L_8 = ___options1;
SortKey_tBBD5A739AC7187C1514CBA47698C1D5E36877F52 * L_9 = VirtFuncInvoker2< SortKey_tBBD5A739AC7187C1514CBA47698C1D5E36877F52 *, String_t*, int32_t >::Invoke(13 /* System.Globalization.SortKey System.Globalization.CompareInfo::GetSortKey(System.String,System.Globalization.CompareOptions) */, __this, L_7, L_8);
NullCheck(L_9);
int32_t L_10 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, L_9);
return L_10;
}
}
// System.String System.Globalization.CompareInfo::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* CompareInfo_ToString_m71EE5EA9795A130517F15293521DF9225EA3A9E0 (CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CompareInfo_ToString_m71EE5EA9795A130517F15293521DF9225EA3A9E0_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = VirtFuncInvoker0< String_t* >::Invoke(5 /* System.String System.Globalization.CompareInfo::get_Name() */, __this);
String_t* L_1 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(_stringLiteralF527E78C10348E7A1F38B9B1781B8B75857692FD, L_0, /*hidden argument*/NULL);
return L_1;
}
}
// System.Boolean System.Globalization.CompareInfo::get_UseManagedCollation()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CompareInfo_get_UseManagedCollation_m62E6F0EFBDE261B0AB5BDF80E8151E7BD6301F43 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CompareInfo_get_UseManagedCollation_m62E6F0EFBDE261B0AB5BDF80E8151E7BD6301F43_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t G_B4_0 = 0;
{
bool L_0 = ((CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9_StaticFields*)il2cpp_codegen_static_fields_for(CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9_il2cpp_TypeInfo_var))->get_managedCollationChecked_24();
if (L_0)
{
goto IL_0030;
}
}
{
String_t* L_1 = Environment_internalGetEnvironmentVariable_m948971DA541D94545FF9A4559B3CCEB43D45955B(_stringLiteral48F272DF86FC10E12E1FAA1FC1B9F90BB73A896F, /*hidden argument*/NULL);
bool L_2 = String_op_Inequality_mDDA2DDED3E7EF042987EB7180EE3E88105F0AAE2(L_1, _stringLiteralED7D39EDF70E08FE57B2522D102BF72B9E5D5331, /*hidden argument*/NULL);
if (!L_2)
{
goto IL_0024;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(MSCompatUnicodeTable_t46D5D29A0AF117D0BEE1CD7CBAEAFB2DA2B640E5_il2cpp_TypeInfo_var);
bool L_3 = MSCompatUnicodeTable_get_IsReady_m48C1BE8069E2D74EE21BBF4D4F5A0B31B4644436_inline(/*hidden argument*/NULL);
G_B4_0 = ((int32_t)(L_3));
goto IL_0025;
}
IL_0024:
{
G_B4_0 = 0;
}
IL_0025:
{
((CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9_StaticFields*)il2cpp_codegen_static_fields_for(CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9_il2cpp_TypeInfo_var))->set_managedCollation_23((bool)G_B4_0);
((CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9_StaticFields*)il2cpp_codegen_static_fields_for(CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9_il2cpp_TypeInfo_var))->set_managedCollationChecked_24((bool)1);
}
IL_0030:
{
bool L_4 = ((CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9_StaticFields*)il2cpp_codegen_static_fields_for(CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9_il2cpp_TypeInfo_var))->get_managedCollation_23();
return L_4;
}
}
// Mono.Globalization.Unicode.SimpleCollator System.Globalization.CompareInfo::GetCollator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SimpleCollator_t60F8CB5F37FA4A008E484C0BD0429E65E5904266 * CompareInfo_GetCollator_mEB0C36DF59D8E9FD513E35D7587A3B9EF49337D7 (CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CompareInfo_GetCollator_mEB0C36DF59D8E9FD513E35D7587A3B9EF49337D7_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Dictionary_2_t33B68634E5ACFD2A5AE4981521BFC06805BE18BB * V_0 = NULL;
bool V_1 = false;
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);
{
SimpleCollator_t60F8CB5F37FA4A008E484C0BD0429E65E5904266 * L_0 = __this->get_collator_21();
if (!L_0)
{
goto IL_000f;
}
}
{
SimpleCollator_t60F8CB5F37FA4A008E484C0BD0429E65E5904266 * L_1 = __this->get_collator_21();
return L_1;
}
IL_000f:
{
Dictionary_2_t33B68634E5ACFD2A5AE4981521BFC06805BE18BB * L_2 = ((CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9_StaticFields*)il2cpp_codegen_static_fields_for(CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9_il2cpp_TypeInfo_var))->get_collators_22();
if (L_2)
{
goto IL_002c;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6_il2cpp_TypeInfo_var);
StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 * L_3 = StringComparer_get_Ordinal_mF3B6370BEBD77351DB5218C867DCD669C47B8812_inline(/*hidden argument*/NULL);
Dictionary_2_t33B68634E5ACFD2A5AE4981521BFC06805BE18BB * L_4 = (Dictionary_2_t33B68634E5ACFD2A5AE4981521BFC06805BE18BB *)il2cpp_codegen_object_new(Dictionary_2_t33B68634E5ACFD2A5AE4981521BFC06805BE18BB_il2cpp_TypeInfo_var);
Dictionary_2__ctor_mD439B314849963C9E927D448D7D7843F2618D824(L_4, L_3, /*hidden argument*/Dictionary_2__ctor_mD439B314849963C9E927D448D7D7843F2618D824_RuntimeMethod_var);
InterlockedCompareExchangeImpl<Dictionary_2_t33B68634E5ACFD2A5AE4981521BFC06805BE18BB *>((Dictionary_2_t33B68634E5ACFD2A5AE4981521BFC06805BE18BB **)(((CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9_StaticFields*)il2cpp_codegen_static_fields_for(CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9_il2cpp_TypeInfo_var))->get_address_of_collators_22()), L_4, (Dictionary_2_t33B68634E5ACFD2A5AE4981521BFC06805BE18BB *)NULL);
}
IL_002c:
{
Dictionary_2_t33B68634E5ACFD2A5AE4981521BFC06805BE18BB * L_5 = ((CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9_StaticFields*)il2cpp_codegen_static_fields_for(CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9_il2cpp_TypeInfo_var))->get_collators_22();
V_0 = L_5;
V_1 = (bool)0;
}
IL_0034:
try
{ // begin try (depth: 1)
{
Dictionary_2_t33B68634E5ACFD2A5AE4981521BFC06805BE18BB * L_6 = V_0;
Monitor_Enter_mBEB6CC84184B46F26375EC3FC8921D16E48EA4C4(L_6, (bool*)(&V_1), /*hidden argument*/NULL);
Dictionary_2_t33B68634E5ACFD2A5AE4981521BFC06805BE18BB * L_7 = ((CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9_StaticFields*)il2cpp_codegen_static_fields_for(CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9_il2cpp_TypeInfo_var))->get_collators_22();
String_t* L_8 = __this->get_m_sortName_4();
SimpleCollator_t60F8CB5F37FA4A008E484C0BD0429E65E5904266 ** L_9 = __this->get_address_of_collator_21();
NullCheck(L_7);
bool L_10 = Dictionary_2_TryGetValue_m6ED0FA8BC514AC4E9A47B85C9BB3780C621B6A09(L_7, L_8, (SimpleCollator_t60F8CB5F37FA4A008E484C0BD0429E65E5904266 **)L_9, /*hidden argument*/Dictionary_2_TryGetValue_m6ED0FA8BC514AC4E9A47B85C9BB3780C621B6A09_RuntimeMethod_var);
if (L_10)
{
goto IL_0080;
}
}
IL_0054:
{
String_t* L_11 = __this->get_m_name_3();
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var);
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_12 = CultureInfo_GetCultureInfo_m757F4A8A690B1CDA1A498EBD2ED031B7A76546F3(L_11, /*hidden argument*/NULL);
SimpleCollator_t60F8CB5F37FA4A008E484C0BD0429E65E5904266 * L_13 = (SimpleCollator_t60F8CB5F37FA4A008E484C0BD0429E65E5904266 *)il2cpp_codegen_object_new(SimpleCollator_t60F8CB5F37FA4A008E484C0BD0429E65E5904266_il2cpp_TypeInfo_var);
SimpleCollator__ctor_m8B6EB6C1918971E2B29E4B2E646C2F28C01D3B97(L_13, L_12, /*hidden argument*/NULL);
__this->set_collator_21(L_13);
Dictionary_2_t33B68634E5ACFD2A5AE4981521BFC06805BE18BB * L_14 = ((CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9_StaticFields*)il2cpp_codegen_static_fields_for(CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9_il2cpp_TypeInfo_var))->get_collators_22();
String_t* L_15 = __this->get_m_sortName_4();
SimpleCollator_t60F8CB5F37FA4A008E484C0BD0429E65E5904266 * L_16 = __this->get_collator_21();
NullCheck(L_14);
Dictionary_2_set_Item_mFCCACB1295F7C78EECE213B398675057231256A2(L_14, L_15, L_16, /*hidden argument*/Dictionary_2_set_Item_mFCCACB1295F7C78EECE213B398675057231256A2_RuntimeMethod_var);
}
IL_0080:
{
IL2CPP_LEAVE(0x8C, FINALLY_0082);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0082;
}
FINALLY_0082:
{ // begin finally (depth: 1)
{
bool L_17 = V_1;
if (!L_17)
{
goto IL_008b;
}
}
IL_0085:
{
Dictionary_2_t33B68634E5ACFD2A5AE4981521BFC06805BE18BB * L_18 = V_0;
Monitor_Exit_mA776B403DA88AC77CDEEF67AB9F0D0E77ABD254A(L_18, /*hidden argument*/NULL);
}
IL_008b:
{
IL2CPP_END_FINALLY(130)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(130)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
IL2CPP_JUMP_TBL(0x8C, IL_008c)
}
IL_008c:
{
SimpleCollator_t60F8CB5F37FA4A008E484C0BD0429E65E5904266 * L_19 = __this->get_collator_21();
return L_19;
}
}
// System.Globalization.SortKey System.Globalization.CompareInfo::CreateSortKeyCore(System.String,System.Globalization.CompareOptions)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SortKey_tBBD5A739AC7187C1514CBA47698C1D5E36877F52 * CompareInfo_CreateSortKeyCore_m4219346C4396B3F24C697CBF7B352B05C6543440 (CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * __this, String_t* ___source0, int32_t ___options1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CompareInfo_CreateSortKeyCore_m4219346C4396B3F24C697CBF7B352B05C6543440_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
SortKey_tBBD5A739AC7187C1514CBA47698C1D5E36877F52 * V_0 = NULL;
{
bool L_0 = CompareInfo_get_UseManagedCollation_m62E6F0EFBDE261B0AB5BDF80E8151E7BD6301F43(/*hidden argument*/NULL);
if (!L_0)
{
goto IL_0015;
}
}
{
SimpleCollator_t60F8CB5F37FA4A008E484C0BD0429E65E5904266 * L_1 = CompareInfo_GetCollator_mEB0C36DF59D8E9FD513E35D7587A3B9EF49337D7(__this, /*hidden argument*/NULL);
String_t* L_2 = ___source0;
int32_t L_3 = ___options1;
NullCheck(L_1);
SortKey_tBBD5A739AC7187C1514CBA47698C1D5E36877F52 * L_4 = SimpleCollator_GetSortKey_mF1EDDE621E0E9D44ABD2E6676F2F6C6E2C5941F9(L_1, L_2, L_3, /*hidden argument*/NULL);
return L_4;
}
IL_0015:
{
int32_t L_5 = __this->get_culture_6();
String_t* L_6 = ___source0;
int32_t L_7 = ___options1;
SortKey_tBBD5A739AC7187C1514CBA47698C1D5E36877F52 * L_8 = (SortKey_tBBD5A739AC7187C1514CBA47698C1D5E36877F52 *)il2cpp_codegen_object_new(SortKey_tBBD5A739AC7187C1514CBA47698C1D5E36877F52_il2cpp_TypeInfo_var);
SortKey__ctor_m147020EDFF83890588402A0E7FC39930D5FE6FAA(L_8, L_5, L_6, L_7, /*hidden argument*/NULL);
V_0 = L_8;
SortKey_tBBD5A739AC7187C1514CBA47698C1D5E36877F52 * L_9 = V_0;
String_t* L_10 = ___source0;
int32_t L_11 = ___options1;
CompareInfo_assign_sortkey_mEB55CB232EAED47ADB2F831640FE134F3BBAF5E5(__this, L_9, L_10, L_11, /*hidden argument*/NULL);
SortKey_tBBD5A739AC7187C1514CBA47698C1D5E36877F52 * L_12 = V_0;
return L_12;
}
}
// System.Int32 System.Globalization.CompareInfo::internal_index_switch(System.String,System.Int32,System.Int32,System.String,System.Globalization.CompareOptions,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CompareInfo_internal_index_switch_m0BCA8F9380213FDD09F89F118BF4E13EC38F47D9 (CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * __this, String_t* ___s10, int32_t ___sindex1, int32_t ___count2, String_t* ___s23, int32_t ___opt4, bool ___first5, const RuntimeMethod* method)
{
{
int32_t L_0 = ___opt4;
bool L_1 = ___first5;
if (!((int32_t)((int32_t)((((int32_t)L_0) == ((int32_t)((int32_t)1073741824)))? 1 : 0)&(int32_t)L_1)))
{
goto IL_0019;
}
}
{
String_t* L_2 = ___s10;
String_t* L_3 = ___s23;
int32_t L_4 = ___sindex1;
int32_t L_5 = ___count2;
NullCheck(L_2);
int32_t L_6 = String_IndexOfUnchecked_m594D9BC1820305912EA18D15E8E5CD96754BDDD1(L_2, L_3, L_4, L_5, /*hidden argument*/NULL);
return L_6;
}
IL_0019:
{
bool L_7 = CompareInfo_get_UseManagedCollation_m62E6F0EFBDE261B0AB5BDF80E8151E7BD6301F43(/*hidden argument*/NULL);
if (L_7)
{
goto IL_0030;
}
}
{
String_t* L_8 = ___s10;
int32_t L_9 = ___sindex1;
int32_t L_10 = ___count2;
String_t* L_11 = ___s23;
int32_t L_12 = ___opt4;
bool L_13 = ___first5;
int32_t L_14 = CompareInfo_internal_index_mC10479D6C207BF2DF92A7059A78879748F118308(__this, L_8, L_9, L_10, L_11, L_12, L_13, /*hidden argument*/NULL);
return L_14;
}
IL_0030:
{
String_t* L_15 = ___s10;
int32_t L_16 = ___sindex1;
int32_t L_17 = ___count2;
String_t* L_18 = ___s23;
int32_t L_19 = ___opt4;
bool L_20 = ___first5;
int32_t L_21 = CompareInfo_internal_index_managed_m366249822AE993911C2BF8EF3995601FF1438192(__this, L_15, L_16, L_17, L_18, L_19, L_20, /*hidden argument*/NULL);
return L_21;
}
}
// System.Int32 System.Globalization.CompareInfo::internal_compare_switch(System.String,System.Int32,System.Int32,System.String,System.Int32,System.Int32,System.Globalization.CompareOptions)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CompareInfo_internal_compare_switch_m1FEAE9C0E2860A333FC6FC8C2E3D3B9BE6F24847 (CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * __this, String_t* ___str10, int32_t ___offset11, int32_t ___length12, String_t* ___str23, int32_t ___offset24, int32_t ___length25, int32_t ___options6, const RuntimeMethod* method)
{
{
bool L_0 = CompareInfo_get_UseManagedCollation_m62E6F0EFBDE261B0AB5BDF80E8151E7BD6301F43(/*hidden argument*/NULL);
if (L_0)
{
goto IL_0019;
}
}
{
String_t* L_1 = ___str10;
int32_t L_2 = ___offset11;
int32_t L_3 = ___length12;
String_t* L_4 = ___str23;
int32_t L_5 = ___offset24;
int32_t L_6 = ___length25;
int32_t L_7 = ___options6;
int32_t L_8 = CompareInfo_internal_compare_mFC7A4946F4276037CC2D0161BE990F9575E982ED(__this, L_1, L_2, L_3, L_4, L_5, L_6, L_7, /*hidden argument*/NULL);
return L_8;
}
IL_0019:
{
String_t* L_9 = ___str10;
int32_t L_10 = ___offset11;
int32_t L_11 = ___length12;
String_t* L_12 = ___str23;
int32_t L_13 = ___offset24;
int32_t L_14 = ___length25;
int32_t L_15 = ___options6;
int32_t L_16 = CompareInfo_internal_compare_managed_m28DE5E172930D9B4C48E33F12BFE66936457D6AC(__this, L_9, L_10, L_11, L_12, L_13, L_14, L_15, /*hidden argument*/NULL);
return L_16;
}
}
// System.Int32 System.Globalization.CompareInfo::internal_compare_managed(System.String,System.Int32,System.Int32,System.String,System.Int32,System.Int32,System.Globalization.CompareOptions)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CompareInfo_internal_compare_managed_m28DE5E172930D9B4C48E33F12BFE66936457D6AC (CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * __this, String_t* ___str10, int32_t ___offset11, int32_t ___length12, String_t* ___str23, int32_t ___offset24, int32_t ___length25, int32_t ___options6, const RuntimeMethod* method)
{
{
SimpleCollator_t60F8CB5F37FA4A008E484C0BD0429E65E5904266 * L_0 = CompareInfo_GetCollator_mEB0C36DF59D8E9FD513E35D7587A3B9EF49337D7(__this, /*hidden argument*/NULL);
String_t* L_1 = ___str10;
int32_t L_2 = ___offset11;
int32_t L_3 = ___length12;
String_t* L_4 = ___str23;
int32_t L_5 = ___offset24;
int32_t L_6 = ___length25;
int32_t L_7 = ___options6;
NullCheck(L_0);
int32_t L_8 = SimpleCollator_Compare_m43FC5F17895E9FF32FD69B0325ACEF7D36FC5EF7(L_0, L_1, L_2, L_3, L_4, L_5, L_6, L_7, /*hidden argument*/NULL);
return L_8;
}
}
// System.Int32 System.Globalization.CompareInfo::internal_index_managed(System.String,System.Int32,System.Int32,System.String,System.Globalization.CompareOptions,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CompareInfo_internal_index_managed_m366249822AE993911C2BF8EF3995601FF1438192 (CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * __this, String_t* ___s10, int32_t ___sindex1, int32_t ___count2, String_t* ___s23, int32_t ___opt4, bool ___first5, const RuntimeMethod* method)
{
{
bool L_0 = ___first5;
if (L_0)
{
goto IL_0017;
}
}
{
SimpleCollator_t60F8CB5F37FA4A008E484C0BD0429E65E5904266 * L_1 = CompareInfo_GetCollator_mEB0C36DF59D8E9FD513E35D7587A3B9EF49337D7(__this, /*hidden argument*/NULL);
String_t* L_2 = ___s10;
String_t* L_3 = ___s23;
int32_t L_4 = ___sindex1;
int32_t L_5 = ___count2;
int32_t L_6 = ___opt4;
NullCheck(L_1);
int32_t L_7 = SimpleCollator_LastIndexOf_m8826D7780C340A55F7DBE7B6C964BC17752931CA(L_1, L_2, L_3, L_4, L_5, L_6, /*hidden argument*/NULL);
return L_7;
}
IL_0017:
{
SimpleCollator_t60F8CB5F37FA4A008E484C0BD0429E65E5904266 * L_8 = CompareInfo_GetCollator_mEB0C36DF59D8E9FD513E35D7587A3B9EF49337D7(__this, /*hidden argument*/NULL);
String_t* L_9 = ___s10;
String_t* L_10 = ___s23;
int32_t L_11 = ___sindex1;
int32_t L_12 = ___count2;
int32_t L_13 = ___opt4;
NullCheck(L_8);
int32_t L_14 = SimpleCollator_IndexOf_m920870D977A259C53CA5BE729EAF85BAA2082C87(L_8, L_9, L_10, L_11, L_12, L_13, /*hidden argument*/NULL);
return L_14;
}
}
// System.Void System.Globalization.CompareInfo::assign_sortkey(System.Object,System.String,System.Globalization.CompareOptions)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CompareInfo_assign_sortkey_mEB55CB232EAED47ADB2F831640FE134F3BBAF5E5 (CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * __this, RuntimeObject * ___key0, String_t* ___source1, int32_t ___options2, const RuntimeMethod* method)
{
typedef void (*CompareInfo_assign_sortkey_mEB55CB232EAED47ADB2F831640FE134F3BBAF5E5_ftn) (CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 *, RuntimeObject *, String_t*, int32_t);
using namespace il2cpp::icalls;
((CompareInfo_assign_sortkey_mEB55CB232EAED47ADB2F831640FE134F3BBAF5E5_ftn)mscorlib::System::Globalization::CompareInfo::assign_sortkey) (__this, ___key0, ___source1, ___options2);
}
// System.Int32 System.Globalization.CompareInfo::internal_compare(System.String,System.Int32,System.Int32,System.String,System.Int32,System.Int32,System.Globalization.CompareOptions)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CompareInfo_internal_compare_mFC7A4946F4276037CC2D0161BE990F9575E982ED (CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * __this, String_t* ___str10, int32_t ___offset11, int32_t ___length12, String_t* ___str23, int32_t ___offset24, int32_t ___length25, int32_t ___options6, const RuntimeMethod* method)
{
typedef int32_t (*CompareInfo_internal_compare_mFC7A4946F4276037CC2D0161BE990F9575E982ED_ftn) (CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 *, String_t*, int32_t, int32_t, String_t*, int32_t, int32_t, int32_t);
using namespace il2cpp::icalls;
return ((CompareInfo_internal_compare_mFC7A4946F4276037CC2D0161BE990F9575E982ED_ftn)mscorlib::System::Globalization::CompareInfo::internal_compare) (__this, ___str10, ___offset11, ___length12, ___str23, ___offset24, ___length25, ___options6);
}
// System.Int32 System.Globalization.CompareInfo::internal_index(System.String,System.Int32,System.Int32,System.String,System.Globalization.CompareOptions,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CompareInfo_internal_index_mC10479D6C207BF2DF92A7059A78879748F118308 (CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * __this, String_t* ___source0, int32_t ___sindex1, int32_t ___count2, String_t* ___value3, int32_t ___options4, bool ___first5, const RuntimeMethod* method)
{
typedef int32_t (*CompareInfo_internal_index_mC10479D6C207BF2DF92A7059A78879748F118308_ftn) (CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 *, String_t*, int32_t, int32_t, String_t*, int32_t, bool);
using namespace il2cpp::icalls;
return ((CompareInfo_internal_index_mC10479D6C207BF2DF92A7059A78879748F118308_ftn)mscorlib::System::Globalization::CompareInfo::internal_index) (__this, ___source0, ___sindex1, ___count2, ___value3, ___options4, ___first5);
}
// System.Void System.Globalization.CompareInfo::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CompareInfo__ctor_mDC8150633A79525EA2289C3D9507BB59BB213B77 (CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CompareInfo__ctor_mDC8150633A79525EA2289C3D9507BB59BB213B77_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_raise_profile_exception(CompareInfo__ctor_mDC8150633A79525EA2289C3D9507BB59BB213B77_RuntimeMethod_var);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Collections.Comparer::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Comparer__ctor_m8606A9229E243F0863D5256ABDE7DD145F43D87E (Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 * __this, const RuntimeMethod* method)
{
{
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL);
__this->set_m_compareInfo_0((CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 *)NULL);
return;
}
}
// System.Void System.Collections.Comparer::.ctor(System.Globalization.CultureInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Comparer__ctor_mBDB3A226646ED4E31F7562C371841819469DC84F (Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 * __this, CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * ___culture0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Comparer__ctor_mBDB3A226646ED4E31F7562C371841819469DC84F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL);
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_0 = ___culture0;
if (L_0)
{
goto IL_0014;
}
}
{
ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, _stringLiteralB657B9EBAD0A09A09ED1FD8D1CCD0E421CD7BDC7, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Comparer__ctor_mBDB3A226646ED4E31F7562C371841819469DC84F_RuntimeMethod_var);
}
IL_0014:
{
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_2 = ___culture0;
NullCheck(L_2);
CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * L_3 = VirtFuncInvoker0< CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * >::Invoke(12 /* System.Globalization.CompareInfo System.Globalization.CultureInfo::get_CompareInfo() */, L_2);
__this->set_m_compareInfo_0(L_3);
return;
}
}
// System.Void System.Collections.Comparer::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Comparer__ctor_m554EB0F6DA3BEA9A2E2B611C297422E58DC92373 (Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 * __this, SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * ___info0, StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 ___context1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Comparer__ctor_m554EB0F6DA3BEA9A2E2B611C297422E58DC92373_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
SerializationInfoEnumerator_t0548359AF7DB5798EBA19FE6BFCC8CDB8E6B1AF6 * V_0 = NULL;
String_t* V_1 = NULL;
{
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL);
__this->set_m_compareInfo_0((CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 *)NULL);
SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * L_0 = ___info0;
NullCheck(L_0);
SerializationInfoEnumerator_t0548359AF7DB5798EBA19FE6BFCC8CDB8E6B1AF6 * L_1 = SerializationInfo_GetEnumerator_m88A3A4E9DD1E1F276016B0205CF62DDB876B9575(L_0, /*hidden argument*/NULL);
V_0 = L_1;
goto IL_004a;
}
IL_0016:
{
SerializationInfoEnumerator_t0548359AF7DB5798EBA19FE6BFCC8CDB8E6B1AF6 * L_2 = V_0;
NullCheck(L_2);
String_t* L_3 = SerializationInfoEnumerator_get_Name_m77C59B00E71ADDFA65D08FE52BE16D4D0E4A2480(L_2, /*hidden argument*/NULL);
V_1 = L_3;
String_t* L_4 = V_1;
bool L_5 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_4, _stringLiteralD28C94883387DBDDA48D56C715653DEF70A2DB6D, /*hidden argument*/NULL);
if (!L_5)
{
goto IL_004a;
}
}
{
SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * L_6 = ___info0;
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_7 = { reinterpret_cast<intptr_t> (CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_8 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_7, /*hidden argument*/NULL);
NullCheck(L_6);
RuntimeObject * L_9 = SerializationInfo_GetValue_mF6E311779D55AD7C80B2D19FF2A7E9683AEF2A99(L_6, _stringLiteralD28C94883387DBDDA48D56C715653DEF70A2DB6D, L_8, /*hidden argument*/NULL);
__this->set_m_compareInfo_0(((CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 *)CastclassClass((RuntimeObject*)L_9, CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9_il2cpp_TypeInfo_var)));
}
IL_004a:
{
SerializationInfoEnumerator_t0548359AF7DB5798EBA19FE6BFCC8CDB8E6B1AF6 * L_10 = V_0;
NullCheck(L_10);
bool L_11 = SerializationInfoEnumerator_MoveNext_m661034C94476113FEB5A3C98A5EA9456ACFA2E9F(L_10, /*hidden argument*/NULL);
if (L_11)
{
goto IL_0016;
}
}
{
return;
}
}
// System.Int32 System.Collections.Comparer::Compare(System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Comparer_Compare_mBBF5C0BAD0C29DC7BE771AB2F0A2500D5E0E60A3 (Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 * __this, RuntimeObject * ___a0, RuntimeObject * ___b1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Comparer_Compare_mBBF5C0BAD0C29DC7BE771AB2F0A2500D5E0E60A3_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
RuntimeObject* V_1 = NULL;
String_t* V_2 = NULL;
String_t* V_3 = NULL;
{
RuntimeObject * L_0 = ___a0;
RuntimeObject * L_1 = ___b1;
if ((!(((RuntimeObject*)(RuntimeObject *)L_0) == ((RuntimeObject*)(RuntimeObject *)L_1))))
{
goto IL_0006;
}
}
{
return 0;
}
IL_0006:
{
RuntimeObject * L_2 = ___a0;
if (L_2)
{
goto IL_000b;
}
}
{
return (-1);
}
IL_000b:
{
RuntimeObject * L_3 = ___b1;
if (L_3)
{
goto IL_0010;
}
}
{
return 1;
}
IL_0010:
{
CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * L_4 = __this->get_m_compareInfo_0();
if (!L_4)
{
goto IL_003a;
}
}
{
RuntimeObject * L_5 = ___a0;
V_2 = ((String_t*)IsInstSealed((RuntimeObject*)L_5, String_t_il2cpp_TypeInfo_var));
RuntimeObject * L_6 = ___b1;
V_3 = ((String_t*)IsInstSealed((RuntimeObject*)L_6, String_t_il2cpp_TypeInfo_var));
String_t* L_7 = V_2;
if (!L_7)
{
goto IL_003a;
}
}
{
String_t* L_8 = V_3;
if (!L_8)
{
goto IL_003a;
}
}
{
CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * L_9 = __this->get_m_compareInfo_0();
String_t* L_10 = V_2;
String_t* L_11 = V_3;
NullCheck(L_9);
int32_t L_12 = VirtFuncInvoker2< int32_t, String_t*, String_t* >::Invoke(6 /* System.Int32 System.Globalization.CompareInfo::Compare(System.String,System.String) */, L_9, L_10, L_11);
return L_12;
}
IL_003a:
{
RuntimeObject * L_13 = ___a0;
V_0 = ((RuntimeObject*)IsInst((RuntimeObject*)L_13, IComparable_tFEDC50D0B9EA8DB2753CA1971AA5AB49AD3AC62C_il2cpp_TypeInfo_var));
RuntimeObject* L_14 = V_0;
if (!L_14)
{
goto IL_004c;
}
}
{
RuntimeObject* L_15 = V_0;
RuntimeObject * L_16 = ___b1;
NullCheck(L_15);
int32_t L_17 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(0 /* System.Int32 System.IComparable::CompareTo(System.Object) */, IComparable_tFEDC50D0B9EA8DB2753CA1971AA5AB49AD3AC62C_il2cpp_TypeInfo_var, L_15, L_16);
return L_17;
}
IL_004c:
{
RuntimeObject * L_18 = ___b1;
V_1 = ((RuntimeObject*)IsInst((RuntimeObject*)L_18, IComparable_tFEDC50D0B9EA8DB2753CA1971AA5AB49AD3AC62C_il2cpp_TypeInfo_var));
RuntimeObject* L_19 = V_1;
if (!L_19)
{
goto IL_005f;
}
}
{
RuntimeObject* L_20 = V_1;
RuntimeObject * L_21 = ___a0;
NullCheck(L_20);
int32_t L_22 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(0 /* System.Int32 System.IComparable::CompareTo(System.Object) */, IComparable_tFEDC50D0B9EA8DB2753CA1971AA5AB49AD3AC62C_il2cpp_TypeInfo_var, L_20, L_21);
return ((-L_22));
}
IL_005f:
{
String_t* L_23 = Environment_GetResourceString_m8DFF827596B5FD533D3FE56900FA095F7D674617(_stringLiteralE3037931DE899C4BCA58ECF059EF9BE27F54B681, /*hidden argument*/NULL);
ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_24 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var);
ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_24, L_23, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_24, Comparer_Compare_mBBF5C0BAD0C29DC7BE771AB2F0A2500D5E0E60A3_RuntimeMethod_var);
}
}
// System.Void System.Collections.Comparer::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Comparer_GetObjectData_m8C6BA6D811D4ED82270F29E5CE4042F30296422C (Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 * __this, SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * ___info0, StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 ___context1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Comparer_GetObjectData_m8C6BA6D811D4ED82270F29E5CE4042F30296422C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * L_0 = ___info0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, _stringLiteralA7B00F7F25C375B2501A6ADBC86D092B23977085, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Comparer_GetObjectData_m8C6BA6D811D4ED82270F29E5CE4042F30296422C_RuntimeMethod_var);
}
IL_000e:
{
CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * L_2 = __this->get_m_compareInfo_0();
if (!L_2)
{
goto IL_0027;
}
}
{
SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * L_3 = ___info0;
CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * L_4 = __this->get_m_compareInfo_0();
NullCheck(L_3);
SerializationInfo_AddValue_mA50C2668EF700C2239DDC362F8DB409020BB763D(L_3, _stringLiteralD28C94883387DBDDA48D56C715653DEF70A2DB6D, L_4, /*hidden argument*/NULL);
}
IL_0027:
{
return;
}
}
// System.Void System.Collections.Comparer::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Comparer__cctor_m955DC4953B3E78CEF493352F0972756B2877C234 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Comparer__cctor_m955DC4953B3E78CEF493352F0972756B2877C234_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var);
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_0 = CultureInfo_get_CurrentCulture_m99E5F5BD20445F2A73F7EA0014A4E783DF3840BB(/*hidden argument*/NULL);
Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 * L_1 = (Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 *)il2cpp_codegen_object_new(Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var);
Comparer__ctor_mBDB3A226646ED4E31F7562C371841819469DC84F(L_1, L_0, /*hidden argument*/NULL);
((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_StaticFields*)il2cpp_codegen_static_fields_for(Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var))->set_Default_1(L_1);
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_2 = CultureInfo_get_InvariantCulture_m9FAAFAF8A00091EE1FCB7098AD3F163ECDF02164(/*hidden argument*/NULL);
Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 * L_3 = (Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57 *)il2cpp_codegen_object_new(Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var);
Comparer__ctor_mBDB3A226646ED4E31F7562C371841819469DC84F(L_3, L_2, /*hidden argument*/NULL);
((Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_StaticFields*)il2cpp_codegen_static_fields_for(Comparer_tEDD9ACE3DE237FE0628C183D9DD66A8BE3182A57_il2cpp_TypeInfo_var))->set_DefaultInvariant_2(L_3);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Collections.CompatibleComparer::.ctor(System.Collections.IComparer,System.Collections.IHashCodeProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CompatibleComparer__ctor_mC331722EEF22ABFD3486E957E478E49F1190AC60 (CompatibleComparer_t4BB781C29927336617069035AAC2BE8A84E20929 * __this, RuntimeObject* ___comparer0, RuntimeObject* ___hashCodeProvider1, const RuntimeMethod* method)
{
{
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL);
RuntimeObject* L_0 = ___comparer0;
__this->set__comparer_0(L_0);
RuntimeObject* L_1 = ___hashCodeProvider1;
__this->set__hcp_1(L_1);
return;
}
}
// System.Int32 System.Collections.CompatibleComparer::Compare(System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CompatibleComparer_Compare_m02BC425A9FFE8D446313C7AF3EF354C731ED9557 (CompatibleComparer_t4BB781C29927336617069035AAC2BE8A84E20929 * __this, RuntimeObject * ___a0, RuntimeObject * ___b1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CompatibleComparer_Compare_m02BC425A9FFE8D446313C7AF3EF354C731ED9557_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
{
RuntimeObject * L_0 = ___a0;
RuntimeObject * L_1 = ___b1;
if ((!(((RuntimeObject*)(RuntimeObject *)L_0) == ((RuntimeObject*)(RuntimeObject *)L_1))))
{
goto IL_0006;
}
}
{
return 0;
}
IL_0006:
{
RuntimeObject * L_2 = ___a0;
if (L_2)
{
goto IL_000b;
}
}
{
return (-1);
}
IL_000b:
{
RuntimeObject * L_3 = ___b1;
if (L_3)
{
goto IL_0010;
}
}
{
return 1;
}
IL_0010:
{
RuntimeObject* L_4 = __this->get__comparer_0();
if (!L_4)
{
goto IL_0026;
}
}
{
RuntimeObject* L_5 = __this->get__comparer_0();
RuntimeObject * L_6 = ___a0;
RuntimeObject * L_7 = ___b1;
NullCheck(L_5);
int32_t L_8 = InterfaceFuncInvoker2< int32_t, RuntimeObject *, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_t624EE667DCB0D3765FF034F7150DA71B361B82C0_il2cpp_TypeInfo_var, L_5, L_6, L_7);
return L_8;
}
IL_0026:
{
RuntimeObject * L_9 = ___a0;
V_0 = ((RuntimeObject*)IsInst((RuntimeObject*)L_9, IComparable_tFEDC50D0B9EA8DB2753CA1971AA5AB49AD3AC62C_il2cpp_TypeInfo_var));
RuntimeObject* L_10 = V_0;
if (!L_10)
{
goto IL_0038;
}
}
{
RuntimeObject* L_11 = V_0;
RuntimeObject * L_12 = ___b1;
NullCheck(L_11);
int32_t L_13 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(0 /* System.Int32 System.IComparable::CompareTo(System.Object) */, IComparable_tFEDC50D0B9EA8DB2753CA1971AA5AB49AD3AC62C_il2cpp_TypeInfo_var, L_11, L_12);
return L_13;
}
IL_0038:
{
String_t* L_14 = Environment_GetResourceString_m8DFF827596B5FD533D3FE56900FA095F7D674617(_stringLiteralE3037931DE899C4BCA58ECF059EF9BE27F54B681, /*hidden argument*/NULL);
ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_15 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var);
ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_15, L_14, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, CompatibleComparer_Compare_m02BC425A9FFE8D446313C7AF3EF354C731ED9557_RuntimeMethod_var);
}
}
// System.Boolean System.Collections.CompatibleComparer::Equals(System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CompatibleComparer_Equals_m0282215C788B2F45E86B5A8100294990CE3EC689 (CompatibleComparer_t4BB781C29927336617069035AAC2BE8A84E20929 * __this, RuntimeObject * ___a0, RuntimeObject * ___b1, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___a0;
RuntimeObject * L_1 = ___b1;
int32_t L_2 = CompatibleComparer_Compare_m02BC425A9FFE8D446313C7AF3EF354C731ED9557(__this, L_0, L_1, /*hidden argument*/NULL);
return (bool)((((int32_t)L_2) == ((int32_t)0))? 1 : 0);
}
}
// System.Int32 System.Collections.CompatibleComparer::GetHashCode(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CompatibleComparer_GetHashCode_m6FBD741D0A3841A734EB702E29A3F1CD055A7C9B (CompatibleComparer_t4BB781C29927336617069035AAC2BE8A84E20929 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CompatibleComparer_GetHashCode_m6FBD741D0A3841A734EB702E29A3F1CD055A7C9B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___obj0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, _stringLiteral690BF02630AC0BD6AA6BD08D2C36A28E1FC54F3E, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, CompatibleComparer_GetHashCode_m6FBD741D0A3841A734EB702E29A3F1CD055A7C9B_RuntimeMethod_var);
}
IL_000e:
{
RuntimeObject* L_2 = __this->get__hcp_1();
if (!L_2)
{
goto IL_0023;
}
}
{
RuntimeObject* L_3 = __this->get__hcp_1();
RuntimeObject * L_4 = ___obj0;
NullCheck(L_3);
int32_t L_5 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(0 /* System.Int32 System.Collections.IHashCodeProvider::GetHashCode(System.Object) */, IHashCodeProvider_t1DC17F4EF3AD40E5D1A107939F6E18E2D450B691_il2cpp_TypeInfo_var, L_3, L_4);
return L_5;
}
IL_0023:
{
RuntimeObject * L_6 = ___obj0;
NullCheck(L_6);
int32_t L_7 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, L_6);
return L_7;
}
}
// System.Collections.IComparer System.Collections.CompatibleComparer::get_Comparer()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* CompatibleComparer_get_Comparer_m84C1E14B42C38BF539D84F77666360E617C66EF6 (CompatibleComparer_t4BB781C29927336617069035AAC2BE8A84E20929 * __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = __this->get__comparer_0();
return L_0;
}
}
// System.Collections.IHashCodeProvider System.Collections.CompatibleComparer::get_HashCodeProvider()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* CompatibleComparer_get_HashCodeProvider_mF2F49E3ECDBE4720F11818002229D4CDF124975B (CompatibleComparer_t4BB781C29927336617069035AAC2BE8A84E20929 * __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = __this->get__hcp_1();
return L_0;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Runtime.CompilerServices.CompilationRelaxationsAttribute::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CompilationRelaxationsAttribute__ctor_mAC3079EBC4EEAB474EED8208EF95DB39C922333B (CompilationRelaxationsAttribute_t661FDDC06629BDA607A42BD660944F039FE03AFF * __this, int32_t ___relaxations0, const RuntimeMethod* method)
{
{
Attribute__ctor_m5C1862A7DFC2C25A4797A8C5F681FBB5CB53ECE1(__this, /*hidden argument*/NULL);
int32_t L_0 = ___relaxations0;
__this->set_m_relaxations_0(L_0);
return;
}
}
// System.Void System.Runtime.CompilerServices.CompilationRelaxationsAttribute::.ctor(System.Runtime.CompilerServices.CompilationRelaxations)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CompilationRelaxationsAttribute__ctor_m9012F6B0B55EF7A86133889CB22D74728CAB90AC (CompilationRelaxationsAttribute_t661FDDC06629BDA607A42BD660944F039FE03AFF * __this, int32_t ___relaxations0, const RuntimeMethod* method)
{
{
Attribute__ctor_m5C1862A7DFC2C25A4797A8C5F681FBB5CB53ECE1(__this, /*hidden argument*/NULL);
int32_t L_0 = ___relaxations0;
__this->set_m_relaxations_0(L_0);
return;
}
}
// System.Int32 System.Runtime.CompilerServices.CompilationRelaxationsAttribute::get_CompilationRelaxations()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CompilationRelaxationsAttribute_get_CompilationRelaxations_mDD7E9F603758D08B92BDB88B279419587909AF21 (CompilationRelaxationsAttribute_t661FDDC06629BDA607A42BD660944F039FE03AFF * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_m_relaxations_0();
return L_0;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Runtime.CompilerServices.CompilerGeneratedAttribute::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35 (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * __this, const RuntimeMethod* method)
{
{
Attribute__ctor_m5C1862A7DFC2C25A4797A8C5F681FBB5CB53ECE1(__this, /*hidden argument*/NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Threading.Tasks.CompletionActionInvoker::.ctor(System.Threading.Tasks.ITaskCompletionAction,System.Threading.Tasks.Task)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CompletionActionInvoker__ctor_mAF7EC4C9C1CF8647F3D4954732AA80777264977A (CompletionActionInvoker_t66AE143673E0FA80521F01E8FBF6651194AC1E9F * __this, RuntimeObject* ___action0, Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * ___completingTask1, const RuntimeMethod* method)
{
{
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL);
RuntimeObject* L_0 = ___action0;
__this->set_m_action_0(L_0);
Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * L_1 = ___completingTask1;
__this->set_m_completingTask_1(L_1);
return;
}
}
// System.Void System.Threading.Tasks.CompletionActionInvoker::ExecuteWorkItem()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CompletionActionInvoker_ExecuteWorkItem_m82C2758C0567183BDE6B96DA23B304AE195E892C (CompletionActionInvoker_t66AE143673E0FA80521F01E8FBF6651194AC1E9F * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CompletionActionInvoker_ExecuteWorkItem_m82C2758C0567183BDE6B96DA23B304AE195E892C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = __this->get_m_action_0();
Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * L_1 = __this->get_m_completingTask_1();
NullCheck(L_0);
InterfaceActionInvoker1< Task_t804B25CFE3FC13AAEE16C8FA3BF52513F2A8DB60 * >::Invoke(0 /* System.Void System.Threading.Tasks.ITaskCompletionAction::Invoke(System.Threading.Tasks.Task) */, ITaskCompletionAction_t7007C80B89E26C5DBB586AF8D5790801A1DDC558_il2cpp_TypeInfo_var, L_0, L_1);
return;
}
}
// System.Void System.Threading.Tasks.CompletionActionInvoker::MarkAborted(System.Threading.ThreadAbortException)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CompletionActionInvoker_MarkAborted_mFC78ABE125D0501CAC1FE241AE605163975E973A (CompletionActionInvoker_t66AE143673E0FA80521F01E8FBF6651194AC1E9F * __this, ThreadAbortException_t16772A32C3654FCFF0399F11874CB783CC51C153 * ___tae0, const RuntimeMethod* method)
{
{
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Runtime.Remoting.ConfigHandler::.ctor(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfigHandler__ctor_m4BE20CA998DDE1A53E994A4B597161A0619B8568 (ConfigHandler_t669F653CE4E8ABF2323F028523BEDFB5C56C3760 * __this, bool ___onlyDelayedChannels0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ConfigHandler__ctor_m4BE20CA998DDE1A53E994A4B597161A0619B8568_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_0 = (ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 *)il2cpp_codegen_object_new(ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575_il2cpp_TypeInfo_var);
ArrayList__ctor_m6847CFECD6BDC2AD10A4AC9852A572B88B8D6B1B(L_0, /*hidden argument*/NULL);
__this->set_typeEntries_0(L_0);
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_1 = (ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 *)il2cpp_codegen_object_new(ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575_il2cpp_TypeInfo_var);
ArrayList__ctor_m6847CFECD6BDC2AD10A4AC9852A572B88B8D6B1B(L_1, /*hidden argument*/NULL);
__this->set_channelInstances_1(L_1);
__this->set_currentXmlPath_6(_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL);
bool L_2 = ___onlyDelayedChannels0;
__this->set_onlyDelayedChannels_7(L_2);
return;
}
}
// System.Void System.Runtime.Remoting.ConfigHandler::ValidatePath(System.String,System.String[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfigHandler_ValidatePath_m6650D44DB89EBA11558A1E7CF484F73410017B2B (ConfigHandler_t669F653CE4E8ABF2323F028523BEDFB5C56C3760 * __this, String_t* ___element0, StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___paths1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ConfigHandler_ValidatePath_m6650D44DB89EBA11558A1E7CF484F73410017B2B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* V_0 = NULL;
int32_t V_1 = 0;
String_t* V_2 = NULL;
{
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_0 = ___paths1;
V_0 = L_0;
V_1 = 0;
goto IL_0018;
}
IL_0006:
{
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_1 = V_0;
int32_t L_2 = V_1;
NullCheck(L_1);
int32_t L_3 = L_2;
String_t* L_4 = (L_1)->GetAt(static_cast<il2cpp_array_size_t>(L_3));
V_2 = L_4;
String_t* L_5 = V_2;
bool L_6 = ConfigHandler_CheckPath_m26CB4796D1C97445AAB5BEF3087FCC89FAA562B5(__this, L_5, /*hidden argument*/NULL);
if (!L_6)
{
goto IL_0014;
}
}
{
return;
}
IL_0014:
{
int32_t L_7 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)1));
}
IL_0018:
{
int32_t L_8 = V_1;
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_9 = V_0;
NullCheck(L_9);
if ((((int32_t)L_8) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_9)->max_length)))))))
{
goto IL_0006;
}
}
{
String_t* L_10 = ___element0;
String_t* L_11 = String_Concat_m89EAB4C6A96B0E5C3F87300D6BE78D386B9EFC44(_stringLiteral17D23A461128D46FB98E5F26EABCCB3A13E8E77F, L_10, _stringLiteralEB674BD014DE249701E8368E6D52303EC395F35E, /*hidden argument*/NULL);
RemotingException_tEFFC0A283D7F4169F5481926B7FF6C2EB8C76F1B * L_12 = (RemotingException_tEFFC0A283D7F4169F5481926B7FF6C2EB8C76F1B *)il2cpp_codegen_object_new(RemotingException_tEFFC0A283D7F4169F5481926B7FF6C2EB8C76F1B_il2cpp_TypeInfo_var);
RemotingException__ctor_m9D41822220B296C09BE7175E8C2D6F65C195F4E9(L_12, L_11, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, ConfigHandler_ValidatePath_m6650D44DB89EBA11558A1E7CF484F73410017B2B_RuntimeMethod_var);
}
}
// System.Boolean System.Runtime.Remoting.ConfigHandler::CheckPath(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConfigHandler_CheckPath_m26CB4796D1C97445AAB5BEF3087FCC89FAA562B5 (ConfigHandler_t669F653CE4E8ABF2323F028523BEDFB5C56C3760 * __this, String_t* ___path0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ConfigHandler_CheckPath_m26CB4796D1C97445AAB5BEF3087FCC89FAA562B5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * V_0 = NULL;
{
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var);
CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_0 = CultureInfo_get_InvariantCulture_m9FAAFAF8A00091EE1FCB7098AD3F163ECDF02164(/*hidden argument*/NULL);
NullCheck(L_0);
CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * L_1 = VirtFuncInvoker0< CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * >::Invoke(12 /* System.Globalization.CompareInfo System.Globalization.CultureInfo::get_CompareInfo() */, L_0);
V_0 = L_1;
CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * L_2 = V_0;
String_t* L_3 = ___path0;
NullCheck(L_2);
bool L_4 = VirtFuncInvoker3< bool, String_t*, String_t*, int32_t >::Invoke(9 /* System.Boolean System.Globalization.CompareInfo::IsPrefix(System.String,System.String,System.Globalization.CompareOptions) */, L_2, L_3, _stringLiteral86BBAACC00198DBB3046818AD3FC2AA10AE48DE1, ((int32_t)1073741824));
if (!L_4)
{
goto IL_002b;
}
}
{
String_t* L_5 = ___path0;
String_t* L_6 = __this->get_currentXmlPath_6();
bool L_7 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_5, L_6, /*hidden argument*/NULL);
return L_7;
}
IL_002b:
{
CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * L_8 = V_0;
String_t* L_9 = __this->get_currentXmlPath_6();
String_t* L_10 = ___path0;
NullCheck(L_8);
bool L_11 = VirtFuncInvoker3< bool, String_t*, String_t*, int32_t >::Invoke(10 /* System.Boolean System.Globalization.CompareInfo::IsSuffix(System.String,System.String,System.Globalization.CompareOptions) */, L_8, L_9, L_10, ((int32_t)1073741824));
return L_11;
}
}
// System.Void System.Runtime.Remoting.ConfigHandler::OnStartParsing(Mono.Xml.SmallXmlParser)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfigHandler_OnStartParsing_m5785712A26979C05FF472DC3072AF3E3AB604FF8 (ConfigHandler_t669F653CE4E8ABF2323F028523BEDFB5C56C3760 * __this, SmallXmlParser_t67E5C1C6417A9CB0679E68D8A4E0095E9D2B54D7 * ___parser0, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Runtime.Remoting.ConfigHandler::OnProcessingInstruction(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfigHandler_OnProcessingInstruction_mB24DC528206F636E9309E2701C63A81853BAF8D0 (ConfigHandler_t669F653CE4E8ABF2323F028523BEDFB5C56C3760 * __this, String_t* ___name0, String_t* ___text1, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Runtime.Remoting.ConfigHandler::OnIgnorableWhitespace(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfigHandler_OnIgnorableWhitespace_mD855BC09A32C8D5CE9BDB311B0DD4C5DA7C53C33 (ConfigHandler_t669F653CE4E8ABF2323F028523BEDFB5C56C3760 * __this, String_t* ___s0, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Runtime.Remoting.ConfigHandler::OnStartElement(System.String,Mono.Xml.SmallXmlParser_IAttrList)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfigHandler_OnStartElement_mD990C69A12C3B62631602A027D29D87B79E2145D (ConfigHandler_t669F653CE4E8ABF2323F028523BEDFB5C56C3760 * __this, String_t* ___name0, RuntimeObject* ___attrs1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ConfigHandler_OnStartElement_mD990C69A12C3B62631602A027D29D87B79E2145D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Exception_t * V_0 = 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);
IL_0000:
try
{ // begin try (depth: 1)
{
String_t* L_0 = __this->get_currentXmlPath_6();
NullCheck(L_0);
bool L_1 = String_StartsWith_mDE2FF98CAFFD13F88EDEB6C40158DDF840BFCF12(L_0, _stringLiteralF8E09A19D03E8CD39A169CC1D0DABFB46DDE64F7, /*hidden argument*/NULL);
if (!L_1)
{
goto IL_001a;
}
}
IL_0012:
{
String_t* L_2 = ___name0;
RuntimeObject* L_3 = ___attrs1;
ConfigHandler_ParseElement_m9CB7F4673562DF7819A027FD8C165E97C6374239(__this, L_2, L_3, /*hidden argument*/NULL);
}
IL_001a:
{
String_t* L_4 = __this->get_currentXmlPath_6();
String_t* L_5 = ___name0;
String_t* L_6 = String_Concat_m89EAB4C6A96B0E5C3F87300D6BE78D386B9EFC44(L_4, _stringLiteral86BBAACC00198DBB3046818AD3FC2AA10AE48DE1, L_5, /*hidden argument*/NULL);
__this->set_currentXmlPath_6(L_6);
goto IL_0051;
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0033;
throw e;
}
CATCH_0033:
{ // begin catch(System.Exception)
V_0 = ((Exception_t *)__exception_local);
String_t* L_7 = ___name0;
Exception_t * L_8 = V_0;
NullCheck(L_8);
String_t* L_9 = VirtFuncInvoker0< String_t* >::Invoke(5 /* System.String System.Exception::get_Message() */, L_8);
String_t* L_10 = String_Concat_m37A5BF26F8F8F1892D60D727303B23FB604FEE78(_stringLiteralC476CD4C5AD7A3F6842E669611A262240135BD32, L_7, _stringLiteral1168E92C164109D6220480DEDA987085B2A21155, L_9, /*hidden argument*/NULL);
Exception_t * L_11 = V_0;
RemotingException_tEFFC0A283D7F4169F5481926B7FF6C2EB8C76F1B * L_12 = (RemotingException_tEFFC0A283D7F4169F5481926B7FF6C2EB8C76F1B *)il2cpp_codegen_object_new(RemotingException_tEFFC0A283D7F4169F5481926B7FF6C2EB8C76F1B_il2cpp_TypeInfo_var);
RemotingException__ctor_mCD6011BB1BDDF1ECD8D2DFE2B59BB6A6A242A3D5(L_12, L_10, L_11, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, ConfigHandler_OnStartElement_mD990C69A12C3B62631602A027D29D87B79E2145D_RuntimeMethod_var);
} // end catch (depth: 1)
IL_0051:
{
return;
}
}
// System.Void System.Runtime.Remoting.ConfigHandler::ParseElement(System.String,Mono.Xml.SmallXmlParser_IAttrList)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfigHandler_ParseElement_m9CB7F4673562DF7819A027FD8C165E97C6374239 (ConfigHandler_t669F653CE4E8ABF2323F028523BEDFB5C56C3760 * __this, String_t* ___name0, RuntimeObject* ___attrs1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ConfigHandler_ParseElement_m9CB7F4673562DF7819A027FD8C165E97C6374239_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
uint32_t V_0 = 0;
ProviderData_t2E4B222839D59BB2D2C44E370FA8ED37DAF4F582 * V_1 = NULL;
{
Stack_tF6DD42A42C129B014D4223010F1E0FFBECBDC3B8 * L_0 = __this->get_currentProviderData_3();
if (!L_0)
{
goto IL_0011;
}
}
{
String_t* L_1 = ___name0;
RuntimeObject* L_2 = ___attrs1;
ConfigHandler_ReadCustomProviderData_mD9651F007012FAD7376788F85744323687DA5063(__this, L_1, L_2, /*hidden argument*/NULL);
return;
}
IL_0011:
{
String_t* L_3 = ___name0;
uint32_t L_4 = U3CPrivateImplementationDetailsU3E_ComputeStringHash_mB93B5E37F36C3B39E066B11F88014D2A69612967(L_3, /*hidden argument*/NULL);
V_0 = L_4;
uint32_t L_5 = V_0;
if ((!(((uint32_t)L_5) <= ((uint32_t)((int32_t)1889220888)))))
{
goto IL_00b2;
}
}
{
uint32_t L_6 = V_0;
if ((!(((uint32_t)L_6) <= ((uint32_t)((int32_t)1338032792)))))
{
goto IL_0069;
}
}
{
uint32_t L_7 = V_0;
if ((!(((uint32_t)L_7) <= ((uint32_t)((int32_t)566383268)))))
{
goto IL_004e;
}
}
{
uint32_t L_8 = V_0;
if ((((int32_t)L_8) == ((int32_t)((int32_t)524788293))))
{
goto IL_0146;
}
}
{
uint32_t L_9 = V_0;
if ((((int32_t)L_9) == ((int32_t)((int32_t)566383268))))
{
goto IL_0185;
}
}
{
goto IL_05df;
}
IL_004e:
{
uint32_t L_10 = V_0;
if ((((int32_t)L_10) == ((int32_t)((int32_t)653843437))))
{
goto IL_026c;
}
}
{
uint32_t L_11 = V_0;
if ((((int32_t)L_11) == ((int32_t)((int32_t)1338032792))))
{
goto IL_0218;
}
}
{
goto IL_05df;
}
IL_0069:
{
uint32_t L_12 = V_0;
if ((!(((uint32_t)L_12) <= ((uint32_t)((int32_t)1457512036)))))
{
goto IL_008c;
}
}
{
uint32_t L_13 = V_0;
if ((((int32_t)L_13) == ((int32_t)((int32_t)1376955374))))
{
goto IL_015b;
}
}
{
uint32_t L_14 = V_0;
if ((((int32_t)L_14) == ((int32_t)((int32_t)1457512036))))
{
goto IL_0203;
}
}
{
goto IL_05df;
}
IL_008c:
{
uint32_t L_15 = V_0;
if ((((int32_t)L_15) == ((int32_t)((int32_t)1483009432))))
{
goto IL_0296;
}
}
{
uint32_t L_16 = V_0;
if ((((int32_t)L_16) == ((int32_t)((int32_t)1743807633))))
{
goto IL_02c0;
}
}
{
uint32_t L_17 = V_0;
if ((((int32_t)L_17) == ((int32_t)((int32_t)1889220888))))
{
goto IL_01af;
}
}
{
goto IL_05df;
}
IL_00b2:
{
uint32_t L_18 = V_0;
if ((!(((uint32_t)L_18) <= ((uint32_t)((int32_t)-1212105796)))))
{
goto IL_0103;
}
}
{
uint32_t L_19 = V_0;
if ((!(((uint32_t)L_19) <= ((uint32_t)((int32_t)-1457443803)))))
{
goto IL_00dd;
}
}
{
uint32_t L_20 = V_0;
if ((((int32_t)L_20) == ((int32_t)((int32_t)-1886217186))))
{
goto IL_01ee;
}
}
{
uint32_t L_21 = V_0;
if ((((int32_t)L_21) == ((int32_t)((int32_t)-1457443803))))
{
goto IL_01d9;
}
}
{
goto IL_05df;
}
IL_00dd:
{
uint32_t L_22 = V_0;
if ((((int32_t)L_22) == ((int32_t)((int32_t)-1428299908))))
{
goto IL_022d;
}
}
{
uint32_t L_23 = V_0;
if ((((int32_t)L_23) == ((int32_t)((int32_t)-1306683541))))
{
goto IL_0242;
}
}
{
uint32_t L_24 = V_0;
if ((((int32_t)L_24) == ((int32_t)((int32_t)-1212105796))))
{
goto IL_01c4;
}
}
{
goto IL_05df;
}
IL_0103:
{
uint32_t L_25 = V_0;
if ((!(((uint32_t)L_25) <= ((uint32_t)((int32_t)-656080236)))))
{
goto IL_0123;
}
}
{
uint32_t L_26 = V_0;
if ((((int32_t)L_26) == ((int32_t)((int32_t)-706875453))))
{
goto IL_0257;
}
}
{
uint32_t L_27 = V_0;
if ((((int32_t)L_27) == ((int32_t)((int32_t)-656080236))))
{
goto IL_019a;
}
}
{
goto IL_05df;
}
IL_0123:
{
uint32_t L_28 = V_0;
if ((((int32_t)L_28) == ((int32_t)((int32_t)-261295130))))
{
goto IL_0281;
}
}
{
uint32_t L_29 = V_0;
if ((((int32_t)L_29) == ((int32_t)((int32_t)-107478745))))
{
goto IL_02ab;
}
}
{
uint32_t L_30 = V_0;
if ((((int32_t)L_30) == ((int32_t)((int32_t)-68654987))))
{
goto IL_0170;
}
}
{
goto IL_05df;
}
IL_0146:
{
String_t* L_31 = ___name0;
bool L_32 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_31, _stringLiteralDDC3625A3D3A4B7A59AEEE40448DC3DEA5AA00F3, /*hidden argument*/NULL);
if (L_32)
{
goto IL_02d5;
}
}
{
goto IL_05df;
}
IL_015b:
{
String_t* L_33 = ___name0;
bool L_34 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_33, _stringLiteralBE2893848F9FC647C2288DA6581A1522E9695182, /*hidden argument*/NULL);
if (L_34)
{
goto IL_0305;
}
}
{
goto IL_05df;
}
IL_0170:
{
String_t* L_35 = ___name0;
bool L_36 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_35, _stringLiteral4FB3B17CEC619C238633561C3FAE9D8ADED19582, /*hidden argument*/NULL);
if (L_36)
{
goto IL_0322;
}
}
{
goto IL_05df;
}
IL_0185:
{
String_t* L_37 = ___name0;
bool L_38 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_37, _stringLiteral44F1E7DB2E8AAD233857868896DFEFE5A63EECEF, /*hidden argument*/NULL);
if (L_38)
{
goto IL_0340;
}
}
{
goto IL_05df;
}
IL_019a:
{
String_t* L_39 = ___name0;
bool L_40 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_39, _stringLiteralC46C54AAF801625D4CC5B86D35AC24E3F9CDFA85, /*hidden argument*/NULL);
if (L_40)
{
goto IL_037a;
}
}
{
goto IL_05df;
}
IL_01af:
{
String_t* L_41 = ___name0;
bool L_42 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_41, _stringLiteralC760E2135EAB57AB73C3C108568C92C989BE4425, /*hidden argument*/NULL);
if (L_42)
{
goto IL_0398;
}
}
{
goto IL_05df;
}
IL_01c4:
{
String_t* L_43 = ___name0;
bool L_44 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_43, _stringLiteral1E9918A305DD44C6C5253BF7305AB7758C686BB5, /*hidden argument*/NULL);
if (L_44)
{
goto IL_03b6;
}
}
{
goto IL_05df;
}
IL_01d9:
{
String_t* L_45 = ___name0;
bool L_46 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_45, _stringLiteralC47E2212B458C634930C56E3FC26BF1445C0E0A3, /*hidden argument*/NULL);
if (L_46)
{
goto IL_03b6;
}
}
{
goto IL_05df;
}
IL_01ee:
{
String_t* L_47 = ___name0;
bool L_48 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_47, _stringLiteral8576BA38A6B54451F2DCD524CBE7A6AEAD448846, /*hidden argument*/NULL);
if (L_48)
{
goto IL_046d;
}
}
{
goto IL_05df;
}
IL_0203:
{
String_t* L_49 = ___name0;
bool L_50 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_49, _stringLiteralDD20A4ABE85826C9E1FB7E7CF231364434408BFA, /*hidden argument*/NULL);
if (L_50)
{
goto IL_0494;
}
}
{
goto IL_05df;
}
IL_0218:
{
String_t* L_51 = ___name0;
bool L_52 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_51, _stringLiteral1AF5106E27887E8D2FF3030A6CF4363AAA407675, /*hidden argument*/NULL);
if (L_52)
{
goto IL_04aa;
}
}
{
goto IL_05df;
}
IL_022d:
{
String_t* L_53 = ___name0;
bool L_54 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_53, _stringLiteral4481EB4F8B6BEF5D863C23DACE5D92E1C6603258, /*hidden argument*/NULL);
if (L_54)
{
goto IL_04e4;
}
}
{
goto IL_05df;
}
IL_0242:
{
String_t* L_55 = ___name0;
bool L_56 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_55, _stringLiteral37CE2722D078399B62DDA59FCE70D7047FCCB84D, /*hidden argument*/NULL);
if (L_56)
{
goto IL_051e;
}
}
{
goto IL_05df;
}
IL_0257:
{
String_t* L_57 = ___name0;
bool L_58 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_57, _stringLiteral2D1B25F57FBBF092D20BC7A78D5400EFCC693530, /*hidden argument*/NULL);
if (L_58)
{
goto IL_0534;
}
}
{
goto IL_05df;
}
IL_026c:
{
String_t* L_59 = ___name0;
bool L_60 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_59, _stringLiteralBE5FC84E8C9F3A201FE674E9820EF84890B16E29, /*hidden argument*/NULL);
if (L_60)
{
goto IL_0552;
}
}
{
goto IL_05df;
}
IL_0281:
{
String_t* L_61 = ___name0;
bool L_62 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_61, _stringLiteral5A2735BCC5C2C3FA3FB3FEAB6A628F7ADB815E48, /*hidden argument*/NULL);
if (L_62)
{
goto IL_0570;
}
}
{
goto IL_05df;
}
IL_0296:
{
String_t* L_63 = ___name0;
bool L_64 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_63, _stringLiteral26CA1D5E2F6785F2DC7432A0B6AD44F0E0349443, /*hidden argument*/NULL);
if (L_64)
{
goto IL_058d;
}
}
{
goto IL_05df;
}
IL_02ab:
{
String_t* L_65 = ___name0;
bool L_66 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_65, _stringLiteralDCABCB34318FEA01D90F2D4A09850C36FA6CB742, /*hidden argument*/NULL);
if (L_66)
{
goto IL_05a3;
}
}
{
goto IL_05df;
}
IL_02c0:
{
String_t* L_67 = ___name0;
bool L_68 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_67, _stringLiteral653BECF9AD52DCE27A552FEC8151E2F976D35E59, /*hidden argument*/NULL);
if (L_68)
{
goto IL_05b9;
}
}
{
goto IL_05df;
}
IL_02d5:
{
String_t* L_69 = ___name0;
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_70 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)SZArrayNew(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var, (uint32_t)1);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_71 = L_70;
NullCheck(L_71);
ArrayElementTypeCheck (L_71, _stringLiteral09AE50F6D0ABA2E4A954B66B8ABEB086FEACFAC7);
(L_71)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral09AE50F6D0ABA2E4A954B66B8ABEB086FEACFAC7);
ConfigHandler_ValidatePath_m6650D44DB89EBA11558A1E7CF484F73410017B2B(__this, L_69, L_71, /*hidden argument*/NULL);
RuntimeObject* L_72 = ___attrs1;
NullCheck(L_72);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_73 = InterfaceFuncInvoker0< StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* >::Invoke(4 /* System.String[] Mono.Xml.SmallXmlParser/IAttrList::get_Names() */, IAttrList_tB08E93C160C8FF2AAE53C3C2F7557421B6BD5CEC_il2cpp_TypeInfo_var, L_72);
NullCheck(L_73);
if (!(((RuntimeArray*)L_73)->max_length))
{
goto IL_05f5;
}
}
{
RuntimeObject* L_74 = ___attrs1;
NullCheck(L_74);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_75 = InterfaceFuncInvoker0< StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* >::Invoke(5 /* System.String[] Mono.Xml.SmallXmlParser/IAttrList::get_Values() */, IAttrList_tB08E93C160C8FF2AAE53C3C2F7557421B6BD5CEC_il2cpp_TypeInfo_var, L_74);
NullCheck(L_75);
int32_t L_76 = 0;
String_t* L_77 = (L_75)->GetAt(static_cast<il2cpp_array_size_t>(L_76));
__this->set_appName_5(L_77);
return;
}
IL_0305:
{
String_t* L_78 = ___name0;
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_79 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)SZArrayNew(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var, (uint32_t)1);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_80 = L_79;
NullCheck(L_80);
ArrayElementTypeCheck (L_80, _stringLiteralDDC3625A3D3A4B7A59AEEE40448DC3DEA5AA00F3);
(L_80)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteralDDC3625A3D3A4B7A59AEEE40448DC3DEA5AA00F3);
ConfigHandler_ValidatePath_m6650D44DB89EBA11558A1E7CF484F73410017B2B(__this, L_78, L_80, /*hidden argument*/NULL);
RuntimeObject* L_81 = ___attrs1;
ConfigHandler_ReadLifetine_mB98A6CDFAF17ED7442822D2AB6822C639EE37F6D(__this, L_81, /*hidden argument*/NULL);
return;
}
IL_0322:
{
String_t* L_82 = ___name0;
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_83 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)SZArrayNew(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_84 = L_83;
NullCheck(L_84);
ArrayElementTypeCheck (L_84, _stringLiteral09AE50F6D0ABA2E4A954B66B8ABEB086FEACFAC7);
(L_84)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral09AE50F6D0ABA2E4A954B66B8ABEB086FEACFAC7);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_85 = L_84;
NullCheck(L_85);
ArrayElementTypeCheck (L_85, _stringLiteralDDC3625A3D3A4B7A59AEEE40448DC3DEA5AA00F3);
(L_85)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteralDDC3625A3D3A4B7A59AEEE40448DC3DEA5AA00F3);
ConfigHandler_ValidatePath_m6650D44DB89EBA11558A1E7CF484F73410017B2B(__this, L_82, L_85, /*hidden argument*/NULL);
return;
}
IL_0340:
{
String_t* L_86 = ___name0;
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_87 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)SZArrayNew(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var, (uint32_t)1);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_88 = L_87;
NullCheck(L_88);
ArrayElementTypeCheck (L_88, _stringLiteral4FB3B17CEC619C238633561C3FAE9D8ADED19582);
(L_88)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral4FB3B17CEC619C238633561C3FAE9D8ADED19582);
ConfigHandler_ValidatePath_m6650D44DB89EBA11558A1E7CF484F73410017B2B(__this, L_86, L_88, /*hidden argument*/NULL);
String_t* L_89 = __this->get_currentXmlPath_6();
NullCheck(L_89);
int32_t L_90 = String_IndexOf_m90616B2D8ACC645F389750FAE4F9A75BC5D82454(L_89, _stringLiteralDDC3625A3D3A4B7A59AEEE40448DC3DEA5AA00F3, /*hidden argument*/NULL);
if ((((int32_t)L_90) == ((int32_t)(-1))))
{
goto IL_0371;
}
}
{
RuntimeObject* L_91 = ___attrs1;
ConfigHandler_ReadChannel_m1E5CDC4CA57FF4D98107BA4D1E9E51EFA6E3388C(__this, L_91, (bool)0, /*hidden argument*/NULL);
return;
}
IL_0371:
{
RuntimeObject* L_92 = ___attrs1;
ConfigHandler_ReadChannel_m1E5CDC4CA57FF4D98107BA4D1E9E51EFA6E3388C(__this, L_92, (bool)1, /*hidden argument*/NULL);
return;
}
IL_037a:
{
String_t* L_93 = ___name0;
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_94 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)SZArrayNew(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_95 = L_94;
NullCheck(L_95);
ArrayElementTypeCheck (L_95, _stringLiteralDCABCB34318FEA01D90F2D4A09850C36FA6CB742);
(L_95)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteralDCABCB34318FEA01D90F2D4A09850C36FA6CB742);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_96 = L_95;
NullCheck(L_96);
ArrayElementTypeCheck (L_96, _stringLiteral44F1E7DB2E8AAD233857868896DFEFE5A63EECEF);
(L_96)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral44F1E7DB2E8AAD233857868896DFEFE5A63EECEF);
ConfigHandler_ValidatePath_m6650D44DB89EBA11558A1E7CF484F73410017B2B(__this, L_93, L_96, /*hidden argument*/NULL);
return;
}
IL_0398:
{
String_t* L_97 = ___name0;
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_98 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)SZArrayNew(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_99 = L_98;
NullCheck(L_99);
ArrayElementTypeCheck (L_99, _stringLiteralDCABCB34318FEA01D90F2D4A09850C36FA6CB742);
(L_99)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteralDCABCB34318FEA01D90F2D4A09850C36FA6CB742);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_100 = L_99;
NullCheck(L_100);
ArrayElementTypeCheck (L_100, _stringLiteral44F1E7DB2E8AAD233857868896DFEFE5A63EECEF);
(L_100)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteral44F1E7DB2E8AAD233857868896DFEFE5A63EECEF);
ConfigHandler_ValidatePath_m6650D44DB89EBA11558A1E7CF484F73410017B2B(__this, L_97, L_100, /*hidden argument*/NULL);
return;
}
IL_03b6:
{
bool L_101 = ConfigHandler_CheckPath_m26CB4796D1C97445AAB5BEF3087FCC89FAA562B5(__this, _stringLiteral1D542D1706E354A138185DEBD0C15CC6491074D7, /*hidden argument*/NULL);
if (L_101)
{
goto IL_03d0;
}
}
{
bool L_102 = ConfigHandler_CheckPath_m26CB4796D1C97445AAB5BEF3087FCC89FAA562B5(__this, _stringLiteralEFAFC0F3350014B6B1231ED76ACDCFB3D8DEB4DE, /*hidden argument*/NULL);
if (!L_102)
{
goto IL_03ed;
}
}
IL_03d0:
{
String_t* L_103 = ___name0;
RuntimeObject* L_104 = ___attrs1;
ProviderData_t2E4B222839D59BB2D2C44E370FA8ED37DAF4F582 * L_105 = ConfigHandler_ReadProvider_m070DE5BF3F25AC2E34E61D6A67D13D6613F9A56B(__this, L_103, L_104, (bool)0, /*hidden argument*/NULL);
V_1 = L_105;
ChannelData_tEA64A2F1AEEC413430B61C6C7C4A1652EFDD9827 * L_106 = __this->get_currentChannel_2();
NullCheck(L_106);
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_107 = ChannelData_get_ServerProviders_mC580FA7210BF153873E24FF2DBF8CADC43CEFC62(L_106, /*hidden argument*/NULL);
ProviderData_t2E4B222839D59BB2D2C44E370FA8ED37DAF4F582 * L_108 = V_1;
NullCheck(L_107);
VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(24 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_107, L_108);
return;
}
IL_03ed:
{
bool L_109 = ConfigHandler_CheckPath_m26CB4796D1C97445AAB5BEF3087FCC89FAA562B5(__this, _stringLiteralF19577A61D4970B841F7DAAC46ECCBF1918B065B, /*hidden argument*/NULL);
if (L_109)
{
goto IL_0407;
}
}
{
bool L_110 = ConfigHandler_CheckPath_m26CB4796D1C97445AAB5BEF3087FCC89FAA562B5(__this, _stringLiteral8788F37E33E57DC9F28B3BE2B6477FA4CAF577D4, /*hidden argument*/NULL);
if (!L_110)
{
goto IL_0424;
}
}
IL_0407:
{
String_t* L_111 = ___name0;
RuntimeObject* L_112 = ___attrs1;
ProviderData_t2E4B222839D59BB2D2C44E370FA8ED37DAF4F582 * L_113 = ConfigHandler_ReadProvider_m070DE5BF3F25AC2E34E61D6A67D13D6613F9A56B(__this, L_111, L_112, (bool)0, /*hidden argument*/NULL);
V_1 = L_113;
ChannelData_tEA64A2F1AEEC413430B61C6C7C4A1652EFDD9827 * L_114 = __this->get_currentChannel_2();
NullCheck(L_114);
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_115 = ChannelData_get_ClientProviders_m79FC4B0BD88C0ECDCC35189CBA5CB8859959ED0E(L_114, /*hidden argument*/NULL);
ProviderData_t2E4B222839D59BB2D2C44E370FA8ED37DAF4F582 * L_116 = V_1;
NullCheck(L_115);
VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(24 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_115, L_116);
return;
}
IL_0424:
{
bool L_117 = ConfigHandler_CheckPath_m26CB4796D1C97445AAB5BEF3087FCC89FAA562B5(__this, _stringLiteral0E759A0838CB9E0AC11F07D87AB7ADE1E3658498, /*hidden argument*/NULL);
if (!L_117)
{
goto IL_0442;
}
}
{
String_t* L_118 = ___name0;
RuntimeObject* L_119 = ___attrs1;
ProviderData_t2E4B222839D59BB2D2C44E370FA8ED37DAF4F582 * L_120 = ConfigHandler_ReadProvider_m070DE5BF3F25AC2E34E61D6A67D13D6613F9A56B(__this, L_118, L_119, (bool)1, /*hidden argument*/NULL);
V_1 = L_120;
ProviderData_t2E4B222839D59BB2D2C44E370FA8ED37DAF4F582 * L_121 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(RemotingConfiguration_t9AFFB44D1A1D02A702140D927B0173593B67D0C5_il2cpp_TypeInfo_var);
RemotingConfiguration_RegisterServerProviderTemplate_m600727B6B1B000FDC35C0925F7DC7A450DBC11CB(L_121, /*hidden argument*/NULL);
return;
}
IL_0442:
{
bool L_122 = ConfigHandler_CheckPath_m26CB4796D1C97445AAB5BEF3087FCC89FAA562B5(__this, _stringLiteralFB6ED1555A593161156D21E9CAABA3A867A69023, /*hidden argument*/NULL);
if (!L_122)
{
goto IL_0460;
}
}
{
String_t* L_123 = ___name0;
RuntimeObject* L_124 = ___attrs1;
ProviderData_t2E4B222839D59BB2D2C44E370FA8ED37DAF4F582 * L_125 = ConfigHandler_ReadProvider_m070DE5BF3F25AC2E34E61D6A67D13D6613F9A56B(__this, L_123, L_124, (bool)1, /*hidden argument*/NULL);
V_1 = L_125;
ProviderData_t2E4B222839D59BB2D2C44E370FA8ED37DAF4F582 * L_126 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(RemotingConfiguration_t9AFFB44D1A1D02A702140D927B0173593B67D0C5_il2cpp_TypeInfo_var);
RemotingConfiguration_RegisterClientProviderTemplate_m120C9B8F98F2DDA6BFE4D0D843DD18DB1BD5DBE2(L_126, /*hidden argument*/NULL);
return;
}
IL_0460:
{
String_t* L_127 = ___name0;
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_128 = Array_Empty_TisString_t_m224DA90A7384ACF7EBE2F94D2DFDE2F310D1E77D_inline(/*hidden argument*/Array_Empty_TisString_t_m224DA90A7384ACF7EBE2F94D2DFDE2F310D1E77D_RuntimeMethod_var);
ConfigHandler_ValidatePath_m6650D44DB89EBA11558A1E7CF484F73410017B2B(__this, L_127, L_128, /*hidden argument*/NULL);
return;
}
IL_046d:
{
String_t* L_129 = ___name0;
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_130 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)SZArrayNew(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var, (uint32_t)1);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_131 = L_130;
NullCheck(L_131);
ArrayElementTypeCheck (L_131, _stringLiteralDDC3625A3D3A4B7A59AEEE40448DC3DEA5AA00F3);
(L_131)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteralDDC3625A3D3A4B7A59AEEE40448DC3DEA5AA00F3);
ConfigHandler_ValidatePath_m6650D44DB89EBA11558A1E7CF484F73410017B2B(__this, L_129, L_131, /*hidden argument*/NULL);
RuntimeObject* L_132 = ___attrs1;
NullCheck(L_132);
String_t* L_133 = InterfaceFuncInvoker1< String_t*, String_t* >::Invoke(3 /* System.String Mono.Xml.SmallXmlParser/IAttrList::GetValue(System.String) */, IAttrList_tB08E93C160C8FF2AAE53C3C2F7557421B6BD5CEC_il2cpp_TypeInfo_var, L_132, _stringLiteral0458562336F91AC3F0C3FE71A886E75CE5C8F84A);
__this->set_currentClientUrl_4(L_133);
return;
}
IL_0494:
{
String_t* L_134 = ___name0;
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_135 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)SZArrayNew(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var, (uint32_t)1);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_136 = L_135;
NullCheck(L_136);
ArrayElementTypeCheck (L_136, _stringLiteralDDC3625A3D3A4B7A59AEEE40448DC3DEA5AA00F3);
(L_136)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteralDDC3625A3D3A4B7A59AEEE40448DC3DEA5AA00F3);
ConfigHandler_ValidatePath_m6650D44DB89EBA11558A1E7CF484F73410017B2B(__this, L_134, L_136, /*hidden argument*/NULL);
return;
}
IL_04aa:
{
String_t* L_137 = ___name0;
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_138 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)SZArrayNew(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_139 = L_138;
NullCheck(L_139);
ArrayElementTypeCheck (L_139, _stringLiteral8576BA38A6B54451F2DCD524CBE7A6AEAD448846);
(L_139)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral8576BA38A6B54451F2DCD524CBE7A6AEAD448846);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_140 = L_139;
NullCheck(L_140);
ArrayElementTypeCheck (L_140, _stringLiteralDD20A4ABE85826C9E1FB7E7CF231364434408BFA);
(L_140)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteralDD20A4ABE85826C9E1FB7E7CF231364434408BFA);
ConfigHandler_ValidatePath_m6650D44DB89EBA11558A1E7CF484F73410017B2B(__this, L_137, L_140, /*hidden argument*/NULL);
bool L_141 = ConfigHandler_CheckPath_m26CB4796D1C97445AAB5BEF3087FCC89FAA562B5(__this, _stringLiteral8576BA38A6B54451F2DCD524CBE7A6AEAD448846, /*hidden argument*/NULL);
if (!L_141)
{
goto IL_04dc;
}
}
{
RuntimeObject* L_142 = ___attrs1;
ConfigHandler_ReadClientWellKnown_mA47AACA9CAA00719E17808737E0A70AF690D27E5(__this, L_142, /*hidden argument*/NULL);
return;
}
IL_04dc:
{
RuntimeObject* L_143 = ___attrs1;
ConfigHandler_ReadServiceWellKnown_mD38DAAD543F2F32003C78F2A1F7AD88DD7B42F58(__this, L_143, /*hidden argument*/NULL);
return;
}
IL_04e4:
{
String_t* L_144 = ___name0;
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_145 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)SZArrayNew(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var, (uint32_t)2);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_146 = L_145;
NullCheck(L_146);
ArrayElementTypeCheck (L_146, _stringLiteral8576BA38A6B54451F2DCD524CBE7A6AEAD448846);
(L_146)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral8576BA38A6B54451F2DCD524CBE7A6AEAD448846);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_147 = L_146;
NullCheck(L_147);
ArrayElementTypeCheck (L_147, _stringLiteralDD20A4ABE85826C9E1FB7E7CF231364434408BFA);
(L_147)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteralDD20A4ABE85826C9E1FB7E7CF231364434408BFA);
ConfigHandler_ValidatePath_m6650D44DB89EBA11558A1E7CF484F73410017B2B(__this, L_144, L_147, /*hidden argument*/NULL);
bool L_148 = ConfigHandler_CheckPath_m26CB4796D1C97445AAB5BEF3087FCC89FAA562B5(__this, _stringLiteral8576BA38A6B54451F2DCD524CBE7A6AEAD448846, /*hidden argument*/NULL);
if (!L_148)
{
goto IL_0516;
}
}
{
RuntimeObject* L_149 = ___attrs1;
ConfigHandler_ReadClientActivated_m7E01DB8054D0AC50E5CCDA171D308CFCCC28505C(__this, L_149, /*hidden argument*/NULL);
return;
}
IL_0516:
{
RuntimeObject* L_150 = ___attrs1;
ConfigHandler_ReadServiceActivated_m630525ABAD89F4259F9EB1A734ABBF6C53D1B9DB(__this, L_150, /*hidden argument*/NULL);
return;
}
IL_051e:
{
String_t* L_151 = ___name0;
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_152 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)SZArrayNew(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var, (uint32_t)1);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_153 = L_152;
NullCheck(L_153);
ArrayElementTypeCheck (L_153, _stringLiteralDDC3625A3D3A4B7A59AEEE40448DC3DEA5AA00F3);
(L_153)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteralDDC3625A3D3A4B7A59AEEE40448DC3DEA5AA00F3);
ConfigHandler_ValidatePath_m6650D44DB89EBA11558A1E7CF484F73410017B2B(__this, L_151, L_153, /*hidden argument*/NULL);
return;
}
IL_0534:
{
String_t* L_154 = ___name0;
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_155 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)SZArrayNew(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var, (uint32_t)1);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_156 = L_155;
NullCheck(L_156);
ArrayElementTypeCheck (L_156, _stringLiteral37CE2722D078399B62DDA59FCE70D7047FCCB84D);
(L_156)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral37CE2722D078399B62DDA59FCE70D7047FCCB84D);
ConfigHandler_ValidatePath_m6650D44DB89EBA11558A1E7CF484F73410017B2B(__this, L_154, L_156, /*hidden argument*/NULL);
RuntimeObject* L_157 = ___attrs1;
ConfigHandler_ReadInteropXml_mE9BF2298B774FFF464057429E9F8DB2F60EAF70B(__this, L_157, (bool)0, /*hidden argument*/NULL);
return;
}
IL_0552:
{
String_t* L_158 = ___name0;
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_159 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)SZArrayNew(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var, (uint32_t)1);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_160 = L_159;
NullCheck(L_160);
ArrayElementTypeCheck (L_160, _stringLiteral37CE2722D078399B62DDA59FCE70D7047FCCB84D);
(L_160)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral37CE2722D078399B62DDA59FCE70D7047FCCB84D);
ConfigHandler_ValidatePath_m6650D44DB89EBA11558A1E7CF484F73410017B2B(__this, L_158, L_160, /*hidden argument*/NULL);
RuntimeObject* L_161 = ___attrs1;
ConfigHandler_ReadInteropXml_mE9BF2298B774FFF464057429E9F8DB2F60EAF70B(__this, L_161, (bool)0, /*hidden argument*/NULL);
return;
}
IL_0570:
{
String_t* L_162 = ___name0;
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_163 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)SZArrayNew(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var, (uint32_t)1);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_164 = L_163;
NullCheck(L_164);
ArrayElementTypeCheck (L_164, _stringLiteral37CE2722D078399B62DDA59FCE70D7047FCCB84D);
(L_164)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral37CE2722D078399B62DDA59FCE70D7047FCCB84D);
ConfigHandler_ValidatePath_m6650D44DB89EBA11558A1E7CF484F73410017B2B(__this, L_162, L_164, /*hidden argument*/NULL);
RuntimeObject* L_165 = ___attrs1;
ConfigHandler_ReadPreload_m8F5CCE63EA93444CCB1CE9E0B66BCED3DDA4CCB6(__this, L_165, /*hidden argument*/NULL);
return;
}
IL_058d:
{
String_t* L_166 = ___name0;
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_167 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)SZArrayNew(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var, (uint32_t)1);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_168 = L_167;
NullCheck(L_168);
ArrayElementTypeCheck (L_168, _stringLiteral09AE50F6D0ABA2E4A954B66B8ABEB086FEACFAC7);
(L_168)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral09AE50F6D0ABA2E4A954B66B8ABEB086FEACFAC7);
ConfigHandler_ValidatePath_m6650D44DB89EBA11558A1E7CF484F73410017B2B(__this, L_166, L_168, /*hidden argument*/NULL);
return;
}
IL_05a3:
{
String_t* L_169 = ___name0;
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_170 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)SZArrayNew(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var, (uint32_t)1);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_171 = L_170;
NullCheck(L_171);
ArrayElementTypeCheck (L_171, _stringLiteral09AE50F6D0ABA2E4A954B66B8ABEB086FEACFAC7);
(L_171)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral09AE50F6D0ABA2E4A954B66B8ABEB086FEACFAC7);
ConfigHandler_ValidatePath_m6650D44DB89EBA11558A1E7CF484F73410017B2B(__this, L_169, L_171, /*hidden argument*/NULL);
return;
}
IL_05b9:
{
String_t* L_172 = ___name0;
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_173 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)SZArrayNew(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var, (uint32_t)1);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_174 = L_173;
NullCheck(L_174);
ArrayElementTypeCheck (L_174, _stringLiteral09AE50F6D0ABA2E4A954B66B8ABEB086FEACFAC7);
(L_174)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral09AE50F6D0ABA2E4A954B66B8ABEB086FEACFAC7);
ConfigHandler_ValidatePath_m6650D44DB89EBA11558A1E7CF484F73410017B2B(__this, L_172, L_174, /*hidden argument*/NULL);
RuntimeObject* L_175 = ___attrs1;
NullCheck(L_175);
String_t* L_176 = InterfaceFuncInvoker1< String_t*, String_t* >::Invoke(3 /* System.String Mono.Xml.SmallXmlParser/IAttrList::GetValue(System.String) */, IAttrList_tB08E93C160C8FF2AAE53C3C2F7557421B6BD5CEC_il2cpp_TypeInfo_var, L_175, _stringLiteralAF248E82BE9EBA1ADBF067429FAEE5A5B6E05A74);
IL2CPP_RUNTIME_CLASS_INIT(RemotingConfiguration_t9AFFB44D1A1D02A702140D927B0173593B67D0C5_il2cpp_TypeInfo_var);
RemotingConfiguration_SetCustomErrorsMode_m782F7DBB94F4596E488BB1FB3B0635C7B8D87CC3(L_176, /*hidden argument*/NULL);
return;
}
IL_05df:
{
String_t* L_177 = ___name0;
String_t* L_178 = String_Concat_m89EAB4C6A96B0E5C3F87300D6BE78D386B9EFC44(_stringLiteral0B798356FD894E501D551E417E73077679661C7D, L_177, _stringLiteralBBD11F99363FBD48A19EC93522A2F26D535F4892, /*hidden argument*/NULL);
RemotingException_tEFFC0A283D7F4169F5481926B7FF6C2EB8C76F1B * L_179 = (RemotingException_tEFFC0A283D7F4169F5481926B7FF6C2EB8C76F1B *)il2cpp_codegen_object_new(RemotingException_tEFFC0A283D7F4169F5481926B7FF6C2EB8C76F1B_il2cpp_TypeInfo_var);
RemotingException__ctor_m9D41822220B296C09BE7175E8C2D6F65C195F4E9(L_179, L_178, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_179, ConfigHandler_ParseElement_m9CB7F4673562DF7819A027FD8C165E97C6374239_RuntimeMethod_var);
}
IL_05f5:
{
return;
}
}
// System.Void System.Runtime.Remoting.ConfigHandler::OnEndElement(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfigHandler_OnEndElement_m3BA472E04BDA80ED0A2D4FE57D6E3D5EC371ACFA (ConfigHandler_t669F653CE4E8ABF2323F028523BEDFB5C56C3760 * __this, String_t* ___name0, const RuntimeMethod* method)
{
{
Stack_tF6DD42A42C129B014D4223010F1E0FFBECBDC3B8 * L_0 = __this->get_currentProviderData_3();
if (!L_0)
{
goto IL_0028;
}
}
{
Stack_tF6DD42A42C129B014D4223010F1E0FFBECBDC3B8 * L_1 = __this->get_currentProviderData_3();
NullCheck(L_1);
VirtFuncInvoker0< RuntimeObject * >::Invoke(14 /* System.Object System.Collections.Stack::Pop() */, L_1);
Stack_tF6DD42A42C129B014D4223010F1E0FFBECBDC3B8 * L_2 = __this->get_currentProviderData_3();
NullCheck(L_2);
int32_t L_3 = VirtFuncInvoker0< int32_t >::Invoke(8 /* System.Int32 System.Collections.Stack::get_Count() */, L_2);
if (L_3)
{
goto IL_0028;
}
}
{
__this->set_currentProviderData_3((Stack_tF6DD42A42C129B014D4223010F1E0FFBECBDC3B8 *)NULL);
}
IL_0028:
{
String_t* L_4 = __this->get_currentXmlPath_6();
String_t* L_5 = __this->get_currentXmlPath_6();
NullCheck(L_5);
int32_t L_6 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_5, /*hidden argument*/NULL);
String_t* L_7 = ___name0;
NullCheck(L_7);
int32_t L_8 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_7, /*hidden argument*/NULL);
NullCheck(L_4);
String_t* L_9 = String_Substring_m7A39A2AC0893AE940CF4CEC841326D56FFB9D86B(L_4, 0, ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)L_8)), (int32_t)1)), /*hidden argument*/NULL);
__this->set_currentXmlPath_6(L_9);
return;
}
}
// System.Void System.Runtime.Remoting.ConfigHandler::ReadCustomProviderData(System.String,Mono.Xml.SmallXmlParser_IAttrList)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfigHandler_ReadCustomProviderData_mD9651F007012FAD7376788F85744323687DA5063 (ConfigHandler_t669F653CE4E8ABF2323F028523BEDFB5C56C3760 * __this, String_t* ___name0, RuntimeObject* ___attrs1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ConfigHandler_ReadCustomProviderData_mD9651F007012FAD7376788F85744323687DA5063_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
SinkProviderData_tDCF47C22643A26B1E1F6BB60FA7AE7034053D14E * V_0 = NULL;
SinkProviderData_tDCF47C22643A26B1E1F6BB60FA7AE7034053D14E * V_1 = NULL;
int32_t V_2 = 0;
{
Stack_tF6DD42A42C129B014D4223010F1E0FFBECBDC3B8 * L_0 = __this->get_currentProviderData_3();
NullCheck(L_0);
RuntimeObject * L_1 = VirtFuncInvoker0< RuntimeObject * >::Invoke(13 /* System.Object System.Collections.Stack::Peek() */, L_0);
V_0 = ((SinkProviderData_tDCF47C22643A26B1E1F6BB60FA7AE7034053D14E *)CastclassClass((RuntimeObject*)L_1, SinkProviderData_tDCF47C22643A26B1E1F6BB60FA7AE7034053D14E_il2cpp_TypeInfo_var));
String_t* L_2 = ___name0;
SinkProviderData_tDCF47C22643A26B1E1F6BB60FA7AE7034053D14E * L_3 = (SinkProviderData_tDCF47C22643A26B1E1F6BB60FA7AE7034053D14E *)il2cpp_codegen_object_new(SinkProviderData_tDCF47C22643A26B1E1F6BB60FA7AE7034053D14E_il2cpp_TypeInfo_var);
SinkProviderData__ctor_mE601387E488B5C8D3D5286906BD271F279978AAF(L_3, L_2, /*hidden argument*/NULL);
V_1 = L_3;
V_2 = 0;
goto IL_003a;
}
IL_001c:
{
SinkProviderData_tDCF47C22643A26B1E1F6BB60FA7AE7034053D14E * L_4 = V_1;
NullCheck(L_4);
RuntimeObject* L_5 = SinkProviderData_get_Properties_m292E383DD009906B0067D1E7C5B6483B1A9A193D_inline(L_4, /*hidden argument*/NULL);
RuntimeObject* L_6 = ___attrs1;
NullCheck(L_6);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_7 = InterfaceFuncInvoker0< StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* >::Invoke(4 /* System.String[] Mono.Xml.SmallXmlParser/IAttrList::get_Names() */, IAttrList_tB08E93C160C8FF2AAE53C3C2F7557421B6BD5CEC_il2cpp_TypeInfo_var, L_6);
int32_t L_8 = V_2;
NullCheck(L_7);
int32_t L_9 = L_8;
String_t* L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
RuntimeObject* L_11 = ___attrs1;
int32_t L_12 = V_2;
NullCheck(L_11);
String_t* L_13 = InterfaceFuncInvoker1< String_t*, int32_t >::Invoke(2 /* System.String Mono.Xml.SmallXmlParser/IAttrList::GetValue(System.Int32) */, IAttrList_tB08E93C160C8FF2AAE53C3C2F7557421B6BD5CEC_il2cpp_TypeInfo_var, L_11, L_12);
NullCheck(L_5);
InterfaceActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(1 /* System.Void System.Collections.IDictionary::set_Item(System.Object,System.Object) */, IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A_il2cpp_TypeInfo_var, L_5, L_10, L_13);
int32_t L_14 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)1));
}
IL_003a:
{
int32_t L_15 = V_2;
RuntimeObject* L_16 = ___attrs1;
NullCheck(L_16);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_17 = InterfaceFuncInvoker0< StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* >::Invoke(4 /* System.String[] Mono.Xml.SmallXmlParser/IAttrList::get_Names() */, IAttrList_tB08E93C160C8FF2AAE53C3C2F7557421B6BD5CEC_il2cpp_TypeInfo_var, L_16);
NullCheck(L_17);
if ((((int32_t)L_15) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_17)->max_length)))))))
{
goto IL_001c;
}
}
{
SinkProviderData_tDCF47C22643A26B1E1F6BB60FA7AE7034053D14E * L_18 = V_0;
NullCheck(L_18);
RuntimeObject* L_19 = SinkProviderData_get_Children_m3F6518C43B7DBF4E6D664F15F105F171778543CF_inline(L_18, /*hidden argument*/NULL);
SinkProviderData_tDCF47C22643A26B1E1F6BB60FA7AE7034053D14E * L_20 = V_1;
NullCheck(L_19);
InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(2 /* System.Int32 System.Collections.IList::Add(System.Object) */, IList_tB15A9D6625D09661D6E47976BB626C703EC81910_il2cpp_TypeInfo_var, L_19, L_20);
Stack_tF6DD42A42C129B014D4223010F1E0FFBECBDC3B8 * L_21 = __this->get_currentProviderData_3();
SinkProviderData_tDCF47C22643A26B1E1F6BB60FA7AE7034053D14E * L_22 = V_1;
NullCheck(L_21);
VirtActionInvoker1< RuntimeObject * >::Invoke(15 /* System.Void System.Collections.Stack::Push(System.Object) */, L_21, L_22);
return;
}
}
// System.Void System.Runtime.Remoting.ConfigHandler::ReadLifetine(Mono.Xml.SmallXmlParser_IAttrList)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfigHandler_ReadLifetine_mB98A6CDFAF17ED7442822D2AB6822C639EE37F6D (ConfigHandler_t669F653CE4E8ABF2323F028523BEDFB5C56C3760 * __this, RuntimeObject* ___attrs0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ConfigHandler_ReadLifetine_mB98A6CDFAF17ED7442822D2AB6822C639EE37F6D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
String_t* V_1 = NULL;
{
V_0 = 0;
goto IL_00b2;
}
IL_0007:
{
RuntimeObject* L_0 = ___attrs0;
NullCheck(L_0);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_1 = InterfaceFuncInvoker0< StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* >::Invoke(4 /* System.String[] Mono.Xml.SmallXmlParser/IAttrList::get_Names() */, IAttrList_tB08E93C160C8FF2AAE53C3C2F7557421B6BD5CEC_il2cpp_TypeInfo_var, L_0);
int32_t L_2 = V_0;
NullCheck(L_1);
int32_t L_3 = L_2;
String_t* L_4 = (L_1)->GetAt(static_cast<il2cpp_array_size_t>(L_3));
V_1 = L_4;
String_t* L_5 = V_1;
bool L_6 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_5, _stringLiteralAD6AEA9823C0193210912116B6EA9BCF397B8559, /*hidden argument*/NULL);
if (L_6)
{
goto IL_0046;
}
}
{
String_t* L_7 = V_1;
bool L_8 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_7, _stringLiteral49AD46268852D165D6DD25ADAFB0D9B91B3B62A3, /*hidden argument*/NULL);
if (L_8)
{
goto IL_005a;
}
}
{
String_t* L_9 = V_1;
bool L_10 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_9, _stringLiteral565EF9531125821563B3C16D6B433C236E827A86, /*hidden argument*/NULL);
if (L_10)
{
goto IL_006e;
}
}
{
String_t* L_11 = V_1;
bool L_12 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_11, _stringLiteralA09F246AE21707075DEBEE5144A3AAF265F7C5D4, /*hidden argument*/NULL);
if (L_12)
{
goto IL_0082;
}
}
{
goto IL_0096;
}
IL_0046:
{
RuntimeObject* L_13 = ___attrs0;
int32_t L_14 = V_0;
NullCheck(L_13);
String_t* L_15 = InterfaceFuncInvoker1< String_t*, int32_t >::Invoke(2 /* System.String Mono.Xml.SmallXmlParser/IAttrList::GetValue(System.Int32) */, IAttrList_tB08E93C160C8FF2AAE53C3C2F7557421B6BD5CEC_il2cpp_TypeInfo_var, L_13, L_14);
TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 L_16 = ConfigHandler_ParseTime_mB0917D872E86349D10A033116199EC562E8BF29B(__this, L_15, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(LifetimeServices_tF0C101B662D7B7A3481C924BC01E1623C1AFF6E4_il2cpp_TypeInfo_var);
LifetimeServices_set_LeaseTime_m2480120F8B8F89009F6C4B9FA07642C85F0D0363_inline(L_16, /*hidden argument*/NULL);
goto IL_00ae;
}
IL_005a:
{
RuntimeObject* L_17 = ___attrs0;
int32_t L_18 = V_0;
NullCheck(L_17);
String_t* L_19 = InterfaceFuncInvoker1< String_t*, int32_t >::Invoke(2 /* System.String Mono.Xml.SmallXmlParser/IAttrList::GetValue(System.Int32) */, IAttrList_tB08E93C160C8FF2AAE53C3C2F7557421B6BD5CEC_il2cpp_TypeInfo_var, L_17, L_18);
TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 L_20 = ConfigHandler_ParseTime_mB0917D872E86349D10A033116199EC562E8BF29B(__this, L_19, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(LifetimeServices_tF0C101B662D7B7A3481C924BC01E1623C1AFF6E4_il2cpp_TypeInfo_var);
LifetimeServices_set_SponsorshipTimeout_mA6154F99575D61E3F988FBF3FF9383DB77F70435_inline(L_20, /*hidden argument*/NULL);
goto IL_00ae;
}
IL_006e:
{
RuntimeObject* L_21 = ___attrs0;
int32_t L_22 = V_0;
NullCheck(L_21);
String_t* L_23 = InterfaceFuncInvoker1< String_t*, int32_t >::Invoke(2 /* System.String Mono.Xml.SmallXmlParser/IAttrList::GetValue(System.Int32) */, IAttrList_tB08E93C160C8FF2AAE53C3C2F7557421B6BD5CEC_il2cpp_TypeInfo_var, L_21, L_22);
TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 L_24 = ConfigHandler_ParseTime_mB0917D872E86349D10A033116199EC562E8BF29B(__this, L_23, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(LifetimeServices_tF0C101B662D7B7A3481C924BC01E1623C1AFF6E4_il2cpp_TypeInfo_var);
LifetimeServices_set_RenewOnCallTime_m2D7569123729D47A77173424A1CC3CCA43213CFC_inline(L_24, /*hidden argument*/NULL);
goto IL_00ae;
}
IL_0082:
{
RuntimeObject* L_25 = ___attrs0;
int32_t L_26 = V_0;
NullCheck(L_25);
String_t* L_27 = InterfaceFuncInvoker1< String_t*, int32_t >::Invoke(2 /* System.String Mono.Xml.SmallXmlParser/IAttrList::GetValue(System.Int32) */, IAttrList_tB08E93C160C8FF2AAE53C3C2F7557421B6BD5CEC_il2cpp_TypeInfo_var, L_25, L_26);
TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 L_28 = ConfigHandler_ParseTime_mB0917D872E86349D10A033116199EC562E8BF29B(__this, L_27, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(LifetimeServices_tF0C101B662D7B7A3481C924BC01E1623C1AFF6E4_il2cpp_TypeInfo_var);
LifetimeServices_set_LeaseManagerPollTime_m85E72FB69FD52E9BC5FF070FB7403C9775A07066(L_28, /*hidden argument*/NULL);
goto IL_00ae;
}
IL_0096:
{
RuntimeObject* L_29 = ___attrs0;
NullCheck(L_29);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_30 = InterfaceFuncInvoker0< StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* >::Invoke(4 /* System.String[] Mono.Xml.SmallXmlParser/IAttrList::get_Names() */, IAttrList_tB08E93C160C8FF2AAE53C3C2F7557421B6BD5CEC_il2cpp_TypeInfo_var, L_29);
int32_t L_31 = V_0;
NullCheck(L_30);
int32_t L_32 = L_31;
String_t* L_33 = (L_30)->GetAt(static_cast<il2cpp_array_size_t>(L_32));
String_t* L_34 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(_stringLiteralF10FF70742CFD2A46129F918538797D92389E7A4, L_33, /*hidden argument*/NULL);
RemotingException_tEFFC0A283D7F4169F5481926B7FF6C2EB8C76F1B * L_35 = (RemotingException_tEFFC0A283D7F4169F5481926B7FF6C2EB8C76F1B *)il2cpp_codegen_object_new(RemotingException_tEFFC0A283D7F4169F5481926B7FF6C2EB8C76F1B_il2cpp_TypeInfo_var);
RemotingException__ctor_m9D41822220B296C09BE7175E8C2D6F65C195F4E9(L_35, L_34, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_35, ConfigHandler_ReadLifetine_mB98A6CDFAF17ED7442822D2AB6822C639EE37F6D_RuntimeMethod_var);
}
IL_00ae:
{
int32_t L_36 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_36, (int32_t)1));
}
IL_00b2:
{
int32_t L_37 = V_0;
RuntimeObject* L_38 = ___attrs0;
NullCheck(L_38);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_39 = InterfaceFuncInvoker0< StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* >::Invoke(4 /* System.String[] Mono.Xml.SmallXmlParser/IAttrList::get_Names() */, IAttrList_tB08E93C160C8FF2AAE53C3C2F7557421B6BD5CEC_il2cpp_TypeInfo_var, L_38);
NullCheck(L_39);
if ((((int32_t)L_37) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_39)->max_length)))))))
{
goto IL_0007;
}
}
{
return;
}
}
// System.TimeSpan System.Runtime.Remoting.ConfigHandler::ParseTime(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ConfigHandler_ParseTime_mB0917D872E86349D10A033116199EC562E8BF29B (ConfigHandler_t669F653CE4E8ABF2323F028523BEDFB5C56C3760 * __this, String_t* ___s0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ConfigHandler_ParseTime_mB0917D872E86349D10A033116199EC562E8BF29B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
String_t* V_1 = NULL;
double V_2 = 0.0;
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);
{
String_t* L_0 = ___s0;
bool L_1 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_0, _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709, /*hidden argument*/NULL);
if (L_1)
{
goto IL_0010;
}
}
{
String_t* L_2 = ___s0;
if (L_2)
{
goto IL_001b;
}
}
IL_0010:
{
RemotingException_tEFFC0A283D7F4169F5481926B7FF6C2EB8C76F1B * L_3 = (RemotingException_tEFFC0A283D7F4169F5481926B7FF6C2EB8C76F1B *)il2cpp_codegen_object_new(RemotingException_tEFFC0A283D7F4169F5481926B7FF6C2EB8C76F1B_il2cpp_TypeInfo_var);
RemotingException__ctor_m9D41822220B296C09BE7175E8C2D6F65C195F4E9(L_3, _stringLiteral210B13DC0D9FBABFD7B2D6C9A4704A13D113A558, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ConfigHandler_ParseTime_mB0917D872E86349D10A033116199EC562E8BF29B_RuntimeMethod_var);
}
IL_001b:
{
String_t* L_4 = ___s0;
CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_5 = (CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34*)(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34*)SZArrayNew(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34_il2cpp_TypeInfo_var, (uint32_t)4);
CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_6 = L_5;
RuntimeFieldHandle_t7BE65FC857501059EBAC9772C93B02CD413D9C96 L_7 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t1FC9EB7B833E4E29E3D9E5D2E3DAF8385BED98D8____C1A1100642BA9685B30A84D97348484E14AA1865_79_FieldInfo_var) };
RuntimeHelpers_InitializeArray_mE27238308FED781F2D6A719F0903F2E1311B058F((RuntimeArray *)(RuntimeArray *)L_6, L_7, /*hidden argument*/NULL);
NullCheck(L_4);
int32_t L_8 = String_IndexOfAny_m7E9204CF616E533528CC448D05BC8AF97A7D8038(L_4, L_6, /*hidden argument*/NULL);
V_0 = L_8;
int32_t L_9 = V_0;
if ((!(((uint32_t)L_9) == ((uint32_t)(-1)))))
{
goto IL_003f;
}
}
{
V_1 = _stringLiteral09684B67A5909FD48E1F14A8AF8DDD483C620B10;
goto IL_0051;
}
IL_003f:
{
String_t* L_10 = ___s0;
int32_t L_11 = V_0;
NullCheck(L_10);
String_t* L_12 = String_Substring_mB6B87FD76552BBF6D4E2B9F07F857FE051DCE190(L_10, L_11, /*hidden argument*/NULL);
V_1 = L_12;
String_t* L_13 = ___s0;
int32_t L_14 = V_0;
NullCheck(L_13);
String_t* L_15 = String_Substring_m7A39A2AC0893AE940CF4CEC841326D56FFB9D86B(L_13, 0, L_14, /*hidden argument*/NULL);
___s0 = L_15;
}
IL_0051:
{
}
IL_0052:
try
{ // begin try (depth: 1)
String_t* L_16 = ___s0;
IL2CPP_RUNTIME_CLASS_INIT(Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181_il2cpp_TypeInfo_var);
double L_17 = Double_Parse_mFF5B29ED0585A4847BFE654ABB9E915DFE21B63E(L_16, /*hidden argument*/NULL);
V_2 = L_17;
goto IL_006d;
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (RuntimeObject_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_005b;
throw e;
}
CATCH_005b:
{ // begin catch(System.Object)
String_t* L_18 = ___s0;
String_t* L_19 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(_stringLiteral582EE3459CC9D4075E983D2BB806284C4466E027, L_18, /*hidden argument*/NULL);
RemotingException_tEFFC0A283D7F4169F5481926B7FF6C2EB8C76F1B * L_20 = (RemotingException_tEFFC0A283D7F4169F5481926B7FF6C2EB8C76F1B *)il2cpp_codegen_object_new(RemotingException_tEFFC0A283D7F4169F5481926B7FF6C2EB8C76F1B_il2cpp_TypeInfo_var);
RemotingException__ctor_m9D41822220B296C09BE7175E8C2D6F65C195F4E9(L_20, L_19, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_20, ConfigHandler_ParseTime_mB0917D872E86349D10A033116199EC562E8BF29B_RuntimeMethod_var);
} // end catch (depth: 1)
IL_006d:
{
String_t* L_21 = V_1;
bool L_22 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_21, _stringLiteralA019FB7F17AA36A9743C530E1F11D5613B8B1158, /*hidden argument*/NULL);
if (!L_22)
{
goto IL_0081;
}
}
{
double L_23 = V_2;
IL2CPP_RUNTIME_CLASS_INIT(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_il2cpp_TypeInfo_var);
TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 L_24 = TimeSpan_FromDays_m1B79B7B44CDB0319ED008D2EA56B8144BBBB85DF(L_23, /*hidden argument*/NULL);
return L_24;
}
IL_0081:
{
String_t* L_25 = V_1;
bool L_26 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_25, _stringLiteral410E5346BCA8EE150FFD507311DD85789F2E171E, /*hidden argument*/NULL);
if (!L_26)
{
goto IL_0095;
}
}
{
double L_27 = V_2;
IL2CPP_RUNTIME_CLASS_INIT(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_il2cpp_TypeInfo_var);
TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 L_28 = TimeSpan_FromHours_m2C99B232D4B7BECDF0763E70427CC08746D29E71(L_27, /*hidden argument*/NULL);
return L_28;
}
IL_0095:
{
String_t* L_29 = V_1;
bool L_30 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_29, _stringLiteralDD7461C99FE0AF610527A1F4273DBC4696AB5F17, /*hidden argument*/NULL);
if (!L_30)
{
goto IL_00a9;
}
}
{
double L_31 = V_2;
IL2CPP_RUNTIME_CLASS_INIT(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_il2cpp_TypeInfo_var);
TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 L_32 = TimeSpan_FromMinutes_mAB9F93263460C5FE2BC56C34F268C97EB6035958(L_31, /*hidden argument*/NULL);
return L_32;
}
IL_00a9:
{
String_t* L_33 = V_1;
bool L_34 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_33, _stringLiteral09684B67A5909FD48E1F14A8AF8DDD483C620B10, /*hidden argument*/NULL);
if (!L_34)
{
goto IL_00bd;
}
}
{
double L_35 = V_2;
IL2CPP_RUNTIME_CLASS_INIT(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_il2cpp_TypeInfo_var);
TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 L_36 = TimeSpan_FromSeconds_m4644EABECA69BC6C07AD649C5898A8E53F4FE7B0(L_35, /*hidden argument*/NULL);
return L_36;
}
IL_00bd:
{
String_t* L_37 = V_1;
bool L_38 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_37, _stringLiteral465E2376F6C7424A72DDD9AFA634A35A6E1557AC, /*hidden argument*/NULL);
if (!L_38)
{
goto IL_00d1;
}
}
{
double L_39 = V_2;
IL2CPP_RUNTIME_CLASS_INIT(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_il2cpp_TypeInfo_var);
TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 L_40 = TimeSpan_FromMilliseconds_m12D90542B044C450FDFBCEA1CBC32369479483EC(L_39, /*hidden argument*/NULL);
return L_40;
}
IL_00d1:
{
String_t* L_41 = V_1;
String_t* L_42 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(_stringLiteralFDB43E990DBA2349CEDE4E99EFD003A284CFC9EA, L_41, /*hidden argument*/NULL);
RemotingException_tEFFC0A283D7F4169F5481926B7FF6C2EB8C76F1B * L_43 = (RemotingException_tEFFC0A283D7F4169F5481926B7FF6C2EB8C76F1B *)il2cpp_codegen_object_new(RemotingException_tEFFC0A283D7F4169F5481926B7FF6C2EB8C76F1B_il2cpp_TypeInfo_var);
RemotingException__ctor_m9D41822220B296C09BE7175E8C2D6F65C195F4E9(L_43, L_42, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_43, ConfigHandler_ParseTime_mB0917D872E86349D10A033116199EC562E8BF29B_RuntimeMethod_var);
}
}
// System.Void System.Runtime.Remoting.ConfigHandler::ReadChannel(Mono.Xml.SmallXmlParser_IAttrList,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfigHandler_ReadChannel_m1E5CDC4CA57FF4D98107BA4D1E9E51EFA6E3388C (ConfigHandler_t669F653CE4E8ABF2323F028523BEDFB5C56C3760 * __this, RuntimeObject* ___attrs0, bool ___isTemplate1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ConfigHandler_ReadChannel_m1E5CDC4CA57FF4D98107BA4D1E9E51EFA6E3388C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ChannelData_tEA64A2F1AEEC413430B61C6C7C4A1652EFDD9827 * V_0 = NULL;
int32_t V_1 = 0;
String_t* V_2 = NULL;
String_t* V_3 = NULL;
{
ChannelData_tEA64A2F1AEEC413430B61C6C7C4A1652EFDD9827 * L_0 = (ChannelData_tEA64A2F1AEEC413430B61C6C7C4A1652EFDD9827 *)il2cpp_codegen_object_new(ChannelData_tEA64A2F1AEEC413430B61C6C7C4A1652EFDD9827_il2cpp_TypeInfo_var);
ChannelData__ctor_mC02825366B59C459F8BED049B0FB88907ACF9FA8(L_0, /*hidden argument*/NULL);
V_0 = L_0;
V_1 = 0;
goto IL_008d;
}
IL_000d:
{
RuntimeObject* L_1 = ___attrs0;
NullCheck(L_1);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_2 = InterfaceFuncInvoker0< StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* >::Invoke(4 /* System.String[] Mono.Xml.SmallXmlParser/IAttrList::get_Names() */, IAttrList_tB08E93C160C8FF2AAE53C3C2F7557421B6BD5CEC_il2cpp_TypeInfo_var, L_1);
int32_t L_3 = V_1;
NullCheck(L_2);
int32_t L_4 = L_3;
String_t* L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
V_2 = L_5;
RuntimeObject* L_6 = ___attrs0;
NullCheck(L_6);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_7 = InterfaceFuncInvoker0< StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* >::Invoke(5 /* System.String[] Mono.Xml.SmallXmlParser/IAttrList::get_Values() */, IAttrList_tB08E93C160C8FF2AAE53C3C2F7557421B6BD5CEC_il2cpp_TypeInfo_var, L_6);
int32_t L_8 = V_1;
NullCheck(L_7);
int32_t L_9 = L_8;
String_t* L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
V_3 = L_10;
String_t* L_11 = V_2;
bool L_12 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_11, _stringLiteral5CAD421923F0F10D02AFE6EA17ED4E929131E356, /*hidden argument*/NULL);
if (!L_12)
{
goto IL_0038;
}
}
{
bool L_13 = ___isTemplate1;
if (L_13)
{
goto IL_0038;
}
}
{
ChannelData_tEA64A2F1AEEC413430B61C6C7C4A1652EFDD9827 * L_14 = V_0;
String_t* L_15 = V_3;
NullCheck(L_14);
L_14->set_Ref_0(L_15);
goto IL_0089;
}
IL_0038:
{
String_t* L_16 = V_2;
bool L_17 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_16, _stringLiteralC0F8354533780DDE841AACE39BC7E3CD2C9E84B6, /*hidden argument*/NULL);
if (!L_17)
{
goto IL_004e;
}
}
{
ChannelData_tEA64A2F1AEEC413430B61C6C7C4A1652EFDD9827 * L_18 = V_0;
String_t* L_19 = V_3;
NullCheck(L_18);
L_18->set_DelayLoadAsClientChannel_3(L_19);
goto IL_0089;
}
IL_004e:
{
String_t* L_20 = V_2;
bool L_21 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_20, _stringLiteral996E5360F80E16B2189CC1E536C91CE68083F694, /*hidden argument*/NULL);
bool L_22 = ___isTemplate1;
if (!((int32_t)((int32_t)L_21&(int32_t)L_22)))
{
goto IL_0066;
}
}
{
ChannelData_tEA64A2F1AEEC413430B61C6C7C4A1652EFDD9827 * L_23 = V_0;
String_t* L_24 = V_3;
NullCheck(L_23);
L_23->set_Id_2(L_24);
goto IL_0089;
}
IL_0066:
{
String_t* L_25 = V_2;
bool L_26 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_25, _stringLiteralF3C6C902DBF80139640F6554F0C3392016A8ADF7, /*hidden argument*/NULL);
if (!L_26)
{
goto IL_007c;
}
}
{
ChannelData_tEA64A2F1AEEC413430B61C6C7C4A1652EFDD9827 * L_27 = V_0;
String_t* L_28 = V_3;
NullCheck(L_27);
L_27->set_Type_1(L_28);
goto IL_0089;
}
IL_007c:
{
ChannelData_tEA64A2F1AEEC413430B61C6C7C4A1652EFDD9827 * L_29 = V_0;
NullCheck(L_29);
Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_30 = ChannelData_get_CustomProperties_mA74E570017A4CBA845C655F6D5C4FB6836897969(L_29, /*hidden argument*/NULL);
String_t* L_31 = V_2;
String_t* L_32 = V_3;
NullCheck(L_30);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(15 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_30, L_31, L_32);
}
IL_0089:
{
int32_t L_33 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_33, (int32_t)1));
}
IL_008d:
{
int32_t L_34 = V_1;
RuntimeObject* L_35 = ___attrs0;
NullCheck(L_35);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_36 = InterfaceFuncInvoker0< StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* >::Invoke(4 /* System.String[] Mono.Xml.SmallXmlParser/IAttrList::get_Names() */, IAttrList_tB08E93C160C8FF2AAE53C3C2F7557421B6BD5CEC_il2cpp_TypeInfo_var, L_35);
NullCheck(L_36);
if ((((int32_t)L_34) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_36)->max_length)))))))
{
goto IL_000d;
}
}
{
bool L_37 = ___isTemplate1;
if (!L_37)
{
goto IL_00cc;
}
}
{
ChannelData_tEA64A2F1AEEC413430B61C6C7C4A1652EFDD9827 * L_38 = V_0;
NullCheck(L_38);
String_t* L_39 = L_38->get_Id_2();
if (L_39)
{
goto IL_00b1;
}
}
{
RemotingException_tEFFC0A283D7F4169F5481926B7FF6C2EB8C76F1B * L_40 = (RemotingException_tEFFC0A283D7F4169F5481926B7FF6C2EB8C76F1B *)il2cpp_codegen_object_new(RemotingException_tEFFC0A283D7F4169F5481926B7FF6C2EB8C76F1B_il2cpp_TypeInfo_var);
RemotingException__ctor_m9D41822220B296C09BE7175E8C2D6F65C195F4E9(L_40, _stringLiteral3D51FDDF58308079A043DDCC15BA528167BEE5D3, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_40, ConfigHandler_ReadChannel_m1E5CDC4CA57FF4D98107BA4D1E9E51EFA6E3388C_RuntimeMethod_var);
}
IL_00b1:
{
ChannelData_tEA64A2F1AEEC413430B61C6C7C4A1652EFDD9827 * L_41 = V_0;
NullCheck(L_41);
String_t* L_42 = L_41->get_Type_1();
if (L_42)
{
goto IL_00c4;
}
}
{
RemotingException_tEFFC0A283D7F4169F5481926B7FF6C2EB8C76F1B * L_43 = (RemotingException_tEFFC0A283D7F4169F5481926B7FF6C2EB8C76F1B *)il2cpp_codegen_object_new(RemotingException_tEFFC0A283D7F4169F5481926B7FF6C2EB8C76F1B_il2cpp_TypeInfo_var);
RemotingException__ctor_m9D41822220B296C09BE7175E8C2D6F65C195F4E9(L_43, _stringLiteral3D51FDDF58308079A043DDCC15BA528167BEE5D3, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_43, ConfigHandler_ReadChannel_m1E5CDC4CA57FF4D98107BA4D1E9E51EFA6E3388C_RuntimeMethod_var);
}
IL_00c4:
{
ChannelData_tEA64A2F1AEEC413430B61C6C7C4A1652EFDD9827 * L_44 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(RemotingConfiguration_t9AFFB44D1A1D02A702140D927B0173593B67D0C5_il2cpp_TypeInfo_var);
RemotingConfiguration_RegisterChannelTemplate_m54803CD58591F5BB1BEF1D55916559229C6E91FA(L_44, /*hidden argument*/NULL);
goto IL_00d9;
}
IL_00cc:
{
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_45 = __this->get_channelInstances_1();
ChannelData_tEA64A2F1AEEC413430B61C6C7C4A1652EFDD9827 * L_46 = V_0;
NullCheck(L_45);
VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(24 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_45, L_46);
}
IL_00d9:
{
ChannelData_tEA64A2F1AEEC413430B61C6C7C4A1652EFDD9827 * L_47 = V_0;
__this->set_currentChannel_2(L_47);
return;
}
}
// System.Runtime.Remoting.ProviderData System.Runtime.Remoting.ConfigHandler::ReadProvider(System.String,Mono.Xml.SmallXmlParser_IAttrList,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ProviderData_t2E4B222839D59BB2D2C44E370FA8ED37DAF4F582 * ConfigHandler_ReadProvider_m070DE5BF3F25AC2E34E61D6A67D13D6613F9A56B (ConfigHandler_t669F653CE4E8ABF2323F028523BEDFB5C56C3760 * __this, String_t* ___name0, RuntimeObject* ___attrs1, bool ___isTemplate2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ConfigHandler_ReadProvider_m070DE5BF3F25AC2E34E61D6A67D13D6613F9A56B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ProviderData_t2E4B222839D59BB2D2C44E370FA8ED37DAF4F582 * V_0 = NULL;
SinkProviderData_tDCF47C22643A26B1E1F6BB60FA7AE7034053D14E * V_1 = NULL;
int32_t V_2 = 0;
String_t* V_3 = NULL;
String_t* V_4 = NULL;
FormatterData_t949FC0175724CB0B0A0CECED5896D0597B2CC955 * G_B3_0 = NULL;
{
String_t* L_0 = ___name0;
bool L_1 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_0, _stringLiteral1E9918A305DD44C6C5253BF7305AB7758C686BB5, /*hidden argument*/NULL);
if (L_1)
{
goto IL_0014;
}
}
{
FormatterData_t949FC0175724CB0B0A0CECED5896D0597B2CC955 * L_2 = (FormatterData_t949FC0175724CB0B0A0CECED5896D0597B2CC955 *)il2cpp_codegen_object_new(FormatterData_t949FC0175724CB0B0A0CECED5896D0597B2CC955_il2cpp_TypeInfo_var);
FormatterData__ctor_m070DEE194A6F38FA3500B303AC39FF97B9294643(L_2, /*hidden argument*/NULL);
G_B3_0 = L_2;
goto IL_0019;
}
IL_0014:
{
ProviderData_t2E4B222839D59BB2D2C44E370FA8ED37DAF4F582 * L_3 = (ProviderData_t2E4B222839D59BB2D2C44E370FA8ED37DAF4F582 *)il2cpp_codegen_object_new(ProviderData_t2E4B222839D59BB2D2C44E370FA8ED37DAF4F582_il2cpp_TypeInfo_var);
ProviderData__ctor_mD5E0B1DB88554294B57100CA92B42A01F94E4CAA(L_3, /*hidden argument*/NULL);
G_B3_0 = ((FormatterData_t949FC0175724CB0B0A0CECED5896D0597B2CC955 *)(L_3));
}
IL_0019:
{
V_0 = G_B3_0;
SinkProviderData_tDCF47C22643A26B1E1F6BB60FA7AE7034053D14E * L_4 = (SinkProviderData_tDCF47C22643A26B1E1F6BB60FA7AE7034053D14E *)il2cpp_codegen_object_new(SinkProviderData_tDCF47C22643A26B1E1F6BB60FA7AE7034053D14E_il2cpp_TypeInfo_var);
SinkProviderData__ctor_mE601387E488B5C8D3D5286906BD271F279978AAF(L_4, _stringLiteralA2E138AD319A0E08FFC4A185CE05933BF5C01D5C, /*hidden argument*/NULL);
V_1 = L_4;
ProviderData_t2E4B222839D59BB2D2C44E370FA8ED37DAF4F582 * L_5 = V_0;
SinkProviderData_tDCF47C22643A26B1E1F6BB60FA7AE7034053D14E * L_6 = V_1;
NullCheck(L_6);
RuntimeObject* L_7 = SinkProviderData_get_Children_m3F6518C43B7DBF4E6D664F15F105F171778543CF_inline(L_6, /*hidden argument*/NULL);
NullCheck(L_5);
L_5->set_CustomData_4(L_7);
Stack_tF6DD42A42C129B014D4223010F1E0FFBECBDC3B8 * L_8 = (Stack_tF6DD42A42C129B014D4223010F1E0FFBECBDC3B8 *)il2cpp_codegen_object_new(Stack_tF6DD42A42C129B014D4223010F1E0FFBECBDC3B8_il2cpp_TypeInfo_var);
Stack__ctor_m7B7EA279423863156F25A04362D9FE6C89FAFE70(L_8, /*hidden argument*/NULL);
__this->set_currentProviderData_3(L_8);
Stack_tF6DD42A42C129B014D4223010F1E0FFBECBDC3B8 * L_9 = __this->get_currentProviderData_3();
SinkProviderData_tDCF47C22643A26B1E1F6BB60FA7AE7034053D14E * L_10 = V_1;
NullCheck(L_9);
VirtActionInvoker1< RuntimeObject * >::Invoke(15 /* System.Void System.Collections.Stack::Push(System.Object) */, L_9, L_10);
V_2 = 0;
goto IL_00bb;
}
IL_004c:
{
RuntimeObject* L_11 = ___attrs1;
NullCheck(L_11);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_12 = InterfaceFuncInvoker0< StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* >::Invoke(4 /* System.String[] Mono.Xml.SmallXmlParser/IAttrList::get_Names() */, IAttrList_tB08E93C160C8FF2AAE53C3C2F7557421B6BD5CEC_il2cpp_TypeInfo_var, L_11);
int32_t L_13 = V_2;
NullCheck(L_12);
int32_t L_14 = L_13;
String_t* L_15 = (L_12)->GetAt(static_cast<il2cpp_array_size_t>(L_14));
V_3 = L_15;
RuntimeObject* L_16 = ___attrs1;
NullCheck(L_16);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_17 = InterfaceFuncInvoker0< StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* >::Invoke(5 /* System.String[] Mono.Xml.SmallXmlParser/IAttrList::get_Values() */, IAttrList_tB08E93C160C8FF2AAE53C3C2F7557421B6BD5CEC_il2cpp_TypeInfo_var, L_16);
int32_t L_18 = V_2;
NullCheck(L_17);
int32_t L_19 = L_18;
String_t* L_20 = (L_17)->GetAt(static_cast<il2cpp_array_size_t>(L_19));
V_4 = L_20;
String_t* L_21 = V_3;
bool L_22 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_21, _stringLiteral996E5360F80E16B2189CC1E536C91CE68083F694, /*hidden argument*/NULL);
bool L_23 = ___isTemplate2;
if (!((int32_t)((int32_t)L_22&(int32_t)L_23)))
{
goto IL_0078;
}
}
{
ProviderData_t2E4B222839D59BB2D2C44E370FA8ED37DAF4F582 * L_24 = V_0;
String_t* L_25 = V_4;
NullCheck(L_24);
L_24->set_Id_2(L_25);
goto IL_00b7;
}
IL_0078:
{
String_t* L_26 = V_3;
bool L_27 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_26, _stringLiteralF3C6C902DBF80139640F6554F0C3392016A8ADF7, /*hidden argument*/NULL);
if (!L_27)
{
goto IL_008f;
}
}
{
ProviderData_t2E4B222839D59BB2D2C44E370FA8ED37DAF4F582 * L_28 = V_0;
String_t* L_29 = V_4;
NullCheck(L_28);
L_28->set_Type_1(L_29);
goto IL_00b7;
}
IL_008f:
{
String_t* L_30 = V_3;
bool L_31 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_30, _stringLiteral5CAD421923F0F10D02AFE6EA17ED4E929131E356, /*hidden argument*/NULL);
if (!L_31)
{
goto IL_00a9;
}
}
{
bool L_32 = ___isTemplate2;
if (L_32)
{
goto IL_00a9;
}
}
{
ProviderData_t2E4B222839D59BB2D2C44E370FA8ED37DAF4F582 * L_33 = V_0;
String_t* L_34 = V_4;
NullCheck(L_33);
L_33->set_Ref_0(L_34);
goto IL_00b7;
}
IL_00a9:
{
ProviderData_t2E4B222839D59BB2D2C44E370FA8ED37DAF4F582 * L_35 = V_0;
NullCheck(L_35);
Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_36 = L_35->get_CustomProperties_3();
String_t* L_37 = V_3;
String_t* L_38 = V_4;
NullCheck(L_36);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(15 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_36, L_37, L_38);
}
IL_00b7:
{
int32_t L_39 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_39, (int32_t)1));
}
IL_00bb:
{
int32_t L_40 = V_2;
RuntimeObject* L_41 = ___attrs1;
NullCheck(L_41);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_42 = InterfaceFuncInvoker0< StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* >::Invoke(4 /* System.String[] Mono.Xml.SmallXmlParser/IAttrList::get_Names() */, IAttrList_tB08E93C160C8FF2AAE53C3C2F7557421B6BD5CEC_il2cpp_TypeInfo_var, L_41);
NullCheck(L_42);
if ((((int32_t)L_40) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_42)->max_length)))))))
{
goto IL_004c;
}
}
{
ProviderData_t2E4B222839D59BB2D2C44E370FA8ED37DAF4F582 * L_43 = V_0;
NullCheck(L_43);
String_t* L_44 = L_43->get_Id_2();
bool L_45 = ___isTemplate2;
if (!((int32_t)((int32_t)((((RuntimeObject*)(String_t*)L_44) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0)&(int32_t)L_45)))
{
goto IL_00de;
}
}
{
RemotingException_tEFFC0A283D7F4169F5481926B7FF6C2EB8C76F1B * L_46 = (RemotingException_tEFFC0A283D7F4169F5481926B7FF6C2EB8C76F1B *)il2cpp_codegen_object_new(RemotingException_tEFFC0A283D7F4169F5481926B7FF6C2EB8C76F1B_il2cpp_TypeInfo_var);
RemotingException__ctor_m9D41822220B296C09BE7175E8C2D6F65C195F4E9(L_46, _stringLiteral3D51FDDF58308079A043DDCC15BA528167BEE5D3, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_46, ConfigHandler_ReadProvider_m070DE5BF3F25AC2E34E61D6A67D13D6613F9A56B_RuntimeMethod_var);
}
IL_00de:
{
ProviderData_t2E4B222839D59BB2D2C44E370FA8ED37DAF4F582 * L_47 = V_0;
return L_47;
}
}
// System.Void System.Runtime.Remoting.ConfigHandler::ReadClientActivated(Mono.Xml.SmallXmlParser_IAttrList)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfigHandler_ReadClientActivated_m7E01DB8054D0AC50E5CCDA171D308CFCCC28505C (ConfigHandler_t669F653CE4E8ABF2323F028523BEDFB5C56C3760 * __this, RuntimeObject* ___attrs0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ConfigHandler_ReadClientActivated_m7E01DB8054D0AC50E5CCDA171D308CFCCC28505C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
String_t* V_1 = NULL;
{
RuntimeObject* L_0 = ___attrs0;
String_t* L_1 = ConfigHandler_GetNotNull_m1B24F15F946B226D2E332D7FC7804B26BB0679FD(__this, L_0, _stringLiteralF3C6C902DBF80139640F6554F0C3392016A8ADF7, /*hidden argument*/NULL);
V_0 = L_1;
String_t* L_2 = ConfigHandler_ExtractAssembly_m5B0964FBCAE8F98AAEBB9C55EAD26376F96ADC6D(__this, (String_t**)(&V_0), /*hidden argument*/NULL);
V_1 = L_2;
String_t* L_3 = __this->get_currentClientUrl_4();
if (!L_3)
{
goto IL_0030;
}
}
{
String_t* L_4 = __this->get_currentClientUrl_4();
bool L_5 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_4, _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709, /*hidden argument*/NULL);
if (!L_5)
{
goto IL_003b;
}
}
IL_0030:
{
RemotingException_tEFFC0A283D7F4169F5481926B7FF6C2EB8C76F1B * L_6 = (RemotingException_tEFFC0A283D7F4169F5481926B7FF6C2EB8C76F1B *)il2cpp_codegen_object_new(RemotingException_tEFFC0A283D7F4169F5481926B7FF6C2EB8C76F1B_il2cpp_TypeInfo_var);
RemotingException__ctor_m9D41822220B296C09BE7175E8C2D6F65C195F4E9(L_6, _stringLiteralE18761C0FDAEFA215AB6DA404232AC5B2FE96ED6, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ConfigHandler_ReadClientActivated_m7E01DB8054D0AC50E5CCDA171D308CFCCC28505C_RuntimeMethod_var);
}
IL_003b:
{
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_7 = __this->get_typeEntries_0();
String_t* L_8 = V_0;
String_t* L_9 = V_1;
String_t* L_10 = __this->get_currentClientUrl_4();
ActivatedClientTypeEntry_t66A69B1534DEAA65BB13C418074C41B27F4662A3 * L_11 = (ActivatedClientTypeEntry_t66A69B1534DEAA65BB13C418074C41B27F4662A3 *)il2cpp_codegen_object_new(ActivatedClientTypeEntry_t66A69B1534DEAA65BB13C418074C41B27F4662A3_il2cpp_TypeInfo_var);
ActivatedClientTypeEntry__ctor_m9957D7EF8A4CDFD787AF51582212A3014183AEFB(L_11, L_8, L_9, L_10, /*hidden argument*/NULL);
NullCheck(L_7);
VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(24 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_7, L_11);
return;
}
}
// System.Void System.Runtime.Remoting.ConfigHandler::ReadServiceActivated(Mono.Xml.SmallXmlParser_IAttrList)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfigHandler_ReadServiceActivated_m630525ABAD89F4259F9EB1A734ABBF6C53D1B9DB (ConfigHandler_t669F653CE4E8ABF2323F028523BEDFB5C56C3760 * __this, RuntimeObject* ___attrs0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ConfigHandler_ReadServiceActivated_m630525ABAD89F4259F9EB1A734ABBF6C53D1B9DB_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
String_t* V_1 = NULL;
{
RuntimeObject* L_0 = ___attrs0;
String_t* L_1 = ConfigHandler_GetNotNull_m1B24F15F946B226D2E332D7FC7804B26BB0679FD(__this, L_0, _stringLiteralF3C6C902DBF80139640F6554F0C3392016A8ADF7, /*hidden argument*/NULL);
V_0 = L_1;
String_t* L_2 = ConfigHandler_ExtractAssembly_m5B0964FBCAE8F98AAEBB9C55EAD26376F96ADC6D(__this, (String_t**)(&V_0), /*hidden argument*/NULL);
V_1 = L_2;
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_3 = __this->get_typeEntries_0();
String_t* L_4 = V_0;
String_t* L_5 = V_1;
ActivatedServiceTypeEntry_t0DA790E1B80AFC9F7C69388B70AEC3F24C706274 * L_6 = (ActivatedServiceTypeEntry_t0DA790E1B80AFC9F7C69388B70AEC3F24C706274 *)il2cpp_codegen_object_new(ActivatedServiceTypeEntry_t0DA790E1B80AFC9F7C69388B70AEC3F24C706274_il2cpp_TypeInfo_var);
ActivatedServiceTypeEntry__ctor_m4CDE8EAD3C1DB488F5BF0E4B833F8499F526ADB9(L_6, L_4, L_5, /*hidden argument*/NULL);
NullCheck(L_3);
VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(24 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_3, L_6);
return;
}
}
// System.Void System.Runtime.Remoting.ConfigHandler::ReadClientWellKnown(Mono.Xml.SmallXmlParser_IAttrList)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfigHandler_ReadClientWellKnown_mA47AACA9CAA00719E17808737E0A70AF690D27E5 (ConfigHandler_t669F653CE4E8ABF2323F028523BEDFB5C56C3760 * __this, RuntimeObject* ___attrs0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ConfigHandler_ReadClientWellKnown_mA47AACA9CAA00719E17808737E0A70AF690D27E5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
String_t* V_1 = NULL;
String_t* V_2 = NULL;
{
RuntimeObject* L_0 = ___attrs0;
String_t* L_1 = ConfigHandler_GetNotNull_m1B24F15F946B226D2E332D7FC7804B26BB0679FD(__this, L_0, _stringLiteral0458562336F91AC3F0C3FE71A886E75CE5C8F84A, /*hidden argument*/NULL);
V_0 = L_1;
RuntimeObject* L_2 = ___attrs0;
String_t* L_3 = ConfigHandler_GetNotNull_m1B24F15F946B226D2E332D7FC7804B26BB0679FD(__this, L_2, _stringLiteralF3C6C902DBF80139640F6554F0C3392016A8ADF7, /*hidden argument*/NULL);
V_1 = L_3;
String_t* L_4 = ConfigHandler_ExtractAssembly_m5B0964FBCAE8F98AAEBB9C55EAD26376F96ADC6D(__this, (String_t**)(&V_1), /*hidden argument*/NULL);
V_2 = L_4;
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_5 = __this->get_typeEntries_0();
String_t* L_6 = V_1;
String_t* L_7 = V_2;
String_t* L_8 = V_0;
WellKnownClientTypeEntry_tF15BE481E09131FA6D056BC004B31525261ED4FD * L_9 = (WellKnownClientTypeEntry_tF15BE481E09131FA6D056BC004B31525261ED4FD *)il2cpp_codegen_object_new(WellKnownClientTypeEntry_tF15BE481E09131FA6D056BC004B31525261ED4FD_il2cpp_TypeInfo_var);
WellKnownClientTypeEntry__ctor_m0ADE71F4D821B5DEAB588444DCAB2C6F3A369582(L_9, L_6, L_7, L_8, /*hidden argument*/NULL);
NullCheck(L_5);
VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(24 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_5, L_9);
return;
}
}
// System.Void System.Runtime.Remoting.ConfigHandler::ReadServiceWellKnown(Mono.Xml.SmallXmlParser_IAttrList)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfigHandler_ReadServiceWellKnown_mD38DAAD543F2F32003C78F2A1F7AD88DD7B42F58 (ConfigHandler_t669F653CE4E8ABF2323F028523BEDFB5C56C3760 * __this, RuntimeObject* ___attrs0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ConfigHandler_ReadServiceWellKnown_mD38DAAD543F2F32003C78F2A1F7AD88DD7B42F58_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
String_t* V_1 = NULL;
String_t* V_2 = NULL;
String_t* V_3 = NULL;
int32_t V_4 = 0;
{
RuntimeObject* L_0 = ___attrs0;
String_t* L_1 = ConfigHandler_GetNotNull_m1B24F15F946B226D2E332D7FC7804B26BB0679FD(__this, L_0, _stringLiteralD5E5293FEA09B88C13C6F9BF3792382B40D9CBF7, /*hidden argument*/NULL);
V_0 = L_1;
RuntimeObject* L_2 = ___attrs0;
String_t* L_3 = ConfigHandler_GetNotNull_m1B24F15F946B226D2E332D7FC7804B26BB0679FD(__this, L_2, _stringLiteralAF248E82BE9EBA1ADBF067429FAEE5A5B6E05A74, /*hidden argument*/NULL);
V_1 = L_3;
RuntimeObject* L_4 = ___attrs0;
String_t* L_5 = ConfigHandler_GetNotNull_m1B24F15F946B226D2E332D7FC7804B26BB0679FD(__this, L_4, _stringLiteralF3C6C902DBF80139640F6554F0C3392016A8ADF7, /*hidden argument*/NULL);
V_2 = L_5;
String_t* L_6 = ConfigHandler_ExtractAssembly_m5B0964FBCAE8F98AAEBB9C55EAD26376F96ADC6D(__this, (String_t**)(&V_2), /*hidden argument*/NULL);
V_3 = L_6;
String_t* L_7 = V_1;
bool L_8 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_7, _stringLiteral7D0595560900309D36167206F8ED4086F6F4414F, /*hidden argument*/NULL);
if (!L_8)
{
goto IL_0042;
}
}
{
V_4 = 2;
goto IL_006a;
}
IL_0042:
{
String_t* L_9 = V_1;
bool L_10 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_9, _stringLiteral1DFD50EF03F4A649921CD3B98FC9BBFE2657338B, /*hidden argument*/NULL);
if (!L_10)
{
goto IL_0054;
}
}
{
V_4 = 1;
goto IL_006a;
}
IL_0054:
{
String_t* L_11 = V_1;
String_t* L_12 = String_Concat_m89EAB4C6A96B0E5C3F87300D6BE78D386B9EFC44(_stringLiteral490345002F497F677B5F4196B8362970016B8E51, L_11, _stringLiteralE0E65D0FD281A20B81EE66FB465F7427E8240937, /*hidden argument*/NULL);
RemotingException_tEFFC0A283D7F4169F5481926B7FF6C2EB8C76F1B * L_13 = (RemotingException_tEFFC0A283D7F4169F5481926B7FF6C2EB8C76F1B *)il2cpp_codegen_object_new(RemotingException_tEFFC0A283D7F4169F5481926B7FF6C2EB8C76F1B_il2cpp_TypeInfo_var);
RemotingException__ctor_m9D41822220B296C09BE7175E8C2D6F65C195F4E9(L_13, L_12, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, ConfigHandler_ReadServiceWellKnown_mD38DAAD543F2F32003C78F2A1F7AD88DD7B42F58_RuntimeMethod_var);
}
IL_006a:
{
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_14 = __this->get_typeEntries_0();
String_t* L_15 = V_2;
String_t* L_16 = V_3;
String_t* L_17 = V_0;
int32_t L_18 = V_4;
WellKnownServiceTypeEntry_t98CBB552396BFD8971C9C23000B68613B8D67F9D * L_19 = (WellKnownServiceTypeEntry_t98CBB552396BFD8971C9C23000B68613B8D67F9D *)il2cpp_codegen_object_new(WellKnownServiceTypeEntry_t98CBB552396BFD8971C9C23000B68613B8D67F9D_il2cpp_TypeInfo_var);
WellKnownServiceTypeEntry__ctor_m8F6F17E50BE47BFACC2929D05EA5E73BD94800FD(L_19, L_15, L_16, L_17, L_18, /*hidden argument*/NULL);
NullCheck(L_14);
VirtFuncInvoker1< int32_t, RuntimeObject * >::Invoke(24 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_14, L_19);
return;
}
}
// System.Void System.Runtime.Remoting.ConfigHandler::ReadInteropXml(Mono.Xml.SmallXmlParser_IAttrList,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfigHandler_ReadInteropXml_mE9BF2298B774FFF464057429E9F8DB2F60EAF70B (ConfigHandler_t669F653CE4E8ABF2323F028523BEDFB5C56C3760 * __this, RuntimeObject* ___attrs0, bool ___isElement1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ConfigHandler_ReadInteropXml_mE9BF2298B774FFF464057429E9F8DB2F60EAF70B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Type_t * V_0 = NULL;
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* V_1 = NULL;
String_t* V_2 = NULL;
String_t* V_3 = NULL;
String_t* G_B3_0 = NULL;
{
RuntimeObject* L_0 = ___attrs0;
String_t* L_1 = ConfigHandler_GetNotNull_m1B24F15F946B226D2E332D7FC7804B26BB0679FD(__this, L_0, _stringLiteralDA109A16D6803B1282A1EB563D22C1A43E64C5F8, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_2 = il2cpp_codegen_get_type(Type_GetType_m2D692327E10692E11116805CC604CD47F144A9E4_RuntimeMethod_var, L_1, ConfigHandler_ReadInteropXml_mE9BF2298B774FFF464057429E9F8DB2F60EAF70B_RuntimeMethod_var);
V_0 = L_2;
RuntimeObject* L_3 = ___attrs0;
String_t* L_4 = ConfigHandler_GetNotNull_m1B24F15F946B226D2E332D7FC7804B26BB0679FD(__this, L_3, _stringLiteralBECFA9FA31EDDEEE54C61C3D0DD81CBF07EA7158, /*hidden argument*/NULL);
CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_5 = (CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34*)(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34*)SZArrayNew(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34_il2cpp_TypeInfo_var, (uint32_t)1);
CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_6 = L_5;
NullCheck(L_6);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(0), (Il2CppChar)((int32_t)44));
NullCheck(L_4);
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_7 = String_Split_m2C74DC2B85B322998094BEDE787C378822E1F28B(L_4, L_6, /*hidden argument*/NULL);
V_1 = L_7;
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_8 = V_1;
NullCheck(L_8);
int32_t L_9 = 0;
String_t* L_10 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
NullCheck(L_10);
String_t* L_11 = String_Trim_m3FEC641D7046124B7F381701903B50B5171DE0A2(L_10, /*hidden argument*/NULL);
V_2 = L_11;
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_12 = V_1;
NullCheck(L_12);
if ((((RuntimeArray*)L_12)->max_length))
{
goto IL_003f;
}
}
{
G_B3_0 = ((String_t*)(NULL));
goto IL_0047;
}
IL_003f:
{
StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_13 = V_1;
NullCheck(L_13);
int32_t L_14 = 1;
String_t* L_15 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_14));
NullCheck(L_15);
String_t* L_16 = String_Trim_m3FEC641D7046124B7F381701903B50B5171DE0A2(L_15, /*hidden argument*/NULL);
G_B3_0 = L_16;
}
IL_0047:
{
V_3 = G_B3_0;
bool L_17 = ___isElement1;
if (!L_17)
{
goto IL_0054;
}
}
{
String_t* L_18 = V_2;
String_t* L_19 = V_3;
Type_t * L_20 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(SoapServices_tF5C603622E5CA7C74CE4C673ADEB2AE77B95273B_il2cpp_TypeInfo_var);
SoapServices_RegisterInteropXmlElement_m8B86D916FC179848F07C857FAB64C46A75C1A3D8(L_18, L_19, L_20, /*hidden argument*/NULL);
return;
}
IL_0054:
{
String_t* L_21 = V_2;
String_t* L_22 = V_3;
Type_t * L_23 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(SoapServices_tF5C603622E5CA7C74CE4C673ADEB2AE77B95273B_il2cpp_TypeInfo_var);
SoapServices_RegisterInteropXmlType_m856F412086C4E31B2AC2D4B614449D4407969727(L_21, L_22, L_23, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Runtime.Remoting.ConfigHandler::ReadPreload(Mono.Xml.SmallXmlParser_IAttrList)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfigHandler_ReadPreload_m8F5CCE63EA93444CCB1CE9E0B66BCED3DDA4CCB6 (ConfigHandler_t669F653CE4E8ABF2323F028523BEDFB5C56C3760 * __this, RuntimeObject* ___attrs0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ConfigHandler_ReadPreload_m8F5CCE63EA93444CCB1CE9E0B66BCED3DDA4CCB6_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
String_t* V_1 = NULL;
{
RuntimeObject* L_0 = ___attrs0;
NullCheck(L_0);
String_t* L_1 = InterfaceFuncInvoker1< String_t*, String_t* >::Invoke(3 /* System.String Mono.Xml.SmallXmlParser/IAttrList::GetValue(System.String) */, IAttrList_tB08E93C160C8FF2AAE53C3C2F7557421B6BD5CEC_il2cpp_TypeInfo_var, L_0, _stringLiteralF3C6C902DBF80139640F6554F0C3392016A8ADF7);
V_0 = L_1;
RuntimeObject* L_2 = ___attrs0;
NullCheck(L_2);
String_t* L_3 = InterfaceFuncInvoker1< String_t*, String_t* >::Invoke(3 /* System.String Mono.Xml.SmallXmlParser/IAttrList::GetValue(System.String) */, IAttrList_tB08E93C160C8FF2AAE53C3C2F7557421B6BD5CEC_il2cpp_TypeInfo_var, L_2, _stringLiteralDA39F9AE1465FB1F5899C048F1CDCBA81494B0C8);
V_1 = L_3;
String_t* L_4 = V_0;
if (!L_4)
{
goto IL_0029;
}
}
{
String_t* L_5 = V_1;
if (!L_5)
{
goto IL_0029;
}
}
{
RemotingException_tEFFC0A283D7F4169F5481926B7FF6C2EB8C76F1B * L_6 = (RemotingException_tEFFC0A283D7F4169F5481926B7FF6C2EB8C76F1B *)il2cpp_codegen_object_new(RemotingException_tEFFC0A283D7F4169F5481926B7FF6C2EB8C76F1B_il2cpp_TypeInfo_var);
RemotingException__ctor_m9D41822220B296C09BE7175E8C2D6F65C195F4E9(L_6, _stringLiteral8E3EB4278522B6168F859CF94CF470FCCC6EA287, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ConfigHandler_ReadPreload_m8F5CCE63EA93444CCB1CE9E0B66BCED3DDA4CCB6_RuntimeMethod_var);
}
IL_0029:
{
String_t* L_7 = V_0;
if (!L_7)
{
goto IL_0038;
}
}
{
String_t* L_8 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_9 = il2cpp_codegen_get_type(Type_GetType_m2D692327E10692E11116805CC604CD47F144A9E4_RuntimeMethod_var, L_8, ConfigHandler_ReadPreload_m8F5CCE63EA93444CCB1CE9E0B66BCED3DDA4CCB6_RuntimeMethod_var);
IL2CPP_RUNTIME_CLASS_INIT(SoapServices_tF5C603622E5CA7C74CE4C673ADEB2AE77B95273B_il2cpp_TypeInfo_var);
SoapServices_PreLoad_m780F9561F7119B2A8D52ABA21FE26EEC1D212BD7(L_9, /*hidden argument*/NULL);
return;
}
IL_0038:
{
String_t* L_10 = V_1;
if (!L_10)
{
goto IL_0047;
}
}
{
String_t* L_11 = V_1;
Assembly_t * L_12 = Assembly_Load_m3B24B1EFB2FF6E40186586C3BE135D335BBF3A0A(L_11, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(SoapServices_tF5C603622E5CA7C74CE4C673ADEB2AE77B95273B_il2cpp_TypeInfo_var);
SoapServices_PreLoad_m9DFF436F910C13BE2BC4F67C9ABFD75AAF93F860(L_12, /*hidden argument*/NULL);
return;
}
IL_0047:
{
RemotingException_tEFFC0A283D7F4169F5481926B7FF6C2EB8C76F1B * L_13 = (RemotingException_tEFFC0A283D7F4169F5481926B7FF6C2EB8C76F1B *)il2cpp_codegen_object_new(RemotingException_tEFFC0A283D7F4169F5481926B7FF6C2EB8C76F1B_il2cpp_TypeInfo_var);
RemotingException__ctor_m9D41822220B296C09BE7175E8C2D6F65C195F4E9(L_13, _stringLiteral60DD930E5A5E811ABBC8E526C1ACA88F58EA4C81, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, ConfigHandler_ReadPreload_m8F5CCE63EA93444CCB1CE9E0B66BCED3DDA4CCB6_RuntimeMethod_var);
}
}
// System.String System.Runtime.Remoting.ConfigHandler::GetNotNull(Mono.Xml.SmallXmlParser_IAttrList,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ConfigHandler_GetNotNull_m1B24F15F946B226D2E332D7FC7804B26BB0679FD (ConfigHandler_t669F653CE4E8ABF2323F028523BEDFB5C56C3760 * __this, RuntimeObject* ___attrs0, String_t* ___name1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ConfigHandler_GetNotNull_m1B24F15F946B226D2E332D7FC7804B26BB0679FD_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
RuntimeObject* L_0 = ___attrs0;
String_t* L_1 = ___name1;
NullCheck(L_0);
String_t* L_2 = InterfaceFuncInvoker1< String_t*, String_t* >::Invoke(3 /* System.String Mono.Xml.SmallXmlParser/IAttrList::GetValue(System.String) */, IAttrList_tB08E93C160C8FF2AAE53C3C2F7557421B6BD5CEC_il2cpp_TypeInfo_var, L_0, L_1);
V_0 = L_2;
String_t* L_3 = V_0;
if (!L_3)
{
goto IL_0018;
}
}
{
String_t* L_4 = V_0;
bool L_5 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_4, _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709, /*hidden argument*/NULL);
if (!L_5)
{
goto IL_0029;
}
}
IL_0018:
{
String_t* L_6 = ___name1;
String_t* L_7 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(L_6, _stringLiteralC89BC4B651526324A940F43DBDDD65881B0A8201, /*hidden argument*/NULL);
RemotingException_tEFFC0A283D7F4169F5481926B7FF6C2EB8C76F1B * L_8 = (RemotingException_tEFFC0A283D7F4169F5481926B7FF6C2EB8C76F1B *)il2cpp_codegen_object_new(RemotingException_tEFFC0A283D7F4169F5481926B7FF6C2EB8C76F1B_il2cpp_TypeInfo_var);
RemotingException__ctor_m9D41822220B296C09BE7175E8C2D6F65C195F4E9(L_8, L_7, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ConfigHandler_GetNotNull_m1B24F15F946B226D2E332D7FC7804B26BB0679FD_RuntimeMethod_var);
}
IL_0029:
{
String_t* L_9 = V_0;
return L_9;
}
}
// System.String System.Runtime.Remoting.ConfigHandler::ExtractAssembly(System.String&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ConfigHandler_ExtractAssembly_m5B0964FBCAE8F98AAEBB9C55EAD26376F96ADC6D (ConfigHandler_t669F653CE4E8ABF2323F028523BEDFB5C56C3760 * __this, String_t** ___type0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ConfigHandler_ExtractAssembly_m5B0964FBCAE8F98AAEBB9C55EAD26376F96ADC6D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
String_t** L_0 = ___type0;
String_t* L_1 = *((String_t**)L_0);
NullCheck(L_1);
int32_t L_2 = String_IndexOf_mEE2D2F738175E3FF05580366D6226DBD673CA2BE(L_1, ((int32_t)44), /*hidden argument*/NULL);
V_0 = L_2;
int32_t L_3 = V_0;
if ((!(((uint32_t)L_3) == ((uint32_t)(-1)))))
{
goto IL_0014;
}
}
{
return _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709;
}
IL_0014:
{
String_t** L_4 = ___type0;
String_t* L_5 = *((String_t**)L_4);
int32_t L_6 = V_0;
NullCheck(L_5);
String_t* L_7 = String_Substring_mB6B87FD76552BBF6D4E2B9F07F857FE051DCE190(L_5, ((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)1)), /*hidden argument*/NULL);
NullCheck(L_7);
String_t* L_8 = String_Trim_m3FEC641D7046124B7F381701903B50B5171DE0A2(L_7, /*hidden argument*/NULL);
String_t** L_9 = ___type0;
String_t** L_10 = ___type0;
String_t* L_11 = *((String_t**)L_10);
int32_t L_12 = V_0;
NullCheck(L_11);
String_t* L_13 = String_Substring_m7A39A2AC0893AE940CF4CEC841326D56FFB9D86B(L_11, 0, L_12, /*hidden argument*/NULL);
NullCheck(L_13);
String_t* L_14 = String_Trim_m3FEC641D7046124B7F381701903B50B5171DE0A2(L_13, /*hidden argument*/NULL);
*((RuntimeObject **)L_9) = (RuntimeObject *)L_14;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_9, (void*)(RuntimeObject *)L_14);
return L_8;
}
}
// System.Void System.Runtime.Remoting.ConfigHandler::OnChars(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfigHandler_OnChars_m567A00996F3DAC333B442A166A5F8ADE5260206F (ConfigHandler_t669F653CE4E8ABF2323F028523BEDFB5C56C3760 * __this, String_t* ___ch0, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void System.Runtime.Remoting.ConfigHandler::OnEndParsing(Mono.Xml.SmallXmlParser)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfigHandler_OnEndParsing_m9DB00EBD06893F6262D1BF0574E1D00A696021FE (ConfigHandler_t669F653CE4E8ABF2323F028523BEDFB5C56C3760 * __this, SmallXmlParser_t67E5C1C6417A9CB0679E68D8A4E0095E9D2B54D7 * ___parser0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ConfigHandler_OnEndParsing_m9DB00EBD06893F6262D1BF0574E1D00A696021FE_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_0 = __this->get_channelInstances_1();
bool L_1 = __this->get_onlyDelayedChannels_7();
IL2CPP_RUNTIME_CLASS_INIT(RemotingConfiguration_t9AFFB44D1A1D02A702140D927B0173593B67D0C5_il2cpp_TypeInfo_var);
RemotingConfiguration_RegisterChannels_m4D93EF54F8BC7E103C5D3E5316D6F602C4831BAE(L_0, L_1, /*hidden argument*/NULL);
String_t* L_2 = __this->get_appName_5();
if (!L_2)
{
goto IL_0024;
}
}
{
String_t* L_3 = __this->get_appName_5();
IL2CPP_RUNTIME_CLASS_INIT(RemotingConfiguration_t9AFFB44D1A1D02A702140D927B0173593B67D0C5_il2cpp_TypeInfo_var);
RemotingConfiguration_set_ApplicationName_m28B8C2E68F7D0EF780898ECB616CC43A1F5F5829_inline(L_3, /*hidden argument*/NULL);
}
IL_0024:
{
bool L_4 = __this->get_onlyDelayedChannels_7();
if (L_4)
{
goto IL_0037;
}
}
{
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_5 = __this->get_typeEntries_0();
IL2CPP_RUNTIME_CLASS_INIT(RemotingConfiguration_t9AFFB44D1A1D02A702140D927B0173593B67D0C5_il2cpp_TypeInfo_var);
RemotingConfiguration_RegisterTypes_m7F4974650D499CD808058668563D7E57353ABDD9(L_5, /*hidden argument*/NULL);
}
IL_0037:
{
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline (String_t* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_m_stringLength_0();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * DictionaryEntry_get_Key_m9A53AE1FA4CA017F0A7353F71658A9C36079E1D7_inline (DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = __this->get__key_0();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * DictionaryEntry_get_Value_m2D618D04C0A8EA2A065B171F528FEA98B059F9BC_inline (DictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90 * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = __this->get__value_1();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t TimeSpan_get_Ticks_mE4C9E1F27DC794028CEDCF7CB5BD092D16DBACD4_inline (TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * __this, const RuntimeMethod* method)
{
{
int64_t L_0 = __this->get__ticks_3();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TimeSpan__ctor_mC80FA729ECA3A7AF31D9F517A95E60FC23EB86B0_inline (TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * __this, int64_t ___ticks0, const RuntimeMethod* method)
{
{
int64_t L_0 = ___ticks0;
__this->set__ticks_3(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void BinaryFormatter_set_SurrogateSelector_m696A2BF6895EE02E36D1D735689A026D53A027B6_inline (BinaryFormatter_tAA0465FE94B272FAC7C99F6AD38120E9319C5F55 * __this, RuntimeObject* ___value0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___value0;
__this->set_m_surrogates_0(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Exception_get_HResult_mAF0FE56C31C3C7D5567539FB46BE80D6B9D1AD42_inline (Exception_t * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get__HResult_11();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Exception_t * Exception_get_InnerException_m10D85773B6B191C7D4E7D3C2954B84F9BB195218_inline (Exception_t * __this, const RuntimeMethod* method)
{
{
Exception_t * L_0 = __this->get__innerException_4();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Il2CppChar ConsoleKeyInfo_get_KeyChar_m85F4AA380907696C19C1BFFB73FA5DCA0975A82D_inline (ConsoleKeyInfo_tDA8AC07839288484FCB167A81B4FBA92ECCEAF88 * __this, const RuntimeMethod* method)
{
{
Il2CppChar L_0 = __this->get__keyChar_0();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool TermInfoDriver_get_Initialized_m638E51B051705D6784651A9FD9B75983D2674E8E_inline (TermInfoDriver_t4BA3410FC3FAB83D567ADF15C94124D8148A0E03 * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_inited_25();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Calendar_SetReadOnlyState_m5585F5423EAE536937889E2F997BB8E1E99ED10A_inline (Calendar_t3D638AEAB45F029DF47138EDA4CF9A7CBBB1C32A * __this, bool ___readOnly0, const RuntimeMethod* method)
{
{
bool L_0 = ___readOnly0;
__this->set_m_isReadOnly_1(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ExecutionContext_set_LogicalCallContext_m140A85BD2BC1C60235ED4661A5FB193B40207656_inline (ExecutionContext_t16AC73BB21FEEEAD34A017877AC18DD8BB836414 * __this, LogicalCallContext_tB537C2A13F19FCC7EBC74757A415F2CA5C8FA1C3 * ___value0, const RuntimeMethod* method)
{
{
LogicalCallContext_tB537C2A13F19FCC7EBC74757A415F2CA5C8FA1C3 * L_0 = ___value0;
__this->set__logicalCallContext_2(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* CallContextRemotingData_get_LogicalCallID_mE47A77416A15B1D0473E471D449F4EF400E38130_inline (CallContextRemotingData_t91D21A898FED729F67E6899F29076D9CF39E419E * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get__logicalCallID_0();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void CallContextRemotingData_set_LogicalCallID_mC234B22CD43CF7FD7DB66C5A0DAF35C246840E1A_inline (CallContextRemotingData_t91D21A898FED729F67E6899F29076D9CF39E419E * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->set__logicalCallID_0(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void CancellationToken__ctor_mC19C6E7AC3BB22E07FCB343BAEA35975B878F9A0_inline (CancellationToken_tC9D68381C9164A4BA10397257E87ADC832AF5FFD * __this, CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * ___source0, const RuntimeMethod* method)
{
{
CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * L_0 = ___source0;
__this->set_m_source_0(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool CancellationTokenSource_get_IsDisposed_m2B0724AA0E669866A2D9E1D974AA06BB241AD43A_inline (CancellationTokenSource_t78B989179DE23EDD36F870FFEE20A15D6D3C65B3 * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_m_disposed_7();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Identity_get_ChannelSink_m65E342D8B02C4B9A49BA932ACAEB0D3E1DF9A5D5_inline (Identity_t640A44175E23F75AB432A7C00569D863BF48AAD5 * __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = __this->get__channelSink_1();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* CultureInfo_get_SortName_mB0617CF8B75431B13A7E3D470E9868B35747E9B6_inline (CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_m_name_13();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool MSCompatUnicodeTable_get_IsReady_m48C1BE8069E2D74EE21BBF4D4F5A0B31B4644436_inline (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MSCompatUnicodeTable_get_IsReady_m48C1BE8069E2D74EE21BBF4D4F5A0B31B4644436mscorlib1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(MSCompatUnicodeTable_t46D5D29A0AF117D0BEE1CD7CBAEAFB2DA2B640E5_il2cpp_TypeInfo_var);
bool L_0 = ((MSCompatUnicodeTable_t46D5D29A0AF117D0BEE1CD7CBAEAFB2DA2B640E5_StaticFields*)il2cpp_codegen_static_fields_for(MSCompatUnicodeTable_t46D5D29A0AF117D0BEE1CD7CBAEAFB2DA2B640E5_il2cpp_TypeInfo_var))->get_isReady_18();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 * StringComparer_get_Ordinal_mF3B6370BEBD77351DB5218C867DCD669C47B8812_inline (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StringComparer_get_Ordinal_mF3B6370BEBD77351DB5218C867DCD669C47B8812mscorlib1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6_il2cpp_TypeInfo_var);
StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 * L_0 = ((StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6_StaticFields*)il2cpp_codegen_static_fields_for(StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6_il2cpp_TypeInfo_var))->get__ordinal_2();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* SinkProviderData_get_Properties_m292E383DD009906B0067D1E7C5B6483B1A9A193D_inline (SinkProviderData_tDCF47C22643A26B1E1F6BB60FA7AE7034053D14E * __this, const RuntimeMethod* method)
{
{
Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_0 = __this->get_properties_2();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* SinkProviderData_get_Children_m3F6518C43B7DBF4E6D664F15F105F171778543CF_inline (SinkProviderData_tDCF47C22643A26B1E1F6BB60FA7AE7034053D14E * __this, const RuntimeMethod* method)
{
{
ArrayList_t6C1A49839DC1F0D568E8E11FA1626FCF0EC06575 * L_0 = __this->get_children_1();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void LifetimeServices_set_LeaseTime_m2480120F8B8F89009F6C4B9FA07642C85F0D0363_inline (TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (LifetimeServices_set_LeaseTime_m2480120F8B8F89009F6C4B9FA07642C85F0D0363mscorlib1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 L_0 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(LifetimeServices_tF0C101B662D7B7A3481C924BC01E1623C1AFF6E4_il2cpp_TypeInfo_var);
((LifetimeServices_tF0C101B662D7B7A3481C924BC01E1623C1AFF6E4_StaticFields*)il2cpp_codegen_static_fields_for(LifetimeServices_tF0C101B662D7B7A3481C924BC01E1623C1AFF6E4_il2cpp_TypeInfo_var))->set__leaseTime_1(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void LifetimeServices_set_SponsorshipTimeout_mA6154F99575D61E3F988FBF3FF9383DB77F70435_inline (TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (LifetimeServices_set_SponsorshipTimeout_mA6154F99575D61E3F988FBF3FF9383DB77F70435mscorlib1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 L_0 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(LifetimeServices_tF0C101B662D7B7A3481C924BC01E1623C1AFF6E4_il2cpp_TypeInfo_var);
((LifetimeServices_tF0C101B662D7B7A3481C924BC01E1623C1AFF6E4_StaticFields*)il2cpp_codegen_static_fields_for(LifetimeServices_tF0C101B662D7B7A3481C924BC01E1623C1AFF6E4_il2cpp_TypeInfo_var))->set__sponsorshipTimeout_3(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void LifetimeServices_set_RenewOnCallTime_m2D7569123729D47A77173424A1CC3CCA43213CFC_inline (TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (LifetimeServices_set_RenewOnCallTime_m2D7569123729D47A77173424A1CC3CCA43213CFCmscorlib1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 L_0 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(LifetimeServices_tF0C101B662D7B7A3481C924BC01E1623C1AFF6E4_il2cpp_TypeInfo_var);
((LifetimeServices_tF0C101B662D7B7A3481C924BC01E1623C1AFF6E4_StaticFields*)il2cpp_codegen_static_fields_for(LifetimeServices_tF0C101B662D7B7A3481C924BC01E1623C1AFF6E4_il2cpp_TypeInfo_var))->set__renewOnCallTime_2(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void RemotingConfiguration_set_ApplicationName_m28B8C2E68F7D0EF780898ECB616CC43A1F5F5829_inline (String_t* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (RemotingConfiguration_set_ApplicationName_m28B8C2E68F7D0EF780898ECB616CC43A1F5F5829mscorlib1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___value0;
IL2CPP_RUNTIME_CLASS_INIT(RemotingConfiguration_t9AFFB44D1A1D02A702140D927B0173593B67D0C5_il2cpp_TypeInfo_var);
((RemotingConfiguration_t9AFFB44D1A1D02A702140D927B0173593B67D0C5_StaticFields*)il2cpp_codegen_static_fields_for(RemotingConfiguration_t9AFFB44D1A1D02A702140D927B0173593B67D0C5_il2cpp_TypeInfo_var))->set_applicationName_1(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 * SparselyPopulatedArrayAddInfo_1_get_Source_mF16A5757073BEDF261071800F1E44DBC7FD64D0A_gshared_inline (SparselyPopulatedArrayAddInfo_1_t8F3BEC3A081BCFDF83207FC35A690A7E2773639D * __this, const RuntimeMethod* method)
{
{
SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 * L_0 = (SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 *)__this->get_m_source_0();
return (SparselyPopulatedArrayFragment_1_tC889F0E1C294F8A6562DC32D85F95C85B8FDF1E6 *)L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t SparselyPopulatedArrayAddInfo_1_get_Index_m504E6BF8E69B6BF3E2D670654834F4AD8D47BDB7_gshared_inline (SparselyPopulatedArrayAddInfo_1_t8F3BEC3A081BCFDF83207FC35A690A7E2773639D * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get_m_index_1();
return (int32_t)L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* Array_Empty_TisRuntimeObject_m1FBC21243DF3542384C523801E8CA8A97606C747_gshared_inline (const RuntimeMethod* method)
{
{
IL2CPP_RUNTIME_CLASS_INIT(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_0 = ((EmptyArray_1_tBF73225DFA890366D579424FE8F40073BF9FBAD4_StaticFields*)il2cpp_codegen_static_fields_for(IL2CPP_RGCTX_DATA(method->rgctx_data, 0)))->get_Value_0();
return (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)L_0;
}
}
| [
"[email protected]"
] | |
b2f54c337b254d8354a686abf34a5e9895a73afd | 09d9b50726c2e5cdc768c57930a84edc984d2a6e | /CODEFORCES/CONTEST PROBLEMS/codeforces_399_B.cpp | 465938b1d7a1a5447ac0768e97b89b190c7cdd50 | [] | no_license | omar-sharif03/Competitive-Programming | 86b4e99f16a6711131d503eb8e99889daa92b53d | c8bc015af372eeb328c572d16038d0d0aac6bb6a | refs/heads/master | 2022-11-15T08:22:08.474648 | 2020-07-15T12:30:53 | 2020-07-15T12:30:53 | 279,789,803 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 814 | cpp | #include<bits/stdc++.h>
using namespace std;
#define lli long long
#define mx 100010
vector<lli>v,v1;
lli check(lli a)
{
lli x,y;
x=a/2;
y=a%2;
if(v1.size()<100005);
{
v1.push_back(x);
v1.push_back(y);
v1.push_back(x);
}
}
lli xxx()
{
int flag=0;
for(int i=0;i<v.size();i++){
if(v[i]==1 or v[i]==0){
if(v1.size()<100005)v1.push_back(v[i]);
}
else{
flag=1;
check(v[i]);
}
}
if(flag==0)return 0;
else{
v.clear();
v=v1;
v1.clear();
xxx();
}
return 0;
}
int main()
{
lli n,l,r;
cin>>n>>l>>r;
v.push_back(n);
xxx();
l--;r--;
lli count=0;
for(int i=l;i<=r;i++)
if(v1[i]==1)count++;
cout<<count<<endl;
}
| [
"[email protected]"
] | |
edb74da1c9517ced137e0dcb451db7153dfdbf52 | ef7129ada2d77e4283ae29ff3cb6a64e43e09154 | /lte/gateway/c/session_manager/test/test_set_session_manager_handler.cpp | fd01c5285023a79ed7485366919c52319882421a | [
"BSD-3-Clause"
] | permissive | saurabhm3hra/magma | 57fcee8209f8aafe95626cea7ab7e4292abda37d | b4fbd71378935a35cabb13ca3762708033e09b88 | refs/heads/master | 2021-12-15T23:48:29.373368 | 2021-12-04T00:30:56 | 2021-12-04T00:30:56 | 188,944,355 | 1 | 0 | NOASSERTION | 2021-06-11T05:58:13 | 2019-05-28T03:05:00 | Go | UTF-8 | C++ | false | false | 37,826 | cpp | /**
* Copyright 2020 The Magma Authors.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree.
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <memory>
#include <folly/io/async/EventBaseManager.h>
#include <glog/logging.h>
#include <gtest/gtest.h>
/* session_manager.grpc.pb.h and SessionStateEnforcer.h
* included in "SetMessageManagerHandler.h"
*/
#include "Matchers.h"
#include "SetMessageManagerHandler.h"
#include "SessionStateEnforcer.h"
#include "UpfMsgManageHandler.h"
#include "MobilitydClient.h"
#include "includes/MagmaService.h"
#include "ProtobufCreators.h"
#include "RuleStore.h"
#include "SessionState.h"
#include "SessionStore.h"
#include "includes/ServiceRegistrySingleton.h"
#include "SessiondMocks.h"
#include "StoredState.h"
#include "magma_logging.h"
#include "PipelinedClient.h"
#include "AmfServiceClient.h"
#include "DirectorydClient.h"
#include "Consts.h"
#include "EnumToString.h"
using grpc::ServerContext;
using grpc::Status;
using ::testing::InSequence;
using ::testing::Test;
#define session_force_termination_timeout_ms 5000
#define session_max_rtx_count 3
namespace magma {
class SessionManagerHandlerTest : public ::testing::Test {
public:
virtual void SetUp() {
rule_store = std::make_shared<StaticRuleStore>();
reporter = std::make_shared<MockSessionReporter>();
mobilityd_client = std::make_shared<MockMobilitydClient>();
session_store = std::make_shared<SessionStore>(
rule_store, std::make_shared<MeteringReporter>());
reporter = std::make_shared<MockSessionReporter>();
std::unordered_multimap<std::string, uint32_t> pdr_map;
pipelined_client = std::make_shared<MockPipelinedClient>();
amf_srv_client = std::make_shared<magma::MockAmfServiceClient>();
events_reporter = std::make_shared<MockEventsReporter>();
auto shard_tracker = std::make_shared<ShardTracker>();
aaa_client = std::make_shared<MockAAAClient>();
spgw_client = std::make_shared<MockSpgwServiceClient>();
auto directoryd_client = std::make_shared<MockDirectorydClient>();
magma::mconfig::SessionD mconfig;
mconfig.set_log_level(magma::orc8r::LogLevel::INFO);
auto default_mconfig = get_default_mconfig();
pdr_map.insert(std::pair<std::string, uint32_t>(IMSI1, 1));
pdr_map.insert(std::pair<std::string, uint32_t>(IMSI1, 2));
session_enforcer = std::make_shared<magma::SessionStateEnforcer>(
rule_store, *session_store, pdr_map, pipelined_client, amf_srv_client,
reporter.get(), events_reporter, mconfig,
session_force_termination_timeout_ms, session_max_rtx_count);
evb = new folly::EventBase();
std::thread([&]() {
std::cout << "Started event loop thread\n";
folly::EventBaseManager::get()->setEventBase(evb, 0);
})
.detach();
session_enforcer->attachEventBase(evb);
session_map_ = SessionMap{};
// creating landing object and invoking contructor
set_session_manager = std::make_shared<SetMessageManagerHandler>(
session_enforcer, *session_store, reporter.get(), events_reporter);
upf_session_manager = std::make_shared<UpfMsgManageHandler>(
session_enforcer, mobilityd_client, *session_store);
local_enforcer = std::make_unique<LocalEnforcer>(
reporter, rule_store, *session_store, pipelined_client, events_reporter,
spgw_client, aaa_client, shard_tracker, 0, 0, default_mconfig);
}
virtual void TearDown() { delete evb; }
void insert_static_rule(
uint32_t rating_group, const std::string& m_key,
const std::string& rule_id) {
rule_store->insert_rule(create_policy_rule(rule_id, m_key, rating_group));
}
void set_sm_session_context(magma::SetSMSessionContext* request) {
auto* req = request->mutable_rat_specific_context()
->mutable_m5gsm_session_context();
auto* reqcmn = request->mutable_common_context();
req->set_pdu_session_id({0x5});
req->set_request_type(magma::RequestType::INITIAL_REQUEST);
req->mutable_pdu_address()->set_redirect_address_type(
magma::RedirectServer::IPV4);
req->mutable_pdu_address()->set_redirect_server_address("10.20.30.40");
req->set_priority_access(magma::priorityaccess::High);
req->set_access_type(magma::AccessType::M_3GPP_ACCESS_3GPP);
req->set_imei("123456789012345");
req->set_gpsi("9876543210");
req->set_pcf_id("1357924680123456");
reqcmn->mutable_sid()->set_id("IMSI000000000000001");
reqcmn->set_sm_session_state(magma::SMSessionFSMState::CREATING_0);
reqcmn->set_rat_type(magma::RATType::TGPP_NR);
reqcmn->set_apn("BLR");
reqcmn->set_ue_ipv4("192.168.128.11");
EXPECT_EQ(req->pdu_session_id(), 0x5);
EXPECT_EQ(req->request_type(), magma::RequestType::INITIAL_REQUEST);
EXPECT_EQ(
req->pdu_address().redirect_address_type(),
magma::RedirectServer::IPV4);
EXPECT_EQ(req->pdu_address().redirect_server_address(), "10.20.30.40");
EXPECT_EQ(req->priority_access(), magma::priorityaccess::High);
EXPECT_EQ(req->access_type(), magma::AccessType::M_3GPP_ACCESS_3GPP);
EXPECT_EQ(req->imei(), "123456789012345");
EXPECT_EQ(req->gpsi(), "9876543210");
EXPECT_EQ(req->pcf_id(), "1357924680123456");
EXPECT_EQ(reqcmn->sid().id(), "IMSI000000000000001");
EXPECT_EQ(reqcmn->sm_session_state(), magma::SMSessionFSMState::CREATING_0);
}
void set_sm_notif_context(
magma::SetSmNotificationContext* request,
magma::SetSMSessionContext* session_ctx_req) {
auto* req = request->mutable_rat_specific_notification();
auto* reqcmn = request->mutable_common_context();
req->set_pdu_session_id({0x5});
req->set_request_type(magma::RequestType::INITIAL_REQUEST);
req->set_access_type(magma::AccessType::M_3GPP_ACCESS_3GPP);
req->set_notify_ue_event(
magma::NotifyUeEvents::PDU_SESSION_INACTIVE_NOTIFY);
reqcmn->mutable_sid()->set_id("IMSI000000000000001");
reqcmn->set_apn("BLR");
reqcmn->set_ue_ipv4("192.168.128.11");
reqcmn->set_rat_type(magma::RATType::TGPP_NR);
reqcmn->set_sm_session_state(magma::SMSessionFSMState::CREATING_0);
auto imsi = reqcmn->sid().id();
auto apn = reqcmn->apn();
auto pdu_id = req->pdu_session_id();
auto cfg = set_session_manager->m5g_build_session_config(*session_ctx_req);
auto& noti = *req;
auto ue_event = noti.notify_ue_event();
std::function<void(Status, SmContextVoid)> response_callback;
EXPECT_EQ(pdu_id, 0x5);
EXPECT_EQ(imsi, "IMSI000000000000001");
EXPECT_EQ(apn, "BLR");
EXPECT_EQ(req->request_type(), magma::RequestType::INITIAL_REQUEST);
EXPECT_EQ(req->access_type(), magma::AccessType::M_3GPP_ACCESS_3GPP);
EXPECT_EQ(reqcmn->ue_ipv4(), "192.168.128.11");
EXPECT_EQ(reqcmn->rat_type(), magma::RATType::TGPP_NR);
set_session_manager->send_create_session(session_map_, imsi, cfg, pdu_id);
EXPECT_EQ(reqcmn->sm_session_state(), magma::SMSessionFSMState::CREATING_0);
EXPECT_EQ(ue_event, magma::NotifyUeEvents::PDU_SESSION_INACTIVE_NOTIFY);
req->set_notify_ue_event(magma::NotifyUeEvents::UE_IDLE_MODE_NOTIFY);
EXPECT_EQ(
noti.notify_ue_event(), magma::NotifyUeEvents::UE_IDLE_MODE_NOTIFY);
set_session_manager->initiate_release_session(session_map_, pdu_id, imsi);
reqcmn->set_sm_session_state(magma::SMSessionFSMState::RELEASED_4);
EXPECT_EQ(reqcmn->sm_session_state(), magma::SMSessionFSMState::RELEASED_4);
EXPECT_EQ(reqcmn->sm_session_version(), 0);
}
public:
std::shared_ptr<SessionStore> session_store;
std::shared_ptr<SetMessageManagerHandler> set_session_manager;
std::shared_ptr<MockPipelinedClient> pipelined_client;
std::shared_ptr<SessionStateEnforcer> session_enforcer;
std::shared_ptr<MockAmfServiceClient> amf_srv_client;
std::shared_ptr<StaticRuleStore> rule_store;
SessionIDGenerator id_gen_;
folly::EventBase* evb;
SessionMap session_map_;
std::unordered_multimap<std::string, uint32_t> pdr_map_;
std::shared_ptr<MockSessionReporter> reporter;
std::shared_ptr<MockEventsReporter> events_reporter;
std::shared_ptr<UpfMsgManageHandler> upf_session_manager;
std::shared_ptr<MockMobilitydClient> mobilityd_client;
std::unique_ptr<LocalEnforcer> local_enforcer;
std::shared_ptr<MockSpgwServiceClient> spgw_client;
std::shared_ptr<MockAAAClient> aaa_client;
std::shared_ptr<LocalSessionManagerHandlerImpl> session_manager;
}; // End of class
TEST_F(SessionManagerHandlerTest, test_SetAmfSessionContext) {
magma::SetSMSessionContext request;
set_sm_session_context(&request);
grpc::ServerContext server_context;
set_session_manager->SetAmfSessionContext(
&server_context, &request,
[this](grpc::Status status, SmContextVoid Void) {});
// Run session creation in the EventBase loop
evb->loopOnce();
auto session_map = session_store->read_sessions({IMSI1});
auto it = session_map.find(IMSI1);
EXPECT_FALSE(it == session_map.end());
EXPECT_EQ(session_map[IMSI1].size(), 1);
auto& session_temp = session_map[IMSI1][0];
EXPECT_EQ(session_temp->get_config().common_context.sid().id(), IMSI1);
}
TEST_F(SessionManagerHandlerTest, test_SetSmfNotification) {
magma::SetSMSessionContext session_ctx_req;
set_sm_session_context(&session_ctx_req);
magma::SetSmNotificationContext request;
set_sm_notif_context(&request, &session_ctx_req);
grpc::ServerContext server_context;
set_session_manager->SetSmfNotification(
&server_context, &request,
[this](grpc::Status status, SmContextVoid Void) {});
/* Validating the funcationality when specific IMSi and its associated
* sessions moved to idle mode
*/
set_session_manager->idle_mode_change_sessions_handle(
request, [](grpc::Status status, SmContextVoid Void) {});
/* Validating the functionality when any specific session moved to
* idle state
*/
set_session_manager->pdu_session_inactive(
request, [](grpc::Status status, SmContextVoid Void) {});
/* Validating the functionality when specific IMSI service
* request is received from AMF.
*/
set_session_manager->service_handle_request_on_paging(
request, [](grpc::Status status, SmContextVoid Void) {});
// Run session creation in the EventBase loop
evb->loopOnce();
}
TEST_F(SessionManagerHandlerTest, test_InitSessionContext) {
magma::SetSMSessionContext request;
set_sm_session_context(&request);
grpc::ServerContext server_context;
set_session_manager->SetAmfSessionContext(
&server_context, &request,
[this](grpc::Status status, SmContextVoid Void) {});
// Run session creation in the EventBase loop
evb->loopOnce();
SessionConfig cfg;
cfg.common_context = request.common_context();
cfg.rat_specific_context = request.rat_specific_context();
cfg.rat_specific_context.mutable_m5gsm_session_context()->set_ssc_mode(
SSC_MODE_3);
auto session_map = session_store->read_sessions({IMSI1});
std::string session_id = id_gen_.gen_session_id(IMSI1);
session_enforcer->m5g_init_session_credit(
session_map, IMSI1, session_id, cfg);
}
TEST_F(SessionManagerHandlerTest, test_UpdateSessionContext) {
magma::SetSMSessionContext request;
set_sm_session_context(&request);
grpc::ServerContext server_context;
set_session_manager->SetAmfSessionContext(
&server_context, &request,
[this](grpc::Status status, SmContextVoid Void) {});
// Run session creation in the EventBase loop
evb->loopOnce();
SessionConfig cfg;
cfg.common_context = request.common_context();
cfg.rat_specific_context = request.rat_specific_context();
cfg.rat_specific_context.mutable_m5gsm_session_context()->set_ssc_mode(
SSC_MODE_3);
auto session_map = session_store->read_sessions({IMSI1});
std::string session_id = id_gen_.gen_session_id(IMSI1);
SessionUpdate update = SessionStore::get_default_session_update(session_map);
uint32_t pdu_id = 5;
SessionSearchCriteria id1_success_sid(IMSI1, IMSI_AND_PDUID, pdu_id);
auto session_it = session_store->find_session(session_map, id1_success_sid);
auto& session = **session_it;
session->set_config(cfg, nullptr);
session_enforcer->add_default_rules(session, IMSI1);
session_enforcer->m5g_update_session_context(
session_map, IMSI1, session, update);
}
TEST_F(SessionManagerHandlerTest, test_SetPduSessionReleaseContext) {
magma::SetSMSessionContext request;
auto* req =
request.mutable_rat_specific_context()->mutable_m5gsm_session_context();
auto* reqcmn = request.mutable_common_context();
req->set_pdu_session_id({0x5});
req->set_request_type(magma::RequestType::INITIAL_REQUEST);
req->mutable_pdu_address()->set_redirect_address_type(
magma::RedirectServer::IPV4);
req->mutable_pdu_address()->set_redirect_server_address("10.20.30.40");
req->set_priority_access(magma::priorityaccess::High);
req->set_imei("123456789012345");
req->set_gpsi("9876543210");
req->set_pcf_id("1357924680123456");
reqcmn->mutable_sid()->set_id("IMSI000000000000001");
reqcmn->set_sm_session_state(magma::SMSessionFSMState::CREATING_0);
reqcmn->set_rat_type(magma::RATType::TGPP_NR);
grpc::ServerContext server_context;
set_session_manager->SetAmfSessionContext(
&server_context, &request,
[this](grpc::Status status, SmContextVoid Void) {});
// Run session creation in the EventBase loop
evb->loopOnce();
evb->loopOnce();
auto session_map = session_store->read_sessions({IMSI1});
auto it = session_map.find(IMSI1);
EXPECT_FALSE(it == session_map.end());
EXPECT_EQ(session_map[IMSI1].size(), 1);
auto& session_temp = session_map[IMSI1][0];
EXPECT_EQ(session_temp->get_config().common_context.sid().id(), IMSI1);
req->set_request_type(magma::RequestType::EXISTING_PDU_SESSION);
reqcmn->set_sm_session_state(magma::SMSessionFSMState::RELEASED_4);
reqcmn->set_sm_session_version(2);
set_session_manager->SetAmfSessionContext(
&server_context, &request,
[this](grpc::Status status, SmContextVoid Void) {});
// Run session creation in the EventBase loop
evb->loopOnce();
}
TEST_F(SessionManagerHandlerTest, test_LocalReleaseSessionContext) {
magma::SetSMSessionContext request;
auto* req =
request.mutable_rat_specific_context()->mutable_m5gsm_session_context();
auto* reqcmn = request.mutable_common_context();
req->set_pdu_session_id({0x5});
req->set_request_type(magma::RequestType::INITIAL_REQUEST);
req->mutable_pdu_address()->set_redirect_address_type(
magma::RedirectServer::IPV4);
req->mutable_pdu_address()->set_redirect_server_address("10.20.30.40");
req->set_priority_access(magma::priorityaccess::High);
req->set_imei("123456789012345");
req->set_gpsi("9876543210");
req->set_pcf_id("1357924680123456");
reqcmn->mutable_sid()->set_id("IMSI000000000000001");
reqcmn->set_sm_session_state(magma::SMSessionFSMState::CREATING_0);
reqcmn->set_rat_type(magma::RATType::TGPP_NR);
grpc::ServerContext server_context;
set_session_manager->SetAmfSessionContext(
&server_context, &request,
[this](grpc::Status status, SmContextVoid Void) {});
// Run session creation in the EventBase loop
evb->loopOnce();
evb->loopOnce();
auto session_map = session_store->read_sessions({IMSI1});
auto it = session_map.find(IMSI1);
EXPECT_FALSE(it == session_map.end());
EXPECT_EQ(session_map[IMSI1].size(), 1);
SessionConfig cfg;
cfg.common_context = request.common_context();
cfg.rat_specific_context = request.rat_specific_context();
cfg.rat_specific_context.mutable_m5gsm_session_context()->set_ssc_mode(
SSC_MODE_3);
SessionUpdate session_update =
SessionStore::get_default_session_update(session_map);
uint32_t pdu_id = 5;
session_enforcer->m5g_release_session(
session_map, IMSI1, pdu_id, session_update);
EXPECT_FALSE(it == session_map.end());
EXPECT_EQ(session_map[IMSI1].size(), 1);
auto& session_temp = session_map[IMSI1][0];
EXPECT_EQ(session_temp->get_config().common_context.sid().id(), IMSI1);
}
TEST_F(SessionManagerHandlerTest, test_LocalSessionTerminationContext) {
magma::SetSMSessionContext request;
auto* req =
request.mutable_rat_specific_context()->mutable_m5gsm_session_context();
auto* reqcmn = request.mutable_common_context();
req->set_pdu_session_id({0x5});
req->set_request_type(magma::RequestType::INITIAL_REQUEST);
req->mutable_pdu_address()->set_redirect_address_type(
magma::RedirectServer::IPV4);
req->mutable_pdu_address()->set_redirect_server_address("10.20.30.40");
req->set_priority_access(magma::priorityaccess::High);
req->set_imei("123456789012345");
req->set_gpsi("9876543210");
req->set_pcf_id("1357924680123456");
reqcmn->mutable_sid()->set_id("IMSI000000000000002");
reqcmn->set_sm_session_state(magma::SMSessionFSMState::CREATING_0);
reqcmn->set_rat_type(magma::RATType::TGPP_NR);
grpc::ServerContext server_context;
set_session_manager->SetAmfSessionContext(
&server_context, &request,
[this](grpc::Status status, SmContextVoid Void) {});
// Run session creation in the EventBase loop
evb->loopOnce();
evb->loopOnce();
auto session_map = session_store->read_sessions({IMSI2});
auto it = session_map.find(IMSI2);
EXPECT_FALSE(it == session_map.end());
EXPECT_EQ(session_map[IMSI2].size(), 1);
SessionConfig cfg;
cfg.common_context = request.common_context();
cfg.rat_specific_context = request.rat_specific_context();
cfg.rat_specific_context.mutable_m5gsm_session_context()->set_ssc_mode(
SSC_MODE_3);
SessionUpdate session_update =
SessionStore::get_default_session_update(session_map);
uint32_t pdu_id = 5;
SessionSearchCriteria id1_success_sid(IMSI2, IMSI_AND_PDUID, pdu_id);
auto session_it = session_store->find_session(session_map, id1_success_sid);
auto& session = **session_it;
auto session_id = session->get_session_id();
SessionStateUpdateCriteria& session_uc = session_update[IMSI2][session_id];
session_enforcer->m5g_start_session_termination(
session_map, session, pdu_id, &session_uc);
EXPECT_FALSE(it == session_map.end());
EXPECT_EQ(session_map[IMSI2].size(), 1);
auto& session_temp = session_map[IMSI2][0];
EXPECT_EQ(session_temp->get_config().common_context.sid().id(), IMSI2);
}
TEST_F(SessionManagerHandlerTest, test_SessionCompleteTerminationContext) {
magma::SetSMSessionContext request;
auto* req =
request.mutable_rat_specific_context()->mutable_m5gsm_session_context();
auto* reqcmn = request.mutable_common_context();
req->set_pdu_session_id({0x5});
req->set_request_type(magma::RequestType::INITIAL_REQUEST);
req->mutable_pdu_address()->set_redirect_address_type(
magma::RedirectServer::IPV4);
req->mutable_pdu_address()->set_redirect_server_address("10.20.30.40");
req->set_priority_access(magma::priorityaccess::High);
req->set_imei("123456789012345");
req->set_gpsi("9876543210");
req->set_pcf_id("1357924680123456");
reqcmn->mutable_sid()->set_id("IMSI000000000000002");
reqcmn->set_sm_session_state(magma::SMSessionFSMState::CREATING_0);
reqcmn->set_rat_type(magma::RATType::TGPP_NR);
grpc::ServerContext server_context;
set_session_manager->SetAmfSessionContext(
&server_context, &request,
[this](grpc::Status status, SmContextVoid Void) {});
// Run session creation in the EventBase loop
evb->loopOnce();
evb->loopOnce();
auto session_map = session_store->read_sessions({IMSI2});
auto it = session_map.find(IMSI2);
EXPECT_FALSE(it == session_map.end());
EXPECT_EQ(session_map[IMSI2].size(), 1);
SessionConfig cfg;
cfg.common_context = request.common_context();
cfg.rat_specific_context = request.rat_specific_context();
cfg.rat_specific_context.mutable_m5gsm_session_context()->set_ssc_mode(
SSC_MODE_3);
SessionUpdate session_update =
SessionStore::get_default_session_update(session_map);
uint32_t pdu_id = 5;
SessionSearchCriteria id1_success_sid(IMSI2, IMSI_AND_PDUID, pdu_id);
auto session_it = session_store->find_session(session_map, id1_success_sid);
auto& session = **session_it;
auto session_id = session->get_session_id();
session_enforcer->m5g_complete_termination(
session_map, IMSI2, session_id, session_update);
EXPECT_EQ(session_map[IMSI2].size(), 0);
}
TEST_F(SessionManagerHandlerTest, test_PDUStateChangeHandling) {
magma::SetSMSessionContext request;
set_sm_session_context(&request);
request.mutable_common_context()->mutable_sid()->set_id(
"IMSI000000000000002");
grpc::ServerContext server_context;
set_session_manager->SetAmfSessionContext(
&server_context, &request,
[this](grpc::Status status, SmContextVoid Void) {});
// Run session creation in the EventBase loop
evb->loopOnce();
auto session_map = session_store->read_sessions({IMSI2});
auto it = session_map.find(IMSI2);
EXPECT_FALSE(it == session_map.end());
EXPECT_EQ(session_map[IMSI2].size(), 1);
SessionConfig cfg;
cfg.common_context = request.common_context();
cfg.rat_specific_context = request.rat_specific_context();
cfg.rat_specific_context.mutable_m5gsm_session_context()->set_ssc_mode(
SSC_MODE_3);
SessionUpdate session_update =
SessionStore::get_default_session_update(session_map);
uint32_t pdu_id = 5;
SessionSearchCriteria id1_success_sid(IMSI2, IMSI_AND_PDUID, pdu_id);
auto session_it = session_store->find_session(session_map, id1_success_sid);
auto& session = **session_it;
auto session_id = session->get_session_id();
SessionStateUpdateCriteria& session_uc = session_update[IMSI2][session_id];
SetSmNotificationContext notif;
std::string imsi;
/* pdu_session_inactive() and idle_mode_change_sessions_handle()
* call flows
*/
session_enforcer->m5g_move_to_inactive_state(
imsi.assign(IMSI2), session, notif, &session_uc);
session_enforcer->set_new_fsm_state_and_increment_version(
session, INACTIVE, &session_uc);
session_enforcer->m5g_pdr_rules_change_and_update_upf(
session, magma::PdrState::IDLE);
RulesToProcess pending_activation, pending_deactivation;
session_enforcer->m5g_send_session_request_to_upf(
session, pending_activation, pending_deactivation);
/* service_handle_request_on_paging() call flows */
session_enforcer->m5g_move_to_active_state(session, notif, &session_uc);
bool gnb_teid_get = false;
bool upf_teid_get = false;
session_enforcer->update_session_rules(
session, gnb_teid_get, upf_teid_get, &session_uc);
ConvergedRuleStore GlobalRuleList;
SetGroupPDR rule;
auto& session_state = session_map[imsi];
auto itp = pdr_map_.equal_range(imsi);
for (auto itr = itp.first; itr != itp.second; itr++) {
GlobalRuleList.get_rule(itr->second, &rule);
// Get the UE ip address
rule.mutable_pdi()->set_ue_ipv4(
cfg.rat_specific_context.m5gsm_session_context()
.pdu_address()
.redirect_server_address());
auto src_iface = rule.pdi().src_interface();
EXPECT_EQ(src_iface, magma::SourceInterfaceType::ACCESS);
uint32_t upf_teid = session_enforcer->insert_pdr_from_access(
session_state[1], rule, &session_uc);
EXPECT_EQ(upf_teid, session_enforcer->get_next_teid());
EXPECT_EQ(src_iface, magma::SourceInterfaceType::CORE);
EXPECT_TRUE(session_enforcer->insert_pdr_from_core(
session_state[1], rule, &session_uc));
}
session_enforcer->m5g_pdr_rules_change_and_update_upf(
session, magma::PdrState::INSTALL);
session_enforcer->handle_state_update_to_amf(
*session, magma::lte::M5GSMCause::OPERATION_SUCCESS,
magma::NotifyUeEvents::UE_SERVICE_REQUEST_ON_PAGING);
EXPECT_FALSE(it == session_map.end());
EXPECT_EQ(session_map[IMSI2].size(), 1);
auto& session_temp = session_map[IMSI2][0];
EXPECT_EQ(session_temp->get_config().common_context.sid().id(), IMSI2);
session_enforcer->m5g_release_session(
session_map, imsi, pdu_id, session_update);
session_enforcer->m5g_start_session_termination(
session_map, session, pdu_id, &session_uc);
session_enforcer->m5g_pdr_rules_change_and_update_upf(
session, magma::PdrState::REMOVE);
}
TEST_F(SessionManagerHandlerTest, test_SetAmfSessionAmbr) {
magma::SetSMSessionContext request;
set_sm_session_context(&request);
request.mutable_common_context()->mutable_sid()->set_id(
"IMSI000000000000002");
grpc::ServerContext server_context;
set_session_manager->SetAmfSessionContext(
&server_context, &request,
[this](grpc::Status status, SmContextVoid Void) {});
// Run session creation in the EventBase loop
evb->loopOnce();
auto session_map = session_store->read_sessions({IMSI2});
auto it = session_map.find(IMSI2);
EXPECT_FALSE(it == session_map.end());
EXPECT_EQ(session_map[IMSI2].size(), 1);
SessionConfig cfg;
cfg.common_context = request.common_context();
cfg.rat_specific_context = request.rat_specific_context();
cfg.rat_specific_context.mutable_m5gsm_session_context()->set_ssc_mode(
SSC_MODE_3);
cfg.rat_specific_context.mutable_m5gsm_session_context()
->mutable_default_ambr()
->set_br_unit(AggregatedMaximumBitrate::KBPS);
cfg.rat_specific_context.mutable_m5gsm_session_context()
->mutable_default_ambr()
->set_max_bandwidth_ul(1024);
cfg.rat_specific_context.mutable_m5gsm_session_context()
->mutable_default_ambr()
->set_max_bandwidth_dl(1024);
SessionUpdate session_update =
SessionStore::get_default_session_update(session_map);
uint32_t pdu_id = 5;
SessionSearchCriteria id1_success_sid(IMSI2, IMSI_AND_PDUID, pdu_id);
auto session_it = session_store->find_session(session_map, id1_success_sid);
auto& session = **session_it;
auto session_id = session->get_session_id();
SessionStateUpdateCriteria& session_uc = session_update[IMSI2][session_id];
SetSmNotificationContext notif;
std::string imsi;
session->set_config(cfg, &session_uc);
magma::SetSMSessionContextAccess expected_response;
auto* rsp = expected_response.mutable_rat_specific_context()
->mutable_m5g_session_context_rsp();
rsp->mutable_session_ambr()->set_br_unit(AggregatedMaximumBitrate::KBPS);
rsp->mutable_session_ambr()->set_max_bandwidth_ul(1024);
rsp->mutable_session_ambr()->set_max_bandwidth_dl(1024);
EXPECT_CALL(
*amf_srv_client,
handle_response_to_access(CheckSrvResponse(&expected_response)))
.Times(1);
session_enforcer->m5g_move_to_active_state(session, notif, &session_uc);
}
TEST_F(SessionManagerHandlerTest, test_create_session_policy_report) {
magma::SetSMSessionContext request;
set_sm_session_context(&request);
grpc::ServerContext server_context;
// create expected request for report_create_session call
CreateSessionRequest expected_request;
expected_request.mutable_common_context()->CopyFrom(request.common_context());
expected_request.mutable_rat_specific_context()->CopyFrom(
request.rat_specific_context());
// Create session request towards policydb
EXPECT_CALL(
*reporter, report_create_session(CheckSendRequest(expected_request), _))
.Times(1);
// create session and expect one call
set_session_manager->SetAmfSessionContext(
&server_context, &request,
[this](grpc::Status status, SmContextVoid Void) {});
// Run session creation in the EventBase loop
evb->loopOnce();
evb->loopOnce();
// Set the sessionconfig
SessionConfig cfg;
cfg.common_context = request.common_context();
cfg.rat_specific_context = request.rat_specific_context();
cfg.rat_specific_context.mutable_m5gsm_session_context()->set_ssc_mode(
SSC_MODE_3);
auto session_map = session_store->read_sessions({IMSI1});
auto it = session_map.find(IMSI1);
EXPECT_FALSE(it == session_map.end());
EXPECT_EQ(session_map[IMSI1].size(), 1);
auto& session_temp = session_map[IMSI1][0];
EXPECT_EQ(session_temp->get_config().common_context.sid().id(), IMSI1);
// Init the session
session_enforcer->m5g_init_session_credit(
session_map, IMSI1, SESSION_ID_1, cfg);
CreateSessionResponse response;
response.mutable_static_rules()->Add()->mutable_rule_id()->assign("rule1");
create_credit_update_response(
IMSI1, SESSION_ID_1, 1, 1025, response.mutable_credits()->Add());
// Create the session state
SessionUpdate update = SessionStore::get_default_session_update(session_map);
SessionSearchCriteria criteria(IMSI1, IMSI_AND_SESSION_ID, SESSION_ID_1);
auto session_it = session_store->find_session(session_map, criteria);
auto& session_t = **session_it;
SessionStateUpdateCriteria* session_uc = &update[IMSI1][SESSION_ID_1];
session_t->set_config(cfg, session_uc);
EXPECT_TRUE(session_t->is_5g_session());
session_enforcer->update_session_with_policy(session_t, response, session_uc);
session_t->set_upf_teid_endpoint("192.168.200.1", 2147483647, session_uc);
// Fill the sess_info
SessionState::SessionInfo sess_info;
sess_info.local_f_teid = 2147483647;
sess_info.subscriber_id = IMSI1;
// Event report for session creation
EXPECT_CALL(
*events_reporter,
session_created(IMSI1, SESSION_ID_1, testing::_, testing::_))
.Times(1);
// Set upf session info
EXPECT_CALL(
*pipelined_client, set_upf_session(SessionCheck(sess_info), _, _, _))
.Times(1);
// Update the session
session_enforcer->m5g_update_session_context(
session_map, IMSI1, session_t, update);
bool write_success =
session_store->create_sessions(IMSI1, std::move(session_map[IMSI1]));
EXPECT_TRUE(write_success);
auto session_map_2 = session_store->read_sessions(SessionRead{IMSI1});
EXPECT_EQ(session_map_2[IMSI1].front()->get_request_number(), 1);
}
TEST_F(SessionManagerHandlerTest, test_terminate_session_policy_report) {
magma::SetSMSessionContext request;
set_sm_session_context(&request);
grpc::ServerContext server_context;
// create session and expect one call
set_session_manager->SetAmfSessionContext(
&server_context, &request,
[this](grpc::Status status, SmContextVoid Void) {});
// Run session creation in the EventBase loop
evb->loopOnce();
evb->loopOnce();
// Set the session config
SessionConfig cfg;
cfg.common_context = request.common_context();
cfg.rat_specific_context = request.rat_specific_context();
cfg.rat_specific_context.mutable_m5gsm_session_context()->set_ssc_mode(
SSC_MODE_3);
auto session_map = session_store->read_sessions({IMSI1});
auto it = session_map.find(IMSI1);
EXPECT_FALSE(it == session_map.end());
EXPECT_EQ(session_map[IMSI1].size(), 1);
auto& session_temp = session_map[IMSI1][0];
EXPECT_EQ(session_temp->get_config().common_context.sid().id(), IMSI1);
// create session state
SessionUpdate update = SessionStore::get_default_session_update(session_map);
uint32_t pdu_id = 5;
SessionSearchCriteria criteria(IMSI1, IMSI_AND_PDUID, pdu_id);
auto session_it = session_store->find_session(session_map, criteria);
auto& session = **session_it;
auto session_i = session->get_session_id();
// SessionTerminateRequest towards policydb
EXPECT_CALL(
*reporter,
report_terminate_session(CheckTerminateRequestCount(IMSI1, 0, 0), _))
.Times(1);
// Event report for session terminate
EXPECT_CALL(*events_reporter, session_terminated(IMSI1, testing::_)).Times(1);
// session complete terminate
session_enforcer->m5g_complete_termination(
session_map, IMSI1, session_i, update);
EXPECT_EQ(session_map[IMSI1].size(), 0);
}
TEST_F(SessionManagerHandlerTest, test_single_record_5g) {
magma::SetSMSessionContext request;
set_sm_session_context(&request);
// Add static rule
insert_static_rule(1, "", "rule1");
// Make Session Response from polcydb
CreateSessionResponse response;
auto credits = response.mutable_credits();
create_credit_update_response(IMSI1, SESSION_ID_1, 1, 1024, credits->Add());
StaticRuleInstall rule1;
rule1.set_rule_id("rule1");
auto rules_to_install = response.mutable_static_rules();
rules_to_install->Add()->CopyFrom(rule1);
// Fill the RuleRecordTable
RuleRecordTable table;
auto record_list = table.mutable_records();
create_rule_record(
IMSI1, "192.168.128.11", "rule1", 16, 32, 2147483647, record_list->Add());
// Set the session config
SessionConfig cfg;
cfg.common_context = request.common_context();
cfg.rat_specific_context = request.rat_specific_context();
cfg.rat_specific_context.mutable_m5gsm_session_context()->set_ssc_mode(
SSC_MODE_3);
grpc::ServerContext server_context;
// create session and expect one call
set_session_manager->SetAmfSessionContext(
&server_context, &request,
[this](grpc::Status status, SmContextVoid Void) {});
// Run session creation in the EventBase loop
evb->loopOnce();
auto session_map = session_store->read_sessions({IMSI1});
// Init the session
session_enforcer->m5g_init_session_credit(
session_map, IMSI1, SESSION_ID_1, cfg);
// Read the session and create session state
SessionSearchCriteria criteria(IMSI1, IMSI_AND_SESSION_ID, SESSION_ID_1);
auto session_it = session_store->find_session(session_map, criteria);
auto& session_t = **session_it;
auto update = SessionStore::get_default_session_update(session_map);
// Update the policy
session_enforcer->update_session_with_policy(session_t, response, nullptr);
// Update the session
session_enforcer->m5g_update_session_context(
session_map, IMSI1, session_t, update);
// Report Traffic
local_enforcer->aggregate_records(session_map, table, update);
assert_charging_credit(
session_map, IMSI1, SESSION_ID_1, ALLOWED_TOTAL, {{1, 1024}});
}
TEST_F(SessionManagerHandlerTest, test_update_session_credits_and_rules_5g) {
magma::SetSMSessionContext request;
set_sm_session_context(&request);
// Add static rule
insert_static_rule(1, "", "rule1");
// Make Session Response from polcydb
CreateSessionResponse response;
auto credits = response.mutable_credits();
create_credit_update_response(IMSI1, SESSION_ID_1, 1, 4096, credits->Add());
// Set session config
SessionConfig cfg;
cfg.common_context = request.common_context();
cfg.rat_specific_context = request.rat_specific_context();
cfg.rat_specific_context.mutable_m5gsm_session_context()->set_ssc_mode(
SSC_MODE_3);
grpc::ServerContext server_context;
// create session and expect one call
set_session_manager->SetAmfSessionContext(
&server_context, &request,
[this](grpc::Status status, SmContextVoid Void) {});
// Run session creation in the EventBase loop
evb->loopOnce();
// Read the session and create the session state
auto session_map = session_store->read_sessions({IMSI1});
session_enforcer->m5g_init_session_credit(
session_map, IMSI1, SESSION_ID_1, cfg);
SessionSearchCriteria criteria(IMSI1, IMSI_AND_SESSION_ID, SESSION_ID_1);
auto session_it = session_store->find_session(session_map, criteria);
auto& session_t = **session_it;
auto update = SessionStore::get_default_session_update(session_map);
// Update the policy
session_enforcer->update_session_with_policy(session_t, response, nullptr);
// Update the session
session_enforcer->m5g_update_session_context(
session_map, IMSI1, session_t, update);
assert_charging_credit(
session_map, IMSI1, SESSION_ID_1, ALLOWED_TOTAL, {{1, 4096}});
// Add the statis rule
insert_static_rule(1, "1", "rule1");
// Fill the RuleRecordTable
RuleRecordTable table;
auto record_list = table.mutable_records();
create_rule_record(IMSI1, "rule1", 1024, 1024, record_list->Add());
auto uc = get_default_update_criteria();
session_map[IMSI1][0]->increment_rule_stats("rule1", &uc);
// Report Traffic
local_enforcer->aggregate_records(session_map, table, update);
session_store->create_sessions(IMSI1, std::move(session_map[IMSI1]));
UpdateSessionResponse update_response;
auto credit_updates_response = update_response.mutable_responses();
create_credit_update_response(
IMSI1, SESSION_ID_1, 1, 24, credit_updates_response->Add());
auto monitor_updates_response =
update_response.mutable_usage_monitor_responses();
create_monitor_update_response(
IMSI1, SESSION_ID_1, "1", MonitoringLevel::PCC_RULE_LEVEL, 2048,
monitor_updates_response->Add());
create_credit_update_response(
IMSI1, SESSION_ID_2, 1, 400, credit_updates_response->Add());
create_monitor_update_response(
IMSI1, SESSION_ID_2, "1", MonitoringLevel::PCC_RULE_LEVEL, 500,
monitor_updates_response->Add());
session_map = session_store->read_sessions(SessionRead{IMSI1});
// Update the session credits and rules
local_enforcer->update_session_credits_and_rules(
session_map, update_response, update);
assert_charging_credit(
session_map, IMSI1, SESSION_ID_1, ALLOWED_TOTAL, {{1, 4120}});
assert_monitor_credit(
session_map, IMSI1, SESSION_ID_1, ALLOWED_TOTAL, {{"1", 2048}});
}
int main(int argc, char** argv) {
::testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}
} // namespace magma
| [
"[email protected]"
] | |
c1d6dba57b7bb4b3abe8483414def16e271d4b73 | 70b1d21062592106e451d1d2cdbce6585d096117 | /blazemark/src/blas/TDVecTDMatMult.cpp | 3eb597bc39aceea1774f6b347291c66a1d954291 | [
"BSD-3-Clause"
] | permissive | sherryshare/blaze-2.0 | 5300ab03758b0e5701f44e52923a107b5a42ee25 | 3c2011b7e59e992f1f8306fc69f17bba9becedc7 | refs/heads/master | 2016-09-10T01:40:29.813936 | 2014-07-09T03:37:11 | 2014-07-09T03:37:11 | 21,636,696 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,542 | cpp | //=================================================================================================
/*!
// \file src/blas/TDVecTDMatMult.cpp
// \brief Source file for the BLAS transpose dense vector/transpose dense matrix multiplication kernel
//
// Copyright (C) 2013 Klaus Iglberger - All Rights Reserved
//
// This file is part of the Blaze library. You can redistribute it and/or modify it under
// the terms of the New (Revised) BSD License. Redistribution and use in source and binary
// forms, with or without modification, are permitted provided that the following conditions
// are met:
//
// 1. Redistributions of source code must retain the above copyright notice, this list of
// conditions and the following disclaimer.
// 2. Redistributions in binary form must reproduce the above copyright notice, this list
// of conditions and the following disclaimer in the documentation and/or other materials
// provided with the distribution.
// 3. Neither the names of the Blaze development group nor the names of its contributors
// may be used to endorse or promote products derived from this software without specific
// prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
// OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
// SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
// INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
// TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
// BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
// ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
// DAMAGE.
*/
//=================================================================================================
//*************************************************************************************************
// Includes
//*************************************************************************************************
#include <iostream>
#include <blaze/math/DynamicMatrix.h>
#include <blaze/math/DynamicVector.h>
#include <blaze/util/Timing.h>
#include <blazemark/blas/Init.h>
#include <blazemark/blas/TDVecTDMatMult.h>
#include <blazemark/system/BLAS.h>
#include <blazemark/system/Config.h>
namespace blazemark {
namespace blas {
//=================================================================================================
//
// KERNEL FUNCTIONS
//
//=================================================================================================
//*************************************************************************************************
/*!\brief Kernel function for single precision vectors and matrices.
//
// \param Order Whether the matrix is row major order (C-Style) for column major order (Fortran-style).
// \param TransA Whether to transpose matrix A.
// \param M Rows in matrices A.
// \param N Columns in matrix A.
// \param alpha Scalar factor for \f$ \alpha op(A)x \f$.
// \param A Pointer to the first element of matrix A.
// \param lda The size of the first dimension of matrix A.
// \param X Pointer to the first element of vector X.
// \param incX Use every incX'th element of vector X.
// \param beta Scalar factor for \f$ y \f$.
// \param Y Pointer to the first element of vector Y.
// \param incY Use every incY'th element of vector Y.
// \return void
*/
inline void gemv( const CBLAS_ORDER Order, const CBLAS_TRANSPOSE TransA,
const int M, const int N, const float alpha,
const float *A, const int lda, const float *X, const int incX,
const float beta, float *Y, const int incY )
{
cblas_sgemv( Order, TransA, M, N, alpha, A, lda, X, incX, beta, Y, incY );
}
//*************************************************************************************************
//*************************************************************************************************
/*!\brief Kernel function for double precision vectors and matrices.
//
// \param Order Whether the matrix is row major order (C-Style) for column major order (Fortran-style).
// \param TransA Whether to transpose matrix A.
// \param M Rows in matrices A.
// \param N Columns in matrix A.
// \param alpha Scalar factor for \f$ \alpha op(A)x \f$.
// \param A Pointer to the first element of matrix A.
// \param lda The size of the first dimension of matrix A.
// \param X Pointer to the first element of vector X.
// \param incX Use every incX'th element of vector X.
// \param beta Scalar factor for \f$ y \f$.
// \param Y Pointer to the first element of vector Y.
// \param incY Use every incY'th element of vector Y.
// \return void
*/
inline void gemv( const CBLAS_ORDER Order, const CBLAS_TRANSPOSE TransA,
const int M, const int N, const double alpha,
const double *A, const int lda, const double *X, const int incX,
const double beta, double *Y, const int incY )
{
cblas_dgemv( Order, TransA, M, N, alpha, A, lda, X, incX, beta, Y, incY );
}
//*************************************************************************************************
//=================================================================================================
//
// KERNEL FUNCTIONS
//
//=================================================================================================
//*************************************************************************************************
/*!\brief BLAS transpose dense vector/transpose dense matrix multiplication kernel.
//
// \param N The number of rows and columns of the matrix and the size of the vector.
// \param steps The number of iteration steps to perform.
// \return Minimum runtime of the kernel function.
//
// This kernel function implements the transpose dense vector/transpose dense matrix
// multiplication by means of BLAS functionality.
*/
double tdvectdmatmult( size_t N, size_t steps )
{
using ::blazemark::element_t;
using ::blaze::rowVector;
using ::blaze::columnMajor;
::blaze::setSeed( seed );
::blaze::DynamicMatrix<element_t,columnMajor> A( N, N );
::blaze::DynamicVector<element_t,rowVector> a( N ), b( N );
::blaze::timing::WcTimer timer;
init( a );
init( A );
gemv( CblasColMajor, CblasTrans, N, N, element_t(1),
A.data(), A.spacing(), a.data(), 1, element_t(0), b.data(), 1 );
for( size_t rep=0UL; rep<reps; ++rep )
{
timer.start();
for( size_t step=0UL; step<steps; ++step ) {
gemv( CblasColMajor, CblasTrans, N, N, element_t(1),
A.data(), A.spacing(), a.data(), 1, element_t(0), b.data(), 1 );
}
timer.end();
if( b.size() != N )
std::cerr << " Line " << __LINE__ << ": ERROR detected!!!\n";
if( timer.last() > maxtime )
break;
}
const double minTime( timer.min() );
const double avgTime( timer.average() );
if( minTime * ( 1.0 + deviation*0.01 ) < avgTime )
std::cerr << " BLAS kernel 'tdvectdmatmult': Time deviation too large!!!\n";
return minTime;
}
//*************************************************************************************************
} // namespace blas
} // namespace blazemark
| [
"[email protected]"
] | |
ea87b84869c367c98f57dda48a24ea48f591d4ed | 30def23f0cb672339fcd49d63a024d36d860fe44 | /cefui/cefui.cpp | 92be5cb18a82a4d09d36e605da10e97fdf9ae486 | [] | no_license | shaojava/cefui | 141e09ac3eb1cb4380634eee325c02bff13b2213 | f79937b74d440c890e1bf1e7ca5473c6f13b707a | refs/heads/master | 2021-04-12T08:44:58.865811 | 2017-06-13T06:15:59 | 2017-06-13T06:15:59 | null | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 9,726 | cpp | // cefui.cpp : 定义应用程序的入口点。
//
#include "stdafx.h"
#include "cefui.h"
#include "WrapCef.h"
#include <comdef.h>
#include <gdiplus.h>
#include <Shlobj.h>
#include <Shlwapi.h>
#include "ClientLogic.h"
#include "./pipe/sockCli.h"
#include <DbgHelp.h>
#pragma comment(lib, "DbgHelp.lib")
/*
#if defined(CEF_USE_SANDBOX)
// The cef_sandbox.lib static library is currently built with VS2013. It may not
// link successfully with other VS versions.
#pragma comment(lib, "cef_sandbox.lib")
#endif
#pragma comment(lib, "sandbox.lib")
#pragma comment(lib, "base.lib")
#pragma comment(lib, "base_static.lib")
#pragma comment(lib, "DbgHelp.lib")
#pragma comment(lib, "dynamic_annotations.lib")
#pragma comment(lib, "libcef.dll.lib")
#pragma comment(lib, "libcef_dll_wrapper.lib")
#pragma comment(lib, "opengl32.lib")*/
#pragma comment(lib, "gdiplus.lib")
#pragma comment(lib , "Shlwapi.lib")
#ifdef _DEBUG
#pragma comment(lib, "WrapCef_d.lib")
#else
#pragma comment(lib, "WrapCef.lib")
#endif
#define PORT 22563
#define MAX_LOADSTRING 100
// 全局变量:
HINSTANCE hInst; // 当前实例
TCHAR szTitle[MAX_LOADSTRING]; // 标题栏文本
TCHAR szWindowClass[MAX_LOADSTRING]; // 主窗口类名
ULONG_PTR gdiplusToken;
// 此代码模块中包含的函数的前向声明:
ATOM MyRegisterClass(HINSTANCE hInstance);
BOOL InitInstance(HINSTANCE, int);
LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM);
INT_PTR CALLBACK About(HWND, UINT, WPARAM, LPARAM);
ClientLogic* logic = NULL;
cyjh::SockCli* cli = NULL;
unsigned int __stdcall ConectSrvThread(void *){
HANDLE hMutex = NULL;
std::wstring directory;
wchar_t appDataDirectory[MAX_PATH];
if (FAILED(SHGetFolderPathW(0, CSIDL_LOCAL_APPDATA | CSIDL_FLAG_CREATE, 0, 0, appDataDirectory)))
return false;
directory = std::wstring(appDataDirectory) + L"\\webgameAgent";
directory.append(L"\\info.ini");
if (_waccess(directory.c_str(), 0) < 0)
{
return 0;
}
int port = GetPrivateProfileIntW(L"general", L"port", PORT, directory.c_str());
logic->setSockCli(cli);
cli->RegisterConnectFunction(&ClientLogic::Connect, logic);
cli->RegisterErrorFunction(&ClientLogic::Error, logic);
cli->RegisterRecvDataFunction(&ClientLogic::RecvSockData, logic);
cli->Connect("127.0.0.1", port);
return 0;
}
long __stdcall callback(_EXCEPTION_POINTERS* pExInfo)
{
//MessageBox(0,"Error","error",MB_OK);
TCHAR exeFullPath[MAX_PATH];
GetModuleFileName(NULL, exeFullPath, MAX_PATH);
TCHAR lpszDrive[255], lpszPath[1024], lpszName[255], lpszTemp[255];
_tsplitpath_s(exeFullPath, lpszDrive, lpszPath, lpszName, lpszTemp);
TCHAR dumpPath[MAX_PATH];
_stprintf_s(dumpPath, _T("%s%s%s"), lpszDrive, lpszPath, _T("render_cash.dmp"));
HANDLE hFile = ::CreateFile(dumpPath, GENERIC_WRITE, 0, NULL, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL);
if (hFile != INVALID_HANDLE_VALUE)
{
MINIDUMP_EXCEPTION_INFORMATION einfo;
einfo.ThreadId = ::GetCurrentThreadId();
einfo.ExceptionPointers = pExInfo;
einfo.ClientPointers = FALSE;
::MiniDumpWriteDump(::GetCurrentProcess(), ::GetCurrentProcessId(), hFile, MiniDumpNormal, &einfo, NULL, NULL);
::CloseHandle(hFile);
}
TCHAR msg[1024];
_stprintf_s(msg, _T("carsh, %s"), dumpPath);
//MessageBox(0, msg, _T("crash"), MB_OK | MB_ICONERROR);
return EXCEPTION_EXECUTE_HANDLER;
}
HHOOK hGetMsg = NULL;
HHOOK hCallMsg = NULL;
LRESULT CALLBACK GetMsgProc(
_In_ int code,
_In_ WPARAM wParam,
_In_ LPARAM lParam
)
{
if (code == HC_ACTION)
{
CWPSTRUCT* cwp = (CWPSTRUCT*)lParam;
if (cwp->message == WM_SETFOCUS){
OutputDebugStringW(L"-----[ GetMsgProc WM_SETFOCUS");
//return 0;
//cwp->message = WM_KILLFOCUS;
}
}
return CallNextHookEx(hGetMsg, code, wParam, lParam);
}
LRESULT CALLBACK CallWndProc(
_In_ int nCode,
_In_ WPARAM wParam,
_In_ LPARAM lParam
)
{
if (nCode == HC_ACTION)
{
CWPSTRUCT* cwp = (CWPSTRUCT*)lParam;
if (cwp->message == WM_SETFOCUS){
OutputDebugStringW(L"-----[ CallWndProc WM_SETFOCUS");
//return 0;
}
}
return CallNextHookEx(hCallMsg, nCode, wParam, lParam);
}
int APIENTRY _tWinMain(HINSTANCE hInstance,
HINSTANCE hPrevInstance,
LPTSTR lpCmdLine,
int nCmdShow)
{
#ifdef _DEBUG1
OutputDebugString(_T("################################_tWinMain----------------------------"));
#endif
UNREFERENCED_PARAMETER(hPrevInstance);
UNREFERENCED_PARAMETER(lpCmdLine);
// TODO: 在此放置代码。
MSG msg;
HACCEL hAccelTable;
// 初始化全局字符串
LoadString(hInstance, IDS_APP_TITLE, szTitle, MAX_LOADSTRING);
LoadString(hInstance, IDC_CEFUI, szWindowClass, MAX_LOADSTRING);
MyRegisterClass(hInstance);
Gdiplus::GdiplusStartupInput StartupInput;
GdiplusStartup(&gdiplusToken, &StartupInput, NULL);
hAccelTable = LoadAccelerators(hInstance, MAKEINTRESOURCE(IDC_CEFUI));
//InitCef(hInstance, hAccelTable); //不测试
SetUnhandledExceptionFilter(callback);
WCHAR exeFullPath[MAX_PATH + 32], PluginDirPath[MAX_PATH], szRenderPath[MAX_PATH];
GetModuleFileNameW(NULL, exeFullPath, MAX_PATH);
PathRemoveFileSpec(exeFullPath);
ClientLogic logic_inst;
cyjh::SockCli cli_inst;
logic = &logic_inst;
cli = &cli_inst;
bool bconnect = false;
if (wcsstr(lpCmdLine, L"--type=plugin")/* && wcsstr(lpCmdLine, L"NPSWF32")*/ )
{
unsigned int id;
HANDLE ht = (HANDLE)_beginthreadex(NULL, 0, ConectSrvThread, NULL, 0, &id);
CloseHandle(ht);
bconnect = true;
//hGetMsg = SetWindowsHookEx(WH_GETMESSAGE, GetMsgProc, 0, GetCurrentThreadId());
//hCallMsg = SetWindowsHookEx(WH_CALLWNDPROC, CallWndProc, 0, GetCurrentThreadId());
}
//PathCombine(szRenderPath, exeFullPath, L"renderx.exe");
if (wrapQweb::InitLibrary(hInstance, L"render.exe") < 0){
//wrapQweb::CreateWebView(0, 0, 10, 10, L"about:blank", 0, true, true, WIDGET_NORMAL_SIZE);
//wrapQweb::CreateWebView(0, 0, 1024, 768, L"https://zs.sguo.com/sys/OpenServerList.aspx", 255, true, true, WIDGET_NORMAL_SIZE);
//wrapQweb::CreateWebView(0, 0, 1024, 768, L"xpack:///d:/ui.pack/index.html", 255, true, true, WIDGET_NORMAL_SIZE);
wrapQweb::RunLoop();
wrapQweb::FreeLibrary();
}
// 执行应用程序初始化:
/*(if (!InitInstance (hInstance, nCmdShow))
{
return FALSE;
}
hAccelTable = LoadAccelerators(hInstance, MAKEINTRESOURCE(IDC_CEFUI));
// 主消息循环:
while (GetMessage(&msg, NULL, 0, 0))
{
if (!TranslateAccelerator(msg.hwnd, hAccelTable, &msg))
{
TranslateMessage(&msg);
DispatchMessage(&msg);
}
}
return (int)msg.wParam; */
Gdiplus::GdiplusShutdown(gdiplusToken);
if (hGetMsg)
{
UnhookWindowsHookEx(hGetMsg);
hGetMsg = NULL;
}
if (hCallMsg)
{
UnhookWindowsHookEx(hCallMsg);
hCallMsg = NULL;
}
return 0;
}
//
// 函数: MyRegisterClass()
//
// 目的: 注册窗口类。
//
// 注释:
//
// 仅当希望
// 此代码与添加到 Windows 95 中的“RegisterClassEx”
// 函数之前的 Win32 系统兼容时,才需要此函数及其用法。调用此函数十分重要,
// 这样应用程序就可以获得关联的
// “格式正确的”小图标。
//
ATOM MyRegisterClass(HINSTANCE hInstance)
{
WNDCLASSEX wcex;
wcex.cbSize = sizeof(WNDCLASSEX);
wcex.style = CS_HREDRAW | CS_VREDRAW;
wcex.lpfnWndProc = WndProc;
wcex.cbClsExtra = 0;
wcex.cbWndExtra = 0;
wcex.hInstance = hInstance;
wcex.hIcon = LoadIcon(hInstance, MAKEINTRESOURCE(IDI_CEFUI));
wcex.hCursor = LoadCursor(NULL, IDC_ARROW);
wcex.hbrBackground = (HBRUSH)(COLOR_WINDOW+1);
wcex.lpszMenuName = MAKEINTRESOURCE(IDC_CEFUI);
wcex.lpszClassName = szWindowClass;
wcex.hIconSm = LoadIcon(wcex.hInstance, MAKEINTRESOURCE(IDI_SMALL));
return RegisterClassEx(&wcex);
}
//
// 函数: InitInstance(HINSTANCE, int)
//
// 目的: 保存实例句柄并创建主窗口
//
// 注释:
//
// 在此函数中,我们在全局变量中保存实例句柄并
// 创建和显示主程序窗口。
//
BOOL InitInstance(HINSTANCE hInstance, int nCmdShow)
{
HWND hWnd;
hInst = hInstance; // 将实例句柄存储在全局变量中
hWnd = CreateWindow(szWindowClass, szTitle, WS_OVERLAPPEDWINDOW,
CW_USEDEFAULT, 0, CW_USEDEFAULT, 0, NULL, NULL, hInstance, NULL);
if (!hWnd)
{
return FALSE;
}
ShowWindow(hWnd, nCmdShow);
UpdateWindow(hWnd);
return TRUE;
}
//
// 函数: WndProc(HWND, UINT, WPARAM, LPARAM)
//
// 目的: 处理主窗口的消息。
//
// WM_COMMAND - 处理应用程序菜单
// WM_PAINT - 绘制主窗口
// WM_DESTROY - 发送退出消息并返回
//
//
LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
{
int wmId, wmEvent;
PAINTSTRUCT ps;
HDC hdc;
switch (message)
{
case WM_COMMAND:
wmId = LOWORD(wParam);
wmEvent = HIWORD(wParam);
// 分析菜单选择:
switch (wmId)
{
case IDM_ABOUT:
DialogBox(hInst, MAKEINTRESOURCE(IDD_ABOUTBOX), hWnd, About);
break;
case IDM_EXIT:
DestroyWindow(hWnd);
break;
default:
return DefWindowProc(hWnd, message, wParam, lParam);
}
break;
case WM_PAINT:
hdc = BeginPaint(hWnd, &ps);
// TODO: 在此添加任意绘图代码...
EndPaint(hWnd, &ps);
break;
case WM_DESTROY:
PostQuitMessage(0);
break;
default:
return DefWindowProc(hWnd, message, wParam, lParam);
}
return 0;
}
// “关于”框的消息处理程序。
INT_PTR CALLBACK About(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam)
{
UNREFERENCED_PARAMETER(lParam);
switch (message)
{
case WM_INITDIALOG:
return (INT_PTR)TRUE;
case WM_COMMAND:
if (LOWORD(wParam) == IDOK || LOWORD(wParam) == IDCANCEL)
{
EndDialog(hDlg, LOWORD(wParam));
return (INT_PTR)TRUE;
}
break;
}
return (INT_PTR)FALSE;
}
| [
"[email protected]"
] | |
cf06a46e9e48e1e326d20a0f6b3dfbff5e10864b | 5a82ac1cefcf56f77368b2cf523a5e7832d74d93 | /src/Units1PropertyPage.cpp | 54671b2da13d655db57c6a22cf63ce27920a4ee0 | [] | no_license | scharlton2/wphast3 | a1b225955af8a662dfc487650a140a70f3b44705 | 23a334f0693ebc42ca914a7b4e17cd11875cc025 | refs/heads/master | 2023-08-27T18:51:33.531066 | 2021-10-26T21:31:41 | 2021-10-26T21:31:41 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,573 | cpp | // Units1PropertyPage.cpp : implementation file
//
#include "stdafx.h"
#include "WPhast.h"
#include "Units1PropertyPage.h"
#include "Global.h"
// CUnits1PropertyPage dialog
IMPLEMENT_DYNAMIC(CUnits1PropertyPage, CPropertyPage)
CUnits1PropertyPage::CUnits1PropertyPage()
: CPropertyPage(CUnits1PropertyPage::IDD)
, m_idSetFocus(0)
{
}
CUnits1PropertyPage::CUnits1PropertyPage(UINT nIDCaption, UINT nIDHeaderTitle, UINT nIDHeaderSubTitle)
: CPropertyPage(CUnits1PropertyPage::IDD, nIDCaption, nIDHeaderTitle, nIDHeaderSubTitle)
, m_idSetFocus(0)
{
}
CUnits1PropertyPage::~CUnits1PropertyPage()
{
}
void CUnits1PropertyPage::DoDataExchange(CDataExchange* pDX)
{
CPropertyPage::DoDataExchange(pDX);
DDX_Control(pDX, IDC_TIME_COMBO, m_wndTimeCombo);
DDX_Control(pDX, IDC_HORZ_COMBO, m_wndHorizontalCombo);
DDX_Control(pDX, IDC_VERT_COMBO, m_wndVerticalCombo);
DDX_Control(pDX, IDC_HORZ_MAP_COMBO, m_wndHorizontalMapCombo);
DDX_Control(pDX, IDC_VERT_MAP_COMBO, m_wndVerticalMapCombo);
DDX_Control(pDX, IDC_HEAD_COMBO, m_wndHeadCombo);
// time
if (m_wndTimeCombo.GetCount() == 0)
{
CGlobal::AddTimeUnits(&m_wndTimeCombo);
}
// horizontal
if (m_wndHorizontalCombo.GetCount() == 0)
{
CGlobal::AddLengthUnits(&m_wndHorizontalCombo);
}
// vertical
if (m_wndVerticalCombo.GetCount() == 0)
{
CGlobal::AddLengthUnits(&m_wndVerticalCombo);
}
// map_horizontal
if (m_wndHorizontalMapCombo.GetCount() == 0)
{
CGlobal::AddLengthUnits(&m_wndHorizontalMapCombo);
}
// map_vertical
if (m_wndVerticalMapCombo.GetCount() == 0)
{
CGlobal::AddLengthUnits(&m_wndVerticalMapCombo);
}
// head
if (m_wndHeadCombo.GetCount() == 0)
{
CGlobal::AddLengthUnits(&m_wndHeadCombo);
}
if (pDX->m_bSaveAndValidate)
{
CString numer;
CString denom;
CString value;
// time
this->m_wndTimeCombo.GetLBText(this->m_wndTimeCombo.GetCurSel(), numer);
VERIFY(this->m_units.time.set_input(numer) == OK);
// horizontal
this->m_wndHorizontalCombo.GetLBText(this->m_wndHorizontalCombo.GetCurSel(), numer);
VERIFY(this->m_units.horizontal.set_input(numer) == OK);
// vertical
this->m_wndVerticalCombo.GetLBText(this->m_wndVerticalCombo.GetCurSel(), numer);
VERIFY(this->m_units.vertical.set_input(numer) == OK);
// map_horizontal
this->m_wndHorizontalMapCombo.GetLBText(this->m_wndHorizontalMapCombo.GetCurSel(), numer);
VERIFY(this->m_units.map_horizontal.set_input(numer) == OK);
// map_vertical
this->m_wndVerticalMapCombo.GetLBText(this->m_wndVerticalMapCombo.GetCurSel(), numer);
VERIFY(this->m_units.map_vertical.set_input(numer) == OK);
// head
this->m_wndHeadCombo.GetLBText(this->m_wndHeadCombo.GetCurSel(), numer);
VERIFY(this->m_units.head.set_input(numer) == OK);
}
else
{
// time
if (this->m_units.time.defined)
{
VERIFY(this->m_wndTimeCombo.SelectString(0, CGlobal::GetStdTimeUnits(this->m_units.time.input).c_str()) != CB_ERR);
}
else
{
VERIFY(this->m_wndTimeCombo.SelectString(0, CGlobal::GetStdTimeUnits(this->m_units.time.si).c_str()) != CB_ERR);
}
// horizontal
if (this->m_units.horizontal.defined)
{
VERIFY(this->m_wndHorizontalCombo.SelectString(0, CGlobal::GetStdLengthUnits(this->m_units.horizontal.input).c_str()) != CB_ERR);
}
else
{
VERIFY(this->m_wndHorizontalCombo.SelectString(0, CGlobal::GetStdLengthUnits(this->m_units.horizontal.si).c_str()) != CB_ERR);
}
// vertical
if (this->m_units.vertical.defined)
{
VERIFY(this->m_wndVerticalCombo.SelectString(0, CGlobal::GetStdLengthUnits(this->m_units.vertical.input).c_str()) != CB_ERR);
}
else
{
VERIFY(this->m_wndVerticalCombo.SelectString(0, CGlobal::GetStdLengthUnits(this->m_units.vertical.si).c_str()) != CB_ERR);
}
// map_horizontal
if (this->m_units.map_horizontal.defined)
{
VERIFY(this->m_wndHorizontalMapCombo.SelectString(0, CGlobal::GetStdLengthUnits(this->m_units.map_horizontal.input).c_str()) != CB_ERR);
}
else
{
VERIFY(this->m_wndHorizontalMapCombo.SelectString(0, CGlobal::GetStdLengthUnits(this->m_units.map_horizontal.si).c_str()) != CB_ERR);
}
// map_vertical
if (this->m_units.map_vertical.defined)
{
VERIFY(this->m_wndVerticalMapCombo.SelectString(0, CGlobal::GetStdLengthUnits(this->m_units.map_vertical.input).c_str()) != CB_ERR);
}
else
{
VERIFY(this->m_wndVerticalMapCombo.SelectString(0, CGlobal::GetStdLengthUnits(this->m_units.map_vertical.si).c_str()) != CB_ERR);
}
// head
if (this->m_units.head.defined)
{
VERIFY(this->m_wndHeadCombo.SelectString(0, CGlobal::GetStdLengthUnits(this->m_units.head.input).c_str()) != CB_ERR);
}
else
{
VERIFY(this->m_wndHeadCombo.SelectString(0, CGlobal::GetStdLengthUnits(this->m_units.head.si).c_str()) != CB_ERR);
}
}
}
void CUnits1PropertyPage::SetProperties(const CUnits& r_units)
{
this->m_units = r_units;
}
void CUnits1PropertyPage::GetProperties(CUnits& r_units)const
{
// time
r_units.time = this->m_units.time;
// horizontal
r_units.horizontal = this->m_units.horizontal;
// vertical
r_units.vertical = this->m_units.vertical;
// map_horizontal
r_units.map_horizontal = this->m_units.map_horizontal;
// map_vertical
r_units.map_vertical = this->m_units.map_vertical;
// head
r_units.head = this->m_units.head;
}
BEGIN_MESSAGE_MAP(CUnits1PropertyPage, CPropertyPage)
ON_MESSAGE(WM_SETPAGEFOCUS, OnSetPageFocus)
END_MESSAGE_MAP()
// CUnits1PropertyPage message handlers
BOOL CUnits1PropertyPage::Contains(int nID)const
{
switch (nID)
{
case IDC_TIME_COMBO:
case IDC_HORZ_COMBO:
case IDC_VERT_COMBO:
case IDC_HORZ_MAP_COMBO:
case IDC_VERT_MAP_COMBO:
case IDC_HEAD_COMBO:
return TRUE;
}
return FALSE;
}
void CUnits1PropertyPage::SetControlFocus(int nID)
{
if (this->Contains(nID))
{
this->m_idSetFocus = nID;
}
else
{
this->m_idSetFocus = 0;
}
}
BOOL CUnits1PropertyPage::OnSetActive()
{
BOOL bRet = CPropertyPage::OnSetActive();
CPropertySheet* pSheet = (CPropertySheet*) this->GetParent();
if (pSheet->IsWizard())
{
pSheet->SetWizardButtons(PSWIZB_BACK|PSWIZB_NEXT);
}
else
{
this->PostMessage(WM_SETPAGEFOCUS, 0, 0L);
}
return bRet;
}
LRESULT CUnits1PropertyPage::OnSetPageFocus(WPARAM, LPARAM)
{
if (this->m_idSetFocus != 0)
{
if (CWnd* pWnd = this->GetDlgItem(this->m_idSetFocus))
{
pWnd->SetFocus();
}
}
return 0;
}
BOOL CUnits1PropertyPage::OnInitDialog()
{
CPropertyPage::OnInitDialog();
return TRUE; // return TRUE unless you set the focus to a control
// EXCEPTION: OCX Property Pages should return FALSE
}
| [
"[email protected]"
] | |
cf3b728ba87c443d7433216b99b65dcced1aebed | b394796a58aecc9082bc039a95e02e9f7f53f92a | /lightfromlight/lightfromlight.ino | c2902c0089b8f085a0eaeec31da465cc8b86d17c | [] | no_license | jodal/sketchbook | e2823af5077bee2a1cff80606eca24ceee5d8299 | e04d60ad19b3ad0b2014a8377696f604d39f463f | refs/heads/master | 2021-01-10T19:47:46.337086 | 2014-12-28T00:35:41 | 2014-12-28T00:36:58 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,091 | ino | const int greenLEDPin = 9;
const int redLEDPin = 10;
const int blueLEDPin = 11;
const int redSensorPin = A0;
const int greenSensorPin = A1;
const int blueSensorPin = A2;
int redValue = 0;
int greenValue = 0;
int blueValue = 0;
int redSensorValue = 0;
int greenSensorValue = 0;
int blueSensorValue = 0;
void setup() {
Serial.begin(9600);
pinMode(greenLEDPin, OUTPUT);
pinMode(redLEDPin, OUTPUT);
pinMode(blueLEDPin, OUTPUT);
}
void loop() {
redSensorValue = analogRead(redSensorPin);
delay(5);
greenSensorValue = analogRead(greenSensorPin);
delay(5);
blueSensorValue = analogRead(blueSensorPin);
Serial.print("Raw sensor values \t Red: ");
Serial.print(redSensorValue);
Serial.print("\t Green: ");
Serial.print(greenSensorValue);
Serial.print("\t Blue: ");
Serial.println(blueSensorValue);
redValue = redSensorValue / 4;
blueValue = blueSensorValue / 4;
greenValue = greenSensorValue / 4;
analogWrite(redLEDPin, redValue);
analogWrite(greenLEDPin, greenValue);
analogWrite(blueLEDPin, blueValue);
}
| [
"[email protected]"
] | |
7e67b94fe8bcd9a7cf7bac14f69a1afd45f9637b | 4af341026c371c8e25d37780c3d2a85063ec60ea | /CF-665-Maximum Distributed Tree - NEVER TAKE MOD BEFORE SORTING.cpp | 4938013241664ccbf34d2916a2d01af20d291545 | [] | no_license | i-am-arvinder-singh/CP | 46a32f9235a656e7d777a16ccbce980cb1eb1c63 | e4e79e4ffc636f078f16a25ce81a3095553fc060 | refs/heads/master | 2023-07-12T19:20:41.093734 | 2021-08-29T06:58:55 | 2021-08-29T06:58:55 | 266,883,239 | 1 | 1 | null | 2020-10-04T14:00:29 | 2020-05-25T21:25:39 | C++ | UTF-8 | C++ | false | false | 3,302 | cpp | #include <bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp> // Common file
#include <ext/pb_ds/tree_policy.hpp> // Including tree_order_statistics_node_update
using namespace std;
using namespace __gnu_pbds;//which means policy based DS
#define endl "\n"
#define int long long
#define ff first
#define ss second
#define fl(i,a,b) for(int i=(int)a; i<(int)b; i++)
#define bfl(i,a,b) for(int i=(int)a-1; i>=(int)b; i--)
#define pb push_back
#define mp make_pair
#define pii pair<int,int>
#define vi vector<int>
#define vt(type) vector<type>
#define omniphantom ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL);
#define mii map<int,int>
#define pqb priority_queue<int>
//Below is implementation of min heap
#define pqs priority_queue<int,vi,greater<int> >
#define setbits(x) __builtin_popcountll(x)
#define zrobits(x) __builtin_ctzll(x)
#define mod 1000000007
#define inf 1e18
#define ps(x,y) fixed<<setprecision(y)<<x
#define mk(arr,n,type) type *arr=new type[n];
#define w(x) int x; cin>>x; while(x--)
#define pw(b,p) pow(b,p) + 0.1
#define ini const int
#define sz(v) ((int)(v).size())
#define ppii pair<int,pii>
const double pi = acos(-1.0);
typedef tree<int, null_type, less<int>, rb_tree_tag, tree_order_statistics_node_update> ordered_set;
//struct comp{
// bool operator() (const pair<int, int> &f1, const pair<int, int> &f2){
// return (f1.ff-f1.ff/2)*f1.ss > (f2.ff-f2.ff/2)*f2.ss;
// }
//};
//int sum = 0;
//ini mx = 1e5 +5;
//vector<pair<int,int>> g[mx];
//multiset<pair<int,int>,comp> s;
//int power(int x, int y)
//{
// int ans=1;
// while(y){
// if(y&1) ans*=x;
// x*=x;
// y>>=1;
// }
// return ans;
//}
const int MAX = 1e5+10;
int n;
vector<int> g[MAX];
vector<int> sum;
vector<int> res;
int add(int x, int y)
{
return (x+y)%mod;
}
int mul(int x, int y)
{
x%=mod;
y%=mod;
return (x*y)%mod;
}
void dfs(int u, int p=-1)
{
sum[u]=1;
for(auto ch:g[u]){
if(ch==p) continue;
dfs(ch,u);
sum[u]+=sum[ch];
}
res.push_back(sum[u]*(n-sum[u]));
}
void solve()
{
cin>>n;
sum.clear();
sum.resize(n+1);
res.clear();
for(int i=0;i<=n;i++) g[i].clear();
for(int i=1;i<n;i++){
int a,b;
cin>>a>>b;
g[a].pb(b);
g[b].pb(a);
}
int m;
cin>>m;
vector<int> p(m);
for(int i=0;i<m;i++) cin>>p[i];
while((int)p.size()<n-1) p.push_back(1);
sort(p.begin(),p.end());
while((int)p.size()>n-1){
int x = p.back();p.pop_back();
int y = p.back();p.pop_back();
p.push_back((x*y)%mod);
}
dfs(1);
//Never take mod before sorting
sort(res.begin(),res.end());
int ans = 0;
for(int i=1;i<(int)res.size();i++){
ans=add(ans,mul(res[i],p[i-1]));
}
cout<<ans<<endl;
}
int32_t main()
{
omniphantom
#if 1
w(t)
#endif // 0
solve();
return 0;
}
| [
"[email protected]"
] | |
71b34ee2d3a4e802e4a1e9e065c238162e16da47 | aa1a7906ba9ff9987ffed385beea50e6c4bed1f7 | /Kernel/header/RTL8168.hpp | cc884a3602bffaeb525cda5210af16792e041437 | [
"MIT"
] | permissive | NudelErde/Kernel | 36721153fbc8bb933f2440b98b4655498d6843c8 | 875a0635b5bbd910680970a9446cb86b96b62323 | refs/heads/main | 2023-07-31T18:40:00.379827 | 2021-09-21T23:10:34 | 2021-09-21T23:10:34 | 360,858,847 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,168 | hpp | #pragma once
#include "Ethernet.hpp"
namespace Kernel {
class RTL8168 : public Ethernet {
public:
RTL8168(PCI* dev, const PCICommonHeader& header);
void onInterrupt();
virtual void setOnLinkChange(void (*)(uint64_t), uint64_t data);
virtual void setOnReceive(void (*)(uint64_t, bool), uint64_t data);
virtual void setOnTransmit(void (*)(uint64_t, bool), uint64_t data);
virtual bool transmitPacket(uint8_t* buffer, uint64_t size);
virtual uint64_t getReceivedPacket(uint8_t* buffer, uint64_t size);
virtual uint8_t getConnectionStatus();
static bool isSupported(uint64_t vendor, uint64_t device);
private:
constexpr static uint64_t rxPageCount = 4;
constexpr static uint64_t txPageCount = 4;
void (*linkChangeHandler)(uint64_t);
uint64_t linkChangeHandlerData;
void (*rxHandler)(uint64_t, bool);
uint64_t rxHandlerData;
void (*txHandler)(uint64_t, bool);
uint64_t txHandlerData;
uint64_t ethernetID;
uint64_t descriptorPage;
uint64_t rxBaseDesc;
uint64_t txBaseDesc;
uint64_t rxPages[rxPageCount];
uint64_t txPages[txPageCount];
PCI* dev;
};
}// namespace Kernel | [
"[email protected]"
] | |
756082f51b98c1b3b1ad155ee5640a4938c0ca2f | 1c47dcb150f8a4c68f1428c4bf93dc7315d61af9 | /Ejercicio4TAIS/Ejercicio4TAIS/04.cpp | afe9f8d95221ec78343824932732e3e080e0be37 | [] | no_license | Char-Mander/Ejercicios-TAIS | 73542b6a8029cb2b67cb349fc5b50e230ee84ffd | 17bddad908fbb5bc7d17d9cfb31a99138709b2ae | refs/heads/master | 2020-06-12T12:12:01.102524 | 2019-06-28T15:26:45 | 2019-06-28T15:26:45 | 194,294,375 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,419 | cpp | // Grupo TAIS09
//Laura Jiménez Fernández y Pablo de Torre Barrio
#include <iostream>
#include <iomanip>
#include <fstream>
#include <vector>
#include <assert.h>
#include <stdio.h>
#include <algorithm>
#include "04H.h"
// función que resuelve el problema
// La función que resuelve el problema tiene coste O(logN), comentado en el TreeMap_AVL.h
// Resuelve un caso de prueba, leyendo de la entrada la
// configuración, y escribiendo la respuesta
bool resuelveCaso() {
// leer los datos de la entrada
int n;
std::cin >> n;
if (n == 0)
return false;
map<int, int> arbol;
int raiz;
for (int i = 0; i < n; i++){
std::cin >> raiz;
if(!arbol.contains(raiz))
arbol.insert({ raiz, raiz });
}
int k, num, sol;
std::cin >> k;
for (int i = 0; i < k; i++) {
std::cin>>num;
try {
arbol.kesimo(num, sol);
std::cout << sol << '\n';
}
catch (std::domain_error) {
std::cout << "??\n";
}
}
std::cout << "----\n";
return true;
}
int main() {
// Para la entrada por fichero.
// Comentar para acepta el reto
#ifndef DOMJUDGE
std::ifstream in("prueba.txt");
auto cinbuf = std::cin.rdbuf(in.rdbuf()); //save old buf and redirect std::cin to casos.txt
#endif
while (resuelveCaso())
;
// Para restablecer entrada. Comentar para acepta el reto
#ifndef DOMJUDGE // para dejar todo como estaba al principio
std::cin.rdbuf(cinbuf);
system("PAUSE");
#endif
return 0;
}
| [
"[email protected]"
] | |
bc635c8713bf9ab4213a0cb1cc0b006755d580b3 | b6be5aa8a95fbf3bc574fc2c338349a6bcd3e1b6 | /src_qt/rules/DisableNode.h | 2f32c45d02392bd07a5dce3a426afd13b1a342bc | [] | no_license | Cnotinfor/TopQX_Mind | cde7bfe765b009a336caa0bbf57d0c166be59718 | 45e63e1ecf410a53574d288ab3f15855e30787e6 | refs/heads/master | 2020-05-05T01:57:06.265224 | 2012-11-28T12:43:50 | 2012-11-28T12:43:50 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 461 | h | #ifndef DISABLENODE_H
#define DISABLENODE_H
#include <QtCore/QString>
#include "RuleNode.h"
namespace CnotiMind
{
class DisableNode : public RuleNode
{
public:
DisableNode( const QString& task, const QString& value, Brain* brain, QObject* parent );
void exec();
void exec( QHash<QString, QString>& variables );
QString info( int depth = 0 ) const;
private:
QString _nodeName;
bool _toDisable;
};
} // CnotiMind
#endif // DISABLENODE_H
| [
"[email protected]"
] | |
9c44902555147e67507bc5f0aa0a21400b163c80 | c1fec9321911ff765c7ac27300494525995ccea3 | /export/macos/obj/include/lime/_internal/backend/native/DropEventInfo.h | 64860f13fa6dd16a4d33d62610a203c4044126bf | [] | no_license | MagnusStrom/Fight | 9621a7162118ea96c483498107437f5061074285 | b0de99f412e8b94161cc555d839a464f4a47573b | refs/heads/main | 2023-07-11T22:24:35.145753 | 2021-08-09T09:20:46 | 2021-08-09T09:20:46 | 392,041,079 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | true | 2,771 | h | // Generated by Haxe 4.1.5
#ifndef INCLUDED_lime__internal_backend_native_DropEventInfo
#define INCLUDED_lime__internal_backend_native_DropEventInfo
#ifndef HXCPP_H
#include <hxcpp.h>
#endif
HX_DECLARE_STACK_FRAME(_hx_pos_a21879e7650910f2_655_new)
HX_DECLARE_CLASS4(lime,_internal,backend,native,DropEventInfo)
namespace lime{
namespace _internal{
namespace backend{
namespace native{
class HXCPP_CLASS_ATTRIBUTES DropEventInfo_obj : public ::hx::Object
{
public:
typedef ::hx::Object super;
typedef DropEventInfo_obj OBJ_;
DropEventInfo_obj();
public:
enum { _hx_ClassId = 0x33908375 };
void __construct( ::Dynamic type,::String file);
inline void *operator new(size_t inSize, bool inContainer=true,const char *inName="lime._internal.backend.native.DropEventInfo")
{ return ::hx::Object::operator new(inSize,inContainer,inName); }
inline void *operator new(size_t inSize, int extra)
{ return ::hx::Object::operator new(inSize+extra,true,"lime._internal.backend.native.DropEventInfo"); }
inline static ::hx::ObjectPtr< DropEventInfo_obj > __new( ::Dynamic type,::String file) {
::hx::ObjectPtr< DropEventInfo_obj > __this = new DropEventInfo_obj();
__this->__construct(type,file);
return __this;
}
inline static ::hx::ObjectPtr< DropEventInfo_obj > __alloc(::hx::Ctx *_hx_ctx, ::Dynamic type,::String file) {
DropEventInfo_obj *__this = (DropEventInfo_obj*)(::hx::Ctx::alloc(_hx_ctx, sizeof(DropEventInfo_obj), true, "lime._internal.backend.native.DropEventInfo"));
*(void **)__this = DropEventInfo_obj::_hx_vtable;
{
HX_STACKFRAME(&_hx_pos_a21879e7650910f2_655_new)
HXLINE( 656) ( ( ::lime::_internal::backend::native::DropEventInfo)(__this) )->type = ( (int)(type) );
HXLINE( 657) ( ( ::lime::_internal::backend::native::DropEventInfo)(__this) )->file = file;
}
return __this;
}
static void * _hx_vtable;
static Dynamic __CreateEmpty();
static Dynamic __Create(::hx::DynamicArray inArgs);
//~DropEventInfo_obj();
HX_DO_RTTI_ALL;
::hx::Val __Field(const ::String &inString, ::hx::PropertyAccess inCallProp);
::hx::Val __SetField(const ::String &inString,const ::hx::Val &inValue, ::hx::PropertyAccess inCallProp);
void __GetFields(Array< ::String> &outFields);
static void __register();
void __Mark(HX_MARK_PARAMS);
void __Visit(HX_VISIT_PARAMS);
bool _hx_isInstanceOf(int inClassId);
::String __ToString() const { return HX_("DropEventInfo",59,3b,00,66); }
::String file;
int type;
::lime::_internal::backend::native::DropEventInfo clone();
::Dynamic clone_dyn();
};
} // end namespace lime
} // end namespace _internal
} // end namespace backend
} // end namespace native
#endif /* INCLUDED_lime__internal_backend_native_DropEventInfo */
| [
"[email protected]"
] | |
426613f924bee33bb2f4012b7ffc69559ac86e29 | ed5499b7cf3424a2f0111a4401aedaa5757790a5 | /src/majority/majorityCheck.h | 8e1fd79a8ba74e72efd733ece07061af9d7143e5 | [] | no_license | Oiwen/dsa | 72b4b0ac2a106eeff4dea4ce9e52411f1a6dabe7 | 9b72387aa11965901c31bdf180f18fb219fea8d9 | refs/heads/master | 2020-12-14T22:38:32.752980 | 2020-01-19T12:37:39 | 2020-01-19T12:37:39 | 234,896,626 | 1 | 0 | null | null | null | null | GB18030 | C++ | false | false | 945 | h | /******************************************************************************************
* Data Structures in C++
* ISBN: 7-302-33064-6 & 7-302-33065-3 & 7-302-29652-2 & 7-302-26883-3
* Junhui DENG, [email protected]
* Computer Science & Technology, Tsinghua University
* Copyright (c) 2003-2019. All rights reserved.
******************************************************************************************/
#pragma once
template <typename T> bool majEleCheck ( Vector<T> A, T maj ) { //验证候选者是否确为众数
int occurrence = 0; //maj在A[]中出现的次数
for ( int i = 0; i < A.size(); i++ ) //逐一遍历A[]的各个元素
if ( A[i] == maj ) occurrence++; //每遇到一次maj,均更新计数器
/*DSA*/printf ( "%d found with %d/%d occurrence(s)\n", maj, occurrence, A.size() );
return 2 * occurrence > A.size(); //根据最终的计数值,即可判断是否的确当选
} | [
"[email protected]"
] | |
29f9d3dc2fe46e7346291c1fde77f60eb7917a4b | b127124fdb318fd4aeb6680e1ec8178325cad8b5 | /按 OJ 分类/牛客网/f-牛客网-2018 美团 CodeM 编程大赛-初赛 B 轮/1-开关灯/main.cpp | 5f4c55a9bf213ccf3abb53c6368ceb188de89ddf | [] | no_license | derekzhang79/ACM-1 | af4c297fddb52f34216f127b3660fecab0920bf5 | 3414f319207ff29418c1b22d502481d0ac39d1ce | refs/heads/master | 2020-04-30T06:48:11.049931 | 2018-07-25T15:04:32 | 2018-07-25T15:04:32 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,863 | cpp | //
// main.cpp
// f-牛客网-2018 美团 CodeM 编程大赛-初赛 B 轮
//
// Created by ZYJ on 2018/6/23.
// Copyright © 2018年 ZYJ. All rights reserved.
//
// GitHub : https://github.com/f-zyj
// CSDN : https://blog.csdn.net/f_zyj
//
#include <iostream>
#include <algorithm>
#include <cstring>
#include <cstdio>
using namespace std;
const int MAXN = 555;
const int MAXK = 1e5 + 10;
int n, m, k;
int cnt[MAXN][MAXN];
int tag[MAXN][MAXN];
struct engineer
{
int x, y, z;
int HH, MM;
double SS;
} eng[MAXK];
bool cmp(const engineer &A, const engineer &B)
{
if (A.HH != B.HH)
{
return A.HH < B.HH;
}
else if (A.MM != B.MM)
{
return A.MM < B.MM;
}
else
{
return A.SS < B.SS;
}
}
int main(int argc, const char * argv[])
{
cin >> n >> m >> k;
for (int i = 0; i < k; i++)
{
scanf("%d%d%d%d:%d:%lf", &eng[i].x, &eng[i].y, &eng[i].z, &eng[i].HH, &eng[i].MM, &eng[i].SS);
}
sort(eng, eng + k, cmp);
int c = 0, ans = 0;
for (int i = 0; i < k; i++)
{
if (eng[i].z)
{
cnt[eng[i].x][eng[i].y]--;
}
else
{
cnt[eng[i].x][eng[i].y]++;
}
if (cnt[eng[i].x][eng[i].y] == 0)
{
c--;
}
else if (cnt[eng[i].x][eng[i].y] == 1)
{
c++;
if (c >= ans)
{
ans = c;
memcpy(tag, cnt, sizeof(cnt));
}
}
}
for (int i = 1; i <= n; i++)
{
for (int j = 1; j <= m; j++)
{
if (tag[i][j] == 0)
{
printf("0");
}
else
{
printf("1");
}
}
printf("\n");
}
return 0;
}
| [
"[email protected]"
] | |
9222a7b8da3e3a3ce70fda70590f85791c399eb4 | 868e8628acaa0bf276134f9cc3ced379679eab10 | /firstCrude2D/we123/h10_refined/0.133/U | d0da57d2a3af94a40a412d767789dc3fb1edc783 | [] | no_license | stigmn/droplet | 921af6851f88c0acf8b1cd84f5e2903f1d0cb87a | 1649ceb0a9ce5abb243fb77569211558c2f0dc96 | refs/heads/master | 2020-04-04T20:08:37.912624 | 2015-11-25T11:20:32 | 2015-11-25T11:20:32 | 45,102,907 | 0 | 0 | null | 2015-10-28T09:46:30 | 2015-10-28T09:46:29 | null | UTF-8 | C++ | false | false | 364,562 | /*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 2.4.0 |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volVectorField;
location "0.133";
object U;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 1 -1 0 0 0 0];
internalField nonuniform List<vector>
14400
(
(-0.00329923 0.000129899 0)
(0.000129898 -6.96302e-05 0)
(0.00571284 -2.15929e-05 0)
(0.0107042 -1.89534e-06 0)
(0.014826 -4.08823e-06 0)
(0.0205265 -2.33999e-05 0)
(0.0258605 -2.47671e-05 0)
(0.0289616 4.02395e-05 0)
(0.0276756 0.000167357 0)
(0.020596 0.000316863 0)
(0.00896006 0.000361206 0)
(-0.00327311 0.000307327 0)
(-0.0132283 0.000169461 0)
(-0.01959 2.31225e-05 0)
(-0.0228822 -5.83221e-05 0)
(-0.0241117 -9.41842e-05 0)
(-0.0240371 -0.000106442 0)
(-0.0231254 -0.000115913 0)
(-0.0216645 -0.000123347 0)
(-0.0198309 -0.000134034 0)
(-0.0177677 -0.000146104 0)
(-0.0155897 -0.000158778 0)
(-0.01339 -0.000170018 0)
(-0.0112401 -0.000178987 0)
(-0.00918981 -0.000185597 0)
(-0.00726785 -0.000190101 0)
(-0.00548674 -0.000193291 0)
(-0.00384895 -0.000195698 0)
(-0.0023515 -0.000197288 0)
(-0.000989137 -0.000198017 0)
(-0.00541486 0.000979363 0)
(-0.0108643 -0.00041577 0)
(-0.00301286 -0.000523784 0)
(0.00891206 -0.000447012 0)
(0.0214562 -0.000874283 0)
(0.0367852 -0.00135037 0)
(0.0522033 -0.00140326 0)
(0.0654 -0.000900288 0)
(0.0721859 0.000278218 0)
(0.0691888 0.00213647 0)
(0.0551639 0.00352219 0)
(0.0353573 0.00408632 0)
(0.0149424 0.00380901 0)
(-0.0024914 0.00300156 0)
(-0.0155105 0.00206878 0)
(-0.0241676 0.00118248 0)
(-0.0290185 0.00039917 0)
(-0.0308908 -0.000287001 0)
(-0.0306049 -0.000880021 0)
(-0.0288704 -0.00137641 0)
(-0.0262496 -0.00178002 0)
(-0.0231589 -0.00210017 0)
(-0.0198928 -0.00234229 0)
(-0.0166502 -0.00251808 0)
(-0.0135555 -0.00264133 0)
(-0.0106762 -0.00272636 0)
(-0.00803632 -0.00278606 0)
(-0.00563501 -0.00282799 0)
(-0.00345964 -0.00285538 0)
(-0.0014926 -0.00286944 0)
(-0.00594726 0.00206394 0)
(-0.0148588 -0.00060267 0)
(-0.00784219 -0.00104354 0)
(0.00481129 -0.00106321 0)
(0.0183674 -0.00212772 0)
(0.0348727 -0.00319888 0)
(0.0516471 -0.00337188 0)
(0.0665686 -0.00252288 0)
(0.0755986 -0.000390789 0)
(0.0757446 0.00323995 0)
(0.0649748 0.00629186 0)
(0.0479476 0.00787657 0)
(0.0296657 0.00785919 0)
(0.0135156 0.00663675 0)
(0.0011052 0.00499928 0)
(-0.00749523 0.00329593 0)
(-0.0127988 0.00167515 0)
(-0.0155046 0.000217055 0)
(-0.0163084 -0.00102367 0)
(-0.0158154 -0.00203584 0)
(-0.0145123 -0.00283619 0)
(-0.0127567 -0.00344589 0)
(-0.0108075 -0.00388371 0)
(-0.00884815 -0.00417397 0)
(-0.00700457 -0.00434538 0)
(-0.00535269 -0.00443203 0)
(-0.0039206 -0.00446858 0)
(-0.00269857 -0.00448193 0)
(-0.00165274 -0.00448655 0)
(-0.000743405 -0.00448856 0)
(-0.00612672 0.00321581 0)
(-0.0157673 -0.000752061 0)
(-0.00883571 -0.00154046 0)
(0.00382508 -0.00169031 0)
(0.0174641 -0.00341326 0)
(0.0341811 -0.00509151 0)
(0.0511955 -0.00539779 0)
(0.0664035 -0.00423894 0)
(0.0757902 -0.00122678 0)
(0.0764162 0.004107 0)
(0.0660196 0.00875115 0)
(0.0495809 0.0113368 0)
(0.0321503 0.0115709 0)
(0.0169348 0.00995435 0)
(0.00537333 0.00764933 0)
(-0.00260246 0.00524567 0)
(-0.00766213 0.00295044 0)
(-0.0105082 0.000889555 0)
(-0.0117285 -0.000865251 0)
(-0.0118123 -0.00229712 0)
(-0.0111365 -0.00342724 0)
(-0.00999001 -0.00428344 0)
(-0.00858593 -0.00489151 0)
(-0.0070894 -0.00527712 0)
(-0.00562681 -0.00547258 0)
(-0.00428789 -0.00552338 0)
(-0.00312162 -0.00548752 0)
(-0.00213593 -0.00541943 0)
(-0.00130829 -0.00535948 0)
(-0.00060112 -0.00532595 0)
(-0.00627104 0.00440141 0)
(-0.0161273 -0.000911988 0)
(-0.00903631 -0.00203907 0)
(0.00364053 -0.00231388 0)
(0.0172004 -0.00471074 0)
(0.0340463 -0.00700307 0)
(0.0512485 -0.00744319 0)
(0.0667151 -0.00599318 0)
(0.0764304 -0.00213721 0)
(0.07739 0.00496199 0)
(0.0667127 0.0111974 0)
(0.0498485 0.0147784 0)
(0.0321165 0.0152288 0)
(0.0168447 0.0131713 0)
(0.00536951 0.0101901 0)
(-0.00249992 0.00712579 0)
(-0.00752862 0.00421991 0)
(-0.0104498 0.00162745 0)
(-0.0118194 -0.000579333 0)
(-0.0120906 -0.0023944 0)
(-0.0116146 -0.00383757 0)
(-0.0106535 -0.00494377 0)
(-0.00940375 -0.00574203 0)
(-0.00801106 -0.00625951 0)
(-0.0065836 -0.00652786 0)
(-0.00520051 -0.00659795 0)
(-0.00391297 -0.00654123 0)
(-0.00274616 -0.00643381 0)
(-0.00170253 -0.00633523 0)
(-0.000770098 -0.00627919 0)
(-0.00644166 0.00562237 0)
(-0.0164781 -0.0010935 0)
(-0.00914456 -0.00253757 0)
(0.00356253 -0.00292934 0)
(0.0169691 -0.00602102 0)
(0.0339489 -0.00893676 0)
(0.0513692 -0.00951018 0)
(0.0671605 -0.00779386 0)
(0.0773026 -0.00314722 0)
(0.0787555 0.00582158 0)
(0.0677259 0.0136941 0)
(0.0501989 0.0183199 0)
(0.0318161 0.0189855 0)
(0.0161565 0.0164316 0)
(0.00450526 0.0127378 0)
(-0.00343058 0.00900994 0)
(-0.0084791 0.00550542 0)
(-0.0114135 0.00239165 0)
(-0.0127892 -0.000261943 0)
(-0.0130659 -0.00244971 0)
(-0.0126005 -0.00420051 0)
(-0.0116585 -0.00555488 0)
(-0.0104299 -0.00655121 0)
(-0.00904545 -0.00722378 0)
(-0.00759483 -0.00760953 0)
(-0.00613817 -0.00776308 0)
(-0.00471815 -0.00775985 0)
(-0.00336662 -0.0076824 0)
(-0.00210484 -0.00759867 0)
(-0.000944257 -0.0075489 0)
(-0.00664955 0.00688668 0)
(-0.0169035 -0.00130345 0)
(-0.0092611 -0.00303425 0)
(0.00348354 -0.00353568 0)
(0.0166874 -0.00734808 0)
(0.033828 -0.0108978 0)
(0.0515084 -0.0116025 0)
(0.0676989 -0.00964985 0)
(0.0783638 -0.00429097 0)
(0.080471 0.00668478 0)
(0.0690205 0.0162518 0)
(0.0506789 0.0220016 0)
(0.0314675 0.0228949 0)
(0.0152997 0.0197775 0)
(0.00340331 0.0153174 0)
(-0.00462268 0.0109102 0)
(-0.00967964 0.00679385 0)
(-0.0125865 0.00314849 0)
(-0.0139019 4.05217e-05 0)
(-0.014103 -0.00252349 0)
(-0.0135594 -0.00458008 0)
(-0.012546 -0.00617968 0)
(-0.011254 -0.00737371 0)
(-0.00981021 -0.00820956 0)
(-0.00829447 -0.0087344 0)
(-0.00675662 -0.00900786 0)
(-0.00523313 -0.00910454 0)
(-0.00375681 -0.00910357 0)
(-0.00235683 -0.00907139 0)
(-0.00105545 -0.00904818 0)
(-0.00689812 0.00820355 0)
(-0.0174174 -0.00154975 0)
(-0.00939595 -0.00352792 0)
(0.00339404 -0.00412783 0)
(0.0163448 -0.00869891 0)
(0.0336779 -0.0128921 0)
(0.0516606 -0.0137234 0)
(0.0683285 -0.0115675 0)
(0.079615 -0.00560692 0)
(0.0825566 0.00755662 0)
(0.0705992 0.0188817 0)
(0.0512759 0.0258611 0)
(0.0310503 0.0269975 0)
(0.014284 0.0232288 0)
(0.00211151 0.0179315 0)
(-0.00600733 0.0128224 0)
(-0.0110558 0.00807638 0)
(-0.0139171 0.00388327 0)
(-0.0151434 0.000306693 0)
(-0.0152284 -0.00264368 0)
(-0.0145602 -0.00501157 0)
(-0.0134208 -0.00685898 0)
(-0.0120081 -0.00825255 0)
(-0.0104503 -0.00925492 0)
(-0.00882669 -0.0099258 0)
(-0.0071867 -0.0103312 0)
(-0.00556557 -0.0105433 0)
(-0.00399553 -0.0106351 0)
(-0.00250617 -0.010667 0)
(-0.00112235 -0.0106777 0)
(-0.00718939 0.00958286 0)
(-0.0180248 -0.00184241 0)
(-0.00954747 -0.00401695 0)
(0.00329487 -0.00469855 0)
(0.0159359 -0.0100828 0)
(0.0334963 -0.0149262 0)
(0.0518205 -0.0158752 0)
(0.0690483 -0.0135502 0)
(0.0810613 -0.00713985 0)
(0.0850415 0.0084464 0)
(0.0724802 0.0215964 0)
(0.0519956 0.0299463 0)
(0.0305435 0.0313387 0)
(0.0130879 0.0268044 0)
(0.000620608 0.0205767 0)
(-0.00759628 0.0147454 0)
(-0.0126231 0.0093491 0)
(-0.0154289 0.00459023 0)
(-0.0165445 0.000525129 0)
(-0.0164913 -0.0028243 0)
(-0.015669 -0.00551468 0)
(-0.0143715 -0.0076168 0)
(-0.012804 -0.0092151 0)
(-0.0110986 -0.0103879 0)
(-0.00933706 -0.011207 0)
(-0.00757386 -0.0117438 0)
(-0.00584734 -0.0120695 0)
(-0.00418941 -0.0122519 0)
(-0.00262622 -0.012346 0)
(-0.00117777 -0.0123896 0)
(-0.0075257 0.0110352 0)
(-0.0187316 -0.00219094 0)
(-0.00971351 -0.00449919 0)
(0.00318999 -0.00524085 0)
(0.015455 -0.0115034 0)
(0.0332807 -0.017007 0)
(0.0519811 -0.0180606 0)
(0.0698547 -0.0155969 0)
(0.0827104 -0.00894286 0)
(0.0879578 0.00937207 0)
(0.0746836 0.0244063 0)
(0.0528504 0.0343184 0)
(0.0299283 0.0359693 0)
(0.0116879 0.0305237 0)
(-0.00107799 0.0232572 0)
(-0.00940014 0.016676 0)
(-0.0143879 0.0106115 0)
(-0.017136 0.00526283 0)
(-0.0181248 0.000689628 0)
(-0.0179127 -0.00307676 0)
(-0.0169136 -0.00610145 0)
(-0.0154356 -0.0084677 0)
(-0.0136924 -0.010278 0)
(-0.0118182 -0.0116257 0)
(-0.00990021 -0.0125942 0)
(-0.00799738 -0.0132581 0)
(-0.00615061 -0.0136901 0)
(-0.00439189 -0.0139548 0)
(-0.00274679 -0.0141041 0)
(-0.00123247 -0.0141767 0)
(-0.00790993 0.0125718 0)
(-0.0195428 -0.00260436 0)
(-0.00989131 -0.00497186 0)
(0.00308214 -0.00574724 0)
(0.0148953 -0.0129591 0)
(0.0330283 -0.0191417 0)
(0.0521341 -0.0202836 0)
(0.0707381 -0.017701 0)
(0.0845768 -0.0110802 0)
(0.0913345 0.0103608 0)
(0.0772275 0.0273207 0)
(0.0538553 0.0390482 0)
(0.0291836 0.0409443 0)
(0.0100552 0.0344067 0)
(-0.00298973 0.0259577 0)
(-0.0114288 0.0186089 0)
(-0.0163568 0.0118644 0)
(-0.0190485 0.00589823 0)
(-0.019894 0.000792273 0)
(-0.0195018 -0.0034104 0)
(-0.0183025 -0.00678295 0)
(-0.0166263 -0.00942206 0)
(-0.0146911 -0.0114514 0)
(-0.0126346 -0.0129796 0)
(-0.0105468 -0.0140985 0)
(-0.00849075 -0.0148876 0)
(-0.00651276 -0.0154192 0)
(-0.00464337 -0.0157574 0)
(-0.0029032 -0.0159532 0)
(-0.00130415 -0.0160475 0)
(-0.00834529 0.0142049 0)
(-0.0204658 -0.0030922 0)
(-0.0100766 -0.00543156 0)
(0.00297576 -0.00620996 0)
(0.0142504 -0.0144509 0)
(0.0327364 -0.0213387 0)
(0.0522694 -0.0225496 0)
(0.0716729 -0.0198493 0)
(0.0866841 -0.01363 0)
(0.0951994 0.011457 0)
(0.0801277 0.0303429 0)
(0.0550238 0.0442166 0)
(0.0282847 0.0463193 0)
(0.00815891 0.0384725 0)
(-0.00512823 0.0286482 0)
(-0.0136903 0.0205339 0)
(-0.0185335 0.0131128 0)
(-0.0211771 0.00649317 0)
(-0.0218609 0.000825082 0)
(-0.0212655 -0.0038361 0)
(-0.0198423 -0.00756928 0)
(-0.0179491 -0.0104882 0)
(-0.0158086 -0.012743 0)
(-0.0135573 -0.0144577 0)
(-0.0112889 -0.0157295 0)
(-0.00906656 -0.0166404 0)
(-0.00693716 -0.0172661 0)
(-0.00493707 -0.0176719 0)
(-0.00308539 -0.0179146 0)
(-0.00138667 -0.0180365 0)
(-0.00883609 0.0159476 0)
(-0.0215079 -0.0036676 0)
(-0.0102661 -0.0058733 0)
(0.00287411 -0.00662116 0)
(0.0135134 -0.015983 0)
(0.0324026 -0.0236065 0)
(0.0523747 -0.0248665 0)
(0.0725882 -0.0220221 0)
(0.089066 -0.0166844 0)
(0.099584 0.0127279 0)
(0.0834359 0.0334645 0)
(0.0563809 0.0499165 0)
(0.0272069 0.0521479 0)
(0.00596126 0.0427394 0)
(-0.00749592 0.0313484 0)
(-0.0161982 0.0224232 0)
(-0.0209185 0.0143758 0)
(-0.0235357 0.00704319 0)
(-0.0240363 0.000780364 0)
(-0.0232115 -0.00436636 0)
(-0.0215354 -0.00847195 0)
(-0.0194067 -0.0116739 0)
(-0.0170532 -0.0141582 0)
(-0.0145963 -0.0160676 0)
(-0.0121266 -0.0175004 0)
(-0.00972071 -0.0185377 0)
(-0.00742524 -0.0192562 0)
(-0.00527128 -0.0197246 0)
(-0.00328079 -0.0200037 0)
(-0.00147016 -0.0201415 0)
(-0.00938674 0.0178144 0)
(-0.0226785 -0.00434566 0)
(-0.0104536 -0.00629078 0)
(0.00278241 -0.00697543 0)
(0.0126772 -0.0175622 0)
(0.0320243 -0.0259548 0)
(0.0524346 -0.0272476 0)
(0.0732818 -0.0242016 0)
(0.0917023 -0.0203381 0)
(0.104524 0.0142586 0)
(0.0873895 0.0366701 0)
(0.0581074 0.0562378 0)
(0.025918 0.0584764 0)
(0.00341125 0.0472025 0)
(-0.00997247 0.0341301 0)
(-0.0189901 0.0242406 0)
(-0.0235019 0.0157029 0)
(-0.0261412 0.00754209 0)
(-0.026432 0.000647841 0)
(-0.0253479 -0.00501643 0)
(-0.0233801 -0.0095024 0)
(-0.0210019 -0.0129856 0)
(-0.0184281 -0.015709 0)
(-0.0157622 -0.0178171 0)
(-0.013093 -0.0194113 0)
(-0.0104872 -0.0205804 0)
(-0.00800814 -0.021399 0)
(-0.00568808 -0.021939 0)
(-0.00354662 -0.0222536 0)
(-0.00158934 -0.0223988 0)
(-0.0100022 0.0198209 0)
(-0.0239872 -0.00514456 0)
(-0.0106335 -0.00667487 0)
(0.00270579 -0.00726705 0)
(0.0117343 -0.0191947 0)
(0.0315993 -0.0283941 0)
(0.0524356 -0.029718 0)
(0.0733236 -0.0264135 0)
(0.0942073 -0.0246285 0)
(0.109924 0.0161451 0)
(0.092401 0.0399862 0)
(0.0609302 0.0632264 0)
(0.0242825 0.0653639 0)
(0.000223195 0.0517535 0)
(-0.0119271 0.0372582 0)
(-0.0218462 0.0260595 0)
(-0.0262655 0.0171146 0)
(-0.0290034 0.0079821 0)
(-0.0290622 0.000417762 0)
(-0.0276775 -0.00580744 0)
(-0.0253802 -0.0106718 0)
(-0.0227313 -0.0144313 0)
(-0.0199119 -0.0173884 0)
(-0.0170174 -0.019712 0)
(-0.0141091 -0.0214955 0)
(-0.0112952 -0.0227953 0)
(-0.0086199 -0.0237071 0)
(-0.00613004 -0.0243077 0)
(-0.0038347 -0.0246719 0)
(-0.00172004 -0.0248562 0)
(-0.0106887 0.0219843 0)
(-0.0254462 -0.00608373 0)
(-0.0107998 -0.00701307 0)
(0.0026513 -0.00748338 0)
(0.0106762 -0.0208804 0)
(0.0311266 -0.0309355 0)
(0.0524068 -0.0323092 0)
(0.0725584 -0.0288183 0)
(0.0952567 -0.0293586 0)
(0.115152 0.0183649 0)
(0.0982234 0.0435433 0)
(0.0657731 0.0708734 0)
(0.0219257 0.0729253 0)
(-0.00304208 0.0563987 0)
(-0.0135 0.0406419 0)
(-0.0243056 0.0279245 0)
(-0.0292595 0.0185117 0)
(-0.0320776 0.00835929 0)
(-0.0319543 7.10121e-05 0)
(-0.0302041 -0.00676582 0)
(-0.0275088 -0.0119988 0)
(-0.0246116 -0.0160021 0)
(-0.0215968 -0.019214 0)
(-0.018464 -0.0217837 0)
(-0.0153519 -0.0237356 0)
(-0.012287 -0.0251952 0)
(-0.00935562 -0.026214 0)
(-0.00661565 -0.0268782 0)
(-0.00409834 -0.0272881 0)
(-0.00182237 -0.0275011 0)
(-0.0114526 0.0243234 0)
(-0.0270687 -0.00718449 0)
(-0.0109484 -0.00728878 0)
(0.00262788 -0.00763743 0)
(0.00949106 -0.0226138 0)
(0.0306067 -0.0335905 0)
(0.0524599 -0.035012 0)
(0.0727021 -0.0316775 0)
(0.0931308 -0.0338358 0)
(0.118209 0.0204168 0)
(0.10407 0.0473162 0)
(0.0716645 0.0795727 0)
(0.0191305 0.0809801 0)
(-0.00815806 0.061525 0)
(-0.0173548 0.0425623 0)
(-0.0286516 0.0292951 0)
(-0.0326937 0.0200385 0)
(-0.035413 0.00862365 0)
(-0.0351991 -0.000367185 0)
(-0.0329236 -0.00794239 0)
(-0.0297831 -0.0134777 0)
(-0.0265986 -0.0177079 0)
(-0.0233174 -0.0211704 0)
(-0.0200068 -0.0239675 0)
(-0.016591 -0.0261804 0)
(-0.0132735 -0.0278139 0)
(-0.010125 -0.0289588 0)
(-0.00715256 -0.0297107 0)
(-0.00441448 -0.0301325 0)
(-0.00195209 -0.0303156 0)
(-0.0123012 0.026859 0)
(-0.028871 -0.00847104 0)
(-0.0110744 -0.00747955 0)
(0.00265156 -0.00775134 0)
(0.00816061 -0.0243883 0)
(0.0300408 -0.036371 0)
(0.0526089 -0.0377443 0)
(0.0757412 -0.0348259 0)
(0.0873312 -0.0367617 0)
(0.114467 0.0209997 0)
(0.109828 0.0507525 0)
(0.0762152 0.0901146 0)
(0.0171819 0.0884977 0)
(-0.0223931 0.0674924 0)
(-0.0222714 0.0428052 0)
(-0.0322239 0.0306066 0)
(-0.0369346 0.0217318 0)
(-0.0391512 0.00863239 0)
(-0.0386242 -0.000857333 0)
(-0.035862 -0.00941052 0)
(-0.0320617 -0.0151377 0)
(-0.0287617 -0.0195271 0)
(-0.0254121 -0.0232467 0)
(-0.021725 -0.0264055 0)
(-0.0180549 -0.028822 0)
(-0.0144939 -0.0306056 0)
(-0.011065 -0.0318997 0)
(-0.00787615 -0.0327521 0)
(-0.00492665 -0.033226 0)
(-0.00218809 -0.0334287 0)
(-0.0132432 0.0296141 0)
(-0.0308733 -0.00997156 0)
(-0.0111754 -0.00755549 0)
(0.00274546 -0.00782677 0)
(0.00666191 -0.0261981 0)
(0.0294291 -0.0392895 0)
(0.0526704 -0.0405092 0)
(0.0783108 -0.0373425 0)
(0.077166 -0.0365461 0)
(0.0985392 0.0182204 0)
(0.114196 0.0528111 0)
(0.07826 0.102882 0)
(0.0259493 0.0926368 0)
(-0.0203222 0.0759482 0)
(-0.0281991 0.042718 0)
(-0.0372524 0.0305675 0)
(-0.0399384 0.0238071 0)
(-0.0427313 0.00851312 0)
(-0.0420712 -0.00152821 0)
(-0.0379546 -0.0115022 0)
(-0.0339017 -0.0168036 0)
(-0.0308904 -0.0213376 0)
(-0.0273942 -0.0254724 0)
(-0.0237203 -0.0289574 0)
(-0.0198518 -0.0316513 0)
(-0.0158462 -0.0337274 0)
(-0.012041 -0.0351247 0)
(-0.00855445 -0.0360267 0)
(-0.00534478 -0.036612 0)
(-0.00236321 -0.0369296 0)
(-0.0142875 0.0326138 0)
(-0.0330978 -0.0117195 0)
(-0.0112558 -0.00747587 0)
(0.0029455 -0.00787744 0)
(0.00496217 -0.0280845 0)
(0.0287753 -0.0423544 0)
(0.0527812 -0.0434359 0)
(0.0767418 -0.0384718 0)
(0.0629312 -0.0326018 0)
(0.0686539 0.011484 0)
(0.115366 0.0518942 0)
(0.0742748 0.120047 0)
(0.0175406 0.0954779 0)
(-0.0339418 0.0769474 0)
(-0.0358823 0.0441949 0)
(-0.0405666 0.0316783 0)
(-0.0463088 0.0257444 0)
(-0.0433401 0.00823343 0)
(-0.0461029 -0.00209678 0)
(-0.0382906 -0.0144236 0)
(-0.0350625 -0.0177367 0)
(-0.0333015 -0.023064 0)
(-0.0298601 -0.0276783 0)
(-0.0257617 -0.0316416 0)
(-0.0213368 -0.0348315 0)
(-0.0170908 -0.0371262 0)
(-0.0130168 -0.0386562 0)
(-0.00912343 -0.0396483 0)
(-0.00556389 -0.0402746 0)
(-0.00241163 -0.0406092 0)
(-0.0154443 0.0358859 0)
(-0.0355731 -0.0137537 0)
(-0.0113311 -0.00718567 0)
(0.00330916 -0.00792882 0)
(0.00301288 -0.030062 0)
(0.0280764 -0.0455675 0)
(0.053082 -0.046511 0)
(0.0696456 -0.0381584 0)
(0.047178 -0.0257982 0)
(0.0186833 0.00225169 0)
(0.100052 0.0470745 0)
(0.0579318 0.144876 0)
(0.000804723 0.108628 0)
(-0.0304889 0.0810732 0)
(-0.04497 0.0464757 0)
(-0.0439745 0.0337745 0)
(-0.0457094 0.0263631 0)
(-0.0483385 0.00895097 0)
(-0.0511006 -0.00365975 0)
(-0.0429464 -0.0178171 0)
(-0.0368317 -0.0181852 0)
(-0.0363275 -0.0242569 0)
(-0.0329482 -0.0301753 0)
(-0.0282626 -0.0348208 0)
(-0.0235983 -0.0381842 0)
(-0.0189709 -0.0407248 0)
(-0.0143807 -0.0425788 0)
(-0.010035 -0.0437208 0)
(-0.00609438 -0.0442791 0)
(-0.00261626 -0.0444859 0)
(-0.0167233 0.0394619 0)
(-0.0383338 -0.0161197 0)
(-0.0114453 -0.0066033 0)
(0.00393079 -0.00803 0)
(0.000692347 -0.0321176 0)
(0.0272742 -0.0489274 0)
(0.0527917 -0.0494651 0)
(0.050556 -0.0364337 0)
(0.0302889 -0.0168259 0)
(-0.0292637 -0.0081192 0)
(0.08457 0.0363136 0)
(0.0367918 0.175048 0)
(-0.0226037 0.12997 0)
(-0.0474316 0.0827327 0)
(-0.0506456 0.0477103 0)
(-0.0450047 0.0381318 0)
(-0.0458127 0.0253147 0)
(-0.052168 0.0119899 0)
(-0.0608444 -0.00410261 0)
(-0.0532318 -0.0229206 0)
(-0.0438602 -0.0201815 0)
(-0.0394159 -0.0250371 0)
(-0.0357941 -0.0328238 0)
(-0.0313669 -0.0380774 0)
(-0.0262691 -0.041943 0)
(-0.0208372 -0.0449101 0)
(-0.0158156 -0.046918 0)
(-0.0112499 -0.048137 0)
(-0.00699835 -0.048733 0)
(-0.00302072 -0.0489425 0)
(-0.0181106 0.0433782 0)
(-0.0414244 -0.0188717 0)
(-0.0117371 -0.00558797 0)
(0.00504198 -0.00830367 0)
(-0.00248533 -0.0342286 0)
(0.0259363 -0.0523894 0)
(0.0475889 -0.0512104 0)
(0.00906012 -0.0332786 0)
(0.00851567 -0.00936192 0)
(0.0411074 -0.0178431 0)
(0.154107 0.0139892 0)
(0.0880641 0.171778 0)
(-0.023455 0.144048 0)
(-0.0588983 0.085984 0)
(-0.0642288 0.0466501 0)
(-0.046252 0.0378908 0)
(-0.0379016 0.0254086 0)
(-0.0629786 0.0182169 0)
(-0.0669843 -0.00470108 0)
(-0.052206 -0.0275781 0)
(-0.054847 -0.0253492 0)
(-0.0435877 -0.0257715 0)
(-0.0391294 -0.0354613 0)
(-0.0339491 -0.0415628 0)
(-0.0281535 -0.0462874 0)
(-0.0224042 -0.0494229 0)
(-0.0171115 -0.0514306 0)
(-0.0122015 -0.0527948 0)
(-0.00758249 -0.0536515 0)
(-0.00324028 -0.054064 0)
(-0.0194217 0.0476835 0)
(-0.0449056 -0.0220706 0)
(-0.0126849 -0.00383386 0)
(0.00747826 -0.00910879 0)
(-0.00779162 -0.0362977 0)
(0.0217559 -0.0556344 0)
(0.0244469 -0.0495442 0)
(-0.0439593 -0.0292004 0)
(-0.0120154 -0.0118232 0)
(0.0168711 -0.0414384 0)
(-0.720479 0.0540493 0)
(0.00876869 0.155019 0)
(-0.030487 0.158459 0)
(-0.0619522 0.0951585 0)
(-0.063914 0.0424145 0)
(-0.0477614 0.030822 0)
(-0.0427642 0.0295797 0)
(-0.0711329 0.0229515 0)
(-0.0535972 -0.00964916 0)
(-0.0433896 -0.0252146 0)
(-0.062654 -0.0299398 0)
(-0.0496521 -0.027987 0)
(-0.0429745 -0.0389187 0)
(-0.0372596 -0.0456921 0)
(-0.0311771 -0.0508894 0)
(-0.0245432 -0.0543181 0)
(-0.0181387 -0.0565258 0)
(-0.0123817 -0.0579808 0)
(-0.00737828 -0.0588936 0)
(-0.00305191 -0.0593363 0)
(-0.0200476 0.0524463 0)
(-0.0488623 -0.0257901 0)
(-0.0155143 -0.000776365 0)
(0.0130015 -0.01134 0)
(-0.0157662 -0.0378241 0)
(0.00669454 -0.0573031 0)
(-0.0270878 -0.0433242 0)
(0.0203161 -0.0374057 0)
(0.195313 -0.0189922 0)
(0.125289 0.069567 0)
(-0.684169 0.0440973 0)
(-0.149939 0.0977531 0)
(-0.0588921 0.156917 0)
(-0.0852722 0.101607 0)
(-0.0782104 0.0379305 0)
(-0.0661165 0.0282909 0)
(-0.0567024 0.0329973 0)
(-0.0755278 0.0234862 0)
(-0.0440377 -0.018168 0)
(-0.0460177 -0.0176446 0)
(-0.0683861 -0.0308 0)
(-0.0517311 -0.0311161 0)
(-0.0459392 -0.043523 0)
(-0.0424895 -0.0499384 0)
(-0.0348545 -0.0564227 0)
(-0.0262249 -0.06052 0)
(-0.0185599 -0.062704 0)
(-0.0120937 -0.0637991 0)
(-0.00686459 -0.0641932 0)
(-0.00270346 -0.0642535 0)
(-0.0196714 0.0577212 0)
(-0.05344 -0.0301464 0)
(-0.0203511 0.00450821 0)
(0.00467189 -0.0164843 0)
(-0.025 -0.037176 0)
(-0.0324536 -0.0550882 0)
(-0.0519359 -0.0467035 0)
(0.484602 -0.083923 0)
(0.586377 -0.023204 0)
(0.38285 0.147612 0)
(-0.482736 0.0886564 0)
(-0.212846 -0.0101832 0)
(-0.0603146 0.174201 0)
(-0.0690117 0.103629 0)
(-0.0545993 0.0376964 0)
(-0.0595915 0.0206868 0)
(-0.0553681 0.041802 0)
(-0.0549368 0.0184913 0)
(-0.041552 -0.0181021 0)
(-0.0531509 -0.0128106 0)
(-0.0718774 -0.0308567 0)
(-0.0468568 -0.0331613 0)
(-0.0488661 -0.0482891 0)
(-0.0457272 -0.0546216 0)
(-0.0351136 -0.063528 0)
(-0.0257523 -0.0675872 0)
(-0.018378 -0.0692695 0)
(-0.0121089 -0.0698435 0)
(-0.00685648 -0.0695012 0)
(-0.00259251 -0.0689819 0)
(-0.0181551 0.0635133 0)
(-0.0592323 -0.0351455 0)
(-0.00209322 0.0114248 0)
(-0.0621698 -0.0260622 0)
(-0.0433856 -0.0327403 0)
(-0.0761369 -0.0505613 0)
(0.461547 -0.184796 0)
(0.794398 -0.11981 0)
(0.671781 -0.000466181 0)
(0.491335 0.200643 0)
(0.025383 0.171574 0)
(-0.220773 -0.0761217 0)
(-0.0887531 0.154498 0)
(-0.0948045 0.100772 0)
(-0.09769 0.0322708 0)
(-0.054375 0.0204614 0)
(-0.0466675 0.0512564 0)
(-0.0848682 -0.00292166 0)
(-0.0359612 -0.00836173 0)
(-0.0660291 -0.00820145 0)
(-0.0703365 -0.0360416 0)
(-0.0423883 -0.0322489 0)
(-0.0491267 -0.0531971 0)
(-0.041867 -0.0601424 0)
(-0.0316497 -0.0708178 0)
(-0.0246101 -0.0736478 0)
(-0.0190625 -0.0749763 0)
(-0.0134729 -0.0756539 0)
(-0.00799761 -0.0751123 0)
(-0.00296679 -0.0743073 0)
(-0.0139942 0.0698793 0)
(-0.0681688 -0.0392077 0)
(-0.0141441 0.0151738 0)
(-0.0367099 -0.0291234 0)
(-0.0784449 -0.0274856 0)
(0.58471 -0.10098 0)
(0.756978 -0.195174 0)
(0.653344 -0.111437 0)
(0.558642 0.0314831 0)
(0.449648 0.212006 0)
(0.348023 0.202269 0)
(-0.00509483 0.0259308 0)
(-0.218558 0.114655 0)
(-0.104854 0.0996445 0)
(-0.15201 0.027778 0)
(-0.0438827 0.0128658 0)
(-0.080497 0.0614965 0)
(-0.0950865 -0.0323676 0)
(-0.0556583 0.00521912 0)
(-0.0866584 0.00198525 0)
(-0.0671268 -0.0528821 0)
(-0.0402733 -0.0294004 0)
(-0.0419593 -0.0593243 0)
(-0.0341714 -0.0651742 0)
(-0.0293927 -0.0761226 0)
(-0.0257131 -0.077358 0)
(-0.021158 -0.0796883 0)
(-0.0153804 -0.081532 0)
(-0.00923042 -0.081612 0)
(-0.00322541 -0.0810204 0)
(-0.00831238 0.0766332 0)
(-0.0686598 -0.0425882 0)
(0.0686649 0.01294 0)
(0.013366 -0.0255954 0)
(-0.0608452 -0.0396954 0)
(0.591319 -0.117961 0)
(0.5841 -0.145437 0)
(0.430589 -0.104209 0)
(0.409381 0.0563105 0)
(0.355374 0.208599 0)
(0.559146 0.244142 0)
(-0.38603 0.152052 0)
(-0.244586 0.0694876 0)
(-0.0604004 0.116036 0)
(-0.196028 0.0207425 0)
(-0.13279 -0.00210931 0)
(-0.0926743 0.0774025 0)
(-0.105038 -0.0286682 0)
(-0.0879575 -0.01251 0)
(-0.0962043 0.0140217 0)
(-0.0645564 -0.0747705 0)
(-0.0526587 -0.0342552 0)
(-0.0384258 -0.0629076 0)
(-0.035229 -0.0695625 0)
(-0.0325313 -0.0787466 0)
(-0.0276682 -0.0802675 0)
(-0.0210614 -0.0850524 0)
(-0.0143937 -0.0880655 0)
(-0.00809061 -0.0888235 0)
(-0.00222246 -0.0884877 0)
(0.00200555 0.0831309 0)
(-0.0851542 -0.0452987 0)
(0.0470873 0.00463783 0)
(0.0422809 -0.00821844 0)
(0.309011 -0.105648 0)
(0.471931 -0.134008 0)
(0.36148 -0.117913 0)
(0.258607 -0.0966892 0)
(0.253342 0.0694651 0)
(0.231252 0.215972 0)
(0.548016 0.378102 0)
(-1.99211 0.10355 0)
(-0.131144 0.114949 0)
(-0.0788668 0.0886812 0)
(-0.0504166 0.00888847 0)
(-0.147416 -0.000120157 0)
(-0.112662 0.0765296 0)
(-0.14493 -0.0102009 0)
(-0.118086 -0.0446304 0)
(-0.0852376 0.0186736 0)
(-0.0623888 -0.0837495 0)
(-0.0765443 -0.0574893 0)
(-0.0529557 -0.0557661 0)
(-0.0468561 -0.0777011 0)
(-0.0359403 -0.0818088 0)
(-0.0250793 -0.0858463 0)
(-0.0157041 -0.091863 0)
(-0.00889924 -0.0944318 0)
(-0.00367158 -0.0950868 0)
(0.000477575 -0.0945159 0)
(0.000275011 -0.000198251 0)
(0.00157225 -0.000197925 0)
(0.00300301 -0.000196752 0)
(0.00457328 -0.000194888 0)
(0.00628775 -0.000192252 0)
(0.00814728 -0.000188583 0)
(0.010147 -0.000183392 0)
(0.0122677 -0.000175878 0)
(0.0144728 -0.000166025 0)
(0.0167032 -0.000154256 0)
(0.0188796 -0.000142083 0)
(0.0209005 -0.000131046 0)
(0.022642 -0.000122399 0)
(0.0239479 -0.000115527 0)
(0.0245979 -0.000107368 0)
(0.0242333 -8.54934e-05 0)
(0.0222369 -3.26742e-05 0)
(0.0176843 7.86846e-05 0)
(0.00956166 0.000243 0)
(-0.00180961 0.000349489 0)
(-0.0142868 0.000371949 0)
(-0.0242523 0.00026058 0)
(-0.0286027 0.000123431 0)
(-0.0281019 2.72171e-05 0)
(-0.0244465 -2.62783e-05 0)
(-0.0193499 -4.74235e-05 0)
(-0.0141768 -4.46343e-05 0)
(-0.0087168 -5.04885e-05 0)
(-0.0035101 -4.08092e-05 0)
(0.00062588 -3.75333e-05 0)
(0.000328106 -0.0028732 0)
(0.00219849 -0.00286613 0)
(0.00427096 -0.00284778 0)
(0.00656282 -0.00281637 0)
(0.00909179 -0.00276907 0)
(0.0118671 -0.00270162 0)
(0.0148814 -0.00260372 0)
(0.0180923 -0.00246165 0)
(0.0214112 -0.00226055 0)
(0.0246831 -0.00198861 0)
(0.0276716 -0.00163638 0)
(0.030034 -0.00119754 0)
(0.031296 -0.000663423 0)
(0.0308309 -3.11001e-05 0)
(0.0278629 0.000698024 0)
(0.0215353 0.00153872 0)
(0.0110669 0.00245951 0)
(-0.00398124 0.00338396 0)
(-0.0231696 0.0040653 0)
(-0.0437798 0.00402016 0)
(-0.0614606 0.00304183 0)
(-0.0706409 0.00127018 0)
(-0.0688754 -0.000182394 0)
(-0.0595599 -0.000961527 0)
(-0.0460905 -0.00121839 0)
(-0.0314615 -0.00117728 0)
(-0.0180505 -0.000967578 0)
(-0.00583047 -0.000835315 0)
(0.00356249 -0.000497879 0)
(0.00758244 5.6434e-05 0)
(8.48346e-05 -0.00449051 0)
(0.000940768 -0.00449293 0)
(0.00191715 -0.00449396 0)
(0.00305296 -0.00449172 0)
(0.0043879 -0.0044758 0)
(0.00594702 -0.00442571 0)
(0.00772549 -0.00431017 0)
(0.00967411 -0.00409466 0)
(0.0116972 -0.00374702 0)
(0.0136471 -0.00324365 0)
(0.0153127 -0.00256052 0)
(0.0164017 -0.00168012 0)
(0.0165052 -0.000583757 0)
(0.0150905 0.000743523 0)
(0.0114871 0.00228033 0)
(0.00496281 0.00397726 0)
(-0.00514385 0.0056835 0)
(-0.0192964 0.0072236 0)
(-0.0368687 0.00811216 0)
(-0.0550464 0.00753465 0)
(-0.0695827 0.00515864 0)
(-0.0754605 0.00151528 0)
(-0.0710315 -0.00118729 0)
(-0.0597298 -0.00255897 0)
(-0.0446389 -0.00291416 0)
(-0.0286824 -0.00269822 0)
(-0.0143753 -0.00215566 0)
(-0.00177938 -0.0017715 0)
(0.00731526 -0.000905025 0)
(0.0101037 0.000448448 0)
(3.77494e-05 -0.00532159 0)
(0.000700295 -0.00534672 0)
(0.0014672 -0.0054023 0)
(0.00237752 -0.00547872 0)
(0.00346483 -0.00554666 0)
(0.00474017 -0.00555857 0)
(0.00617791 -0.00545653 0)
(0.00771074 -0.00518867 0)
(0.00923639 -0.00471691 0)
(0.0106161 -0.00401458 0)
(0.0116699 -0.0030575 0)
(0.0121613 -0.00181873 0)
(0.0117713 -0.000271172 0)
(0.0100722 0.00160377 0)
(0.00651024 0.00377935 0)
(0.000408771 0.00618601 0)
(-0.0089401 0.00861439 0)
(-0.0222082 0.0107368 0)
(-0.038939 0.0118162 0)
(-0.0563971 0.0107458 0)
(-0.0703956 0.00702218 0)
(-0.0758849 0.00156329 0)
(-0.0709751 -0.00230776 0)
(-0.0593404 -0.00422987 0)
(-0.0439796 -0.00466121 0)
(-0.0278298 -0.00425123 0)
(-0.0134637 -0.0033508 0)
(-0.000875718 -0.0026921 0)
(0.0081228 -0.00127186 0)
(0.0107501 0.000918662 0)
(8.80458e-05 -0.0062718 0)
(0.000972287 -0.00631235 0)
(0.00196288 -0.00640268 0)
(0.00307507 -0.0065235 0)
(0.00431675 -0.00662852 0)
(0.0056761 -0.00664831 0)
(0.0071181 -0.00650694 0)
(0.00858003 -0.00614398 0)
(0.0099752 -0.00552039 0)
(0.0111843 -0.00460915 0)
(0.0120483 -0.00338539 0)
(0.0123501 -0.00181473 0)
(0.0117974 0.000139743 0)
(0.00999119 0.00249544 0)
(0.00641011 0.00523916 0)
(0.00038363 0.00829779 0)
(-0.00883665 0.0114383 0)
(-0.0220911 0.0141614 0)
(-0.0390673 0.0154954 0)
(-0.0568775 0.0139818 0)
(-0.0711982 0.00890341 0)
(-0.0767232 0.00156765 0)
(-0.0713688 -0.0034632 0)
(-0.0594479 -0.00592736 0)
(-0.0438984 -0.00642575 0)
(-0.0276418 -0.00581344 0)
(-0.0132874 -0.00454336 0)
(-0.000678041 -0.00361359 0)
(0.00833656 -0.00163405 0)
(0.0110767 0.00140544 0)
(0.0001371 -0.00754372 0)
(0.00124629 -0.0075829 0)
(0.00246236 -0.00766647 0)
(0.00377855 -0.00776917 0)
(0.00517978 -0.00783725 0)
(0.00664073 -0.0077938 0)
(0.00812766 -0.00755813 0)
(0.00959242 -0.00706643 0)
(0.0109687 -0.00627589 0)
(0.0121548 -0.00515449 0)
(0.0130029 -0.00366819 0)
(0.0132991 -0.00177469 0)
(0.0127476 0.000571843 0)
(0.0109438 0.00340412 0)
(0.00735819 0.00670576 0)
(0.0013061 0.010415 0)
(-0.00798404 0.0142792 0)
(-0.0215311 0.0176413 0)
(-0.0391212 0.0192965 0)
(-0.0575614 0.0173476 0)
(-0.0723387 0.0108466 0)
(-0.0778809 0.00151795 0)
(-0.0719137 -0.00466131 0)
(-0.0596391 -0.00765654 0)
(-0.0438712 -0.00820743 0)
(-0.0275012 -0.00738193 0)
(-0.0131828 -0.00573072 0)
(-0.000549726 -0.00453992 0)
(0.00849637 -0.00199721 0)
(0.0114244 0.00190099 0)
(0.000162557 -0.00904878 0)
(0.00140978 -0.00907506 0)
(0.00276655 -0.00912219 0)
(0.00421483 -0.00916406 0)
(0.00572956 -0.00914716 0)
(0.00728089 -0.00899787 0)
(0.00883749 -0.0086381 0)
(0.0103605 -0.0080033 0)
(0.0117936 -0.00704301 0)
(0.0130434 -0.00571403 0)
(0.0139645 -0.00396931 0)
(0.0143399 -0.0017529 0)
(0.013864 0.000989369 0)
(0.0121208 0.00430465 0)
(0.00856306 0.00817376 0)
(0.00248406 0.0125518 0)
(-0.0069022 0.0171665 0)
(-0.0208476 0.0212164 0)
(-0.0392316 0.0232674 0)
(-0.0584465 0.0208781 0)
(-0.0737611 0.0128606 0)
(-0.0793204 0.00139127 0)
(-0.0725561 -0.00591189 0)
(-0.0598637 -0.00942609 0)
(-0.0438364 -0.0100101 0)
(-0.0273302 -0.00895723 0)
(-0.0130618 -0.00691071 0)
(-0.000402813 -0.00547249 0)
(0.00868052 -0.00236217 0)
(0.0118508 0.00240627 0)
(0.000172049 -0.0106855 0)
(0.00149726 -0.0106939 0)
(0.00293969 -0.0106946 0)
(0.00447873 -0.0106602 0)
(0.0060877 -0.0105416 0)
(0.00773668 -0.0102719 0)
(0.00939541 -0.00977846 0)
(0.0110257 -0.00899549 0)
(0.0125717 -0.00786303 0)
(0.0139404 -0.00632509 0)
(0.0149839 -0.00431916 0)
(0.0154826 -0.00177573 0)
(0.0151181 0.00137296 0)
(0.0134635 0.00518428 0)
(0.00995494 0.00963659 0)
(0.00385813 0.0147154 0)
(-0.00561366 0.0201075 0)
(-0.0200316 0.0249036 0)
(-0.0393813 0.0274417 0)
(-0.0595238 0.0246042 0)
(-0.075467 0.0149548 0)
(-0.0810602 0.00116581 0)
(-0.0732813 -0.00722341 0)
(-0.0601168 -0.0112463 0)
(-0.0437899 -0.0118386 0)
(-0.0271216 -0.0105407 0)
(-0.0129175 -0.00808187 0)
(-0.000228761 -0.0064128 0)
(0.00889746 -0.00272936 0)
(0.0123673 0.00292308 0)
(0.000176044 -0.012404 0)
(0.00156235 -0.0123949 0)
(0.00307282 -0.0123503 0)
(0.00469079 -0.0122415 0)
(0.00639436 -0.0120229 0)
(0.00815528 -0.0116336 0)
(0.0099416 -0.0110054 0)
(0.0117109 -0.0100708 0)
(0.0134033 -0.00876132 0)
(0.0149228 -0.00700842 0)
(0.0161184 -0.00473406 0)
(0.0167638 -0.00185435 0)
(0.0165379 0.00171223 0)
(0.0149911 0.00603852 0)
(0.011543 0.0110876 0)
(0.00543959 0.0168978 0)
(-0.00409568 0.0231044 0)
(-0.0190565 0.0287161 0)
(-0.0395607 0.0318552 0)
(-0.0608051 0.0285579 0)
(-0.0774705 0.0171382 0)
(-0.0831295 0.000817217 0)
(-0.0740716 -0.00860507 0)
(-0.0603959 -0.0131293 0)
(-0.0437311 -0.0136982 0)
(-0.0268731 -0.0121341 0)
(-0.0127495 -0.00924269 0)
(-2.71943e-05 -0.00736287 0)
(0.00914701 -0.00309938 0)
(0.0129798 0.00345325 0)
(0.000177857 -0.0141972 0)
(0.00162359 -0.0141723 0)
(0.00320705 -0.0140871 0)
(0.00491523 -0.0139114 0)
(0.00672721 -0.0136004 0)
(0.00861532 -0.0130973 0)
(0.0105461 -0.0123356 0)
(0.012473 -0.0112452 0)
(0.0143309 -0.00975276 0)
(0.0160206 -0.00777691 0)
(0.0173887 -0.00522477 0)
(0.0182035 -0.00199807 0)
(0.018135 0.00199977 0)
(0.0167134 0.00686392 0)
(0.0133361 0.0125217 0)
(0.00724031 0.019099 0)
(-0.00232329 0.0261618 0)
(-0.0178953 0.0326659 0)
(-0.03976 0.0365442 0)
(-0.0623115 0.0327675 0)
(-0.079792 0.0194179 0)
(-0.0855674 0.000313868 0)
(-0.0749039 -0.0100682 0)
(-0.0607 -0.0150891 0)
(-0.0436591 -0.0155943 0)
(-0.0265821 -0.0137395 0)
(-0.0125592 -0.0103916 0)
(0.000201305 -0.00832464 0)
(0.00942763 -0.00347279 0)
(0.0136936 0.00399847 0)
(0.000185274 -0.0160719 0)
(0.00171156 -0.0160362 0)
(0.00338354 -0.0159188 0)
(0.00519234 -0.0156841 0)
(0.00712246 -0.0152879 0)
(0.00914945 -0.0146747 0)
(0.0112381 -0.013779 0)
(0.0133351 -0.0125284 0)
(0.0153711 -0.0108457 0)
(0.0172451 -0.00863935 0)
(0.0188038 -0.00580139 0)
(0.0198077 -0.0022158 0)
(0.0199185 0.002227 0)
(0.0186396 0.00765682 0)
(0.0153393 0.0139324 0)
(0.00926762 0.0213136 0)
(-0.000266896 0.0292874 0)
(-0.0165159 0.0367659 0)
(-0.0399631 0.0415495 0)
(-0.064077 0.0372631 0)
(-0.0824566 0.0217981 0)
(-0.0884243 -0.000368425 0)
(-0.0757496 -0.0116277 0)
(-0.0610305 -0.0171414 0)
(-0.0435726 -0.0175312 0)
(-0.0262457 -0.0153592 0)
(-0.0123478 -0.0115265 0)
(0.000456282 -0.00930028 0)
(0.00973709 -0.00385041 0)
(0.014516 0.00456025 0)
(0.000195636 -0.0180665 0)
(0.00181673 -0.0180143 0)
(0.00359226 -0.0178597 0)
(0.0055195 -0.0175691 0)
(0.00758875 -0.0170933 0)
(0.00977174 -0.0163743 0)
(0.0120282 -0.0153436 0)
(0.0143047 -0.0139285 0)
(0.0165315 -0.0120467 0)
(0.0186006 -0.00960376 0)
(0.0203678 -0.00647285 0)
(0.0215819 -0.00251697 0)
(0.0218968 0.00238463 0)
(0.0207787 0.0084159 0)
(0.0175559 0.0153107 0)
(0.0115284 0.0235503 0)
(0.00210293 0.0324696 0)
(-0.0148773 0.0410345 0)
(-0.0401428 0.0469191 0)
(-0.0661518 0.0420834 0)
(-0.0854935 0.02428 0)
(-0.0917623 -0.00127316 0)
(-0.0765783 -0.0133037 0)
(-0.0613934 -0.0193042 0)
(-0.0434704 -0.0195116 0)
(-0.0258602 -0.016996 0)
(-0.0121165 -0.0126454 0)
(0.000736938 -0.0102924 0)
(0.0100732 -0.00423307 0)
(0.0154542 0.00513995 0)
(0.000204936 -0.0201742 0)
(0.00192512 -0.0201132 0)
(0.00382629 -0.0199331 0)
(0.00590014 -0.0195933 0)
(0.00812606 -0.0190409 0)
(0.0104789 -0.0182125 0)
(0.0129212 -0.01704 0)
(0.0153953 -0.0154481 0)
(0.0178144 -0.0133625 0)
(0.0200916 -0.0106763 0)
(0.0220824 -0.00724828 0)
(0.0235312 -0.00291225 0)
(0.0240787 0.00246316 0)
(0.0231412 0.00914126 0)
(0.019988 0.016647 0)
(0.0140127 0.0258021 0)
(0.00480782 0.035703 0)
(-0.01294 0.0454965 0)
(-0.0402663 0.0527197 0)
(-0.068579 0.0472821 0)
(-0.0889063 0.0268544 0)
(-0.0956501 -0.0024379 0)
(-0.0773775 -0.0151265 0)
(-0.0618026 -0.0215949 0)
(-0.0433511 -0.0215357 0)
(-0.0254211 -0.018653 0)
(-0.0118676 -0.0137459 0)
(0.00104275 -0.0113037 0)
(0.0104334 -0.00462171 0)
(0.016517 0.0057387 0)
(0.000229416 -0.0224314 0)
(0.00209349 -0.022368 0)
(0.00414096 -0.0221679 0)
(0.00636907 -0.0217728 0)
(0.00876613 -0.0211331 0)
(0.0113065 -0.0201899 0)
(0.0139457 -0.0188693 0)
(0.0166083 -0.0171018 0)
(0.0192328 -0.0147956 0)
(0.0217122 -0.0118642 0)
(0.0239503 -0.0081378 0)
(0.0256576 -0.00341402 0)
(0.0264752 0.00245035 0)
(0.0257383 0.00982938 0)
(0.0226033 0.0179442 0)
(0.0167239 0.0280365 0)
(0.00783807 0.0389868 0)
(-0.0107939 0.0501767 0)
(-0.0403125 0.0590638 0)
(-0.0712161 0.0529347 0)
(-0.0926201 0.0294822 0)
(-0.100139 -0.0039123 0)
(-0.0782454 -0.0171459 0)
(-0.0622984 -0.0240154 0)
(-0.0432132 -0.0236004 0)
(-0.0249223 -0.0203339 0)
(-0.0116036 -0.0148248 0)
(0.00137271 -0.0123374 0)
(0.0108143 -0.00501727 0)
(0.017714 0.0063574 0)
(0.000257806 -0.0248969 0)
(0.00227942 -0.0248059 0)
(0.0044798 -0.0245568 0)
(0.00686481 -0.0241077 0)
(0.00944295 -0.0233912 0)
(0.0121812 -0.0223349 0)
(0.015033 -0.0208557 0)
(0.0179303 -0.018876 0)
(0.0207598 -0.0163541 0)
(0.0234792 -0.0131667 0)
(0.0259617 -0.00915295 0)
(0.0279672 -0.00403918 0)
(0.0290928 0.00233583 0)
(0.0286118 0.0104712 0)
(0.0252229 0.0192125 0)
(0.0197069 0.0303173 0)
(0.0109078 0.04243 0)
(-0.0088251 0.0550736 0)
(-0.0400878 0.0661504 0)
(-0.0734781 0.0591011 0)
(-0.0965812 0.0320559 0)
(-0.105059 -0.00575766 0)
(-0.079668 -0.0194475 0)
(-0.0629662 -0.0265358 0)
(-0.0430529 -0.0256998 0)
(-0.0243569 -0.0220427 0)
(-0.011328 -0.0158791 0)
(0.00172602 -0.013397 0)
(0.0112129 -0.00542119 0)
(0.0190573 0.00699671 0)
(0.000276271 -0.0275466 0)
(0.00243236 -0.0274357 0)
(0.00482508 -0.0271462 0)
(0.00744902 -0.0266418 0)
(0.0102757 -0.0258421 0)
(0.0132659 -0.0246469 0)
(0.0163383 -0.0229998 0)
(0.0194329 -0.0208165 0)
(0.0224849 -0.018019 0)
(0.0253584 -0.0145932 0)
(0.0281114 -0.0103045 0)
(0.0304474 -0.00480909 0)
(0.0319322 0.00209519 0)
(0.031842 0.0111177 0)
(0.0279581 0.0203189 0)
(0.0215831 0.0331131 0)
(0.0131577 0.046282 0)
(-0.00620589 0.060214 0)
(-0.0382928 0.0743377 0)
(-0.075492 0.0657 0)
(-0.100963 0.034413 0)
(-0.108977 -0.00807083 0)
(-0.0825824 -0.0221421 0)
(-0.0638132 -0.0290762 0)
(-0.0428625 -0.0278268 0)
(-0.023716 -0.0237834 0)
(-0.0110443 -0.0169057 0)
(0.00210212 -0.0144865 0)
(0.0116243 -0.00583452 0)
(0.0205591 0.00765698 0)
(0.000308193 -0.0303506 0)
(0.00263401 -0.0302615 0)
(0.00522982 -0.0299853 0)
(0.00808129 -0.0294241 0)
(0.011128 -0.0285073 0)
(0.0143362 -0.0271668 0)
(0.0176982 -0.0252906 0)
(0.0210305 -0.0228517 0)
(0.0242487 -0.0198209 0)
(0.0273979 -0.0161238 0)
(0.0303916 -0.0115998 0)
(0.0330847 -0.00574565 0)
(0.0348581 0.00165034 0)
(0.0354325 0.0118667 0)
(0.0313647 0.0212336 0)
(0.0234011 0.0360461 0)
(0.0148806 0.0495313 0)
(1.07804e-05 0.0661872 0)
(-0.033718 0.0838775 0)
(-0.0795957 0.0725787 0)
(-0.105157 0.0363193 0)
(-0.106969 -0.0109906 0)
(-0.0863036 -0.0251303 0)
(-0.0644576 -0.0315772 0)
(-0.0426273 -0.0299794 0)
(-0.022989 -0.0255601 0)
(-0.0107579 -0.017902 0)
(0.00250011 -0.0156101 0)
(0.0120443 -0.00625884 0)
(0.0222342 0.00833817 0)
(0.000383435 -0.0334648 0)
(0.00300658 -0.0333621 0)
(0.00584026 -0.0330469 0)
(0.00888863 -0.0324071 0)
(0.0121829 -0.0313608 0)
(0.0156647 -0.029863 0)
(0.0192276 -0.0278319 0)
(0.0229007 -0.0250789 0)
(0.0263584 -0.0216893 0)
(0.0295234 -0.0177658 0)
(0.0327608 -0.0130547 0)
(0.0360356 -0.00679463 0)
(0.0375224 0.000905398 0)
(0.0394789 0.0125346 0)
(0.0339028 0.0225169 0)
(0.0275934 0.0389042 0)
(0.0168337 0.0519453 0)
(0.00920437 0.0740445 0)
(-0.0293388 0.0942318 0)
(-0.0861347 0.0799948 0)
(-0.106457 0.0369515 0)
(-0.0915511 -0.0143825 0)
(-0.0861661 -0.0276552 0)
(-0.0645903 -0.0342145 0)
(-0.0423337 -0.032167 0)
(-0.0221635 -0.0273768 0)
(-0.0104747 -0.0188606 0)
(0.00291965 -0.0167734 0)
(0.0124673 -0.00669574 0)
(0.0240988 0.00903994 0)
(0.000440534 -0.0369891 0)
(0.00329799 -0.0368013 0)
(0.00637756 -0.0363509 0)
(0.00969233 -0.0356284 0)
(0.0133043 -0.0345224 0)
(0.0171985 -0.0328189 0)
(0.0211259 -0.0304507 0)
(0.0248103 -0.0274425 0)
(0.0283411 -0.0236299 0)
(0.0315621 -0.0193941 0)
(0.0343225 -0.0147911 0)
(0.039196 -0.00823032 0)
(0.0408029 0.00034587 0)
(0.0438255 0.0126921 0)
(0.0389303 0.0237432 0)
(0.0342078 0.0414945 0)
(0.0193933 0.0557653 0)
(0.0097055 0.0856318 0)
(-0.0256199 0.106702 0)
(-0.0939693 0.0882183 0)
(-0.100591 0.0345826 0)
(-0.0635287 -0.0175916 0)
(-0.0792011 -0.028515 0)
(-0.0650183 -0.037191 0)
(-0.0419787 -0.034398 0)
(-0.0212265 -0.0292368 0)
(-0.0102007 -0.019769 0)
(0.00336042 -0.0179819 0)
(0.0128873 -0.00714712 0)
(0.0261714 0.00976138 0)
(0.000457176 -0.0406689 0)
(0.00341555 -0.0404636 0)
(0.00675734 -0.0399764 0)
(0.0104759 -0.0391808 0)
(0.0144371 -0.0379537 0)
(0.0185387 -0.0361019 0)
(0.0228674 -0.033396 0)
(0.0271829 -0.0298274 0)
(0.0308796 -0.0255565 0)
(0.0335456 -0.0206661 0)
(0.0341793 -0.0160479 0)
(0.039994 -0.0109317 0)
(0.044871 0.000461637 0)
(0.0464836 0.0117792 0)
(0.0423065 0.0261088 0)
(0.045871 0.0416345 0)
(0.036668 0.0589341 0)
(0.0145295 0.0920857 0)
(-0.0356403 0.12045 0)
(-0.100517 0.096825 0)
(-0.0825162 0.0270631 0)
(-0.034648 -0.019127 0)
(-0.0682669 -0.0272717 0)
(-0.0655415 -0.0401478 0)
(-0.0415337 -0.0366791 0)
(-0.0201637 -0.0311417 0)
(-0.00994236 -0.0206122 0)
(0.00382238 -0.019242 0)
(0.0132974 -0.00761535 0)
(0.0284723 0.0105011 0)
(0.000542543 -0.0445091 0)
(0.00379913 -0.044385 0)
(0.00748288 -0.0440089 0)
(0.0116003 -0.0431711 0)
(0.0160369 -0.0416829 0)
(0.0205967 -0.0394997 0)
(0.0251116 -0.0366112 0)
(0.0297211 -0.032666 0)
(0.0338562 -0.0273322 0)
(0.0358403 -0.0209251 0)
(0.0365754 -0.0166414 0)
(0.0432556 -0.0150658 0)
(0.0491244 -1.33695e-05 0)
(0.0485302 0.0109271 0)
(0.0500529 0.0274635 0)
(0.0448522 0.0426539 0)
(0.0436611 0.0572216 0)
(0.025926 0.100486 0)
(-0.0252395 0.129512 0)
(-0.0987556 0.104358 0)
(-0.0599079 0.0126687 0)
(-0.00630264 -0.0158809 0)
(-0.0552576 -0.0245737 0)
(-0.0635898 -0.0423879 0)
(-0.0409821 -0.0390433 0)
(-0.0189595 -0.0330907 0)
(-0.00970655 -0.0213685 0)
(0.004306 -0.0205597 0)
(0.0136894 -0.0081027 0)
(0.0310246 0.0112573 0)
(0.000718394 -0.048957 0)
(0.0045217 -0.048817 0)
(0.00859624 -0.0484015 0)
(0.0129198 -0.0474884 0)
(0.0176048 -0.0458946 0)
(0.0227741 -0.0434351 0)
(0.0280652 -0.0399569 0)
(0.0327477 -0.0354733 0)
(0.0369737 -0.0290524 0)
(0.0394048 -0.0213103 0)
(0.0450012 -0.020047 0)
(0.0540526 -0.0185841 0)
(0.0594534 0.000632237 0)
(0.0455431 0.0114705 0)
(0.0482388 0.0271612 0)
(0.0563077 0.0414527 0)
(0.064124 0.0554714 0)
(0.0190442 0.107323 0)
(-0.041594 0.13522 0)
(-0.116521 0.112816 0)
(-0.0352162 -0.0056082 0)
(0.0160558 -0.00768049 0)
(-0.036005 -0.0217568 0)
(-0.0540653 -0.0429136 0)
(-0.0403367 -0.0414666 0)
(-0.0175969 -0.0350788 0)
(-0.00950256 -0.0220134 0)
(0.00481369 -0.0219357 0)
(0.0140549 -0.00861219 0)
(0.0338547 0.0120273 0)
(0.000846705 -0.0541059 0)
(0.00499205 -0.0538048 0)
(0.00940722 -0.0531022 0)
(0.0140568 -0.051956 0)
(0.0190173 -0.0503047 0)
(0.0243711 -0.0478496 0)
(0.0300798 -0.0438194 0)
(0.0356779 -0.0383186 0)
(0.0411984 -0.0309712 0)
(0.0450611 -0.0242661 0)
(0.0533601 -0.0234056 0)
(0.0557345 -0.0235789 0)
(0.0671125 -0.000375282 0)
(0.0560866 0.0184318 0)
(0.045268 0.0254073 0)
(0.0587017 0.0387767 0)
(0.0818108 0.0540166 0)
(0.0418803 0.121197 0)
(-0.0472714 0.14311 0)
(0.016235 0.139799 0)
(-0.0613896 -0.0268491 0)
(0.0143768 -0.0060559 0)
(-0.00323839 -0.020566 0)
(-0.026311 -0.03991 0)
(-0.0387825 -0.0435396 0)
(-0.0160496 -0.0370926 0)
(-0.0093403 -0.0225196 0)
(0.00534816 -0.023384 0)
(0.014384 -0.00914762 0)
(0.0369914 0.0128074 0)
(0.000852726 -0.0593619 0)
(0.00486114 -0.0589967 0)
(0.00941518 -0.0582055 0)
(0.0146536 -0.0569727 0)
(0.0205696 -0.055186 0)
(0.0268691 -0.0524677 0)
(0.0328407 -0.0479353 0)
(0.0384941 -0.0418187 0)
(0.0468587 -0.0330913 0)
(0.0572871 -0.029057 0)
(0.0541713 -0.019783 0)
(0.0373868 -0.0265722 0)
(0.0697487 -0.00685804 0)
(0.0552566 0.027803 0)
(0.050665 0.0211264 0)
(0.0636763 0.0389234 0)
(0.0874644 0.0534617 0)
(0.0522428 0.131712 0)
(0.0182522 0.170073 0)
(0.194711 -0.0154695 0)
(0.756072 0.00671882 0)
(-0.08168 -0.0233521 0)
(0.00816097 -0.0212399 0)
(0.0242361 -0.0324848 0)
(-0.0306567 -0.0437496 0)
(-0.0142126 -0.0390757 0)
(-0.00922973 -0.0228577 0)
(0.00591443 -0.0249172 0)
(0.0146662 -0.00971292 0)
(0.040467 0.0135913 0)
(0.000871941 -0.0641692 0)
(0.00458297 -0.0639785 0)
(0.00908855 -0.0636092 0)
(0.0147071 -0.0628168 0)
(0.0214621 -0.0612452 0)
(0.0291975 -0.0582896 0)
(0.0366108 -0.0526013 0)
(0.041036 -0.0451278 0)
(0.0497646 -0.0356687 0)
(0.0665744 -0.0328436 0)
(0.0509909 -0.00984418 0)
(0.0233003 -0.0283793 0)
(0.0631517 -0.0244274 0)
(0.0765104 0.0348102 0)
(0.0518684 0.0203602 0)
(0.063399 0.0371464 0)
(0.0908718 0.0510358 0)
(0.0667329 0.141541 0)
(0.0210246 0.153151 0)
(0.320076 -0.346598 0)
(0.61346 0.174019 0)
(-0.225856 0.0131876 0)
(-0.259634 -0.040346 0)
(0.0514458 -0.0312852 0)
(-0.00164197 -0.0396974 0)
(-0.011333 -0.0407001 0)
(-0.00917976 -0.022999 0)
(0.00651815 -0.0265494 0)
(0.0148896 -0.0103138 0)
(0.0443083 0.0143624 0)
(0.00107614 -0.0687196 0)
(0.00483489 -0.0687795 0)
(0.00928477 -0.0690044 0)
(0.0146293 -0.0688057 0)
(0.0208622 -0.067707 0)
(0.0284579 -0.0653606 0)
(0.0372043 -0.0593051 0)
(0.0419682 -0.0482383 0)
(0.047178 -0.0365487 0)
(0.0666778 -0.0360909 0)
(0.0592269 -0.00094903 0)
(0.0197267 -0.0164387 0)
(0.0459392 -0.0413696 0)
(0.0868485 0.035543 0)
(0.0638367 0.0204136 0)
(0.0859499 0.033692 0)
(0.0769185 0.0494633 0)
(0.076428 0.147457 0)
(0.110392 0.108139 0)
(0.00570439 -0.208488 0)
(0.172104 0.221958 0)
(-0.496113 0.087679 0)
(-0.845408 -0.048995 0)
(-0.374144 -0.118942 0)
(0.0692895 -0.0304798 0)
(-0.00307838 -0.0405735 0)
(-0.00916127 -0.0229085 0)
(0.00716925 -0.028295 0)
(0.0150405 -0.0109566 0)
(0.048517 0.0150953 0)
(0.00161669 -0.0738781 0)
(0.00616956 -0.0739268 0)
(0.0109565 -0.0742254 0)
(0.0157898 -0.0739688 0)
(0.0203972 -0.0728547 0)
(0.0254839 -0.0715633 0)
(0.0327792 -0.0671828 0)
(0.0385538 -0.0536727 0)
(0.0420239 -0.0361691 0)
(0.0533286 -0.0399952 0)
(0.0809451 -0.00288098 0)
(0.0518364 0.0030749 0)
(0.0546463 -0.0749827 0)
(0.102379 0.0449091 0)
(0.049972 0.0111751 0)
(0.0834517 0.0324584 0)
(0.104517 0.041324 0)
(0.0788578 0.153829 0)
(0.202655 0.0771941 0)
(-0.0689529 -0.0705552 0)
(-0.214691 0.292507 0)
(-0.517124 0.133004 0)
(-0.481202 -0.036247 0)
(-0.674565 -0.150361 0)
(0.0345805 -0.0567464 0)
(0.0246205 -0.0352318 0)
(-0.00878696 -0.0224793 0)
(0.0079064 -0.0301637 0)
(0.0151039 -0.01165 0)
(0.0530867 0.0157698 0)
(0.00237996 -0.0804566 0)
(0.00783811 -0.0800572 0)
(0.0131844 -0.079598 0)
(0.0179814 -0.0782948 0)
(0.0216247 -0.0759741 0)
(0.0236604 -0.0748801 0)
(0.0267339 -0.0727343 0)
(0.0323505 -0.0599265 0)
(0.04003 -0.0373417 0)
(0.030804 -0.0503283 0)
(0.0904339 -0.0106698 0)
(0.0758935 0.0101405 0)
(0.0965005 -0.0816989 0)
(0.0958493 0.0541563 0)
(0.0824818 0.0152952 0)
(0.130169 0.025854 0)
(0.130171 0.0357583 0)
(0.0420802 0.146604 0)
(0.215228 0.115457 0)
(-0.677468 -0.0621695 0)
(-0.469289 0.342202 0)
(-0.372335 0.12868 0)
(-0.341332 -0.0249799 0)
(-0.578137 -0.140936 0)
(-0.356691 -0.119057 0)
(0.107677 -0.0245447 0)
(-0.00515887 -0.0211869 0)
(0.00907816 -0.0321156 0)
(0.0150646 -0.0124051 0)
(0.0580573 0.0163164 0)
(0.00309774 -0.087709 0)
(0.00816841 -0.0866473 0)
(0.0130463 -0.085137 0)
(0.0175026 -0.0826761 0)
(0.0214737 -0.0787862 0)
(0.0235308 -0.0762335 0)
(0.0245959 -0.0751799 0)
(0.0332112 -0.0617525 0)
(0.0445921 -0.0420869 0)
(0.0454128 -0.0677816 0)
(0.0951566 -0.0183711 0)
(0.0937654 0.000459099 0)
(0.136053 -0.0773444 0)
(0.0701131 0.0525165 0)
(0.142988 0.0147467 0)
(0.120355 0.0094762 0)
(0.128859 0.0466448 0)
(0.079441 0.117781 0)
(0.172198 0.165538 0)
(0.120285 0.0324867 0)
(-0.542124 0.36276 0)
(-0.211364 0.100834 0)
(-0.215385 -0.0117696 0)
(-0.42917 -0.103499 0)
(-0.80986 -0.163132 0)
(0.0306341 -0.0688489 0)
(0.0161681 -0.0172916 0)
(0.0135275 -0.0337584 0)
(0.0150267 -0.0132163 0)
(0.0633972 0.0167469 0)
(0.00382053 -0.0932999 0)
(0.00678141 -0.0915592 0)
(0.00954776 -0.0892526 0)
(0.0123512 -0.0864784 0)
(0.016081 -0.0830023 0)
(0.0210374 -0.0796498 0)
(0.0259344 -0.0786208 0)
(0.0461075 -0.0667144 0)
(0.0386055 -0.0516028 0)
(0.0736348 -0.0844131 0)
(0.083767 -0.0312253 0)
(0.126417 -0.0121007 0)
(0.119703 -0.0652363 0)
(0.0803752 0.0488588 0)
(0.194919 0.00670698 0)
(0.0895363 0.00510545 0)
(0.11606 0.0617043 0)
(0.175518 0.080352 0)
(0.0113006 0.28667 0)
(-0.0114434 0.0371875 0)
(-0.486185 0.35975 0)
(-0.105798 0.0697067 0)
(-0.105266 -0.00120338 0)
(-0.256456 -0.0631199 0)
(-0.609906 -0.123148 0)
(-0.307601 -0.133343 0)
(0.0784958 -0.00924645 0)
(0.0361152 -0.0329327 0)
(0.0165965 -0.0139234 0)
(0.0685128 0.0171526 0)
(-0.100401 0.0849454 0)
(-0.0791029 -0.0449168 0)
(-0.03013 -0.00372048 0)
(-0.173873 -0.0272086 0)
(1.28708 -0.210906 0)
(0.430725 -0.118205 0)
(0.232109 -0.0996495 0)
(0.149956 -0.0925852 0)
(0.13389 0.0749303 0)
(0.120294 0.224853 0)
(0.451201 0.441418 0)
(-0.958294 -0.0581023 0)
(0.113267 0.141841 0)
(-0.0780339 0.0852754 0)
(-0.0670154 0.00392361 0)
(-0.137185 0.0158098 0)
(-0.132438 0.0451419 0)
(-0.124385 0.00794577 0)
(-0.100264 -0.0546773 0)
(-0.0787433 -0.0105859 0)
(-0.0471569 -0.0667886 0)
(-0.0690029 -0.0697761 0)
(-0.0650129 -0.0566182 0)
(-0.0552867 -0.0830667 0)
(-0.0373336 -0.0887508 0)
(-0.0228491 -0.0942394 0)
(-0.0109246 -0.0988264 0)
(-0.0029782 -0.0995999 0)
(0.00156971 -0.0988837 0)
(0.0037703 -0.0973125 0)
(-0.18633 0.0818081 0)
(-0.0758227 -0.0435231 0)
(-0.038771 -0.00576129 0)
(0.0288753 -0.0305369 0)
(0.525142 -0.206645 0)
(0.336227 -0.101933 0)
(0.169818 -0.0917741 0)
(0.0951016 -0.0897719 0)
(0.0742008 0.0769506 0)
(0.0641972 0.226211 0)
(0.378025 0.442822 0)
(-0.885888 -0.0420503 0)
(0.278236 0.217552 0)
(-0.0942398 0.102762 0)
(-0.0466062 0.0122619 0)
(-0.118049 0.0238262 0)
(-0.123533 0.0247574 0)
(-0.0698608 0.011761 0)
(-0.0778734 -0.0506911 0)
(-0.0998798 -0.0307759 0)
(-0.0527559 -0.0589527 0)
(-0.0777577 -0.067796 0)
(-0.0726895 -0.0646914 0)
(-0.0575076 -0.0844177 0)
(-0.0414992 -0.0954463 0)
(-0.0233726 -0.101633 0)
(-0.00906218 -0.104275 0)
(8.79252e-06 -0.103232 0)
(0.00432265 -0.10065 0)
(0.00551978 -0.0978059 0)
(-0.27848 0.0741781 0)
(-0.0695949 -0.0419394 0)
(-0.034367 -0.00848885 0)
(0.187965 -0.0380426 0)
(0.633528 -0.194815 0)
(0.247463 -0.0881181 0)
(0.11312 -0.0849719 0)
(0.0445346 -0.0860387 0)
(0.0211765 0.0774705 0)
(0.0165564 0.222535 0)
(0.29541 0.451973 0)
(-0.510146 0.0898278 0)
(-0.0898606 -0.109292 0)
(0.00470167 0.113652 0)
(0.0134245 0.0226281 0)
(-0.107148 0.0298813 0)
(-0.0860747 0.011742 0)
(0.0285025 0.00632111 0)
(-0.0636991 -0.035366 0)
(-0.0900694 -0.0434377 0)
(-0.0504597 -0.057356 0)
(-0.0837908 -0.063053 0)
(-0.0889396 -0.0786987 0)
(-0.0524231 -0.090634 0)
(-0.0415295 -0.103479 0)
(-0.0218592 -0.110839 0)
(-0.00639421 -0.110276 0)
(0.00280786 -0.10678 0)
(0.00685448 -0.102213 0)
(0.00690744 -0.0981515 0)
(-0.380682 0.0601954 0)
(-0.0767273 -0.0403662 0)
(-0.0486965 -0.00559812 0)
(0.148709 -0.142723 0)
(0.58102 -0.163523 0)
(0.164636 -0.0745969 0)
(0.0639301 -0.0792623 0)
(0.00119017 -0.0814707 0)
(-0.0218937 0.0762812 0)
(-0.0192736 0.213868 0)
(0.194938 0.458978 0)
(-0.192668 0.129747 0)
(-0.66401 -0.15758 0)
(-0.0447406 0.0839831 0)
(0.0774039 0.0466087 0)
(-0.0525327 0.0368808 0)
(-0.0434648 0.0130029 0)
(-0.0140684 -0.00213193 0)
(-0.098728 -0.024384 0)
(-0.0391501 -0.0511156 0)
(-0.0340032 -0.0543347 0)
(-0.0503639 -0.0387295 0)
(-0.0646005 -0.0818023 0)
(-0.0647839 -0.0971603 0)
(-0.0521788 -0.109611 0)
(-0.041528 -0.121087 0)
(-0.030089 -0.118203 0)
(-0.0238026 -0.111111 0)
(-0.0240969 -0.102871 0)
(-0.0276679 -0.0959518 0)
(-0.554077 0.0336953 0)
(-0.0757619 -0.033663 0)
(-0.022631 -0.00338227 0)
(0.50353 -0.284955 0)
(0.397064 -0.142107 0)
(0.091389 -0.0637293 0)
(0.0234588 -0.0746228 0)
(-0.03253 -0.0764342 0)
(-0.0526245 0.0732413 0)
(-0.0434388 0.202029 0)
(-0.0511485 0.457658 0)
(0.499856 0.223168 0)
(-0.760204 -0.139682 0)
(-0.156168 -0.122101 0)
(-0.0347069 0.059096 0)
(-0.0262372 0.0360993 0)
(-0.0818253 0.020026 0)
(-0.0541503 0.00687522 0)
(-0.0614903 -0.0166527 0)
(-0.0365083 -0.07385 0)
(0.0122729 -0.0572773 0)
(0.0170241 -0.0395053 0)
(-0.010367 -0.0709482 0)
(-0.0381789 -0.09686 0)
(-0.0337556 -0.115054 0)
(-0.0282627 -0.122656 0)
(-0.033908 -0.11987 0)
(-0.0383168 -0.109218 0)
(-0.0461527 -0.098214 0)
(-0.0547205 -0.0912048 0)
(-0.483793 -0.00723551 0)
(-0.0512119 -0.0171848 0)
(-0.250853 -0.0214298 0)
(0.635996 -0.322368 0)
(0.244985 -0.110037 0)
(0.0341729 -0.0564651 0)
(-0.00752444 -0.071112 0)
(-0.0554196 -0.0710668 0)
(-0.0706728 0.068566 0)
(-0.0563455 0.189058 0)
(-0.253233 0.350484 0)
(0.439209 0.430972 0)
(-0.657638 -0.0414275 0)
(-0.624073 -0.136762 0)
(-0.145431 0.00285449 0)
(-0.0289811 0.0357984 0)
(-0.0881866 0.0226614 0)
(0.0120757 -0.00610119 0)
(0.0696255 -0.0306548 0)
(0.0498324 -0.0716557 0)
(0.1011 -0.0737234 0)
(0.102412 -0.034076 0)
(0.0660635 -0.0510843 0)
(0.0208388 -0.0868025 0)
(0.00575357 -0.119474 0)
(0.00504322 -0.113138 0)
(-0.0151572 -0.111583 0)
(-0.0319532 -0.10153 0)
(-0.0449461 -0.0895629 0)
(-0.0560795 -0.0836278 0)
(-0.410232 -0.0247749 0)
(0.0427259 -0.0103739 0)
(0.812458 -0.0863663 0)
(0.546679 -0.181107 0)
(0.113278 -0.0881642 0)
(-0.00565337 -0.0522425 0)
(-0.0291579 -0.0682314 0)
(-0.0683454 -0.0656202 0)
(-0.0785068 0.0628768 0)
(-0.058918 0.174573 0)
(-0.0866128 0.237625 0)
(0.362514 0.620274 0)
(-0.920241 -0.00806635 0)
(-0.655259 -0.107686 0)
(-0.39405 -0.0975471 0)
(-0.0970922 0.0218488 0)
(0.0593936 0.00192733 0)
(0.140404 -0.0348913 0)
(0.206391 -0.0346197 0)
(0.193381 -0.0712935 0)
(0.232427 -0.0833075 0)
(0.204545 -0.0259381 0)
(0.156006 -0.0238599 0)
(0.105174 -0.066487 0)
(0.0721285 -0.109078 0)
(0.0436871 -0.105022 0)
(0.0233622 -0.0954293 0)
(-0.000590497 -0.088441 0)
(-0.0163635 -0.0784709 0)
(-0.0286582 -0.0742378 0)
(-0.678179 -0.0457456 0)
(-0.0958871 -0.026814 0)
(0.237287 -0.0790152 0)
(0.253164 -0.12067 0)
(0.0253063 -0.075057 0)
(-0.0301009 -0.0508517 0)
(-0.0426251 -0.0661136 0)
(-0.0738223 -0.0604682 0)
(-0.0805074 0.0569144 0)
(-0.0575765 0.159144 0)
(0.0104999 0.184849 0)
(0.497838 0.641105 0)
(-0.16273 0.0137755 0)
(-0.49981 -0.0935701 0)
(-0.398364 -0.163426 0)
(-0.0626698 -0.0415406 0)
(0.178638 -0.0364034 0)
(0.2572 -0.0567797 0)
(0.311874 -0.0488657 0)
(0.390918 -0.0733324 0)
(0.381388 -0.086649 0)
(0.351674 -0.00736976 0)
(0.285389 0.0118585 0)
(0.237544 -0.0384056 0)
(0.18148 -0.0838774 0)
(0.131973 -0.0821948 0)
(0.0926849 -0.0723262 0)
(0.0562976 -0.0682789 0)
(0.0334029 -0.0661063 0)
(0.0222055 -0.064015 0)
(-0.210937 -0.0565921 0)
(-0.145511 -0.0468498 0)
(-0.183272 -0.122015 0)
(0.108591 -0.0930904 0)
(-0.0213495 -0.068128 0)
(-0.0429505 -0.0516933 0)
(-0.0500529 -0.0646389 0)
(-0.0751681 -0.0557195 0)
(-0.0811543 0.0513867 0)
(-0.056912 0.143943 0)
(0.0413842 0.148973 0)
(0.26226 0.703878 0)
(0.10993 0.105575 0)
(-0.206698 -0.0554448 0)
(-0.282826 -0.253909 0)
(0.0257204 -0.126658 0)
(0.261306 -0.0620913 0)
(0.321339 -0.0737695 0)
(0.37789 -0.0702204 0)
(0.413868 -0.0811287 0)
(0.374203 -0.0723152 0)
(0.387396 -0.0144593 0)
(0.445026 0.0381431 0)
(0.436745 0.0187024 0)
(0.322032 -0.0431125 0)
(0.242932 -0.0385981 0)
(0.196455 -0.0402341 0)
(0.155864 -0.0294732 0)
(0.114236 -0.0423264 0)
(0.0960871 -0.0591624 0)
(0.012994 -0.0512841 0)
(-0.25105 -0.0566239 0)
(-0.092419 -0.142169 0)
(0.0281287 -0.0755487 0)
(-0.0414811 -0.0634945 0)
(-0.0484757 -0.0532816 0)
(-0.0538589 -0.0635983 0)
(-0.075338 -0.0512377 0)
(-0.0835889 0.0468306 0)
(-0.0596462 0.130619 0)
(0.0563784 0.115164 0)
(0.253663 0.740345 0)
(0.255359 0.177183 0)
(-0.0880658 -0.0258338 0)
(-0.129059 -0.260126 0)
(0.0437756 -0.219418 0)
(0.268697 -0.095331 0)
(0.330278 -0.0889516 0)
(0.38835 -0.0913428 0)
(0.424916 -0.0848033 0)
(0.420125 -0.0641063 0)
(0.415287 -0.00935119 0)
(0.438293 -0.0236209 0)
(0.495635 0.0218213 0)
(0.506437 0.0395109 0)
(0.39891 0.0116807 0)
(0.337103 0.00520666 0)
(0.282779 0.0118646 0)
(0.23697 0.000576132 0)
(0.199965 -0.0345763 0)
(0.0983601 -0.038423 0)
(-0.248515 -0.0658873 0)
(-0.0330616 -0.155638 0)
(-0.0213333 -0.060461 0)
(-0.0475965 -0.0598703 0)
(-0.0504624 -0.0547603 0)
(-0.056076 -0.0627471 0)
(-0.0762937 -0.0466594 0)
(-0.0894673 0.0435458 0)
(-0.068242 0.119848 0)
(0.0541546 0.10079 0)
(0.286494 0.757532 0)
(0.377542 0.240877 0)
(0.00986769 0.00111388 0)
(-0.00921012 -0.279412 0)
(0.0175547 -0.282393 0)
(0.183618 -0.136953 0)
(0.278083 -0.109737 0)
(0.340258 -0.112064 0)
(0.386224 -0.0963136 0)
(0.423263 -0.07173 0)
(0.449478 -0.0206366 0)
(0.491572 -0.0234916 0)
(0.431596 -0.0316332 0)
(0.455879 0.0615808 0)
(0.492573 0.0599163 0)
(0.45537 0.0645969 0)
(0.39834 0.0701879 0)
(0.343992 0.0617859 0)
(0.294089 0.0136811 0)
(0.134662 -0.0251258 0)
(-0.173234 -0.0770155 0)
(0.00889977 -0.168856 0)
(-0.0469291 -0.0430472 0)
(-0.0479008 -0.0569335 0)
(-0.0513692 -0.0556251 0)
(-0.0579953 -0.0618464 0)
(-0.0789362 -0.0412863 0)
(-0.102197 0.0408496 0)
(-0.0876104 0.112238 0)
(0.0478741 0.110871 0)
(0.382635 0.702311 0)
(0.500997 0.278173 0)
(0.193396 0.0511702 0)
(0.262121 -0.253294 0)
(-0.0346807 -0.238454 0)
(-0.00428332 -0.196861 0)
(0.217403 -0.158006 0)
(0.321693 -0.142265 0)
(0.372477 -0.121818 0)
(0.405839 -0.0909533 0)
(0.434223 -0.0506922 0)
(0.452461 -0.0263947 0)
(0.444236 0.0280011 0)
(0.455474 -0.00897213 0)
(0.47723 0.0401269 0)
(0.481921 0.0965749 0)
(0.455654 0.135889 0)
(0.404507 0.127652 0)
(0.352965 0.0853238 0)
(0.142728 -0.0149403 0)
(-0.0732881 -0.0867882 0)
(0.0328051 -0.170056 0)
(-0.0613146 -0.0317971 0)
(-0.0463355 -0.05411 0)
(-0.0521789 -0.0556838 0)
(-0.0602596 -0.0606914 0)
(-0.0821178 -0.0345923 0)
(-0.12538 0.0411958 0)
(-0.132585 0.107554 0)
(0.0440721 0.121484 0)
(0.580894 0.540276 0)
(0.599854 0.298391 0)
(0.389281 0.0933119 0)
(0.263383 -0.197789 0)
(0.208694 -0.225731 0)
(0.245038 -0.263613 0)
(0.276689 -0.205803 0)
(0.317477 -0.171753 0)
(0.353004 -0.140982 0)
(0.375919 -0.104769 0)
(0.38662 -0.0530867 0)
(0.373389 -0.0228211 0)
(0.378501 -0.00454149 0)
(0.382458 0.0101987 0)
(0.382285 0.022575 0)
(0.415045 0.0830626 0)
(0.408611 0.172383 0)
(0.375912 0.201959 0)
(0.324688 0.170701 0)
(0.133644 -0.0104018 0)
(0.00898248 -0.0932404 0)
(0.0849804 -0.16526 0)
(-0.056627 -0.0258863 0)
(-0.0437849 -0.0510792 0)
(-0.0530254 -0.0549817 0)
(-0.0631716 -0.0590838 0)
(-0.0866812 -0.0275475 0)
(-0.133366 0.050565 0)
(-0.146679 0.0993528 0)
(0.00626857 0.102583 0)
(0.406584 0.338554 0)
(0.54398 0.306024 0)
(0.454708 0.153267 0)
(0.300607 -0.14565 0)
(0.296702 -0.253274 0)
(0.278525 -0.256663 0)
(0.283786 -0.217894 0)
(0.300137 -0.186545 0)
(0.318872 -0.154259 0)
(0.335446 -0.117296 0)
(0.353783 -0.0550161 0)
(0.356965 -0.0142038 0)
(0.351552 0.00544506 0)
(0.329832 0.0318184 0)
(0.317991 -0.0116697 0)
(0.356032 0.0718517 0)
(0.343014 0.194392 0)
(0.313692 0.250395 0)
(0.285059 0.241707 0)
(0.114008 -0.0134064 0)
(0.0770301 -0.0962781 0)
(0.120971 -0.164461 0)
(-0.0435614 -0.0165161 0)
(-0.0405152 -0.0480777 0)
(-0.0538747 -0.0536513 0)
(-0.0668321 -0.0566562 0)
(-0.0946842 -0.0201565 0)
(-0.151716 0.0661483 0)
(-0.165815 0.0847977 0)
(-0.0635927 0.0628038 0)
(0.00436261 0.155782 0)
(0.386602 0.290019 0)
(0.460206 0.20286 0)
(0.301501 -0.150096 0)
(0.297857 -0.241395 0)
(0.276778 -0.24571 0)
(0.265766 -0.22008 0)
(0.271271 -0.194156 0)
(0.279869 -0.162292 0)
(0.290865 -0.129111 0)
(0.313758 -0.0732283 0)
(0.343701 -0.0266031 0)
(0.36617 -0.00383701 0)
(0.399232 0.0296631 0)
(0.398078 0.000311946 0)
(0.291094 0.101999 0)
(0.265062 0.245287 0)
(0.260805 0.285108 0)
(0.25545 0.272207 0)
(0.0945635 -0.0238551 0)
(0.120866 -0.0946113 0)
(0.0390951 -0.159171 0)
(-0.0280786 -0.00689406 0)
(-0.037163 -0.0456677 0)
(-0.0547479 -0.0518069 0)
(-0.0705494 -0.0531121 0)
(-0.108251 -0.0120323 0)
(-0.16062 0.0827034 0)
(-0.194644 0.0711778 0)
(-0.124257 0.020819 0)
(-0.12953 -0.00833902 0)
(0.433316 0.277692 0)
(0.398441 0.229989 0)
(0.340111 -0.113021 0)
(0.300035 -0.23806 0)
(0.264186 -0.233407 0)
(0.247631 -0.216763 0)
(0.243002 -0.195043 0)
(0.244942 -0.167768 0)
(0.253159 -0.139751 0)
(0.269131 -0.0986579 0)
(0.296409 -0.0555668 0)
(0.311377 -0.0282568 0)
(0.317856 0.0114609 0)
(0.309078 0.0902931 0)
(0.26275 0.184576 0)
(0.236668 0.258138 0)
(0.229904 0.286738 0)
(0.226952 0.278808 0)
(0.0941244 -0.0378063 0)
(0.117838 -0.084161 0)
(0.0269332 -0.143047 0)
(-0.0092761 -0.00770266 0)
(-0.034414 -0.0442119 0)
(-0.0556801 -0.0495053 0)
(-0.0743681 -0.0491251 0)
(-0.107682 0.00149397 0)
(-0.178951 0.103333 0)
(-0.225724 0.0596155 0)
(-0.172517 -0.0150017 0)
(-0.12466 -0.116447 0)
(0.574313 0.280678 0)
(0.265541 0.293495 0)
(0.368449 -0.12195 0)
(0.289667 -0.209687 0)
(0.251693 -0.218247 0)
(0.23685 -0.210872 0)
(0.232436 -0.193178 0)
(0.230771 -0.169597 0)
(0.229803 -0.144433 0)
(0.23197 -0.112701 0)
(0.240783 -0.070374 0)
(0.240902 -0.026548 0)
(0.224469 0.0287175 0)
(0.203718 0.118525 0)
(0.196164 0.214938 0)
(0.191027 0.272666 0)
(0.189766 0.291012 0)
(0.191206 0.285462 0)
(0.09981 -0.0498671 0)
(0.104433 -0.0740737 0)
(0.0321688 -0.124227 0)
(0.00227191 -0.0105996 0)
(-0.0327922 -0.0437535 0)
(-0.0566347 -0.0466975 0)
(-0.0800216 -0.0440625 0)
(-0.114228 0.0180536 0)
(-0.220298 0.127517 0)
(-0.25084 0.0503767 0)
(-0.206547 -0.0384472 0)
(-0.164977 -0.129392 0)
(0.249107 0.181715 0)
(0.211896 0.243571 0)
(0.321007 -0.0999693 0)
(0.26397 -0.183053 0)
(0.239619 -0.206556 0)
(0.232129 -0.206988 0)
(0.230146 -0.19141 0)
(0.225285 -0.166084 0)
(0.215047 -0.138979 0)
(0.203205 -0.11055 0)
(0.19449 -0.0686941 0)
(0.182719 -0.0109258 0)
(0.160478 0.0595081 0)
(0.138332 0.140845 0)
(0.12927 0.226047 0)
(0.123767 0.27822 0)
(0.12109 0.28709 0)
(0.121979 0.268416 0)
(0.100004 -0.0577945 0)
(0.0417478 -0.0679752 0)
(0.03037 -0.0974149 0)
(0.00548644 -0.0168252 0)
(-0.0324509 -0.0442908 0)
(-0.0573981 -0.0433127 0)
(-0.0850237 -0.0365156 0)
(-0.131284 0.040034 0)
(-0.289859 0.149038 0)
(-0.277751 0.0494634 0)
(-0.220815 -0.0634868 0)
(-0.179105 -0.113667 0)
(-0.146254 0.0971271 0)
(0.184325 0.113865 0)
(0.245983 -0.0857049 0)
(0.231902 -0.168728 0)
(0.225727 -0.201722 0)
(0.227528 -0.206505 0)
(0.226969 -0.18825 0)
(0.215495 -0.155558 0)
(0.194449 -0.121926 0)
(0.170022 -0.0924525 0)
(0.148979 -0.0507051 0)
(0.131501 0.0138359 0)
(0.114527 0.0918578 0)
(0.0963508 0.172586 0)
(0.0792614 0.239634 0)
(0.0710006 0.28875 0)
(0.0623161 0.301205 0)
(0.0533262 0.289779 0)
(0.0945278 -0.0615201 0)
(0.0577877 -0.0682065 0)
(-0.00734683 -0.0555213 0)
(0.00413845 -0.0290146 0)
(-0.0331663 -0.0458306 0)
(-0.057627 -0.0393702 0)
(-0.0875248 -0.0263312 0)
(-0.142399 0.0645293 0)
(-0.247949 0.172487 0)
(-0.300654 0.0454227 0)
(-0.202234 -0.10478 0)
(-0.159452 -0.111647 0)
(-0.134011 0.0239557 0)
(0.120418 0.0294874 0)
(0.181303 -0.0935342 0)
(0.196134 -0.169103 0)
(0.208377 -0.206508 0)
(0.221133 -0.210551 0)
(0.220555 -0.180508 0)
(0.197394 -0.132252 0)
(0.160894 -0.088608 0)
(0.121207 -0.0567283 0)
(0.0870194 -0.0212193 0)
(0.0647807 0.0388088 0)
(0.0490287 0.116639 0)
(0.039531 0.192886 0)
(0.034959 0.259754 0)
(0.0369407 0.302226 0)
(0.0454678 0.312774 0)
(0.05754 0.273767 0)
(0.0855916 -0.0624688 0)
(0.0257978 -0.0859722 0)
(-0.030683 0.0036668 0)
(-0.0032755 -0.0528604 0)
(-0.03453 -0.0482527 0)
(-0.056912 -0.035055 0)
(-0.0838234 -0.0156691 0)
(-0.125642 0.0811875 0)
(-0.178634 0.205505 0)
(-0.203566 0.0354331 0)
(-0.171878 -0.115309 0)
(-0.124279 -0.125578 0)
(-0.0738315 -0.0353139 0)
(0.0678876 -0.0357106 0)
(0.127737 -0.115336 0)
(0.157467 -0.183099 0)
(0.185616 -0.223387 0)
(0.207411 -0.219276 0)
(0.200892 -0.163154 0)
(0.161306 -0.0903812 0)
(0.110282 -0.0346828 0)
(0.0575907 0.00157522 0)
(0.009798 0.0282756 0)
(-0.0270323 0.0815063 0)
(-0.056087 0.146986 0)
(-0.0733114 0.208536 0)
(-0.0810261 0.259034 0)
(-0.0806629 0.286591 0)
(-0.0742731 0.285723 0)
(-0.0711908 0.263209 0)
(0.075059 -0.0611045 0)
(0.0446895 -0.118174 0)
(-0.0572104 0.0932248 0)
(-0.0246201 -0.0941593 0)
(-0.0358365 -0.0508756 0)
(-0.0550053 -0.0305519 0)
(-0.0769264 -0.00775942 0)
(-0.0886158 0.0886969 0)
(-0.105622 0.223537 0)
(-0.124329 0.0328979 0)
(-0.124097 -0.138691 0)
(-0.081015 -0.140228 0)
(-0.038558 -0.0790715 0)
(0.0357512 -0.0823471 0)
(0.0806761 -0.140948 0)
(0.112457 -0.207496 0)
(0.14678 -0.251543 0)
(0.164695 -0.225314 0)
(0.141854 -0.128247 0)
(0.0932378 -0.0328966 0)
(0.0410003 0.0319246 0)
(-0.00533217 0.0717825 0)
(-0.0467859 0.099282 0)
(-0.080146 0.139043 0)
(-0.101036 0.188749 0)
(-0.112404 0.23136 0)
(-0.119652 0.253676 0)
(-0.134309 0.268757 0)
(-0.163645 0.290488 0)
(-0.19679 0.311241 0)
(0.0636252 -0.0567399 0)
(0.0533156 -0.151569 0)
(-0.0814892 0.257123 0)
(-0.051447 -0.143185 0)
(-0.0355949 -0.0516677 0)
(-0.0516538 -0.0258826 0)
(-0.0709074 -0.0019055 0)
(-0.0706802 0.0888921 0)
(-0.00853336 0.220237 0)
(-0.0326335 0.0474115 0)
(-0.0291995 -0.157015 0)
(-0.0307502 -0.147019 0)
(-0.0187524 -0.103771 0)
(0.0120314 -0.110369 0)
(0.0334335 -0.160421 0)
(0.0488696 -0.230971 0)
(0.0567415 -0.273402 0)
(0.0408287 -0.213546 0)
(0.011786 -0.0826025 0)
(-0.0219658 0.0269066 0)
(-0.0620884 0.0885756 0)
(-0.0922038 0.1209 0)
(-0.111078 0.142513 0)
(-0.126613 0.165699 0)
(-0.165556 0.229651 0)
(-0.233294 0.318686 0)
(-0.302079 0.387933 0)
(-0.348734 0.418315 0)
(-0.37459 0.414907 0)
(-0.385954 0.395938 0)
(0.0521261 -0.04924 0)
(0.0393587 -0.130247 0)
(-0.0276139 0.282829 0)
(-0.0297962 -0.12366 0)
(-0.0323825 -0.0481767 0)
(-0.0465988 -0.0212093 0)
(-0.0609134 0.00399009 0)
(-0.0608819 0.0707011 0)
(0.0289825 0.188711 0)
(0.0690224 0.050563 0)
(0.0664209 -0.140296 0)
(0.0082197 -0.133712 0)
(-0.00932658 -0.108544 0)
(-0.00966207 -0.118464 0)
(-0.0168651 -0.160967 0)
(-0.0426575 -0.218549 0)
(-0.115413 -0.226035 0)
(-0.203822 -0.160473 0)
(-0.18303 -0.0805363 0)
(-0.146013 0.047161 0)
(-0.142592 0.11031 0)
(-0.153538 0.131312 0)
(-0.221122 0.209085 0)
(-0.327465 0.335027 0)
(-0.411144 0.407352 0)
(-0.4447 0.459083 0)
(-0.454788 0.46102 0)
(-0.450866 0.439856 0)
(-0.438726 0.404687 0)
(-0.425212 0.365305 0)
(0.0413716 -0.0401828 0)
(0.0355935 -0.0905453 0)
(0.0482387 0.202514 0)
(-0.0131107 -0.0853448 0)
(-0.0274648 -0.0413851 0)
(-0.0400281 -0.0169147 0)
(-0.0487661 0.00793704 0)
(-0.0450902 0.0551509 0)
(0.0401272 0.129232 0)
(0.140206 0.041123 0)
(0.0930852 -0.100951 0)
(0.0233737 -0.106 0)
(-0.00774408 -0.0977718 0)
(-0.0283132 -0.107177 0)
(-0.0587497 -0.134535 0)
(-0.11124 -0.155264 0)
(-0.200617 -0.0847227 0)
(-0.356699 -0.117676 0)
(-0.302539 -0.216304 0)
(-0.292979 0.0457201 0)
(-0.336673 0.192181 0)
(-0.485062 0.246109 0)
(-0.437563 0.366479 0)
(-0.489668 0.459192 0)
(-0.478937 0.434234 0)
(-0.434061 0.430145 0)
(-0.40694 0.41291 0)
(-0.3862 0.382687 0)
(-0.368921 0.341013 0)
(-0.353237 0.300974 0)
(0.0316189 -0.0311078 0)
(0.0295898 -0.0593438 0)
(0.0219786 0.142167 0)
(-0.00511744 -0.0553956 0)
(-0.0220623 -0.0335558 0)
(-0.032506 -0.0133541 0)
(-0.0366592 0.00925598 0)
(-0.0279684 0.0420486 0)
(0.0264848 0.0747293 0)
(0.10509 0.0258456 0)
(0.0729813 -0.0603925 0)
(0.0222402 -0.0763826 0)
(-0.00965424 -0.0777995 0)
(-0.0391684 -0.0812059 0)
(-0.0844336 -0.0852758 0)
(-0.172936 -0.0727392 0)
(-0.24675 0.00223659 0)
(-0.21723 -0.0695974 0)
(-0.220406 -0.143501 0)
(-0.304213 0.0828427 0)
(-0.346891 0.289141 0)
(-0.302621 0.410439 0)
(-0.261467 0.136638 0)
(-0.175516 0.337277 0)
(-0.100449 0.361784 0)
(-0.136046 0.38981 0)
(-0.180033 0.465045 0)
(-0.184989 0.349792 0)
(-0.176305 0.303209 0)
(-0.169478 0.261439 0)
(0.0229102 -0.0229926 0)
(0.0223983 -0.0375282 0)
(0.00877271 0.0926107 0)
(-0.0019866 -0.0346453 0)
(-0.0167744 -0.0264042 0)
(-0.0247553 -0.0106437 0)
(-0.0258784 0.00859913 0)
(-0.0156327 0.0309159 0)
(0.0170704 0.043369 0)
(0.0577566 0.0138224 0)
(0.0455058 -0.0340423 0)
(0.0155468 -0.0518033 0)
(-0.0108523 -0.0554396 0)
(-0.036528 -0.0529291 0)
(-0.0631185 -0.0415481 0)
(-0.0785425 -0.0116564 0)
(-0.0760403 0.0276939 0)
(-0.0891332 -0.0885337 0)
(-0.186954 -0.0560665 0)
(-0.212743 0.155068 0)
(-0.18486 0.245175 0)
(-0.141948 0.1773 0)
(-0.169511 0.188835 0)
(-0.158534 0.207012 0)
(-0.160141 0.38642 0)
(-0.132047 0.456099 0)
(-0.104856 0.385358 0)
(-0.0706472 0.268944 0)
(-0.0438501 0.227327 0)
(-0.0244246 0.210353 0)
(0.0151595 -0.0164411 0)
(0.0155309 -0.022863 0)
(0.00439804 0.0575057 0)
(-0.000875643 -0.0213862 0)
(-0.0118578 -0.0207863 0)
(-0.0173886 -0.00867767 0)
(-0.0169356 0.00692691 0)
(-0.0079419 0.0217139 0)
(0.0119538 0.0255498 0)
(0.0310521 0.00678636 0)
(0.02627 -0.0200155 0)
(0.00870865 -0.0332983 0)
(-0.0103651 -0.0356967 0)
(-0.0292362 -0.030888 0)
(-0.046908 -0.0199155 0)
(-0.0605888 -0.00443689 0)
(-0.0704209 0.0082149 0)
(-0.0886082 0.00731466 0)
(-0.120752 0.0302885 0)
(-0.129521 0.101774 0)
(-0.102242 0.171434 0)
(-0.0821665 0.186913 0)
(-0.0739724 0.203746 0)
(-0.0632457 0.234239 0)
(-0.0421725 0.268819 0)
(0.00234797 0.291881 0)
(0.0434871 0.258867 0)
(0.0625222 0.208507 0)
(0.0664451 0.150721 0)
(0.0746876 0.145662 0)
(0.00817496 -0.0118639 0)
(0.00945189 -0.0138281 0)
(0.00224656 0.0349302 0)
(-0.000452357 -0.0137769 0)
(-0.00735751 -0.0166895 0)
(-0.0106847 -0.0073766 0)
(-0.00982235 0.00509023 0)
(-0.00362167 0.0149566 0)
(0.00741585 0.0154294 0)
(0.0160828 0.00331662 0)
(0.0135954 -0.0121264 0)
(0.00376403 -0.0204345 0)
(-0.00818063 -0.0207332 0)
(-0.0204253 -0.014719 0)
(-0.0320836 -0.00399969 0)
(-0.0428495 0.00945137 0)
(-0.0529654 0.0234079 0)
(-0.0636562 0.0385111 0)
(-0.0735835 0.0592652 0)
(-0.0756922 0.0878508 0)
(-0.0635451 0.119645 0)
(-0.0435454 0.142028 0)
(-0.0253306 0.156193 0)
(-0.00430689 0.168208 0)
(0.0187124 0.171868 0)
(0.0420467 0.166478 0)
(0.0630407 0.155107 0)
(0.0791898 0.138646 0)
(0.0899111 0.120544 0)
(0.0969398 0.104219 0)
(0.00164323 -0.00962265 0)
(0.00423576 -0.00928313 0)
(0.00105389 0.0230526 0)
(-0.000162991 -0.0101932 0)
(-0.00316175 -0.0142903 0)
(-0.00453589 -0.00663454 0)
(-0.00405284 0.00377925 0)
(-0.00130555 0.0110166 0)
(0.00306756 0.0104293 0)
(0.00613182 0.00183188 0)
(0.0050458 -0.00797692 0)
(0.00101211 -0.0129751 0)
(-0.00421717 -0.0115144 0)
(-0.0100127 -0.00463144 0)
(-0.0163532 0.00673855 0)
(-0.0231213 0.0211735 0)
(-0.0297128 0.0359332 0)
(-0.0353352 0.0507572 0)
(-0.038818 0.0657861 0)
(-0.0387665 0.0805435 0)
(-0.0343131 0.0937902 0)
(-0.0259545 0.104009 0)
(-0.0153761 0.110432 0)
(-0.00374064 0.113049 0)
(0.00796577 0.111906 0)
(0.0187399 0.107531 0)
(0.0279879 0.100946 0)
(0.0354968 0.0930509 0)
(0.0412956 0.0846141 0)
(0.0456144 0.076195 0)
(0.00473594 -0.0954138 0)
(0.00522252 -0.0932716 0)
(0.005889 -0.0909572 0)
(0.00769137 -0.08882 0)
(0.0118196 -0.0872293 0)
(0.0204502 -0.0853427 0)
(0.0336321 -0.0857636 0)
(0.039793 -0.0782916 0)
(0.0617713 -0.0689266 0)
(0.0740494 -0.0787201 0)
(0.0466133 -0.0263578 0)
(0.116012 -0.0318595 0)
(0.0644008 -0.0510854 0)
(0.114829 0.0348895 0)
(0.175413 -0.00620226 0)
(0.104153 0.0293664 0)
(0.00713356 0.0434454 0)
(0.216888 0.081535 0)
(-0.134007 0.119546 0)
(-0.100242 0.124944 0)
(-0.364667 0.345263 0)
(-0.0491901 0.0478591 0)
(-0.0340797 0.00388338 0)
(-0.123496 -0.0398738 0)
(-0.322944 -0.1068 0)
(-0.99617 -0.217974 0)
(0.00608454 -0.0447686 0)
(0.0963264 -0.0261416 0)
(0.0271386 -0.0140944 0)
(0.0746686 0.0190016 0)
(0.00520493 -0.0952364 0)
(0.00430992 -0.0929829 0)
(0.00396638 -0.091215 0)
(0.00544271 -0.0901809 0)
(0.0105018 -0.0899896 0)
(0.0212526 -0.089781 0)
(0.0360287 -0.0909941 0)
(0.0395776 -0.087698 0)
(0.0881804 -0.0805706 0)
(0.0827599 -0.0698516 0)
(0.0433498 -0.0274153 0)
(0.11321 -0.0376925 0)
(0.027568 -0.0435982 0)
(0.1214 0.019506 0)
(0.0869155 -0.00380567 0)
(0.0944766 0.0437221 0)
(-0.00195489 0.0318086 0)
(0.00690086 0.0901003 0)
(-0.0745477 0.0385167 0)
(-0.123552 0.217996 0)
(-0.283657 0.33737 0)
(-0.0263857 0.0390551 0)
(-0.00466321 0.00493184 0)
(-0.0631986 -0.0311935 0)
(-0.210034 -0.0886321 0)
(-0.786424 -0.195113 0)
(-0.51602 -0.114878 0)
(0.12094 -0.0223832 0)
(0.043874 -0.0140555 0)
(0.0686809 0.0180582 0)
(0.00472865 -0.0950366 0)
(0.0019572 -0.0929112 0)
(0.000622282 -0.0917487 0)
(0.0019467 -0.0919773 0)
(0.00805183 -0.093674 0)
(0.0185738 -0.0970756 0)
(0.0285386 -0.0951155 0)
(0.0452407 -0.101009 0)
(0.110932 -0.0896509 0)
(0.0941878 -0.0639362 0)
(0.0607876 -0.0356234 0)
(0.0953672 -0.0351979 0)
(0.0315187 -0.0346516 0)
(0.0657967 0.00763343 0)
(0.0263472 0.00138421 0)
(0.0256713 0.0485668 0)
(-0.0451612 0.0403192 0)
(-0.0258867 0.0821554 0)
(-0.179997 0.028472 0)
(-0.182301 0.282987 0)
(-0.208801 0.327946 0)
(-0.0115345 0.0332188 0)
(0.0170548 0.00475304 0)
(-0.0139375 -0.0250358 0)
(-0.112576 -0.0738291 0)
(-0.485609 -0.152359 0)
(-1.32022 -0.138252 0)
(0.156932 -0.0338713 0)
(0.0764043 -0.0137559 0)
(0.0362745 0.0144236 0)
(-0.031302 -0.091869 0)
(-0.0333329 -0.0905836 0)
(-0.0330753 -0.0912237 0)
(-0.0307504 -0.0937261 0)
(-0.0274037 -0.0967094 0)
(-0.023825 -0.100007 0)
(-0.0168028 -0.097988 0)
(0.00315151 -0.11804 0)
(0.0306184 -0.100718 0)
(0.0706889 -0.037607 0)
(0.059903 -0.0451153 0)
(0.0603328 -0.0301835 0)
(0.0756266 -0.024286 0)
(0.0684951 -0.00469471 0)
(0.0766739 0.0143915 0)
(-0.0189146 0.0473222 0)
(0.0195542 0.0619976 0)
(0.35031 0.0556426 0)
(0.038682 0.00480936 0)
(-0.105022 0.335075 0)
(-0.162656 0.316899 0)
(0.0014753 0.0309142 0)
(0.0380034 0.00385857 0)
(0.0228009 -0.0211026 0)
(-0.0402049 -0.0633345 0)
(-0.272612 -0.117246 0)
(-0.647443 -0.128158 0)
(-0.371443 -0.0738233 0)
(0.133291 -0.0123816 0)
(-0.0956497 0.00779595 0)
(-0.0605748 -0.0892315 0)
(-0.0625838 -0.0905649 0)
(-0.0607738 -0.0930906 0)
(-0.0565773 -0.0957718 0)
(-0.0523312 -0.0981824 0)
(-0.0492728 -0.100878 0)
(-0.0422068 -0.104574 0)
(-0.0259575 -0.123439 0)
(-0.00425015 -0.114092 0)
(0.0592736 -0.0661824 0)
(0.117217 -0.0389675 0)
(0.106374 -0.0377147 0)
(0.0986223 -0.0264679 0)
(0.118496 -0.0142345 0)
(0.114276 0.0279948 0)
(0.0215285 0.053825 0)
(0.0988796 0.0566546 0)
(0.226213 -0.150926 0)
(0.125159 0.0625496 0)
(-0.0604194 0.390624 0)
(-0.157006 0.30789 0)
(0.00413679 0.0297332 0)
(0.0533759 0.00291944 0)
(0.0478395 -0.0188908 0)
(0.00895022 -0.0562365 0)
(-0.125751 -0.0930023 0)
(-0.310705 -0.115927 0)
(-0.534054 -0.154487 0)
(0.1782 -0.01366 0)
(-0.310803 -0.00440835 0)
(-0.0629578 -0.0854074 0)
(-0.0651057 -0.0907108 0)
(-0.0633025 -0.0959806 0)
(-0.0591247 -0.0992266 0)
(-0.0543671 -0.100947 0)
(-0.0493229 -0.103381 0)
(-0.0419703 -0.110548 0)
(-0.0276076 -0.130377 0)
(6.38615e-05 -0.132237 0)
(0.0683689 -0.0979346 0)
(0.143458 -0.0519341 0)
(0.176333 -0.0328713 0)
(0.19767 -0.0268792 0)
(0.160613 -0.0167374 0)
(0.135569 0.0631969 0)
(0.0244299 0.0620285 0)
(0.322039 -0.0282184 0)
(0.237647 -0.111728 0)
(0.162238 0.0925711 0)
(-0.133031 0.452738 0)
(-0.176356 0.300607 0)
(-0.00785821 0.0297998 0)
(0.0637603 0.00165232 0)
(0.0632232 -0.0178858 0)
(0.0396948 -0.051551 0)
(-0.0345071 -0.0781408 0)
(-0.118081 -0.102552 0)
(-0.826372 -0.116971 0)
(-0.375303 -0.0817696 0)
(0.0935012 -0.0186231 0)
(-0.0358234 -0.080773 0)
(-0.0387502 -0.0900467 0)
(-0.0395897 -0.0976378 0)
(-0.0398887 -0.101706 0)
(-0.037894 -0.104319 0)
(-0.0308807 -0.10753 0)
(-0.0222492 -0.11655 0)
(-0.00777851 -0.140221 0)
(0.0256698 -0.1538 0)
(0.0904379 -0.130973 0)
(0.150607 -0.0701649 0)
(0.195752 -0.0457408 0)
(0.233461 -0.0250076 0)
(0.202019 -0.00257568 0)
(0.180958 0.0440476 0)
(0.262644 0.0314636 0)
(0.483832 -0.0663212 0)
(0.338983 -0.0589061 0)
(0.20558 0.114698 0)
(-0.595173 0.502808 0)
(-0.218672 0.293362 0)
(-0.0140887 0.026859 0)
(0.0686957 -3.63054e-05 0)
(0.0715317 -0.0176218 0)
(0.0571266 -0.0483368 0)
(0.0155961 -0.0699458 0)
(-0.0149751 -0.0938292 0)
(-0.34565 -0.0729745 0)
(-0.146596 -0.164902 0)
(0.324984 -0.0234777 0)
(0.0175087 -0.0760736 0)
(0.0148372 -0.0873986 0)
(0.0106266 -0.0943794 0)
(-0.000691608 -0.0976409 0)
(-0.0110333 -0.106051 0)
(-0.00313189 -0.114191 0)
(0.00800766 -0.122373 0)
(0.0182058 -0.151051 0)
(0.0529606 -0.181233 0)
(0.127482 -0.155235 0)
(0.139844 -0.0820569 0)
(0.176585 -0.0640435 0)
(0.216208 -0.0243193 0)
(0.193621 0.00808961 0)
(0.172338 0.0211402 0)
(0.253358 -0.0365366 0)
(0.494216 -0.0810077 0)
(0.410809 -0.012908 0)
(0.131074 0.145353 0)
(-0.252066 0.561258 0)
(-0.168638 0.286937 0)
(-0.00616033 0.0236362 0)
(0.068806 -0.00231762 0)
(0.0751558 -0.0177688 0)
(0.0657459 -0.0459474 0)
(0.0395056 -0.0653942 0)
(0.0300921 -0.0898363 0)
(-0.0689847 -0.0579141 0)
(0.0153363 -0.161588 0)
(0.214861 -0.0277346 0)
(0.0908386 -0.073161 0)
(0.0873932 -0.0846554 0)
(0.0846982 -0.0847692 0)
(0.060983 -0.0757359 0)
(0.0207241 -0.0964411 0)
(0.0223786 -0.124984 0)
(0.0380356 -0.127482 0)
(0.0393219 -0.157963 0)
(0.0576498 -0.205876 0)
(0.0822226 -0.169187 0)
(0.102899 -0.0852265 0)
(0.118078 -0.078417 0)
(0.145153 -0.0256927 0)
(0.133531 0.019264 0)
(0.0885055 -0.0138387 0)
(0.247143 -0.10228 0)
(0.426717 -0.0903641 0)
(0.41358 0.02643 0)
(0.0742038 0.187069 0)
(-0.31171 0.602516 0)
(-0.197403 0.269109 0)
(0.00670875 0.0236867 0)
(0.0606979 -0.00534113 0)
(0.0760183 -0.0181884 0)
(0.0691646 -0.0439396 0)
(0.0492576 -0.0622446 0)
(0.0453538 -0.0868685 0)
(0.0241222 -0.0578288 0)
(0.0327205 -0.16827 0)
(0.119816 -0.0339933 0)
(0.175457 -0.0563929 0)
(0.155645 -0.0792327 0)
(0.157619 -0.0824854 0)
(0.140274 -0.0267571 0)
(0.0546458 -0.0565333 0)
(0.0472744 -0.14256 0)
(0.0672266 -0.131303 0)
(0.0540067 -0.153723 0)
(0.0441019 -0.213648 0)
(0.0476527 -0.176557 0)
(0.0570248 -0.0928735 0)
(0.069799 -0.0774759 0)
(0.0873151 -0.0299075 0)
(0.0237698 0.0402211 0)
(0.0128608 -0.0586501 0)
(0.242688 -0.164298 0)
(0.339502 -0.104005 0)
(0.3766 0.0556072 0)
(-0.0353041 0.271952 0)
(-0.309706 0.64278 0)
(-0.160453 0.234429 0)
(0.0213547 0.0284168 0)
(0.0378307 -0.0102615 0)
(0.0757184 -0.0189515 0)
(0.069924 -0.0420225 0)
(0.0525065 -0.0594675 0)
(0.0485236 -0.0836685 0)
(0.0400202 -0.0613671 0)
(0.0257498 -0.168463 0)
(0.0466491 -0.0378779 0)
(0.248552 -0.00628427 0)
(0.20563 -0.0460521 0)
(0.188942 -0.0990457 0)
(0.172679 0.0310478 0)
(0.125697 0.00351114 0)
(0.12065 -0.162875 0)
(0.11269 -0.125072 0)
(0.0727004 -0.130889 0)
(0.0340872 -0.209768 0)
(0.0423069 -0.180868 0)
(0.0679808 -0.109238 0)
(0.0345629 -0.063711 0)
(-0.024636 -0.00203345 0)
(-0.0891194 0.0633647 0)
(-0.00123312 -0.125803 0)
(0.193623 -0.214119 0)
(0.220499 -0.129779 0)
(0.284982 0.0887989 0)
(-0.113304 0.379608 0)
(-0.246046 0.624514 0)
(-0.0690579 0.20118 0)
(0.0337868 0.0344847 0)
(0.0549196 -0.0170887 0)
(0.0760994 -0.0197962 0)
(0.0695431 -0.0400275 0)
(0.0532527 -0.0566288 0)
(0.0478691 -0.0802074 0)
(0.0368785 -0.0648971 0)
(-0.00869009 -0.162444 0)
(-0.0421196 -0.0402394 0)
(0.305584 0.0536426 0)
(0.270244 0.00680053 0)
(0.215138 -0.0406192 0)
(0.177751 0.0374892 0)
(0.22615 -0.00817583 0)
(0.238142 -0.138275 0)
(0.184738 -0.0840172 0)
(0.102375 -0.0784659 0)
(0.0357082 -0.202157 0)
(0.0616664 -0.197308 0)
(0.0633826 -0.0962656 0)
(0.0510712 -0.0392025 0)
(-0.103583 0.0211611 0)
(-0.162071 0.0700986 0)
(-0.0135117 -0.20251 0)
(0.132593 -0.236338 0)
(0.118801 -0.157493 0)
(0.130444 0.123669 0)
(-0.198163 0.491564 0)
(-0.205941 0.570257 0)
(0.0174485 0.178185 0)
(0.0607547 0.0249593 0)
(0.102707 -0.0128495 0)
(0.0772393 -0.0194799 0)
(0.068736 -0.0378759 0)
(0.0531749 -0.0536544 0)
(0.0463187 -0.0765588 0)
(0.0313603 -0.0676691 0)
(-0.0183161 -0.154734 0)
(-0.0721638 -0.0414553 0)
(0.277983 0.114238 0)
(0.253037 0.0528149 0)
(0.202831 0.0509153 0)
(0.165184 0.0140665 0)
(0.235748 -0.0921484 0)
(0.291512 -0.122772 0)
(0.289936 0.00503749 0)
(0.154919 0.0122491 0)
(0.0714072 -0.205866 0)
(0.0874178 -0.216473 0)
(0.0601771 -0.0590915 0)
(-0.0426215 0.00511991 0)
(-0.155251 0.0446135 0)
(-0.158014 0.046756 0)
(-0.0189822 -0.263685 0)
(0.0308557 -0.227972 0)
(-0.00510528 -0.153737 0)
(-0.0373161 0.147676 0)
(-0.269036 0.593419 0)
(-0.173429 0.485349 0)
(0.0425821 0.152623 0)
(0.114463 0.00671576 0)
(0.087205 -0.00480944 0)
(0.0772736 -0.0183611 0)
(0.0677265 -0.0355741 0)
(0.052791 -0.0506034 0)
(0.044568 -0.0727669 0)
(0.0264097 -0.0694606 0)
(-0.0347204 -0.145384 0)
(-0.0777238 -0.0393555 0)
(0.253226 0.170983 0)
(0.224009 0.100053 0)
(0.207223 0.104616 0)
(0.210634 0.00251273 0)
(0.271974 -0.258525 0)
(0.334417 -0.164046 0)
(0.35917 -0.0610658 0)
(0.507497 0.184397 0)
(0.311001 -0.169906 0)
(0.164549 -0.192491 0)
(0.0790504 -0.0152875 0)
(0.00162998 0.0801872 0)
(-0.178647 0.078845 0)
(-0.0766658 -0.00615278 0)
(-0.0204752 -0.27644 0)
(-0.0601105 -0.228855 0)
(-0.139222 -0.139312 0)
(-0.161648 0.158859 0)
(-0.283774 0.654892 0)
(-0.0652946 0.429305 0)
(0.08459 0.108574 0)
(0.147303 0.0162456 0)
(0.0749198 -0.00410893 0)
(0.0768909 -0.0174836 0)
(0.0665394 -0.0331742 0)
(0.0521678 -0.0475531 0)
(0.0426713 -0.068865 0)
(0.0222457 -0.0701556 0)
(-0.0383113 -0.13378 0)
(-0.0792611 -0.038471 0)
(0.245832 0.219693 0)
(0.220252 0.152066 0)
(0.202891 0.0973637 0)
(0.214336 -0.0519737 0)
(0.167584 -0.192482 0)
(0.157373 -0.24933 0)
(0.229056 -0.205873 0)
(0.326703 0.134961 0)
(0.324441 0.0479479 0)
(0.19835 -0.145556 0)
(0.0872202 0.0527753 0)
(0.00359353 0.14147 0)
(-0.0302464 0.0864453 0)
(0.0179088 -0.0200502 0)
(-0.0348538 -0.271786 0)
(-0.0632699 -0.22435 0)
(-0.180412 -0.103663 0)
(-0.228744 0.161033 0)
(-0.308293 0.674174 0)
(0.00681749 0.362199 0)
(0.0882969 0.0702766 0)
(0.13859 0.0213239 0)
(0.0975841 0.00112337 0)
(0.0772812 -0.0158877 0)
(0.0651292 -0.0307172 0)
(0.0512502 -0.0445746 0)
(0.0405998 -0.0649074 0)
(0.0187349 -0.0698143 0)
(-0.038042 -0.1211 0)
(-0.0742818 -0.0384549 0)
(0.219124 0.247126 0)
(0.199257 0.199318 0)
(0.168773 0.130632 0)
(0.12365 0.0146985 0)
(0.0369675 -0.0989921 0)
(-0.0847398 -0.185234 0)
(-0.172293 -0.0812095 0)
(-0.185162 0.0684405 0)
(0.0266466 0.0155631 0)
(-0.0582066 -0.150042 0)
(-0.00265044 0.108763 0)
(-0.0183561 0.213304 0)
(-0.0412378 0.043996 0)
(0.0124746 -0.00181131 0)
(-0.044395 -0.233411 0)
(-0.124087 -0.204208 0)
(-0.142573 -0.0301401 0)
(-0.32958 0.155696 0)
(-0.347039 0.708981 0)
(-0.00188119 0.28052 0)
(0.0910973 0.0429606 0)
(0.132501 0.0204152 0)
(0.103705 0.00842546 0)
(0.0766279 -0.0131521 0)
(0.0634087 -0.0282313 0)
(0.0499777 -0.0417285 0)
(0.0383611 -0.0609631 0)
(0.0157692 -0.0685666 0)
(-0.0353937 -0.108323 0)
(-0.0669658 -0.0385249 0)
(0.191215 0.272196 0)
(0.179159 0.255514 0)
(0.14021 0.208514 0)
(0.0782073 0.119786 0)
(0.00734024 0.036342 0)
(-0.0995084 -0.0296492 0)
(-0.301117 -0.106208 0)
(0.00505712 -0.0841782 0)
(0.0105226 0.0503275 0)
(-0.103511 -0.0776679 0)
(-0.183714 0.136479 0)
(-0.181122 0.289958 0)
(-0.205771 0.0202486 0)
(-0.103317 -0.0288458 0)
(-0.0706497 -0.207706 0)
(-0.166564 -0.186693 0)
(-0.153063 0.0245279 0)
(-0.347517 0.171865 0)
(-0.337006 0.682664 0)
(0.0150119 0.22239 0)
(0.119243 0.0232446 0)
(0.129981 0.0204406 0)
(0.0995451 0.0164701 0)
(0.0746953 -0.0100106 0)
(0.0613228 -0.0257263 0)
(0.0483176 -0.0390631 0)
(0.035994 -0.0571011 0)
(0.0132583 -0.0665321 0)
(-0.0317261 -0.0962442 0)
(-0.0598505 -0.0380539 0)
(0.127306 0.248624 0)
(0.140841 0.292964 0)
(0.0816444 0.335823 0)
(0.0594389 0.208989 0)
(0.0252668 0.140389 0)
(-0.0366973 0.106823 0)
(-0.0922411 -0.00480067 0)
(-0.214442 -0.204979 0)
(-0.136368 -0.123248 0)
(-0.257871 -0.10427 0)
(-0.2206 0.204241 0)
(-0.249194 0.256948 0)
(-0.202999 0.0379327 0)
(-0.118852 -0.134796 0)
(-0.087535 -0.175403 0)
(-0.165874 -0.147227 0)
(-0.180327 0.0475615 0)
(-0.278923 0.219741 0)
(-0.0895887 0.493885 0)
(0.0784924 0.195674 0)
(0.158923 0.0148202 0)
(0.128955 0.0271096 0)
(0.0888687 0.0244998 0)
(0.0719741 -0.00698612 0)
(0.0588564 -0.0231632 0)
(0.0462711 -0.0365715 0)
(0.033542 -0.0533659 0)
(0.011137 -0.0638156 0)
(-0.0280792 -0.0853083 0)
(-0.0538584 -0.0367291 0)
(0.0534549 0.269363 0)
(0.069155 0.277061 0)
(0.109591 0.309485 0)
(0.109003 0.250382 0)
(0.0809634 0.216366 0)
(0.0654805 0.203493 0)
(0.0608732 0.155238 0)
(-0.0908618 -0.00553489 0)
(-0.435929 -0.130191 0)
(-0.244267 -0.149513 0)
(-0.221027 0.244477 0)
(-0.162559 0.17445 0)
(-0.0296102 -0.0567314 0)
(-0.0333817 -0.137509 0)
(-0.0731127 -0.14306 0)
(-0.128232 -0.104225 0)
(-0.152015 0.0349781 0)
(-0.157208 0.183542 0)
(0.11505 0.412532 0)
(0.192858 0.142396 0)
(0.192212 0.0230553 0)
(0.126206 0.0433854 0)
(0.0782268 0.0300816 0)
(0.0690635 -0.00405471 0)
(0.0560032 -0.0204793 0)
(0.0438675 -0.0341592 0)
(0.0310346 -0.0497597 0)
(0.00936284 -0.0605279 0)
(-0.0248946 -0.0755907 0)
(-0.0487769 -0.0345978 0)
(0.0679077 0.168161 0)
(0.0656268 0.236179 0)
(0.0477888 0.31904 0)
(0.0469119 0.287907 0)
(0.0500015 0.232343 0)
(0.0333527 0.212424 0)
(0.00270536 0.219079 0)
(-0.0520962 0.174391 0)
(-0.0984869 0.0687006 0)
(-0.150583 -0.025822 0)
(-0.158573 0.09292 0)
(-0.0446426 0.0481182 0)
(0.00337553 -0.0698684 0)
(-0.0288249 -0.113531 0)
(-0.0617364 -0.116972 0)
(-0.087821 -0.0806145 0)
(-0.0915285 0.0281999 0)
(-0.0172234 0.147269 0)
(0.148317 0.325552 0)
(0.265329 0.118049 0)
(0.204121 0.0469275 0)
(0.121935 0.0648815 0)
(0.0818188 0.0333665 0)
(0.0655939 -0.000533075 0)
(0.0527272 -0.0176403 0)
(0.0411488 -0.0316977 0)
(0.0284886 -0.0462443 0)
(0.00789875 -0.0567751 0)
(-0.0221478 -0.0669279 0)
(-0.0441318 -0.0319136 0)
(-0.0826266 0.250287 0)
(-0.0950724 0.269938 0)
(-0.0961518 0.278883 0)
(-0.105067 0.276834 0)
(-0.12625 0.274003 0)
(-0.145871 0.268526 0)
(-0.145393 0.248755 0)
(-0.124089 0.18849 0)
(-0.105402 0.088662 0)
(-0.11553 0.0287415 0)
(-0.0986235 0.0242852 0)
(-0.0484585 -0.0111124 0)
(-0.0305477 -0.0637263 0)
(-0.0413812 -0.0950681 0)
(-0.0558291 -0.102589 0)
(-0.0596925 -0.0777113 0)
(-0.0350504 0.00332601 0)
(0.0497433 0.110517 0)
(0.149656 0.236728 0)
(0.250802 0.118075 0)
(0.184861 0.0712607 0)
(0.106609 0.0946059 0)
(0.0752873 0.0397452 0)
(0.0606101 0.00340122 0)
(0.0489737 -0.0147107 0)
(0.0381541 -0.0290995 0)
(0.0259155 -0.0427628 0)
(0.00669589 -0.0526651 0)
(-0.019661 -0.0591084 0)
(-0.0396883 -0.0289505 0)
(-0.230932 0.332876 0)
(-0.257554 0.341043 0)
(-0.274 0.332631 0)
(-0.279067 0.313837 0)
(-0.272263 0.283659 0)
(-0.252532 0.24359 0)
(-0.219821 0.192563 0)
(-0.179966 0.129007 0)
(-0.14736 0.0628078 0)
(-0.125313 0.0148431 0)
(-0.100959 -0.0137037 0)
(-0.0746678 -0.0398347 0)
(-0.0595737 -0.0675059 0)
(-0.0574068 -0.0891857 0)
(-0.0592284 -0.0994271 0)
(-0.0538617 -0.0866035 0)
(-0.0250056 -0.0332242 0)
(0.043423 0.073574 0)
(0.121217 0.167624 0)
(0.177504 0.125892 0)
(0.107048 0.101806 0)
(0.0565629 0.111565 0)
(0.0608574 0.0424174 0)
(0.0542564 0.00677341 0)
(0.0447292 -0.0118339 0)
(0.0349131 -0.0263674 0)
(0.0233292 -0.0392731 0)
(0.00569811 -0.048365 0)
(-0.0173049 -0.0520105 0)
(-0.0353819 -0.0259155 0)
(-0.385459 0.379493 0)
(-0.378623 0.352562 0)
(-0.365259 0.314316 0)
(-0.346399 0.273041 0)
(-0.321511 0.230267 0)
(-0.290866 0.176236 0)
(-0.253736 0.116293 0)
(-0.214266 0.0590048 0)
(-0.177033 0.0114812 0)
(-0.144378 -0.0240816 0)
(-0.116308 -0.0472144 0)
(-0.0936588 -0.0632728 0)
(-0.0790285 -0.0774526 0)
(-0.0728045 -0.090896 0)
(-0.071219 -0.101118 0)
(-0.0676225 -0.0934995 0)
(-0.0669867 -0.0506548 0)
(-0.0744348 0.0506727 0)
(0.0201643 0.114589 0)
(0.0567079 0.137242 0)
(0.0150068 0.134235 0)
(0.0105949 0.10401 0)
(0.0480721 0.0398773 0)
(0.0470938 0.00920142 0)
(0.0400384 -0.00916709 0)
(0.0314467 -0.023586 0)
(0.0207429 -0.0357884 0)
(0.00486053 -0.044025 0)
(-0.0150313 -0.0456015 0)
(-0.0311657 -0.0229513 0)
(-0.409925 0.330089 0)
(-0.391616 0.290016 0)
(-0.37023 0.246937 0)
(-0.346579 0.200047 0)
(-0.322667 0.154148 0)
(-0.294377 0.093788 0)
(-0.260515 0.0396769 0)
(-0.223155 -0.011865 0)
(-0.185847 -0.0512688 0)
(-0.151017 -0.0739363 0)
(-0.122588 -0.0835809 0)
(-0.101687 -0.0864784 0)
(-0.0888751 -0.0886274 0)
(-0.0844512 -0.093115 0)
(-0.0878265 -0.100014 0)
(-0.0940229 -0.097198 0)
(-0.101493 -0.0438354 0)
(-0.0621909 0.0323893 0)
(-0.0757472 0.0879042 0)
(-0.0777068 0.141601 0)
(-0.0570759 0.137209 0)
(0.00794474 0.0772344 0)
(0.0375567 0.035055 0)
(0.039659 0.0106053 0)
(0.034999 -0.00684127 0)
(0.0277816 -0.0208649 0)
(0.0181631 -0.0323722 0)
(0.00414853 -0.0397755 0)
(-0.0128334 -0.0398731 0)
(-0.0269956 -0.0201604 0)
(-0.338934 0.262208 0)
(-0.324706 0.219945 0)
(-0.309972 0.171 0)
(-0.293571 0.133235 0)
(-0.270546 0.0858158 0)
(-0.244702 0.0242347 0)
(-0.218488 -0.0359696 0)
(-0.189159 -0.0889487 0)
(-0.157473 -0.118129 0)
(-0.130311 -0.124178 0)
(-0.108136 -0.117241 0)
(-0.0932745 -0.105975 0)
(-0.0857965 -0.0961189 0)
(-0.0863065 -0.0894493 0)
(-0.0975097 -0.0846347 0)
(-0.125358 -0.0759056 0)
(-0.149903 -0.0499934 0)
(-0.138901 0.00498968 0)
(-0.136838 0.116981 0)
(-0.131616 0.130177 0)
(-0.0611281 0.0901486 0)
(0.0085491 0.0528584 0)
(0.0286952 0.030261 0)
(0.0323859 0.0110863 0)
(0.0297409 -0.00493994 0)
(0.0239512 -0.0183097 0)
(0.0155902 -0.0291075 0)
(0.00353374 -0.0357332 0)
(-0.0107112 -0.0348213 0)
(-0.0228507 -0.0176203 0)
(-0.164764 0.221781 0)
(-0.160403 0.180161 0)
(-0.155029 0.133468 0)
(-0.147243 0.0824916 0)
(-0.136211 0.0267519 0)
(-0.122898 -0.0324959 0)
(-0.108089 -0.0896282 0)
(-0.093136 -0.135004 0)
(-0.079685 -0.159351 0)
(-0.072139 -0.154987 0)
(-0.0686685 -0.137139 0)
(-0.0671202 -0.115221 0)
(-0.0683554 -0.0964847 0)
(-0.0735509 -0.0811568 0)
(-0.0843441 -0.0659011 0)
(-0.102574 -0.0455037 0)
(-0.136005 -0.0216927 0)
(-0.168789 0.0123707 0)
(-0.151749 0.0941712 0)
(-0.0864549 0.0946474 0)
(-0.0217137 0.0527082 0)
(0.00818498 0.0384406 0)
(0.0213203 0.0259185 0)
(0.0255526 0.0108548 0)
(0.0243996 -0.00349364 0)
(0.0199929 -0.0160167 0)
(0.0130181 -0.0260903 0)
(0.00298947 -0.0320106 0)
(-0.00865949 -0.0304547 0)
(-0.0187328 -0.0153909 0)
(-0.0107714 0.193309 0)
(-0.00188415 0.162276 0)
(0.0063902 0.115527 0)
(0.014763 0.0624089 0)
(0.0216149 0.00623134 0)
(0.025591 -0.049487 0)
(0.0248606 -0.0998569 0)
(0.0176803 -0.14161 0)
(0.00473056 -0.157353 0)
(-0.00862901 -0.146123 0)
(-0.0211526 -0.125864 0)
(-0.0326345 -0.105137 0)
(-0.0426058 -0.0866506 0)
(-0.0520461 -0.0697028 0)
(-0.0619338 -0.0520412 0)
(-0.071759 -0.0299028 0)
(-0.0783915 -0.00062799 0)
(-0.0896493 0.0241798 0)
(-0.0803734 0.0557919 0)
(-0.0365105 0.0460776 0)
(-0.00685127 0.0342598 0)
(0.00661443 0.0302574 0)
(0.0153101 0.0221655 0)
(0.0192949 0.0101731 0)
(0.0190956 -0.00248343 0)
(0.0159395 -0.0140628 0)
(0.0104283 -0.0234234 0)
(0.00248181 -0.0287239 0)
(-0.00666444 -0.0267918 0)
(-0.0146496 -0.0135168 0)
(0.0863187 0.132843 0)
(0.0963865 0.104956 0)
(0.104969 0.066094 0)
(0.111996 0.026133 0)
(0.113247 -0.00852559 0)
(0.108297 -0.0439752 0)
(0.0975113 -0.0779509 0)
(0.0813375 -0.098848 0)
(0.0591432 -0.104215 0)
(0.0347501 -0.101556 0)
(0.0129915 -0.0923679 0)
(-0.00456403 -0.0808771 0)
(-0.0185372 -0.0685758 0)
(-0.0298207 -0.0554231 0)
(-0.0389799 -0.0405687 0)
(-0.0456086 -0.022643 0)
(-0.0476015 -0.000636914 0)
(-0.0422116 0.0229145 0)
(-0.0259338 0.0336174 0)
(-0.0113171 0.0274079 0)
(-0.00217327 0.0264946 0)
(0.00460302 0.0250961 0)
(0.0104141 0.019071 0)
(0.0136597 0.00929839 0)
(0.0139253 -0.00184267 0)
(0.0118143 -0.0125021 0)
(0.00778011 -0.0212118 0)
(0.00194914 -0.0259962 0)
(-0.00472263 -0.0238704 0)
(-0.0105993 -0.0120257 0)
(0.102265 0.0892104 0)
(0.106624 0.0726228 0)
(0.10914 0.0530992 0)
(0.108407 0.0318971 0)
(0.104564 0.0109711 0)
(0.0976912 -0.00993022 0)
(0.0865522 -0.029535 0)
(0.0712063 -0.042267 0)
(0.0546084 -0.0504461 0)
(0.0380642 -0.0548367 0)
(0.0225391 -0.0556003 0)
(0.00874397 -0.0532671 0)
(-0.00301243 -0.0482543 0)
(-0.0126302 -0.0407447 0)
(-0.0200073 -0.03068 0)
(-0.0247471 -0.0179242 0)
(-0.0257592 -0.00279397 0)
(-0.0212396 0.0126612 0)
(-0.0110848 0.0213777 0)
(-0.00502303 0.0220207 0)
(-0.00115797 0.0228751 0)
(0.0027714 0.0216791 0)
(0.00640014 0.0167286 0)
(0.00859863 0.00848124 0)
(0.00891948 -0.00146925 0)
(0.00762692 -0.0113625 0)
(0.00502423 -0.0195522 0)
(0.00128712 -0.0239619 0)
(-0.00290271 -0.0217621 0)
(-0.00658836 -0.0109405 0)
(0.0487972 0.0678898 0)
(0.0512059 0.0589758 0)
(0.0528039 0.0488621 0)
(0.0532707 0.03769 0)
(0.0523148 0.0257455 0)
(0.0496963 0.013472 0)
(0.0452856 0.00150499 0)
(0.0393745 -0.00957496 0)
(0.0326348 -0.0191334 0)
(0.0252753 -0.0264857 0)
(0.0176826 -0.0312764 0)
(0.0103481 -0.0334139 0)
(0.00372754 -0.0328642 0)
(-0.0018686 -0.0295243 0)
(-0.00618197 -0.023387 0)
(-0.00899114 -0.0145848 0)
(-0.00989928 -0.00388912 0)
(-0.00845739 0.0073667 0)
(-0.0051003 0.0155518 0)
(-0.00244577 0.0191872 0)
(-0.000546395 0.0206834 0)
(0.00129111 0.0196159 0)
(0.00289789 0.0153014 0)
(0.00381653 0.00796246 0)
(0.00392598 -0.00125088 0)
(0.00333321 -0.0106471 0)
(0.00216273 -0.0185126 0)
(0.00049656 -0.0227287 0)
(-0.00129789 -0.0205528 0)
(-0.00276484 -0.0103236 0)
(-0.000555122 -4.47147e-05 0)
(0.00434837 -8.20901e-05 0)
(0.00871744 -7.40176e-05 0)
(0.0116778 -3.90203e-05 0)
(0.0161734 -8.1415e-05 0)
(0.0226039 -7.35084e-05 0)
(0.0276742 5.90903e-06 0)
(0.0289325 0.000117614 0)
(0.0249035 0.000258685 0)
(0.0150211 0.000367016 0)
(0.00268247 0.000343844 0)
(-0.00863013 0.000243955 0)
(-0.016843 8.40124e-05 0)
(-0.0215505 -2.58571e-05 0)
(-0.0236973 -7.95996e-05 0)
(-0.0241976 -0.000103028 0)
(-0.0236626 -0.000111523 0)
(-0.0224506 -0.000119278 0)
(-0.0207849 -0.000128384 0)
(-0.0188208 -0.000139777 0)
(-0.0166877 -0.000152488 0)
(-0.0144885 -0.000164641 0)
(-0.0123061 -0.00017485 0)
(-0.0102015 -0.000182566 0)
(-0.00821246 -0.000188055 0)
(-0.00636019 -0.00019191 0)
(-0.00465071 -0.000194559 0)
(-0.00308354 -0.000196563 0)
(-0.0016541 -0.000197803 0)
(-0.000357421 -0.000198107 0)
(-0.00787734 0.000103026 0)
(-0.00382672 -0.000704795 0)
(0.00382387 -0.000940691 0)
(0.0113697 -0.0010191 0)
(0.0249855 -0.00148651 0)
(0.0431382 -0.00157394 0)
(0.0591656 -0.00116761 0)
(0.0697562 -0.000264623 0)
(0.0721482 0.00123539 0)
(0.0631022 0.00302255 0)
(0.0455427 0.0039813 0)
(0.0250128 0.00406469 0)
(0.00573694 0.00343446 0)
(-0.00956052 0.00253221 0)
(-0.020347 0.00161936 0)
(-0.0270053 0.00078062 0)
(-0.0302652 4.69332e-05 0)
(-0.0309654 -0.000594196 0)
(-0.0298783 -0.00113983 0)
(-0.0276419 -0.0015891 0)
(-0.024743 -0.00195049 0)
(-0.0215347 -0.00223036 0)
(-0.0182604 -0.00243799 0)
(-0.0150805 -0.00258542 0)
(-0.0120878 -0.00268778 0)
(-0.00932715 -0.00275876 0)
(-0.00680736 -0.00280917 0)
(-0.00452091 -0.0028435 0)
(-0.00245163 -0.0028641 0)
(-0.000582577 -0.00287253 0)
(-0.0106105 0.000602763 0)
(-0.00788045 -0.00131498 0)
(-0.000302895 -0.00202388 0)
(0.00747822 -0.00231069 0)
(0.0221775 -0.00330478 0)
(0.0417511 -0.00358658 0)
(0.0594197 -0.00296646 0)
(0.0720053 -0.00135381 0)
(0.0770725 0.00142978 0)
(0.0713574 0.00512747 0)
(0.0569238 0.00746427 0)
(0.0388099 0.00810066 0)
(0.0211855 0.00731574 0)
(0.00681697 0.0058335 0)
(-0.00362246 0.00415382 0)
(-0.0105001 0.00246935 0)
(-0.0144213 0.00092079 0)
(-0.0160981 -0.00043256 0)
(-0.0161872 -0.0015571 0)
(-0.0152403 -0.00246151 0)
(-0.0136724 -0.00316427 0)
(-0.0117938 -0.00368508 0)
(-0.00982046 -0.00404568 0)
(-0.00790663 -0.00427284 0)
(-0.00615218 -0.00439724 0)
(-0.00460933 -0.00445465 0)
(-0.00328529 -0.00447694 0)
(-0.00215631 -0.00448468 0)
(-0.00118353 -0.00448757 0)
(-0.000328912 -0.00448972 0)
(-0.0113465 0.00119351 0)
(-0.00868987 -0.00190311 0)
(-0.00105308 -0.00311757 0)
(0.00658086 -0.00361183 0)
(0.0213582 -0.00515015 0)
(0.0411334 -0.00564415 0)
(0.0590609 -0.00483664 0)
(0.0719756 -0.00255221 0)
(0.0775288 0.00142699 0)
(0.0721802 0.00698034 0)
(0.0582903 0.0106407 0)
(0.0408929 0.0117922 0)
(0.0241246 0.0108611 0)
(0.0106706 0.00883438 0)
(0.00100854 0.00645817 0)
(-0.00543264 0.00407376 0)
(-0.00931169 0.00188242 0)
(-0.0112825 -2.78108e-05 0)
(-0.011883 -0.00162081 0)
(-0.0115488 -0.00289819 0)
(-0.0106076 -0.00388817 0)
(-0.00930933 -0.00461741 0)
(-0.00784069 -0.00511097 0)
(-0.00634813 -0.00539677 0)
(-0.00493812 -0.00551293 0)
(-0.00368191 -0.00551283 0)
(-0.00260721 -0.00545461 0)
(-0.00170462 -0.00538677 0)
(-0.000942138 -0.00533848 0)
(-0.000281266 -0.00532025 0)
(-0.0117113 0.00180612 0)
(-0.00885199 -0.00249748 0)
(-0.00119043 -0.00420878 0)
(0.00627586 -0.00490214 0)
(0.0210876 -0.00700702 0)
(0.0410424 -0.00772474 0)
(0.0591827 -0.00673827 0)
(0.0723933 -0.00378117 0)
(0.0784057 0.00138319 0)
(0.0729821 0.00885618 0)
(0.0587829 0.0138355 0)
(0.0410403 0.0154544 0)
(0.0240311 0.0143177 0)
(0.0106001 0.0117245 0)
(0.00106892 0.00866407 0)
(-0.00529953 0.00563791 0)
(-0.0092047 0.00287814 0)
(-0.0112923 0.000475127 0)
(-0.0120639 -0.00153506 0)
(-0.0119273 -0.00316062 0)
(-0.0111812 -0.00443138 0)
(-0.010055 -0.00538055 0)
(-0.00871832 -0.00603498 0)
(-0.00729704 -0.00642277 0)
(-0.00588332 -0.00658407 0)
(-0.00454313 -0.00658091 0)
(-0.00331425 -0.00648973 0)
(-0.00220979 -0.00638064 0)
(-0.00122357 -0.00630082 0)
(-0.000341048 -0.0062695 0)
(-0.0120913 0.00243234 0)
(-0.00894329 -0.00310611 0)
(-0.00128767 -0.00530083 0)
(0.00596608 -0.00616977 0)
(0.0208179 -0.00887297 0)
(0.0409936 -0.00983066 0)
(0.0593892 -0.00867901 0)
(0.0729661 -0.00504762 0)
(0.0796142 0.00128782 0)
(0.0741212 0.0108016 0)
(0.0594857 0.0171519 0)
(0.0411221 0.0192318 0)
(0.0235016 0.0178308 0)
(0.00978181 0.0146332 0)
(0.000169008 0.0108773 0)
(-0.00623928 0.00721153 0)
(-0.0101646 0.00389388 0)
(-0.0122588 0.0010042 0)
(-0.0130362 -0.00141339 0)
(-0.0129071 -0.00337763 0)
(-0.0121758 -0.00492541 0)
(-0.0110709 -0.00609571 0)
(-0.00975144 -0.00692642 0)
(-0.00832531 -0.00745011 0)
(-0.00686509 -0.00771158 0)
(-0.00542218 -0.00777624 0)
(-0.00403288 -0.0077258 0)
(-0.00272414 -0.00763818 0)
(-0.00151177 -0.00756821 0)
(-0.000404084 -0.00754061 0)
(-0.0125558 0.00307469 0)
(-0.00904164 -0.00373343 0)
(-0.00140807 -0.00639436 0)
(0.00558193 -0.0074035 0)
(0.0204879 -0.0107488 0)
(0.0409351 -0.0119666 0)
(0.0596339 -0.0106696 0)
(0.0736397 -0.00636034 0)
(0.0811179 0.00111859 0)
(0.0755393 0.0128277 0)
(0.0603976 0.0206226 0)
(0.0412681 0.0231698 0)
(0.0228555 0.0214409 0)
(0.00874284 0.0175917 0)
(-0.000982656 0.0131135 0)
(-0.00743856 0.0087929 0)
(-0.0113575 0.00490654 0)
(-0.0134044 0.00152355 0)
(-0.0141125 -0.00130838 0)
(-0.0139049 -0.00361297 0)
(-0.0130982 -0.00543428 0)
(-0.0119261 -0.00682465 0)
(-0.0105459 -0.00783412 0)
(-0.00905891 -0.00850795 0)
(-0.00752684 -0.0088987 0)
(-0.00599195 -0.00907361 0)
(-0.00448791 -0.00911193 0)
(-0.00304637 -0.00908819 0)
(-0.00169306 -0.0090572 0)
(-0.000447241 -0.00904528 0)
(-0.0131198 0.00373763 0)
(-0.00915238 -0.00438382 0)
(-0.00155754 -0.00748975 0)
(0.005115 -0.00859542 0)
(0.0200929 -0.0126364 0)
(0.0408651 -0.0141379 0)
(0.0599137 -0.0127224 0)
(0.0743976 -0.00772787 0)
(0.0829378 0.000853252 0)
(0.0772331 0.0149465 0)
(0.0615111 0.0242759 0)
(0.0414617 0.0273003 0)
(0.0220827 0.0251652 0)
(0.00750817 0.0206076 0)
(-0.00232454 0.0153773 0)
(-0.00882176 0.0103762 0)
(-0.0127182 0.00590604 0)
(-0.0146954 0.00201313 0)
(-0.015298 -0.00124561 0)
(-0.0149688 -0.00389757 0)
(-0.0140357 -0.00599693 0)
(-0.0127401 -0.00760903 0)
(-0.0112422 -0.0087996 0)
(-0.00964434 -0.00962814 0)
(-0.00800743 -0.0101578 0)
(-0.00637274 -0.0104571 0)
(-0.0047731 -0.0106003 0)
(-0.00323971 -0.0106556 0)
(-0.00180025 -0.0106734 0)
(-0.000475951 -0.0106814 0)
(-0.0137905 0.00442676 0)
(-0.00927118 -0.00506201 0)
(-0.00173923 -0.00858754 0)
(0.00455932 -0.00973783 0)
(0.0196322 -0.0145376 0)
(0.0407846 -0.0163493 0)
(0.0602279 -0.014852 0)
(0.0752204 -0.00916037 0)
(0.0851069 0.00046761 0)
(0.079212 0.0171695 0)
(0.06284 0.0281395 0)
(0.0416962 0.0316567 0)
(0.0211564 0.0290186 0)
(0.00605416 0.0236834 0)
(-0.00386586 0.0176712 0)
(-0.0104 0.0119574 0)
(-0.0142667 0.00688921 0)
(-0.0161565 0.00246403 0)
(-0.0166335 -0.00123704 0)
(-0.0161559 -0.00424885 0)
(-0.0150657 -0.00663474 0)
(-0.013613 -0.00847488 0)
(-0.0119635 -0.00985087 0)
(-0.0102223 -0.0108377 0)
(-0.0084541 -0.0115067 0)
(-0.00670491 -0.0119291 0)
(-0.00500893 -0.012175 0)
(-0.00339523 -0.0123074 0)
(-0.00188708 -0.0123726 0)
(-0.000501619 -0.0123996 0)
(-0.0145761 0.00514612 0)
(-0.00939245 -0.00577303 0)
(-0.00195562 -0.00968834 0)
(0.00390811 -0.0108274 0)
(0.0191051 -0.016454 0)
(0.0406949 -0.0186052 0)
(0.0605774 -0.0170734 0)
(0.0760838 -0.0106705 0)
(0.0876705 -6.84635e-05 0)
(0.0814889 0.019507 0)
(0.064409 0.0322395 0)
(0.0419659 0.0362737 0)
(0.0200482 0.0330154 0)
(0.00435627 0.0268162 0)
(-0.00561742 0.0199922 0)
(-0.0121798 0.0135335 0)
(-0.0160136 0.00785311 0)
(-0.0178057 0.00286983 0)
(-0.0181379 -0.00129141 0)
(-0.0174902 -0.00467824 0)
(-0.0162202 -0.00736129 0)
(-0.0145888 -0.00943697 0)
(-0.0127667 -0.011005 0)
(-0.0108618 -0.0121535 0)
(-0.00894509 -0.0129601 0)
(-0.00706591 -0.0134992 0)
(-0.00525933 -0.0138401 0)
(-0.00355455 -0.0140413 0)
(-0.00197294 -0.0141485 0)
(-0.000527894 -0.0141924 0)
(-0.0154847 0.00589833 0)
(-0.00950891 -0.00652253 0)
(-0.00221026 -0.0107927 0)
(0.00315351 -0.0118648 0)
(0.0185105 -0.018387 0)
(0.0405978 -0.0209088 0)
(0.060967 -0.0194017 0)
(0.0769597 -0.0122748 0)
(0.0906893 -0.000780136 0)
(0.0840796 0.0219646 0)
(0.0662561 0.0366041 0)
(0.0422586 0.0411909 0)
(0.0187236 0.037171 0)
(0.00238864 0.0300122 0)
(-0.00759106 0.0223377 0)
(-0.0141647 0.0150998 0)
(-0.0179695 0.00879602 0)
(-0.019652 0.0032243 0)
(-0.0198213 -0.00141816 0)
(-0.018981 -0.00519666 0)
(-0.0175094 -0.00818723 0)
(-0.0156825 -0.0105067 0)
(-0.0136731 -0.0122728 0)
(-0.0115916 -0.0135857 0)
(-0.00951255 -0.0145303 0)
(-0.00749093 -0.0151817 0)
(-0.00556383 -0.0156094 0)
(-0.00375693 -0.0158707 0)
(-0.00208601 -0.016011 0)
(-0.000560002 -0.0160671 0)
(-0.0165263 0.00668645 0)
(-0.00961219 -0.0073161 0)
(-0.00250556 -0.0119019 0)
(0.00228782 -0.0128488 0)
(0.0178463 -0.0203382 0)
(0.0404949 -0.0232628 0)
(0.0614083 -0.0218513 0)
(0.0778232 -0.0139972 0)
(0.0942437 -0.00170516 0)
(0.0870006 0.0245392 0)
(0.0684375 0.0412683 0)
(0.0425554 0.0464549 0)
(0.0171372 0.0415033 0)
(0.000114317 0.0332789 0)
(-0.00978717 0.024707 0)
(-0.0163572 0.0166502 0)
(-0.0201428 0.00972068 0)
(-0.0217059 0.00352063 0)
(-0.0216913 -0.00162608 0)
(-0.0206342 -0.00581435 0)
(-0.0189383 -0.00912189 0)
(-0.0169026 -0.0116902 0)
(-0.0146912 -0.0136623 0)
(-0.0124224 -0.0151441 0)
(-0.0101699 -0.0162258 0)
(-0.00798882 -0.0169849 0)
(-0.00592018 -0.0174933 0)
(-0.00399295 -0.0178109 0)
(-0.00221719 -0.0179889 0)
(-0.000596245 -0.0180616 0)
(-0.0177123 0.00751406 0)
(-0.00969262 -0.00816 0)
(-0.00284832 -0.0130167 0)
(0.00130293 -0.0137757 0)
(0.0171102 -0.0223082 0)
(0.0403873 -0.0256681 0)
(0.0619295 -0.0244326 0)
(0.0786896 -0.0158749 0)
(0.0984289 -0.00286961 0)
(0.0902415 0.0272144 0)
(0.0710152 0.0462787 0)
(0.0428345 0.052126 0)
(0.015225 0.0460302 0)
(-0.00250612 0.0365692 0)
(-0.012179 0.0271036 0)
(-0.0187588 0.0181825 0)
(-0.0225446 0.0106302 0)
(-0.0239793 0.00375266 0)
(-0.0237588 -0.00192676 0)
(-0.0224541 -0.00654458 0)
(-0.0205122 -0.010174 0)
(-0.0182499 -0.0129969 0)
(-0.0158344 -0.0151779 0)
(-0.0133588 -0.0168393 0)
(-0.0109137 -0.018064 0)
(-0.00855802 -0.018933 0)
(-0.00633019 -0.0195181 0)
(-0.00425498 -0.0198849 0)
(-0.00235312 -0.0200882 0)
(-0.00063274 -0.0201693 0)
(-0.0190559 0.00838521 0)
(-0.00973645 -0.00906034 0)
(-0.00324912 -0.0141349 0)
(0.000191682 -0.014641 0)
(0.0162996 -0.0242965 0)
(0.0402754 -0.0281242 0)
(0.0625957 -0.0271419 0)
(0.0797677 -0.0179693 0)
(0.103314 -0.00430483 0)
(0.0936966 0.0299587 0)
(0.0738893 0.0517029 0)
(0.0430851 0.0582965 0)
(0.0129346 0.050775 0)
(-0.00557619 0.0398536 0)
(-0.0146197 0.0295474 0)
(-0.0213358 0.0197152 0)
(-0.0251859 0.0115295 0)
(-0.0264873 0.00391583 0)
(-0.0260324 -0.00233218 0)
(-0.0244452 -0.00740166 0)
(-0.0222241 -0.011354 0)
(-0.0197368 -0.0144312 0)
(-0.0171005 -0.0168351 0)
(-0.0144266 -0.0186723 0)
(-0.0117784 -0.0200454 0)
(-0.00923077 -0.0210292 0)
(-0.00682768 -0.0217007 0)
(-0.00459527 -0.0221218 0)
(-0.00254538 -0.0223439 0)
(-0.000680487 -0.0224266 0)
(-0.0205712 0.00930453 0)
(-0.00972745 -0.0100241 0)
(-0.00372755 -0.0152539 0)
(-0.00105183 -0.0154405 0)
(0.0154118 -0.0263035 0)
(0.0401571 -0.0306286 0)
(0.0635047 -0.0299366 0)
(0.0818445 -0.0203705 0)
(0.108688 -0.00606744 0)
(0.0972215 0.0326717 0)
(0.07645 0.0576024 0)
(0.0431571 0.0651623 0)
(0.0105313 0.0557675 0)
(-0.00883608 0.0432476 0)
(-0.0168332 0.0321735 0)
(-0.0239103 0.0212885 0)
(-0.0281089 0.012431 0)
(-0.0292432 0.0040065 0)
(-0.0285272 -0.00286224 0)
(-0.0266001 -0.00840258 0)
(-0.0240898 -0.012665 0)
(-0.0213342 -0.0160013 0)
(-0.0184761 -0.0186207 0)
(-0.0155574 -0.0206701 0)
(-0.0126891 -0.0222004 0)
(-0.0099382 -0.0232953 0)
(-0.00735115 -0.0240422 0)
(-0.00496 -0.0245157 0)
(-0.00275563 -0.0247846 0)
(-0.00073227 -0.0248927 0)
(-0.0222749 0.0102771 0)
(-0.00964596 -0.0110607 0)
(-0.00430992 -0.0163769 0)
(-0.00243304 -0.0161724 0)
(0.0144436 -0.0283359 0)
(0.0400237 -0.0331785 0)
(0.0645652 -0.032716 0)
(0.0861377 -0.02313 0)
(0.113022 -0.00831196 0)
(0.100883 0.0351596 0)
(0.0784123 0.0639128 0)
(0.0419683 0.0731264 0)
(0.00817888 0.0609075 0)
(-0.0105601 0.0471116 0)
(-0.0190476 0.0350996 0)
(-0.026705 0.0227173 0)
(-0.0313757 0.013399 0)
(-0.0322752 0.00399982 0)
(-0.0312465 -0.00354734 0)
(-0.0289137 -0.00956957 0)
(-0.0260698 -0.0141198 0)
(-0.0231297 -0.0176928 0)
(-0.0200348 -0.0205819 0)
(-0.0169063 -0.0228284 0)
(-0.0138103 -0.024524 0)
(-0.0108013 -0.0257565 0)
(-0.00796091 -0.0265843 0)
(-0.00532827 -0.0271108 0)
(-0.00293078 -0.0274179 0)
(-0.000772819 -0.0275432 0)
(-0.0241865 0.0113087 0)
(-0.00946931 -0.0121817 0)
(-0.00503416 -0.0175059 0)
(-0.00395778 -0.0168123 0)
(0.0133909 -0.0304042 0)
(0.0398579 -0.0357792 0)
(0.0651758 -0.0354513 0)
(0.0912528 -0.0259836 0)
(0.11141 -0.0113043 0)
(0.104276 0.0371423 0)
(0.0815671 0.0704325 0)
(0.0383773 0.0825882 0)
(0.00254081 0.0664718 0)
(-0.0142061 0.0501761 0)
(-0.0238625 0.0374908 0)
(-0.0301062 0.0237762 0)
(-0.0349463 0.0144728 0)
(-0.0354653 0.00380315 0)
(-0.0341697 -0.00441277 0)
(-0.0313706 -0.0109208 0)
(-0.0282092 -0.0157024 0)
(-0.0249606 -0.0195293 0)
(-0.0216773 -0.0226466 0)
(-0.0183039 -0.0251469 0)
(-0.014912 -0.0270672 0)
(-0.0116807 -0.0284409 0)
(-0.00861524 -0.029381 0)
(-0.00575129 -0.0299588 0)
(-0.00314917 -0.030248 0)
(-0.000821189 -0.030348 0)
(-0.0263262 0.0124054 0)
(-0.00916923 -0.0134011 0)
(-0.00595569 -0.0186446 0)
(-0.00562689 -0.0173299 0)
(0.0122479 -0.0325187 0)
(0.0396557 -0.0384468 0)
(0.0651635 -0.0384358 0)
(0.0914603 -0.0281304 0)
(0.0958474 -0.0149218 0)
(0.105372 0.0378918 0)
(0.0870562 0.0772869 0)
(0.0352727 0.0931624 0)
(-0.00983216 0.0734599 0)
(-0.0193957 0.052039 0)
(-0.0289078 0.038611 0)
(-0.0326339 0.0249157 0)
(-0.0390603 0.015476 0)
(-0.0383383 0.00344729 0)
(-0.0375529 -0.00537945 0)
(-0.0338883 -0.0125113 0)
(-0.0303976 -0.0174222 0)
(-0.0271214 -0.0214578 0)
(-0.0235996 -0.024908 0)
(-0.0198716 -0.0277079 0)
(-0.0162674 -0.029781 0)
(-0.0127559 -0.0313115 0)
(-0.00943984 -0.0323792 0)
(-0.00637548 -0.0330315 0)
(-0.00353159 -0.0333545 0)
(-0.000904181 -0.0334635 0)
(-0.0287179 0.0135745 0)
(-0.00871062 -0.0147328 0)
(-0.00715102 -0.0197971 0)
(-0.00743665 -0.0177178 0)
(0.0110072 -0.0346914 0)
(0.0394293 -0.0411818 0)
(0.0658186 -0.0419098 0)
(0.0848599 -0.0287399 0)
(0.064994 -0.018209 0)
(0.100765 0.0358976 0)
(0.0944269 0.0847871 0)
(0.0392906 0.104959 0)
(-0.0180885 0.0855996 0)
(-0.0186413 0.0546823 0)
(-0.0362013 0.0394366 0)
(-0.0390374 0.0259868 0)
(-0.0432624 0.0161044 0)
(-0.0420691 0.00350387 0)
(-0.0413651 -0.0067945 0)
(-0.0354098 -0.0144791 0)
(-0.03246 -0.0191194 0)
(-0.0291783 -0.0234574 0)
(-0.0255725 -0.0273277 0)
(-0.0218229 -0.0303807 0)
(-0.0178457 -0.0327763 0)
(-0.0139074 -0.0345043 0)
(-0.0102601 -0.0356249 0)
(-0.00692084 -0.0363541 0)
(-0.00382674 -0.0368052 0)
(-0.000963552 -0.0369901 0)
(-0.0313875 0.0148237 0)
(-0.00805009 -0.0161926 0)
(-0.00873071 -0.020971 0)
(-0.00938382 -0.0179157 0)
(0.00966188 -0.0369422 0)
(0.0391499 -0.0439751 0)
(0.0670439 -0.045507 0)
(0.0753997 -0.0274936 0)
(0.0321324 -0.0199363 0)
(0.0869717 0.0293164 0)
(0.101906 0.092778 0)
(0.045388 0.118526 0)
(-0.0195227 0.095919 0)
(-0.0303084 0.056128 0)
(-0.041277 0.0394655 0)
(-0.0408443 0.0287127 0)
(-0.0451415 0.0161179 0)
(-0.0462168 0.00415828 0)
(-0.0426063 -0.0096799 0)
(-0.035504 -0.0160772 0)
(-0.0344057 -0.0204541 0)
(-0.031674 -0.0254965 0)
(-0.0278942 -0.0297452 0)
(-0.0235526 -0.0333401 0)
(-0.019185 -0.0360897 0)
(-0.0150402 -0.0379729 0)
(-0.0110404 -0.0392089 0)
(-0.00729499 -0.0400008 0)
(-0.00393872 -0.0404785 0)
(-0.000975026 -0.040672 0)
(-0.0343636 0.016162 0)
(-0.00713425 -0.0177965 0)
(-0.0108683 -0.0221788 0)
(-0.0114609 -0.0178794 0)
(0.00820959 -0.0392976 0)
(0.0387773 -0.0468458 0)
(0.0670621 -0.0486149 0)
(0.0642666 -0.0246813 0)
(0.00396587 -0.0179148 0)
(0.0669097 0.0171432 0)
(0.108416 0.101377 0)
(0.0142373 0.132813 0)
(-0.0349525 0.108637 0)
(-0.0381146 0.055102 0)
(-0.0463236 0.0402375 0)
(-0.0484895 0.0312765 0)
(-0.046694 0.0158504 0)
(-0.0501609 0.00488545 0)
(-0.0479099 -0.0134977 0)
(-0.0388355 -0.0174922 0)
(-0.0367167 -0.0208292 0)
(-0.034994 -0.0275102 0)
(-0.0306878 -0.0326688 0)
(-0.025908 -0.0366143 0)
(-0.0212888 -0.0395341 0)
(-0.0166604 -0.0417431 0)
(-0.0121683 -0.0432368 0)
(-0.00800849 -0.0440605 0)
(-0.00429988 -0.0444143 0)
(-0.00103398 -0.0445151 0)
(-0.0376787 0.0175998 0)
(-0.00589761 -0.0195613 0)
(-0.0139458 -0.023442 0)
(-0.0136087 -0.0175736 0)
(0.00664758 -0.0417911 0)
(0.0381618 -0.0497905 0)
(0.0620131 -0.0502408 0)
(0.0468433 -0.0213856 0)
(-0.0205654 -0.0101262 0)
(0.0412134 -0.000827025 0)
(0.125977 0.108451 0)
(0.0467814 0.149576 0)
(-0.0362557 0.111044 0)
(-0.0413777 0.0592599 0)
(-0.0516621 0.0414928 0)
(-0.048251 0.0314199 0)
(-0.0432813 0.0167517 0)
(-0.0594923 0.0076651 0)
(-0.0599489 -0.0168693 0)
(-0.0470989 -0.0219856 0)
(-0.0397061 -0.0217824 0)
(-0.0381377 -0.029655 0)
(-0.0336976 -0.0356581 0)
(-0.0288905 -0.0400532 0)
(-0.023519 -0.0435355 0)
(-0.0182612 -0.0460241 0)
(-0.0134875 -0.0476189 0)
(-0.00909272 -0.0485012 0)
(-0.0049741 -0.0488726 0)
(-0.00115345 -0.048968 0)
(-0.0413673 0.0191488 0)
(-0.00426163 -0.0214993 0)
(-0.0191151 -0.024801 0)
(-0.0154072 -0.0169237 0)
(0.00493861 -0.0444639 0)
(0.0361314 -0.0526148 0)
(0.0410888 -0.0483854 0)
(0.0145533 -0.0198331 0)
(-0.0137684 -0.00492222 0)
(0.0788821 -0.0260248 0)
(0.0723532 0.107877 0)
(0.034731 0.153262 0)
(-0.0449745 0.123322 0)
(-0.0687185 0.0578288 0)
(-0.0529074 0.0425222 0)
(-0.0437506 0.0273175 0)
(-0.0494158 0.0227729 0)
(-0.0673302 0.0100327 0)
(-0.0588638 -0.0217236 0)
(-0.0554013 -0.0244709 0)
(-0.0448282 -0.0261264 0)
(-0.0418649 -0.0322183 0)
(-0.0366523 -0.0386509 0)
(-0.03103 -0.0439329 0)
(-0.0251734 -0.0479984 0)
(-0.0196956 -0.0505224 0)
(-0.0146156 -0.052183 0)
(-0.00986209 -0.0532841 0)
(-0.00537474 -0.0539108 0)
(-0.00119879 -0.0541273 0)
(-0.0454667 0.0208208 0)
(-0.0021433 -0.0236117 0)
(-0.0292866 -0.0263578 0)
(-0.014917 -0.015729 0)
(0.0026134 -0.0473147 0)
(0.0269476 -0.0543034 0)
(-0.00513131 -0.041171 0)
(-0.0162306 -0.0199379 0)
(0.0762753 -0.0214786 0)
(-0.763524 0.0385241 0)
(-0.171456 -0.00631758 0)
(-0.0200662 0.187797 0)
(-0.0612551 0.130834 0)
(-0.0804036 0.0574848 0)
(-0.0549036 0.0417507 0)
(-0.0472637 0.0239694 0)
(-0.0547842 0.0322851 0)
(-0.0652598 0.00868253 0)
(-0.0483525 -0.0282094 0)
(-0.0577858 -0.0188817 0)
(-0.0537927 -0.0324726 0)
(-0.047683 -0.0359156 0)
(-0.0403005 -0.0423866 0)
(-0.0340556 -0.0480614 0)
(-0.0277261 -0.0526842 0)
(-0.0212461 -0.0555285 0)
(-0.0151665 -0.0573323 0)
(-0.0097883 -0.0585005 0)
(-0.0051409 -0.0591728 0)
(-0.00109363 -0.0593982 0)
(-0.0500045 0.0226226 0)
(0.000698638 -0.0258462 0)
(-0.0480543 -0.0283817 0)
(-0.00791784 -0.0136607 0)
(-0.00338652 -0.0500117 0)
(-0.00466217 -0.0528079 0)
(-0.0511518 -0.0356596 0)
(0.208307 -0.0429181 0)
(0.235503 -0.0100617 0)
(-0.275257 0.149983 0)
(-0.372141 0.0179976 0)
(-0.0077083 0.164029 0)
(-0.0787898 0.139579 0)
(-0.0738366 0.0563168 0)
(-0.0574462 0.0363645 0)
(-0.0534365 0.0221891 0)
(-0.0581847 0.0405896 0)
(-0.0655772 -0.00375525 0)
(-0.0413207 -0.0291415 0)
(-0.056591 -0.00907729 0)
(-0.0607325 -0.0392278 0)
(-0.0533844 -0.0410022 0)
(-0.0443488 -0.0457177 0)
(-0.0381177 -0.052597 0)
(-0.0301441 -0.0585702 0)
(-0.0221774 -0.0617641 0)
(-0.0151692 -0.0633665 0)
(-0.00932559 -0.0640614 0)
(-0.00467288 -0.0642495 0)
(-0.000900584 -0.0642253 0)
(-0.054972 0.0245622 0)
(0.00497653 -0.0279096 0)
(-0.0761338 -0.0317787 0)
(0.00452105 -0.010115 0)
(-0.0224735 -0.050967 0)
(-0.0649492 -0.0467797 0)
(0.365438 -0.0749917 0)
(0.602708 -0.0557098 0)
(0.528165 0.0179597 0)
(0.0652667 0.288245 0)
(-0.323906 -0.175905 0)
(-0.0786407 0.137953 0)
(-0.0971803 0.137281 0)
(-0.0767245 0.0554456 0)
(-0.0762889 0.0358181 0)
(-0.0535099 0.0197 0)
(-0.0819337 0.0424073 0)
(-0.043355 -0.00977782 0)
(-0.0550052 -0.0286154 0)
(-0.0581519 0.00184479 0)
(-0.0608094 -0.0496198 0)
(-0.0559313 -0.0437541 0)
(-0.0463339 -0.0478096 0)
(-0.0388499 -0.0589594 0)
(-0.0296508 -0.0657525 0)
(-0.0217956 -0.0685387 0)
(-0.0151142 -0.0697025 0)
(-0.00934698 -0.0697471 0)
(-0.0046158 -0.0692246 0)
(-0.000739587 -0.0688107 0)
(-0.0604273 0.0266737 0)
(0.00132535 -0.0310214 0)
(-0.0880651 -0.0287799 0)
(0.00226766 -0.0092299 0)
(-0.059933 -0.0476754 0)
(0.00555566 -0.0674543 0)
(0.676037 -0.0904902 0)
(0.778942 -0.0523675 0)
(0.545925 0.0566944 0)
(0.363314 0.392062 0)
(0.0409695 -0.177561 0)
(-0.185997 0.100077 0)
(-0.0883543 0.148647 0)
(-0.0795066 0.050299 0)
(-0.0670976 0.0318002 0)
(-0.0797159 0.0165589 0)
(-0.0874791 0.0444819 0)
(-0.0278759 -0.017325 0)
(-0.0576495 -0.0240887 0)
(-0.0690533 0.00943072 0)
(-0.0541265 -0.0635847 0)
(-0.054393 -0.042381 0)
(-0.0430215 -0.0516787 0)
(-0.0349841 -0.0665661 0)
(-0.0272358 -0.0722227 0)
(-0.0216704 -0.0742326 0)
(-0.0162608 -0.0754783 0)
(-0.010694 -0.0754898 0)
(-0.00541736 -0.0746869 0)
(-0.000661138 -0.0740334 0)
(-0.0665733 0.0290474 0)
(-0.02936 -0.0335622 0)
(-0.00236137 -0.0264423 0)
(-0.03525 -0.007647 0)
(-0.0774882 -0.0531597 0)
(0.911658 -0.176558 0)
(0.681185 -0.103813 0)
(0.657778 -0.031957 0)
(0.43041 0.0835962 0)
(0.442678 0.43022 0)
(0.487027 -0.0355183 0)
(-0.169932 0.0976035 0)
(-0.101088 0.139895 0)
(-0.138082 0.0569563 0)
(-0.11346 0.00940591 0)
(-0.0555406 0.0267809 0)
(-0.0964907 0.0563407 0)
(-0.0667767 -0.0387478 0)
(-0.066053 -0.0121035 0)
(-0.0828612 0.0071069 0)
(-0.0517326 -0.0770768 0)
(-0.0499458 -0.0413878 0)
(-0.0376074 -0.0580523 0)
(-0.0306126 -0.0715584 0)
(-0.0264541 -0.0759708 0)
(-0.023355 -0.0782872 0)
(-0.0183104 -0.0808358 0)
(-0.0123153 -0.0817358 0)
(-0.00618644 -0.0813444 0)
(-0.00040823 -0.0807198 0)
(-0.0730715 0.0316826 0)
(-0.0343102 -0.0434087 0)
(0.0502085 -0.0186867 0)
(-0.0507916 -0.00203559 0)
(0.669582 -0.226423 0)
(0.733204 -0.145849 0)
(0.488449 -0.097552 0)
(0.469168 -0.0213837 0)
(0.312352 0.0983488 0)
(0.304082 0.417017 0)
(0.124608 0.133825 0)
(-0.16186 0.146908 0)
(-0.167114 0.110534 0)
(-0.137411 0.0789083 0)
(-0.066121 -0.0172826 0)
(-0.0745194 0.02865 0)
(-0.0961773 0.0643611 0)
(-0.155675 -0.0372443 0)
(-0.0765159 -0.00826987 0)
(-0.09159 -0.00541746 0)
(-0.065907 -0.0871692 0)
(-0.0398388 -0.0456448 0)
(-0.0380637 -0.062713 0)
(-0.0300994 -0.0725888 0)
(-0.0280292 -0.0782614 0)
(-0.023985 -0.0827035 0)
(-0.0175824 -0.0869037 0)
(-0.0111979 -0.0886609 0)
(-0.00509246 -0.0887506 0)
(0.000467757 -0.0881358 0)
(-0.0803912 0.0346249 0)
(-0.096541 -0.0530284 0)
(0.067227 -0.0163503 0)
(-0.0274969 -0.0144426 0)
(0.0895123 -0.211736 0)
(0.470958 -0.126893 0)
(0.311612 -0.0895455 0)
(0.291805 -0.0181885 0)
(0.202985 0.105753 0)
(0.117493 0.370144 0)
(-0.520701 0.083096 0)
(0.0409691 0.384919 0)
(-0.175212 0.072345 0)
(-0.152902 0.0959874 0)
(-0.0875036 -0.0166043 0)
(-0.160389 0.0154119 0)
(-0.0902608 0.0713552 0)
(-0.16648 -0.0451876 0)
(-0.106741 -0.0194742 0)
(-0.071231 -0.0213054 0)
(-0.0778586 -0.0831628 0)
(-0.0366875 -0.0609241 0)
(-0.046437 -0.0654012 0)
(-0.0332241 -0.07563 0)
(-0.028068 -0.0837262 0)
(-0.0197354 -0.0895625 0)
(-0.0119846 -0.0934782 0)
(-0.00614124 -0.0949947 0)
(-0.00148408 -0.094932 0)
(0.00220566 -0.0939788 0)
(0.000906955 -0.000198004 0)
(0.00227018 -0.000197326 0)
(0.00376972 -0.000195992 0)
(0.00541158 -0.00019366 0)
(0.00719869 -0.000190531 0)
(0.00912944 -0.000186193 0)
(0.011193 -0.000179935 0)
(0.0133619 -0.000171308 0)
(0.0155883 -0.000160299 0)
(0.0178031 -0.000148137 0)
(0.0199164 -0.000136248 0)
(0.0218158 -0.000126462 0)
(0.0233617 -0.000119316 0)
(0.0243767 -0.0001109 0)
(0.0245779 -9.96759e-05 0)
(0.0234909 -6.49225e-05 0)
(0.0203593 1.4655e-05 0)
(0.0141319 0.000163179 0)
(0.00418906 0.000309863 0)
(-0.00816715 0.000366911 0)
(-0.0199099 0.000320614 0)
(-0.0271525 0.000176882 0)
(-0.0288844 5.79962e-05 0)
(-0.0265797 -1.72024e-05 0)
(-0.0220333 -4.97037e-05 0)
(-0.016712 -5.30995e-05 0)
(-0.0114342 -6.54772e-05 0)
(-0.005729 -7.36203e-05 0)
(-0.0011974 -6.11287e-05 0)
(0.000281912 -1.70339e-05 0)
(0.00123857 -0.00287105 0)
(0.00320784 -0.00285848 0)
(0.00538746 -0.00283385 0)
(0.00779578 -0.00279487 0)
(0.0104474 -0.00273834 0)
(0.0133446 -0.0026571 0)
(0.0164649 -0.00253903 0)
(0.0197451 -0.00236903 0)
(0.0230645 -0.00213386 0)
(0.0262309 -0.00182275 0)
(0.0289583 -0.00142804 0)
(0.0308431 -0.00094297 0)
(0.0313316 -0.000360308 0)
(0.0297257 0.0003208 0)
(0.0251894 0.00109961 0)
(0.0168625 0.00199359 0)
(0.00414278 0.00294193 0)
(-0.0131129 0.00378198 0)
(-0.0335544 0.00409865 0)
(-0.0534934 0.00355257 0)
(-0.0675916 0.00215999 0)
(-0.0709738 0.000382051 0)
(-0.0649732 -0.000725783 0)
(-0.0531396 -0.00123022 0)
(-0.0388295 -0.00129146 0)
(-0.0245023 -0.00110426 0)
(-0.0116455 -0.00099627 0)
(-7.20209e-05 -0.00078917 0)
(0.00676304 -0.000449055 0)
(0.00281118 0.000375196 0)
(0.000499757 -0.00449155 0)
(0.00141146 -0.00449343 0)
(0.0024624 -0.00449366 0)
(0.0036932 -0.00448635 0)
(0.00513863 -0.00445669 0)
(0.00681025 -0.00437806 0)
(0.00868283 -0.00421677 0)
(0.0106839 -0.00393893 0)
(0.0126924 -0.00351572 0)
(0.0145318 -0.00292485 0)
(0.0159527 -0.0021471 0)
(0.0166121 -0.00116103 0)
(0.016036 5.10218e-05 0)
(0.0136209 0.00149088 0)
(0.00865846 0.00310738 0)
(0.000407629 0.00483773 0)
(-0.011715 0.0065234 0)
(-0.0277127 0.00781004 0)
(-0.0460284 0.00789551 0)
(-0.0631854 0.00634144 0)
(-0.0740312 0.00329273 0)
(-0.0743298 -0.000174841 0)
(-0.0660557 -0.00217344 0)
(-0.0524441 -0.00300799 0)
(-0.0366774 -0.00298817 0)
(-0.0212072 -0.00248126 0)
(-0.00770492 -0.00212102 0)
(0.0039612 -0.00155686 0)
(0.0100736 -0.00074858 0)
(0.00370635 0.00119217 0)
(0.000358208 -0.00533039 0)
(0.00106824 -0.00537091 0)
(0.00190199 -0.00543926 0)
(0.00289745 -0.00551602 0)
(0.00407948 -0.00556291 0)
(0.00544142 -0.00552499 0)
(0.0069376 -0.00534567 0)
(0.00848203 -0.00497968 0)
(0.00995392 -0.0043957 0)
(0.0111976 -0.00356935 0)
(0.0120054 -0.00247502 0)
(0.0121041 -0.00108433 0)
(0.0111264 0.000628433 0)
(0.00857639 0.00265924 0)
(0.00385025 0.00495572 0)
(-0.00379412 0.0074017 0)
(-0.0150967 0.00978954 0)
(-0.0301674 0.0115047 0)
(-0.0476387 0.0113591 0)
(-0.0642302 0.00882011 0)
(-0.074687 0.00418928 0)
(-0.0744957 -0.000898361 0)
(-0.0658339 -0.00371787 0)
(-0.0519239 -0.00484816 0)
(-0.0359305 -0.00472588 0)
(-0.0203039 -0.00387618 0)
(-0.00679753 -0.0032401 0)
(0.00484529 -0.0023198 0)
(0.0108112 -0.00101422 0)
(0.003944 0.00212075 0)
(0.000517748 -0.00628586 0)
(0.00145304 -0.00635204 0)
(0.00250262 -0.00646155 0)
(0.00367952 -0.00658164 0)
(0.00498282 -0.0066536 0)
(0.00638926 -0.00660153 0)
(0.00785067 -0.00635557 0)
(0.009292 -0.00586589 0)
(0.0106113 -0.00510174 0)
(0.011672 -0.00403755 0)
(0.0122873 -0.00264409 0)
(0.0122069 -0.000886602 0)
(0.0110893 0.00126773 0)
(0.00847379 0.00382335 0)
(0.00378256 0.00673593 0)
(-0.00375868 0.00986107 0)
(-0.0149782 0.0129598 0)
(-0.0300983 0.0151463 0)
(-0.0478918 0.0148032 0)
(-0.0649409 0.0112889 0)
(-0.0756429 0.00506887 0)
(-0.0751054 -0.00169351 0)
(-0.0660876 -0.00530207 0)
(-0.0519285 -0.00671046 0)
(-0.0358004 -0.00647677 0)
(-0.0201034 -0.00527371 0)
(-0.00662185 -0.0043603 0)
(0.00508157 -0.00308625 0)
(0.0110825 -0.00128477 0)
(0.00406796 0.0030854 0)
(0.000677755 -0.00755764 0)
(0.00184089 -0.00762023 0)
(0.00310808 -0.00771791 0)
(0.00446914 -0.00781168 0)
(0.0059039 -0.00783421 0)
(0.00738263 -0.00770399 0)
(0.00886553 -0.00734686 0)
(0.0102962 -0.00671 0)
(0.0115929 -0.00575801 0)
(0.0126331 -0.00445932 0)
(0.0132375 -0.00277449 0)
(0.0131568 -0.000659865 0)
(0.0120406 0.00192711 0)
(0.00942487 0.00499931 0)
(0.00472849 0.00851844 0)
(-0.00286884 0.0123271 0)
(-0.014254 0.0161738 0)
(-0.0297499 0.0188853 0)
(-0.0482252 0.0183468 0)
(-0.0659793 0.0138126 0)
(-0.0769822 0.00594613 0)
(-0.0759397 -0.00258409 0)
(-0.0664614 -0.00693419 0)
(-0.0519934 -0.00859495 0)
(-0.0357183 -0.00823918 0)
(-0.0199576 -0.00667057 0)
(-0.00652122 -0.00548351 0)
(0.00526802 -0.00385807 0)
(0.01134 -0.00156939 0)
(0.00419973 0.00407896 0)
(0.000771222 -0.00905886 0)
(0.00207495 -0.00909681 0)
(0.00347996 -0.00914642 0)
(0.00496479 -0.00916694 0)
(0.00650167 -0.00909346 0)
(0.00805963 -0.0088481 0)
(0.00960503 -0.0083579 0)
(0.0110923 -0.00756574 0)
(0.0124486 -0.00642719 0)
(0.0135568 -0.00489624 0)
(0.0142384 -0.00292318 0)
(0.0142365 -0.0004515 0)
(0.0131902 0.00257556 0)
(0.0106193 0.00617358 0)
(0.00593615 0.0103124 0)
(-0.00173547 0.0148209 0)
(-0.0133509 0.0194725 0)
(-0.0293402 0.0227753 0)
(-0.048686 0.0220303 0)
(-0.0673095 0.0164036 0)
(-0.0786627 0.00681622 0)
(-0.0769521 -0.00360301 0)
(-0.0669106 -0.00862381 0)
(-0.0520653 -0.0105044 0)
(-0.0356164 -0.0100145 0)
(-0.0197821 -0.00806503 0)
(-0.00640765 -0.00660974 0)
(0.00548851 -0.00463624 0)
(0.0116504 -0.00187276 0)
(0.00436145 0.00510711 0)
(0.000818758 -0.0106897 0)
(0.00220441 -0.0106962 0)
(0.00369791 -0.0106842 0)
(0.00527538 -0.010615 0)
(0.00690806 -0.0104296 0)
(0.00856583 -0.0100569 0)
(0.0102158 -0.00942642 0)
(0.0118132 -0.00847572 0)
(0.0132853 -0.00714794 0)
(0.0145145 -0.0053838 0)
(0.0153201 -0.00311774 0)
(0.0154363 -0.00028039 0)
(0.0144925 0.00319722 0)
(0.0119899 0.00733379 0)
(0.00734152 0.0121112 0)
(-0.000405452 0.0173407 0)
(-0.0122782 0.0228766 0)
(-0.0288489 0.0268562 0)
(-0.049263 0.0258909 0)
(-0.0689388 0.0190761 0)
(-0.0807045 0.00767985 0)
(-0.0781407 -0.00478807 0)
(-0.0674322 -0.0103783 0)
(-0.0521388 -0.0124411 0)
(-0.0354886 -0.0118049 0)
(-0.0195688 -0.00945546 0)
(-0.00627461 -0.00773921 0)
(0.00575288 -0.00542184 0)
(0.0120229 -0.00219947 0)
(0.00455802 0.00617769 0)
(0.000852447 -0.0124026 0)
(0.00230248 -0.0123783 0)
(0.00386878 -0.0123061 0)
(0.00553261 -0.0121491 0)
(0.00726854 -0.0118533 0)
(0.00904642 -0.0113533 0)
(0.0108303 -0.0105801 0)
(0.0125709 -0.00946653 0)
(0.0141916 -0.00794439 0)
(0.0155727 -0.00594082 0)
(0.0165285 -0.00337363 0)
(0.0167879 -0.00015986 0)
(0.0159721 0.00378306 0)
(0.0135498 0.00847575 0)
(0.00895654 0.013913 0)
(0.00113096 0.0198923 0)
(-0.0110142 0.0264059 0)
(-0.0282528 0.0311734 0)
(-0.0499639 0.0299771 0)
(-0.0708908 0.0218457 0)
(-0.0831359 0.00854017 0)
(-0.079506 -0.00618315 0)
(-0.0680243 -0.012202 0)
(-0.0522094 -0.0144066 0)
(-0.0353323 -0.0136124 0)
(-0.0193154 -0.0108398 0)
(-0.00612221 -0.00887196 0)
(0.00606232 -0.00621607 0)
(0.0124599 -0.00255435 0)
(0.0047921 0.0072993 0)
(0.000882691 -0.0141908 0)
(0.00239819 -0.0141387 0)
(0.00404591 -0.0140128 0)
(0.00580889 -0.0137757 0)
(0.00766267 -0.0133763 0)
(0.0095766 -0.0127527 0)
(0.0115125 -0.0118354 0)
(0.0134144 -0.0105536 0)
(0.0152036 -0.00883007 0)
(0.0167563 -0.0065783 0)
(0.0178839 -0.00370045 0)
(0.0183078 -9.97734e-05 0)
(0.0176393 0.00432581 0)
(0.0153073 0.00959703 0)
(0.0107927 0.0157146 0)
(0.00288319 0.0224646 0)
(-0.00953552 0.0300821 0)
(-0.027532 0.0357771 0)
(-0.0508023 0.0343497 0)
(-0.0731921 0.0247293 0)
(-0.0859902 0.00940302 0)
(-0.0810493 -0.00783873 0)
(-0.0686837 -0.0140951 0)
(-0.0522721 -0.0164016 0)
(-0.035145 -0.0154391 0)
(-0.0190202 -0.0122155 0)
(-0.00595274 -0.0100081 0)
(0.00641747 -0.00701997 0)
(0.0129631 -0.00294312 0)
(0.00506637 0.00848105 0)
(0.000929423 -0.0160621 0)
(0.00252925 -0.0159896 0)
(0.00427081 -0.0158183 0)
(0.00614261 -0.0155088 0)
(0.00812462 -0.0150119 0)
(0.0101877 -0.0142659 0)
(0.0122879 -0.0132023 0)
(0.0143648 -0.011746 0)
(0.016335 -0.00981345 0)
(0.0180751 -0.00730599 0)
(0.0193936 -0.00410752 0)
(0.0200036 -0.000107796 0)
(0.0195034 0.00482053 0)
(0.0172677 0.0106939 0)
(0.0128598 0.0175106 0)
(0.00486197 0.025043 0)
(-0.00782007 0.0339258 0)
(-0.0266649 0.040721 0)
(-0.0517961 0.039086 0)
(-0.0758679 0.0277447 0)
(-0.0893021 0.0102779 0)
(-0.0827755 -0.00981407 0)
(-0.0694038 -0.0160523 0)
(-0.0523209 -0.0184265 0)
(-0.0349239 -0.017287 0)
(-0.0186807 -0.0135788 0)
(-0.0057679 -0.0111478 0)
(0.00681849 -0.00783453 0)
(0.0135351 -0.0033714 0)
(0.00538402 0.00973274 0)
(0.000986229 -0.0180513 0)
(0.0026848 -0.0179512 0)
(0.00453636 -0.0177337 0)
(0.00653669 -0.0173574 0)
(0.00866729 -0.0167677 0)
(0.0108923 -0.015902 0)
(0.0131662 -0.0146883 0)
(0.0154287 -0.0130506 0)
(0.0175916 -0.0109019 0)
(0.0195333 -0.00813204 0)
(0.0210623 -0.00460431 0)
(0.0218807 -0.000192076 0)
(0.0215748 0.0052613 0)
(0.0194351 0.0117687 0)
(0.015167 0.0192857 0)
(0.00707529 0.0276166 0)
(-0.00583273 0.0379529 0)
(-0.0256253 0.0460564 0)
(-0.0529629 0.0442702 0)
(-0.0789445 0.0309061 0)
(-0.0931111 0.0111848 0)
(-0.0846955 -0.0121791 0)
(-0.0701692 -0.018062 0)
(-0.0523488 -0.0204812 0)
(-0.034666 -0.0191596 0)
(-0.0182941 -0.0149254 0)
(-0.00557034 -0.0122911 0)
(0.00726662 -0.00866062 0)
(0.0141778 -0.0038458 0)
(0.00574864 0.011065 0)
(0.00104232 -0.0201562 0)
(0.00285254 -0.0200399 0)
(0.004842 -0.0197858 0)
(0.00699438 -0.0193469 0)
(0.00928746 -0.0186647 0)
(0.0116904 -0.0176733 0)
(0.0141576 -0.0163005 0)
(0.0166153 -0.0144719 0)
(0.0189761 -0.0121013 0)
(0.0211325 -0.0090649 0)
(0.0228941 -0.00520078 0)
(0.0239455 -0.000363637 0)
(0.0238656 0.0056393 0)
(0.0218091 0.0128357 0)
(0.0177294 0.0210122 0)
(0.00952928 0.0301606 0)
(-0.00350784 0.0421677 0)
(-0.0243774 0.0518218 0)
(-0.0543431 0.0499913 0)
(-0.0824921 0.0342187 0)
(-0.0974682 0.0121555 0)
(-0.0868309 -0.0150138 0)
(-0.0709365 -0.0201063 0)
(-0.0523452 -0.0225654 0)
(-0.0343684 -0.0210613 0)
(-0.0178574 -0.0162494 0)
(-0.00536268 -0.0134381 0)
(0.00776255 -0.00949903 0)
(0.014894 -0.00437383 0)
(0.00616458 0.0124892 0)
(0.00113801 -0.022413 0)
(0.00309377 -0.0222883 0)
(0.00523186 -0.0219975 0)
(0.00754673 -0.0214861 0)
(0.0100191 -0.0207034 0)
(0.0126168 -0.0195803 0)
(0.015276 -0.0180462 0)
(0.0179298 -0.0160202 0)
(0.0204928 -0.0134152 0)
(0.022871 -0.0101125 0)
(0.0248904 -0.00590886 0)
(0.026204 -0.00063236 0)
(0.0263905 0.00594411 0)
(0.0243832 0.0139331 0)
(0.0205886 0.022655 0)
(0.0121775 0.0326604 0)
(-0.000660885 0.0465506 0)
(-0.022836 0.0580438 0)
(-0.05616 0.0563351 0)
(-0.0867613 0.0376891 0)
(-0.102431 0.0132552 0)
(-0.0892018 -0.0184021 0)
(-0.0715739 -0.0221648 0)
(-0.0522962 -0.0246903 0)
(-0.0340288 -0.0229974 0)
(-0.0173668 -0.0175443 0)
(-0.00514852 -0.014589 0)
(0.00830736 -0.0103503 0)
(0.0156863 -0.00496341 0)
(0.00663673 0.0140178 0)
(0.00124501 -0.0248687 0)
(0.00335678 -0.0247027 0)
(0.00564711 -0.0243604 0)
(0.00812951 -0.0237869 0)
(0.0107942 -0.0229093 0)
(0.0135934 -0.0216537 0)
(0.0164829 -0.0199295 0)
(0.0193529 -0.0176884 0)
(0.0221392 -0.0148499 0)
(0.0247519 -0.0112798 0)
(0.0270501 -0.00674299 0)
(0.0286624 -0.00101454 0)
(0.0291655 0.00616089 0)
(0.027172 0.0150817 0)
(0.0236122 0.0243763 0)
(0.014478 0.0351851 0)
(0.00267775 0.051036 0)
(-0.0208375 0.0648108 0)
(-0.0591461 0.0633452 0)
(-0.0920875 0.0413777 0)
(-0.10792 0.0145604 0)
(-0.0917009 -0.0223937 0)
(-0.071757 -0.0242372 0)
(-0.0521886 -0.0268806 0)
(-0.0336455 -0.0249741 0)
(-0.0168183 -0.0188027 0)
(-0.00493195 -0.0157444 0)
(0.0089027 -0.011215 0)
(0.0165591 -0.00562372 0)
(0.00717089 0.0156643 0)
(0.00132522 -0.0275114 0)
(0.00359799 -0.0273142 0)
(0.00610871 -0.0269241 0)
(0.00883759 -0.0262846 0)
(0.0117526 -0.0252981 0)
(0.0147965 -0.0238814 0)
(0.0178804 -0.0219843 0)
(0.0209752 -0.0194906 0)
(0.0239365 -0.0163924 0)
(0.0267511 -0.0125784 0)
(0.0293626 -0.00771508 0)
(0.0313259 -0.00152662 0)
(0.0321431 0.00628724 0)
(0.030256 0.0161936 0)
(0.0263196 0.0264944 0)
(0.0153862 0.0380402 0)
(0.00408492 0.0558099 0)
(-0.0182829 0.0722382 0)
(-0.0639454 0.0710741 0)
(-0.0979988 0.045434 0)
(-0.113291 0.0160178 0)
(-0.0936121 -0.0268681 0)
(-0.071213 -0.0264035 0)
(-0.0520342 -0.0291708 0)
(-0.0332174 -0.0269968 0)
(-0.016207 -0.0200158 0)
(-0.00471727 -0.0169049 0)
(0.00954915 -0.0120933 0)
(0.0175152 -0.00636487 0)
(0.00777349 0.0174435 0)
(0.0014384 -0.0303234 0)
(0.00389682 -0.0301521 0)
(0.00662572 -0.0297449 0)
(0.00958238 -0.0290125 0)
(0.0127098 -0.0278955 0)
(0.0160014 -0.0263008 0)
(0.0193829 -0.024139 0)
(0.0226417 -0.0214185 0)
(0.0258404 -0.0180564 0)
(0.0288909 -0.0139932 0)
(0.0318076 -0.00885039 0)
(0.0341932 -0.00217597 0)
(0.0352342 0.00629481 0)
(0.0334997 0.0174083 0)
(0.0304631 0.028 0)
(0.0167307 0.0412162 0)
(0.00644773 0.0617363 0)
(-0.0152874 0.0802659 0)
(-0.0689385 0.0801458 0)
(-0.103725 0.0497529 0)
(-0.116313 0.0171034 0)
(-0.0928946 -0.0311978 0)
(-0.0709754 -0.0288451 0)
(-0.0519154 -0.0315774 0)
(-0.0327439 -0.0290696 0)
(-0.0155281 -0.0211734 0)
(-0.00450961 -0.0180716 0)
(0.0102487 -0.0129852 0)
(0.0185602 -0.00719838 0)
(0.00845203 0.0193717 0)
(0.00166596 -0.0334331 0)
(0.00439733 -0.0332371 0)
(0.00733364 -0.0327729 0)
(0.0105038 -0.0319371 0)
(0.0139071 -0.0306698 0)
(0.0174337 -0.0289245 0)
(0.021056 -0.0265536 0)
(0.0246852 -0.0234524 0)
(0.0279468 -0.0198132 0)
(0.0310754 -0.0155369 0)
(0.0344056 -0.0101459 0)
(0.0371096 -0.00294514 0)
(0.038537 0.00595112 0)
(0.0375129 0.0189201 0)
(0.0340188 0.0290929 0)
(0.0213075 0.0436483 0)
(0.0145337 0.0686545 0)
(-0.0122322 0.0887252 0)
(-0.0717257 0.0916195 0)
(-0.109606 0.0536633 0)
(-0.111717 0.0165703 0)
(-0.086496 -0.0339764 0)
(-0.0728856 -0.0314618 0)
(-0.0518939 -0.0340583 0)
(-0.032225 -0.0311942 0)
(-0.014776 -0.0222698 0)
(-0.00431457 -0.0192454 0)
(0.0110027 -0.0138905 0)
(0.019698 -0.00813703 0)
(0.009215 0.0214668 0)
(0.0018384 -0.0369268 0)
(0.00481 -0.0366079 0)
(0.00800028 -0.036026 0)
(0.0114569 -0.0351345 0)
(0.015222 -0.0337567 0)
(0.0191815 -0.0317084 0)
(0.0229986 -0.0290504 0)
(0.0266046 -0.0256438 0)
(0.0300043 -0.0215833 0)
(0.0329119 -0.017092 0)
(0.036389 -0.0118314 0)
(0.040236 -0.00382764 0)
(0.0420896 0.00528179 0)
(0.0404191 0.0208654 0)
(0.0383892 0.0286227 0)
(0.0251608 0.0459865 0)
(0.0103068 0.0756247 0)
(-0.0185253 0.0954629 0)
(-0.0740001 0.104993 0)
(-0.113982 0.0560745 0)
(-0.0936131 0.0128504 0)
(-0.073261 -0.0337933 0)
(-0.0745382 -0.0334609 0)
(-0.0518894 -0.0366079 0)
(-0.03166 -0.0333709 0)
(-0.013944 -0.0233035 0)
(-0.00413929 -0.0204272 0)
(0.0118123 -0.0148084 0)
(0.0209357 -0.00919501 0)
(0.0100721 0.0237486 0)
(0.00189209 -0.0405999 0)
(0.00503484 -0.0402547 0)
(0.00857412 -0.0396211 0)
(0.0124342 -0.0386303 0)
(0.0164668 -0.0371199 0)
(0.0206729 -0.0348689 0)
(0.0250814 -0.0317328 0)
(0.0291687 -0.0278409 0)
(0.0324114 -0.0233037 0)
(0.033978 -0.0179135 0)
(0.035879 -0.014105 0)
(0.0433838 -0.00474288 0)
(0.0426949 0.00460787 0)
(0.0453918 0.022744 0)
(0.0399004 0.0290113 0)
(0.035582 0.0472941 0)
(0.0255367 0.0762517 0)
(-0.00899668 0.0989362 0)
(-0.0735001 0.11952 0)
(-0.115378 0.0550893 0)
(-0.058014 0.00621861 0)
(-0.0569736 -0.0306084 0)
(-0.0718157 -0.0340265 0)
(-0.0520355 -0.0393163 0)
(-0.0310484 -0.0356004 0)
(-0.013024 -0.0242728 0)
(-0.00399289 -0.021619 0)
(0.0126798 -0.0157378 0)
(0.0222791 -0.0103888 0)
(0.0110343 0.0262387 0)
(0.00212184 -0.0444684 0)
(0.00558339 -0.0442383 0)
(0.00949041 -0.0436606 0)
(0.0137864 -0.0425129 0)
(0.018317 -0.0406762 0)
(0.0228731 -0.0381734 0)
(0.0274475 -0.0348803 0)
(0.0320635 -0.0303582 0)
(0.0351823 -0.0245792 0)
(0.0351574 -0.0178239 0)
(0.0381269 -0.0165177 0)
(0.0475424 -0.00705899 0)
(0.0471253 0.00484613 0)
(0.0466248 0.023602 0)
(0.0466659 0.0284647 0)
(0.0466416 0.0503845 0)
(0.0370132 0.0814458 0)
(-0.0166667 0.103924 0)
(-0.0757718 0.135845 0)
(-0.0968993 0.050259 0)
(-0.00158115 -0.00178308 0)
(-0.0412429 -0.024971 0)
(-0.0630677 -0.0330654 0)
(-0.0523939 -0.0420975 0)
(-0.0303846 -0.0378833 0)
(-0.0120067 -0.0251743 0)
(-0.00388632 -0.0228299 0)
(0.0136064 -0.0166771 0)
(0.0237367 -0.0117359 0)
(0.0121139 0.0289614 0)
(0.00258012 -0.0489097 0)
(0.00652754 -0.0486547 0)
(0.010721 -0.048019 0)
(0.0152049 -0.0467835 0)
(0.0201394 -0.0447934 0)
(0.0255204 -0.0418715 0)
(0.0306439 -0.0380892 0)
(0.03515 -0.0330943 0)
(0.0385317 -0.0258655 0)
(0.0409025 -0.0188126 0)
(0.0490714 -0.0194545 0)
(0.0555237 -0.00955838 0)
(0.0539649 0.00802299 0)
(0.0471826 0.022414 0)
(0.0523317 0.0289689 0)
(0.0526879 0.0501066 0)
(0.0464388 0.0837834 0)
(0.0241112 0.120089 0)
(-0.0492853 0.156344 0)
(-0.0811579 0.0391343 0)
(0.0268052 -0.011279 0)
(-0.0245324 -0.0174581 0)
(-0.0421151 -0.0308314 0)
(-0.051382 -0.0444564 0)
(-0.0296406 -0.0402278 0)
(-0.0108811 -0.0260043 0)
(-0.00383323 -0.0240764 0)
(0.0145942 -0.0176237 0)
(0.0253179 -0.0132568 0)
(0.0133251 0.0319431 0)
(0.00287821 -0.0540003 0)
(0.00716868 -0.0535053 0)
(0.0116975 -0.052585 0)
(0.0164936 -0.0511998 0)
(0.0216715 -0.0492285 0)
(0.0273754 -0.0461978 0)
(0.0333404 -0.0417523 0)
(0.0389286 -0.036209 0)
(0.0429344 -0.0275077 0)
(0.0513052 -0.022663 0)
(0.0512194 -0.0221843 0)
(0.0616988 -0.0115838 0)
(0.0662864 0.0122326 0)
(0.0396505 0.0236805 0)
(0.0554474 0.0235589 0)
(0.0600496 0.0506153 0)
(0.0637727 0.0909604 0)
(0.0160547 0.130816 0)
(-0.072366 0.158188 0)
(-0.0105773 0.0260338 0)
(-0.0568809 -0.0200274 0)
(0.00361474 -0.0118887 0)
(0.00141366 -0.0276962 0)
(-0.0424681 -0.0449509 0)
(-0.0286689 -0.0426297 0)
(-0.00963409 -0.0267582 0)
(-0.00385051 -0.0253629 0)
(0.0156428 -0.0185748 0)
(0.0270344 -0.014974 0)
(0.0146905 0.0352117 0)
(0.00279832 -0.0592299 0)
(0.00705866 -0.0586536 0)
(0.0119431 -0.0576453 0)
(0.0175418 -0.0561609 0)
(0.0237814 -0.0539993 0)
(0.0303776 -0.0507062 0)
(0.0368588 -0.0461317 0)
(0.0434076 -0.0409826 0)
(0.0479223 -0.0314605 0)
(0.0562718 -0.0248565 0)
(0.039772 -0.0180913 0)
(0.0441353 -0.0182067 0)
(0.0776159 0.0158115 0)
(0.0555576 0.0267267 0)
(0.0561026 0.0195842 0)
(0.060407 0.0438258 0)
(0.0684558 0.104152 0)
(0.0355059 0.152624 0)
(0.0176648 0.142073 0)
(0.722305 -0.024977 0)
(0.0351306 0.0376254 0)
(0.00310213 -0.0158153 0)
(0.0460915 -0.02505 0)
(-0.0128206 -0.0410424 0)
(-0.0264305 -0.0448298 0)
(-0.00824843 -0.0274268 0)
(-0.00395864 -0.0266982 0)
(0.016755 -0.0195266 0)
(0.0289001 -0.0169125 0)
(0.0163041 0.0387916 0)
(0.0026541 -0.0640891 0)
(0.00671236 -0.0638245 0)
(0.0117516 -0.0632857 0)
(0.0179595 -0.0621488 0)
(0.02535 -0.060023 0)
(0.0339244 -0.0560191 0)
(0.0425003 -0.0502728 0)
(0.0486188 -0.0473272 0)
(0.0524759 -0.0385229 0)
(0.0571522 -0.019206 0)
(0.0331565 -0.00703905 0)
(0.0305684 -0.0355524 0)
(0.0706735 0.0164401 0)
(0.0600273 0.031181 0)
(0.0739925 0.013606 0)
(0.0863238 0.0384966 0)
(0.0961775 0.106343 0)
(0.0521798 0.151098 0)
(0.21747 0.0745961 0)
(-0.208376 0.0580466 0)
(0.0283482 0.202464 0)
(-0.343217 -0.0183823 0)
(-0.118021 -0.0411546 0)
(0.0433347 -0.0323383 0)
(-0.0173607 -0.045502 0)
(-0.00667604 -0.0279687 0)
(-0.00418123 -0.0280923 0)
(0.017931 -0.0204743 0)
(0.0309331 -0.0190999 0)
(0.01857 0.0426927 0)
(0.00288915 -0.0687126 0)
(0.00695616 -0.0688954 0)
(0.0118487 -0.0690023 0)
(0.0176455 -0.0683782 0)
(0.0245267 -0.066848 0)
(0.033672 -0.0628765 0)
(0.0455565 -0.0544352 0)
(0.0541112 -0.0531011 0)
(0.0555837 -0.0486484 0)
(0.0587275 -0.0117879 0)
(0.0466675 0.00613617 0)
(0.00838526 -0.0440315 0)
(0.0661023 0.00619744 0)
(0.0537504 0.0424492 0)
(0.0704626 0.0039609 0)
(0.073657 0.0387252 0)
(0.087695 0.104291 0)
(0.0748885 0.163671 0)
(0.230298 -0.0235531 0)
(0.12743 -0.0655042 0)
(-0.210461 0.299197 0)
(-0.64756 0.0206528 0)
(-1.05978 -0.110932 0)
(0.0535847 -0.0409602 0)
(0.0142982 -0.0417094 0)
(-0.00457823 -0.0281316 0)
(-0.00452936 -0.0295558 0)
(0.0191718 -0.0214118 0)
(0.0331573 -0.0215658 0)
(0.0219678 0.0469313 0)
(0.00385504 -0.0738479 0)
(0.00854158 -0.0740788 0)
(0.0133937 -0.0742276 0)
(0.0181756 -0.0734933 0)
(0.0228769 -0.0725503 0)
(0.0293799 -0.0700267 0)
(0.0408475 -0.0595572 0)
(0.053527 -0.0570271 0)
(0.0564579 -0.0577758 0)
(0.0641375 -0.0130894 0)
(0.0725675 0.0224305 0)
(0.0415254 -0.0538089 0)
(0.0989537 -0.0130299 0)
(0.0595246 0.053662 0)
(0.0860618 -0.00439589 0)
(0.0914814 0.0414721 0)
(0.0976681 0.0997986 0)
(0.0788457 0.132094 0)
(0.208202 -0.0234137 0)
(-0.0560989 -0.0329865 0)
(-0.416555 0.370024 0)
(-0.485587 0.0383994 0)
(-0.506415 -0.110445 0)
(-0.299484 -0.125824 0)
(0.0955701 -0.0310388 0)
(0.000403303 -0.0267829 0)
(-0.0048282 -0.0310941 0)
(0.0204792 -0.0223309 0)
(0.0356107 -0.0243408 0)
(0.0260998 0.0516056 0)
(0.00509254 -0.0802427 0)
(0.0105509 -0.0798635 0)
(0.0156952 -0.0791243 0)
(0.0201401 -0.07718 0)
(0.0232857 -0.0755269 0)
(0.0260252 -0.0747803 0)
(0.0328394 -0.0649591 0)
(0.0425917 -0.0622529 0)
(0.0503586 -0.0573739 0)
(0.0779184 -0.0319528 0)
(0.0838953 0.0273765 0)
(0.111879 -0.0476967 0)
(0.0998737 -0.0261786 0)
(0.103202 0.0710744 0)
(0.100343 -0.0251179 0)
(0.103744 0.0446058 0)
(0.132498 0.110799 0)
(0.180713 0.0938927 0)
(0.0124107 0.101016 0)
(-0.198048 -0.0283647 0)
(-0.470291 0.378943 0)
(-0.319739 0.0315163 0)
(-0.403886 -0.0815145 0)
(-0.652634 -0.164757 0)
(-0.0115886 -0.0757423 0)
(0.0197006 -0.0208596 0)
(-0.00337916 -0.0326258 0)
(0.02187 -0.0232129 0)
(0.0383162 -0.0274588 0)
(0.0333581 0.0567444 0)
(0.00563107 -0.0872222 0)
(0.0106512 -0.0859587 0)
(0.0153517 -0.0840843 0)
(0.0198355 -0.0807847 0)
(0.0240701 -0.0770437 0)
(0.0268519 -0.0763622 0)
(0.0317417 -0.0704948 0)
(0.0356065 -0.0708882 0)
(0.0467816 -0.0506809 0)
(0.0761913 -0.0614924 0)
(0.0952418 0.0314378 0)
(0.125215 -0.0666843 0)
(0.0956576 -0.0130793 0)
(0.0954436 0.0621924 0)
(0.106851 -0.0279254 0)
(0.178289 0.0435056 0)
(0.0731288 0.141378 0)
(0.217881 0.0714813 0)
(0.284139 0.198696 0)
(-0.286633 0.0706283 0)
(-0.388092 0.339551 0)
(-0.18294 0.0289854 0)
(-0.257479 -0.0535323 0)
(-0.624932 -0.141744 0)
(-0.398675 -0.14538 0)
(0.0756342 -0.0073509 0)
(0.00980217 -0.0336146 0)
(0.0235395 -0.0239513 0)
(0.0407052 -0.03096 0)
(0.0442428 0.0623889 0)
(0.00532077 -0.0925096 0)
(0.00818098 -0.0904599 0)
(0.0109093 -0.0879196 0)
(0.0142162 -0.0845813 0)
(0.0198583 -0.0801995 0)
(0.0269245 -0.0785255 0)
(0.0358592 -0.0817415 0)
(0.0523694 -0.0736429 0)
(0.0765647 -0.0587781 0)
(0.0818765 -0.0739088 0)
(0.0838148 0.0235166 0)
(0.127039 -0.0736282 0)
(0.0808439 0.011903 0)
(0.103027 0.0273181 0)
(0.160657 -0.00929789 0)
(0.113076 0.0341859 0)
(0.117277 0.146361 0)
(0.156814 0.0908304 0)
(0.319247 0.126376 0)
(-0.272839 0.177036 0)
(-0.253827 0.28204 0)
(-0.0783977 0.0278096 0)
(-0.1262 -0.0309962 0)
(-0.408209 -0.0949971 0)
(-0.870284 -0.153474 0)
(0.0530149 -0.0393868 0)
(0.0708047 -0.0321221 0)
(0.0273461 -0.0238925 0)
(0.040555 -0.0348533 0)
(0.0612523 0.0687779 0)
(-0.0885534 0.0386151 0)
(-0.12297 -0.057897 0)
(-0.0880076 -0.0174426 0)
(-0.239024 -0.0540442 0)
(0.717867 -0.177572 0)
(0.328848 -0.105917 0)
(0.202944 -0.0846165 0)
(0.167058 -0.014566 0)
(0.118987 0.109506 0)
(0.073685 0.316763 0)
(0.148226 0.399876 0)
(1.13266 0.0903139 0)
(-0.080155 0.0795066 0)
(-0.11074 0.0753595 0)
(-0.145201 0.00374879 0)
(-0.199982 0.0121192 0)
(-0.0839752 0.073414 0)
(-0.12412 -0.0494738 0)
(-0.126623 -0.0386958 0)
(-0.0295479 -0.0281496 0)
(-0.0662985 -0.0749482 0)
(-0.0651613 -0.0658657 0)
(-0.0448282 -0.0721439 0)
(-0.0443969 -0.0845965 0)
(-0.0303926 -0.0921894 0)
(-0.0164242 -0.097384 0)
(-0.00659182 -0.0994816 0)
(-0.000369137 -0.099454 0)
(0.00286709 -0.0981944 0)
(0.00434595 -0.0964024 0)
(-0.0866295 0.0390725 0)
(-0.136793 -0.0594525 0)
(-0.053858 -0.0141375 0)
(-0.423971 -0.140811 0)
(0.52574 -0.163148 0)
(0.249029 -0.0951522 0)
(0.148384 -0.0808595 0)
(0.103235 -0.0125659 0)
(0.0772877 0.110728 0)
(0.0851136 0.287262 0)
(0.107673 0.513822 0)
(-0.0188566 -0.154743 0)
(0.137007 0.110218 0)
(-0.111402 0.0680815 0)
(-0.141918 0.0101994 0)
(-0.19139 0.0148902 0)
(-0.0947558 0.0665514 0)
(-0.0778096 -0.0482267 0)
(-0.120873 -0.0414991 0)
(-0.0451736 -0.0389757 0)
(-0.0636377 -0.0682578 0)
(-0.0829044 -0.0660299 0)
(-0.0570683 -0.0754572 0)
(-0.0504635 -0.0911379 0)
(-0.0337121 -0.0991181 0)
(-0.0157595 -0.103673 0)
(-0.0041049 -0.104088 0)
(0.00260647 -0.102083 0)
(0.00518067 -0.0992484 0)
(0.00547388 -0.0964993 0)
(-0.0766067 0.0361812 0)
(-0.127976 -0.0601629 0)
(-0.105816 -0.022883 0)
(0.351037 -0.199747 0)
(0.430067 -0.143726 0)
(0.174461 -0.0854772 0)
(0.0968735 -0.0771219 0)
(0.044359 -0.010129 0)
(0.0402707 0.111839 0)
(0.102362 0.258825 0)
(0.0486782 0.632806 0)
(-0.8835 -0.0584425 0)
(-0.0426226 0.117978 0)
(-0.00869475 0.0669334 0)
(-0.082576 0.020784 0)
(-0.120884 0.0181665 0)
(-0.105791 0.0446219 0)
(-0.0315431 -0.0361301 0)
(-0.0981047 -0.0345029 0)
(-0.0556861 -0.0527438 0)
(-0.0610867 -0.0606884 0)
(-0.101666 -0.0692803 0)
(-0.0755289 -0.086015 0)
(-0.0504958 -0.097678 0)
(-0.0337068 -0.108368 0)
(-0.0139869 -0.111071 0)
(-0.00136323 -0.108819 0)
(0.0052147 -0.104436 0)
(0.00729809 -0.10005 0)
(0.00597493 -0.0965081 0)
(-0.0381459 0.0296756 0)
(-0.119361 -0.061539 0)
(-0.2101 -0.0380595 0)
(1.08223 -0.192296 0)
(0.325907 -0.115988 0)
(0.109146 -0.0770786 0)
(0.0510075 -0.0734537 0)
(-0.00584226 -0.00758432 0)
(0.0101734 0.112431 0)
(0.11007 0.233834 0)
(0.065032 0.711824 0)
(-0.6109 -0.0168452 0)
(-0.313112 0.0709499 0)
(0.100102 0.0694986 0)
(-0.0111904 0.0438137 0)
(-0.0293598 0.0172204 0)
(-0.052461 0.0252003 0)
(-0.0565137 -0.0158029 0)
(-0.073373 -0.0393677 0)
(0.0136794 -0.0597233 0)
(-0.0388985 -0.0539704 0)
(-0.0617919 -0.0576505 0)
(-0.0686435 -0.0933158 0)
(-0.0596964 -0.102073 0)
(-0.0475205 -0.115138 0)
(-0.0352763 -0.119556 0)
(-0.0260305 -0.115049 0)
(-0.0233405 -0.106909 0)
(-0.0257251 -0.0990669 0)
(-0.0296194 -0.0935726 0)
(0.122108 0.0194002 0)
(-0.134039 -0.0656319 0)
(-0.034058 -0.0456809 0)
(0.558143 -0.155545 0)
(0.207919 -0.0922805 0)
(0.0553362 -0.0704062 0)
(0.0129948 -0.0696935 0)
(-0.0441643 -0.00501637 0)
(-0.0118531 0.112276 0)
(0.103136 0.22217 0)
(0.733033 0.714789 0)
(-0.259248 0.123405 0)
(-0.677257 0.0483678 0)
(-0.0700291 0.0336496 0)
(-0.0463957 0.0546295 0)
(-0.0367737 0.0257042 0)
(-0.074866 0.0238086 0)
(-0.0425492 -0.0105823 0)
(-0.0292362 -0.0641014 0)
(-0.015493 -0.068855 0)
(0.0248121 -0.0454024 0)
(0.00590829 -0.0526882 0)
(-0.0288287 -0.0860902 0)
(-0.0388899 -0.106974 0)
(-0.0276613 -0.117183 0)
(-0.0325685 -0.121013 0)
(-0.0356724 -0.115207 0)
(-0.0419127 -0.103509 0)
(-0.0506068 -0.0941285 0)
(-0.0580804 -0.0897745 0)
(0.211495 -0.000856136 0)
(-0.122655 -0.0586667 0)
(0.392314 -0.16383 0)
(0.40585 -0.10981 0)
(0.106065 -0.0735655 0)
(0.014027 -0.0656296 0)
(-0.0156849 -0.0659854 0)
(-0.0689642 -0.00268726 0)
(-0.0261798 0.111275 0)
(0.0949891 0.238893 0)
(1.08233 0.534271 0)
(-0.175924 0.293758 0)
(-0.477595 -0.0293388 0)
(-0.496227 -0.0295056 0)
(-0.0368074 0.0484982 0)
(-0.0467778 0.0352731 0)
(-0.0643397 -0.0046381 0)
(0.0425906 -0.0143266 0)
(0.0629825 -0.053775 0)
(0.0747203 -0.0882003 0)
(0.108129 -0.0452216 0)
(0.0894791 -0.0397546 0)
(0.0402366 -0.0687009 0)
(0.00995343 -0.104855 0)
(0.00788418 -0.123138 0)
(-0.00526846 -0.111466 0)
(-0.0242902 -0.107404 0)
(-0.0386562 -0.0951584 0)
(-0.0508773 -0.0854746 0)
(-0.0601036 -0.0837748 0)
(-0.082387 -0.0221602 0)
(-0.0362761 -0.0557054 0)
(1.00388 -0.189264 0)
(0.213356 -0.0759651 0)
(0.0291446 -0.0612726 0)
(-0.0153882 -0.0626391 0)
(-0.0350168 -0.0630253 0)
(-0.0812629 -0.000859786 0)
(-0.0348554 0.109256 0)
(0.0916811 0.253776 0)
(0.618491 0.484297 0)
(-0.27781 0.472823 0)
(-0.526108 -0.0587973 0)
(-0.612489 -0.101641 0)
(-0.223646 -0.0155371 0)
(-0.0170367 0.0371904 0)
(0.11577 -0.0191654 0)
(0.185885 -0.035918 0)
(0.20041 -0.0424042 0)
(0.214426 -0.106201 0)
(0.224474 -0.0411485 0)
(0.186333 -0.0221934 0)
(0.128764 -0.0451625 0)
(0.0867495 -0.0911899 0)
(0.0567925 -0.113612 0)
(0.0345837 -0.0985739 0)
(0.0105685 -0.0926639 0)
(-0.00936841 -0.0830874 0)
(-0.0228323 -0.0744651 0)
(-0.0329133 -0.0766885 0)
(-0.167401 -0.0499658 0)
(0.15861 -0.139796 0)
(0.559934 -0.125622 0)
(0.0686359 -0.0567346 0)
(-0.0200312 -0.0544128 0)
(-0.0345502 -0.0605642 0)
(-0.0464058 -0.0606767 0)
(-0.0845458 0.000445005 0)
(-0.0408356 0.10623 0)
(0.077546 0.24729 0)
(0.325922 0.437385 0)
(-0.228881 0.742225 0)
(-0.552954 -0.0484782 0)
(-0.533453 -0.145449 0)
(-0.20407 -0.0970533 0)
(0.105162 -0.0247689 0)
(0.220547 -0.0364516 0)
(0.287748 -0.0540729 0)
(0.351026 -0.0536272 0)
(0.394877 -0.12041 0)
(0.369921 -0.0128616 0)
(0.319143 0.00933119 0)
(0.261007 -0.0215421 0)
(0.209181 -0.0679428 0)
(0.156508 -0.0871062 0)
(0.111275 -0.0772531 0)
(0.0740806 -0.0684428 0)
(0.0427039 -0.0672273 0)
(0.0266901 -0.0618054 0)
(0.0193543 -0.0696493 0)
(-0.217305 -0.105103 0)
(-0.0356844 -0.133462 0)
(0.264207 -0.146367 0)
(-0.00446306 -0.046572 0)
(-0.0469216 -0.0510858 0)
(-0.0458288 -0.0589846 0)
(-0.0523422 -0.0588062 0)
(-0.0835552 0.00142493 0)
(-0.0468903 0.102386 0)
(0.0580976 0.231559 0)
(0.306251 0.392275 0)
(-0.0413483 0.790905 0)
(-0.239374 -0.0142272 0)
(-0.373793 -0.140028 0)
(-0.160506 -0.192651 0)
(0.181365 -0.0982086 0)
(0.29771 -0.0592793 0)
(0.346455 -0.0754808 0)
(0.399529 -0.0760884 0)
(0.402996 -0.0988696 0)
(0.377956 -0.0293148 0)
(0.400663 0.013256 0)
(0.46898 -0.00407514 0)
(0.370928 -0.0205849 0)
(0.281746 -0.0420763 0)
(0.215903 -0.0434192 0)
(0.176508 -0.0334562 0)
(0.134188 -0.0337362 0)
(0.101553 -0.0532932 0)
(0.0934035 -0.0657913 0)
(-0.131701 -0.100893 0)
(-0.0449264 -0.138597 0)
(0.120015 -0.157256 0)
(-0.0408161 -0.0403362 0)
(-0.0588004 -0.0502192 0)
(-0.0518918 -0.057794 0)
(-0.0554821 -0.0572171 0)
(-0.0826264 0.00239878 0)
(-0.0549342 0.097989 0)
(0.0342328 0.209633 0)
(0.258935 0.352805 0)
(0.0874635 0.786256 0)
(-0.086445 0.0333548 0)
(-0.0988304 -0.122425 0)
(-0.104997 -0.267336 0)
(0.170619 -0.172863 0)
(0.305736 -0.0800273 0)
(0.355934 -0.0999616 0)
(0.410724 -0.0898006 0)
(0.426802 -0.0824035 0)
(0.418175 -0.0379615 0)
(0.419338 0.00208306 0)
(0.448855 -0.0650277 0)
(0.53658 0.0638801 0)
(0.441646 0.0319413 0)
(0.368845 0.00173136 0)
(0.307752 0.00955158 0)
(0.259768 0.0102771 0)
(0.21618 -0.0174671 0)
(0.187409 -0.0467506 0)
(-0.11448 -0.081744 0)
(0.00187205 -0.152002 0)
(0.13252 -0.160813 0)
(-0.056107 -0.0389288 0)
(-0.0617746 -0.0503953 0)
(-0.0551099 -0.0568482 0)
(-0.0578575 -0.0556494 0)
(-0.084775 0.00375133 0)
(-0.0656452 0.0934768 0)
(0.00215858 0.183031 0)
(0.0578051 0.304071 0)
(0.116519 0.76668 0)
(0.0994483 0.0961463 0)
(-0.0784285 -0.115981 0)
(0.00808046 -0.317098 0)
(0.0745947 -0.244647 0)
(0.234638 -0.110004 0)
(0.309045 -0.126054 0)
(0.364222 -0.109124 0)
(0.40632 -0.0888333 0)
(0.435438 -0.0469579 0)
(0.474856 -0.0108057 0)
(0.471122 -0.0422568 0)
(0.425417 0.0219286 0)
(0.484561 0.0648938 0)
(0.478951 0.0587692 0)
(0.428263 0.0685216 0)
(0.368377 0.0696905 0)
(0.320296 0.0386866 0)
(0.270098 -0.00222934 0)
(-0.0550435 -0.0577554 0)
(0.0507434 -0.166997 0)
(0.092908 -0.153024 0)
(-0.0570147 -0.0405272 0)
(-0.0606211 -0.0508171 0)
(-0.057101 -0.0560468 0)
(-0.0605927 -0.0538121 0)
(-0.092678 0.00602315 0)
(-0.0804239 0.0897821 0)
(-0.0402308 0.154836 0)
(-0.101635 0.240945 0)
(0.223745 0.725986 0)
(0.326421 0.151587 0)
(0.253353 -0.117158 0)
(0.104611 -0.270751 0)
(-0.0822159 -0.272923 0)
(0.124103 -0.172195 0)
(0.282404 -0.159857 0)
(0.350771 -0.13579 0)
(0.390452 -0.109269 0)
(0.419854 -0.0698293 0)
(0.446423 -0.0393721 0)
(0.450113 -0.000972093 0)
(0.446392 0.0284934 0)
(0.464908 0.0112795 0)
(0.483831 0.0685132 0)
(0.472915 0.117595 0)
(0.431505 0.13822 0)
(0.378132 0.107858 0)
(0.328557 0.0689368 0)
(0.0151782 -0.0362445 0)
(0.0958656 -0.177517 0)
(0.0158579 -0.141776 0)
(-0.0512954 -0.0434865 0)
(-0.0586637 -0.0510736 0)
(-0.0587448 -0.0552884 0)
(-0.0641354 -0.0515004 0)
(-0.099163 0.0121534 0)
(-0.120658 0.0880483 0)
(-0.091372 0.120073 0)
(-0.0867431 0.144017 0)
(0.471303 0.719655 0)
(0.513905 0.194289 0)
(0.355804 -0.0963416 0)
(0.176194 -0.224183 0)
(0.286543 -0.284919 0)
(0.253096 -0.234271 0)
(0.298806 -0.189679 0)
(0.336841 -0.156821 0)
(0.365115 -0.124984 0)
(0.384363 -0.0795833 0)
(0.381143 -0.0339893 0)
(0.371686 -0.0149149 0)
(0.38673 0.00215459 0)
(0.376727 0.0169744 0)
(0.400124 0.0455729 0)
(0.417854 0.129358 0)
(0.395238 0.198984 0)
(0.351524 0.190918 0)
(0.298926 0.146838 0)
(0.0864204 -0.0204669 0)
(0.112169 -0.182826 0)
(0.0294475 -0.125598 0)
(-0.0464339 -0.0464834 0)
(-0.0575733 -0.050938 0)
(-0.0604429 -0.0544183 0)
(-0.0688833 -0.0486964 0)
(-0.0976618 0.0191477 0)
(-0.158101 0.0896386 0)
(-0.103435 0.0827633 0)
(0.00619281 0.034347 0)
(0.575206 0.738197 0)
(0.573163 0.220535 0)
(0.359463 -0.0514427 0)
(0.290432 -0.228348 0)
(0.290787 -0.271905 0)
(0.277011 -0.236609 0)
(0.291873 -0.202024 0)
(0.309454 -0.171344 0)
(0.326987 -0.13768 0)
(0.345317 -0.0891299 0)
(0.357543 -0.0273779 0)
(0.354743 -0.00766516 0)
(0.343749 0.0223037 0)
(0.31633 0.0157582 0)
(0.338755 0.00750896 0)
(0.355556 0.141144 0)
(0.327447 0.233187 0)
(0.299874 0.252438 0)
(0.26965 0.217472 0)
(0.15361 -0.0108442 0)
(0.140147 -0.184097 0)
(0.0523306 -0.102209 0)
(-0.0476854 -0.0480893 0)
(-0.0576467 -0.0502391 0)
(-0.0623236 -0.0532184 0)
(-0.0759611 -0.0450416 0)
(-0.111118 0.0284969 0)
(-0.183969 0.0921059 0)
(-0.125365 0.0553842 0)
(0.0108714 -0.0101648 0)
(0.512929 0.708423 0)
(0.526808 0.217412 0)
(0.392822 0.0233622 0)
(0.269846 -0.20509 0)
(0.291713 -0.25173 0)
(0.267496 -0.233118 0)
(0.267448 -0.20744 0)
(0.275455 -0.179354 0)
(0.284809 -0.146465 0)
(0.300161 -0.105428 0)
(0.328951 -0.0442149 0)
(0.356191 -0.0167142 0)
(0.379249 0.0117159 0)
(0.417499 0.0308135 0)
(0.340163 0.0128319 0)
(0.269989 0.187608 0)
(0.263107 0.274405 0)
(0.258279 0.28382 0)
(0.251985 0.251032 0)
(0.203568 -0.00819779 0)
(0.108232 -0.174872 0)
(-0.010468 -0.0825426 0)
(-0.0549886 -0.047888 0)
(-0.0585104 -0.0488657 0)
(-0.064313 -0.0514886 0)
(-0.0823654 -0.0387633 0)
(-0.1275 0.0408037 0)
(-0.206561 0.0982261 0)
(-0.158882 0.0332553 0)
(-0.00878957 -0.00796847 0)
(0.433488 0.570278 0)
(0.506512 0.210365 0)
(0.352913 0.0941607 0)
(0.321734 -0.220164 0)
(0.280746 -0.238433 0)
(0.253257 -0.225731 0)
(0.244575 -0.206763 0)
(0.242937 -0.181839 0)
(0.248488 -0.154056 0)
(0.259149 -0.122513 0)
(0.282804 -0.0742026 0)
(0.305606 -0.0426936 0)
(0.315127 -0.00910094 0)
(0.319258 0.0452159 0)
(0.286476 0.137674 0)
(0.246003 0.226533 0)
(0.232092 0.278117 0)
(0.228566 0.286453 0)
(0.224218 0.265586 0)
(0.222866 -0.010621 0)
(0.0994572 -0.157082 0)
(-0.062747 -0.0740463 0)
(-0.0639083 -0.0454545 0)
(-0.0596886 -0.0468041 0)
(-0.0664045 -0.0491439 0)
(-0.0831726 -0.0319325 0)
(-0.146092 0.0532036 0)
(-0.230802 0.110058 0)
(-0.195837 0.0132958 0)
(-0.0726317 -0.0323378 0)
(0.192249 0.285445 0)
(0.39669 0.296606 0)
(0.327763 0.0864777 0)
(0.328537 -0.192945 0)
(0.266504 -0.216298 0)
(0.242204 -0.216193 0)
(0.234008 -0.20311 0)
(0.231451 -0.181805 0)
(0.230194 -0.15727 0)
(0.229918 -0.130268 0)
(0.236251 -0.0924902 0)
(0.243043 -0.0481396 0)
(0.234769 -0.00263016 0)
(0.212126 0.0669697 0)
(0.199538 0.170345 0)
(0.193178 0.249382 0)
(0.189923 0.286031 0)
(0.190329 0.290101 0)
(0.191815 0.279055 0)
(0.207587 -0.0129895 0)
(0.12117 -0.139505 0)
(-0.0785557 -0.065036 0)
(-0.0722156 -0.0407778 0)
(-0.0607686 -0.0441587 0)
(-0.0686073 -0.0458187 0)
(-0.0944451 -0.0251958 0)
(-0.166242 0.073883 0)
(-0.254706 0.123648 0)
(-0.235832 -0.00301628 0)
(-0.153366 -0.0658882 0)
(-0.144737 0.0218172 0)
(0.141882 0.402364 0)
(0.319131 0.026999 0)
(0.289297 -0.15646 0)
(0.248639 -0.198374 0)
(0.23454 -0.20918 0)
(0.231114 -0.200902 0)
(0.228412 -0.179459 0)
(0.220743 -0.152444 0)
(0.208862 -0.125587 0)
(0.198602 -0.092081 0)
(0.189642 -0.0413491 0)
(0.172738 0.0222774 0)
(0.148516 0.101196 0)
(0.132461 0.183209 0)
(0.12626 0.257969 0)
(0.121997 0.287525 0)
(0.12108 0.27998 0)
(0.123885 0.256286 0)
(0.174259 -0.0114962 0)
(0.139028 -0.123722 0)
(-0.117362 -0.0580858 0)
(-0.0798116 -0.0353261 0)
(-0.0613334 -0.0411415 0)
(-0.0702464 -0.0411095 0)
(-0.103562 -0.0152998 0)
(-0.20186 0.112644 0)
(-0.278501 0.124706 0)
(-0.275486 -0.0190601 0)
(-0.183432 -0.0916597 0)
(-0.20042 -0.0518685 0)
(0.0130345 0.302191 0)
(0.239026 -0.00629476 0)
(0.2395 -0.136653 0)
(0.227245 -0.18948 0)
(0.226209 -0.207283 0)
(0.228335 -0.199986 0)
(0.222775 -0.172837 0)
(0.205865 -0.138181 0)
(0.182187 -0.107213 0)
(0.158794 -0.0747264 0)
(0.139928 -0.0205785 0)
(0.123859 0.0522076 0)
(0.104678 0.131808 0)
(0.0871459 0.204993 0)
(0.0745811 0.269078 0)
(0.0670418 0.2991 0)
(0.0573525 0.297462 0)
(0.0512631 0.280316 0)
(0.139497 -0.0042719 0)
(0.191751 -0.115999 0)
(-0.164602 -0.046702 0)
(-0.0857577 -0.0303701 0)
(-0.0608917 -0.0380494 0)
(-0.0704236 -0.0350871 0)
(-0.111109 -0.000682178 0)
(-0.177396 0.152854 0)
(-0.287079 0.133256 0)
(-0.253358 -0.0542186 0)
(-0.18563 -0.112352 0)
(-0.161433 -0.0646742 0)
(0.0025424 0.115712 0)
(0.160754 -0.0379587 0)
(0.190631 -0.13707 0)
(0.201603 -0.192119 0)
(0.215427 -0.212825 0)
(0.223615 -0.199448 0)
(0.211585 -0.156936 0)
(0.180084 -0.109006 0)
(0.140984 -0.0716259 0)
(0.102755 -0.0411288 0)
(0.0745978 0.00481591 0)
(0.0560999 0.0766884 0)
(0.0435784 0.155336 0)
(0.0365711 0.229354 0)
(0.0350395 0.284307 0)
(0.0404857 0.31244 0)
(0.0514959 0.301214 0)
(0.0629894 0.229024 0)
(0.113081 -0.00127485 0)
(0.224301 -0.0911323 0)
(-0.232466 -0.042453 0)
(-0.088454 -0.0268437 0)
(-0.0588804 -0.0352224 0)
(-0.068163 -0.0285727 0)
(-0.10236 0.0150889 0)
(-0.13905 0.175287 0)
(-0.216454 0.148909 0)
(-0.166853 -0.0776586 0)
(-0.142491 -0.137168 0)
(-0.108531 -0.084225 0)
(-0.000173899 0.000344274 0)
(0.103946 -0.0750672 0)
(0.143958 -0.152063 0)
(0.171124 -0.207764 0)
(0.198856 -0.227705 0)
(0.2089 -0.197136 0)
(0.184028 -0.125486 0)
(0.136337 -0.0601116 0)
(0.0838883 -0.0143794 0)
(0.0325245 0.015174 0)
(-0.00962852 0.0485664 0)
(-0.0431375 0.115407 0)
(-0.0659445 0.17848 0)
(-0.0782791 0.236264 0)
(-0.0818182 0.276162 0)
(-0.077867 0.289861 0)
(-0.0713382 0.27594 0)
(-0.0749533 0.253648 0)
(0.0908448 0.00133378 0)
(0.311043 -0.0677154 0)
(-0.318321 -0.0372949 0)
(-0.0835499 -0.0275511 0)
(-0.0547651 -0.0329496 0)
(-0.0639604 -0.022459 0)
(-0.0819466 0.0249833 0)
(-0.0891018 0.182401 0)
(-0.134293 0.157497 0)
(-0.128743 -0.0901248 0)
(-0.0842557 -0.160567 0)
(-0.063545 -0.108471 0)
(-0.000547542 -0.0657972 0)
(0.0613701 -0.108827 0)
(0.0966971 -0.174741 0)
(0.129723 -0.235522 0)
(0.160297 -0.248812 0)
(0.158019 -0.182817 0)
(0.119183 -0.076519 0)
(0.0666775 0.00324778 0)
(0.0171119 0.0544056 0)
(-0.0265302 0.0858778 0)
(-0.0652133 0.116463 0)
(-0.091882 0.163574 0)
(-0.10778 0.212327 0)
(-0.115901 0.24478 0)
(-0.125284 0.260756 0)
(-0.147242 0.279592 0)
(-0.180413 0.298318 0)
(-0.213873 0.323094 0)
(0.0636331 -7.23947e-05 0)
(0.293669 -0.0537665 0)
(-0.359484 -0.0751907 0)
(-0.0633958 -0.035696 0)
(-0.0483227 -0.0311957 0)
(-0.0582578 -0.0166236 0)
(-0.0775181 0.0250308 0)
(-0.04402 0.170282 0)
(-0.00444858 0.171341 0)
(-0.0212898 -0.0837323 0)
(-0.0235395 -0.169904 0)
(-0.0282889 -0.121952 0)
(-0.00345857 -0.0991476 0)
(0.0242299 -0.131508 0)
(0.0412944 -0.194595 0)
(0.0553129 -0.261481 0)
(0.0516213 -0.258861 0)
(0.0254477 -0.150695 0)
(-0.00338996 -0.0222421 0)
(-0.0426337 0.0630367 0)
(-0.0785393 0.107062 0)
(-0.103029 0.132236 0)
(-0.117746 0.152501 0)
(-0.141734 0.189948 0)
(-0.197382 0.275709 0)
(-0.268969 0.357633 0)
(-0.329377 0.40736 0)
(-0.363024 0.418463 0)
(-0.382758 0.407156 0)
(-0.386319 0.387277 0)
(0.0334262 -0.00254066 0)
(-0.113702 -0.0441334 0)
(0.100448 -0.0859985 0)
(-0.0339844 -0.0433154 0)
(-0.0402344 -0.0294179 0)
(-0.050716 -0.0111389 0)
(-0.065781 0.0260782 0)
(-0.0254756 0.140862 0)
(0.0597487 0.167635 0)
(0.0935592 -0.0818292 0)
(0.0332617 -0.148846 0)
(-0.00456751 -0.117704 0)
(-0.00974982 -0.108664 0)
(-0.0115608 -0.136099 0)
(-0.0262398 -0.190577 0)
(-0.0711088 -0.232282 0)
(-0.166463 -0.203054 0)
(-0.209654 -0.120367 0)
(-0.156483 -0.0142832 0)
(-0.142414 0.0878863 0)
(-0.144662 0.121326 0)
(-0.177556 0.155228 0)
(-0.275051 0.281545 0)
(-0.374553 0.368526 0)
(-0.432293 0.443561 0)
(-0.452179 0.462165 0)
(-0.454279 0.45262 0)
(-0.445381 0.423456 0)
(-0.431927 0.384535 0)
(-0.418067 0.348191 0)
(0.0142677 -0.00424806 0)
(-0.123433 -0.0428574 0)
(0.117941 -0.0745052 0)
(-0.0149447 -0.0434973 0)
(-0.0318034 -0.0270882 0)
(-0.0419425 -0.00678868 0)
(-0.0494371 0.0262709 0)
(-0.0153896 0.0973237 0)
(0.106576 0.122685 0)
(0.1339 -0.0579446 0)
(0.0526967 -0.110577 0)
(0.00468306 -0.100107 0)
(-0.0177999 -0.0999837 0)
(-0.0413858 -0.118886 0)
(-0.0814894 -0.150297 0)
(-0.147122 -0.131452 0)
(-0.284433 -0.0850195 0)
(-0.34818 -0.204626 0)
(-0.291647 -0.0623309 0)
(-0.303696 0.118092 0)
(-0.409387 0.230286 0)
(-0.488965 0.290559 0)
(-0.43601 0.452926 0)
(-0.50653 0.42848 0)
(-0.452029 0.432893 0)
(-0.419746 0.424412 0)
(-0.395705 0.401753 0)
(-0.377362 0.361448 0)
(-0.36087 0.320747 0)
(-0.346053 0.281834 0)
(0.00449422 -0.00597193 0)
(-0.0895947 -0.0419671 0)
(0.0859122 -0.0522747 0)
(-0.00451293 -0.039735 0)
(-0.0239714 -0.0241081 0)
(-0.0328668 -0.00389761 0)
(-0.0343485 0.0237811 0)
(-0.00828724 0.0628116 0)
(0.0730239 0.0703209 0)
(0.100586 -0.0297354 0)
(0.0447385 -0.0727149 0)
(0.00489196 -0.077158 0)
(-0.0236335 -0.0791014 0)
(-0.0584422 -0.0835791 0)
(-0.121016 -0.0838946 0)
(-0.227289 -0.0373033 0)
(-0.237602 9.74435e-05 0)
(-0.202003 -0.151277 0)
(-0.269816 -0.0318149 0)
(-0.337626 0.175176 0)
(-0.329155 0.395824 0)
(-0.281312 0.266095 0)
(-0.238285 0.224274 0)
(-0.11397 0.359864 0)
(-0.118301 0.362561 0)
(-0.157945 0.453391 0)
(-0.18862 0.396204 0)
(-0.180705 0.325019 0)
(-0.172532 0.281927 0)
(-0.166992 0.241729 0)
(-3.98835e-05 -0.00734997 0)
(-0.0610786 -0.0363873 0)
(0.0579249 -0.0393272 0)
(0.000488637 -0.0344613 0)
(-0.0172166 -0.0207462 0)
(-0.0242284 -0.00234171 0)
(-0.0223498 0.0194592 0)
(-0.00226311 0.0405223 0)
(0.0403609 0.0367637 0)
(0.0575667 -0.0139559 0)
(0.0303606 -0.0457902 0)
(0.0019738 -0.0545795 0)
(-0.0235001 -0.0549322 0)
(-0.0499544 -0.0488538 0)
(-0.0736294 -0.0296526 0)
(-0.0787568 0.0108169 0)
(-0.0767188 0.00188293 0)
(-0.132416 -0.111207 0)
(-0.214171 0.0493843 0)
(-0.202756 0.217541 0)
(-0.159249 0.233751 0)
(-0.149483 0.110695 0)
(-0.162724 0.308063 0)
(-0.167642 0.246281 0)
(-0.146051 0.445203 0)
(-0.119085 0.417234 0)
(-0.0872737 0.322292 0)
(-0.0559377 0.237965 0)
(-0.0334023 0.220244 0)
(-0.0168015 0.20116 0)
(-0.00173723 -0.00829264 0)
(-0.0383433 -0.0305468 0)
(0.0356445 -0.0312826 0)
(0.00218381 -0.0292072 0)
(-0.0115368 -0.0175793 0)
(-0.0165039 -0.00175992 0)
(-0.0135135 0.0147153 0)
(0.000934572 0.02599 0)
(0.0233867 0.0195235 0)
(0.0316192 -0.00783972 0)
(0.0180616 -0.0284109 0)
(-0.000821637 -0.0355595 0)
(-0.0198338 -0.0341112 0)
(-0.0383467 -0.0261469 0)
(-0.0544203 -0.0125454 0)
(-0.0657198 0.00339014 0)
(-0.0769611 0.00904151 0)
(-0.104737 0.012533 0)
(-0.130887 0.0606317 0)
(-0.117059 0.143186 0)
(-0.0907995 0.183787 0)
(-0.0765254 0.188489 0)
(-0.069531 0.222269 0)
(-0.0558864 0.248994 0)
(-0.0216159 0.285457 0)
(0.0254391 0.283588 0)
(0.0553566 0.23299 0)
(0.0657188 0.173773 0)
(0.0692711 0.149222 0)
(0.0805889 0.141332 0)
(-0.00194176 -0.00885453 0)
(-0.0212173 -0.0261266 0)
(0.0191962 -0.0262679 0)
(0.00205422 -0.0250405 0)
(-0.00679828 -0.0151241 0)
(-0.00987975 -0.00172597 0)
(-0.00732402 0.0106752 0)
(0.00157833 0.0168006 0)
(0.0128041 0.0108347 0)
(0.0162417 -0.00492051 0)
(0.00919154 -0.0173833 0)
(-0.00209871 -0.0215026 0)
(-0.0143141 -0.0184247 0)
(-0.0263487 -0.0098779 0)
(-0.0375903 0.00253915 0)
(-0.0479156 0.016416 0)
(-0.0581956 0.0305943 0)
(-0.0690444 0.0478611 0)
(-0.0761768 0.0726272 0)
(-0.0714196 0.103989 0)
(-0.0536912 0.132817 0)
(-0.0343938 0.148388 0)
(-0.0152468 0.163119 0)
(0.00703472 0.171304 0)
(0.0304756 0.170283 0)
(0.0530192 0.161589 0)
(0.0717966 0.14733 0)
(0.0851888 0.12949 0)
(0.0937409 0.112158 0)
(0.0997088 0.0967868 0)
(-0.00116351 -0.00917672 0)
(-0.0079766 -0.0234936 0)
(0.00704066 -0.0235051 0)
(0.0010135 -0.0224339 0)
(-0.002754 -0.0135949 0)
(-0.00412609 -0.00182463 0)
(-0.0029203 0.00810358 0)
(0.000818872 0.0118946 0)
(0.00503689 0.00687134 0)
(0.00611064 -0.00338544 0)
(0.00326537 -0.0112844 0)
(-0.00150956 -0.0130433 0)
(-0.00704537 -0.00863972 0)
(-0.0130686 0.000364131 0)
(-0.0196953 0.0138528 0)
(-0.0264822 0.0285404 0)
(-0.0327079 0.0433156 0)
(-0.0374364 0.0582436 0)
(-0.0393186 0.0732544 0)
(-0.0371153 0.0874489 0)
(-0.0305419 0.0993642 0)
(-0.0208654 0.107699 0)
(-0.00964194 0.11223 0)
(0.00216382 0.11295 0)
(0.0135164 0.110071 0)
(0.023573 0.104465 0)
(0.0319644 0.0971183 0)
(0.0386004 0.0888632 0)
(0.0436247 0.0803803 0)
(0.0473064 0.072098 0)
(0.00500436 -0.0944099 0)
(0.00547179 -0.0921085 0)
(0.00653484 -0.0898552 0)
(0.00926372 -0.0876832 0)
(0.0151893 -0.0853891 0)
(0.024437 -0.0845658 0)
(0.0382365 -0.0918746 0)
(0.0561137 -0.0705353 0)
(0.0916948 -0.0735579 0)
(0.0693507 -0.0662092 0)
(0.0646616 0.00115827 0)
(0.105963 -0.0633245 0)
(0.0740086 0.0101435 0)
(0.142975 -0.00135468 0)
(0.163559 0.0135318 0)
(0.0469328 0.0439265 0)
(0.138422 0.126365 0)
(0.0715916 0.085583 0)
(0.773129 0.295435 0)
(-0.204996 0.248015 0)
(-0.140992 0.236871 0)
(-0.019059 0.0253882 0)
(-0.0387379 -0.018617 0)
(-0.209203 -0.0679453 0)
(-0.551638 -0.143373 0)
(-0.715542 -0.0911485 0)
(0.163604 -0.0272609 0)
(0.0414258 -0.0214626 0)
(0.0472922 -0.0383488 0)
(0.0632494 0.0736111 0)
(0.00477582 -0.0941062 0)
(0.00400198 -0.0920207 0)
(0.00429371 -0.0906063 0)
(0.00716596 -0.0898768 0)
(0.0138184 -0.0896436 0)
(0.0261799 -0.0901104 0)
(0.0368732 -0.0924626 0)
(0.0681213 -0.0826216 0)
(0.0991125 -0.0740948 0)
(0.067137 -0.0567699 0)
(0.0859148 -0.0164544 0)
(0.0946572 -0.0495953 0)
(0.0717158 -0.00467771 0)
(0.140781 -0.00424323 0)
(0.127571 0.0189511 0)
(0.0669077 0.0573332 0)
(0.107114 0.10846 0)
(-0.0405495 0.134357 0)
(0.78743 0.30851 0)
(-0.157947 0.272403 0)
(-0.0812423 0.214129 0)
(0.00287188 0.0237545 0)
(-0.0013161 -0.0137711 0)
(-0.119641 -0.0569839 0)
(-0.409357 -0.11166 0)
(-1.44718 -0.111959 0)
(0.0581761 -0.0442457 0)
(0.0620198 -0.018621 0)
(0.0666053 -0.0399466 0)
(0.158899 0.0716883 0)
(0.00326095 -0.0938383 0)
(0.00111423 -0.0922267 0)
(0.000625539 -0.0916867 0)
(0.00381352 -0.0928884 0)
(0.0109484 -0.0954668 0)
(0.0246169 -0.0968591 0)
(0.0287735 -0.093007 0)
(0.0807036 -0.102965 0)
(0.105665 -0.075739 0)
(0.0612964 -0.052768 0)
(0.0940507 -0.0294203 0)
(0.0763863 -0.0343018 0)
(0.0406562 -0.0203822 0)
(0.0883208 0.00494655 0)
(0.0615119 0.0155748 0)
(0.0638287 0.0672776 0)
(-0.0780704 0.108368 0)
(0.0514807 0.0613284 0)
(0.432739 0.308701 0)
(-0.109766 0.285453 0)
(-0.0246839 0.195252 0)
(0.0159799 0.0215507 0)
(0.0283307 -0.010617 0)
(-0.0464242 -0.0486148 0)
(-0.245126 -0.0851313 0)
(-0.948342 -0.0828658 0)
(-0.41161 -0.0952358 0)
(0.0985721 -0.0142918 0)
(0.094674 -0.0404445 0)
(0.261715 0.0645447 0)
(-0.0325674 -0.0908761 0)
(-0.0335122 -0.0907092 0)
(-0.0321367 -0.0923004 0)
(-0.0292876 -0.0954166 0)
(-0.0257381 -0.0985941 0)
(-0.0217536 -0.0991824 0)
(-0.0078272 -0.102771 0)
(0.0137459 -0.121139 0)
(0.0471378 -0.072017 0)
(0.0619405 -0.0316824 0)
(0.0417912 -0.0367335 0)
(0.0699568 -0.0264369 0)
(0.0585444 -0.0205472 0)
(0.111711 0.00519425 0)
(0.0371109 0.0246889 0)
(0.0244501 0.0704777 0)
(-0.00826396 0.0840439 0)
(1.30031 0.117842 0)
(0.367232 0.307808 0)
(-0.0613308 0.29401 0)
(0.0217074 0.179255 0)
(0.0364295 0.0183839 0)
(0.0501349 -0.00901086 0)
(0.00810485 -0.0426159 0)
(-0.118907 -0.0665576 0)
(-0.577085 -0.0667497 0)
(-1.49161 -0.166309 0)
(0.149304 -0.0196288 0)
(0.117399 -0.0353867 0)
(0.375928 0.0501644 0)
(-0.0620562 -0.0896721 0)
(-0.0621104 -0.091835 0)
(-0.0588111 -0.0944859 0)
(-0.054394 -0.0970771 0)
(-0.050614 -0.0996332 0)
(-0.0471534 -0.102312 0)
(-0.0339182 -0.111565 0)
(-0.0190741 -0.126913 0)
(0.0207512 -0.0935831 0)
(0.0938906 -0.0463089 0)
(0.114694 -0.0294296 0)
(0.0886482 -0.0367397 0)
(0.0914472 -0.023647 0)
(0.147675 0.00257354 0)
(0.069177 0.0416537 0)
(0.0309139 0.0624388 0)
(0.337828 0.0628198 0)
(0.59596 0.217244 0)
(0.413239 0.31691 0)
(-0.00748775 0.307403 0)
(0.0495787 0.162921 0)
(0.0507645 0.014182 0)
(0.064876 -0.0084349 0)
(0.0451253 -0.0385066 0)
(-0.0330384 -0.054599 0)
(-0.306207 -0.0495912 0)
(-0.511601 -0.170684 0)
(-0.19942 -0.0580394 0)
(0.148737 -0.0178659 0)
(0.56591 0.0196258 0)
(-0.0645576 -0.0878382 0)
(-0.0646256 -0.0935201 0)
(-0.0613685 -0.0978708 0)
(-0.0567829 -0.100164 0)
(-0.051946 -0.101944 0)
(-0.0462879 -0.105945 0)
(-0.0353309 -0.119102 0)
(-0.0178487 -0.136762 0)
(0.0285439 -0.119231 0)
(0.110835 -0.0726959 0)
(0.161877 -0.0340622 0)
(0.18927 -0.0389082 0)
(0.185071 -0.0219509 0)
(0.156085 0.00186286 0)
(0.161335 0.0616258 0)
(0.192736 0.0196658 0)
(0.57087 0.0219878 0)
(0.510987 0.191961 0)
(0.447657 0.334709 0)
(0.0257013 0.324178 0)
(0.057379 0.14609 0)
(0.0573885 0.00777547 0)
(0.0738068 -0.00850183 0)
(0.0674801 -0.0357747 0)
(0.0198128 -0.0473765 0)
(-0.123304 -0.0417243 0)
(-0.301874 -0.12027 0)
(-1.19208 -0.133277 0)
(0.246419 -0.00753925 0)
(0.51241 -0.0182488 0)
(-0.0376575 -0.0853501 0)
(-0.0393196 -0.0942152 0)
(-0.0397792 -0.100031 0)
(-0.0394684 -0.102991 0)
(-0.0348147 -0.105743 0)
(-0.0268034 -0.110477 0)
(-0.0162129 -0.127049 0)
(0.00496087 -0.150859 0)
(0.0554617 -0.145832 0)
(0.124853 -0.100696 0)
(0.171915 -0.0496849 0)
(0.219177 -0.0492243 0)
(0.222842 -0.0124792 0)
(0.189958 0.00425219 0)
(0.272837 0.0506147 0)
(0.516583 -0.020594 0)
(0.634487 0.0189915 0)
(0.545617 0.184422 0)
(0.33832 0.41766 0)
(-0.0347369 0.292944 0)
(0.028174 0.122992 0)
(0.059915 -0.000757605 0)
(0.0782787 -0.00896038 0)
(0.0790022 -0.0340047 0)
(0.0492398 -0.0432609 0)
(-0.0181596 -0.0387133 0)
(-0.0972036 -0.0870026 0)
(-0.528463 -0.107543 0)
(0.274727 -0.0468916 0)
(0.347256 -0.0257353 0)
(0.0161605 -0.0820393 0)
(0.0132337 -0.0916254 0)
(0.00598751 -0.0959336 0)
(-0.00740924 -0.100994 0)
(-0.00911258 -0.111179 0)
(0.00322236 -0.116624 0)
(0.012127 -0.134223 0)
(0.0302478 -0.168422 0)
(0.0939855 -0.180615 0)
(0.135891 -0.116553 0)
(0.152264 -0.066082 0)
(0.200426 -0.0648369 0)
(0.205402 -0.00635631 0)
(0.183068 0.00516446 0)
(0.314055 0.023407 0)
(0.570944 -0.0609661 0)
(0.633235 0.0201805 0)
(0.599822 0.196836 0)
(0.433769 0.545381 0)
(0.0616264 0.263487 0)
(0.0608754 0.101714 0)
(0.0591421 -0.0097415 0)
(0.0794637 -0.00973682 0)
(0.083516 -0.0328554 0)
(0.0635589 -0.0410347 0)
(0.0321981 -0.0381454 0)
(-0.00403077 -0.0729416 0)
(-0.082896 -0.110945 0)
(0.144076 -0.068811 0)
(0.235233 -0.0269565 0)
(0.088726 -0.0795846 0)
(0.0866352 -0.0870992 0)
(0.0772091 -0.0791581 0)
(0.0392117 -0.0813546 0)
(0.0153097 -0.115025 0)
(0.0322835 -0.125932 0)
(0.0391367 -0.137832 0)
(0.0440358 -0.183408 0)
(0.0692665 -0.210746 0)
(0.096285 -0.122101 0)
(0.111017 -0.0785178 0)
(0.121114 -0.0767075 0)
(0.146504 -0.00300899 0)
(0.110632 0.0107247 0)
(0.269806 -0.0106732 0)
(0.509657 -0.108565 0)
(0.570299 0.00804515 0)
(0.579639 0.224161 0)
(0.306419 0.61756 0)
(-0.0499393 0.261991 0)
(0.0866231 0.080216 0)
(0.0511769 -0.0171501 0)
(0.0780946 -0.0111186 0)
(0.0841225 -0.0320677 0)
(0.0690512 -0.0397217 0)
(0.0511352 -0.0389385 0)
(0.0239459 -0.0689682 0)
(0.0487271 -0.113258 0)
(0.0690132 -0.0738739 0)
(0.140682 -0.0280919 0)
(0.164248 -0.0674251 0)
(0.153464 -0.0881406 0)
(0.159147 -0.056996 0)
(0.0974012 -0.0258531 0)
(0.0386475 -0.111819 0)
(0.0612448 -0.14089 0)
(0.0633525 -0.134145 0)
(0.0457147 -0.185504 0)
(0.0452769 -0.213668 0)
(0.045836 -0.128572 0)
(0.0746941 -0.0871814 0)
(0.073997 -0.0893118 0)
(0.0607693 0.00806045 0)
(0.000902191 0.0197322 0)
(0.200535 -0.085098 0)
(0.402216 -0.139375 0)
(0.486459 -0.0166632 0)
(0.484355 0.272126 0)
(0.0924926 0.687354 0)
(-0.0412914 0.262348 0)
(0.112505 0.0537034 0)
(0.0355245 -0.0206472 0)
(0.0749673 -0.0144766 0)
(0.0829261 -0.0314592 0)
(0.0699335 -0.0388132 0)
(0.0557102 -0.0400844 0)
(0.0304213 -0.068092 0)
(0.0720831 -0.112341 0)
(0.0314249 -0.0761001 0)
(0.0548866 -0.0285903 0)
(0.227852 -0.020562 0)
(0.191528 -0.0893138 0)
(0.186265 -0.0539 0)
(0.142949 0.0726534 0)
(0.123767 -0.112206 0)
(0.119555 -0.152868 0)
(0.0963389 -0.11536 0)
(0.0468864 -0.169177 0)
(0.0357359 -0.214928 0)
(0.0555187 -0.13447 0)
(0.0580897 -0.0780323 0)
(0.00228719 -0.093641 0)
(-0.0629425 0.0316654 0)
(-0.0901394 0.00238923 0)
(0.134708 -0.163847 0)
(0.275271 -0.150723 0)
(0.366138 -0.0487832 0)
(0.346955 0.340805 0)
(-0.132313 0.728295 0)
(-0.00717079 0.248551 0)
(0.0986223 0.0346762 0)
(0.0695391 -0.0189188 0)
(0.0781497 -0.0200125 0)
(0.0811748 -0.030825 0)
(0.0687536 -0.0380678 0)
(0.0553518 -0.0412181 0)
(0.0315644 -0.0676427 0)
(0.065452 -0.109427 0)
(-0.038293 -0.0743796 0)
(-0.0161979 -0.0294882 0)
(0.286447 0.0327764 0)
(0.247897 -0.0269714 0)
(0.186288 -0.0161291 0)
(0.194852 0.0487704 0)
(0.244285 -0.0918574 0)
(0.216401 -0.127328 0)
(0.146298 -0.0672177 0)
(0.0547892 -0.129003 0)
(0.0441519 -0.225953 0)
(0.0759097 -0.145466 0)
(0.0395173 -0.0618154 0)
(-0.0292784 -0.0278741 0)
(-0.115385 0.0625581 0)
(-0.103016 -0.0523503 0)
(0.112607 -0.235672 0)
(0.156469 -0.145837 0)
(0.210012 -0.0744527 0)
(0.191302 0.41542 0)
(-0.253372 0.748172 0)
(0.0210585 0.220243 0)
(0.074827 0.0327496 0)
(0.140107 -0.0235974 0)
(0.0866262 -0.0193008 0)
(0.0793436 -0.0298809 0)
(0.0668396 -0.0373654 0)
(0.0539414 -0.0422194 0)
(0.0315768 -0.0669745 0)
(0.055036 -0.105378 0)
(-0.0436385 -0.0683486 0)
(-0.0662746 -0.0305137 0)
(0.264398 0.0772939 0)
(0.234515 0.0564835 0)
(0.172332 0.043789 0)
(0.188628 -0.0361003 0)
(0.276846 -0.117794 0)
(0.306574 -0.118704 0)
(0.231122 0.00960441 0)
(0.0850461 -0.068321 0)
(0.0809458 -0.247786 0)
(0.080216 -0.141982 0)
(0.0164657 -0.0207796 0)
(-0.100082 0.0179467 0)
(-0.151527 0.110253 0)
(-0.0732096 -0.117892 0)
(0.0203227 -0.296869 0)
(0.0565821 -0.150371 0)
(0.031189 -0.077577 0)
(0.0417497 0.482818 0)
(-0.296 0.752194 0)
(-0.0100513 0.17776 0)
(0.122849 0.033396 0)
(0.116657 -0.0226973 0)
(0.0853147 -0.0158057 0)
(0.0774138 -0.0285519 0)
(0.0647486 -0.0366224 0)
(0.0525272 -0.0430161 0)
(0.0312742 -0.0659758 0)
(0.0430268 -0.0998734 0)
(-0.071306 -0.0639618 0)
(-0.0875259 -0.030166 0)
(0.237912 0.116074 0)
(0.212818 0.105656 0)
(0.205147 0.0737765 0)
(0.236498 -0.143939 0)
(0.318348 -0.246402 0)
(0.343411 -0.107032 0)
(0.487 0.0983032 0)
(0.421234 0.0666858 0)
(0.213268 -0.228019 0)
(0.129314 -0.0950337 0)
(0.041795 0.0431966 0)
(-0.0815151 0.101441 0)
(-0.138043 0.0636107 0)
(-0.0382495 -0.158349 0)
(-0.0334637 -0.288481 0)
(-0.0606014 -0.127713 0)
(-0.134688 -0.0779534 0)
(-0.0893782 0.531524 0)
(-0.199773 0.706721 0)
(0.0257405 0.138464 0)
(0.166699 0.025772 0)
(0.10589 -0.0067222 0)
(0.0823541 -0.0155385 0)
(0.0754787 -0.0269018 0)
(0.0626411 -0.0357496 0)
(0.0511119 -0.0435297 0)
(0.0307196 -0.0646081 0)
(0.032066 -0.0935291 0)
(-0.0920517 -0.0593697 0)
(-0.0938555 -0.0292029 0)
(0.235003 0.184665 0)
(0.208236 0.126104 0)
(0.206271 0.042803 0)
(0.200755 -0.143516 0)
(0.149813 -0.217758 0)
(0.197545 -0.247483 0)
(0.181734 -0.143423 0)
(0.388165 0.244672 0)
(0.209778 -0.103325 0)
(0.166073 -0.00379749 0)
(0.0563754 0.0925985 0)
(-0.0423905 0.169272 0)
(0.00760664 0.0298669 0)
(-0.00286926 -0.155899 0)
(-0.0447085 -0.291253 0)
(-0.0652205 -0.0619706 0)
(-0.236263 -0.0822824 0)
(-0.151365 0.551166 0)
(-0.220562 0.617422 0)
(0.0438737 0.116582 0)
(0.137184 0.0192618 0)
(0.122542 0.00643971 0)
(0.087522 -0.013055 0)
(0.0736122 -0.0247777 0)
(0.0605211 -0.0346338 0)
(0.0494893 -0.0436661 0)
(0.0298681 -0.0628444 0)
(0.0231033 -0.0867246 0)
(-0.0975812 -0.0549713 0)
(-0.0932903 -0.0278272 0)
(0.210929 0.224877 0)
(0.184654 0.16944 0)
(0.15032 0.0771004 0)
(0.0846469 -0.0445053 0)
(-0.0158544 -0.150371 0)
(-0.153363 -0.166674 0)
(-0.175133 0.046463 0)
(-0.0633828 -0.249958 0)
(0.00107509 -0.0461693 0)
(0.00960139 0.0860121 0)
(0.0192354 0.126118 0)
(-0.0822895 0.148569 0)
(0.00520273 0.00438845 0)
(-0.0158494 -0.118359 0)
(-0.0930361 -0.260107 0)
(-0.132727 -0.0485381 0)
(-0.276531 -0.0536871 0)
(-0.212701 0.568716 0)
(-0.221436 0.492515 0)
(0.0601383 0.0986776 0)
(0.124109 0.0117478 0)
(0.124866 0.014332 0)
(0.0883827 -0.00736818 0)
(0.0715292 -0.0221287 0)
(0.0583429 -0.0331624 0)
(0.0475234 -0.0433244 0)
(0.0286901 -0.0606777 0)
(0.0160762 -0.0798347 0)
(-0.0923035 -0.0509749 0)
(-0.0895065 -0.025984 0)
(0.187921 0.265511 0)
(0.16325 0.237482 0)
(0.110529 0.168077 0)
(0.0447363 0.0775756 0)
(-0.0383266 -0.00241098 0)
(-0.190035 -0.0496529 0)
(-0.266034 -0.235856 0)
(-0.0405118 -0.179338 0)
(0.0233994 0.0435293 0)
(-0.120276 -0.0460206 0)
(-0.247452 0.163601 0)
(-0.173331 0.153978 0)
(-0.199381 -0.0179521 0)
(-0.0797814 -0.124274 0)
(-0.121221 -0.216893 0)
(-0.174663 -0.0543551 0)
(-0.240315 0.0176672 0)
(-0.31424 0.533836 0)
(0.0135269 0.367357 0)
(0.100463 0.0737983 0)
(0.130599 0.00706667 0)
(0.119319 0.0214156 0)
(0.0850911 -0.000931148 0)
(0.0690934 -0.0191453 0)
(0.0560491 -0.0312698 0)
(0.0451953 -0.0424158 0)
(0.0271916 -0.0581333 0)
(0.0106088 -0.0731348 0)
(-0.0811545 -0.047376 0)
(-0.0840106 -0.023729 0)
(0.132945 0.254 0)
(0.122069 0.366852 0)
(0.0655999 0.267028 0)
(0.0464089 0.168822 0)
(-0.00254024 0.119942 0)
(-0.0719414 0.0805442 0)
(-0.149145 -0.135962 0)
(-0.153441 -0.246599 0)
(-0.0976559 0.201927 0)
(-0.113656 -0.00652684 0)
(-0.264194 0.203945 0)
(-0.245933 0.156549 0)
(-0.124222 -0.115244 0)
(-0.0637965 -0.15833 0)
(-0.118972 -0.171381 0)
(-0.201296 -0.065244 0)
(-0.227826 0.104217 0)
(-0.282133 0.518374 0)
(0.0723099 0.277748 0)
(0.156483 0.0503515 0)
(0.146626 0.0114121 0)
(0.10732 0.0305753 0)
(0.0796478 0.00452362 0)
(0.0662968 -0.0159965 0)
(0.0535737 -0.0289797 0)
(0.0425721 -0.0409064 0)
(0.0254159 -0.0552565 0)
(0.00636616 -0.0667721 0)
(-0.0686209 -0.044067 0)
(-0.0774645 -0.021239 0)
(0.060797 0.262323 0)
(0.087126 0.319059 0)
(0.116596 0.274387 0)
(0.0948533 0.232397 0)
(0.0705536 0.204562 0)
(0.0669616 0.209457 0)
(0.00698407 0.0902427 0)
(-0.216702 -0.0856143 0)
(-0.33157 -0.00586036 0)
(-0.288336 0.103753 0)
(-0.213365 0.188208 0)
(-0.0871875 0.057252 0)
(-0.0218791 -0.122634 0)
(-0.0482512 -0.145796 0)
(-0.0992606 -0.131243 0)
(-0.152522 -0.0478229 0)
(-0.148404 0.157698 0)
(-0.0494926 0.367213 0)
(0.12224 0.264785 0)
(0.217761 0.0396855 0)
(0.159634 0.0275949 0)
(0.0931672 0.0443607 0)
(0.0760462 0.00773535 0)
(0.0631324 -0.0127277 0)
(0.0508435 -0.0264016 0)
(0.0397469 -0.0388581 0)
(0.023435 -0.052097 0)
(0.00311872 -0.0607998 0)
(-0.0574831 -0.0409476 0)
(-0.0703308 -0.0187128 0)
(0.069795 0.157418 0)
(0.0547075 0.299048 0)
(0.045472 0.309619 0)
(0.0495333 0.259297 0)
(0.0448265 0.215814 0)
(0.0190338 0.218243 0)
(-0.020304 0.206171 0)
(-0.0807659 0.133013 0)
(-0.104775 0.00131114 0)
(-0.198152 0.0327183 0)
(-0.102474 0.100348 0)
(-0.00480533 -0.0135246 0)
(-0.0126492 -0.100993 0)
(-0.0450732 -0.119672 0)
(-0.076209 -0.105277 0)
(-0.093754 -0.037062 0)
(-0.0626806 0.126274 0)
(0.0347428 0.24992 0)
(0.22515 0.23068 0)
(0.241944 0.0526666 0)
(0.166872 0.0541578 0)
(0.0920517 0.0618468 0)
(0.0740748 0.0116795 0)
(0.0594468 -0.00930389 0)
(0.0477904 -0.0236786 0)
(0.0367915 -0.0364166 0)
(0.0213311 -0.0487218 0)
(0.000715799 -0.0552493 0)
(-0.0484727 -0.0379703 0)
(-0.0629873 -0.0162898 0)
(-0.0905225 0.256542 0)
(-0.0957278 0.27814 0)
(-0.0990653 0.278266 0)
(-0.114589 0.275078 0)
(-0.137529 0.272361 0)
(-0.148808 0.261881 0)
(-0.136276 0.22513 0)
(-0.11188 0.140356 0)
(-0.108237 0.0489159 0)
(-0.114687 0.025551 0)
(-0.0723843 0.0139372 0)
(-0.0347541 -0.0376724 0)
(-0.0346085 -0.0829246 0)
(-0.0489557 -0.101918 0)
(-0.0600534 -0.0954037 0)
(-0.051971 -0.0453376 0)
(0.00276239 0.0748898 0)
(0.0776467 0.177983 0)
(0.22727 0.186194 0)
(0.219685 0.0784374 0)
(0.154937 0.0838325 0)
(0.0824986 0.0725393 0)
(0.0679065 0.0169484 0)
(0.0550145 -0.00589675 0)
(0.0443682 -0.0209436 0)
(0.0337368 -0.0337543 0)
(0.0191824 -0.0452124 0)
(-0.000964693 -0.0501564 0)
(-0.0411547 -0.0351161 0)
(-0.055686 -0.0140443 0)
(-0.245454 0.339577 0)
(-0.266942 0.339362 0)
(-0.278103 0.324696 0)
(-0.277119 0.299637 0)
(-0.26406 0.264804 0)
(-0.237624 0.219632 0)
(-0.200018 0.162193 0)
(-0.161919 0.0949099 0)
(-0.135871 0.0358905 0)
(-0.113942 -0.000758526 0)
(-0.0871604 -0.026047 0)
(-0.0653193 -0.0537899 0)
(-0.0573679 -0.0794918 0)
(-0.0585159 -0.0960804 0)
(-0.0581039 -0.0971491 0)
(-0.0439239 -0.0660043 0)
(0.00700896 0.0212237 0)
(0.0751585 0.129627 0)
(0.167447 0.151786 0)
(0.151349 0.106717 0)
(0.0730038 0.113874 0)
(0.0583653 0.077068 0)
(0.0590172 0.0205981 0)
(0.0498265 -0.00280507 0)
(0.0405711 -0.0182904 0)
(0.0305869 -0.0310184 0)
(0.0170493 -0.0416573 0)
(-0.00203753 -0.0454739 0)
(-0.0349477 -0.0323664 0)
(-0.0485794 -0.0120193 0)
(-0.383023 0.368228 0)
(-0.372567 0.333626 0)
(-0.356612 0.294459 0)
(-0.334589 0.251598 0)
(-0.307128 0.206356 0)
(-0.272855 0.145749 0)
(-0.234008 0.0868571 0)
(-0.195189 0.0340356 0)
(-0.160125 -0.00790899 0)
(-0.129829 -0.0367918 0)
(-0.10417 -0.0556369 0)
(-0.085265 -0.0703991 0)
(-0.0750284 -0.0843127 0)
(-0.0718431 -0.0967882 0)
(-0.070069 -0.101473 0)
(-0.064686 -0.0788855 0)
(-0.0714966 0.00660423 0)
(-0.0393282 0.0786081 0)
(0.0511879 0.129772 0)
(0.0386227 0.134516 0)
(-0.00134059 0.125489 0)
(0.0385197 0.0680813 0)
(0.0495035 0.0219868 0)
(0.0440466 -0.000236767 0)
(0.0364314 -0.0157822 0)
(0.0273431 -0.0282923 0)
(0.0149631 -0.0381418 0)
(-0.00261191 -0.0411405 0)
(-0.0294903 -0.0297097 0)
(-0.0417631 -0.0102388 0)
(-0.401176 0.31081 0)
(-0.381381 0.268095 0)
(-0.358456 0.22344 0)
(-0.334535 0.177163 0)
(-0.309782 0.124306 0)
(-0.277818 0.0672943 0)
(-0.241991 0.0114551 0)
(-0.20455 -0.0330732 0)
(-0.167821 -0.0646038 0)
(-0.13599 -0.0797174 0)
(-0.111211 -0.0853995 0)
(-0.0942681 -0.087368 0)
(-0.0856374 -0.0905088 0)
(-0.0853024 -0.0964422 0)
(-0.0912293 -0.101948 0)
(-0.0990653 -0.0769698 0)
(-0.086369 0.00324535 0)
(-0.0650129 0.0441179 0)
(-0.0773981 0.123466 0)
(-0.0723453 0.138794 0)
(-0.0312844 0.111995 0)
(0.0284005 0.052617 0)
(0.0402539 0.0217285 0)
(0.0379124 0.00169074 0)
(0.0320107 -0.0134814 0)
(0.0240147 -0.0256326 0)
(0.0129388 -0.0347401 0)
(-0.00279059 -0.0371383 0)
(-0.0245912 -0.0271512 0)
(-0.0352983 -0.00870723 0)
(-0.331931 0.242001 0)
(-0.317361 0.195983 0)
(-0.302373 0.151767 0)
(-0.282855 0.111063 0)
(-0.257551 0.0558178 0)
(-0.231896 -0.00653733 0)
(-0.204335 -0.0637436 0)
(-0.172984 -0.108465 0)
(-0.143492 -0.123269 0)
(-0.118457 -0.121635 0)
(-0.0997962 -0.111686 0)
(-0.0886189 -0.100688 0)
(-0.084951 -0.0924204 0)
(-0.090299 -0.0870251 0)
(-0.109006 -0.0814659 0)
(-0.141595 -0.0656203 0)
(-0.148784 -0.0273644 0)
(-0.126251 0.0597456 0)
(-0.146853 0.125533 0)
(-0.100161 0.110166 0)
(-0.0173625 0.0707336 0)
(0.0214231 0.0412255 0)
(0.0317897 0.0204323 0)
(0.0316734 0.0029629 0)
(0.0273893 -0.0114437 0)
(0.0206163 -0.023103 0)
(0.0109804 -0.0315233 0)
(-0.00266529 -0.0334823 0)
(-0.0201331 -0.024716 0)
(-0.0292093 -0.0074107 0)
(-0.162651 0.201624 0)
(-0.157909 0.15743 0)
(-0.151537 0.108558 0)
(-0.142097 0.0552426 0)
(-0.1298 -0.00263833 0)
(-0.115614 -0.0618475 0)
(-0.100561 -0.114257 0)
(-0.0859911 -0.150068 0)
(-0.0752558 -0.159135 0)
(-0.0701326 -0.147248 0)
(-0.0675968 -0.126062 0)
(-0.0673103 -0.105346 0)
(-0.0703568 -0.0885656 0)
(-0.0781256 -0.073836 0)
(-0.0923963 -0.0566118 0)
(-0.11647 -0.033701 0)
(-0.156023 -0.00677419 0)
(-0.171909 0.0530987 0)
(-0.11495 0.0793756 0)
(-0.0472698 0.0654717 0)
(-0.00385362 0.0444308 0)
(0.0159537 0.0329254 0)
(0.0243484 0.0185545 0)
(0.0255428 0.00365207 0)
(0.0226549 -0.00971142 0)
(0.0171647 -0.0207728 0)
(0.00908455 -0.028565 0)
(-0.00231459 -0.0302073 0)
(-0.0160314 -0.0224447 0)
(-0.0234915 -0.00632643 0)
(-0.0061194 0.180069 0)
(0.00219318 0.140394 0)
(0.0106538 0.0893557 0)
(0.0184568 0.0346099 0)
(0.0240112 -0.021997 0)
(0.0259699 -0.07521 0)
(0.0217607 -0.122498 0)
(0.0120834 -0.152888 0)
(-0.00251114 -0.153633 0)
(-0.0148882 -0.136462 0)
(-0.0270775 -0.115284 0)
(-0.0377409 -0.0956339 0)
(-0.0472989 -0.0781068 0)
(-0.0568933 -0.0611664 0)
(-0.0669953 -0.0418153 0)
(-0.075589 -0.0159327 0)
(-0.0822995 0.0113405 0)
(-0.0929396 0.0432171 0)
(-0.0579751 0.0468624 0)
(-0.0174331 0.0376506 0)
(0.000356827 0.0325143 0)
(0.0114167 0.0269982 0)
(0.0179311 0.0164816 0)
(0.019671 0.00388559 0)
(0.017887 -0.00830803 0)
(0.0136695 -0.0187152 0)
(0.00723347 -0.0259482 0)
(-0.00180908 -0.0273627 0)
(-0.0122155 -0.0203914 0)
(-0.0181121 -0.00543138 0)
(0.0915289 0.122117 0)
(0.100759 0.0868968 0)
(0.10889 0.0451067 0)
(0.113418 0.00913112 0)
(0.111549 -0.0263128 0)
(0.103462 -0.0611754 0)
(0.0903456 -0.0915769 0)
(0.0707043 -0.102481 0)
(0.046939 -0.103955 0)
(0.0233691 -0.0974618 0)
(0.00373317 -0.0867706 0)
(-0.0119208 -0.074814 0)
(-0.0244495 -0.0621499 0)
(-0.0346448 -0.0482893 0)
(-0.0426833 -0.0320837 0)
(-0.0473606 -0.0121301 0)
(-0.0459232 0.0112734 0)
(-0.0356154 0.0319496 0)
(-0.0170136 0.0284594 0)
(-0.00596903 0.0267407 0)
(0.00102407 0.0264179 0)
(0.00769242 0.0227086 0)
(0.012443 0.014526 0)
(0.0141526 0.0038201 0)
(0.0131484 -0.00723771 0)
(0.0101256 -0.0170022 0)
(0.00537941 -0.0237667 0)
(-0.00123512 -0.0250238 0)
(-0.00862489 -0.0186295 0)
(-0.0130087 -0.0047118 0)
(0.104569 0.0813262 0)
(0.108201 0.0631928 0)
(0.109208 0.0425929 0)
(0.106814 0.0214362 0)
(0.101547 0.00050438 0)
(0.0927741 -0.0200932 0)
(0.0791853 -0.0366598 0)
(0.062967 -0.0468077 0)
(0.0462778 -0.0531059 0)
(0.0301309 -0.055631 0)
(0.0154099 -0.0547837 0)
(0.00261631 -0.051076 0)
(-0.00808372 -0.044809 0)
(-0.0166002 -0.0360416 0)
(-0.0227444 -0.0246391 0)
(-0.025807 -0.0105949 0)
(-0.0242888 0.00515567 0)
(-0.016515 0.018522 0)
(-0.00714062 0.0214522 0)
(-0.00300226 0.0227006 0)
(0.000674834 0.022776 0)
(0.00468198 0.019685 0)
(0.00774032 0.0129382 0)
(0.00899337 0.00363055 0)
(0.00845824 -0.00648043 0)
(0.00651772 -0.0156986 0)
(0.00344796 -0.0221219 0)
(-0.00073804 -0.0232931 0)
(-0.00525713 -0.0172728 0)
(-0.00808793 -0.00417093 0)
(0.0500792 0.0635906 0)
(0.0521218 0.0540679 0)
(0.0531928 0.0434005 0)
(0.0529817 0.0317988 0)
(0.0512211 0.0196248 0)
(0.0477111 0.007421 0)
(0.0424682 -0.00416069 0)
(0.0360932 -0.0145872 0)
(0.0290158 -0.0231029 0)
(0.0214821 -0.0292006 0)
(0.0139572 -0.0326676 0)
(0.0069308 -0.0334756 0)
(0.000789686 -0.0315363 0)
(-0.00419186 -0.0268012 0)
(-0.00778618 -0.0192899 0)
(-0.00972158 -0.0093885 0)
(-0.00946941 0.00179598 0)
(-0.00691558 0.0120757 0)
(-0.00353855 0.0176428 0)
(-0.00145657 0.0202545 0)
(0.000344591 0.0205564 0)
(0.00214839 0.0178641 0)
(0.00346662 0.0119591 0)
(0.00396747 0.00349138 0)
(0.00371447 -0.00599659 0)
(0.00282646 -0.0148585 0)
(0.0014445 -0.0210916 0)
(-0.000392054 -0.0222561 0)
(-0.00222616 -0.0164719 0)
(-0.00335483 -0.00384724 0)
(-0.00104888 -5.88536e-06 0)
(-0.0060384 -0.000271917 0)
(0.0020325 -0.000243149 0)
(0.0119719 -0.000172385 0)
(0.0220527 -0.000328733 0)
(0.0346113 -0.000535835 0)
(0.0469872 -0.000546624 0)
(0.0567527 -0.000247579 0)
(0.060022 0.000394879 0)
(0.0537315 0.00132721 0)
(0.0379461 0.00191268 0)
(0.018193 0.00203931 0)
(-0.000778349 0.00171823 0)
(-0.0158541 0.00117252 0)
(-0.0262688 0.000659239 0)
(-0.0325327 0.00024735 0)
(-0.0354764 -7.22047e-05 0)
(-0.0359647 -0.000343137 0)
(-0.0347355 -0.00058007 0)
(-0.0323575 -0.000785286 0)
(-0.0292727 -0.000959348 0)
(-0.0258149 -0.00110363 0)
(-0.0222267 -0.00121717 0)
(-0.0186776 -0.00130288 0)
(-0.0152766 -0.00136559 0)
(-0.0120845 -0.0014105 0)
(-0.00912737 -0.00144324 0)
(-0.00641075 -0.00146699 0)
(-0.00393017 -0.00148275 0)
(-0.00167604 -0.00149079 0)
(-0.00469026 0.000507808 0)
(-0.0135565 -0.000520696 0)
(-0.00623694 -0.000791797 0)
(0.00629297 -0.000751307 0)
(0.0196182 -0.00149158 0)
(0.0358373 -0.00226188 0)
(0.0522839 -0.00237101 0)
(0.0667805 -0.00168655 0)
(0.0752168 -1.18509e-05 0)
(0.0744114 0.00274998 0)
(0.0624948 0.00497615 0)
(0.0442692 0.00604457 0)
(0.0248539 0.0058876 0)
(0.00780758 0.00486023 0)
(-0.00524773 0.00356546 0)
(-0.0142239 0.00224721 0)
(-0.0195908 0.00101991 0)
(-0.0220877 -7.58136e-05 0)
(-0.0224859 -0.00100863 0)
(-0.0214654 -0.00177906 0)
(-0.019577 -0.00239345 0)
(-0.0172233 -0.00286978 0)
(-0.0146904 -0.00321956 0)
(-0.012172 -0.00346242 0)
(-0.0097928 -0.00362072 0)
(-0.00762132 -0.00371933 0)
(-0.00567913 -0.00378077 0)
(-0.00395697 -0.00382036 0)
(-0.00242905 -0.003845 0)
(-0.00106631 -0.00385768 0)
(-0.00576928 0.00150769 0)
(-0.015463 -0.00067742 0)
(-0.00854412 -0.0012919 0)
(0.00411839 -0.00137672 0)
(0.017747 -0.00276889 0)
(0.0343806 -0.00414289 0)
(0.0512961 -0.00438225 0)
(0.0663853 -0.00337615 0)
(0.0756313 -0.000799489 0)
(0.0761069 0.00368007 0)
(0.0657089 0.00753374 0)
(0.049205 0.00962395 0)
(0.0315737 0.00973869 0)
(0.0160656 0.00832371 0)
(0.00420583 0.00635042 0)
(-0.00400334 0.00428975 0)
(-0.00915532 0.00231698 0)
(-0.0119446 0.0005421 0)
(-0.0130013 -0.000968898 0)
(-0.0128626 -0.00219838 0)
(-0.0119501 -0.00316758 0)
(-0.0105794 -0.00390074 0)
(-0.00898364 -0.00442155 0)
(-0.00733696 -0.00475564 0)
(-0.00576748 -0.00493505 0)
(-0.00436077 -0.00500055 0)
(-0.00315595 -0.00499933 0)
(-0.00215131 -0.00497173 0)
(-0.00131494 -0.00494485 0)
(-0.000602825 -0.00492977 0)
(-0.00605043 0.00263509 0)
(-0.0159619 -0.000829747 0)
(-0.00896451 -0.00178963 0)
(0.00370137 -0.00200294 0)
(0.0173135 -0.00406055 0)
(0.0340972 -0.00604479 0)
(0.0512036 -0.00641801 0)
(0.0665338 -0.00511089 0)
(0.0760723 -0.00167159 0)
(0.0768458 0.00453361 0)
(0.0663253 0.00996917 0)
(0.0497238 0.0130489 0)
(0.0322154 0.013393 0)
(0.0170429 0.0115626 0)
(0.0055825 0.00892287 0)
(-0.0022995 0.00618716 0)
(-0.00732778 0.00358346 0)
(-0.0102183 0.00125287 0)
(-0.0115383 -0.000731326 0)
(-0.0117485 -0.00235676 0)
(-0.0112065 -0.00364424 0)
(-0.0101829 -0.00462509 0)
(-0.00888012 -0.00532625 0)
(-0.0074537 -0.00577357 0)
(-0.0060223 -0.00599858 0)
(-0.00467296 -0.00604999 0)
(-0.00345835 -0.00599389 0)
(-0.00239609 -0.00589749 0)
(-0.00147635 -0.00581174 0)
(-0.000673252 -0.00576351 0)
(-0.00619719 0.00380456 0)
(-0.0162953 -0.000999732 0)
(-0.00909152 -0.00228847 0)
(0.00359954 -0.00262271 0)
(0.0170895 -0.0053641 0)
(0.0339997 -0.00796686 0)
(0.0513058 -0.00847376 0)
(0.0669257 -0.00688713 0)
(0.0768425 -0.00262771 0)
(0.0780291 0.00539146 0)
(0.0671826 0.0124387 0)
(0.0500057 0.0165338 0)
(0.0319732 0.0170906 0)
(0.0165279 0.0147923 0)
(0.00497909 0.0114605 0)
(-0.00291618 0.00806616 0)
(-0.00795491 0.00486151 0)
(-0.01089 0.00200857 0)
(-0.0122746 -0.000420664 0)
(-0.0125625 -0.00242237 0)
(-0.0121075 -0.00402002 0)
(-0.0111703 -0.0052509 0)
(-0.00994316 -0.00614799 0)
(-0.00856343 -0.00674141 0)
(-0.00712893 -0.00706439 0)
(-0.0057089 -0.00716974 0)
(-0.00435057 -0.00713172 0)
(-0.00308361 -0.00703143 0)
(-0.0019212 -0.00693416 0)
(-0.00086454 -0.00687778 0)
(-0.00635203 0.00500702 0)
(-0.0166802 -0.00119441 0)
(-0.00920054 -0.0027862 0)
(0.00352429 -0.00323379 0)
(0.0168355 -0.00668209 0)
(0.0338919 -0.00991347 0)
(0.0514369 -0.0105529 0)
(0.0674183 -0.00871446 0)
(0.0778097 -0.00370008 0)
(0.0795686 0.00625246 0)
(0.0683385 0.0149646 0)
(0.0504241 0.020141 0)
(0.0316487 0.0209186 0)
(0.0157467 0.0180925 0)
(0.00397778 0.0140233 0)
(-0.00400254 0.00995789 0)
(-0.00905752 0.00614971 0)
(-0.0119813 0.00277234 0)
(-0.0133321 -0.000107075 0)
(-0.0135778 -0.00248206 0)
(-0.0130809 -0.00438548 0)
(-0.0121119 -0.00586262 0)
(-0.0108606 -0.00695786 0)
(-0.00945446 -0.00771147 0)
(-0.00797708 -0.00816523 0)
(-0.00648183 -0.00837598 0)
(-0.00500798 -0.00841911 0)
(-0.00358789 -0.00837621 0)
(-0.0022481 -0.00831533 0)
(-0.00100703 -0.00827713 0)
(-0.00654068 0.00624856 0)
(-0.017149 -0.00142146 0)
(-0.00932638 -0.00328156 0)
(0.00344019 -0.003834 0)
(0.0165241 -0.00801993 0)
(0.0337567 -0.0118904 0)
(0.0515832 -0.0126592 0)
(0.0680023 -0.0106007 0)
(0.0789654 -0.00492479 0)
(0.0814657 0.00711919 0)
(0.0697733 0.0175569 0)
(0.0509626 0.0239064 0)
(0.0312689 0.0249194 0)
(0.0148131 0.0214888 0)
(0.00278178 0.0166205 0)
(-0.00529046 0.0118651 0)
(-0.010345 0.00743624 0)
(-0.0132308 0.00351902 0)
(-0.0145044 0.000178902 0)
(-0.0146508 -0.00257685 0)
(-0.0140492 -0.00478796 0)
(-0.0129779 -0.00651077 0)
(-0.011631 -0.00780398 0)
(-0.0101358 -0.00872273 0)
(-0.00857065 -0.00932021 0)
(-0.00698455 -0.0096592 0)
(-0.00541282 -0.009813 0)
(-0.00388784 -0.00985775 0)
(-0.00243954 -0.00985729 0)
(-0.00109233 -0.00985105 0)
(-0.00676862 0.00753793 0)
(-0.017709 -0.00168974 0)
(-0.00946977 -0.00377315 0)
(0.00334539 -0.00441634 0)
(0.016149 -0.00938631 0)
(0.0335912 -0.0139038 0)
(0.05174 -0.0147953 0)
(0.0686773 -0.0125507 0)
(0.0803134 -0.00634319 0)
(0.0837472 0.00799831 0)
(0.0715007 0.0202277 0)
(0.0516197 0.027872 0)
(0.0308093 0.0291352 0)
(0.0137099 0.0249999 0)
(0.00139146 0.0192496 0)
(-0.00677543 0.0137824 0)
(-0.0118151 0.00871431 0)
(-0.0146494 0.00424063 0)
(-0.0158222 0.000422407 0)
(-0.015841 -0.00272556 0)
(-0.0150988 -0.00525328 0)
(-0.0138834 -0.00722697 0)
(-0.0123968 -0.00872212 0)
(-0.0107681 -0.00980919 0)
(-0.0090784 -0.0105539 0)
(-0.00737917 -0.0110256 0)
(-0.00570667 -0.0112954 0)
(-0.00409303 -0.0114334 0)
(-0.00256664 -0.011497 0)
(-0.00115013 -0.011524 0)
(-0.00703829 0.00888476 0)
(-0.0183655 -0.00200918 0)
(-0.0096288 -0.00425906 0)
(0.003243 -0.00497367 0)
(0.0157049 -0.0107886 0)
(0.0333929 -0.0159603 0)
(0.0519012 -0.0169634 0)
(0.0694411 -0.0145658 0)
(0.0818599 -0.00800387 0)
(0.0864437 0.00890319 0)
(0.0735404 0.0229888 0)
(0.0524052 0.0320922 0)
(0.0302507 0.0336144 0)
(0.0124151 0.028645 0)
(-0.000202413 0.0219132 0)
(-0.00847062 0.0157104 0)
(-0.0134803 0.00998139 0)
(-0.0162574 0.00493117 0)
(-0.0173117 0.000614472 0)
(-0.0171812 -0.00294114 0)
(-0.0162733 -0.00579686 0)
(-0.0148882 -0.00802991 0)
(-0.0132351 -0.00973333 0)
(-0.0114477 -0.0109928 0)
(-0.00960947 -0.0118866 0)
(-0.00777846 -0.0124874 0)
(-0.00599438 -0.0128669 0)
(-0.00428798 -0.0130916 0)
(-0.00268541 -0.0132147 0)
(-0.0012049 -0.0132741 0)
(-0.00735174 0.0102992 0)
(-0.0191238 -0.00238888 0)
(-0.00980122 -0.00473692 0)
(0.00313613 -0.00549894 0)
(0.0151853 -0.0122269 0)
(0.0331593 -0.0180671 0)
(0.0520591 -0.0191671 0)
(0.0702878 -0.0166424 0)
(0.0836153 -0.00996516 0)
(0.0895868 0.00985654 0)
(0.0759121 0.0258499 0)
(0.0533331 0.0366338 0)
(0.0295737 0.0384103 0)
(0.0109029 0.0324433 0)
(-0.00200653 0.02461 0)
(-0.0103861 0.0176433 0)
(-0.0153464 0.0112388 0)
(-0.0180659 0.00558545 0)
(-0.0189852 0.000749301 0)
(-0.018686 -0.00323289 0)
(-0.0175898 -0.00642969 0)
(-0.0160146 -0.00893148 0)
(-0.0141774 -0.0108502 0)
(-0.0122132 -0.0122875 0)
(-0.0102122 -0.013331 0)
(-0.00823406 -0.014058 0)
(-0.00632215 -0.0145407 0)
(-0.00450895 -0.014843 0)
(-0.00281805 -0.0150159 0)
(-0.00126494 -0.0150992 0)
(-0.00771163 0.0117922 0)
(-0.0199899 -0.00283819 0)
(-0.00998315 -0.00520361 0)
(0.00302859 -0.00598467 0)
(0.0145839 -0.0137003 0)
(0.0328875 -0.0202319 0)
(0.0522047 -0.0214109 0)
(0.0712019 -0.0187707 0)
(0.0855983 -0.0122981 0)
(0.0932043 0.0108917 0)
(0.0786318 0.0288187 0)
(0.0544183 0.0415721 0)
(0.0287549 0.0435776 0)
(0.0091428 0.0364134 0)
(-0.00402867 0.027305 0)
(-0.0125308 0.0195809 0)
(-0.0174192 0.012485 0)
(-0.0200849 0.00620101 0)
(-0.020852 0.000817925 0)
(-0.0203611 -0.00361101 0)
(-0.0190536 -0.00716208 0)
(-0.0172704 -0.0099411 0)
(-0.0152357 -0.0120816 0)
(-0.0130828 -0.0137024 0)
(-0.0109051 -0.0148978 0)
(-0.00876858 -0.0157475 0)
(-0.00671939 -0.0163263 0)
(-0.0047887 -0.0166994 0)
(-0.00299535 -0.016919 0)
(-0.00134627 -0.0170267 0)
(-0.008121 0.0133755 0)
(-0.0209715 -0.0033681 0)
(-0.0101712 -0.00565503 0)
(0.00292409 -0.00642286 0)
(0.0138939 -0.0152115 0)
(0.0325749 -0.0224631 0)
(0.0523267 -0.023701 0)
(0.072141 -0.020934 0)
(0.087839 -0.015088 0)
(0.0973241 0.0120654 0)
(0.0817228 0.0318921 0)
(0.0556745 0.046994 0)
(0.0277675 0.0491712 0)
(0.00709523 0.0405609 0)
(-0.00627703 0.0299989 0)
(-0.014911 0.0215274 0)
(-0.0197007 0.0137175 0)
(-0.0223266 0.00677464 0)
(-0.0229219 0.000813012 0)
(-0.0222154 -0.00408728 0)
(-0.0206693 -0.00800541 0)
(-0.0186611 -0.0110655 0)
(-0.016414 -0.0134363 0)
(-0.0140662 -0.0152445 0)
(-0.0116986 -0.0165955 0)
(-0.0093827 -0.0175704 0)
(-0.00716891 -0.0182427 0)
(-0.00509351 -0.0186791 0)
(-0.00317617 -0.0189414 0)
(-0.00142563 -0.0190742 0)
(-0.00858347 0.0150617 0)
(-0.0220766 -0.00399271 0)
(-0.0103605 -0.00608556 0)
(0.00282669 -0.00680511 0)
(0.0131082 -0.0167662 0)
(0.0322191 -0.0247699 0)
(0.0524114 -0.0260478 0)
(0.0729844 -0.0231113 0)
(0.0903612 -0.0184313 0)
(0.101984 0.0134553 0)
(0.085305 0.0350575 0)
(0.0571704 0.0529962 0)
(0.0265811 0.0552538 0)
(0.00469328 0.0448866 0)
(-0.0087889 0.032631 0)
(-0.0175153 0.0234961 0)
(-0.022198 0.0149172 0)
(-0.0248048 0.00730307 0)
(-0.0252062 0.000725111 0)
(-0.0242555 -0.00467558 0)
(-0.0224399 -0.00896998 0)
(-0.0201857 -0.0123145 0)
(-0.017717 -0.0149159 0)
(-0.0151482 -0.0169263 0)
(-0.0125875 -0.0184372 0)
(-0.010092 -0.0195385 0)
(-0.00771045 -0.0203065 0)
(-0.00547377 -0.0208109 0)
(-0.00340636 -0.0211069 0)
(-0.00152528 -0.0212468 0)
(-0.00910364 0.0168645 0)
(-0.0233149 -0.00472882 0)
(-0.0105449 -0.0064877 0)
(0.00274184 -0.00712984 0)
(0.0122196 -0.0183716 0)
(0.0318177 -0.0271624 0)
(0.0524425 -0.0284696 0)
(0.0734158 -0.0252978 0)
(0.0930271 -0.0224075 0)
(0.107186 0.0151525 0)
(0.0897501 0.0383088 0)
(0.0593134 0.0596701 0)
(0.0252294 0.0619082 0)
(0.00197981 0.0494573 0)
(-0.0119142 0.0349847 0)
(-0.0203769 0.025446 0)
(-0.0249285 0.0160679 0)
(-0.0275419 0.00778418 0)
(-0.0277191 0.000543825 0)
(-0.0264873 -0.00539273 0)
(-0.0243596 -0.0100707 0)
(-0.0218561 -0.0136882 0)
(-0.0191538 -0.0165337 0)
(-0.0163857 -0.0187454 0)
(-0.0135948 -0.0204341 0)
(-0.0108797 -0.0216686 0)
(-0.00830426 -0.0225336 0)
(-0.0059043 -0.0231048 0)
(-0.00369151 -0.0234416 0)
(-0.00165651 -0.023602 0)
(-0.00968604 0.0187992 0)
(-0.024697 -0.00559532 0)
(-0.0107186 -0.00685063 0)
(0.0026753 -0.00738552 0)
(0.0112203 -0.0200312 0)
(0.0313689 -0.0296513 0)
(0.0524195 -0.0309972 0)
(0.0729961 -0.0275748 0)
(0.0950356 -0.0269671 0)
(0.112637 0.0172287 0)
(0.0952724 0.0417302 0)
(0.0631415 0.0670528 0)
(0.0238961 0.0690954 0)
(-0.000838902 0.0544216 0)
(-0.0163299 0.0367806 0)
(-0.0240122 0.0271633 0)
(-0.0278801 0.0172893 0)
(-0.0306111 0.00820591 0)
(-0.030467 0.000260063 0)
(-0.0289161 -0.00626739 0)
(-0.0264297 -0.0113157 0)
(-0.0236444 -0.0152061 0)
(-0.0207399 -0.0182791 0)
(-0.0177113 -0.0207267 0)
(-0.0146999 -0.0225929 0)
(-0.011773 -0.0239657 0)
(-0.00897601 -0.024929 0)
(-0.00636987 -0.0255603 0)
(-0.0039704 -0.0259518 0)
(-0.00177482 -0.0261578 0)
(-0.0103362 0.0208819 0)
(-0.0262362 -0.00661255 0)
(-0.0108767 -0.00715997 0)
(0.00263486 -0.00756531 0)
(0.0101006 -0.0217416 0)
(0.0308725 -0.0322481 0)
(0.0524158 -0.0336508 0)
(0.0723224 -0.0301818 0)
(0.0946533 -0.0316973 0)
(0.11717 0.0194722 0)
(0.101166 0.0454412 0)
(0.0689598 0.0752981 0)
(0.022555 0.076225 0)
(-0.00569971 0.0593884 0)
(-0.0205724 0.0387843 0)
(-0.027568 0.0288242 0)
(-0.0310614 0.018757 0)
(-0.0341044 0.00853926 0)
(-0.0334127 -0.000148654 0)
(-0.0315279 -0.0073352 0)
(-0.0286281 -0.0127211 0)
(-0.0255961 -0.0168273 0)
(-0.0224281 -0.0201787 0)
(-0.0192256 -0.0228583 0)
(-0.0159845 -0.0249292 0)
(-0.0127823 -0.0264826 0)
(-0.00973354 -0.0275613 0)
(-0.00686814 -0.0282647 0)
(-0.00423568 -0.0286819 0)
(-0.00187525 -0.0288836 0)
(-0.0110605 0.0231306 0)
(-0.0279461 -0.00780289 0)
(-0.0110145 -0.00739646 0)
(0.00263258 -0.00769959 0)
(0.00884524 -0.0234964 0)
(0.0303295 -0.0349643 0)
(0.0525337 -0.0363792 0)
(0.0739283 -0.0332614 0)
(0.0906989 -0.035593 0)
(0.117578 0.0210092 0)
(0.107024 0.0491745 0)
(0.0747865 0.0851223 0)
(0.0223587 0.0828394 0)
(-0.00654038 0.0639566 0)
(-0.0225768 0.0425506 0)
(-0.0296242 0.0305184 0)
(-0.0343509 0.0204066 0)
(-0.0376736 0.0087249 0)
(-0.0364916 -0.000735365 0)
(-0.0343966 -0.00861309 0)
(-0.0309342 -0.0142767 0)
(-0.0276357 -0.0186152 0)
(-0.0243245 -0.022186 0)
(-0.02083 -0.025149 0)
(-0.0172525 -0.0274833 0)
(-0.0138318 -0.0291826 0)
(-0.0105674 -0.0304012 0)
(-0.00749385 -0.0312069 0)
(-0.00465331 -0.0316444 0)
(-0.00206153 -0.031822 0)
(-0.0118658 0.0255653 0)
(-0.0298459 -0.00919253 0)
(-0.0111279 -0.00753412 0)
(0.00268789 -0.00779327 0)
(0.00743399 -0.0252882 0)
(0.0297405 -0.0378123 0)
(0.0526545 -0.0391143 0)
(0.0774328 -0.0362286 0)
(0.0828696 -0.0371303 0)
(0.108211 0.0201324 0)
(0.112388 0.0521268 0)
(0.0794848 0.0970711 0)
(0.0182329 0.0911697 0)
(-0.0125306 0.0660058 0)
(-0.0254575 0.0468704 0)
(-0.0342813 0.0321002 0)
(-0.0390256 0.0225023 0)
(-0.0404389 0.00858544 0)
(-0.0405775 -0.00121937 0)
(-0.0373692 -0.0102565 0)
(-0.0330794 -0.0159953 0)
(-0.0298497 -0.0204287 0)
(-0.0264257 -0.0243577 0)
(-0.0226946 -0.0276917 0)
(-0.0189687 -0.0302007 0)
(-0.0151981 -0.0321159 0)
(-0.0115712 -0.0334721 0)
(-0.00824476 -0.0343547 0)
(-0.00517368 -0.0348828 0)
(-0.00229774 -0.0351396 0)
(-0.01276 0.0282076 0)
(-0.0319561 -0.0108123 0)
(-0.0112176 -0.00753815 0)
(0.00282914 -0.0078539 0)
(0.00583972 -0.0271284 0)
(0.0291073 -0.0408035 0)
(0.0526972 -0.0419481 0)
(0.0780844 -0.0380951 0)
(0.0703777 -0.0349932 0)
(0.0854917 0.015273 0)
(0.11562 0.052944 0)
(0.0856984 0.11021 0)
(0.00459569 0.104627 0)
(-0.021311 0.0681592 0)
(-0.0297229 0.0522154 0)
(-0.0339462 0.034186 0)
(-0.0441964 0.0240607 0)
(-0.0430555 0.00820465 0)
(-0.0446605 -0.00163092 0)
(-0.038138 -0.0129328 0)
(-0.0345353 -0.0174299 0)
(-0.0319992 -0.022234 0)
(-0.0285048 -0.0265646 0)
(-0.0247493 -0.0302439 0)
(-0.0206065 -0.0332033 0)
(-0.0164352 -0.0354123 0)
(-0.0124973 -0.0368526 0)
(-0.008823 -0.0377847 0)
(-0.00545031 -0.0384078 0)
(-0.00238806 -0.0387594 0)
(-0.0137519 0.0310816 0)
(-0.0343021 -0.0126981 0)
(-0.0112924 -0.00736142 0)
(0.0031023 -0.00790085 0)
(0.00402299 -0.0290627 0)
(0.0284326 -0.0439424 0)
(0.0529267 -0.0449633 0)
(0.0741242 -0.0384869 0)
(0.0551721 -0.0295187 0)
(0.0466775 0.00712512 0)
(0.111783 0.0502729 0)
(0.0972868 0.119756 0)
(0.0148276 0.118729 0)
(-0.0356681 0.0740361 0)
(-0.0364771 0.0534273 0)
(-0.0401472 0.0341708 0)
(-0.0473986 0.0259061 0)
(-0.0459456 0.00858267 0)
(-0.0476519 -0.00309085 0)
(-0.0389131 -0.0160483 0)
(-0.0355054 -0.0179105 0)
(-0.0347774 -0.0237414 0)
(-0.0314039 -0.0288765 0)
(-0.0268918 -0.0331866 0)
(-0.0222995 -0.0364895 0)
(-0.0179454 -0.038874 0)
(-0.0136527 -0.040556 0)
(-0.00952086 -0.0416287 0)
(-0.00576552 -0.0422266 0)
(-0.00247987 -0.0425014 0)
(-0.0148512 0.0342139 0)
(-0.0369152 -0.0148919 0)
(-0.0113784 -0.00693748 0)
(0.00357893 -0.00796837 0)
(0.00191467 -0.0310809 0)
(0.0276983 -0.0472296 0)
(0.0531302 -0.0480404 0)
(0.0622585 -0.0374862 0)
(0.0388957 -0.0214838 0)
(-0.011317 -0.0027753 0)
(0.0915292 0.0433851 0)
(0.131898 0.123259 0)
(0.00086875 0.11994 0)
(-0.0297371 0.078987 0)
(-0.0435924 0.052556 0)
(-0.0501609 0.0335772 0)
(-0.0489114 0.0257932 0)
(-0.0493764 0.0099849 0)
(-0.0562625 -0.00385361 0)
(-0.0492589 -0.0198516 0)
(-0.0396234 -0.018784 0)
(-0.0378625 -0.0246603 0)
(-0.0344014 -0.0315059 0)
(-0.0298295 -0.0364562 0)
(-0.0250285 -0.0399804 0)
(-0.0199835 -0.0427418 0)
(-0.0151212 -0.0447163 0)
(-0.0106355 -0.0459011 0)
(-0.00653312 -0.0464458 0)
(-0.00281229 -0.0466199 0)
(-0.016069 0.0376333 0)
(-0.0398345 -0.0174439 0)
(-0.011552 -0.00616354 0)
(0.00439755 -0.00813139 0)
(-0.000728715 -0.0331685 0)
(0.0267396 -0.0506538 0)
(0.0513908 -0.0506142 0)
(0.033068 -0.0349883 0)
(0.020907 -0.0125045 0)
(-0.013747 -0.0137745 0)
(0.112731 0.0241295 0)
(0.102509 0.135723 0)
(0.00638559 0.132325 0)
(-0.0555035 0.0842423 0)
(-0.0493661 0.0525814 0)
(-0.0538678 0.0317014 0)
(-0.0395784 0.0251109 0)
(-0.0578249 0.0152867 0)
(-0.0652363 -0.0036601 0)
(-0.0544 -0.025938 0)
(-0.0495768 -0.0224461 0)
(-0.0412898 -0.0253423 0)
(-0.0373345 -0.0341067 0)
(-0.0327152 -0.0397454 0)
(-0.0272298 -0.0440683 0)
(-0.0215855 -0.047154 0)
(-0.0164736 -0.0491461 0)
(-0.0117964 -0.0504219 0)
(-0.00737622 -0.0511377 0)
(-0.00317736 -0.0514434 0)
(-0.0174245 0.0413712 0)
(-0.0431117 -0.0204113 0)
(-0.0120728 -0.00483264 0)
(0.00599005 -0.00860026 0)
(-0.00477694 -0.0352829 0)
(0.024511 -0.0540861 0)
(0.0393485 -0.0509228 0)
(-0.0195397 -0.0314047 0)
(-0.00792907 -0.00822538 0)
(0.0976777 -0.0234876 0)
(-0.294091 0.0559687 0)
(0.12039 0.164454 0)
(-0.0271167 0.146441 0)
(-0.0679751 0.0894615 0)
(-0.0480335 0.0472555 0)
(-0.0500572 0.0301477 0)
(-0.0400486 0.0282251 0)
(-0.0687339 0.0206154 0)
(-0.0652028 -0.00677742 0)
(-0.0472966 -0.0270882 0)
(-0.0590657 -0.0281074 0)
(-0.0464853 -0.0266811 0)
(-0.0410963 -0.0370433 0)
(-0.0353574 -0.0435678 0)
(-0.0294111 -0.0485469 0)
(-0.0234054 -0.0517629 0)
(-0.0176848 -0.0538573 0)
(-0.0123978 -0.0553052 0)
(-0.00757516 -0.0562509 0)
(-0.0031936 -0.0567237 0)
(-0.019009 0.0454575 0)
(-0.0468174 -0.0238606 0)
(-0.013762 -0.00250667 0)
(0.00983762 -0.00995703 0)
(-0.0115456 -0.0371937 0)
(0.0164255 -0.0568137 0)
(0.00168056 -0.0470155 0)
(-0.0438088 -0.0287335 0)
(0.0743471 -0.024535 0)
(0.0265704 0.0285983 0)
(-0.400095 0.0747778 0)
(-0.0732361 0.143824 0)
(-0.0519095 0.165153 0)
(-0.0958187 0.0935605 0)
(-0.0716487 0.0420105 0)
(-0.052741 0.0293855 0)
(-0.050746 0.0326717 0)
(-0.0749686 0.0228128 0)
(-0.0436123 -0.0123712 0)
(-0.0445017 -0.0218833 0)
(-0.0657982 -0.0307622 0)
(-0.0517414 -0.02954 0)
(-0.044595 -0.0411386 0)
(-0.0397584 -0.0478337 0)
(-0.0331982 -0.053466 0)
(-0.025594 -0.0572327 0)
(-0.018447 -0.0594907 0)
(-0.0122487 -0.0608237 0)
(-0.00710309 -0.0615445 0)
(-0.0028698 -0.0618445 0)
(-0.0212386 0.0499123 0)
(-0.0510542 -0.0278833 0)
(-0.0179206 0.00151918 0)
(0.0142645 -0.0134793 0)
(-0.0201338 -0.0379371 0)
(-0.009379 -0.0568578 0)
(-0.052168 -0.0405742 0)
(0.182289 -0.0719311 0)
(0.416372 -0.0207492 0)
(0.259564 0.109808 0)
(-0.899021 0.0236887 0)
(-0.215074 0.0221769 0)
(-0.0793025 0.176088 0)
(-0.0819323 0.0915209 0)
(-0.0660236 0.0373586 0)
(-0.069242 0.0285236 0)
(-0.0584966 0.0368133 0)
(-0.06632 0.023923 0)
(-0.0470757 -0.0212117 0)
(-0.0492411 -0.0144835 0)
(-0.0705662 -0.0306734 0)
(-0.0497879 -0.032476 0)
(-0.0473428 -0.0459352 0)
(-0.0447656 -0.0521441 0)
(-0.0355728 -0.0598155 0)
(-0.026241 -0.0640481 0)
(-0.0184784 -0.0660223 0)
(-0.0119948 -0.066832 0)
(-0.00674403 -0.0668405 0)
(-0.00259317 -0.066609 0)
(-0.0247899 0.0547516 0)
(-0.0560781 -0.0326215 0)
(-0.0146714 0.00784798 0)
(-0.0309144 -0.0206035 0)
(-0.0319954 -0.0353401 0)
(-0.0595026 -0.0516304 0)
(0.148426 -0.0935791 0)
(0.753807 -0.10793 0)
(0.673591 -0.0161674 0)
(0.462853 0.179186 0)
(-0.1858 0.115277 0)
(-0.258833 -0.0121932 0)
(-0.0441543 0.178894 0)
(-0.0761513 0.0877496 0)
(-0.0659288 0.0369988 0)
(-0.057808 0.0212247 0)
(-0.0491054 0.0478102 0)
(-0.0608273 0.00950028 0)
(-0.038868 -0.0140621 0)
(-0.057777 -0.0116974 0)
(-0.0719421 -0.0324015 0)
(-0.0442337 -0.0330932 0)
(-0.0498275 -0.050633 0)
(-0.0447714 -0.0573447 0)
(-0.0336468 -0.0672891 0)
(-0.0250826 -0.0708659 0)
(-0.0185196 -0.072285 0)
(-0.0126054 -0.0727823 0)
(-0.00729885 -0.0722283 0)
(-0.00273458 -0.0714979 0)
(-0.0295891 0.0600436 0)
(-0.0631984 -0.0374831 0)
(-0.0032231 0.013968 0)
(-0.0470617 -0.029878 0)
(-0.0597473 -0.0300936 0)
(-0.0495423 -0.0631358 0)
(0.872206 -0.198185 0)
(0.746068 -0.11717 0)
(0.623159 0.0161595 0)
(0.481566 0.210559 0)
(0.22698 0.19237 0)
(-0.23547 0.0461016 0)
(-0.0988817 0.157758 0)
(-0.0976372 0.0840161 0)
(-0.108139 0.0353093 0)
(-0.0351073 0.0219473 0)
(-0.0627102 0.0541645 0)
(-0.101566 -0.0178876 0)
(-0.0371747 -0.000274997 0)
(-0.07655 -0.00301691 0)
(-0.0682026 -0.0432895 0)
(-0.0411739 -0.0306933 0)
(-0.0462916 -0.0561293 0)
(-0.0377774 -0.0627903 0)
(-0.0299207 -0.0738333 0)
(-0.0247485 -0.0757875 0)
(-0.0200196 -0.0773778 0)
(-0.0145114 -0.0785322 0)
(-0.00873423 -0.0782306 0)
(-0.00317571 -0.0774888 0)
(-0.0369044 0.0658626 0)
(-0.0704849 -0.0410463 0)
(0.0601666 0.0138268 0)
(-0.0564466 -0.0284551 0)
(-0.0841746 -0.0289971 0)
(1.42646 -0.128751 0)
(0.690885 -0.16588 0)
(0.5459 -0.108063 0)
(0.486618 0.0451882 0)
(0.406722 0.209753 0)
(0.497353 0.215864 0)
(-0.0785987 0.0975953 0)
(-0.170718 0.133139 0)
(-0.10259 0.0946858 0)
(-0.172895 0.0279567 0)
(-0.0935262 0.000219757 0)
(-0.084154 0.0665408 0)
(-0.0899028 -0.035879 0)
(-0.0752034 0.0014152 0)
(-0.0941817 0.00773616 0)
(-0.0660295 -0.0640965 0)
(-0.0424802 -0.0300306 0)
(-0.0383677 -0.0621237 0)
(-0.0329938 -0.0673394 0)
(-0.03044 -0.0776619 0)
(-0.02703 -0.0786881 0)
(-0.0217868 -0.0821812 0)
(-0.0155213 -0.0847291 0)
(-0.0091199 -0.0852055 0)
(-0.00295166 -0.0847756 0)
(-0.0466776 0.0723066 0)
(-0.0667341 -0.044329 0)
(0.0532378 0.00948925 0)
(0.00807584 -0.0200472 0)
(0.253911 -0.138837 0)
(0.623529 -0.118539 0)
(0.457083 -0.129508 0)
(0.33061 -0.100115 0)
(0.328376 0.064318 0)
(0.296056 0.210747 0)
(0.566929 0.293034 0)
(1.86765 -0.114257 0)
(-0.254747 0.110071 0)
(-0.108439 0.0915723 0)
(-0.169155 0.00430464 0)
(-0.156618 -0.00336726 0)
(-0.097478 0.0796828 0)
(-0.137567 -0.0230398 0)
(-0.106529 -0.029857 0)
(-0.0925227 0.0180285 0)
(-0.0644318 -0.0838506 0)
(-0.0686987 -0.0437382 0)
(-0.0435363 -0.0603553 0)
(-0.0404232 -0.0727597 0)
(-0.0346619 -0.079948 0)
(-0.026918 -0.0825735 0)
(-0.0187915 -0.0883214 0)
(-0.0120021 -0.0913545 0)
(-0.00617163 -0.0921885 0)
(-0.00104136 -0.0918187 0)
(-0.0604028 0.0794224 0)
(-0.0857491 -0.0454666 0)
(0.00562783 -0.00201521 0)
(0.0607326 -0.0197875 0)
(0.584558 -0.176994 0)
(0.487481 -0.135644 0)
(0.282839 -0.106587 0)
(0.194063 -0.0942751 0)
(0.182356 0.0730323 0)
(0.165841 0.2219 0)
(0.500558 0.42881 0)
(-0.5307 -0.135285 0)
(-0.0683514 0.132641 0)
(-0.127559 0.0898012 0)
(-0.0459294 -0.00620556 0)
(-0.15045 0.0110985 0)
(-0.126575 0.0610251 0)
(-0.13998 0.000803947 0)
(-0.111112 -0.0539308 0)
(-0.0706504 0.00803732 0)
(-0.0511286 -0.0737524 0)
(-0.0699031 -0.0684289 0)
(-0.0621445 -0.0534593 0)
(-0.0522518 -0.0825424 0)
(-0.0363432 -0.0849113 0)
(-0.0232909 -0.0901175 0)
(-0.0127393 -0.0956214 0)
(-0.00556086 -0.0973307 0)
(-0.00079847 -0.097452 0)
(0.00226699 -0.0964637 0)
(0.000414435 -0.0014929 0)
(0.0025602 -0.00148879 0)
(0.00492925 -0.00147795 0)
(0.00753249 -0.00145988 0)
(0.0103789 -0.00143326 0)
(0.0134694 -0.00139654 0)
(0.0167924 -0.00134576 0)
(0.0203074 -0.00127492 0)
(0.0239359 -0.00117872 0)
(0.0275442 -0.00105349 0)
(0.0309331 -0.000898489 0)
(0.0338236 -0.0007129 0)
(0.0358386 -0.000496258 0)
(0.0364811 -0.000243835 0)
(0.0350968 4.34131e-05 0)
(0.0308753 0.000406753 0)
(0.0228915 0.000864916 0)
(0.0103788 0.00142122 0)
(-0.00680547 0.00193085 0)
(-0.0266247 0.00207517 0)
(-0.0451622 0.00174155 0)
(-0.0569534 0.000907729 0)
(-0.0585933 0.00014239 0)
(-0.0526872 -0.00030085 0)
(-0.0424429 -0.000478997 0)
(-0.0307217 -0.000496597 0)
(-0.0196703 -0.000421628 0)
(-0.00912765 -0.000388635 0)
(-0.000375583 -0.000260218 0)
(0.00458392 -5.42783e-05 0)
(0.000187883 -0.00386141 0)
(0.00147891 -0.00385645 0)
(0.00292445 -0.00384097 0)
(0.0045517 -0.00381359 0)
(0.00639121 -0.00376903 0)
(0.00846346 -0.0036971 0)
(0.0107666 -0.00357833 0)
(0.0132586 -0.0033892 0)
(0.0158501 -0.00310511 0)
(0.0183872 -0.00270702 0)
(0.020643 -0.00217677 0)
(0.0222864 -0.0015035 0)
(0.0228568 -0.000671625 0)
(0.0217498 0.000325946 0)
(0.0182237 0.00148526 0)
(0.0114851 0.00277753 0)
(0.000856375 0.00410955 0)
(-0.0140501 0.00534768 0)
(-0.0326018 0.00614892 0)
(-0.0519385 0.00584305 0)
(-0.0677087 0.00416473 0)
(-0.0746595 0.00144477 0)
(-0.0709969 -0.000653092 0)
(-0.0602134 -0.00173982 0)
(-0.0455332 -0.002052 0)
(-0.0298973 -0.00192845 0)
(-0.0157705 -0.00155788 0)
(-0.00319744 -0.00130436 0)
(0.00606338 -0.000711138 0)
(0.00926647 0.000233586 0)
(3.9574e-05 -0.00492862 0)
(0.000705683 -0.0049419 0)
(0.00147848 -0.0049694 0)
(0.00240171 -0.00500606 0)
(0.00351593 -0.0050328 0)
(0.00484163 -0.00501607 0)
(0.00636423 -0.00491104 0)
(0.00802346 -0.00467327 0)
(0.0097175 -0.00426646 0)
(0.0113026 -0.00366474 0)
(0.0125836 -0.00284246 0)
(0.0133022 -0.00177683 0)
(0.0131034 -0.000445942 0)
(0.0115163 0.0011698 0)
(0.00794031 0.00304153 0)
(0.00167962 0.00510592 0)
(-0.00794551 0.007176 0)
(-0.0215083 0.00900727 0)
(-0.0384601 0.00998453 0)
(-0.0560525 0.00915113 0)
(-0.0701041 0.00609625 0)
(-0.0756437 0.00154674 0)
(-0.0709205 -0.0017428 0)
(-0.0594185 -0.00339097 0)
(-0.0441618 -0.00378515 0)
(-0.0280821 -0.00347319 0)
(-0.0137286 -0.00275344 0)
(-0.00114282 -0.00223235 0)
(0.00787485 -0.00109 0)
(0.0105172 0.000679934 0)
(5.92792e-05 -0.00575707 0)
(0.000816464 -0.00579185 0)
(0.0016788 -0.00586978 0)
(0.00267518 -0.00597601 0)
(0.00382672 -0.00607201 0)
(0.00513243 -0.00609747 0)
(0.00656039 -0.00598379 0)
(0.0080427 -0.00567397 0)
(0.00948265 -0.00512945 0)
(0.0107505 -0.00432342 0)
(0.0116781 -0.00323261 0)
(0.0120416 -0.00182634 0)
(0.0115415 -7.15626e-05 0)
(0.00977173 0.00204567 0)
(0.00620263 0.00450911 0)
(0.000165384 0.00724434 0)
(-0.00907228 0.0100285 0)
(-0.0222684 0.0124473 0)
(-0.0390467 0.0136456 0)
(-0.056621 0.0123508 0)
(-0.0707487 0.00795583 0)
(-0.0762553 0.00157094 0)
(-0.0711435 -0.00288084 0)
(-0.0593736 -0.00507513 0)
(-0.0439201 -0.00554147 0)
(-0.0277154 -0.00503149 0)
(-0.0133508 -0.00394755 0)
(-0.000753135 -0.00315233 0)
(0.00824957 -0.00145295 0)
(0.0109196 0.00116089 0)
(0.000115378 -0.00687089 0)
(0.00112218 -0.00691278 0)
(0.00223575 -0.00700462 0)
(0.0034589 -0.00712355 0)
(0.00478672 -0.0072183 0)
(0.00619936 -0.00721393 0)
(0.00766176 -0.00703076 0)
(0.0091185 -0.00660623 0)
(0.0104938 -0.00589995 0)
(0.0116785 -0.00488324 0)
(0.0125198 -0.00352771 0)
(0.0128043 -0.00179508 0)
(0.0122386 0.000355885 0)
(0.0104236 0.00294967 0)
(0.00683562 0.00597138 0)
(0.000798922 0.00935436 0)
(-0.00844782 0.0128538 0)
(-0.0218297 0.0158909 0)
(-0.0390865 0.0173769 0)
(-0.0571921 0.0156461 0)
(-0.0717317 0.00986673 0)
(-0.0772671 0.00155084 0)
(-0.071628 -0.00405627 0)
(-0.0595387 -0.00678749 0)
(-0.0438849 -0.00731427 0)
(-0.027574 -0.00659692 0)
(-0.0132356 -0.00513786 0)
(-0.000614296 -0.00407608 0)
(0.00841507 -0.00181544 0)
(0.0112421 0.00165211 0)
(0.000152366 -0.00827448 0)
(0.00134048 -0.00830829 0)
(0.00263682 -0.008376 0)
(0.00402671 -0.00845178 0)
(0.00548896 -0.00848115 0)
(0.00699535 -0.00838808 0)
(0.0085131 -0.00809252 0)
(0.0099998 -0.00753026 0)
(0.0113963 -0.00665498 0)
(0.0126051 -0.00542964 0)
(0.0134818 -0.00381385 0)
(0.0138104 -0.00175944 0)
(0.0132904 0.000783808 0)
(0.0115122 0.00385635 0)
(0.0079373 0.00744021 0)
(0.00187058 0.01148 0)
(-0.00746775 0.0157164 0)
(-0.0212041 0.0194157 0)
(-0.0391704 0.0212585 0)
(-0.0579801 0.0190903 0)
(-0.0730152 0.0118442 0)
(-0.0785646 0.00146536 0)
(-0.0722236 -0.00527949 0)
(-0.0597477 -0.00853565 0)
(-0.0438552 -0.00910582 0)
(-0.0274202 -0.00816863 0)
(-0.0131252 -0.00632172 0)
(-0.000479649 -0.00500534 0)
(0.00858442 -0.00217944 0)
(0.0116268 0.0021523 0)
(0.000168642 -0.00985531 0)
(0.00145961 -0.00987267 0)
(0.00286363 -0.00989674 0)
(0.00435999 -0.009901 0)
(0.00592252 -0.00983397 0)
(0.00752097 -0.00962501 0)
(0.00912489 -0.0091989 0)
(0.0106964 -0.00849041 0)
(0.0121804 -0.00744448 0)
(0.0134847 -0.0060116 0)
(0.0144622 -0.00413699 0)
(0.0148954 -0.00175767 0)
(0.0144717 0.00118617 0)
(0.0127703 0.0047475 0)
(0.00923513 0.00890634 0)
(0.00314603 0.0136312 0)
(-0.00628526 0.01863 0)
(-0.0204579 0.0230451 0)
(-0.0393023 0.025327 0)
(-0.0589607 0.0227145 0)
(-0.0745779 0.0138971 0)
(-0.0801511 0.001292 0)
(-0.0729093 -0.0065595 0)
(-0.0599868 -0.0103292 0)
(-0.0438147 -0.0109208 0)
(-0.0272308 -0.00974784 0)
(-0.0129925 -0.00749749 0)
(-0.000319099 -0.00594154 0)
(0.00878485 -0.00254546 0)
(0.0120973 0.00266311 0)
(0.000174413 -0.0115351 0)
(0.00153042 -0.0115349 0)
(0.00300702 -0.0115129 0)
(0.00458546 -0.0114405 0)
(0.00624106 -0.0112709 0)
(0.00794431 -0.0109408 0)
(0.00966417 -0.0103799 0)
(0.0113612 -0.00952155 0)
(0.0129772 -0.00830121 0)
(0.0144183 -0.00665669 0)
(0.0155351 -0.00451767 0)
(0.0161041 -0.00180762 0)
(0.0158066 0.00154874 0)
(0.0142035 0.00561488 0)
(0.0107239 0.0103636 0)
(0.0046222 0.015804 0)
(-0.00488482 0.0215991 0)
(-0.0195655 0.0267935 0)
(-0.0394677 0.0296164 0)
(-0.0601379 0.0265508 0)
(-0.0764304 0.0160349 0)
(-0.0820516 0.00100904 0)
(-0.0736696 -0.00790483 0)
(-0.0602532 -0.0121792 0)
(-0.0437621 -0.0127642 0)
(-0.0270025 -0.0113361 0)
(-0.0128364 -0.00866366 0)
(-0.000131496 -0.00688652 0)
(0.00901822 -0.00291398 0)
(0.0126612 0.00318639 0)
(0.000177156 -0.0132918 0)
(0.00159286 -0.013274 0)
(0.00313836 -0.0132076 0)
(0.00479955 -0.0130642 0)
(0.00655521 -0.0127987 0)
(0.00837744 -0.012352 0)
(0.0102343 -0.0116568 0)
(0.0120806 -0.0106449 0)
(0.0138538 -0.00924486 0)
(0.0154563 -0.00738154 0)
(0.0167359 -0.00496945 0)
(0.0174635 -0.00191749 0)
(0.0173136 0.00186289 0)
(0.0158272 0.00645507 0)
(0.0124135 0.0118074 0)
(0.00631181 0.0179965 0)
(-0.00324295 0.0246233 0)
(-0.0185011 0.030673 0)
(-0.0396586 0.0341625 0)
(-0.0615284 0.030629 0)
(-0.0785901 0.0182655 0)
(-0.0842994 0.000585684 0)
(-0.0744841 -0.00932563 0)
(-0.0605448 -0.0140987 0)
(-0.0436968 -0.0146414 0)
(-0.0267331 -0.0129352 0)
(-0.012657 -0.00981873 0)
(8.37988e-05 -0.00784215 0)
(0.00928356 -0.00328561 0)
(0.0133235 0.00372388 0)
(0.000180412 -0.0151217 0)
(0.00166207 -0.0150915 0)
(0.00328725 -0.0149903 0)
(0.00504464 -0.0147845 0)
(0.00691525 -0.01443 0)
(0.00887224 -0.0138711 0)
(0.0108802 -0.0130426 0)
(0.0128907 -0.0118724 0)
(0.0148365 -0.0102861 0)
(0.0166165 -0.00819588 0)
(0.0180778 -0.00550167 0)
(0.0189848 -0.00209687 0)
(0.019003 0.00212145 0)
(0.0176504 0.00726448 0)
(0.014311 0.0132304 0)
(0.00822504 0.020203 0)
(-0.0013322 0.0277168 0)
(-0.0172351 0.0346953 0)
(-0.0398625 0.0390045 0)
(-0.0631591 0.0349775 0)
(-0.0810795 0.0205953 0)
(-0.0869399 -1.15577e-06 0)
(-0.075327 -0.0108348 0)
(-0.0608617 -0.0161026 0)
(-0.0436177 -0.0165574 0)
(-0.0264199 -0.0145474 0)
(-0.0124561 -0.0109609 0)
(0.000325443 -0.00881058 0)
(0.00957889 -0.00366103 0)
(0.0140908 0.00427719 0)
(0.000191087 -0.0170535 0)
(0.00176581 -0.0170103 0)
(0.00348826 -0.0168746 0)
(0.00535268 -0.016611 0)
(0.00734796 -0.0161743 0)
(0.00944896 -0.0155086 0)
(0.0116202 -0.0145457 0)
(0.0138069 -0.0132131 0)
(0.015936 -0.0114325 0)
(0.0179064 -0.00910824 0)
(0.0195668 -0.00612481 0)
(0.0206733 -0.00235541 0)
(0.0208829 0.00231513 0)
(0.0196824 0.00804048 0)
(0.0164196 0.014627 0)
(0.0103705 0.0224244 0)
(0.000878874 0.0308651 0)
(-0.0157302 0.0388732 0)
(-0.0400575 0.0441841 0)
(-0.065072 0.0396297 0)
(-0.0839271 0.0230267 0)
(-0.090029 -0.000791054 0)
(-0.0761678 -0.0124495 0)
(-0.0612073 -0.0182078 0)
(-0.0435236 -0.0185159 0)
(-0.0260594 -0.0161753 0)
(-0.0122345 -0.0120881 0)
(0.00059349 -0.0097941 0)
(0.00990196 -0.00404106 0)
(0.0149701 0.00484779 0)
(0.000199301 -0.0191064 0)
(0.00186582 -0.0190475 0)
(0.00370002 -0.0188776 0)
(0.00569777 -0.0185626 0)
(0.00784541 -0.0180491 0)
(0.0101154 -0.017275 0)
(0.0124657 -0.0161734 0)
(0.0148366 -0.0146732 0)
(0.0171567 -0.0126909 0)
(0.0193289 -0.0101259 0)
(0.0212064 -0.00684696 0)
(0.0225341 -0.00270218 0)
(0.0229615 0.00243415 0)
(0.0219333 0.00878341 0)
(0.0187357 0.0159857 0)
(0.0127649 0.0246659 0)
(0.00342631 0.0340539 0)
(-0.0139348 0.0432159 0)
(-0.0402104 0.0497506 0)
(-0.0673217 0.0446306 0)
(-0.0871554 0.0255569 0)
(-0.0936331 -0.00182015 0)
(-0.0769801 -0.0141942 0)
(-0.0615908 -0.0204328 0)
(-0.043413 -0.0205183 0)
(-0.0256477 -0.0178217 0)
(-0.0119941 -0.0131981 0)
(0.000886686 -0.0107955 0)
(0.0102506 -0.00442658 0)
(0.0159694 0.00543688 0)
(0.000215214 -0.021279 0)
(0.0020023 -0.0212182 0)
(0.00397665 -0.0210298 0)
(0.00612924 -0.0206625 0)
(0.00843774 -0.0200666 0)
(0.0108765 -0.0191815 0)
(0.0134063 -0.0179382 0)
(0.0159748 -0.0162588 0)
(0.018504 -0.0140645 0)
(0.020886 -0.0112554 0)
(0.0229972 -0.00767813 0)
(0.0245727 -0.003149 0)
(0.025248 0.00246628 0)
(0.0244197 0.00949876 0)
(0.0212507 0.0172939 0)
(0.0154474 0.0269434 0)
(0.00636009 0.0372571 0)
(-0.0117478 0.0477224 0)
(-0.040275 0.0557679 0)
(-0.0698963 0.050043 0)
(-0.0907332 0.0281664 0)
(-0.0978195 -0.00313296 0)
(-0.0777863 -0.0161073 0)
(-0.0620352 -0.0227898 0)
(-0.0432846 -0.0225633 0)
(-0.0251795 -0.0194903 0)
(-0.0117373 -0.0142882 0)
(0.00120482 -0.0118176 0)
(0.0106213 -0.00481856 0)
(0.0170979 0.00604551 0)
(0.00024454 -0.0236377 0)
(0.00218876 -0.0235638 0)
(0.00430874 -0.0233433 0)
(0.00660889 -0.0229218 0)
(0.00909257 -0.022243 0)
(0.0117325 -0.0212445 0)
(0.0144842 -0.0198431 0)
(0.0172555 -0.017974 0)
(0.0199826 -0.0155575 0)
(0.0225819 -0.0125001 0)
(0.024936 -0.00862958 0)
(0.0267907 -0.00370821 0)
(0.0277506 0.00239231 0)
(0.0271532 0.010209 0)
(0.0240159 0.0185151 0)
(0.0183716 0.0292782 0)
(0.00975361 0.040339 0)
(-0.00886936 0.0524374 0)
(-0.0401108 0.0623452 0)
(-0.0724248 0.0559383 0)
(-0.0945622 0.030785 0)
(-0.102583 -0.00478411 0)
(-0.0788318 -0.0182543 0)
(-0.0626051 -0.0252669 0)
(-0.0431362 -0.0246463 0)
(-0.0246485 -0.0211846 0)
(-0.011467 -0.0153553 0)
(0.00154643 -0.0128637 0)
(0.0110117 -0.00521811 0)
(0.0183666 0.00667445 0)
(0.00026796 -0.0262028 0)
(0.00235991 -0.0260965 0)
(0.0046532 -0.0258203 0)
(0.00714947 -0.0253427 0)
(0.00984589 -0.0245864 0)
(0.0127033 -0.0234642 0)
(0.0156568 -0.0219086 0)
(0.0186699 -0.0198229 0)
(0.0216016 -0.0171742 0)
(0.0243959 -0.0138671 0)
(0.0270247 -0.00971158 0)
(0.0291878 -0.00439627 0)
(0.0304888 0.00217927 0)
(0.0301288 0.0109401 0)
(0.0270816 0.0196588 0)
(0.0219573 0.0314384 0)
(0.014061 0.0429198 0)
(-0.0053807 0.0575624 0)
(-0.0388946 0.0697847 0)
(-0.0743599 0.0623085 0)
(-0.0987133 0.0332699 0)
(-0.107343 -0.00684611 0)
(-0.0808961 -0.0207414 0)
(-0.0633795 -0.0278099 0)
(-0.0429622 -0.0267602 0)
(-0.0240465 -0.0229088 0)
(-0.0111868 -0.016396 0)
(0.00191133 -0.0139378 0)
(0.0114173 -0.00562659 0)
(0.0197875 0.00732421 0)
(0.000287457 -0.0289248 0)
(0.0025144 -0.0288223 0)
(0.00500681 -0.0285364 0)
(0.00775247 -0.0280056 0)
(0.0106961 -0.0271532 0)
(0.0138032 -0.0258826 0)
(0.0170151 -0.0241192 0)
(0.0201905 -0.0218251 0)
(0.0233463 -0.0188964 0)
(0.0263644 -0.0153397 0)
(0.0292327 -0.0109391 0)
(0.0317633 -0.00523108 0)
(0.0334519 0.00179816 0)
(0.0334453 0.0116319 0)
(0.0296742 0.0209609 0)
(0.0276349 0.0331962 0)
(0.0201498 0.0450404 0)
(-0.0031724 0.0629761 0)
(-0.0349119 0.0786676 0)
(-0.0770156 0.0689862 0)
(-0.103202 0.0354453 0)
(-0.109198 -0.00945255 0)
(-0.0845575 -0.0236278 0)
(-0.0641992 -0.030328 0)
(-0.0427516 -0.0288996 0)
(-0.023364 -0.024667 0)
(-0.0109012 -0.0174079 0)
(0.00229838 -0.0150437 0)
(0.0118336 -0.00604521 0)
(0.0213739 0.00799496 0)
(0.000342066 -0.031854 0)
(0.0028058 -0.0317691 0)
(0.00551566 -0.0314886 0)
(0.00846343 -0.0308905 0)
(0.011621 -0.0299046 0)
(0.0149416 -0.0284945 0)
(0.0184209 -0.026537 0)
(0.0219606 -0.0239262 0)
(0.0252589 -0.0207502 0)
(0.0284358 -0.0169309 0)
(0.0315801 -0.0123069 0)
(0.0344742 -0.00626345 0)
(0.0365473 0.00128982 0)
(0.0372738 0.01227 0)
(0.0323743 0.0221209 0)
(0.0307842 0.0356207 0)
(0.0246557 0.0473903 0)
(-0.00222138 0.0687068 0)
(-0.0288067 0.0891823 0)
(-0.0824033 0.0760278 0)
(-0.106387 0.036877 0)
(-0.101254 -0.0126552 0)
(-0.0870574 -0.0265275 0)
(-0.0645605 -0.0328581 0)
(-0.042488 -0.031068 0)
(-0.0225894 -0.0264632 0)
(-0.0106155 -0.0183868 0)
(0.00270732 -0.0161864 0)
(0.0122559 -0.00647563 0)
(0.0231418 0.00868654 0)
(0.000419679 -0.0351867 0)
(0.0031845 -0.0350443 0)
(0.00614332 -0.0346651 0)
(0.00930997 -0.0339831 0)
(0.0127617 -0.0328981 0)
(0.0164547 -0.0312933 0)
(0.0201464 -0.0291324 0)
(0.0238092 -0.0262762 0)
(0.0273608 -0.0226489 0)
(0.030554 -0.0185793 0)
(0.0337152 -0.0138861 0)
(0.0374888 -0.00750545 0)
(0.0397573 0.000785643 0)
(0.0409864 0.0127425 0)
(0.0350379 0.0234178 0)
(0.0371156 0.0380507 0)
(0.0304682 0.0467579 0)
(0.00255692 0.0743475 0)
(-0.0264539 0.0998964 0)
(-0.0894042 0.0840942 0)
(-0.104751 0.0362561 0)
(-0.0784287 -0.0160722 0)
(-0.0834431 -0.0283518 0)
(-0.0647107 -0.0356675 0)
(-0.0421647 -0.033277 0)
(-0.0217098 -0.0283012 0)
(-0.0103361 -0.0193219 0)
(0.00313732 -0.0173716 0)
(0.0126781 -0.00691944 0)
(0.0251078 0.00939826 0)
(0.000447996 -0.0388253 0)
(0.00335447 -0.0386106 0)
(0.00655744 -0.0381158 0)
(0.0100594 -0.0373554 0)
(0.0138324 -0.0362142 0)
(0.0178525 -0.034439 0)
(0.0220389 -0.0318614 0)
(0.0259676 -0.0285935 0)
(0.0294942 -0.0246051 0)
(0.032553 -0.020112 0)
(0.0343938 -0.0154991 0)
(0.0400054 -0.00933872 0)
(0.0420844 0.000152559 0)
(0.0440498 0.0128947 0)
(0.0379418 0.0246224 0)
(0.0347709 0.041559 0)
(0.0332431 0.0457502 0)
(0.0224387 0.0821741 0)
(-0.0237039 0.108234 0)
(-0.0978644 0.0934887 0)
(-0.0931086 0.0316496 0)
(-0.0486852 -0.0187431 0)
(-0.0739921 -0.0281332 0)
(-0.065397 -0.0387138 0)
(-0.0417702 -0.0355307 0)
(-0.0207118 -0.0301836 0)
(-0.0100692 -0.0202 0)
(0.00358882 -0.0186051 0)
(0.013094 -0.00737902 0)
(0.0272919 0.0101291 0)
(0.000485569 -0.0425442 0)
(0.00355146 -0.0423776 0)
(0.00705345 -0.0419417 0)
(0.0109894 -0.0411189 0)
(0.0151855 -0.0397602 0)
(0.0194455 -0.0377727 0)
(0.0238243 -0.0349994 0)
(0.028406 -0.0312023 0)
(0.0323752 -0.026462 0)
(0.0346059 -0.0209286 0)
(0.03477 -0.016321 0)
(0.0410225 -0.0127173 0)
(0.0468257 0.000141868 0)
(0.0459779 0.011505 0)
(0.0431935 0.0267764 0)
(0.0475316 0.0418579 0)
(0.0470538 0.0468142 0)
(0.0255535 0.0944416 0)
(-0.012266 0.120318 0)
(-0.0988349 0.105061 0)
(-0.0709308 0.0207277 0)
(-0.0207575 -0.0182848 0)
(-0.0621316 -0.0260399 0)
(-0.065086 -0.0414057 0)
(-0.0412689 -0.0378489 0)
(-0.0195802 -0.0321109 0)
(-0.00982111 -0.0210027 0)
(0.00406136 -0.0198939 0)
(0.0134961 -0.00785647 0)
(0.0297155 0.0108773 0)
(0.000625289 -0.0466314 0)
(0.00414612 -0.0465232 0)
(0.00802552 -0.0461672 0)
(0.0122641 -0.0453098 0)
(0.0168694 -0.0437415 0)
(0.0217842 -0.0413743 0)
(0.0266361 -0.0382388 0)
(0.0311965 -0.0341073 0)
(0.035362 -0.0281833 0)
(0.0374475 -0.0209661 0)
(0.0398845 -0.0179004 0)
(0.0476098 -0.0171978 0)
(0.0538345 0.000165747 0)
(0.0449683 0.0116471 0)
(0.0503757 0.0265631 0)
(0.0453043 0.0421545 0)
(0.0532021 0.0534357 0)
(0.0336385 0.107999 0)
(-0.0298325 0.135746 0)
(-0.101005 0.114056 0)
(-0.0467225 0.0038829 0)
(0.00730087 -0.0119759 0)
(-0.0469071 -0.0230579 0)
(-0.0603203 -0.0429555 0)
(-0.0406785 -0.0402574 0)
(-0.0182992 -0.0340804 0)
(-0.00959993 -0.0217066 0)
(0.00455669 -0.0212394 0)
(0.013876 -0.00835442 0)
(0.0324032 0.0116408 0)
(0.000798085 -0.051472 0)
(0.0048267 -0.051257 0)
(0.00908456 -0.0507069 0)
(0.0135281 -0.0496889 0)
(0.0182904 -0.0480838 0)
(0.0235604 -0.0456255 0)
(0.0291685 -0.0418244 0)
(0.0342529 -0.0368251 0)
(0.0388382 -0.0299634 0)
(0.0415324 -0.022306 0)
(0.0498246 -0.0222639 0)
(0.057494 -0.0207167 0)
(0.0627454 0.000657946 0)
(0.0489698 0.0144415 0)
(0.0454352 0.0258608 0)
(0.0606965 0.0425393 0)
(0.0559 0.0594145 0)
(0.0538265 0.113803 0)
(-0.00294858 0.15973 0)
(-0.11211 0.100982 0)
(-0.0437778 -0.0190669 0)
(0.0170219 -0.00440028 0)
(-0.0214055 -0.0209318 0)
(-0.043223 -0.0419966 0)
(-0.0398343 -0.042606 0)
(-0.016849 -0.0360841 0)
(-0.00941562 -0.0222856 0)
(0.00507726 -0.0226501 0)
(0.0142247 -0.00887645 0)
(0.0353827 0.0124165 0)
(0.000861251 -0.0567673 0)
(0.00499395 -0.0564074 0)
(0.00951213 -0.055605 0)
(0.0144423 -0.0543636 0)
(0.0197989 -0.0526293 0)
(0.02546 -0.0500886 0)
(0.0312053 -0.0458671 0)
(0.037091 -0.0400086 0)
(0.0441165 -0.0319938 0)
(0.0512138 -0.0266539 0)
(0.0557315 -0.0226037 0)
(0.0492864 -0.0254489 0)
(0.0695662 -0.00109332 0)
(0.0557296 0.0235099 0)
(0.0496759 0.0217082 0)
(0.0568217 0.0391005 0)
(0.0792175 0.0577944 0)
(0.056438 0.124156 0)
(-0.0139062 0.191122 0)
(0.172515 0.0925656 0)
(0.604275 0.0122432 0)
(-0.00295152 -0.0109772 0)
(0.0126133 -0.0201501 0)
(-0.00302473 -0.0366047 0)
(-0.0362661 -0.0440282 0)
(-0.015184 -0.0380963 0)
(-0.00927786 -0.0227115 0)
(0.00562699 -0.0241392 0)
(0.0145317 -0.00942623 0)
(0.0386854 0.0132018 0)
(0.000846997 -0.0618268 0)
(0.0046906 -0.0615217 0)
(0.00923526 -0.060883 0)
(0.0147353 -0.0598085 0)
(0.021194 -0.0580722 0)
(0.0282901 -0.0551722 0)
(0.0348356 -0.0501147 0)
(0.0398448 -0.0435886 0)
(0.0488728 -0.034462 0)
(0.0624324 -0.0312415 0)
(0.0510993 -0.0152222 0)
(0.0263439 -0.0274411 0)
(0.0696205 -0.0151916 0)
(0.0644766 0.0322231 0)
(0.0548565 0.0232191 0)
(0.0631753 0.0359174 0)
(0.0842161 0.0508197 0)
(0.0664324 0.138534 0)
(0.0577627 0.180028 0)
(0.308914 -0.0303592 0)
(0.974845 0.119887 0)
(-0.0933391 -0.00886275 0)
(-0.0502263 -0.029351 0)
(0.0490031 -0.0288659 0)
(-0.0198027 -0.0423975 0)
(-0.0130248 -0.0399827 0)
(-0.00919705 -0.0229548 0)
(0.0062112 -0.02572 0)
(0.0147861 -0.0100085 0)
(0.0423501 0.0139977 0)
(0.000942271 -0.0664407 0)
(0.00460094 -0.066385 0)
(0.0090548 -0.0663311 0)
(0.0146081 -0.0658636 0)
(0.0212901 -0.0645319 0)
(0.0292473 -0.0617617 0)
(0.0375412 -0.055645 0)
(0.0418973 -0.0465415 0)
(0.0492014 -0.0363886 0)
(0.068144 -0.0343637 0)
(0.0536803 -0.00450834 0)
(0.0227712 -0.0246331 0)
(0.0515033 -0.0313105 0)
(0.0825292 0.0352763 0)
(0.0508467 0.020422 0)
(0.072262 0.0311522 0)
(0.0764194 0.0486238 0)
(0.072935 0.147428 0)
(0.0475049 0.159311 0)
(0.523635 0.0188725 0)
(0.384615 0.188949 0)
(-0.385079 0.0483037 0)
(-0.718856 -0.0479482 0)
(-0.0382293 -0.0509525 0)
(0.0256013 -0.0354421 0)
(-0.00846348 -0.0410004 0)
(-0.00917365 -0.0229862 0)
(0.00683676 -0.0274072 0)
(0.0149751 -0.0106293 0)
(0.0464379 0.0148147 0)
(0.00130161 -0.0711456 0)
(0.00537409 -0.071255 0)
(0.00993257 -0.0716249 0)
(0.0150018 -0.0715268 0)
(0.0204809 -0.070539 0)
(0.0270831 -0.0687368 0)
(0.0355412 -0.0633073 0)
(0.0408588 -0.0506033 0)
(0.0442892 -0.0363145 0)
(0.0618291 -0.0379927 0)
(0.0698581 9.90947e-05 0)
(0.0285048 -0.00713431 0)
(0.0481498 -0.057382 0)
(0.0936256 0.0383537 0)
(0.0603604 0.0162024 0)
(0.0797095 0.0300348 0)
(0.0883867 0.0468219 0)
(0.0821607 0.150293 0)
(0.185497 0.116252 0)
(0.289901 -0.0616184 0)
(-0.0315573 0.258305 0)
(-0.535799 0.117874 0)
(-0.608032 -0.0327963 0)
(-0.678782 -0.154033 0)
(0.0997489 -0.0344513 0)
(0.00697235 -0.0389529 0)
(-0.00908684 -0.0227499 0)
(0.00752067 -0.029214 0)
(0.0150848 -0.0112959 0)
(0.0510395 0.0156605 0)
(0.00198701 -0.0769925 0)
(0.00705548 -0.0768624 0)
(0.0121432 -0.0768639 0)
(0.0168875 -0.0761763 0)
(0.0208036 -0.0746129 0)
(0.0241881 -0.0736184 0)
(0.0295171 -0.0704308 0)
(0.0353729 -0.0570126 0)
(0.0407253 -0.0363943 0)
(0.0419711 -0.0435406 0)
(0.0872519 -0.00725372 0)
(0.0743072 0.0114007 0)
(0.071038 -0.0838409 0)
(0.101883 0.0512448 0)
(0.0548018 0.0114358 0)
(0.107825 0.0286669 0)
(0.117323 0.0500621 0)
(0.0755221 0.158508 0)
(0.222725 0.0957039 0)
(-0.56958 -0.0389489 0)
(-0.363905 0.320419 0)
(-0.455858 0.135424 0)
(-0.40588 -0.0317084 0)
(-0.671378 -0.164482 0)
(-0.413215 -0.114569 0)
(0.0505643 -0.0292378 0)
(-0.00782587 -0.0220331 0)
(0.00837542 -0.031138 0)
(0.0150992 -0.0120179 0)
(0.0562151 0.0165639 0)
(0.00275885 -0.084125 0)
(0.00827391 -0.083404 0)
(0.013621 -0.0824119 0)
(0.0184133 -0.0804632 0)
(0.0221733 -0.0772559 0)
(0.0237111 -0.0755855 0)
(0.0251258 -0.0741486 0)
(0.0311239 -0.0614867 0)
(0.0415778 -0.0391763 0)
(0.0299231 -0.0593089 0)
(0.0929595 -0.0130957 0)
(0.0756818 0.00481345 0)
(0.117632 -0.08022 0)
(0.0783618 0.0526649 0)
(0.108168 0.0156065 0)
(0.108545 0.0242541 0)
(0.115963 0.0450331 0)
(0.0759988 0.137334 0)
(0.164879 0.123953 0)
(0.241093 -0.0609698 0)
(-0.524684 0.35668 0)
(-0.286412 0.116179 0)
(-0.277267 -0.0181406 0)
(-0.500612 -0.127222 0)
(-0.852844 -0.17651 0)
(0.147891 -0.0321484 0)
(0.00135687 -0.0196902 0)
(0.0104386 -0.033038 0)
(0.0150245 -0.0128036 0)
(0.0619088 0.0175542 0)
(0.00342819 -0.0908567 0)
(0.00758501 -0.0894501 0)
(0.011525 -0.0874899 0)
(0.0152353 -0.0847526 0)
(0.0191971 -0.0807335 0)
(0.0225321 -0.07745 0)
(0.0247639 -0.0765012 0)
(0.0393472 -0.0626398 0)
(0.0440004 -0.0459951 0)
(0.0645345 -0.0772912 0)
(0.0914605 -0.026583 0)
(0.117628 -0.00218304 0)
(0.141189 -0.0736319 0)
(0.06496 0.0526605 0)
(0.172745 0.0135084 0)
(0.119047 0.000927903 0)
(0.18246 0.0609813 0)
(0.186647 0.0978058 0)
(0.0649594 0.188624 0)
(-0.0460621 0.0423344 0)
(-0.527596 0.363562 0)
(-0.151695 0.0848637 0)
(-0.157345 -0.00598333 0)
(-0.343671 -0.0824502 0)
(-0.770204 -0.171138 0)
(-0.39785 -0.113624 0)
(0.0406373 -0.0135765 0)
(0.0206965 -0.0339352 0)
(0.0153388 -0.0135995 0)
(0.0681162 0.0184686 0)
(0.00430617 -0.0949084 0)
(0.00591323 -0.0928909 0)
(0.00747992 -0.0904277 0)
(0.00958074 -0.0878539 0)
(0.0132703 -0.085381 0)
(0.020135 -0.0827199 0)
(0.0294187 -0.0819949 0)
(0.0460612 -0.0738015 0)
(0.0423454 -0.0599016 0)
(0.0735495 -0.0828865 0)
(0.0650731 -0.0291594 0)
(0.123269 -0.0244737 0)
(0.0915717 -0.0571271 0)
(0.104561 0.0437677 0)
(0.199346 -0.00284323 0)
(0.0992458 0.0166339 0)
(0.0335536 0.053442 0)
(0.172149 0.0867764 0)
(0.137321 0.1882 0)
(-0.0688945 0.0684366 0)
(-0.421725 0.351834 0)
(-0.0701845 0.0561304 0)
(-0.0609191 0.00230851 0)
(-0.175098 -0.0479767 0)
(-0.411728 -0.122676 0)
(-0.785463 -0.274437 0)
(0.133617 -0.01711 0)
(0.0645218 -0.0299411 0)
(0.0203822 -0.0141029 0)
(0.073459 0.0185577 0)
(-0.0593953 0.0848147 0)
(-0.0793879 -0.044369 0)
(-0.0395442 -0.00446061 0)
(-0.0791778 -0.0255281 0)
(0.864997 -0.186197 0)
(0.384302 -0.109499 0)
(0.200439 -0.0954539 0)
(0.122191 -0.0912925 0)
(0.10346 0.0760774 0)
(0.0915766 0.226062 0)
(0.416915 0.442989 0)
(-0.997152 -0.0971414 0)
(0.11104 0.19752 0)
(-0.069512 0.089789 0)
(-0.0647157 0.00832135 0)
(-0.125685 0.019749 0)
(-0.131519 0.0346263 0)
(-0.105334 0.0104799 0)
(-0.0972042 -0.0541398 0)
(-0.0900899 -0.0216209 0)
(-0.0499043 -0.062398 0)
(-0.0740978 -0.0696709 0)
(-0.0675413 -0.0601841 0)
(-0.0568695 -0.0828522 0)
(-0.0392604 -0.0917993 0)
(-0.0230272 -0.0975931 0)
(-0.0099161 -0.101353 0)
(-0.00139056 -0.101303 0)
(0.00302662 -0.0997543 0)
(0.00470705 -0.0976259 0)
(-0.142641 0.0838908 0)
(-0.0713673 -0.0427329 0)
(-0.0355584 -0.00746131 0)
(0.121233 -0.019976 0)
(0.63968 -0.198582 0)
(0.290933 -0.0951185 0)
(0.140675 -0.0882031 0)
(0.0691425 -0.0880101 0)
(0.0466948 0.0774288 0)
(0.039072 0.225056 0)
(0.337406 0.44631 0)
(-1.09712 0.00706845 0)
(-0.141915 0.154724 0)
(-0.0483405 0.122251 0)
(-0.0349689 0.016207 0)
(-0.119934 0.0271954 0)
(-0.113358 0.0165683 0)
(-0.0123536 0.0113794 0)
(-0.0597973 -0.0438696 0)
(-0.102232 -0.0377546 0)
(-0.0538703 -0.0576676 0)
(-0.0813006 -0.0646799 0)
(-0.0804255 -0.0717252 0)
(-0.0574045 -0.0879689 0)
(-0.0435269 -0.0996143 0)
(-0.0236462 -0.105674 0)
(-0.00822348 -0.107081 0)
(0.00115356 -0.105133 0)
(0.00535248 -0.101602 0)
(0.00613934 -0.0980446 0)
(-0.232872 0.0784788 0)
(-0.0721433 -0.0411646 0)
(-0.0378055 -0.00785073 0)
(0.257376 -0.0558636 0)
(0.675607 -0.177865 0)
(0.205397 -0.0811776 0)
(0.087539 -0.0819739 0)
(0.0218278 -0.0838475 0)
(-0.00174416 0.0770831 0)
(-0.00286735 0.218739 0)
(0.249588 0.456557 0)
(-0.415504 0.103171 0)
(-0.392541 -0.126642 0)
(0.0960431 0.112348 0)
(0.0833685 0.0337333 0)
(-0.0772031 0.0337287 0)
(-0.0556481 0.0113333 0)
(0.0216469 -0.00104926 0)
(-0.0807722 -0.0274649 0)
(-0.0688669 -0.0477222 0)
(-0.0396021 -0.0576777 0)
(-0.0635155 -0.0555953 0)
(-0.0814487 -0.076781 0)
(-0.0614742 -0.0913591 0)
(-0.0489919 -0.104238 0)
(-0.0341552 -0.114315 0)
(-0.018848 -0.113217 0)
(-0.00918062 -0.108393 0)
(-0.00547479 -0.102446 0)
(-0.00576462 -0.0969129 0)
(-0.332904 0.068289 0)
(-0.0797742 -0.038577 0)
(-0.022445 -0.00309666 0)
(0.252904 -0.112349 0)
(0.478244 -0.152516 0)
(0.126369 -0.0687377 0)
(0.0425777 -0.0768097 0)
(-0.0169535 -0.0789786 0)
(-0.038845 0.0749945 0)
(-0.0326822 0.208189 0)
(0.110256 0.465213 0)
(0.250024 0.168674 0)
(-0.900453 -0.164838 0)
(-0.209663 0.0365098 0)
(0.0103468 0.0559451 0)
(-0.0364166 0.0370217 0)
(-0.0561583 0.0137595 0)
(-0.0567116 0.00159299 0)
(-0.0854212 -0.0204749 0)
(-0.0476167 -0.0650153 0)
(-0.0127346 -0.0475933 0)
(-0.0201605 -0.0411946 0)
(-0.0409673 -0.0776777 0)
(-0.056264 -0.0981165 0)
(-0.0467025 -0.112185 0)
(-0.0396506 -0.12329 0)
(-0.0350299 -0.119807 0)
(-0.0334096 -0.110829 0)
(-0.0376352 -0.101168 0)
(-0.0439655 -0.09412 0)
(-0.445231 0.050743 0)
(-0.0642869 -0.0257411 0)
(-0.097738 -0.00887878 0)
(1.54794 -0.0814396 0)
(0.325668 -0.125098 0)
(0.060667 -0.0596743 0)
(0.00680283 -0.0727608 0)
(-0.0452787 -0.0737906 0)
(-0.0631049 0.0710708 0)
(-0.051363 0.195672 0)
(-0.217014 0.416416 0)
(0.542081 0.324393 0)
(-0.823156 -0.0996884 0)
(-0.542562 -0.143531 0)
(-0.0452487 0.0549302 0)
(-0.0260519 0.0369228 0)
(-0.0923889 0.0226711 0)
(-0.0174612 -0.00203893 0)
(0.00173273 -0.0261807 0)
(0.000308227 -0.0709593 0)
(0.0526192 -0.0665876 0)
(0.0573264 -0.0374575 0)
(0.0256049 -0.0619843 0)
(-0.012023 -0.0932114 0)
(-0.0157418 -0.118299 0)
(-0.00783396 -0.118427 0)
(-0.0263168 -0.117204 0)
(-0.0379432 -0.106211 0)
(-0.0487698 -0.0943578 0)
(-0.058914 -0.0877161 0)
(-0.564912 0.0112072 0)
(0.00867251 -0.0110492 0)
(-0.231623 -0.042876 0)
(0.879134 -0.181459 0)
(0.17486 -0.0981542 0)
(0.0122128 -0.0540443 0)
(-0.0194322 -0.0695832 0)
(-0.0629761 -0.0683244 0)
(-0.0755973 0.0658051 0)
(-0.0585502 0.18203 0)
(-0.178711 0.28501 0)
(0.196809 0.52976 0)
(-0.730378 0.0163981 0)
(-0.689927 -0.125231 0)
(-0.333153 -0.0578368 0)
(-0.0577501 0.0364265 0)
(-0.0163134 0.0231203 0)
(0.0718984 -0.0217232 0)
(0.139128 -0.0326879 0)
(0.11241 -0.0716014 0)
(0.146805 -0.0792454 0)
(0.149246 -0.0306609 0)
(0.109925 -0.0385039 0)
(0.0599608 -0.0778166 0)
(0.0337551 -0.11643 0)
(0.0181819 -0.109555 0)
(0.000544054 -0.104097 0)
(-0.0196214 -0.0955716 0)
(-0.0340087 -0.0841735 0)
(-0.0457823 -0.0791413 0)
(-0.401986 -0.0173053 0)
(0.00546771 -0.0153877 0)
(1.5086 -0.108114 0)
(0.392487 -0.142842 0)
(0.0634686 -0.0806123 0)
(-0.019538 -0.0511772 0)
(-0.0367713 -0.067082 0)
(-0.0717947 -0.0629967 0)
(-0.0799288 0.0598863 0)
(-0.0583549 0.166894 0)
(-0.0242696 0.206664 0)
(0.651227 0.63693 0)
(-0.565649 -0.0065913 0)
(-0.584672 -0.0979008 0)
(-0.399437 -0.127994 0)
(-0.0946137 -0.00613288 0)
(0.128196 -0.0206325 0)
(0.21016 -0.0463159 0)
(0.2644 -0.0399627 0)
(0.28908 -0.0718434 0)
(0.324863 -0.0866181 0)
(0.273661 -0.0181084 0)
(0.211123 -0.00695777 0)
(0.160247 -0.0534604 0)
(0.122231 -0.0982813 0)
(0.0823442 -0.0959585 0)
(0.0531184 -0.0852344 0)
(0.0245783 -0.0798319 0)
(0.00719145 -0.0725787 0)
(-0.00525809 -0.068833 0)
(-1.01394 -0.0316353 0)
(-0.177979 -0.0464864 0)
(-0.232627 -0.103145 0)
(0.165041 -0.105222 0)
(-0.00215093 -0.0710922 0)
(-0.0376755 -0.0511065 0)
(-0.0469252 -0.0653074 0)
(-0.0748012 -0.0580492 0)
(-0.0807654 0.0540646 0)
(-0.0570066 0.151442 0)
(0.0295534 0.166907 0)
(0.333867 0.674571 0)
(-0.0107063 0.0596884 0)
(-0.375393 -0.0817513 0)
(-0.368545 -0.211731 0)
(-0.0147217 -0.0815579 0)
(0.226362 -0.0483901 0)
(0.294399 -0.0663684 0)
(0.351889 -0.059533 0)
(0.395959 -0.0801501 0)
(0.347431 -0.0799281 0)
(0.387724 -0.00718268 0)
(0.364786 0.0347436 0)
(0.323335 -0.0179857 0)
(0.247471 -0.0658291 0)
(0.186705 -0.0633547 0)
(0.140164 -0.0567926 0)
(0.0986103 -0.0504382 0)
(0.0632598 -0.0570863 0)
(0.0551875 -0.0612066 0)
(-0.412579 -0.0546697 0)
(-0.197344 -0.0532605 0)
(-0.112086 -0.133487 0)
(0.0658265 -0.0833332 0)
(-0.0337833 -0.0656888 0)
(-0.0463513 -0.0524585 0)
(-0.0522586 -0.0640782 0)
(-0.0752533 -0.0534644 0)
(-0.0820261 0.0489688 0)
(-0.0576967 0.136966 0)
(0.0507766 0.13123 0)
(0.255435 0.723991 0)
(0.191596 0.141453 0)
(-0.152308 -0.0337206 0)
(-0.181713 -0.267087 0)
(0.0444854 -0.174097 0)
(0.275959 -0.0776763 0)
(0.333556 -0.081007 0)
(0.390935 -0.0807616 0)
(0.425591 -0.0824901 0)
(0.402264 -0.0673905 0)
(0.405031 -0.0123669 0)
(0.417953 0.00392501 0)
(0.53038 0.0446958 0)
(0.407446 -0.00935751 0)
(0.314647 -0.0137282 0)
(0.264996 -0.0206919 0)
(0.219562 -0.00994684 0)
(0.180283 -0.0222512 0)
(0.14896 -0.0505685 0)
(-0.0699096 -0.0554444 0)
(-0.263396 -0.0595506 0)
(-0.0750289 -0.148049 0)
(-0.00152047 -0.0684699 0)
(-0.0456505 -0.0615665 0)
(-0.0497129 -0.0540738 0)
(-0.0550648 -0.063165 0)
(-0.0756381 -0.0489941 0)
(-0.0860204 0.0450293 0)
(-0.0630452 0.124897 0)
(0.0569784 0.104561 0)
(0.266937 0.756672 0)
(0.317699 0.211897 0)
(-0.0402063 -0.0182532 0)
(-0.104115 -0.259441 0)
(0.0306756 -0.25886 0)
(0.23819 -0.115065 0)
(0.310482 -0.0980593 0)
(0.369604 -0.101717 0)
(0.410376 -0.0886421 0)
(0.425761 -0.0653192 0)
(0.434071 -0.011222 0)
(0.459215 -0.0277346 0)
(0.458032 -0.0309374 0)
(0.52309 0.0726233 0)
(0.466067 0.0422677 0)
(0.400262 0.0358805 0)
(0.344575 0.0380454 0)
(0.29104 0.030386 0)
(0.248453 -0.0156674 0)
(0.065296 -0.0451544 0)
(-0.216768 -0.0713434 0)
(-0.00669984 -0.163201 0)
(-0.035659 -0.051484 0)
(-0.0481207 -0.0583532 0)
(-0.0509572 -0.0552889 0)
(-0.0570209 -0.0623162 0)
(-0.0774004 -0.044133 0)
(-0.0941811 0.0422922 0)
(-0.0759842 0.115603 0)
(0.0499309 0.10332 0)
(0.309191 0.742366 0)
(0.437609 0.262971 0)
(0.0878308 0.0258666 0)
(0.145283 -0.284359 0)
(0.00263414 -0.274728 0)
(0.0994975 -0.162501 0)
(0.239957 -0.127687 0)
(0.316109 -0.124747 0)
(0.375967 -0.108971 0)
(0.415841 -0.0812683 0)
(0.449736 -0.037258 0)
(0.49016 -0.0257516 0)
(0.426839 0.00617579 0)
(0.421695 0.0181815 0)
(0.489723 0.0527896 0)
(0.482822 0.0841347 0)
(0.436312 0.105363 0)
(0.381162 0.092332 0)
(0.333141 0.0504462 0)
(0.120297 -0.0315815 0)
(-0.122947 -0.0822112 0)
(0.0226739 -0.17134 0)
(-0.0554625 -0.0363025 0)
(-0.0472517 -0.0555363 0)
(-0.0517667 -0.0557564 0)
(-0.0590618 -0.0613115 0)
(-0.0805891 -0.0380489 0)
(-0.118501 0.0403451 0)
(-0.106234 0.109231 0)
(0.0475458 0.118739 0)
(0.500847 0.631571 0)
(0.561355 0.289453 0)
(0.300209 0.0712972 0)
(0.259626 -0.221155 0)
(0.0584248 -0.213506 0)
(0.106088 -0.241055 0)
(0.258393 -0.190788 0)
(0.31999 -0.15922 0)
(0.365087 -0.132153 0)
(0.392415 -0.0985991 0)
(0.408958 -0.0541821 0)
(0.405711 -0.0251199 0)
(0.42635 0.0112926 0)
(0.456255 -0.00127048 0)
(0.444572 0.0337176 0)
(0.466044 0.0932492 0)
(0.452237 0.157386 0)
(0.403329 0.165192 0)
(0.344849 0.125602 0)
(0.141125 -0.0194432 0)
(-0.0292716 -0.0904055 0)
(0.0554307 -0.167182 0)
(-0.0607968 -0.02892 0)
(-0.0451721 -0.0526168 0)
(-0.0525997 -0.0554202 0)
(-0.0616241 -0.0599584 0)
(-0.084361 -0.0310621 0)
(-0.131191 0.0443977 0)
(-0.140781 0.104761 0)
(0.0308325 0.116011 0)
(0.553945 0.438822 0)
(0.597146 0.30553 0)
(0.438003 0.119215 0)
(0.293939 -0.167507 0)
(0.27577 -0.249736 0)
(0.267046 -0.255147 0)
(0.28467 -0.212951 0)
(0.310849 -0.180703 0)
(0.337114 -0.148336 0)
(0.356772 -0.111008 0)
(0.369881 -0.0523825 0)
(0.35967 -0.0177706 0)
(0.349839 -0.00203954 0)
(0.329581 0.0162233 0)
(0.332742 0.0109206 0)
(0.360329 0.0827032 0)
(0.357763 0.184092 0)
(0.338438 0.23007 0)
(0.300345 0.210403 0)
(0.140119 -0.0118149 0)
(0.0429707 -0.0951199 0)
(0.104671 -0.164203 0)
(-0.0507373 -0.0218369 0)
(-0.0422054 -0.0495382 0)
(-0.0534483 -0.0543867 0)
(-0.064923 -0.0580047 0)
(-0.0901385 -0.0239071 0)
(-0.144214 0.0582312 0)
(-0.154691 0.0921227 0)
(-0.0273088 0.0838322 0)
(0.191318 0.245112 0)
(0.460301 0.299735 0)
(0.48286 0.187796 0)
(0.383198 -0.148833 0)
(0.330579 -0.244388 0)
(0.282324 -0.252031 0)
(0.275865 -0.219809 0)
(0.286501 -0.190793 0)
(0.300251 -0.158793 0)
(0.313252 -0.123265 0)
(0.335196 -0.0623497 0)
(0.35398 -0.016487 0)
(0.363306 0.0054694 0)
(0.369334 0.0458888 0)
(0.359181 -0.0280279 0)
(0.363312 0.063832 0)
(0.325154 0.220477 0)
(0.293411 0.271928 0)
(0.274806 0.262651 0)
(0.124305 -0.0108531 0)
(0.109472 -0.0965788 0)
(0.0835057 -0.163348 0)
(-0.0358926 -0.0108506 0)
(-0.0388041 -0.0467672 0)
(-0.0543049 -0.0527883 0)
(-0.0687811 -0.0549958 0)
(-0.101677 -0.0164405 0)
(-0.156946 0.0740366 0)
(-0.179434 0.0777601 0)
(-0.0962084 0.0414238 0)
(-0.0975361 0.071998 0)
(0.372473 0.282165 0)
(0.415195 0.214261 0)
(0.274102 -0.133504 0)
(0.288767 -0.244183 0)
(0.269988 -0.240241 0)
(0.256106 -0.219017 0)
(0.255282 -0.195516 0)
(0.25955 -0.165211 0)
(0.269987 -0.134766 0)
(0.29215 -0.0862859 0)
(0.324591 -0.0417712 0)
(0.353477 -0.0188661 0)
(0.372627 0.0132613 0)
(0.351687 0.057835 0)
(0.277327 0.15095 0)
(0.244758 0.248682 0)
(0.240892 0.285103 0)
(0.239143 0.275124 0)
(0.101922 -0.0178756 0)
(0.121278 -0.0900803 0)
(0.00772279 -0.151194 0)
(-0.0187549 -0.00628797 0)
(-0.0356775 -0.0448136 0)
(-0.0552047 -0.0507127 0)
(-0.0722448 -0.0511517 0)
(-0.109054 -0.00603657 0)
(-0.167963 0.0927183 0)
(-0.210377 0.0651716 0)
(-0.149333 0.00152125 0)
(-0.123693 -0.0750127 0)
(0.514735 0.273303 0)
(0.329656 0.268613 0)
(0.349717 -0.111417 0)
(0.2988 -0.22424 0)
(0.25801 -0.225659 0)
(0.241085 -0.21378 0)
(0.235839 -0.19411 0)
(0.23587 -0.169334 0)
(0.239936 -0.143203 0)
(0.249146 -0.10761 0)
(0.267416 -0.0647254 0)
(0.271534 -0.0300087 0)
(0.264668 0.0143736 0)
(0.251833 0.108655 0)
(0.232091 0.206579 0)
(0.219084 0.268402 0)
(0.214654 0.290147 0)
(0.212598 0.283594 0)
(0.0923843 -0.030754 0)
(0.114144 -0.0786271 0)
(0.0364868 -0.135868 0)
(-0.00217186 -0.00913517 0)
(-0.0334458 -0.0438617 0)
(-0.0561627 -0.0481708 0)
(-0.0770434 -0.0468518 0)
(-0.107811 0.00963075 0)
(-0.194728 0.114757 0)
(-0.239589 0.0545131 0)
(-0.192064 -0.0278276 0)
(-0.145988 -0.131561 0)
(0.480865 0.247729 0)
(0.229046 0.291567 0)
(0.351806 -0.110599 0)
(0.277876 -0.195292 0)
(0.245691 -0.211736 0)
(0.234241 -0.20856 0)
(0.231095 -0.1923 0)
(0.227991 -0.168492 0)
(0.222257 -0.143019 0)
(0.217202 -0.113656 0)
(0.21681 -0.0717813 0)
(0.211347 -0.020355 0)
(0.193694 0.0435837 0)
(0.172336 0.127486 0)
(0.162409 0.219782 0)
(0.157217 0.274604 0)
(0.156484 0.288663 0)
(0.161254 0.278853 0)
(0.0972881 -0.0443453 0)
(0.0845119 -0.0704145 0)
(0.000838905 -0.111311 0)
(0.00464053 -0.0130716 0)
(-0.0324707 -0.0438973 0)
(-0.0570573 -0.0450777 0)
(-0.0826514 -0.0406205 0)
(-0.121667 0.0278514 0)
(-0.258591 0.139683 0)
(-0.261305 0.0485646 0)
(-0.215987 -0.0492119 0)
(-0.175895 -0.120895 0)
(-0.022222 0.133994 0)
(0.19513 0.176901 0)
(0.282954 -0.0899653 0)
(0.248502 -0.174095 0)
(0.233056 -0.203139 0)
(0.229972 -0.206287 0)
(0.22884 -0.190208 0)
(0.221278 -0.161993 0)
(0.20614 -0.132067 0)
(0.188032 -0.103408 0)
(0.172472 -0.0612903 0)
(0.156117 0.00161913 0)
(0.134081 0.0765566 0)
(0.112623 0.156676 0)
(0.0998668 0.231526 0)
(0.0944448 0.282748 0)
(0.088364 0.291641 0)
(0.0796809 0.27496 0)
(0.100692 -0.0543507 0)
(0.0207539 -0.0664262 0)
(0.0475359 -0.0786695 0)
(0.00519674 -0.0219356 0)
(-0.0327009 -0.0449379 0)
(-0.0576041 -0.0414049 0)
(-0.0868851 -0.0316978 0)
(-0.141482 0.0529928 0)
(-0.276795 0.158462 0)
(-0.305041 0.0488147 0)
(-0.216999 -0.0847798 0)
(-0.173018 -0.109983 0)
(-0.162894 0.0577124 0)
(0.155347 0.0683368 0)
(0.212145 -0.0871617 0)
(0.21439 -0.16711 0)
(0.217536 -0.20275 0)
(0.2247 -0.207888 0)
(0.224445 -0.185175 0)
(0.207782 -0.145915 0)
(0.179515 -0.107681 0)
(0.147978 -0.0771346 0)
(0.12173 -0.0378161 0)
(0.103673 0.0250478 0)
(0.0879045 0.106006 0)
(0.0746008 0.184791 0)
(0.062701 0.252121 0)
(0.0538364 0.29941 0)
(0.0464527 0.31524 0)
(0.0428091 0.290164 0)
(0.0980144 -0.0601438 0)
(0.0625017 -0.0770666 0)
(-0.0384263 -0.0281949 0)
(0.00139151 -0.0390306 0)
(-0.0338004 -0.0469461 0)
(-0.0574004 -0.0372427 0)
(-0.0864066 -0.0208469 0)
(-0.135739 0.0735851 0)
(-0.220476 0.189439 0)
(-0.256885 0.0433648 0)
(-0.186489 -0.111998 0)
(-0.142157 -0.117849 0)
(-0.100591 -0.0067205 0)
(0.0909479 -0.00515839 0)
(0.153374 -0.103324 0)
(0.177242 -0.174532 0)
(0.197993 -0.213362 0)
(0.215996 -0.214558 0)
(0.213655 -0.17353 0)
(0.182701 -0.113771 0)
(0.137907 -0.0641002 0)
(0.0904139 -0.030253 0)
(0.0485214 0.000756089 0)
(0.019828 0.0563074 0)
(-0.00183289 0.129124 0)
(-0.012707 0.199077 0)
(-0.014156 0.257008 0)
(-0.00887603 0.288175 0)
(0.00112573 0.289483 0)
(0.0121576 0.257508 0)
(0.0902306 -0.0622933 0)
(0.0477172 -0.0987322 0)
(-0.0457795 0.0381076 0)
(-0.0131431 -0.0709805 0)
(-0.0352691 -0.0496158 0)
(-0.0561196 -0.0328223 0)
(-0.0807337 -0.011185 0)
(-0.110618 0.0862939 0)
(-0.141971 0.216155 0)
(-0.174547 0.0294 0)
(-0.151191 -0.124583 0)
(-0.104431 -0.133106 0)
(-0.0537815 -0.0594206 0)
(0.0501255 -0.0612294 0)
(0.103828 -0.128219 0)
(0.136272 -0.194335 0)
(0.16961 -0.236423 0)
(0.191871 -0.223323 0)
(0.177351 -0.148165 0)
(0.131769 -0.0628677 0)
(0.0778906 -0.00154898 0)
(0.0246252 0.03741 0)
(-0.0254117 0.0640781 0)
(-0.0696143 0.114063 0)
(-0.0977569 0.171781 0)
(-0.116307 0.226529 0)
(-0.122483 0.266487 0)
(-0.118167 0.277878 0)
(-0.11384 0.268945 0)
(-0.121092 0.262507 0)
(0.0804491 -0.0620969 0)
(0.0498365 -0.137404 0)
(-0.076975 0.160007 0)
(-0.0388453 -0.120767 0)
(-0.0360234 -0.051686 0)
(-0.0535291 -0.0282379 0)
(-0.0741348 -0.00491959 0)
(-0.0778399 0.0910723 0)
(-0.0430504 0.22685 0)
(-0.0709145 0.0405137 0)
(-0.0848906 -0.152258 0)
(-0.055592 -0.145427 0)
(-0.0272086 -0.0938683 0)
(0.0234285 -0.098733 0)
(0.0574927 -0.15212 0)
(0.0841307 -0.220819 0)
(0.111547 -0.265976 0)
(0.117391 -0.223196 0)
(0.0889715 -0.104896 0)
(0.0419852 -0.00218265 0)
(-0.00442917 0.0608731 0)
(-0.0392132 0.0975234 0)
(-0.0660337 0.122329 0)
(-0.0843972 0.156402 0)
(-0.0988705 0.195861 0)
(-0.125082 0.237107 0)
(-0.168984 0.28928 0)
(-0.224731 0.340952 0)
(-0.27234 0.363878 0)
(-0.306337 0.374298 0)
(0.0694289 -0.0593558 0)
(0.0453136 -0.148156 0)
(-0.0601192 0.310248 0)
(-0.0418652 -0.142545 0)
(-0.0342979 -0.0504869 0)
(-0.0493351 -0.0235259 0)
(-0.06633 0.00117105 0)
(-0.063238 0.0801944 0)
(0.00748216 0.206206 0)
(0.0222893 0.0530332 0)
(0.0296357 -0.15265 0)
(-0.00822892 -0.142974 0)
(-0.0128313 -0.108461 0)
(0.00104599 -0.116925 0)
(0.00835676 -0.163899 0)
(0.00533976 -0.232048 0)
(-0.0225822 -0.262595 0)
(-0.0726281 -0.192303 0)
(-0.0822607 -0.0697313 0)
(-0.0855636 0.048799 0)
(-0.107374 0.11074 0)
(-0.123621 0.136156 0)
(-0.142365 0.144811 0)
(-0.204095 0.20878 0)
(-0.296301 0.330692 0)
(-0.369012 0.412802 0)
(-0.410134 0.446801 0)
(-0.426441 0.445413 0)
(-0.428859 0.424162 0)
(-0.422431 0.387798 0)
(0.0578066 -0.0532953 0)
(0.0374505 -0.110198 0)
(0.0202011 0.238587 0)
(-0.0203664 -0.10414 0)
(-0.0300439 -0.0450447 0)
(-0.0434726 -0.018994 0)
(-0.0549584 0.00629164 0)
(-0.0544761 0.0624361 0)
(0.0419609 0.162695 0)
(0.132753 0.0456912 0)
(0.0861469 -0.123181 0)
(0.0181731 -0.120856 0)
(-0.00789209 -0.104715 0)
(-0.0196462 -0.115013 0)
(-0.0399834 -0.150631 0)
(-0.0853578 -0.189372 0)
(-0.191569 -0.161026 0)
(-0.320336 -0.126353 0)
(-0.255003 -0.13975 0)
(-0.218905 0.0332262 0)
(-0.233364 0.11551 0)
(-0.301038 0.21188 0)
(-0.375566 0.324195 0)
(-0.44104 0.402023 0)
(-0.463942 0.465125 0)
(-0.462895 0.463306 0)
(-0.452264 0.449488 0)
(-0.436311 0.415686 0)
(-0.418865 0.375283 0)
(-0.402646 0.33451 0)
(0.0466245 -0.0447902 0)
(0.0329042 -0.073614 0)
(0.0365596 0.172996 0)
(-0.00826772 -0.069157 0)
(-0.0247771 -0.0374875 0)
(-0.0363426 -0.0150277 0)
(-0.0426118 0.00889302 0)
(-0.0360317 0.0483347 0)
(0.0334027 0.0986431 0)
(0.128607 0.0336238 0)
(0.086292 -0.0798506 0)
(0.0238916 -0.0908631 0)
(-0.00858133 -0.0885068 0)
(-0.0350604 -0.095605 0)
(-0.0734647 -0.11386 0)
(-0.132411 -0.126801 0)
(-0.199478 -0.025427 0)
(-0.281637 -0.0486843 0)
(-0.289084 -0.234529 0)
(-0.32142 0.058072 0)
(-0.337752 0.289237 0)
(-0.453205 0.370521 0)
(-0.409734 0.207276 0)
(-0.326114 0.524739 0)
(-0.310123 0.354806 0)
(-0.281032 0.368448 0)
(-0.294253 0.39361 0)
(-0.292393 0.354468 0)
(-0.282515 0.312737 0)
(-0.272493 0.272394 0)
(0.0363566 -0.0355706 0)
(0.0260138 -0.0474411 0)
(0.0133405 0.115497 0)
(-0.00318225 -0.0439751 0)
(-0.0193875 -0.0298054 0)
(-0.0286185 -0.0119028 0)
(-0.0310649 0.00910968 0)
(-0.021179 0.0362698 0)
(0.0208998 0.0568161 0)
(0.0792529 0.0192726 0)
(0.0583953 -0.0451672 0)
(0.0191492 -0.0633669 0)
(-0.0104626 -0.0665355 0)
(-0.0389494 -0.0663231 0)
(-0.075578 -0.0579493 0)
(-0.127078 -0.0252513 0)
(-0.182241 -0.00970695 0)
(-0.187467 -0.0942111 0)
(-0.211862 -0.120816 0)
(-0.263562 0.134972 0)
(-0.290203 0.263544 0)
(-0.213226 0.253041 0)
(-0.127344 0.136589 0)
(-0.178134 0.216618 0)
(-0.124162 0.412751 0)
(-0.159592 0.464999 0)
(-0.139177 0.470562 0)
(-0.112094 0.333976 0)
(-0.0926368 0.281172 0)
(-0.0796649 0.250221 0)
(0.0271293 -0.0268817 0)
(0.0188907 -0.0294101 0)
(0.00614022 0.0733911 0)
(-0.00128826 -0.0272001 0)
(-0.0142658 -0.0234161 0)
(-0.0210024 -0.0095746 0)
(-0.0211754 0.00783424 0)
(-0.0112862 0.0260491 0)
(0.014336 0.0332752 0)
(0.0422594 0.00979542 0)
(0.034922 -0.0259693 0)
(0.0119772 -0.0418363 0)
(-0.0108136 -0.0450776 0)
(-0.0331662 -0.041166 0)
(-0.0550078 -0.0300234 0)
(-0.0718972 -0.013055 0)
(-0.0706494 -0.00384359 0)
(-0.0817789 -0.0177902 0)
(-0.156003 0.00734533 0)
(-0.16836 0.123699 0)
(-0.134274 0.206463 0)
(-0.114785 0.196348 0)
(-0.127988 0.200375 0)
(-0.122329 0.240385 0)
(-0.113892 0.321047 0)
(-0.070183 0.379858 0)
(-0.0308696 0.324171 0)
(-0.00721486 0.226564 0)
(0.00977938 0.171754 0)
(0.0248701 0.173525 0)
(0.0189193 -0.0194898 0)
(0.0123847 -0.0177274 0)
(0.00316069 0.0447997 0)
(-0.000629469 -0.016991 0)
(-0.00956255 -0.0185404 0)
(-0.0139553 -0.00795171 0)
(-0.0131745 0.00598061 0)
(-0.00545404 0.0180082 0)
(0.00967069 0.0197456 0)
(0.0226892 0.00473353 0)
(0.0192944 -0.0155153 0)
(0.00596322 -0.0262008 0)
(-0.0094814 -0.0275693 0)
(-0.0249881 -0.0221205 0)
(-0.0395315 -0.0114331 0)
(-0.0519827 0.00212205 0)
(-0.0628402 0.0151252 0)
(-0.0772161 0.0278741 0)
(-0.0957691 0.0515056 0)
(-0.100638 0.0941027 0)
(-0.0810279 0.143478 0)
(-0.0579845 0.165702 0)
(-0.0423765 0.184243 0)
(-0.021411 0.20531 0)
(0.0040091 0.2171 0)
(0.0368045 0.217115 0)
(0.067667 0.200772 0)
(0.0888825 0.174791 0)
(0.0995864 0.142405 0)
(0.1056 0.121433 0)
(0.0115794 -0.0138807 0)
(0.00676222 -0.0110487 0)
(0.00157634 0.0277242 0)
(-0.000300366 -0.0115646 0)
(-0.00523701 -0.0152706 0)
(-0.00756818 -0.00694446 0)
(-0.00682703 0.00433642 0)
(-0.00229738 0.0126242 0)
(0.00520746 0.0123983 0)
(0.0107131 0.00242559 0)
(0.0089545 -0.00963941 0)
(0.00214601 -0.0160321 0)
(-0.0064311 -0.015348 0)
(-0.0155166 -0.00871568 0)
(-0.0243446 0.00237987 0)
(-0.0331162 0.0160504 0)
(-0.04149 0.0305548 0)
(-0.0490833 0.0460146 0)
(-0.0545011 0.0636058 0)
(-0.0547677 0.0833811 0)
(-0.0473622 0.103187 0)
(-0.0337916 0.118917 0)
(-0.0182964 0.129176 0)
(-0.00143577 0.134924 0)
(0.0159586 0.135244 0)
(0.0322381 0.130148 0)
(0.0462316 0.121483 0)
(0.0573399 0.110515 0)
(0.0654812 0.0987004 0)
(0.0712256 0.0871458 0)
(0.00489952 -0.0104506 0)
(0.00161804 -0.00842052 0)
(0.000593258 0.0207214 0)
(-4.87732e-05 -0.0095902 0)
(-0.00107571 -0.0138106 0)
(-0.00151474 -0.00649325 0)
(-0.00142995 0.00353677 0)
(-0.000632552 0.0101125 0)
(0.00123401 0.00932748 0)
(0.0020901 0.00172197 0)
(0.00161037 -0.00701516 0)
(0.000244026 -0.0112685 0)
(-0.00170978 -0.0090701 0)
(-0.00456508 -0.000779499 0)
(-0.00889177 0.0120491 0)
(-0.0134062 0.027158 0)
(-0.0177834 0.0418311 0)
(-0.0212576 0.0554722 0)
(-0.0232262 0.0677062 0)
(-0.0231717 0.0780959 0)
(-0.0208909 0.0861029 0)
(-0.0166546 0.0913439 0)
(-0.0111417 0.0937843 0)
(-0.0050499 0.093653 0)
(0.00102492 0.0912777 0)
(0.00660837 0.0871488 0)
(0.011434 0.0818527 0)
(0.0154111 0.0759119 0)
(0.0185631 0.069745 0)
(0.0209831 0.0636533 0)
(0.00501582 -0.0954357 0)
(0.00479308 -0.0932379 0)
(0.00490476 -0.0911594 0)
(0.00651752 -0.0895043 0)
(0.0110757 -0.0885564 0)
(0.0208239 -0.0873009 0)
(0.0351924 -0.0883541 0)
(0.0387536 -0.081798 0)
(0.0752119 -0.0745199 0)
(0.0784423 -0.0750384 0)
(0.041877 -0.0265391 0)
(0.115651 -0.0353493 0)
(0.0450497 -0.0476433 0)
(0.121094 0.0275067 0)
(0.139748 -0.00592779 0)
(0.103649 0.0378592 0)
(-0.00233785 0.0356818 0)
(0.188922 0.0714322 0)
(-0.0105303 0.0887575 0)
(-0.107389 0.170992 0)
(-0.325035 0.341314 0)
(-0.0370558 0.0431312 0)
(-0.0184635 0.00455933 0)
(-0.0922205 -0.0351946 0)
(-0.265787 -0.0976039 0)
(-0.911362 -0.224518 0)
(-0.422973 -0.0810327 0)
(0.110653 -0.0236769 0)
(0.0340008 -0.0140814 0)
(0.0734424 0.0188157 0)
(0.00520183 -0.0950851 0)
(0.00366884 -0.0927916 0)
(0.00297782 -0.0913517 0)
(0.00438623 -0.0909355 0)
(0.0100838 -0.0914273 0)
(0.0214067 -0.0924541 0)
(0.0359927 -0.0938126 0)
(0.0418334 -0.0945101 0)
(0.100443 -0.0873299 0)
(0.0880846 -0.0662899 0)
(0.051666 -0.0305542 0)
(0.106705 -0.0373306 0)
(0.0225447 -0.0396034 0)
(0.102887 0.0120003 0)
(0.0422704 -0.00140946 0)
(0.0686235 0.0468814 0)
(0.00168118 0.0311723 0)
(-0.0416371 0.0870319 0)
(0.398501 -0.0390375 0)
(-0.197888 0.255673 0)
(-0.243862 0.332963 0)
(-0.0176866 0.0357194 0)
(0.00701108 0.00501451 0)
(-0.0370713 -0.0278063 0)
(-0.158473 -0.0806879 0)
(-0.616619 -0.174763 0)
(-1.15681 -0.1707 0)
(0.168447 -0.0259101 0)
(0.0577737 -0.0139637 0)
(0.0575462 0.0166022 0)
(-0.0076765 -0.0931789 0)
(-0.00964449 -0.091384 0)
(-0.0104262 -0.0909485 0)
(-0.00911183 -0.0923303 0)
(-0.00537638 -0.0946483 0)
(0.000219932 -0.0974927 0)
(0.00735385 -0.0941345 0)
(0.02591 -0.111494 0)
(0.0717951 -0.0898245 0)
(0.0875104 -0.0505477 0)
(0.0555152 -0.0423267 0)
(0.0799226 -0.0319829 0)
(0.0508829 -0.0293521 0)
(0.0460507 0.00272675 0)
(0.0425498 0.00642178 0)
(-0.0115802 0.0486036 0)
(-0.0372074 0.05342 0)
(0.0409576 0.0810972 0)
(-0.212205 -0.0120581 0)
(-0.145246 0.30898 0)
(-0.181289 0.32258 0)
(-0.00384933 0.0318256 0)
(0.0281574 0.00430616 0)
(0.00593457 -0.0228284 0)
(-0.0733383 -0.0681092 0)
(-0.37015 -0.133391 0)
(-0.711328 -0.155327 0)
(0.0256011 -0.0501114 0)
(0.101599 -0.0133265 0)
(-0.00692886 0.0113583 0)
(-0.0488646 -0.0908945 0)
(-0.0508917 -0.0906737 0)
(-0.0497587 -0.0920566 0)
(-0.0464564 -0.0945536 0)
(-0.0428431 -0.097309 0)
(-0.0400041 -0.100397 0)
(-0.0328751 -0.101465 0)
(-0.0145526 -0.120756 0)
(0.00695467 -0.106986 0)
(0.0622011 -0.0525335 0)
(0.0927068 -0.0403063 0)
(0.0637608 -0.0372108 0)
(0.0900048 -0.0227723 0)
(0.107888 -0.0100431 0)
(0.110459 0.0182658 0)
(0.0014908 0.0472782 0)
(0.071838 0.0624539 0)
(0.185101 -0.160842 0)
(0.136792 0.0397626 0)
(-0.0710761 0.36224 0)
(-0.156593 0.311729 0)
(0.00332151 0.030127 0)
(0.0463917 0.00341399 0)
(0.03664 -0.0198192 0)
(-0.0130785 -0.0594363 0)
(-0.191782 -0.103839 0)
(-0.459078 -0.118105 0)
(-0.355279 -0.0935289 0)
(0.158012 -0.0113842 0)
(-0.234268 0.00335713 0)
(-0.0653746 -0.0874454 0)
(-0.0673755 -0.0906739 0)
(-0.065278 -0.0945416 0)
(-0.0606848 -0.0974809 0)
(-0.0559579 -0.099511 0)
(-0.052026 -0.101973 0)
(-0.0449423 -0.107796 0)
(-0.0302989 -0.126792 0)
(-0.00572945 -0.122691 0)
(0.0618727 -0.081632 0)
(0.133395 -0.0441203 0)
(0.146488 -0.0312884 0)
(0.1561 -0.0299935 0)
(0.131665 -0.0209141 0)
(0.104293 0.0398743 0)
(0.0306476 0.0540405 0)
(0.123117 0.0154863 0)
(0.207024 -0.133608 0)
(0.135982 0.0808794 0)
(-0.0816833 0.420775 0)
(-0.162978 0.304206 0)
(-0.00122407 0.029858 0)
(0.0590782 0.00233161 0)
(0.0565484 -0.0182736 0)
(0.0262384 -0.0536696 0)
(-0.0741947 -0.0845837 0)
(-0.200928 -0.109235 0)
(-1.14597 -0.133314 0)
(0.163485 -0.0242912 0)
(-0.161763 -0.0135618 0)
(-0.0528653 -0.0831704 0)
(-0.0554273 -0.0905645 0)
(-0.0546393 -0.0971526 0)
(-0.0519959 -0.1008 0)
(-0.04796 -0.10261 0)
(-0.041985 -0.105287 0)
(-0.0340844 -0.113532 0)
(-0.0192135 -0.135007 0)
(0.0114657 -0.142595 0)
(0.0778237 -0.114835 0)
(0.149183 -0.0612405 0)
(0.192048 -0.0384583 0)
(0.222821 -0.0255628 0)
(0.185962 -0.00934172 0)
(0.162307 0.051917 0)
(0.162943 0.0626086 0)
(0.427115 -0.0514256 0)
(0.290058 -0.0855965 0)
(0.199006 0.101558 0)
(-0.40605 0.485356 0)
(-0.208876 0.295114 0)
(-0.0119606 0.0287855 0)
(0.0669835 0.000879547 0)
(0.0680843 -0.0176901 0)
(0.0497382 -0.0498151 0)
(-0.00540087 -0.0734038 0)
(-0.0575616 -0.0973622 0)
(-0.563202 -0.0874474 0)
(-0.428966 -0.0623759 0)
(0.266902 -0.0211098 0)
(-0.0120318 -0.0782219 0)
(-0.0150904 -0.0889443 0)
(-0.0178255 -0.0968239 0)
(-0.0228158 -0.101029 0)
(-0.025235 -0.105693 0)
(-0.0173207 -0.110393 0)
(-0.00764372 -0.119511 0)
(0.00527096 -0.145719 0)
(0.040674 -0.166677 0)
(0.108259 -0.145069 0)
(0.147552 -0.0777056 0)
(0.189563 -0.054329 0)
(0.230818 -0.0250442 0)
(0.204809 0.00316415 0)
(0.188401 0.0346213 0)
(0.276436 -0.00263987 0)
(0.499765 -0.0738272 0)
(0.378716 -0.0338481 0)
(0.186084 0.126483 0)
(-0.5001 0.530322 0)
(-0.194161 0.291048 0)
(-0.0113355 0.0249491 0)
(0.0694342 -0.00111175 0)
(0.0737854 -0.0176615 0)
(0.0622641 -0.0470765 0)
(0.029904 -0.0674129 0)
(0.0127121 -0.0915176 0)
(-0.179738 -0.0624694 0)
(-0.0350268 -0.14818 0)
(0.271486 -0.0249071 0)
(0.0520493 -0.0746663 0)
(0.049961 -0.0858169 0)
(0.0456444 -0.0900524 0)
(0.0271787 -0.0896921 0)
(0.00433011 -0.103752 0)
(0.0102849 -0.119017 0)
(0.0234261 -0.125003 0)
(0.0297319 -0.155405 0)
(0.059119 -0.195291 0)
(0.113684 -0.162659 0)
(0.124677 -0.0839601 0)
(0.153266 -0.0734341 0)
(0.187913 -0.0235973 0)
(0.167895 0.0129207 0)
(0.137899 0.00477831 0)
(0.239958 -0.0695236 0)
(0.462469 -0.086331 0)
(0.40994 0.00802659 0)
(0.167443 0.165052 0)
(-0.293277 0.586467 0)
(-0.169228 0.281329 0)
(4.63689e-05 0.0232619 0)
(0.0661245 -0.00370448 0)
(0.0758234 -0.0179473 0)
(0.0679072 -0.0449215 0)
(0.0455383 -0.0637301 0)
(0.0400112 -0.0883582 0)
(-0.00700249 -0.0570098 0)
(0.0298155 -0.165777 0)
(0.162895 -0.0310058 0)
(0.13341 -0.0681544 0)
(0.123807 -0.0831948 0)
(0.124071 -0.0810081 0)
(0.0997724 -0.0545179 0)
(0.037778 -0.0811329 0)
(0.0337391 -0.132462 0)
(0.0521117 -0.129705 0)
(0.0470646 -0.157667 0)
(0.0514132 -0.21168 0)
(0.0622781 -0.174421 0)
(0.0795236 -0.0868923 0)
(0.090093 -0.0787562 0)
(0.112729 -0.0306345 0)
(0.0817188 0.0286324 0)
(0.0379357 -0.034323 0)
(0.253948 -0.134472 0)
(0.386913 -0.0960017 0)
(0.407335 0.0405798 0)
(0.0103486 0.225067 0)
(-0.294456 0.622323 0)
(-0.191142 0.252059 0)
(0.014232 0.0252276 0)
(0.0515645 -0.00740203 0)
(0.0759094 -0.0185233 0)
(0.0697527 -0.0429856 0)
(0.0513592 -0.0608514 0)
(0.0477409 -0.0853058 0)
(0.0365906 -0.0594977 0)
(0.0309636 -0.16883 0)
(0.0821267 -0.0363994 0)
(0.214551 -0.0350433 0)
(0.179182 -0.0686307 0)
(0.179854 -0.0921922 0)
(0.179309 0.0019348 0)
(0.0711277 -0.0224365 0)
(0.0705836 -0.155734 0)
(0.0863448 -0.130733 0)
(0.0621153 -0.145147 0)
(0.0379543 -0.212586 0)
(0.0410066 -0.177548 0)
(0.0554459 -0.102593 0)
(0.0474884 -0.0730982 0)
(0.0418188 -0.0198796 0)
(-0.0335284 0.0524097 0)
(0.00183242 -0.0898818 0)
(0.21858 -0.189752 0)
(0.280207 -0.115574 0)
(0.332157 0.0729165 0)
(-0.0778185 0.323707 0)
(-0.294393 0.645216 0)
(-0.135464 0.217221 0)
(0.0230154 0.0322437 0)
(0.0254656 -0.0142639 0)
(0.0756889 -0.0194422 0)
(0.0698126 -0.041044 0)
(0.0530422 -0.0580676 0)
(0.0484054 -0.0819663 0)
(0.0392128 -0.0632076 0)
(0.00608671 -0.166179 0)
(-0.00371189 -0.0389682 0)
(0.286259 0.0237291 0)
(0.252983 -0.0171468 0)
(0.202632 -0.0796565 0)
(0.168192 0.0404734 0)
(0.197245 0.0104106 0)
(0.184002 -0.154272 0)
(0.146169 -0.110133 0)
(0.0862232 -0.109069 0)
(0.0330457 -0.206022 0)
(0.0489619 -0.18705 0)
(0.0603189 -0.107039 0)
(0.0341347 -0.0508855 0)
(-0.0726273 0.0129067 0)
(-0.13462 0.0699273 0)
(-0.00621888 -0.163341 0)
(0.167554 -0.232172 0)
(0.161133 -0.144876 0)
(0.212631 0.106652 0)
(-0.153222 0.436967 0)
(-0.210436 0.602234 0)
(-0.014177 0.188409 0)
(0.0398863 0.0324229 0)
(0.0821589 -0.016509 0)
(0.0767117 -0.0198145 0)
(0.0691693 -0.0389751 0)
(0.0532645 -0.0551585 0)
(0.047135 -0.078405 0)
(0.0341145 -0.0663911 0)
(-0.00461994 -0.158541 0)
(-0.070595 -0.0412868 0)
(0.296148 0.0845487 0)
(0.267503 0.0301205 0)
(0.210969 0.003323 0)
(0.165902 0.0269519 0)
(0.235659 -0.0430651 0)
(0.274328 -0.124673 0)
(0.229224 -0.0474218 0)
(0.12368 -0.0379324 0)
(0.0452335 -0.200201 0)
(0.0730887 -0.209952 0)
(0.0691339 -0.0790172 0)
(-0.0121883 -0.0222207 0)
(-0.0945598 0.0301891 0)
(-0.171563 0.0641195 0)
(-0.0154335 -0.238655 0)
(0.102616 -0.23019 0)
(0.0733093 -0.159136 0)
(0.0450431 0.138803 0)
(-0.24014 0.543732 0)
(-0.201222 0.521225 0)
(0.0317562 0.167408 0)
(0.082507 0.0135227 0)
(0.0982285 -0.00808272 0)
(0.0774145 -0.0189284 0)
(0.0682512 -0.0367427 0)
(0.0530096 -0.0521357 0)
(0.0454598 -0.0746806 0)
(0.028783 -0.0686979 0)
(-0.0295123 -0.150351 0)
(-0.0728135 -0.0404097 0)
(0.259934 0.141534 0)
(0.233825 0.0764287 0)
(0.198944 0.0888437 0)
(0.175434 0.00692998 0)
(0.254612 -0.166665 0)
(0.387522 -0.141498 0)
(0.394743 0.0203307 0)
(0.247168 0.108253 0)
(0.141452 -0.220386 0)
(0.11977 -0.211736 0)
(0.0634371 -0.0397876 0)
(-0.0435815 0.0429584 0)
(-0.215441 0.0586512 0)
(-0.121291 0.0195649 0)
(-0.0237341 -0.273306 0)
(-0.0439894 -0.230984 0)
(-0.0857967 -0.147 0)
(-0.107681 0.15247 0)
(-0.281617 0.633354 0)
(-0.125903 0.459066 0)
(0.0659006 0.132424 0)
(0.142306 0.0100949 0)
(0.0684119 -0.00404479 0)
(0.076978 -0.0179076 0)
(0.0671552 -0.0343851 0)
(0.0525101 -0.0490759 0)
(0.0436403 -0.0708291 0)
(0.0242414 -0.0699429 0)
(-0.037134 -0.139776 0)
(-0.0796194 -0.0387571 0)
(0.257344 0.200213 0)
(0.219338 0.124972 0)
(0.208915 0.101034 0)
(0.239851 -0.0248154 0)
(0.23221 -0.25469 0)
(0.222677 -0.172673 0)
(0.351082 -0.139872 0)
(0.566523 0.178412 0)
(0.34548 -0.0745801 0)
(0.182845 -0.167766 0)
(0.0877475 0.0166939 0)
(0.0112807 0.111645 0)
(-0.0911916 0.094223 0)
(-0.0279154 -0.0188887 0)
(-0.0201592 -0.278179 0)
(-0.0109383 -0.232513 0)
(-0.170886 -0.125247 0)
(-0.198559 0.162292 0)
(-0.293324 0.664455 0)
(-0.0214552 0.397958 0)
(0.0885241 0.0874848 0)
(0.143863 0.0199101 0)
(0.0883314 -0.00205652 0)
(0.0770952 -0.0168545 0)
(0.0658663 -0.0319527 0)
(0.0517484 -0.0460528 0)
(0.0416579 -0.0668908 0)
(0.0204182 -0.0701045 0)
(-0.0385444 -0.127515 0)
(-0.0772773 -0.0384089 0)
(0.231714 0.233729 0)
(0.211174 0.175215 0)
(0.185473 0.104054 0)
(0.159792 -0.0345024 0)
(0.0918215 -0.165456 0)
(0.0368824 -0.258754 0)
(0.0122614 -0.176956 0)
(-0.105985 0.173755 0)
(0.214917 0.104355 0)
(0.117983 -0.153047 0)
(0.0741436 0.0890452 0)
(-0.0195449 0.178694 0)
(-0.00467943 0.0713155 0)
(0.0318644 -0.0127979 0)
(-0.0419964 -0.254858 0)
(-0.138258 -0.209545 0)
(-0.144754 -0.0690666 0)
(-0.276799 0.157225 0)
(-0.3327 0.688017 0)
(0.00932765 0.322095 0)
(0.0870972 0.055756 0)
(0.135071 0.0211526 0)
(0.102318 0.00466409 0)
(0.0771719 -0.0146173 0)
(0.0643114 -0.0294777 0)
(0.0506598 -0.0431334 0)
(0.0394996 -0.0629309 0)
(0.0171923 -0.0692938 0)
(-0.0369222 -0.114674 0)
(-0.0707184 -0.0385238 0)
(0.206293 0.261376 0)
(0.188076 0.226571 0)
(0.154456 0.166533 0)
(0.102418 0.0664639 0)
(0.0277017 -0.02684 0)
(-0.0679681 -0.113034 0)
(-0.135702 -0.158998 0)
(0.0435216 0.0935667 0)
(-0.0478202 0.0511237 0)
(-0.146081 -0.191641 0)
(-0.0314782 0.0858118 0)
(-0.049337 0.271533 0)
(-0.112343 0.0180415 0)
(-0.0534794 -0.00697838 0)
(-0.0575058 -0.218307 0)
(-0.140087 -0.197524 0)
(-0.13865 0.00100064 0)
(-0.358033 0.160474 0)
(-0.358425 0.717757 0)
(-0.00342404 0.245629 0)
(0.102121 0.0320155 0)
(0.130669 0.0199353 0)
(0.102588 0.0123776 0)
(0.0758006 -0.0115956 0)
(0.0624121 -0.0269838 0)
(0.0491956 -0.0403725 0)
(0.037191 -0.0590196 0)
(0.0144634 -0.0676402 0)
(-0.0336076 -0.102167 0)
(-0.0632954 -0.0383847 0)
(0.170869 0.266654 0)
(0.173628 0.278596 0)
(0.121296 0.265116 0)
(0.062373 0.174175 0)
(0.00873006 0.0940311 0)
(-0.065357 0.053803 0)
(-0.147248 -0.032931 0)
(-0.196859 -0.221154 0)
(-0.0584844 0.0258176 0)
(-0.306414 -0.0155422 0)
(-0.189969 0.176083 0)
(-0.212202 0.241799 0)
(-0.299912 0.0318729 0)
(-0.150846 -0.0836565 0)
(-0.0821055 -0.192299 0)
(-0.164694 -0.168238 0)
(-0.149834 0.0409308 0)
(-0.309434 0.195521 0)
(-0.237613 0.596075 0)
(0.0510374 0.210576 0)
(0.138813 0.017345 0)
(0.129616 0.022671 0)
(0.0949307 0.0205474 0)
(0.0733646 -0.00846843 0)
(0.0601364 -0.0244569 0)
(0.0473404 -0.0377999 0)
(0.0347769 -0.0552176 0)
(0.0121535 -0.0652519 0)
(-0.0298596 -0.0906287 0)
(-0.0567159 -0.0375006 0)
(0.0681391 0.253383 0)
(0.0625766 0.29546 0)
(0.0964152 0.351083 0)
(0.0912116 0.229416 0)
(0.0522199 0.182566 0)
(-0.00599898 0.168249 0)
(-0.1148 0.038711 0)
(-0.311654 -0.184899 0)
(-0.375043 0.0195548 0)
(-0.219307 -0.0876934 0)
(-0.244477 0.228366 0)
(-0.239013 0.244198 0)
(-0.0893077 -0.0112607 0)
(-0.0606239 -0.142612 0)
(-0.0800385 -0.159107 0)
(-0.150202 -0.12431 0)
(-0.178842 0.0408009 0)
(-0.26619 0.208174 0)
(0.0540221 0.438822 0)
(0.123785 0.169215 0)
(0.177436 0.0165852 0)
(0.127464 0.0341488 0)
(0.081946 0.0278019 0)
(0.0705197 -0.005549 0)
(0.0574788 -0.021841 0)
(0.0451109 -0.0353635 0)
(0.0322945 -0.0515492 0)
(0.01021 -0.0622369 0)
(-0.0264262 -0.0803116 0)
(-0.0512403 -0.035749 0)
(0.0653579 0.21541 0)
(0.108269 0.222022 0)
(0.11421 0.290284 0)
(0.0959882 0.276576 0)
(0.0818291 0.234284 0)
(0.0749907 0.201919 0)
(0.0543721 0.181537 0)
(-0.0394744 0.105623 0)
(-0.177589 0.103667 0)
(-0.212343 -0.136782 0)
(-0.194163 0.184165 0)
(-0.0813436 0.104929 0)
(0.00550933 -0.068936 0)
(-0.0278434 -0.12696 0)
(-0.0675366 -0.128884 0)
(-0.107257 -0.089624 0)
(-0.127403 0.0314975 0)
(-0.0776091 0.168014 0)
(0.135177 0.373304 0)
(0.242998 0.124604 0)
(0.201269 0.0337465 0)
(0.125448 0.0535648 0)
(0.0771614 0.0313793 0)
(0.0674707 -0.00239118 0)
(0.0544215 -0.0190789 0)
(0.0425448 -0.0329418 0)
(0.0297664 -0.0479952 0)
(0.00859599 -0.0587047 0)
(-0.0234797 -0.0711485 0)
(-0.0464233 -0.0333057 0)
(-0.000489271 0.208804 0)
(-0.0419337 0.279071 0)
(-0.0312151 0.302745 0)
(-0.0154984 0.267869 0)
(-0.0234081 0.242253 0)
(-0.0525983 0.244512 0)
(-0.0760063 0.247401 0)
(-0.0871836 0.199694 0)
(-0.0905615 0.0861429 0)
(-0.125776 0.00795907 0)
(-0.117669 0.0501871 0)
(-0.0383892 0.0110623 0)
(-0.0128103 -0.0660392 0)
(-0.0342444 -0.102671 0)
(-0.0577722 -0.108232 0)
(-0.0715661 -0.0769537 0)
(-0.0586407 0.0183248 0)
(0.024846 0.127799 0)
(0.149834 0.279556 0)
(0.265823 0.116694 0)
(0.199859 0.0597385 0)
(0.118369 0.0792097 0)
(0.0804785 0.0365757 0)
(0.0633036 0.00144404 0)
(0.0509121 -0.0161804 0)
(0.0396839 -0.0304183 0)
(0.0272053 -0.0445035 0)
(0.00726924 -0.0547568 0)
(-0.0208837 -0.0629291 0)
(-0.0418921 -0.0304522 0)
(-0.141096 0.271235 0)
(-0.166272 0.29424 0)
(-0.187479 0.305081 0)
(-0.205441 0.304682 0)
(-0.216345 0.292096 0)
(-0.213229 0.266868 0)
(-0.191162 0.226159 0)
(-0.154852 0.160779 0)
(-0.12686 0.0798479 0)
(-0.117264 0.0263391 0)
(-0.0957881 0.0037433 0)
(-0.0620952 -0.0267961 0)
(-0.0463236 -0.0644242 0)
(-0.0492994 -0.090776 0)
(-0.0563184 -0.099946 0)
(-0.053671 -0.081559 0)
(-0.0236057 -0.0146862 0)
(0.0572961 0.0933072 0)
(0.142732 0.198987 0)
(0.221094 0.121295 0)
(0.152579 0.0845715 0)
(0.0802198 0.105869 0)
(0.0678748 0.0418141 0)
(0.0575664 0.00518904 0)
(0.0469113 -0.0132571 0)
(0.0365634 -0.0277469 0)
(0.0246237 -0.041021 0)
(0.0061753 -0.0505297 0)
(-0.0184722 -0.0554769 0)
(-0.0375222 -0.0274322 0)
(-0.323953 0.375469 0)
(-0.331827 0.362946 0)
(-0.330365 0.335084 0)
(-0.319343 0.301063 0)
(-0.300343 0.261596 0)
(-0.275249 0.213176 0)
(-0.240448 0.155711 0)
(-0.20036 0.0948722 0)
(-0.164416 0.039326 0)
(-0.135274 -0.0026911 0)
(-0.108782 -0.0302323 0)
(-0.0852298 -0.0516761 0)
(-0.0703836 -0.0720271 0)
(-0.0653418 -0.0895088 0)
(-0.0644175 -0.100112 0)
(-0.0596493 -0.0907055 0)
(-0.040033 -0.0482309 0)
(-0.0141223 0.0575891 0)
(0.0755787 0.142018 0)
(0.121677 0.13152 0)
(0.0586895 0.120196 0)
(0.0318132 0.110875 0)
(0.054332 0.041671 0)
(0.0507437 0.00811215 0)
(0.0424349 -0.010467 0)
(0.0332071 -0.0249771 0)
(0.0220362 -0.0375278 0)
(0.00526234 -0.0461934 0)
(-0.0161596 -0.0487249 0)
(-0.0332671 -0.0244182 0)
(-0.41286 0.361769 0)
(-0.397598 0.325483 0)
(-0.377922 0.284153 0)
(-0.35448 0.237325 0)
(-0.327251 0.190951 0)
(-0.293082 0.135841 0)
(-0.258124 0.0779856 0)
(-0.221403 0.0239643 0)
(-0.184509 -0.018719 0)
(-0.15038 -0.0480544 0)
(-0.121556 -0.0650498 0)
(-0.0994108 -0.0748878 0)
(-0.0853019 -0.0831439 0)
(-0.0793464 -0.0923784 0)
(-0.0791617 -0.101566 0)
(-0.0770991 -0.0964532 0)
(-0.0811802 -0.0454235 0)
(-0.0789557 0.0414155 0)
(-0.0308153 0.0919118 0)
(-0.0139526 0.141558 0)
(-0.0232808 0.140145 0)
(0.00522349 0.0919567 0)
(0.0425403 0.037528 0)
(0.0433823 0.0100255 0)
(0.0375554 -0.00795707 0)
(0.0296377 -0.022212 0)
(0.0194529 -0.0340682 0)
(0.00449122 -0.0418829 0)
(-0.0139238 -0.0426556 0)
(-0.0290781 -0.0215294 0)
(-0.386987 0.294995 0)
(-0.37046 0.251896 0)
(-0.349838 0.204632 0)
(-0.327264 0.166541 0)
(-0.30582 0.12332 0)
(-0.280546 0.0570337 0)
(-0.249605 -0.000849782 0)
(-0.215141 -0.0515102 0)
(-0.177217 -0.0859632 0)
(-0.144206 -0.0997831 0)
(-0.117949 -0.101189 0)
(-0.0996063 -0.0970326 0)
(-0.0891202 -0.0930651 0)
(-0.0871491 -0.0921158 0)
(-0.0955349 -0.0941298 0)
(-0.117817 -0.0897634 0)
(-0.13053 -0.0481395 0)
(-0.089735 0.0200114 0)
(-0.113332 0.097691 0)
(-0.125938 0.13897 0)
(-0.0739421 0.117587 0)
(0.00871872 0.0637649 0)
(0.032954 0.0326227 0)
(0.0359844 0.0109487 0)
(0.0323902 -0.00583607 0)
(0.0258856 -0.0195615 0)
(0.0168769 -0.0307167 0)
(0.0038311 -0.0377233 0)
(-0.0117639 -0.0372655 0)
(-0.0249217 -0.0188559 0)
(-0.263022 0.234414 0)
(-0.253285 0.19433 0)
(-0.243174 0.148662 0)
(-0.230332 0.102782 0)
(-0.212476 0.0501615 0)
(-0.192008 -0.00874763 0)
(-0.17 -0.0668724 0)
(-0.147825 -0.115936 0)
(-0.128138 -0.14332 0)
(-0.108094 -0.14449 0)
(-0.0922989 -0.130462 0)
(-0.0824216 -0.11249 0)
(-0.0786956 -0.0973727 0)
(-0.0814919 -0.0856663 0)
(-0.0929172 -0.074647 0)
(-0.117598 -0.0597409 0)
(-0.15467 -0.0411624 0)
(-0.180194 0.00662311 0)
(-0.167376 0.122767 0)
(-0.109285 0.117011 0)
(-0.0376448 0.0683457 0)
(0.00849344 0.0445859 0)
(0.0248275 0.0280238 0)
(0.0289065 0.011043 0)
(0.0270745 -0.00416109 0)
(0.0219867 -0.0171264 0)
(0.0143058 -0.027563 0)
(0.00325497 -0.0338269 0)
(-0.00967817 -0.0325538 0)
(-0.0207892 -0.0164643 0)
(-0.0722186 0.217121 0)
(-0.0677503 0.176927 0)
(-0.063695 0.128198 0)
(-0.0586644 0.0731155 0)
(-0.0524855 0.0138222 0)
(-0.0458538 -0.0465978 0)
(-0.0403735 -0.103478 0)
(-0.0362278 -0.146556 0)
(-0.0340551 -0.165656 0)
(-0.0371773 -0.154441 0)
(-0.0430788 -0.134618 0)
(-0.0494769 -0.112475 0)
(-0.0557679 -0.092863 0)
(-0.0633196 -0.075858 0)
(-0.0735393 -0.0585568 0)
(-0.0867236 -0.0359464 0)
(-0.105323 -0.00618495 0)
(-0.124827 0.017418 0)
(-0.11339 0.0709415 0)
(-0.0586541 0.0665067 0)
(-0.0123322 0.0416892 0)
(0.00751467 0.0338483 0)
(0.0181646 0.0239677 0)
(0.0223509 0.0105537 0)
(0.0217384 -0.00293796 0)
(0.0179776 -0.0149947 0)
(0.0117283 -0.024708 0)
(0.00273415 -0.0303073 0)
(-0.00765661 -0.0285354 0)
(-0.016688 -0.0144078 0)
(0.0347392 0.162013 0)
(0.0467042 0.132383 0)
(0.0591293 0.089407 0)
(0.0695365 0.0415048 0)
(0.0765229 -0.00621106 0)
(0.0779284 -0.0525545 0)
(0.0734894 -0.0921199 0)
(0.0624118 -0.122316 0)
(0.0413758 -0.132799 0)
(0.0181965 -0.127282 0)
(-0.00145306 -0.111462 0)
(-0.0172059 -0.0944348 0)
(-0.0298823 -0.0783978 0)
(-0.0406107 -0.0628297 0)
(-0.0501941 -0.0461185 0)
(-0.0581735 -0.0258297 0)
(-0.0617855 -0.000164984 0)
(-0.0614435 0.0271212 0)
(-0.0475521 0.0429168 0)
(-0.0207918 0.0338373 0)
(-0.00377221 0.0295232 0)
(0.00561295 0.0274085 0)
(0.0127416 0.0205322 0)
(0.0164025 0.00974502 0)
(0.0164916 -0.0021233 0)
(0.0138862 -0.0132322 0)
(0.00911571 -0.0222561 0)
(0.00222469 -0.0272839 0)
(-0.00568615 -0.0252364 0)
(-0.0126226 -0.0127226 0)
(0.112586 0.105793 0)
(0.119762 0.0849729 0)
(0.124112 0.0552416 0)
(0.123572 0.0248177 0)
(0.12027 -0.000109711 0)
(0.112954 -0.0269967 0)
(0.100368 -0.0542104 0)
(0.0814929 -0.0698131 0)
(0.0604271 -0.0756907 0)
(0.0392644 -0.0763958 0)
(0.0200292 -0.0729533 0)
(0.0037515 -0.0666285 0)
(-0.00963428 -0.0582237 0)
(-0.0204495 -0.0479257 0)
(-0.028875 -0.0354195 0)
(-0.0344933 -0.0201064 0)
(-0.0357353 -0.00177457 0)
(-0.029872 0.0173871 0)
(-0.0156952 0.0265641 0)
(-0.00694032 0.0241254 0)
(-0.00148073 0.0244453 0)
(0.00364459 0.0232128 0)
(0.00831633 0.0177998 0)
(0.0110707 0.00886811 0)
(0.0114077 -0.0016302 0)
(0.00973028 -0.0118801 0)
(0.00641821 -0.0203095 0)
(0.00164022 -0.0248857 0)
(-0.00378946 -0.0227097 0)
(-0.00858631 -0.0114301 0)
(0.0753387 0.0759008 0)
(0.0783745 0.0638213 0)
(0.0801495 0.0500908 0)
(0.0800869 0.0351082 0)
(0.0778348 0.0195091 0)
(0.0730263 0.00393905 0)
(0.0653154 -0.0104715 0)
(0.0553237 -0.0224382 0)
(0.0441814 -0.0316391 0)
(0.0325996 -0.0379702 0)
(0.0212291 -0.0413489 0)
(0.0106497 -0.0418214 0)
(0.00129775 -0.0394868 0)
(-0.00650822 -0.0343927 0)
(-0.0125073 -0.0265554 0)
(-0.0163469 -0.0160458 0)
(-0.0173114 -0.00345957 0)
(-0.0144193 0.00939214 0)
(-0.00806676 0.0178232 0)
(-0.00377335 0.0204103 0)
(-0.000889761 0.0216241 0)
(0.0019965 0.0204765 0)
(0.00461923 0.0158852 0)
(0.00620315 0.00816609 0)
(0.00644208 -0.001349 0)
(0.00550174 -0.0109516 0)
(0.00360452 -0.0189521 0)
(0.000894907 -0.0232429 0)
(-0.00208148 -0.0210446 0)
(-0.00464008 -0.0105687 0)
(0.0228361 0.0576705 0)
(0.0243517 0.0512692 0)
(0.0255644 0.0440065 0)
(0.0263229 0.0359269 0)
(0.0264634 0.0271499 0)
(0.0258233 0.0179057 0)
(0.0242564 0.00854037 0)
(0.0219104 -0.0010834 0)
(0.0184955 -0.00975754 0)
(0.0146799 -0.0169458 0)
(0.0106768 -0.0225455 0)
(0.00686408 -0.0261526 0)
(0.00353781 -0.0272891 0)
(0.000848405 -0.0255475 0)
(-0.00118015 -0.0208166 0)
(-0.00255426 -0.0132099 0)
(-0.00323329 -0.00358645 0)
(-0.00335793 0.00660065 0)
(-0.00223823 0.0142562 0)
(-0.00100972 0.018341 0)
(-9.59775e-05 0.0200401 0)
(0.000721766 0.0190628 0)
(0.0013678 0.0149627 0)
(0.00162084 0.00790799 0)
(0.00133539 -0.00116434 0)
(0.00110455 -0.0105103 0)
(0.000705621 -0.0182941 0)
(0.000139883 -0.0224502 0)
(-0.000469279 -0.0202816 0)
(-0.000937456 -0.0101995 0)
(-0.0047322 -4.5941e-05 0)
(0.000588087 -0.000386128 0)
(0.00782236 -0.000444966 0)
(0.0141451 -0.000428209 0)
(0.0250033 -0.000652244 0)
(0.0396813 -0.000668135 0)
(0.0522445 -0.000405738 0)
(0.0593203 0.00010257 0)
(0.0582318 0.000893106 0)
(0.0465428 0.0017282 0)
(0.0281476 0.00205305 0)
(0.00841117 0.00193268 0)
(-0.00887707 0.0014453 0)
(-0.0216172 0.000900198 0)
(-0.0298638 0.000442817 0)
(-0.0343509 7.83107e-05 0)
(-0.0359719 -0.000209403 0)
(-0.0355227 -0.000465036 0)
(-0.0336589 -0.000686395 0)
(-0.030881 -0.000875989 0)
(-0.0275749 -0.00103528 0)
(-0.0240266 -0.00116407 0)
(-0.0204407 -0.00126345 0)
(-0.0169558 -0.00133675 0)
(-0.0136535 -0.00138987 0)
(-0.0105773 -0.00142823 0)
(-0.0077402 -0.00145616 0)
(-0.00514243 -0.00147585 0)
(-0.00277599 -0.0014878 0)
(-0.00063136 -0.00149245 0)
(-0.00968325 0.00033149 0)
(-0.006549 -0.00101563 0)
(0.00104791 -0.00147566 0)
(0.00885237 -0.00165993 0)
(0.0233349 -0.00238805 0)
(0.0425975 -0.00256822 0)
(0.0598692 -0.00204759 0)
(0.0719421 -0.000778659 0)
(0.0762435 0.00138554 0)
(0.0694496 0.00413955 0)
(0.0537867 0.00578848 0)
(0.0345216 0.0061431 0)
(0.0159024 0.00542294 0)
(0.00075829 0.00422139 0)
(-0.0102075 0.00290655 0)
(-0.0172997 0.00162182 0)
(-0.021139 0.000452536 0)
(-0.0224986 -0.000561906 0)
(-0.0221126 -0.00141354 0)
(-0.0206014 -0.00210443 0)
(-0.0184381 -0.00264872 0)
(-0.0159661 -0.00305959 0)
(-0.0134207 -0.00335322 0)
(-0.0109606 -0.00355083 0)
(-0.00867945 -0.0036761 0)
(-0.00662224 -0.00375352 0)
(-0.00479247 -0.00380289 0)
(-0.00317098 -0.00383431 0)
(-0.00172904 -0.00385277 0)
(-0.000439086 -0.0038607 0)
(-0.0110803 0.000893646 0)
(-0.00845445 -0.00160924 0)
(-0.000848696 -0.00257142 0)
(0.00686031 -0.00296187 0)
(0.0216145 -0.00422576 0)
(0.041305 -0.00461247 0)
(0.059128 -0.00389773 0)
(0.0719094 -0.00194884 0)
(0.077272 0.00143522 0)
(0.0718877 0.00605934 0)
(0.0579403 0.00906408 0)
(0.0404082 0.00996706 0)
(0.0234135 0.00911558 0)
(0.00965333 0.0073619 0)
(-0.0002939 0.00533042 0)
(-0.00690006 0.00328311 0)
(-0.0107933 0.00139795 0)
(-0.0126476 -0.000250263 0)
(-0.0130488 -0.00161853 0)
(-0.0124807 -0.0027145 0)
(-0.0113058 -0.00356268 0)
(-0.00979803 -0.00418631 0)
(-0.00815802 -0.00461044 0)
(-0.00653669 -0.00486291 0)
(-0.00504047 -0.00497936 0)
(-0.00373256 -0.00500557 0)
(-0.00263005 -0.00498668 0)
(-0.00171493 -0.0049571 0)
(-0.000946135 -0.00493514 0)
(-0.000280986 -0.00492756 0)
(-0.0115376 0.00149809 0)
(-0.00879336 -0.00219883 0)
(-0.00113854 -0.00366316 0)
(0.00641625 -0.0042591 0)
(0.0212109 -0.00607739 0)
(0.0410719 -0.00668151 0)
(0.0591017 -0.00578317 0)
(0.0721555 -0.00316262 0)
(0.0779171 0.0014102 0)
(0.0725328 0.00791041 0)
(0.0585196 0.012226 0)
(0.0410088 0.0136139 0)
(0.0241959 0.0125874 0)
(0.0108202 0.0102817 0)
(0.00127297 0.00756359 0)
(-0.00510303 0.00485535 0)
(-0.00899147 0.00237613 0)
(-0.0110378 0.000217819 0)
(-0.0117535 -0.00158725 0)
(-0.0115522 -0.00304081 0)
(-0.0107413 -0.00417152 0)
(-0.00955616 -0.00500991 0)
(-0.00817459 -0.00558068 0)
(-0.00673327 -0.00591188 0)
(-0.0053337 -0.00604257 0)
(-0.00404727 -0.00603129 0)
(-0.00290852 -0.0059472 0)
(-0.00191991 -0.00585099 0)
(-0.00106223 -0.00578196 0)
(-0.00030675 -0.00575529 0)
(-0.0118925 0.00211745 0)
(-0.00889826 -0.00279973 0)
(-0.00123724 -0.00475467 0)
(0.00612902 -0.00553951 0)
(0.0209594 -0.00793888 0)
(0.0410186 -0.00877428 0)
(0.0592806 -0.00770313 0)
(0.0726659 -0.00440914 0)
(0.0789734 0.00134334 0)
(0.0735152 0.00981951 0)
(0.0591062 0.0154763 0)
(0.0410725 0.0173251 0)
(0.0237841 0.0160636 0)
(0.0102275 0.0131735 0)
(0.000665037 0.00976802 0)
(-0.00571963 0.00642319 0)
(-0.00963846 0.00338506 0)
(-0.0117395 0.000738943 0)
(-0.0125271 -0.00147457 0)
(-0.0124094 -0.00326981 0)
(-0.0116858 -0.00467978 0)
(-0.0105836 -0.00573972 0)
(-0.00926616 -0.00648158 0)
(-0.00784921 -0.00693451 0)
(-0.00641446 -0.00714057 0)
(-0.00502043 -0.00716388 0)
(-0.00370502 -0.00708486 0)
(-0.00248948 -0.00697935 0)
(-0.00138012 -0.00689964 0)
(-0.000374896 -0.0068681 0)
(-0.0123116 0.00275124 0)
(-0.0089908 -0.00341717 0)
(-0.00134436 -0.00584739 0)
(0.00578404 -0.00679145 0)
(0.0206609 -0.00980955 0)
(0.0409658 -0.0108945 0)
(0.0595071 -0.00966732 0)
(0.0732914 -0.00569768 0)
(0.0803282 0.0012137 0)
(0.0747961 0.0118038 0)
(0.0599167 0.0188662 0)
(0.0411883 0.0211787 0)
(0.0231927 0.0196225 0)
(0.0092857 0.0161056 0)
(-0.000383089 0.0119924 0)
(-0.00681573 0.00800192 0)
(-0.0107406 0.00440162 0)
(-0.0128152 0.00126674 0)
(-0.0135642 -0.00135678 0)
(-0.013403 -0.00349061 0)
(-0.0126422 -0.00517498 0)
(-0.0115127 -0.00645549 0)
(-0.0101715 -0.00737541 0)
(-0.00872204 -0.00797322 0)
(-0.00722991 -0.00829715 0)
(-0.00574101 -0.00841371 0)
(-0.00429011 -0.00840388 0)
(-0.00290727 -0.00834484 0)
(-0.00161463 -0.00829199 0)
(-0.000427998 -0.00827117 0)
(-0.0128248 0.00340325 0)
(-0.0090957 -0.00405545 0)
(-0.00147896 -0.00694179 0)
(0.00535918 -0.00800519 0)
(0.0202986 -0.011691 0)
(0.0409015 -0.0130476 0)
(0.0597695 -0.0116874 0)
(0.0740092 -0.00703667 0)
(0.0819865 0.000999392 0)
(0.0763512 0.0138748 0)
(0.0609286 0.0224246 0)
(0.0413596 0.0252089 0)
(0.0224867 0.0232878 0)
(0.00815135 0.0190922 0)
(-0.0016293 0.0142416 0)
(-0.00810672 0.00958455 0)
(-0.0120159 0.00540804 0)
(-0.0140301 0.00177286 0)
(-0.0146884 -0.00127079 0)
(-0.0144239 -0.0037477 0)
(-0.0135588 -0.00570732 0)
(-0.0123303 -0.00720784 0)
(-0.0108969 -0.00830759 0)
(-0.00935961 -0.00905833 0)
(-0.00777888 -0.00951816 0)
(-0.00619584 -0.00975473 0)
(-0.00464337 -0.00984492 0)
(-0.00315308 -0.00986007 0)
(-0.00175246 -0.00985339 0)
(-0.000462671 -0.00985153 0)
(-0.0134413 0.0040786 0)
(-0.00921112 -0.00471916 0)
(-0.00164427 -0.0080383 0)
(0.00484862 -0.00917319 0)
(0.0198708 -0.0135852 0)
(0.0408261 -0.0152384 0)
(0.0600665 -0.0137767 0)
(0.0748023 -0.00843529 0)
(0.0839762 0.000677439 0)
(0.0781862 0.0160443 0)
(0.0621473 0.0261797 0)
(0.0415741 0.0294481 0)
(0.0216404 0.0270749 0)
(0.00681018 0.0221381 0)
(-0.00306966 0.0165214 0)
(-0.00958603 0.0111672 0)
(-0.0134683 0.00639986 0)
(-0.0154031 0.00224374 0)
(-0.0159456 -0.00123395 0)
(-0.0155449 -0.00406435 0)
(-0.0145365 -0.00630546 0)
(-0.0131655 -0.00803081 0)
(-0.011595 -0.00931317 0)
(-0.00992841 -0.0102205 0)
(-0.00822859 -0.01082 0)
(-0.00653853 -0.0111816 0)
(-0.00489149 -0.0113772 0)
(-0.00331801 -0.0114718 0)
(-0.00184394 -0.0115135 0)
(-0.000488627 -0.0115308 0)
(-0.0141685 0.00478249 0)
(-0.00933193 -0.00541302 0)
(-0.00184279 -0.00913757 0)
(0.00424616 -0.0102892 0)
(0.019377 -0.0154938 0)
(0.0407408 -0.0174715 0)
(0.0603981 -0.0159503 0)
(0.0756487 -0.00990479 0)
(0.086336 0.000218622 0)
(0.0803123 0.0183234 0)
(0.0635924 0.0301584 0)
(0.0418272 0.0339304 0)
(0.0206269 0.0309981 0)
(0.00523727 0.025243 0)
(-0.00471471 0.0188274 0)
(-0.0112644 0.0127465 0)
(-0.0151145 0.00737376 0)
(-0.0169569 0.00267318 0)
(-0.0173636 -0.00125574 0)
(-0.0168038 -0.00445298 0)
(-0.0156263 -0.00698631 0)
(-0.0140867 -0.00894305 0)
(-0.0123531 -0.0104143 0)
(-0.0105322 -0.0114815 0)
(-0.00869131 -0.0122195 0)
(-0.00687957 -0.0127009 0)
(-0.00513055 -0.0129952 0)
(-0.00347305 -0.0131632 0)
(-0.00192948 -0.0132509 0)
(-0.000514635 -0.0132873 0)
(-0.0150145 0.00551794 0)
(-0.00945184 -0.00614268 0)
(-0.00207812 -0.0102401 0)
(0.00354419 -0.0113526 0)
(0.0188163 -0.0174183 0)
(0.0406472 -0.0197509 0)
(0.0607667 -0.0182232 0)
(0.076522 -0.0114596 0)
(0.0891185 -0.000398602 0)
(0.082744 0.0207208 0)
(0.0652947 0.0343865 0)
(0.0421104 0.0386921 0)
(0.0194155 0.0350723 0)
(0.00340775 0.0284029 0)
(-0.00657599 0.0211614 0)
(-0.0131463 0.0143182 0)
(-0.0169648 0.00832709 0)
(-0.0187035 0.0030537 0)
(-0.0189571 -0.00134505 0)
(-0.0182157 -0.00492569 0)
(-0.0168474 -0.00776123 0)
(-0.0151205 -0.00995795 0)
(-0.0132061 -0.011624 0)
(-0.0112143 -0.0128543 0)
(-0.00921838 -0.0137298 0)
(-0.00726865 -0.0143261 0)
(-0.00540239 -0.0147113 0)
(-0.00364777 -0.0149431 0)
(-0.00202409 -0.0150671 0)
(-0.000542752 -0.0151168 0)
(-0.0159882 0.0062877 0)
(-0.00956269 -0.00691342 0)
(-0.00235242 -0.0113466 0)
(0.00273509 -0.0123637 0)
(0.0181872 -0.0193603 0)
(0.040547 -0.0220794 0)
(0.06118 -0.0206105 0)
(0.0773938 -0.0131194 0)
(0.0923939 -0.00121446 0)
(0.0854982 0.0232378 0)
(0.0673007 0.0388963 0)
(0.0424079 0.0437765 0)
(0.0179665 0.0393155 0)
(0.00129032 0.0316402 0)
(-0.00866418 0.0235157 0)
(-0.0152335 0.0158781 0)
(-0.0190287 0.00926043 0)
(-0.0206523 0.00338032 0)
(-0.0207322 -0.00151125 0)
(-0.0197869 -0.00549247 0)
(-0.0182063 -0.0086403 0)
(-0.0162765 -0.0110841 0)
(-0.0141688 -0.0129515 0)
(-0.011994 -0.0143487 0)
(-0.00982942 -0.0153618 0)
(-0.007732 -0.0160667 0)
(-0.00573856 -0.0165355 0)
(-0.00387502 -0.0168259 0)
(-0.00215289 -0.0169848 0)
(-0.000578282 -0.0170488 0)
(-0.0171005 0.00709506 0)
(-0.00965603 -0.00773138 0)
(-0.0026705 -0.0124582 0)
(0.00181074 -0.0133197 0)
(0.0174874 -0.0213208 0)
(0.0404416 -0.024459 0)
(0.061656 -0.0231251 0)
(0.0782508 -0.0149136 0)
(0.0962514 -0.00225557 0)
(0.0885846 0.0258655 0)
(0.0696753 0.0437267 0)
(0.042699 0.0492353 0)
(0.0162308 0.043751 0)
(-0.00115215 0.0349311 0)
(-0.0109968 0.0258909 0)
(-0.0175203 0.0174176 0)
(-0.0213175 0.0101773 0)
(-0.0228142 0.00364435 0)
(-0.0226995 -0.00176433 0)
(-0.0215232 -0.00616453 0)
(-0.0197071 -0.00963237 0)
(-0.0175591 -0.0123289 0)
(-0.0152488 -0.0144042 0)
(-0.0128815 -0.0159725 0)
(-0.0105319 -0.0171257 0)
(-0.00826149 -0.0179406 0)
(-0.00611332 -0.0184869 0)
(-0.00411499 -0.0188291 0)
(-0.00228036 -0.0190223 0)
(-0.000613555 -0.0191015 0)
(-0.0183636 0.00794392 0)
(-0.00972003 -0.00860271 0)
(-0.00304039 -0.0135761 0)
(0.000763476 -0.0142163 0)
(0.0167144 -0.0233001 0)
(0.0403319 -0.0268899 0)
(0.0622383 -0.0257725 0)
(0.0791723 -0.0168899 0)
(0.100784 -0.00355121 0)
(0.0919536 0.028582 0)
(0.0724389 0.0489338 0)
(0.0429657 0.0551341 0)
(0.0141475 0.0484034 0)
(-0.00392311 0.0382722 0)
(-0.0136744 0.0282854 0)
(-0.0199982 0.0189224 0)
(-0.0238485 0.011085 0)
(-0.0252015 0.00383832 0)
(-0.0248696 -0.00211513 0)
(-0.023428 -0.00695638 0)
(-0.0213517 -0.0107475 0)
(-0.0189727 -0.0136979 0)
(-0.0164389 -0.0159893 0)
(-0.0138644 -0.0177389 0)
(-0.0113294 -0.0190348 0)
(-0.00888596 -0.0199603 0)
(-0.00657349 -0.0205883 0)
(-0.00441825 -0.0209823 0)
(-0.00244264 -0.0211934 0)
(-0.000655169 -0.021274 0)
(-0.0197912 0.00883854 0)
(-0.00973972 -0.00953381 0)
(-0.00347719 -0.0146941 0)
(-0.000413224 -0.0150492 0)
(0.0158655 -0.0252974 0)
(0.0402173 -0.0293706 0)
(0.0630159 -0.0285337 0)
(0.0805992 -0.0191256 0)
(0.105983 -0.00513927 0)
(0.0954517 0.0313297 0)
(0.0752617 0.0545876 0)
(0.0431634 0.0615653 0)
(0.0115693 0.0532974 0)
(-0.00699569 0.0416075 0)
(-0.0169675 0.0306404 0)
(-0.0227304 0.0203383 0)
(-0.026636 0.0120019 0)
(-0.0278259 0.00394783 0)
(-0.0272522 -0.00257808 0)
(-0.0255001 -0.00788376 0)
(-0.0231424 -0.0119919 0)
(-0.0205221 -0.0151974 0)
(-0.017777 -0.0177123 0)
(-0.0149894 -0.019651 0)
(-0.0122238 -0.0211041 0)
(-0.00957329 -0.0221425 0)
(-0.0070818 -0.0228526 0)
(-0.00477597 -0.0232994 0)
(-0.00265257 -0.0235408 0)
(-0.000707005 -0.0236331 0)
(-0.0213983 0.00978382 0)
(-0.00969695 -0.0105326 0)
(-0.00400371 -0.0158148 0)
(-0.00172483 -0.0158148 0)
(0.014938 -0.0273159 0)
(0.0400932 -0.0318978 0)
(0.0640421 -0.0313352 0)
(0.0836807 -0.0217095 0)
(0.111188 -0.00711257 0)
(0.0990297 0.0339571 0)
(0.0774277 0.0606952 0)
(0.0426247 0.0687763 0)
(0.008068 0.0585753 0)
(-0.011385 0.0445185 0)
(-0.0211312 0.0327514 0)
(-0.0257581 0.0216761 0)
(-0.0296781 0.0129366 0)
(-0.0306989 0.00395533 0)
(-0.0298621 -0.00317061 0)
(-0.0277422 -0.00896435 0)
(-0.0250579 -0.0133775 0)
(-0.0222101 -0.0168331 0)
(-0.0192375 -0.0195767 0)
(-0.016197 -0.0217296 0)
(-0.0132263 -0.0233353 0)
(-0.0103549 -0.0244952 0)
(-0.00764834 -0.0252808 0)
(-0.00514534 -0.0257819 0)
(-0.00284784 -0.0260769 0)
(-0.000754093 -0.026199 0)
(-0.0232036 0.0107851 0)
(-0.00957116 -0.0116099 0)
(-0.00465124 -0.0169405 0)
(-0.00317727 -0.0165073 0)
(0.0139282 -0.0293649 0)
(0.0399458 -0.0344715 0)
(0.0649726 -0.0340792 0)
(0.0889029 -0.0245848 0)
(0.113439 -0.00970475 0)
(0.102699 0.036239 0)
(0.0796455 0.067069 0)
(0.0396448 0.0773292 0)
(0.00457572 0.0644374 0)
(-0.0183675 0.0469679 0)
(-0.024862 0.0348308 0)
(-0.0282985 0.0233002 0)
(-0.0331174 0.0138571 0)
(-0.0338061 0.00388264 0)
(-0.0327251 -0.00391143 0)
(-0.030123 -0.0102287 0)
(-0.0271261 -0.0148912 0)
(-0.0240292 -0.0185867 0)
(-0.020828 -0.0216049 0)
(-0.0176132 -0.023961 0)
(-0.0143696 -0.0257705 0)
(-0.0112383 -0.0270764 0)
(-0.00827689 -0.0279546 0)
(-0.00552003 -0.028505 0)
(-0.00302191 -0.0288065 0)
(-0.000793006 -0.0289218 0)
(-0.0252264 0.0118485 0)
(-0.00933672 -0.0127782 0)
(-0.00546615 -0.0180738 0)
(-0.00477448 -0.0170866 0)
(0.0128311 -0.0314551 0)
(0.0397603 -0.0371039 0)
(0.0651859 -0.0368854 0)
(0.0922971 -0.0272063 0)
(0.105805 -0.0130754 0)
(0.105291 0.0377429 0)
(0.0838895 0.0735936 0)
(0.0342249 0.0876346 0)
(0.00441507 0.0709786 0)
(-0.0211322 0.0504709 0)
(-0.0264079 0.0379682 0)
(-0.0315888 0.0250935 0)
(-0.0371186 0.014811 0)
(-0.0371881 0.00377701 0)
(-0.0358426 -0.00486194 0)
(-0.0326451 -0.011692 0)
(-0.0292828 -0.0165503 0)
(-0.0259878 -0.0204891 0)
(-0.0226108 -0.0237385 0)
(-0.0190303 -0.0264023 0)
(-0.0155234 -0.0284031 0)
(-0.0121808 -0.0298466 0)
(-0.00900502 -0.0308549 0)
(-0.00604412 -0.0314673 0)
(-0.00332667 -0.0317581 0)
(-0.000860097 -0.0318519 0)
(-0.0274889 0.0129805 0)
(-0.00896225 -0.0140519 0)
(-0.00651316 -0.0192187 0)
(-0.00651452 -0.0175417 0)
(0.0116403 -0.0335967 0)
(0.039546 -0.0398069 0)
(0.0653391 -0.0401218 0)
(0.0887997 -0.0286608 0)
(0.0817407 -0.0166897 0)
(0.104033 0.0373384 0)
(0.0900688 0.080574 0)
(0.0275784 0.0992903 0)
(0.00684659 0.0769157 0)
(-0.0288509 0.0519832 0)
(-0.0306864 0.0418034 0)
(-0.0342077 0.0272554 0)
(-0.0409684 0.0156474 0)
(-0.0409224 0.0036255 0)
(-0.0392078 -0.00610362 0)
(-0.0348006 -0.0134881 0)
(-0.031453 -0.0182847 0)
(-0.0281861 -0.0224456 0)
(-0.0245746 -0.0261299 0)
(-0.020835 -0.0290333 0)
(-0.0170863 -0.0312291 0)
(-0.0133528 -0.0328622 0)
(-0.0098718 -0.0339656 0)
(-0.00668438 -0.0346579 0)
(-0.00371221 -0.0350419 0)
(-0.000941714 -0.0351864 0)
(-0.0300163 0.0141886 0)
(-0.00840866 -0.0154458 0)
(-0.00788414 -0.0203807 0)
(-0.00839317 -0.0178452 0)
(0.0103478 -0.0358055 0)
(0.0392995 -0.0425705 0)
(0.0664713 -0.0437301 0)
(0.0802718 -0.0283462 0)
(0.0478902 -0.0193514 0)
(0.0950143 0.0332915 0)
(0.0971073 0.0881227 0)
(0.0166158 0.110216 0)
(-0.00885612 0.0816117 0)
(-0.0293754 0.0535934 0)
(-0.0309345 0.0456664 0)
(-0.0375942 0.0289948 0)
(-0.0448033 0.0161958 0)
(-0.0433478 0.0034943 0)
(-0.0421588 -0.0080349 0)
(-0.0354668 -0.0153253 0)
(-0.0334165 -0.0198607 0)
(-0.0302862 -0.0244756 0)
(-0.0266751 -0.0285013 0)
(-0.0227182 -0.0318051 0)
(-0.0184995 -0.0344138 0)
(-0.0144373 -0.0362151 0)
(-0.0106262 -0.0373676 0)
(-0.00709881 -0.0381299 0)
(-0.00388195 -0.0386203 0)
(-0.000970273 -0.0388274 0)
(-0.0328354 0.0154811 0)
(-0.00762782 -0.0169754 0)
(-0.00971432 -0.0215696 0)
(-0.0104074 -0.0179284 0)
(0.00894922 -0.038105 0)
(0.0389774 -0.0453995 0)
(0.0673241 -0.0471668 0)
(0.0702057 -0.0262383 0)
(0.017839 -0.019591 0)
(0.0774643 0.0238065 0)
(0.0985478 0.0958679 0)
(0.0294404 0.12237 0)
(-0.0114339 0.0902947 0)
(-0.0438611 0.0556778 0)
(-0.0384894 0.0471134 0)
(-0.04298 0.0311382 0)
(-0.0459511 0.0151636 0)
(-0.0482634 0.00453403 0)
(-0.0445624 -0.0114903 0)
(-0.0367213 -0.0166133 0)
(-0.035522 -0.0207478 0)
(-0.0333177 -0.0264979 0)
(-0.0292394 -0.0311433 0)
(-0.0245626 -0.0349587 0)
(-0.0201074 -0.0377783 0)
(-0.0157941 -0.0397977 0)
(-0.0115549 -0.0411638 0)
(-0.00758685 -0.0419778 0)
(-0.00406636 -0.0423985 0)
(-0.000993655 -0.0425484 0)
(-0.0359766 0.0168678 0)
(-0.00656071 -0.018658 0)
(-0.012247 -0.0228016 0)
(-0.0125359 -0.0177635 0)
(0.00744269 -0.0405244 0)
(0.0385281 -0.0483126 0)
(0.065674 -0.0497077 0)
(0.0568279 -0.0229805 0)
(-0.00976601 -0.0146145 0)
(0.0540942 0.00866185 0)
(0.0994624 0.0985341 0)
(0.0348795 0.132113 0)
(-0.0206406 0.0995707 0)
(-0.0501026 0.0595293 0)
(-0.0393361 0.0469154 0)
(-0.0488008 0.0308406 0)
(-0.0449525 0.0158453 0)
(-0.0539324 0.00565738 0)
(-0.053255 -0.0154244 0)
(-0.0422379 -0.0194422 0)
(-0.0381145 -0.0210572 0)
(-0.0365984 -0.0285511 0)
(-0.0322068 -0.0341988 0)
(-0.0274591 -0.0382964 0)
(-0.0225068 -0.0414434 0)
(-0.0175107 -0.0438327 0)
(-0.0128324 -0.0454037 0)
(-0.0085381 -0.0462398 0)
(-0.00462608 -0.046564 0)
(-0.00109308 -0.0466396 0)
(-0.0394741 0.01836 0)
(-0.00513471 -0.0205078 0)
(-0.0161372 -0.0241055 0)
(-0.0146158 -0.0172999 0)
(0.00581952 -0.0431029 0)
(0.0375022 -0.05125 0)
(0.0544133 -0.0499244 0)
(0.0330499 -0.0202356 0)
(-0.0226763 -0.00607528 0)
(0.0343503 -0.0132252 0)
(0.111693 0.095405 0)
(0.023564 0.155667 0)
(-0.0341868 0.109794 0)
(-0.06441 0.0591225 0)
(-0.0478749 0.045456 0)
(-0.0458492 0.0301965 0)
(-0.0445228 0.0185527 0)
(-0.0637169 0.00907469 0)
(-0.0621864 -0.0191827 0)
(-0.0516364 -0.023998 0)
(-0.0415655 -0.0234569 0)
(-0.039778 -0.0308579 0)
(-0.035145 -0.0370873 0)
(-0.0300257 -0.0419329 0)
(-0.0243287 -0.0457497 0)
(-0.0189593 -0.0482553 0)
(-0.0140949 -0.0498639 0)
(-0.00956334 -0.0508428 0)
(-0.00524619 -0.0513338 0)
(-0.00119289 -0.0514873 0)
(-0.0433645 0.0199723 0)
(-0.00326873 -0.0225349 0)
(-0.0233203 -0.0255438 0)
(-0.0156778 -0.0164124 0)
(0.00393586 -0.0458737 0)
(0.0331564 -0.0537212 0)
(0.0209547 -0.0453723 0)
(-0.00637347 -0.0197649 0)
(0.0091036 -0.00907465 0)
(0.37259 -0.032462 0)
(-0.118804 0.136465 0)
(0.0227822 0.184208 0)
(-0.0494714 0.11897 0)
(-0.0842682 0.0595179 0)
(-0.0605814 0.0404043 0)
(-0.0402656 0.0263027 0)
(-0.0510105 0.0270111 0)
(-0.0659037 0.0103908 0)
(-0.0528656 -0.0256107 0)
(-0.0575052 -0.0226795 0)
(-0.049307 -0.0292381 0)
(-0.0445773 -0.0338375 0)
(-0.0383646 -0.040443 0)
(-0.0322843 -0.045993 0)
(-0.0262963 -0.0502708 0)
(-0.0204806 -0.0529034 0)
(-0.0149827 -0.054651 0)
(-0.00993202 -0.0558396 0)
(-0.00533199 -0.0565467 0)
(-0.00116489 -0.0567959 0)
(-0.0476954 0.0217279 0)
(-0.000852387 -0.0247226 0)
(-0.0374687 -0.027276 0)
(-0.0124799 -0.0148442 0)
(0.000490859 -0.0487343 0)
(0.0151345 -0.0540739 0)
(-0.0331753 -0.0367235 0)
(0.021242 -0.0248818 0)
(0.0647829 -0.0171401 0)
(-0.412352 0.0884738 0)
(-0.382336 -0.0950597 0)
(-0.0382176 0.192966 0)
(-0.0477805 0.130019 0)
(-0.0747706 0.0530942 0)
(-0.0564211 0.0360681 0)
(-0.0539697 0.02421 0)
(-0.0587432 0.0367231 0)
(-0.0651966 0.00434684 0)
(-0.0415055 -0.0286217 0)
(-0.0568446 -0.0140853 0)
(-0.0579207 -0.0356391 0)
(-0.0508426 -0.0384664 0)
(-0.042384 -0.0442474 0)
(-0.0362016 -0.0502036 0)
(-0.0291731 -0.055419 0)
(-0.0218693 -0.058493 0)
(-0.0152155 -0.0602526 0)
(-0.00954655 -0.0612485 0)
(-0.00489051 -0.0617407 0)
(-0.00100047 -0.0618721 0)
(-0.0525461 0.0236626 0)
(0.00267537 -0.0269227 0)
(-0.0611246 -0.0299238 0)
(-0.00161621 -0.0120207 0)
(-0.0105074 -0.0508743 0)
(-0.0329837 -0.0501643 0)
(-0.0233656 -0.0439006 0)
(0.413224 -0.0395752 0)
(0.410107 0.00083209 0)
(-0.124224 0.215252 0)
(-0.336296 -0.127967 0)
(-0.0156577 0.177553 0)
(-0.0611206 0.136172 0)
(-0.082923 0.0501922 0)
(-0.0712076 0.0330659 0)
(-0.0489325 0.0207007 0)
(-0.0686681 0.0427969 0)
(-0.0553052 -0.00870092 0)
(-0.0493887 -0.029844 0)
(-0.0565991 -0.00334441 0)
(-0.0616978 -0.0437745 0)
(-0.0551817 -0.0429358 0)
(-0.0458702 -0.0467782 0)
(-0.0391359 -0.0554836 0)
(-0.0302977 -0.062086 0)
(-0.022098 -0.065185 0)
(-0.0150786 -0.0665599 0)
(-0.00921287 -0.0669041 0)
(-0.00455238 -0.0667278 0)
(-0.000807374 -0.0665112 0)
(-0.0580199 0.0258174 0)
(0.0058678 -0.0291288 0)
(-0.0898496 -0.0316207 0)
(0.00726555 -0.00892157 0)
(-0.0397315 -0.0499912 0)
(-0.0783222 -0.0494157 0)
(0.910193 -0.0762507 0)
(0.752768 -0.0604832 0)
(0.569183 0.0376667 0)
(0.235924 0.350388 0)
(-0.183527 -0.0438863 0)
(-0.153739 0.135878 0)
(-0.109524 0.138793 0)
(-0.0954693 0.0460273 0)
(-0.0619134 0.0362984 0)
(-0.0688284 0.0188573 0)
(-0.0856999 0.0418801 0)
(-0.0357255 -0.0124727 0)
(-0.055407 -0.0273945 0)
(-0.0622892 0.00651011 0)
(-0.0581427 -0.0564905 0)
(-0.0555585 -0.0433784 0)
(-0.0453365 -0.0493358 0)
(-0.0373295 -0.0628058 0)
(-0.0284966 -0.0692381 0)
(-0.0215675 -0.0716057 0)
(-0.0154885 -0.0726884 0)
(-0.00985932 -0.0725927 0)
(-0.00492768 -0.0718356 0)
(-0.000699876 -0.0712642 0)
(-0.0641178 0.0282823 0)
(-0.0108756 -0.0325457 0)
(-0.048418 -0.0267596 0)
(-0.0160542 -0.00933157 0)
(-0.0751822 -0.0456073 0)
(0.331219 -0.122197 0)
(0.765764 -0.10457 0)
(0.731148 -0.0412608 0)
(0.491781 0.0720158 0)
(0.431336 0.418613 0)
(0.223266 -0.019042 0)
(-0.257333 0.0880536 0)
(-0.0978888 0.143687 0)
(-0.120449 0.0485006 0)
(-0.0987797 0.0251281 0)
(-0.0662226 0.0182632 0)
(-0.0912341 0.0526732 0)
(-0.0309523 -0.031812 0)
(-0.0624268 -0.0172311 0)
(-0.0768872 0.00977658 0)
(-0.0508482 -0.0703442 0)
(-0.0524872 -0.0415719 0)
(-0.0400697 -0.0547442 0)
(-0.0324758 -0.0696408 0)
(-0.0263991 -0.0744694 0)
(-0.0222873 -0.0763964 0)
(-0.017308 -0.0781382 0)
(-0.0116207 -0.0785146 0)
(-0.0059082 -0.0778571 0)
(-0.000581654 -0.0771959 0)
(-0.0711425 0.0311515 0)
(-0.0280538 -0.0392238 0)
(-0.0117228 -0.0226285 0)
(-0.0437383 -0.00591164 0)
(0.171403 -0.116785 0)
(0.960234 -0.14583 0)
(0.586959 -0.102916 0)
(0.569656 -0.0252036 0)
(0.370204 0.0921993 0)
(0.39323 0.429921 0)
(-0.219044 0.00259427 0)
(-0.284282 0.10079 0)
(-0.0774323 0.132759 0)
(-0.163954 0.0540955 0)
(-0.093307 -0.00950054 0)
(-0.049551 0.0286038 0)
(-0.0998755 0.0579068 0)
(-0.120376 -0.0368755 0)
(-0.0681884 -0.00949772 0)
(-0.087875 0.0020049 0)
(-0.0574709 -0.0834074 0)
(-0.0462382 -0.0424926 0)
(-0.0366408 -0.0608796 0)
(-0.0298588 -0.0723405 0)
(-0.0272491 -0.0770389 0)
(-0.0242345 -0.0802639 0)
(-0.0186268 -0.0837419 0)
(-0.0123135 -0.0851606 0)
(-0.00598669 -0.0850536 0)
(-7.61669e-05 -0.0844616 0)
(-0.0775951 0.0340474 0)
(-0.0435878 -0.0486695 0)
(0.0583608 -0.0178666 0)
(-0.107518 -0.0038931 0)
(0.924182 -0.210803 0)
(0.583351 -0.134487 0)
(0.390749 -0.0931568 0)
(0.369938 -0.0194833 0)
(0.256408 0.102635 0)
(0.199704 0.396753 0)
(-0.636105 0.15641 0)
(-0.147975 0.138471 0)
(-0.246533 0.0934892 0)
(-0.160719 0.0809515 0)
(-0.094122 -0.0282963 0)
(-0.114403 0.0201107 0)
(-0.100557 0.06271 0)
(-0.165394 -0.0408455 0)
(-0.0915609 -0.0121005 0)
(-0.0903457 -0.0133075 0)
(-0.0744253 -0.0863984 0)
(-0.0334619 -0.0520493 0)
(-0.042097 -0.0636754 0)
(-0.0310417 -0.0733335 0)
(-0.0282077 -0.0803439 0)
(-0.02226 -0.0858247 0)
(-0.0151388 -0.090204 0)
(-0.00899765 -0.0920015 0)
(-0.00352457 -0.0921237 0)
(0.0012373 -0.0913977 0)
(-0.0863871 0.0368052 0)
(-0.103375 -0.0567352 0)
(-0.000124557 -0.0184675 0)
(0.323231 -0.0325349 0)
(0.741802 -0.19712 0)
(0.390599 -0.11541 0)
(0.246259 -0.0867553 0)
(0.218115 -0.0160387 0)
(0.152882 0.108312 0)
(0.0783828 0.339414 0)
(0.017194 0.317924 0)
(-0.453204 0.147407 0)
(-0.19476 0.0697159 0)
(-0.146775 0.0853682 0)
(-0.132801 -0.00362228 0)
(-0.193551 0.0130216 0)
(-0.0831194 0.0749265 0)
(-0.145975 -0.0468788 0)
(-0.12276 -0.0318604 0)
(-0.0412859 -0.0230556 0)
(-0.0718533 -0.0794817 0)
(-0.0530128 -0.0661379 0)
(-0.0469872 -0.06931 0)
(-0.0383861 -0.079933 0)
(-0.0286883 -0.0882414 0)
(-0.01748 -0.0937486 0)
(-0.00881514 -0.0967465 0)
(-0.00294727 -0.0976254 0)
(0.000893247 -0.097078 0)
(0.00336027 -0.0957469 0)
(0.00145955 -0.00149144 0)
(0.0037154 -0.00148412 0)
(0.00619988 -0.00147001 0)
(0.00892381 -0.00144765 0)
(0.0118926 -0.00141629 0)
(0.0151018 -0.00137315 0)
(0.0185278 -0.00131316 0)
(0.0221129 -0.00123032 0)
(0.0257517 -0.00111977 0)
(0.0292806 -0.0009796 0)
(0.0324621 -0.000809149 0)
(0.0349719 -0.000609112 0)
(0.0363718 -0.00037604 0)
(0.0360995 -0.000106256 0)
(0.0334096 0.000210243 0)
(0.0274126 0.00062312 0)
(0.0172561 0.00113641 0)
(0.00235861 0.00170089 0)
(-0.0166232 0.00204774 0)
(-0.0365199 0.00193202 0)
(-0.0523906 0.00133912 0)
(-0.0589745 0.000445629 0)
(-0.0564259 -0.00015822 0)
(-0.0479395 -0.000463501 0)
(-0.0366948 -0.000537266 0)
(-0.0250261 -0.000477945 0)
(-0.0142292 -0.000461544 0)
(-0.00391941 -0.000402281 0)
(0.00296113 -0.000264157 0)
(0.00174092 7.92258e-05 0)
(0.000815223 -0.00386004 0)
(0.00218058 -0.00385001 0)
(0.00371294 -0.00382897 0)
(0.0054427 -0.00379388 0)
(0.00739708 -0.00373747 0)
(0.00958684 -0.00364477 0)
(0.0119924 -0.00349396 0)
(0.0145492 -0.00326008 0)
(0.0171371 -0.00292107 0)
(0.0195683 -0.00245858 0)
(0.0215675 -0.00185951 0)
(0.0227459 -0.00110739 0)
(0.0225652 -0.000194498 0)
(0.0203533 0.000889532 0)
(0.0153244 0.00211264 0)
(0.0066999 0.00344799 0)
(-0.00605261 0.00477679 0)
(-0.0229338 0.00584843 0)
(-0.0423822 0.00606072 0)
(-0.0607343 0.00501638 0)
(-0.0727255 0.00278758 0)
(-0.0739625 0.000147527 0)
(-0.066303 -0.00142399 0)
(-0.0531433 -0.00210197 0)
(-0.0377372 -0.0021281 0)
(-0.0225345 -0.00178658 0)
(-0.00913042 -0.00155863 0)
(0.0025905 -0.00117586 0)
(0.00898798 -0.000607938 0)
(0.00340754 0.000758496 0)
(0.000361657 -0.00493339 0)
(0.00107607 -0.00495382 0)
(0.00191841 -0.00498738 0)
(0.00293295 -0.00502219 0)
(0.00415214 -0.00503232 0)
(0.00558054 -0.00497723 0)
(0.00718175 -0.00481089 0)
(0.00887385 -0.00449268 0)
(0.010534 -0.00399101 0)
(0.0119959 -0.00328211 0)
(0.0130344 -0.00234249 0)
(0.0133485 -0.00114691 0)
(0.012527 0.000329306 0)
(0.0100315 0.00207899 0)
(0.00521601 0.00404928 0)
(-0.00265312 0.00614522 0)
(-0.0142425 0.00818354 0)
(-0.0296047 0.00968079 0)
(-0.0472713 0.00964483 0)
(-0.063915 0.00759274 0)
(-0.0743842 0.003748 0)
(-0.0743503 -0.000527642 0)
(-0.065843 -0.00294063 0)
(-0.0520527 -0.00392496 0)
(-0.0361431 -0.00385506 0)
(-0.0205716 -0.00317814 0)
(-0.00706061 -0.00268084 0)
(0.00457534 -0.00193818 0)
(0.0105696 -0.000881972 0)
(0.00385691 0.0016501 0)
(0.000426398 -0.0057691 0)
(0.0012325 -0.00582589 0)
(0.00215841 -0.0059213 0)
(0.00323066 -0.00602836 0)
(0.00446117 -0.00609761 0)
(0.00583392 -0.00606157 0)
(0.00729954 -0.00585583 0)
(0.00877486 -0.00543215 0)
(0.0101469 -0.00476009 0)
(0.0112697 -0.003815 0)
(0.0119488 -0.00256962 0)
(0.0119259 -0.000993363 0)
(0.0108546 0.000942991 0)
(0.00826351 0.00323937 0)
(0.00356922 0.00584739 0)
(-0.00398518 0.00863431 0)
(-0.015191 0.0113743 0)
(-0.0302166 0.0133189 0)
(-0.0477744 0.0130725 0)
(-0.0645439 0.0100489 0)
(-0.0751088 0.00462896 0)
(-0.0747633 -0.00128597 0)
(-0.0659365 -0.00450464 0)
(-0.051908 -0.00577667 0)
(-0.0358464 -0.00559988 0)
(-0.0201815 -0.00457487 0)
(-0.00668482 -0.00379984 0)
(0.00498385 -0.00270241 0)
(0.0109596 -0.00114806 0)
(0.00400833 0.00259959 0)
(0.00060558 -0.00688551 0)
(0.00166497 -0.00695348 0)
(0.00283322 -0.00706304 0)
(0.00410997 -0.00717794 0)
(0.00548359 -0.00723323 0)
(0.00692641 -0.00714861 0)
(0.00839424 -0.00685113 0)
(0.00982156 -0.00628961 0)
(0.0111177 -0.00543155 0)
(0.0121543 -0.00424953 0)
(0.0127492 -0.00270959 0)
(0.0126545 -0.000773341 0)
(0.0115255 0.00159713 0)
(0.00890241 0.00441075 0)
(0.00420717 0.00762542 0)
(-0.00335577 0.0110909 0)
(-0.0146447 0.0145578 0)
(-0.0299326 0.0169994 0)
(-0.0480407 0.0165596 0)
(-0.0654222 0.0125431 0)
(-0.07627 0.00550818 0)
(-0.0754997 -0.00212488 0)
(-0.0662645 -0.00611152 0)
(-0.0519593 -0.00764978 0)
(-0.0357608 -0.0073565 0)
(-0.0200327 -0.00597236 0)
(-0.00657139 -0.00492154 0)
(0.00517234 -0.00347144 0)
(0.011206 -0.00142502 0)
(0.0041307 0.00357831 0)
(0.000731839 -0.00828684 0)
(0.00197551 -0.00833885 0)
(0.00332055 -0.0084155 0)
(0.0047496 -0.00847638 0)
(0.00623764 -0.00845451 0)
(0.00775425 -0.00826952 0)
(0.00926247 -0.00784741 0)
(0.0107136 -0.00713342 0)
(0.0120313 -0.00608817 0)
(0.013097 -0.00467324 0)
(0.0137321 -0.00284444 0)
(0.0136845 -0.000551612 0)
(0.0125973 0.00225403 0)
(0.0100003 0.00558757 0)
(0.00530788 0.00941472 0)
(-0.00232667 0.0135706 0)
(-0.0138224 0.0178112 0)
(-0.0295533 0.0208089 0)
(-0.048441 0.020169 0)
(-0.0666081 0.0150989 0)
(-0.0777789 0.00638218 0)
(-0.0764239 -0.00307525 0)
(-0.0666769 -0.00777127 0)
(-0.0520289 -0.00954636 0)
(-0.0356704 -0.00912508 0)
(-0.0198744 -0.00736819 0)
(-0.00646696 -0.00604621 0)
(0.00537291 -0.00424629 0)
(0.0114877 -0.00171845 0)
(0.00427643 0.00458824 0)
(0.000798692 -0.00986258 0)
(0.00214811 -0.00988461 0)
(0.00360106 -0.00990388 0)
(0.00513389 -0.00988022 0)
(0.00671819 -0.00975143 0)
(0.00832326 -0.00944286 0)
(0.00991638 -0.00888297 0)
(0.0114533 -0.00801195 0)
(0.0128622 -0.00677916 0)
(0.0140259 -0.00513217 0)
(0.0147654 -0.00301362 0)
(0.0148188 -0.000360546 0)
(0.0138206 0.0028905 0)
(0.0112817 0.00675555 0)
(0.00661331 0.0112112 0)
(-0.0010955 0.0160769 0)
(-0.0128372 0.0211601 0)
(-0.0291064 0.0247893 0)
(-0.0489598 0.0239358 0)
(-0.0680854 0.0177287 0)
(-0.0796367 0.00724868 0)
(-0.0775244 -0.00417216 0)
(-0.0671625 -0.00949258 0)
(-0.0521021 -0.0114692 0)
(-0.0355559 -0.0109077 0)
(-0.0196803 -0.00876085 0)
(-0.00634345 -0.00717409 0)
(0.00561513 -0.00502803 0)
(0.0118286 -0.0020329 0)
(0.0044552 0.00563657 0)
(0.000836124 -0.0115365 0)
(0.00225411 -0.0115278 0)
(0.00378415 -0.0114853 0)
(0.00540446 -0.0113712 0)
(0.00708762 -0.0111297 0)
(0.00880319 -0.010693 0)
(0.0105174 -0.00999142 0)
(0.0121833 -0.00895983 0)
(0.0137267 -0.00753581 0)
(0.0150289 -0.00565287 0)
(0.0159068 -0.00323731 0)
(0.0160917 -0.000212952 0)
(0.0152096 0.00349509 0)
(0.0127455 0.00790752 0)
(0.00812209 0.0130119 0)
(0.000336302 0.0186129 0)
(-0.0116715 0.0246244 0)
(-0.0285651 0.0289823 0)
(-0.0495972 0.0279023 0)
(-0.0698728 0.0204477 0)
(-0.0818696 0.00811021 0)
(-0.0788013 -0.00545641 0)
(-0.0677196 -0.0112814 0)
(-0.0521747 -0.0134202 0)
(-0.0354141 -0.0127064 0)
(-0.0194472 -0.0101486 0)
(-0.0062008 -0.00830517 0)
(0.00590185 -0.00581782 0)
(0.0122333 -0.0023731 0)
(0.0046702 0.00673156 0)
(0.000867776 -0.0132877 0)
(0.00234959 -0.0132482 0)
(0.00395487 -0.0131477 0)
(0.00566628 -0.0129498 0)
(0.00745883 -0.0126015 0)
(0.00930281 -0.0120393 0)
(0.0111609 -0.0111943 0)
(0.0129803 -0.00999733 0)
(0.0146831 -0.00837545 0)
(0.0161479 -0.00624886 0)
(0.0171873 -0.00352756 0)
(0.0175263 -0.000121879 0)
(0.0167817 0.00406021 0)
(0.0144034 0.00903907 0)
(0.00984625 0.0148141 0)
(0.00197959 0.0211783 0)
(-0.0103033 0.0282243 0)
(-0.0279093 0.0334359 0)
(-0.0503648 0.0321229 0)
(-0.0719961 0.0232722 0)
(-0.0845079 0.00897064 0)
(-0.0802553 -0.0069749 0)
(-0.0683458 -0.0131401 0)
(-0.0522421 -0.0154004 0)
(-0.0352427 -0.0145232 0)
(-0.0191732 -0.011529 0)
(-0.00603941 -0.0094396 0)
(0.0062342 -0.00661674 0)
(0.012703 -0.00274412 0)
(0.00492399 0.00788205 0)
(0.000902612 -0.0151137 0)
(0.0024567 -0.0150515 0)
(0.00414967 -0.0149027 0)
(0.00596629 -0.0146286 0)
(0.00788392 -0.0141796 0)
(0.00987124 -0.0134943 0)
(0.0118876 -0.0125043 0)
(0.0138757 -0.0111361 0)
(0.0157539 -0.00930905 0)
(0.0173988 -0.00693027 0)
(0.018619 -0.00389356 0)
(0.0191334 -9.48203e-05 0)
(0.0185461 0.00457935 0)
(0.0162618 0.0101484 0)
(0.0117969 0.016615 0)
(0.00384352 0.0237537 0)
(-0.00870958 0.0319831 0)
(-0.0271182 0.0382037 0)
(-0.0512787 0.0366674 0)
(-0.0744817 0.0262194 0)
(-0.0875867 0.00983776 0)
(-0.0818891 -0.00878235 0)
(-0.0690368 -0.0150663 0)
(-0.0522987 -0.0174103 0)
(-0.0350389 -0.0163602 0)
(-0.0188562 -0.0128989 0)
(-0.00586212 -0.0105775 0)
(0.00661211 -0.00742585 0)
(0.0132404 -0.00315192 0)
(0.00521955 0.0090975 0)
(0.000959143 -0.0170414 0)
(0.0026084 -0.0169557 0)
(0.00440233 -0.016761 0)
(0.00633427 -0.016417 0)
(0.00838607 -0.0158736 0)
(0.0105275 -0.0150683 0)
(0.012714 -0.0139296 0)
(0.0148831 -0.0123835 0)
(0.0169469 -0.0103446 0)
(0.0187867 -0.007706 0)
(0.0202077 -0.00434412 0)
(0.020919 -0.000139715 0)
(0.0205126 0.00504822 0)
(0.0183254 0.0112311 0)
(0.0139837 0.0184089 0)
(0.00593746 0.026341 0)
(-0.00686528 0.0359224 0)
(-0.0261695 0.0433405 0)
(-0.0523569 0.041617 0)
(-0.0773539 0.0293067 0)
(-0.0911417 0.0107262 0)
(-0.0837102 -0.0109431 0)
(-0.0697825 -0.0170515 0)
(-0.052338 -0.0194503 0)
(-0.0347997 -0.01822 0)
(-0.0184935 -0.0142546 0)
(-0.00567053 -0.011719 0)
(0.00703662 -0.00824609 0)
(0.0138474 -0.00360243 0)
(0.0055602 0.0103881 0)
(0.00101128 -0.019089 0)
(0.00276144 -0.0189778 0)
(0.00467827 -0.0187408 0)
(0.00675312 -0.018334 0)
(0.00896634 -0.0176981 0)
(0.0112823 -0.0167691 0)
(0.0136516 -0.0154772 0)
(0.0160059 -0.0137477 0)
(0.0182678 -0.0114873 0)
(0.020315 -0.00858467 0)
(0.0219577 -0.0048894 0)
(0.0228895 -0.00026695 0)
(0.0226916 0.00545954 0)
(0.0205968 0.0122855 0)
(0.0164163 0.0201995 0)
(0.00825967 0.0289288 0)
(-0.00474061 0.0400664 0)
(-0.0250383 0.0489036 0)
(-0.0536212 0.0470604 0)
(-0.0806502 0.0325434 0)
(-0.095217 0.0116587 0)
(-0.0857345 -0.0135324 0)
(-0.0705576 -0.0190811 0)
(-0.0523518 -0.0215193 0)
(-0.0345223 -0.0201064 0)
(-0.0180823 -0.0155906 0)
(-0.00546758 -0.0128641 0)
(0.00750858 -0.00907825 0)
(0.0145265 -0.0041026 0)
(0.00594989 0.0117648 0)
(0.00108522 -0.0212613 0)
(0.00296556 -0.0211427 0)
(0.00503103 -0.0208712 0)
(0.00726439 -0.020396 0)
(0.00964149 -0.0196638 0)
(0.012132 -0.0186084 0)
(0.0146872 -0.017158 0)
(0.0172504 -0.0152298 0)
(0.0197165 -0.0127445 0)
(0.0219854 -0.00957333 0)
(0.0238716 -0.00554034 0)
(0.0250502 -0.000485302 0)
(0.0250966 0.00580682 0)
(0.0230792 0.0132964 0)
(0.0190889 0.0220005 0)
(0.0108064 0.0315047 0)
(-0.00236244 0.0444464 0)
(-0.0237211 0.05496 0)
(-0.0551726 0.0530955 0)
(-0.0845106 0.0359334 0)
(-0.0998724 0.0126842 0)
(-0.0879874 -0.016634 0)
(-0.0712863 -0.0211348 0)
(-0.0523273 -0.0236215 0)
(-0.034204 -0.0220247 0)
(-0.0176191 -0.0169009 0)
(-0.00525614 -0.0140131 0)
(0.00802865 -0.00992302 0)
(0.0152803 -0.00466038 0)
(0.00639329 0.0132396 0)
(0.00119361 -0.0236156 0)
(0.00322628 -0.0234747 0)
(0.00543453 -0.0231606 0)
(0.00782772 -0.0226174 0)
(0.0103942 -0.0217878 0)
(0.0130969 -0.0205987 0)
(0.0158725 -0.0189696 0)
(0.0186238 -0.0168401 0)
(0.0213059 -0.0141141 0)
(0.0237924 -0.0106823 0)
(0.0259493 -0.00630885 0)
(0.027408 -0.000813167 0)
(0.0277449 0.00608595 0)
(0.0257684 0.01425 0)
(0.0219955 0.023747 0)
(0.0137231 0.0340091 0)
(0.000125338 0.0491507 0)
(-0.0223714 0.0615548 0)
(-0.0574841 0.0598162 0)
(-0.0892931 0.0395005 0)
(-0.10513 0.0138792 0)
(-0.0904567 -0.0203235 0)
(-0.07175 -0.023197 0)
(-0.0522502 -0.0257753 0)
(-0.0338427 -0.0239803 0)
(-0.0171001 -0.0181786 0)
(-0.00504035 -0.0151662 0)
(0.0085987 -0.010781 0)
(0.0161125 -0.00528412 0)
(0.00689568 0.0148254 0)
(0.00128809 -0.0261692 0)
(0.00348067 -0.0259803 0)
(0.00587473 -0.0256098 0)
(0.00847258 -0.0250046 0)
(0.0112574 -0.0240745 0)
(0.0141688 -0.0227451 0)
(0.0171589 -0.0209366 0)
(0.0201537 -0.0185688 0)
(0.0230099 -0.0156125 0)
(0.0257379 -0.0119123 0)
(0.0281887 -0.00721217 0)
(0.0299563 -0.00127107 0)
(0.030698 0.00627843 0)
(0.0285811 0.0152568 0)
(0.0255263 0.0250268 0)
(0.0177902 0.0362804 0)
(0.00364453 0.0541691 0)
(-0.0211136 0.0684883 0)
(-0.0615135 0.0672636 0)
(-0.0950504 0.0433641 0)
(-0.110703 0.0152877 0)
(-0.0928207 -0.0245917 0)
(-0.071561 -0.0252985 0)
(-0.0521139 -0.0280111 0)
(-0.0334371 -0.0259793 0)
(-0.0165208 -0.0194155 0)
(-0.00482402 -0.0163239 0)
(0.00921945 -0.0116525 0)
(0.0170263 -0.00598348 0)
(0.00746317 0.0165363 0)
(0.00136911 -0.0288927 0)
(0.00372592 -0.028705 0)
(0.00635015 -0.0283053 0)
(0.00920106 -0.0276242 0)
(0.0122288 -0.0265756 0)
(0.0154034 -0.0250631 0)
(0.0186086 -0.023045 0)
(0.0217696 -0.0204413 0)
(0.0248787 -0.0171975 0)
(0.0278036 -0.0132722 0)
(0.0305695 -0.00826065 0)
(0.0326597 -0.00188535 0)
(0.0340856 0.00633254 0)
(0.0316029 0.0165192 0)
(0.0291613 0.0259645 0)
(0.0228698 0.0380119 0)
(0.0113185 0.0588543 0)
(-0.0197928 0.0749265 0)
(-0.0670642 0.0756606 0)
(-0.100894 0.0476212 0)
(-0.115347 0.0166673 0)
(-0.0937673 -0.0291234 0)
(-0.07091 -0.0275809 0)
(-0.0519632 -0.0303609 0)
(-0.0329863 -0.0280268 0)
(-0.0158763 -0.0206021 0)
(-0.00461225 -0.0174874 0)
(0.00989217 -0.0125376 0)
(0.0180263 -0.00676932 0)
(0.00810276 0.0183879 0)
(0.0015426 -0.0318285 0)
(0.00412933 -0.0316602 0)
(0.00695953 -0.0312346 0)
(0.0100173 -0.0304468 0)
(0.0132615 -0.0292559 0)
(0.0166579 -0.0275955 0)
(0.0202037 -0.0253088 0)
(0.0236411 -0.0224115 0)
(0.0268489 -0.0189307 0)
(0.0299861 -0.0147392 0)
(0.0331152 -0.00944876 0)
(0.0354678 -0.00266991 0)
(0.037675 0.00617948 0)
(0.0350231 0.0179798 0)
(0.0315718 0.0273799 0)
(0.0246206 0.0400183 0)
(0.016303 0.0622258 0)
(-0.021057 0.0797829 0)
(-0.0715116 0.085821 0)
(-0.106738 0.0518686 0)
(-0.1154 0.0171475 0)
(-0.0905779 -0.0328868 0)
(-0.0716667 -0.0301672 0)
(-0.051896 -0.0328121 0)
(-0.0324902 -0.0301255 0)
(-0.0151616 -0.0217294 0)
(-0.00441005 -0.0186576 0)
(0.0106189 -0.0134363 0)
(0.0191171 -0.00765376 0)
(0.00882241 0.0203972 0)
(0.00177383 -0.0351407 0)
(0.00464024 -0.0348872 0)
(0.00769425 -0.0343661 0)
(0.010996 -0.0334977 0)
(0.0145883 -0.0321647 0)
(0.0183119 -0.0302821 0)
(0.0219711 -0.0278145 0)
(0.0256319 -0.0245466 0)
(0.0289828 -0.020686 0)
(0.0320678 -0.0163275 0)
(0.0357227 -0.0108678 0)
(0.0388905 -0.00341321 0)
(0.0400901 0.0057571 0)
(0.0392523 0.019871 0)
(0.0362855 0.0284524 0)
(0.0283157 0.0430971 0)
(0.0298054 0.0634879 0)
(-0.0186907 0.0850679 0)
(-0.0737953 0.0981165 0)
(-0.112233 0.0551818 0)
(-0.104579 0.0151715 0)
(-0.0806046 -0.034299 0)
(-0.074079 -0.0326027 0)
(-0.0518913 -0.0353189 0)
(-0.0319483 -0.032276 0)
(-0.0143705 -0.0227945 0)
(-0.00422391 -0.0198352 0)
(0.0114003 -0.014348 0)
(0.0203039 -0.00865004 0)
(0.00963116 0.022583 0)
(0.00186418 -0.0387532 0)
(0.00491721 -0.0383954 0)
(0.00827056 -0.0377706 0)
(0.0119127 -0.0368445 0)
(0.0158093 -0.0354227 0)
(0.0199428 -0.0332463 0)
(0.0240682 -0.0303258 0)
(0.0277872 -0.0267253 0)
(0.031129 -0.022475 0)
(0.0335146 -0.0176686 0)
(0.0362287 -0.0129756 0)
(0.0421577 -0.00415293 0)
(0.0417897 0.00508109 0)
(0.0453814 0.0214604 0)
(0.038053 0.0297352 0)
(0.037767 0.0473435 0)
(0.0386974 0.0663495 0)
(-0.00765971 0.0950885 0)
(-0.074 0.113069 0)
(-0.115353 0.0559435 0)
(-0.0784285 0.0097522 0)
(-0.0651592 -0.0325225 0)
(-0.0738216 -0.0339461 0)
(-0.051923 -0.03794 0)
(-0.0313601 -0.0344791 0)
(-0.0134956 -0.0237964 0)
(-0.00406186 -0.0210215 0)
(0.0122387 -0.0152718 0)
(0.0215936 -0.00977392 0)
(0.0105393 0.0249661 0)
(0.00196966 -0.0424887 0)
(0.00524308 -0.0421979 0)
(0.00897317 -0.0415871 0)
(0.0130667 -0.0405121 0)
(0.0173129 -0.0388498 0)
(0.0216096 -0.0365115 0)
(0.02614 -0.0332767 0)
(0.0306152 -0.0290505 0)
(0.0337708 -0.0239937 0)
(0.0342986 -0.0178773 0)
(0.0356269 -0.0153139 0)
(0.0446709 -0.00607114 0)
(0.0460459 0.00480155 0)
(0.0483327 0.0230885 0)
(0.0463672 0.0276712 0)
(0.0453262 0.0490065 0)
(0.0462654 0.0719326 0)
(-0.00176279 0.111871 0)
(-0.0714524 0.128911 0)
(-0.11059 0.0524726 0)
(-0.031562 0.00238674 0)
(-0.0490307 -0.028102 0)
(-0.0683979 -0.0337189 0)
(-0.0522248 -0.0407164 0)
(-0.030724 -0.036735 0)
(-0.0125281 -0.0247323 0)
(-0.00393377 -0.0222208 0)
(0.0131355 -0.0162064 0)
(0.022993 -0.011042 0)
(0.0115586 0.0275694 0)
(0.00234064 -0.0465958 0)
(0.00603966 -0.0463886 0)
(0.0100979 -0.0458157 0)
(0.0145181 -0.0446204 0)
(0.0193049 -0.042661 0)
(0.0242824 -0.0399326 0)
(0.0290252 -0.0364765 0)
(0.0335591 -0.0317118 0)
(0.0367555 -0.02516 0)
(0.0373708 -0.0179782 0)
(0.0440793 -0.0177183 0)
(0.0512994 -0.00836587 0)
(0.0494356 0.00533925 0)
(0.049158 0.0227314 0)
(0.0527663 0.0279248 0)
(0.0545666 0.0476838 0)
(0.0406538 0.0767058 0)
(0.00695161 0.121954 0)
(-0.0797598 0.142249 0)
(-0.0834206 0.0450603 0)
(0.0227821 -0.00643079 0)
(-0.0333063 -0.0212774 0)
(-0.0547982 -0.0321007 0)
(-0.052292 -0.0433869 0)
(-0.0300263 -0.0390469 0)
(-0.0114582 -0.0255985 0)
(-0.00385213 -0.0234486 0)
(0.0140926 -0.0171496 0)
(0.0245112 -0.0124733 0)
(0.0127019 0.0304184 0)
(0.0027745 -0.0513977 0)
(0.0069314 -0.0510302 0)
(0.0112764 -0.0502624 0)
(0.0158565 -0.0489664 0)
(0.0208714 -0.0470007 0)
(0.0264745 -0.0439895 0)
(0.0320695 -0.0398151 0)
(0.0369368 -0.034538 0)
(0.0406544 -0.0266371 0)
(0.0461672 -0.0204825 0)
(0.0517223 -0.0212688 0)
(0.0610844 -0.0104759 0)
(0.0623375 0.00971293 0)
(0.0428785 0.022235 0)
(0.049036 0.0249104 0)
(0.0647367 0.0464406 0)
(0.0565762 0.0852774 0)
(0.00130946 0.134743 0)
(-0.113485 0.152275 0)
(-0.118852 0.0208787 0)
(-0.00267101 -0.0161005 0)
(-0.0130081 -0.0142343 0)
(-0.0235035 -0.0293024 0)
(-0.0486406 -0.0450862 0)
(-0.0292067 -0.0414256 0)
(-0.0102737 -0.0263911 0)
(-0.00383186 -0.0247142 0)
(0.0151107 -0.0180989 0)
(0.0261584 -0.0140894 0)
(0.0139827 0.0335421 0)
(0.00287879 -0.0566396 0)
(0.00720202 -0.0560605 0)
(0.0119213 -0.0550376 0)
(0.0170738 -0.053566 0)
(0.0226552 -0.0515133 0)
(0.0286139 -0.0484232 0)
(0.0348046 -0.0438987 0)
(0.0410777 -0.0383324 0)
(0.0451304 -0.0290606 0)
(0.0539968 -0.024627 0)
(0.0459952 -0.0214032 0)
(0.0544143 -0.014589 0)
(0.0702895 0.0133027 0)
(0.0426576 0.0260021 0)
(0.0575647 0.0195035 0)
(0.0672401 0.0434489 0)
(0.085214 0.0837296 0)
(0.0368791 0.149637 0)
(-0.0606832 0.161422 0)
(0.478934 0.0631444 0)
(-0.0788293 -0.023381 0)
(0.0190125 -0.0110863 0)
(0.0289602 -0.0260863 0)
(-0.0309849 -0.0436796 0)
(-0.0278739 -0.0438002 0)
(-0.00896002 -0.0271043 0)
(-0.0038918 -0.0260239 0)
(0.0161909 -0.0190509 0)
(0.0279477 -0.015914 0)
(0.015393 0.0369761 0)
(0.00270092 -0.0617119 0)
(0.00685577 -0.0612465 0)
(0.0118585 -0.0604088 0)
(0.0178634 -0.0590408 0)
(0.0248052 -0.056833 0)
(0.0323722 -0.053191 0)
(0.039577 -0.0482839 0)
(0.0459406 -0.0440621 0)
(0.0507611 -0.0344937 0)
(0.0575981 -0.0227977 0)
(0.0353046 -0.0129791 0)
(0.0373265 -0.0261398 0)
(0.0784053 0.0168114 0)
(0.0590341 0.0279476 0)
(0.0649865 0.0152571 0)
(0.0784338 0.039982 0)
(0.0862975 0.0877664 0)
(0.0395256 0.158381 0)
(0.0946755 0.131414 0)
(1.51844 -0.00621556 0)
(0.108256 0.164643 0)
(-0.0552821 -0.0227581 0)
(0.0264718 -0.0278517 0)
(0.0120274 -0.0371168 0)
(-0.0234649 -0.0454994 0)
(-0.00749284 -0.0277195 0)
(-0.00405414 -0.0273873 0)
(0.0173351 -0.0200013 0)
(0.029894 -0.0179737 0)
(0.0167587 0.0407719 0)
(0.00269855 -0.0664013 0)
(0.00670497 -0.0663737 0)
(0.0116904 -0.0661814 0)
(0.0178205 -0.0653233 0)
(0.0252127 -0.0634363 0)
(0.0344373 -0.0592748 0)
(0.0448133 -0.0522546 0)
(0.0515306 -0.0504669 0)
(0.0539933 -0.0434306 0)
(0.057374 -0.0152166 0)
(0.0367878 -0.00110103 0)
(0.0168917 -0.0410276 0)
(0.0624474 0.0124669 0)
(0.0634261 0.0368488 0)
(0.0700092 0.0108955 0)
(0.0901227 0.0351377 0)
(0.0970633 0.0959848 0)
(0.0795046 0.160793 0)
(0.233171 0.0210133 0)
(0.246843 -0.0590802 0)
(-0.0844569 0.248716 0)
(-0.576194 -0.00701867 0)
(-0.444798 -0.0774736 0)
(0.0664998 -0.0309731 0)
(-0.00572408 -0.0444787 0)
(-0.00574975 -0.0281381 0)
(-0.00434123 -0.0288147 0)
(0.0185432 -0.0209448 0)
(0.032017 -0.0202997 0)
(0.0175483 0.0450018 0)
(0.00328424 -0.071147 0)
(0.00758674 -0.0714382 0)
(0.0124172 -0.0716884 0)
(0.0177109 -0.0711399 0)
(0.0236221 -0.0699762 0)
(0.0318122 -0.0665697 0)
(0.0441751 -0.05688 0)
(0.055195 -0.0551362 0)
(0.0569253 -0.0536893 0)
(0.0606563 -0.0102663 0)
(0.0590843 0.0147133 0)
(0.0166104 -0.0511039 0)
(0.0831495 -0.00287764 0)
(0.0487123 0.046493 0)
(0.0832409 0.00164077 0)
(0.0861316 0.0379547 0)
(0.0820084 0.101243 0)
(0.0725924 0.158179 0)
(0.218746 0.00210922 0)
(0.0434964 -0.0489773 0)
(-0.328196 0.342343 0)
(-0.57649 0.0385225 0)
(-0.583075 -0.103132 0)
(-0.26445 -0.0884316 0)
(0.0446713 -0.0365204 0)
(-0.00280105 -0.0277708 0)
(-0.00472048 -0.0303163 0)
(0.019817 -0.0218744 0)
(0.0343403 -0.0229264 0)
(0.0178315 0.0496999 0)
(0.00449615 -0.0768875 0)
(0.00961633 -0.0768797 0)
(0.0145962 -0.0766732 0)
(0.0190642 -0.0754498 0)
(0.0227058 -0.0743876 0)
(0.0271865 -0.0728571 0)
(0.0365667 -0.0623043 0)
(0.0489801 -0.0593956 0)
(0.0538519 -0.0593568 0)
(0.0708576 -0.0205302 0)
(0.0799508 0.0260728 0)
(0.0812649 -0.0484921 0)
(0.104455 -0.0222563 0)
(0.0857235 0.0617253 0)
(0.089887 -0.0128741 0)
(0.101467 0.0331854 0)
(0.0790755 0.109205 0)
(0.151976 0.120003 0)
(0.0571902 0.0357382 0)
(-0.136312 -0.0256373 0)
(-0.464367 0.381879 0)
(-0.398792 0.034718 0)
(-0.468599 -0.098406 0)
(-0.763731 -0.172893 0)
(0.123357 -0.038578 0)
(0.0066309 -0.0247227 0)
(-0.00459986 -0.0318777 0)
(0.0211609 -0.0227789 0)
(0.0368968 -0.0258945 0)
(0.0172298 0.0548518 0)
(0.00550621 -0.0837804 0)
(0.0109941 -0.0829627 0)
(0.0161263 -0.0816295 0)
(0.0206831 -0.0789152 0)
(0.0240866 -0.0762636 0)
(0.0260964 -0.0758197 0)
(0.0310432 -0.0675775 0)
(0.036605 -0.0658808 0)
(0.046606 -0.0533856 0)
(0.0791682 -0.0469446 0)
(0.0877062 0.0293321 0)
(0.11918 -0.0573589 0)
(0.097904 -0.0224425 0)
(0.105362 0.0679545 0)
(0.109322 -0.0282363 0)
(0.163478 0.0391964 0)
(0.102845 0.126056 0)
(0.251322 0.0616769 0)
(0.0221469 0.208982 0)
(-0.267965 0.00464271 0)
(-0.441368 0.36348 0)
(-0.247791 0.0297586 0)
(-0.328376 -0.0670974 0)
(-0.682545 -0.172276 0)
(-0.429673 -0.119058 0)
(0.0384761 -0.0150843 0)
(0.000356459 -0.033237 0)
(0.0226334 -0.0236178 0)
(0.0395649 -0.0292458 0)
(0.0129773 0.0605992 0)
(0.00551632 -0.0902199 0)
(0.0095907 -0.0885369 0)
(0.0134071 -0.0862484 0)
(0.017427 -0.0827303 0)
(0.0225681 -0.0782874 0)
(0.0273797 -0.0770616 0)
(0.0339296 -0.0747814 0)
(0.0427375 -0.0751119 0)
(0.0570435 -0.0522094 0)
(0.0798579 -0.070408 0)
(0.0972271 0.0298341 0)
(0.131716 -0.0717555 0)
(0.0895637 -0.00142079 0)
(0.0981857 0.0465102 0)
(0.128436 -0.0221884 0)
(0.149474 0.0381619 0)
(0.0769176 0.134776 0)
(0.192513 0.0279786 0)
(-0.683388 0.17385 0)
(-0.290003 0.12774 0)
(-0.322383 0.311249 0)
(-0.126089 0.0285413 0)
(-0.189159 -0.0411965 0)
(-0.524735 -0.122524 0)
(-1.13887 -0.233629 0)
(0.115762 -0.0149762 0)
(0.0307345 -0.0335696 0)
(0.0248585 -0.0241118 0)
(0.0408525 -0.0330239 0)
(0.00588999 0.0666978 0)
(0.00513392 -0.0939805 0)
(0.00666722 -0.091687 0)
(0.00838847 -0.0891311 0)
(0.0111604 -0.0863016 0)
(0.0169006 -0.0828136 0)
(0.0254011 -0.0812169 0)
(0.0373308 -0.0895767 0)
(0.0556702 -0.0690813 0)
(0.0891805 -0.0693482 0)
(0.0740524 -0.0719533 0)
(0.0628367 0.0129967 0)
(0.109692 -0.0694719 0)
(0.0752431 0.0141948 0)
(0.123227 0.00913509 0)
(0.17868 0.00419106 0)
(0.0647098 0.0364044 0)
(0.135668 0.141771 0)
(0.0740894 0.0735183 0)
(0.658168 0.215492 0)
(-0.238511 0.222398 0)
(-0.187826 0.255167 0)
(-0.0404726 0.0265341 0)
(-0.0718482 -0.0231411 0)
(-0.285386 -0.0779633 0)
(-0.562246 -0.200975 0)
(-0.388605 -0.0707908 0)
(0.126399 -0.0276763 0)
(0.0327717 -0.0229696 0)
(0.0411244 -0.0370059 0)
(-0.00772226 0.0724238 0)
(-0.087657 0.0392116 0)
(-0.137004 -0.0586867 0)
(-0.0979532 -0.0140924 0)
(0.328855 -0.115163 0)
(0.617107 -0.167591 0)
(0.288716 -0.100364 0)
(0.175459 -0.0827353 0)
(0.134765 -0.0136159 0)
(0.0977346 0.110129 0)
(0.0772054 0.302061 0)
(0.154862 0.461856 0)
(-0.0605593 0.110508 0)
(0.0457693 0.0875029 0)
(-0.0821062 0.0744537 0)
(-0.147802 0.00664254 0)
(-0.20001 0.0131931 0)
(-0.0887893 0.0705055 0)
(-0.104761 -0.0500535 0)
(-0.126946 -0.0409485 0)
(-0.0332423 -0.0327717 0)
(-0.065117 -0.0719177 0)
(-0.0727449 -0.0659986 0)
(-0.0494762 -0.0731577 0)
(-0.0475113 -0.0876759 0)
(-0.0319588 -0.0952331 0)
(-0.0159982 -0.100281 0)
(-0.00526458 -0.101632 0)
(0.00121412 -0.100709 0)
(0.00409271 -0.0987557 0)
(0.00496468 -0.0965457 0)
(-0.0825976 0.038128 0)
(-0.133242 -0.059849 0)
(-0.0503496 -0.0173937 0)
(0.715375 -0.107803 0)
(0.474536 -0.155281 0)
(0.210824 -0.0901961 0)
(0.122119 -0.0789599 0)
(0.0730031 -0.0113821 0)
(0.0580778 0.111322 0)
(0.0942906 0.272835 0)
(0.0239211 0.57122 0)
(-2.13902 -0.0588565 0)
(0.00940304 0.119181 0)
(-0.10514 0.0657397 0)
(-0.12896 0.014581 0)
(-0.170945 0.0167212 0)
(-0.103214 0.0590938 0)
(-0.0495017 -0.0439558 0)
(-0.108219 -0.0378939 0)
(-0.0550978 -0.0463956 0)
(-0.0622566 -0.0643385 0)
(-0.092574 -0.0669779 0)
(-0.0653272 -0.0807111 0)
(-0.0529143 -0.0952148 0)
(-0.0352015 -0.103291 0)
(-0.0154869 -0.106973 0)
(-0.00307016 -0.106464 0)
(0.00367844 -0.103479 0)
(0.00606047 -0.0998041 0)
(0.00579125 -0.096517 0)
(-0.061614 0.0335243 0)
(-0.122462 -0.0606121 0)
(-0.172241 -0.030268 0)
(1.45795 -0.157918 0)
(0.382895 -0.130103 0)
(0.140532 -0.0810987 0)
(0.0731215 -0.0752894 0)
(0.0179961 -0.00884984 0)
(0.024282 0.112227 0)
(0.107898 0.245693 0)
(0.0284417 0.682926 0)
(-0.750103 -0.0501992 0)
(-0.134904 0.0911278 0)
(0.117591 0.0654608 0)
(-0.0278086 0.0313968 0)
(-0.0663207 0.0179742 0)
(-0.0815217 0.0310394 0)
(-0.032746 -0.025588 0)
(-0.086492 -0.0353356 0)
(-0.0462084 -0.0563966 0)
(-0.0480361 -0.056185 0)
(-0.0909142 -0.0629389 0)
(-0.073843 -0.086491 0)
(-0.0573828 -0.0962607 0)
(-0.0431307 -0.110465 0)
(-0.0259373 -0.114158 0)
(-0.0132767 -0.111113 0)
(-0.00675933 -0.105312 0)
(-0.00531472 -0.0994577 0)
(-0.00667249 -0.094806 0)
(-0.00445749 0.0243386 0)
(-0.123667 -0.063509 0)
(-0.154346 -0.0441734 0)
(0.616144 -0.159567 0)
(0.265951 -0.10341 0)
(0.0807493 -0.0735223 0)
(0.0309342 -0.0715855 0)
(-0.0265994 -0.00630003 0)
(-0.00183764 0.11245 0)
(0.108256 0.224925 0)
(0.00628482 0.737886 0)
(-0.451853 0.0530495 0)
(-1.04695 0.0682017 0)
(0.0139871 0.0507088 0)
(-0.034905 0.0506744 0)
(-0.0227327 0.0195654 0)
(-0.0559681 0.022382 0)
(-0.079695 -0.0116356 0)
(-0.0742316 -0.0465711 0)
(-0.0279948 -0.0583848 0)
(-0.00756513 -0.045889 0)
(-0.0305839 -0.0570128 0)
(-0.053268 -0.0909958 0)
(-0.0532136 -0.104992 0)
(-0.0422747 -0.115985 0)
(-0.037637 -0.120998 0)
(-0.033329 -0.115698 0)
(-0.034983 -0.105735 0)
(-0.0407999 -0.0971114 0)
(-0.0467038 -0.0920468 0)
(0.271593 0.0107261 0)
(-0.137963 -0.0649092 0)
(0.226698 -0.0547062 0)
(0.641031 -0.11353 0)
(0.154511 -0.0822414 0)
(0.0331802 -0.0677913 0)
(-0.00250726 -0.0677824 0)
(-0.0582094 -0.00379993 0)
(-0.0198624 0.111898 0)
(0.0971093 0.227745 0)
(1.09421 0.611586 0)
(-0.181349 0.204947 0)
(-0.526415 0.00423156 0)
(-0.252309 0.0212185 0)
(-0.0390651 0.0513048 0)
(-0.0453911 0.03041 0)
(-0.091552 0.0173186 0)
(-0.0226128 -0.00218367 0)
(0.0105737 -0.0583566 0)
(0.0241943 -0.0777867 0)
(0.0633312 -0.0454286 0)
(0.0458646 -0.0467319 0)
(0.00279586 -0.0785236 0)
(-0.0176067 -0.10719 0)
(-0.00671032 -0.120207 0)
(-0.0191138 -0.117621 0)
(-0.0325373 -0.112397 0)
(-0.0432949 -0.0998517 0)
(-0.0541329 -0.0900996 0)
(-0.0626799 -0.0869099 0)
(0.0261118 -0.0112081 0)
(-0.0690482 -0.049508 0)
(0.773602 -0.106074 0)
(0.315191 -0.0907805 0)
(0.0642778 -0.0666161 0)
(-0.00204692 -0.0639582 0)
(-0.0264353 -0.0644191 0)
(-0.0764758 -0.00170436 0)
(-0.0310316 0.1104 0)
(0.0944824 0.249156 0)
(0.878944 0.501281 0)
(-0.223108 0.366651 0)
(-0.485153 -0.0494449 0)
(-0.623886 -0.0668252 0)
(-0.127772 0.0245611 0)
(-0.0465378 0.0521799 0)
(0.0366179 -0.017983 0)
(0.116484 -0.025189 0)
(0.128023 -0.0479651 0)
(0.128567 -0.0977786 0)
(0.152776 -0.0457476 0)
(0.136468 -0.0317347 0)
(0.0825079 -0.0571431 0)
(0.0443753 -0.0992605 0)
(0.0250489 -0.121009 0)
(0.0113703 -0.104954 0)
(-0.0106582 -0.100796 0)
(-0.0272859 -0.0895282 0)
(-0.0402901 -0.0802912 0)
(-0.049932 -0.0803642 0)
(-0.123604 -0.0365048 0)
(0.3189 -0.0966144 0)
(0.93872 -0.137122 0)
(0.130791 -0.0648699 0)
(0.00125026 -0.0573567 0)
(-0.0260829 -0.0615399 0)
(-0.0415418 -0.0617844 0)
(-0.0837268 -0.000148981 0)
(-0.0379903 0.107863 0)
(0.0856639 0.252407 0)
(0.42701 0.463974 0)
(-0.246359 0.618793 0)
(-0.586583 -0.0599877 0)
(-0.563854 -0.127752 0)
(-0.234358 -0.0536713 0)
(0.043433 0.00987368 0)
(0.180502 -0.02536 0)
(0.243 -0.0457114 0)
(0.278405 -0.0415564 0)
(0.310427 -0.116365 0)
(0.306091 -0.026531 0)
(0.246577 -0.00850078 0)
(0.184377 -0.0333128 0)
(0.140436 -0.0818002 0)
(0.10192 -0.102192 0)
(0.0673694 -0.090026 0)
(0.0380546 -0.0822935 0)
(0.0144632 -0.0759271 0)
(0.000628469 -0.0680954 0)
(-0.00934685 -0.0729234 0)
(-0.182923 -0.0880143 0)
(0.012876 -0.166578 0)
(0.366118 -0.134356 0)
(0.0256864 -0.051113 0)
(-0.0357103 -0.0523435 0)
(-0.0409864 -0.0597192 0)
(-0.0498694 -0.0596935 0)
(-0.0842851 0.000956601 0)
(-0.043705 0.104399 0)
(0.0682465 0.240132 0)
(0.294002 0.411727 0)
(-0.184106 0.788643 0)
(-0.429746 -0.0319829 0)
(-0.484681 -0.150729 0)
(-0.177391 -0.144635 0)
(0.152582 -0.0614485 0)
(0.265291 -0.0486526 0)
(0.321329 -0.0638993 0)
(0.376894 -0.0698029 0)
(0.381252 -0.113611 0)
(0.358793 -0.0175541 0)
(0.386528 0.0227016 0)
(0.344232 -0.0177498 0)
(0.281998 -0.0479145 0)
(0.217703 -0.0678231 0)
(0.160807 -0.0606539 0)
(0.120634 -0.0514351 0)
(0.0780708 -0.0537433 0)
(0.056783 -0.0582863 0)
(0.0534828 -0.067619 0)
(-0.178929 -0.103336 0)
(-0.0497816 -0.134145 0)
(0.185652 -0.152938 0)
(-0.0256927 -0.0429258 0)
(-0.0542893 -0.0504547 0)
(-0.0493369 -0.0583529 0)
(-0.0541091 -0.0579935 0)
(-0.0828679 0.00189328 0)
(-0.0506 0.100241 0)
(0.0467987 0.22139 0)
(0.293066 0.376523 0)
(0.0866046 0.789364 0)
(-0.164414 0.00466054 0)
(-0.218006 -0.128176 0)
(-0.135573 -0.233436 0)
(0.187343 -0.135154 0)
(0.311338 -0.0692289 0)
(0.358788 -0.0874864 0)
(0.412494 -0.0824616 0)
(0.421032 -0.0881006 0)
(0.401248 -0.0357425 0)
(0.3971 -0.00219193 0)
(0.485202 -0.0252236 0)
(0.483365 0.0313209 0)
(0.350048 -0.0082467 0)
(0.290421 -0.0242936 0)
(0.240717 -0.0141483 0)
(0.199626 -0.0121939 0)
(0.162574 -0.0384156 0)
(0.140241 -0.0596794 0)
(-0.134813 -0.0916384 0)
(-0.0122992 -0.145375 0)
(0.110543 -0.159922 0)
(-0.0506647 -0.0390637 0)
(-0.0610511 -0.0502382 0)
(-0.0537296 -0.0572977 0)
(-0.0566743 -0.0564491 0)
(-0.0831889 0.0030148 0)
(-0.0599359 0.0957084 0)
(0.0203712 0.19668 0)
(0.1409 0.32995 0)
(0.11897 0.784157 0)
(0.00154452 0.0639729 0)
(-0.0895257 -0.120499 0)
(-0.0609174 -0.299673 0)
(0.132024 -0.210408 0)
(0.279595 -0.0929784 0)
(0.337446 -0.112811 0)
(0.393537 -0.0990315 0)
(0.419039 -0.0824439 0)
(0.430676 -0.039686 0)
(0.448779 -0.00253498 0)
(0.447328 -0.0600575 0)
(0.508398 0.0429062 0)
(0.498175 0.0637561 0)
(0.43247 0.0339595 0)
(0.371396 0.0379983 0)
(0.31828 0.0380613 0)
(0.266896 0.00670242 0)
(0.232639 -0.0283557 0)
(-0.0866783 -0.0697889 0)
(0.0219719 -0.159674 0)
(0.127936 -0.157224 0)
(-0.0578441 -0.0395013 0)
(-0.0614614 -0.0506055 0)
(-0.0561865 -0.0564353 0)
(-0.0591431 -0.0547834 0)
(-0.0874878 0.00464887 0)
(-0.0722796 0.0915198 0)
(-0.0185825 0.169121 0)
(-0.0433689 0.274844 0)
(0.142891 0.75081 0)
(0.209802 0.125762 0)
(0.0704297 -0.11589 0)
(0.0734214 -0.306949 0)
(-0.00284828 -0.266598 0)
(0.176681 -0.135535 0)
(0.282016 -0.140264 0)
(0.348433 -0.121735 0)
(0.398116 -0.0993281 0)
(0.431047 -0.0584399 0)
(0.47448 -0.0285066 0)
(0.474126 -0.0153377 0)
(0.394112 0.0229862 0)
(0.462613 0.0356563 0)
(0.494746 0.0672114 0)
(0.46218 0.0964262 0)
(0.408192 0.103744 0)
(0.356779 0.073243 0)
(0.308493 0.0327405 0)
(-0.0204977 -0.0463967 0)
(0.0766823 -0.173073 0)
(0.0518103 -0.147929 0)
(-0.0544909 -0.0419019 0)
(-0.0595995 -0.0509814 0)
(-0.0579322 -0.0556699 0)
(-0.0622461 -0.052718 0)
(-0.0986141 0.00862225 0)
(-0.0995012 0.088593 0)
(-0.0644033 0.139175 0)
(-0.11629 0.19818 0)
(0.349616 0.716908 0)
(0.433015 0.17425 0)
(0.311619 -0.118284 0)
(0.130466 -0.235716 0)
(0.0815773 -0.279681 0)
(0.201185 -0.217246 0)
(0.294188 -0.179019 0)
(0.345545 -0.146814 0)
(0.379746 -0.117581 0)
(0.402769 -0.0762919 0)
(0.408648 -0.0385807 0)
(0.409473 -0.00795064 0)
(0.453537 0.0156452 0)
(0.444542 0.0120297 0)
(0.455861 0.0620558 0)
(0.465768 0.124941 0)
(0.430206 0.170566 0)
(0.374318 0.148051 0)
(0.317941 0.106499 0)
(0.0508314 -0.0276111 0)
(0.103324 -0.180476 0)
(0.0147153 -0.134696 0)
(-0.048338 -0.0450913 0)
(-0.0579691 -0.0510644 0)
(-0.0595735 -0.0548789 0)
(-0.0663425 -0.0501596 0)
(-0.0990597 0.0158677 0)
(-0.141625 0.0887083 0)
(-0.0983346 0.100309 0)
(-0.0350552 0.0856195 0)
(0.553641 0.729615 0)
(0.560234 0.209624 0)
(0.367176 -0.0689321 0)
(0.238787 -0.22386 0)
(0.282294 -0.281014 0)
(0.270828 -0.233801 0)
(0.298379 -0.197067 0)
(0.324469 -0.165049 0)
(0.347155 -0.131725 0)
(0.365755 -0.0834209 0)
(0.366722 -0.0289751 0)
(0.354087 -0.0120424 0)
(0.34171 0.00734694 0)
(0.325002 0.0153037 0)
(0.34874 0.0345846 0)
(0.36245 0.138881 0)
(0.350662 0.218729 0)
(0.321106 0.226281 0)
(0.278889 0.184478 0)
(0.121092 -0.0148595 0)
(0.123287 -0.184336 0)
(0.0418499 -0.114498 0)
(-0.046187 -0.0475025 0)
(-0.0574824 -0.050666 0)
(-0.061361 -0.0538744 0)
(-0.0719646 -0.0470595 0)
(-0.105725 0.023138 0)
(-0.17186 0.0907776 0)
(-0.112413 0.0679845 0)
(0.018518 0.00130213 0)
(0.55996 0.733953 0)
(0.554453 0.222027 0)
(0.39703 -0.0115364 0)
(0.39283 -0.215293 0)
(0.30197 -0.260778 0)
(0.274358 -0.235675 0)
(0.280423 -0.205315 0)
(0.293355 -0.176029 0)
(0.306378 -0.142466 0)
(0.323189 -0.0966821 0)
(0.345972 -0.0324967 0)
(0.359085 -0.00872121 0)
(0.368379 0.0274408 0)
(0.364914 0.0318421 0)
(0.360557 -0.0258248 0)
(0.348537 0.15276 0)
(0.306406 0.256869 0)
(0.283354 0.273081 0)
(0.267186 0.240117 0)
(0.181804 -0.00866922 0)
(0.131153 -0.181321 0)
(0.0338659 -0.0908098 0)
(-0.0508172 -0.0482166 0)
(-0.0580109 -0.0496381 0)
(-0.0633124 -0.0524244 0)
(-0.0802847 -0.0422645 0)
(-0.118885 0.0348047 0)
(-0.194501 0.094331 0)
(-0.141248 0.0440763 0)
(0.000915329 -0.00913895 0)
(0.43928 0.658617 0)
(0.504184 0.212631 0)
(0.351472 0.05587 0)
(0.25938 -0.218621 0)
(0.283892 -0.246779 0)
(0.260077 -0.229924 0)
(0.255057 -0.207912 0)
(0.256407 -0.181035 0)
(0.264264 -0.150373 0)
(0.278317 -0.114619 0)
(0.308636 -0.0592998 0)
(0.339824 -0.0315925 0)
(0.364203 -0.00478655 0)
(0.372813 0.03514 0)
(0.313428 0.0958479 0)
(0.254646 0.205858 0)
(0.241785 0.274474 0)
(0.240295 0.284755 0)
(0.236739 0.257987 0)
(0.217479 -0.0092709 0)
(0.0934949 -0.16594 0)
(-0.0588452 -0.0774508 0)
(-0.0595267 -0.046999 0)
(-0.059086 -0.0479159 0)
(-0.065333 -0.0504043 0)
(-0.0821653 -0.0351611 0)
(-0.137282 0.0464902 0)
(-0.218688 0.103562 0)
(-0.177171 0.0228814 0)
(-0.0317201 -0.0158716 0)
(0.399433 0.438055 0)
(0.491181 0.227613 0)
(0.328678 0.110978 0)
(0.334648 -0.208302 0)
(0.274657 -0.227177 0)
(0.247195 -0.220908 0)
(0.237657 -0.204854 0)
(0.235208 -0.182116 0)
(0.237512 -0.156579 0)
(0.243142 -0.127785 0)
(0.258257 -0.0856723 0)
(0.272236 -0.0465391 0)
(0.269236 -0.00948831 0)
(0.258957 0.0528077 0)
(0.242062 0.161316 0)
(0.224224 0.242863 0)
(0.216177 0.283844 0)
(0.213755 0.289513 0)
(0.210447 0.274044 0)
(0.219054 -0.0119692 0)
(0.112372 -0.148731 0)
(-0.0674297 -0.0697244 0)
(-0.0681084 -0.0433163 0)
(-0.0602637 -0.0455424 0)
(-0.0675166 -0.0476386 0)
(-0.0874258 -0.0289235 0)
(-0.15397 0.0620122 0)
(-0.242523 0.117121 0)
(-0.215182 0.00469982 0)
(-0.1186 -0.0504171 0)
(-0.022388 0.136801 0)
(0.292746 0.346661 0)
(0.323712 0.0616206 0)
(0.311891 -0.173562 0)
(0.257918 -0.206455 0)
(0.23823 -0.212183 0)
(0.232293 -0.201791 0)
(0.229845 -0.180935 0)
(0.22539 -0.155855 0)
(0.219147 -0.129567 0)
(0.216793 -0.0945393 0)
(0.215588 -0.0467428 0)
(0.20344 0.00817591 0)
(0.182343 0.083831 0)
(0.166379 0.176097 0)
(0.159363 0.252941 0)
(0.156201 0.285995 0)
(0.158143 0.285454 0)
(0.16562 0.271636 0)
(0.191175 -0.0132427 0)
(0.115664 -0.129494 0)
(-0.101265 -0.0616229 0)
(-0.0761574 -0.0380507 0)
(-0.0611412 -0.0426808 0)
(-0.0695457 -0.04364 0)
(-0.0982616 -0.0206746 0)
(-0.185311 0.0903165 0)
(-0.267909 0.12638 0)
(-0.256673 -0.0104449 0)
(-0.1737 -0.0791178 0)
(-0.189561 -0.0325576 0)
(0.0391797 0.390361 0)
(0.282352 0.00801745 0)
(0.264515 -0.143801 0)
(0.238467 -0.192643 0)
(0.230616 -0.20748 0)
(0.229866 -0.200367 0)
(0.226149 -0.176969 0)
(0.214487 -0.146738 0)
(0.197007 -0.118176 0)
(0.179878 -0.0852525 0)
(0.164773 -0.0321601 0)
(0.145484 0.0391809 0)
(0.123573 0.11705 0)
(0.104029 0.190939 0)
(0.0971078 0.262954 0)
(0.0916541 0.291792 0)
(0.0844487 0.285368 0)
(0.0741715 0.263222 0)
(0.156919 -0.007305 0)
(0.163981 -0.123413 0)
(-0.13645 -0.0517765 0)
(-0.0830451 -0.032749 0)
(-0.0612687 -0.0395855 0)
(-0.0705889 -0.0382367 0)
(-0.109396 -0.00861521 0)
(-0.195144 0.135333 0)
(-0.2877 0.1255 0)
(-0.284936 -0.033535 0)
(-0.186682 -0.102783 0)
(-0.186237 -0.0592708 0)
(0.00709846 0.196897 0)
(0.197329 -0.0211496 0)
(0.214819 -0.134637 0)
(0.214953 -0.189255 0)
(0.221211 -0.208978 0)
(0.226433 -0.199734 0)
(0.218185 -0.166391 0)
(0.194598 -0.125863 0)
(0.163647 -0.0919358 0)
(0.133624 -0.0603162 0)
(0.112229 -0.0090935 0)
(0.0951997 0.0636036 0)
(0.0808229 0.145155 0)
(0.0687567 0.220629 0)
(0.0577574 0.279226 0)
(0.050183 0.311789 0)
(0.043297 0.308864 0)
(0.0482816 0.259321 0)
(0.124859 -0.00376754 0)
(0.212627 -0.102341 0)
(-0.194607 -0.044641 0)
(-0.0876636 -0.0283313 0)
(-0.0601128 -0.0365825 0)
(-0.0695614 -0.031818 0)
(-0.108449 0.00731639 0)
(-0.160549 0.165765 0)
(-0.264428 0.141999 0)
(-0.199869 -0.068267 0)
(-0.171161 -0.123926 0)
(-0.134641 -0.0728782 0)
(0.000164544 0.0507011 0)
(0.129933 -0.0562892 0)
(0.167105 -0.143133 0)
(0.187129 -0.198287 0)
(0.208394 -0.219128 0)
(0.218604 -0.198845 0)
(0.201185 -0.143602 0)
(0.161102 -0.0869714 0)
(0.114125 -0.0455385 0)
(0.0679496 -0.0158379 0)
(0.0330537 0.0237017 0)
(0.00769164 0.0927462 0)
(-0.00847338 0.164907 0)
(-0.0144894 0.231316 0)
(-0.0122342 0.276124 0)
(-0.00427362 0.292934 0)
(0.00692481 0.27776 0)
(0.0130907 0.23313 0)
(0.101926 0.00104404 0)
(0.271433 -0.0787299 0)
(-0.272113 -0.0380847 0)
(-0.0873269 -0.0263914 0)
(-0.0571071 -0.0340072 0)
(-0.0662901 -0.025441 0)
(-0.0934791 0.0216682 0)
(-0.117148 0.180141 0)
(-0.175288 0.152783 0)
(-0.158765 -0.0876429 0)
(-0.112117 -0.149545 0)
(-0.0845464 -0.096722 0)
(-0.000144336 -0.0376248 0)
(0.0815433 -0.0928293 0)
(0.120793 -0.16291 0)
(0.152654 -0.2204 0)
(0.184298 -0.237981 0)
(0.189675 -0.192375 0)
(0.156888 -0.102648 0)
(0.105081 -0.0292915 0)
(0.0510083 0.0204104 0)
(-0.00055857 0.0513033 0)
(-0.0496594 0.0836815 0)
(-0.0850762 0.14379 0)
(-0.108349 0.199783 0)
(-0.121093 0.249643 0)
(-0.121146 0.275918 0)
(-0.11518 0.274558 0)
(-0.115486 0.2644 0)
(-0.129807 0.264173 0)
(0.0783103 0.00128757 0)
(0.30558 -0.0606029 0)
(-0.344302 -0.0544807 0)
(-0.0758052 -0.0306092 0)
(-0.0518161 -0.0320288 0)
(-0.0613243 -0.0195488 0)
(-0.0755098 0.0249923 0)
(-0.0658765 0.180094 0)
(-0.0580682 0.167193 0)
(-0.0854065 -0.0874466 0)
(-0.0557202 -0.16845 0)
(-0.0449199 -0.117188 0)
(-0.00161452 -0.0858162 0)
(0.0425576 -0.121955 0)
(0.070596 -0.185995 0)
(0.0988116 -0.250938 0)
(0.119128 -0.257741 0)
(0.106362 -0.168799 0)
(0.0665259 -0.0484221 0)
(0.0175242 0.0338174 0)
(-0.0230048 0.0815905 0)
(-0.0534511 0.110248 0)
(-0.0765501 0.137259 0)
(-0.0909806 0.176721 0)
(-0.109915 0.21499 0)
(-0.144754 0.262197 0)
(-0.196175 0.316131 0)
(-0.250946 0.356605 0)
(-0.291113 0.367495 0)
(-0.316736 0.376895 0)
(0.0474767 -0.00158515 0)
(-0.0646344 -0.0352432 0)
(0.0620966 -0.0814138 0)
(-0.0475647 -0.0406199 0)
(-0.0444 -0.0303522 0)
(-0.0546919 -0.0137848 0)
(-0.0725932 0.0255565 0)
(-0.0305741 0.157546 0)
(0.0431956 0.169979 0)
(0.0454404 -0.0840793 0)
(0.0087626 -0.162764 0)
(-0.0143964 -0.121939 0)
(-0.00618035 -0.106486 0)
(0.00611164 -0.136436 0)
(0.00839694 -0.197171 0)
(-0.00362592 -0.25778 0)
(-0.049205 -0.241506 0)
(-0.0847416 -0.132725 0)
(-0.0802563 -0.0053652 0)
(-0.095897 0.0866675 0)
(-0.116646 0.126482 0)
(-0.130412 0.140543 0)
(-0.16584 0.162953 0)
(-0.251212 0.272388 0)
(-0.33545 0.377793 0)
(-0.393856 0.435684 0)
(-0.420579 0.448423 0)
(-0.429232 0.436218 0)
(-0.426048 0.406139 0)
(-0.418404 0.374888 0)
(0.0224017 -0.00335992 0)
(-0.138368 -0.0466909 0)
(0.131236 -0.0907316 0)
(-0.023183 -0.0441084 0)
(-0.035995 -0.0283372 0)
(-0.0464269 -0.00879417 0)
(-0.0577479 0.0264578 0)
(-0.0213668 0.119273 0)
(0.103228 0.154383 0)
(0.126281 -0.0735723 0)
(0.0468871 -0.131066 0)
(0.00135686 -0.110096 0)
(-0.0138092 -0.10625 0)
(-0.027752 -0.130014 0)
(-0.0579062 -0.173417 0)
(-0.127268 -0.184338 0)
(-0.269858 -0.1457 0)
(-0.30628 -0.140309 0)
(-0.225671 -0.047135 0)
(-0.21946 0.0816894 0)
(-0.263156 0.15098 0)
(-0.336476 0.282645 0)
(-0.416972 0.348701 0)
(-0.452692 0.458782 0)
(-0.466783 0.45688 0)
(-0.459023 0.461333 0)
(-0.444633 0.434683 0)
(-0.427508 0.396064 0)
(-0.410605 0.354645 0)
(-0.394913 0.315039 0)
(0.0085286 -0.0051333 0)
(-0.105824 -0.0431702 0)
(0.101579 -0.0619931 0)
(-0.00890078 -0.0419265 0)
(-0.0277777 -0.0256735 0)
(-0.0373948 -0.00516401 0)
(-0.0415586 0.02534 0)
(-0.0117418 0.0783426 0)
(0.0937084 0.0944562 0)
(0.122535 -0.0428765 0)
(0.0504069 -0.0907748 0)
(0.00543688 -0.0888659 0)
(-0.0212754 -0.0906102 0)
(-0.0518817 -0.103368 0)
(-0.100408 -0.124738 0)
(-0.16709 -0.0963607 0)
(-0.240397 -0.000591422 0)
(-0.28739 -0.180699 0)
(-0.320918 -0.0617338 0)
(-0.330045 0.154355 0)
(-0.37101 0.393908 0)
(-0.484031 0.224159 0)
(-0.343142 0.41497 0)
(-0.331811 0.44773 0)
(-0.289049 0.345552 0)
(-0.283583 0.394591 0)
(-0.296549 0.3754 0)
(-0.287641 0.334144 0)
(-0.277418 0.292138 0)
(-0.267776 0.253514 0)
(0.00176523 -0.00671192 0)
(-0.0746936 -0.0394369 0)
(0.0713145 -0.0449512 0)
(-0.00150418 -0.0371935 0)
(-0.0204546 -0.0224483 0)
(-0.0284628 -0.00297529 0)
(-0.0279502 0.0217592 0)
(-0.00501083 0.0504536 0)
(0.0541854 0.050978 0)
(0.0771291 -0.0199736 0)
(0.0375456 -0.0578548 0)
(0.00356211 -0.0655969 0)
(-0.024202 -0.0668344 0)
(-0.0557181 -0.0640268 0)
(-0.0993833 -0.0454561 0)
(-0.156378 -0.0106768 0)
(-0.196081 -0.0254217 0)
(-0.177905 -0.156182 0)
(-0.242119 0.0161033 0)
(-0.284104 0.208456 0)
(-0.267574 0.293294 0)
(-0.149721 0.14997 0)
(-0.166441 0.238591 0)
(-0.145014 0.292286 0)
(-0.14049 0.4435 0)
(-0.15738 0.475317 0)
(-0.122568 0.393567 0)
(-0.102218 0.300819 0)
(-0.0852575 0.265766 0)
(-0.0754356 0.234488 0)
(-0.00113521 -0.00787282 0)
(-0.0489883 -0.03334 0)
(0.0460492 -0.0348495 0)
(0.0016391 -0.0317495 0)
(-0.0142552 -0.0191004 0)
(-0.0202389 -0.00195683 0)
(-0.0175688 0.0170625 0)
(-0.00028304 0.0325071 0)
(0.0306659 0.0267399 0)
(0.0428145 -0.0101998 0)
(0.023818 -0.0361622 0)
(0.000450021 -0.0445267 0)
(-0.0219522 -0.0439562 0)
(-0.0442971 -0.0365995 0)
(-0.064594 -0.0217524 0)
(-0.0738554 -0.00647697 0)
(-0.0681896 -0.0085264 0)
(-0.117728 -0.014792 0)
(-0.174248 0.0546335 0)
(-0.151238 0.181339 0)
(-0.120811 0.203782 0)
(-0.119654 0.181364 0)
(-0.124894 0.2404 0)
(-0.124562 0.265527 0)
(-0.0929678 0.365624 0)
(-0.0498963 0.362138 0)
(-0.0149825 0.273422 0)
(3.41074e-06 0.185504 0)
(0.0187457 0.175757 0)
(0.0296514 0.168452 0)
(-0.00197134 -0.00861366 0)
(-0.0291777 -0.0281245 0)
(0.0267739 -0.0284517 0)
(0.00227228 -0.0269523 0)
(-0.0090652 -0.0162472 0)
(-0.0130627 -0.00170235 0)
(-0.0101393 0.0125558 0)
(0.00149945 0.020819 0)
(0.0176244 0.0144364 0)
(0.0230476 -0.0061453 0)
(0.0132179 -0.0222351 0)
(-0.00168056 -0.027884 0)
(-0.0172702 -0.0256043 0)
(-0.0324428 -0.017351 0)
(-0.0460815 -0.00479351 0)
(-0.0573805 0.0088063 0)
(-0.0691672 0.021057 0)
(-0.0867874 0.037538 0)
(-0.10122 0.0702841 0)
(-0.0931778 0.119973 0)
(-0.0683141 0.159536 0)
(-0.0502526 0.170897 0)
(-0.0325197 0.196628 0)
(-0.00964903 0.21204 0)
(0.0197978 0.219339 0)
(0.0532413 0.210929 0)
(0.0795203 0.188357 0)
(0.0955431 0.158224 0)
(0.102568 0.131304 0)
(0.108909 0.113819 0)
(-0.00167558 -0.00903514 0)
(-0.0142741 -0.024585 0)
(0.0127472 -0.0246449 0)
(0.00161323 -0.0235321 0)
(-0.00471521 -0.0142401 0)
(-0.00693262 -0.00178351 0)
(-0.00497209 0.00917002 0)
(0.00130641 0.0138637 0)
(0.0086776 0.00841341 0)
(0.0107476 -0.00399677 0)
(0.00593853 -0.0137549 0)
(-0.00202832 -0.0165395 0)
(-0.0109456 -0.0126976 0)
(-0.0199615 -0.00366326 0)
(-0.0287386 0.00904085 0)
(-0.0373748 0.023221 0)
(-0.0454281 0.038084 0)
(-0.0522295 0.0544708 0)
(-0.0554889 0.0732798 0)
(-0.0520899 0.0935008 0)
(-0.0410712 0.111815 0)
(-0.0262062 0.124551 0)
(-0.0100273 0.132657 0)
(0.00728274 0.135885 0)
(0.0243242 0.133273 0)
(0.0395671 0.126195 0)
(0.0521672 0.116212 0)
(0.0617629 0.104627 0)
(0.0686092 0.0928611 0)
(0.0734208 0.0815913 0)
(-0.00039014 -0.00933236 0)
(-0.00216952 -0.0229024 0)
(0.00188141 -0.0228335 0)
(0.000313396 -0.0218285 0)
(-0.00087411 -0.0132665 0)
(-0.00137559 -0.00186258 0)
(-0.00119786 0.00756576 0)
(0.000257999 0.0107356 0)
(0.00204005 0.00617931 0)
(0.00201023 -0.00293127 0)
(0.00100542 -0.00991544 0)
(-0.000648388 -0.0110203 0)
(-0.00302448 -0.00555431 0)
(-0.00655985 0.00500702 0)
(-0.0110497 0.0196265 0)
(-0.0156699 0.0345811 0)
(-0.0196715 0.0488028 0)
(-0.0224701 0.0617843 0)
(-0.0234795 0.0731653 0)
(-0.022313 0.0824304 0)
(-0.0189888 0.0890872 0)
(-0.0140182 0.0929093 0)
(-0.00813355 0.0940311 0)
(-0.00198034 0.0927284 0)
(0.00389862 0.0894026 0)
(0.00912416 0.0846178 0)
(0.0135296 0.0789386 0)
(0.017086 0.0728379 0)
(0.0198586 0.0666764 0)
(0.0219562 0.0606991 0)
(0.00493034 -0.0943802 0)
(0.00473486 -0.0921598 0)
(0.00537862 -0.0902771 0)
(0.00814991 -0.0887389 0)
(0.0144137 -0.0873927 0)
(0.025 -0.0872178 0)
(0.0378396 -0.0917886 0)
(0.0615248 -0.0754148 0)
(0.0954923 -0.0735365 0)
(0.0693035 -0.0622812 0)
(0.0739319 -0.00758012 0)
(0.102628 -0.0573756 0)
(0.0754253 0.00411646 0)
(0.149088 -0.00491903 0)
(0.147505 0.0175848 0)
(0.0471235 0.0497541 0)
(0.15371 0.111864 0)
(0.190827 0.113198 0)
(0.933473 0.309382 0)
(-0.181841 0.261516 0)
(-0.110962 0.225174 0)
(-0.00714191 0.0246062 0)
(-0.0191267 -0.0160062 0)
(-0.162889 -0.0621114 0)
(-0.49041 -0.128399 0)
(-1.33134 -0.119881 0)
(0.152419 -0.0339178 0)
(0.0497863 -0.0201595 0)
(0.0554455 -0.0392087 0)
(0.110395 0.0732543 0)
(0.00442991 -0.0938855 0)
(0.003179 -0.0919636 0)
(0.00319008 -0.0910213 0)
(0.00625811 -0.0910814 0)
(0.0133849 -0.0918942 0)
(0.0271908 -0.0931478 0)
(0.0355033 -0.0936403 0)
(0.0750083 -0.092279 0)
(0.102419 -0.075958 0)
(0.064987 -0.0530626 0)
(0.0943755 -0.0241107 0)
(0.0849161 -0.0413333 0)
(0.0593311 -0.014769 0)
(0.113287 0.000130968 0)
(0.0998428 0.0173665 0)
(0.0845173 0.0642178 0)
(0.044207 0.109031 0)
(0.0158627 0.115059 0)
(0.52194 0.30386 0)
(-0.133566 0.280384 0)
(-0.052348 0.204206 0)
(0.0106055 0.0227817 0)
(0.0144674 -0.0119749 0)
(-0.0807935 -0.052481 0)
(-0.323601 -0.0974205 0)
(-1.11814 -0.100247 0)
(-0.214332 -0.0785378 0)
(0.0835714 -0.016564 0)
(0.0802797 -0.0404461 0)
(0.209646 0.0688076 0)
(-0.00875337 -0.0920259 0)
(-0.0102695 -0.0910545 0)
(-0.0102037 -0.0914951 0)
(-0.0078825 -0.0937805 0)
(-0.00352581 -0.09612 0)
(0.00288865 -0.0963678 0)
(0.0130813 -0.0971976 0)
(0.0465128 -0.111636 0)
(0.0843115 -0.0683408 0)
(0.0221502 -0.0461614 0)
(0.0830501 -0.0326825 0)
(0.0704533 -0.0295234 0)
(0.0357918 -0.0212666 0)
(0.0901725 0.00652995 0)
(0.0351289 0.0177636 0)
(0.0323084 0.0696232 0)
(-0.0880189 0.103778 0)
(0.239567 0.0807129 0)
(0.378673 0.315107 0)
(-0.0858779 0.289485 0)
(0.00178281 0.187076 0)
(0.0255718 0.0201034 0)
(0.0401493 -0.00965799 0)
(-0.0169203 -0.0453545 0)
(-0.176909 -0.0749307 0)
(-0.74066 -0.0761372 0)
(-0.415119 -0.201663 0)
(0.11868 -0.013534 0)
(0.107672 -0.0391522 0)
(0.318014 0.0585687 0)
(-0.050254 -0.090433 0)
(-0.0507006 -0.0911862 0)
(-0.0482604 -0.0931446 0)
(-0.0446916 -0.0959428 0)
(-0.0413185 -0.0989163 0)
(-0.0380547 -0.100624 0)
(-0.0237012 -0.107346 0)
(-0.00742159 -0.123502 0)
(0.0282444 -0.0824837 0)
(0.0825646 -0.036298 0)
(0.0688476 -0.0328737 0)
(0.0622617 -0.0345252 0)
(0.0897535 -0.0198954 0)
(0.138336 0.00164718 0)
(0.0592015 0.0325638 0)
(0.0379069 0.0685397 0)
(0.0938078 0.0650142 0)
(0.768223 0.203631 0)
(0.391236 0.310279 0)
(-0.0335333 0.3001 0)
(0.0332633 0.171067 0)
(0.0448846 0.0164663 0)
(0.0582997 -0.00862388 0)
(0.0286027 -0.0403672 0)
(-0.0714159 -0.0598885 0)
(-0.431785 -0.0566193 0)
(-0.56188 -0.167691 0)
(0.123907 -0.0322615 0)
(0.125563 -0.0280104 0)
(0.454199 0.038698 0)
(-0.0669072 -0.0887457 0)
(-0.0667826 -0.0926183 0)
(-0.0631286 -0.0960989 0)
(-0.0582627 -0.0984927 0)
(-0.0539229 -0.100568 0)
(-0.049505 -0.104024 0)
(-0.037749 -0.11537 0)
(-0.0221557 -0.131275 0)
(0.0216959 -0.105972 0)
(0.10268 -0.0589077 0)
(0.143884 -0.0299315 0)
(0.148203 -0.038154 0)
(0.146664 -0.029503 0)
(0.142697 0.000350707 0)
(0.0856063 0.0447567 0)
(0.0231264 0.0505839 0)
(0.471291 0.0354431 0)
(0.531099 0.204848 0)
(0.432514 0.326249 0)
(0.0128062 0.314667 0)
(0.0611772 0.154608 0)
(0.0542452 0.0113184 0)
(0.0699645 -0.00841035 0)
(0.0578606 -0.0370032 0)
(-0.0031906 -0.050534 0)
(-0.204147 -0.0448506 0)
(-0.424894 -0.144495 0)
(-0.567378 -0.0542014 0)
(0.206959 -0.00741115 0)
(0.595262 -0.00320433 0)
(-0.0546293 -0.0867472 0)
(-0.0553658 -0.0941664 0)
(-0.0534555 -0.0993472 0)
(-0.0502124 -0.10178 0)
(-0.0451339 -0.103667 0)
(-0.038532 -0.108086 0)
(-0.0276471 -0.123068 0)
(-0.00768795 -0.143373 0)
(0.0400924 -0.132679 0)
(0.118177 -0.0872046 0)
(0.17095 -0.041189 0)
(0.21156 -0.0430281 0)
(0.21064 -0.0166905 0)
(0.174764 0.00344309 0)
(0.230232 0.0627035 0)
(0.387354 -0.00217868 0)
(0.616387 0.0188571 0)
(0.517928 0.18596 0)
(0.405072 0.356071 0)
(-0.0151093 0.312819 0)
(0.0397256 0.135534 0)
(0.0600222 0.00369545 0)
(0.0765117 -0.0086928 0)
(0.0743173 -0.0347983 0)
(0.0368253 -0.0450156 0)
(-0.0625579 -0.0398265 0)
(-0.185736 -0.100711 0)
(-1.01829 -0.095764 0)
(0.270002 -0.0195313 0)
(0.378108 -0.0238876 0)
(-0.0137939 -0.0837266 0)
(-0.0163038 -0.0933932 0)
(-0.020036 -0.0992121 0)
(-0.0250607 -0.103152 0)
(-0.022277 -0.108333 0)
(-0.0122585 -0.113313 0)
(-0.00239984 -0.13092 0)
(0.0183026 -0.159366 0)
(0.0751166 -0.160432 0)
(0.131205 -0.111501 0)
(0.165071 -0.0582034 0)
(0.214834 -0.057043 0)
(0.220708 -0.00919611 0)
(0.193993 0.00461527 0)
(0.305821 0.0361523 0)
(0.567989 -0.0387157 0)
(0.63219 0.0203485 0)
(0.574773 0.189157 0)
(0.371741 0.499136 0)
(0.0251237 0.273477 0)
(0.0435165 0.111514 0)
(0.0600346 -0.0053294 0)
(0.079219 -0.00930946 0)
(0.0819008 -0.0333745 0)
(0.0578049 -0.0419934 0)
(0.0121763 -0.0381778 0)
(-0.0389173 -0.0781466 0)
(-0.259466 -0.107711 0)
(0.215029 -0.072217 0)
(0.285264 -0.0277771 0)
(0.0509179 -0.0807138 0)
(0.0486521 -0.0892283 0)
(0.0387132 -0.0892486 0)
(0.0139456 -0.0945289 0)
(0.00355475 -0.113755 0)
(0.0182576 -0.120748 0)
(0.0261589 -0.136669 0)
(0.0390086 -0.176957 0)
(0.0883453 -0.200934 0)
(0.122778 -0.118279 0)
(0.133973 -0.0729118 0)
(0.170119 -0.0719269 0)
(0.178712 -0.00418658 0)
(0.154273 0.00678282 0)
(0.300007 0.0100246 0)
(0.549805 -0.085556 0)
(0.604693 0.0168057 0)
(0.586173 0.208828 0)
(0.396985 0.575288 0)
(0.0208531 0.262287 0)
(0.0759041 0.0919908 0)
(0.0562385 -0.0137429 0)
(0.0790589 -0.0103072 0)
(0.0841442 -0.0324314 0)
(0.0670784 -0.0403096 0)
(0.0442766 -0.0384548 0)
(0.0144634 -0.0702586 0)
(0.00736272 -0.112533 0)
(0.0986992 -0.0713536 0)
(0.1906 -0.0273856 0)
(0.127611 -0.0762797 0)
(0.123174 -0.0865248 0)
(0.119187 -0.0670185 0)
(0.0678496 -0.0586076 0)
(0.02637 -0.11406 0)
(0.0458051 -0.132565 0)
(0.0511888 -0.137171 0)
(0.0458035 -0.186413 0)
(0.0559229 -0.213148 0)
(0.0710985 -0.127423 0)
(0.0892668 -0.0831935 0)
(0.0906585 -0.0811878 0)
(0.107202 -0.000191465 0)
(0.054329 0.0162877 0)
(0.229989 -0.0437799 0)
(0.462096 -0.126244 0)
(0.531907 -0.00290208 0)
(0.542182 0.244112 0)
(0.223647 0.655593 0)
(-0.0612143 0.263685 0)
(0.0984125 0.066394 0)
(0.0441495 -0.0197331 0)
(0.0766633 -0.0124201 0)
(0.0836499 -0.0317528 0)
(0.0698645 -0.0392394 0)
(0.05444 -0.0394996 0)
(0.0283839 -0.068383 0)
(0.0650544 -0.113012 0)
(0.0489614 -0.0753602 0)
(0.0951883 -0.0284737 0)
(0.195364 -0.0485401 0)
(0.173566 -0.0912818 0)
(0.189517 -0.0581071 0)
(0.124946 0.0246224 0)
(0.0586117 -0.113687 0)
(0.0836194 -0.149537 0)
(0.0776568 -0.127485 0)
(0.0457352 -0.179949 0)
(0.0382695 -0.213632 0)
(0.04252 -0.128691 0)
(0.0639147 -0.0868317 0)
(0.0414377 -0.0973171 0)
(0.00444483 0.0204569 0)
(-0.0502735 0.0161977 0)
(0.167355 -0.126576 0)
(0.334819 -0.147677 0)
(0.431431 -0.031922 0)
(0.411419 0.305789 0)
(-0.0365008 0.709713 0)
(-0.0257998 0.255637 0)
(0.106061 0.0422716 0)
(0.0326149 -0.0196325 0)
(0.0736032 -0.017483 0)
(0.0820693 -0.0311647 0)
(0.0694903 -0.0384318 0)
(0.0558031 -0.0406619 0)
(0.0312547 -0.0678809 0)
(0.0699921 -0.111177 0)
(-0.00850668 -0.0757844 0)
(0.0176658 -0.0289504 0)
(0.269185 0.00759675 0)
(0.232468 -0.0653424 0)
(0.178089 -0.0363207 0)
(0.17474 0.0783456 0)
(0.20121 -0.0977029 0)
(0.166635 -0.144743 0)
(0.119398 -0.095684 0)
(0.0497138 -0.152384 0)
(0.0374942 -0.218768 0)
(0.0624409 -0.141526 0)
(0.0403278 -0.0666452 0)
(-0.0287219 -0.071642 0)
(-0.0965281 0.0438197 0)
(-0.106637 -0.021376 0)
(0.121087 -0.198331 0)
(0.210991 -0.147819 0)
(0.291191 -0.0638182 0)
(0.271747 0.378222 0)
(-0.188076 0.738977 0)
(0.0122737 0.237436 0)
(0.0828078 0.0321244 0)
(0.105477 -0.0206703 0)
(0.0830819 -0.0205159 0)
(0.0802663 -0.0304043 0)
(0.0678384 -0.0377185 0)
(0.0546715 -0.0417395 0)
(0.0316265 -0.0673468 0)
(0.0606815 -0.107498 0)
(-0.0430886 -0.0715865 0)
(-0.0455173 -0.0301096 0)
(0.280306 0.0569621 0)
(0.246087 0.0156671 0)
(0.174462 0.0137946 0)
(0.191609 0.00922792 0)
(0.271099 -0.102416 0)
(0.262003 -0.111595 0)
(0.17962 -0.0282532 0)
(0.064302 -0.0993457 0)
(0.0567484 -0.236224 0)
(0.0847097 -0.147851 0)
(0.0242928 -0.0495458 0)
(-0.0557487 0.00174878 0)
(-0.121068 0.0865804 0)
(-0.0883818 -0.0861231 0)
(0.0918835 -0.273834 0)
(0.117277 -0.148782 0)
(0.122602 -0.0786013 0)
(0.11476 0.449814 0)
(-0.305293 0.757785 0)
(0.00122539 0.199315 0)
(0.0815117 0.0338204 0)
(0.138023 -0.0247206 0)
(0.0868312 -0.0173478 0)
(0.0783903 -0.0292592 0)
(0.0657994 -0.0370055 0)
(0.0532233 -0.0426471 0)
(0.0314543 -0.0665198 0)
(0.0490223 -0.102797 0)
(-0.0543633 -0.0660659 0)
(-0.0794879 -0.0304658 0)
(0.246939 0.0946984 0)
(0.217656 0.0868484 0)
(0.182154 0.0645235 0)
(0.19804 -0.0872085 0)
(0.334222 -0.166121 0)
(0.38019 -0.124552 0)
(0.364217 0.11372 0)
(0.151046 -0.0409475 0)
(0.130236 -0.253401 0)
(0.0970856 -0.123499 0)
(0.023404 0.0136017 0)
(-0.126333 0.0540177 0)
(-0.177752 0.100876 0)
(-0.0591606 -0.142365 0)
(-0.0437378 -0.295787 0)
(-0.00268167 -0.144275 0)
(-0.0573161 -0.0767352 0)
(-0.0255785 0.512166 0)
(-0.248376 0.733018 0)
(0.00732737 0.156375 0)
(0.165297 0.0300931 0)
(0.0971691 -0.0161386 0)
(0.0824904 -0.0153961 0)
(0.076433 -0.027771 0)
(0.0636943 -0.0362097 0)
(0.051832 -0.0433132 0)
(0.0310302 -0.0653402 0)
(0.0373342 -0.0967756 0)
(-0.083754 -0.0616533 0)
(-0.0918879 -0.0297321 0)
(0.239711 0.150988 0)
(0.208901 0.115506 0)
(0.216387 0.0627892 0)
(0.259093 -0.163747 0)
(0.207316 -0.230839 0)
(0.294189 -0.157308 0)
(0.454045 -0.0449859 0)
(0.510721 0.181072 0)
(0.227329 -0.167533 0)
(0.152542 -0.0540666 0)
(0.0533636 0.0670681 0)
(-0.052043 0.146214 0)
(-0.0536534 0.0421632 0)
(-0.0160427 -0.164762 0)
(-0.00868548 -0.291238 0)
(-0.049215 -0.102099 0)
(-0.19357 -0.0804855 0)
(-0.135208 0.540315 0)
(-0.195634 0.669025 0)
(0.0368379 0.12559 0)
(0.151128 0.0224829 0)
(0.116703 0.000986925 0)
(0.0849401 -0.0148602 0)
(0.0745524 -0.0259116 0)
(0.0615846 -0.0352302 0)
(0.0503368 -0.0436504 0)
(0.0303327 -0.0637772 0)
(0.0273333 -0.0901624 0)
(-0.0964256 -0.0571318 0)
(-0.0941239 -0.0285706 0)
(0.223175 0.205508 0)
(0.197662 0.143171 0)
(0.176309 0.0431404 0)
(0.127396 -0.108499 0)
(0.0663717 -0.217283 0)
(0.0186702 -0.248609 0)
(-0.128004 -0.0571 0)
(-0.00365675 0.0787512 0)
(0.140513 -0.0626625 0)
(0.18433 0.0312723 0)
(0.0523763 0.121137 0)
(-0.0492162 0.165743 0)
(0.0321404 0.0206773 0)
(-0.00417636 -0.137005 0)
(-0.0836116 -0.278157 0)
(-0.110047 -0.0441052 0)
(-0.267051 -0.0750627 0)
(-0.171798 0.564859 0)
(-0.24645 0.556216 0)
(0.0500332 0.108578 0)
(0.127996 0.0156641 0)
(0.124903 0.0106751 0)
(0.0886653 -0.0104345 0)
(0.0726119 -0.0235088 0)
(0.0594426 -0.0339491 0)
(0.0485522 -0.0435606 0)
(0.0293197 -0.061811 0)
(0.0193782 -0.083272 0)
(-0.0959648 -0.0529214 0)
(-0.0916705 -0.0269635 0)
(0.199157 0.245816 0)
(0.172917 0.201572 0)
(0.131466 0.119501 0)
(0.0677735 0.0202082 0)
(-0.0171252 -0.0718955 0)
(-0.116492 -0.14733 0)
(-0.0577518 -0.0431769 0)
(0.0365985 -0.136087 0)
(-0.0822543 -0.0255844 0)
(-0.0602874 0.00298284 0)
(-0.0630545 0.128583 0)
(-0.140251 0.150882 0)
(-0.095062 -0.00183817 0)
(-0.0519118 -0.114126 0)
(-0.107909 -0.239617 0)
(-0.148325 -0.0464723 0)
(-0.259823 -0.0216945 0)
(-0.267725 0.556774 0)
(-0.121106 0.428695 0)
(0.0780153 0.0866903 0)
(0.125299 0.00859763 0)
(0.122848 0.0177825 0)
(0.0870787 -0.00413443 0)
(0.0703571 -0.0206679 0)
(0.0572142 -0.0322704 0)
(0.0464012 -0.0429444 0)
(0.0279784 -0.0594514 0)
(0.0131773 -0.0764526 0)
(-0.0871488 -0.0491342 0)
(-0.0869212 -0.0248989 0)
(0.175155 0.268089 0)
(0.154602 0.280804 0)
(0.0890514 0.226026 0)
(0.0368427 0.129963 0)
(-0.0249628 0.0668065 0)
(-0.108315 0.0407081 0)
(-0.190969 -0.248933 0)
(-0.227796 -0.0337521 0)
(-0.0891411 0.0747112 0)
(-0.0835092 -0.00105478 0)
(-0.224481 0.168722 0)
(-0.24289 0.164622 0)
(-0.238412 -0.0772907 0)
(-0.0769058 -0.146827 0)
(-0.122326 -0.19353 0)
(-0.172069 -0.0654467 0)
(-0.215996 0.065016 0)
(-0.34259 0.518531 0)
(0.0938313 0.314717 0)
(0.127201 0.0616824 0)
(0.138218 0.00788513 0)
(0.114145 0.0256111 0)
(0.082543 0.00203599 0)
(0.0677373 -0.0175864 0)
(0.0548384 -0.0301702 0)
(0.0439145 -0.0417348 0)
(0.026334 -0.0567353 0)
(0.00835588 -0.0699094 0)
(-0.0748398 -0.0456939 0)
(-0.0808385 -0.0225005 0)
(0.0628585 0.25502 0)
(0.0789854 0.39026 0)
(0.100081 0.277838 0)
(0.0739915 0.201466 0)
(0.026477 0.170643 0)
(-0.0506783 0.153462 0)
(-0.222046 -0.0692615 0)
(-0.353469 -0.16647 0)
(-0.210568 0.202717 0)
(-0.192318 0.041765 0)
(-0.281112 0.205486 0)
(-0.172029 0.11402 0)
(-0.0495868 -0.11995 0)
(-0.0581736 -0.155043 0)
(-0.110858 -0.150031 0)
(-0.187918 -0.0584944 0)
(-0.222386 0.141404 0)
(-0.149287 0.453016 0)
(0.0626288 0.267578 0)
(0.190528 0.042066 0)
(0.154173 0.0179953 0)
(0.0987864 0.036732 0)
(0.0771473 0.00630247 0)
(0.0647638 -0.0143819 0)
(0.0522448 -0.027719 0)
(0.0411797 -0.0399423 0)
(0.024446 -0.05371 0)
(0.0046325 -0.0637385 0)
(-0.0627998 -0.0424879 0)
(-0.0739467 -0.0199706 0)
(0.0881423 0.195099 0)
(0.116327 0.26876 0)
(0.105847 0.286847 0)
(0.0874432 0.257746 0)
(0.0784752 0.213129 0)
(0.0695769 0.200167 0)
(0.0172131 0.151569 0)
(-0.100235 0.107056 0)
(-0.201379 -0.0132904 0)
(-0.2728 0.0330911 0)
(-0.14973 0.161386 0)
(-0.0166888 0.0138737 0)
(-0.00990599 -0.114177 0)
(-0.0463521 -0.132191 0)
(-0.0875382 -0.116268 0)
(-0.122515 -0.0403517 0)
(-0.108694 0.147241 0)
(0.00319874 0.298886 0)
(0.183403 0.251158 0)
(0.235795 0.0435739 0)
(0.16278 0.039979 0)
(0.0912025 0.0534996 0)
(0.0753471 0.0094181 0)
(0.0613708 -0.0110325 0)
(0.0493608 -0.0250506 0)
(0.0382834 -0.0376768 0)
(0.0223938 -0.0504333 0)
(0.00182276 -0.0579717 0)
(-0.0527357 -0.0394435 0)
(-0.0666694 -0.0174839 0)
(-0.0262903 0.217392 0)
(-0.040139 0.30663 0)
(-0.021509 0.286592 0)
(-0.0160782 0.251531 0)
(-0.0367164 0.241162 0)
(-0.0664368 0.249018 0)
(-0.0821781 0.232534 0)
(-0.0889962 0.149814 0)
(-0.100937 0.0315281 0)
(-0.13878 0.0285913 0)
(-0.0773135 0.0468845 0)
(-0.0169163 -0.02797 0)
(-0.0225625 -0.0900024 0)
(-0.0462377 -0.109246 0)
(-0.066737 -0.098467 0)
(-0.0694743 -0.0388036 0)
(-0.0233443 0.10168 0)
(0.057989 0.21034 0)
(0.235616 0.208644 0)
(0.235806 0.0648743 0)
(0.16994 0.0685422 0)
(0.0880445 0.067508 0)
(0.0715328 0.0143476 0)
(0.0573311 -0.00758069 0)
(0.0461266 -0.0223067 0)
(0.0352766 -0.0351036 0)
(0.0202585 -0.04698 0)
(-0.00020483 -0.0526477 0)
(-0.0446492 -0.0365291 0)
(-0.0593231 -0.015143 0)
(-0.153757 0.282819 0)
(-0.177332 0.302305 0)
(-0.196775 0.306496 0)
(-0.212235 0.299589 0)
(-0.216894 0.281149 0)
(-0.204629 0.248931 0)
(-0.173721 0.196911 0)
(-0.13805 0.119907 0)
(-0.121418 0.0478974 0)
(-0.109452 0.0137913 0)
(-0.0781413 -0.00869769 0)
(-0.0513906 -0.0457301 0)
(-0.0464899 -0.0796755 0)
(-0.053124 -0.0977598 0)
(-0.0571009 -0.0953879 0)
(-0.043383 -0.0551214 0)
(0.0135335 0.0478023 0)
(0.0849207 0.152301 0)
(0.20447 0.166803 0)
(0.191739 0.0923748 0)
(0.11708 0.0999788 0)
(0.0701288 0.0761533 0)
(0.0636001 0.0190703 0)
(0.0525064 -0.00429873 0)
(0.0425154 -0.0196041 0)
(0.0321746 -0.0323897 0)
(0.0181122 -0.0434368 0)
(-0.00156815 -0.0477711 0)
(-0.0379448 -0.03373 0)
(-0.0521046 -0.0130035 0)
(-0.328825 0.37155 0)
(-0.332282 0.350195 0)
(-0.326001 0.318621 0)
(-0.310591 0.281756 0)
(-0.288793 0.239211 0)
(-0.258973 0.184854 0)
(-0.220549 0.125411 0)
(-0.181401 0.0659414 0)
(-0.149279 0.0163762 0)
(-0.121916 -0.0177291 0)
(-0.0962998 -0.0410703 0)
(-0.0765094 -0.0619487 0)
(-0.0669036 -0.0813136 0)
(-0.0649055 -0.0960605 0)
(-0.0628498 -0.0994073 0)
(-0.0525029 -0.0748516 0)
(-0.0249051 0.00367645 0)
(0.0209941 0.108661 0)
(0.115445 0.140323 0)
(0.0976087 0.121143 0)
(0.032312 0.121946 0)
(0.0475035 0.0744455 0)
(0.05429 0.0215404 0)
(0.0469977 -0.00144889 0)
(0.0385412 -0.0170155 0)
(0.0289771 -0.0296517 0)
(0.0159999 -0.0398914 0)
(-0.00237883 -0.0432669 0)
(-0.0321434 -0.0310267 0)
(-0.0451335 -0.0110988 0)
(-0.405861 0.344899 0)
(-0.388145 0.304415 0)
(-0.366746 0.261428 0)
(-0.341545 0.21412 0)
(-0.310766 0.165734 0)
(-0.275676 0.106715 0)
(-0.239953 0.0497463 0)
(-0.202862 0.0011767 0)
(-0.166927 -0.0350757 0)
(-0.135283 -0.0575933 0)
(-0.109589 -0.0704026 0)
(-0.0913351 -0.07895 0)
(-0.0814032 -0.0876025 0)
(-0.0788404 -0.0972731 0)
(-0.0793068 -0.102967 0)
(-0.075287 -0.0795601 0)
(-0.0837939 0.0123358 0)
(-0.0615224 0.0473502 0)
(-0.0151502 0.123649 0)
(-0.0197461 0.141581 0)
(-0.0241884 0.123948 0)
(0.0326846 0.060013 0)
(0.0448082 0.0220179 0)
(0.0410092 0.000808507 0)
(0.0342521 -0.0146035 0)
(0.0256895 -0.0269512 0)
(0.0139436 -0.0364244 0)
(-0.00274358 -0.0390996 0)
(-0.0269823 -0.0284176 0)
(-0.0384877 -0.00944318 0)
(-0.378996 0.274224 0)
(-0.360918 0.228353 0)
(-0.338139 0.184952 0)
(-0.316996 0.145807 0)
(-0.293546 0.0907474 0)
(-0.26592 0.0276687 0)
(-0.232932 -0.0287936 0)
(-0.195973 -0.0711909 0)
(-0.16001 -0.0949306 0)
(-0.130203 -0.101334 0)
(-0.107852 -0.0993717 0)
(-0.0933802 -0.0947712 0)
(-0.0870028 -0.0921693 0)
(-0.0898914 -0.0929039 0)
(-0.104692 -0.094419 0)
(-0.129062 -0.0724207 0)
(-0.116736 -0.0166999 0)
(-0.0880133 0.0566565 0)
(-0.127236 0.124618 0)
(-0.109371 0.127858 0)
(-0.024784 0.0915118 0)
(0.0247047 0.0464842 0)
(0.0359075 0.02118 0)
(0.0347937 0.00240413 0)
(0.0297207 -0.012428 0)
(0.0223243 -0.0243482 0)
(0.0119522 -0.0331054 0)
(-0.00275999 -0.0352667 0)
(-0.0223153 -0.025916 0)
(-0.0322097 -0.00803151 0)
(-0.25826 0.215067 0)
(-0.248239 0.172202 0)
(-0.237442 0.126335 0)
(-0.221906 0.0773921 0)
(-0.20241 0.0212026 0)
(-0.181227 -0.0384078 0)
(-0.158665 -0.0928821 0)
(-0.138107 -0.133776 0)
(-0.117737 -0.146287 0)
(-0.0995718 -0.138645 0)
(-0.0865753 -0.121365 0)
(-0.0797961 -0.104462 0)
(-0.0791908 -0.0912194 0)
(-0.0859156 -0.0803577 0)
(-0.103198 -0.0678975 0)
(-0.136048 -0.0512124 0)
(-0.17035 -0.0216502 0)
(-0.181095 0.0614732 0)
(-0.137094 0.107564 0)
(-0.0728778 0.0870796 0)
(-0.00916256 0.0549112 0)
(0.0185466 0.036736 0)
(0.0279418 0.0195412 0)
(0.0285862 0.00337225 0)
(0.0250323 -0.0105386 0)
(0.0188973 -0.0219095 0)
(0.0100261 -0.0300086 0)
(-0.00251315 -0.0317959 0)
(-0.0180445 -0.0235569 0)
(-0.0263084 -0.00684408 0)
(-0.0698111 0.198235 0)
(-0.0657886 0.153492 0)
(-0.0613399 0.101346 0)
(-0.0556963 0.043883 0)
(-0.0491745 -0.0164887 0)
(-0.0429796 -0.0756285 0)
(-0.0381132 -0.127321 0)
(-0.0346996 -0.159944 0)
(-0.0352425 -0.161385 0)
(-0.0398718 -0.145235 0)
(-0.0463136 -0.123444 0)
(-0.0525435 -0.102274 0)
(-0.0592709 -0.0841842 0)
(-0.0680245 -0.0675192 0)
(-0.0797941 -0.0482656 0)
(-0.0948726 -0.0216691 0)
(-0.116201 0.00458798 0)
(-0.126583 0.0468863 0)
(-0.0867227 0.0621156 0)
(-0.0290672 0.0490589 0)
(-0.00102934 0.0374231 0)
(0.0135836 0.0297245 0)
(0.0210212 0.0175223 0)
(0.0225702 0.00381594 0)
(0.0202724 -0.00896885 0)
(0.0154236 -0.0197065 0)
(0.00815631 -0.0272096 0)
(-0.00207649 -0.0287287 0)
(-0.0140939 -0.0213873 0)
(-0.0207653 -0.00585687 0)
(0.0404593 0.150445 0)
(0.0530978 0.112357 0)
(0.0646052 0.0656551 0)
(0.0736384 0.0176626 0)
(0.0779392 -0.0297467 0)
(0.076329 -0.0736055 0)
(0.0692357 -0.108845 0)
(0.0526017 -0.129206 0)
(0.0295624 -0.132239 0)
(0.00787373 -0.11987 0)
(-0.00973928 -0.102878 0)
(-0.0238404 -0.0863041 0)
(-0.0354049 -0.0706465 0)
(-0.0455155 -0.0547572 0)
(-0.0544867 -0.0365951 0)
(-0.0607406 -0.0135907 0)
(-0.0617378 0.0134639 0)
(-0.0583646 0.0391084 0)
(-0.0329099 0.0353345 0)
(-0.010167 0.0306899 0)
(0.000915705 0.0290215 0)
(0.00946045 0.0246831 0)
(0.0150819 0.0154731 0)
(0.0168669 0.00387931 0)
(0.0155132 -0.00773273 0)
(0.0119057 -0.0178126 0)
(0.00631208 -0.0247984 0)
(-0.00152329 -0.0261255 0)
(-0.0103966 -0.0194686 0)
(-0.0155339 -0.00505042 0)
(0.116288 0.0968839 0)
(0.122451 0.0712498 0)
(0.124364 0.0388641 0)
(0.122227 0.012759 0)
(0.117218 -0.0134539 0)
(0.107389 -0.0405746 0)
(0.0915342 -0.0642162 0)
(0.0710797 -0.0734446 0)
(0.0497479 -0.0766262 0)
(0.0293188 -0.0751045 0)
(0.0115294 -0.070084 0)
(-0.00326652 -0.0626631 0)
(-0.0153318 -0.0533227 0)
(-0.0249532 -0.0419849 0)
(-0.032088 -0.0281507 0)
(-0.0357947 -0.0112776 0)
(-0.033852 0.00803584 0)
(-0.0234452 0.024467 0)
(-0.00994637 0.0243613 0)
(-0.00397583 0.0244107 0)
(0.000887835 0.0244006 0)
(0.00610934 0.021051 0)
(0.0100103 0.0136738 0)
(0.0115381 0.00372991 0)
(0.0108015 -0.00682295 0)
(0.00833157 -0.0162969 0)
(0.00442736 -0.0228728 0)
(-0.000966571 -0.0240768 0)
(-0.0069093 -0.0178917 0)
(-0.010533 -0.00441807 0)
(0.0769705 0.0700818 0)
(0.0794515 0.0571534 0)
(0.0803684 0.0427262 0)
(0.0792429 0.0273627 0)
(0.0757868 0.0116838 0)
(0.0695091 -0.00350429 0)
(0.0605297 -0.0167785 0)
(0.0498494 -0.0273758 0)
(0.038411 -0.0351582 0)
(0.0268555 -0.0400179 0)
(0.0158175 -0.0419334 0)
(0.0058097 -0.0409951 0)
(-0.00281029 -0.037276 0)
(-0.00974173 -0.0308153 0)
(-0.0147221 -0.0216154 0)
(-0.0172435 -0.00993972 0)
(-0.0163767 0.00312982 0)
(-0.0114627 0.0145167 0)
(-0.00541094 0.019241 0)
(-0.00227393 0.0213172 0)
(0.000483719 0.0214927 0)
(0.00338215 0.0186166 0)
(0.00558416 0.0123541 0)
(0.0064896 0.00354245 0)
(0.00610768 -0.00620725 0)
(0.00468643 -0.0152169 0)
(0.00244826 -0.0215269 0)
(-0.00055808 -0.0226871 0)
(-0.0036987 -0.0167966 0)
(-0.00568884 -0.00397831 0)
(0.0236216 0.0545817 0)
(0.0250027 0.0477476 0)
(0.026008 0.0400683 0)
(0.0264783 0.0316197 0)
(0.0262481 0.0225738 0)
(0.0251621 0.0132201 0)
(0.0231117 0.0039203 0)
(0.0201802 -0.00575961 0)
(0.0166308 -0.0135296 0)
(0.0126811 -0.0199568 0)
(0.00872597 -0.0246167 0)
(0.0051309 -0.0270559 0)
(0.00211416 -0.0267788 0)
(-0.000248094 -0.0235542 0)
(-0.0019412 -0.0173441 0)
(-0.00302611 -0.00852686 0)
(-0.00357374 0.00155727 0)
(-0.00291462 0.0108797 0)
(-0.00154288 0.0165943 0)
(-0.000525961 0.0195188 0)
(0.000308236 0.0199362 0)
(0.00107375 0.0174013 0)
(0.00155258 0.0117612 0)
(0.00157785 0.00354209 0)
(0.00124937 -0.00589929 0)
(0.000930656 -0.0146891 0)
(0.000459132 -0.0208671 0)
(-0.0001678 -0.0220248 0)
(-0.000768843 -0.0162937 0)
(-0.00110446 -0.00378073 0)
)
;
boundaryField
{
leftWall
{
type fixedValue;
value uniform (0 0 0);
}
rightWall
{
type fixedValue;
value uniform (0 0 0);
}
lowerWall
{
type fixedValue;
value uniform (0 0 0);
}
atmosphere
{
type pressureInletOutletVelocity;
value nonuniform List<vector>
240
(
(-0.0593953 0.0848147 0)
(-0.142641 0.0838908 0)
(-0.232872 0.0784788 0)
(-0.332904 0.068289 0)
(-0.445231 0.050743 0)
(-0.564912 0.0112072 0)
(-0.401986 -0.0173053 0)
(-1.01394 -0.0316353 0)
(-0.412579 -0.0546697 0)
(-0.0699096 -0.0554444 0)
(0.065296 0 0)
(0.120297 0 0)
(0.141125 0 0)
(0.140119 0 0)
(0.124305 0 0)
(0.101922 0 0)
(0.0923843 0 0)
(0.0972881 0 0)
(0.100692 0 0)
(0.0980144 0 0)
(0.0902306 0 0)
(0.0804491 0 0)
(0.0694289 0 0)
(0.0578066 0 0)
(0.0466245 0 0)
(0.0363566 0 0)
(0.0271293 0 0)
(0.0189193 0 0)
(0.0115794 0 0)
(0.00489952 0 0)
(0 -0.00933236 0)
(0 -0.0229024 0)
(0 -0.0228335 0)
(0 -0.0218285 0)
(0 -0.0132665 0)
(0 -0.00186258 0)
(-0.00119786 0.00756576 0)
(0.000257999 0.0107356 0)
(0.00204005 0.00617931 0)
(0 -0.00293127 0)
(0 -0.00991544 0)
(0 -0.0110203 0)
(0 -0.00555431 0)
(-0.00655985 0.00500702 0)
(-0.0110497 0.0196265 0)
(-0.0156699 0.0345811 0)
(-0.0196715 0.0488028 0)
(-0.0224701 0.0617843 0)
(-0.0234795 0.0731653 0)
(-0.022313 0.0824304 0)
(-0.0189888 0.0890872 0)
(-0.0140182 0.0929093 0)
(-0.00813355 0.0940311 0)
(-0.00198034 0.0927284 0)
(0.00389862 0.0894026 0)
(0.00912416 0.0846178 0)
(0.0135296 0.0789386 0)
(0.017086 0.0728379 0)
(0.0198586 0.0666764 0)
(0.0219562 0.0606991 0)
(0.0236216 0.0545817 0)
(0.0250027 0.0477476 0)
(0.026008 0.0400683 0)
(0.0264783 0.0316197 0)
(0.0262481 0.0225738 0)
(0.0251621 0.0132201 0)
(0.0231117 0.0039203 0)
(0 -0.00575961 0)
(0 -0.0135296 0)
(0 -0.0199568 0)
(0 -0.0246167 0)
(0 -0.0270559 0)
(0 -0.0267788 0)
(0 -0.0235542 0)
(0 -0.0173441 0)
(0 -0.00852686 0)
(-0.00357374 0.00155727 0)
(-0.00291462 0.0108797 0)
(-0.00154288 0.0165943 0)
(-0.000525961 0.0195188 0)
(0.000308236 0.0199362 0)
(0.00107375 0.0174013 0)
(0.00155258 0.0117612 0)
(0.00157785 0.00354209 0)
(0 -0.00589929 0)
(0 -0.0146891 0)
(0 -0.0208671 0)
(0 -0.0220248 0)
(0 -0.0162937 0)
(0 -0.00378073 0)
(0.110395 0.0732543 0)
(0.209646 0.0688076 0)
(0.318014 0.0585687 0)
(0.454199 0.038698 0)
(0.595262 -0.00320433 0)
(0.378108 -0.0238876 0)
(0.285264 -0.0277771 0)
(0.1906 -0.0273856 0)
(0.0951883 -0.0284737 0)
(0.0176658 -0.0289504 0)
(-0.0455173 0 0)
(-0.0794879 0 0)
(-0.0918879 0 0)
(-0.0941239 0 0)
(-0.0916705 0 0)
(-0.0869212 0 0)
(-0.0808385 0 0)
(-0.0739467 0 0)
(-0.0666694 0 0)
(-0.0593231 0 0)
(-0.0521046 0 0)
(-0.0451335 0 0)
(-0.0384877 0 0)
(-0.0322097 0 0)
(-0.0263084 0 0)
(-0.0207653 0 0)
(-0.0155339 0 0)
(-0.010533 0 0)
(-0.00568884 0 0)
(-0.00110446 0 0)
(0 -0.00962265 0)
(0 -0.00842052 0)
(0.000593258 0.0207214 0)
(0 -0.0095902 0)
(0 -0.0138106 0)
(0 -0.00649325 0)
(-0.00142995 0.00353677 0)
(-0.000632552 0.0101125 0)
(0.00123401 0.00932748 0)
(0.0020901 0.00172197 0)
(0 -0.00701516 0)
(0 -0.0112685 0)
(0 -0.0090701 0)
(0 -0.000779499 0)
(-0.00889177 0.0120491 0)
(-0.0134062 0.027158 0)
(-0.0177834 0.0418311 0)
(-0.0212576 0.0554722 0)
(-0.0232262 0.0677062 0)
(-0.0231717 0.0780959 0)
(-0.0208909 0.0861029 0)
(-0.0166546 0.0913439 0)
(-0.0111417 0.0937843 0)
(-0.0050499 0.093653 0)
(0.00102492 0.0912777 0)
(0.00660837 0.0871488 0)
(0.011434 0.0818527 0)
(0.0154111 0.0759119 0)
(0.0185631 0.069745 0)
(0.0209831 0.0636533 0)
(0.0228361 0.0576705 0)
(0.0243517 0.0512692 0)
(0.0255644 0.0440065 0)
(0.0263229 0.0359269 0)
(0.0264634 0.0271499 0)
(0.0258233 0.0179057 0)
(0.0242564 0.00854037 0)
(0 -0.0010834 0)
(0 -0.00975754 0)
(0 -0.0169458 0)
(0 -0.0225455 0)
(0 -0.0261526 0)
(0 -0.0272891 0)
(0 -0.0255475 0)
(0 -0.0208166 0)
(0 -0.0132099 0)
(0 -0.00358645 0)
(-0.00335793 0.00660065 0)
(-0.00223823 0.0142562 0)
(-0.00100972 0.018341 0)
(-9.59775e-05 0.0200401 0)
(0.000721766 0.0190628 0)
(0.0013678 0.0149627 0)
(0.00162084 0.00790799 0)
(0 -0.00116434 0)
(0 -0.0105103 0)
(0 -0.0182941 0)
(0 -0.0224502 0)
(0 -0.0202816 0)
(0 -0.0101995 0)
(-0.100401 0.0849454 0)
(-0.18633 0.0818081 0)
(-0.27848 0.0741781 0)
(-0.380682 0.0601954 0)
(-0.554077 0.0336953 0)
(-0.483793 -0.00723551 0)
(-0.410232 -0.0247749 0)
(-0.678179 -0.0457456 0)
(-0.210937 -0.0565921 0)
(0.012994 0 0)
(0.0983601 0 0)
(0.134662 0 0)
(0.142728 0 0)
(0.133644 0 0)
(0.114008 0 0)
(0.0945635 0 0)
(0.0941244 0 0)
(0.09981 0 0)
(0.100004 0 0)
(0.0945278 0 0)
(0.0855916 0 0)
(0.075059 0 0)
(0.0636252 0 0)
(0.0521261 0 0)
(0.0413716 0 0)
(0.0316189 0 0)
(0.0229102 0 0)
(0.0151595 0 0)
(0.00817496 0 0)
(0.00164323 0 0)
(0.0632494 0.0736111 0)
(0.158899 0.0716883 0)
(0.261715 0.0645447 0)
(0.375928 0.0501644 0)
(0.56591 0.0196258 0)
(0.51241 -0.0182488 0)
(0.347256 -0.0257353 0)
(0.235233 -0.0269565 0)
(0.140682 -0.0280919 0)
(0.0548866 -0.0285903 0)
(-0.0161979 0 0)
(-0.0662746 0 0)
(-0.0875259 0 0)
(-0.0938555 0 0)
(-0.0932903 0 0)
(-0.0895065 0 0)
(-0.0840106 0 0)
(-0.0774645 0 0)
(-0.0703308 0 0)
(-0.0629873 0 0)
(-0.055686 0 0)
(-0.0485794 0 0)
(-0.0417631 0 0)
(-0.0352983 0 0)
(-0.0292093 0 0)
(-0.0234915 0 0)
(-0.0181121 0 0)
(-0.0130087 0 0)
(-0.00808793 0 0)
(-0.00335483 0 0)
)
;
}
defaultFaces
{
type empty;
}
}
// ************************************************************************* //
| [
"[email protected]"
] | ||
8391a84b1550018c480a644f74c45894a66af746 | 9a12b9b1f7a10e7d86b848011026fb1decf084a1 | /xcore/meta_data.h | 957fa25dbab5b9bb058a12618364a05adc6c3106 | [
"Apache-2.0"
] | permissive | shartoo/libxcam | d63eeaebaba0a7fb618ebe4874c746d86ba2afb7 | 8acce6e12644589b5e7046f56b17c504b32af3fb | refs/heads/master | 2021-08-18T21:54:26.885185 | 2017-11-23T11:46:40 | 2017-11-24T01:59:59 | 111,905,848 | 2 | 0 | null | 2017-11-24T10:24:51 | 2017-11-24T10:24:51 | null | UTF-8 | C++ | false | false | 1,574 | h | /*
* meta_data.h - meta data struct
*
* Copyright (c) 2017 Intel Corporation
*
* 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.
*
* Author: Zong Wei <[email protected]>
*/
#ifndef XCAM_META_DATA_H
#define XCAM_META_DATA_H
#include "xcam_utils.h"
#include "smartptr.h"
#include <list>
namespace XCam {
struct MetaBase
{
MetaBase () {}
virtual ~MetaBase() {};
private:
XCAM_DEAD_COPY (MetaBase);
};
struct MetaData
: MetaBase
{
int64_t timestamp; // in microseconds
MetaData () {
timestamp = 0;
};
virtual ~MetaData () {};
private:
XCAM_DEAD_COPY (MetaData);
};
struct DevicePose
: MetaData
{
double orientation[4];
double translation[3];
uint32_t confidence;
DevicePose ()
{
xcam_mem_clear (orientation);
xcam_mem_clear (translation);
confidence = 1;
}
};
typedef std::list<SmartPtr<MetaBase>> MetaBaseList;
typedef std::list<SmartPtr<MetaData>> MetaDataList;
typedef std::list<SmartPtr<DevicePose>> DevicePoseList;
};
#endif //XCAM_META_DATA_H
| [
"[email protected]"
] | |
8dd03b9fe718b6f985ec79e4e362df128d8b0885 | 90a6b183a726e2436de9b44f485c02a039b30b97 | /src/blackscholes.hpp | 6a919897ac5157947b58ce2c5a449041dfb2f8c9 | [
"MIT"
] | permissive | NicolasMakaroff/implied-volatility-learning | 4a86767bb6eda19319d484b2ae49e8f0160429a0 | 907dfe4496be35708881f7b40c1b543a8574d649 | refs/heads/master | 2021-05-16T22:55:26.318432 | 2020-04-29T08:28:33 | 2020-04-29T08:28:33 | 250,504,155 | 0 | 1 | MIT | 2020-04-29T08:28:35 | 2020-03-27T10:25:57 | Jupyter Notebook | UTF-8 | C++ | false | false | 490 | hpp | #ifndef __BLACKSCHOLES_H
#define __BLACKSCHOLES_H
#include <iostream>
#include <cmath>
#include <armadillo>
namespace bsc{
class BlackScholes{
private:
double S_;
double K_;
double r_;
double T_;
public:
BlackScholes(double S_,double K_,double r_,double T_);
double OptionEurop(double);
double OptionVega(double);
};
}
#endif | [
"[email protected]"
] | |
194e3768c485c0c284311363c89017d35d5840a3 | 5fade67559b840a1f9ff58609eb69d11301aea28 | /Project1/Source.cpp | 02a54b392e925f1fb92f0597c92892dc4febed72 | [] | no_license | zenkota/Projects | 6f4151dfdc97a357f61c833c69f7e88f5e287633 | a6c98f7827fe81c18de20ec7fdd0245cd257c257 | refs/heads/master | 2021-04-27T04:28:50.457261 | 2019-03-23T11:17:45 | 2019-03-23T11:17:45 | 122,579,942 | 0 | 0 | null | null | null | null | WINDOWS-1251 | C++ | false | false | 836 | cpp | // работа со строкой и с числами
#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
#include <stdlib.h>
#include <iostream>
#include <string>
using namespace std;
int main(void)
{
int num = 345, n;
char *a, *b, *e;
n = 200;
a = (char*)malloc(n * sizeof(char));
b = (char*)malloc(n * sizeof(char));
//strset(b, (int)'\0');
cin>>a;
//cin>>a;
//поиск всех лексем
char *p;
int ch;
p = strtok(a, " ");
if (p) {
ch = strtol(p, &e, 10);
if (!*e) strcpy(b, p);
}
do {
p = strtok('\0', " ");
//ch=atoi(p);// отбрасывает буквы
if (p) {
ch = strtol(p, &e, 10);
//ch=atoi(p);// отбрасывает буквы
if (!(*e) && ch<num)
{
strcat(b, " ");
strcat(b, p);
}
}
} while (p);
printf("%s", b);
free(a);
free(b);
return 0;
} | [
"[email protected]"
] | |
d4e04850b11dcabe80ae66d431a2e57ff8e65552 | 8eae6774231f4a313e7aa8ac30d5c678dc1c2a42 | /CodeForces/1422 B.cpp | 5cc028b6ddb2579e11bde0e6dc854f5cbdef501e | [
"MIT"
] | permissive | windcry1/My-ACM-ICPC | c97b203e5e54d355168ed14db888f4a1b3e6c363 | b85b1c83b72c6b51731dae946a0df57c31d3e7a1 | refs/heads/master | 2021-09-06T20:47:56.525749 | 2021-08-22T14:06:10 | 2021-08-22T14:06:10 | 231,622,263 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,475 | cpp | /*************************************************************************
>>> Author: WindCry1
>>> Mail: [email protected]
>>> Website: https://windcry1.com
>>> Date: 12/30/2019 11:03:37 PM
*************************************************************************/
//#pragma GCC optimize(2)
//#pragma GCC diagnostic error "-std=c++11"
#include <cstring>
#include <cmath>
#include <cstdio>
#include <cctype>
#include <cstdlib>
#include <ctime>
#include <vector>
#include <iostream>
#include <string>
#include <queue>
#include <set>
#include <map>
#include <algorithm>
#include <complex>
#include <stack>
#include <bitset>
#include <iomanip>
#include <list>
#include <sstream>
#include <fstream>
#include <numeric>
#if __cplusplus >= 201103L
#include <unordered_map>
#include <unordered_set>
#endif
#define endl '\n'
#define ALL(x) x.begin(),x.end()
#define MP(x,y) make_pair(x,y)
#define ll long long
#define ull unsigned long long
#ifdef WindCry1
#define DEBUG(x) cout<<#x<<" : "<<x<<endl;
#endif
#define lowbit(x) x&(-x)
#define ls x<<1
#define rs x<<1|1
using namespace std;
template<typename T> inline T MIN(const T &a,const T &b) {return a<b?a:b;}
template<typename T> inline T MAX(const T &a,const T &b) {return a>b?a:b;}
template<typename T,typename ...Args> inline T MIN(const T &a,const T &b,Args ...args) {return MIN(MIN(a,b),args...);}
template<typename T,typename ...Args> inline T MAX(const T &a,const T &b,Args ...args) {return MAX(MAX(a,b),args...);}
typedef pair<int,int> pii;
typedef pair<ll,ll> pll;
typedef pair<double,double> pdd;
const double eps = 1e-8;
const int INF = 0x3f3f3f3f;
const int mod = 1e9+7;
const int dir[4][2]={-1,0,1,0,0,-1,0,1};
int a[110][110];
bool vis[110][110];
int main(){
ios::sync_with_stdio(false);cin.tie(0);cout.tie(0);
#ifdef WindCry1
freopen("C:/Users/LENOVO/Desktop/in.txt","r",stdin);
#endif
int T;for(cin>>T;T--;){
memset(vis,0,sizeof vis);
int n,m;cin>>n>>m;
for(int i=1;i<=n;i++) for(int j=1;j<=m;j++) cin>>a[i][j];
ll res=0;
for(int i=1;i<=n;i++)
for(int j=1;j<=m;j++){
if(vis[i][j]) continue;
vector<int> temp;
temp.push_back(a[i][j]);vis[i][j]=1;
if(!vis[i][m+1-j]) temp.push_back(a[i][m+1-j]),vis[i][m+1-j]=1;
if(!vis[n+1-i][j]) temp.push_back(a[n+1-i][j]),vis[n+1-i][j]=1;
if(!vis[n+1-i][m+1-j]) temp.push_back(a[n+1-i][m+1-j]),vis[n+1-i][m+1-j]=1;
sort(ALL(temp));
for(auto t:temp)
res+=abs(t-temp[temp.size()>>1]);
}
cout<<res<<endl;
}
return 0;
}
| [
"[email protected]"
] | |
9a3d5b394f8e89b08e738a7854cbbe3250311d09 | 0bf0f7818f12c8fca8d9c6548eaa92615d31ebd8 | /07_Shape/Source/Sample/lodepngBuild.cpp | 2e0d63bc475e4f430dbc794a29030f904876ec71 | [
"MIT"
] | permissive | n-suudai/D3D11Sample | c0ef47e4fc757f0e1dbf84d6292d996c708289f7 | ade7976b67d306c07ae29d2f9dd3becfb9770e33 | refs/heads/master | 2021-07-19T08:16:20.035919 | 2020-04-14T01:58:58 | 2020-04-14T01:58:58 | 130,796,235 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 34 | cpp | #include "lodepng/lodepng.cpp"
| [
"[email protected]"
] | |
78615b895c260a89d466d8a4d5d35656ebae979a | 6734e256fb6749960ab177b090c105391bd9ecf8 | /Code/Morque++/Morque++/PuzzleRoom.cpp | b5d35a8805b8ef0ea08d5aedd601e3b284c5bc9c | [] | no_license | joncmak/Morque- | ca416825011bc287382e0b11e9ee7f86fd0f4128 | 826904bb2861d16729339bdf33a7952f28b44686 | refs/heads/master | 2021-01-10T09:19:04.342195 | 2015-11-15T05:26:35 | 2015-11-15T05:26:35 | 45,947,517 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,069 | cpp | #include "PuzzleRoom.h"
#define WALL 0
#define DOOR 1
using namespace std;
///
/// Constructor for PuzzleRoom
///
/// Parameters:
/// string pID - uuid for instance of PuzzleRoom
/// int* pAdjacencyList - integer array for adjacency list
///
PuzzleRoom::PuzzleRoom(string pID, int* pAdjacencyList) : Room()
{
if(pID == "")
{
boost::uuids::uuid uuid = boost::uuids::random_generator()();
pID = boost::lexical_cast<std::string>(uuid);
}
mID = pID;
if(pAdjacencyList != NULL)
{
mAdjacencyList = new int[4];
setAdjacencyList(pAdjacencyList);
}
cout << "created Puzzle Room " << mID << endl;
}
///
/// Copy Constructor for PuzzleRoom
///
/// Parameters:
/// PuzzleRoom& pPuzzleRoom - instance of PuzzleRoom to copy
///
PuzzleRoom::PuzzleRoom(const PuzzleRoom& pPuzzleRoom) : Room(pPuzzleRoom)
{
mID = pPuzzleRoom.mID;
mAdjacencyList = pPuzzleRoom.mAdjacencyList;
cout << "copied Puzzle Room " << mID << endl;
}
///
/// setAdjacencyList
///
/// Sets the adjacency list for PuzzleRoom.
/// If a valud in the integer array is invalid, it defaults to 0 (WALL)
///
/// Parameters:
/// int* pAdjacencyList - integer array to use for adjacency list
///
void PuzzleRoom::setAdjacencyList(int* pAdjacencyList)
{
if(sizeof(pAdjacencyList) != 4)
{
//error log
}
else
{
int index;
for(index = 0; index < 4; index++)
{
if(pAdjacencyList[index] == WALL)
{
mAdjacencyList[index] = WALL;
}
else if(pAdjacencyList[index] == DOOR)
{
mAdjacencyList[index] = DOOR;
}
else
{
//error log
mAdjacencyList[index] = WALL;
}
}
}
}
///
/// clone()
///
/// clone function for PuzzleRoom
///
/// Returns: cloned instance of PuzzleRoom
///
Room* PuzzleRoom::clone()
{
return new PuzzleRoom(*this);
}
///
/// print()
///
/// Prints information about the current instance of PuzzleRoom
///
void PuzzleRoom::print()
{
cout << "created Puzzle Room " << mID << endl;
// cout << "adjacency list: [";
// for(int index = 0; index < 4; index++)
// {
// cout << mAdjacencyList[index] << ", ";
// }
// cout << "]" << endl;
} | [
"[email protected]"
] | |
9d65587aa0f007f6ff90840de180b6909078d826 | 480bae61c4f4336eb7466096f0ff3e9d1b6789b1 | /src/coreclr/src/jit/hwintrinsiccodegenarm64.cpp | 45199b5ca2e0f8b446ee53423c376b3c493ce9d1 | [
"MIT"
] | permissive | thomasgassmann/runtime | 728b624c792bc28b2d4ac898a0e91f4631e1c893 | ff386383623a8dc809c20f2ab3e18bef4370d451 | refs/heads/master | 2020-09-23T20:30:07.551516 | 2019-12-13T21:04:26 | 2019-12-13T21:04:26 | 225,575,108 | 4 | 0 | NOASSERTION | 2019-12-03T09:02:11 | 2019-12-03T09:02:10 | null | UTF-8 | C++ | false | false | 7,962 | cpp | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
#include "jitpch.h"
#ifdef _MSC_VER
#pragma hdrstop
#endif
#ifdef FEATURE_HW_INTRINSICS
#include "emit.h"
#include "codegen.h"
#include "sideeffects.h"
#include "lower.h"
#include "gcinfo.h"
#include "gcinfoencoder.h"
struct HWIntrinsic final
{
HWIntrinsic(const GenTreeHWIntrinsic* node)
: op1(nullptr), op2(nullptr), op3(nullptr), numOperands(0), baseType(TYP_UNDEF)
{
assert(node != nullptr);
id = node->gtHWIntrinsicId;
category = HWIntrinsicInfo::lookupCategory(id);
assert(HWIntrinsicInfo::RequiresCodegen(id));
InitializeOperands(node);
InitializeBaseType(node);
}
bool IsTableDriven() const
{
// TODO-Arm64-Cleanup - make more categories to the table-driven framework
bool isTableDrivenCategory = (category != HW_Category_Special) && (category != HW_Category_Helper);
bool isTableDrivenFlag = !HWIntrinsicInfo::GeneratesMultipleIns(id) && !HWIntrinsicInfo::HasSpecialCodegen(id);
return isTableDrivenCategory && isTableDrivenFlag;
}
NamedIntrinsic id;
HWIntrinsicCategory category;
GenTree* op1;
GenTree* op2;
GenTree* op3;
int numOperands;
var_types baseType;
private:
void InitializeOperands(const GenTreeHWIntrinsic* node)
{
op1 = node->gtGetOp1();
op2 = node->gtGetOp2();
assert(op1 != nullptr);
if (op1->OperIsList())
{
assert(op2 == nullptr);
GenTreeArgList* list = op1->AsArgList();
op1 = list->Current();
list = list->Rest();
op2 = list->Current();
list = list->Rest();
op3 = list->Current();
assert(list->Rest() == nullptr);
numOperands = 3;
}
else if (op2 != nullptr)
{
numOperands = 2;
}
else
{
numOperands = 1;
}
}
void InitializeBaseType(const GenTreeHWIntrinsic* node)
{
baseType = node->gtSIMDBaseType;
if (baseType == TYP_UNKNOWN)
{
assert(category == HW_Category_Scalar);
if (HWIntrinsicInfo::BaseTypeFromFirstArg(id))
{
assert(op1 != nullptr);
baseType = op1->TypeGet();
}
else if (HWIntrinsicInfo::BaseTypeFromSecondArg(id))
{
assert(op2 != nullptr);
baseType = op2->TypeGet();
}
else
{
baseType = node->TypeGet();
}
}
}
};
//------------------------------------------------------------------------
// genHWIntrinsic: Generates the code for a given hardware intrinsic node.
//
// Arguments:
// node - The hardware intrinsic node
//
void CodeGen::genHWIntrinsic(GenTreeHWIntrinsic* node)
{
const HWIntrinsic intrin(node);
regNumber targetReg = node->GetRegNum();
regNumber op1Reg = REG_NA;
regNumber op2Reg = REG_NA;
regNumber op3Reg = REG_NA;
switch (intrin.numOperands)
{
case 3:
assert(intrin.op3 != nullptr);
op3Reg = intrin.op3->GetRegNum();
__fallthrough;
case 2:
assert(intrin.op2 != nullptr);
op2Reg = intrin.op2->GetRegNum();
__fallthrough;
case 1:
assert(intrin.op1 != nullptr);
op1Reg = intrin.op1->GetRegNum();
break;
default:
unreached();
}
emitAttr emitSize;
insOpts opt = INS_OPTS_NONE;
if ((intrin.category == HW_Category_SIMDScalar) || (intrin.category == HW_Category_Scalar))
{
emitSize = emitActualTypeSize(intrin.baseType);
}
else
{
emitSize = EA_SIZE(node->gtSIMDSize);
opt = genGetSimdInsOpt(emitSize, intrin.baseType);
}
genConsumeHWIntrinsicOperands(node);
if (intrin.IsTableDriven())
{
instruction ins = HWIntrinsicInfo::lookupIns(intrin.id, intrin.baseType);
assert(ins != INS_invalid);
switch (intrin.numOperands)
{
case 1:
GetEmitter()->emitIns_R_R(ins, emitSize, targetReg, op1Reg, opt);
break;
case 2:
GetEmitter()->emitIns_R_R_R(ins, emitSize, targetReg, op1Reg, op2Reg, opt);
break;
case 3:
if (targetReg != op1Reg)
{
GetEmitter()->emitIns_R_R(INS_mov, emitSize, targetReg, op1Reg);
}
GetEmitter()->emitIns_R_R_R(ins, emitSize, targetReg, op2Reg, op3Reg, opt);
break;
default:
unreached();
}
}
else
{
instruction ins = INS_invalid;
switch (intrin.id)
{
case NI_Crc32_ComputeCrc32:
if (intrin.baseType == TYP_INT)
{
ins = INS_crc32w;
}
else
{
ins = HWIntrinsicInfo::lookupIns(intrin.id, intrin.baseType);
}
break;
case NI_Crc32_ComputeCrc32C:
if (intrin.baseType == TYP_INT)
{
ins = INS_crc32cw;
}
else
{
ins = HWIntrinsicInfo::lookupIns(intrin.id, intrin.baseType);
}
break;
case NI_Crc32_Arm64_ComputeCrc32:
assert(intrin.baseType == TYP_LONG);
ins = INS_crc32x;
break;
case NI_Crc32_Arm64_ComputeCrc32C:
assert(intrin.baseType == TYP_LONG);
ins = INS_crc32cx;
break;
default:
ins = HWIntrinsicInfo::lookupIns(intrin.id, intrin.baseType);
break;
}
assert(ins != INS_invalid);
switch (intrin.id)
{
case NI_AdvSimd_BitwiseSelect:
if (targetReg == op1Reg)
{
GetEmitter()->emitIns_R_R_R(INS_bsl, emitSize, targetReg, op2Reg, op3Reg, opt);
}
else if (targetReg == op2Reg)
{
GetEmitter()->emitIns_R_R_R(INS_bif, emitSize, targetReg, op3Reg, op1Reg, opt);
}
else if (targetReg == op3Reg)
{
GetEmitter()->emitIns_R_R_R(INS_bit, emitSize, targetReg, op2Reg, op1Reg, opt);
}
else
{
GetEmitter()->emitIns_R_R(INS_mov, emitSize, targetReg, op1Reg);
GetEmitter()->emitIns_R_R_R(INS_bsl, emitSize, targetReg, op2Reg, op3Reg, opt);
}
break;
case NI_Aes_Decrypt:
case NI_Aes_Encrypt:
if (targetReg != op1Reg)
{
GetEmitter()->emitIns_R_R(INS_mov, emitSize, targetReg, op1Reg);
}
GetEmitter()->emitIns_R_R(ins, emitSize, targetReg, op2Reg, opt);
break;
case NI_Crc32_ComputeCrc32:
case NI_Crc32_ComputeCrc32C:
case NI_Crc32_Arm64_ComputeCrc32:
case NI_Crc32_Arm64_ComputeCrc32C:
GetEmitter()->emitIns_R_R_R(ins, emitSize, targetReg, op1Reg, op2Reg);
break;
default:
unreached();
}
}
genProduceReg(node);
}
#endif // FEATURE_HW_INTRINSICS
| [
"[email protected]"
] | |
8a6f70189e38901d0a5a2415d4eccefc9ce86100 | 06eb60c98f4d106fc3bb3d0b7e990828b87d714d | /Source/WebCore/platform/graphics/cairo/PlatformContextCairo.cpp | 38886545d8825ed19d918dcd6048650267d435f1 | [] | no_license | snyh/dui | 9486a81d97ec1173b161b6aef8fcea21066aebff | c4464629f1efdecae792ed3abc2a7fc9ce9b88db | refs/heads/master | 2021-01-25T08:28:55.224303 | 2013-10-23T00:42:02 | 2013-10-23T00:42:02 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 12,812 | cpp | /*
* Copyright (C) 2011 Igalia S.L.
* Copyright (c) 2008, Google Inc. All rights reserved.
* Copyright (c) 2012, Intel Corporation
*
* 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 COMPUTER, 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.
*/
#include "config.h"
#include "platform/graphics/cairo/PlatformContextCairo.h"
#include "platform/graphics/cairo/CairoUtilities.h"
#include "platform/graphics/Gradient.h"
#include "platform/graphics/GraphicsContext.h"
#include "platform/graphics/cairo/OwnPtrCairo.h"
#include "platform/graphics/Pattern.h"
#include <cairo.h>
namespace WebCore {
// In Cairo image masking is immediate, so to emulate image clipping we must save masking
// details as part of the context state and apply them during platform restore.
class ImageMaskInformation {
public:
void update(cairo_surface_t* maskSurface, const FloatRect& maskRect)
{
m_maskSurface = maskSurface;
m_maskRect = maskRect;
}
bool isValid() const { return m_maskSurface; }
cairo_surface_t* maskSurface() const { return m_maskSurface.get(); }
const FloatRect& maskRect() const { return m_maskRect; }
private:
RefPtr<cairo_surface_t> m_maskSurface;
FloatRect m_maskRect;
};
// Encapsulates the additional painting state information we store for each
// pushed graphics state.
class PlatformContextCairo::State {
public:
State()
: m_globalAlpha(1)
, m_imageInterpolationQuality(InterpolationDefault)
{
}
State(const State& state)
: m_globalAlpha(state.m_globalAlpha)
, m_imageInterpolationQuality(state.m_imageInterpolationQuality)
{
// We do not copy m_imageMaskInformation because otherwise it would be applied
// more than once during subsequent calls to restore().
}
ImageMaskInformation m_imageMaskInformation;
float m_globalAlpha;
InterpolationQuality m_imageInterpolationQuality;
};
PlatformContextCairo::PlatformContextCairo(cairo_t* cr)
: m_cr(cr)
{
m_stateStack.append(State());
m_state = &m_stateStack.last();
}
void PlatformContextCairo::restore()
{
const ImageMaskInformation& maskInformation = m_state->m_imageMaskInformation;
if (maskInformation.isValid()) {
const FloatRect& maskRect = maskInformation.maskRect();
cairo_pop_group_to_source(m_cr.get());
cairo_mask_surface(m_cr.get(), maskInformation.maskSurface(), maskRect.x(), maskRect.y());
}
m_stateStack.removeLast();
ASSERT(!m_stateStack.isEmpty());
m_state = &m_stateStack.last();
cairo_restore(m_cr.get());
}
PlatformContextCairo::~PlatformContextCairo()
{
}
void PlatformContextCairo::save()
{
m_stateStack.append(State(*m_state));
m_state = &m_stateStack.last();
cairo_save(m_cr.get());
}
void PlatformContextCairo::pushImageMask(cairo_surface_t* surface, const FloatRect& rect)
{
// We must call savePlatformState at least once before we can use image masking,
// since we actually apply the mask in restorePlatformState.
ASSERT(!m_stateStack.isEmpty());
m_state->m_imageMaskInformation.update(surface, rect);
// Cairo doesn't support the notion of an image clip, so we push a group here
// and then paint it to the surface with an image mask (which is an immediate
// operation) during restorePlatformState.
// We want to allow the clipped elements to composite with the surface as it
// is now, but they are isolated in another group. To make this work, we're
// going to blit the current surface contents onto the new group once we push it.
cairo_surface_t* currentTarget = cairo_get_target(m_cr.get());
cairo_surface_flush(currentTarget);
// Pushing a new group ensures that only things painted after this point are clipped.
cairo_push_group(m_cr.get());
cairo_set_operator(m_cr.get(), CAIRO_OPERATOR_SOURCE);
cairo_set_source_surface(m_cr.get(), currentTarget, 0, 0);
cairo_rectangle(m_cr.get(), rect.x(), rect.y(), rect.width(), rect.height());
cairo_fill(m_cr.get());
}
static void drawPatternToCairoContext(cairo_t* cr, cairo_pattern_t* pattern, const FloatRect& destRect, float alpha)
{
cairo_translate(cr, destRect.x(), destRect.y());
cairo_set_source(cr, pattern);
cairo_rectangle(cr, 0, 0, destRect.width(), destRect.height());
if (alpha < 1) {
cairo_clip(cr);
cairo_paint_with_alpha(cr, alpha);
} else
cairo_fill(cr);
}
void PlatformContextCairo::drawSurfaceToContext(cairo_surface_t* surface, const FloatRect& destRect, const FloatRect& originalSrcRect, GraphicsContext* context)
{
FloatRect srcRect = originalSrcRect;
// We need to account for negative source dimensions by flipping the rectangle.
if (originalSrcRect.width() < 0) {
srcRect.setX(originalSrcRect.x() + originalSrcRect.width());
srcRect.setWidth(std::fabs(originalSrcRect.width()));
}
if (originalSrcRect.height() < 0) {
srcRect.setY(originalSrcRect.y() + originalSrcRect.height());
srcRect.setHeight(std::fabs(originalSrcRect.height()));
}
// Cairo subsurfaces don't support floating point boundaries well, so we expand the rectangle.
IntRect expandedSrcRect(enclosingIntRect(srcRect));
// We use a subsurface here so that we don't end up sampling outside the originalSrcRect rectangle.
// See https://bugs.webkit.org/show_bug.cgi?id=58309
RefPtr<cairo_surface_t> subsurface = adoptRef(cairo_surface_create_for_rectangle(
surface, expandedSrcRect.x(), expandedSrcRect.y(), expandedSrcRect.width(), expandedSrcRect.height()));
RefPtr<cairo_pattern_t> pattern = adoptRef(cairo_pattern_create_for_surface(subsurface.get()));
ASSERT(m_state);
switch (m_state->m_imageInterpolationQuality) {
case InterpolationNone:
case InterpolationLow:
cairo_pattern_set_filter(pattern.get(), CAIRO_FILTER_FAST);
break;
case InterpolationMedium:
case InterpolationHigh:
cairo_pattern_set_filter(pattern.get(), CAIRO_FILTER_BILINEAR);
break;
case InterpolationDefault:
cairo_pattern_set_filter(pattern.get(), CAIRO_FILTER_BILINEAR);
break;
}
cairo_pattern_set_extend(pattern.get(), CAIRO_EXTEND_PAD);
// The pattern transformation properly scales the pattern for when the source rectangle is a
// different size than the destination rectangle. We also account for any offset we introduced
// by expanding floating point source rectangle sizes. It's important to take the absolute value
// of the scale since the original width and height might be negative.
float scaleX = std::fabs(srcRect.width() / destRect.width());
float scaleY = std::fabs(srcRect.height() / destRect.height());
float leftPadding = static_cast<float>(expandedSrcRect.x()) - floorf(srcRect.x());
float topPadding = static_cast<float>(expandedSrcRect.y()) - floorf(srcRect.y());
cairo_matrix_t matrix = { scaleX, 0, 0, scaleY, leftPadding, topPadding };
cairo_pattern_set_matrix(pattern.get(), &matrix);
ShadowBlur& shadow = context->platformContext()->shadowBlur();
if (shadow.type() != ShadowBlur::NoShadow) {
if (GraphicsContext* shadowContext = shadow.beginShadowLayer(context, destRect)) {
drawPatternToCairoContext(shadowContext->platformContext()->cr(), pattern.get(), destRect, 1);
shadow.endShadowLayer(context);
}
}
cairo_save(m_cr.get());
drawPatternToCairoContext(m_cr.get(), pattern.get(), destRect, globalAlpha());
cairo_restore(m_cr.get());
}
void PlatformContextCairo::setImageInterpolationQuality(InterpolationQuality quality)
{
ASSERT(m_state);
m_state->m_imageInterpolationQuality = quality;
}
InterpolationQuality PlatformContextCairo::imageInterpolationQuality() const
{
ASSERT(m_state);
return m_state->m_imageInterpolationQuality;
}
float PlatformContextCairo::globalAlpha() const
{
return m_state->m_globalAlpha;
}
void PlatformContextCairo::setGlobalAlpha(float globalAlpha)
{
m_state->m_globalAlpha = globalAlpha;
}
static inline void reduceSourceByAlpha(cairo_t* cr, float alpha)
{
if (alpha >= 1)
return;
cairo_push_group(cr);
cairo_set_operator(cr, CAIRO_OPERATOR_SOURCE);
cairo_paint_with_alpha(cr, alpha);
cairo_pop_group_to_source(cr);
}
static void prepareCairoContextSource(cairo_t* cr, Pattern* pattern, Gradient* gradient, const Color& color, float globalAlpha)
{
if (pattern) {
RefPtr<cairo_pattern_t> cairoPattern(adoptRef(pattern->createPlatformPattern(AffineTransform())));
cairo_set_source(cr, cairoPattern.get());
reduceSourceByAlpha(cr, globalAlpha);
} else if (gradient)
cairo_set_source(cr, gradient->platformGradient(globalAlpha));
else { // Solid color source.
if (globalAlpha < 1)
setSourceRGBAFromColor(cr, colorWithOverrideAlpha(color.rgb(), color.alpha() / 255.f * globalAlpha));
else
setSourceRGBAFromColor(cr, color);
}
}
void PlatformContextCairo::prepareForFilling(const GraphicsContextState& state, PatternAdjustment patternAdjustment)
{
cairo_set_fill_rule(m_cr.get(), state.fillRule == RULE_EVENODD ? CAIRO_FILL_RULE_EVEN_ODD : CAIRO_FILL_RULE_WINDING);
prepareCairoContextSource(m_cr.get(),
state.fillPattern.get(),
state.fillGradient.get(),
state.fillColor,
patternAdjustment == AdjustPatternForGlobalAlpha ? globalAlpha() : 1);
if (state.fillPattern)
clipForPatternFilling(state);
}
void PlatformContextCairo::prepareForStroking(const GraphicsContextState& state, AlphaPreservation alphaPreservation)
{
prepareCairoContextSource(m_cr.get(),
state.strokePattern.get(),
state.strokeGradient.get(),
state.strokeColor,
alphaPreservation == PreserveAlpha ? globalAlpha() : 1);
}
void PlatformContextCairo::clipForPatternFilling(const GraphicsContextState& state)
{
ASSERT(state.fillPattern);
// Hold current cairo path in a variable for restoring it after configuring the pattern clip rectangle.
OwnPtr<cairo_path_t> currentPath = adoptPtr(cairo_copy_path(m_cr.get()));
cairo_new_path(m_cr.get());
// Initialize clipping extent from current cairo clip extents, then shrink if needed according to pattern.
// Inspired by GraphicsContextQt::drawRepeatPattern.
double x1, y1, x2, y2;
cairo_clip_extents(m_cr.get(), &x1, &y1, &x2, &y2);
FloatRect clipRect(x1, y1, x2 - x1, y2 - y1);
Image* patternImage = state.fillPattern->tileImage();
ASSERT(patternImage);
const AffineTransform& patternTransform = state.fillPattern->getPatternSpaceTransform();
FloatRect patternRect = patternTransform.mapRect(FloatRect(0, 0, patternImage->width(), patternImage->height()));
bool repeatX = state.fillPattern->repeatX();
bool repeatY = state.fillPattern->repeatY();
if (!repeatX) {
clipRect.setX(patternRect.x());
clipRect.setWidth(patternRect.width());
}
if (!repeatY) {
clipRect.setY(patternRect.y());
clipRect.setHeight(patternRect.height());
}
if (!repeatX || !repeatY) {
cairo_rectangle(m_cr.get(), clipRect.x(), clipRect.y(), clipRect.width(), clipRect.height());
cairo_clip(m_cr.get());
}
// Restoring cairo path.
cairo_append_path(m_cr.get(), currentPath.get());
}
} // namespace WebCore
| [
"[email protected]"
] | |
98ac8f473fcad68f5d1dc86aae199e84cd74b0bc | be58b958a814db71b3fe199f3caf5305c72bc155 | /atm/src/BankAPI.cpp | 07cbe471588bfad32fff8fb97d7044fb47b233e1 | [] | no_license | somenkovnikita/bank | 76a40ec8f20e3a756dd956200ae6f8979ae88096 | 9bbeada25404d6ed0a78daf56203e9eb887dd5fc | refs/heads/master | 2021-05-10T13:55:36.736883 | 2018-01-24T13:05:06 | 2018-01-24T13:05:06 | 118,493,695 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,810 | cpp | /**
* @author Nikita Somenkov
* @email [email protected]
* @date 20 Jan 2018
*/
#include <vector>
#include <sstream>
#include "BankAPI.hpp"
std::vector<std::string> split(const std::string &message) {
std::stringstream stream;
stream << message;
std::string line;
std::vector<std::string> result;
while (std::getline(stream, line, ' ')) {
result.push_back(std::move(line));
}
return result;
}
std::string join(const std::vector<std::string> &words, int form = -1, int to = -1) {
std::string result;
if (form == -1) form = 0;
if (to == -1) to = static_cast<int>(words.size());
for (auto i = form; i < to; i++) {
result += " " + words[i];
}
return result;
}
BankAPI::BankAPI(const Endpoint &endpoint, BaseConnection &&connection) :
endpoint(endpoint), connection(connection) { }
Responce BankAPI::getCash(float amount) {
auto response = makeQuery("get " + std::to_string(amount));
if (!response.success) return response;
return {true, ""};
}
Responce BankAPI::addCash(float amount) {
auto response = makeQuery("add " + std::to_string(amount));
if (!response.success) return response;
return {true, ""};
}
Responce BankAPI::cash(float &amount) {
auto response = makeQuery("cash");
if (!response.success) return response;
char *ptr = nullptr;
auto result = strtod(response.message.c_str(), &ptr);
if (ptr == nullptr) {
return {false, "Connection error (cash request)"};
}
amount = static_cast<float>(result);
return {true, ""};
}
Responce BankAPI::setClient(const CardInfo &info) {
std::string id = info.card + " " + std::to_string(info.pin);
auto response = makeQuery(id);
if (!response.success) return response;
clientid = id;
return {true, ""};
}
Responce BankAPI::makeQuery(const std::string &inputquery) {
std::string query = clientid + " " + inputquery;
std::vector<char> buffer(1024);
size_t size = buffer.size();
if (!connection.create(endpoint)) {
return {false, "Connection error while create"};
}
if (!connection.write(query.data(), query.size())) {
return {false, "Connection error while write"};
}
else if (!connection.read(buffer.data(), size)) {
return {false, "Connection error while read"};
}
if (!connection.close()) {
return {false, "Connection error while close"};
};
std::string response{buffer.begin(), buffer.begin() + size};
auto splited = split(response);
if (!splited.empty()) {
auto joined = join(splited, 1);
if (splited[0] == "ERROR") return Responce{false, joined};
if (splited[0] == "OK") return Responce{true, joined};
}
return {false, "Connection error"};
}
| [
"[email protected]"
] | |
a58c50727ec971abc07aaf819502f121f1bc2c5b | de1805732512e4c4d41c63bed6a44a76ac5dd254 | /SpyCProject/SpyC/dronemodel.h | ac39fd43ca4f325ae2da09abbd3cb4149ad5d414 | [] | no_license | UAVWorks/DroneProject | 47dac4150e36b0d31aaf7db05f1f157ce7331c37 | 81a4c4549a76937c1c54669e0359a087251bc4e0 | refs/heads/master | 2020-05-17T17:39:45.062783 | 2018-09-09T09:55:45 | 2018-09-09T09:55:45 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,726 | h | #ifndef DRONEMODEL_H
#define DRONEMODEL_H
// Qt
#include <QAbstractListModel>
// Application
#include <alert.h>
namespace Core {
class DroneBase;
}
class DroneModel : public QAbstractListModel
{
Q_OBJECT
Q_PROPERTY(int droneCount READ droneCount NOTIFY droneCountChanged)
public:
//-------------------------------------------------------------------------------------------------
// Constructors and destructor
//-------------------------------------------------------------------------------------------------
//! Constructor
DroneModel(QObject *pParent=nullptr);
//! Destructor
~DroneModel();
//-------------------------------------------------------------------------------------------------
// Control methods
//-------------------------------------------------------------------------------------------------
//! Add drone
void addDrone(Core::DroneBase *pDrone);
//-------------------------------------------------------------------------------------------------
// QAbstractItemModel methods
//-------------------------------------------------------------------------------------------------
//! Data
virtual QVariant data(const QModelIndex &index, int iRole) const;
//! Return row count
virtual int rowCount(const QModelIndex &parent=QModelIndex()) const;
//! Return role names
virtual QHash<int, QByteArray> roleNames() const;
private:
//! Return drone count
int droneCount() const;
private:
//! Drones
QVector<Core::DroneBase *> m_vDrones;
public slots:
//! Update view
void onUpdateView();
signals:
//! Drone count changed
void droneCountChanged();
};
#endif // DRONEMODEL_H
| [
"[email protected]"
] | |
ead504e056332fa57022cb409027d4fe709370c3 | a1e89a43e3c713bd71647c98c67628ef6a8f8120 | /Programacion C++/Segundo parcial programacion/While/calificacion.cpp | 126c183881837e4c6019686298e2d3268a965b04 | [] | no_license | premutoz17/uaemex_mate | f6b4213609bd857b6a6db4f1029bc6b13ee7493d | 2c138f1d75285d021b8290dfd4f51c4f9f4b597e | refs/heads/master | 2022-11-06T17:28:58.723427 | 2020-06-28T22:03:35 | 2020-06-28T22:03:35 | 275,676,105 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 428 | cpp | #include<iostream>
#include<clocale>
#include<stdlib.h>
using namespace std;
int main ()
{
setlocale (LC_CTYPE, "Spanish");
float n;
cout<<"\nIngrese la nota de una asignatura: ";
cin>>n;
while (n<0 || n>10)
{
cout<<"\n\tError, nota incorrecta.\n";
cout<<"\nIngrese la nota de una asignatura: ";
cin>>n;
}
if (n>=5)
{
cout<<"\n\tAPROBADO";
}
if (n<5)
{
cout<<"\n\tSUSPENDIDO";
}
return 0;
}
| [
"[email protected]"
] | |
6c75f88c0781fb9b74551f204480767fb057548d | 8f856432e98231e79d1f49a46aefd014599bf708 | /Employee/Main.cpp | 25abdc2a0c1d0a3f78a7169322e520b40d0ff833 | [] | no_license | akash0395/uniquerepo | e01529504926ac3afdc04d6e19437b3eb99a0d83 | 188843f6fec9c6277486768afd869ce644146743 | refs/heads/master | 2020-09-23T22:09:37.210794 | 2019-12-03T15:29:46 | 2019-12-03T15:29:46 | 225,598,933 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 122 | cpp | #include<iostream>
using namespace std;
#include"Employee.h"
int main()
{
Employee e1(12,"abc",21000,2);
cout<<e1;
}
| [
"[email protected]"
] | |
1c63b405230931b89efa6d3c7bb557a1f3d9d26e | f1b65a67115058db99e200f3e4288b0ff607da2b | /339_Nested List Weight Sum.cpp | 0b4b47e72ad426169f4edbfb8ee7d21d45d8c065 | [] | no_license | Liurunex/Leetcode | d8d0f28a61f0303274881c144a214892e786afed | 21de5f8b91053c5befc579e34b6c76a9c2fc1ccd | refs/heads/master | 2021-01-25T09:26:16.516436 | 2018-06-05T11:27:38 | 2018-06-05T11:27:38 | 93,832,959 | 1 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 1,323 | cpp | /**
* // This is the interface that allows for creating nested lists.
* // You should not implement it, or speculate about its implementation
* class NestedInteger {
* public:
* // Return true if this NestedInteger holds a single integer, rather than a nested list.
* bool isInteger() const;
*
* // Return the single integer that this NestedInteger holds, if it holds a single integer
* // The result is undefined if this NestedInteger holds a nested list
* int getInteger() const;
*
* // Return the nested list that this NestedInteger holds, if it holds a nested list
* // The result is undefined if this NestedInteger holds a single integer
* const vector<NestedInteger> &getList() const;
* };
*/
class Solution {
public:
int depthSum(vector<NestedInteger>& nestedList) {
int res = 0;
for (int i = 0; i < nestedList.size(); ++ i) {
if (nestedList[i].isInteger()) res += nestedList[i].getInteger();
else res += getNestSum(nestedList[i].getList(), 2);
}
return res;
}
int getNestSum(vector<NestedInteger> nestedList, int depth) {
int res = 0;
for (int i = 0; i < nestedList.size(); ++ i) {
if (nestedList[i].isInteger()) res += depth * nestedList[i].getInteger();
else res += getNestSum(nestedList[i].getList(), depth+1);
}
return res;
}
}; | [
"[email protected]"
] | |
6e6cae01be2a3912ec9e0fec8f7bdda632c6b533 | b80e75e868e455c37eeb0a9d518aed9ac82427f4 | /videolib/src/main/cpp/Audio.h | 00ac7f9bcd0283b1a93bfa52917d92e0445f41a6 | [] | no_license | linux-liu/VideoPlay | 402d9306fded5d8ea7ea4a7d7755e66de022116a | b5480d2f4004b95dae69b4fc6f1112fbb892a83e | refs/heads/master | 2020-12-01T16:43:10.360769 | 2020-04-04T07:28:35 | 2020-04-04T07:28:35 | 230,701,393 | 3 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 2,534 | h | //
// Created by liuxin on 19-8-24.
//
#ifndef AUDIOPLAY_AUDIO_H
#define AUDIOPLAY_AUDIO_H
extern "C"{
#include "libavcodec/avcodec.h"
#include "libavformat/avformat.h"
#include "libswresample/swresample.h"
};
#include "AvPacketQuene.h"
#include "PlayStatus.h"
#include "CallJava.h"
#include <SLES/OpenSLES_Android.h>
#include <SLES/OpenSLES.h>
#include <unistd.h>
#include "SoundTouch.h"
#include <math.h>
#define OUT_SAMPLE_RATE 44100
#define OUT_CHANNEL_NB 2
#define OUT_FORMAT AVSampleFormat::AV_SAMPLE_FMT_S16
using namespace soundtouch;
class Audio {
public:
int audioStreamIndex=-1;
AVCodecContext *codecContext = NULL;
AvPacketQuene *avPacketQuene=NULL;
PlayStatus *playStatus=NULL;
uint8_t *data=NULL;
bool isFinishReceive=true;
pthread_mutex_t decodeMutex;
int64_t duration=0;
double current=0;
AVRational time_base;
double pre_time=0;
pthread_t decode_thread;
CallJava *callJava=NULL;
//播放相关
SLObjectItf engineObject=NULL;
SLEngineItf slEngineItf=NULL;
SLAndroidSimpleBufferQueueItf slBufferQueueItf=NULL;
//混音
SLObjectItf muixObject=NULL;
SLEnvironmentalReverbItf outEnvironmentalReverbItf=NULL;
SLEnvironmentalReverbSettings slEnvironmentalReverbSettings=SL_I3DL2_ENVIRONMENT_PRESET_STONECORRIDOR;
//播放和播放参数
SLObjectItf playerObject=NULL;
SLPlayItf slPlayItf=NULL;
SLVolumeItf slVolumeItf=NULL;
SLMuteSoloItf slMuteSoloItf=NULL;
SLPlaybackRateItf slPlaybackRateItf=NULL;
pthread_mutex_t sl_mutex;
//soundTouch
SoundTouch *soundTouch=NULL;
SAMPLETYPE *sampletype=NULL; //处理后的音频数据
double pitch=1.0;//变调
double tempPo=1.0;//变速
int per_number_sample=0;//每个通道数的采样个数
bool finished = true; //当前这次采样是否采样完成
uint8_t *out_buffer = NULL; //临时指针
int num = 0;
int data_size=0;
//db
time_t pretime=0;
time_t nowtime=0;
public:
Audio(PlayStatus *status,CallJava *callJava);
void resample();
int start(uint8_t **temp);
void pause();
void play();
void stop();
void release();
void setVolume(int volume);
void setMute(bool mute);
void setChannelSolo(int channel);
int dealSoundTouch();
void setPitch(double pitch);
void setTempPo(double temPo);
int getPCMDB(SAMPLETYPE * bufferData,size_t size);
void initSLES();
~Audio();
};
#endif //AUDIOPLAY_AUDIO_H
| [
"[email protected]"
] | |
4503657c0052b4d9cfd6f365e4dcd9059e1f936a | c78bce673a8b5ff62d947ee35733bb3397c22529 | /MVCTP/MVCTPReceiver.cpp | ac79ddd51f06bea70a2b820c8627b3d7d1259622 | [] | no_license | bemile/mvctp_v2 | 37b1d24750a94612814812c7658a6e4f81365f8f | d1fe450367dce923fabb9e09e615aa1b296ff265 | refs/heads/master | 2016-09-06T15:51:31.684263 | 2013-02-04T09:59:20 | 2013-02-04T09:59:20 | 2,377,202 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 46,564 | cpp | /*
* MVCTPReceiver.cpp
*
* Created on: Jul 21, 2011
* Author: jie
*/
#include "MVCTPReceiver.h"
MVCTPReceiver::MVCTPReceiver(int buf_size) {
//ptr_multicast_comm->SetBufferSize(10000000);
retrans_tcp_client = NULL;
multicast_sock = ptr_multicast_comm->GetSocket();
srand(time(NULL));
packet_loss_rate = 0;
bzero(&recv_stats, sizeof(recv_stats));
keep_retrans_alive = false;
mvctp_seq_num = 0;
retrans_switch = true;
read_ahead_header = (MvctpHeader*) read_ahead_buffer;
read_ahead_data = read_ahead_buffer + MVCTP_HLEN;
read_ahead_header->session_id = -1;
AccessCPUCounter(&global_timer.hi, &global_timer.lo);
time_diff_measured = false;
time_diff = 0;
}
MVCTPReceiver::~MVCTPReceiver() {
delete retrans_tcp_client;
pthread_mutex_destroy(&retrans_list_mutex);
}
const struct MvctpReceiverStats MVCTPReceiver::GetBufferStats() {
return recv_stats;
}
void MVCTPReceiver::SetPacketLossRate(int rate) {
packet_loss_rate = rate;
char msg[150];
sprintf(msg, "Packet loss rate has been set to %d per thousand.", rate);
status_proxy->SendMessageLocal(INFORMATIONAL, msg);
// tcp socket
// double loss_rate = rate / 10.0;
// char rate_str[25];
// sprintf(rate_str, "%.2f%%", loss_rate);
//
// char command[256];
// sprintf(command, "sudo ./loss-rate-tcp.sh %s %d %s", GetInterfaceName().c_str(),
// BUFFER_TCP_SEND_PORT, rate_str);
// system(command);
}
int MVCTPReceiver::GetPacketLossRate() {
return packet_loss_rate;
}
void MVCTPReceiver::SetBufferSize(size_t size) {
ptr_multicast_comm->SetBufferSize(size);
}
void MVCTPReceiver::SetStatusProxy(StatusProxy* proxy) {
status_proxy = proxy;
}
void MVCTPReceiver::SendSessionStatistics() {
char buf[512];
double send_rate = (recv_stats.session_recv_bytes + recv_stats.session_retrans_bytes)
/ 1000.0 / 1000.0 * 8 / recv_stats.session_total_time * SEND_RATE_RATIO;
size_t total_bytes = recv_stats.session_recv_bytes + recv_stats.session_retrans_bytes;
sprintf(buf, "***** Session Statistics *****\nTotal Received Bytes: %u\nTotal Received Packets: %d\nTotal Retrans. Packets: %d\n"
"Retrans. Percentage: %.4f\nTotal Transfer Time: %.2f sec\nMulticast Transfer Time: %.2f sec\n"
"Retrans. Time: %.2f sec\nOverall Throughput: %.2f Mbps\n\n", total_bytes,
recv_stats.session_recv_packets, recv_stats.session_retrans_packets,
recv_stats.session_retrans_percentage, recv_stats.session_total_time, recv_stats.session_trans_time,
recv_stats.session_retrans_time, send_rate);
status_proxy->SendMessageLocal(INFORMATIONAL, buf);
sprintf(buf, "%u,%s,%.2f,%.2f,%.2f,%.2f,%d,%d,%.4f\n", session_id, status_proxy->GetNodeId().c_str(), recv_stats.session_total_time, recv_stats.session_trans_time,
recv_stats.session_retrans_time, send_rate, recv_stats.session_recv_packets, recv_stats.session_retrans_packets,
recv_stats.session_retrans_percentage);
status_proxy->SendMessageLocal(EXP_RESULT_REPORT, buf);
}
void MVCTPReceiver::SendHistoryStats() {
char buf[1024];
double retx_rate = recv_stats.total_recv_packets == 0 ? 0 :
(recv_stats.total_retrans_packets * 100.0 / recv_stats.total_recv_packets);
double robustness = recv_stats.num_recved_files == 0 ? 100.0 :
(100.0 - recv_stats.num_failed_files * 100.0 / recv_stats.num_recved_files); // in percentage
sprintf(buf, "***** Statistics *****\nTotal received files: %d\nTotal received packets: %d\n"
"Total retx packets: %d\nRetx rate:%.1f\%\nRobustness:%.2f\%\n", recv_stats.num_recved_files, recv_stats.total_recv_packets,
recv_stats.total_retrans_packets, retx_rate, robustness);
status_proxy->SendMessageLocal(INFORMATIONAL, buf);
}
void MVCTPReceiver::ResetHistoryStats() {
recv_stats.total_recv_bytes = 0;
recv_stats.total_recv_packets = 0;
recv_stats.total_retrans_bytes = 0;
recv_stats.total_retrans_packets = 0;
recv_stats.num_recved_files = 0;
recv_stats.num_failed_files = 0;
recv_stats.last_file_recv_time = 0.0;
recv_stats.session_stats_vec.clear();
AccessCPUCounter(&recv_stats.reset_cpu_timer.hi, &recv_stats.reset_cpu_timer.lo);
recv_status_map.clear();
time_diff_measured = false;
AccessCPUCounter(&global_timer.hi, &global_timer.lo);
//recv_stats.cpu_monitor.Stop();
//recv_stats.cpu_monitor.SetCPUFlag(true);
//recv_stats.cpu_monitor.SetInterval(200);
//recv_stats.cpu_monitor.Start();
}
// Format of a report entry:
// host_name, msg_id, file_size, transfer_time, retx bytes, success (1 or 0), is_slow_receiver
void MVCTPReceiver::AddSessionStatistics(uint msg_id) {
if (recv_status_map.find(msg_id) == recv_status_map.end())
return;
MessageReceiveStatus& status = recv_status_map[msg_id];
char buf[1024];
sprintf(buf, "%s,%.5f,%u,%lld,%.5f,%lld,%d,%s\n", status_proxy->GetNodeId().c_str(),
GetElapsedSeconds(recv_stats.reset_cpu_timer), msg_id, status.msg_length,
(status.multicast_time /*+ status.send_time_adjust*/), /*GetElapsedSeconds(status.start_time_counter),*/
status.retx_bytes, status.recv_failed ? 0 : 1,
(packet_loss_rate > 0 ? "True" : "False"));
recv_stats.session_stats_vec.push_back(buf);
// double avg_throughput = recv_stats.total_recv_bytes / 1000.0 / 1000.0 * 8 / recv_stats.last_file_recv_time;
// double robustness = 100.0 - recv_stats.num_failed_files * 100.0 / recv_stats.num_recved_files; // in percentage
// sprintf(buf, "%s,%.2f,%.2f,%d,%s", status_proxy->GetNodeId().c_str(), avg_throughput, robustness,
// recv_stats.cpu_monitor.GetAverageCpuUsage(), (packet_loss_rate > 0 ? "True" : "False"));
//
// status_proxy->SendMessageLocal(INFORMATIONAL, buf);
}
void MVCTPReceiver::SendHistoryStatsToSender() {
/*char buf[1024];
double avg_throughput = recv_stats.total_recv_bytes / 1000.0 / 1000.0 * 8 / recv_stats.last_file_recv_time;
double robustness = 100.0 - recv_stats.num_failed_files * 100.0 / recv_stats.num_recved_files; // in percentage
sprintf(buf, "%s,%.2f,%.2f,%d,%s", status_proxy->GetNodeId().c_str(), avg_throughput, robustness,
recv_stats.cpu_monitor.GetAverageCpuUsage(), (packet_loss_rate > 0 ? "True" : "False"));
status_proxy->SendMessageLocal(INFORMATIONAL, buf);
int len = strlen(buf);
char msg_packet[1024];
//return;*/
string res = "";
int size = recv_stats.session_stats_vec.size();
for (int i = 0; i < size; i++) {
res += recv_stats.session_stats_vec[i];
}
char* msg_packet = new char[MVCTP_HLEN + res.size()];
MvctpHeader* header = (MvctpHeader*)msg_packet;
header->session_id = 0;
header->seq_number = 0;
header->data_len = res.size();
header->flags = MVCTP_HISTORY_STATISTICS;
memcpy(msg_packet + MVCTP_HLEN, res.c_str(), res.size());
retrans_tcp_client->Send(msg_packet, MVCTP_HLEN + res.size());
delete[] msg_packet;
}
// Clear session related statistics
void MVCTPReceiver::ResetSessionStatistics() {
recv_stats.session_recv_packets = 0;
recv_stats.session_recv_bytes = 0;
recv_stats.session_retrans_packets = 0;
recv_stats.session_retrans_bytes = 0;
recv_stats.session_retrans_percentage = 0.0;
recv_stats.session_total_time = 0.0;
recv_stats.session_trans_time = 0.0;
recv_stats.session_retrans_time = 0.0;
// reset the total missing bytes and current received retransmission bytes to zero
total_missing_bytes = 0;
received_retrans_bytes = 0;
is_multicast_finished = false;
}
// Send session statistics to the sender through TCP connection
void MVCTPReceiver::SendSessionStatisticsToSender() {
char buf[512];
double send_rate = (recv_stats.session_recv_bytes + recv_stats.session_retrans_bytes)
/ 1000.0 / 1000.0 * 8 / recv_stats.session_total_time * SEND_RATE_RATIO;
size_t total_bytes = recv_stats.session_recv_bytes + recv_stats.session_retrans_bytes;
sprintf(buf, "%u,%s,%.2f,%.2f,%.2f,%.2f,%d,%d,%.4f,%s\n", session_id,
status_proxy->GetNodeId().c_str(), recv_stats.session_total_time,
recv_stats.session_trans_time, recv_stats.session_retrans_time,
send_rate, recv_stats.session_recv_packets,
recv_stats.session_retrans_packets,
recv_stats.session_retrans_percentage,
cpu_info.GetCPUMeasurements().c_str());
int len = strlen(buf);
retrans_tcp_client->Send(&len, sizeof(len));
retrans_tcp_client->Send(buf, len);
}
void MVCTPReceiver::ExecuteCommand(char* command) {
string comm = command;
if (comm.compare("SetSchedRR") == 0) {
SetSchedRR(true);
}
else if (comm.compare("SetNoSchedRR") == 0) {
SetSchedRR(false);
}
else
system(command);
}
// Set the process scheduling mode to SCHED_RR or SCHED_OTHER (the default process scheduling mode in linux)
void MVCTPReceiver::SetSchedRR(bool is_rr) {
static int normal_priority = getpriority(PRIO_PROCESS, 0);
struct sched_param sp;
if (is_rr) {
sp.__sched_priority = sched_get_priority_max(SCHED_RR);
sched_setscheduler(0, SCHED_RR, &sp);
}
else {
sp.__sched_priority = normal_priority;
sched_setscheduler(0, SCHED_OTHER, &sp);
}
}
int MVCTPReceiver::JoinGroup(string addr, ushort port) {
MVCTPComm::JoinGroup(addr, port);
ConnectSenderOnTCP();
return 1;
}
int MVCTPReceiver::ConnectSenderOnTCP() {
status_proxy->SendMessageLocal(INFORMATIONAL, "Connecting TCP server at the sender...");
if (retrans_tcp_client != NULL)
delete retrans_tcp_client;
retrans_tcp_client = new TcpClient("10.1.1.2", BUFFER_TCP_SEND_PORT);
retrans_tcp_client->Connect();
retrans_tcp_sock = retrans_tcp_client->GetSocket();
max_sock_fd = multicast_sock > retrans_tcp_sock ? multicast_sock : retrans_tcp_sock;
FD_ZERO(&read_sock_set);
FD_SET(multicast_sock, &read_sock_set);
FD_SET(retrans_tcp_sock, &read_sock_set);
// start the retransmission request sending and data receiving threads
StartRetransmissionThread();
status_proxy->SendMessageLocal(INFORMATIONAL, "TCP server connected.");
return 1;
}
void MVCTPReceiver::ReconnectSender() {
//SysError("MVCTPReceiver::Start()::recv() error");
status_proxy->SendMessageToManager(INFORMATIONAL, "Connection to the sender TCP server has broken. Reconnecting...");
retrans_tcp_client->Connect();
status_proxy->SendMessageToManager(INFORMATIONAL, "TCP server reconnected.");
retrans_tcp_sock = retrans_tcp_client->GetSocket();
FD_ZERO(&read_sock_set);
FD_SET(multicast_sock, &read_sock_set);
FD_SET(retrans_tcp_sock, &read_sock_set);
if (max_sock_fd < retrans_tcp_sock)
max_sock_fd = retrans_tcp_sock;
}
void MVCTPReceiver::Start() {
StartReceivingThread();
}
// Main receiving thread functions
void MVCTPReceiver::StartReceivingThread() {
pthread_create(&recv_thread, NULL, &MVCTPReceiver::StartReceivingThread, this);
}
void* MVCTPReceiver::StartReceivingThread(void* ptr) {
((MVCTPReceiver*)ptr)->RunReceivingThread();
return NULL;
}
// Main file receiving function
void MVCTPReceiver::RunReceivingThread() {
fd_set read_set;
while (true) {
read_set = read_sock_set;
if (select(max_sock_fd + 1, &read_set, NULL, NULL, NULL) == -1) {
SysError("TcpServer::SelectReceive::select() error");
}
// check received data on the multicast socket
if (FD_ISSET(multicast_sock, &read_set)) {
HandleMulticastPacket();
}
// check received data on the TCP connection
if (FD_ISSET(retrans_tcp_sock, &read_set)) {
HandleUnicastPacket();
}
}
}
// Handle the receive of a single multicast packet
void MVCTPReceiver::HandleMulticastPacket() {
static char packet_buffer[MVCTP_PACKET_LEN];
static MvctpHeader* header = (MvctpHeader*) packet_buffer;
static char* packet_data = packet_buffer + MVCTP_HLEN;
static MvctpSenderMessage *ptr_sender_msg = (MvctpSenderMessage *) packet_data;
static map<uint, MessageReceiveStatus>::iterator it;
if (ptr_multicast_comm->RecvData(packet_buffer, MVCTP_PACKET_LEN, 0, NULL, NULL) < 0)
SysError("MVCTPReceiver::RunReceivingThread() multicast recv error");
// Check for BOF and EOF
if (header->flags & MVCTP_BOF) {
HandleBofMessage(*ptr_sender_msg);
} else if (header->flags & MVCTP_EOF) {
HandleEofMessage(header->session_id);
} else if (header->flags == MVCTP_DATA) {
if ((it = recv_status_map.find(header->session_id)) == recv_status_map.end()) {
//cout << "[MVCTP_DATA] Could not find the message ID in recv_status_map: " << header->session_id << endl;
return;
}
MessageReceiveStatus& recv_status = it->second;
if (recv_status.recv_failed)
return;
// Write the packet into the file. Otherwise, just drop the packet (emulates errored packet)
if (rand() % 1000 >= packet_loss_rate) {
if (header->seq_number > recv_status.current_offset) {
AddRetxRequest(header->session_id, recv_status.current_offset, header->seq_number);
if (lseek(recv_status.file_descriptor, header->seq_number, SEEK_SET) < 0) {
cout << "Error in file " << header->session_id << ": " << endl;
SysError("MVCTPReceiver::RunReceivingThread()::lseek() error on multicast data");
}
}
if (recv_status.file_descriptor > 0 &&
write(recv_status.file_descriptor, packet_data, header->data_len) < 0)
SysError("MVCTPReceiver::RunReceivingThread()::write() error on multicast data");
recv_status.current_offset = header->seq_number + header->data_len;
// Update statistics
recv_status.multicast_packets++;
recv_status.multicast_bytes += header->data_len;
recv_stats.total_recv_packets++;
recv_stats.total_recv_bytes += header->data_len;
}
}
}
// Handle the receive of a single TCP packet
void MVCTPReceiver::HandleUnicastPacket() {
static char packet_buffer[MVCTP_PACKET_LEN];
static MvctpHeader* header = (MvctpHeader*) packet_buffer;
static char* packet_data = packet_buffer + MVCTP_HLEN;
static MvctpSenderMessage sender_msg;
static map<uint, MessageReceiveStatus>::iterator it;
if (retrans_tcp_client->Receive(header, MVCTP_HLEN) < 0) {
SysError("MVCTPReceiver::RunReceivingThread()::recv() error");
}
if (header->flags & MVCTP_SENDER_MSG_EXP) {
if (retrans_tcp_client->Receive(&sender_msg, header->data_len) < 0) {
ReconnectSender();
return;
}
HandleSenderMessage(sender_msg);
} else if (header->flags & MVCTP_RETRANS_DATA) {
if (retrans_tcp_client->Receive(packet_data, header->data_len) < 0)
SysError("MVCTPReceiver::RunningReceivingThread()::receive error on TCP");
if ((it = recv_status_map.find(header->session_id)) == recv_status_map.end()) {
return;
}
MessageReceiveStatus& recv_status = it->second;
if (recv_status.retx_file_descriptor == -1) {
recv_status.retx_file_descriptor = dup(recv_status.file_descriptor);
if (recv_status.retx_file_descriptor < 0)
SysError("MVCTPReceiver::RunReceivingThread() open file error");
}
if (lseek(recv_status.retx_file_descriptor, header->seq_number, SEEK_SET) == -1) {
SysError("MVCTPReceiver::RunReceivingThread()::lseek() error on retx data");
}
if (write(recv_status.retx_file_descriptor, packet_data, header->data_len) < 0) {
//SysError("MVCTPReceiver::ReceiveFile()::write() error");
cout << "MVCTPReceiver::RunReceivingThread()::write() error on retx data" << endl;
}
// Update statistics
recv_status.retx_packets++;
recv_status.retx_bytes += header->data_len;
recv_stats.total_recv_packets++;
recv_stats.total_recv_bytes += header->data_len;
recv_stats.total_retrans_packets++;
recv_stats.total_retrans_bytes += header->data_len;
} else if (header->flags & MVCTP_RETRANS_END) {
it = recv_status_map.find(header->session_id);
if (it == recv_status_map.end()) {
cout << "[MVCTP_RETRANS_END] Could not find the message ID in recv_status_map: " << header->session_id << endl;
return;
} else {
MessageReceiveStatus& recv_status = it->second;
close(recv_status.file_descriptor);
recv_status.file_descriptor = -1;
if (recv_status.retx_file_descriptor > 0) {
close(recv_status.retx_file_descriptor);
recv_status.retx_file_descriptor = -1;
}
recv_stats.last_file_recv_time = GetElapsedSeconds(recv_stats.reset_cpu_timer);
AddSessionStatistics(header->session_id);
}
} else if (header->flags & MVCTP_RETRANS_TIMEOUT) {
//cout << "I have received a timeout message for file " << header->session_id << endl;
it = recv_status_map.find(header->session_id);
if (it != recv_status_map.end()) {
MessageReceiveStatus& recv_status = it->second;
if (!recv_status.recv_failed) {
recv_status.recv_failed = true;
close(recv_status.file_descriptor);
recv_status.file_descriptor = -1;
if (recv_status.retx_file_descriptor > 0) {
close(recv_status.retx_file_descriptor);
recv_status.retx_file_descriptor = -1;
}
recv_stats.num_failed_files++;
//AddSessionStatistics(header->session_id);
}
}
else {
cout << "[MVCTP_RETRANS_TIMEOUT] Could not find message in recv_status_map for file " << header->session_id << endl;
}
}
}
/**
* Handle a BOF message for a new file
*/
void MVCTPReceiver::HandleBofMessage(MvctpSenderMessage& sender_msg) {
switch (sender_msg.msg_type) {
case MEMORY_TRANSFER_START: {
char* buf = (char*) malloc(sender_msg.data_len);
ReceiveMemoryData(sender_msg, buf);
free(buf);
break;
}
case FILE_TRANSFER_START:
PrepareForFileTransfer(sender_msg);
break;
case TCP_MEMORY_TRANSFER_START: {
char* buf = (char*) malloc(sender_msg.data_len);
TcpReceiveMemoryData(sender_msg, buf);
free(buf);
break;
}
case TCP_FILE_TRANSFER_START:
TcpReceiveFile(sender_msg);
break;
default:
break;
}
}
// Create metadata for a new file that is to be received
void MVCTPReceiver::PrepareForFileTransfer(MvctpSenderMessage& sender_msg) {
// First reset all session related counters
ResetSessionStatistics();
MessageReceiveStatus status;
status.msg_id = sender_msg.session_id;
status.msg_name = sender_msg.text;
status.msg_length = sender_msg.data_len;
status.is_multicast_done = false;
status.current_offset = 0;
status.multicast_packets = 0;
status.multicast_bytes = 0;
status.retx_packets = 0;
status.retx_bytes = 0;
status.recv_failed = false;
status.retx_file_descriptor = -1;
status.file_descriptor = open(sender_msg.text, O_RDWR | O_CREAT | O_TRUNC);
if (status.file_descriptor < 0)
SysError("MVCTPReceiver::PrepareForFileTransfer open file error");
// resolve the timestamp difference between the sender and receiver
if (!time_diff_measured) {
time_diff = GetElapsedSeconds(global_timer) - sender_msg.time_stamp;
time_diff_measured = true;
cout << "time_diff is: " << time_diff << " seconds." << endl;
}
AccessCPUCounter(&status.start_time_counter.hi, &status.start_time_counter.lo);
status.send_time_adjust = GetElapsedSeconds(global_timer) - (sender_msg.time_stamp + time_diff);
if (read_ahead_header->session_id == sender_msg.session_id)
{
if (write(status.file_descriptor, read_ahead_data, read_ahead_header->data_len) < 0)
SysError("MVCTPReceiver::ReceiveFileBufferedIO() write multicast data error");
status.current_offset = read_ahead_header->seq_number + read_ahead_header->data_len;
status.multicast_packets++;
status.multicast_bytes += read_ahead_header->data_len;
read_ahead_header->session_id = -1;
}
recv_status_map[status.msg_id] = status;
recv_stats.current_msg_id = sender_msg.session_id;
recv_stats.num_recved_files++;
if (sender_msg.session_id % 100 == 1) {
char str[500];
sprintf(str, "Receiving file %d. File length: %d bytes Send Time Adjustment: %.5f seconds\n\n",
sender_msg.session_id, sender_msg.data_len, status.send_time_adjust);
status_proxy->SendMessageLocal(INFORMATIONAL, str);
}
//cout << "Added a new recv status for file " << status.msg_id << endl;
}
/**
* Handle a command message from the sender
*/
void MVCTPReceiver::HandleSenderMessage(MvctpSenderMessage& sender_msg) {
switch (sender_msg.msg_type) {
case SPEED_TEST:
if (recv_stats.session_retrans_percentage > 0.3) {
status_proxy->SendMessageLocal(INFORMATIONAL, "I'm going offline because I'm a slow node...");
system("sudo reboot");
}
break;
case COLLECT_STATISTICS:
//SendStatisticsToSender();
SendHistoryStatsToSender();
break;
case RESET_HISTORY_STATISTICS:
ResetHistoryStats();
break;
case SET_LOSS_RATE:
SetPacketLossRate(atoi(sender_msg.text));
break;
case EXECUTE_COMMAND:
ExecuteCommand(sender_msg.text);
break;
}
}
/**
* Take actions after receiving an EOF message for a specific file
*/
void MVCTPReceiver::HandleEofMessage(uint msg_id) {
map<uint, MessageReceiveStatus>::iterator it = recv_status_map.find(msg_id);
if (it != recv_status_map.end()) {
MessageReceiveStatus& status = it->second;
status.multicast_time = GetElapsedSeconds(status.start_time_counter);
status.is_multicast_done = true;
// Check data loss at the end
if (status.current_offset < status.msg_length) {
AddRetxRequest(msg_id, status.current_offset, status.msg_length);
status.current_offset = status.msg_length;
}
}
else {
//cout << "Could not find message in recv_status_map for file " << msg_id << endl;
//return;
}
// Add a RETX_END message to the end of the request list
AddRetxRequest(msg_id, 0, 0);
}
/**
* Insert a new retransmission request to the request list
*/
void MVCTPReceiver::AddRetxRequest(uint msg_id, uint current_offset, uint received_seq) {
MvctpRetransRequest req;
req.msg_id = msg_id;
req.seq_num = current_offset;
req.data_len = received_seq - current_offset;
pthread_mutex_lock(&retrans_list_mutex);
retrans_list.push_back(req);
pthread_mutex_unlock(&retrans_list_mutex);
}
//************************** Functions for the retransmission thread **************************
void MVCTPReceiver::StartRetransmissionThread() {
keep_retrans_alive = true;
pthread_mutex_init(&retrans_list_mutex, NULL);
pthread_create(&retrans_thread, NULL, &MVCTPReceiver::StartRetransmissionThread, this);
}
void* MVCTPReceiver::StartRetransmissionThread(void* ptr) {
((MVCTPReceiver*)ptr)->RunRetransmissionThread();
return NULL;
}
void MVCTPReceiver::RunRetransmissionThread() {
char buf[MVCTP_PACKET_LEN];
MvctpHeader* header = (MvctpHeader*)buf;
header->data_len = sizeof(MvctpRetransRequest);
char* data = (buf + MVCTP_HLEN);
MvctpRetransRequest* request = (MvctpRetransRequest*)data;
while (keep_retrans_alive) {
pthread_mutex_lock(&retrans_list_mutex);
while (!retrans_list.empty()) {
MvctpRetransRequest& req = retrans_list.front();
request->msg_id = req.msg_id;
request->seq_num = req.seq_num;
request->data_len = req.data_len;
header->session_id = req.msg_id;
header->seq_number = 0;
header->flags = (request->data_len == 0) ? MVCTP_RETRANS_END : MVCTP_RETRANS_REQ;
retrans_tcp_client->Send(buf, MVCTP_HLEN + header->data_len);
retrans_list.pop_front();
}
pthread_mutex_unlock(&retrans_list_mutex);
usleep(1000);
}
}
//************************************* Old unused functions ********************************
// Receive memory data from the sender
void MVCTPReceiver::ReceiveMemoryData(const MvctpSenderMessage & transfer_msg, char* mem_data) {
retrans_info.open("retrans_info.txt", ofstream::out | ofstream::trunc);
ResetSessionStatistics();
char str[256];
sprintf(str, "Started new memory data transfer. Size: %d", transfer_msg.data_len);
status_proxy->SendMessageLocal(INFORMATIONAL, str);
AccessCPUCounter(&cpu_counter.hi, &cpu_counter.lo);
uint32_t session_id = transfer_msg.session_id;
list<MvctpNackMessage> nack_list;
char packet_buffer[MVCTP_PACKET_LEN];
MvctpHeader* header = (MvctpHeader*)packet_buffer;
char* packet_data = packet_buffer + MVCTP_HLEN;
int recv_bytes;
uint32_t offset = 0;
fd_set read_set;
while (true) {
read_set = read_sock_set;
if (select(max_sock_fd + 1, &read_set, NULL, NULL, NULL) == -1) {
SysError("MVCTPReceiver::ReceiveMemoryData()::select() error");
}
if (FD_ISSET(multicast_sock, &read_set)) {
recv_bytes = ptr_multicast_comm->RecvData(packet_buffer,
MVCTP_PACKET_LEN, 0, NULL, NULL);
if (recv_bytes < 0) {
SysError("MVCTPReceiver::ReceiveMemoryData()::RecvData() error");
}
if (header->session_id != session_id || header->seq_number < offset) {
continue;
}
// Add the received packet to the buffer
// When greater than packet_loss_rate, add the packet to the receive buffer
// Otherwise, just drop the packet (emulates errored packet)
if (rand() % 1000 >= packet_loss_rate) {
if (header->seq_number > offset) {
//cout << "Loss packets detected. Supposed Seq. #: " << offset << " Received Seq. #: "
// << header->seq_number << " Lost bytes: " << (header->seq_number - offset) << endl;
HandleMissingPackets(nack_list, offset, header->seq_number);
}
memcpy(mem_data + header->seq_number, packet_data,
header->data_len);
offset = header->seq_number + header->data_len;
// Update statistics
recv_stats.total_recv_packets++;
recv_stats.total_recv_bytes += header->data_len;
recv_stats.session_recv_packets++;
recv_stats.session_recv_bytes += header->data_len;
}
continue;
} else if (FD_ISSET(retrans_tcp_sock, &read_set)) {
struct MvctpSenderMessage t_msg;
if (recv(retrans_tcp_sock, &t_msg, sizeof(t_msg), 0) < 0) {
SysError("MVCTPReceiver::ReceiveMemoryData()::recv() error");
}
switch (t_msg.msg_type) {
case MEMORY_TRANSFER_FINISH: {
//cout << "MEMORY_TRANSFER_FINISH signal received." << endl;
usleep(10000);
while ((recv_bytes = ptr_multicast_comm->RecvData(
packet_buffer, MVCTP_PACKET_LEN, MSG_DONTWAIT,
NULL, NULL)) > 0) {
//cout << "Received a new packet. Seq No.: " << header->seq_number << " Length: "
// << header->data_len << endl;
if (header->seq_number < offset)
continue;
else if (header->seq_number > offset) {
HandleMissingPackets(nack_list, offset, header->seq_number);
}
memcpy(mem_data + header->seq_number, packet_data,
header->data_len);
offset = header->seq_number + header->data_len;
}
if (transfer_msg.data_len > offset) {
HandleMissingPackets(nack_list, offset, transfer_msg.data_len);
}
// Record memory data multicast time
recv_stats.session_trans_time = GetElapsedSeconds(cpu_counter);
DoMemoryDataRetransmission(mem_data, nack_list);
// Record total transfer and retransmission time
recv_stats.session_total_time = GetElapsedSeconds(cpu_counter);
recv_stats.session_retrans_time = recv_stats.session_total_time - recv_stats.session_trans_time;
recv_stats.session_retrans_percentage = recv_stats.session_retrans_packets * 1.0
/ (recv_stats.session_recv_packets + recv_stats.session_retrans_packets);
status_proxy->SendMessageLocal(INFORMATIONAL, "Memory data transfer finished.");
SendSessionStatistics();
retrans_info.close();
// Transfer finished, so return directly
return;
}
default:
break;
}
}
}
}
// Handle missing packets by inserting retransmission requests into the request list
void MVCTPReceiver::HandleMissingPackets(list<MvctpNackMessage>& nack_list, uint current_offset, uint received_seq) {
retrans_info << GetElapsedSeconds(cpu_counter) << " Start Seq. #: " << current_offset << " End Seq. #: " << (received_seq - 1)
<< " Missing Block Size: " << (received_seq - current_offset) << endl;
MvctpRetransRequest req;
req.seq_num = current_offset;
req.data_len = received_seq - current_offset;
total_missing_bytes += req.data_len;
pthread_mutex_lock(&retrans_list_mutex);
retrans_list.push_back(req);
pthread_mutex_unlock(&retrans_list_mutex);
// uint pos_start = current_offset;
// while (pos_start < received_seq) {
// uint len = (received_seq - pos_start) < MVCTP_DATA_LEN ?
// (received_seq - pos_start) : MVCTP_DATA_LEN;
// MvctpNackMessage msg;
// msg.seq_num = pos_start;
// msg.data_len = len;
// nack_list.push_back(msg);
// pos_start += len;
// }
}
//
void MVCTPReceiver::DoMemoryDataRetransmission(char* mem_data, const list<MvctpNackMessage>& nack_list) {
SendNackMessages(nack_list);
// Receive packets from the sender
MvctpHeader header;
char packet_data[MVCTP_DATA_LEN];
int size = nack_list.size();
int bytes;
for (int i = 0; i < size; i++) {
bytes = retrans_tcp_client->Receive(&header, MVCTP_HLEN);
bytes = retrans_tcp_client->Receive(packet_data, header.data_len);
memcpy(mem_data+header.seq_number, packet_data, header.data_len);
// Update statistics
recv_stats.total_retrans_packets++;
recv_stats.total_retrans_bytes += header.data_len;
recv_stats.session_retrans_packets++;
recv_stats.session_retrans_bytes += header.data_len;
//cout << "Retransmission packet received. Seq No.: " << header.seq_number <<
// " Length: " << header.data_len << endl;
}
}
// Send retransmission requests to the sender through tcp connection
void MVCTPReceiver::SendNackMessages(const list<MvctpNackMessage>& nack_list) {
MvctpRetransMessage msg;
bzero(&msg, sizeof(msg));
list<MvctpNackMessage>::const_iterator it;
for (it = nack_list.begin(); it != nack_list.end(); it++) {
msg.seq_numbers[msg.num_requests] = it->seq_num;
msg.data_lens[msg.num_requests] = it->data_len;
msg.num_requests++;
if (msg.num_requests == MAX_NUM_NACK_REQ) {
retrans_tcp_client->Send(&msg, sizeof(msg));
msg.num_requests = 0;
}
}
// Send the last request
if (msg.num_requests > 0) {
retrans_tcp_client->Send(&msg, sizeof(msg));
}
// Send the request with #requests set to 0 to indicate the end of requests
msg.num_requests = 0;
retrans_tcp_client->Send(&msg, sizeof(msg));
}
void MVCTPReceiver::ReceiveFileBufferedIO(const MvctpSenderMessage & transfer_msg) {
retrans_info.open("retrans_info.txt", ofstream::out | ofstream::trunc);
MessageReceiveStatus status;
status.msg_id = transfer_msg.session_id;
status.msg_length = transfer_msg.data_len;
status.multicast_bytes = 0;
recv_status_map[status.msg_id] = status;
is_multicast_finished = false;
received_retrans_bytes = 0;
total_missing_bytes = 0;
recv_stats.current_msg_id = transfer_msg.session_id;
char str[256];
sprintf(str, "Started disk-to-disk file transfer. Size: %u",
transfer_msg.data_len);
status_proxy->SendMessageLocal(INFORMATIONAL, str);
ResetSessionStatistics();
AccessCPUCounter(&cpu_counter.hi, &cpu_counter.lo);
uint32_t session_id = transfer_msg.session_id;
// Create the disk file
int fd = open(transfer_msg.text, O_RDWR | O_CREAT | O_TRUNC);
if (fd < 0) {
SysError("MVCTPReceiver::ReceiveFile()::creat() error");
}
list<MvctpNackMessage> nack_list;
char packet_buffer[MVCTP_PACKET_LEN];
MvctpHeader* header = (MvctpHeader*) packet_buffer;
char* packet_data = packet_buffer + MVCTP_HLEN;
int recv_bytes;
uint32_t offset = 0;
fd_set read_set;
while (true) {
read_set = read_sock_set;
if (select(max_sock_fd + 1, &read_set, NULL, NULL, NULL) == -1) {
SysError("TcpServer::SelectReceive::select() error");
}
if (FD_ISSET(multicast_sock, &read_set)) {
recv_bytes = ptr_multicast_comm->RecvData(packet_buffer,
MVCTP_PACKET_LEN, 0, NULL, NULL);
if (recv_bytes < 0) {
SysError("MVCTPReceiver::ReceiveMemoryData()::RecvData() error");
}
if (header->session_id != session_id || header->seq_number < offset) {
continue;
}
// Add the received packet to the buffer
// When greater than packet_loss_rate, add the packet to the receive buffer
// Otherwise, just drop the packet (emulates errored packet)
if (rand() % 1000 >= packet_loss_rate) {
if (header->seq_number > offset) {
//cout << "Loss packets detected. Supposed Seq. #: " << offset << " Received Seq. #: "
// << header->seq_number << " Lost bytes: " << (header->seq_number - offset) << endl;
HandleMissingPackets(nack_list, offset, header->seq_number);
if (lseek(fd, header->seq_number, SEEK_SET) == -1) {
SysError("MVCTPReceiver::ReceiveFileBufferedIO()::lseek() error");
}
}
write(fd, packet_data, header->data_len);
offset = header->seq_number + header->data_len;
// Update statistics
recv_stats.total_recv_packets++;
recv_stats.total_recv_bytes += header->data_len;
recv_stats.session_recv_packets++;
recv_stats.session_recv_bytes += header->data_len;
}
continue;
}
else if (FD_ISSET(retrans_tcp_sock, &read_set)) {
struct MvctpSenderMessage msg;
if (recv(retrans_tcp_sock, &msg, sizeof(msg), 0) < 0) {
SysError("MVCTPReceiver::ReceiveFileBufferedIO()::recv() error");
}
switch (msg.msg_type) {
case FILE_TRANSFER_FINISH:
if (transfer_msg.data_len > offset) {
cout << "Missing packets in the end of transfer. Final offset: "
<< offset << " Transfer Size:"
<< transfer_msg.data_len << endl;
HandleMissingPackets(nack_list, offset,
transfer_msg.data_len);
}
// Record memory data multicast time
recv_stats.session_trans_time = GetElapsedSeconds(cpu_counter);
DoFileRetransmission(fd, nack_list);
close(fd);
// Record total transfer and retransmission time
recv_stats.session_total_time = GetElapsedSeconds(cpu_counter);
recv_stats.session_retrans_time = recv_stats.session_total_time - recv_stats.session_trans_time;
recv_stats.session_retrans_percentage = recv_stats.session_retrans_packets * 1.0
/ (recv_stats.session_recv_packets + recv_stats.session_retrans_packets);
// TODO: Delete the file only for experiment purpose.
// Should comment out this in practical environments.
//unlink(transfer_msg.text);
char command[256];
sprintf(command, "sudo rm %s", transfer_msg.text);
system(command);
system("sudo sync && sudo echo 3 > /proc/sys/vm/drop_caches");
status_proxy->SendMessageLocal(INFORMATIONAL, "Memory data transfer finished.");
SendSessionStatistics();
// Transfer finished, so return directly
return;
default:
break;
}
}
}
}
// Receive a file from the sender
void MVCTPReceiver::ReceiveFileMemoryMappedIO(const MvctpSenderMessage & transfer_msg) {
// NOTE: the length of the memory mapped buffer should be a multiple of the page size
static const int MAPPED_BUFFER_SIZE = MVCTP_DATA_LEN * 4096;
retrans_info.open("retrans_info.txt", ofstream::out | ofstream::trunc);
//PerformanceCounter udp_buffer_info(50);
//udp_buffer_info.SetUDPRecvBuffFlag(true);
//udp_buffer_info.Start();
MessageReceiveStatus status;
status.msg_id = transfer_msg.session_id;
status.msg_length = transfer_msg.data_len;
status.multicast_bytes = 0;
recv_status_map[status.msg_id] = status;
cpu_info.SetInterval(500);
cpu_info.SetCPUFlag(true);
cpu_info.Start();
is_multicast_finished = false;
received_retrans_bytes = 0;
total_missing_bytes = 0;
char str[256];
sprintf(str, "Started disk-to-disk file transfer. Size: %u",
transfer_msg.data_len);
status_proxy->SendMessageLocal(INFORMATIONAL, str);
ResetSessionStatistics();
AccessCPUCounter(&cpu_counter.hi, &cpu_counter.lo);
session_id = transfer_msg.session_id;
// Create the disk file
int recv_fd = open(transfer_msg.text, O_RDWR | O_CREAT | O_TRUNC);
if (recv_fd < 0) {
SysError("MVCTPReceiver::ReceiveFile()::creat() error");
}
if (lseek(recv_fd, transfer_msg.data_len - 1, SEEK_SET) == -1) {
SysError("MVCTPReceiver::ReceiveFile()::lseek() error");
}
if (write(recv_fd, "", 1) != 1) {
SysError("MVCTPReceiver::ReceiveFile()::write() error");
}
// Initialize the memory mapped file buffer
off_t file_start_pos = 0;
size_t mapped_size = (transfer_msg.data_len - file_start_pos) < MAPPED_BUFFER_SIZE ?
(transfer_msg.data_len - file_start_pos) : MAPPED_BUFFER_SIZE;
char* file_buffer = (char*) mmap(0, mapped_size, PROT_READ | PROT_WRITE,
MAP_FILE | MAP_SHARED, recv_fd, file_start_pos);
if (file_buffer == MAP_FAILED) {
SysError("MVCTPReceiver::ReceiveFile()::mmap() error");
}
//char* data_buffer = (char*)malloc(mapped_size);
list<MvctpNackMessage> nack_list;
char packet_buffer[MVCTP_PACKET_LEN];
MvctpHeader* header = (MvctpHeader*) packet_buffer;
char* packet_data = packet_buffer + MVCTP_HLEN;
cout << "Start receiving file..." << endl;
int recv_bytes;
uint32_t offset = 0;
fd_set read_set;
while (true) {
read_set = read_sock_set;
if (select(max_sock_fd + 1, &read_set, NULL, NULL, NULL) == -1) {
SysError("TcpServer::SelectReceive::select() error");
}
if (FD_ISSET(multicast_sock, &read_set)) {
recv_bytes = ptr_multicast_comm->RecvData(packet_buffer, MVCTP_PACKET_LEN, 0, NULL, NULL);
if (recv_bytes < 0) {
SysError("MVCTPReceiver::ReceiveMemoryData()::RecvData() error");
}
if (header->session_id != session_id || header->seq_number < offset) {
if (header->seq_number < offset) {
retrans_info << "Out-of-order packets received. Offset: " << offset << " Received: " << header->seq_number
<< " Total bytes: " << offset - header->seq_number << endl;
}
continue;
}
// Add the received packet to the buffer
// When greater than packet_loss_rate, add the packet to the receive buffer
// Otherwise, just drop the packet (emulates errored packet)
//if (rand() % 1000 >= packet_loss_rate) {
if (header->seq_number > offset) {
//cout << "Loss packets detected. Supposed Seq. #: " << offset << " Received Seq. #: "
// << header->seq_number << " Lost bytes: " << (header->seq_number - offset) << endl;
HandleMissingPackets(nack_list, offset, header->seq_number);
}
uint32_t pos = header->seq_number - file_start_pos;
while (pos >= mapped_size) {
//memcpy(file_buffer, data_buffer, mapped_size);
munmap(file_buffer, mapped_size);
file_start_pos += mapped_size;
mapped_size = ((transfer_msg.data_len - file_start_pos)
< MAPPED_BUFFER_SIZE ? (transfer_msg.data_len
- file_start_pos) : MAPPED_BUFFER_SIZE);
file_buffer = (char*) mmap(0, mapped_size,
PROT_READ | PROT_WRITE, MAP_FILE | MAP_SHARED, recv_fd,
file_start_pos);
if (file_buffer == MAP_FAILED) {
SysError("MVCTPReceiver::ReceiveFile()::mmap() error");
}
pos = header->seq_number - file_start_pos;
}
memcpy(file_buffer + pos, packet_data, header->data_len);
offset = header->seq_number + header->data_len;
// Update statistics
recv_stats.total_recv_packets++;
recv_stats.total_recv_bytes += header->data_len;
recv_stats.session_recv_packets++;
recv_stats.session_recv_bytes += header->data_len;
//}
continue;
} else if (FD_ISSET(retrans_tcp_sock, &read_set)) {
if (recv(retrans_tcp_sock, header, sizeof(MvctpHeader), 0) <= 0) {
SysError("MVCTPReceiver::ReceiveFile()::recv() error");
}
if (header->flags & MVCTP_EOF) {
munmap(file_buffer, mapped_size);
if (transfer_msg.data_len > offset) {
cout << "Missing packets in the end of transfer. Final offset: "
<< offset << " Transfer Size:" << transfer_msg.data_len << endl;
HandleMissingPackets(nack_list, offset, transfer_msg.data_len);
}
// Add one dummy request to indicate the end of requests to the sender
HandleMissingPackets(nack_list, transfer_msg.data_len, transfer_msg.data_len);
// Record data multicast time
recv_stats.session_trans_time = GetElapsedSeconds(cpu_counter);
cout << "EOF received." << endl;
is_multicast_finished = true;
if (received_retrans_bytes == total_missing_bytes)
break;
else
cout << "There are more retransmission packets to come." << endl;
}
else if (header->flags & MVCTP_RETRANS_DATA) {
retrans_tcp_client->Receive(packet_data, header->data_len);
if (lseek(recv_fd, header->seq_number, SEEK_SET) == -1) {
SysError("MVCTPReceiver::ReceiveFile()::lseek() error");
}
if (write(recv_fd, packet_data, header->data_len) < 0) {
//SysError("MVCTPReceiver::ReceiveFile()::write() error");
cout << "MVCTPReceiver::ReceiveFile()::write() error" << endl;
}
// Update statistics
recv_stats.total_retrans_packets++;
recv_stats.total_retrans_bytes += header->data_len;
recv_stats.session_retrans_packets++;
recv_stats.session_retrans_bytes += header->data_len;
received_retrans_bytes += header->data_len;
//cout << "Received one retransmission pakcet. Remained bytes:" <<
// (total_missing_bytes - received_retrans_bytes) << endl;
if (is_multicast_finished && (received_retrans_bytes == total_missing_bytes) )
break;
}
}
}
//DoFileRetransmission(recv_fd, nack_list);
close(recv_fd);
// Record total transfer and retransmission time
recv_stats.session_total_time = GetElapsedSeconds(cpu_counter);
recv_stats.session_retrans_time = recv_stats.session_total_time - recv_stats.session_trans_time;
recv_stats.session_retrans_percentage = recv_stats.session_retrans_packets
* 1.0 / (recv_stats.session_recv_packets + recv_stats.session_retrans_packets);
// TODO: Delte the file only for experiment purpose.
// Shoule comment out this in practical environments.
//unlink(transfer_msg.text);
retrans_info.close();
char command[256];
sprintf(command, "sudo rm %s", transfer_msg.text);
system(command);
system("sudo sync && sudo echo 3 > /proc/sys/vm/drop_caches");
status_proxy->SendMessageLocal(INFORMATIONAL, "Memory data transfer finished.");
SendSessionStatistics();
cpu_info.Stop();
}
void MVCTPReceiver::DoFileRetransmission(int fd, const list<MvctpNackMessage>& nack_list) {
SendNackMessages(nack_list);
// Receive packets from the sender
MvctpHeader header;
char packet_data[MVCTP_DATA_LEN];
int size = nack_list.size();
int bytes;
for (int i = 0; i < size; i++) {
bytes = retrans_tcp_client->Receive(&header, MVCTP_HLEN);
bytes = retrans_tcp_client->Receive(packet_data, header.data_len);
lseek(fd, header.seq_number, SEEK_SET);
write(fd, packet_data, header.data_len);
// Update statistics
recv_stats.total_retrans_packets++;
recv_stats.total_retrans_bytes += header.data_len;
recv_stats.session_retrans_packets++;
recv_stats.session_retrans_bytes += header.data_len;
}
}
void MVCTPReceiver::CheckReceivedFile(const char* file_name, size_t length) {
int fd = open(file_name, O_RDWR);
char buffer[256];
int read_bytes;
while ( (read_bytes = read(fd, buffer, 256) > 0)) {
for (int i = 0; i < read_bytes; i++) {
if (buffer[i] != i) {
status_proxy->SendMessageLocal(INFORMATIONAL, "Invalid received file!");
close(fd);
return;
}
}
}
close(fd);
status_proxy->SendMessageLocal(INFORMATIONAL, "Received file is valid!");
}
struct aio_info {
char* data_buffer;
aiocb* ptr_aiocb;
};
void MVCTPReceiver::DoAsynchronousWrite(int fd, size_t offset, char* data_buffer, size_t length) {
struct aiocb * my_aiocb = (struct aiocb *)malloc(sizeof(aiocb));
struct aio_info* info = (struct aio_info*)malloc(sizeof(aio_info));
info->ptr_aiocb = my_aiocb;
info->data_buffer = data_buffer;
/* Set up the AIO request */
bzero(my_aiocb, sizeof(struct aiocb));
my_aiocb->aio_fildes = fd;
my_aiocb->aio_buf = data_buffer;
my_aiocb->aio_nbytes = length;
my_aiocb->aio_offset = offset;
/* Link the AIO request with a thread callback */
my_aiocb->aio_sigevent.sigev_notify = SIGEV_THREAD;
my_aiocb->aio_sigevent.sigev_notify_function = HandleAsyncWriteCompletion;
my_aiocb->aio_sigevent.sigev_notify_attributes = NULL;
my_aiocb->aio_sigevent.sigev_value.sival_ptr = info;
if (aio_write(my_aiocb) < 0) {
perror("aio_write() error");
}
}
void MVCTPReceiver::HandleAsyncWriteCompletion(sigval_t sigval) {
struct aio_info *info = (struct aio_info *)sigval.sival_ptr;
cout << "Async write completed. fd: " << info->ptr_aiocb->aio_fildes << " Offset: "
<< info->ptr_aiocb->aio_offset << " Length: " << info->ptr_aiocb->aio_nbytes << endl;
int errno;
if ( (errno = aio_error(info->ptr_aiocb)) == 0) {
/* Request completed successfully, get the return status */
int ret = aio_return(info->ptr_aiocb);
if (ret != info->ptr_aiocb->aio_nbytes) {
cout << "Incomplete AIO write. Return value:" << ret << endl;
}
}
else {
cout << "AIO write error! Error #: " << errno << endl;
size_t ret = aio_return(info->ptr_aiocb);
if (ret != info->ptr_aiocb->aio_nbytes) {
cout << "Incomplete AIO write. Return value:" << ret << endl;
}
}
// Free the memory buffer
free(info->data_buffer);
free(info->ptr_aiocb);
free(info);
return;
}
// ============ Functions related to TCP data transfer =============
void MVCTPReceiver::TcpReceiveMemoryData(const MvctpSenderMessage & msg, char* mem_data) {
char str[256];
sprintf(str, "Started memory-to-memory transfer using TCP. Size: %d", msg.data_len);
status_proxy->SendMessageLocal(INFORMATIONAL, str);
AccessCPUCounter(&cpu_counter.hi, &cpu_counter.lo);
retrans_tcp_client->Receive(mem_data, msg.data_len);
// Record memory data multicast time
double trans_time = GetElapsedSeconds(cpu_counter);
double send_rate = msg.data_len / 1024.0 / 1024.0 * 8.0 * 1514.0 / 1460.0 / trans_time;
sprintf(str, "***** TCP Receive Info *****\nTotal transfer time: %.2f\nThroughput: %.2f\n", trans_time, send_rate);
status_proxy->SendMessageLocal(EXP_RESULT_REPORT, str);
}
void MVCTPReceiver::TcpReceiveFile(const MvctpSenderMessage & transfer_msg) {
// NOTE: the length of the memory mapped buffer should be a multiple of the page size
static const size_t RECV_BUFFER_SIZE = MVCTP_DATA_LEN * 4096;
char str[256];
sprintf(str, "Started disk-to-disk file transfer using TCP. Size: %u",
transfer_msg.data_len);
status_proxy->SendMessageLocal(INFORMATIONAL, str);
AccessCPUCounter(&cpu_counter.hi, &cpu_counter.lo);
// Create the disk file
char* buffer = (char*)malloc(RECV_BUFFER_SIZE);
int fd = open(transfer_msg.text, O_RDWR | O_CREAT | O_TRUNC);
if (fd < 0) {
SysError("MVCTPReceiver::ReceiveFile()::creat() error");
}
size_t remained_size = transfer_msg.data_len;
while (remained_size > 0) {
size_t map_size = remained_size < RECV_BUFFER_SIZE ? remained_size
: RECV_BUFFER_SIZE;
retrans_tcp_client->Receive(buffer, map_size);
write(fd, buffer, map_size);
remained_size -= map_size;
}
close(fd);
free(buffer);
unlink(transfer_msg.text);
// Record memory data multicast time
double trans_time = GetElapsedSeconds(cpu_counter);
double send_rate = transfer_msg.data_len / 1024.0 / 1024.0 * 8.0 * 1514.0 / 1460.0 / trans_time;
sprintf(str, "***** TCP Receive Info *****\nTotal transfer time: %.2f\nThroughput: %.2f\n\n", trans_time, send_rate);
status_proxy->SendMessageLocal(INFORMATIONAL, str);
sprintf(str, "%u,%.2f,%.2f\n", transfer_msg.data_len, trans_time, send_rate);
status_proxy->SendMessageLocal(EXP_RESULT_REPORT, str);
}
| [
"[email protected]"
] | |
63f30990d75e9aa1ae9a213cddb9e6aba9e920c7 | 9519d5bdc02326027eb0664511796470590df20d | /ZCode/69_CPPPRI16.cpp | 89674af64ea84f573bfa72c42f62c6288d5821aa | [] | no_license | Tonoss-412/Code-Cpp | 4c2676016f6553197375f7daed51a45ec8265fbb | 3d39b228f8a2c87e0b639ad99262e966adab31b0 | refs/heads/master | 2023-06-23T04:17:07.725388 | 2021-07-21T12:40:10 | 2021-07-21T12:40:10 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 797 | cpp | #include <bits/stdc++.h>
#define faster() ios::sync_with_stdio(0); cin.tie(0); cout.tie(0);
#define base 1000000007
#define N 100005
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
typedef unsigned int uint;
typedef vector <int> vi;
typedef vector <string> vs;
bool a[N];
vi v;
void solve(){
for (int i=2; i<N; i++) a[i]=true;
for (int i=2; i*i<N; i++){
if (a[i]==true){
for (int j=i*i; j<N; j+=i){
a[j]=false;
}
}
}
for (int i = 2; i < N; i++)
if (a[i] == true) v.push_back(i);
}
void inp(){
ll n, i=0;
cin >> n;
n=sqrt(n);
while (v[i]<=n){
i++;
}
cout << i << endl;
}
int main(){
faster();
int t;
cin >> t;
solve();
while (t--) inp();
return 0;
}
| [
"[email protected]"
] | |
d7c6cef5a3d8f60e165d369032f6f372565b83f6 | 0813e18eb6b6cd5de9898c33788b9ab7e93727c6 | /atcoder/agc024/b.cpp | 04e8a462b17bd3cfdf7be994574b6026e5cf2bff | [
"MIT"
] | permissive | metaflow/contests | a769e97337363743a1ec89c292d27939781491d3 | 5e9ffcb72c3e7da54b5e0818b1afa59f5778ffa2 | refs/heads/master | 2021-07-13T00:09:23.470950 | 2021-06-28T10:54:47 | 2021-06-28T10:54:47 | 19,686,394 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,868 | cpp | #if defined(LOCAL)
#define PROBLEM_NAME "b"
const double _max_double_error = 1e-9;
#include "testutils.h"
#define L(x...) (debug(x, #x))
#define I(x, ...) (x)
#define C(x...) CHECK(x)
#else
#define L(x, ...) (x)
#define I(x, ...) (x)
#define C(x, ...) ;
#include <bits/stdc++.h>
#endif
using namespace std;
using vi = vector<int>; using vvi = vector<vi>; using vvvi = vector<vvi>;
using ii = pair<int,int>; using lu = unsigned long long; using l = long long;
using vs = vector<string>; using vii = vector<ii>;
using vl = vector<l>; using vvl = vector<vl>; using vvvl = vector<vvl>;
using ll = pair<l,l>; using vll = vector<ll>; using vvll = vector<vll>;
using vb = vector<bool>; using vvb = vector<vb>;
using vd = vector<double>; using vvd = vector<vd>;
using mll = unordered_map<l, l>;
const l INF = numeric_limits<l>::max();
const double EPS = 1e-10; static constexpr auto PI = acos(-1);
const l e0=1, e3=1000, e5=100000, e6=10*e5, e7=10*e6, e8=10*e7, e9=10*e8;
const char lf = '\n';
#define all(x) begin(x), end(x)
#define F(a,b,c) for (l a = l(b); a < l(c); a++)
#define B(a,b,c) for (l a = l(c) - 1; a >= l(b); a--)
#define VVL(x, a, b, i) vvl x(a, vl(b, l(i)));
#define VVVL(x, a, b, c, i) vvvl x(a, vvl(b, vl(c, l(i))));
void solve(istream& cin, ostream& cout) {
l n; cin >> n;
vl v(n), idx(n);
F(i, 0, n) cin >> v[i];
F(i, 0, n) idx[v[i] - 1] = i;
l s = 1;
l b = 1;
F(i, 1, n) {
if (idx[i - 1] < idx[i]) {
s++;
b = max(b, s);
} else {
s = 1;
}
}
cout << (n - b) << lf;
}
int main() {
ios_base::sync_with_stdio(false); cin.tie(0);
cout << fixed << setprecision(15);
#if defined(LOCAL)
// _generate_random_test = generate_random;
// _solve_brute = solve_brute;
// _player_b = player_b;
// _custom_solution_checker = solution_checker;
maybe_run_tests(cin, cout);
#else
solve(cin, cout);
#endif
}
| [
"[email protected]"
] | |
48be68e9f43172e791aa43ac48911410d03d7727 | 0d75cdbd44bef47eb083f7b178cf5ab501e352b1 | /libraries/ESP8266_AT_WebServer/examples/AdvancedWebServer/AdvancedWebServer.ino | ed6fdd045be1b0ffaf63819d7ff7b8893acf5ea9 | [
"MIT"
] | permissive | alancruz-ui/arduinoo | cc5c79922e3448a7fc059497e0ddb0b0949438a9 | 8b1a9ffedc8367d1a246f7c5f87ba75a4aaae83a | refs/heads/master | 2023-06-20T06:02:19.460436 | 2021-07-17T05:58:10 | 2021-07-17T05:58:10 | 386,850,030 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,844 | ino | /****************************************************************************************************************************
AdvancedWebServer.ino - Simple Arduino web server sample for ESP8266/ESP32 AT-command shield
For ESP8266/ESP32 AT-command running shields
ESP8266_AT_WebServer is a library for the ESP8266/ESP32 AT-command shields to run WebServer
Forked and modified from ESP8266 https://github.com/esp8266/Arduino/releases
Built by Khoi Hoang https://github.com/khoih-prog/ESP8266_AT_WebServer
Licensed under MIT license
Copyright (c) 2015, Majenko Technologies
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 Majenko Technologies 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.
Version: 1.0.12
Version Modified By Date Comments
------- ----------- ---------- -----------
1.0.0 K Hoang 12/02/2020 Initial coding for Arduino Mega, Teensy, etc
1.0.1 K Hoang 17/02/2020 Add support to server's lambda function calls
1.0.2 K Hoang 22/02/2020 Add support to SAMD (DUE, ZERO, MKR, NANO_33_IOT, M0, M0 Pro, AdaFruit, etc) boards
1.0.3 K Hoang 03/03/2020 Add support to STM32 (STM32,F0,F1, F2, F3, F4, F7, etc) boards
1.0.4 K Hoang 19/03/2020 Fix bug. Sync with ESP8266WebServer library of core v2.6.3
1.0.5 K Hoang 17/04/2020 Add support to SAMD51 and SAM DUE boards
1.0.6 K Hoang 11/06/2020 Add support to nRF52 boards, such as AdaFruit Feather nRF52832, nRF52840 Express, BlueFruit Sense,
Itsy-Bitsy nRF52840 Express, Metro nRF52840 Express, NINA_B302_ublox, NINA_B112_ublox, etc.
1.0.7 K Hoang 23/06/2020 Add support to ESP32-AT. Update deprecated ESP8266-AT commands. Restructure examples.
1.0.8 K Hoang 01/07/2020 Fix bug. Add features to ESP32-AT.
1.0.9 K Hoang 03/07/2020 Fix bug. Add functions. Restructure codes.
1.0.10 K Hoang 22/07/2020 Fix bug not closing client and releasing socket.
1.0.11 K Hoang 25/07/2020 Add support to all STM32F/L/H/G/WB/MP1 and Seeeduino SAMD21/SAMD51 boards
1.0.12 K Hoang 26/07/2020 Add example and sample Packages_Patches for STM32F/L/H/G/WB/MP boards
*****************************************************************************************************************************/
// Credits of [Miguel Alexandre Wisintainer](https://github.com/tcpipchip) for this simple yet effective method
// For some STM32, there is only definition of Serial in variant.h, and is used for Serial/USB Debugging
// For example, in Nucleo-144 F767ZI original variant.h
//
// #define SERIAL_PORT_MONITOR Serial
// #define SERIAL_PORT_HARDWARE Serial
//
// To use ESP8266/ESP32-AT, we need another Serial, such as Serial1
// To do this, first, in corresponding variant.h, modify as follows:
// #define SERIAL_PORT_HARDWARE Serial1
//
// then assign pins D0 = RX/D1 = TX to be Hardware Serial1 by putting in sketch as follows:
//
// #define EspSerial SERIAL_PORT_HARDWARE //Serial1
// HardwareSerial Serial1(D0, D1);
//
// This must be included in defines.h for each board you'd like to use ESPSerial as Serial1
//
// The pin usage must be modified according to your boards.
#include "defines.h"
int status = WL_IDLE_STATUS; // the Wifi radio's status
int reqCount = 0; // number of requests received
ESP8266_AT_WebServer server(80);
const int led = 13;
void handleRoot()
{
#define BUFFER_SIZE 400
digitalWrite(led, 1);
char temp[BUFFER_SIZE];
int sec = millis() / 1000;
int min = sec / 60;
int hr = min / 60;
int day = hr / 24;
snprintf(temp, BUFFER_SIZE - 1,
"<html>\
<head>\
<meta http-equiv='refresh' content='5'/>\
<title>ESP-AT %s</title>\
<style>\
body { background-color: #cccccc; font-family: Arial, Helvetica, Sans-Serif; Color: #000088; }\
</style>\
</head>\
<body>\
<h1>Hello from ESP-AT</h1>\
<h3>on %s</h3>\
<p>Uptime: %d d %02d:%02d:%02d</p>\
<img src=\"/test.svg\" />\
</body>\
</html>", BOARD_NAME, BOARD_NAME, day, hr, min % 60, sec % 60);
server.send(200, "text/html", temp);
digitalWrite(led, 0);
}
void handleNotFound()
{
digitalWrite(led, 1);
String message = "File Not Found\n\n";
message += "URI: ";
message += server.uri();
message += "\nMethod: ";
message += (server.method() == HTTP_GET) ? "GET" : "POST";
message += "\nArguments: ";
message += server.args();
message += "\n";
for (uint8_t i = 0; i < server.args(); i++)
{
message += " " + server.argName(i) + ": " + server.arg(i) + "\n";
}
server.send(404, "text/plain", message);
digitalWrite(led, 0);
}
void drawGraph()
{
String out;
out.reserve(3000);
char temp[70];
out += "<svg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" width=\"310\" height=\"150\">\n";
out += "<rect width=\"310\" height=\"150\" fill=\"rgb(250, 230, 210)\" stroke-width=\"1\" stroke=\"rgb(0, 0, 0)\" />\n";
out += "<g stroke=\"black\">\n";
int y = rand() % 130;
for (int x = 10; x < 300; x += 10)
{
int y2 = rand() % 130;
sprintf(temp, "<line x1=\"%d\" y1=\"%d\" x2=\"%d\" y2=\"%d\" stroke-width=\"1\" />\n", x, 140 - y, x + 10, 140 - y2);
out += temp;
y = y2;
}
out += "</g>\n</svg>\n";
server.send(200, "image/svg+xml", out);
}
void setup(void)
{
pinMode(led, OUTPUT);
digitalWrite(led, 0);
Serial.begin(115200);
while (!Serial);
Serial.println("\nStarting AdvancedWebServer on " + String(BOARD_NAME));
// initialize serial for ESP module
EspSerial.begin(115200);
// initialize ESP module
WiFi.init(&EspSerial);
Serial.println(F("WiFi shield init done"));
// check for the presence of the shield
if (WiFi.status() == WL_NO_SHIELD)
{
Serial.println(F("WiFi shield not present"));
// don't continue
while (true);
}
// attempt to connect to WiFi network
while ( status != WL_CONNECTED)
{
Serial.print(F("Connecting to WPA SSID: "));
Serial.println(ssid);
// Connect to WPA/WPA2 network
status = WiFi.begin(ssid, pass);
}
server.on("/", handleRoot);
server.on("/test.svg", drawGraph);
server.on("/inline", []()
{
server.send(200, "text/plain", "this works as well");
});
server.onNotFound(handleNotFound);
server.begin();
Serial.print(F("HTTP server started @ "));
Serial.println(WiFi.localIP());
}
void loop(void)
{
server.handleClient();
}
| [
"[email protected]"
] | |
4bd0ec3f7908ae0d73095bac0e69f40a45431faa | d33c86f4f8e9cbe815ddcd485585417a6b1f7a4c | /Sources/searcher.cpp | 01ce10c3145290ae5d8421d88bc5690ca645a81f | [] | no_license | qrort/substring-finder | 279cd3fa9d550d3335bfc05acf37b1e73efbd57c | e1b796cdca6adc7a87b86cb4042144c6711c60fd | refs/heads/master | 2020-04-17T11:27:39.978618 | 2019-03-03T14:32:45 | 2019-03-03T14:32:45 | 166,541,695 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,146 | cpp | #include "../Headers/searcher.h"
#include "../Headers/fileindexer.h"
#include <QFile>
#include <cassert>
#include <QDebug>
Searcher::Searcher(DirectoryIndex *_data, QString _query, int _l, int _r) {
data = _data;
query = _query.toStdString();
l = _l;
r = _r;
}
Searcher::~Searcher() {}
void Searcher::DoWork() {
QVector <uint32_t> queryHashes;
for (int i = 0; i < (int)query.size() - FileIndexer::SUBSTRING_SIZE + 1; i++) {
uint32_t queryHash = 0;
/* for (int j = 0; j < FileIndexer::SUBSTRING_SIZE; j++) {
queryHash += (static_cast<unsigned char>(query[i + j]) <<
(1 << ((FileIndexer::SUBSTRING_SIZE - j - 1) * 8)));
}*/
queryHash = FileIndexer::_hash({query[i], query[i + 1], query[i + 2]});
queryHashes.push_back(queryHash);
}
for (int it = l; it < r; it++) {
auto& container = (*data)[it];
bool similar = true;
for (auto& hash : queryHashes) {
similar &= container.contains(hash);
}
QString entryPath = "";
if (similar) {
// qDebug() << container.getFilePath() << endl;
bool in = false;
QFile file(container.getFilePath());
file.open(QIODevice::ReadOnly);
std::string text = file.readAll().toStdString();
for (int i = 0; i < (int)text.size() - (int)query.size() + 1; i++) {
bool ok = true;
for (int j = i; j < i + (int)query.size(); j++) {
ok &= (text[j] == query[j - i]);
if (j == i + 2) {
// qDebug() << "almost found at index " << i << endl;
}
if (!ok) {
break;
}
}
if (ok) {
in = true;
break;
}
}
//assert(similar && in);
file.close();
if (in) {
entryPath = container.getFilePath();
}
}
emit FileProcessed(entryPath);
}
emit Done();
}
| [
"[email protected]"
] | |
332a462ac9c87f1be490a63f77beed893db97f73 | 6a69d57c782e0b1b993e876ad4ca2927a5f2e863 | /vendor/samsung/common/packages/apps/SBrowser/src/media/cast/video_receiver/video_receiver.cc | 8d68431319b82eff7efe5c1747df5ae4efdb8c1a | [
"BSD-3-Clause"
] | permissive | duki994/G900H-Platform-XXU1BOA7 | c8411ef51f5f01defa96b3381f15ea741aa5bce2 | 4f9307e6ef21893c9a791c96a500dfad36e3b202 | refs/heads/master | 2020-05-16T20:57:07.585212 | 2015-05-11T11:03:16 | 2015-05-11T11:03:16 | 35,418,464 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 20,440 | cc | // 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.
#include "media/cast/video_receiver/video_receiver.h"
#include <algorithm>
#include "base/bind.h"
#include "base/logging.h"
#include "base/message_loop/message_loop.h"
#include "media/cast/cast_defines.h"
#include "media/cast/framer/framer.h"
#include "media/cast/rtcp/receiver_rtcp_event_subscriber.h"
#include "media/cast/rtcp/rtcp_sender.h"
#include "media/cast/video_receiver/video_decoder.h"
namespace {
using media::cast::kMaxIpPacketSize;
using media::cast::kRtcpCastLogHeaderSize;
using media::cast::kRtcpReceiverEventLogSize;
static const int64 kMinSchedulingDelayMs = 1;
static const int64 kMinTimeBetweenOffsetUpdatesMs = 2000;
static const int kTimeOffsetFilter = 8;
static const int64_t kMinProcessIntervalMs = 5;
// This is an upper bound on number of events that can fit into a single RTCP
// packet.
static const int64 kMaxEventSubscriberEntries =
(kMaxIpPacketSize - kRtcpCastLogHeaderSize) / kRtcpReceiverEventLogSize;
} // namespace
namespace media {
namespace cast {
// Local implementation of RtpData (defined in rtp_rtcp_defines.h).
// Used to pass payload data into the video receiver.
class LocalRtpVideoData : public RtpData {
public:
explicit LocalRtpVideoData(VideoReceiver* video_receiver)
: video_receiver_(video_receiver) {}
virtual ~LocalRtpVideoData() {}
virtual void OnReceivedPayloadData(const uint8* payload_data,
size_t payload_size,
const RtpCastHeader* rtp_header) OVERRIDE {
video_receiver_->IncomingParsedRtpPacket(
payload_data, payload_size, *rtp_header);
}
private:
VideoReceiver* video_receiver_;
DISALLOW_IMPLICIT_CONSTRUCTORS(LocalRtpVideoData);
};
// Local implementation of RtpPayloadFeedback (defined in rtp_defines.h)
// Used to convey cast-specific feedback from receiver to sender.
// Callback triggered by the Framer (cast message builder).
class LocalRtpVideoFeedback : public RtpPayloadFeedback {
public:
explicit LocalRtpVideoFeedback(VideoReceiver* video_receiver)
: video_receiver_(video_receiver) {}
virtual void CastFeedback(const RtcpCastMessage& cast_message) OVERRIDE {
video_receiver_->CastFeedback(cast_message);
}
private:
VideoReceiver* video_receiver_;
DISALLOW_IMPLICIT_CONSTRUCTORS(LocalRtpVideoFeedback);
};
// Local implementation of RtpReceiverStatistics (defined by rtcp.h).
// Used to pass statistics data from the RTP module to the RTCP module.
class LocalRtpReceiverStatistics : public RtpReceiverStatistics {
public:
explicit LocalRtpReceiverStatistics(RtpReceiver* rtp_receiver)
: rtp_receiver_(rtp_receiver) {}
virtual void GetStatistics(uint8* fraction_lost,
uint32* cumulative_lost, // 24 bits valid.
uint32* extended_high_sequence_number,
uint32* jitter) OVERRIDE {
rtp_receiver_->GetStatistics(
fraction_lost, cumulative_lost, extended_high_sequence_number, jitter);
}
private:
RtpReceiver* rtp_receiver_;
DISALLOW_IMPLICIT_CONSTRUCTORS(LocalRtpReceiverStatistics);
};
VideoReceiver::VideoReceiver(scoped_refptr<CastEnvironment> cast_environment,
const VideoReceiverConfig& video_config,
transport::PacedPacketSender* const packet_sender)
: cast_environment_(cast_environment),
event_subscriber_(
kMaxEventSubscriberEntries,
ReceiverRtcpEventSubscriber::kVideoEventSubscriber),
codec_(video_config.codec),
target_delay_delta_(
base::TimeDelta::FromMilliseconds(video_config.rtp_max_delay_ms)),
frame_delay_(base::TimeDelta::FromMilliseconds(
1000 / video_config.max_frame_rate)),
incoming_payload_callback_(new LocalRtpVideoData(this)),
incoming_payload_feedback_(new LocalRtpVideoFeedback(this)),
rtp_receiver_(cast_environment_->Clock(),
NULL,
&video_config,
incoming_payload_callback_.get()),
rtp_video_receiver_statistics_(
new LocalRtpReceiverStatistics(&rtp_receiver_)),
decryptor_(),
time_incoming_packet_updated_(false),
incoming_rtp_timestamp_(0),
weak_factory_(this) {
int max_unacked_frames =
video_config.rtp_max_delay_ms * video_config.max_frame_rate / 1000;
DCHECK(max_unacked_frames) << "Invalid argument";
decryptor_.Initialize(video_config.aes_key, video_config.aes_iv_mask);
framer_.reset(new Framer(cast_environment->Clock(),
incoming_payload_feedback_.get(),
video_config.incoming_ssrc,
video_config.decoder_faster_than_max_frame_rate,
max_unacked_frames));
if (!video_config.use_external_decoder) {
video_decoder_.reset(new VideoDecoder(video_config, cast_environment));
}
rtcp_.reset(
new Rtcp(cast_environment_,
NULL,
NULL,
packet_sender,
NULL,
rtp_video_receiver_statistics_.get(),
video_config.rtcp_mode,
base::TimeDelta::FromMilliseconds(video_config.rtcp_interval),
video_config.feedback_ssrc,
video_config.incoming_ssrc,
video_config.rtcp_c_name));
cast_environment_->Logging()->AddRawEventSubscriber(&event_subscriber_);
}
VideoReceiver::~VideoReceiver() {
cast_environment_->Logging()->RemoveRawEventSubscriber(&event_subscriber_);
}
void VideoReceiver::InitializeTimers() {
DCHECK(cast_environment_->CurrentlyOn(CastEnvironment::MAIN));
ScheduleNextRtcpReport();
ScheduleNextCastMessage();
}
void VideoReceiver::GetRawVideoFrame(
const VideoFrameDecodedCallback& callback) {
DCHECK(cast_environment_->CurrentlyOn(CastEnvironment::MAIN));
GetEncodedVideoFrame(base::Bind(
&VideoReceiver::DecodeVideoFrame, base::Unretained(this), callback));
}
// Called when we have a frame to decode.
void VideoReceiver::DecodeVideoFrame(
const VideoFrameDecodedCallback& callback,
scoped_ptr<transport::EncodedVideoFrame> encoded_frame,
const base::TimeTicks& render_time) {
DCHECK(cast_environment_->CurrentlyOn(CastEnvironment::MAIN));
// Hand the ownership of the encoded frame to the decode thread.
cast_environment_->PostTask(CastEnvironment::VIDEO_DECODER,
FROM_HERE,
base::Bind(&VideoReceiver::DecodeVideoFrameThread,
base::Unretained(this),
base::Passed(&encoded_frame),
render_time,
callback));
}
// Utility function to run the decoder on a designated decoding thread.
void VideoReceiver::DecodeVideoFrameThread(
scoped_ptr<transport::EncodedVideoFrame> encoded_frame,
const base::TimeTicks render_time,
const VideoFrameDecodedCallback& frame_decoded_callback) {
DCHECK(cast_environment_->CurrentlyOn(CastEnvironment::VIDEO_DECODER));
DCHECK(video_decoder_);
if (!(video_decoder_->DecodeVideoFrame(
encoded_frame.get(), render_time, frame_decoded_callback))) {
// This will happen if we decide to decode but not show a frame.
cast_environment_->PostTask(CastEnvironment::MAIN,
FROM_HERE,
base::Bind(&VideoReceiver::GetRawVideoFrame,
base::Unretained(this),
frame_decoded_callback));
}
}
bool VideoReceiver::DecryptVideoFrame(
scoped_ptr<transport::EncodedVideoFrame>* video_frame) {
DCHECK(cast_environment_->CurrentlyOn(CastEnvironment::MAIN));
if (!decryptor_.initialized())
return false;
std::string decrypted_video_data;
if (!decryptor_.Decrypt((*video_frame)->frame_id,
(*video_frame)->data,
&decrypted_video_data)) {
// Give up on this frame, release it from jitter buffer.
framer_->ReleaseFrame((*video_frame)->frame_id);
return false;
}
(*video_frame)->data.swap(decrypted_video_data);
return true;
}
// Called from the main cast thread.
void VideoReceiver::GetEncodedVideoFrame(
const VideoFrameEncodedCallback& callback) {
DCHECK(cast_environment_->CurrentlyOn(CastEnvironment::MAIN));
scoped_ptr<transport::EncodedVideoFrame> encoded_frame(
new transport::EncodedVideoFrame());
uint32 rtp_timestamp = 0;
bool next_frame = false;
if (!framer_->GetEncodedVideoFrame(encoded_frame.get(), &next_frame)) {
// We have no video frames. Wait for new packet(s).
queued_encoded_callbacks_.push_back(callback);
return;
}
if (decryptor_.initialized() && !DecryptVideoFrame(&encoded_frame)) {
// Logging already done.
queued_encoded_callbacks_.push_back(callback);
return;
}
base::TimeTicks render_time;
if (PullEncodedVideoFrame(next_frame, &encoded_frame, &render_time)) {
cast_environment_->PostTask(
CastEnvironment::MAIN,
FROM_HERE,
base::Bind(callback, base::Passed(&encoded_frame), render_time));
} else {
// We have a video frame; however we are missing packets and we have time
// to wait for new packet(s).
queued_encoded_callbacks_.push_back(callback);
}
}
// Should we pull the encoded video frame from the framer? decided by if this is
// the next frame or we are running out of time and have to pull the following
// frame.
// If the frame is too old to be rendered we set the don't show flag in the
// video bitstream where possible.
bool VideoReceiver::PullEncodedVideoFrame(
bool next_frame,
scoped_ptr<transport::EncodedVideoFrame>* encoded_frame,
base::TimeTicks* render_time) {
DCHECK(cast_environment_->CurrentlyOn(CastEnvironment::MAIN));
base::TimeTicks now = cast_environment_->Clock()->NowTicks();
*render_time = GetRenderTime(now, (*encoded_frame)->rtp_timestamp);
// TODO(mikhal): Store actual render time and not diff.
cast_environment_->Logging()->InsertFrameEventWithDelay(
now,
kVideoRenderDelay,
(*encoded_frame)->rtp_timestamp,
(*encoded_frame)->frame_id,
now - *render_time);
// Minimum time before a frame is due to be rendered before we pull it for
// decode.
base::TimeDelta min_wait_delta = frame_delay_;
base::TimeDelta time_until_render = *render_time - now;
if (!next_frame && (time_until_render > min_wait_delta)) {
// Example:
// We have decoded frame 1 and we have received the complete frame 3, but
// not frame 2. If we still have time before frame 3 should be rendered we
// will wait for 2 to arrive, however if 2 never show up this timer will hit
// and we will pull out frame 3 for decoding and rendering.
base::TimeDelta time_until_release = time_until_render - min_wait_delta;
cast_environment_->PostDelayedTask(
CastEnvironment::MAIN,
FROM_HERE,
base::Bind(&VideoReceiver::PlayoutTimeout, weak_factory_.GetWeakPtr()),
time_until_release);
VLOG(1) << "Wait before releasing frame "
<< static_cast<int>((*encoded_frame)->frame_id) << " time "
<< time_until_release.InMilliseconds();
return false;
}
base::TimeDelta dont_show_timeout_delta =
base::TimeDelta::FromMilliseconds(-kDontShowTimeoutMs);
if (codec_ == transport::kVp8 &&
time_until_render < dont_show_timeout_delta) {
(*encoded_frame)->data[0] &= 0xef;
VLOG(1) << "Don't show frame "
<< static_cast<int>((*encoded_frame)->frame_id)
<< " time_until_render:" << time_until_render.InMilliseconds();
} else {
VLOG(1) << "Show frame " << static_cast<int>((*encoded_frame)->frame_id)
<< " time_until_render:" << time_until_render.InMilliseconds();
}
// We have a copy of the frame, release this one.
framer_->ReleaseFrame((*encoded_frame)->frame_id);
(*encoded_frame)->codec = codec_;
return true;
}
void VideoReceiver::PlayoutTimeout() {
DCHECK(cast_environment_->CurrentlyOn(CastEnvironment::MAIN));
if (queued_encoded_callbacks_.empty())
return;
bool next_frame = false;
scoped_ptr<transport::EncodedVideoFrame> encoded_frame(
new transport::EncodedVideoFrame());
if (!framer_->GetEncodedVideoFrame(encoded_frame.get(), &next_frame)) {
// We have no video frames. Wait for new packet(s).
// Since the application can post multiple VideoFrameEncodedCallback and
// we only check the next frame to play out we might have multiple timeout
// events firing after each other; however this should be a rare event.
VLOG(1) << "Failed to retrieved a complete frame at this point in time";
return;
}
VLOG(1) << "PlayoutTimeout retrieved frame "
<< static_cast<int>(encoded_frame->frame_id);
if (decryptor_.initialized() && !DecryptVideoFrame(&encoded_frame)) {
// Logging already done.
return;
}
base::TimeTicks render_time;
if (PullEncodedVideoFrame(next_frame, &encoded_frame, &render_time)) {
if (!queued_encoded_callbacks_.empty()) {
VideoFrameEncodedCallback callback = queued_encoded_callbacks_.front();
queued_encoded_callbacks_.pop_front();
cast_environment_->PostTask(
CastEnvironment::MAIN,
FROM_HERE,
base::Bind(callback, base::Passed(&encoded_frame), render_time));
}
}
// Else we have a video frame; however we are missing packets and we have time
// to wait for new packet(s).
}
base::TimeTicks VideoReceiver::GetRenderTime(base::TimeTicks now,
uint32 rtp_timestamp) {
DCHECK(cast_environment_->CurrentlyOn(CastEnvironment::MAIN));
// Senders time in ms when this frame was captured.
// Note: the senders clock and our local clock might not be synced.
base::TimeTicks rtp_timestamp_in_ticks;
// Compute the time offset_in_ticks based on the incoming_rtp_timestamp_.
if (time_offset_.InMilliseconds() == 0) {
if (!rtcp_->RtpTimestampInSenderTime(kVideoFrequency,
incoming_rtp_timestamp_,
&rtp_timestamp_in_ticks)) {
// We have not received any RTCP to sync the stream play it out as soon as
// possible.
return now;
}
time_offset_ = time_incoming_packet_ - rtp_timestamp_in_ticks;
} else if (time_incoming_packet_updated_) {
if (rtcp_->RtpTimestampInSenderTime(kVideoFrequency,
incoming_rtp_timestamp_,
&rtp_timestamp_in_ticks)) {
// Time to update the time_offset.
base::TimeDelta time_offset =
time_incoming_packet_ - rtp_timestamp_in_ticks;
time_offset_ = ((kTimeOffsetFilter - 1) * time_offset_ + time_offset) /
kTimeOffsetFilter;
}
}
// Reset |time_incoming_packet_updated_| to enable a future measurement.
time_incoming_packet_updated_ = false;
// Compute the actual rtp_timestamp_in_ticks based on the current timestamp.
if (!rtcp_->RtpTimestampInSenderTime(
kVideoFrequency, rtp_timestamp, &rtp_timestamp_in_ticks)) {
// This can fail if we have not received any RTCP packets in a long time.
return now;
}
base::TimeTicks render_time =
rtp_timestamp_in_ticks + time_offset_ + target_delay_delta_;
if (last_render_time_ > render_time)
render_time = last_render_time_;
last_render_time_ = render_time;
return render_time;
}
void VideoReceiver::IncomingPacket(scoped_ptr<Packet> packet) {
DCHECK(cast_environment_->CurrentlyOn(CastEnvironment::MAIN));
if (Rtcp::IsRtcpPacket(&packet->front(), packet->size())) {
rtcp_->IncomingRtcpPacket(&packet->front(), packet->size());
} else {
rtp_receiver_.ReceivedPacket(&packet->front(), packet->size());
}
}
void VideoReceiver::IncomingParsedRtpPacket(const uint8* payload_data,
size_t payload_size,
const RtpCastHeader& rtp_header) {
DCHECK(cast_environment_->CurrentlyOn(CastEnvironment::MAIN));
base::TimeTicks now = cast_environment_->Clock()->NowTicks();
if (time_incoming_packet_.is_null() ||
now - time_incoming_packet_ >
base::TimeDelta::FromMilliseconds(kMinTimeBetweenOffsetUpdatesMs)) {
if (time_incoming_packet_.is_null())
InitializeTimers();
incoming_rtp_timestamp_ = rtp_header.webrtc.header.timestamp;
time_incoming_packet_ = now;
time_incoming_packet_updated_ = true;
}
cast_environment_->Logging()->InsertPacketEvent(
now,
kVideoPacketReceived,
rtp_header.webrtc.header.timestamp,
rtp_header.frame_id,
rtp_header.packet_id,
rtp_header.max_packet_id,
payload_size);
bool duplicate = false;
bool complete =
framer_->InsertPacket(payload_data, payload_size, rtp_header, &duplicate);
if (duplicate) {
cast_environment_->Logging()->InsertPacketEvent(
now,
kDuplicateVideoPacketReceived,
rtp_header.webrtc.header.timestamp,
rtp_header.frame_id,
rtp_header.packet_id,
rtp_header.max_packet_id,
payload_size);
// Duplicate packets are ignored.
return;
}
if (!complete)
return; // Video frame not complete; wait for more packets.
if (queued_encoded_callbacks_.empty())
return; // No pending callback.
VideoFrameEncodedCallback callback = queued_encoded_callbacks_.front();
queued_encoded_callbacks_.pop_front();
cast_environment_->PostTask(CastEnvironment::MAIN,
FROM_HERE,
base::Bind(&VideoReceiver::GetEncodedVideoFrame,
weak_factory_.GetWeakPtr(),
callback));
}
// Send a cast feedback message. Actual message created in the framer (cast
// message builder).
void VideoReceiver::CastFeedback(const RtcpCastMessage& cast_message) {
DCHECK(cast_environment_->CurrentlyOn(CastEnvironment::MAIN));
base::TimeTicks now = cast_environment_->Clock()->NowTicks();
cast_environment_->Logging()->InsertGenericEvent(
now, kVideoAckSent, cast_message.ack_frame_id_);
rtcp_->SendRtcpFromRtpReceiver(&cast_message, &event_subscriber_);
}
// Cast messages should be sent within a maximum interval. Schedule a call
// if not triggered elsewhere, e.g. by the cast message_builder.
void VideoReceiver::ScheduleNextCastMessage() {
DCHECK(cast_environment_->CurrentlyOn(CastEnvironment::MAIN));
base::TimeTicks send_time;
framer_->TimeToSendNextCastMessage(&send_time);
base::TimeDelta time_to_send =
send_time - cast_environment_->Clock()->NowTicks();
time_to_send = std::max(
time_to_send, base::TimeDelta::FromMilliseconds(kMinSchedulingDelayMs));
cast_environment_->PostDelayedTask(
CastEnvironment::MAIN,
FROM_HERE,
base::Bind(&VideoReceiver::SendNextCastMessage,
weak_factory_.GetWeakPtr()),
time_to_send);
}
void VideoReceiver::SendNextCastMessage() {
DCHECK(cast_environment_->CurrentlyOn(CastEnvironment::MAIN));
framer_->SendCastMessage(); // Will only send a message if it is time.
ScheduleNextCastMessage();
}
// Schedule the next RTCP report to be sent back to the sender.
void VideoReceiver::ScheduleNextRtcpReport() {
DCHECK(cast_environment_->CurrentlyOn(CastEnvironment::MAIN));
base::TimeDelta time_to_next = rtcp_->TimeToSendNextRtcpReport() -
cast_environment_->Clock()->NowTicks();
time_to_next = std::max(
time_to_next, base::TimeDelta::FromMilliseconds(kMinSchedulingDelayMs));
cast_environment_->PostDelayedTask(
CastEnvironment::MAIN,
FROM_HERE,
base::Bind(&VideoReceiver::SendNextRtcpReport,
weak_factory_.GetWeakPtr()),
time_to_next);
}
void VideoReceiver::SendNextRtcpReport() {
DCHECK(cast_environment_->CurrentlyOn(CastEnvironment::MAIN));
rtcp_->SendRtcpFromRtpReceiver(NULL, NULL);
ScheduleNextRtcpReport();
}
} // namespace cast
} // namespace media
| [
"[email protected]"
] | |
57c1d1f61d072ad27c41833eb85c824beb506295 | 04346b65ca464c578dcadd94c1b3c5676542d39e | /PlaneGame/main.cpp | c8f737ec1d2a46abee4d0b93f3a751904867f1b3 | [] | no_license | spyrosbazios/Asteroids | bf2f63eba9eef15a18bc80222bd3ef14477d5861 | bc646206c0ff0dd79ccba638800a5abad7d7ab06 | refs/heads/master | 2023-03-31T05:01:37.055892 | 2021-04-01T20:34:10 | 2021-04-01T20:34:10 | 353,818,282 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 775 | cpp | #include <graphics.h>
#include "Game.h"
#include "Config.h"
void draw()
{
Game* game = reinterpret_cast<Game*>(graphics::getUserData());
game->draw();
}
void update(float dt)
{
Game* game = reinterpret_cast<Game*>(graphics::getUserData());
game->update();
}
int main()
{
Game myGame;
graphics::createWindow(WINDOW_WIDTH, WINDOW_HEIGHT, "Plane Game");
graphics::setCanvasSize(CANVAS_WIDTH, CANVAS_HEIGHT);
graphics::setCanvasScaleMode(graphics::CANVAS_SCALE_FIT);
graphics::setFullScreen(true);
graphics::setFont("Assets\\font.ttf");
graphics::setUserData(&myGame);
graphics::setDrawFunction(draw);
graphics::setUpdateFunction(update);
myGame.init();
graphics::startMessageLoop();
graphics::destroyWindow();
return 0;
} | [
"[email protected]"
] | |
e5285355c93a44c102f26ec3dcee5f60e8ef8c58 | e91340723e34cad438c01626134a7e0d56672145 | /DataDriven/Source/DataDriven/Public/DDCore/DDCenterModule.h | 839d2c2f7d03eea94664da8f70e5b0b149408431 | [] | no_license | penglixin/GameSource | 799802bd28ad4a4bf169e68aaf797ad8038e13d0 | 6f10830ec1d62db7c07f93c9b6735706dac3a8de | refs/heads/master | 2020-09-17T01:23:17.609277 | 2020-03-02T09:04:10 | 2020-03-02T09:04:10 | 223,945,526 | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 1,762 | h | // Fill out your copyright notice in the Description page of Project Settings.
#pragma once
#include "CoreMinimal.h"
#include "DDCore/DDModule.h"
#include "DDCenterModule.generated.h"
class IDDOO;
/**
*
*/
UCLASS()
class DATADRIVEN_API UDDCenterModule : public UDDModule
{
GENERATED_BODY()
public:
//迭代调用本模组以及子模组的EditChangeModuleType方法
void IterChangeModuleType(UDDModule* Module, FName ModType);
//递归创建模块
void IterCreateManager(UDDModule* Module);
//递归初始化
void IterModuleInit(UDDModule* Module);
//递归BeginPlay
void IterModuleBeginPlay(UDDModule* Module);
//递归Tick
void IterModuleTick(UDDModule* Module, float DeltaSeconds);
//提取所有模组到模组数组, 传入枚举名字
void TotalGatherModule(FName ModType);
//提取所有模组到数组
void IterGatherModule(UDDModule* Module, TArray<UDDModule*>& GatherGroup);
//注册对象到模组
bool RegisterToModule(IDDOO* ObejctInst);
//执行反射方法
void AllotExecuteFunction(DDModuleAgreement Agreement, DDParam* Param);
//执行反射方法
void AllotExecuteFunction(DDObjectAgreement Agreement, DDParam* Param);
//注册调用接口
template<typename RetType, typename... VarTypes>
DDFunHandle AllotRegisterFunPort(int32 ModuleID, FName CallName, TFunction<RetType(VarTypes...)> InsFun);
protected:
//保存模组的数组, 顺序与枚举相同
TArray<UDDModule*> ModuleGroup;
};
template<typename RetType, typename... VarTypes>
DDFunHandle UDDCenterModule::AllotRegisterFunPort(int32 ModuleID, FName CallName, TFunction<RetType(VarTypes...)> InsFun)
{
if (ModuleGroup[ModuleID])
return ModuleGroup[ModuleID]->RegisterFunPort<RetType, VarTypes...>(CallName, InsFun);
return DDFunHandle();
}
| [
"[email protected]"
] | |
6856a794a1bc2bf73a5acab2e4860f173e063126 | f313c6df81673cfb79c478359d00aad4a38d4c54 | /in-proto-8-5-04-ps2/TestBuild/in/Core/x/xIM.cpp | 68591177173fdd7812618c47191b42bad3c1a3de | [] | no_license | seilweiss/dwarfdb | 2ee1a1d748d83f6d14413bd58312c99059af99bc | 9afc2132cd69f11ed6e69bd4b2b67805bc1828b9 | refs/heads/main | 2023-08-14T23:48:48.254038 | 2021-10-07T05:40:50 | 2021-10-07T05:40:50 | 414,475,004 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,876 | cpp | typedef struct xVec3;
typedef struct xVec2;
typedef struct HIFastIMLockStruct;
typedef struct xColor_tag;
typedef struct xIMLockParameters;
typedef struct RwRGBA;
typedef enum xIMFormat;
typedef struct RwV3d;
typedef float32 type[3];
struct xVec3
{
union
{
RwV3d m_RwV3d;
float32 x;
};
float32 y;
float32 z;
float32 a[3];
};
struct xVec2
{
float32 x;
float32 y;
};
struct HIFastIMLockStruct
{
<unknown fundamental type (0xa510)>* dmaPacket;
int32 qwCount;
int32 format;
xVec3* pos;
xVec2* uv;
xColor_tag* color;
int32 vertCount;
};
struct xColor_tag
{
uint8 r;
uint8 g;
uint8 b;
uint8 a;
RwRGBA rgba;
};
struct xIMLockParameters
{
int32 flags;
xVec3* cpos;
xVec2* cuv;
xColor_tag* ccolor;
};
struct RwRGBA
{
uint8 red;
uint8 green;
uint8 blue;
uint8 alpha;
};
enum xIMFormat
{
XIM_TRISTRIP,
XIM_TRILIST
};
struct RwV3d
{
float32 x;
float32 y;
float32 z;
};
void xIMLock2(HIFastIMLockStruct& context1, HIFastIMLockStruct& context2, xIMFormat format, int32 vertCount, xIMLockParameters& params1, xIMLockParameters& params2);
void xIMLock(HIFastIMLockStruct& context, xIMFormat format, int32 vertCount, xIMLockParameters& params);
// xIMLock2__FR18HIFastIMLockStructR18HIFastIMLockStruct9xIMFormatiRC17xIMLockParametersRC17xIMLockParameters
// Start address: 0x499ce0
void xIMLock2(HIFastIMLockStruct& context1, HIFastIMLockStruct& context2, xIMFormat format, int32 vertCount, xIMLockParameters& params1, xIMLockParameters& params2)
{
int32 pos_qwords;
int32 uv_qwords;
int32 color_qwords;
int32 chain_qwords;
int32 alloc_qwords1;
int32 alloc_qwords2;
int32 alloc_qwords;
<unknown fundamental type (0xa510)>* data_buffer;
// Line 329, Address: 0x499ce0, Func Offset: 0
// Line 333, Address: 0x499d14, Func Offset: 0x34
// Line 329, Address: 0x499d18, Func Offset: 0x38
// Line 333, Address: 0x499d1c, Func Offset: 0x3c
// Line 334, Address: 0x499d24, Func Offset: 0x44
// Line 333, Address: 0x499d28, Func Offset: 0x48
// Line 334, Address: 0x499d2c, Func Offset: 0x4c
// Line 333, Address: 0x499d30, Func Offset: 0x50
// Line 334, Address: 0x499d34, Func Offset: 0x54
// Line 335, Address: 0x499d3c, Func Offset: 0x5c
// Line 333, Address: 0x499d40, Func Offset: 0x60
// Line 335, Address: 0x499d44, Func Offset: 0x64
// Line 336, Address: 0x499d48, Func Offset: 0x68
// Line 335, Address: 0x499d4c, Func Offset: 0x6c
// Line 336, Address: 0x499d50, Func Offset: 0x70
// Line 335, Address: 0x499d54, Func Offset: 0x74
// Line 336, Address: 0x499d58, Func Offset: 0x78
// Line 340, Address: 0x499d60, Func Offset: 0x80
// Line 336, Address: 0x499d64, Func Offset: 0x84
// Line 339, Address: 0x499d68, Func Offset: 0x88
// Line 341, Address: 0x499d6c, Func Offset: 0x8c
// Line 342, Address: 0x499d78, Func Offset: 0x98
// Line 343, Address: 0x499d7c, Func Offset: 0x9c
// Line 344, Address: 0x499d88, Func Offset: 0xa8
// Line 345, Address: 0x499d8c, Func Offset: 0xac
// Line 346, Address: 0x499d94, Func Offset: 0xb4
// Line 348, Address: 0x499d9c, Func Offset: 0xbc
// Line 347, Address: 0x499da0, Func Offset: 0xc0
// Line 349, Address: 0x499da4, Func Offset: 0xc4
// Line 350, Address: 0x499db0, Func Offset: 0xd0
// Line 351, Address: 0x499db4, Func Offset: 0xd4
// Line 352, Address: 0x499dc0, Func Offset: 0xe0
// Line 353, Address: 0x499dc4, Func Offset: 0xe4
// Line 354, Address: 0x499dcc, Func Offset: 0xec
// Line 355, Address: 0x499dd4, Func Offset: 0xf4
// Line 356, Address: 0x499ddc, Func Offset: 0xfc
// Line 359, Address: 0x499de8, Func Offset: 0x108
// Line 360, Address: 0x499dec, Func Offset: 0x10c
// Line 365, Address: 0x499df0, Func Offset: 0x110
// Line 362, Address: 0x499df4, Func Offset: 0x114
// Line 361, Address: 0x499df8, Func Offset: 0x118
// Line 368, Address: 0x499dfc, Func Offset: 0x11c
// Line 371, Address: 0x499e0c, Func Offset: 0x12c
// Line 378, Address: 0x499e18, Func Offset: 0x138
// Line 381, Address: 0x499e28, Func Offset: 0x148
// Line 388, Address: 0x499e38, Func Offset: 0x158
// Line 391, Address: 0x499e48, Func Offset: 0x168
// Line 400, Address: 0x499e5c, Func Offset: 0x17c
// Line 404, Address: 0x499e68, Func Offset: 0x188
// Line 407, Address: 0x499e70, Func Offset: 0x190
// Line 408, Address: 0x499e7c, Func Offset: 0x19c
// Line 412, Address: 0x499e84, Func Offset: 0x1a4
// Line 411, Address: 0x499e88, Func Offset: 0x1a8
// Line 412, Address: 0x499e8c, Func Offset: 0x1ac
// Line 414, Address: 0x499e94, Func Offset: 0x1b4
// Line 418, Address: 0x499ea0, Func Offset: 0x1c0
// Line 421, Address: 0x499ea8, Func Offset: 0x1c8
// Line 422, Address: 0x499eb4, Func Offset: 0x1d4
// Line 426, Address: 0x499ebc, Func Offset: 0x1dc
// Line 425, Address: 0x499ec0, Func Offset: 0x1e0
// Line 426, Address: 0x499ec4, Func Offset: 0x1e4
// Line 428, Address: 0x499ecc, Func Offset: 0x1ec
// Line 432, Address: 0x499ed8, Func Offset: 0x1f8
// Line 435, Address: 0x499ee0, Func Offset: 0x200
// Line 436, Address: 0x499eec, Func Offset: 0x20c
// Line 439, Address: 0x499ef4, Func Offset: 0x214
// Line 447, Address: 0x499ef8, Func Offset: 0x218
// Line 449, Address: 0x499efc, Func Offset: 0x21c
// Line 446, Address: 0x499f00, Func Offset: 0x220
// Line 447, Address: 0x499f04, Func Offset: 0x224
// Line 449, Address: 0x499f08, Func Offset: 0x228
// Line 451, Address: 0x499f10, Func Offset: 0x230
// Line 453, Address: 0x499f14, Func Offset: 0x234
// Line 450, Address: 0x499f18, Func Offset: 0x238
// Line 451, Address: 0x499f1c, Func Offset: 0x23c
// Line 453, Address: 0x499f24, Func Offset: 0x244
// Line 454, Address: 0x499f2c, Func Offset: 0x24c
// Line 376, Address: 0x499f38, Func Offset: 0x258
// Line 454, Address: 0x499f44, Func Offset: 0x264
// Line 386, Address: 0x499f48, Func Offset: 0x268
// Line 396, Address: 0x499f54, Func Offset: 0x274
// Line 454, Address: 0x499f58, Func Offset: 0x278
// Line 396, Address: 0x499f5c, Func Offset: 0x27c
// Line 454, Address: 0x499f68, Func Offset: 0x288
// Line 403, Address: 0x499f6c, Func Offset: 0x28c
// Line 454, Address: 0x499f74, Func Offset: 0x294
// Line 417, Address: 0x499f78, Func Offset: 0x298
// Line 454, Address: 0x499f80, Func Offset: 0x2a0
// Line 431, Address: 0x499f84, Func Offset: 0x2a4
// Line 454, Address: 0x499f8c, Func Offset: 0x2ac
// Func End, Address: 0x499fb8, Func Offset: 0x2d8
}
// xIMLock__FR18HIFastIMLockStruct9xIMFormatiRC17xIMLockParameters
// Start address: 0x499fc0
void xIMLock(HIFastIMLockStruct& context, xIMFormat format, int32 vertCount, xIMLockParameters& params)
{
int32 pos_qwords;
int32 uv_qwords;
int32 color_qwords;
int32 chain_qwords;
int32 alloc_qwords;
<unknown fundamental type (0xa510)>* data_buffer;
// Line 259, Address: 0x499fc0, Func Offset: 0
// Line 264, Address: 0x499fe8, Func Offset: 0x28
// Line 263, Address: 0x499fec, Func Offset: 0x2c
// Line 264, Address: 0x499ff0, Func Offset: 0x30
// Line 259, Address: 0x499ff4, Func Offset: 0x34
// Line 263, Address: 0x499ff8, Func Offset: 0x38
// Line 264, Address: 0x499ffc, Func Offset: 0x3c
// Line 259, Address: 0x49a000, Func Offset: 0x40
// Line 263, Address: 0x49a004, Func Offset: 0x44
// Line 265, Address: 0x49a00c, Func Offset: 0x4c
// Line 259, Address: 0x49a014, Func Offset: 0x54
// Line 263, Address: 0x49a018, Func Offset: 0x58
// Line 265, Address: 0x49a024, Func Offset: 0x64
// Line 266, Address: 0x49a028, Func Offset: 0x68
// Line 270, Address: 0x49a034, Func Offset: 0x74
// Line 266, Address: 0x49a038, Func Offset: 0x78
// Line 269, Address: 0x49a03c, Func Offset: 0x7c
// Line 271, Address: 0x49a040, Func Offset: 0x80
// Line 272, Address: 0x49a04c, Func Offset: 0x8c
// Line 273, Address: 0x49a050, Func Offset: 0x90
// Line 274, Address: 0x49a05c, Func Offset: 0x9c
// Line 275, Address: 0x49a060, Func Offset: 0xa0
// Line 276, Address: 0x49a068, Func Offset: 0xa8
// Line 277, Address: 0x49a06c, Func Offset: 0xac
// Line 281, Address: 0x49a078, Func Offset: 0xb8
// Line 280, Address: 0x49a07c, Func Offset: 0xbc
// Line 281, Address: 0x49a080, Func Offset: 0xc0
// Line 284, Address: 0x49a084, Func Offset: 0xc4
// Line 287, Address: 0x49a08c, Func Offset: 0xcc
// Line 290, Address: 0x49a09c, Func Offset: 0xdc
// Line 297, Address: 0x49a0a8, Func Offset: 0xe8
// Line 300, Address: 0x49a0b8, Func Offset: 0xf8
// Line 307, Address: 0x49a0c8, Func Offset: 0x108
// Line 310, Address: 0x49a0d8, Func Offset: 0x118
// Line 320, Address: 0x49a0e8, Func Offset: 0x128
// Line 323, Address: 0x49a0ec, Func Offset: 0x12c
// Line 321, Address: 0x49a0f0, Func Offset: 0x130
// Line 323, Address: 0x49a0f4, Func Offset: 0x134
// Line 324, Address: 0x49a0fc, Func Offset: 0x13c
// Line 295, Address: 0x49a104, Func Offset: 0x144
// Line 324, Address: 0x49a108, Func Offset: 0x148
// Func End, Address: 0x49a154, Func Offset: 0x194
}
| [
"[email protected]"
] | |
b4410abca4a42f43d032aad3baa7f859730e5e6f | 3f84e550f46760e67330b9d1c24a62b5cae3c7eb | /pfms-2019a-Johnson15177-master/tutorials/week08/starter/opencv/access_pixels/access_pixels.cpp | 1460ad16a93819b057ef4dd0ce9b2e776e3eeffa | [] | no_license | esteban-andrade/projects | 58f303a6901b5eba340ca8c856eaea8ddd633f63 | b569f241b6dd1302811cce91407df7ac54a9ffa5 | refs/heads/master | 2020-07-03T11:59:43.915046 | 2020-05-15T02:58:18 | 2020-05-15T02:58:18 | 201,897,707 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 920 | cpp | #include <stdio.h>
#include <opencv2/opencv.hpp>
using namespace cv;
int main(int argc, char** argv )
{
if ( argc != 3 ) {
printf("usage: ./access_pixels.cpp <Image_Path>\n");
return -1;
}
Mat image;
image = imread( argv[1], IMREAD_GRAYSCALE);
if ( !image.data ) {
printf("No image data \n");
return -1;
}
int white_count = 0;
unsigned char thresh = 200;
for (int i = 0; i<image.rows; i++) {
for (int j = 0; j <image.cols; j++) {
unsigned char &pixel = image.at<unsigned char>(i, j);
if (pixel > thresh) {
white_count++;
pixel = 0;
}
}
}
std::cout << "There are " << white_count << " white-ish pixels" << std::endl;
namedWindow("Image", WINDOW_AUTOSIZE );
imshow("Image", image);
imwrite(argv[2], image);
waitKey(0);
return 0;
}
| [
"[email protected]"
] | |
1c89d97f433becaa296f7ecca9533e66ca39fa0c | 4f77767332e03abd83a78b15752f1205b39bd38c | /binaryTreeLevelOrderTraversal.cpp | 9237df0d7ca8621a91b8c60ab84a3fd3625600cd | [] | no_license | Ryanst/Leetcode | 6b79d80287c7b560e79aded31225f87d62fef661 | ad83324ea776c034c216a63090db95ff0028aa80 | refs/heads/master | 2021-01-10T19:38:08.075477 | 2015-08-18T13:35:01 | 2015-08-18T13:35:01 | 34,777,667 | 1 | 1 | null | 2015-08-18T13:35:01 | 2015-04-29T07:01:58 | C++ | UTF-8 | C++ | false | false | 333 | cpp | #include <iostream>
#include <queue>
using namespace std;
struct TreeNode {
int val;
TreeNode *left;
TreeNode *right;
TreeNode(int x) : val(x), left(NULL), right(NULL) {}
};
class Solution {
public:
vector<vector<int> > levelOrder(TreeNode *root) {
queue(*TreeNode) treeQueue;
vector<vector<int>>
}
};
| [
"[email protected]"
] | |
93eba099396d597e22b9e3ac34f63faa230bf473 | 13676595f663ca4daea57d617ce766d87751e9cc | /GTKmmStack36/include/gtkmm-3.6.0/gtk/gtkmm/combobox.h | ff3d8212e219b4961b2998b0433b3a1f27f28061 | [] | no_license | anroniogi/opros_knu | 7b4f41b9d28ec41e41f6c2e29469f08ff87090ba | 3c27522f2d1d948a7f4bd0b543d60a3bdc2115ef | refs/heads/master | 2021-01-23T20:26:45.413064 | 2017-11-22T15:02:05 | 2017-11-22T15:02:05 | 102,856,847 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 35,519 | h | // -*- c++ -*-
// Generated by gtkmmproc -- DO NOT MODIFY!
#ifndef _GTKMM_COMBOBOX_H
#define _GTKMM_COMBOBOX_H
#include <glibmm/ustring.h>
#include <sigc++/sigc++.h>
/*
* Copyright (C) 2003 The gtkmm Development Team
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include <gtkmm/bin.h>
#include <gtkmm/celllayout.h>
#include <gtkmm/celleditable.h>
#include <gtkmm/treemodel.h>
#include <gtkmm/cellarea.h>
#include <gtkmm/cellrenderer.h>
#include <gtkmm/treeview.h>
#include <gtkmm/enums.h> //For SensitivityType.
#ifndef DOXYGEN_SHOULD_SKIP_THIS
typedef struct _GtkComboBox GtkComboBox;
typedef struct _GtkComboBoxClass GtkComboBoxClass;
#endif /* DOXYGEN_SHOULD_SKIP_THIS */
namespace Gtk
{ class ComboBox_Class; } // namespace Gtk
namespace Gtk
{
/** A widget used to choose from a list of items.
*
* A ComboBox is a widget that allows the user to choose from a list of valid choices. The ComboBox displays the
* selected choice. When activated, the ComboBox displays a popup which allows the user to make a new choice. The
* style in which the selected value is displayed, and the style of the popup is determined by the current theme.
* It may be similar to a Windows-style combo box.
*
* The ComboBox uses the model-view pattern; the list of valid choices is specified in the form of a tree model,
* and the display of the choices can be adapted to the data in the model by using cell renderers, as you would in
* a tree view. This is possible since ComboBox implements the CellLayout interface. The tree model holding the
* valid choices is not restricted to a flat list, it can be a real tree, and the popup will reflect the tree
* structure.
*
* To allow the user to enter values not in the model, the 'has-entry'
* property allows the ComboBox to contain a Gtk::Entry. This entry
* can be accessed by calling get_entry(), or you can just call get_entry_text()
* to get the text from the Entry.
*
* For a simple list of textual choices, the model-view API of ComboBox
* can be a bit overwhelming. In this case, ComboBoxText offers a
* simple alternative. Both ComboBox and ComboBoxText can contain
* an entry.
*
* The ComboBox widget looks like this:
* @image html combobox1.png
*
* @ingroup Widgets
*/
class ComboBox
: public Bin,
public CellLayout,
public CellEditable
{
public:
#ifndef DOXYGEN_SHOULD_SKIP_THIS
typedef ComboBox CppObjectType;
typedef ComboBox_Class CppClassType;
typedef GtkComboBox BaseObjectType;
typedef GtkComboBoxClass BaseClassType;
#endif /* DOXYGEN_SHOULD_SKIP_THIS */
virtual ~ComboBox();
#ifndef DOXYGEN_SHOULD_SKIP_THIS
private:
friend class ComboBox_Class;
static CppClassType combobox_class_;
// noncopyable
ComboBox(const ComboBox&);
ComboBox& operator=(const ComboBox&);
protected:
explicit ComboBox(const Glib::ConstructParams& construct_params);
explicit ComboBox(GtkComboBox* castitem);
#endif /* DOXYGEN_SHOULD_SKIP_THIS */
public:
/** Get the GType for this class, for use with the underlying GObject type system.
*/
static GType get_type() G_GNUC_CONST;
#ifndef DOXYGEN_SHOULD_SKIP_THIS
static GType get_base_type() G_GNUC_CONST;
#endif
///Provides access to the underlying C GtkObject.
GtkComboBox* gobj() { return reinterpret_cast<GtkComboBox*>(gobject_); }
///Provides access to the underlying C GtkObject.
const GtkComboBox* gobj() const { return reinterpret_cast<GtkComboBox*>(gobject_); }
public:
//C++ methods used to invoke GTK+ virtual functions:
protected:
//GTK+ Virtual Functions (override these to change behaviour):
//Default Signal Handlers::
/// This is a default handler for the signal signal_changed().
virtual void on_changed();
private:
public:
/** Creates a new empty #GtkComboBox, optionally with an entry.
* @param has_entry If this is true then this will have an Entry widget.
*/
explicit ComboBox(bool has_entry = false);
/** Creates a new ComboBox with the model initialized to @a model.
* @param model The model containing data to display in the ComboBox.
* @param has_entry If this is true then this will have an Entry widget.
*/
explicit ComboBox(const Glib::RefPtr<TreeModel>& model, bool has_entry = false);
/** Creates a new empty #GtkComboBox, optionally with an entry.
* @param has_entry If this is true then this will have an Entry widget.
*/
explicit ComboBox(const Glib::RefPtr<CellArea>& cell_area, bool has_entry = false);
//See ComboBoxText for an equivalent of gtk_combo_box_new_text().
/** Sets the wrap width of @a combo_box to be @a width. The wrap width is basically
* the preferred number of columns when you want the popup to be layed out
* in a table.
*
* @newin{2,4}
* @param width Preferred number of columns.
*/
void set_wrap_width(int width);
/** Returns the wrap width which is used to determine the number of columns
* for the popup menu. If the wrap width is larger than 1, the combo box
* is in table mode.
*
* @newin{2,6}
* @return The wrap width.
*/
int get_wrap_width() const;
/** Sets the column with row span information for @a combo_box to be @a row_span.
* The row span column contains integers which indicate how many rows
* an item should span.
*
* @newin{2,4}
* @param row_span A column in the model passed during construction.
*/
void set_row_span_column(int row_span);
/** Returns the column with row span information for @a combo_box.
*
* @newin{2,6}
* @return The row span column.
*/
int get_row_span_column() const;
/** Sets the column with column span information for @a combo_box to be
* @a column_span. The column span column contains integers which indicate
* how many columns an item should span.
*
* @newin{2,4}
* @param column_span A column in the model passed during construction.
*/
void set_column_span_column(int column_span);
/** Returns the column with column span information for @a combo_box.
*
* @newin{2,6}
* @return The column span column.
*/
int get_column_span_column() const;
/** Gets the current value of the :add-tearoffs property.
* @return The current value of the :add-tearoffs property.
*/
bool get_add_tearoffs() const;
/** Sets whether the popup menu should have a tearoff
* menu item.
*
* @newin{2,6}
* @param add_tearoffs <tt>true</tt> to add tearoff menu items.
*/
void set_add_tearoffs(bool add_tearoffs = true);
/** Gets the current title of the menu in tearoff mode. See
* set_add_tearoffs().
*
* @newin{2,10}
* @return The menu's title in tearoff mode. This is an internal copy of the
* string which must not be freed.
*/
Glib::ustring get_title() const;
/** Sets the menu's title in tearoff mode.
*
* @newin{2,10}
* @param title A title for the menu in tearoff mode.
*/
void set_title(const Glib::ustring& title);
/** Returns whether the combo box grabs focus when it is clicked
* with the mouse. See set_focus_on_click().
*
* @newin{2,6}
* @return <tt>true</tt> if the combo box grabs focus when it is
* clicked with the mouse.
*/
bool get_focus_on_click() const;
/** Sets whether the combo box will grab focus when it is clicked with
* the mouse. Making mouse clicks not grab focus is useful in places
* like toolbars where you don't want the keyboard focus removed from
* the main area of the application.
*
* @newin{2,6}
* @param focus_on_click Whether the combo box grabs focus when clicked
* with the mouse.
*/
void set_focus_on_click(bool focus_on_click = true);
/* get/set active item */
/** Returns the index of the currently active item, or -1 if there's no
* active item. If the model is a non-flat treemodel, and the active item
* is not an immediate child of the root of the tree, this function returns
* <tt>gtk_tree_path_get_indices (path)[0]</tt>, where
* <tt>path</tt> is the Gtk::TreePath of the active item.
*
* @newin{2,4}
* @return An integer which is the index of the currently active item,
* or -1 if there's no active item.
*/
int get_active_row_number() const;
/** Gets an iterator that points to the current active item, if it exists.
* @result The iterator.
*/
TreeModel::iterator get_active();
/** Gets an iterator that points to the current active item, if it exists.
* @result The iterator.
*/
TreeModel::const_iterator get_active() const;
/** Sets the active item of @a combo_box to be the item at @a index.
*
* @newin{2,4}
* @param index An index in the model passed during construction, or -1 to have
* no active item.
*/
void set_active(int index);
/** Sets the current active item to be the one referenced by @a iter, or
* unsets the active item if @a iter is <tt>0</tt>.
*
* @newin{2,4}
* @param iter The Gtk::TreeIter, or <tt>0</tt>.
*/
void set_active(const TreeModel::iterator& iter);
//TODO: See https://bugzilla.gnome.org/show_bug.cgi?id=612396#c30
/** Get the text in the entry, if there is an entry.
*
* @newin{2,24}
*/
Glib::ustring get_entry_text() const;
/** Causes no item to be active. See also set_active().
*/
void unset_active();
/** Returns the Gtk::TreeModel which is acting as data source for @a combo_box.
*
* @newin{2,4}
* @return A Gtk::TreeModel which was passed
* during construction.
*/
Glib::RefPtr<TreeModel> get_model();
/** Returns the Gtk::TreeModel which is acting as data source for @a combo_box.
*
* @newin{2,4}
* @return A Gtk::TreeModel which was passed
* during construction.
*/
Glib::RefPtr<const TreeModel> get_model() const;
/** Sets the model used by @a combo_box to be @a model. Will unset a previously set
* model (if applicable). Use unset_model() to unset the old model.
*
* Note that this function does not clear the cell renderers, you have to
* call Gtk::CellLayout::clear() yourself if you need to set up different
* cell renderers for the new model.
*
* @newin{2,4}
* @param model A Gtk::TreeModel.
*/
void set_model(const Glib::RefPtr<TreeModel>& model);
/** Remove the model from the ComboBox.
*
* @see set_model().
*
* @newin{2,16}
*/
void unset_model();
typedef TreeView::SlotRowSeparator SlotRowSeparator;
/** Sets the row separator function, which is used to determine whether a row should be drawn as a separator.
* See also unset_row_separator_func().
*
* @param slot The callback.
*/
void set_row_separator_func(const SlotRowSeparator& slot);
/** Causes no separators to be drawn.
*/
void unset_row_separator_func();
/** Sets whether the dropdown button of the combo box should be
* always sensitive (Gtk::SENSITIVITY_ON), never sensitive (Gtk::SENSITIVITY_OFF)
* or only if there is at least one item to display (Gtk::SENSITIVITY_AUTO).
*
* @newin{2,14}
* @param sensitivity Specify the sensitivity of the dropdown button.
*/
void set_button_sensitivity(SensitivityType sensitivity);
/** Returns whether the combo box sets the dropdown button
* sensitive or not when there are no items in the model.
*
* @newin{2,14}
* @return Gtk::SENSITIVITY_ON if the dropdown button
* is sensitive when the model is empty, Gtk::SENSITIVITY_OFF
* if the button is always insensitive or
* Gtk::SENSITIVITY_AUTO if it is only sensitive as long as
* the model has one item to be selected.
*/
SensitivityType get_button_sensitivity() const;
/** Returns whether the combo box has an entry.
*
* @newin{2,24}
* @return Whether there is an entry in @a combo_box.
*/
bool get_has_entry() const;
/** Sets the model column which @a combo_box should use to get strings from
* to be @a text_column. The column @a text_column in the model of @a combo_box
* must be of type TYPE_STRING.
*
* This is only relevant if @a combo_box has been created with
* Gtk::ComboBox::property_has_entry() as <tt>true</tt>.
*
* @newin{2,24}
* @param text_column A column in @a model to get the strings from for
* the internal entry.
*/
void set_entry_text_column(const TreeModelColumnBase& text_column) const;
/** Sets the model column which @a combo_box should use to get strings from
* to be @a text_column. The column @a text_column in the model of @a combo_box
* must be of type TYPE_STRING.
*
* This is only relevant if @a combo_box has been created with
* Gtk::ComboBox::property_has_entry() as <tt>true</tt>.
*
* @newin{2,24}
* @param text_column A column in @a model to get the strings from for
* the internal entry.
*/
void set_entry_text_column(int text_column);
/** Returns the column which @a combo_box is using to get the strings
* from to display in the internal entry.
*
* @newin{2,24}
* @return A column in the data source model of @a combo_box.
*/
int get_entry_text_column() const;
/** Specifies whether the popup's width should be a fixed width
* matching the allocated width of the combo box.
*
* @newin{3,0}
* @param fixed Whether to use a fixed popup width.
*/
void set_popup_fixed_width(bool fixed = true);
/** Gets whether the popup uses a fixed width matching
* the allocated width of the combo box.
*
* @newin{3,0}
* @return <tt>true</tt> if the popup uses a fixed width.
*/
bool get_popup_fixed_width() const;
/** Pops up the menu or dropdown list of @a combo_box.
*
* This function is mostly intended for use by accessibility technologies;
* applications should have little use for it.
*
* @newin{2,4}
*/
void popup();
/** Pops up the menu or dropdown list of @a combo_box, the popup window
* will be grabbed so only @a device and its associated pointer/keyboard
* are the only Gdk::Device<!-- -->s able to send events to it.
*
* @newin{3,0}
* @param device A Gdk::Device.
*/
void popup(const Glib::RefPtr<Gdk::Device>& device);
/** Hides the menu or dropdown list of @a combo_box.
*
* This function is mostly intended for use by accessibility technologies;
* applications should have little use for it.
*
* @newin{2,4}
*/
void popdown();
/** Gets the accessible object corresponding to the combo box's popup.
*
* This function is mostly intended for use by accessibility technologies;
* applications should have little use for it.
*
* @newin{2,6}
* @return The accessible object corresponding
* to the combo box's popup.
*/
#ifdef GTKMM_ATKMM_ENABLED
Glib::RefPtr<Atk::Object> get_popup_accessible();
#endif // GTKMM_ATKMM_ENABLED
/** Gets the accessible object corresponding to the combo box's popup.
*
* This function is mostly intended for use by accessibility technologies;
* applications should have little use for it.
*
* @newin{2,6}
* @return The accessible object corresponding
* to the combo box's popup.
*/
#ifdef GTKMM_ATKMM_ENABLED
Glib::RefPtr<const Atk::Object> get_popup_accessible() const;
#endif // GTKMM_ATKMM_ENABLED
/** Returns the column which @a combo_box is using to get string IDs
* for values from.
*
* @newin{3,0}
* @return A column in the data source model of @a combo_box.
*/
int get_id_column() const;
/** Sets the model column which @a combo_box should use to get string IDs
* for values from. The column @a id_column in the model of @a combo_box
* must be of type TYPE_STRING.
*
* @newin{3,0}
* @param id_column A column in @a model to get string IDs for values from.
*/
void set_id_column(int id_column);
/** Returns the ID of the active row of @a combo_box. This value is taken
* from the active row and the column specified by the Gtk::ComboBox::property_id_column()
* property of @a combo_box (see set_id_column()).
*
* The returned value is an interned string which means that you can
* compare the pointer by value to other interned strings and that you
* must not free it.
*
* If the Gtk::ComboBox::property_id_column() property of @a combo_box is not set, or if
* no row is active, or if the active row has a <tt>0</tt> ID value, then <tt>0</tt>
* is returned.
*
* @newin{3,0}
* @return The ID of the active row, or <tt>0</tt>.
*/
Glib::ustring get_active_id() const;
#ifndef GTKMM_DISABLE_DEPRECATED
/** Changes the active row of @a combo_box to the one that has an ID equal to
* @a active_id, or unsets the active row if @a active_id is <tt>0</tt>. Rows having
* a <tt>0</tt> ID string cannot be made active by this function.
*
* If the Gtk::ComboBox::property_id_column() property of @a combo_box is unset or if no
* row has the given ID then the function does nothing and returns <tt>false</tt>.
*
* @newin{3,0}
* @deprecated Use set_active_id(). This method was incorrectly named.
* @param active_id The ID of the row to select, or <tt>0</tt>.
* @return <tt>true</tt> if a row with a matching ID was found. If a <tt>0</tt>
* @a active_id was given to unset the active row, the function
* always returns <tt>true</tt>.
*/
void get_active_id(const Glib::ustring& active_id);
#endif // GTKMM_DISABLE_DEPRECATED
/** Changes the active row of the combo box to the one that has an ID equal to
* @a active_id.
*
* If property_id_column() is unset or if no row has the given ID then the function
* does nothing and returns false.
*
* @param active_id The ID of the row that should be set to active.
* @returns true if a row with a matching ID was found.
*
* @newin{3,6}
*/
bool set_active_id(const Glib::ustring& active_id);
//deprecated
/** @see Bin::get_child().
* @newin{2,24}
*/
Entry* get_entry();
/** @see Bin::get_child().
* @newin{2,24}
*/
const Entry* get_entry() const;
#ifdef GLIBMM_PROPERTIES_ENABLED
/** The model for the combo box.
*
* You rarely need to use properties because there are get_ and set_ methods for almost all of them.
* @return A PropertyProxy that allows you to get or set the property of the value, or receive notification when
* the value of the property changes.
*/
Glib::PropertyProxy< Glib::RefPtr<TreeModel> > property_model() ;
#endif //#GLIBMM_PROPERTIES_ENABLED
#ifdef GLIBMM_PROPERTIES_ENABLED
/** The model for the combo box.
*
* You rarely need to use properties because there are get_ and set_ methods for almost all of them.
* @return A PropertyProxy that allows you to get or set the property of the value, or receive notification when
* the value of the property changes.
*/
Glib::PropertyProxy_ReadOnly< Glib::RefPtr<TreeModel> > property_model() const;
#endif //#GLIBMM_PROPERTIES_ENABLED
#ifdef GLIBMM_PROPERTIES_ENABLED
/** Wrap width for laying out the items in a grid.
*
* You rarely need to use properties because there are get_ and set_ methods for almost all of them.
* @return A PropertyProxy that allows you to get or set the property of the value, or receive notification when
* the value of the property changes.
*/
Glib::PropertyProxy< int > property_wrap_width() ;
#endif //#GLIBMM_PROPERTIES_ENABLED
#ifdef GLIBMM_PROPERTIES_ENABLED
/** Wrap width for laying out the items in a grid.
*
* You rarely need to use properties because there are get_ and set_ methods for almost all of them.
* @return A PropertyProxy that allows you to get or set the property of the value, or receive notification when
* the value of the property changes.
*/
Glib::PropertyProxy_ReadOnly< int > property_wrap_width() const;
#endif //#GLIBMM_PROPERTIES_ENABLED
#ifdef GLIBMM_PROPERTIES_ENABLED
/** TreeModel column containing the row span values.
*
* You rarely need to use properties because there are get_ and set_ methods for almost all of them.
* @return A PropertyProxy that allows you to get or set the property of the value, or receive notification when
* the value of the property changes.
*/
Glib::PropertyProxy< int > property_row_span_column() ;
#endif //#GLIBMM_PROPERTIES_ENABLED
#ifdef GLIBMM_PROPERTIES_ENABLED
/** TreeModel column containing the row span values.
*
* You rarely need to use properties because there are get_ and set_ methods for almost all of them.
* @return A PropertyProxy that allows you to get or set the property of the value, or receive notification when
* the value of the property changes.
*/
Glib::PropertyProxy_ReadOnly< int > property_row_span_column() const;
#endif //#GLIBMM_PROPERTIES_ENABLED
#ifdef GLIBMM_PROPERTIES_ENABLED
/** TreeModel column containing the column span values.
*
* You rarely need to use properties because there are get_ and set_ methods for almost all of them.
* @return A PropertyProxy that allows you to get or set the property of the value, or receive notification when
* the value of the property changes.
*/
Glib::PropertyProxy< int > property_column_span_column() ;
#endif //#GLIBMM_PROPERTIES_ENABLED
#ifdef GLIBMM_PROPERTIES_ENABLED
/** TreeModel column containing the column span values.
*
* You rarely need to use properties because there are get_ and set_ methods for almost all of them.
* @return A PropertyProxy that allows you to get or set the property of the value, or receive notification when
* the value of the property changes.
*/
Glib::PropertyProxy_ReadOnly< int > property_column_span_column() const;
#endif //#GLIBMM_PROPERTIES_ENABLED
#ifdef GLIBMM_PROPERTIES_ENABLED
/** The item which is currently active.
*
* You rarely need to use properties because there are get_ and set_ methods for almost all of them.
* @return A PropertyProxy that allows you to get or set the property of the value, or receive notification when
* the value of the property changes.
*/
Glib::PropertyProxy< int > property_active() ;
#endif //#GLIBMM_PROPERTIES_ENABLED
#ifdef GLIBMM_PROPERTIES_ENABLED
/** The item which is currently active.
*
* You rarely need to use properties because there are get_ and set_ methods for almost all of them.
* @return A PropertyProxy that allows you to get or set the property of the value, or receive notification when
* the value of the property changes.
*/
Glib::PropertyProxy_ReadOnly< int > property_active() const;
#endif //#GLIBMM_PROPERTIES_ENABLED
#ifdef GLIBMM_PROPERTIES_ENABLED
/** Whether dropdowns should have a tearoff menu item.
*
* You rarely need to use properties because there are get_ and set_ methods for almost all of them.
* @return A PropertyProxy that allows you to get or set the property of the value, or receive notification when
* the value of the property changes.
*/
Glib::PropertyProxy< bool > property_add_tearoffs() ;
#endif //#GLIBMM_PROPERTIES_ENABLED
#ifdef GLIBMM_PROPERTIES_ENABLED
/** Whether dropdowns should have a tearoff menu item.
*
* You rarely need to use properties because there are get_ and set_ methods for almost all of them.
* @return A PropertyProxy that allows you to get or set the property of the value, or receive notification when
* the value of the property changes.
*/
Glib::PropertyProxy_ReadOnly< bool > property_add_tearoffs() const;
#endif //#GLIBMM_PROPERTIES_ENABLED
#ifdef GLIBMM_PROPERTIES_ENABLED
/** Whether the combo box draws a frame around the child.
*
* You rarely need to use properties because there are get_ and set_ methods for almost all of them.
* @return A PropertyProxy that allows you to get or set the property of the value, or receive notification when
* the value of the property changes.
*/
Glib::PropertyProxy< bool > property_has_frame() ;
#endif //#GLIBMM_PROPERTIES_ENABLED
#ifdef GLIBMM_PROPERTIES_ENABLED
/** Whether the combo box draws a frame around the child.
*
* You rarely need to use properties because there are get_ and set_ methods for almost all of them.
* @return A PropertyProxy that allows you to get or set the property of the value, or receive notification when
* the value of the property changes.
*/
Glib::PropertyProxy_ReadOnly< bool > property_has_frame() const;
#endif //#GLIBMM_PROPERTIES_ENABLED
#ifdef GLIBMM_PROPERTIES_ENABLED
/** Whether the combo box grabs focus when it is clicked with the mouse.
*
* You rarely need to use properties because there are get_ and set_ methods for almost all of them.
* @return A PropertyProxy that allows you to get or set the property of the value, or receive notification when
* the value of the property changes.
*/
Glib::PropertyProxy< bool > property_focus_on_click() ;
#endif //#GLIBMM_PROPERTIES_ENABLED
#ifdef GLIBMM_PROPERTIES_ENABLED
/** Whether the combo box grabs focus when it is clicked with the mouse.
*
* You rarely need to use properties because there are get_ and set_ methods for almost all of them.
* @return A PropertyProxy that allows you to get or set the property of the value, or receive notification when
* the value of the property changes.
*/
Glib::PropertyProxy_ReadOnly< bool > property_focus_on_click() const;
#endif //#GLIBMM_PROPERTIES_ENABLED
#ifdef GLIBMM_PROPERTIES_ENABLED
/** A title that may be displayed by the window manager when the popup is torn-off.
*
* You rarely need to use properties because there are get_ and set_ methods for almost all of them.
* @return A PropertyProxy that allows you to get or set the property of the value, or receive notification when
* the value of the property changes.
*/
Glib::PropertyProxy< Glib::ustring > property_tearoff_title() ;
#endif //#GLIBMM_PROPERTIES_ENABLED
#ifdef GLIBMM_PROPERTIES_ENABLED
/** A title that may be displayed by the window manager when the popup is torn-off.
*
* You rarely need to use properties because there are get_ and set_ methods for almost all of them.
* @return A PropertyProxy that allows you to get or set the property of the value, or receive notification when
* the value of the property changes.
*/
Glib::PropertyProxy_ReadOnly< Glib::ustring > property_tearoff_title() const;
#endif //#GLIBMM_PROPERTIES_ENABLED
#ifdef GLIBMM_PROPERTIES_ENABLED
/** Whether the combo's dropdown is shown.
*
* You rarely need to use properties because there are get_ and set_ methods for almost all of them.
* @return A PropertyProxy that allows you to get or set the property of the value, or receive notification when
* the value of the property changes.
*/
Glib::PropertyProxy_ReadOnly< bool > property_popup_shown() const;
#endif //#GLIBMM_PROPERTIES_ENABLED
#ifdef GLIBMM_PROPERTIES_ENABLED
/** Whether the dropdown button is sensitive when the model is empty.
*
* You rarely need to use properties because there are get_ and set_ methods for almost all of them.
* @return A PropertyProxy that allows you to get or set the property of the value, or receive notification when
* the value of the property changes.
*/
Glib::PropertyProxy< SensitivityType > property_button_sensitivity() ;
#endif //#GLIBMM_PROPERTIES_ENABLED
#ifdef GLIBMM_PROPERTIES_ENABLED
/** Whether the dropdown button is sensitive when the model is empty.
*
* You rarely need to use properties because there are get_ and set_ methods for almost all of them.
* @return A PropertyProxy that allows you to get or set the property of the value, or receive notification when
* the value of the property changes.
*/
Glib::PropertyProxy_ReadOnly< SensitivityType > property_button_sensitivity() const;
#endif //#GLIBMM_PROPERTIES_ENABLED
#ifdef GLIBMM_PROPERTIES_ENABLED
/** Whether the popup's width should be a fixed width matching the allocated width of the combo box.
*
* You rarely need to use properties because there are get_ and set_ methods for almost all of them.
* @return A PropertyProxy that allows you to get or set the property of the value, or receive notification when
* the value of the property changes.
*/
Glib::PropertyProxy< bool > property_popup_fixed_width() ;
#endif //#GLIBMM_PROPERTIES_ENABLED
#ifdef GLIBMM_PROPERTIES_ENABLED
/** Whether the popup's width should be a fixed width matching the allocated width of the combo box.
*
* You rarely need to use properties because there are get_ and set_ methods for almost all of them.
* @return A PropertyProxy that allows you to get or set the property of the value, or receive notification when
* the value of the property changes.
*/
Glib::PropertyProxy_ReadOnly< bool > property_popup_fixed_width() const;
#endif //#GLIBMM_PROPERTIES_ENABLED
#ifdef GLIBMM_PROPERTIES_ENABLED
/** The GtkCellArea used to layout cells.
*
* You rarely need to use properties because there are get_ and set_ methods for almost all of them.
* @return A PropertyProxy that allows you to get or set the property of the value, or receive notification when
* the value of the property changes.
*/
Glib::PropertyProxy_ReadOnly< Glib::RefPtr<CellArea> > property_cell_area() const;
#endif //#GLIBMM_PROPERTIES_ENABLED
#ifdef GLIBMM_PROPERTIES_ENABLED
/** Whether combo box has an entry.
*
* You rarely need to use properties because there are get_ and set_ methods for almost all of them.
* @return A PropertyProxy that allows you to get or set the property of the value, or receive notification when
* the value of the property changes.
*/
Glib::PropertyProxy_ReadOnly< bool > property_has_entry() const;
#endif //#GLIBMM_PROPERTIES_ENABLED
#ifdef GLIBMM_PROPERTIES_ENABLED
/** The column in the combo box's model to associate with strings from the entry if the combo was created with #GtkComboBox:has-entry = %TRUE.
*
* You rarely need to use properties because there are get_ and set_ methods for almost all of them.
* @return A PropertyProxy that allows you to get or set the property of the value, or receive notification when
* the value of the property changes.
*/
Glib::PropertyProxy< int > property_entry_text_column() ;
#endif //#GLIBMM_PROPERTIES_ENABLED
#ifdef GLIBMM_PROPERTIES_ENABLED
/** The column in the combo box's model to associate with strings from the entry if the combo was created with #GtkComboBox:has-entry = %TRUE.
*
* You rarely need to use properties because there are get_ and set_ methods for almost all of them.
* @return A PropertyProxy that allows you to get or set the property of the value, or receive notification when
* the value of the property changes.
*/
Glib::PropertyProxy_ReadOnly< int > property_entry_text_column() const;
#endif //#GLIBMM_PROPERTIES_ENABLED
#ifdef GLIBMM_PROPERTIES_ENABLED
/** The column in the combo box's model that provides string IDs for the values in the model.
*
* You rarely need to use properties because there are get_ and set_ methods for almost all of them.
* @return A PropertyProxy that allows you to get or set the property of the value, or receive notification when
* the value of the property changes.
*/
Glib::PropertyProxy< int > property_id_column() ;
#endif //#GLIBMM_PROPERTIES_ENABLED
#ifdef GLIBMM_PROPERTIES_ENABLED
/** The column in the combo box's model that provides string IDs for the values in the model.
*
* You rarely need to use properties because there are get_ and set_ methods for almost all of them.
* @return A PropertyProxy that allows you to get or set the property of the value, or receive notification when
* the value of the property changes.
*/
Glib::PropertyProxy_ReadOnly< int > property_id_column() const;
#endif //#GLIBMM_PROPERTIES_ENABLED
#ifdef GLIBMM_PROPERTIES_ENABLED
/** The value of the id column for the active row.
*
* You rarely need to use properties because there are get_ and set_ methods for almost all of them.
* @return A PropertyProxy that allows you to get or set the property of the value, or receive notification when
* the value of the property changes.
*/
Glib::PropertyProxy< Glib::ustring > property_active_id() ;
#endif //#GLIBMM_PROPERTIES_ENABLED
#ifdef GLIBMM_PROPERTIES_ENABLED
/** The value of the id column for the active row.
*
* You rarely need to use properties because there are get_ and set_ methods for almost all of them.
* @return A PropertyProxy that allows you to get or set the property of the value, or receive notification when
* the value of the property changes.
*/
Glib::PropertyProxy_ReadOnly< Glib::ustring > property_active_id() const;
#endif //#GLIBMM_PROPERTIES_ENABLED
/**
* @par Slot Prototype:
* <tt>void on_my_%changed()</tt>
*
* The changed signal is emitted when the active
* item is changed. The can be due to the user selecting
* a different item from the list, or due to a
* call to Gtk::ComboBox::set_active_iter().
* It will also be emitted while typing into the entry of a combo box
* with an entry.
*
* @newin{2,4}
*/
Glib::SignalProxy0< void > signal_changed();
//TODO: Remove no_defualt_handler when we can break ABI
/**
* @par Slot Prototype:
* <tt>Glib::ustring on_my_%format_entry_text(const TreeModel::Path& path)</tt>
*
* For combo boxes that are created with an entry (See GtkComboBox:has-entry).
*
* A signal which allows you to change how the text displayed in a combo box's
* entry is displayed.
*
* Connect a signal handler which returns an allocated string representing
* @a path. That string will then be used to set the text in the combo box's entry.
* The default signal handler uses the text from the GtkComboBox::entry-text-column
* model column.
*
* Here's an example signal handler which fetches data from the model and
* displays it in the entry.
*
* [C example ellipted]
*
* @newin{3,4}
* @param path The GtkTreePath string from the combo box's current model to format text for.
* @return A newly allocated string representing @a path
* for the current GtkComboBox model.
*/
Glib::SignalProxy1< Glib::ustring,const TreeModel::Path& > signal_format_entry_text();
//Key-binding signals:
};
} // namespace Gtk
namespace Glib
{
/** A Glib::wrap() method for this object.
*
* @param object The C instance.
* @param take_copy False if the result should take ownership of the C instance. True if it should take a new copy or ref.
* @result A C++ instance that wraps this C instance.
*
* @relates Gtk::ComboBox
*/
Gtk::ComboBox* wrap(GtkComboBox* object, bool take_copy = false);
} //namespace Glib
#endif /* _GTKMM_COMBOBOX_H */
| [
"[email protected]"
] | |
89abcf8795c49b60d569392e3f2eb4d511bbc7f1 | b19636dc2176def2912726062a935aba23c8502c | /sw/src/TrackingAction.cc | a775c2fad08fd6792e5591e0c23ba14216e9fabd | [] | no_license | forthommel/pps-timing | cf0ab93bc78d9ee8f7b78bcaf25cebe8368c161f | 8c1d75fb1c9b5031461aa82d0c3e7ee6eecf6127 | refs/heads/master | 2021-01-01T05:34:44.707603 | 2015-05-22T22:27:40 | 2015-05-22T22:27:40 | 29,981,043 | 1 | 6 | null | 2015-05-22T22:27:41 | 2015-01-28T18:12:36 | C++ | UTF-8 | C++ | false | false | 941 | cc | #include "TrackingAction.hh"
namespace PPS
{
TrackingAction::TrackingAction()
{}
TrackingAction::~TrackingAction()
{}
void
TrackingAction::PreUserTrackingAction(const G4Track* aTrack)
{
if (!aTrack->GetParentID() and !aTrack->GetUserInformation()) {
TrackInformation* extra_info = new TrackInformation(aTrack);
G4Track* track = (G4Track*)aTrack;
track->SetUserInformation(extra_info);
}
}
void
TrackingAction::PostUserTrackingAction(const G4Track* aTrack)
{
G4TrackVector* secondaries = fpTrackingManager->GimmeSecondaries();
if (!secondaries) return;
size_t nSeco = secondaries->size();
if (!nSeco) return;
TrackInformation* info = (TrackInformation*)(aTrack->GetUserInformation());
for (size_t i=0; i<nSeco; i++) {
TrackInformation* infoNew = new TrackInformation(info);
(*secondaries)[i]->SetUserInformation(infoNew);
}
}
}
| [
"[email protected]"
] | |
375248cb84cfe419a2d23ba53cba9d7941cfe6b8 | 09179cdbd202e7fae5baf2a0c3d145d3ad606879 | /math/array.h | 44f9aaca2aba3c2c2ba6e136ba5c8e94c85f19bc | [] | no_license | amecky/diesel2D | ffb89faabd925abf88f4eaded5fcd3dc3f4b129b | 978cdbdfef73d1b4437a0d88e260734e865e1f27 | refs/heads/master | 2020-12-13T23:18:24.787635 | 2016-04-14T19:37:40 | 2016-04-14T19:37:40 | 17,738,880 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,430 | h | #pragma once
#include "collection.h"
#include <string.h>
namespace array {
// -----------------------------------------------------
// returns size of the array
// -----------------------------------------------------
template<class T>uint32 size(Array<T>& ar) {
return ar._size;
}
// -----------------------------------------------------
// returns pointer to first element
// -----------------------------------------------------
template<class T>T* begin(Array<T>& ar) {
return ar._data;
}
// -----------------------------------------------------
// returns pointer to the last element
// -----------------------------------------------------
template<class T>T* end(Array<T>& ar) {
return &ar._data[ar._size - 1];
}
// -----------------------------------------------------
// adds an element to the end of the array
// -----------------------------------------------------
template<class T>void add(Array<T>& ar,const T& value) {
if ( ar._size + 1 >= ar._capacity ) {
set_capacity(ar,ar._capacity + BLOCK_SIZE);
}
ar._data[ar._size] = value;
++ar._size;
}
// -----------------------------------------------------
// erase an element at the given position
// -----------------------------------------------------
template<class T>void erase(Array<T>& ar,uint32 index) {
if ( index < ar._size && ar._size > 0 ) {
for ( uint32 i = index; i < ar._capacity - 1; ++ i ) {
ar._data[i] = ar._data[i+1];
}
--ar._size;
}
}
// -----------------------------------------------------
// clear entire array
// -----------------------------------------------------
template<class T>void clear(Array<T>& ar) {
ar._size = 0;
ar._capacity = 0;
}
// -------------------------------------------------------
// erase element at give position and returns pointer
// to now current element at this position
// -------------------------------------------------------
template<class T>T* remove(uint32 index) {
}
// -----------------------------------------------------
// sets new capacity if the new capacity is greater
// current capacity
// -----------------------------------------------------
template<class T>void set_capacity(Array<T>& ar,uint32 capacity) {
if ( capacity > ar._capacity ) {
T* tmp = new T[capacity];
T* td = ar._data;
memcpy(tmp,td,sizeof(T)*ar._size);
ar._data = tmp;
delete td;
ar._capacity = capacity;
}
}
} | [
"[email protected]"
] | |
ad7f06c105f377b85927a563305cb73ca3169e2b | d67cb36c71782c369144d17e7d99819a92222ddd | /leetcode/balanced_binary_tree.cpp | 07adad9d312045dc9bde26858d754bdae7304074 | [] | no_license | prodigyaj/turbo-octo-lana | 244e619cb67de4a974a65931774b0d3ff1fca4ff | 607afb68fdef369a5a80f67a3fce05a141987c13 | refs/heads/master | 2020-05-17T12:50:24.750468 | 2015-04-23T02:27:59 | 2015-04-23T02:27:59 | 27,248,188 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 630 | cpp | /**
* Definition for binary tree
* struct TreeNode {
* int val;
* TreeNode *left;
* TreeNode *right;
* TreeNode(int x) : val(x), left(NULL), right(NULL) {}
* };
*/
class Solution {
public:
int findDiff(TreeNode *root)
{
if(root == NULL)return 0;
return 1+max(findDiff(root->left),findDiff(root->right));
}
bool isBalanced(TreeNode *root) {
if(root == NULL)return true;
int val = abs(findDiff(root->left)-findDiff(root->right));
if(val < 2 && isBalanced(root->left) && isBalanced(root->right))
return true;
return false;
}
};
| [
"[email protected]"
] | |
c6944ab236ef3304736902c12b51f8b8f35d280e | 7b5787e97cc8a73c80d524891ad58398086e261a | /ObjectExplorer/MainFrm.h | 7e8cb3eac7266684d8065629e2edba37a51fbcbd | [
"MIT"
] | permissive | zx0CF1/ObjectExplorer | 67fac8d884d889184536f63401e6066b4daff395 | bc47dbf2f735ec114fd5b02478c628a3c73c4961 | refs/heads/master | 2022-07-14T16:48:02.335085 | 2020-05-16T09:00:23 | 2020-05-16T09:00:23 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,720 | h | // MainFrm.h : interface of the CMainFrame class
//
/////////////////////////////////////////////////////////////////////////////
#pragma once
#include "ObjectManager.h"
#include "INterfaces.h"
#include "ToolBarHelper.h"
class CMainFrame :
public CFrameWindowImpl<CMainFrame>,
public CAutoUpdateUI<CMainFrame>,
public CToolBarHelper<CMainFrame>,
public IMainFrame,
public CMessageFilter,
public CIdleHandler {
public:
DECLARE_FRAME_WND_CLASS(nullptr, IDR_MAINFRAME)
CMainFrame();
BOOL PreTranslateMessage(MSG* pMsg) override;
BOOL OnIdle() override;
void OnFinalMessage(HWND) override;
CCommandBarCtrl m_CmdBar;
// Inherited via IMainFrame
BOOL TrackPopupMenu(HMENU hMenu, HWND hWnd, POINT*, UINT) override;
HIMAGELIST GetImageList() override;
int GetIconIndexByType(PCWSTR type) const override;
void ShowAllHandles(PCWSTR type) override;
void ShowAllObjects(PCWSTR type) override;
CUpdateUIBase* GetUpdateUI() override;
BEGIN_MSG_MAP(CMainFrame)
MESSAGE_HANDLER(WM_TIMER, OnTimer)
MESSAGE_HANDLER(WM_CREATE, OnCreate)
MESSAGE_HANDLER(WM_DESTROY, OnDestroy)
COMMAND_ID_HANDLER(ID_APP_EXIT, OnFileExit)
COMMAND_ID_HANDLER(ID_VIEW_TOOLBAR, OnViewToolBar)
COMMAND_ID_HANDLER(ID_VIEW_STATUS_BAR, OnViewStatusBar)
COMMAND_ID_HANDLER(ID_APP_ABOUT, OnAppAbout)
COMMAND_ID_HANDLER(ID_WINDOW_CLOSE, OnWindowClose)
COMMAND_ID_HANDLER(ID_OBJECTS_ALLOBJECTTYPES, OnShowAllTypes)
COMMAND_ID_HANDLER(ID_OBJECTS_ALLOBJECTS, OnViewAllObjects)
COMMAND_ID_HANDLER(ID_HANDLES_PIPES, OnShowAllPipes)
COMMAND_ID_HANDLER(ID_OBJECTS_MAILSLOTS, OnShowAllMailslots)
COMMAND_ID_HANDLER(ID_HANDLES_ALLHANDLES, OnShowAllHandles)
COMMAND_ID_HANDLER(ID_HANDLES_SHOWHANDLEINPROCESS, OnShowHandlesInProcess)
COMMAND_ID_HANDLER(ID_SYSTEM_SERVICES, OnViewSystemServices)
COMMAND_ID_HANDLER(ID_SYSTEM_DEVICES, OnViewSystemDevices)
COMMAND_ID_HANDLER(ID_WINDOW_CLOSE_ALL, OnWindowCloseAll)
COMMAND_ID_HANDLER(ID_WINDOW_CLOSEALLBUTTHIS, OnCloseAllButThis)
COMMAND_ID_HANDLER(ID_OPTIONS_ALWAYSONTOP, OnAlwaysOnTop)
COMMAND_ID_HANDLER(ID_OBJECTS_OBJECTMANAGER, OnShowObjectManager)
COMMAND_ID_HANDLER(ID_DESKTOPS_ALLWINDOWS, OnShowAllWindows)
COMMAND_ID_HANDLER(ID_FILE_RUNASADMINISTRATOR, OnRunAsAdmin)
COMMAND_ID_HANDLER(ID_TAB_NEWWINDOW, OnNewWindow)
COMMAND_ID_HANDLER(ID_PROCESS_MEMORYMAP, OnProcessMemoryMap)
COMMAND_ID_HANDLER(ID_PROCESS_MODULES, OnProcessModules)
COMMAND_ID_HANDLER(ID_PROCESS_THREADS, OnProcessThreads)
COMMAND_ID_HANDLER(ID_GUI_ALLWINDOWSINDEFAULTDESKTOP, OnShowAllWindowsDefaultDesktop)
COMMAND_RANGE_HANDLER(ID_WINDOW_TABFIRST, ID_WINDOW_TABLAST, OnWindowActivate)
COMMAND_RANGE_HANDLER(ID_SHOWOBJECTSOFTYPE_PROCESS, ID_SHOWOBJECTSOFTYPE_PROCESS + 17, OnShowObjectOfType)
COMMAND_RANGE_HANDLER(ID_SHOWHANDLESOFTYPE_PROCESS, ID_SHOWHANDLESOFTYPE_PROCESS + 17, OnShowHandlesOfType)
COMMAND_RANGE_HANDLER(32768, 65535, OnForward)
NOTIFY_CODE_HANDLER(TBVN_PAGEACTIVATED, OnTabActivated)
NOTIFY_CODE_HANDLER(TBVN_CONTEXTMENU, OnTabContextMenu)
NOTIFY_HANDLER(ATL_IDW_TOOLBAR, NM_RCLICK, OnBandRightClick)
CHAIN_MSG_MAP(CAutoUpdateUI<CMainFrame>)
CHAIN_MSG_MAP(CFrameWindowImpl<CMainFrame>)
CHAIN_MSG_MAP(CToolBarHelper<CMainFrame>)
REFLECT_NOTIFICATIONS()
END_MSG_MAP()
// Handler prototypes (uncomment arguments if needed):
// LRESULT MessageHandler(UINT /*uMsg*/, WPARAM /*wParam*/, LPARAM /*lParam*/, BOOL& /*bHandled*/)
// LRESULT CommandHandler(WORD /*wNotifyCode*/, WORD /*wID*/, HWND /*hWndCtl*/, BOOL& /*bHandled*/)
// LRESULT NotifyHandler(int /*idCtrl*/, LPNMHDR /*pnmh*/, BOOL& /*bHandled*/)
private:
LRESULT OnProcessMemoryMap(WORD /*wNotifyCode*/, WORD /*wID*/, HWND /*hWndCtl*/, BOOL& /*bHandled*/);
LRESULT OnProcessThreads(WORD /*wNotifyCode*/, WORD /*wID*/, HWND /*hWndCtl*/, BOOL& /*bHandled*/);
LRESULT OnProcessModules(WORD /*wNotifyCode*/, WORD /*wID*/, HWND /*hWndCtl*/, BOOL& /*bHandled*/);
LRESULT OnNewWindow(WORD /*wNotifyCode*/, WORD /*wID*/, HWND /*hWndCtl*/, BOOL& /*bHandled*/);
LRESULT OnTabActivated(int /*idCtrl*/, LPNMHDR /*pnmh*/, BOOL& /*bHandled*/);
LRESULT OnTabContextMenu(int /*idCtrl*/, LPNMHDR /*pnmh*/, BOOL& /*bHandled*/);
LRESULT OnCreate(UINT /*uMsg*/, WPARAM /*wParam*/, LPARAM /*lParam*/, BOOL& /*bHandled*/);
LRESULT OnTimer(UINT /*uMsg*/, WPARAM /*wParam*/, LPARAM /*lParam*/, BOOL& /*bHandled*/);
LRESULT OnDestroy(UINT /*uMsg*/, WPARAM /*wParam*/, LPARAM /*lParam*/, BOOL& bHandled);
LRESULT OnFileExit(WORD /*wNotifyCode*/, WORD /*wID*/, HWND /*hWndCtl*/, BOOL& /*bHandled*/);
LRESULT OnViewSystemServices(WORD /*wNotifyCode*/, WORD /*wID*/, HWND /*hWndCtl*/, BOOL& /*bHandled*/);
LRESULT OnViewSystemDevices(WORD /*wNotifyCode*/, WORD /*wID*/, HWND /*hWndCtl*/, BOOL& /*bHandled*/);
LRESULT OnViewAllObjects(WORD /*wNotifyCode*/, WORD /*wID*/, HWND /*hWndCtl*/, BOOL& /*bHandled*/);
LRESULT OnShowAllHandles(WORD /*wNotifyCode*/, WORD /*wID*/, HWND /*hWndCtl*/, BOOL& /*bHandled*/);
LRESULT OnForwardMsg(WORD /*wNotifyCode*/, WORD /*wID*/, HWND /*hWndCtl*/, BOOL& /*bHandled*/);
LRESULT OnViewToolBar(WORD /*wNotifyCode*/, WORD /*wID*/, HWND /*hWndCtl*/, BOOL& /*bHandled*/);
LRESULT OnViewStatusBar(WORD /*wNotifyCode*/, WORD /*wID*/, HWND /*hWndCtl*/, BOOL& /*bHandled*/);
LRESULT OnAppAbout(WORD /*wNotifyCode*/, WORD /*wID*/, HWND /*hWndCtl*/, BOOL& /*bHandled*/);
LRESULT OnWindowClose(WORD /*wNotifyCode*/, WORD /*wID*/, HWND /*hWndCtl*/, BOOL& /*bHandled*/);
LRESULT OnWindowCloseAll(WORD /*wNotifyCode*/, WORD /*wID*/, HWND /*hWndCtl*/, BOOL& /*bHandled*/);
LRESULT OnCloseAllButThis(WORD /*wNotifyCode*/, WORD /*wID*/, HWND /*hWndCtl*/, BOOL& /*bHandled*/);
LRESULT OnWindowActivate(WORD /*wNotifyCode*/, WORD /*wID*/, HWND /*hWndCtl*/, BOOL& /*bHandled*/);
LRESULT OnShowObjectOfType(WORD /*wNotifyCode*/, WORD /*wID*/, HWND /*hWndCtl*/, BOOL& /*bHandled*/);
LRESULT OnShowHandlesOfType(WORD /*wNotifyCode*/, WORD /*wID*/, HWND /*hWndCtl*/, BOOL& /*bHandled*/);
LRESULT OnShowAllTypes(WORD /*wNotifyCode*/, WORD /*wID*/, HWND /*hWndCtl*/, BOOL& /*bHandled*/);
LRESULT OnShowHandlesInProcess(WORD /*wNotifyCode*/, WORD /*wID*/, HWND /*hWndCtl*/, BOOL& /*bHandled*/);
LRESULT OnForward(WORD /*wNotifyCode*/, WORD /*wID*/, HWND /*hWndCtl*/, BOOL& /*bHandled*/);
LRESULT OnAlwaysOnTop(WORD /*wNotifyCode*/, WORD /*wID*/, HWND /*hWndCtl*/, BOOL& /*bHandled*/);
LRESULT OnShowObjectManager(WORD /*wNotifyCode*/, WORD /*wID*/, HWND /*hWndCtl*/, BOOL& /*bHandled*/);
LRESULT OnShowAllWindows(WORD /*wNotifyCode*/, WORD /*wID*/, HWND /*hWndCtl*/, BOOL& /*bHandled*/);
LRESULT OnShowAllWindowsDefaultDesktop(WORD /*wNotifyCode*/, WORD /*wID*/, HWND /*hWndCtl*/, BOOL& /*bHandled*/);
LRESULT OnRunAsAdmin(WORD /*wNotifyCode*/, WORD /*wID*/, HWND /*hWndCtl*/, BOOL& /*bHandled*/);
LRESULT OnBandRightClick(int /*idCtrl*/, LPNMHDR /*pnmh*/, BOOL& /*bHandled*/);
LRESULT OnShowAllPipes(WORD /*wNotifyCode*/, WORD /*wID*/, HWND /*hWndCtl*/, BOOL& /*bHandled*/);
LRESULT OnShowAllMailslots(WORD /*wNotifyCode*/, WORD /*wID*/, HWND /*hWndCtl*/, BOOL& /*bHandled*/);
LRESULT OnDetachTab(WORD /*wNotifyCode*/, WORD /*wID*/, HWND /*hWndCtl*/, BOOL& /*bHandled*/);
private:
void CloseAllBut(int page);
void InitCommandBar();
void InitToolBar(CToolBarCtrl& tb);
bool DetachTab(int index);
LRESULT ShowNotImplemented();
private:
CTabView m_view;
CMultiPaneStatusBarCtrl m_StatusBar;
ObjectManager m_ObjMgr;
inline static CImageListManaged m_TabImages;
inline static std::unordered_map<std::wstring, int> m_IconMap;
int m_CurrentPage = -1;
inline static int m_ObjectsIcon, m_TypesIcon, m_HandlesIcon, m_ObjectManagerIcon, m_WindowsIcon, m_ServicesIcon;
inline static int m_DevicesIcon, m_MemoryIcon;
inline static int s_Frames;
};
| [
"[email protected]"
] | |
75590660cff2f5e7517a80134ea4526ed4626756 | 400cf7a72ef2243909284fb3d90ad1305f0bba6b | /source/FileWatcherLinux.cpp | 00473b2c36dd00d2faf28abd30fff44e79805eff | [
"MIT"
] | permissive | warrengalyen/filehawk | 0d0988e56abd53df4af55793d6ac895be252081a | ae134b3f9eb7fcd14c4aeb85671df2933064ec3b | refs/heads/master | 2020-03-25T03:17:50.358524 | 2018-08-02T19:05:56 | 2018-08-02T19:05:56 | 143,333,685 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,309 | cpp | #include <filehawk/FileWatcherLinux.h>
#if FILEWATCHER_PLATFORM == FILEWATCHER_PLATFORM_LINUX
#include <sys/stat.h>
#include <fcntl.h>
#include <string.h>
#include <stdio.h>
#include <errno.h>
#include <unistd.h> // read
#include <sys/inotify.h>
#define BUFF_SIZE ((sizeof(struct inotify_event) + FILENAME_MAX) * 1024)
namespace fs
{
struct WatchStruct
{
WatchID mWatchID;
String mDirName;
FileWatchListener* mListener;
};
//--------
FileWatcherLinux::FileWatcherLinux()
{
mFD = inotify_init();
if (mFD < 0)
fprintf (stderr, "Error: %s\n", strerror(errno));
mTimeOut.tv_sec = 0;
mTimeOut.tv_usec = 0;
FD_ZERO(&mDescriptorSet);
}
//--------
FileWatcherLinux::~FileWatcherLinux()
{
WatchMap::iterator iter = mWatches.begin();
WatchMap::iterator end = mWatches.end();
for(; iter != end; ++iter)
{
delete iter->second;
}
mWatches.clear();
}
//--------
WatchID FileWatcherLinux::addWatch(const String& directory, FileWatchListener* watcher, bool recursive)
{
int wd = inotify_add_watch (mFD, directory.c_str(),
IN_CLOSE_WRITE | IN_MOVED_TO | IN_CREATE | IN_MOVED_FROM | IN_DELETE);
if (wd < 0)
{
if(errno == ENOENT)
throw FileNotFoundException(directory);
else
throw Exception(strerror(errno));
//fprintf (stderr, "Error: %s\n", strerror(errno));
//return -1;
}
WatchStruct* pWatch = new WatchStruct();
pWatch->mListener = watcher;
pWatch->mWatchID = wd;
pWatch->mDirName = directory;
mWatches.insert(std::make_pair(wd, pWatch));
return wd;
}
//--------
void FileWatcherLinux::removeWatch(const String& directory)
{
WatchMap::iterator iter = mWatches.begin();
WatchMap::iterator end = mWatches.end();
for(; iter != end; ++iter)
{
if(directory == iter->second->mDirName)
{
removeWatch(iter->first);
return;
}
}
}
//--------
void FileWatcherLinux::removeWatch(WatchID watchid)
{
WatchMap::iterator iter = mWatches.find(watchid);
if(iter == mWatches.end())
return;
WatchStruct* watch = iter->second;
mWatches.erase(iter);
inotify_rm_watch(mFD, watchid);
delete watch;
watch = 0;
}
//--------
void FileWatcherLinux::update()
{
FD_SET(mFD, &mDescriptorSet);
int ret = select(mFD + 1, &mDescriptorSet, NULL, NULL, &mTimeOut);
if(ret < 0)
{
perror("select");
}
else if(FD_ISSET(mFD, &mDescriptorSet))
{
ssize_t len, i = 0;
char action[81+FILENAME_MAX] = {0};
char buff[BUFF_SIZE] = {0};
len = read (mFD, buff, BUFF_SIZE);
while (i < len)
{
struct inotify_event *pevent = (struct inotify_event *)&buff[i];
WatchStruct* watch = mWatches[pevent->wd];
handleAction(watch, pevent->name, pevent->mask);
i += sizeof(struct inotify_event) + pevent->len;
}
}
}
//--------
void FileWatcherLinux::handleAction(WatchStruct* watch, const String& filename, unsigned long action)
{
if(!watch->mListener)
return;
if(IN_CLOSE_WRITE & action)
{
watch->mListener->handleFileAction(watch->mWatchID, watch->mDirName, filename,
Actions::Modified);
}
if(IN_MOVED_TO & action || IN_CREATE & action)
{
watch->mListener->handleFileAction(watch->mWatchID, watch->mDirName, filename,
Actions::Add);
}
if(IN_MOVED_FROM & action || IN_DELETE & action)
{
watch->mListener->handleFileAction(watch->mWatchID, watch->mDirName, filename,
Actions::Delete);
}
}
} // namespace fs
#endif // FILEWATCHER_PLATFORM_LINUX | [
"[email protected]"
] | |
c91c64cf3bf4316089822aa18504723112f1e302 | 3c85eda2053d2c470224310d459d4d6822c126b9 | /Player.h | f03280abde60a67ca2c637a02f1c4aa9bb85767f | [] | no_license | abhishekpapanna/Qt-GameNew | 849e1eb3d09f09a1009c226b7fad0bb2c609e4db | 7b859c883a4d272330da7de55dedde81f7d7243f | refs/heads/master | 2022-10-25T09:41:29.287274 | 2020-06-18T14:52:02 | 2020-06-18T14:52:02 | 273,259,768 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 437 | h | #ifndef PLAYER_H
#define PLAYER_H
#include <QGraphicsPixmapItem>
#include <QGraphicsItem>
#include <QObject>
#include <QMediaPlayer>
class Player : public QObject, public QGraphicsPixmapItem {
Q_OBJECT
public:
Player (QGraphicsItem * parent=0);
void keyPressEvent(QKeyEvent * event);
public slots:
void spawn();
void endgame();
private:
int bullets=50;
QMediaPlayer * bulletsound;
};
#endif // PLAYER_H
| [
"[email protected]"
] | |
7d979bc4fd93002d727d3d812901c0deae7134d7 | 3c2001cfbb716251f7cb8c6b5626e48a3db02108 | /gui_source/guimainwindow.cpp | 4489d928f65c0d5be0ad548b1a27379fe3be93b1 | [
"MIT"
] | permissive | Radhey100/XPEViewer | 019bc45ca36d4ffb03e5dad3e2efe6da97bdc97e | 727c6bf088625e420cfddbc19c1a282058be3baf | refs/heads/master | 2023-08-29T03:52:30.541629 | 2021-10-17T15:49:52 | 2021-10-17T15:49:52 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,583 | cpp | // copyright (c) 2020-2021 hors<[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.
//
#include "guimainwindow.h"
#include "ui_guimainwindow.h"
GuiMainWindow::GuiMainWindow(QWidget *pParent) :
QMainWindow(pParent),
ui(new Ui::GuiMainWindow)
{
ui->setupUi(this);
g_pFile=nullptr;
setWindowTitle(XOptions::getTitle(X_APPLICATIONDISPLAYNAME,X_APPLICATIONVERSION));
setAcceptDrops(true);
g_xOptions.setName(X_OPTIONSFILE);
QList<XOptions::ID> listIDs;
listIDs.append(XOptions::ID_STYLE);
listIDs.append(XOptions::ID_QSS);
listIDs.append(XOptions::ID_LANG);
listIDs.append(XOptions::ID_STAYONTOP);
listIDs.append(XOptions::ID_SAVELASTDIRECTORY);
// listIDs.append(XOptions::ID_SAVERECENTFILES);
listIDs.append(XOptions::ID_SAVEBACKUP);
listIDs.append(XOptions::ID_SEARCHSIGNATURESPATH);
listIDs.append(XOptions::ID_SHOWLOGO);
g_xOptions.setValueIDs(listIDs);
g_xOptions.load();
g_xShortcuts.setName(X_SHORTCUTSFILE);
g_xShortcuts.addGroup(XShortcuts::GROUPID_STRINGS);
g_xShortcuts.addGroup(XShortcuts::GROUPID_SIGNATURES);
g_xShortcuts.addGroup(XShortcuts::GROUPID_HEX);
g_xShortcuts.addGroup(XShortcuts::GROUPID_DISASM);
g_xShortcuts.load();
adjust();
if(QCoreApplication::arguments().count()>1)
{
QString sFileName=QCoreApplication::arguments().at(1);
processFile(sFileName);
}
}
GuiMainWindow::~GuiMainWindow()
{
closeCurrentFile();
g_xOptions.save();
g_xShortcuts.save();
delete ui;
}
void GuiMainWindow::on_actionOpen_triggered()
{
QString sDirectory=g_xOptions.getLastDirectory();
QString sFileName=QFileDialog::getOpenFileName(this,tr("Open file")+QString("..."),sDirectory,tr("All files")+QString(" (*)"));
if(!sFileName.isEmpty())
{
processFile(sFileName);
}
}
void GuiMainWindow::on_actionClose_triggered()
{
closeCurrentFile();
}
void GuiMainWindow::on_actionExit_triggered()
{
this->close();
}
void GuiMainWindow::on_actionOptions_triggered()
{
DialogOptions dialogOptions(this,&g_xOptions);
dialogOptions.exec();
adjust();
}
void GuiMainWindow::on_actionAbout_triggered()
{
DialogAbout dialogAbout(this);
dialogAbout.exec();
}
void GuiMainWindow::adjust()
{
g_xOptions.adjustStayOnTop(this);
g_formatOptions.sSearchSignaturesPath=g_xOptions.getSearchSignaturesPath();
g_formatOptions.bIsSaveBackup=g_xOptions.isSaveBackup();
ui->widgetViewer->setOptions(g_formatOptions);
ui->widgetViewer->setShortcuts(&g_xShortcuts);
if(g_xOptions.isShowLogo())
{
ui->labelLogo->show();
}
else
{
ui->labelLogo->hide();
}
}
void GuiMainWindow::processFile(QString sFileName)
{
if((sFileName!="")&&(QFileInfo(sFileName).isFile()))
{
g_xOptions.setLastFileName(sFileName);
closeCurrentFile();
g_pFile=new QFile;
g_pFile->setFileName(sFileName);
if(!g_pFile->open(QIODevice::ReadWrite))
{
if(!g_pFile->open(QIODevice::ReadOnly))
{
closeCurrentFile();
}
}
if(g_pFile)
{
XPE pe(g_pFile);
if(pe.isValid())
{
ui->stackedWidgetMain->setCurrentIndex(1);
g_formatOptions.bIsImage=false;
g_formatOptions.nImageBase=-1;
g_formatOptions.nStartType=SPE::TYPE_HEURISTICSCAN;
g_formatOptions.sSearchSignaturesPath=g_xOptions.getSearchSignaturesPath();
g_formatOptions.bIsSaveBackup=g_xOptions.isSaveBackup();
ui->widgetViewer->setData(g_pFile,g_formatOptions,0,0,0);
ui->widgetViewer->reload();
adjust();
setWindowTitle(sFileName);
}
else
{
QMessageBox::critical(this,tr("Error"),tr("It is not a valid file"));
}
}
else
{
QMessageBox::critical(this,tr("Error"),tr("Cannot open file"));
}
}
}
void GuiMainWindow::closeCurrentFile()
{
ui->stackedWidgetMain->setCurrentIndex(0);
if(g_pFile)
{
g_pFile->close();
delete g_pFile;
g_pFile=nullptr;
}
setWindowTitle(QString("%1 v%2").arg(X_APPLICATIONDISPLAYNAME,X_APPLICATIONVERSION));
}
void GuiMainWindow::dragEnterEvent(QDragEnterEvent *event)
{
event->acceptProposedAction();
}
void GuiMainWindow::dragMoveEvent(QDragMoveEvent *event)
{
event->acceptProposedAction();
}
void GuiMainWindow::dropEvent(QDropEvent *event)
{
const QMimeData* mimeData=event->mimeData();
if(mimeData->hasUrls())
{
QList<QUrl> urlList=mimeData->urls();
if(urlList.count())
{
QString sFileName=urlList.at(0).toLocalFile();
sFileName=XBinary::convertFileName(sFileName);
processFile(sFileName);
}
}
}
void GuiMainWindow::on_actionShortcuts_triggered()
{
DialogShortcuts dialogShortcuts(this);
dialogShortcuts.setData(&g_xShortcuts);
dialogShortcuts.exec();
adjust();
}
void GuiMainWindow::on_actionDemangle_triggered()
{
DialogDemangle dialogDemangle(this);
dialogDemangle.exec();
}
| [
"[email protected]"
] | |
83b9db65c82c27ff37e769c548ded846542e6c5c | 777a75e6ed0934c193aece9de4421f8d8db01aac | /src/Providers/UNIXProviders/SharingDependency/UNIX_SharingDependency_AIX.hxx | 9744aa5d7b4d692ebe5f42b0efba9f8f2e21c5a4 | [
"MIT"
] | permissive | brunolauze/openpegasus-providers-old | 20fc13958016e35dc4d87f93d1999db0eae9010a | b00f1aad575bae144b8538bf57ba5fd5582a4ec7 | refs/heads/master | 2021-01-01T20:05:44.559362 | 2014-04-30T17:50:06 | 2014-04-30T17:50:06 | 19,132,738 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 128 | hxx | #ifdef PEGASUS_OS_AIX
#ifndef __UNIX_SHARINGDEPENDENCY_PRIVATE_H
#define __UNIX_SHARINGDEPENDENCY_PRIVATE_H
#endif
#endif
| [
"[email protected]"
] | |
763625b72d9d89a3adeb45caebc04d3f71ea97a3 | a17092ecbb446c64129720491c5a409dfee08c55 | /Projects/V2X/src/GHDMA3A/CanDriver.h | 832d4d327d58a1d45567c1c52864b05dac9836e0 | [] | no_license | zhangweijia-fuma/JCL | 95f9a48c5c02754ea6db13a63ab46d959d025d9b | 1323e6e51cadb26df7d08b816094fa2e141c3cc4 | refs/heads/main | 2023-01-01T11:35:38.247449 | 2020-10-27T07:54:14 | 2020-10-27T07:54:14 | 307,623,634 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,587 | h | // ------------------------------------------------------------------------------
// RSU Driver - Component :: V2X CAN Driver definition
// Copyright (c) 2015-2020 JamesSoft Tech. Ltd.. All rights reserved.
// Author: Zhang Weijia
// ------------------------------------------------------------------------------
// Name: CanDriver.h
// Purpose: RSU module
//-------------------------------------------------------------------------------
#ifndef _CAN_DRIVER_H_
#define _CAN_DRIVER_H_
#include "Debug.h"
#include "MsgBase.h"
#define DEFAULT_CAN_INTERFACE "can0"
#define DEFAULT_SEND_TIMES 100
class CDMA3ACANDriver : public CObjBase
{
public:
CDMA3ACANDriver();
~CDMA3ACANDriver();
public:
bool InitialBorad(MSG_CALLBACK pCallback, LPVOID pCallbackParam);
bool LoadConfig();
static void* DriverThread(LPVOID pParam);
void StartDriver();
int GetCANInterface(int fd);
int CreateCANSocket(bool bIsSend);
void SendMessage();
protected:
MSG_CALLBACK m_pMsgCallBack; // 消息回调函数
LPVOID m_pCallbackParam;
pthread_t m_ThreadID;
CString m_strDeviceName;
int m_nCANID;
int m_nCANSendHandle;
int m_nCANRecvHanlde;
};
#endif // _CAN_DRIVER_H_
| [
"[email protected]"
] | |
9a1919be076ed64f2c2332b5d8a0d75ab97568cc | d013d1dfd6b7fc77589a62a8d098b210ad46b912 | /495 uva-Fibonacci Freeze.cpp | f40bda8342ef4f70518bd1624dce62e34c61cd90 | [] | no_license | mazedrupok/uva | 832a88d540a692a888430844c9b049f0abcc609c | 957b8cf487abb9294b5ed056185b5ea3d44628ed | refs/heads/master | 2020-04-05T15:17:32.381597 | 2018-03-28T17:40:14 | 2018-03-28T17:40:14 | 44,544,201 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,125 | cpp | #include <bits/stdc++.h>
using namespace std;
vector <string > v;
void fibonacci () {
v.push_back ("0");
v.push_back ("1");
v.push_back ("1");
for (int i = 3; i < 5001; i++) {
string s = "";
int s1 = v[i-1].size();
int s2 = v[i-2].size();
int r = 0;
for (int j = s1-1, k = s2-1; j >= 0 || k >= 0; j--, k--) {
int t;
if (j >= 0 && k >= 0) {
t = v[i-1][j] + v[i-2][k] - 96 + r;
r = t /10;
s += (t %10 + 48);
}
else if (j < 0) {
t = v[i-2][k] - 48 + r;
r = t /10;
s += (t %10 + 48);
}
else if (k < 0) {
t = v[i-1][j] - 48 + r;
r = t /10;
s += (t %10 + 48);
}
}
while (r != 0) {
s += (r %10 + 48);
r /= 10;
}
reverse (s.begin(), s.end());
//cout << s << endl;
v.push_back (s);
}
}
int main ()
{
fibonacci ();
int n;
while (scanf (" %d", &n) == 1) {
printf ("The Fibonacci number for %d is ", n);
cout << v[n] << endl;
}
return 0;
}
| [
"[email protected]"
] | |
e10a751768d1f6b79e930f053af67a08a80dc150 | 1fdbbb773bf42057e56578c03ac7d90376cca6b9 | /MinimumAbsDiff.cpp | 66a1d0b69f207f0abe5aafbb0a32ae08705c0c3b | [] | no_license | skanda99/Hackerrank-Leetcode | 813cd2eec3c2f401f5f98f95f8248ae508a2bea6 | bab468b1eeae6866d7b486424d95d381668d961f | refs/heads/master | 2022-09-03T12:28:56.462218 | 2022-06-12T04:32:19 | 2022-06-12T04:32:19 | 163,795,441 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 424 | cpp |
// problem: "https://www.hackerrank.com/challenges/minimum-absolute-difference-in-an-array/problem"
#include<iostream>
#include<algorithm>
using namespace std;
int main()
{
long long int a[100000],i,j,size,Min;
cin>>size;
for(i=0;i<size;i++)
cin>>a[i];
sort(a,a+size);
Min=2000000000;
for(i=1;i<size;i++)
Min=min(Min,abs(a[i]-a[i-1]));
cout<<Min<<endl;
return 0;
}
| [
"[email protected]"
] | |
96a1caa97fa5671f0d676c9d2669d711a0e0802f | e7bdc920132010fa7b95eaa278973436ea5fd625 | /MultiAgentCircleMap/include/MultiAgentCircleMap/Graph.h | 25ead13cf8e7e2426a1a2cd5266b9943d49978cf | [
"BSD-3-Clause"
] | permissive | algprasad/MultiAgentCircleMap | b31c991160eaaa6251fb2366f66a19482a58d55a | 6a94e75c3bbc57c32b4163666f95b8fd3c40273e | refs/heads/master | 2023-01-29T04:22:05.223627 | 2020-12-08T06:57:15 | 2020-12-08T06:57:15 | 314,688,326 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 228 | h | /**
// Created by alg on 21/11/20.
Main class for building and operating the factor graphs
**/
#ifndef MULTIAGENTCIRCLEMAP_GRAPH_H
#define MULTIAGENTCIRCLEMAP_GRAPH_H
class Graph {
};
#endif //MULTIAGENTCIRCLEMAP_GRAPH_H
| [
"[email protected]"
] | |
d2443d9dab946b8bae6be1d488c748f6b9a49418 | 9030ce2789a58888904d0c50c21591632eddffd7 | /SDK/ARKSurvivalEvolved_PrimalItemSkin_Vday_SwimPants_BearHug_functions.cpp | ca127ccd3f5d36562de285a62d5be5c52f7b321f | [
"MIT"
] | permissive | 2bite/ARK-SDK | 8ce93f504b2e3bd4f8e7ced184980b13f127b7bf | ce1f4906ccf82ed38518558c0163c4f92f5f7b14 | refs/heads/master | 2022-09-19T06:28:20.076298 | 2022-09-03T17:21:00 | 2022-09-03T17:21:00 | 232,411,353 | 14 | 5 | null | null | null | null | UTF-8 | C++ | false | false | 1,236 | cpp | // ARKSurvivalEvolved (332.8) SDK
#ifdef _MSC_VER
#pragma pack(push, 0x8)
#endif
#include "ARKSurvivalEvolved_PrimalItemSkin_Vday_SwimPants_BearHug_parameters.hpp"
namespace sdk
{
//---------------------------------------------------------------------------
//Functions
//---------------------------------------------------------------------------
// Function PrimalItemSkin_Vday_SwimPants_BearHug.PrimalItemSkin_Vday_SwimPants_BearHug_C.ExecuteUbergraph_PrimalItemSkin_Vday_SwimPants_BearHug
// ()
// Parameters:
// int EntryPoint (Parm, ZeroConstructor, IsPlainOldData)
void UPrimalItemSkin_Vday_SwimPants_BearHug_C::ExecuteUbergraph_PrimalItemSkin_Vday_SwimPants_BearHug(int EntryPoint)
{
static auto fn = UObject::FindObject<UFunction>("Function PrimalItemSkin_Vday_SwimPants_BearHug.PrimalItemSkin_Vday_SwimPants_BearHug_C.ExecuteUbergraph_PrimalItemSkin_Vday_SwimPants_BearHug");
UPrimalItemSkin_Vday_SwimPants_BearHug_C_ExecuteUbergraph_PrimalItemSkin_Vday_SwimPants_BearHug_Params params;
params.EntryPoint = EntryPoint;
auto flags = fn->FunctionFlags;
UObject::ProcessEvent(fn, ¶ms);
fn->FunctionFlags = flags;
}
}
#ifdef _MSC_VER
#pragma pack(pop)
#endif
| [
"[email protected]"
] | |
efc10dc7464d46c69ff79e798b53c7840d9e72e8 | 33c430af6f716eb4712e9e793ee8d35cd343a1eb | /devel/.private/mavros_msgs/include/mavros_msgs/VehicleInfoGetRequest.h | 446473130e515b51161bc9144fce3b5944989ef1 | [] | no_license | sirferrer/GDP | 4d77e9293166ccd67e1fd88508beeb25ad04df24 | 5e8c179e5160b3aa2e59b91d18d89324bbd277b3 | refs/heads/master | 2022-01-09T10:55:02.609257 | 2019-05-30T22:30:45 | 2019-05-30T22:30:45 | 187,775,827 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,095 | h | // Generated by gencpp from file mavros_msgs/VehicleInfoGetRequest.msg
// DO NOT EDIT!
#ifndef MAVROS_MSGS_MESSAGE_VEHICLEINFOGETREQUEST_H
#define MAVROS_MSGS_MESSAGE_VEHICLEINFOGETREQUEST_H
#include <string>
#include <vector>
#include <map>
#include <ros/types.h>
#include <ros/serialization.h>
#include <ros/builtin_message_traits.h>
#include <ros/message_operations.h>
namespace mavros_msgs
{
template <class ContainerAllocator>
struct VehicleInfoGetRequest_
{
typedef VehicleInfoGetRequest_<ContainerAllocator> Type;
VehicleInfoGetRequest_()
: sysid(0)
, compid(0)
, get_all(false) {
}
VehicleInfoGetRequest_(const ContainerAllocator& _alloc)
: sysid(0)
, compid(0)
, get_all(false) {
(void)_alloc;
}
typedef uint8_t _sysid_type;
_sysid_type sysid;
typedef uint8_t _compid_type;
_compid_type compid;
typedef uint8_t _get_all_type;
_get_all_type get_all;
enum {
GET_MY_SYSID = 0u,
GET_MY_COMPID = 0u,
};
typedef boost::shared_ptr< ::mavros_msgs::VehicleInfoGetRequest_<ContainerAllocator> > Ptr;
typedef boost::shared_ptr< ::mavros_msgs::VehicleInfoGetRequest_<ContainerAllocator> const> ConstPtr;
}; // struct VehicleInfoGetRequest_
typedef ::mavros_msgs::VehicleInfoGetRequest_<std::allocator<void> > VehicleInfoGetRequest;
typedef boost::shared_ptr< ::mavros_msgs::VehicleInfoGetRequest > VehicleInfoGetRequestPtr;
typedef boost::shared_ptr< ::mavros_msgs::VehicleInfoGetRequest const> VehicleInfoGetRequestConstPtr;
// constants requiring out of line definition
template<typename ContainerAllocator>
std::ostream& operator<<(std::ostream& s, const ::mavros_msgs::VehicleInfoGetRequest_<ContainerAllocator> & v)
{
ros::message_operations::Printer< ::mavros_msgs::VehicleInfoGetRequest_<ContainerAllocator> >::stream(s, "", v);
return s;
}
} // namespace mavros_msgs
namespace ros
{
namespace message_traits
{
// BOOLTRAITS {'IsFixedSize': True, 'IsMessage': True, 'HasHeader': False}
// {'geographic_msgs': ['/opt/ros/melodic/share/geographic_msgs/cmake/../msg'], 'std_msgs': ['/opt/ros/melodic/share/std_msgs/cmake/../msg'], 'sensor_msgs': ['/opt/ros/melodic/share/sensor_msgs/cmake/../msg'], 'mavros_msgs': ['/home/pablo/GDP_Git/src/mavros/mavros_msgs/msg'], 'geometry_msgs': ['/opt/ros/melodic/share/geometry_msgs/cmake/../msg'], 'uuid_msgs': ['/opt/ros/melodic/share/uuid_msgs/cmake/../msg']}
// !!!!!!!!!!! ['__class__', '__delattr__', '__dict__', '__doc__', '__eq__', '__format__', '__getattribute__', '__hash__', '__init__', '__module__', '__ne__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__setattr__', '__sizeof__', '__str__', '__subclasshook__', '__weakref__', '_parsed_fields', 'constants', 'fields', 'full_name', 'has_header', 'header_present', 'names', 'package', 'parsed_fields', 'short_name', 'text', 'types']
template <class ContainerAllocator>
struct IsFixedSize< ::mavros_msgs::VehicleInfoGetRequest_<ContainerAllocator> >
: TrueType
{ };
template <class ContainerAllocator>
struct IsFixedSize< ::mavros_msgs::VehicleInfoGetRequest_<ContainerAllocator> const>
: TrueType
{ };
template <class ContainerAllocator>
struct IsMessage< ::mavros_msgs::VehicleInfoGetRequest_<ContainerAllocator> >
: TrueType
{ };
template <class ContainerAllocator>
struct IsMessage< ::mavros_msgs::VehicleInfoGetRequest_<ContainerAllocator> const>
: TrueType
{ };
template <class ContainerAllocator>
struct HasHeader< ::mavros_msgs::VehicleInfoGetRequest_<ContainerAllocator> >
: FalseType
{ };
template <class ContainerAllocator>
struct HasHeader< ::mavros_msgs::VehicleInfoGetRequest_<ContainerAllocator> const>
: FalseType
{ };
template<class ContainerAllocator>
struct MD5Sum< ::mavros_msgs::VehicleInfoGetRequest_<ContainerAllocator> >
{
static const char* value()
{
return "c1911e97179d4b379a979e2ab8e01e5c";
}
static const char* value(const ::mavros_msgs::VehicleInfoGetRequest_<ContainerAllocator>&) { return value(); }
static const uint64_t static_value1 = 0xc1911e97179d4b37ULL;
static const uint64_t static_value2 = 0x9a979e2ab8e01e5cULL;
};
template<class ContainerAllocator>
struct DataType< ::mavros_msgs::VehicleInfoGetRequest_<ContainerAllocator> >
{
static const char* value()
{
return "mavros_msgs/VehicleInfoGetRequest";
}
static const char* value(const ::mavros_msgs::VehicleInfoGetRequest_<ContainerAllocator>&) { return value(); }
};
template<class ContainerAllocator>
struct Definition< ::mavros_msgs::VehicleInfoGetRequest_<ContainerAllocator> >
{
static const char* value()
{
return "\n"
"\n"
"\n"
"\n"
"uint8 GET_MY_SYSID = 0\n"
"uint8 GET_MY_COMPID = 0\n"
"\n"
"uint8 sysid\n"
"uint8 compid\n"
"bool get_all\n"
;
}
static const char* value(const ::mavros_msgs::VehicleInfoGetRequest_<ContainerAllocator>&) { return value(); }
};
} // namespace message_traits
} // namespace ros
namespace ros
{
namespace serialization
{
template<class ContainerAllocator> struct Serializer< ::mavros_msgs::VehicleInfoGetRequest_<ContainerAllocator> >
{
template<typename Stream, typename T> inline static void allInOne(Stream& stream, T m)
{
stream.next(m.sysid);
stream.next(m.compid);
stream.next(m.get_all);
}
ROS_DECLARE_ALLINONE_SERIALIZER
}; // struct VehicleInfoGetRequest_
} // namespace serialization
} // namespace ros
namespace ros
{
namespace message_operations
{
template<class ContainerAllocator>
struct Printer< ::mavros_msgs::VehicleInfoGetRequest_<ContainerAllocator> >
{
template<typename Stream> static void stream(Stream& s, const std::string& indent, const ::mavros_msgs::VehicleInfoGetRequest_<ContainerAllocator>& v)
{
s << indent << "sysid: ";
Printer<uint8_t>::stream(s, indent + " ", v.sysid);
s << indent << "compid: ";
Printer<uint8_t>::stream(s, indent + " ", v.compid);
s << indent << "get_all: ";
Printer<uint8_t>::stream(s, indent + " ", v.get_all);
}
};
} // namespace message_operations
} // namespace ros
#endif // MAVROS_MSGS_MESSAGE_VEHICLEINFOGETREQUEST_H
| [
"[email protected]"
] | |
fcf81653bad0edca183bdf8d2be350f82c8e341f | ae0ca045927168f04758a24179f0c3ff1d37bbb4 | /A^B-Power-Large.cpp | 9a551f3e0e2b4ec7ee634785e4b322cfb31fafcb | [] | no_license | br-lovanshi/Data_Structures_Algorithms_In_Cplusplus | 5b97905b8bc160282b7c784b996440e54d50b87a | 854d5ad6a79e364d9e049776bcd3544a27bc410d | refs/heads/master | 2023-03-16T01:03:02.785748 | 2021-01-22T11:58:12 | 2021-01-22T11:58:12 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,695 | cpp | Vishi's birthday is on the door.
Anshuli and his friends are planning to give him a birthday party. For that Anshuli's friends want him to buy the cake. He needs to pay 'x' amount of money to buy the cake on the first day. After each day has passed, the cake becomes 'x' times the price that it was on the previous day. For buying the cake Anshuli has to collect money from all the friends and for that, he will need 'y' days and after 'y' days he will go and buy the cake.
Anshuli seeks your help in calculating the price of cake on the yth day.
Take the price as modulo 10^9 + 7 as the price can be very large.
Input Format
The first line contains an integer T, the number of testcases. It's followed by T lines.
Each testcase will contain two integers X & Y separated by a space.
Output Format
Output T lines, each corresponding to the answer of the testcase.
Constraints
1 <= T <= 10
1 <= X,Y <= 10100000
X % (109 + 7) != 0
Note
Both integers will have a maximum of 100000 digits.
Sample Input 1
3
9 3
3 3
7 4
Sample Output 1:
729
27
2401
SAMPLE INPUT
3
9 3
3 3
7 4
SAMPLE OUTPUT
729
27
2401
#include <bits/stdc++.h>
#define ll long long int
using namespace std;
ll power(ll x, ll y, ll p)
{
ll res = 1;
x = x % p;
while (y > 0) {
if (y & 1)
res = (res * x) % p;
y = y >> 1;
x = (x * x) % p;
}
return res;
}
int main()
{
long long int j,t,a;
string b;
cin>>t;
for(j=0; j<t; j++)
{
cin>>a;
cin>>b;
ll remainderB = 0;
ll MOD = 1000000007;
for (int i = 0; i < b.length(); i++)
{
remainderB = (remainderB * 10 + b[i] - '0') % (MOD - 1);
}
cout << power(a, remainderB, MOD) << endl;
}
return 0;
}
| [
"[email protected]"
] | |
c60a8777302f48b530af8ff021373339c63c9523 | 3a3b937f684f2a25419f13c694685fc991c55ab5 | /src/Commands/Ball Manipulator/TeleOpMoveArm.cpp | 6b4cf1c0ab9d992b856b27944e4f38b11b02bb9a | [] | no_license | FRC-Team-1410/FS2016-FRC1410 | 073d93ecf0627555107ba3ab9cb7bba041b810ce | d5b5a5ee318d038642a248549417ef9cc3b17ba6 | refs/heads/master | 2021-05-03T06:54:43.746822 | 2016-11-01T20:20:33 | 2016-11-01T20:20:33 | 49,347,767 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,662 | cpp | //This is the default command for the subsystem BallManipulator
//It rotates the arm around the point
//That's about it
//It also returns the angle of the potentiometer for testing purposes
#include <Commands/Ball Manipulator/TeleOpMoveArm.h> //Includes the header file for this clas
#include "Robot.h" //Includes the Robot.h so we can use the OI methods
#include "../../RobotMap.h" //Includes the RobotMap.h which stores all our constants
TeleOpMoveArm::TeleOpMoveArm(){
Requires(Robot::ballmanipulator); //Requires the ballmanipulator subsystem
}
void TeleOpMoveArm::Initialize(){
//Nothing happens when the command is initialized
}
void TeleOpMoveArm::Execute(){
//This method runs periodically while the command is being called
//It sets the speed of the arm rotation to the value of the y axis of the left stick on the operator stick in the OI
//The axis is 1
Robot::ballmanipulator->RotateArm(Robot::oi->GetOperatorAxis(ballManipulatorMovement));
Robot::ballmanipulator->ReturnArmAngle(); //Returns the angle of the arm for testing purposes
}
bool TeleOpMoveArm::IsFinished(){
//Runs after each cycle of the roboRIO to check if the command is done
//We never end this command so it is never finished
//Thus it always returns false
return false; //Returns false
}
void TeleOpMoveArm::End(){
//Runs when the command is ended
//This is usually only when TeleOp is disabled
//It stops the arm rotation
Robot::ballmanipulator->RotateArm(0); //Sets the rotation speed to 0
}
void TeleOpMoveArm::Interrupted(){
//This runs when the command is interuppted
//Basically this never runs
//It just ends the command
End(); //Ends the command
}
| [
"[email protected]"
] | |
045aa3c426eda46910f7e8eca0a33e6df8c36e4a | 053df77d3de631eb38961f19d5408859915fd681 | /include/ArborClustering/SimpleRegionClusteringAlgorithm.h | 8bce45797454e914e4ca651ffa114b94d8e592a0 | [] | no_license | ArborPFA/ArborContent | e1b1213bd6dc89aac1d13623d64b2dab67f883e3 | 91ad8060e3dcf4be412fd1d47e51b546c0536ef2 | refs/heads/master | 2021-01-17T07:08:43.638705 | 2016-12-13T17:51:24 | 2016-12-13T17:51:24 | 47,272,924 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 2,211 | h | /// \file SimpleRegionClusteringAlgorithm.h
/*
*
* SimpleRegionClusteringAlgorithm.h header template automatically generated by a class generator
* Creation date : jeu. sept. 29 2016
*
* This file is part of ArborContent libraries.
*
* ArborContent 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.
* based upon these libraries are permitted. Any copy of these libraries
* must include this copyright notice.
*
* ArborContent 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 ArborContent. If not, see <http://www.gnu.org/licenses/>.
*
* @author Remi Ete
* @copyright CNRS , IPNL
*/
#ifndef SIMPLEREGIONCLUSTERINGALGORITHM_H
#define SIMPLEREGIONCLUSTERINGALGORITHM_H
#include "Pandora/Algorithm.h"
#include "Pandora/PandoraInternal.h"
#include "Pandora/PandoraInputTypes.h"
#include "ArborApi/ArborInputTypes.h"
namespace arbor_content
{
/**
* @brief SimpleRegionClusteringAlgorithm class
*/
class SimpleRegionClusteringAlgorithm : public pandora::Algorithm
{
public:
/**
* @brief Factory class for instantiating algorithm
*/
class Factory : public pandora::AlgorithmFactory
{
public:
pandora::Algorithm *CreateAlgorithm() const;
};
private:
pandora::StatusCode Run();
pandora::StatusCode ReadSettings(const pandora::TiXmlHandle xmlHandle);
private:
float m_thetaAngle;
float m_phiAngle;
float m_distance;
};
//------------------------------------------------------------------------------------------------------------------------------------------
inline pandora::Algorithm *SimpleRegionClusteringAlgorithm::Factory::CreateAlgorithm() const
{
return new SimpleRegionClusteringAlgorithm();
}
}
#endif // SIMPLEREGIONCLUSTERINGALGORITHM_H
| [
"[email protected]"
] | |
477a38f4c2833a7454850b6a992bdbb77b9dfbb5 | 64058e1019497fbaf0f9cbfab9de4979d130416b | /c++/include/objects/general/Int_fuzz.hpp | 8e5a8daa21e808c16f55b7c65cd8dd8938d1ca89 | [
"MIT"
] | permissive | OpenHero/gblastn | 31e52f3a49e4d898719e9229434fe42cc3daf475 | 1f931d5910150f44e8ceab81599428027703c879 | refs/heads/master | 2022-10-26T04:21:35.123871 | 2022-10-20T02:41:06 | 2022-10-20T02:41:06 | 12,407,707 | 38 | 21 | null | 2020-12-08T07:14:32 | 2013-08-27T14:06:00 | C++ | UTF-8 | C++ | false | false | 3,871 | hpp | /* $Id: Int_fuzz.hpp 103491 2007-05-04 17:18:18Z kazimird $
* ===========================================================================
*
* PUBLIC DOMAIN NOTICE
* National Center for Biotechnology Information
*
* This software/database is a "United States Government Work" under the
* terms of the United States Copyright Act. It was written as part of
* the author's official duties as a United States Government employee and
* thus cannot be copyrighted. This software/database is freely available
* to the public for use. The National Library of Medicine and the U.S.
* Government have not placed any restriction on its use or reproduction.
*
* Although all reasonable efforts have been taken to ensure the accuracy
* and reliability of the software and data, the NLM and the U.S.
* Government do not and cannot warrant the performance or results that
* may be obtained by using this software or data. The NLM and the U.S.
* Government disclaim all warranties, express or implied, including
* warranties of performance, merchantability or fitness for any particular
* purpose.
*
* Please cite the author in any work or product based on this material.
*
* ===========================================================================
*
* Author: .......
*
* File Description:
* .......
*
* Remark:
* This code was originally generated by application DATATOOL
* using specifications from the ASN data definition file
* 'general.asn'.
*
* ===========================================================================
*/
#ifndef OBJECTS_GENERAL_INT_FUZZ_HPP
#define OBJECTS_GENERAL_INT_FUZZ_HPP
// generated includes
#include <objects/general/Int_fuzz_.hpp>
// generated classes
BEGIN_NCBI_SCOPE
BEGIN_objects_SCOPE // namespace ncbi::objects::
// Forward declarations
class NCBI_GENERAL_EXPORT CInt_fuzz : public CInt_fuzz_Base
{
typedef CInt_fuzz_Base Tparent;
public:
// constructor
CInt_fuzz(void);
// destructor
~CInt_fuzz(void);
void GetLabel(string* label, TSeqPos pos, bool right = true) const;
/// n1 and n2 are the targets of the fuzz
void AssignTranslated(const CInt_fuzz& f2, TSeqPos n1, TSeqPos n2);
enum ECombine {
/// go for the largest possible range
eAmplify,
/// go for the smallest range that allows each value
/// individually to vary freely as long as the other balances
/// it out to the extent possible
eReduce
};
// Manipulators; n1 and n2 are the targets of the fuzz.
// Adding anything to its negation (subtracting it from itself)
// in eReduce mode should always yield zero.
void Add (const CInt_fuzz& f2, TSeqPos& n1, TSeqPos n2,
ECombine mode = eAmplify);
void Subtract(const CInt_fuzz& f2, TSeqPos& n1, TSeqPos n2,
ECombine mode = eReduce);
void Negate (TSeqPos n);
CRef<CInt_fuzz> Negative(TSeqPos n) const;
private:
// Prohibit copy constructor and assignment operator
CInt_fuzz(const CInt_fuzz& value);
CInt_fuzz& operator=(const CInt_fuzz& value);
};
/////////////////// CInt_fuzz inline methods
// constructor
inline
CInt_fuzz::CInt_fuzz(void)
{
}
inline
CRef<CInt_fuzz> CInt_fuzz::Negative(TSeqPos n) const
{
CRef<CInt_fuzz> result(new CInt_fuzz);
result->Assign(*this);
result->Negate(n);
return result;
}
inline
void CInt_fuzz::Subtract(const CInt_fuzz& f2, TSeqPos& n1, TSeqPos n2,
ECombine mode)
{
CRef<CInt_fuzz> neg(f2.Negative(n2));
Add(*neg, n1, n2, mode);
}
/////////////////// end of CInt_fuzz inline methods
END_objects_SCOPE // namespace ncbi::objects::
END_NCBI_SCOPE
#endif // OBJECTS_GENERAL_INT_FUZZ_HPP
/* Original file checksum: lines: 90, chars: 2388, CRC32: e4127209 */
| [
"[email protected]"
] |
Subsets and Splits