blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 4 201 | content_id stringlengths 40 40 | detected_licenses listlengths 0 85 | license_type stringclasses 2
values | repo_name stringlengths 7 100 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 260
values | visit_date timestamp[us] | revision_date timestamp[us] | committer_date timestamp[us] | github_id int64 11.4k 681M ⌀ | star_events_count int64 0 209k | fork_events_count int64 0 110k | gha_license_id stringclasses 17
values | gha_event_created_at timestamp[us] | gha_created_at timestamp[us] | gha_language stringclasses 80
values | src_encoding stringclasses 28
values | language stringclasses 1
value | is_vendor bool 1
class | is_generated bool 2
classes | length_bytes int64 8 9.86M | extension stringclasses 52
values | content stringlengths 8 9.86M | authors listlengths 1 1 | author stringlengths 0 119 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
aae3c05da62e52b684632ba61dfe72f260253acc | e2bb8568b21bb305de3b896cf81786650b1a11f9 | /SDK/SCUM_Crow_Skinned_classes.hpp | 75fe4a6a1a4d1e22d59be98059b88c6a68e6cc5a | [] | no_license | Buttars/SCUM-SDK | 822e03fe04c30e04df0ba2cb4406fe2c18a6228e | 954f0ab521b66577097a231dab2bdc1dd35861d3 | refs/heads/master | 2020-03-28T02:45:14.719920 | 2018-09-05T17:53:23 | 2018-09-05T17:53:23 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 655 | hpp | #pragma once
// SCUM (0.1.17) SDK
#ifdef _MSC_VER
#pragma pack(push, 0x8)
#endif
#include "SCUM_Crow_Skinned_structs.hpp"
namespace SDK
{
//---------------------------------------------------------------------------
//Classes
//---------------------------------------------------------------------------
// BlueprintGeneratedClass Crow_Skinned.Crow_Skinned_C
// 0x0000 (0x07A0 - 0x07A0)
class ACrow_Skinned_C : public AEquipmentItem
{
public:
static UClass* StaticClass()
{
static auto ptr = UObject::FindObject<UClass>("BlueprintGeneratedClass Crow_Skinned.Crow_Skinned_C");
return ptr;
}
};
}
#ifdef _MSC_VER
#pragma pack(pop)
#endif
| [
"igromanru@yahoo.de"
] | igromanru@yahoo.de |
b09c94ea7e904c277bcfca61784bd02d6ee31b01 | 94fe8e1d9bb9e1785da95e069f86a9c98aad7f2b | /depthSmooth/src/ofApp.cpp | cb0b6773e1fc2fc977335e7a84172ac72af70b16 | [] | no_license | roikr/myApps | 7d5481224d12a587dc392c682977c5ab95462ad9 | 6e4654c1251407e076e7908c9683d868beccef07 | refs/heads/master | 2016-09-05T20:01:41.815311 | 2014-08-14T09:25:19 | 2014-08-14T09:25:19 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,452 | cpp | #include "ofApp.h"
#define STRINGIFY(A) #A
//--------------------------------------------------------------
void ofApp::setup(){
gui.setup("panel");
gui.add(fps.set("fps",""));
//gui.loadFromFile("settings.xml");
ofDisableArbTex();
string vertex = STRINGIFY(
\n#version 150\n
uniform mat4 modelViewProjectionMatrix;
in vec4 position;
in vec2 texcoord;
out vec2 texCoordVarying;
void main() {
texCoordVarying = texcoord;
gl_Position = modelViewProjectionMatrix * position;
}
);
string fragment = STRINGIFY(
\n#version 150\n
uniform sampler2D tex0;
uniform sampler2D tex1;
uniform sampler2D tex2;
uniform sampler2D tex3;
uniform int counter;
in vec2 texCoordVarying;
out vec4 fragColor;
void main(void) {
float c[4];
c[0]= texture(tex0,texCoordVarying).r;
c[1] = texture(tex1,texCoordVarying).r;
c[2] = texture(tex2,texCoordVarying).r;
c[3] = texture(tex3,texCoordVarying).r;
fragColor = vec4(0.5*c[(counter-1) % 4 ]+0.3*c[(counter-2) % 4]+0.15*c[(counter-3) % 4]+0.05*c[(counter-4) % 4]);
}
);
shader.setupShaderFromSource(GL_VERTEX_SHADER, vertex);
shader.setupShaderFromSource(GL_FRAGMENT_SHADER, fragment);
shader.bindDefaults();
shader.linkProgram();
cam.setup();
cam.listDepthModes();
cam.setDepthMode(9);
textures.assign(4, ofTexture());
shader.begin();
for (int i=0; i<textures.size(); i++) {
textures[i].allocate(cam.depthWidth, cam.depthHeight, GL_R16 );
shader.setUniformTexture("tex"+ofToString(i), textures[i], i+1);
cout << i << endl;
}
shader.end();
counter = 1;
}
//--------------------------------------------------------------
void ofApp::update(){
cam.update();
if (cam.bNewDepth) {
textures[counter % textures.size()].loadData(cam.getDepth(), cam.depthWidth, cam.depthHeight,GL_RED);
counter++;
}
bShowGui=true;
}
//--------------------------------------------------------------
void ofApp::draw(){
ofClear(0);
ofSetColor(255);
ofFill();
shader.begin();
shader.setUniform1i("counter", counter);
textures[(counter-1)%textures.size()].draw(0,0);
shader.end();
if (bShowGui) {
gui.draw();
}
}
//--------------------------------------------------------------
void ofApp::keyPressed(int key){
bShowGui=!bShowGui;
}
//--------------------------------------------------------------
void ofApp::keyReleased(int key){
}
//--------------------------------------------------------------
void ofApp::mouseMoved(int x, int y ){
}
//--------------------------------------------------------------
void ofApp::mouseDragged(int x, int y, int button){
}
//--------------------------------------------------------------
void ofApp::mousePressed(int x, int y, int button){
}
//--------------------------------------------------------------
void ofApp::mouseReleased(int x, int y, int button){
}
//--------------------------------------------------------------
void ofApp::windowResized(int w, int h){
}
//--------------------------------------------------------------
void ofApp::gotMessage(ofMessage msg){
}
//--------------------------------------------------------------
void ofApp::dragEvent(ofDragInfo dragInfo){
}
| [
"roikr75@gmail.com"
] | roikr75@gmail.com |
7bccb639f9daaf05ae8753d23853d15c8ab2338a | 918f29d8394aee26ca8241df30feafddddfef002 | /DHTtester/DHTtester.ino | 98b99e18ac3a2310afe1b0fbcb493efc5d374309 | [] | no_license | Home-Automation-with-machine-Learning/Home-Automation-with-ML | 82a38869a1eaf31321b3e588f05caf358e994682 | 645d8c73d9ecc917adb6069e0f4a5ea06200cd15 | refs/heads/main | 2023-09-04T07:41:48.121742 | 2021-11-04T09:26:16 | 2021-11-04T09:26:16 | 406,750,536 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,678 | ino | // Example testing sketch for various DHT humidity/temperature sensors
// Written by ladyada, public domain
// REQUIRES the following Arduino libraries:
// - DHT Sensor Library: https://github.com/adafruit/DHT-sensor-library
// - Adafruit Unified Sensor Lib: https://github.com/adafruit/Adafruit_Sensor
#include "DHT.h"
#define DHTPIN D3 // Digital pin connected to the DHT sensor
// Feather HUZZAH ESP8266 note: use pins 3, 4, 5, 12, 13 or 14 --
// Pin 15 can work but DHT must be disconnected during program upload.
// Uncomment whatever type you're using!
#define DHTTYPE DHT11 // DHT 11
//#define DHTTYPE DHT22 // DHT 22 (AM2302), AM2321
//#define DHTTYPE DHT21 // DHT 21 (AM2301)
// Connect pin 1 (on the left) of the sensor to +5V
// NOTE: If using a board with 3.3V logic like an Arduino Due connect pin 1
// to 3.3V instead of 5V!
// Connect pin 2 of the sensor to whatever your DHTPIN is
// Connect pin 3 (on the right) of the sensor to GROUND (if your sensor has 3 pins)
// Connect pin 4 (on the right) of the sensor to GROUND and leave the pin 3 EMPTY (if your sensor has 4 pins)
// Connect a 10K resistor from pin 2 (data) to pin 1 (power) of the sensor
// Initialize DHT sensor.
// Note that older versions of this library took an optional third parameter to
// tweak the timings for faster processors. This parameter is no longer needed
// as the current DHT reading algorithm adjusts itself to work on faster procs.
DHT dht(DHTPIN, DHTTYPE);
void setup() {
Serial.begin(9600);
Serial.println(F("DHT11 test!"));
dht.begin();
}
void loop() {
// Wait a few seconds between measurements.
delay(2000);
// Reading temperature or humidity takes about 250 milliseconds!
// Sensor readings may also be up to 2 seconds 'old' (its a very slow sensor)
float h = dht.readHumidity();
// Read temperature as Celsius (the default)
float t = dht.readTemperature();
// Read temperature as Fahrenheit (isFahrenheit = true)
float f = dht.readTemperature(true);
// Check if any reads failed and exit early (to try again).
if (isnan(h) || isnan(t) || isnan(f)) {
Serial.println(F("Failed to read from DHT sensor!"));
return;
}
// Compute heat index in Fahrenheit (the default)
float hif = dht.computeHeatIndex(f, h);
// Compute heat index in Celsius (isFahreheit = false)
float hic = dht.computeHeatIndex(t, h, false);
Serial.print(F("Humidity: "));
Serial.print(h);
Serial.print(F("% Temperature: "));
Serial.print(t);
Serial.print(F("°C "));
Serial.print(f);
Serial.print(F("°F Heat index: "));
Serial.print(hic);
Serial.print(F("°C "));
Serial.print(hif);
Serial.println(F("°F"));
}
| [
"gichualex47@gmail.com"
] | gichualex47@gmail.com |
6ba2f0d5b0f27eeddc7d693272730f3249c3bae8 | 258e3b68fcd88f30b28142bf8b9d4d7f06114243 | /src/lexer/Lexer.h | 0601354cf4784b8a8984f5fd9ef11a1b7170f3ee | [] | no_license | Kracav4ik/cxx_creed | e3c46925d65ee3ba1085aff90759029c139e227e | a771d52d0c3e9196eb5baa697c82a93e282d1416 | refs/heads/master | 2020-09-23T06:51:39.922549 | 2019-12-15T10:03:13 | 2019-12-15T10:04:41 | 225,431,644 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 774 | h | #pragma once
#include "dlc/WithDLC.h"
#include "dlc/LexerDLC.h"
#include <string>
struct Token;
class Lexer : public WithDLC<LexerDLC> {
public:
class State {
friend class Lexer;
public:
void drop();
void revert();
~State();
private:
explicit State(Lexer& lexer);
void assign(size_t pos);
Lexer& _lexer;
size_t _pos;
bool _dropped = false;
};
void set_text(std::string text);
State get_state();
Token next_token(bool skip_space=true);
void skip_whitespace();
Token next_token_with_type(const std::string& expected_type);
private:
std::string consume(size_t amount);
std::string_view current_text() const;
std::string _text;
size_t _pos = 0;
};
| [
"dikama2013@yandex.ru"
] | dikama2013@yandex.ru |
fc0ed64cdcbf635ed299157ab20e610ba8d10a14 | bc5739bec5fa2f4abc6adaa1a6ff3be91b9e7e49 | /BLEPeripheral.h | f3e337cc8263e1b211cd2907a76845dae792b764 | [
"MIT"
] | permissive | ioarun/arduino-BLEPeripheral | bd9ee5b2a3d34ce3b45c250375c8c0259ea3e99b | be6bdf327a4a9e1542da76037c843631884e1da9 | refs/heads/master | 2021-01-18T04:57:49.543383 | 2016-03-29T19:59:34 | 2016-03-29T19:59:34 | 50,484,407 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,401 | h | #ifndef _BLE_PERIPHERAL_H_
#define _BLE_PERIPHERAL_H_
#include "Arduino.h"
#include "BLEBondStore.h"
#include "BLECentral.h"
#include "BLEConstantCharacteristic.h"
#include "BLEDescriptor.h"
#include "BLEDevice.h"
#include "BLEFixedLengthCharacteristic.h"
#include "BLELocalAttribute.h"
#include "BLEProgmemConstantCharacteristic.h"
#include "BLERemoteAttribute.h"
#include "BLERemoteCharacteristic.h"
#include "BLERemoteService.h"
#include "BLEService.h"
#include "BLETypedCharacteristics.h"
#if defined(NRF51) || defined(__RFduino__)
#include "nRF51822.h"
#else
#include "nRF8001.h"
#endif
enum BLEPeripheralEvent {
BLEConnected = 0,
BLEDisconnected = 1,
BLEBonded = 2,
BLERemoteServicesDiscovered = 3
};
typedef void (*BLEPeripheralEventHandler)(BLECentral& central);
class BLEPeripheral : public BLEDeviceEventListener,
public BLECharacteristicValueChangeListener,
public BLERemoteCharacteristicValueChangeListener
{
public:
BLEPeripheral(unsigned char req, unsigned char rdy, unsigned char rst);
virtual ~BLEPeripheral();
void begin();
void poll();
void setAdvertisedServiceUuid(const char* advertisedServiceUuid);
void setServiceSolicitationUuid(const char* serviceSolicitationUuid);
void setManufacturerData(const unsigned char manufacturerData[], unsigned char manufacturerDataLength);
void setLocalName(const char *localName);
void setAdvertisingInterval(unsigned short advertisingInterval);
bool setTxPower(int txPower);
void setConnectable(bool connectable);
void setBondStore(BLEBondStore& bondStore);
void setDeviceName(const char* deviceName);
void setAppearance(unsigned short appearance);
void addAttribute(BLELocalAttribute& attribute);
void addLocalAttribute(BLELocalAttribute& localAttribute);
void addRemoteAttribute(BLERemoteAttribute& remoteAttribute);
void disconnect();
BLECentral central();
bool connected();
void setEventHandler(BLEPeripheralEvent event, BLEPeripheralEventHandler eventHandler);
protected:
bool characteristicValueChanged(BLECharacteristic& characteristic);
bool broadcastCharacteristic(BLECharacteristic& characteristic);
bool canNotifyCharacteristic(BLECharacteristic& characteristic);
bool canIndicateCharacteristic(BLECharacteristic& characteristic);
bool canReadRemoteCharacteristic(BLERemoteCharacteristic& characteristic);
bool readRemoteCharacteristic(BLERemoteCharacteristic& characteristic);
bool canWriteRemoteCharacteristic(BLERemoteCharacteristic& characteristic);
bool writeRemoteCharacteristic(BLERemoteCharacteristic& characteristic, const unsigned char value[], unsigned char length);
bool canSubscribeRemoteCharacteristic(BLERemoteCharacteristic& characteristic);
bool subscribeRemoteCharacteristic(BLERemoteCharacteristic& characteristic);
bool canUnsubscribeRemoteCharacteristic(BLERemoteCharacteristic& characteristic);
bool unsubcribeRemoteCharacteristic(BLERemoteCharacteristic& characteristic);
virtual void BLEDeviceConnected(BLEDevice& device, const unsigned char* address);
virtual void BLEDeviceDisconnected(BLEDevice& device);
virtual void BLEDeviceBonded(BLEDevice& device);
virtual void BLEDeviceRemoteServicesDiscovered(BLEDevice& device);
virtual void BLEDeviceCharacteristicValueChanged(BLEDevice& device, BLECharacteristic& characteristic, const unsigned char* value, unsigned char valueLength);
virtual void BLEDeviceCharacteristicSubscribedChanged(BLEDevice& device, BLECharacteristic& characteristic, bool subscribed);
virtual void BLEDeviceRemoteCharacteristicValueChanged(BLEDevice& device, BLERemoteCharacteristic& remoteCharacteristic, const unsigned char* value, unsigned char valueLength);
virtual void BLEDeviceAddressReceived(BLEDevice& device, const unsigned char* address);
virtual void BLEDeviceTemperatureReceived(BLEDevice& device, float temperature);
virtual void BLEDeviceBatteryLevelReceived(BLEDevice& device, float batteryLevel);
private:
void initLocalAttributes();
private:
BLEDevice* _device;
#if defined(NRF51) || defined(__RFduino__)
nRF51822 _nRF51822;
#else
nRF8001 _nRF8001;
#endif
const char* _advertisedServiceUuid;
const char* _serviceSolicitationUuid;
const unsigned char* _manufacturerData;
unsigned char _manufacturerDataLength;
const char* _localName;
BLELocalAttribute** _localAttributes;
unsigned char _numLocalAttributes;
BLERemoteAttribute** _remoteAttributes;
unsigned char _numRemoteAttributes;
BLEService _genericAccessService;
BLECharacteristic _deviceNameCharacteristic;
BLECharacteristic _appearanceCharacteristic;
BLEService _genericAttributeService;
BLECharacteristic _servicesChangedCharacteristic;
BLERemoteService _remoteGenericAttributeService;
BLERemoteCharacteristic _remoteServicesChangedCharacteristic;
BLECentral _central;
BLEPeripheralEventHandler _eventHandlers[4];
};
#endif
| [
"sandeep.mistry@gmail.com"
] | sandeep.mistry@gmail.com |
19377ac86790074770eada2a76e4c19fa4c22302 | e872b85b3e0897cf1f3f2c5a27d545569f25b8a2 | /esphome/components/pzem004t/pzem004t.h | f0208d415ae1de81aec7d5c275117515b7a9d307 | [
"GPL-1.0-or-later",
"MIT",
"GPL-3.0-only"
] | permissive | s00500/esphome | 3b8bab3506c51c5b6b6a6c69f17d29d04877644f | 51ab0f0b78762a804a567cfb54bdefa15d2ef29d | refs/heads/master | 2021-07-12T05:02:42.732274 | 2020-06-24T01:39:24 | 2020-06-24T01:39:24 | 172,741,405 | 0 | 0 | MIT | 2019-02-26T15:47:51 | 2019-02-26T15:47:51 | null | UTF-8 | C++ | false | false | 1,030 | h | #pragma once
#include "esphome/core/component.h"
#include "esphome/components/uart/uart.h"
#include "esphome/components/sensor/sensor.h"
namespace esphome {
namespace pzem004t {
class PZEM004T : public PollingComponent, public uart::UARTDevice {
public:
void set_voltage_sensor(sensor::Sensor *voltage_sensor) { voltage_sensor_ = voltage_sensor; }
void set_current_sensor(sensor::Sensor *current_sensor) { current_sensor_ = current_sensor; }
void set_power_sensor(sensor::Sensor *power_sensor) { power_sensor_ = power_sensor; }
void loop() override;
void update() override;
void dump_config() override;
protected:
sensor::Sensor *voltage_sensor_;
sensor::Sensor *current_sensor_;
sensor::Sensor *power_sensor_;
enum PZEM004TReadState {
SET_ADDRESS = 0xB4,
READ_VOLTAGE = 0xB0,
READ_CURRENT = 0xB1,
READ_POWER = 0xB2,
DONE = 0x00,
} read_state_{DONE};
void write_state_(PZEM004TReadState state);
uint32_t last_read_{0};
};
} // namespace pzem004t
} // namespace esphome
| [
"otto@otto-winter.com"
] | otto@otto-winter.com |
b9ea03589f92ab31cf1c2771a30eea9bc900b749 | 336c31febda5e94174f86a8fe31205d1f5c4c5f5 | /include/Zen/Enterprise/I_MessageType.hpp | 11c1d39fb02de65418b2bccb1bb9b5ee35a0cb9d | [
"MIT"
] | permissive | indie-zen/zen-enterprise | 6c06312867846f63c9d7363f6b57eec0470d35f6 | e8155dc1349b32a5996202edbeee80a168b20a2d | refs/heads/master | 2020-05-21T19:59:05.435320 | 2016-11-25T23:18:48 | 2016-11-25T23:18:48 | 63,064,708 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,642 | hpp | //-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~
// Zen Enterprise Framework
//
// Copyright (C) 2001 - 2016 Raymond A. Richards
//-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~
#ifndef ZEN_ENTERPRISE_I_MESSAGE_TYPE_HPP_INCLUDED
#define ZEN_ENTERPRISE_I_MESSAGE_TYPE_HPP_INCLUDED
#include "Configuration.hpp"
#include <memory>
#include <boost/noncopyable.hpp>
//-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~
namespace Zen {
namespace Enterprise {
//-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~
class I_MessageFactory;
class ENTERPRISE_DLL_LINK I_MessageType
: boost::noncopyable
{
/// @name Types
/// @{
public:
typedef std::shared_ptr<I_MessageFactory> pMessageFactory_type;
/// @}
/// @name I_MessageType interface.
/// @{
public:
/// Get the message factory for this message type.
virtual pMessageFactory_type getMessageFactory() const = 0;
/// Set the message factory for this message type.
virtual void setMessageFactory(pMessageFactory_type _pMessageFactory) = 0;
/// @}
/// @name 'Structors
/// @{
protected:
I_MessageType();
virtual ~I_MessageType();
/// @}
}; // interface I_MessageType
//-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~
} // namespace Enterprise
} // namespace Zen
//-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~
#endif // ZEN_ENTERPRISE_I_MESSAGE_TYPE_HPP_INCLUDED
| [
"linterra@gmail.com"
] | linterra@gmail.com |
60cb58d221592d9f786d950c23c54a2b0cb90fa0 | 948ae8f84af6952a77e840cd1e2bbdf47441aa97 | /ex01/Fixed.hpp | 0c64dbd2857a1b073c38ed9e099a5eeaecdf87ac | [] | no_license | ZectorJay/CPP_MODULE_02 | 447a56fbc3d0764c5de5d2c72348d7c2dfc6154d | bb1ade3a91174456978efd9b2f8cbf6c3d444058 | refs/heads/main | 2023-05-23T18:38:24.262038 | 2021-07-02T14:07:49 | 2021-07-02T14:07:49 | 372,572,716 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,640 | hpp | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* Fixed.hpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: hmickey <hmickey@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/05/31 19:51:51 by hmickey #+# #+# */
/* Updated: 2021/06/03 06:35:09 by hmickey ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef FIXED_HPP
# define FIXED_HPP
# include <iostream>
# include <cmath>
# define RED "\033[1;38;2;255;0;0m"
# define GREEN "\033[1;38;2;0;200;0m"
# define BLUE "\033[1;38;2;0;0;255m"
# define BROWN "\033[1;38;2;200;60;60m"
# define RANDOM "\033[1;38;2;90;200;90m"
# define RESET "\033[0m"
class Fixed{
public:
Fixed();
Fixed( const int value );
Fixed( const float value );
Fixed( Fixed const & src );
~Fixed();
Fixed & operator = (Fixed const & result);
int getRawBits( void ) const;
void setRawBits ( int const raw );
float toFloat ( void ) const;
int toInt ( void ) const;
private:
int _fixed_point;
static const int _fractional_bits = 8;
};
std::ostream & operator << (std::ostream & o, Fixed const & input);
#endif | [
"noreply@github.com"
] | noreply@github.com |
facaa490bf6a7747249fe952989676bbea81acf1 | 7fcbba36b8155d538cde4ff8111ae2c32a30ae9d | /References/DataStruct_v36.h | 286d3244a5b966d2b246f3aeb7e66f620eb1cca5 | [] | no_license | hunyadix/Pixel_Inefficiency_Analyzer | 7a230b1855fc5f61085ce041ec4db4b78e1713a9 | daf1c0d8259470026a4b4edd63e958d81d3896fa | refs/heads/master | 2021-01-21T13:57:40.784402 | 2016-05-28T13:23:41 | 2016-05-28T13:23:41 | 43,750,759 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 13,081 | h | #include "TObject.h"
#include "TFile.h"
#include "TROOT.h"
#include "TTree.h"
#include "TH2.h"
#include <memory>
#include <cstdlib>
#include <string>
#include <sstream>
#define NOVAL_I -9999
#define NOVAL_F -9999.0
#define VERSION2 36
//Defining Dataset Structures
// Event info
class EventData {
public:
int fill;
int run;
int ls;
int orb;
int bx;
int evt;
int nvtx;
int trig;
int nclu[4]; // [0: fpix, i: layer i]
int npix[4]; // [0: fpix, i: layer i]
unsigned int beamint[2];
float l1_rate;
float intlumi;
float instlumi;
float instlumi_ext;
float pileup;
float weight;
float vtxndof;
float vtxchi2;
float vtxD0;
float vtxX;
float vtxY;
float vtxZ;
int vtxntrk;
int good;
float tmuon;
float tmuon_err;
float tecal;
float tecal_raw;
float tecal_err;
float field;
int wbc;
int delay;
int ntracks;
int ntrackFPix[2]; // tracks crossing the pixels
int ntrackBPix[3]; // tracks crossing the pixels
int ntrackFPixvalid[2]; // tracks crossing the pixels with valid hits
int ntrackBPixvalid[3]; // tracks crossing the pixels with valid hits
float trackSep;
int federrs_size;
// must be the last variable of the object saved to TTree:
int federrs[16][2]; // [error index] [0:Nerror, 1:errorType]
std::string list;
EventData() { init(); };
void init() {
fill=NOVAL_I;
run=NOVAL_I;
ls=NOVAL_I;
orb=NOVAL_I;
bx=NOVAL_I;
evt=NOVAL_I;
nvtx=NOVAL_I;
trig=NOVAL_I;
for (size_t i=0; i<4; i++) nclu[i]=npix[i]=NOVAL_I;
beamint[0]=beamint[1]=abs(NOVAL_I);
l1_rate=NOVAL_F;
intlumi=NOVAL_F;
instlumi=NOVAL_F;
instlumi_ext=NOVAL_F;
pileup=NOVAL_F;
weight=NOVAL_F;
vtxndof=vtxD0=vtxZ=NOVAL_F;
vtxX=vtxY=vtxchi2=NOVAL_F;
vtxntrk=NOVAL_I;
good=NOVAL_I;
tmuon=NOVAL_F;
tmuon_err=NOVAL_F;
tecal=NOVAL_F;
tecal_raw=NOVAL_F;
tecal_err=NOVAL_F;
field=NOVAL_F;
wbc=NOVAL_I;
delay=NOVAL_I;
ntracks=NOVAL_I;
ntrackFPix[0]=ntrackFPix[1]=NOVAL_I;
ntrackBPix[0]=ntrackBPix[1]=ntrackBPix[2]=NOVAL_I;
ntrackFPixvalid[0]=ntrackFPixvalid[1]=NOVAL_I;
ntrackBPixvalid[0]=ntrackBPixvalid[1]=ntrackBPixvalid[2]=NOVAL_I;
trackSep=NOVAL_F;
federrs_size=0;
for (size_t i=0; i<16; i++) federrs[i][0]=federrs[i][1]=NOVAL_I;
list="fill/I:run:ls:orb:bx:evt:nvtx:trig:nclu[4]:npix[4]:beamint[2]/i:"
"l1_rate/F:intlumi:instlumi:instlumi_ext:pileup:weight:vtxndof:vtxchi2:"
"vtxD0:vtxX:vtxY:vtxZ:vtxntrk/I:good:tmuon/F:tmuon_err:tecal:tecal_raw:"
"tecal_err:field:wbc/I:delay:ntracks:ntrackFPix[2]:ntrackBPix[3]:"
"ntrackFPixvalid[2]:ntrackBPixvalid[3]:trackSep/F:federrs_size/I:"
"federrs[federrs_size][2]";
}
};
// Lumi info
class LumiData {
public:
int fill;
int run;
int ls;
unsigned int time; // Unix time - seconds starting from 1970 Jan 01 00:00
unsigned int beamint[2];
float intlumi;
float instlumi;
float instlumi_ext;
float pileup;
int l1_size;
int l1_prescale[1000]; // prescale for the L1 trigger with idx
std::string list;
LumiData() { init(); };
void init() {
fill=NOVAL_I;
run=NOVAL_I;
ls=NOVAL_I;
time=abs(NOVAL_I);
beamint[0]=beamint[1]=abs(NOVAL_I);
intlumi=NOVAL_F;
instlumi=NOVAL_F;
l1_size=0;
for (size_t i=0; i<1000; i++) l1_prescale[i]=NOVAL_I;
list="fill/I:run:ls:time/i:beamint[2]:intlumi/F:instlumi:instlumi_ext:"
"pileup:l1_size/I:l1_prescale[l1_size]";
}
};
// Run info
class RunData {
public:
int fill;
int run;
std::string list;
RunData() { init(); };
void init() {
fill=NOVAL_I;
run=NOVAL_I;
list="fill/I:run";
}
};
// Track info
class TrackData {
public:
// Non-split mode from here - keep order of variables
int validfpix[2]; // valid recHits in Diks1,2
int validbpix[3]; // valid recHits in Layer 1,2,3
int strip; // total valid hits
int nstripmissing;
int nstriplost;
int nstriplayer;
int quality;
float d0;
float dz;
float pt;
// From here Split mode (if SPLIT defined)
float ndof;
float chi2;
float eta;
float phi;
float theta;
float p;
int algo;
int fromVtx;
int i;
int pix; // total valid hits
int pixhit[2]; // 0: top, 1: bottom
int validpixhit[2]; // 0: top, 1: bottom
int fpix[2]; // recHits in Diks1,2
int bpix[3]; // recHits in Layer 1,2,3
int highPurity;
std::string list;
TrackData() { init(); }
void init() {
validfpix[0]=validfpix[1]=NOVAL_I;
validbpix[0]=validbpix[1]=validbpix[2]=NOVAL_I;
strip=NOVAL_I;
nstripmissing=NOVAL_I;
nstriplost=NOVAL_I;
nstriplayer=NOVAL_I;
quality=NOVAL_I;
d0=NOVAL_F;
dz=NOVAL_F;
pt=NOVAL_F;
ndof=NOVAL_F;
chi2=NOVAL_F;
eta=NOVAL_F;
phi=NOVAL_F;
theta=NOVAL_F;
p=NOVAL_F;
algo=NOVAL_I;
fromVtx=NOVAL_I;
i=NOVAL_I;
pix=NOVAL_I;
pixhit[0]=pixhit[1]=NOVAL_I;
validpixhit[0]=validpixhit[1]=NOVAL_I;
fpix[0]=fpix[1]=NOVAL_I;
bpix[0]=bpix[1]=bpix[2]=NOVAL_I;
highPurity=NOVAL_I;
#ifdef COMPLETE
list="validfpix[2]/I:validbpix[3]:strip:nstripmissing:nstriplost:nstriplayer:"
"quality:d0/F:dz:pt:ndof:chi2:eta:phi:theta:p:algo/I:fromVtx:i:pix:pixhit[2]:"
"validpixhit[2]:fpix[2]:bpix[3]:highPurity";
#else
list="validfpix[2]/I:validbpix[3]:strip:nstripmissing:nstriplost:nstriplayer:"
"quality:d0/F:dz:pt:ndof:chi2:eta:phi";
#endif
}
};
// Module info
class ModuleData {
public:
int det;
int layer;
int ladder;
int half;
int module;
int disk;
int blade;
int panel;
int federr;
int side;
int prt;
int shl;
int sec;
int outer;
unsigned int rawid;
std::map<int, std::string> federrortypes;
std::string list;
ModuleData() { init(); }
void init() {
det=NOVAL_I;
layer=NOVAL_I;
ladder=NOVAL_I;
half=NOVAL_I;
module=NOVAL_I;
disk=NOVAL_I;
blade=NOVAL_I;
panel=NOVAL_I;
federr = NOVAL_I;
side=NOVAL_I;
prt=NOVAL_I;
shl=NOVAL_I;
sec=NOVAL_I;
outer=NOVAL_I;
rawid=abs(NOVAL_I);
federrortypes.insert(std::pair<int, std::string>(25, "invalidROC"));
federrortypes.insert(std::pair<int, std::string>(26, "gap word"));
federrortypes.insert(std::pair<int, std::string>(27, "dummy word"));
federrortypes.insert(std::pair<int, std::string>(28, "FIFO full error"));
federrortypes.insert(std::pair<int, std::string>(29, "timeout error"));
federrortypes.insert(std::pair<int, std::string>(30, "TBM error trailer"));
federrortypes.insert(std::pair<int, std::string>(31, "event number error (TBM and FED event number mismatch)"));
federrortypes.insert(std::pair<int, std::string>(32, "incorrectly formatted Slink Header"));
federrortypes.insert(std::pair<int, std::string>(33, "incorrectly formatted Slink Trailer"));
federrortypes.insert(std::pair<int, std::string>(34, "the event size encoded in the Slink Trailer is different than the size found at raw to digi conversion "));
federrortypes.insert(std::pair<int, std::string>(35, "invalid FED channel number"));
federrortypes.insert(std::pair<int, std::string>(36, "invalid ROC value "));
federrortypes.insert(std::pair<int, std::string>(37, "invalid dcol or pixel value "));
federrortypes.insert(std::pair<int, std::string>(38, "the pixels on a ROC weren't read out from lowest to highest row and dcol value"));
federrortypes.insert(std::pair<int, std::string>(39, "CRC error"));
#ifdef COMPLETE
list="det/I:layer:ladder:half:module:disk:blade:panel:federr:side:prt:shl:"
"sec:outer:rawid/i";
#else
list="det/I:layer:ladder:half:module:disk:blade:panel:federr";
#endif
}
std::string shell() {
std::ostringstream ss;
if (det==0) {
ss << "B" << ((module>0) ? "p" : "m") << ((ladder>0) ? "I" : "O");
} else if (det==1) {
ss << "B" << ((disk>0) ? "p" : "m") << ((blade>0) ? "I" : "O");
}
return ss.str();
}
int shell_num() {
if (det==0) return ((module>0) ? 0 : 2) + ((ladder>0) ? 0 : 1);
else if (det==1) return ((disk>0) ? 0 : 2) + ((blade>0) ? 0 : 1);
return -1;
}
std::string federr_name() {
std::map<int, std::string>::const_iterator it=federrortypes.find(federr);
return (it!=federrortypes.end()) ? it->second : "FED error not interpreted";
}
};
// Cluster info
class ClustData {
public:
// Paired branches (SPLIT mode)
float x;
float y;
int sizeX;
int sizeY;
// From here Split mode (if SPLIT defined)
int i; // serial num of cluster in the given module
int edge; // set if there is a valid hit
int badpix; // set if there is a valid hit
int tworoc; // set if there is a valid hit
int size;
float charge;
// adc must be the last variable of the branch
float adc[1000];
float pix[1000][2];
std::string list;
ClustData() { init(); }
void init() {
x=NOVAL_F;
y=NOVAL_F;
sizeX=NOVAL_I;
sizeY=NOVAL_I;
i=NOVAL_I;
edge=NOVAL_I;
badpix=NOVAL_I;
tworoc=NOVAL_I;
size=0;
charge=NOVAL_F;
for (size_t j=0; j<1000; j++) adc[j]=pix[j][0]=pix[j][1]=NOVAL_F;
list="x:y:sizeX/I:sizeY:i:edge:badpix:tworoc:size:charge/F:adc[size]";
}
};
// Digi info
class DigiData {
public:
int i; // serial num of digi in the given module
int row;
int col;
int adc;
std::string list;
DigiData() { init(); }
void init() {
i=NOVAL_I;
row=NOVAL_I;
col=NOVAL_I;
adc=NOVAL_I;
list="i/I:row:col:adc";
}
};
// Trajectory info
class TrajMeasData {
public:
// Non-split mode from here - keep order of variables
int validhit;
int missing;
float lx;
float ly;
float res_dx;
float res_dz;
float lev;
int clust_near;
int hit_near;
int pass_effcuts;
// Paired branch (keep order)
int nclu_mod;
int nclu_roc;
int npix_mod;
int npix_roc;
float alpha;
float beta;
float dx_cl[2];
float dy_cl[2];
float dx_hit;
float dy_hit;
// From here Split mode (if SPLIT defined)
float norm_charge;
float lz;
float glx;
float gly;
float glz;
float lxmatch;
float lymatch;
int i; // serial num of trajectory measurement on the (single) track of the event
int onedge;
int inactive;
int badhit;
int telescope;
int telescope_valid;
int dmodule; // D(propagated hit, valid hit)
int dladder; // D(propagated hit, valid hit)
float glmatch;
float lx_err;
float ly_err;
float lz_err;
float lxymatch;
float res_hit;
float sig_hit;
float d_cl[2];
std::string list;
TrajMeasData() { init(); }
void init() {
validhit=NOVAL_I;
missing=NOVAL_I;
lx=NOVAL_F;
ly=NOVAL_F;
res_dx=NOVAL_F;
res_dz=NOVAL_F;
lev=NOVAL_F;
clust_near=NOVAL_I;
hit_near=NOVAL_I;
pass_effcuts=NOVAL_I;
nclu_mod=NOVAL_I;
nclu_roc=NOVAL_I;
npix_mod=NOVAL_I;
npix_roc=NOVAL_I;
alpha=NOVAL_F;
beta=NOVAL_F;
dx_cl[0]=dx_cl[1]=NOVAL_F;
dy_cl[0]=dy_cl[1]=NOVAL_F;
dx_hit=NOVAL_F;
dy_hit=NOVAL_F;
lz=NOVAL_F;
glx=NOVAL_F;
gly=NOVAL_F;
glz=NOVAL_F;
lxmatch=NOVAL_F;
lymatch=NOVAL_F;
norm_charge=NOVAL_F;
i=NOVAL_I;
onedge=NOVAL_I;
inactive=NOVAL_I;
badhit=NOVAL_I;
telescope=NOVAL_I;
telescope_valid=NOVAL_I;
dmodule=NOVAL_I;
dladder=NOVAL_I;
glmatch=NOVAL_F;
lx_err=NOVAL_F;
ly_err=NOVAL_F;
lz_err=NOVAL_F;
lxymatch=NOVAL_F;
res_hit=NOVAL_F;
sig_hit=NOVAL_F;
d_cl[0]=d_cl[1]=NOVAL_F;
#ifdef COMPLETE
list="validhit/I:missing:lx/F:ly:res_dx:res_dz:lev:clust_near/I:hit_near:"
"pass_efcuts:nclu_mod:nclu_roc:npix_mod:npix_roc:alpha/F:beta:dx_cl[2]:"
"dy_cl[2]:dx_hit:dy_hit:norm_charge:lz:glx:gly:glz:lxmatch:lymatch:i/I:"
"onedge:inactive:badhit:telescope:telescope_valid:dmodule:dladder:"
"glmatch/F:lx_err:ly_err:lz_err:lxymatch:res_hit:sig_hit:d_cl[2]";
#else
list="validhit/I:missing:lx/F:ly:res_dx:res_dz:lev:clust_near/I:hit_near:"
"pass_efcuts:nclu_mod:nclu_roc:npix_mod:npix_roc:alpha/F:beta:dx_cl[2]:"
"dy_cl[2]:dx_hit:dy_hit:norm_charge";
#endif
}
};
class Cluster : public ClustData {
public:
ModuleData mod; // offline module number
ModuleData mod_on; // online module number
Cluster() { mod.init(); mod_on.init();}
void init() {
ClustData::init();
mod.init();
mod_on.init();
}
};
class Digi : public DigiData {
public:
ModuleData mod; // offline module number
ModuleData mod_on; // online module number
Digi() { mod.init(); mod_on.init(); }
void init() {
DigiData::init();
mod.init();
mod_on.init();
}
};
class TrajMeasurement : public TrajMeasData {
public:
ModuleData mod; // offline module number
ModuleData mod_on; // online module number
ClustData clu;
TrackData trk;
TrajMeasurement() { mod.init(); mod_on.init(); clu.init(); trk.init(); }
void init() {
TrajMeasData::init();
mod.init();
mod_on.init();
clu.init();
trk.init();
}
}; | [
"hunyadix@gmail.com"
] | hunyadix@gmail.com |
64a5652d0c19ca593a2808bcfe7d31cf41aeec6a | 20a59a738c1d8521dc95c380190b48d7bc3bb0bb | /layouts/aknlayout2/generated/Nhd4_uiaccel/aknlayoutscalable_abrw_hnp4_c_nhd4_prt_tch_small.cpp | 92a3e5271eb1f321113103e4d587c1c06b43aa4d | [] | no_license | SymbianSource/oss.FCL.sf.mw.uiresources | 376c0cf0bccf470008ae066aeae1e3538f9701c6 | b78660bec78835802edd6575b96897d4aba58376 | refs/heads/master | 2021-01-13T13:17:08.423030 | 2010-10-19T08:42:43 | 2010-10-19T08:42:43 | 72,681,263 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 49,625 | cpp | /*
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
* Initial Contributors:
* Nokia Corporation - initial contribution.
*
* Contributors:
*
* Description:
*
*/
// This customisation implements the interface defined in AknLayoutScalable_UiAccel.cdl
#include "aknlayoutscalable_abrw_hnp4_c_nhd4_prt_tch_small.h"
#include "AknLayout2ScalableDecode.h"
namespace AknLayoutScalable_UiAccel { extern const TUint8 KByteCodedData_AknLayoutScalable_Elaf_hnp4_c_nhd4_prt_tch[]; }
namespace AknLayoutScalable_Abrw_hnp4_c_nhd4_prt_tch_Small
{
extern const TUint16 KDataLookup[AknLayoutScalable_UiAccel::E_TApiId_TableSize];
const SCompDataImplData KImplData = { KDataLookup, AknLayoutScalable_UiAccel::KByteCodedData_AknLayoutScalable_Elaf_hnp4_c_nhd4_prt_tch + 0x00000000 };
TAknWindowComponentLayout WindowLineVCR(TInt aVariety, TInt aCol, TInt aRow) { return AknLayoutScalableDecode::WindowLineVCR(&KImplData, aVariety, aCol, aRow); }
TAknLayoutScalableParameterLimits ParameterLimitsV(TInt aVariety) { return AknLayoutScalableDecode::ParameterLimitsV(&KImplData, aVariety); }
TAknTextComponentLayout TextLineVCR(TInt aVariety, TInt aCol, TInt aRow) { return AknLayoutScalableDecode::TextLineVCR(&KImplData, aVariety, aCol, aRow); }
TAknWindowComponentLayout WindowTableLVCR(TInt aLineIndex, TInt aVariety, TInt aCol, TInt aRow) { return AknLayoutScalableDecode::WindowTableLVCR(&KImplData, aLineIndex, aVariety, aCol, aRow); }
TAknLayoutScalableTableLimits Limits() { return AknLayoutScalableDecode::TableLimits(KDataLookup); }
TAknLayoutScalableParameterLimits ParameterLimitsTableLV(TInt aLineIndex, TInt aVariety) { return AknLayoutScalableDecode::ParameterLimitsTableLV(&KImplData, aLineIndex, aVariety); }
TAknTextComponentLayout TextTableLVCR(TInt aLineIndex, TInt aVariety, TInt aCol, TInt aRow) { return AknLayoutScalableDecode::TextTableLVCR(&KImplData, aLineIndex, aVariety, aCol, aRow); }
TAknLayoutScalableComponentType GetComponentTypeById(TInt aComponentId) { return AknLayoutScalableDecode::GetComponentTypeById(&KImplData, aComponentId); }
TAknLayoutScalableParameterLimits GetParamLimitsById(TInt aComponentId, TInt aVariety) { return AknLayoutScalableDecode::GetParamLimitsById(&KImplData, aComponentId, aVariety); }
TAknWindowComponentLayout GetWindowComponentById(TInt aComponentId, TInt aVariety, TInt aCol, TInt aRow) { return AknLayoutScalableDecode::GetWindowComponentById(&KImplData, aComponentId, aVariety, aCol, aRow); }
TAknTextComponentLayout GetTextComponentById(TInt aComponentId, TInt aVariety, TInt aCol, TInt aRow) { return AknLayoutScalableDecode::GetTextComponentById(&KImplData, aComponentId, aVariety, aCol, aRow); }
const TUint16 KDataLookup[AknLayoutScalable_UiAccel::E_TApiId_TableSize] =
{
0x0000,
0x0000,
0x0000,
0x0000,
0x0000, // (0x00000000) Screen
0x000c, // (0x0000000c) application_window
0x0016, // (0x00000016) area_bottom_pane_ParamLimits
0x0016, // (0x00000016) area_bottom_pane
0x0046, // (0x00000046) area_top_pane_ParamLimits
0x0046, // (0x00000046) area_top_pane
0x005c, // (0x0000005c) main_pane_ParamLimits
0x005c, // (0x0000005c) main_pane
0x000c, // (0x0000000c) main_hc_listscroll_pane
0x00f8, // (0x000000f8) hc_list_pane
0x010b, // (0x0000010b) hc_scroll_pane
0x016f, // (0x0000016f) hc_list_double2_graphic_pane
0x016f, // (0x0000016f) hc_list_double2_large_graphic_pane
0x016f, // (0x0000016f) hc_list_double2_pane
0x0178, // (0x00000178) hc_list_double_graphic_pane
0x0178, // (0x00000178) hc_list_double_heading_pane
0x0178, // (0x00000178) hc_list_double_large_graphic_pane
0x0178, // (0x00000178) hc_list_double_pane
0x0181, // (0x00000181) hc_list_single_graphic_pane
0x0181, // (0x00000181) hc_list_single_heading_pane
0x016f, // (0x0000016f) hc_list_single_large_graphic_pane
0x0181, // (0x00000181) hc_list_single_pane
0x01dc, // (0x000001dc) hc_list_single_pane_g1_ParamLimits
0x01dc, // (0x000001dc) hc_list_single_pane_g1
0x01e8, // (0x000001e8) hc_list_single_pane_g2_ParamLimits
0x01e8, // (0x000001e8) hc_list_single_pane_g2
0x0001,
0x1295, // (0x00001295) hc_list_single_pane_g_ParamLimits
0x1295, // (0x00001295) hc_list_single_pane_g
0x01fc, // (0x000001fc) hc_list_single_pane_t1_ParamLimits
0x01fc, // (0x000001fc) hc_list_single_pane_t1
0x0213, // (0x00000213) hc_list_single_graphic_pane_g1_ParamLimits
0x0213, // (0x00000213) hc_list_single_graphic_pane_g1
0x021f, // (0x0000021f) hc_list_single_graphic_pane_g2_ParamLimits
0x021f, // (0x0000021f) hc_list_single_graphic_pane_g2
0x01e8, // (0x000001e8) hc_list_single_graphic_pane_g3_ParamLimits
0x01e8, // (0x000001e8) hc_list_single_graphic_pane_g3
0x0002,
0x129a, // (0x0000129a) hc_list_single_graphic_pane_g_ParamLimits
0x129a, // (0x0000129a) hc_list_single_graphic_pane_g
0x022e, // (0x0000022e) hc_list_single_graphic_pane_t1_ParamLimits
0x022e, // (0x0000022e) hc_list_single_graphic_pane_t1
0x01dc, // (0x000001dc) hc_list_single_heading_pane_g1_ParamLimits
0x01dc, // (0x000001dc) hc_list_single_heading_pane_g1
0x01e8, // (0x000001e8) hc_list_single_heading_pane_g2_ParamLimits
0x01e8, // (0x000001e8) hc_list_single_heading_pane_g2
0x0001,
0x1295, // (0x00001295) hc_list_single_heading_pane_g_ParamLimits
0x1295, // (0x00001295) hc_list_single_heading_pane_g
0x0244, // (0x00000244) hc_list_single_heading_pane_t1_ParamLimits
0x0244, // (0x00000244) hc_list_single_heading_pane_t1
0x0256, // (0x00000256) hc_list_single_heading_pane_t2_ParamLimits
0x0256, // (0x00000256) hc_list_single_heading_pane_t2
0x0001,
0x12a1, // (0x000012a1) hc_list_single_heading_pane_t_ParamLimits
0x12a1, // (0x000012a1) hc_list_single_heading_pane_t
0x026c, // (0x0000026c) hc_list_single_large_graphic_pane_g1_ParamLimits
0x026c, // (0x0000026c) hc_list_single_large_graphic_pane_g1
0x0278, // (0x00000278) hc_list_single_large_graphic_pane_g2_ParamLimits
0x0278, // (0x00000278) hc_list_single_large_graphic_pane_g2
0x0284, // (0x00000284) hc_list_single_large_graphic_pane_g3_ParamLimits
0x0284, // (0x00000284) hc_list_single_large_graphic_pane_g3
0x0002,
0x12a6, // (0x000012a6) hc_list_single_large_graphic_pane_g_ParamLimits
0x12a6, // (0x000012a6) hc_list_single_large_graphic_pane_g
0x0298, // (0x00000298) hc_list_single_large_graphic_pane_t1_ParamLimits
0x0298, // (0x00000298) hc_list_single_large_graphic_pane_t1
0x01dc, // (0x000001dc) hc_list_double_pane_g1_ParamLimits
0x01dc, // (0x000001dc) hc_list_double_pane_g1
0x01e8, // (0x000001e8) hc_list_double_pane_g2_ParamLimits
0x01e8, // (0x000001e8) hc_list_double_pane_g2
0x0001,
0x1295, // (0x00001295) hc_list_double_pane_g_ParamLimits
0x1295, // (0x00001295) hc_list_double_pane_g
0x02ae, // (0x000002ae) hc_list_double_pane_t1_ParamLimits
0x02ae, // (0x000002ae) hc_list_double_pane_t1
0x02c4, // (0x000002c4) hc_list_double_pane_t2_ParamLimits
0x02c4, // (0x000002c4) hc_list_double_pane_t2
0x0001,
0x12ad, // (0x000012ad) hc_list_double_pane_t_ParamLimits
0x12ad, // (0x000012ad) hc_list_double_pane_t
0x0213, // (0x00000213) hc_list_double_graphic_pane_g1_ParamLimits
0x0213, // (0x00000213) hc_list_double_graphic_pane_g1
0x01dc, // (0x000001dc) hc_list_double_graphic_pane_g2_ParamLimits
0x01dc, // (0x000001dc) hc_list_double_graphic_pane_g2
0x01e8, // (0x000001e8) hc_list_double_graphic_pane_g3_ParamLimits
0x01e8, // (0x000001e8) hc_list_double_graphic_pane_g3
0x0002,
0x12b2, // (0x000012b2) hc_list_double_graphic_pane_g_ParamLimits
0x12b2, // (0x000012b2) hc_list_double_graphic_pane_g
0x022e, // (0x0000022e) hc_list_double_graphic_pane_t1_ParamLimits
0x022e, // (0x0000022e) hc_list_double_graphic_pane_t1
0x02d6, // (0x000002d6) hc_list_double_graphic_pane_t2_ParamLimits
0x02d6, // (0x000002d6) hc_list_double_graphic_pane_t2
0x0001,
0x12b9, // (0x000012b9) hc_list_double_graphic_pane_t_ParamLimits
0x12b9, // (0x000012b9) hc_list_double_graphic_pane_t
0x02e8, // (0x000002e8) hc_list_double_heading_pane_g1_ParamLimits
0x02e8, // (0x000002e8) hc_list_double_heading_pane_g1
0x02f4, // (0x000002f4) hc_list_double_heading_pane_g2_ParamLimits
0x02f4, // (0x000002f4) hc_list_double_heading_pane_g2
0x0001,
0x12be, // (0x000012be) hc_list_double_heading_pane_g_ParamLimits
0x12be, // (0x000012be) hc_list_double_heading_pane_g
0x0308, // (0x00000308) hc_list_double_heading_pane_t1_ParamLimits
0x0308, // (0x00000308) hc_list_double_heading_pane_t1
0x031a, // (0x0000031a) hc_list_double_heading_pane_t2_ParamLimits
0x031a, // (0x0000031a) hc_list_double_heading_pane_t2
0x0001,
0x12c3, // (0x000012c3) hc_list_double_heading_pane_t_ParamLimits
0x12c3, // (0x000012c3) hc_list_double_heading_pane_t
0x0330, // (0x00000330) hc_list_double_large_graphic_pane_g1_ParamLimits
0x0330, // (0x00000330) hc_list_double_large_graphic_pane_g1
0x033c, // (0x0000033c) hc_list_double_large_graphic_pane_g2_ParamLimits
0x033c, // (0x0000033c) hc_list_double_large_graphic_pane_g2
0x0348, // (0x00000348) hc_list_double_large_graphic_pane_g3_ParamLimits
0x0348, // (0x00000348) hc_list_double_large_graphic_pane_g3
0x0002,
0x12c8, // (0x000012c8) hc_list_double_large_graphic_pane_g_ParamLimits
0x12c8, // (0x000012c8) hc_list_double_large_graphic_pane_g
0x035c, // (0x0000035c) hc_list_double_large_graphic_pane_t1_ParamLimits
0x035c, // (0x0000035c) hc_list_double_large_graphic_pane_t1
0x0372, // (0x00000372) hc_list_double_large_graphic_pane_t2_ParamLimits
0x0372, // (0x00000372) hc_list_double_large_graphic_pane_t2
0x0001,
0x12cf, // (0x000012cf) hc_list_double_large_graphic_pane_t_ParamLimits
0x12cf, // (0x000012cf) hc_list_double_large_graphic_pane_t
0x01dc, // (0x000001dc) hc_list_double2_pane_g1_ParamLimits
0x01dc, // (0x000001dc) hc_list_double2_pane_g1
0x01e8, // (0x000001e8) hc_list_double2_pane_g2_ParamLimits
0x01e8, // (0x000001e8) hc_list_double2_pane_g2
0x0001,
0x1295, // (0x00001295) hc_list_double2_pane_g_ParamLimits
0x1295, // (0x00001295) hc_list_double2_pane_g
0x02ae, // (0x000002ae) hc_list_double2_pane_t1_ParamLimits
0x02ae, // (0x000002ae) hc_list_double2_pane_t1
0x0384, // (0x00000384) hc_list_double2_pane_t2_ParamLimits
0x0384, // (0x00000384) hc_list_double2_pane_t2
0x0001,
0x12d4, // (0x000012d4) hc_list_double2_pane_t_ParamLimits
0x12d4, // (0x000012d4) hc_list_double2_pane_t
0x0213, // (0x00000213) hc_list_double2_graphic_pane_g1_ParamLimits
0x0213, // (0x00000213) hc_list_double2_graphic_pane_g1
0x01dc, // (0x000001dc) hc_list_double2_graphic_pane_g2_ParamLimits
0x01dc, // (0x000001dc) hc_list_double2_graphic_pane_g2
0x01e8, // (0x000001e8) hc_list_double2_graphic_pane_g3_ParamLimits
0x01e8, // (0x000001e8) hc_list_double2_graphic_pane_g3
0x0002,
0x12b2, // (0x000012b2) hc_list_double2_graphic_pane_g_ParamLimits
0x12b2, // (0x000012b2) hc_list_double2_graphic_pane_g
0x022e, // (0x0000022e) hc_list_double2_graphic_pane_t1_ParamLimits
0x022e, // (0x0000022e) hc_list_double2_graphic_pane_t1
0x0396, // (0x00000396) hc_list_double2_graphic_pane_t2_ParamLimits
0x0396, // (0x00000396) hc_list_double2_graphic_pane_t2
0x0001,
0x12d9, // (0x000012d9) hc_list_double2_graphic_pane_t_ParamLimits
0x12d9, // (0x000012d9) hc_list_double2_graphic_pane_t
0x026c, // (0x0000026c) hc_list_double2_large_graphic_pane_g1_ParamLimits
0x026c, // (0x0000026c) hc_list_double2_large_graphic_pane_g1
0x01dc, // (0x000001dc) hc_list_double2_large_graphic_pane_g2_ParamLimits
0x01dc, // (0x000001dc) hc_list_double2_large_graphic_pane_g2
0x01e8, // (0x000001e8) hc_list_double2_large_graphic_pane_g3_ParamLimits
0x01e8, // (0x000001e8) hc_list_double2_large_graphic_pane_g3
0x0002,
0x12de, // (0x000012de) hc_list_double2_large_graphic_pane_g_ParamLimits
0x12de, // (0x000012de) hc_list_double2_large_graphic_pane_g
0x03a8, // (0x000003a8) hc_list_double2_large_graphic_pane_t1_ParamLimits
0x03a8, // (0x000003a8) hc_list_double2_large_graphic_pane_t1
0x03be, // (0x000003be) hc_list_double2_large_graphic_pane_t2_ParamLimits
0x03be, // (0x000003be) hc_list_double2_large_graphic_pane_t2
0x0001,
0x12e5, // (0x000012e5) hc_list_double2_large_graphic_pane_t_ParamLimits
0x12e5, // (0x000012e5) hc_list_double2_large_graphic_pane_t
0x000c, // (0x0000000c) main_hc_button_pane
0x00c1, // (0x000000c1) aid_hc_size_touch_scroll_bar_ParamLimits
0x00c1, // (0x000000c1) aid_hc_size_touch_scroll_bar
0x00e2, // (0x000000e2) aid_hc_size_touch_scroll_bar_cp01_ParamLimits
0x00e2, // (0x000000e2) aid_hc_size_touch_scroll_bar_cp01
0x0101, // (0x00000101) hc_popup_scroll_hotspot_window
0x010b, // (0x0000010b) hc_scroll_pane_ParamLimits
0x013b, // (0x0000013b) hc_scroll_pane_cp01_ParamLimits
0x013b, // (0x0000013b) hc_scroll_pane_cp01
0x0151, // (0x00000151) main_hc_listscroll_pane_g1_ParamLimits
0x0151, // (0x00000151) main_hc_listscroll_pane_g1
0x0163, // (0x00000163) main_hc_listscroll_pane_g2_ParamLimits
0x0163, // (0x00000163) main_hc_listscroll_pane_g2
0x0001,
0x1290, // (0x00001290) main_hc_listscroll_pane_g_ParamLimits
0x1290, // (0x00001290) main_hc_listscroll_pane_g
0x0178, // (0x00000178) hc_list_double_graphic_heading_pane
0x018a, // (0x0000018a) aid_hc_size_max_handle_ParamLimits
0x018a, // (0x0000018a) aid_hc_size_max_handle
0x01a0, // (0x000001a0) aid_hc_size_min_handle_ParamLimits
0x01a0, // (0x000001a0) aid_hc_size_min_handle
0x00b3, // (0x000000b3) hc_scroll_bg_pane_ParamLimits
0x00b3, // (0x000000b3) hc_scroll_bg_pane
0x01b4, // (0x000001b4) hc_scroll_handle_pane_ParamLimits
0x01b4, // (0x000001b4) hc_scroll_handle_pane
0x01c8, // (0x000001c8) hc_scroll_pane_g1_ParamLimits
0x01c8, // (0x000001c8) hc_scroll_pane_g1
0x01c8, // (0x000001c8) hc_scroll_bg_pane_g1_ParamLimits
0x01c8, // (0x000001c8) hc_scroll_bg_pane_g1
0x03d0, // (0x000003d0) hc_scroll_bg_pane_g2_ParamLimits
0x03d0, // (0x000003d0) hc_scroll_bg_pane_g2
0x03e8, // (0x000003e8) hc_scroll_bg_pane_g3_ParamLimits
0x03e8, // (0x000003e8) hc_scroll_bg_pane_g3
0x0002,
0x12ea, // (0x000012ea) hc_scroll_bg_pane_g_ParamLimits
0x12ea, // (0x000012ea) hc_scroll_bg_pane_g
0x01c8, // (0x000001c8) hc_scroll_handle_pane_g1_ParamLimits
0x01c8, // (0x000001c8) hc_scroll_handle_pane_g1
0x03d0, // (0x000003d0) hc_scroll_handle_pane_g2_ParamLimits
0x03d0, // (0x000003d0) hc_scroll_handle_pane_g2
0x03e8, // (0x000003e8) hc_scroll_handle_pane_g3_ParamLimits
0x03e8, // (0x000003e8) hc_scroll_handle_pane_g3
0x0002,
0x12ea, // (0x000012ea) hc_scroll_handle_pane_g_ParamLimits
0x12ea, // (0x000012ea) hc_scroll_handle_pane_g
0x000c, // (0x0000000c) bg_hc_secondary_window
0x0400, // (0x00000400) qfn_secondary_cp6
0x040e, // (0x0000040e) hc_button_pane
0x0416, // (0x00000416) bg_hc_button_pane_ParamLimits
0x0416, // (0x00000416) bg_hc_button_pane
0x0424, // (0x00000424) hc_button_pane_g1_ParamLimits
0x0424, // (0x00000424) hc_button_pane_g1
0x043f, // (0x0000043f) hc_button_pane_t1_ParamLimits
0x043f, // (0x0000043f) hc_button_pane_t1
0x045d, // (0x0000045d) bg_hc_button_pane_g1
0x0465, // (0x00000465) bg_hc_button_pane_g2
0x046d, // (0x0000046d) bg_hc_button_pane_g3
0x0475, // (0x00000475) bg_hc_button_pane_g4
0x047d, // (0x0000047d) bg_hc_button_pane_g5
0x0485, // (0x00000485) bg_hc_button_pane_g6
0x048d, // (0x0000048d) bg_hc_button_pane_g7
0x0495, // (0x00000495) bg_hc_button_pane_g8
0x049d, // (0x0000049d) bg_hc_button_pane_g9
0x0008,
0x12f1, // (0x000012f1) bg_hc_button_pane_g
0x0213, // (0x00000213) hc_list_double_graphic_heading_pane_g1_ParamLimits
0x0213, // (0x00000213) hc_list_double_graphic_heading_pane_g1
0x02e8, // (0x000002e8) hc_list_double_graphic_heading_pane_g2_ParamLimits
0x02e8, // (0x000002e8) hc_list_double_graphic_heading_pane_g2
0x02f4, // (0x000002f4) hc_list_double_graphic_heading_pane_g3_ParamLimits
0x02f4, // (0x000002f4) hc_list_double_graphic_heading_pane_g3
0x0002,
0x1304, // (0x00001304) hc_list_double_graphic_heading_pane_g_ParamLimits
0x1304, // (0x00001304) hc_list_double_graphic_heading_pane_g
0x04a5, // (0x000004a5) hc_list_double_graphic_heading_pane_t1_ParamLimits
0x04a5, // (0x000004a5) hc_list_double_graphic_heading_pane_t1
0x04b7, // (0x000004b7) hc_list_double_graphic_heading_pane_t2_ParamLimits
0x04b7, // (0x000004b7) hc_list_double_graphic_heading_pane_t2
0x0001,
0x130b, // (0x0000130b) hc_list_double_graphic_heading_pane_t_ParamLimits
0x130b, // (0x0000130b) hc_list_double_graphic_heading_pane_t
0x000c, // (0x0000000c) main_hc_gridscroll_pane
0x000c, // (0x0000000c) bg_hc_highlight_list_pane
0x04cd, // (0x000004cd) aid_hc_grid_cell_size_ParamLimits
0x04cd, // (0x000004cd) aid_hc_grid_cell_size
0x04e3, // (0x000004e3) hc_scroll_pane_cp02_ParamLimits
0x04e3, // (0x000004e3) hc_scroll_pane_cp02
0x04f0, // (0x000004f0) main_hc_grid_pane_ParamLimits
0x04f0, // (0x000004f0) main_hc_grid_pane
0x0512, // (0x00000512) cell_hc_grid_pane_ParamLimits
0x0512, // (0x00000512) cell_hc_grid_pane
0x054a, // (0x0000054a) bg_hc_highlight_grid_pane_ParamLimits
0x054a, // (0x0000054a) bg_hc_highlight_grid_pane
0x0558, // (0x00000558) cell_hc_grid_pane_g1_ParamLimits
0x0558, // (0x00000558) cell_hc_grid_pane_g1
0x0571, // (0x00000571) cell_hc_grid_pane_t1_ParamLimits
0x0571, // (0x00000571) cell_hc_grid_pane_t1
0x058b, // (0x0000058b) bg_hc_highlight_grid_pane_g1_ParamLimits
0x058b, // (0x0000058b) bg_hc_highlight_grid_pane_g1
0x0597, // (0x00000597) bg_hc_highlight_grid_pane_g2_ParamLimits
0x0597, // (0x00000597) bg_hc_highlight_grid_pane_g2
0x05a3, // (0x000005a3) bg_hc_highlight_grid_pane_g3_ParamLimits
0x05a3, // (0x000005a3) bg_hc_highlight_grid_pane_g3
0x05af, // (0x000005af) bg_hc_highlight_grid_pane_g4_ParamLimits
0x05af, // (0x000005af) bg_hc_highlight_grid_pane_g4
0x05bb, // (0x000005bb) bg_hc_highlight_grid_pane_g5_ParamLimits
0x05bb, // (0x000005bb) bg_hc_highlight_grid_pane_g5
0x05c7, // (0x000005c7) bg_hc_highlight_grid_pane_g6_ParamLimits
0x05c7, // (0x000005c7) bg_hc_highlight_grid_pane_g6
0x05d3, // (0x000005d3) bg_hc_highlight_grid_pane_g7_ParamLimits
0x05d3, // (0x000005d3) bg_hc_highlight_grid_pane_g7
0x05df, // (0x000005df) bg_hc_highlight_grid_pane_g8_ParamLimits
0x05df, // (0x000005df) bg_hc_highlight_grid_pane_g8
0x05eb, // (0x000005eb) bg_hc_highlight_grid_pane_g9_ParamLimits
0x05eb, // (0x000005eb) bg_hc_highlight_grid_pane_g9
0x05f7, // (0x000005f7) bg_hc_highlight_grid_pane_g10_ParamLimits
0x05f7, // (0x000005f7) bg_hc_highlight_grid_pane_g10
0x0009,
0x1310, // (0x00001310) bg_hc_highlight_grid_pane_g_ParamLimits
0x1310, // (0x00001310) bg_hc_highlight_grid_pane_g
0x0597, // (0x00000597) bg_hc_highlight_list_pane_g1_ParamLimits
0x0597, // (0x00000597) bg_hc_highlight_list_pane_g1
0x0597, // (0x00000597) bg_hc_highlight_list_pane_g2_ParamLimits
0x0597, // (0x00000597) bg_hc_highlight_list_pane_g2
0x05a3, // (0x000005a3) bg_hc_highlight_list_pane_g3_ParamLimits
0x05a3, // (0x000005a3) bg_hc_highlight_list_pane_g3
0x05af, // (0x000005af) bg_hc_highlight_list_pane_g4_ParamLimits
0x05af, // (0x000005af) bg_hc_highlight_list_pane_g4
0x05bb, // (0x000005bb) bg_hc_highlight_list_pane_g5_ParamLimits
0x05bb, // (0x000005bb) bg_hc_highlight_list_pane_g5
0x05c7, // (0x000005c7) bg_hc_highlight_list_pane_g6_ParamLimits
0x05c7, // (0x000005c7) bg_hc_highlight_list_pane_g6
0x05d3, // (0x000005d3) bg_hc_highlight_list_pane_g7_ParamLimits
0x05d3, // (0x000005d3) bg_hc_highlight_list_pane_g7
0x05df, // (0x000005df) bg_hc_highlight_list_pane_g8_ParamLimits
0x05df, // (0x000005df) bg_hc_highlight_list_pane_g8
0x05eb, // (0x000005eb) bg_hc_highlight_list_pane_g9_ParamLimits
0x05eb, // (0x000005eb) bg_hc_highlight_list_pane_g9
0x05f7, // (0x000005f7) bg_hc_highlight_list_pane_g10_ParamLimits
0x05f7, // (0x000005f7) bg_hc_highlight_list_pane_g10
0x0009,
0x1325, // (0x00001325) bg_hc_highlight_list_pane_g_ParamLimits
0x1325, // (0x00001325) bg_hc_highlight_list_pane_g
0x002f, // (0x0000002f) area_side_right_pane_ParamLimits
0x002f, // (0x0000002f) area_side_right_pane
0x0098, // (0x00000098) popup_toolbar2_fixed_window_cp001
0x00a5, // (0x000000a5) main_aa_coverflow_pane
0x000c, // (0x0000000c) main_aa_empty_pane
0x000c, // (0x0000000c) main_aa_fastscroll_pane
0x00a5, // (0x000000a5) main_aa_gridscroll_pane_ParamLimits
0x00a5, // (0x000000a5) main_aa_gridscroll_pane
0x000c, // (0x0000000c) main_aa_listscroll_pane
0x00b3, // (0x000000b3) main_aa_metadata_pane
0x00b3, // (0x000000b3) main_aa_slider_pane
0x0609, // (0x00000609) aacf_image_pane_ParamLimits
0x0609, // (0x00000609) aacf_image_pane
0x064b, // (0x0000064b) aacf_image_pane_cp001_ParamLimits
0x064b, // (0x0000064b) aacf_image_pane_cp001
0x0679, // (0x00000679) aacf_image_pane_cp002_ParamLimits
0x0679, // (0x00000679) aacf_image_pane_cp002
0x06d1, // (0x000006d1) aacf_slider_pane
0x06e6, // (0x000006e6) main_aa_coverflow_pane_t1_ParamLimits
0x06e6, // (0x000006e6) main_aa_coverflow_pane_t1
0x06f8, // (0x000006f8) aacf_image_pane_g1_ParamLimits
0x06f8, // (0x000006f8) aacf_image_pane_g1
0x06a7, // (0x000006a7) aacf_image_title_pane_ParamLimits
0x06a7, // (0x000006a7) aacf_image_title_pane
0x0707, // (0x00000707) aacf_slider_pane_g1
0x070f, // (0x0000070f) aacf_slider_pane_g1_cp001
0x0717, // (0x00000717) aaslider_bg_pane
0x071f, // (0x0000071f) aacf_image_title_pane_g1_ParamLimits
0x071f, // (0x0000071f) aacf_image_title_pane_g1
0x072d, // (0x0000072d) aacf_image_title_pane_t1_ParamLimits
0x072d, // (0x0000072d) aacf_image_title_pane_t1
0x073f, // (0x0000073f) aacf_image_title_pane_t2_ParamLimits
0x073f, // (0x0000073f) aacf_image_title_pane_t2
0x0001,
0x133a, // (0x0000133a) aacf_image_title_pane_t_ParamLimits
0x133a, // (0x0000133a) aacf_image_title_pane_t
0x0751, // (0x00000751) aafs_strip_pane_ParamLimits
0x0751, // (0x00000751) aafs_strip_pane
0x0764, // (0x00000764) main_aa_fastscroll_pane_g1_ParamLimits
0x0764, // (0x00000764) main_aa_fastscroll_pane_g1
0x0773, // (0x00000773) main_aa_fastscroll_pane_g2_ParamLimits
0x0773, // (0x00000773) main_aa_fastscroll_pane_g2
0x0001,
0x133f, // (0x0000133f) main_aa_fastscroll_pane_g_ParamLimits
0x133f, // (0x0000133f) main_aa_fastscroll_pane_g
0x0782, // (0x00000782) aafs_strip_grid_pane_ParamLimits
0x0782, // (0x00000782) aafs_strip_grid_pane
0x00b3, // (0x000000b3) aafs_strip_shadow_pane_ParamLimits
0x00b3, // (0x000000b3) aafs_strip_shadow_pane
0x0790, // (0x00000790) aafs_strip_grid_pane_g1_ParamLimits
0x0790, // (0x00000790) aafs_strip_grid_pane_g1
0x07c9, // (0x000007c9) aa_scroll_pane
0x07d2, // (0x000007d2) aalist_gene_pane_ParamLimits
0x07d2, // (0x000007d2) aalist_gene_pane
0x07ec, // (0x000007ec) aalist_double_entry_pane_ParamLimits
0x07ec, // (0x000007ec) aalist_double_entry_pane
0x07ec, // (0x000007ec) aalist_double_graphic_pane_ParamLimits
0x07ec, // (0x000007ec) aalist_double_graphic_pane
0x07ec, // (0x000007ec) aalist_double_pane_ParamLimits
0x07ec, // (0x000007ec) aalist_double_pane
0x07ec, // (0x000007ec) aalist_double_progress_pane_ParamLimits
0x07ec, // (0x000007ec) aalist_double_progress_pane
0x07ec, // (0x000007ec) aalist_gene_ad_pane_ParamLimits
0x07ec, // (0x000007ec) aalist_gene_ad_pane
0x080a, // (0x0000080a) aalist_single_pane_ParamLimits
0x080a, // (0x0000080a) aalist_single_pane
0x1b88, // (0x00001b88) aalist_single_pane_g1_ParamLimits
0x1b88, // (0x00001b88) aalist_single_pane_g1
0x1b94, // (0x00001b94) aalist_single_pane_g2_ParamLimits
0x1b94, // (0x00001b94) aalist_single_pane_g2
0x0004,
0x1ea1, // (0x00001ea1) aalist_single_pane_g_ParamLimits
0x1ea1, // (0x00001ea1) aalist_single_pane_g
0x1bac, // (0x00001bac) aalist_single_pane_t1_ParamLimits
0x1bac, // (0x00001bac) aalist_single_pane_t1
0x1bca, // (0x00001bca) aalist_double_pane_g1_ParamLimits
0x1bca, // (0x00001bca) aalist_double_pane_g1
0x1bd6, // (0x00001bd6) aalist_double_pane_g2_ParamLimits
0x1bd6, // (0x00001bd6) aalist_double_pane_g2
0x0001,
0x1eac, // (0x00001eac) aalist_double_pane_g_ParamLimits
0x1eac, // (0x00001eac) aalist_double_pane_g
0x1bea, // (0x00001bea) aalist_double_pane_t1_ParamLimits
0x1bea, // (0x00001bea) aalist_double_pane_t1
0x1c00, // (0x00001c00) aalist_double_pane_t2_ParamLimits
0x1c00, // (0x00001c00) aalist_double_pane_t2
0x0001,
0x1eb1, // (0x00001eb1) aalist_double_pane_t_ParamLimits
0x1eb1, // (0x00001eb1) aalist_double_pane_t
0x08ef, // (0x000008ef) aalist_double_graphic_pane_g1_ParamLimits
0x08ef, // (0x000008ef) aalist_double_graphic_pane_g1
0x1c12, // (0x00001c12) aalist_double_graphic_pane_g2_ParamLimits
0x1c12, // (0x00001c12) aalist_double_graphic_pane_g2
0x1c32, // (0x00001c32) aalist_double_graphic_pane_g3_ParamLimits
0x1c32, // (0x00001c32) aalist_double_graphic_pane_g3
0x0940, // (0x00000940) aalist_double_graphic_pane_g4_ParamLimits
0x0940, // (0x00000940) aalist_double_graphic_pane_g4
0x0960, // (0x00000960) aalist_double_graphic_pane_g5_ParamLimits
0x0960, // (0x00000960) aalist_double_graphic_pane_g5
0x0980, // (0x00000980) aalist_double_graphic_pane_g6_ParamLimits
0x0980, // (0x00000980) aalist_double_graphic_pane_g6
0x09ad, // (0x000009ad) aalist_double_graphic_pane_g7_ParamLimits
0x09ad, // (0x000009ad) aalist_double_graphic_pane_g7
0x09da, // (0x000009da) aalist_double_graphic_pane_g8_ParamLimits
0x09da, // (0x000009da) aalist_double_graphic_pane_g8
0x09fe, // (0x000009fe) aalist_double_graphic_pane_g9_ParamLimits
0x09fe, // (0x000009fe) aalist_double_graphic_pane_g9
0x0a22, // (0x00000a22) aalist_double_graphic_pane_g10_ParamLimits
0x0a22, // (0x00000a22) aalist_double_graphic_pane_g10
0x0a46, // (0x00000a46) aalist_double_graphic_pane_g11_ParamLimits
0x0a46, // (0x00000a46) aalist_double_graphic_pane_g11
0x000a,
0x1eb6, // (0x00001eb6) aalist_double_graphic_pane_g_ParamLimits
0x1eb6, // (0x00001eb6) aalist_double_graphic_pane_g
0x1c4e, // (0x00001c4e) aalist_double_graphic_pane_t1_ParamLimits
0x1c4e, // (0x00001c4e) aalist_double_graphic_pane_t1
0x1c68, // (0x00001c68) aalist_double_graphic_pane_t2_ParamLimits
0x1c68, // (0x00001c68) aalist_double_graphic_pane_t2
0x0001,
0x1ecd, // (0x00001ecd) aalist_double_graphic_pane_t_ParamLimits
0x1ecd, // (0x00001ecd) aalist_double_graphic_pane_t
0x1ca8, // (0x00001ca8) aalist_double_entry_pane_t1
0x1cb6, // (0x00001cb6) aalist_entry_pane
0x1cbe, // (0x00001cbe) aalist_entry_pane_t1
0x000c, // (0x0000000c) input_focus_pane_cp001
0x0ac2, // (0x00000ac2) aalist_double_progress_pane_g1_ParamLimits
0x0ac2, // (0x00000ac2) aalist_double_progress_pane_g1
0x1ccc, // (0x00001ccc) aalist_double_progress_pane_g2_ParamLimits
0x1ccc, // (0x00001ccc) aalist_double_progress_pane_g2
0x1cfc, // (0x00001cfc) aalist_double_progress_pane_g3_ParamLimits
0x1cfc, // (0x00001cfc) aalist_double_progress_pane_g3
0x0002,
0x1ed2, // (0x00001ed2) aalist_double_progress_pane_g_ParamLimits
0x1ed2, // (0x00001ed2) aalist_double_progress_pane_g
0x1d2c, // (0x00001d2c) aalist_double_progress_pane_t1_ParamLimits
0x1d2c, // (0x00001d2c) aalist_double_progress_pane_t1
0x1d50, // (0x00001d50) aalist_double_progress_pane_t2_ParamLimits
0x1d50, // (0x00001d50) aalist_double_progress_pane_t2
0x1d62, // (0x00001d62) aalist_double_progress_pane_t3_ParamLimits
0x1d62, // (0x00001d62) aalist_double_progress_pane_t3
0x0002,
0x1ed9, // (0x00001ed9) aalist_double_progress_pane_t_ParamLimits
0x1ed9, // (0x00001ed9) aalist_double_progress_pane_t
0x1d74, // (0x00001d74) aalist_progress_pane_ParamLimits
0x1d74, // (0x00001d74) aalist_progress_pane
0x0bbe, // (0x00000bbe) aalist_progress_pane_g1
0x0bc7, // (0x00000bc7) aalist_progress_pane_g2
0x0bd0, // (0x00000bd0) aalist_progress_pane_g3
0x0003,
0x1383, // (0x00001383) aalist_progress_pane_g
0x0bd9, // (0x00000bd9) aalist_gene_ad_pane_g1
0x0be2, // (0x00000be2) main_aa_empty_pane_t1
0x0bf0, // (0x00000bf0) main_aa_empty_pane_t2
0x0bfe, // (0x00000bfe) main_aa_empty_pane_t3
0x0c0c, // (0x00000c0c) main_aa_empty_pane_t4
0x0003,
0x138c, // (0x0000138c) main_aa_empty_pane_t
0x0c1c, // (0x00000c1c) aa_scroll_pane_cp001_ParamLimits
0x0c1c, // (0x00000c1c) aa_scroll_pane_cp001
0x0c3f, // (0x00000c3f) aa_taskswapper_pane_ParamLimits
0x0c3f, // (0x00000c3f) aa_taskswapper_pane
0x0c4d, // (0x00000c4d) aagrid_gene_pane_ParamLimits
0x0c4d, // (0x00000c4d) aagrid_gene_pane
0x0c6b, // (0x00000c6b) aagrid_cell_image_pane_ParamLimits
0x0c6b, // (0x00000c6b) aagrid_cell_image_pane
0x0d35, // (0x00000d35) aagrid_cell_image_pane_g1_ParamLimits
0x0d35, // (0x00000d35) aagrid_cell_image_pane_g1
0x0d69, // (0x00000d69) aagrid_cell_image_pane_g2_ParamLimits
0x0d69, // (0x00000d69) aagrid_cell_image_pane_g2
0x0d95, // (0x00000d95) aagrid_cell_image_pane_g3_ParamLimits
0x0d95, // (0x00000d95) aagrid_cell_image_pane_g3
0x0da6, // (0x00000da6) aagrid_cell_image_pane_g4_ParamLimits
0x0da6, // (0x00000da6) aagrid_cell_image_pane_g4
0x0003,
0x1395, // (0x00001395) aagrid_cell_image_pane_g_ParamLimits
0x1395, // (0x00001395) aagrid_cell_image_pane_g
0x0db7, // (0x00000db7) aagrid_cell_image_pane_t1_ParamLimits
0x0db7, // (0x00000db7) aagrid_cell_image_pane_t1
0x0dc9, // (0x00000dc9) grid_highlight_pane_cp001_ParamLimits
0x0dc9, // (0x00000dc9) grid_highlight_pane_cp001
0x0dd7, // (0x00000dd7) aa_taskswapper_pane_g1_ParamLimits
0x0dd7, // (0x00000dd7) aa_taskswapper_pane_g1
0x0de4, // (0x00000de4) aa_taskswapper_pane_t1_ParamLimits
0x0de4, // (0x00000de4) aa_taskswapper_pane_t1
0x0df6, // (0x00000df6) aatasksw_grid_pane_ParamLimits
0x0df6, // (0x00000df6) aatasksw_grid_pane
0x0e04, // (0x00000e04) aatasksw_cell_pane_ParamLimits
0x0e04, // (0x00000e04) aatasksw_cell_pane
0x0e19, // (0x00000e19) aatasksw_cell_pane_g1
0x000c, // (0x0000000c) grid_highlight_pane_cp002
0x0e22, // (0x00000e22) aamd_info_pane
0x0e2b, // (0x00000e2b) aamd_list_pane
0x0e35, // (0x00000e35) aamd_list_double_pane_ParamLimits
0x0e35, // (0x00000e35) aamd_list_double_pane
0x0e49, // (0x00000e49) aamd_list_single_pane_ParamLimits
0x0e49, // (0x00000e49) aamd_list_single_pane
0x0e63, // (0x00000e63) aamd_list_single_pane_g1_ParamLimits
0x0e63, // (0x00000e63) aamd_list_single_pane_g1
0x0e70, // (0x00000e70) aamd_list_single_pane_g2_ParamLimits
0x0e70, // (0x00000e70) aamd_list_single_pane_g2
0x0e7c, // (0x00000e7c) aamd_list_single_pane_g3_ParamLimits
0x0e7c, // (0x00000e7c) aamd_list_single_pane_g3
0x0002,
0x139e, // (0x0000139e) aamd_list_single_pane_g_ParamLimits
0x139e, // (0x0000139e) aamd_list_single_pane_g
0x0e94, // (0x00000e94) aamd_list_single_pane_t1_ParamLimits
0x0e94, // (0x00000e94) aamd_list_single_pane_t1
0x0e63, // (0x00000e63) aamd_list_double_pane_g1_ParamLimits
0x0e63, // (0x00000e63) aamd_list_double_pane_g1
0x0eae, // (0x00000eae) aamd_list_double_pane_g2_ParamLimits
0x0eae, // (0x00000eae) aamd_list_double_pane_g2
0x0eba, // (0x00000eba) aamd_list_double_pane_g3_ParamLimits
0x0eba, // (0x00000eba) aamd_list_double_pane_g3
0x0002,
0x13a5, // (0x000013a5) aamd_list_double_pane_g_ParamLimits
0x13a5, // (0x000013a5) aamd_list_double_pane_g
0x0ed2, // (0x00000ed2) aamd_list_double_pane_t1_ParamLimits
0x0ed2, // (0x00000ed2) aamd_list_double_pane_t1
0x0ee9, // (0x00000ee9) aamd_list_double_pane_t2_ParamLimits
0x0ee9, // (0x00000ee9) aamd_list_double_pane_t2
0x0001,
0x13ac, // (0x000013ac) aamd_list_double_pane_t_ParamLimits
0x13ac, // (0x000013ac) aamd_list_double_pane_t
0x0f00, // (0x00000f00) aamd_info_pane_g1_ParamLimits
0x0f00, // (0x00000f00) aamd_info_pane_g1
0x0f0e, // (0x00000f0e) aamd_info_pane_g2_ParamLimits
0x0f0e, // (0x00000f0e) aamd_info_pane_g2
0x0f1a, // (0x00000f1a) aamd_info_pane_g3_ParamLimits
0x0f1a, // (0x00000f1a) aamd_info_pane_g3
0x0002,
0x13b1, // (0x000013b1) aamd_info_pane_g_ParamLimits
0x13b1, // (0x000013b1) aamd_info_pane_g
0x0f26, // (0x00000f26) aamd_info_pane_t1_ParamLimits
0x0f26, // (0x00000f26) aamd_info_pane_t1
0x0f3b, // (0x00000f3b) aamd_info_pane_t2_ParamLimits
0x0f3b, // (0x00000f3b) aamd_info_pane_t2
0x0f5a, // (0x00000f5a) aamd_info_pane_t3_ParamLimits
0x0f5a, // (0x00000f5a) aamd_info_pane_t3
0x0002,
0x13b8, // (0x000013b8) aamd_info_pane_t_ParamLimits
0x13b8, // (0x000013b8) aamd_info_pane_t
0x0f7e, // (0x00000f7e) aaslider_bg_pane_g1
0x0f87, // (0x00000f87) aaslider_bg_pane_g2
0x0001,
0x13bf, // (0x000013bf) aaslider_bg_pane_g
0x0f90, // (0x00000f90) aaslider_bg_pane_g2_copy1
0x1b3f, // (0x00001b3f) aaslider_pane_ParamLimits
0x1b3f, // (0x00001b3f) aaslider_pane
0x0fbf, // (0x00000fbf) aaslider_bg_pane_cp001_ParamLimits
0x0fbf, // (0x00000fbf) aaslider_bg_pane_cp001
0x0ff3, // (0x00000ff3) aaslider_pane_g1_ParamLimits
0x0ff3, // (0x00000ff3) aaslider_pane_g1
0x100d, // (0x0000100d) aaslider_pane_g2_ParamLimits
0x100d, // (0x0000100d) aaslider_pane_g2
0x1031, // (0x00001031) aaslider_pane_g3_ParamLimits
0x1031, // (0x00001031) aaslider_pane_g3
0x0004,
0x13c4, // (0x000013c4) aaslider_pane_g_ParamLimits
0x13c4, // (0x000013c4) aaslider_pane_g
0x1063, // (0x00001063) aaslider_pane_t1_ParamLimits
0x1063, // (0x00001063) aaslider_pane_t1
0x1079, // (0x00001079) aaslider_pane_t2_ParamLimits
0x1079, // (0x00001079) aaslider_pane_t2
0x108f, // (0x0000108f) aaslider_pane_t3_ParamLimits
0x108f, // (0x0000108f) aaslider_pane_t3
0x0002,
0x13cf, // (0x000013cf) aaslider_pane_t_ParamLimits
0x13cf, // (0x000013cf) aaslider_pane_t
0x10ad, // (0x000010ad) aid_touch_size_slider_marker_ParamLimits
0x10ad, // (0x000010ad) aid_touch_size_slider_marker
0x080a, // (0x0000080a) aalist_list_sub_pane_ParamLimits
0x080a, // (0x0000080a) aalist_list_sub_pane
0x0865, // (0x00000865) aalist_single_pane_g3_ParamLimits
0x0865, // (0x00000865) aalist_single_pane_g3
0x0871, // (0x00000871) aalist_single_pane_g4_ParamLimits
0x0871, // (0x00000871) aalist_single_pane_g4
0x00a5, // (0x000000a5) list_highlight_pane_cp001
0x1112, // (0x00001112) aalist_list_sub_pane_g1_ParamLimits
0x1112, // (0x00001112) aalist_list_sub_pane_g1
0x111e, // (0x0000111e) aalist_list_sub_pane_g2_ParamLimits
0x111e, // (0x0000111e) aalist_list_sub_pane_g2
0x112a, // (0x0000112a) aalist_list_sub_pane_g3_ParamLimits
0x112a, // (0x0000112a) aalist_list_sub_pane_g3
0x1d9c, // (0x00001d9c) aalist_list_sub_pane_g4_ParamLimits
0x1d9c, // (0x00001d9c) aalist_list_sub_pane_g4
0x1da8, // (0x00001da8) aalist_list_sub_pane_g5_ParamLimits
0x1da8, // (0x00001da8) aalist_list_sub_pane_g5
0x1dd8, // (0x00001dd8) aalist_list_sub_pane_g7_ParamLimits
0x1dd8, // (0x00001dd8) aalist_list_sub_pane_g7
0x0005,
0x1ee0, // (0x00001ee0) aalist_list_sub_pane_g_ParamLimits
0x1ee0, // (0x00001ee0) aalist_list_sub_pane_g
0x1e10, // (0x00001e10) aalist_list_sub_pane_t1_ParamLimits
0x1e10, // (0x00001e10) aalist_list_sub_pane_t1
0x1e25, // (0x00001e25) aalist_list_sub_pane_t2_ParamLimits
0x1e25, // (0x00001e25) aalist_list_sub_pane_t2
0x0001,
0x1eed, // (0x00001eed) aalist_list_sub_pane_t_ParamLimits
0x1eed, // (0x00001eed) aalist_list_sub_pane_t
0x00a5, // (0x000000a5) main_aa_coverflow_pane_ParamLimits
0x00b3, // (0x000000b3) main_aa_metadata_pane_ParamLimits
0x087d, // (0x0000087d) aalist_single_pane_g5_ParamLimits
0x087d, // (0x0000087d) aalist_single_pane_g5
0x00a5, // (0x000000a5) list_highlight_pane_cp001_ParamLimits
0x06d1, // (0x000006d1) aacf_slider_pane_ParamLimits
0x000c, // (0x0000000c) main_aa_video_pane
0x07e2, // (0x000007e2) aid_size_touch_aascroll_bar
0x07ec, // (0x000007ec) aalist_single_large_graphic_pane_ParamLimits
0x07ec, // (0x000007ec) aalist_single_large_graphic_pane
0x1043, // (0x00001043) aaslider_pane_g4_ParamLimits
0x1043, // (0x00001043) aaslider_pane_g4
0x1053, // (0x00001053) aaslider_pane_g5_ParamLimits
0x1053, // (0x00001053) aaslider_pane_g5
0x10d1, // (0x000010d1) aid_touch_size_slider_max_ParamLimits
0x10d1, // (0x000010d1) aid_touch_size_slider_max
0x10e1, // (0x000010e1) aid_touch_size_slider_min_ParamLimits
0x10e1, // (0x000010e1) aid_touch_size_slider_min
0x123b, // (0x0000123b) aalist_single_large_graphic_pane_g1_ParamLimits
0x123b, // (0x0000123b) aalist_single_large_graphic_pane_g1
0x1248, // (0x00001248) aalist_single_large_graphic_pane_g2_ParamLimits
0x1248, // (0x00001248) aalist_single_large_graphic_pane_g2
0x1254, // (0x00001254) aalist_single_large_graphic_pane_g3_ParamLimits
0x1254, // (0x00001254) aalist_single_large_graphic_pane_g3
0x0002,
0x13ef, // (0x000013ef) aalist_single_large_graphic_pane_g_ParamLimits
0x13ef, // (0x000013ef) aalist_single_large_graphic_pane_g
0x1268, // (0x00001268) aalist_single_large_graphic_pane_t1_ParamLimits
0x1268, // (0x00001268) aalist_single_large_graphic_pane_t1
0x127e, // (0x0000127e) main_aa_video_pane_g1_ParamLimits
0x127e, // (0x0000127e) main_aa_video_pane_g1
0x06de, // (0x000006de) main_aa_coverflow_pane_g1
0x0838, // (0x00000838) aid_size_min_handle_cp002
0x0098, // (0x00000098) popup_toolbar2_fixed_window_cp001_ParamLimits
0x00b3, // (0x000000b3) main_aa_slider_pane_ParamLimits
0x0838, // (0x00000838) aid_size_min_handle_cp001
0x10f7, // (0x000010f7) aaslider_bg_pane_cp001_g1
0x1100, // (0x00001100) aaslider_bg_pane_cp001_g2
0x1109, // (0x00001109) aaslider_bg_pane_cp001_g3
0x0002,
0x13d6, // (0x000013d6) aaslider_bg_pane_cp001_g
0x0bbe, // (0x00000bbe) aalist_progress_pane_g4
0x10a5, // (0x000010a5) aid_aaslider_pane_rect_inner
};
const AknLayoutScalable_UiAccel::SCdlImpl KCdlImpl =
{
&GetComponentTypeById,
&GetParamLimitsById,
&GetWindowComponentById,
&GetTextComponentById,
&WindowLineVCR,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&WindowLineVCR,
&WindowLineVCR,
&WindowLineVCR,
&WindowLineVCR,
&WindowLineVCR,
&WindowLineVCR,
&WindowLineVCR,
&WindowLineVCR,
&WindowLineVCR,
&WindowLineVCR,
&WindowLineVCR,
&WindowLineVCR,
&WindowLineVCR,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&Limits,
&ParameterLimitsTableLV,
&WindowTableLVCR,
&ParameterLimitsV,
&TextLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&Limits,
&ParameterLimitsTableLV,
&WindowTableLVCR,
&ParameterLimitsV,
&TextLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&Limits,
&ParameterLimitsTableLV,
&WindowTableLVCR,
&ParameterLimitsV,
&TextLineVCR,
&ParameterLimitsV,
&TextLineVCR,
&Limits,
&ParameterLimitsTableLV,
&TextTableLVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&Limits,
&ParameterLimitsTableLV,
&WindowTableLVCR,
&ParameterLimitsV,
&TextLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&Limits,
&ParameterLimitsTableLV,
&WindowTableLVCR,
&ParameterLimitsV,
&TextLineVCR,
&ParameterLimitsV,
&TextLineVCR,
&Limits,
&ParameterLimitsTableLV,
&TextTableLVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&Limits,
&ParameterLimitsTableLV,
&WindowTableLVCR,
&ParameterLimitsV,
&TextLineVCR,
&ParameterLimitsV,
&TextLineVCR,
&Limits,
&ParameterLimitsTableLV,
&TextTableLVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&Limits,
&ParameterLimitsTableLV,
&WindowTableLVCR,
&ParameterLimitsV,
&TextLineVCR,
&ParameterLimitsV,
&TextLineVCR,
&Limits,
&ParameterLimitsTableLV,
&TextTableLVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&Limits,
&ParameterLimitsTableLV,
&WindowTableLVCR,
&ParameterLimitsV,
&TextLineVCR,
&ParameterLimitsV,
&TextLineVCR,
&Limits,
&ParameterLimitsTableLV,
&TextTableLVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&Limits,
&ParameterLimitsTableLV,
&WindowTableLVCR,
&ParameterLimitsV,
&TextLineVCR,
&ParameterLimitsV,
&TextLineVCR,
&Limits,
&ParameterLimitsTableLV,
&TextTableLVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&Limits,
&ParameterLimitsTableLV,
&WindowTableLVCR,
&ParameterLimitsV,
&TextLineVCR,
&ParameterLimitsV,
&TextLineVCR,
&Limits,
&ParameterLimitsTableLV,
&TextTableLVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&Limits,
&ParameterLimitsTableLV,
&WindowTableLVCR,
&ParameterLimitsV,
&TextLineVCR,
&ParameterLimitsV,
&TextLineVCR,
&Limits,
&ParameterLimitsTableLV,
&TextTableLVCR,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&WindowLineVCR,
&ParameterLimitsV,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&Limits,
&ParameterLimitsTableLV,
&WindowTableLVCR,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&Limits,
&ParameterLimitsTableLV,
&WindowTableLVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&Limits,
&ParameterLimitsTableLV,
&WindowTableLVCR,
&WindowLineVCR,
&TextLineVCR,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&TextLineVCR,
&WindowLineVCR,
&WindowLineVCR,
&WindowLineVCR,
&WindowLineVCR,
&WindowLineVCR,
&WindowLineVCR,
&WindowLineVCR,
&WindowLineVCR,
&WindowLineVCR,
&Limits,
&WindowTableLVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&Limits,
&ParameterLimitsTableLV,
&WindowTableLVCR,
&ParameterLimitsV,
&TextLineVCR,
&ParameterLimitsV,
&TextLineVCR,
&Limits,
&ParameterLimitsTableLV,
&TextTableLVCR,
&WindowLineVCR,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&TextLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&Limits,
&ParameterLimitsTableLV,
&WindowTableLVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&Limits,
&ParameterLimitsTableLV,
&WindowTableLVCR,
&ParameterLimitsV,
&WindowLineVCR,
&WindowLineVCR,
&WindowLineVCR,
&WindowLineVCR,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&WindowLineVCR,
&WindowLineVCR,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&WindowLineVCR,
&ParameterLimitsV,
&TextLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&WindowLineVCR,
&WindowLineVCR,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&TextLineVCR,
&ParameterLimitsV,
&TextLineVCR,
&Limits,
&ParameterLimitsTableLV,
&TextTableLVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&Limits,
&ParameterLimitsTableLV,
&WindowTableLVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&Limits,
&ParameterLimitsTableLV,
&WindowTableLVCR,
&ParameterLimitsV,
&TextLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&Limits,
&ParameterLimitsTableLV,
&WindowTableLVCR,
&ParameterLimitsV,
&TextLineVCR,
&ParameterLimitsV,
&TextLineVCR,
&Limits,
&ParameterLimitsTableLV,
&TextTableLVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&Limits,
&ParameterLimitsTableLV,
&WindowTableLVCR,
&ParameterLimitsV,
&TextLineVCR,
&ParameterLimitsV,
&TextLineVCR,
&Limits,
&ParameterLimitsTableLV,
&TextTableLVCR,
&TextLineVCR,
&WindowLineVCR,
&TextLineVCR,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&Limits,
&ParameterLimitsTableLV,
&WindowTableLVCR,
&ParameterLimitsV,
&TextLineVCR,
&ParameterLimitsV,
&TextLineVCR,
&ParameterLimitsV,
&TextLineVCR,
&Limits,
&ParameterLimitsTableLV,
&TextTableLVCR,
&ParameterLimitsV,
&WindowLineVCR,
&WindowLineVCR,
&WindowLineVCR,
&WindowLineVCR,
&Limits,
&WindowTableLVCR,
&WindowLineVCR,
&TextLineVCR,
&TextLineVCR,
&TextLineVCR,
&TextLineVCR,
&Limits,
&TextTableLVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&Limits,
&ParameterLimitsTableLV,
&WindowTableLVCR,
&ParameterLimitsV,
&TextLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&TextLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&WindowLineVCR,
&WindowLineVCR,
&WindowLineVCR,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&Limits,
&ParameterLimitsTableLV,
&WindowTableLVCR,
&ParameterLimitsV,
&TextLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&Limits,
&ParameterLimitsTableLV,
&WindowTableLVCR,
&ParameterLimitsV,
&TextLineVCR,
&ParameterLimitsV,
&TextLineVCR,
&Limits,
&ParameterLimitsTableLV,
&TextTableLVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&Limits,
&ParameterLimitsTableLV,
&WindowTableLVCR,
&ParameterLimitsV,
&TextLineVCR,
&ParameterLimitsV,
&TextLineVCR,
&ParameterLimitsV,
&TextLineVCR,
&Limits,
&ParameterLimitsTableLV,
&TextTableLVCR,
&WindowLineVCR,
&WindowLineVCR,
&Limits,
&WindowTableLVCR,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&Limits,
&ParameterLimitsTableLV,
&WindowTableLVCR,
&ParameterLimitsV,
&TextLineVCR,
&ParameterLimitsV,
&TextLineVCR,
&ParameterLimitsV,
&TextLineVCR,
&Limits,
&ParameterLimitsTableLV,
&TextTableLVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&Limits,
&ParameterLimitsTableLV,
&WindowTableLVCR,
&ParameterLimitsV,
&TextLineVCR,
&ParameterLimitsV,
&TextLineVCR,
&Limits,
&ParameterLimitsTableLV,
&TextTableLVCR,
&ParameterLimitsV,
&ParameterLimitsV,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&ParameterLimitsV,
&WindowLineVCR,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&Limits,
&ParameterLimitsTableLV,
&WindowTableLVCR,
&ParameterLimitsV,
&TextLineVCR,
&ParameterLimitsV,
&WindowLineVCR,
&WindowLineVCR,
&WindowLineVCR,
&ParameterLimitsV,
&ParameterLimitsV,
&WindowLineVCR,
&WindowLineVCR,
&WindowLineVCR,
&WindowLineVCR,
&Limits,
&WindowTableLVCR,
&WindowLineVCR,
&WindowLineVCR,
};
} // end of namespace AknLayoutScalable_Abrw_hnp4_c_nhd4_prt_tch_Small
| [
"kirill.dremov@nokia.com"
] | kirill.dremov@nokia.com |
677295a19b00f9e0298dbdf7776e8a13d27dfb6a | ada61d2d0b227a0d428c237ebc6df87137a5f8b3 | /third_party/skia/gm/imagefiltersscaled.cpp | 1cb1e5c8476a3ec7b76540c6913627fc9c88b11c | [
"BSD-3-Clause"
] | permissive | lineCode/libui-1 | 240b22f8ed542e6dc3d623b465d1170b8cb03b31 | 53e01ad28601aa0fb7b050a39185b46de0bd99fa | refs/heads/master | 2021-01-24T16:48:40.299172 | 2015-11-19T01:46:28 | 2015-11-19T01:46:28 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,418 | cpp | /*
* Copyright 2014 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#include "sk_tool_utils.h"
#include "SkBitmapSource.h"
#include "SkBlurImageFilter.h"
#include "SkColor.h"
#include "SkDisplacementMapEffect.h"
#include "SkDropShadowImageFilter.h"
#include "SkGradientShader.h"
#include "SkLightingImageFilter.h"
#include "SkMatrixImageFilter.h"
#include "SkMorphologyImageFilter.h"
#include "SkOffsetImageFilter.h"
#include "SkPerlinNoiseShader.h"
#include "SkRectShaderImageFilter.h"
#include "SkScalar.h"
#include "gm.h"
#define RESIZE_FACTOR SkIntToScalar(4)
namespace skiagm {
class ImageFiltersScaledGM : public GM {
public:
ImageFiltersScaledGM() : fInitialized(false) {
this->setBGColor(0x00000000);
}
protected:
virtual SkString onShortName() {
return SkString("imagefiltersscaled");
}
virtual SkISize onISize() {
return SkISize::Make(1428, 500);
}
void make_gradient_circle(int width, int height) {
SkScalar x = SkIntToScalar(width / 2);
SkScalar y = SkIntToScalar(height / 2);
SkScalar radius = SkScalarMul(SkMinScalar(x, y), SkIntToScalar(4) / SkIntToScalar(5));
fGradientCircle.allocN32Pixels(width, height);
SkCanvas canvas(fGradientCircle);
canvas.clear(0x00000000);
SkColor colors[2];
colors[0] = SK_ColorWHITE;
colors[1] = SK_ColorBLACK;
SkAutoTUnref<SkShader> shader(
SkGradientShader::CreateRadial(SkPoint::Make(x, y), radius, colors, NULL, 2,
SkShader::kClamp_TileMode)
);
SkPaint paint;
paint.setShader(shader);
canvas.drawCircle(x, y, radius, paint);
}
virtual void onDraw(SkCanvas* canvas) {
if (!fInitialized) {
fCheckerboard.allocN32Pixels(64, 64);
SkCanvas checkerboardCanvas(fCheckerboard);
sk_tool_utils::draw_checkerboard(&checkerboardCanvas, 0xFFA0A0A0, 0xFF404040, 8);
this->make_gradient_circle(64, 64);
fInitialized = true;
}
canvas->clear(0x00000000);
SkAutoTUnref<SkImageFilter> gradient(SkBitmapSource::Create(fGradientCircle));
SkAutoTUnref<SkImageFilter> checkerboard(SkBitmapSource::Create(fCheckerboard));
SkAutoTUnref<SkShader> noise(SkPerlinNoiseShader::CreateFractalNoise(
SkDoubleToScalar(0.1), SkDoubleToScalar(0.05), 1, 0));
SkPoint3 pointLocation(0, 0, SkIntToScalar(10));
SkPoint3 spotLocation(SkIntToScalar(-10), SkIntToScalar(-10), SkIntToScalar(20));
SkPoint3 spotTarget(SkIntToScalar(40), SkIntToScalar(40), 0);
SkScalar spotExponent = SK_Scalar1;
SkScalar cutoffAngle = SkIntToScalar(15);
SkScalar kd = SkIntToScalar(2);
SkScalar surfaceScale = SkIntToScalar(1);
SkColor white(0xFFFFFFFF);
SkMatrix resizeMatrix;
resizeMatrix.setScale(RESIZE_FACTOR, RESIZE_FACTOR);
SkImageFilter* filters[] = {
SkBlurImageFilter::Create(SkIntToScalar(4), SkIntToScalar(4)),
SkDropShadowImageFilter::Create(SkIntToScalar(5), SkIntToScalar(10),
SkIntToScalar(3), SkIntToScalar(3), SK_ColorYELLOW,
SkDropShadowImageFilter::kDrawShadowAndForeground_ShadowMode),
SkDisplacementMapEffect::Create(SkDisplacementMapEffect::kR_ChannelSelectorType,
SkDisplacementMapEffect::kR_ChannelSelectorType,
SkIntToScalar(12),
gradient.get(),
checkerboard.get()),
SkDilateImageFilter::Create(1, 1, checkerboard.get()),
SkErodeImageFilter::Create(1, 1, checkerboard.get()),
SkOffsetImageFilter::Create(SkIntToScalar(32), 0),
SkMatrixImageFilter::Create(resizeMatrix, kNone_SkFilterQuality),
SkRectShaderImageFilter::Create(noise),
SkLightingImageFilter::CreatePointLitDiffuse(pointLocation, white, surfaceScale, kd),
SkLightingImageFilter::CreateSpotLitDiffuse(spotLocation, spotTarget, spotExponent,
cutoffAngle, white, surfaceScale, kd),
};
SkVector scales[] = {
SkVector::Make(SkScalarInvert(2), SkScalarInvert(2)),
SkVector::Make(SkIntToScalar(1), SkIntToScalar(1)),
SkVector::Make(SkIntToScalar(1), SkIntToScalar(2)),
SkVector::Make(SkIntToScalar(2), SkIntToScalar(1)),
SkVector::Make(SkIntToScalar(2), SkIntToScalar(2)),
};
SkRect r = SkRect::MakeWH(SkIntToScalar(64), SkIntToScalar(64));
SkScalar margin = SkIntToScalar(16);
SkRect bounds = r;
bounds.outset(margin, margin);
for (size_t j = 0; j < SK_ARRAY_COUNT(scales); ++j) {
canvas->save();
for (size_t i = 0; i < SK_ARRAY_COUNT(filters); ++i) {
SkPaint paint;
paint.setColor(SK_ColorBLUE);
paint.setImageFilter(filters[i]);
paint.setAntiAlias(true);
canvas->save();
canvas->scale(scales[j].fX, scales[j].fY);
if (5 == i) {
canvas->translate(SkIntToScalar(-32), 0);
} else if (6 == i) {
canvas->scale(SkScalarInvert(RESIZE_FACTOR),
SkScalarInvert(RESIZE_FACTOR));
}
canvas->drawCircle(r.centerX(), r.centerY(),
SkScalarDiv(r.width()*2, SkIntToScalar(5)), paint);
canvas->restore();
canvas->translate(r.width() * scales[j].fX + margin, 0);
}
canvas->restore();
canvas->translate(0, r.height() * scales[j].fY + margin);
}
for (size_t i = 0; i < SK_ARRAY_COUNT(filters); ++i) {
filters[i]->unref();
}
}
private:
bool fInitialized;
SkBitmap fCheckerboard;
SkBitmap fGradientCircle;
typedef GM INHERITED;
};
//////////////////////////////////////////////////////////////////////////////
static GM* MyFactory(void*) { return new ImageFiltersScaledGM; }
static GMRegistry reg(MyFactory);
}
| [
"merck.hung@intel.com"
] | merck.hung@intel.com |
5086eb79dabdaa33ae94fd388dfb304ea6294a8b | da7d1aa9a1836dc0c81846ce8c8d76b0c94f0402 | /src/vector.cc | 51ec25ebe947e22683969ac414712de579500baa | [
"MIT"
] | permissive | MhYao2014/HyperbolicEmbedding | 8f53cacdc88332fa411f087dd38444d9e34b3859 | c98df7e9a927dde3fea2625aa5c977da899c140b | refs/heads/master | 2022-04-21T15:23:01.571435 | 2020-04-24T04:16:02 | 2020-04-24T04:16:02 | 186,843,319 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 3,730 | cc | /**
* Copyright (c) 2016-present, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
#include "vector.h"
#include <assert.h>
#include <cmath>
#include <iomanip>
#include <utility>
#include "matrix.h"
namespace fasttext {
Vector::Vector(int64_t m) : data_(m) {}
void Vector::zero() {
std::fill(data_.begin(), data_.end(), 0.0);
}
real Vector::norm() const {
real sum = 0;
for (int64_t i = 0; i < size(); i++) {
sum += data_[i] * data_[i];
}
return std::sqrt(sum);
}
void Vector::mul(real a) {
for (int64_t i = 0; i < size(); i++) {
data_[i] *= a;
}
}
void Vector::addVector(const Vector& source) {
assert(size() == source.size());
for (int64_t i = 0; i < size(); i++) {
data_[i] += source.data_[i];
}
}
void Vector::addVector(const Vector& source, real s) {
assert(size() == source.size());
for (int64_t i = 0; i < size(); i++) {
data_[i] += s * source.data_[i];
}
}
void Vector::addRow(const Matrix& A, int64_t i, real a) {
assert(i >= 0);
assert(i < A.size(0));
assert(size() == A.size(1));
A.addRowToVector(*this, i, a);
}
void Vector::addRow(const Matrix& A, int64_t i) {
assert(i >= 0);
assert(i < A.size(0));
assert(size() == A.size(1));
A.addRowToVector(*this, i);
}
void Vector::mul(const Matrix& A, const Vector& vec) {
assert(A.size(0) == size());
assert(A.size(1) == vec.size());
for (int64_t i = 0; i < size(); i++) {
data_[i] = A.dotRow(vec, i);
}
}
void Vector::elemul(const Vector& vec) {
assert(vec.size() == size());
for (int64_t i = 0; i < size(); i++) {
data_[i] *= vec.data_[i];
}
}
void Vector::substract(const fasttext::Vector &vec){
assert(vec.size() == size());
for (int64_t i = 0; i < size(); i++) {
data_[i] -= vec.data_[i];
}
}
void Vector::substract(const fasttext::Vector &vec, real t){
assert(vec.size() == size());
for (int64_t i = 0; i < size(); i++) {
data_[i] -= vec.data_[i] * t;
}
}
real Vector::dotmul(const Vector& vec, real t) {
assert(vec.size() == size());
real result = 0;
for (int64_t i = 0; i < size(); i++) {
result += data_[i] * vec.data_[i] * t;
}
return result;
}
void Vector::generateFrom(fasttext::Vector & u) {
real uNorm = u.norm();
real uZero = std::sqrt(1 + uNorm * uNorm);
data_[0] = uZero;
for (int64_t i = 0; i < u.size(); i++) {
data_[i + 1] = u[i];
}
}
void Vector::hyperInverse() {
data_[0] *= -1;
}
real Vector::lorentzProduct(fasttext::Vector &x) {
assert(x.size() == size());
real result = -data_[0]*x[0];
for (int64_t i = 1; i < size(); i++) {
result += data_[i] * x[i];
}
return result;
}
real Vector::lorentzPro(fasttext::Vector &x) {
assert(x.size() == size());
real result = -data_[0]*x[0];
for (int64_t i = 1; i < size(); i++) {
result += data_[i] * x[i];
}
return result;
}
void Vector::proj(fasttext::Vector &targetHat) {
assert(targetHat.size() == size());
real lproduct = lorentzProduct(targetHat);
for (int64_t i = 0; i < size(); i++) {
data_[i] += lproduct * targetHat[i];
}
}
int64_t Vector::argmax() {
real max = data_[0];
int64_t argmax = 0;
for (int64_t i = 1; i < size(); i++) {
if (data_[i] > max) {
max = data_[i];
argmax = i;
}
}
return argmax;
}
std::ostream& operator<<(std::ostream& os, const Vector& v) {
os << std::setprecision(5);
for (int64_t j = 0; j < v.size(); j++) {
os << v[j] << ' ';
}
return os;
}
} // namespace fasttext
| [
"yaopeizhang1@yeah.net"
] | yaopeizhang1@yeah.net |
1cb2be1609b0ccef294db914ddf4b4a3e93bb36b | 4356a10b615b94c3e0265b5cfa4e9e9de7a3cfca | /fdsemu-lib/Device.cpp | be557ac172e8b5ce9286485b6e5abd54263096b0 | [] | no_license | mmiker/fdsemu-qt | 01c001f66cff8c4fb3863a979055b1f897979ecf | 62f95a3940a05e60661d272748f10a85e5659eda | refs/heads/master | 2021-01-20T01:45:41.406420 | 2016-01-05T05:53:04 | 2016-01-05T05:53:04 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,926 | cpp | #include <stdio.h>
#include <stdlib.h>
#include "Device.h"
#define VID 0x0416
#define PID 0xBEEF
#define DEV_NAME L"FDSdick"
CDevice::CDevice()
{
}
CDevice::~CDevice()
{
Close();
}
bool CDevice::Open()
{
struct hid_device_info *devs, *dev;
//ensure device isnt open
Close();
//get list of available usb devices
devs = hid_enumerate(VID, PID);
//search for device in all the usb devices found
for (dev = devs; dev != NULL; dev = dev->next) {
// if (cur_dev->vendor_id == VID && cur_dev->product_id == PID && cur_dev->product_string && wcscmp(DEV_NAME, cur_dev->product_string) == 0)
if (dev->vendor_id == VID && dev->product_id == PID)
break;
}
//device found, try to open it
if (dev) {
handle = hid_open_path(dev->path);
}
//device opened successfully, try to communicate with the flash chip
if (handle) {
//save device informations
wcstombs(DeviceName, dev->product_string, 256);
VendorID = dev->vendor_id;
ProductID = dev->product_id;
Version = dev->release_number;
//read in flash id to determine type of flash
FlashID = ReadFlashID();
if (FlashID == 0) {
printf("Error reading flash ID.\n");
Close();
}
//get the size of the flash chip
FlashSize = GetFlashSize();
if (FlashSize == 0) {
printf("Error determining flash size.\n");
Close();
}
Slots = FlashSize / 65536;
Sram = new CSram(this);
Flash = new CFlash(this);
FlashUtil = new CFlashUtil(this);
}
else {
printf("Device not found.\n");
}
hid_free_enumeration(devs);
return !!this->handle;
}
void CDevice::Close()
{
if (this->Flash) {
delete this->Flash;
}
if (this->FlashUtil) {
delete this->FlashUtil;
}
if (this->handle) {
hid_close(this->handle);
}
this->Flash = 0;
this->FlashUtil = 0;
this->handle = NULL;
}
uint32_t CDevice::ReadFlashID()
{
static uint8_t readID[] = { CMD_READID };
uint32_t id = 0;
if (!this->FlashWrite(readID, 1, 1, 1)) {
printf("CDevice::ReadFlashID: FlashWrite failed\n");
return 0;
}
if (!this->FlashRead((uint8_t*)&id, 3, 0)) {
printf("CDevice::ReadFlashID: FlashRead failed\n");
return 0;
}
return(id);
}
uint32_t CDevice::GetFlashSize()
{
switch (this->FlashID) {
//16mbit flash
case 0x1440EF: // W25Q80DV
return(0x100000);
//32mbit flash
case 0x1640EF: // W25Q32FV
return(0x400000);
//64mbit flash
case 0x1740EF: // W25Q64FV
case 0x174001: // S25FL164K
return(0x800000);
//128mbit flash
case 0x1840EF: // W25Q128FV
return(0x1000000);
}
//unknown flash chip
printf("Unknown flash chip detected. Flash ID: $%06X\n", this->FlashID);
return(0);
}
//will reset the device
void CDevice::Reset()
{
hidbuf[0] = ID_RESET;
hid_send_feature_report(handle, hidbuf, 2); //reset will cause an error, ignore it
}
//causes device to perform its self-test
void CDevice::Test()
{
hidbuf[0] = ID_SELFTEST;
hid_send_feature_report(handle, hidbuf, 2);
}
//command to update firmware loaded into special region of flash
void CDevice::UpdateFirmware()
{
hidbuf[0] = ID_FIRMWARE_UPDATE;
hid_send_feature_report(handle, hidbuf, 2); //reset after update will cause an error, ignore it
}
bool CDevice::GenericRead(int reportid, uint8_t *buf, int size, bool holdCS)
{
int ret;
if(size > SPI_READMAX) {
printf("Read too big.\n");
return(false);
}
hidbuf[0] = holdCS ? reportid : (reportid + 1);
ret = hid_get_feature_report(handle, hidbuf, 64);
if (ret < 0)
return(false);
memcpy(buf, hidbuf + 1, size);
return(true);
}
bool CDevice::GenericWrite(int reportid, uint8_t *buf, int size, bool initCS, bool holdCS)
{
int ret;
if (size > SPI_WRITEMAX) {
printf("Write too big.\n");
return(false);
}
hidbuf[0] = reportid;
hidbuf[1] = size;
hidbuf[2] = initCS,
hidbuf[3] = holdCS;
if (size)
memcpy(hidbuf + 4, buf, size);
ret = hid_send_feature_report(handle, hidbuf, 4 + size);
if (ret == -1) {
wprintf(L"error: %s\n", hid_error(handle));
}
return(ret >= 0);
}
bool CDevice::FlashRead(uint8_t *buf, int size, bool holdCS)
{
return(GenericRead(ID_SPI_READ, buf, size, holdCS));
}
bool CDevice::FlashWrite(uint8_t *buf, int size, bool initCS, bool holdCS)
{
return(GenericWrite(ID_SPI_WRITE, buf, size, initCS, holdCS));
}
bool CDevice::SramRead(uint8_t *buf, int size, bool holdCS)
{
return(GenericRead(ID_SPI_SRAM_READ, buf, size, holdCS));
}
bool CDevice::SramWrite(uint8_t *buf, int size, bool initCS, bool holdCS)
{
return(GenericWrite(ID_SPI_SRAM_WRITE, buf, size, initCS, holdCS));
}
bool CDevice::DiskWriteStart()
{
hidbuf[0] = ID_DISK_WRITE_START;
return hid_send_feature_report(handle, hidbuf, 2) >= 0;
}
bool CDevice::DiskWrite(uint8_t *buf, int size)
{
if (size != DISK_WRITEMAX) //always max!
return false;
hidbuf[0] = ID_DISK_WRITE;
memcpy(hidbuf + 1, buf, size);
return hid_write(handle, hidbuf, DISK_WRITEMAX + 1) >= 0; // WRITEMAX+reportID
}
bool CDevice::DiskReadStart()
{
hidbuf[0] = ID_DISK_READ_START;
sequence = 1;
return hid_send_feature_report(handle, hidbuf, 2) >= 0;
}
int CDevice::DiskRead(uint8_t *buf)
{
int result;
hidbuf[0] = ID_DISK_READ;
result = hid_get_feature_report(handle, hidbuf, DISK_READMAX + 2); // + reportID + sequence
//hidapi increments the result by 1 to account for the report id, if it was a success
if (result > 0) {
result--;
}
//read time out
if (result < 2) {
printf("\nDisk read timed out\n");
return(-1);
}
//adapter will send incomplete/empty packets when it's out of data (end of disk)
else if (result > 2) {
memcpy(buf, hidbuf + 2, result - 2);
//sequence out of order (data lost)
if (hidbuf[1] != sequence++) {
printf("\nDisk read sequence out of order (got %d, wanted %d)\n",hidbuf[1],sequence-1);
return(-1);
}
else {
// printf("read %d bytes\n", result - 2);
return(result - 2);
}
}
else {
printf("\nDisk read returned no data\n");
return(0);
}
}
| [
"jamesholodnak@gmail.com"
] | jamesholodnak@gmail.com |
5c0002c2db7f2e8aee18680b6e8c135b1965d193 | 7452457bf715cf50f251d086c5c9bfe0821b1538 | /include/Furrovine++/integral_type.h | 47f182f96ad481b439a3ff1620c907c58d420653 | [
"MIT"
] | permissive | bananu7/Furropen | 3d91c49b5b833f5f269cf5516a8f8c7cf1385cdc | 968351c1268d8994116cd8312f067dd2cacdbf5b | refs/heads/master | 2021-01-10T20:44:17.606000 | 2014-02-13T22:28:09 | 2014-02-13T22:28:09 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,033 | h | #pragma once
#include <array>
#include <Furrovine++/numeric_integer_def.h>
namespace Furrovine {
template <ulword n>
struct integral_type {
typedef std::array < uint64, ( n / sizeof( uint64 ) ) + ( ( n % sizeof( uint64 ) ) > 0 ) > type;
};
template <>
struct integral_type<0> {
typedef byte type;
};
template <>
struct integral_type<1> {
typedef byte type;
};
template <>
struct integral_type<2> {
typedef uint16 type;
};
template <>
struct integral_type<3> {
typedef uint32 type;
};
template <>
struct integral_type<4> {
typedef uint32 type;
};
template <>
struct integral_type<5> {
typedef uint64 type;
};
template <>
struct integral_type<6> {
typedef uint64 type;
};
template <>
struct integral_type<7> {
typedef uint64 type;
};
template <>
struct integral_type<8> {
typedef uint64 type;
};
template <typename T>
struct integral_type_of {
typedef typename integral_type<sizeof( T )>::type type;
};
} | [
"phdofthehouse@gmail.com"
] | phdofthehouse@gmail.com |
9b8494cd0289d1eb6048ec4392d269a4b5730c5b | d68147b184bb11f928aa4f23b2471cb56bccae29 | /Respirador/FINA14KITKJE85T/FINA14KITKJE85T.ino | e9f0d4a966d869a0ca5f7e03388525179fa18131 | [] | no_license | jubarcik/Respiretech-500 | b24aefa40bf01707df362b23bf76cbf49c79c166 | 4dbf167e22601a3ce8c5480ef82fc265bfc4b183 | refs/heads/master | 2022-12-08T03:42:57.343067 | 2020-09-08T00:13:57 | 2020-09-08T00:13:57 | 293,657,964 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,080 | ino | #include <LiquidCrystal.h>
#include <DFR_LCD_Keypad.h>
LiquidCrystal lcd(8,9,4,5,6,7);
DFR_LCD_Keypad keypad(A0, &lcd);
int led=13;
int last_key, key;
void setup()
{
lcd.begin(16,2);
lcd.setCursor(0,0);
lcd.print("PRESS KEYS NOW");
pinMode(led, OUTPUT);
delay(1000);
lcd.clear();
}
void loop()
{
last_key = keypad.get_last_key();
key = keypad.read_key();
if (key != last_key) {
lcd.clear();
lcd.setCursor(0,0);
switch (key) {
case KEY_RIGHT:
lcd.print("RIGHT");
break;
case KEY_UP:
lcd.print("UP");
break;
case KEY_DOWN:
lcd.print("DOWN");
break;
case KEY_LEFT:
lcd.print("LEFT");
break;
case KEY_SELECT:
lcd.print("SELECT");
digitalWrite(led, HIGH);
break;
case KEY_NONE:
default:
lcd.print("NO KEYS PRESSED");
lcd.setCursor(0,1);
lcd.print("PRESS KEYS NOW");
digitalWrite(led, LOW);
break;
}
}
delay(10);
}
| [
"noreply@github.com"
] | noreply@github.com |
5345f68f3cb1ec95f364649d6f49aa993371a2b5 | 0f7c61fd01cd94fecfe8c263fddbb62b4011697a | /VI-Semestre/Advanced Data Structures/Temporal_DS/temporal_ds.h | 5701d370d0f69dae15f83108b30e1f79095a6da3 | [] | no_license | edsonlipa/UNSA | 77655c19f1cf2d00a8fdefad2e2991c2cd8f20a0 | b43a407f4c40b29882fc4bb212e9ca5b00660edd | refs/heads/master | 2021-01-18T19:01:12.984549 | 2018-01-19T21:31:46 | 2018-01-19T21:31:46 | 86,881,849 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,372 | h | #ifndef TEMPORAL_DS_H
#define TEMPORAL_DS_H
#include <iostream>
#include "node.h"
#include <vector>
using namespace std;
template<class T>
class Temporal_DS
{
public:
unsigned time=0;
Node<T> * hash[20]={0};
Temporal_DS();
bool add(T data);
bool add2(T data);
bool add_T(T data);
bool find(int time,T val,Node<T> **& seeker);
bool find_T(T val,Node<T> **& seeker);
Node<T> * romper(Node<T> * copy,Node<T> * nuevo);
void print_three(int time);
void print(Node<T>* r);
};
template<class T>
Temporal_DS<T>::Temporal_DS()
{
cout<<"******************arbol iniciado********************"<<endl;
// this->time=0;
// this->hash[0]=0;
}
template<class T>
Node<T> * Temporal_DS<T>::romper(Node<T> * src,Node<T> * nuevo)
{
Node<T>* copia=new Node<T>;
copia=src;
copia->sons[src->mod.son]=src->mod.to_node;
copia->sons[!src->mod.son]=src->mod.to_node;
if(copia->back_ptr){
hash[time]=copia;
}
else if(copia->back_ptr->mod.to_node){
romper(copia->back_ptr,copia);
}else{
copia->back_ptr->mod.time=time;
copia->back_ptr->mod.to_node=copia;
copia->back_ptr->mod.son=(copia->data>copia->back_ptr->data);
}
return copia;
}
template<class T>
void Temporal_DS<T>::print_three(int time)
{
while (!hash[time]) {
time--;
}
print(hash[time]);
}
template<class T>
void Temporal_DS<T>::print(Node<T>* r)
{
if(!r)return;
print(r->sons[0]);
cout <<" "<<r->data<<" "<<endl;
print(r->sons[1]);
}
template<class T>
bool Temporal_DS<T>::add(T data)
{
cout<<"nuevo nodo"<<endl;
if(!this->hash[0]){this->time++;this->hash[0]=new Node<T>(data);return true;}
return false;
}
template<class T>
bool Temporal_DS<T>::add_T(T data)
{
if(!this->hash[0]){this->time++;this->hash[0]=new Node<T>(data);return true;}
else{
Node<T>**temp=new Node<T> *;
if(!find(time,data,temp)){
*temp=new Node<T>(data);
this->time++;
return true;
}
return false;
}
}
template<class T>
bool Temporal_DS<T>:: find_T(T val,Node<T> **& seeker)
{
while (!hash[time]) {
time--;
}
seeker=&(hash[time]);
while(*seeker){
if((*seeker)->data==val){
return true;
}
if((*seeker)->sons[!(*seeker)->data<val] ){ //si existen hijos
if((*seeker)->mod.to_node){
if((*seeker)->mod.son==((*seeker)->data<val)){
(seeker)=&((*seeker)->mod.to_node);
}else {
(seeker)=&((*seeker)->sons[!(*seeker)->data<val]);
}
}
else{
(seeker)=&((*seeker)->sons[!(*seeker)->data<val]);
}
}
else if((*seeker)->mod.to_node){// si existe modificacion
if((*seeker)->mod.son==((*seeker)->data<val)){
(seeker)=&((*seeker)->mod.to_node);
}
else {
/*mandar romper*/
Node<T>* nuevo_hijo=new Node<T>;
Node<T>* nuevo_nodo=new Node<T>;
nuevo_nodo=romper((*seeker),nuevo_hijo)
(seeker)=&(nuevo_nodo->sons[!(*seeker)->data<val]);
// romper=true;/*actulizar puntero a hijo lejitimo de duplicado*/
}
}
else{
(seeker)=&((*seeker)->mod.to_node);
(*seeker)->mod.time=time;
(*seeker)->mod.son=(*seeker)->data<val;
// (seeker)=&((*seeker)->sons[!(*seeker)->data<val]);
}
}
// cout<<"buscando... "<<(*seeker)->data<<endl;
return false;
}
template<class T>
bool Temporal_DS<T>::add2(T data)
{
Node<T>**temp=new Node<T> *;
if(!find(time,data,temp)){
*temp=new Node<T>(data);
this->time++;
return true;
}
return false;
}
template<class T>
bool Temporal_DS<T>:: find(int time ,T val,Node<T> **& seeker)
{
while (!hash[time]) {
time--;
}
seeker=&(hash[time]);
while(*seeker){
if((*seeker)->data==val){
return true;
}
// (*seeker)=(*seeker)->data<val?(*seeker)->sons[0]:(*seeker)->sons[1];
(seeker)=&((*seeker)->sons[!(*seeker)->data<val]);
}
// cout<<"buscando... "<<(*seeker)->data<<endl;
return false;
}
#endif // TEMPORAL_DS_H
| [
"edson.lipa@gmial.com"
] | edson.lipa@gmial.com |
5002011963e7a8edbc6a370722b6386197a31272 | 9d364070c646239b2efad7abbab58f4ad602ef7b | /platform/external/chromium_org/content/child/webcrypto/structured_clone.h | a1069d7f63c176f8ed4a3b12df22980d5cf86d87 | [
"BSD-3-Clause"
] | permissive | denix123/a32_ul | 4ffe304b13c1266b6c7409d790979eb8e3b0379c | b2fd25640704f37d5248da9cc147ed267d4771c2 | refs/heads/master | 2021-01-17T20:21:17.196296 | 2016-08-16T04:30:53 | 2016-08-16T04:30:53 | 65,786,970 | 0 | 2 | null | 2020-03-06T22:00:52 | 2016-08-16T04:15:54 | null | UTF-8 | C++ | false | false | 916 | h | // Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CONTENT_CHILD_WEBCRYPTO_STRUCTURED_CLONE_H_
#define CONTENT_CHILD_WEBCRYPTO_STRUCTURED_CLONE_H_
#include <stdint.h>
#include "third_party/WebKit/public/platform/WebCrypto.h"
namespace content {
namespace webcrypto {
class CryptoData;
bool SerializeKeyForClone(const blink::WebCryptoKey& key,
blink::WebVector<uint8_t>* key_data);
bool DeserializeKeyForClone(const blink::WebCryptoKeyAlgorithm& algorithm,
blink::WebCryptoKeyType type,
bool extractable,
blink::WebCryptoKeyUsageMask usage_mask,
const CryptoData& key_data,
blink::WebCryptoKey* key);
}
}
#endif
| [
"allegrant@mail.ru"
] | allegrant@mail.ru |
42f9a934cd373f26266c5371939c74bd2a759fbf | 160f620ab8c845f07d6342fa4f0c0fd8f86471fd | /Classes/include/Boss.h | f49e1b3e632fa99d194feb60d0f7bd1fc1a10df2 | [] | no_license | JohnKavanagh1050/Abbadon-Android-Devices-2016-17 | 410c0fe9642d8bfefa8458eba378880a4162e66b | 5a39651e108e84b93b852c0bd42e9704e53a9721 | refs/heads/master | 2021-01-11T14:12:17.525675 | 2017-02-27T20:31:41 | 2017-02-27T20:31:41 | 81,588,175 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 426 | h | #pragma once
#include "cocos2d.h"
#include "GameData.h"
#include "GameScene.h"
#include "GameStates.h"
class Boss : public cocos2d::Sprite{
public:
static Boss * create(void);
void initBullet();
void update(GameScene* world);
bool getRemove();
void move(float x, float y);
void animateBullet();
private:
int timeAlive;
int timecounter;
short const TIMETOLIVE = 60;
bool remove;
float dirX, dirY;
float speed;
}; | [
"johnkav1050@hotmail.com"
] | johnkav1050@hotmail.com |
003bba19a6fbd3723735d561096a81425d8bc9d1 | 12bebbbb4e62caa763dc8249acef688cb780520a | /6_3/Header.cpp | 5aa2b58bc8714e2d6c60f0bd71b1b6fcf5156e46 | [
"Apache-2.0"
] | permissive | AlexanderKiselyov/Homework | f10a44d01ebaf5a366f061f673507f86b84c3028 | 639bb59227167ddb7421dcf76b9c642180756cf9 | refs/heads/master | 2021-01-17T07:14:45.525513 | 2018-12-20T17:25:34 | 2018-12-20T17:25:34 | 47,896,566 | 1 | 0 | null | 2016-05-26T23:54:28 | 2015-12-12T22:14:17 | C++ | UTF-8 | C++ | false | false | 963 | cpp | #include "Header.h"
#include <iostream>
using namespace std;
void ListElement::add(int i) // adds warrior to the array and circles the array
{
ListElement *list = new ListElement;
list->next = head;
list->value = i;
if (head != nullptr)
{
tail->next = list;
tail = list;
}
else
{
head = list;
tail = list;
}
}
void ListElement::DeleteAndShow(int m, int n) // deletes every m-warrior and after some operations shows the last warrior
{
int count = n;
ListElement *list = tail;
while (count != 1)
{
count--;
for (int i = 1; i < m; i++)
{
list = list->next;
}
if (list->next == head)
{
ListElement *temp1 = list->next->next;
delete list->next;
list->next = temp1;
head = list->next;
}
else
{
ListElement *temp1 = nullptr;
temp1 = list->next->next;
delete list->next;
list->next = temp1;
}
}
ListElement *temp = head;
std::cout << "The last warrior is: " << temp->value << ".";
delete temp;
}
| [
"a_kiselyov-snz@mail.ru"
] | a_kiselyov-snz@mail.ru |
c7441025879e84cfb59f6f1cc17bfc0def674c61 | d6b2dd2aa6c951cce83fc894e7f78b4ca0dd9893 | /ProjectSeycodeAndroid/build/Android/Release/SeyCode/app/src/main/include/Fuse.Input.KeyReleasedArgs.h | ec798146316e16f082608ef2589177dee5dc20aa | [] | no_license | seycode/projectSeycode | 2e1ce90cb3e7c6ea322fa36f649b4b3906b32db3 | e1ebf63966ace40afa8736cc0aa37b18117774dc | refs/heads/master | 2021-01-11T02:49:33.975116 | 2016-12-13T16:08:45 | 2016-12-13T16:08:45 | 70,919,614 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,318 | h | // This file was generated based on /usr/local/share/uno/Packages/FuseCore/0.32.14/Input/$.uno.
// WARNING: Changes might be lost if you edit this file directly.
#pragma once
#include <Fuse.Input.KeyEventArgs.h>
#include <Fuse.Scripting.IScriptEvent.h>
namespace g{namespace Fuse{namespace Input{struct KeyReleasedArgs;}}}
namespace g{namespace Fuse{struct Visual;}}
namespace g{
namespace Fuse{
namespace Input{
// public sealed class KeyReleasedArgs :594
// {
::g::Fuse::VisualEventArgs_type* KeyReleasedArgs_typeof();
void KeyReleasedArgs__ctor_3_fn(KeyReleasedArgs* __this, int* key, bool* isMetaKeyPressed, bool* isControlKeyPressed, bool* isShiftKeyPressed, bool* isAltKeyPressed, ::g::Fuse::Visual* visual);
void KeyReleasedArgs__New3_fn(int* key, bool* isMetaKeyPressed, bool* isControlKeyPressed, bool* isShiftKeyPressed, bool* isAltKeyPressed, ::g::Fuse::Visual* visual, KeyReleasedArgs** __retval);
struct KeyReleasedArgs : ::g::Fuse::Input::KeyEventArgs
{
void ctor_3(int key, bool isMetaKeyPressed, bool isControlKeyPressed, bool isShiftKeyPressed, bool isAltKeyPressed, ::g::Fuse::Visual* visual);
static KeyReleasedArgs* New3(int key, bool isMetaKeyPressed, bool isControlKeyPressed, bool isShiftKeyPressed, bool isAltKeyPressed, ::g::Fuse::Visual* visual);
};
// }
}}} // ::g::Fuse::Input
| [
"seycodeware@gmail.com"
] | seycodeware@gmail.com |
9a0c8d12118bb2155ef50ff2fa48b2c7d4f18310 | 3935e4a3a35ee93194acfef1c05d95c7ec6a60a3 | /Temp/StagingArea/Data/il2cppOutput/Bulk_mscorlib_1.cpp | ead8c9b20ad5c4d4f50544ba5a2046f8108f71f4 | [] | no_license | KunoNoOni/GPbGtdurp | 99af96f4d28ec6936ed08f2f98088986eb9b7bb2 | 448f025d3109cead708018f4cedbbebdcfe7a2e3 | refs/heads/master | 2016-08-12T19:00:32.191160 | 2015-12-14T02:12:43 | 2015-12-14T02:12:43 | 47,946,964 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,052,736 | cpp | #include "il2cpp-config.h"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <cstring>
#include <string.h>
#include <stdio.h>
#include <cmath>
#include <limits>
#include <assert.h>
struct t1_132;
struct t1_123;
struct t1_83;
struct t1_133;
struct t1_18;
struct t1_134;
struct t1_135;
struct t1_136;
struct t1_137;
struct t1_111;
struct t1_149;
struct t1_125;
struct t1_139;
struct t1_45;
struct t1_148;
struct t1_1;
struct t1_158;
struct t1_119;
struct t1_190;
struct t1_142;
struct t1_143;
struct t1_145;
struct t1_141;
struct t1_151;
struct t1_152;
struct t1_154;
struct t1_153;
struct t1_816;
struct t1_156;
struct t1_212;
struct t1_43;
struct t1_157;
struct t1_159;
struct t1_160;
struct t1_164;
struct t1_165;
struct t1_126;
struct t1_166;
struct t1_817;
struct t1_33;
struct t1_192;
struct t1_170;
struct t1_37;
struct t1_167;
struct t1_168;
struct t1_169;
struct t1_171;
struct t1_172;
struct t1_174;
struct t1_176;
struct t1_175;
struct t1_97;
struct t1_144;
struct t1_424;
struct t1_178;
struct t1_182;
struct t1_184;
struct t1_185;
struct t1_186;
struct t1_187;
struct t1_188;
struct t1_465;
struct t1_191;
struct t1_193;
struct t1_189;
struct t1_173;
struct t1_196;
struct t1_197;
struct t1_199;
struct t1_155;
struct t1_203;
struct t1_204;
struct t1_205;
struct t1_206;
struct t1_207;
struct t1_208;
struct t1_209;
struct t1_210;
struct t1_211;
struct t1_179;
struct t1_100;
struct t1_216;
struct t1_217;
struct t1_809;
struct t1_221;
struct t1_223;
struct t1_228;
struct t1_229;
struct t1_230;
struct t1_231;
struct t1_19;
struct t1_234;
struct t1_236;
struct t1_238;
struct t1_248;
struct t1_263;
struct t1_243;
struct t1_246;
struct t1_35;
struct t1_36;
struct t1_247;
struct t1_249;
struct t1_449;
struct t1_235;
struct t1_237;
struct t1_252;
#include "class-internals.h"
#include "codegen/il2cpp-codegen.h"
#include "t1_33.h"
#include "t1_132.h"
#include "t1_132MD.h"
#include "t1_25.h"
#include "t1_123.h"
#include "t1_23.h"
#include "mscorlib_ArrayTypes.h"
#include "t1_13.h"
#include "t1_1MD.h"
#include "t1_113MD.h"
#include "t1_72MD.h"
#include "t1_562MD.h"
#include "t1_742MD.h"
#include "t1_707MD.h"
#include "t1_18.h"
#include "t1_1.h"
#include "t1_123MD.h"
#include "t1_4.h"
#include "t1_33MD.h"
#include "t1_562.h"
#include "t1_736MD.h"
#include "t1_18MD.h"
#include "t1_755MD.h"
#include "t1_560.h"
#include "t1_31.h"
#include "t1_31MD.h"
#include "t1_755.h"
#include "t1_701MD.h"
#include "t1_702MD.h"
#include "t1_653MD.h"
#include "t1_701.h"
#include "t1_702.h"
#include "t1_653.h"
#include "t1_760MD.h"
#include "t1_760.h"
#include "t1_587.h"
#include "t1_111MD.h"
#include "t1_111.h"
#include "t1_133.h"
#include "t1_133MD.h"
#include "t1_134.h"
#include "t1_135.h"
#include "t1_135MD.h"
#include "t1_71MD.h"
#include "t1_808.h"
#include "t1_808MD.h"
#include "t1_795.h"
#include "t1_46.h"
#include "t1_575MD.h"
#include "t1_575.h"
#include "t1_136.h"
#include "t1_136MD.h"
#include "t1_126MD.h"
#include "t1_137MD.h"
#include "t1_126.h"
#include "t1_137.h"
#include "t1_134MD.h"
#include "t1_148MD.h"
#include "t1_146MD.h"
#include "t1_89MD.h"
#include "t1_149MD.h"
#include "t1_148.h"
#include "t1_149.h"
#include "t1_89.h"
#include "t1_231MD.h"
#include "t1_17.h"
#include "t1_231.h"
#include "t1_139MD.h"
#include "t1_144.h"
#include "t1_144MD.h"
#include "t1_139.h"
#include "t1_756MD.h"
#include "t1_756.h"
#include "t1_570.h"
#include "t1_142MD.h"
#include "t1_142.h"
#include "t1_119.h"
#include "t1_119MD.h"
#include "t1_125.h"
#include "t1_125MD.h"
#include "t1_131.h"
#include "t1_127MD.h"
#include "t1_127.h"
#include "t1_573MD.h"
#include "t1_578.h"
#include "t1_573.h"
#include "t1_138.h"
#include "t1_138MD.h"
#include "t1_796.h"
#include "t1_158MD.h"
#include "t1_158.h"
#include "t1_789.h"
#include "t1_43.h"
#include "t1_141MD.h"
#include "t1_140.h"
#include "t1_141.h"
#include "t1_569MD.h"
#include "t1_569.h"
#include "t1_521.h"
#include "t1_190.h"
#include "t1_190MD.h"
#include "t1_710MD.h"
#include "t1_145.h"
#include "t1_145MD.h"
#include "t1_175MD.h"
#include "t1_13MD.h"
#include "t1_729MD.h"
#include "t1_175.h"
#include "t1_43MD.h"
#include "t1_146.h"
#include "t1_147MD.h"
#include "t1_561MD.h"
#include "t1_735MD.h"
#include "t1_735.h"
#include "t1_12MD.h"
#include "t1_12.h"
#include "t1_140MD.h"
#include "t1_15.h"
#include "t1_220.h"
#include "t1_147.h"
#include "t1_706.h"
#include "t1_706MD.h"
#include "t1_20.h"
#include "t1_21.h"
#include "t1_150.h"
#include "t1_150MD.h"
#include "t1_151.h"
#include "t1_151MD.h"
#include "t1_112MD.h"
#include "t1_554.h"
#include "t1_554MD.h"
#include "t1_152.h"
#include "t1_152MD.h"
#include "t1_153MD.h"
#include "t1_155MD.h"
#include "t1_153.h"
#include "t1_155.h"
#include "t1_266MD.h"
#include "t1_154.h"
#include "t1_266.h"
#include "t1_157.h"
#include "t1_154MD.h"
#include "t1_156.h"
#include "t1_156MD.h"
#include "t1_37MD.h"
#include "t1_37.h"
#include "t1_40.h"
#include "t1_160MD.h"
#include "t1_160.h"
#include "t1_17MD.h"
#include "t1_227.h"
#include "t1_157MD.h"
#include "t1_161MD.h"
#include "t1_161.h"
#include "t1_162.h"
#include "t1_162MD.h"
#include "t1_163.h"
#include "t1_163MD.h"
#include "t1_164.h"
#include "t1_164MD.h"
#include "t1_165.h"
#include "t1_165MD.h"
#include "t1_740MD.h"
#include "t1_740.h"
#include "t1_166.h"
#include "t1_166MD.h"
#include "t1_167.h"
#include "t1_167MD.h"
#include "t1_677MD.h"
#include "t1_168.h"
#include "t1_168MD.h"
#include "t1_169.h"
#include "t1_169MD.h"
#include "t1_764MD.h"
#include "t1_764.h"
#include "t1_171.h"
#include "t1_171MD.h"
#include "t1_172.h"
#include "t1_172MD.h"
#include "t1_174.h"
#include "t1_174MD.h"
#include "t1_178MD.h"
#include "t1_179.h"
#include "t1_179MD.h"
#include "t1_92.h"
#include "t1_178.h"
#include "t1_176.h"
#include "t1_176MD.h"
#include "t1_97.h"
#include "t1_97MD.h"
#include "t1_177.h"
#include "t1_177MD.h"
#include "t1_180.h"
#include "t1_180MD.h"
#include "t1_181.h"
#include "t1_181MD.h"
#include "t1_182.h"
#include "t1_182MD.h"
#include "t1_183.h"
#include "t1_183MD.h"
#include "t1_184.h"
#include "t1_184MD.h"
#include "t1_185.h"
#include "t1_186.h"
#include "t1_186MD.h"
#include "t1_185MD.h"
#include "t1_187.h"
#include "t1_187MD.h"
#include "t1_188.h"
#include "t1_188MD.h"
#include "t1_20MD.h"
#include "t1_797.h"
#include "t1_10.h"
#include "t1_548MD.h"
#include "t1_548.h"
#include "t1_194.h"
#include "t1_194MD.h"
#include "t1_195.h"
#include "t1_195MD.h"
#include "t1_196.h"
#include "t1_196MD.h"
#include "t1_197.h"
#include "t1_197MD.h"
#include "t1_199.h"
#include "t1_199MD.h"
#include "t1_200.h"
#include "t1_200MD.h"
#include "t1_201.h"
#include "t1_201MD.h"
#include "t1_202.h"
#include "t1_202MD.h"
#include "t1_203.h"
#include "t1_203MD.h"
#include "t1_3MD.h"
#include "t1_3.h"
#include "t1_204.h"
#include "t1_204MD.h"
#include "t1_205.h"
#include "t1_205MD.h"
#include "t1_206.h"
#include "t1_206MD.h"
#include "t1_38.h"
#include "t1_38MD.h"
#include "t1_207.h"
#include "t1_207MD.h"
#include "t1_208.h"
#include "t1_637.h"
#include "t1_209.h"
#include "t1_209MD.h"
#include "t1_369.h"
#include "t1_208MD.h"
#include "t1_369MD.h"
#include "t1_211.h"
#include "t1_211MD.h"
#include "t1_213.h"
#include "t1_213MD.h"
#include "t1_214.h"
#include "t1_214MD.h"
#include "t1_9.h"
#include "t1_716.h"
#include "t1_215.h"
#include "t1_215MD.h"
#include "t1_96MD.h"
#include "t1_96.h"
#include "t1_87MD.h"
#include "t1_100.h"
#include "t1_100MD.h"
#include "t1_92MD.h"
#include "t1_439MD.h"
#include "t1_439.h"
#include "t1_216MD.h"
#include "t1_217MD.h"
#include "t1_216.h"
#include "t1_217.h"
#include "t1_219.h"
#include "t1_219MD.h"
#include "t1_223MD.h"
#include "t1_223.h"
#include "t1_4MD.h"
#include "t1_220MD.h"
#include "t1_221.h"
#include "t1_221MD.h"
#include "t1_222.h"
#include "t1_224.h"
#include "t1_224MD.h"
#include "t1_225.h"
#include "t1_225MD.h"
#include "t1_226.h"
#include "t1_226MD.h"
#include "t1_227MD.h"
#include "t1_228.h"
#include "t1_228MD.h"
#include "t1_229.h"
#include "t1_229MD.h"
#include "t1_230.h"
#include "t1_230MD.h"
#include "t1_232.h"
#include "t1_237MD.h"
#include "t1_238MD.h"
#include "t1_237.h"
#include "t1_238.h"
#include "t1_22.h"
#include "t1_14.h"
#include "t1_232MD.h"
#include "t1_16.h"
#include "t1_233.h"
#include "t1_233MD.h"
#include "t1_234.h"
#include "t1_239MD.h"
#include "t1_256.h"
#include "t1_256MD.h"
#include "t1_234MD.h"
#include "t1_254MD.h"
#include "t1_255.h"
#include "t1_241.h"
#include "t1_236MD.h"
#include "t1_258.h"
#include "t1_258MD.h"
#include "t1_236.h"
#include "t1_235MD.h"
#include "t1_235.h"
#include "t1_251.h"
#include "t1_254.h"
#include "t1_239.h"
#include "t1_777MD.h"
#include "t1_777.h"
#include "t1_242.h"
#include "t1_248.h"
#include "t1_248MD.h"
#include "t1_240.h"
#include "t1_245.h"
#include "t1_263.h"
#include "t1_263MD.h"
#include "t1_240MD.h"
#include "t1_241MD.h"
#include "t1_242MD.h"
#include "t1_243.h"
#include "t1_243MD.h"
#include "t1_244.h"
#include "t1_244MD.h"
#include "t1_245MD.h"
#include "t1_246.h"
#include "t1_246MD.h"
#include "t1_24.h"
#include "t1_36.h"
#include "t1_247.h"
#include "t1_247MD.h"
#include "t1_24MD.h"
#include "t1_253.h"
#include "t1_259.h"
#include "t1_448.h"
#include "t1_448MD.h"
#include "t1_249MD.h"
#include "t1_252MD.h"
#include "t1_249.h"
#include "t1_252.h"
#include "t1_36MD.h"
#include "t1_250MD.h"
#include "t1_250.h"
#include "t1_449.h"
#include "t1_69MD.h"
#include "t1_69.h"
#include "t1_253MD.h"
extern "C" int32_t m1_5458_gshared (t1_1 * __this , t1_170* p0, t1_1 * p1, int32_t p2, int32_t p3, const MethodInfo* method);
#define m1_5458(__this , p0, p1, p2, p3, method) (( int32_t (*) (t1_1 * , t1_170*, t1_1 *, int32_t, int32_t, const MethodInfo*))m1_5458_gshared)(__this , p0, p1, p2, p3, method)
extern "C" void m1_5459_gshared (t1_1 * __this , t1_170* p0, int32_t p1, int32_t p2, const MethodInfo* method);
#define m1_5459(__this , p0, p1, p2, method) (( void (*) (t1_1 * , t1_170*, int32_t, int32_t, const MethodInfo*))m1_5459_gshared)(__this , p0, p1, p2, method)
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
extern TypeInfo* t1_83_TI_var;
extern TypeInfo* t1_170_TI_var;
extern TypeInfo* t1_4_TI_var;
extern TypeInfo* t1_562_TI_var;
extern Il2CppCodeGenString* _stringLiteral346;
extern "C" void m1_1306 (t1_132 * __this, t1_123 * p0, bool p1, t1_83* p2, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_83_TI_var = il2cpp_codegen_type_info_from_index(42);
t1_170_TI_var = il2cpp_codegen_type_info_from_index(19);
t1_4_TI_var = il2cpp_codegen_type_info_from_index(8);
t1_562_TI_var = il2cpp_codegen_type_info_from_index(130);
_stringLiteral346 = il2cpp_codegen_string_literal_from_index(346);
s_Il2CppMethodIntialized = true;
}
t1_18* V_0 = {0};
{
m1_0(__this, NULL);
t1_123 * L_0 = p0;
__this->f0 = L_0;
bool L_1 = p1;
__this->f1 = L_1;
t1_123 * L_2 = (__this->f0);
int32_t L_3 = (int32_t)VirtFuncInvoker0< int32_t >::Invoke(6 /* System.Int32 System.Security.Cryptography.SymmetricAlgorithm::get_BlockSize() */, L_2);
__this->f2 = ((int32_t)((int32_t)L_3>>(int32_t)3));
t1_83* L_4 = p2;
if (L_4)
{
goto IL_003f;
}
}
{
int32_t L_5 = (__this->f2);
t1_83* L_6 = m1_1200(NULL, L_5, NULL);
p2 = L_6;
goto IL_004c;
}
IL_003f:
{
t1_83* L_7 = p2;
t1_1 * L_8 = (t1_1 *)VirtFuncInvoker0< t1_1 * >::Invoke(5 /* System.Object System.Array::Clone() */, L_7);
p2 = ((t1_83*)Castclass(L_8, t1_83_TI_var));
}
IL_004c:
{
t1_83* L_9 = p2;
int32_t L_10 = (__this->f2);
if ((((int32_t)(((int32_t)((int32_t)(((t1_33 *)L_9)->max_length))))) >= ((int32_t)L_10)))
{
goto IL_008b;
}
}
{
t1_170* L_11 = ((t1_170*)SZArrayNew(t1_170_TI_var, 2));
t1_83* L_12 = p2;
int32_t L_13 = (((int32_t)((int32_t)(((t1_33 *)L_12)->max_length))));
t1_1 * L_14 = Box(t1_4_TI_var, &L_13);
ArrayElementTypeCheck (L_11, L_14);
*((t1_1 **)(t1_1 **)SZArrayLdElema(L_11, 0, sizeof(t1_1 *))) = (t1_1 *)L_14;
t1_170* L_15 = L_11;
int32_t L_16 = (__this->f2);
int32_t L_17 = L_16;
t1_1 * L_18 = Box(t1_4_TI_var, &L_17);
ArrayElementTypeCheck (L_15, L_18);
*((t1_1 **)(t1_1 **)SZArrayLdElema(L_15, 1, sizeof(t1_1 *))) = (t1_1 *)L_18;
t1_18* L_19 = m1_991(NULL, _stringLiteral346, L_15, NULL);
V_0 = L_19;
t1_18* L_20 = V_0;
t1_562 * L_21 = (t1_562 *)il2cpp_codegen_object_new (t1_562_TI_var);
m1_3689(L_21, L_20, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_21);
}
IL_008b:
{
int32_t L_22 = (__this->f2);
__this->f3 = ((t1_83*)SZArrayNew(t1_83_TI_var, L_22));
t1_83* L_23 = p2;
t1_83* L_24 = (__this->f3);
int32_t L_25 = (__this->f2);
t1_83* L_26 = p2;
int32_t L_27 = m1_5043(NULL, L_25, (((int32_t)((int32_t)(((t1_33 *)L_26)->max_length)))), NULL);
m1_4597(NULL, (t1_33 *)(t1_33 *)L_23, 0, (t1_33 *)(t1_33 *)L_24, 0, L_27, NULL);
int32_t L_28 = (__this->f2);
__this->f4 = ((t1_83*)SZArrayNew(t1_83_TI_var, L_28));
t1_123 * L_29 = (__this->f0);
int32_t L_30 = (int32_t)VirtFuncInvoker0< int32_t >::Invoke(8 /* System.Int32 System.Security.Cryptography.SymmetricAlgorithm::get_FeedbackSize() */, L_29);
__this->f7 = ((int32_t)((int32_t)L_30>>(int32_t)3));
int32_t L_31 = (__this->f7);
if (!L_31)
{
goto IL_00fa;
}
}
{
int32_t L_32 = (__this->f2);
int32_t L_33 = (__this->f7);
__this->f8 = ((int32_t)((int32_t)L_32/(int32_t)L_33));
}
IL_00fa:
{
int32_t L_34 = (__this->f2);
__this->f5 = ((t1_83*)SZArrayNew(t1_83_TI_var, L_34));
int32_t L_35 = (__this->f2);
__this->f6 = ((t1_83*)SZArrayNew(t1_83_TI_var, L_35));
return;
}
}
extern "C" void m1_1307 (t1_132 * __this, const MethodInfo* method)
{
{
VirtActionInvoker1< bool >::Invoke(8 /* System.Void Mono.Security.Cryptography.SymmetricTransform::Dispose(System.Boolean) */, __this, 1);
m1_5001(NULL, __this, NULL);
return;
}
}
extern "C" void m1_1308 (t1_132 * __this, const MethodInfo* method)
{
t1_43 * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
t1_43 * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
IL_0000:
try
{ // begin try (depth: 1)
VirtActionInvoker1< bool >::Invoke(8 /* System.Void Mono.Security.Cryptography.SymmetricTransform::Dispose(System.Boolean) */, __this, 0);
IL2CPP_LEAVE(0x13, FINALLY_000c);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (t1_43 *)e.ex;
goto FINALLY_000c;
}
FINALLY_000c:
{ // begin finally (depth: 1)
m1_3(__this, NULL);
IL2CPP_END_FINALLY(12)
} // end finally (depth: 1)
IL2CPP_CLEANUP(12)
{
IL2CPP_JUMP_TBL(0x13, IL_0013)
IL2CPP_RETHROW_IF_UNHANDLED(t1_43 *)
}
IL_0013:
{
return;
}
}
extern "C" void m1_1309 (t1_132 * __this, bool p0, const MethodInfo* method)
{
{
bool L_0 = (__this->f9);
if (L_0)
{
goto IL_004a;
}
}
{
bool L_1 = p0;
if (!L_1)
{
goto IL_0043;
}
}
{
t1_83* L_2 = (__this->f3);
int32_t L_3 = (__this->f2);
m1_821(NULL, (t1_33 *)(t1_33 *)L_2, 0, L_3, NULL);
__this->f3 = (t1_83*)NULL;
t1_83* L_4 = (__this->f4);
int32_t L_5 = (__this->f2);
m1_821(NULL, (t1_33 *)(t1_33 *)L_4, 0, L_5, NULL);
__this->f4 = (t1_83*)NULL;
}
IL_0043:
{
__this->f9 = 1;
}
IL_004a:
{
return;
}
}
extern "C" bool m1_1310 (t1_132 * __this, const MethodInfo* method)
{
{
return 0;
}
}
extern TypeInfo* t1_560_TI_var;
extern TypeInfo* t1_18_TI_var;
extern TypeInfo* t1_755_TI_var;
extern Il2CppCodeGenString* _stringLiteral347;
extern "C" void m1_1311 (t1_132 * __this, t1_83* p0, t1_83* p1, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_560_TI_var = il2cpp_codegen_type_info_from_index(151);
t1_18_TI_var = il2cpp_codegen_type_info_from_index(11);
t1_755_TI_var = il2cpp_codegen_type_info_from_index(112);
_stringLiteral347 = il2cpp_codegen_string_literal_from_index(347);
s_Il2CppMethodIntialized = true;
}
int32_t V_0 = {0};
{
t1_123 * L_0 = (__this->f0);
int32_t L_1 = (int32_t)VirtFuncInvoker0< int32_t >::Invoke(16 /* System.Security.Cryptography.CipherMode System.Security.Cryptography.SymmetricAlgorithm::get_Mode() */, L_0);
V_0 = L_1;
int32_t L_2 = V_0;
if (((int32_t)((int32_t)L_2-(int32_t)1)) == 0)
{
goto IL_003a;
}
if (((int32_t)((int32_t)L_2-(int32_t)1)) == 1)
{
goto IL_002d;
}
if (((int32_t)((int32_t)L_2-(int32_t)1)) == 2)
{
goto IL_0054;
}
if (((int32_t)((int32_t)L_2-(int32_t)1)) == 3)
{
goto IL_0047;
}
if (((int32_t)((int32_t)L_2-(int32_t)1)) == 4)
{
goto IL_0061;
}
}
{
goto IL_006e;
}
IL_002d:
{
t1_83* L_3 = p0;
t1_83* L_4 = p1;
VirtActionInvoker2< t1_83*, t1_83* >::Invoke(11 /* System.Void Mono.Security.Cryptography.SymmetricTransform::ECB(System.Byte[],System.Byte[]) */, __this, L_3, L_4);
goto IL_0093;
}
IL_003a:
{
t1_83* L_5 = p0;
t1_83* L_6 = p1;
VirtActionInvoker2< t1_83*, t1_83* >::Invoke(12 /* System.Void Mono.Security.Cryptography.SymmetricTransform::CBC(System.Byte[],System.Byte[]) */, __this, L_5, L_6);
goto IL_0093;
}
IL_0047:
{
t1_83* L_7 = p0;
t1_83* L_8 = p1;
VirtActionInvoker2< t1_83*, t1_83* >::Invoke(13 /* System.Void Mono.Security.Cryptography.SymmetricTransform::CFB(System.Byte[],System.Byte[]) */, __this, L_7, L_8);
goto IL_0093;
}
IL_0054:
{
t1_83* L_9 = p0;
t1_83* L_10 = p1;
VirtActionInvoker2< t1_83*, t1_83* >::Invoke(14 /* System.Void Mono.Security.Cryptography.SymmetricTransform::OFB(System.Byte[],System.Byte[]) */, __this, L_9, L_10);
goto IL_0093;
}
IL_0061:
{
t1_83* L_11 = p0;
t1_83* L_12 = p1;
VirtActionInvoker2< t1_83*, t1_83* >::Invoke(15 /* System.Void Mono.Security.Cryptography.SymmetricTransform::CTS(System.Byte[],System.Byte[]) */, __this, L_11, L_12);
goto IL_0093;
}
IL_006e:
{
t1_123 * L_13 = (__this->f0);
int32_t L_14 = (int32_t)VirtFuncInvoker0< int32_t >::Invoke(16 /* System.Security.Cryptography.CipherMode System.Security.Cryptography.SymmetricAlgorithm::get_Mode() */, L_13);
int32_t L_15 = L_14;
t1_1 * L_16 = Box(t1_560_TI_var, &L_15);
t1_18* L_17 = (t1_18*)VirtFuncInvoker0< t1_18* >::Invoke(3 /* System.String System.Enum::ToString() */, L_16);
IL2CPP_RUNTIME_CLASS_INIT(t1_18_TI_var);
t1_18* L_18 = m1_420(NULL, _stringLiteral347, L_17, NULL);
t1_755 * L_19 = (t1_755 *)il2cpp_codegen_object_new (t1_755_TI_var);
m1_5146(L_19, L_18, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_19);
}
IL_0093:
{
return;
}
}
extern "C" void m1_1312 (t1_132 * __this, t1_83* p0, t1_83* p1, const MethodInfo* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
{
bool L_0 = (__this->f1);
if (!L_0)
{
goto IL_005c;
}
}
{
V_0 = 0;
goto IL_002a;
}
IL_0012:
{
t1_83* L_1 = (__this->f3);
int32_t L_2 = V_0;
uint8_t* L_3 = ((uint8_t*)(uint8_t*)SZArrayLdElema(L_1, L_2, sizeof(uint8_t)));
t1_83* L_4 = p0;
int32_t L_5 = V_0;
int32_t L_6 = L_5;
*((int8_t*)(L_3)) = (int8_t)(((int32_t)((uint8_t)((int32_t)((int32_t)(*((uint8_t*)L_3))^(int32_t)(*(uint8_t*)(uint8_t*)SZArrayLdElema(L_4, L_6, sizeof(uint8_t))))))));
int32_t L_7 = V_0;
V_0 = ((int32_t)((int32_t)L_7+(int32_t)1));
}
IL_002a:
{
int32_t L_8 = V_0;
int32_t L_9 = (__this->f2);
if ((((int32_t)L_8) < ((int32_t)L_9)))
{
goto IL_0012;
}
}
{
t1_83* L_10 = (__this->f3);
t1_83* L_11 = p1;
VirtActionInvoker2< t1_83*, t1_83* >::Invoke(11 /* System.Void Mono.Security.Cryptography.SymmetricTransform::ECB(System.Byte[],System.Byte[]) */, __this, L_10, L_11);
t1_83* L_12 = p1;
t1_83* L_13 = (__this->f3);
int32_t L_14 = (__this->f2);
m1_4597(NULL, (t1_33 *)(t1_33 *)L_12, 0, (t1_33 *)(t1_33 *)L_13, 0, L_14, NULL);
goto IL_00bc;
}
IL_005c:
{
t1_83* L_15 = p0;
t1_83* L_16 = (__this->f4);
int32_t L_17 = (__this->f2);
m1_4597(NULL, (t1_33 *)(t1_33 *)L_15, 0, (t1_33 *)(t1_33 *)L_16, 0, L_17, NULL);
t1_83* L_18 = p0;
t1_83* L_19 = p1;
VirtActionInvoker2< t1_83*, t1_83* >::Invoke(11 /* System.Void Mono.Security.Cryptography.SymmetricTransform::ECB(System.Byte[],System.Byte[]) */, __this, L_18, L_19);
V_1 = 0;
goto IL_0097;
}
IL_007f:
{
t1_83* L_20 = p1;
int32_t L_21 = V_1;
uint8_t* L_22 = ((uint8_t*)(uint8_t*)SZArrayLdElema(L_20, L_21, sizeof(uint8_t)));
t1_83* L_23 = (__this->f3);
int32_t L_24 = V_1;
int32_t L_25 = L_24;
*((int8_t*)(L_22)) = (int8_t)(((int32_t)((uint8_t)((int32_t)((int32_t)(*((uint8_t*)L_22))^(int32_t)(*(uint8_t*)(uint8_t*)SZArrayLdElema(L_23, L_25, sizeof(uint8_t))))))));
int32_t L_26 = V_1;
V_1 = ((int32_t)((int32_t)L_26+(int32_t)1));
}
IL_0097:
{
int32_t L_27 = V_1;
int32_t L_28 = (__this->f2);
if ((((int32_t)L_27) < ((int32_t)L_28)))
{
goto IL_007f;
}
}
{
t1_83* L_29 = (__this->f4);
t1_83* L_30 = (__this->f3);
int32_t L_31 = (__this->f2);
m1_4597(NULL, (t1_33 *)(t1_33 *)L_29, 0, (t1_33 *)(t1_33 *)L_30, 0, L_31, NULL);
}
IL_00bc:
{
return;
}
}
extern "C" void m1_1313 (t1_132 * __this, t1_83* p0, t1_83* p1, const MethodInfo* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
int32_t V_3 = 0;
{
bool L_0 = (__this->f1);
if (!L_0)
{
goto IL_00a9;
}
}
{
V_0 = 0;
goto IL_0098;
}
IL_0012:
{
t1_83* L_1 = (__this->f3);
t1_83* L_2 = (__this->f4);
VirtActionInvoker2< t1_83*, t1_83* >::Invoke(11 /* System.Void Mono.Security.Cryptography.SymmetricTransform::ECB(System.Byte[],System.Byte[]) */, __this, L_1, L_2);
V_1 = 0;
goto IL_0043;
}
IL_002b:
{
t1_83* L_3 = p1;
int32_t L_4 = V_1;
int32_t L_5 = V_0;
t1_83* L_6 = (__this->f4);
int32_t L_7 = V_1;
int32_t L_8 = L_7;
t1_83* L_9 = p0;
int32_t L_10 = V_1;
int32_t L_11 = V_0;
int32_t L_12 = ((int32_t)((int32_t)L_10+(int32_t)L_11));
*((uint8_t*)(uint8_t*)SZArrayLdElema(L_3, ((int32_t)((int32_t)L_4+(int32_t)L_5)), sizeof(uint8_t))) = (uint8_t)(((int32_t)((uint8_t)((int32_t)((int32_t)(*(uint8_t*)(uint8_t*)SZArrayLdElema(L_6, L_8, sizeof(uint8_t)))^(int32_t)(*(uint8_t*)(uint8_t*)SZArrayLdElema(L_9, L_12, sizeof(uint8_t))))))));
int32_t L_13 = V_1;
V_1 = ((int32_t)((int32_t)L_13+(int32_t)1));
}
IL_0043:
{
int32_t L_14 = V_1;
int32_t L_15 = (__this->f7);
if ((((int32_t)L_14) < ((int32_t)L_15)))
{
goto IL_002b;
}
}
{
t1_83* L_16 = (__this->f3);
int32_t L_17 = (__this->f7);
t1_83* L_18 = (__this->f3);
int32_t L_19 = (__this->f2);
int32_t L_20 = (__this->f7);
m1_4597(NULL, (t1_33 *)(t1_33 *)L_16, L_17, (t1_33 *)(t1_33 *)L_18, 0, ((int32_t)((int32_t)L_19-(int32_t)L_20)), NULL);
t1_83* L_21 = p1;
int32_t L_22 = V_0;
t1_83* L_23 = (__this->f3);
int32_t L_24 = (__this->f2);
int32_t L_25 = (__this->f7);
int32_t L_26 = (__this->f7);
m1_4597(NULL, (t1_33 *)(t1_33 *)L_21, L_22, (t1_33 *)(t1_33 *)L_23, ((int32_t)((int32_t)L_24-(int32_t)L_25)), L_26, NULL);
int32_t L_27 = V_0;
V_0 = ((int32_t)((int32_t)L_27+(int32_t)1));
}
IL_0098:
{
int32_t L_28 = V_0;
int32_t L_29 = (__this->f8);
if ((((int32_t)L_28) < ((int32_t)L_29)))
{
goto IL_0012;
}
}
{
goto IL_0150;
}
IL_00a9:
{
V_2 = 0;
goto IL_0144;
}
IL_00b0:
{
__this->f1 = 1;
t1_83* L_30 = (__this->f3);
t1_83* L_31 = (__this->f4);
VirtActionInvoker2< t1_83*, t1_83* >::Invoke(11 /* System.Void Mono.Security.Cryptography.SymmetricTransform::ECB(System.Byte[],System.Byte[]) */, __this, L_30, L_31);
__this->f1 = 0;
t1_83* L_32 = (__this->f3);
int32_t L_33 = (__this->f7);
t1_83* L_34 = (__this->f3);
int32_t L_35 = (__this->f2);
int32_t L_36 = (__this->f7);
m1_4597(NULL, (t1_33 *)(t1_33 *)L_32, L_33, (t1_33 *)(t1_33 *)L_34, 0, ((int32_t)((int32_t)L_35-(int32_t)L_36)), NULL);
t1_83* L_37 = p0;
int32_t L_38 = V_2;
t1_83* L_39 = (__this->f3);
int32_t L_40 = (__this->f2);
int32_t L_41 = (__this->f7);
int32_t L_42 = (__this->f7);
m1_4597(NULL, (t1_33 *)(t1_33 *)L_37, L_38, (t1_33 *)(t1_33 *)L_39, ((int32_t)((int32_t)L_40-(int32_t)L_41)), L_42, NULL);
V_3 = 0;
goto IL_0134;
}
IL_011c:
{
t1_83* L_43 = p1;
int32_t L_44 = V_3;
int32_t L_45 = V_2;
t1_83* L_46 = (__this->f4);
int32_t L_47 = V_3;
int32_t L_48 = L_47;
t1_83* L_49 = p0;
int32_t L_50 = V_3;
int32_t L_51 = V_2;
int32_t L_52 = ((int32_t)((int32_t)L_50+(int32_t)L_51));
*((uint8_t*)(uint8_t*)SZArrayLdElema(L_43, ((int32_t)((int32_t)L_44+(int32_t)L_45)), sizeof(uint8_t))) = (uint8_t)(((int32_t)((uint8_t)((int32_t)((int32_t)(*(uint8_t*)(uint8_t*)SZArrayLdElema(L_46, L_48, sizeof(uint8_t)))^(int32_t)(*(uint8_t*)(uint8_t*)SZArrayLdElema(L_49, L_52, sizeof(uint8_t))))))));
int32_t L_53 = V_3;
V_3 = ((int32_t)((int32_t)L_53+(int32_t)1));
}
IL_0134:
{
int32_t L_54 = V_3;
int32_t L_55 = (__this->f7);
if ((((int32_t)L_54) < ((int32_t)L_55)))
{
goto IL_011c;
}
}
{
int32_t L_56 = V_2;
V_2 = ((int32_t)((int32_t)L_56+(int32_t)1));
}
IL_0144:
{
int32_t L_57 = V_2;
int32_t L_58 = (__this->f8);
if ((((int32_t)L_57) < ((int32_t)L_58)))
{
goto IL_00b0;
}
}
IL_0150:
{
return;
}
}
extern TypeInfo* t1_562_TI_var;
extern Il2CppCodeGenString* _stringLiteral348;
extern "C" void m1_1314 (t1_132 * __this, t1_83* p0, t1_83* p1, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_562_TI_var = il2cpp_codegen_type_info_from_index(130);
_stringLiteral348 = il2cpp_codegen_string_literal_from_index(348);
s_Il2CppMethodIntialized = true;
}
{
t1_562 * L_0 = (t1_562 *)il2cpp_codegen_object_new (t1_562_TI_var);
m1_3689(L_0, _stringLiteral348, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_0);
}
}
extern TypeInfo* t1_562_TI_var;
extern Il2CppCodeGenString* _stringLiteral349;
extern "C" void m1_1315 (t1_132 * __this, t1_83* p0, t1_83* p1, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_562_TI_var = il2cpp_codegen_type_info_from_index(130);
_stringLiteral349 = il2cpp_codegen_string_literal_from_index(349);
s_Il2CppMethodIntialized = true;
}
{
t1_562 * L_0 = (t1_562 *)il2cpp_codegen_object_new (t1_562_TI_var);
m1_3689(L_0, _stringLiteral349, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_0);
}
}
extern TypeInfo* t1_701_TI_var;
extern TypeInfo* t1_702_TI_var;
extern TypeInfo* t1_653_TI_var;
extern Il2CppCodeGenString* _stringLiteral350;
extern Il2CppCodeGenString* _stringLiteral351;
extern Il2CppCodeGenString* _stringLiteral44;
extern Il2CppCodeGenString* _stringLiteral352;
extern Il2CppCodeGenString* _stringLiteral353;
extern "C" void m1_1316 (t1_132 * __this, t1_83* p0, int32_t p1, int32_t p2, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_701_TI_var = il2cpp_codegen_type_info_from_index(2);
t1_702_TI_var = il2cpp_codegen_type_info_from_index(27);
t1_653_TI_var = il2cpp_codegen_type_info_from_index(4);
_stringLiteral350 = il2cpp_codegen_string_literal_from_index(350);
_stringLiteral351 = il2cpp_codegen_string_literal_from_index(351);
_stringLiteral44 = il2cpp_codegen_string_literal_from_index(44);
_stringLiteral352 = il2cpp_codegen_string_literal_from_index(352);
_stringLiteral353 = il2cpp_codegen_string_literal_from_index(353);
s_Il2CppMethodIntialized = true;
}
{
t1_83* L_0 = p0;
if (L_0)
{
goto IL_0011;
}
}
{
t1_701 * L_1 = (t1_701 *)il2cpp_codegen_object_new (t1_701_TI_var);
m1_4570(L_1, _stringLiteral350, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_1);
}
IL_0011:
{
int32_t L_2 = p1;
if ((((int32_t)L_2) >= ((int32_t)0)))
{
goto IL_0028;
}
}
{
t1_702 * L_3 = (t1_702 *)il2cpp_codegen_object_new (t1_702_TI_var);
m1_4575(L_3, _stringLiteral351, _stringLiteral44, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_3);
}
IL_0028:
{
int32_t L_4 = p2;
if ((((int32_t)L_4) >= ((int32_t)0)))
{
goto IL_003f;
}
}
{
t1_702 * L_5 = (t1_702 *)il2cpp_codegen_object_new (t1_702_TI_var);
m1_4575(L_5, _stringLiteral352, _stringLiteral44, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_5);
}
IL_003f:
{
int32_t L_6 = p1;
t1_83* L_7 = p0;
int32_t L_8 = p2;
if ((((int32_t)L_6) <= ((int32_t)((int32_t)((int32_t)(((int32_t)((int32_t)(((t1_33 *)L_7)->max_length))))-(int32_t)L_8)))))
{
goto IL_005f;
}
}
{
t1_18* L_9 = m1_990(NULL, _stringLiteral353, NULL);
t1_653 * L_10 = (t1_653 *)il2cpp_codegen_object_new (t1_653_TI_var);
m1_4563(L_10, _stringLiteral350, L_9, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_10);
}
IL_005f:
{
return;
}
}
extern TypeInfo* t1_760_TI_var;
extern TypeInfo* t1_701_TI_var;
extern TypeInfo* t1_702_TI_var;
extern TypeInfo* t1_562_TI_var;
extern Il2CppCodeGenString* _stringLiteral354;
extern Il2CppCodeGenString* _stringLiteral355;
extern Il2CppCodeGenString* _stringLiteral356;
extern Il2CppCodeGenString* _stringLiteral44;
extern Il2CppCodeGenString* _stringLiteral353;
extern "C" int32_t m1_1317 (t1_132 * __this, t1_83* p0, int32_t p1, int32_t p2, t1_83* p3, int32_t p4, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_760_TI_var = il2cpp_codegen_type_info_from_index(137);
t1_701_TI_var = il2cpp_codegen_type_info_from_index(2);
t1_702_TI_var = il2cpp_codegen_type_info_from_index(27);
t1_562_TI_var = il2cpp_codegen_type_info_from_index(130);
_stringLiteral354 = il2cpp_codegen_string_literal_from_index(354);
_stringLiteral355 = il2cpp_codegen_string_literal_from_index(355);
_stringLiteral356 = il2cpp_codegen_string_literal_from_index(356);
_stringLiteral44 = il2cpp_codegen_string_literal_from_index(44);
_stringLiteral353 = il2cpp_codegen_string_literal_from_index(353);
s_Il2CppMethodIntialized = true;
}
int32_t V_0 = 0;
{
bool L_0 = (__this->f9);
if (!L_0)
{
goto IL_0016;
}
}
{
t1_760 * L_1 = (t1_760 *)il2cpp_codegen_object_new (t1_760_TI_var);
m1_5252(L_1, _stringLiteral354, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_1);
}
IL_0016:
{
t1_83* L_2 = p0;
int32_t L_3 = p1;
int32_t L_4 = p2;
m1_1316(__this, L_2, L_3, L_4, NULL);
t1_83* L_5 = p3;
if (L_5)
{
goto IL_0031;
}
}
{
t1_701 * L_6 = (t1_701 *)il2cpp_codegen_object_new (t1_701_TI_var);
m1_4570(L_6, _stringLiteral355, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_6);
}
IL_0031:
{
int32_t L_7 = p4;
if ((((int32_t)L_7) >= ((int32_t)0)))
{
goto IL_0049;
}
}
{
t1_702 * L_8 = (t1_702 *)il2cpp_codegen_object_new (t1_702_TI_var);
m1_4575(L_8, _stringLiteral356, _stringLiteral44, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_8);
}
IL_0049:
{
t1_83* L_9 = p3;
int32_t L_10 = p2;
int32_t L_11 = p4;
V_0 = ((int32_t)((int32_t)((int32_t)((int32_t)(((int32_t)((int32_t)(((t1_33 *)L_9)->max_length))))-(int32_t)L_10))-(int32_t)L_11));
bool L_12 = (__this->f1);
if (L_12)
{
goto IL_009c;
}
}
{
int32_t L_13 = V_0;
if ((((int32_t)0) <= ((int32_t)L_13)))
{
goto IL_009c;
}
}
{
t1_123 * L_14 = (__this->f0);
int32_t L_15 = (int32_t)VirtFuncInvoker0< int32_t >::Invoke(18 /* System.Security.Cryptography.PaddingMode System.Security.Cryptography.SymmetricAlgorithm::get_Padding() */, L_14);
if ((((int32_t)L_15) == ((int32_t)1)))
{
goto IL_0087;
}
}
{
t1_123 * L_16 = (__this->f0);
int32_t L_17 = (int32_t)VirtFuncInvoker0< int32_t >::Invoke(18 /* System.Security.Cryptography.PaddingMode System.Security.Cryptography.SymmetricAlgorithm::get_Padding() */, L_16);
if ((!(((uint32_t)L_17) == ((uint32_t)3))))
{
goto IL_009c;
}
}
IL_0087:
{
t1_18* L_18 = m1_990(NULL, _stringLiteral353, NULL);
t1_562 * L_19 = (t1_562 *)il2cpp_codegen_object_new (t1_562_TI_var);
m1_3691(L_19, _stringLiteral355, L_18, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_19);
}
IL_009c:
{
bool L_20 = m1_1318(__this, NULL);
if (!L_20)
{
goto IL_00cf;
}
}
{
int32_t L_21 = V_0;
int32_t L_22 = (__this->f2);
if ((((int32_t)0) <= ((int32_t)((int32_t)((int32_t)L_21+(int32_t)L_22)))))
{
goto IL_00ca;
}
}
{
t1_18* L_23 = m1_990(NULL, _stringLiteral353, NULL);
t1_562 * L_24 = (t1_562 *)il2cpp_codegen_object_new (t1_562_TI_var);
m1_3691(L_24, _stringLiteral355, L_23, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_24);
}
IL_00ca:
{
goto IL_010e;
}
IL_00cf:
{
int32_t L_25 = V_0;
if ((((int32_t)0) <= ((int32_t)L_25)))
{
goto IL_010e;
}
}
{
t1_83* L_26 = p0;
int32_t L_27 = p1;
t1_83* L_28 = p3;
int32_t L_29 = (__this->f2);
if ((!(((uint32_t)((int32_t)((int32_t)((int32_t)((int32_t)(((int32_t)((int32_t)(((t1_33 *)L_26)->max_length))))-(int32_t)L_27))-(int32_t)(((int32_t)((int32_t)(((t1_33 *)L_28)->max_length))))))) == ((uint32_t)L_29))))
{
goto IL_00f9;
}
}
{
t1_83* L_30 = p3;
int32_t L_31 = p4;
p2 = ((int32_t)((int32_t)(((int32_t)((int32_t)(((t1_33 *)L_30)->max_length))))-(int32_t)L_31));
goto IL_010e;
}
IL_00f9:
{
t1_18* L_32 = m1_990(NULL, _stringLiteral353, NULL);
t1_562 * L_33 = (t1_562 *)il2cpp_codegen_object_new (t1_562_TI_var);
m1_3691(L_33, _stringLiteral355, L_32, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_33);
}
IL_010e:
{
t1_83* L_34 = p0;
int32_t L_35 = p1;
int32_t L_36 = p2;
t1_83* L_37 = p3;
int32_t L_38 = p4;
int32_t L_39 = m1_1319(__this, L_34, L_35, L_36, L_37, L_38, NULL);
return L_39;
}
}
extern "C" bool m1_1318 (t1_132 * __this, const MethodInfo* method)
{
int32_t G_B4_0 = 0;
{
bool L_0 = (__this->f1);
if (L_0)
{
goto IL_002f;
}
}
{
t1_123 * L_1 = (__this->f0);
int32_t L_2 = (int32_t)VirtFuncInvoker0< int32_t >::Invoke(18 /* System.Security.Cryptography.PaddingMode System.Security.Cryptography.SymmetricAlgorithm::get_Padding() */, L_1);
if ((((int32_t)L_2) == ((int32_t)1)))
{
goto IL_002f;
}
}
{
t1_123 * L_3 = (__this->f0);
int32_t L_4 = (int32_t)VirtFuncInvoker0< int32_t >::Invoke(18 /* System.Security.Cryptography.PaddingMode System.Security.Cryptography.SymmetricAlgorithm::get_Padding() */, L_3);
G_B4_0 = ((((int32_t)((((int32_t)L_4) == ((int32_t)3))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_0030;
}
IL_002f:
{
G_B4_0 = 0;
}
IL_0030:
{
return G_B4_0;
}
}
extern TypeInfo* t1_562_TI_var;
extern Il2CppCodeGenString* _stringLiteral357;
extern "C" int32_t m1_1319 (t1_132 * __this, t1_83* p0, int32_t p1, int32_t p2, t1_83* p3, int32_t p4, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_562_TI_var = il2cpp_codegen_type_info_from_index(130);
_stringLiteral357 = il2cpp_codegen_string_literal_from_index(357);
s_Il2CppMethodIntialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
int32_t V_3 = 0;
{
int32_t L_0 = p1;
V_0 = L_0;
int32_t L_1 = p2;
int32_t L_2 = (__this->f2);
if ((((int32_t)L_1) == ((int32_t)L_2)))
{
goto IL_0034;
}
}
{
int32_t L_3 = p2;
int32_t L_4 = (__this->f2);
if (!((int32_t)((int32_t)L_3%(int32_t)L_4)))
{
goto IL_0026;
}
}
{
t1_562 * L_5 = (t1_562 *)il2cpp_codegen_object_new (t1_562_TI_var);
m1_3689(L_5, _stringLiteral357, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_5);
}
IL_0026:
{
int32_t L_6 = p2;
int32_t L_7 = (__this->f2);
V_1 = ((int32_t)((int32_t)L_6/(int32_t)L_7));
goto IL_0036;
}
IL_0034:
{
V_1 = 1;
}
IL_0036:
{
bool L_8 = m1_1318(__this, NULL);
if (!L_8)
{
goto IL_0045;
}
}
{
int32_t L_9 = V_1;
V_1 = ((int32_t)((int32_t)L_9-(int32_t)1));
}
IL_0045:
{
V_2 = 0;
bool L_10 = (__this->f10);
if (!L_10)
{
goto IL_0095;
}
}
{
t1_83* L_11 = (__this->f5);
t1_83* L_12 = (__this->f6);
VirtActionInvoker2< t1_83*, t1_83* >::Invoke(10 /* System.Void Mono.Security.Cryptography.SymmetricTransform::Transform(System.Byte[],System.Byte[]) */, __this, L_11, L_12);
t1_83* L_13 = (__this->f6);
t1_83* L_14 = p3;
int32_t L_15 = p4;
int32_t L_16 = (__this->f2);
m1_4597(NULL, (t1_33 *)(t1_33 *)L_13, 0, (t1_33 *)(t1_33 *)L_14, L_15, L_16, NULL);
int32_t L_17 = p4;
int32_t L_18 = (__this->f2);
p4 = ((int32_t)((int32_t)L_17+(int32_t)L_18));
int32_t L_19 = V_2;
int32_t L_20 = (__this->f2);
V_2 = ((int32_t)((int32_t)L_19+(int32_t)L_20));
__this->f10 = 0;
}
IL_0095:
{
V_3 = 0;
goto IL_00f9;
}
IL_009c:
{
t1_83* L_21 = p0;
int32_t L_22 = V_0;
t1_83* L_23 = (__this->f5);
int32_t L_24 = (__this->f2);
m1_4597(NULL, (t1_33 *)(t1_33 *)L_21, L_22, (t1_33 *)(t1_33 *)L_23, 0, L_24, NULL);
t1_83* L_25 = (__this->f5);
t1_83* L_26 = (__this->f6);
VirtActionInvoker2< t1_83*, t1_83* >::Invoke(10 /* System.Void Mono.Security.Cryptography.SymmetricTransform::Transform(System.Byte[],System.Byte[]) */, __this, L_25, L_26);
t1_83* L_27 = (__this->f6);
t1_83* L_28 = p3;
int32_t L_29 = p4;
int32_t L_30 = (__this->f2);
m1_4597(NULL, (t1_33 *)(t1_33 *)L_27, 0, (t1_33 *)(t1_33 *)L_28, L_29, L_30, NULL);
int32_t L_31 = V_0;
int32_t L_32 = (__this->f2);
V_0 = ((int32_t)((int32_t)L_31+(int32_t)L_32));
int32_t L_33 = p4;
int32_t L_34 = (__this->f2);
p4 = ((int32_t)((int32_t)L_33+(int32_t)L_34));
int32_t L_35 = V_2;
int32_t L_36 = (__this->f2);
V_2 = ((int32_t)((int32_t)L_35+(int32_t)L_36));
int32_t L_37 = V_3;
V_3 = ((int32_t)((int32_t)L_37+(int32_t)1));
}
IL_00f9:
{
int32_t L_38 = V_3;
int32_t L_39 = V_1;
if ((((int32_t)L_38) < ((int32_t)L_39)))
{
goto IL_009c;
}
}
{
bool L_40 = m1_1318(__this, NULL);
if (!L_40)
{
goto IL_0126;
}
}
{
t1_83* L_41 = p0;
int32_t L_42 = V_0;
t1_83* L_43 = (__this->f5);
int32_t L_44 = (__this->f2);
m1_4597(NULL, (t1_33 *)(t1_33 *)L_41, L_42, (t1_33 *)(t1_33 *)L_43, 0, L_44, NULL);
__this->f10 = 1;
}
IL_0126:
{
int32_t L_45 = V_2;
return L_45;
}
}
extern TypeInfo* t1_83_TI_var;
extern "C" void m1_1320 (t1_132 * __this, t1_83* p0, int32_t p1, int32_t p2, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_83_TI_var = il2cpp_codegen_type_info_from_index(42);
s_Il2CppMethodIntialized = true;
}
t1_83* V_0 = {0};
{
t1_111 * L_0 = (__this->f11);
if (L_0)
{
goto IL_0016;
}
}
{
t1_111 * L_1 = m1_3908(NULL, NULL);
__this->f11 = L_1;
}
IL_0016:
{
int32_t L_2 = p2;
V_0 = ((t1_83*)SZArrayNew(t1_83_TI_var, L_2));
t1_111 * L_3 = (__this->f11);
t1_83* L_4 = V_0;
VirtActionInvoker1< t1_83* >::Invoke(4 /* System.Void System.Security.Cryptography.RandomNumberGenerator::GetBytes(System.Byte[]) */, L_3, L_4);
t1_83* L_5 = V_0;
t1_83* L_6 = p0;
int32_t L_7 = p1;
int32_t L_8 = p2;
m1_4597(NULL, (t1_33 *)(t1_33 *)L_5, 0, (t1_33 *)(t1_33 *)L_6, L_7, L_8, NULL);
return;
}
}
extern TypeInfo* t1_587_TI_var;
extern TypeInfo* t1_18_TI_var;
extern TypeInfo* t1_4_TI_var;
extern TypeInfo* t1_562_TI_var;
extern Il2CppCodeGenString* _stringLiteral358;
extern Il2CppCodeGenString* _stringLiteral359;
extern Il2CppCodeGenString* _stringLiteral360;
extern "C" void m1_1321 (t1_132 * __this, int32_t p0, int32_t p1, int32_t p2, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_587_TI_var = il2cpp_codegen_type_info_from_index(152);
t1_18_TI_var = il2cpp_codegen_type_info_from_index(11);
t1_4_TI_var = il2cpp_codegen_type_info_from_index(8);
t1_562_TI_var = il2cpp_codegen_type_info_from_index(130);
_stringLiteral358 = il2cpp_codegen_string_literal_from_index(358);
_stringLiteral359 = il2cpp_codegen_string_literal_from_index(359);
_stringLiteral360 = il2cpp_codegen_string_literal_from_index(360);
s_Il2CppMethodIntialized = true;
}
t1_18* V_0 = {0};
{
t1_18* L_0 = m1_990(NULL, _stringLiteral358, NULL);
int32_t L_1 = p0;
int32_t L_2 = L_1;
t1_1 * L_3 = Box(t1_587_TI_var, &L_2);
IL2CPP_RUNTIME_CLASS_INIT(t1_18_TI_var);
t1_18* L_4 = m1_412(NULL, L_0, L_3, NULL);
V_0 = L_4;
int32_t L_5 = p1;
if ((((int32_t)L_5) < ((int32_t)0)))
{
goto IL_0039;
}
}
{
t1_18* L_6 = V_0;
t1_18* L_7 = m1_990(NULL, _stringLiteral359, NULL);
int32_t L_8 = p1;
int32_t L_9 = L_8;
t1_1 * L_10 = Box(t1_4_TI_var, &L_9);
IL2CPP_RUNTIME_CLASS_INIT(t1_18_TI_var);
t1_18* L_11 = m1_412(NULL, L_7, L_10, NULL);
t1_18* L_12 = m1_420(NULL, L_6, L_11, NULL);
V_0 = L_12;
}
IL_0039:
{
int32_t L_13 = p2;
if ((((int32_t)L_13) < ((int32_t)0)))
{
goto IL_005c;
}
}
{
t1_18* L_14 = V_0;
t1_18* L_15 = m1_990(NULL, _stringLiteral360, NULL);
int32_t L_16 = p2;
int32_t L_17 = L_16;
t1_1 * L_18 = Box(t1_4_TI_var, &L_17);
IL2CPP_RUNTIME_CLASS_INIT(t1_18_TI_var);
t1_18* L_19 = m1_412(NULL, L_15, L_18, NULL);
t1_18* L_20 = m1_420(NULL, L_14, L_19, NULL);
V_0 = L_20;
}
IL_005c:
{
t1_18* L_21 = V_0;
t1_562 * L_22 = (t1_562 *)il2cpp_codegen_object_new (t1_562_TI_var);
m1_3689(L_22, L_21, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_22);
}
}
extern TypeInfo* t1_83_TI_var;
extern TypeInfo* t1_562_TI_var;
extern Il2CppCodeGenString* _stringLiteral361;
extern "C" t1_83* m1_1322 (t1_132 * __this, t1_83* p0, int32_t p1, int32_t p2, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_83_TI_var = il2cpp_codegen_type_info_from_index(42);
t1_562_TI_var = il2cpp_codegen_type_info_from_index(130);
_stringLiteral361 = il2cpp_codegen_string_literal_from_index(361);
s_Il2CppMethodIntialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
t1_83* V_3 = {0};
t1_83* V_4 = {0};
int32_t V_5 = 0;
uint8_t V_6 = 0x0;
int32_t V_7 = 0;
int32_t V_8 = {0};
{
int32_t L_0 = p2;
int32_t L_1 = (__this->f2);
int32_t L_2 = (__this->f2);
V_0 = ((int32_t)((int32_t)((int32_t)((int32_t)L_0/(int32_t)L_1))*(int32_t)L_2));
int32_t L_3 = p2;
int32_t L_4 = V_0;
V_1 = ((int32_t)((int32_t)L_3-(int32_t)L_4));
int32_t L_5 = V_0;
V_2 = L_5;
t1_123 * L_6 = (__this->f0);
int32_t L_7 = (int32_t)VirtFuncInvoker0< int32_t >::Invoke(18 /* System.Security.Cryptography.PaddingMode System.Security.Cryptography.SymmetricAlgorithm::get_Padding() */, L_6);
V_8 = L_7;
int32_t L_8 = V_8;
if (((int32_t)((int32_t)L_8-(int32_t)2)) == 0)
{
goto IL_0041;
}
if (((int32_t)((int32_t)L_8-(int32_t)2)) == 1)
{
goto IL_004f;
}
if (((int32_t)((int32_t)L_8-(int32_t)2)) == 2)
{
goto IL_0041;
}
if (((int32_t)((int32_t)L_8-(int32_t)2)) == 3)
{
goto IL_0041;
}
}
{
goto IL_004f;
}
IL_0041:
{
int32_t L_9 = V_2;
int32_t L_10 = (__this->f2);
V_2 = ((int32_t)((int32_t)L_9+(int32_t)L_10));
goto IL_00a8;
}
IL_004f:
{
int32_t L_11 = p2;
if (L_11)
{
goto IL_005c;
}
}
{
return ((t1_83*)SZArrayNew(t1_83_TI_var, 0));
}
IL_005c:
{
int32_t L_12 = V_1;
if (!L_12)
{
goto IL_00a3;
}
}
{
t1_123 * L_13 = (__this->f0);
int32_t L_14 = (int32_t)VirtFuncInvoker0< int32_t >::Invoke(18 /* System.Security.Cryptography.PaddingMode System.Security.Cryptography.SymmetricAlgorithm::get_Padding() */, L_13);
if ((!(((uint32_t)L_14) == ((uint32_t)1))))
{
goto IL_007e;
}
}
{
t1_562 * L_15 = (t1_562 *)il2cpp_codegen_object_new (t1_562_TI_var);
m1_3689(L_15, _stringLiteral361, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_15);
}
IL_007e:
{
int32_t L_16 = V_0;
int32_t L_17 = (__this->f2);
V_3 = ((t1_83*)SZArrayNew(t1_83_TI_var, ((int32_t)((int32_t)L_16+(int32_t)L_17))));
t1_83* L_18 = p0;
int32_t L_19 = p1;
t1_83* L_20 = V_3;
int32_t L_21 = p2;
m1_4597(NULL, (t1_33 *)(t1_33 *)L_18, L_19, (t1_33 *)(t1_33 *)L_20, 0, L_21, NULL);
t1_83* L_22 = V_3;
p0 = L_22;
p1 = 0;
t1_83* L_23 = V_3;
p2 = (((int32_t)((int32_t)(((t1_33 *)L_23)->max_length))));
int32_t L_24 = p2;
V_2 = L_24;
}
IL_00a3:
{
goto IL_00a8;
}
IL_00a8:
{
int32_t L_25 = V_2;
V_4 = ((t1_83*)SZArrayNew(t1_83_TI_var, L_25));
V_5 = 0;
goto IL_00e9;
}
IL_00b8:
{
t1_83* L_26 = p0;
int32_t L_27 = p1;
int32_t L_28 = (__this->f2);
t1_83* L_29 = V_4;
int32_t L_30 = V_5;
m1_1319(__this, L_26, L_27, L_28, L_29, L_30, NULL);
int32_t L_31 = p1;
int32_t L_32 = (__this->f2);
p1 = ((int32_t)((int32_t)L_31+(int32_t)L_32));
int32_t L_33 = V_5;
int32_t L_34 = (__this->f2);
V_5 = ((int32_t)((int32_t)L_33+(int32_t)L_34));
int32_t L_35 = V_2;
int32_t L_36 = (__this->f2);
V_2 = ((int32_t)((int32_t)L_35-(int32_t)L_36));
}
IL_00e9:
{
int32_t L_37 = V_2;
int32_t L_38 = (__this->f2);
if ((((int32_t)L_37) > ((int32_t)L_38)))
{
goto IL_00b8;
}
}
{
int32_t L_39 = (__this->f2);
int32_t L_40 = V_1;
V_6 = (((int32_t)((uint8_t)((int32_t)((int32_t)L_39-(int32_t)L_40)))));
t1_123 * L_41 = (__this->f0);
int32_t L_42 = (int32_t)VirtFuncInvoker0< int32_t >::Invoke(18 /* System.Security.Cryptography.PaddingMode System.Security.Cryptography.SymmetricAlgorithm::get_Padding() */, L_41);
V_8 = L_42;
int32_t L_43 = V_8;
if (((int32_t)((int32_t)L_43-(int32_t)2)) == 0)
{
goto IL_019a;
}
if (((int32_t)((int32_t)L_43-(int32_t)2)) == 1)
{
goto IL_01e2;
}
if (((int32_t)((int32_t)L_43-(int32_t)2)) == 2)
{
goto IL_012b;
}
if (((int32_t)((int32_t)L_43-(int32_t)2)) == 3)
{
goto IL_0159;
}
}
{
goto IL_01e2;
}
IL_012b:
{
t1_83* L_44 = V_4;
t1_83* L_45 = V_4;
uint8_t L_46 = V_6;
*((uint8_t*)(uint8_t*)SZArrayLdElema(L_44, ((int32_t)((int32_t)(((int32_t)((int32_t)(((t1_33 *)L_45)->max_length))))-(int32_t)1)), sizeof(uint8_t))) = (uint8_t)L_46;
t1_83* L_47 = p0;
int32_t L_48 = p1;
t1_83* L_49 = V_4;
int32_t L_50 = V_0;
int32_t L_51 = V_1;
m1_4597(NULL, (t1_33 *)(t1_33 *)L_47, L_48, (t1_33 *)(t1_33 *)L_49, L_50, L_51, NULL);
t1_83* L_52 = V_4;
int32_t L_53 = V_0;
int32_t L_54 = (__this->f2);
t1_83* L_55 = V_4;
int32_t L_56 = V_0;
m1_1319(__this, L_52, L_53, L_54, L_55, L_56, NULL);
goto IL_01fa;
}
IL_0159:
{
t1_83* L_57 = V_4;
t1_83* L_58 = V_4;
uint8_t L_59 = V_6;
uint8_t L_60 = V_6;
m1_1320(__this, L_57, ((int32_t)((int32_t)(((int32_t)((int32_t)(((t1_33 *)L_58)->max_length))))-(int32_t)L_59)), ((int32_t)((int32_t)L_60-(int32_t)1)), NULL);
t1_83* L_61 = V_4;
t1_83* L_62 = V_4;
uint8_t L_63 = V_6;
*((uint8_t*)(uint8_t*)SZArrayLdElema(L_61, ((int32_t)((int32_t)(((int32_t)((int32_t)(((t1_33 *)L_62)->max_length))))-(int32_t)1)), sizeof(uint8_t))) = (uint8_t)L_63;
t1_83* L_64 = p0;
int32_t L_65 = p1;
t1_83* L_66 = V_4;
int32_t L_67 = V_0;
int32_t L_68 = V_1;
m1_4597(NULL, (t1_33 *)(t1_33 *)L_64, L_65, (t1_33 *)(t1_33 *)L_66, L_67, L_68, NULL);
t1_83* L_69 = V_4;
int32_t L_70 = V_0;
int32_t L_71 = (__this->f2);
t1_83* L_72 = V_4;
int32_t L_73 = V_0;
m1_1319(__this, L_69, L_70, L_71, L_72, L_73, NULL);
goto IL_01fa;
}
IL_019a:
{
t1_83* L_74 = V_4;
V_7 = (((int32_t)((int32_t)(((t1_33 *)L_74)->max_length))));
goto IL_01ac;
}
IL_01a5:
{
t1_83* L_75 = V_4;
int32_t L_76 = V_7;
uint8_t L_77 = V_6;
*((uint8_t*)(uint8_t*)SZArrayLdElema(L_75, L_76, sizeof(uint8_t))) = (uint8_t)L_77;
}
IL_01ac:
{
int32_t L_78 = V_7;
int32_t L_79 = ((int32_t)((int32_t)L_78-(int32_t)1));
V_7 = L_79;
t1_83* L_80 = V_4;
uint8_t L_81 = V_6;
if ((((int32_t)L_79) >= ((int32_t)((int32_t)((int32_t)(((int32_t)((int32_t)(((t1_33 *)L_80)->max_length))))-(int32_t)L_81)))))
{
goto IL_01a5;
}
}
{
t1_83* L_82 = p0;
int32_t L_83 = p1;
t1_83* L_84 = V_4;
int32_t L_85 = V_0;
int32_t L_86 = V_1;
m1_4597(NULL, (t1_33 *)(t1_33 *)L_82, L_83, (t1_33 *)(t1_33 *)L_84, L_85, L_86, NULL);
t1_83* L_87 = V_4;
int32_t L_88 = V_0;
int32_t L_89 = (__this->f2);
t1_83* L_90 = V_4;
int32_t L_91 = V_0;
m1_1319(__this, L_87, L_88, L_89, L_90, L_91, NULL);
goto IL_01fa;
}
IL_01e2:
{
t1_83* L_92 = p0;
int32_t L_93 = p1;
int32_t L_94 = (__this->f2);
t1_83* L_95 = V_4;
int32_t L_96 = V_5;
m1_1319(__this, L_92, L_93, L_94, L_95, L_96, NULL);
goto IL_01fa;
}
IL_01fa:
{
t1_83* L_97 = V_4;
return L_97;
}
}
extern TypeInfo* t1_562_TI_var;
extern TypeInfo* t1_83_TI_var;
extern Il2CppCodeGenString* _stringLiteral357;
extern "C" t1_83* m1_1323 (t1_132 * __this, t1_83* p0, int32_t p1, int32_t p2, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_562_TI_var = il2cpp_codegen_type_info_from_index(130);
t1_83_TI_var = il2cpp_codegen_type_info_from_index(42);
_stringLiteral357 = il2cpp_codegen_string_literal_from_index(357);
s_Il2CppMethodIntialized = true;
}
int32_t V_0 = 0;
t1_83* V_1 = {0};
int32_t V_2 = 0;
int32_t V_3 = 0;
uint8_t V_4 = 0x0;
int32_t V_5 = 0;
int32_t V_6 = 0;
t1_83* V_7 = {0};
int32_t V_8 = {0};
int32_t G_B12_0 = 0;
{
int32_t L_0 = p2;
int32_t L_1 = (__this->f2);
if ((((int32_t)((int32_t)((int32_t)L_0%(int32_t)L_1))) <= ((int32_t)0)))
{
goto IL_0019;
}
}
{
t1_562 * L_2 = (t1_562 *)il2cpp_codegen_object_new (t1_562_TI_var);
m1_3689(L_2, _stringLiteral357, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_2);
}
IL_0019:
{
int32_t L_3 = p2;
V_0 = L_3;
bool L_4 = (__this->f10);
if (!L_4)
{
goto IL_002f;
}
}
{
int32_t L_5 = V_0;
int32_t L_6 = (__this->f2);
V_0 = ((int32_t)((int32_t)L_5+(int32_t)L_6));
}
IL_002f:
{
int32_t L_7 = V_0;
V_1 = ((t1_83*)SZArrayNew(t1_83_TI_var, L_7));
V_2 = 0;
goto IL_0066;
}
IL_003d:
{
t1_83* L_8 = p0;
int32_t L_9 = p1;
int32_t L_10 = (__this->f2);
t1_83* L_11 = V_1;
int32_t L_12 = V_2;
int32_t L_13 = m1_1319(__this, L_8, L_9, L_10, L_11, L_12, NULL);
V_3 = L_13;
int32_t L_14 = p1;
int32_t L_15 = (__this->f2);
p1 = ((int32_t)((int32_t)L_14+(int32_t)L_15));
int32_t L_16 = V_2;
int32_t L_17 = V_3;
V_2 = ((int32_t)((int32_t)L_16+(int32_t)L_17));
int32_t L_18 = p2;
int32_t L_19 = (__this->f2);
p2 = ((int32_t)((int32_t)L_18-(int32_t)L_19));
}
IL_0066:
{
int32_t L_20 = p2;
if ((((int32_t)L_20) > ((int32_t)0)))
{
goto IL_003d;
}
}
{
bool L_21 = (__this->f10);
if (!L_21)
{
goto IL_00ae;
}
}
{
t1_83* L_22 = (__this->f5);
t1_83* L_23 = (__this->f6);
VirtActionInvoker2< t1_83*, t1_83* >::Invoke(10 /* System.Void Mono.Security.Cryptography.SymmetricTransform::Transform(System.Byte[],System.Byte[]) */, __this, L_22, L_23);
t1_83* L_24 = (__this->f6);
t1_83* L_25 = V_1;
int32_t L_26 = V_2;
int32_t L_27 = (__this->f2);
m1_4597(NULL, (t1_33 *)(t1_33 *)L_24, 0, (t1_33 *)(t1_33 *)L_25, L_26, L_27, NULL);
int32_t L_28 = V_2;
int32_t L_29 = (__this->f2);
V_2 = ((int32_t)((int32_t)L_28+(int32_t)L_29));
__this->f10 = 0;
}
IL_00ae:
{
int32_t L_30 = V_0;
if ((((int32_t)L_30) <= ((int32_t)0)))
{
goto IL_00bf;
}
}
{
t1_83* L_31 = V_1;
int32_t L_32 = V_0;
int32_t L_33 = ((int32_t)((int32_t)L_32-(int32_t)1));
G_B12_0 = ((int32_t)((*(uint8_t*)(uint8_t*)SZArrayLdElema(L_31, L_33, sizeof(uint8_t)))));
goto IL_00c0;
}
IL_00bf:
{
G_B12_0 = 0;
}
IL_00c0:
{
V_4 = G_B12_0;
t1_123 * L_34 = (__this->f0);
int32_t L_35 = (int32_t)VirtFuncInvoker0< int32_t >::Invoke(18 /* System.Security.Cryptography.PaddingMode System.Security.Cryptography.SymmetricAlgorithm::get_Padding() */, L_34);
V_8 = L_35;
int32_t L_36 = V_8;
if (((int32_t)((int32_t)L_36-(int32_t)1)) == 0)
{
goto IL_01fd;
}
if (((int32_t)((int32_t)L_36-(int32_t)1)) == 1)
{
goto IL_018f;
}
if (((int32_t)((int32_t)L_36-(int32_t)1)) == 2)
{
goto IL_01fd;
}
if (((int32_t)((int32_t)L_36-(int32_t)1)) == 3)
{
goto IL_00f1;
}
if (((int32_t)((int32_t)L_36-(int32_t)1)) == 4)
{
goto IL_015d;
}
}
{
goto IL_0202;
}
IL_00f1:
{
uint8_t L_37 = V_4;
if (!L_37)
{
goto IL_0105;
}
}
{
uint8_t L_38 = V_4;
int32_t L_39 = (__this->f2);
if ((((int32_t)L_38) <= ((int32_t)L_39)))
{
goto IL_0119;
}
}
IL_0105:
{
t1_123 * L_40 = (__this->f0);
int32_t L_41 = (int32_t)VirtFuncInvoker0< int32_t >::Invoke(18 /* System.Security.Cryptography.PaddingMode System.Security.Cryptography.SymmetricAlgorithm::get_Padding() */, L_40);
uint8_t L_42 = V_4;
m1_1321(__this, L_41, L_42, (-1), NULL);
}
IL_0119:
{
uint8_t L_43 = V_4;
V_5 = ((int32_t)((int32_t)L_43-(int32_t)1));
goto IL_014b;
}
IL_0124:
{
t1_83* L_44 = V_1;
int32_t L_45 = V_0;
int32_t L_46 = V_5;
int32_t L_47 = ((int32_t)((int32_t)((int32_t)((int32_t)L_45-(int32_t)1))-(int32_t)L_46));
if (!(*(uint8_t*)(uint8_t*)SZArrayLdElema(L_44, L_47, sizeof(uint8_t))))
{
goto IL_0145;
}
}
{
t1_123 * L_48 = (__this->f0);
int32_t L_49 = (int32_t)VirtFuncInvoker0< int32_t >::Invoke(18 /* System.Security.Cryptography.PaddingMode System.Security.Cryptography.SymmetricAlgorithm::get_Padding() */, L_48);
int32_t L_50 = V_5;
m1_1321(__this, L_49, (-1), L_50, NULL);
}
IL_0145:
{
int32_t L_51 = V_5;
V_5 = ((int32_t)((int32_t)L_51-(int32_t)1));
}
IL_014b:
{
int32_t L_52 = V_5;
if ((((int32_t)L_52) > ((int32_t)0)))
{
goto IL_0124;
}
}
{
int32_t L_53 = V_0;
uint8_t L_54 = V_4;
V_0 = ((int32_t)((int32_t)L_53-(int32_t)L_54));
goto IL_0202;
}
IL_015d:
{
uint8_t L_55 = V_4;
if (!L_55)
{
goto IL_0171;
}
}
{
uint8_t L_56 = V_4;
int32_t L_57 = (__this->f2);
if ((((int32_t)L_56) <= ((int32_t)L_57)))
{
goto IL_0185;
}
}
IL_0171:
{
t1_123 * L_58 = (__this->f0);
int32_t L_59 = (int32_t)VirtFuncInvoker0< int32_t >::Invoke(18 /* System.Security.Cryptography.PaddingMode System.Security.Cryptography.SymmetricAlgorithm::get_Padding() */, L_58);
uint8_t L_60 = V_4;
m1_1321(__this, L_59, L_60, (-1), NULL);
}
IL_0185:
{
int32_t L_61 = V_0;
uint8_t L_62 = V_4;
V_0 = ((int32_t)((int32_t)L_61-(int32_t)L_62));
goto IL_0202;
}
IL_018f:
{
uint8_t L_63 = V_4;
if (!L_63)
{
goto IL_01a3;
}
}
{
uint8_t L_64 = V_4;
int32_t L_65 = (__this->f2);
if ((((int32_t)L_64) <= ((int32_t)L_65)))
{
goto IL_01b7;
}
}
IL_01a3:
{
t1_123 * L_66 = (__this->f0);
int32_t L_67 = (int32_t)VirtFuncInvoker0< int32_t >::Invoke(18 /* System.Security.Cryptography.PaddingMode System.Security.Cryptography.SymmetricAlgorithm::get_Padding() */, L_66);
uint8_t L_68 = V_4;
m1_1321(__this, L_67, L_68, (-1), NULL);
}
IL_01b7:
{
uint8_t L_69 = V_4;
V_6 = ((int32_t)((int32_t)L_69-(int32_t)1));
goto IL_01eb;
}
IL_01c2:
{
t1_83* L_70 = V_1;
int32_t L_71 = V_0;
int32_t L_72 = V_6;
int32_t L_73 = ((int32_t)((int32_t)((int32_t)((int32_t)L_71-(int32_t)1))-(int32_t)L_72));
uint8_t L_74 = V_4;
if ((((int32_t)(*(uint8_t*)(uint8_t*)SZArrayLdElema(L_70, L_73, sizeof(uint8_t)))) == ((int32_t)L_74)))
{
goto IL_01e5;
}
}
{
t1_123 * L_75 = (__this->f0);
int32_t L_76 = (int32_t)VirtFuncInvoker0< int32_t >::Invoke(18 /* System.Security.Cryptography.PaddingMode System.Security.Cryptography.SymmetricAlgorithm::get_Padding() */, L_75);
int32_t L_77 = V_6;
m1_1321(__this, L_76, (-1), L_77, NULL);
}
IL_01e5:
{
int32_t L_78 = V_6;
V_6 = ((int32_t)((int32_t)L_78-(int32_t)1));
}
IL_01eb:
{
int32_t L_79 = V_6;
if ((((int32_t)L_79) > ((int32_t)0)))
{
goto IL_01c2;
}
}
{
int32_t L_80 = V_0;
uint8_t L_81 = V_4;
V_0 = ((int32_t)((int32_t)L_80-(int32_t)L_81));
goto IL_0202;
}
IL_01fd:
{
goto IL_0202;
}
IL_0202:
{
int32_t L_82 = V_0;
if ((((int32_t)L_82) <= ((int32_t)0)))
{
goto IL_0229;
}
}
{
int32_t L_83 = V_0;
V_7 = ((t1_83*)SZArrayNew(t1_83_TI_var, L_83));
t1_83* L_84 = V_1;
t1_83* L_85 = V_7;
int32_t L_86 = V_0;
m1_4597(NULL, (t1_33 *)(t1_33 *)L_84, 0, (t1_33 *)(t1_33 *)L_85, 0, L_86, NULL);
t1_83* L_87 = V_1;
t1_83* L_88 = V_1;
m1_821(NULL, (t1_33 *)(t1_33 *)L_87, 0, (((int32_t)((int32_t)(((t1_33 *)L_88)->max_length)))), NULL);
t1_83* L_89 = V_7;
return L_89;
}
IL_0229:
{
return ((t1_83*)SZArrayNew(t1_83_TI_var, 0));
}
}
extern TypeInfo* t1_760_TI_var;
extern Il2CppCodeGenString* _stringLiteral354;
extern "C" t1_83* m1_1324 (t1_132 * __this, t1_83* p0, int32_t p1, int32_t p2, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_760_TI_var = il2cpp_codegen_type_info_from_index(137);
_stringLiteral354 = il2cpp_codegen_string_literal_from_index(354);
s_Il2CppMethodIntialized = true;
}
{
bool L_0 = (__this->f9);
if (!L_0)
{
goto IL_0016;
}
}
{
t1_760 * L_1 = (t1_760 *)il2cpp_codegen_object_new (t1_760_TI_var);
m1_5252(L_1, _stringLiteral354, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_1);
}
IL_0016:
{
t1_83* L_2 = p0;
int32_t L_3 = p1;
int32_t L_4 = p2;
m1_1316(__this, L_2, L_3, L_4, NULL);
bool L_5 = (__this->f1);
if (!L_5)
{
goto IL_0034;
}
}
{
t1_83* L_6 = p0;
int32_t L_7 = p1;
int32_t L_8 = p2;
t1_83* L_9 = m1_1322(__this, L_6, L_7, L_8, NULL);
return L_9;
}
IL_0034:
{
t1_83* L_10 = p0;
int32_t L_11 = p1;
int32_t L_12 = p2;
t1_83* L_13 = m1_1323(__this, L_10, L_11, L_12, NULL);
return L_13;
}
}
extern "C" void m1_1325 (t1_133 * __this, t1_18* p0, t1_134 * p1, const MethodInfo* method)
{
{
m1_0(__this, NULL);
t1_18* L_0 = p0;
__this->f0 = L_0;
t1_134 * L_1 = p1;
__this->f1 = L_1;
return;
}
}
extern "C" t1_18* m1_1326 (t1_133 * __this, const MethodInfo* method)
{
{
t1_18* L_0 = (__this->f0);
return L_0;
}
}
extern "C" t1_134 * m1_1327 (t1_133 * __this, const MethodInfo* method)
{
{
t1_134 * L_0 = (__this->f1);
return L_0;
}
}
extern "C" void m1_1328 (t1_135 * __this, const MethodInfo* method)
{
{
m1_0(__this, NULL);
return;
}
}
extern TypeInfo* t1_83_TI_var;
extern TypeInfo* t1_135_TI_var;
extern FieldInfo* t1_808_f12_FieldInfo_var;
extern FieldInfo* t1_808_f13_FieldInfo_var;
extern FieldInfo* t1_808_f14_FieldInfo_var;
extern "C" void m1_1329 (t1_1 * __this , const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_83_TI_var = il2cpp_codegen_type_info_from_index(42);
t1_135_TI_var = il2cpp_codegen_type_info_from_index(153);
t1_808_f12_FieldInfo_var = il2cpp_codegen_field_info_from_index(29, 12);
t1_808_f13_FieldInfo_var = il2cpp_codegen_field_info_from_index(29, 13);
t1_808_f14_FieldInfo_var = il2cpp_codegen_field_info_from_index(29, 14);
s_Il2CppMethodIntialized = true;
}
{
t1_83* L_0 = ((t1_83*)SZArrayNew(t1_83_TI_var, ((int32_t)64)));
m1_988(NULL, (t1_33 *)(t1_33 *)L_0, LoadFieldToken(t1_808_f12_FieldInfo_var), NULL);
((t1_135_SFs*)t1_135_TI_var->static_fields)->f0 = L_0;
t1_83* L_1 = ((t1_83*)SZArrayNew(t1_83_TI_var, ((int32_t)64)));
m1_988(NULL, (t1_33 *)(t1_33 *)L_1, LoadFieldToken(t1_808_f13_FieldInfo_var), NULL);
((t1_135_SFs*)t1_135_TI_var->static_fields)->f1 = L_1;
t1_83* L_2 = ((t1_83*)SZArrayNew(t1_83_TI_var, ((int32_t)64)));
m1_988(NULL, (t1_33 *)(t1_33 *)L_2, LoadFieldToken(t1_808_f14_FieldInfo_var), NULL);
((t1_135_SFs*)t1_135_TI_var->static_fields)->f2 = L_2;
return;
}
}
extern "C" void m1_1330 (t1_135 * __this, t1_18* p0, const MethodInfo* method)
{
{
t1_18* L_0 = p0;
__this->f3 = L_0;
return;
}
}
extern "C" void m1_1331 (t1_135 * __this, int32_t p0, const MethodInfo* method)
{
{
int32_t L_0 = p0;
__this->f4 = L_0;
return;
}
}
extern TypeInfo* t1_83_TI_var;
extern "C" void m1_1332 (t1_135 * __this, t1_83* p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_83_TI_var = il2cpp_codegen_type_info_from_index(42);
s_Il2CppMethodIntialized = true;
}
{
t1_83* L_0 = p0;
if (L_0)
{
goto IL_0017;
}
}
{
__this->f5 = ((t1_83*)SZArrayNew(t1_83_TI_var, 0));
goto IL_0028;
}
IL_0017:
{
t1_83* L_1 = p0;
t1_1 * L_2 = (t1_1 *)VirtFuncInvoker0< t1_1 * >::Invoke(5 /* System.Object System.Array::Clone() */, L_1);
__this->f5 = ((t1_83*)Castclass(L_2, t1_83_TI_var));
}
IL_0028:
{
return;
}
}
extern TypeInfo* t1_83_TI_var;
extern "C" void m1_1333 (t1_135 * __this, t1_83* p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_83_TI_var = il2cpp_codegen_type_info_from_index(42);
s_Il2CppMethodIntialized = true;
}
{
t1_83* L_0 = p0;
if (!L_0)
{
goto IL_001c;
}
}
{
t1_83* L_1 = p0;
t1_1 * L_2 = (t1_1 *)VirtFuncInvoker0< t1_1 * >::Invoke(5 /* System.Object System.Array::Clone() */, L_1);
__this->f6 = ((t1_83*)Castclass(L_2, t1_83_TI_var));
goto IL_0023;
}
IL_001c:
{
__this->f6 = (t1_83*)NULL;
}
IL_0023:
{
return;
}
}
extern "C" void m1_1334 (t1_135 * __this, t1_83* p0, int32_t p1, t1_83* p2, const MethodInfo* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
{
t1_83* L_0 = p2;
t1_83* L_1 = p2;
int32_t L_2 = ((int32_t)((int32_t)(((int32_t)((int32_t)(((t1_33 *)L_1)->max_length))))-(int32_t)1));
t1_83* L_3 = p0;
int32_t L_4 = p1;
t1_83* L_5 = p2;
int32_t L_6 = ((int32_t)((int32_t)((int32_t)((int32_t)L_4+(int32_t)(((int32_t)((int32_t)(((t1_33 *)L_5)->max_length))))))-(int32_t)1));
V_0 = ((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)(*(uint8_t*)(uint8_t*)SZArrayLdElema(L_0, L_2, sizeof(uint8_t)))&(int32_t)((int32_t)255)))+(int32_t)((int32_t)((int32_t)(*(uint8_t*)(uint8_t*)SZArrayLdElema(L_3, L_6, sizeof(uint8_t)))&(int32_t)((int32_t)255)))))+(int32_t)1));
t1_83* L_7 = p0;
int32_t L_8 = p1;
t1_83* L_9 = p2;
int32_t L_10 = V_0;
*((uint8_t*)(uint8_t*)SZArrayLdElema(L_7, ((int32_t)((int32_t)((int32_t)((int32_t)L_8+(int32_t)(((int32_t)((int32_t)(((t1_33 *)L_9)->max_length))))))-(int32_t)1)), sizeof(uint8_t))) = (uint8_t)(((int32_t)((uint8_t)L_10)));
int32_t L_11 = V_0;
V_0 = ((int32_t)((int32_t)L_11>>(int32_t)8));
t1_83* L_12 = p2;
V_1 = ((int32_t)((int32_t)(((int32_t)((int32_t)(((t1_33 *)L_12)->max_length))))-(int32_t)2));
goto IL_0061;
}
IL_003a:
{
int32_t L_13 = V_0;
t1_83* L_14 = p2;
int32_t L_15 = V_1;
int32_t L_16 = L_15;
t1_83* L_17 = p0;
int32_t L_18 = p1;
int32_t L_19 = V_1;
int32_t L_20 = ((int32_t)((int32_t)L_18+(int32_t)L_19));
V_0 = ((int32_t)((int32_t)L_13+(int32_t)((int32_t)((int32_t)((int32_t)((int32_t)(*(uint8_t*)(uint8_t*)SZArrayLdElema(L_14, L_16, sizeof(uint8_t)))&(int32_t)((int32_t)255)))+(int32_t)((int32_t)((int32_t)(*(uint8_t*)(uint8_t*)SZArrayLdElema(L_17, L_20, sizeof(uint8_t)))&(int32_t)((int32_t)255)))))));
t1_83* L_21 = p0;
int32_t L_22 = p1;
int32_t L_23 = V_1;
int32_t L_24 = V_0;
*((uint8_t*)(uint8_t*)SZArrayLdElema(L_21, ((int32_t)((int32_t)L_22+(int32_t)L_23)), sizeof(uint8_t))) = (uint8_t)(((int32_t)((uint8_t)L_24)));
int32_t L_25 = V_0;
V_0 = ((int32_t)((int32_t)L_25>>(int32_t)8));
int32_t L_26 = V_1;
V_1 = ((int32_t)((int32_t)L_26-(int32_t)1));
}
IL_0061:
{
int32_t L_27 = V_1;
if ((((int32_t)L_27) >= ((int32_t)0)))
{
goto IL_003a;
}
}
{
return;
}
}
extern TypeInfo* t1_83_TI_var;
extern "C" t1_83* m1_1335 (t1_135 * __this, t1_83* p0, int32_t p1, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_83_TI_var = il2cpp_codegen_type_info_from_index(42);
s_Il2CppMethodIntialized = true;
}
t1_575 * V_0 = {0};
int32_t V_1 = 0;
int32_t V_2 = 0;
t1_83* V_3 = {0};
t1_83* V_4 = {0};
int32_t V_5 = 0;
t1_83* V_6 = {0};
int32_t V_7 = 0;
t1_83* V_8 = {0};
t1_83* V_9 = {0};
int32_t V_10 = 0;
int32_t V_11 = 0;
t1_83* V_12 = {0};
int32_t V_13 = 0;
int32_t V_14 = 0;
int32_t V_15 = 0;
{
t1_18* L_0 = (__this->f3);
t1_575 * L_1 = m1_3787(NULL, L_0, NULL);
V_0 = L_1;
t1_575 * L_2 = V_0;
int32_t L_3 = (int32_t)VirtFuncInvoker0< int32_t >::Invoke(12 /* System.Int32 System.Security.Cryptography.HashAlgorithm::get_HashSize() */, L_2);
V_1 = ((int32_t)((int32_t)L_3>>(int32_t)3));
V_2 = ((int32_t)64);
int32_t L_4 = p1;
V_3 = ((t1_83*)SZArrayNew(t1_83_TI_var, L_4));
t1_83* L_5 = (__this->f6);
if (!L_5)
{
goto IL_0083;
}
}
{
t1_83* L_6 = (__this->f6);
if (!(((int32_t)((int32_t)(((t1_33 *)L_6)->max_length)))))
{
goto IL_0083;
}
}
{
int32_t L_7 = V_2;
t1_83* L_8 = (__this->f6);
int32_t L_9 = V_2;
int32_t L_10 = V_2;
V_4 = ((t1_83*)SZArrayNew(t1_83_TI_var, ((int32_t)((int32_t)L_7*(int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)(((int32_t)((int32_t)(((t1_33 *)L_8)->max_length))))+(int32_t)L_9))-(int32_t)1))/(int32_t)L_10))))));
V_5 = 0;
goto IL_0073;
}
IL_0056:
{
t1_83* L_11 = V_4;
int32_t L_12 = V_5;
t1_83* L_13 = (__this->f6);
int32_t L_14 = V_5;
t1_83* L_15 = (__this->f6);
int32_t L_16 = ((int32_t)((int32_t)L_14%(int32_t)(((int32_t)((int32_t)(((t1_33 *)L_15)->max_length))))));
*((uint8_t*)(uint8_t*)SZArrayLdElema(L_11, L_12, sizeof(uint8_t))) = (uint8_t)(*(uint8_t*)(uint8_t*)SZArrayLdElema(L_13, L_16, sizeof(uint8_t)));
int32_t L_17 = V_5;
V_5 = ((int32_t)((int32_t)L_17+(int32_t)1));
}
IL_0073:
{
int32_t L_18 = V_5;
t1_83* L_19 = V_4;
if ((!(((uint32_t)L_18) == ((uint32_t)(((int32_t)((int32_t)(((t1_33 *)L_19)->max_length))))))))
{
goto IL_0056;
}
}
{
goto IL_008b;
}
IL_0083:
{
V_4 = ((t1_83*)SZArrayNew(t1_83_TI_var, 0));
}
IL_008b:
{
t1_83* L_20 = (__this->f5);
if (!L_20)
{
goto IL_00ef;
}
}
{
t1_83* L_21 = (__this->f5);
if (!(((int32_t)((int32_t)(((t1_33 *)L_21)->max_length)))))
{
goto IL_00ef;
}
}
{
int32_t L_22 = V_2;
t1_83* L_23 = (__this->f5);
int32_t L_24 = V_2;
int32_t L_25 = V_2;
V_6 = ((t1_83*)SZArrayNew(t1_83_TI_var, ((int32_t)((int32_t)L_22*(int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)(((int32_t)((int32_t)(((t1_33 *)L_23)->max_length))))+(int32_t)L_24))-(int32_t)1))/(int32_t)L_25))))));
V_7 = 0;
goto IL_00df;
}
IL_00c2:
{
t1_83* L_26 = V_6;
int32_t L_27 = V_7;
t1_83* L_28 = (__this->f5);
int32_t L_29 = V_7;
t1_83* L_30 = (__this->f5);
int32_t L_31 = ((int32_t)((int32_t)L_29%(int32_t)(((int32_t)((int32_t)(((t1_33 *)L_30)->max_length))))));
*((uint8_t*)(uint8_t*)SZArrayLdElema(L_26, L_27, sizeof(uint8_t))) = (uint8_t)(*(uint8_t*)(uint8_t*)SZArrayLdElema(L_28, L_31, sizeof(uint8_t)));
int32_t L_32 = V_7;
V_7 = ((int32_t)((int32_t)L_32+(int32_t)1));
}
IL_00df:
{
int32_t L_33 = V_7;
t1_83* L_34 = V_6;
if ((!(((uint32_t)L_33) == ((uint32_t)(((int32_t)((int32_t)(((t1_33 *)L_34)->max_length))))))))
{
goto IL_00c2;
}
}
{
goto IL_00f7;
}
IL_00ef:
{
V_6 = ((t1_83*)SZArrayNew(t1_83_TI_var, 0));
}
IL_00f7:
{
t1_83* L_35 = V_4;
t1_83* L_36 = V_6;
V_8 = ((t1_83*)SZArrayNew(t1_83_TI_var, ((int32_t)((int32_t)(((int32_t)((int32_t)(((t1_33 *)L_35)->max_length))))+(int32_t)(((int32_t)((int32_t)(((t1_33 *)L_36)->max_length))))))));
t1_83* L_37 = V_4;
t1_83* L_38 = V_8;
t1_83* L_39 = V_4;
m1_4597(NULL, (t1_33 *)(t1_33 *)L_37, 0, (t1_33 *)(t1_33 *)L_38, 0, (((int32_t)((int32_t)(((t1_33 *)L_39)->max_length)))), NULL);
t1_83* L_40 = V_6;
t1_83* L_41 = V_8;
t1_83* L_42 = V_4;
t1_83* L_43 = V_6;
m1_4597(NULL, (t1_33 *)(t1_33 *)L_40, 0, (t1_33 *)(t1_33 *)L_41, (((int32_t)((int32_t)(((t1_33 *)L_42)->max_length)))), (((int32_t)((int32_t)(((t1_33 *)L_43)->max_length)))), NULL);
int32_t L_44 = V_2;
V_9 = ((t1_83*)SZArrayNew(t1_83_TI_var, L_44));
int32_t L_45 = p1;
int32_t L_46 = V_1;
int32_t L_47 = V_1;
V_10 = ((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_45+(int32_t)L_46))-(int32_t)1))/(int32_t)L_47));
V_11 = 1;
goto IL_0226;
}
IL_0141:
{
t1_575 * L_48 = V_0;
t1_83* L_49 = p0;
t1_83* L_50 = p0;
t1_83* L_51 = p0;
VirtFuncInvoker5< int32_t, t1_83*, int32_t, int32_t, t1_83*, int32_t >::Invoke(6 /* System.Int32 System.Security.Cryptography.HashAlgorithm::TransformBlock(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32) */, L_48, L_49, 0, (((int32_t)((int32_t)(((t1_33 *)L_50)->max_length)))), L_51, 0);
t1_575 * L_52 = V_0;
t1_83* L_53 = V_8;
t1_83* L_54 = V_8;
VirtFuncInvoker3< t1_83*, t1_83*, int32_t, int32_t >::Invoke(7 /* System.Byte[] System.Security.Cryptography.HashAlgorithm::TransformFinalBlock(System.Byte[],System.Int32,System.Int32) */, L_52, L_53, 0, (((int32_t)((int32_t)(((t1_33 *)L_54)->max_length)))));
t1_575 * L_55 = V_0;
t1_83* L_56 = (t1_83*)VirtFuncInvoker0< t1_83* >::Invoke(9 /* System.Byte[] System.Security.Cryptography.HashAlgorithm::get_Hash() */, L_55);
V_12 = L_56;
t1_575 * L_57 = V_0;
VirtActionInvoker0::Invoke(13 /* System.Void System.Security.Cryptography.HashAlgorithm::Initialize() */, L_57);
V_13 = 1;
goto IL_0188;
}
IL_0173:
{
t1_575 * L_58 = V_0;
t1_83* L_59 = V_12;
t1_83* L_60 = V_12;
t1_83* L_61 = m1_3786(L_58, L_59, 0, (((int32_t)((int32_t)(((t1_33 *)L_60)->max_length)))), NULL);
V_12 = L_61;
int32_t L_62 = V_13;
V_13 = ((int32_t)((int32_t)L_62+(int32_t)1));
}
IL_0188:
{
int32_t L_63 = V_13;
int32_t L_64 = (__this->f4);
if ((!(((uint32_t)L_63) == ((uint32_t)L_64))))
{
goto IL_0173;
}
}
{
V_14 = 0;
goto IL_01b2;
}
IL_019d:
{
t1_83* L_65 = V_9;
int32_t L_66 = V_14;
t1_83* L_67 = V_12;
int32_t L_68 = V_14;
t1_83* L_69 = V_12;
int32_t L_70 = ((int32_t)((int32_t)L_68%(int32_t)(((int32_t)((int32_t)(((t1_33 *)L_69)->max_length))))));
*((uint8_t*)(uint8_t*)SZArrayLdElema(L_65, L_66, sizeof(uint8_t))) = (uint8_t)(*(uint8_t*)(uint8_t*)SZArrayLdElema(L_67, L_70, sizeof(uint8_t)));
int32_t L_71 = V_14;
V_14 = ((int32_t)((int32_t)L_71+(int32_t)1));
}
IL_01b2:
{
int32_t L_72 = V_14;
t1_83* L_73 = V_9;
if ((!(((uint32_t)L_72) == ((uint32_t)(((int32_t)((int32_t)(((t1_33 *)L_73)->max_length))))))))
{
goto IL_019d;
}
}
{
V_15 = 0;
goto IL_01d9;
}
IL_01c5:
{
t1_83* L_74 = V_8;
int32_t L_75 = V_15;
int32_t L_76 = V_2;
t1_83* L_77 = V_9;
m1_1334(__this, L_74, ((int32_t)((int32_t)L_75*(int32_t)L_76)), L_77, NULL);
int32_t L_78 = V_15;
V_15 = ((int32_t)((int32_t)L_78+(int32_t)1));
}
IL_01d9:
{
int32_t L_79 = V_15;
t1_83* L_80 = V_8;
int32_t L_81 = V_2;
if ((!(((uint32_t)L_79) == ((uint32_t)((int32_t)((int32_t)(((int32_t)((int32_t)(((t1_33 *)L_80)->max_length))))/(int32_t)L_81))))))
{
goto IL_01c5;
}
}
{
int32_t L_82 = V_11;
int32_t L_83 = V_10;
if ((!(((uint32_t)L_82) == ((uint32_t)L_83))))
{
goto IL_020d;
}
}
{
t1_83* L_84 = V_12;
t1_83* L_85 = V_3;
int32_t L_86 = V_11;
int32_t L_87 = V_1;
t1_83* L_88 = V_3;
int32_t L_89 = V_11;
int32_t L_90 = V_1;
m1_4597(NULL, (t1_33 *)(t1_33 *)L_84, 0, (t1_33 *)(t1_33 *)L_85, ((int32_t)((int32_t)((int32_t)((int32_t)L_86-(int32_t)1))*(int32_t)L_87)), ((int32_t)((int32_t)(((int32_t)((int32_t)(((t1_33 *)L_88)->max_length))))-(int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_89-(int32_t)1))*(int32_t)L_90)))), NULL);
goto IL_0220;
}
IL_020d:
{
t1_83* L_91 = V_12;
t1_83* L_92 = V_3;
int32_t L_93 = V_11;
int32_t L_94 = V_1;
t1_83* L_95 = V_12;
m1_4597(NULL, (t1_33 *)(t1_33 *)L_91, 0, (t1_33 *)(t1_33 *)L_92, ((int32_t)((int32_t)((int32_t)((int32_t)L_93-(int32_t)1))*(int32_t)L_94)), (((int32_t)((int32_t)(((t1_33 *)L_95)->max_length)))), NULL);
}
IL_0220:
{
int32_t L_96 = V_11;
V_11 = ((int32_t)((int32_t)L_96+(int32_t)1));
}
IL_0226:
{
int32_t L_97 = V_11;
int32_t L_98 = V_10;
if ((((int32_t)L_97) <= ((int32_t)L_98)))
{
goto IL_0141;
}
}
{
t1_83* L_99 = V_3;
return L_99;
}
}
extern TypeInfo* t1_135_TI_var;
extern "C" t1_83* m1_1336 (t1_135 * __this, int32_t p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_135_TI_var = il2cpp_codegen_type_info_from_index(153);
s_Il2CppMethodIntialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(t1_135_TI_var);
t1_83* L_0 = ((t1_135_SFs*)t1_135_TI_var->static_fields)->f0;
int32_t L_1 = p0;
t1_83* L_2 = m1_1335(__this, L_0, L_1, NULL);
return L_2;
}
}
extern TypeInfo* t1_135_TI_var;
extern "C" t1_83* m1_1337 (t1_135 * __this, int32_t p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_135_TI_var = il2cpp_codegen_type_info_from_index(153);
s_Il2CppMethodIntialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(t1_135_TI_var);
t1_83* L_0 = ((t1_135_SFs*)t1_135_TI_var->static_fields)->f1;
int32_t L_1 = p0;
t1_83* L_2 = m1_1335(__this, L_0, L_1, NULL);
return L_2;
}
}
extern TypeInfo* t1_135_TI_var;
extern "C" t1_83* m1_1338 (t1_135 * __this, int32_t p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_135_TI_var = il2cpp_codegen_type_info_from_index(153);
s_Il2CppMethodIntialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(t1_135_TI_var);
t1_83* L_0 = ((t1_135_SFs*)t1_135_TI_var->static_fields)->f2;
int32_t L_1 = p0;
t1_83* L_2 = m1_1335(__this, L_0, L_1, NULL);
return L_2;
}
}
extern TypeInfo* t1_136_TI_var;
extern TypeInfo* t1_126_TI_var;
extern TypeInfo* t1_137_TI_var;
extern "C" void m1_1339 (t1_136 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_136_TI_var = il2cpp_codegen_type_info_from_index(154);
t1_126_TI_var = il2cpp_codegen_type_info_from_index(55);
t1_137_TI_var = il2cpp_codegen_type_info_from_index(155);
s_Il2CppMethodIntialized = true;
}
{
m1_0(__this, NULL);
IL2CPP_RUNTIME_CLASS_INIT(t1_136_TI_var);
int32_t L_0 = ((t1_136_SFs*)t1_136_TI_var->static_fields)->f0;
__this->f8 = L_0;
t1_126 * L_1 = (t1_126 *)il2cpp_codegen_object_new (t1_126_TI_var);
m1_1590(L_1, NULL);
__this->f2 = L_1;
t1_126 * L_2 = (t1_126 *)il2cpp_codegen_object_new (t1_126_TI_var);
m1_1590(L_2, NULL);
__this->f3 = L_2;
t1_137 * L_3 = (t1_137 *)il2cpp_codegen_object_new (t1_137_TI_var);
m1_1395(L_3, NULL);
__this->f4 = L_3;
__this->f5 = 0;
__this->f6 = 0;
__this->f7 = 0;
t1_126 * L_4 = (t1_126 *)il2cpp_codegen_object_new (t1_126_TI_var);
m1_1590(L_4, NULL);
__this->f9 = L_4;
return;
}
}
extern "C" void m1_1340 (t1_136 * __this, t1_83* p0, const MethodInfo* method)
{
{
m1_1339(__this, NULL);
m1_1345(__this, (t1_18*)NULL, NULL);
t1_83* L_0 = p0;
m1_1343(__this, L_0, NULL);
return;
}
}
extern "C" void m1_1341 (t1_136 * __this, t1_83* p0, t1_18* p1, const MethodInfo* method)
{
{
m1_1339(__this, NULL);
t1_18* L_0 = p1;
m1_1345(__this, L_0, NULL);
t1_83* L_1 = p0;
m1_1343(__this, L_1, NULL);
return;
}
}
extern TypeInfo* t1_136_TI_var;
extern "C" void m1_1342 (t1_1 * __this , const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_136_TI_var = il2cpp_codegen_type_info_from_index(154);
s_Il2CppMethodIntialized = true;
}
{
((t1_136_SFs*)t1_136_TI_var->static_fields)->f0 = ((int32_t)2000);
((t1_136_SFs*)t1_136_TI_var->static_fields)->f11 = ((int32_t)2147483647);
return;
}
}
extern TypeInfo* t1_134_TI_var;
extern TypeInfo* t1_653_TI_var;
extern TypeInfo* t1_148_TI_var;
extern TypeInfo* t1_18_TI_var;
extern TypeInfo* t1_562_TI_var;
extern TypeInfo* t1_136_TI_var;
extern TypeInfo* t1_89_TI_var;
extern TypeInfo* t1_149_TI_var;
extern TypeInfo* t1_755_TI_var;
extern const MethodInfo* m1_5457_MI_var;
extern Il2CppCodeGenString* _stringLiteral362;
extern Il2CppCodeGenString* _stringLiteral363;
extern Il2CppCodeGenString* _stringLiteral364;
extern Il2CppCodeGenString* _stringLiteral365;
extern Il2CppCodeGenString* _stringLiteral366;
extern Il2CppCodeGenString* _stringLiteral367;
extern Il2CppCodeGenString* _stringLiteral368;
extern Il2CppCodeGenString* _stringLiteral369;
extern Il2CppCodeGenString* _stringLiteral370;
extern Il2CppCodeGenString* _stringLiteral371;
extern Il2CppCodeGenString* _stringLiteral372;
extern Il2CppCodeGenString* _stringLiteral373;
extern Il2CppCodeGenString* _stringLiteral374;
extern Il2CppCodeGenString* _stringLiteral375;
extern "C" void m1_1343 (t1_136 * __this, t1_83* p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_134_TI_var = il2cpp_codegen_type_info_from_index(148);
t1_653_TI_var = il2cpp_codegen_type_info_from_index(4);
t1_148_TI_var = il2cpp_codegen_type_info_from_index(156);
t1_18_TI_var = il2cpp_codegen_type_info_from_index(11);
t1_562_TI_var = il2cpp_codegen_type_info_from_index(130);
t1_136_TI_var = il2cpp_codegen_type_info_from_index(154);
t1_89_TI_var = il2cpp_codegen_type_info_from_index(115);
t1_149_TI_var = il2cpp_codegen_type_info_from_index(157);
t1_755_TI_var = il2cpp_codegen_type_info_from_index(112);
m1_5457_MI_var = il2cpp_codegen_method_info_from_index(2147483658);
_stringLiteral362 = il2cpp_codegen_string_literal_from_index(362);
_stringLiteral363 = il2cpp_codegen_string_literal_from_index(363);
_stringLiteral364 = il2cpp_codegen_string_literal_from_index(364);
_stringLiteral365 = il2cpp_codegen_string_literal_from_index(365);
_stringLiteral366 = il2cpp_codegen_string_literal_from_index(366);
_stringLiteral367 = il2cpp_codegen_string_literal_from_index(367);
_stringLiteral368 = il2cpp_codegen_string_literal_from_index(368);
_stringLiteral369 = il2cpp_codegen_string_literal_from_index(369);
_stringLiteral370 = il2cpp_codegen_string_literal_from_index(370);
_stringLiteral371 = il2cpp_codegen_string_literal_from_index(371);
_stringLiteral372 = il2cpp_codegen_string_literal_from_index(372);
_stringLiteral373 = il2cpp_codegen_string_literal_from_index(373);
_stringLiteral374 = il2cpp_codegen_string_literal_from_index(374);
_stringLiteral375 = il2cpp_codegen_string_literal_from_index(375);
s_Il2CppMethodIntialized = true;
}
t1_134 * V_0 = {0};
t1_134 * V_1 = {0};
t1_148 * V_2 = {0};
t1_134 * V_3 = {0};
t1_134 * V_4 = {0};
t1_134 * V_5 = {0};
t1_18* V_6 = {0};
t1_83* V_7 = {0};
t1_134 * V_8 = {0};
t1_134 * V_9 = {0};
t1_83* V_10 = {0};
t1_83* V_11 = {0};
t1_134 * V_12 = {0};
int32_t V_13 = 0;
t1_148 * V_14 = {0};
t1_134 * V_15 = {0};
int32_t V_16 = 0;
t1_134 * V_17 = {0};
t1_149 * V_18 = {0};
t1_134 * V_19 = {0};
int32_t V_20 = 0;
t1_134 * V_21 = {0};
t1_18* V_22 = {0};
t1_89 * V_23 = {0};
int32_t V_24 = 0;
{
t1_83* L_0 = p0;
t1_134 * L_1 = (t1_134 *)il2cpp_codegen_object_new (t1_134_TI_var);
m1_1412(L_1, L_0, NULL);
V_0 = L_1;
t1_134 * L_2 = V_0;
uint8_t L_3 = m1_1414(L_2, NULL);
if ((((int32_t)L_3) == ((int32_t)((int32_t)48))))
{
goto IL_001f;
}
}
{
t1_653 * L_4 = (t1_653 *)il2cpp_codegen_object_new (t1_653_TI_var);
m1_4561(L_4, _stringLiteral362, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_4);
}
IL_001f:
{
t1_134 * L_5 = V_0;
t1_134 * L_6 = m1_1424(L_5, 0, NULL);
V_1 = L_6;
t1_134 * L_7 = V_1;
uint8_t L_8 = m1_1414(L_7, NULL);
if ((((int32_t)L_8) == ((int32_t)2)))
{
goto IL_003e;
}
}
{
t1_653 * L_9 = (t1_653 *)il2cpp_codegen_object_new (t1_653_TI_var);
m1_4561(L_9, _stringLiteral363, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_9);
}
IL_003e:
{
t1_134 * L_10 = V_0;
t1_134 * L_11 = m1_1424(L_10, 1, NULL);
t1_148 * L_12 = (t1_148 *)il2cpp_codegen_object_new (t1_148_TI_var);
m1_1444(L_12, L_11, NULL);
V_2 = L_12;
t1_148 * L_13 = V_2;
t1_18* L_14 = m1_1448(L_13, NULL);
IL2CPP_RUNTIME_CLASS_INIT(t1_18_TI_var);
bool L_15 = m1_457(NULL, L_14, _stringLiteral364, NULL);
if (!L_15)
{
goto IL_006b;
}
}
{
t1_653 * L_16 = (t1_653 *)il2cpp_codegen_object_new (t1_653_TI_var);
m1_4561(L_16, _stringLiteral365, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_16);
}
IL_006b:
{
t1_134 * L_17 = V_0;
int32_t L_18 = m1_1413(L_17, NULL);
if ((((int32_t)L_18) <= ((int32_t)2)))
{
goto IL_01a9;
}
}
{
t1_134 * L_19 = V_0;
t1_134 * L_20 = m1_1424(L_19, 2, NULL);
V_3 = L_20;
t1_134 * L_21 = V_3;
uint8_t L_22 = m1_1414(L_21, NULL);
if ((((int32_t)L_22) == ((int32_t)((int32_t)48))))
{
goto IL_0097;
}
}
{
t1_653 * L_23 = (t1_653 *)il2cpp_codegen_object_new (t1_653_TI_var);
m1_4561(L_23, _stringLiteral366, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_23);
}
IL_0097:
{
t1_134 * L_24 = V_3;
t1_134 * L_25 = m1_1424(L_24, 0, NULL);
V_4 = L_25;
t1_134 * L_26 = V_4;
uint8_t L_27 = m1_1414(L_26, NULL);
if ((((int32_t)L_27) == ((int32_t)((int32_t)48))))
{
goto IL_00b9;
}
}
{
t1_653 * L_28 = (t1_653 *)il2cpp_codegen_object_new (t1_653_TI_var);
m1_4561(L_28, _stringLiteral366, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_28);
}
IL_00b9:
{
t1_134 * L_29 = V_4;
t1_134 * L_30 = m1_1424(L_29, 0, NULL);
V_5 = L_30;
t1_134 * L_31 = V_5;
t1_134 * L_32 = m1_1424(L_31, 0, NULL);
t1_18* L_33 = m1_1430(NULL, L_32, NULL);
V_6 = L_33;
t1_18* L_34 = V_6;
IL2CPP_RUNTIME_CLASS_INIT(t1_18_TI_var);
bool L_35 = m1_457(NULL, L_34, _stringLiteral367, NULL);
if (!L_35)
{
goto IL_00ee;
}
}
{
t1_653 * L_36 = (t1_653 *)il2cpp_codegen_object_new (t1_653_TI_var);
m1_4561(L_36, _stringLiteral368, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_36);
}
IL_00ee:
{
t1_134 * L_37 = V_4;
t1_134 * L_38 = m1_1424(L_37, 1, NULL);
t1_83* L_39 = m1_1416(L_38, NULL);
V_7 = L_39;
t1_134 * L_40 = V_3;
t1_134 * L_41 = m1_1424(L_40, 1, NULL);
V_8 = L_41;
t1_134 * L_42 = V_8;
uint8_t L_43 = m1_1414(L_42, NULL);
if ((((int32_t)L_43) == ((int32_t)4)))
{
goto IL_011e;
}
}
{
t1_653 * L_44 = (t1_653 *)il2cpp_codegen_object_new (t1_653_TI_var);
m1_4561(L_44, _stringLiteral369, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_44);
}
IL_011e:
{
__this->f8 = 1;
t1_134 * L_45 = V_3;
int32_t L_46 = m1_1413(L_45, NULL);
if ((((int32_t)L_46) <= ((int32_t)2)))
{
goto IL_015f;
}
}
{
t1_134 * L_47 = V_3;
t1_134 * L_48 = m1_1424(L_47, 2, NULL);
V_9 = L_48;
t1_134 * L_49 = V_9;
uint8_t L_50 = m1_1414(L_49, NULL);
if ((((int32_t)L_50) == ((int32_t)2)))
{
goto IL_0152;
}
}
{
t1_653 * L_51 = (t1_653 *)il2cpp_codegen_object_new (t1_653_TI_var);
m1_4561(L_51, _stringLiteral370, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_51);
}
IL_0152:
{
t1_134 * L_52 = V_9;
int32_t L_53 = m1_1429(NULL, L_52, NULL);
__this->f8 = L_53;
}
IL_015f:
{
t1_148 * L_54 = V_2;
t1_134 * L_55 = m1_1446(L_54, NULL);
t1_134 * L_56 = m1_1424(L_55, 0, NULL);
t1_83* L_57 = m1_1416(L_56, NULL);
V_10 = L_57;
t1_83* L_58 = (__this->f1);
t1_134 * L_59 = V_8;
t1_83* L_60 = m1_1416(L_59, NULL);
int32_t L_61 = (__this->f8);
t1_83* L_62 = V_10;
t1_83* L_63 = m1_1359(__this, L_58, L_60, L_61, L_62, NULL);
V_11 = L_63;
t1_83* L_64 = V_7;
t1_83* L_65 = V_11;
bool L_66 = m1_1350(__this, L_64, L_65, NULL);
if (L_66)
{
goto IL_01a9;
}
}
{
t1_562 * L_67 = (t1_562 *)il2cpp_codegen_object_new (t1_562_TI_var);
m1_3689(L_67, _stringLiteral371, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_67);
}
IL_01a9:
{
t1_148 * L_68 = V_2;
t1_134 * L_69 = m1_1446(L_68, NULL);
t1_134 * L_70 = m1_1424(L_69, 0, NULL);
t1_83* L_71 = m1_1416(L_70, NULL);
t1_134 * L_72 = (t1_134 *)il2cpp_codegen_object_new (t1_134_TI_var);
m1_1412(L_72, L_71, NULL);
V_12 = L_72;
V_13 = 0;
goto IL_0314;
}
IL_01c9:
{
t1_134 * L_73 = V_12;
int32_t L_74 = V_13;
t1_134 * L_75 = m1_1424(L_73, L_74, NULL);
t1_148 * L_76 = (t1_148 *)il2cpp_codegen_object_new (t1_148_TI_var);
m1_1444(L_76, L_75, NULL);
V_14 = L_76;
t1_148 * L_77 = V_14;
t1_18* L_78 = m1_1448(L_77, NULL);
V_22 = L_78;
t1_18* L_79 = V_22;
if (!L_79)
{
goto IL_0303;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(t1_136_TI_var);
t1_89 * L_80 = ((t1_136_SFs*)t1_136_TI_var->static_fields)->f12;
if (L_80)
{
goto IL_0229;
}
}
{
t1_89 * L_81 = (t1_89 *)il2cpp_codegen_object_new (t1_89_TI_var);
m1_5457(L_81, 3, m1_5457_MI_var);
V_23 = L_81;
t1_89 * L_82 = V_23;
VirtActionInvoker2< t1_18*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(TKey,TValue) */, L_82, _stringLiteral364, 0);
t1_89 * L_83 = V_23;
VirtActionInvoker2< t1_18*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(TKey,TValue) */, L_83, _stringLiteral372, 1);
t1_89 * L_84 = V_23;
VirtActionInvoker2< t1_18*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(TKey,TValue) */, L_84, _stringLiteral373, 2);
t1_89 * L_85 = V_23;
IL2CPP_RUNTIME_CLASS_INIT(t1_136_TI_var);
((t1_136_SFs*)t1_136_TI_var->static_fields)->f12 = L_85;
}
IL_0229:
{
IL2CPP_RUNTIME_CLASS_INIT(t1_136_TI_var);
t1_89 * L_86 = ((t1_136_SFs*)t1_136_TI_var->static_fields)->f12;
t1_18* L_87 = V_22;
bool L_88 = (bool)VirtFuncInvoker2< bool, t1_18*, int32_t* >::Invoke(32 /* System.Boolean System.Collections.Generic.Dictionary`2<System.String,System.Int32>::TryGetValue(TKey,TValue&) */, L_86, L_87, (&V_24));
if (!L_88)
{
goto IL_0303;
}
}
{
int32_t L_89 = V_24;
if (L_89 == 0)
{
goto IL_0254;
}
if (L_89 == 1)
{
goto IL_02a1;
}
if (L_89 == 2)
{
goto IL_02f8;
}
}
{
goto IL_0303;
}
IL_0254:
{
t1_148 * L_90 = V_14;
t1_134 * L_91 = m1_1446(L_90, NULL);
t1_134 * L_92 = m1_1424(L_91, 0, NULL);
t1_83* L_93 = m1_1416(L_92, NULL);
t1_134 * L_94 = (t1_134 *)il2cpp_codegen_object_new (t1_134_TI_var);
m1_1412(L_94, L_93, NULL);
V_15 = L_94;
V_16 = 0;
goto IL_028e;
}
IL_0275:
{
t1_134 * L_95 = V_15;
int32_t L_96 = V_16;
t1_134 * L_97 = m1_1424(L_95, L_96, NULL);
V_17 = L_97;
t1_134 * L_98 = V_17;
m1_1357(__this, L_98, NULL);
int32_t L_99 = V_16;
V_16 = ((int32_t)((int32_t)L_99+(int32_t)1));
}
IL_028e:
{
int32_t L_100 = V_16;
t1_134 * L_101 = V_15;
int32_t L_102 = m1_1413(L_101, NULL);
if ((((int32_t)L_100) < ((int32_t)L_102)))
{
goto IL_0275;
}
}
{
goto IL_030e;
}
IL_02a1:
{
t1_148 * L_103 = V_14;
t1_134 * L_104 = m1_1446(L_103, NULL);
t1_134 * L_105 = m1_1424(L_104, 0, NULL);
t1_149 * L_106 = (t1_149 *)il2cpp_codegen_object_new (t1_149_TI_var);
m1_1452(L_106, L_105, NULL);
V_18 = L_106;
t1_149 * L_107 = V_18;
t1_83* L_108 = m1_1353(__this, L_107, NULL);
t1_134 * L_109 = (t1_134 *)il2cpp_codegen_object_new (t1_134_TI_var);
m1_1412(L_109, L_108, NULL);
V_19 = L_109;
V_20 = 0;
goto IL_02e5;
}
IL_02cc:
{
t1_134 * L_110 = V_19;
int32_t L_111 = V_20;
t1_134 * L_112 = m1_1424(L_110, L_111, NULL);
V_21 = L_112;
t1_134 * L_113 = V_21;
m1_1357(__this, L_113, NULL);
int32_t L_114 = V_20;
V_20 = ((int32_t)((int32_t)L_114+(int32_t)1));
}
IL_02e5:
{
int32_t L_115 = V_20;
t1_134 * L_116 = V_19;
int32_t L_117 = m1_1413(L_116, NULL);
if ((((int32_t)L_115) < ((int32_t)L_117)))
{
goto IL_02cc;
}
}
{
goto IL_030e;
}
IL_02f8:
{
t1_755 * L_118 = (t1_755 *)il2cpp_codegen_object_new (t1_755_TI_var);
m1_5146(L_118, _stringLiteral374, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_118);
}
IL_0303:
{
t1_653 * L_119 = (t1_653 *)il2cpp_codegen_object_new (t1_653_TI_var);
m1_4561(L_119, _stringLiteral375, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_119);
}
IL_030e:
{
int32_t L_120 = V_13;
V_13 = ((int32_t)((int32_t)L_120+(int32_t)1));
}
IL_0314:
{
int32_t L_121 = V_13;
t1_134 * L_122 = V_12;
int32_t L_123 = m1_1413(L_122, NULL);
if ((((int32_t)L_121) < ((int32_t)L_123)))
{
goto IL_01c9;
}
}
{
return;
}
}
extern "C" void m1_1344 (t1_136 * __this, const MethodInfo* method)
{
t1_43 * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
t1_43 * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
IL_0000:
try
{ // begin try (depth: 1)
{
t1_83* L_0 = (__this->f1);
if (!L_0)
{
goto IL_001f;
}
}
IL_000b:
{
t1_83* L_1 = (__this->f1);
t1_83* L_2 = (__this->f1);
m1_821(NULL, (t1_33 *)(t1_33 *)L_1, 0, (((int32_t)((int32_t)(((t1_33 *)L_2)->max_length)))), NULL);
}
IL_001f:
{
__this->f1 = (t1_83*)NULL;
IL2CPP_LEAVE(0x32, FINALLY_002b);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (t1_43 *)e.ex;
goto FINALLY_002b;
}
FINALLY_002b:
{ // begin finally (depth: 1)
m1_3(__this, NULL);
IL2CPP_END_FINALLY(43)
} // end finally (depth: 1)
IL2CPP_CLEANUP(43)
{
IL2CPP_JUMP_TBL(0x32, IL_0032)
IL2CPP_RETHROW_IF_UNHANDLED(t1_43 *)
}
IL_0032:
{
return;
}
}
extern TypeInfo* t1_136_TI_var;
extern TypeInfo* t1_83_TI_var;
extern TypeInfo* t1_231_TI_var;
extern "C" void m1_1345 (t1_136 * __this, t1_18* p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_136_TI_var = il2cpp_codegen_type_info_from_index(154);
t1_83_TI_var = il2cpp_codegen_type_info_from_index(42);
t1_231_TI_var = il2cpp_codegen_type_info_from_index(41);
s_Il2CppMethodIntialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
{
t1_18* L_0 = p0;
if (!L_0)
{
goto IL_007c;
}
}
{
t1_18* L_1 = p0;
int32_t L_2 = m1_430(L_1, NULL);
if ((((int32_t)L_2) <= ((int32_t)0)))
{
goto IL_006b;
}
}
{
t1_18* L_3 = p0;
int32_t L_4 = m1_430(L_3, NULL);
V_0 = L_4;
V_1 = 0;
int32_t L_5 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(t1_136_TI_var);
int32_t L_6 = m1_1367(NULL, NULL);
if ((((int32_t)L_5) >= ((int32_t)L_6)))
{
goto IL_003b;
}
}
{
t1_18* L_7 = p0;
int32_t L_8 = V_0;
uint16_t L_9 = m1_344(L_7, ((int32_t)((int32_t)L_8-(int32_t)1)), NULL);
if (!L_9)
{
goto IL_0036;
}
}
{
V_1 = 1;
}
IL_0036:
{
goto IL_0041;
}
IL_003b:
{
IL2CPP_RUNTIME_CLASS_INIT(t1_136_TI_var);
int32_t L_10 = m1_1367(NULL, NULL);
V_0 = L_10;
}
IL_0041:
{
int32_t L_11 = V_0;
int32_t L_12 = V_1;
__this->f1 = ((t1_83*)SZArrayNew(t1_83_TI_var, ((int32_t)((int32_t)((int32_t)((int32_t)L_11+(int32_t)L_12))<<(int32_t)1))));
IL2CPP_RUNTIME_CLASS_INIT(t1_231_TI_var);
t1_231 * L_13 = m1_4263(NULL, NULL);
t1_18* L_14 = p0;
int32_t L_15 = V_0;
t1_83* L_16 = (__this->f1);
VirtFuncInvoker5< int32_t, t1_18*, int32_t, int32_t, t1_83*, int32_t >::Invoke(9 /* System.Int32 System.Text.Encoding::GetBytes(System.String,System.Int32,System.Int32,System.Byte[],System.Int32) */, L_13, L_14, 0, L_15, L_16, 0);
goto IL_0077;
}
IL_006b:
{
__this->f1 = ((t1_83*)SZArrayNew(t1_83_TI_var, 2));
}
IL_0077:
{
goto IL_0083;
}
IL_007c:
{
__this->f1 = (t1_83*)NULL;
}
IL_0083:
{
return;
}
}
extern "C" int32_t m1_1346 (t1_136 * __this, const MethodInfo* method)
{
{
int32_t L_0 = (__this->f8);
return L_0;
}
}
extern "C" void m1_1347 (t1_136 * __this, int32_t p0, const MethodInfo* method)
{
{
int32_t L_0 = p0;
__this->f8 = L_0;
return;
}
}
extern TypeInfo* t1_143_TI_var;
extern TypeInfo* t1_133_TI_var;
extern TypeInfo* t1_148_TI_var;
extern TypeInfo* t1_139_TI_var;
extern TypeInfo* t1_841_TI_var;
extern Il2CppCodeGenString* _stringLiteral376;
extern "C" t1_137 * m1_1348 (t1_136 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_143_TI_var = il2cpp_codegen_type_info_from_index(158);
t1_133_TI_var = il2cpp_codegen_type_info_from_index(159);
t1_148_TI_var = il2cpp_codegen_type_info_from_index(156);
t1_139_TI_var = il2cpp_codegen_type_info_from_index(160);
t1_841_TI_var = il2cpp_codegen_type_info_from_index(141);
_stringLiteral376 = il2cpp_codegen_string_literal_from_index(376);
s_Il2CppMethodIntialized = true;
}
t1_133 * V_0 = {0};
t1_1 * V_1 = {0};
t1_134 * V_2 = {0};
t1_134 * V_3 = {0};
t1_148 * V_4 = {0};
t1_1 * V_5 = {0};
t1_43 * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
t1_43 * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
bool L_0 = (__this->f7);
if (!L_0)
{
goto IL_00b3;
}
}
{
t1_137 * L_1 = (__this->f4);
VirtActionInvoker0::Invoke(14 /* System.Void System.Collections.CollectionBase::Clear() */, L_1);
t1_126 * L_2 = (__this->f9);
t1_1 * L_3 = (t1_1 *)VirtFuncInvoker0< t1_1 * >::Invoke(43 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_2);
V_1 = L_3;
}
IL_0022:
try
{ // begin try (depth: 1)
{
goto IL_0087;
}
IL_0027:
{
t1_1 * L_4 = V_1;
t1_1 * L_5 = (t1_1 *)InterfaceFuncInvoker0< t1_1 * >::Invoke(0 /* System.Object System.Collections.IEnumerator::get_Current() */, t1_143_TI_var, L_4);
V_0 = ((t1_133 *)CastclassClass(L_5, t1_133_TI_var));
t1_133 * L_6 = V_0;
t1_18* L_7 = m1_1326(L_6, NULL);
bool L_8 = m1_343(L_7, _stringLiteral376, NULL);
if (!L_8)
{
goto IL_0087;
}
}
IL_0048:
{
t1_133 * L_9 = V_0;
t1_134 * L_10 = m1_1327(L_9, NULL);
V_2 = L_10;
t1_134 * L_11 = V_2;
t1_134 * L_12 = m1_1424(L_11, 1, NULL);
V_3 = L_12;
t1_134 * L_13 = V_3;
t1_83* L_14 = m1_1416(L_13, NULL);
t1_148 * L_15 = (t1_148 *)il2cpp_codegen_object_new (t1_148_TI_var);
m1_1443(L_15, L_14, NULL);
V_4 = L_15;
t1_137 * L_16 = (__this->f4);
t1_148 * L_17 = V_4;
t1_134 * L_18 = m1_1446(L_17, NULL);
t1_134 * L_19 = m1_1424(L_18, 0, NULL);
t1_83* L_20 = m1_1416(L_19, NULL);
t1_139 * L_21 = (t1_139 *)il2cpp_codegen_object_new (t1_139_TI_var);
m1_1372(L_21, L_20, NULL);
m1_1398(L_16, L_21, NULL);
}
IL_0087:
{
t1_1 * L_22 = V_1;
bool L_23 = (bool)InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, t1_143_TI_var, L_22);
if (L_23)
{
goto IL_0027;
}
}
IL_0092:
{
IL2CPP_LEAVE(0xAC, FINALLY_0097);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (t1_43 *)e.ex;
goto FINALLY_0097;
}
FINALLY_0097:
{ // begin finally (depth: 1)
{
t1_1 * L_24 = V_1;
V_5 = ((t1_1 *)IsInst(L_24, t1_841_TI_var));
t1_1 * L_25 = V_5;
if (L_25)
{
goto IL_00a4;
}
}
IL_00a3:
{
IL2CPP_END_FINALLY(151)
}
IL_00a4:
{
t1_1 * L_26 = V_5;
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, t1_841_TI_var, L_26);
IL2CPP_END_FINALLY(151)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(151)
{
IL2CPP_JUMP_TBL(0xAC, IL_00ac)
IL2CPP_RETHROW_IF_UNHANDLED(t1_43 *)
}
IL_00ac:
{
__this->f7 = 0;
}
IL_00b3:
{
t1_137 * L_27 = (__this->f4);
return L_27;
}
}
extern "C" t1_111 * m1_1349 (t1_136 * __this, const MethodInfo* method)
{
{
t1_111 * L_0 = (__this->f10);
if (L_0)
{
goto IL_0016;
}
}
{
t1_111 * L_1 = m1_3908(NULL, NULL);
__this->f10 = L_1;
}
IL_0016:
{
t1_111 * L_2 = (__this->f10);
return L_2;
}
}
extern "C" bool m1_1350 (t1_136 * __this, t1_83* p0, t1_83* p1, const MethodInfo* method)
{
bool V_0 = false;
int32_t V_1 = 0;
{
V_0 = 0;
t1_83* L_0 = p0;
t1_83* L_1 = p1;
if ((!(((uint32_t)(((int32_t)((int32_t)(((t1_33 *)L_0)->max_length))))) == ((uint32_t)(((int32_t)((int32_t)(((t1_33 *)L_1)->max_length))))))))
{
goto IL_0030;
}
}
{
V_1 = 0;
goto IL_0025;
}
IL_0014:
{
t1_83* L_2 = p0;
int32_t L_3 = V_1;
int32_t L_4 = L_3;
t1_83* L_5 = p1;
int32_t L_6 = V_1;
int32_t L_7 = L_6;
if ((((int32_t)(*(uint8_t*)(uint8_t*)SZArrayLdElema(L_2, L_4, sizeof(uint8_t)))) == ((int32_t)(*(uint8_t*)(uint8_t*)SZArrayLdElema(L_5, L_7, sizeof(uint8_t))))))
{
goto IL_0021;
}
}
{
return 0;
}
IL_0021:
{
int32_t L_8 = V_1;
V_1 = ((int32_t)((int32_t)L_8+(int32_t)1));
}
IL_0025:
{
int32_t L_9 = V_1;
t1_83* L_10 = p0;
if ((((int32_t)L_9) < ((int32_t)(((int32_t)((int32_t)(((t1_33 *)L_10)->max_length)))))))
{
goto IL_0014;
}
}
{
V_0 = 1;
}
IL_0030:
{
bool L_11 = V_0;
return L_11;
}
}
extern TypeInfo* t1_135_TI_var;
extern TypeInfo* t1_136_TI_var;
extern TypeInfo* t1_89_TI_var;
extern TypeInfo* t1_18_TI_var;
extern TypeInfo* t1_756_TI_var;
extern const MethodInfo* m1_5457_MI_var;
extern Il2CppCodeGenString* _stringLiteral377;
extern Il2CppCodeGenString* _stringLiteral378;
extern Il2CppCodeGenString* _stringLiteral379;
extern Il2CppCodeGenString* _stringLiteral380;
extern Il2CppCodeGenString* _stringLiteral381;
extern Il2CppCodeGenString* _stringLiteral382;
extern Il2CppCodeGenString* _stringLiteral383;
extern Il2CppCodeGenString* _stringLiteral384;
extern Il2CppCodeGenString* _stringLiteral385;
extern Il2CppCodeGenString* _stringLiteral386;
extern Il2CppCodeGenString* _stringLiteral387;
extern Il2CppCodeGenString* _stringLiteral388;
extern Il2CppCodeGenString* _stringLiteral389;
extern Il2CppCodeGenString* _stringLiteral390;
extern Il2CppCodeGenString* _stringLiteral391;
extern Il2CppCodeGenString* _stringLiteral392;
extern Il2CppCodeGenString* _stringLiteral393;
extern Il2CppCodeGenString* _stringLiteral394;
extern Il2CppCodeGenString* _stringLiteral395;
extern Il2CppCodeGenString* _stringLiteral396;
extern "C" t1_123 * m1_1351 (t1_136 * __this, t1_18* p0, t1_83* p1, int32_t p2, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_135_TI_var = il2cpp_codegen_type_info_from_index(153);
t1_136_TI_var = il2cpp_codegen_type_info_from_index(154);
t1_89_TI_var = il2cpp_codegen_type_info_from_index(115);
t1_18_TI_var = il2cpp_codegen_type_info_from_index(11);
t1_756_TI_var = il2cpp_codegen_type_info_from_index(6);
m1_5457_MI_var = il2cpp_codegen_method_info_from_index(2147483658);
_stringLiteral377 = il2cpp_codegen_string_literal_from_index(377);
_stringLiteral378 = il2cpp_codegen_string_literal_from_index(378);
_stringLiteral379 = il2cpp_codegen_string_literal_from_index(379);
_stringLiteral380 = il2cpp_codegen_string_literal_from_index(380);
_stringLiteral381 = il2cpp_codegen_string_literal_from_index(381);
_stringLiteral382 = il2cpp_codegen_string_literal_from_index(382);
_stringLiteral383 = il2cpp_codegen_string_literal_from_index(383);
_stringLiteral384 = il2cpp_codegen_string_literal_from_index(384);
_stringLiteral385 = il2cpp_codegen_string_literal_from_index(385);
_stringLiteral386 = il2cpp_codegen_string_literal_from_index(386);
_stringLiteral387 = il2cpp_codegen_string_literal_from_index(387);
_stringLiteral388 = il2cpp_codegen_string_literal_from_index(388);
_stringLiteral389 = il2cpp_codegen_string_literal_from_index(389);
_stringLiteral390 = il2cpp_codegen_string_literal_from_index(390);
_stringLiteral391 = il2cpp_codegen_string_literal_from_index(391);
_stringLiteral392 = il2cpp_codegen_string_literal_from_index(392);
_stringLiteral393 = il2cpp_codegen_string_literal_from_index(393);
_stringLiteral394 = il2cpp_codegen_string_literal_from_index(394);
_stringLiteral395 = il2cpp_codegen_string_literal_from_index(395);
_stringLiteral396 = il2cpp_codegen_string_literal_from_index(396);
s_Il2CppMethodIntialized = true;
}
t1_18* V_0 = {0};
int32_t V_1 = 0;
int32_t V_2 = 0;
t1_135 * V_3 = {0};
t1_123 * V_4 = {0};
t1_18* V_5 = {0};
t1_89 * V_6 = {0};
int32_t V_7 = 0;
{
V_0 = (t1_18*)NULL;
V_1 = 8;
V_2 = 8;
t1_135 * L_0 = (t1_135 *)il2cpp_codegen_object_new (t1_135_TI_var);
m1_1328(L_0, NULL);
V_3 = L_0;
t1_135 * L_1 = V_3;
t1_83* L_2 = (__this->f1);
m1_1332(L_1, L_2, NULL);
t1_135 * L_3 = V_3;
t1_83* L_4 = p1;
m1_1333(L_3, L_4, NULL);
t1_135 * L_5 = V_3;
int32_t L_6 = p2;
m1_1331(L_5, L_6, NULL);
t1_18* L_7 = p0;
V_5 = L_7;
t1_18* L_8 = V_5;
if (!L_8)
{
goto IL_025a;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(t1_136_TI_var);
t1_89 * L_9 = ((t1_136_SFs*)t1_136_TI_var->static_fields)->f13;
if (L_9)
{
goto IL_00e9;
}
}
{
t1_89 * L_10 = (t1_89 *)il2cpp_codegen_object_new (t1_89_TI_var);
m1_5457(L_10, ((int32_t)12), m1_5457_MI_var);
V_6 = L_10;
t1_89 * L_11 = V_6;
VirtActionInvoker2< t1_18*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(TKey,TValue) */, L_11, _stringLiteral377, 0);
t1_89 * L_12 = V_6;
VirtActionInvoker2< t1_18*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(TKey,TValue) */, L_12, _stringLiteral378, 1);
t1_89 * L_13 = V_6;
VirtActionInvoker2< t1_18*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(TKey,TValue) */, L_13, _stringLiteral379, 2);
t1_89 * L_14 = V_6;
VirtActionInvoker2< t1_18*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(TKey,TValue) */, L_14, _stringLiteral380, 3);
t1_89 * L_15 = V_6;
VirtActionInvoker2< t1_18*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(TKey,TValue) */, L_15, _stringLiteral381, 4);
t1_89 * L_16 = V_6;
VirtActionInvoker2< t1_18*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(TKey,TValue) */, L_16, _stringLiteral382, 5);
t1_89 * L_17 = V_6;
VirtActionInvoker2< t1_18*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(TKey,TValue) */, L_17, _stringLiteral383, 6);
t1_89 * L_18 = V_6;
VirtActionInvoker2< t1_18*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(TKey,TValue) */, L_18, _stringLiteral384, 7);
t1_89 * L_19 = V_6;
VirtActionInvoker2< t1_18*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(TKey,TValue) */, L_19, _stringLiteral385, 8);
t1_89 * L_20 = V_6;
VirtActionInvoker2< t1_18*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(TKey,TValue) */, L_20, _stringLiteral386, ((int32_t)9));
t1_89 * L_21 = V_6;
VirtActionInvoker2< t1_18*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(TKey,TValue) */, L_21, _stringLiteral387, ((int32_t)10));
t1_89 * L_22 = V_6;
VirtActionInvoker2< t1_18*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(TKey,TValue) */, L_22, _stringLiteral388, ((int32_t)11));
t1_89 * L_23 = V_6;
IL2CPP_RUNTIME_CLASS_INIT(t1_136_TI_var);
((t1_136_SFs*)t1_136_TI_var->static_fields)->f13 = L_23;
}
IL_00e9:
{
IL2CPP_RUNTIME_CLASS_INIT(t1_136_TI_var);
t1_89 * L_24 = ((t1_136_SFs*)t1_136_TI_var->static_fields)->f13;
t1_18* L_25 = V_5;
bool L_26 = (bool)VirtFuncInvoker2< bool, t1_18*, int32_t* >::Invoke(32 /* System.Boolean System.Collections.Generic.Dictionary`2<System.String,System.Int32>::TryGetValue(TKey,TValue&) */, L_24, L_25, (&V_7));
if (!L_26)
{
goto IL_025a;
}
}
{
int32_t L_27 = V_7;
if (L_27 == 0)
{
goto IL_0138;
}
if (L_27 == 1)
{
goto IL_014e;
}
if (L_27 == 2)
{
goto IL_0164;
}
if (L_27 == 3)
{
goto IL_017c;
}
if (L_27 == 4)
{
goto IL_0194;
}
if (L_27 == 5)
{
goto IL_01aa;
}
if (L_27 == 6)
{
goto IL_01c2;
}
if (L_27 == 7)
{
goto IL_01dd;
}
if (L_27 == 8)
{
goto IL_01f7;
}
if (L_27 == 9)
{
goto IL_0210;
}
if (L_27 == 10)
{
goto IL_0229;
}
if (L_27 == 11)
{
goto IL_0242;
}
}
{
goto IL_025a;
}
IL_0138:
{
t1_135 * L_28 = V_3;
m1_1330(L_28, _stringLiteral389, NULL);
V_0 = _stringLiteral390;
goto IL_026b;
}
IL_014e:
{
t1_135 * L_29 = V_3;
m1_1330(L_29, _stringLiteral391, NULL);
V_0 = _stringLiteral390;
goto IL_026b;
}
IL_0164:
{
t1_135 * L_30 = V_3;
m1_1330(L_30, _stringLiteral389, NULL);
V_0 = _stringLiteral392;
V_1 = 4;
goto IL_026b;
}
IL_017c:
{
t1_135 * L_31 = V_3;
m1_1330(L_31, _stringLiteral391, NULL);
V_0 = _stringLiteral392;
V_1 = 4;
goto IL_026b;
}
IL_0194:
{
t1_135 * L_32 = V_3;
m1_1330(L_32, _stringLiteral393, NULL);
V_0 = _stringLiteral390;
goto IL_026b;
}
IL_01aa:
{
t1_135 * L_33 = V_3;
m1_1330(L_33, _stringLiteral393, NULL);
V_0 = _stringLiteral392;
V_1 = 4;
goto IL_026b;
}
IL_01c2:
{
t1_135 * L_34 = V_3;
m1_1330(L_34, _stringLiteral393, NULL);
V_0 = _stringLiteral394;
V_1 = ((int32_t)16);
V_2 = 0;
goto IL_026b;
}
IL_01dd:
{
t1_135 * L_35 = V_3;
m1_1330(L_35, _stringLiteral393, NULL);
V_0 = _stringLiteral394;
V_1 = 5;
V_2 = 0;
goto IL_026b;
}
IL_01f7:
{
t1_135 * L_36 = V_3;
m1_1330(L_36, _stringLiteral393, NULL);
V_0 = _stringLiteral395;
V_1 = ((int32_t)24);
goto IL_026b;
}
IL_0210:
{
t1_135 * L_37 = V_3;
m1_1330(L_37, _stringLiteral393, NULL);
V_0 = _stringLiteral395;
V_1 = ((int32_t)16);
goto IL_026b;
}
IL_0229:
{
t1_135 * L_38 = V_3;
m1_1330(L_38, _stringLiteral393, NULL);
V_0 = _stringLiteral392;
V_1 = ((int32_t)16);
goto IL_026b;
}
IL_0242:
{
t1_135 * L_39 = V_3;
m1_1330(L_39, _stringLiteral393, NULL);
V_0 = _stringLiteral392;
V_1 = 5;
goto IL_026b;
}
IL_025a:
{
t1_18* L_40 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(t1_18_TI_var);
t1_18* L_41 = m1_420(NULL, _stringLiteral396, L_40, NULL);
t1_756 * L_42 = (t1_756 *)il2cpp_codegen_object_new (t1_756_TI_var);
m1_5149(L_42, L_41, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_42);
}
IL_026b:
{
t1_18* L_43 = V_0;
t1_123 * L_44 = m1_4026(NULL, L_43, NULL);
V_4 = L_44;
t1_123 * L_45 = V_4;
t1_135 * L_46 = V_3;
int32_t L_47 = V_1;
t1_83* L_48 = m1_1336(L_46, L_47, NULL);
VirtActionInvoker1< t1_83* >::Invoke(12 /* System.Void System.Security.Cryptography.SymmetricAlgorithm::set_Key(System.Byte[]) */, L_45, L_48);
int32_t L_49 = V_2;
if ((((int32_t)L_49) <= ((int32_t)0)))
{
goto IL_029e;
}
}
{
t1_123 * L_50 = V_4;
t1_135 * L_51 = V_3;
int32_t L_52 = V_2;
t1_83* L_53 = m1_1337(L_51, L_52, NULL);
VirtActionInvoker1< t1_83* >::Invoke(10 /* System.Void System.Security.Cryptography.SymmetricAlgorithm::set_IV(System.Byte[]) */, L_50, L_53);
t1_123 * L_54 = V_4;
VirtActionInvoker1< int32_t >::Invoke(17 /* System.Void System.Security.Cryptography.SymmetricAlgorithm::set_Mode(System.Security.Cryptography.CipherMode) */, L_54, 1);
}
IL_029e:
{
t1_123 * L_55 = V_4;
return L_55;
}
}
extern TypeInfo* t1_115_TI_var;
extern "C" t1_83* m1_1352 (t1_136 * __this, t1_18* p0, t1_83* p1, int32_t p2, t1_83* p3, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_115_TI_var = il2cpp_codegen_type_info_from_index(133);
s_Il2CppMethodIntialized = true;
}
t1_123 * V_0 = {0};
t1_83* V_1 = {0};
t1_1 * V_2 = {0};
t1_43 * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
t1_43 * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
V_0 = (t1_123 *)NULL;
V_1 = (t1_83*)NULL;
}
IL_0004:
try
{ // begin try (depth: 1)
t1_18* L_0 = p0;
t1_83* L_1 = p1;
int32_t L_2 = p2;
t1_123 * L_3 = m1_1351(__this, L_0, L_1, L_2, NULL);
V_0 = L_3;
t1_123 * L_4 = V_0;
t1_1 * L_5 = (t1_1 *)VirtFuncInvoker0< t1_1 * >::Invoke(20 /* System.Security.Cryptography.ICryptoTransform System.Security.Cryptography.SymmetricAlgorithm::CreateDecryptor() */, L_4);
V_2 = L_5;
t1_1 * L_6 = V_2;
t1_83* L_7 = p3;
t1_83* L_8 = p3;
t1_83* L_9 = (t1_83*)InterfaceFuncInvoker3< t1_83*, t1_83*, int32_t, int32_t >::Invoke(2 /* System.Byte[] System.Security.Cryptography.ICryptoTransform::TransformFinalBlock(System.Byte[],System.Int32,System.Int32) */, t1_115_TI_var, L_6, L_7, 0, (((int32_t)((int32_t)(((t1_33 *)L_8)->max_length)))));
V_1 = L_9;
IL2CPP_LEAVE(0x35, FINALLY_0028);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (t1_43 *)e.ex;
goto FINALLY_0028;
}
FINALLY_0028:
{ // begin finally (depth: 1)
{
t1_123 * L_10 = V_0;
if (!L_10)
{
goto IL_0034;
}
}
IL_002e:
{
t1_123 * L_11 = V_0;
m1_4008(L_11, NULL);
}
IL_0034:
{
IL2CPP_END_FINALLY(40)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(40)
{
IL2CPP_JUMP_TBL(0x35, IL_0035)
IL2CPP_RETHROW_IF_UNHANDLED(t1_43 *)
}
IL_0035:
{
t1_83* L_12 = V_1;
return L_12;
}
}
extern "C" t1_83* m1_1353 (t1_136 * __this, t1_149 * p0, const MethodInfo* method)
{
{
t1_149 * L_0 = p0;
t1_148 * L_1 = m1_1453(L_0, NULL);
t1_18* L_2 = m1_1448(L_1, NULL);
t1_149 * L_3 = p0;
t1_148 * L_4 = m1_1453(L_3, NULL);
t1_134 * L_5 = m1_1446(L_4, NULL);
t1_134 * L_6 = m1_1424(L_5, 0, NULL);
t1_83* L_7 = m1_1416(L_6, NULL);
t1_149 * L_8 = p0;
t1_148 * L_9 = m1_1453(L_8, NULL);
t1_134 * L_10 = m1_1446(L_9, NULL);
t1_134 * L_11 = m1_1424(L_10, 1, NULL);
int32_t L_12 = m1_1429(NULL, L_11, NULL);
t1_149 * L_13 = p0;
t1_83* L_14 = m1_1454(L_13, NULL);
t1_83* L_15 = m1_1352(__this, L_2, L_7, L_12, L_14, NULL);
return L_15;
}
}
extern TypeInfo* t1_115_TI_var;
extern TypeInfo* t1_841_TI_var;
extern "C" t1_83* m1_1354 (t1_136 * __this, t1_18* p0, t1_83* p1, int32_t p2, t1_83* p3, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_115_TI_var = il2cpp_codegen_type_info_from_index(133);
t1_841_TI_var = il2cpp_codegen_type_info_from_index(141);
s_Il2CppMethodIntialized = true;
}
t1_83* V_0 = {0};
t1_123 * V_1 = {0};
t1_1 * V_2 = {0};
t1_43 * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
t1_43 * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
V_0 = (t1_83*)NULL;
t1_18* L_0 = p0;
t1_83* L_1 = p1;
int32_t L_2 = p2;
t1_123 * L_3 = m1_1351(__this, L_0, L_1, L_2, NULL);
V_1 = L_3;
}
IL_000c:
try
{ // begin try (depth: 1)
t1_123 * L_4 = V_1;
t1_1 * L_5 = (t1_1 *)VirtFuncInvoker0< t1_1 * >::Invoke(22 /* System.Security.Cryptography.ICryptoTransform System.Security.Cryptography.SymmetricAlgorithm::CreateEncryptor() */, L_4);
V_2 = L_5;
t1_1 * L_6 = V_2;
t1_83* L_7 = p3;
t1_83* L_8 = p3;
t1_83* L_9 = (t1_83*)InterfaceFuncInvoker3< t1_83*, t1_83*, int32_t, int32_t >::Invoke(2 /* System.Byte[] System.Security.Cryptography.ICryptoTransform::TransformFinalBlock(System.Byte[],System.Int32,System.Int32) */, t1_115_TI_var, L_6, L_7, 0, (((int32_t)((int32_t)(((t1_33 *)L_8)->max_length)))));
V_0 = L_9;
IL2CPP_LEAVE(0x33, FINALLY_0026);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (t1_43 *)e.ex;
goto FINALLY_0026;
}
FINALLY_0026:
{ // begin finally (depth: 1)
{
t1_123 * L_10 = V_1;
if (!L_10)
{
goto IL_0032;
}
}
IL_002c:
{
t1_123 * L_11 = V_1;
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, t1_841_TI_var, L_11);
}
IL_0032:
{
IL2CPP_END_FINALLY(38)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(38)
{
IL2CPP_JUMP_TBL(0x33, IL_0033)
IL2CPP_RETHROW_IF_UNHANDLED(t1_43 *)
}
IL_0033:
{
t1_83* L_12 = V_0;
return L_12;
}
}
extern TypeInfo* t1_841_TI_var;
extern TypeInfo* t1_570_TI_var;
extern "C" t1_570 m1_1355 (t1_136 * __this, bool* p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_841_TI_var = il2cpp_codegen_type_info_from_index(141);
t1_570_TI_var = il2cpp_codegen_type_info_from_index(138);
s_Il2CppMethodIntialized = true;
}
t1_139 * V_0 = {0};
t1_142 * V_1 = {0};
t1_119 * V_2 = {0};
t1_570 V_3 = {0};
t1_1 * V_4 = {0};
t1_570 V_5 = {0};
t1_43 * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
t1_43 * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
t1_137 * L_0 = m1_1348(__this, NULL);
t1_142 * L_1 = m1_1399(L_0, NULL);
V_1 = L_1;
}
IL_000c:
try
{ // begin try (depth: 1)
{
goto IL_0040;
}
IL_0011:
{
t1_142 * L_2 = V_1;
t1_139 * L_3 = m1_1392(L_2, NULL);
V_0 = L_3;
t1_139 * L_4 = V_0;
t1_83* L_5 = (t1_83*)VirtFuncInvoker0< t1_83* >::Invoke(6 /* System.Byte[] Mono.Security.X509.X509Certificate::get_KeyAlgorithmParameters() */, L_4);
if (!L_5)
{
goto IL_0040;
}
}
IL_0023:
{
t1_139 * L_6 = V_0;
t1_119 * L_7 = m1_1376(L_6, NULL);
V_2 = L_7;
t1_119 * L_8 = V_2;
if (!L_8)
{
goto IL_0040;
}
}
IL_0030:
{
bool* L_9 = p0;
*((int8_t*)(L_9)) = (int8_t)1;
t1_119 * L_10 = V_2;
t1_570 L_11 = (t1_570 )VirtFuncInvoker1< t1_570 , bool >::Invoke(11 /* System.Security.Cryptography.DSAParameters System.Security.Cryptography.DSA::ExportParameters(System.Boolean) */, L_10, 0);
V_3 = L_11;
IL2CPP_LEAVE(0x73, FINALLY_0050);
}
IL_0040:
{
t1_142 * L_12 = V_1;
bool L_13 = (bool)VirtFuncInvoker0< bool >::Invoke(7 /* System.Boolean Mono.Security.X509.X509CertificateCollection/X509CertificateEnumerator::MoveNext() */, L_12);
if (L_13)
{
goto IL_0011;
}
}
IL_004b:
{
IL2CPP_LEAVE(0x65, FINALLY_0050);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (t1_43 *)e.ex;
goto FINALLY_0050;
}
FINALLY_0050:
{ // begin finally (depth: 1)
{
t1_142 * L_14 = V_1;
V_4 = ((t1_1 *)IsInst(L_14, t1_841_TI_var));
t1_1 * L_15 = V_4;
if (L_15)
{
goto IL_005d;
}
}
IL_005c:
{
IL2CPP_END_FINALLY(80)
}
IL_005d:
{
t1_1 * L_16 = V_4;
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, t1_841_TI_var, L_16);
IL2CPP_END_FINALLY(80)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(80)
{
IL2CPP_JUMP_TBL(0x73, IL_0073)
IL2CPP_JUMP_TBL(0x65, IL_0065)
IL2CPP_RETHROW_IF_UNHANDLED(t1_43 *)
}
IL_0065:
{
bool* L_17 = p0;
*((int8_t*)(L_17)) = (int8_t)0;
Initobj (t1_570_TI_var, (&V_5));
t1_570 L_18 = V_5;
return L_18;
}
IL_0073:
{
t1_570 L_19 = V_3;
return L_19;
}
}
extern TypeInfo* t1_562_TI_var;
extern Il2CppCodeGenString* _stringLiteral397;
extern "C" void m1_1356 (t1_136 * __this, t1_125 * p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_562_TI_var = il2cpp_codegen_type_info_from_index(130);
_stringLiteral397 = il2cpp_codegen_string_literal_from_index(397);
s_Il2CppMethodIntialized = true;
}
t1_83* V_0 = {0};
bool V_1 = false;
t1_570 V_2 = {0};
uint8_t V_3 = 0x0;
{
t1_125 * L_0 = p0;
t1_83* L_1 = m1_1274(L_0, NULL);
V_0 = L_1;
t1_83* L_2 = V_0;
int32_t L_3 = 0;
V_3 = (*(uint8_t*)(uint8_t*)SZArrayLdElema(L_2, L_3, sizeof(uint8_t)));
uint8_t L_4 = V_3;
if ((((int32_t)L_4) == ((int32_t)2)))
{
goto IL_001f;
}
}
{
uint8_t L_5 = V_3;
if ((((int32_t)L_5) == ((int32_t)((int32_t)48))))
{
goto IL_0046;
}
}
{
goto IL_005d;
}
IL_001f:
{
t1_570 L_6 = m1_1355(__this, (&V_1), NULL);
V_2 = L_6;
bool L_7 = V_1;
if (!L_7)
{
goto IL_0041;
}
}
{
t1_126 * L_8 = (__this->f2);
t1_83* L_9 = V_0;
t1_570 L_10 = V_2;
t1_119 * L_11 = m1_1279(NULL, L_9, L_10, NULL);
VirtFuncInvoker1< int32_t, t1_1 * >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_8, L_11);
}
IL_0041:
{
goto IL_0072;
}
IL_0046:
{
t1_126 * L_12 = (__this->f2);
t1_83* L_13 = V_0;
t1_131 * L_14 = m1_1278(NULL, L_13, NULL);
VirtFuncInvoker1< int32_t, t1_1 * >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_12, L_14);
goto IL_0072;
}
IL_005d:
{
t1_83* L_15 = V_0;
t1_83* L_16 = V_0;
m1_821(NULL, (t1_33 *)(t1_33 *)L_15, 0, (((int32_t)((int32_t)(((t1_33 *)L_16)->max_length)))), NULL);
t1_562 * L_17 = (t1_562 *)il2cpp_codegen_object_new (t1_562_TI_var);
m1_3689(L_17, _stringLiteral397, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_17);
}
IL_0072:
{
t1_83* L_18 = V_0;
t1_83* L_19 = V_0;
m1_821(NULL, (t1_33 *)(t1_33 *)L_18, 0, (((int32_t)((int32_t)(((t1_33 *)L_19)->max_length)))), NULL);
return;
}
}
extern TypeInfo* t1_653_TI_var;
extern TypeInfo* t1_136_TI_var;
extern TypeInfo* t1_89_TI_var;
extern TypeInfo* t1_125_TI_var;
extern TypeInfo* t1_127_TI_var;
extern TypeInfo* t1_148_TI_var;
extern TypeInfo* t1_18_TI_var;
extern TypeInfo* t1_756_TI_var;
extern TypeInfo* t1_139_TI_var;
extern TypeInfo* t1_133_TI_var;
extern const MethodInfo* m1_5457_MI_var;
extern Il2CppCodeGenString* _stringLiteral398;
extern Il2CppCodeGenString* _stringLiteral399;
extern Il2CppCodeGenString* _stringLiteral400;
extern Il2CppCodeGenString* _stringLiteral401;
extern Il2CppCodeGenString* _stringLiteral376;
extern Il2CppCodeGenString* _stringLiteral402;
extern Il2CppCodeGenString* _stringLiteral403;
extern Il2CppCodeGenString* _stringLiteral404;
extern Il2CppCodeGenString* _stringLiteral405;
extern Il2CppCodeGenString* _stringLiteral406;
extern Il2CppCodeGenString* _stringLiteral407;
extern Il2CppCodeGenString* _stringLiteral408;
extern Il2CppCodeGenString* _stringLiteral409;
extern Il2CppCodeGenString* _stringLiteral410;
extern Il2CppCodeGenString* _stringLiteral411;
extern Il2CppCodeGenString* _stringLiteral412;
extern Il2CppCodeGenString* _stringLiteral413;
extern "C" void m1_1357 (t1_136 * __this, t1_134 * p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_653_TI_var = il2cpp_codegen_type_info_from_index(4);
t1_136_TI_var = il2cpp_codegen_type_info_from_index(154);
t1_89_TI_var = il2cpp_codegen_type_info_from_index(115);
t1_125_TI_var = il2cpp_codegen_type_info_from_index(161);
t1_127_TI_var = il2cpp_codegen_type_info_from_index(162);
t1_148_TI_var = il2cpp_codegen_type_info_from_index(156);
t1_18_TI_var = il2cpp_codegen_type_info_from_index(11);
t1_756_TI_var = il2cpp_codegen_type_info_from_index(6);
t1_139_TI_var = il2cpp_codegen_type_info_from_index(160);
t1_133_TI_var = il2cpp_codegen_type_info_from_index(159);
m1_5457_MI_var = il2cpp_codegen_method_info_from_index(2147483658);
_stringLiteral398 = il2cpp_codegen_string_literal_from_index(398);
_stringLiteral399 = il2cpp_codegen_string_literal_from_index(399);
_stringLiteral400 = il2cpp_codegen_string_literal_from_index(400);
_stringLiteral401 = il2cpp_codegen_string_literal_from_index(401);
_stringLiteral376 = il2cpp_codegen_string_literal_from_index(376);
_stringLiteral402 = il2cpp_codegen_string_literal_from_index(402);
_stringLiteral403 = il2cpp_codegen_string_literal_from_index(403);
_stringLiteral404 = il2cpp_codegen_string_literal_from_index(404);
_stringLiteral405 = il2cpp_codegen_string_literal_from_index(405);
_stringLiteral406 = il2cpp_codegen_string_literal_from_index(406);
_stringLiteral407 = il2cpp_codegen_string_literal_from_index(407);
_stringLiteral408 = il2cpp_codegen_string_literal_from_index(408);
_stringLiteral409 = il2cpp_codegen_string_literal_from_index(409);
_stringLiteral410 = il2cpp_codegen_string_literal_from_index(410);
_stringLiteral411 = il2cpp_codegen_string_literal_from_index(411);
_stringLiteral412 = il2cpp_codegen_string_literal_from_index(412);
_stringLiteral413 = il2cpp_codegen_string_literal_from_index(413);
s_Il2CppMethodIntialized = true;
}
t1_134 * V_0 = {0};
t1_134 * V_1 = {0};
t1_18* V_2 = {0};
t1_127 * V_3 = {0};
t1_83* V_4 = {0};
t1_148 * V_5 = {0};
t1_139 * V_6 = {0};
t1_83* V_7 = {0};
t1_134 * V_8 = {0};
int32_t V_9 = 0;
t1_134 * V_10 = {0};
t1_134 * V_11 = {0};
t1_18* V_12 = {0};
t1_134 * V_13 = {0};
int32_t V_14 = 0;
t1_134 * V_15 = {0};
t1_18* V_16 = {0};
t1_89 * V_17 = {0};
int32_t V_18 = 0;
{
t1_134 * L_0 = p0;
uint8_t L_1 = m1_1414(L_0, NULL);
if ((((int32_t)L_1) == ((int32_t)((int32_t)48))))
{
goto IL_0018;
}
}
{
t1_653 * L_2 = (t1_653 *)il2cpp_codegen_object_new (t1_653_TI_var);
m1_4561(L_2, _stringLiteral398, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_2);
}
IL_0018:
{
t1_134 * L_3 = p0;
t1_134 * L_4 = m1_1424(L_3, 0, NULL);
V_0 = L_4;
t1_134 * L_5 = V_0;
uint8_t L_6 = m1_1414(L_5, NULL);
if ((((int32_t)L_6) == ((int32_t)6)))
{
goto IL_0037;
}
}
{
t1_653 * L_7 = (t1_653 *)il2cpp_codegen_object_new (t1_653_TI_var);
m1_4561(L_7, _stringLiteral399, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_7);
}
IL_0037:
{
t1_134 * L_8 = p0;
t1_134 * L_9 = m1_1424(L_8, 1, NULL);
V_1 = L_9;
t1_134 * L_10 = V_0;
t1_18* L_11 = m1_1430(NULL, L_10, NULL);
V_2 = L_11;
t1_18* L_12 = V_2;
V_16 = L_12;
t1_18* L_13 = V_16;
if (!L_13)
{
goto IL_01cd;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(t1_136_TI_var);
t1_89 * L_14 = ((t1_136_SFs*)t1_136_TI_var->static_fields)->f14;
if (L_14)
{
goto IL_00b7;
}
}
{
t1_89 * L_15 = (t1_89 *)il2cpp_codegen_object_new (t1_89_TI_var);
m1_5457(L_15, 6, m1_5457_MI_var);
V_17 = L_15;
t1_89 * L_16 = V_17;
VirtActionInvoker2< t1_18*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(TKey,TValue) */, L_16, _stringLiteral400, 0);
t1_89 * L_17 = V_17;
VirtActionInvoker2< t1_18*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(TKey,TValue) */, L_17, _stringLiteral401, 1);
t1_89 * L_18 = V_17;
VirtActionInvoker2< t1_18*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(TKey,TValue) */, L_18, _stringLiteral376, 2);
t1_89 * L_19 = V_17;
VirtActionInvoker2< t1_18*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(TKey,TValue) */, L_19, _stringLiteral402, 3);
t1_89 * L_20 = V_17;
VirtActionInvoker2< t1_18*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(TKey,TValue) */, L_20, _stringLiteral403, 4);
t1_89 * L_21 = V_17;
VirtActionInvoker2< t1_18*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(TKey,TValue) */, L_21, _stringLiteral404, 5);
t1_89 * L_22 = V_17;
IL2CPP_RUNTIME_CLASS_INIT(t1_136_TI_var);
((t1_136_SFs*)t1_136_TI_var->static_fields)->f14 = L_22;
}
IL_00b7:
{
IL2CPP_RUNTIME_CLASS_INIT(t1_136_TI_var);
t1_89 * L_23 = ((t1_136_SFs*)t1_136_TI_var->static_fields)->f14;
t1_18* L_24 = V_16;
bool L_25 = (bool)VirtFuncInvoker2< bool, t1_18*, int32_t* >::Invoke(32 /* System.Boolean System.Collections.Generic.Dictionary`2<System.String,System.Int32>::TryGetValue(TKey,TValue&) */, L_23, L_24, (&V_18));
if (!L_25)
{
goto IL_01cd;
}
}
{
int32_t L_26 = V_18;
if (L_26 == 0)
{
goto IL_00ee;
}
if (L_26 == 1)
{
goto IL_0104;
}
if (L_26 == 2)
{
goto IL_014e;
}
if (L_26 == 3)
{
goto IL_01a8;
}
if (L_26 == 4)
{
goto IL_01ad;
}
if (L_26 == 5)
{
goto IL_01c8;
}
}
{
goto IL_01cd;
}
IL_00ee:
{
t1_134 * L_27 = V_1;
t1_83* L_28 = m1_1416(L_27, NULL);
t1_125 * L_29 = (t1_125 *)il2cpp_codegen_object_new (t1_125_TI_var);
m1_1273(L_29, L_28, NULL);
m1_1356(__this, L_29, NULL);
goto IL_01d8;
}
IL_0104:
{
t1_134 * L_30 = V_1;
t1_83* L_31 = m1_1416(L_30, NULL);
t1_127 * L_32 = (t1_127 *)il2cpp_codegen_object_new (t1_127_TI_var);
m1_1281(L_32, L_31, NULL);
V_3 = L_32;
t1_127 * L_33 = V_3;
t1_18* L_34 = m1_1282(L_33, NULL);
t1_127 * L_35 = V_3;
t1_83* L_36 = m1_1284(L_35, NULL);
t1_127 * L_37 = V_3;
int32_t L_38 = m1_1285(L_37, NULL);
t1_127 * L_39 = V_3;
t1_83* L_40 = m1_1283(L_39, NULL);
t1_83* L_41 = m1_1352(__this, L_34, L_36, L_38, L_40, NULL);
V_4 = L_41;
t1_83* L_42 = V_4;
t1_125 * L_43 = (t1_125 *)il2cpp_codegen_object_new (t1_125_TI_var);
m1_1273(L_43, L_42, NULL);
m1_1356(__this, L_43, NULL);
t1_83* L_44 = V_4;
t1_83* L_45 = V_4;
m1_821(NULL, (t1_33 *)(t1_33 *)L_44, 0, (((int32_t)((int32_t)(((t1_33 *)L_45)->max_length)))), NULL);
goto IL_01d8;
}
IL_014e:
{
t1_134 * L_46 = V_1;
t1_83* L_47 = m1_1416(L_46, NULL);
t1_148 * L_48 = (t1_148 *)il2cpp_codegen_object_new (t1_148_TI_var);
m1_1443(L_48, L_47, NULL);
V_5 = L_48;
t1_148 * L_49 = V_5;
t1_18* L_50 = m1_1448(L_49, NULL);
IL2CPP_RUNTIME_CLASS_INIT(t1_18_TI_var);
bool L_51 = m1_457(NULL, L_50, _stringLiteral405, NULL);
if (!L_51)
{
goto IL_017c;
}
}
{
t1_756 * L_52 = (t1_756 *)il2cpp_codegen_object_new (t1_756_TI_var);
m1_5149(L_52, _stringLiteral406, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_52);
}
IL_017c:
{
t1_148 * L_53 = V_5;
t1_134 * L_54 = m1_1446(L_53, NULL);
t1_134 * L_55 = m1_1424(L_54, 0, NULL);
t1_83* L_56 = m1_1416(L_55, NULL);
t1_139 * L_57 = (t1_139 *)il2cpp_codegen_object_new (t1_139_TI_var);
m1_1372(L_57, L_56, NULL);
V_6 = L_57;
t1_137 * L_58 = (__this->f4);
t1_139 * L_59 = V_6;
m1_1398(L_58, L_59, NULL);
goto IL_01d8;
}
IL_01a8:
{
goto IL_01d8;
}
IL_01ad:
{
t1_134 * L_60 = V_1;
t1_83* L_61 = m1_1416(L_60, NULL);
V_7 = L_61;
t1_126 * L_62 = (__this->f3);
t1_83* L_63 = V_7;
VirtFuncInvoker1< int32_t, t1_1 * >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_62, (t1_1 *)(t1_1 *)L_63);
goto IL_01d8;
}
IL_01c8:
{
goto IL_01d8;
}
IL_01cd:
{
t1_653 * L_64 = (t1_653 *)il2cpp_codegen_object_new (t1_653_TI_var);
m1_4561(L_64, _stringLiteral407, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_64);
}
IL_01d8:
{
t1_134 * L_65 = p0;
int32_t L_66 = m1_1413(L_65, NULL);
if ((((int32_t)L_66) <= ((int32_t)2)))
{
goto IL_0347;
}
}
{
t1_134 * L_67 = p0;
t1_134 * L_68 = m1_1424(L_67, 2, NULL);
V_8 = L_68;
t1_134 * L_69 = V_8;
uint8_t L_70 = m1_1414(L_69, NULL);
if ((((int32_t)L_70) == ((int32_t)((int32_t)49))))
{
goto IL_0206;
}
}
{
t1_653 * L_71 = (t1_653 *)il2cpp_codegen_object_new (t1_653_TI_var);
m1_4561(L_71, _stringLiteral408, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_71);
}
IL_0206:
{
V_9 = 0;
goto IL_0339;
}
IL_020e:
{
t1_134 * L_72 = V_8;
int32_t L_73 = V_9;
t1_134 * L_74 = m1_1424(L_72, L_73, NULL);
V_10 = L_74;
t1_134 * L_75 = V_10;
uint8_t L_76 = m1_1414(L_75, NULL);
if ((((int32_t)L_76) == ((int32_t)((int32_t)48))))
{
goto IL_0232;
}
}
{
t1_653 * L_77 = (t1_653 *)il2cpp_codegen_object_new (t1_653_TI_var);
m1_4561(L_77, _stringLiteral409, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_77);
}
IL_0232:
{
t1_134 * L_78 = V_10;
t1_134 * L_79 = m1_1424(L_78, 0, NULL);
V_11 = L_79;
t1_134 * L_80 = V_11;
uint8_t L_81 = m1_1414(L_80, NULL);
if ((((int32_t)L_81) == ((int32_t)6)))
{
goto IL_0254;
}
}
{
t1_653 * L_82 = (t1_653 *)il2cpp_codegen_object_new (t1_653_TI_var);
m1_4561(L_82, _stringLiteral410, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_82);
}
IL_0254:
{
t1_134 * L_83 = V_11;
t1_18* L_84 = m1_1430(NULL, L_83, NULL);
V_12 = L_84;
t1_134 * L_85 = V_10;
t1_134 * L_86 = m1_1424(L_85, 1, NULL);
V_13 = L_86;
V_14 = 0;
goto IL_0325;
}
IL_026f:
{
t1_134 * L_87 = V_13;
int32_t L_88 = V_14;
t1_134 * L_89 = m1_1424(L_87, L_88, NULL);
V_15 = L_89;
t1_18* L_90 = V_12;
V_16 = L_90;
t1_18* L_91 = V_16;
if (!L_91)
{
goto IL_031a;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(t1_136_TI_var);
t1_89 * L_92 = ((t1_136_SFs*)t1_136_TI_var->static_fields)->f15;
if (L_92)
{
goto IL_02b8;
}
}
{
t1_89 * L_93 = (t1_89 *)il2cpp_codegen_object_new (t1_89_TI_var);
m1_5457(L_93, 2, m1_5457_MI_var);
V_17 = L_93;
t1_89 * L_94 = V_17;
VirtActionInvoker2< t1_18*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(TKey,TValue) */, L_94, _stringLiteral411, 0);
t1_89 * L_95 = V_17;
VirtActionInvoker2< t1_18*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(TKey,TValue) */, L_95, _stringLiteral412, 1);
t1_89 * L_96 = V_17;
IL2CPP_RUNTIME_CLASS_INIT(t1_136_TI_var);
((t1_136_SFs*)t1_136_TI_var->static_fields)->f15 = L_96;
}
IL_02b8:
{
IL2CPP_RUNTIME_CLASS_INIT(t1_136_TI_var);
t1_89 * L_97 = ((t1_136_SFs*)t1_136_TI_var->static_fields)->f15;
t1_18* L_98 = V_16;
bool L_99 = (bool)VirtFuncInvoker2< bool, t1_18*, int32_t* >::Invoke(32 /* System.Boolean System.Collections.Generic.Dictionary`2<System.String,System.Int32>::TryGetValue(TKey,TValue&) */, L_97, L_98, (&V_18));
if (!L_99)
{
goto IL_031a;
}
}
{
int32_t L_100 = V_18;
if (!L_100)
{
goto IL_02df;
}
}
{
int32_t L_101 = V_18;
if ((((int32_t)L_101) == ((int32_t)1)))
{
goto IL_02fd;
}
}
{
goto IL_031a;
}
IL_02df:
{
t1_134 * L_102 = V_15;
uint8_t L_103 = m1_1414(L_102, NULL);
if ((((int32_t)L_103) == ((int32_t)((int32_t)30))))
{
goto IL_02f8;
}
}
{
t1_653 * L_104 = (t1_653 *)il2cpp_codegen_object_new (t1_653_TI_var);
m1_4561(L_104, _stringLiteral413, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_104);
}
IL_02f8:
{
goto IL_031f;
}
IL_02fd:
{
t1_134 * L_105 = V_15;
uint8_t L_106 = m1_1414(L_105, NULL);
if ((((int32_t)L_106) == ((int32_t)4)))
{
goto IL_0315;
}
}
{
t1_653 * L_107 = (t1_653 *)il2cpp_codegen_object_new (t1_653_TI_var);
m1_4561(L_107, _stringLiteral413, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_107);
}
IL_0315:
{
goto IL_031f;
}
IL_031a:
{
goto IL_031f;
}
IL_031f:
{
int32_t L_108 = V_14;
V_14 = ((int32_t)((int32_t)L_108+(int32_t)1));
}
IL_0325:
{
int32_t L_109 = V_14;
t1_134 * L_110 = V_13;
int32_t L_111 = m1_1413(L_110, NULL);
if ((((int32_t)L_109) < ((int32_t)L_111)))
{
goto IL_026f;
}
}
{
int32_t L_112 = V_9;
V_9 = ((int32_t)((int32_t)L_112+(int32_t)1));
}
IL_0339:
{
int32_t L_113 = V_9;
t1_134 * L_114 = V_8;
int32_t L_115 = m1_1413(L_114, NULL);
if ((((int32_t)L_113) < ((int32_t)L_115)))
{
goto IL_020e;
}
}
IL_0347:
{
t1_126 * L_116 = (__this->f9);
t1_18* L_117 = V_2;
t1_134 * L_118 = p0;
t1_133 * L_119 = (t1_133 *)il2cpp_codegen_object_new (t1_133_TI_var);
m1_1325(L_119, L_117, L_118, NULL);
VirtFuncInvoker1< int32_t, t1_1 * >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_116, L_119);
return;
}
}
extern TypeInfo* t1_134_TI_var;
extern TypeInfo* t1_148_TI_var;
extern TypeInfo* t1_45_TI_var;
extern TypeInfo* t1_465_TI_var;
extern TypeInfo* t1_18_TI_var;
extern TypeInfo* t1_136_TI_var;
extern TypeInfo* t1_89_TI_var;
extern TypeInfo* t1_126_TI_var;
extern TypeInfo* t1_143_TI_var;
extern TypeInfo* t1_83_TI_var;
extern TypeInfo* t1_841_TI_var;
extern const MethodInfo* m1_5457_MI_var;
extern Il2CppCodeGenString* _stringLiteral405;
extern Il2CppCodeGenString* _stringLiteral376;
extern Il2CppCodeGenString* _stringLiteral411;
extern Il2CppCodeGenString* _stringLiteral412;
extern "C" t1_134 * m1_1358 (t1_136 * __this, t1_139 * p0, t1_1 * p1, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_134_TI_var = il2cpp_codegen_type_info_from_index(148);
t1_148_TI_var = il2cpp_codegen_type_info_from_index(156);
t1_45_TI_var = il2cpp_codegen_type_info_from_index(97);
t1_465_TI_var = il2cpp_codegen_type_info_from_index(163);
t1_18_TI_var = il2cpp_codegen_type_info_from_index(11);
t1_136_TI_var = il2cpp_codegen_type_info_from_index(154);
t1_89_TI_var = il2cpp_codegen_type_info_from_index(115);
t1_126_TI_var = il2cpp_codegen_type_info_from_index(55);
t1_143_TI_var = il2cpp_codegen_type_info_from_index(158);
t1_83_TI_var = il2cpp_codegen_type_info_from_index(42);
t1_841_TI_var = il2cpp_codegen_type_info_from_index(141);
m1_5457_MI_var = il2cpp_codegen_method_info_from_index(2147483658);
_stringLiteral405 = il2cpp_codegen_string_literal_from_index(405);
_stringLiteral376 = il2cpp_codegen_string_literal_from_index(376);
_stringLiteral411 = il2cpp_codegen_string_literal_from_index(411);
_stringLiteral412 = il2cpp_codegen_string_literal_from_index(412);
s_Il2CppMethodIntialized = true;
}
t1_134 * V_0 = {0};
t1_148 * V_1 = {0};
t1_134 * V_2 = {0};
t1_134 * V_3 = {0};
t1_134 * V_4 = {0};
t1_1 * V_5 = {0};
t1_18* V_6 = {0};
t1_126 * V_7 = {0};
t1_134 * V_8 = {0};
t1_134 * V_9 = {0};
t1_83* V_10 = {0};
t1_1 * V_11 = {0};
t1_134 * V_12 = {0};
t1_126 * V_13 = {0};
t1_134 * V_14 = {0};
t1_134 * V_15 = {0};
t1_83* V_16 = {0};
t1_1 * V_17 = {0};
t1_134 * V_18 = {0};
t1_18* V_19 = {0};
t1_89 * V_20 = {0};
int32_t V_21 = 0;
t1_1 * V_22 = {0};
t1_1 * V_23 = {0};
t1_43 * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
t1_43 * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
t1_139 * L_0 = p0;
t1_83* L_1 = (t1_83*)VirtFuncInvoker0< t1_83* >::Invoke(8 /* System.Byte[] Mono.Security.X509.X509Certificate::get_RawData() */, L_0);
t1_134 * L_2 = (t1_134 *)il2cpp_codegen_object_new (t1_134_TI_var);
m1_1411(L_2, 4, L_1, NULL);
V_0 = L_2;
t1_148 * L_3 = (t1_148 *)il2cpp_codegen_object_new (t1_148_TI_var);
m1_1441(L_3, NULL);
V_1 = L_3;
t1_148 * L_4 = V_1;
m1_1449(L_4, _stringLiteral405, NULL);
t1_148 * L_5 = V_1;
t1_134 * L_6 = m1_1446(L_5, NULL);
t1_134 * L_7 = V_0;
m1_1420(L_6, L_7, NULL);
t1_134 * L_8 = (t1_134 *)il2cpp_codegen_object_new (t1_134_TI_var);
m1_1410(L_8, ((int32_t)160), NULL);
V_2 = L_8;
t1_134 * L_9 = V_2;
t1_148 * L_10 = V_1;
t1_134 * L_11 = m1_1445(L_10, NULL);
m1_1420(L_9, L_11, NULL);
t1_134 * L_12 = (t1_134 *)il2cpp_codegen_object_new (t1_134_TI_var);
m1_1410(L_12, ((int32_t)48), NULL);
V_3 = L_12;
t1_134 * L_13 = V_3;
t1_134 * L_14 = m1_1428(NULL, _stringLiteral376, NULL);
m1_1420(L_13, L_14, NULL);
t1_134 * L_15 = V_3;
t1_134 * L_16 = V_2;
m1_1420(L_15, L_16, NULL);
t1_1 * L_17 = p1;
if (!L_17)
{
goto IL_0287;
}
}
{
t1_134 * L_18 = (t1_134 *)il2cpp_codegen_object_new (t1_134_TI_var);
m1_1410(L_18, ((int32_t)49), NULL);
V_4 = L_18;
t1_1 * L_19 = p1;
t1_1 * L_20 = (t1_1 *)InterfaceFuncInvoker0< t1_1 * >::Invoke(4 /* System.Collections.IDictionaryEnumerator System.Collections.IDictionary::GetEnumerator() */, t1_45_TI_var, L_19);
V_5 = L_20;
goto IL_0265;
}
IL_0080:
{
t1_1 * L_21 = V_5;
t1_1 * L_22 = (t1_1 *)InterfaceFuncInvoker0< t1_1 * >::Invoke(1 /* System.Object System.Collections.IDictionaryEnumerator::get_Key() */, t1_465_TI_var, L_21);
V_6 = ((t1_18*)CastclassSealed(L_22, t1_18_TI_var));
t1_18* L_23 = V_6;
V_19 = L_23;
t1_18* L_24 = V_19;
if (!L_24)
{
goto IL_0260;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(t1_136_TI_var);
t1_89 * L_25 = ((t1_136_SFs*)t1_136_TI_var->static_fields)->f16;
if (L_25)
{
goto IL_00cc;
}
}
{
t1_89 * L_26 = (t1_89 *)il2cpp_codegen_object_new (t1_89_TI_var);
m1_5457(L_26, 2, m1_5457_MI_var);
V_20 = L_26;
t1_89 * L_27 = V_20;
VirtActionInvoker2< t1_18*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(TKey,TValue) */, L_27, _stringLiteral411, 0);
t1_89 * L_28 = V_20;
VirtActionInvoker2< t1_18*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(TKey,TValue) */, L_28, _stringLiteral412, 1);
t1_89 * L_29 = V_20;
IL2CPP_RUNTIME_CLASS_INIT(t1_136_TI_var);
((t1_136_SFs*)t1_136_TI_var->static_fields)->f16 = L_29;
}
IL_00cc:
{
IL2CPP_RUNTIME_CLASS_INIT(t1_136_TI_var);
t1_89 * L_30 = ((t1_136_SFs*)t1_136_TI_var->static_fields)->f16;
t1_18* L_31 = V_19;
bool L_32 = (bool)VirtFuncInvoker2< bool, t1_18*, int32_t* >::Invoke(32 /* System.Boolean System.Collections.Generic.Dictionary`2<System.String,System.Int32>::TryGetValue(TKey,TValue&) */, L_30, L_31, (&V_21));
if (!L_32)
{
goto IL_0260;
}
}
{
int32_t L_33 = V_21;
if (!L_33)
{
goto IL_00f3;
}
}
{
int32_t L_34 = V_21;
if ((((int32_t)L_34) == ((int32_t)1)))
{
goto IL_01aa;
}
}
{
goto IL_0260;
}
IL_00f3:
{
t1_1 * L_35 = V_5;
t1_1 * L_36 = (t1_1 *)InterfaceFuncInvoker0< t1_1 * >::Invoke(2 /* System.Object System.Collections.IDictionaryEnumerator::get_Value() */, t1_465_TI_var, L_35);
V_7 = ((t1_126 *)CastclassClass(L_36, t1_126_TI_var));
t1_126 * L_37 = V_7;
int32_t L_38 = (int32_t)VirtFuncInvoker0< int32_t >::Invoke(23 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_37);
if ((((int32_t)L_38) <= ((int32_t)0)))
{
goto IL_01a5;
}
}
{
t1_134 * L_39 = (t1_134 *)il2cpp_codegen_object_new (t1_134_TI_var);
m1_1410(L_39, ((int32_t)48), NULL);
V_8 = L_39;
t1_134 * L_40 = V_8;
t1_134 * L_41 = m1_1428(NULL, _stringLiteral411, NULL);
m1_1420(L_40, L_41, NULL);
t1_134 * L_42 = (t1_134 *)il2cpp_codegen_object_new (t1_134_TI_var);
m1_1410(L_42, ((int32_t)49), NULL);
V_9 = L_42;
t1_126 * L_43 = V_7;
t1_1 * L_44 = (t1_1 *)VirtFuncInvoker0< t1_1 * >::Invoke(43 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_43);
V_11 = L_44;
}
IL_013b:
try
{ // begin try (depth: 1)
{
goto IL_016a;
}
IL_0140:
{
t1_1 * L_45 = V_11;
t1_1 * L_46 = (t1_1 *)InterfaceFuncInvoker0< t1_1 * >::Invoke(0 /* System.Object System.Collections.IEnumerator::get_Current() */, t1_143_TI_var, L_45);
V_10 = ((t1_83*)Castclass(L_46, t1_83_TI_var));
t1_134 * L_47 = (t1_134 *)il2cpp_codegen_object_new (t1_134_TI_var);
m1_1410(L_47, ((int32_t)30), NULL);
V_12 = L_47;
t1_134 * L_48 = V_12;
t1_83* L_49 = V_10;
m1_1417(L_48, L_49, NULL);
t1_134 * L_50 = V_9;
t1_134 * L_51 = V_12;
m1_1420(L_50, L_51, NULL);
}
IL_016a:
{
t1_1 * L_52 = V_11;
bool L_53 = (bool)InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, t1_143_TI_var, L_52);
if (L_53)
{
goto IL_0140;
}
}
IL_0176:
{
IL2CPP_LEAVE(0x191, FINALLY_017b);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (t1_43 *)e.ex;
goto FINALLY_017b;
}
FINALLY_017b:
{ // begin finally (depth: 1)
{
t1_1 * L_54 = V_11;
V_22 = ((t1_1 *)IsInst(L_54, t1_841_TI_var));
t1_1 * L_55 = V_22;
if (L_55)
{
goto IL_0189;
}
}
IL_0188:
{
IL2CPP_END_FINALLY(379)
}
IL_0189:
{
t1_1 * L_56 = V_22;
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, t1_841_TI_var, L_56);
IL2CPP_END_FINALLY(379)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(379)
{
IL2CPP_JUMP_TBL(0x191, IL_0191)
IL2CPP_RETHROW_IF_UNHANDLED(t1_43 *)
}
IL_0191:
{
t1_134 * L_57 = V_8;
t1_134 * L_58 = V_9;
m1_1420(L_57, L_58, NULL);
t1_134 * L_59 = V_4;
t1_134 * L_60 = V_8;
m1_1420(L_59, L_60, NULL);
}
IL_01a5:
{
goto IL_0265;
}
IL_01aa:
{
t1_1 * L_61 = V_5;
t1_1 * L_62 = (t1_1 *)InterfaceFuncInvoker0< t1_1 * >::Invoke(2 /* System.Object System.Collections.IDictionaryEnumerator::get_Value() */, t1_465_TI_var, L_61);
V_13 = ((t1_126 *)CastclassClass(L_62, t1_126_TI_var));
t1_126 * L_63 = V_13;
int32_t L_64 = (int32_t)VirtFuncInvoker0< int32_t >::Invoke(23 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_63);
if ((((int32_t)L_64) <= ((int32_t)0)))
{
goto IL_025b;
}
}
{
t1_134 * L_65 = (t1_134 *)il2cpp_codegen_object_new (t1_134_TI_var);
m1_1410(L_65, ((int32_t)48), NULL);
V_14 = L_65;
t1_134 * L_66 = V_14;
t1_134 * L_67 = m1_1428(NULL, _stringLiteral412, NULL);
m1_1420(L_66, L_67, NULL);
t1_134 * L_68 = (t1_134 *)il2cpp_codegen_object_new (t1_134_TI_var);
m1_1410(L_68, ((int32_t)49), NULL);
V_15 = L_68;
t1_126 * L_69 = V_13;
t1_1 * L_70 = (t1_1 *)VirtFuncInvoker0< t1_1 * >::Invoke(43 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_69);
V_17 = L_70;
}
IL_01f2:
try
{ // begin try (depth: 1)
{
goto IL_0220;
}
IL_01f7:
{
t1_1 * L_71 = V_17;
t1_1 * L_72 = (t1_1 *)InterfaceFuncInvoker0< t1_1 * >::Invoke(0 /* System.Object System.Collections.IEnumerator::get_Current() */, t1_143_TI_var, L_71);
V_16 = ((t1_83*)Castclass(L_72, t1_83_TI_var));
t1_134 * L_73 = (t1_134 *)il2cpp_codegen_object_new (t1_134_TI_var);
m1_1410(L_73, 4, NULL);
V_18 = L_73;
t1_134 * L_74 = V_18;
t1_83* L_75 = V_16;
m1_1417(L_74, L_75, NULL);
t1_134 * L_76 = V_15;
t1_134 * L_77 = V_18;
m1_1420(L_76, L_77, NULL);
}
IL_0220:
{
t1_1 * L_78 = V_17;
bool L_79 = (bool)InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, t1_143_TI_var, L_78);
if (L_79)
{
goto IL_01f7;
}
}
IL_022c:
{
IL2CPP_LEAVE(0x247, FINALLY_0231);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (t1_43 *)e.ex;
goto FINALLY_0231;
}
FINALLY_0231:
{ // begin finally (depth: 1)
{
t1_1 * L_80 = V_17;
V_23 = ((t1_1 *)IsInst(L_80, t1_841_TI_var));
t1_1 * L_81 = V_23;
if (L_81)
{
goto IL_023f;
}
}
IL_023e:
{
IL2CPP_END_FINALLY(561)
}
IL_023f:
{
t1_1 * L_82 = V_23;
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, t1_841_TI_var, L_82);
IL2CPP_END_FINALLY(561)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(561)
{
IL2CPP_JUMP_TBL(0x247, IL_0247)
IL2CPP_RETHROW_IF_UNHANDLED(t1_43 *)
}
IL_0247:
{
t1_134 * L_83 = V_14;
t1_134 * L_84 = V_15;
m1_1420(L_83, L_84, NULL);
t1_134 * L_85 = V_4;
t1_134 * L_86 = V_14;
m1_1420(L_85, L_86, NULL);
}
IL_025b:
{
goto IL_0265;
}
IL_0260:
{
goto IL_0265;
}
IL_0265:
{
t1_1 * L_87 = V_5;
bool L_88 = (bool)InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, t1_143_TI_var, L_87);
if (L_88)
{
goto IL_0080;
}
}
{
t1_134 * L_89 = V_4;
int32_t L_90 = m1_1413(L_89, NULL);
if ((((int32_t)L_90) <= ((int32_t)0)))
{
goto IL_0287;
}
}
{
t1_134 * L_91 = V_3;
t1_134 * L_92 = V_4;
m1_1420(L_91, L_92, NULL);
}
IL_0287:
{
t1_134 * L_93 = V_3;
return L_93;
}
}
extern TypeInfo* t1_135_TI_var;
extern TypeInfo* t1_578_TI_var;
extern Il2CppCodeGenString* _stringLiteral393;
extern "C" t1_83* m1_1359 (t1_136 * __this, t1_83* p0, t1_83* p1, int32_t p2, t1_83* p3, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_135_TI_var = il2cpp_codegen_type_info_from_index(153);
t1_578_TI_var = il2cpp_codegen_type_info_from_index(164);
_stringLiteral393 = il2cpp_codegen_string_literal_from_index(393);
s_Il2CppMethodIntialized = true;
}
t1_135 * V_0 = {0};
t1_578 * V_1 = {0};
{
t1_135 * L_0 = (t1_135 *)il2cpp_codegen_object_new (t1_135_TI_var);
m1_1328(L_0, NULL);
V_0 = L_0;
t1_135 * L_1 = V_0;
m1_1330(L_1, _stringLiteral393, NULL);
t1_135 * L_2 = V_0;
t1_83* L_3 = p0;
m1_1332(L_2, L_3, NULL);
t1_135 * L_4 = V_0;
t1_83* L_5 = p1;
m1_1333(L_4, L_5, NULL);
t1_135 * L_6 = V_0;
int32_t L_7 = p2;
m1_1331(L_6, L_7, NULL);
t1_573 * L_8 = m1_3764(NULL, NULL);
V_1 = ((t1_578 *)CastclassClass(L_8, t1_578_TI_var));
t1_578 * L_9 = V_1;
t1_135 * L_10 = V_0;
t1_83* L_11 = m1_1338(L_10, ((int32_t)20), NULL);
VirtActionInvoker1< t1_83* >::Invoke(16 /* System.Void System.Security.Cryptography.HMAC::set_Key(System.Byte[]) */, L_9, L_11);
t1_578 * L_12 = V_1;
t1_83* L_13 = p3;
t1_83* L_14 = p3;
t1_83* L_15 = m1_3786(L_12, L_13, 0, (((int32_t)((int32_t)(((t1_33 *)L_14)->max_length)))), NULL);
return L_15;
}
}
extern TypeInfo* t1_134_TI_var;
extern TypeInfo* t1_126_TI_var;
extern TypeInfo* t1_143_TI_var;
extern TypeInfo* t1_133_TI_var;
extern TypeInfo* t1_148_TI_var;
extern TypeInfo* t1_139_TI_var;
extern TypeInfo* t1_841_TI_var;
extern TypeInfo* t1_83_TI_var;
extern Il2CppCodeGenString* _stringLiteral376;
extern Il2CppCodeGenString* _stringLiteral385;
extern Il2CppCodeGenString* _stringLiteral400;
extern Il2CppCodeGenString* _stringLiteral401;
extern Il2CppCodeGenString* _stringLiteral364;
extern Il2CppCodeGenString* _stringLiteral403;
extern Il2CppCodeGenString* _stringLiteral367;
extern "C" t1_83* m1_1360 (t1_136 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_134_TI_var = il2cpp_codegen_type_info_from_index(148);
t1_126_TI_var = il2cpp_codegen_type_info_from_index(55);
t1_143_TI_var = il2cpp_codegen_type_info_from_index(158);
t1_133_TI_var = il2cpp_codegen_type_info_from_index(159);
t1_148_TI_var = il2cpp_codegen_type_info_from_index(156);
t1_139_TI_var = il2cpp_codegen_type_info_from_index(160);
t1_841_TI_var = il2cpp_codegen_type_info_from_index(141);
t1_83_TI_var = il2cpp_codegen_type_info_from_index(42);
_stringLiteral376 = il2cpp_codegen_string_literal_from_index(376);
_stringLiteral385 = il2cpp_codegen_string_literal_from_index(385);
_stringLiteral400 = il2cpp_codegen_string_literal_from_index(400);
_stringLiteral401 = il2cpp_codegen_string_literal_from_index(401);
_stringLiteral364 = il2cpp_codegen_string_literal_from_index(364);
_stringLiteral403 = il2cpp_codegen_string_literal_from_index(403);
_stringLiteral367 = il2cpp_codegen_string_literal_from_index(367);
s_Il2CppMethodIntialized = true;
}
t1_134 * V_0 = {0};
t1_126 * V_1 = {0};
t1_133 * V_2 = {0};
t1_1 * V_3 = {0};
t1_134 * V_4 = {0};
t1_134 * V_5 = {0};
t1_148 * V_6 = {0};
t1_126 * V_7 = {0};
t1_126 * V_8 = {0};
t1_139 * V_9 = {0};
t1_142 * V_10 = {0};
bool V_11 = false;
t1_139 * V_12 = {0};
t1_1 * V_13 = {0};
t1_139 * V_14 = {0};
t1_1 * V_15 = {0};
bool V_16 = false;
t1_139 * V_17 = {0};
t1_142 * V_18 = {0};
t1_139 * V_19 = {0};
t1_1 * V_20 = {0};
t1_139 * V_21 = {0};
t1_1 * V_22 = {0};
t1_134 * V_23 = {0};
t1_133 * V_24 = {0};
t1_1 * V_25 = {0};
t1_148 * V_26 = {0};
t1_134 * V_27 = {0};
t1_133 * V_28 = {0};
t1_1 * V_29 = {0};
t1_134 * V_30 = {0};
t1_148 * V_31 = {0};
t1_134 * V_32 = {0};
t1_133 * V_33 = {0};
t1_1 * V_34 = {0};
t1_148 * V_35 = {0};
t1_134 * V_36 = {0};
t1_134 * V_37 = {0};
t1_148 * V_38 = {0};
t1_134 * V_39 = {0};
t1_83* V_40 = {0};
t1_83* V_41 = {0};
t1_134 * V_42 = {0};
t1_134 * V_43 = {0};
t1_134 * V_44 = {0};
t1_134 * V_45 = {0};
t1_1 * V_46 = {0};
t1_1 * V_47 = {0};
t1_1 * V_48 = {0};
t1_1 * V_49 = {0};
t1_1 * V_50 = {0};
t1_1 * V_51 = {0};
t1_1 * V_52 = {0};
t1_1 * V_53 = {0};
t1_1 * V_54 = {0};
t1_1 * V_55 = {0};
t1_43 * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
t1_43 * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
t1_134 * L_0 = (t1_134 *)il2cpp_codegen_object_new (t1_134_TI_var);
m1_1410(L_0, ((int32_t)48), NULL);
V_0 = L_0;
t1_126 * L_1 = (t1_126 *)il2cpp_codegen_object_new (t1_126_TI_var);
m1_1590(L_1, NULL);
V_1 = L_1;
t1_126 * L_2 = (__this->f9);
t1_1 * L_3 = (t1_1 *)VirtFuncInvoker0< t1_1 * >::Invoke(43 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_2);
V_3 = L_3;
}
IL_001a:
try
{ // begin try (depth: 1)
{
goto IL_007e;
}
IL_001f:
{
t1_1 * L_4 = V_3;
t1_1 * L_5 = (t1_1 *)InterfaceFuncInvoker0< t1_1 * >::Invoke(0 /* System.Object System.Collections.IEnumerator::get_Current() */, t1_143_TI_var, L_4);
V_2 = ((t1_133 *)CastclassClass(L_5, t1_133_TI_var));
t1_133 * L_6 = V_2;
t1_18* L_7 = m1_1326(L_6, NULL);
bool L_8 = m1_343(L_7, _stringLiteral376, NULL);
if (!L_8)
{
goto IL_007e;
}
}
IL_0040:
{
t1_133 * L_9 = V_2;
t1_134 * L_10 = m1_1327(L_9, NULL);
V_4 = L_10;
t1_134 * L_11 = V_4;
t1_134 * L_12 = m1_1424(L_11, 1, NULL);
V_5 = L_12;
t1_134 * L_13 = V_5;
t1_83* L_14 = m1_1416(L_13, NULL);
t1_148 * L_15 = (t1_148 *)il2cpp_codegen_object_new (t1_148_TI_var);
m1_1443(L_15, L_14, NULL);
V_6 = L_15;
t1_126 * L_16 = V_1;
t1_148 * L_17 = V_6;
t1_134 * L_18 = m1_1446(L_17, NULL);
t1_134 * L_19 = m1_1424(L_18, 0, NULL);
t1_83* L_20 = m1_1416(L_19, NULL);
t1_139 * L_21 = (t1_139 *)il2cpp_codegen_object_new (t1_139_TI_var);
m1_1372(L_21, L_20, NULL);
VirtFuncInvoker1< int32_t, t1_1 * >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_16, L_21);
}
IL_007e:
{
t1_1 * L_22 = V_3;
bool L_23 = (bool)InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, t1_143_TI_var, L_22);
if (L_23)
{
goto IL_001f;
}
}
IL_0089:
{
IL2CPP_LEAVE(0xA3, FINALLY_008e);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (t1_43 *)e.ex;
goto FINALLY_008e;
}
FINALLY_008e:
{ // begin finally (depth: 1)
{
t1_1 * L_24 = V_3;
V_46 = ((t1_1 *)IsInst(L_24, t1_841_TI_var));
t1_1 * L_25 = V_46;
if (L_25)
{
goto IL_009b;
}
}
IL_009a:
{
IL2CPP_END_FINALLY(142)
}
IL_009b:
{
t1_1 * L_26 = V_46;
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, t1_841_TI_var, L_26);
IL2CPP_END_FINALLY(142)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(142)
{
IL2CPP_JUMP_TBL(0xA3, IL_00a3)
IL2CPP_RETHROW_IF_UNHANDLED(t1_43 *)
}
IL_00a3:
{
t1_126 * L_27 = (t1_126 *)il2cpp_codegen_object_new (t1_126_TI_var);
m1_1590(L_27, NULL);
V_7 = L_27;
t1_126 * L_28 = (t1_126 *)il2cpp_codegen_object_new (t1_126_TI_var);
m1_1590(L_28, NULL);
V_8 = L_28;
t1_137 * L_29 = m1_1348(__this, NULL);
t1_142 * L_30 = m1_1399(L_29, NULL);
V_10 = L_30;
}
IL_00be:
try
{ // begin try (depth: 1)
{
goto IL_013e;
}
IL_00c3:
{
t1_142 * L_31 = V_10;
t1_139 * L_32 = m1_1392(L_31, NULL);
V_9 = L_32;
V_11 = 0;
t1_126 * L_33 = V_1;
t1_1 * L_34 = (t1_1 *)VirtFuncInvoker0< t1_1 * >::Invoke(43 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_33);
V_13 = L_34;
}
IL_00d7:
try
{ // begin try (depth: 2)
{
goto IL_0106;
}
IL_00dc:
{
t1_1 * L_35 = V_13;
t1_1 * L_36 = (t1_1 *)InterfaceFuncInvoker0< t1_1 * >::Invoke(0 /* System.Object System.Collections.IEnumerator::get_Current() */, t1_143_TI_var, L_35);
V_12 = ((t1_139 *)CastclassClass(L_36, t1_139_TI_var));
t1_139 * L_37 = V_9;
t1_83* L_38 = (t1_83*)VirtFuncInvoker0< t1_83* >::Invoke(8 /* System.Byte[] Mono.Security.X509.X509Certificate::get_RawData() */, L_37);
t1_139 * L_39 = V_12;
t1_83* L_40 = (t1_83*)VirtFuncInvoker0< t1_83* >::Invoke(8 /* System.Byte[] Mono.Security.X509.X509Certificate::get_RawData() */, L_39);
bool L_41 = m1_1350(__this, L_38, L_40, NULL);
if (!L_41)
{
goto IL_0106;
}
}
IL_0103:
{
V_11 = 1;
}
IL_0106:
{
t1_1 * L_42 = V_13;
bool L_43 = (bool)InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, t1_143_TI_var, L_42);
if (L_43)
{
goto IL_00dc;
}
}
IL_0112:
{
IL2CPP_LEAVE(0x12D, FINALLY_0117);
}
} // end try (depth: 2)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (t1_43 *)e.ex;
goto FINALLY_0117;
}
FINALLY_0117:
{ // begin finally (depth: 2)
{
t1_1 * L_44 = V_13;
V_47 = ((t1_1 *)IsInst(L_44, t1_841_TI_var));
t1_1 * L_45 = V_47;
if (L_45)
{
goto IL_0125;
}
}
IL_0124:
{
IL2CPP_END_FINALLY(279)
}
IL_0125:
{
t1_1 * L_46 = V_47;
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, t1_841_TI_var, L_46);
IL2CPP_END_FINALLY(279)
}
} // end finally (depth: 2)
IL2CPP_CLEANUP(279)
{
IL2CPP_JUMP_TBL(0x12D, IL_012d)
IL2CPP_RETHROW_IF_UNHANDLED(t1_43 *)
}
IL_012d:
{
bool L_47 = V_11;
if (L_47)
{
goto IL_013e;
}
}
IL_0134:
{
t1_126 * L_48 = V_7;
t1_139 * L_49 = V_9;
VirtFuncInvoker1< int32_t, t1_1 * >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_48, L_49);
}
IL_013e:
{
t1_142 * L_50 = V_10;
bool L_51 = (bool)VirtFuncInvoker0< bool >::Invoke(7 /* System.Boolean Mono.Security.X509.X509CertificateCollection/X509CertificateEnumerator::MoveNext() */, L_50);
if (L_51)
{
goto IL_00c3;
}
}
IL_014a:
{
IL2CPP_LEAVE(0x165, FINALLY_014f);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (t1_43 *)e.ex;
goto FINALLY_014f;
}
FINALLY_014f:
{ // begin finally (depth: 1)
{
t1_142 * L_52 = V_10;
V_48 = ((t1_1 *)IsInst(L_52, t1_841_TI_var));
t1_1 * L_53 = V_48;
if (L_53)
{
goto IL_015d;
}
}
IL_015c:
{
IL2CPP_END_FINALLY(335)
}
IL_015d:
{
t1_1 * L_54 = V_48;
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, t1_841_TI_var, L_54);
IL2CPP_END_FINALLY(335)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(335)
{
IL2CPP_JUMP_TBL(0x165, IL_0165)
IL2CPP_RETHROW_IF_UNHANDLED(t1_43 *)
}
IL_0165:
{
t1_126 * L_55 = V_1;
t1_1 * L_56 = (t1_1 *)VirtFuncInvoker0< t1_1 * >::Invoke(43 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_55);
V_15 = L_56;
}
IL_016d:
try
{ // begin try (depth: 1)
{
goto IL_01f2;
}
IL_0172:
{
t1_1 * L_57 = V_15;
t1_1 * L_58 = (t1_1 *)InterfaceFuncInvoker0< t1_1 * >::Invoke(0 /* System.Object System.Collections.IEnumerator::get_Current() */, t1_143_TI_var, L_57);
V_14 = ((t1_139 *)CastclassClass(L_58, t1_139_TI_var));
V_16 = 0;
t1_137 * L_59 = m1_1348(__this, NULL);
t1_142 * L_60 = m1_1399(L_59, NULL);
V_18 = L_60;
}
IL_0190:
try
{ // begin try (depth: 2)
{
goto IL_01ba;
}
IL_0195:
{
t1_142 * L_61 = V_18;
t1_139 * L_62 = m1_1392(L_61, NULL);
V_17 = L_62;
t1_139 * L_63 = V_14;
t1_83* L_64 = (t1_83*)VirtFuncInvoker0< t1_83* >::Invoke(8 /* System.Byte[] Mono.Security.X509.X509Certificate::get_RawData() */, L_63);
t1_139 * L_65 = V_17;
t1_83* L_66 = (t1_83*)VirtFuncInvoker0< t1_83* >::Invoke(8 /* System.Byte[] Mono.Security.X509.X509Certificate::get_RawData() */, L_65);
bool L_67 = m1_1350(__this, L_64, L_66, NULL);
if (!L_67)
{
goto IL_01ba;
}
}
IL_01b7:
{
V_16 = 1;
}
IL_01ba:
{
t1_142 * L_68 = V_18;
bool L_69 = (bool)VirtFuncInvoker0< bool >::Invoke(7 /* System.Boolean Mono.Security.X509.X509CertificateCollection/X509CertificateEnumerator::MoveNext() */, L_68);
if (L_69)
{
goto IL_0195;
}
}
IL_01c6:
{
IL2CPP_LEAVE(0x1E1, FINALLY_01cb);
}
} // end try (depth: 2)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (t1_43 *)e.ex;
goto FINALLY_01cb;
}
FINALLY_01cb:
{ // begin finally (depth: 2)
{
t1_142 * L_70 = V_18;
V_49 = ((t1_1 *)IsInst(L_70, t1_841_TI_var));
t1_1 * L_71 = V_49;
if (L_71)
{
goto IL_01d9;
}
}
IL_01d8:
{
IL2CPP_END_FINALLY(459)
}
IL_01d9:
{
t1_1 * L_72 = V_49;
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, t1_841_TI_var, L_72);
IL2CPP_END_FINALLY(459)
}
} // end finally (depth: 2)
IL2CPP_CLEANUP(459)
{
IL2CPP_JUMP_TBL(0x1E1, IL_01e1)
IL2CPP_RETHROW_IF_UNHANDLED(t1_43 *)
}
IL_01e1:
{
bool L_73 = V_16;
if (L_73)
{
goto IL_01f2;
}
}
IL_01e8:
{
t1_126 * L_74 = V_8;
t1_139 * L_75 = V_14;
VirtFuncInvoker1< int32_t, t1_1 * >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_74, L_75);
}
IL_01f2:
{
t1_1 * L_76 = V_15;
bool L_77 = (bool)InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, t1_143_TI_var, L_76);
if (L_77)
{
goto IL_0172;
}
}
IL_01fe:
{
IL2CPP_LEAVE(0x219, FINALLY_0203);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (t1_43 *)e.ex;
goto FINALLY_0203;
}
FINALLY_0203:
{ // begin finally (depth: 1)
{
t1_1 * L_78 = V_15;
V_50 = ((t1_1 *)IsInst(L_78, t1_841_TI_var));
t1_1 * L_79 = V_50;
if (L_79)
{
goto IL_0211;
}
}
IL_0210:
{
IL2CPP_END_FINALLY(515)
}
IL_0211:
{
t1_1 * L_80 = V_50;
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, t1_841_TI_var, L_80);
IL2CPP_END_FINALLY(515)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(515)
{
IL2CPP_JUMP_TBL(0x219, IL_0219)
IL2CPP_RETHROW_IF_UNHANDLED(t1_43 *)
}
IL_0219:
{
t1_126 * L_81 = V_8;
t1_1 * L_82 = (t1_1 *)VirtFuncInvoker0< t1_1 * >::Invoke(43 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_81);
V_20 = L_82;
}
IL_0222:
try
{ // begin try (depth: 1)
{
goto IL_023d;
}
IL_0227:
{
t1_1 * L_83 = V_20;
t1_1 * L_84 = (t1_1 *)InterfaceFuncInvoker0< t1_1 * >::Invoke(0 /* System.Object System.Collections.IEnumerator::get_Current() */, t1_143_TI_var, L_83);
V_19 = ((t1_139 *)CastclassClass(L_84, t1_139_TI_var));
t1_139 * L_85 = V_19;
m1_1364(__this, L_85, NULL);
}
IL_023d:
{
t1_1 * L_86 = V_20;
bool L_87 = (bool)InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, t1_143_TI_var, L_86);
if (L_87)
{
goto IL_0227;
}
}
IL_0249:
{
IL2CPP_LEAVE(0x264, FINALLY_024e);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (t1_43 *)e.ex;
goto FINALLY_024e;
}
FINALLY_024e:
{ // begin finally (depth: 1)
{
t1_1 * L_88 = V_20;
V_51 = ((t1_1 *)IsInst(L_88, t1_841_TI_var));
t1_1 * L_89 = V_51;
if (L_89)
{
goto IL_025c;
}
}
IL_025b:
{
IL2CPP_END_FINALLY(590)
}
IL_025c:
{
t1_1 * L_90 = V_51;
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, t1_841_TI_var, L_90);
IL2CPP_END_FINALLY(590)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(590)
{
IL2CPP_JUMP_TBL(0x264, IL_0264)
IL2CPP_RETHROW_IF_UNHANDLED(t1_43 *)
}
IL_0264:
{
t1_126 * L_91 = V_7;
t1_1 * L_92 = (t1_1 *)VirtFuncInvoker0< t1_1 * >::Invoke(43 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_91);
V_22 = L_92;
}
IL_026d:
try
{ // begin try (depth: 1)
{
goto IL_0288;
}
IL_0272:
{
t1_1 * L_93 = V_22;
t1_1 * L_94 = (t1_1 *)InterfaceFuncInvoker0< t1_1 * >::Invoke(0 /* System.Object System.Collections.IEnumerator::get_Current() */, t1_143_TI_var, L_93);
V_21 = ((t1_139 *)CastclassClass(L_94, t1_139_TI_var));
t1_139 * L_95 = V_21;
m1_1362(__this, L_95, NULL);
}
IL_0288:
{
t1_1 * L_96 = V_22;
bool L_97 = (bool)InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, t1_143_TI_var, L_96);
if (L_97)
{
goto IL_0272;
}
}
IL_0294:
{
IL2CPP_LEAVE(0x2AF, FINALLY_0299);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (t1_43 *)e.ex;
goto FINALLY_0299;
}
FINALLY_0299:
{ // begin finally (depth: 1)
{
t1_1 * L_98 = V_22;
V_52 = ((t1_1 *)IsInst(L_98, t1_841_TI_var));
t1_1 * L_99 = V_52;
if (L_99)
{
goto IL_02a7;
}
}
IL_02a6:
{
IL2CPP_END_FINALLY(665)
}
IL_02a7:
{
t1_1 * L_100 = V_52;
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, t1_841_TI_var, L_100);
IL2CPP_END_FINALLY(665)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(665)
{
IL2CPP_JUMP_TBL(0x2AF, IL_02af)
IL2CPP_RETHROW_IF_UNHANDLED(t1_43 *)
}
IL_02af:
{
t1_126 * L_101 = (__this->f9);
int32_t L_102 = (int32_t)VirtFuncInvoker0< int32_t >::Invoke(23 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_101);
if ((((int32_t)L_102) <= ((int32_t)0)))
{
goto IL_035f;
}
}
{
t1_134 * L_103 = (t1_134 *)il2cpp_codegen_object_new (t1_134_TI_var);
m1_1410(L_103, ((int32_t)48), NULL);
V_23 = L_103;
t1_126 * L_104 = (__this->f9);
t1_1 * L_105 = (t1_1 *)VirtFuncInvoker0< t1_1 * >::Invoke(43 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_104);
V_25 = L_105;
}
IL_02d6:
try
{ // begin try (depth: 1)
{
goto IL_030e;
}
IL_02db:
{
t1_1 * L_106 = V_25;
t1_1 * L_107 = (t1_1 *)InterfaceFuncInvoker0< t1_1 * >::Invoke(0 /* System.Object System.Collections.IEnumerator::get_Current() */, t1_143_TI_var, L_106);
V_24 = ((t1_133 *)CastclassClass(L_107, t1_133_TI_var));
t1_133 * L_108 = V_24;
t1_18* L_109 = m1_1326(L_108, NULL);
bool L_110 = m1_343(L_109, _stringLiteral376, NULL);
if (!L_110)
{
goto IL_030e;
}
}
IL_02ff:
{
t1_134 * L_111 = V_23;
t1_133 * L_112 = V_24;
t1_134 * L_113 = m1_1327(L_112, NULL);
m1_1420(L_111, L_113, NULL);
}
IL_030e:
{
t1_1 * L_114 = V_25;
bool L_115 = (bool)InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, t1_143_TI_var, L_114);
if (L_115)
{
goto IL_02db;
}
}
IL_031a:
{
IL2CPP_LEAVE(0x335, FINALLY_031f);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (t1_43 *)e.ex;
goto FINALLY_031f;
}
FINALLY_031f:
{ // begin finally (depth: 1)
{
t1_1 * L_116 = V_25;
V_53 = ((t1_1 *)IsInst(L_116, t1_841_TI_var));
t1_1 * L_117 = V_53;
if (L_117)
{
goto IL_032d;
}
}
IL_032c:
{
IL2CPP_END_FINALLY(799)
}
IL_032d:
{
t1_1 * L_118 = V_53;
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, t1_841_TI_var, L_118);
IL2CPP_END_FINALLY(799)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(799)
{
IL2CPP_JUMP_TBL(0x335, IL_0335)
IL2CPP_RETHROW_IF_UNHANDLED(t1_43 *)
}
IL_0335:
{
t1_134 * L_119 = V_23;
int32_t L_120 = m1_1413(L_119, NULL);
if ((((int32_t)L_120) <= ((int32_t)0)))
{
goto IL_035f;
}
}
{
t1_134 * L_121 = V_23;
t1_148 * L_122 = m1_1361(__this, L_121, _stringLiteral385, NULL);
V_26 = L_122;
t1_134 * L_123 = V_0;
t1_148 * L_124 = V_26;
t1_134 * L_125 = m1_1445(L_124, NULL);
m1_1420(L_123, L_125, NULL);
}
IL_035f:
{
t1_126 * L_126 = (__this->f9);
int32_t L_127 = (int32_t)VirtFuncInvoker0< int32_t >::Invoke(23 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_126);
if ((((int32_t)L_127) <= ((int32_t)0)))
{
goto IL_044c;
}
}
{
t1_134 * L_128 = (t1_134 *)il2cpp_codegen_object_new (t1_134_TI_var);
m1_1410(L_128, ((int32_t)48), NULL);
V_27 = L_128;
t1_126 * L_129 = (__this->f9);
t1_1 * L_130 = (t1_1 *)VirtFuncInvoker0< t1_1 * >::Invoke(43 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_129);
V_29 = L_130;
}
IL_0386:
try
{ // begin try (depth: 1)
{
goto IL_03d4;
}
IL_038b:
{
t1_1 * L_131 = V_29;
t1_1 * L_132 = (t1_1 *)InterfaceFuncInvoker0< t1_1 * >::Invoke(0 /* System.Object System.Collections.IEnumerator::get_Current() */, t1_143_TI_var, L_131);
V_28 = ((t1_133 *)CastclassClass(L_132, t1_133_TI_var));
t1_133 * L_133 = V_28;
t1_18* L_134 = m1_1326(L_133, NULL);
bool L_135 = m1_343(L_134, _stringLiteral400, NULL);
if (L_135)
{
goto IL_03c5;
}
}
IL_03af:
{
t1_133 * L_136 = V_28;
t1_18* L_137 = m1_1326(L_136, NULL);
bool L_138 = m1_343(L_137, _stringLiteral401, NULL);
if (!L_138)
{
goto IL_03d4;
}
}
IL_03c5:
{
t1_134 * L_139 = V_27;
t1_133 * L_140 = V_28;
t1_134 * L_141 = m1_1327(L_140, NULL);
m1_1420(L_139, L_141, NULL);
}
IL_03d4:
{
t1_1 * L_142 = V_29;
bool L_143 = (bool)InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, t1_143_TI_var, L_142);
if (L_143)
{
goto IL_038b;
}
}
IL_03e0:
{
IL2CPP_LEAVE(0x3FB, FINALLY_03e5);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (t1_43 *)e.ex;
goto FINALLY_03e5;
}
FINALLY_03e5:
{ // begin finally (depth: 1)
{
t1_1 * L_144 = V_29;
V_54 = ((t1_1 *)IsInst(L_144, t1_841_TI_var));
t1_1 * L_145 = V_54;
if (L_145)
{
goto IL_03f3;
}
}
IL_03f2:
{
IL2CPP_END_FINALLY(997)
}
IL_03f3:
{
t1_1 * L_146 = V_54;
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, t1_841_TI_var, L_146);
IL2CPP_END_FINALLY(997)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(997)
{
IL2CPP_JUMP_TBL(0x3FB, IL_03fb)
IL2CPP_RETHROW_IF_UNHANDLED(t1_43 *)
}
IL_03fb:
{
t1_134 * L_147 = V_27;
int32_t L_148 = m1_1413(L_147, NULL);
if ((((int32_t)L_148) <= ((int32_t)0)))
{
goto IL_044c;
}
}
{
t1_134 * L_149 = (t1_134 *)il2cpp_codegen_object_new (t1_134_TI_var);
m1_1410(L_149, ((int32_t)160), NULL);
V_30 = L_149;
t1_134 * L_150 = V_30;
t1_134 * L_151 = V_27;
t1_83* L_152 = (t1_83*)VirtFuncInvoker0< t1_83* >::Invoke(4 /* System.Byte[] Mono.Security.ASN1::GetBytes() */, L_151);
t1_134 * L_153 = (t1_134 *)il2cpp_codegen_object_new (t1_134_TI_var);
m1_1411(L_153, 4, L_152, NULL);
m1_1420(L_150, L_153, NULL);
t1_148 * L_154 = (t1_148 *)il2cpp_codegen_object_new (t1_148_TI_var);
m1_1442(L_154, _stringLiteral364, NULL);
V_31 = L_154;
t1_148 * L_155 = V_31;
t1_134 * L_156 = V_30;
m1_1447(L_155, L_156, NULL);
t1_134 * L_157 = V_0;
t1_148 * L_158 = V_31;
t1_134 * L_159 = m1_1445(L_158, NULL);
m1_1420(L_157, L_159, NULL);
}
IL_044c:
{
t1_126 * L_160 = (__this->f9);
int32_t L_161 = (int32_t)VirtFuncInvoker0< int32_t >::Invoke(23 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_160);
if ((((int32_t)L_161) <= ((int32_t)0)))
{
goto IL_04fc;
}
}
{
t1_134 * L_162 = (t1_134 *)il2cpp_codegen_object_new (t1_134_TI_var);
m1_1410(L_162, ((int32_t)48), NULL);
V_32 = L_162;
t1_126 * L_163 = (__this->f9);
t1_1 * L_164 = (t1_1 *)VirtFuncInvoker0< t1_1 * >::Invoke(43 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_163);
V_34 = L_164;
}
IL_0473:
try
{ // begin try (depth: 1)
{
goto IL_04ab;
}
IL_0478:
{
t1_1 * L_165 = V_34;
t1_1 * L_166 = (t1_1 *)InterfaceFuncInvoker0< t1_1 * >::Invoke(0 /* System.Object System.Collections.IEnumerator::get_Current() */, t1_143_TI_var, L_165);
V_33 = ((t1_133 *)CastclassClass(L_166, t1_133_TI_var));
t1_133 * L_167 = V_33;
t1_18* L_168 = m1_1326(L_167, NULL);
bool L_169 = m1_343(L_168, _stringLiteral403, NULL);
if (!L_169)
{
goto IL_04ab;
}
}
IL_049c:
{
t1_134 * L_170 = V_32;
t1_133 * L_171 = V_33;
t1_134 * L_172 = m1_1327(L_171, NULL);
m1_1420(L_170, L_172, NULL);
}
IL_04ab:
{
t1_1 * L_173 = V_34;
bool L_174 = (bool)InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, t1_143_TI_var, L_173);
if (L_174)
{
goto IL_0478;
}
}
IL_04b7:
{
IL2CPP_LEAVE(0x4D2, FINALLY_04bc);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (t1_43 *)e.ex;
goto FINALLY_04bc;
}
FINALLY_04bc:
{ // begin finally (depth: 1)
{
t1_1 * L_175 = V_34;
V_55 = ((t1_1 *)IsInst(L_175, t1_841_TI_var));
t1_1 * L_176 = V_55;
if (L_176)
{
goto IL_04ca;
}
}
IL_04c9:
{
IL2CPP_END_FINALLY(1212)
}
IL_04ca:
{
t1_1 * L_177 = V_55;
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, t1_841_TI_var, L_177);
IL2CPP_END_FINALLY(1212)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(1212)
{
IL2CPP_JUMP_TBL(0x4D2, IL_04d2)
IL2CPP_RETHROW_IF_UNHANDLED(t1_43 *)
}
IL_04d2:
{
t1_134 * L_178 = V_32;
int32_t L_179 = m1_1413(L_178, NULL);
if ((((int32_t)L_179) <= ((int32_t)0)))
{
goto IL_04fc;
}
}
{
t1_134 * L_180 = V_32;
t1_148 * L_181 = m1_1361(__this, L_180, _stringLiteral385, NULL);
V_35 = L_181;
t1_134 * L_182 = V_0;
t1_148 * L_183 = V_35;
t1_134 * L_184 = m1_1445(L_183, NULL);
m1_1420(L_182, L_184, NULL);
}
IL_04fc:
{
t1_134 * L_185 = V_0;
t1_83* L_186 = (t1_83*)VirtFuncInvoker0< t1_83* >::Invoke(4 /* System.Byte[] Mono.Security.ASN1::GetBytes() */, L_185);
t1_134 * L_187 = (t1_134 *)il2cpp_codegen_object_new (t1_134_TI_var);
m1_1411(L_187, 4, L_186, NULL);
V_36 = L_187;
t1_134 * L_188 = (t1_134 *)il2cpp_codegen_object_new (t1_134_TI_var);
m1_1410(L_188, ((int32_t)160), NULL);
V_37 = L_188;
t1_134 * L_189 = V_37;
t1_134 * L_190 = V_36;
m1_1420(L_189, L_190, NULL);
t1_148 * L_191 = (t1_148 *)il2cpp_codegen_object_new (t1_148_TI_var);
m1_1442(L_191, _stringLiteral364, NULL);
V_38 = L_191;
t1_148 * L_192 = V_38;
t1_134 * L_193 = V_37;
m1_1447(L_192, L_193, NULL);
t1_134 * L_194 = (t1_134 *)il2cpp_codegen_object_new (t1_134_TI_var);
m1_1410(L_194, ((int32_t)48), NULL);
V_39 = L_194;
t1_83* L_195 = (__this->f1);
if (!L_195)
{
goto IL_0600;
}
}
{
V_40 = ((t1_83*)SZArrayNew(t1_83_TI_var, ((int32_t)20)));
t1_111 * L_196 = m1_1349(__this, NULL);
t1_83* L_197 = V_40;
VirtActionInvoker1< t1_83* >::Invoke(4 /* System.Void System.Security.Cryptography.RandomNumberGenerator::GetBytes(System.Byte[]) */, L_196, L_197);
t1_83* L_198 = (__this->f1);
t1_83* L_199 = V_40;
int32_t L_200 = (__this->f8);
t1_148 * L_201 = V_38;
t1_134 * L_202 = m1_1446(L_201, NULL);
t1_134 * L_203 = m1_1424(L_202, 0, NULL);
t1_83* L_204 = m1_1416(L_203, NULL);
t1_83* L_205 = m1_1359(__this, L_198, L_199, L_200, L_204, NULL);
V_41 = L_205;
t1_134 * L_206 = (t1_134 *)il2cpp_codegen_object_new (t1_134_TI_var);
m1_1410(L_206, ((int32_t)48), NULL);
V_42 = L_206;
t1_134 * L_207 = V_42;
t1_134 * L_208 = m1_1428(NULL, _stringLiteral367, NULL);
m1_1420(L_207, L_208, NULL);
t1_134 * L_209 = V_42;
t1_134 * L_210 = (t1_134 *)il2cpp_codegen_object_new (t1_134_TI_var);
m1_1410(L_210, 5, NULL);
m1_1420(L_209, L_210, NULL);
t1_134 * L_211 = (t1_134 *)il2cpp_codegen_object_new (t1_134_TI_var);
m1_1410(L_211, ((int32_t)48), NULL);
V_43 = L_211;
t1_134 * L_212 = V_43;
t1_134 * L_213 = V_42;
m1_1420(L_212, L_213, NULL);
t1_134 * L_214 = V_43;
t1_83* L_215 = V_41;
t1_134 * L_216 = (t1_134 *)il2cpp_codegen_object_new (t1_134_TI_var);
m1_1411(L_216, 4, L_215, NULL);
m1_1420(L_214, L_216, NULL);
t1_134 * L_217 = V_39;
t1_134 * L_218 = V_43;
m1_1420(L_217, L_218, NULL);
t1_134 * L_219 = V_39;
t1_83* L_220 = V_40;
t1_134 * L_221 = (t1_134 *)il2cpp_codegen_object_new (t1_134_TI_var);
m1_1411(L_221, 4, L_220, NULL);
m1_1420(L_219, L_221, NULL);
t1_134 * L_222 = V_39;
int32_t L_223 = (__this->f8);
t1_134 * L_224 = m1_1427(NULL, L_223, NULL);
m1_1420(L_222, L_224, NULL);
}
IL_0600:
{
t1_83* L_225 = ((t1_83*)SZArrayNew(t1_83_TI_var, 1));
*((uint8_t*)(uint8_t*)SZArrayLdElema(L_225, 0, sizeof(uint8_t))) = (uint8_t)3;
t1_134 * L_226 = (t1_134 *)il2cpp_codegen_object_new (t1_134_TI_var);
m1_1411(L_226, 2, L_225, NULL);
V_44 = L_226;
t1_134 * L_227 = (t1_134 *)il2cpp_codegen_object_new (t1_134_TI_var);
m1_1410(L_227, ((int32_t)48), NULL);
V_45 = L_227;
t1_134 * L_228 = V_45;
t1_134 * L_229 = V_44;
m1_1420(L_228, L_229, NULL);
t1_134 * L_230 = V_45;
t1_148 * L_231 = V_38;
t1_134 * L_232 = m1_1445(L_231, NULL);
m1_1420(L_230, L_232, NULL);
t1_134 * L_233 = V_39;
int32_t L_234 = m1_1413(L_233, NULL);
if ((((int32_t)L_234) <= ((int32_t)0)))
{
goto IL_064b;
}
}
{
t1_134 * L_235 = V_45;
t1_134 * L_236 = V_39;
m1_1420(L_235, L_236, NULL);
}
IL_064b:
{
t1_134 * L_237 = V_45;
t1_83* L_238 = (t1_83*)VirtFuncInvoker0< t1_83* >::Invoke(4 /* System.Byte[] Mono.Security.ASN1::GetBytes() */, L_237);
return L_238;
}
}
extern TypeInfo* t1_83_TI_var;
extern TypeInfo* t1_134_TI_var;
extern TypeInfo* t1_148_TI_var;
extern Il2CppCodeGenString* _stringLiteral364;
extern Il2CppCodeGenString* _stringLiteral372;
extern "C" t1_148 * m1_1361 (t1_136 * __this, t1_134 * p0, t1_18* p1, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_83_TI_var = il2cpp_codegen_type_info_from_index(42);
t1_134_TI_var = il2cpp_codegen_type_info_from_index(148);
t1_148_TI_var = il2cpp_codegen_type_info_from_index(156);
_stringLiteral364 = il2cpp_codegen_string_literal_from_index(364);
_stringLiteral372 = il2cpp_codegen_string_literal_from_index(372);
s_Il2CppMethodIntialized = true;
}
t1_83* V_0 = {0};
t1_134 * V_1 = {0};
t1_134 * V_2 = {0};
t1_83* V_3 = {0};
t1_134 * V_4 = {0};
t1_134 * V_5 = {0};
t1_134 * V_6 = {0};
t1_134 * V_7 = {0};
t1_134 * V_8 = {0};
t1_148 * V_9 = {0};
{
V_0 = ((t1_83*)SZArrayNew(t1_83_TI_var, 8));
t1_111 * L_0 = m1_1349(__this, NULL);
t1_83* L_1 = V_0;
VirtActionInvoker1< t1_83* >::Invoke(4 /* System.Void System.Security.Cryptography.RandomNumberGenerator::GetBytes(System.Byte[]) */, L_0, L_1);
t1_134 * L_2 = (t1_134 *)il2cpp_codegen_object_new (t1_134_TI_var);
m1_1410(L_2, ((int32_t)48), NULL);
V_1 = L_2;
t1_134 * L_3 = V_1;
t1_83* L_4 = V_0;
t1_134 * L_5 = (t1_134 *)il2cpp_codegen_object_new (t1_134_TI_var);
m1_1411(L_5, 4, L_4, NULL);
m1_1420(L_3, L_5, NULL);
t1_134 * L_6 = V_1;
int32_t L_7 = (__this->f8);
t1_134 * L_8 = m1_1427(NULL, L_7, NULL);
m1_1420(L_6, L_8, NULL);
t1_134 * L_9 = (t1_134 *)il2cpp_codegen_object_new (t1_134_TI_var);
m1_1410(L_9, ((int32_t)48), NULL);
V_2 = L_9;
t1_134 * L_10 = V_2;
t1_18* L_11 = p1;
t1_134 * L_12 = m1_1428(NULL, L_11, NULL);
m1_1420(L_10, L_12, NULL);
t1_134 * L_13 = V_2;
t1_134 * L_14 = V_1;
m1_1420(L_13, L_14, NULL);
t1_18* L_15 = p1;
t1_83* L_16 = V_0;
int32_t L_17 = (__this->f8);
t1_134 * L_18 = p0;
t1_83* L_19 = (t1_83*)VirtFuncInvoker0< t1_83* >::Invoke(4 /* System.Byte[] Mono.Security.ASN1::GetBytes() */, L_18);
t1_83* L_20 = m1_1354(__this, L_15, L_16, L_17, L_19, NULL);
V_3 = L_20;
t1_83* L_21 = V_3;
t1_134 * L_22 = (t1_134 *)il2cpp_codegen_object_new (t1_134_TI_var);
m1_1411(L_22, ((int32_t)128), L_21, NULL);
V_4 = L_22;
t1_134 * L_23 = (t1_134 *)il2cpp_codegen_object_new (t1_134_TI_var);
m1_1410(L_23, ((int32_t)48), NULL);
V_5 = L_23;
t1_134 * L_24 = V_5;
t1_134 * L_25 = m1_1428(NULL, _stringLiteral364, NULL);
m1_1420(L_24, L_25, NULL);
t1_134 * L_26 = V_5;
t1_134 * L_27 = V_2;
m1_1420(L_26, L_27, NULL);
t1_134 * L_28 = V_5;
t1_134 * L_29 = V_4;
m1_1420(L_28, L_29, NULL);
t1_134 * L_30 = (t1_134 *)il2cpp_codegen_object_new (t1_134_TI_var);
m1_1411(L_30, 2, ((t1_83*)SZArrayNew(t1_83_TI_var, 1)), NULL);
V_6 = L_30;
t1_134 * L_31 = (t1_134 *)il2cpp_codegen_object_new (t1_134_TI_var);
m1_1410(L_31, ((int32_t)48), NULL);
V_7 = L_31;
t1_134 * L_32 = V_7;
t1_134 * L_33 = V_6;
m1_1420(L_32, L_33, NULL);
t1_134 * L_34 = V_7;
t1_134 * L_35 = V_5;
m1_1420(L_34, L_35, NULL);
t1_134 * L_36 = (t1_134 *)il2cpp_codegen_object_new (t1_134_TI_var);
m1_1410(L_36, ((int32_t)160), NULL);
V_8 = L_36;
t1_134 * L_37 = V_8;
t1_134 * L_38 = V_7;
m1_1420(L_37, L_38, NULL);
t1_148 * L_39 = (t1_148 *)il2cpp_codegen_object_new (t1_148_TI_var);
m1_1442(L_39, _stringLiteral372, NULL);
V_9 = L_39;
t1_148 * L_40 = V_9;
t1_134 * L_41 = V_8;
m1_1447(L_40, L_41, NULL);
t1_148 * L_42 = V_9;
return L_42;
}
}
extern "C" void m1_1362 (t1_136 * __this, t1_139 * p0, const MethodInfo* method)
{
{
t1_139 * L_0 = p0;
m1_1363(__this, L_0, (t1_1 *)NULL, NULL);
return;
}
}
extern TypeInfo* t1_133_TI_var;
extern TypeInfo* t1_148_TI_var;
extern TypeInfo* t1_139_TI_var;
extern Il2CppCodeGenString* _stringLiteral376;
extern "C" void m1_1363 (t1_136 * __this, t1_139 * p0, t1_1 * p1, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_133_TI_var = il2cpp_codegen_type_info_from_index(159);
t1_148_TI_var = il2cpp_codegen_type_info_from_index(156);
t1_139_TI_var = il2cpp_codegen_type_info_from_index(160);
_stringLiteral376 = il2cpp_codegen_string_literal_from_index(376);
s_Il2CppMethodIntialized = true;
}
bool V_0 = false;
int32_t V_1 = 0;
t1_133 * V_2 = {0};
t1_134 * V_3 = {0};
t1_134 * V_4 = {0};
t1_148 * V_5 = {0};
t1_139 * V_6 = {0};
{
V_0 = 0;
V_1 = 0;
goto IL_0085;
}
IL_0009:
{
t1_126 * L_0 = (__this->f9);
int32_t L_1 = V_1;
t1_1 * L_2 = (t1_1 *)VirtFuncInvoker1< t1_1 *, int32_t >::Invoke(21 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_0, L_1);
V_2 = ((t1_133 *)CastclassClass(L_2, t1_133_TI_var));
t1_133 * L_3 = V_2;
t1_18* L_4 = m1_1326(L_3, NULL);
bool L_5 = m1_343(L_4, _stringLiteral376, NULL);
if (!L_5)
{
goto IL_0081;
}
}
{
t1_133 * L_6 = V_2;
t1_134 * L_7 = m1_1327(L_6, NULL);
V_3 = L_7;
t1_134 * L_8 = V_3;
t1_134 * L_9 = m1_1424(L_8, 1, NULL);
V_4 = L_9;
t1_134 * L_10 = V_4;
t1_83* L_11 = m1_1416(L_10, NULL);
t1_148 * L_12 = (t1_148 *)il2cpp_codegen_object_new (t1_148_TI_var);
m1_1443(L_12, L_11, NULL);
V_5 = L_12;
t1_148 * L_13 = V_5;
t1_134 * L_14 = m1_1446(L_13, NULL);
t1_134 * L_15 = m1_1424(L_14, 0, NULL);
t1_83* L_16 = m1_1416(L_15, NULL);
t1_139 * L_17 = (t1_139 *)il2cpp_codegen_object_new (t1_139_TI_var);
m1_1372(L_17, L_16, NULL);
V_6 = L_17;
t1_139 * L_18 = p0;
t1_83* L_19 = (t1_83*)VirtFuncInvoker0< t1_83* >::Invoke(8 /* System.Byte[] Mono.Security.X509.X509Certificate::get_RawData() */, L_18);
t1_139 * L_20 = V_6;
t1_83* L_21 = (t1_83*)VirtFuncInvoker0< t1_83* >::Invoke(8 /* System.Byte[] Mono.Security.X509.X509Certificate::get_RawData() */, L_20);
bool L_22 = m1_1350(__this, L_19, L_21, NULL);
if (!L_22)
{
goto IL_0081;
}
}
{
V_0 = 1;
}
IL_0081:
{
int32_t L_23 = V_1;
V_1 = ((int32_t)((int32_t)L_23+(int32_t)1));
}
IL_0085:
{
bool L_24 = V_0;
if (L_24)
{
goto IL_009c;
}
}
{
int32_t L_25 = V_1;
t1_126 * L_26 = (__this->f9);
int32_t L_27 = (int32_t)VirtFuncInvoker0< int32_t >::Invoke(23 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_26);
if ((((int32_t)L_25) < ((int32_t)L_27)))
{
goto IL_0009;
}
}
IL_009c:
{
bool L_28 = V_0;
if (L_28)
{
goto IL_00c7;
}
}
{
t1_126 * L_29 = (__this->f9);
t1_139 * L_30 = p0;
t1_1 * L_31 = p1;
t1_134 * L_32 = m1_1358(__this, L_30, L_31, NULL);
t1_133 * L_33 = (t1_133 *)il2cpp_codegen_object_new (t1_133_TI_var);
m1_1325(L_33, _stringLiteral376, L_32, NULL);
VirtFuncInvoker1< int32_t, t1_1 * >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_29, L_33);
__this->f7 = 1;
}
IL_00c7:
{
return;
}
}
extern "C" void m1_1364 (t1_136 * __this, t1_139 * p0, const MethodInfo* method)
{
{
t1_139 * L_0 = p0;
m1_1365(__this, L_0, (t1_1 *)NULL, NULL);
return;
}
}
extern TypeInfo* t1_133_TI_var;
extern TypeInfo* t1_148_TI_var;
extern TypeInfo* t1_139_TI_var;
extern TypeInfo* t1_45_TI_var;
extern TypeInfo* t1_126_TI_var;
extern TypeInfo* t1_83_TI_var;
extern Il2CppCodeGenString* _stringLiteral376;
extern "C" void m1_1365 (t1_136 * __this, t1_139 * p0, t1_1 * p1, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_133_TI_var = il2cpp_codegen_type_info_from_index(159);
t1_148_TI_var = il2cpp_codegen_type_info_from_index(156);
t1_139_TI_var = il2cpp_codegen_type_info_from_index(160);
t1_45_TI_var = il2cpp_codegen_type_info_from_index(97);
t1_126_TI_var = il2cpp_codegen_type_info_from_index(55);
t1_83_TI_var = il2cpp_codegen_type_info_from_index(42);
_stringLiteral376 = il2cpp_codegen_string_literal_from_index(376);
s_Il2CppMethodIntialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
t1_133 * V_2 = {0};
t1_134 * V_3 = {0};
t1_134 * V_4 = {0};
t1_148 * V_5 = {0};
t1_139 * V_6 = {0};
t1_134 * V_7 = {0};
int32_t V_8 = 0;
int32_t V_9 = 0;
t1_134 * V_10 = {0};
t1_134 * V_11 = {0};
t1_18* V_12 = {0};
t1_126 * V_13 = {0};
t1_134 * V_14 = {0};
int32_t V_15 = 0;
int32_t V_16 = 0;
t1_134 * V_17 = {0};
t1_83* V_18 = {0};
{
V_0 = (-1);
V_1 = 0;
goto IL_018d;
}
IL_0009:
{
t1_126 * L_0 = (__this->f9);
int32_t L_1 = V_1;
t1_1 * L_2 = (t1_1 *)VirtFuncInvoker1< t1_1 *, int32_t >::Invoke(21 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_0, L_1);
V_2 = ((t1_133 *)CastclassClass(L_2, t1_133_TI_var));
t1_133 * L_3 = V_2;
t1_18* L_4 = m1_1326(L_3, NULL);
bool L_5 = m1_343(L_4, _stringLiteral376, NULL);
if (!L_5)
{
goto IL_0189;
}
}
{
t1_133 * L_6 = V_2;
t1_134 * L_7 = m1_1327(L_6, NULL);
V_3 = L_7;
t1_134 * L_8 = V_3;
t1_134 * L_9 = m1_1424(L_8, 1, NULL);
V_4 = L_9;
t1_134 * L_10 = V_4;
t1_83* L_11 = m1_1416(L_10, NULL);
t1_148 * L_12 = (t1_148 *)il2cpp_codegen_object_new (t1_148_TI_var);
m1_1443(L_12, L_11, NULL);
V_5 = L_12;
t1_148 * L_13 = V_5;
t1_134 * L_14 = m1_1446(L_13, NULL);
t1_134 * L_15 = m1_1424(L_14, 0, NULL);
t1_83* L_16 = m1_1416(L_15, NULL);
t1_139 * L_17 = (t1_139 *)il2cpp_codegen_object_new (t1_139_TI_var);
m1_1372(L_17, L_16, NULL);
V_6 = L_17;
t1_139 * L_18 = p0;
t1_83* L_19 = (t1_83*)VirtFuncInvoker0< t1_83* >::Invoke(8 /* System.Byte[] Mono.Security.X509.X509Certificate::get_RawData() */, L_18);
t1_139 * L_20 = V_6;
t1_83* L_21 = (t1_83*)VirtFuncInvoker0< t1_83* >::Invoke(8 /* System.Byte[] Mono.Security.X509.X509Certificate::get_RawData() */, L_20);
bool L_22 = m1_1350(__this, L_19, L_21, NULL);
if (!L_22)
{
goto IL_0189;
}
}
{
t1_1 * L_23 = p1;
if (!L_23)
{
goto IL_0187;
}
}
{
t1_134 * L_24 = V_3;
int32_t L_25 = m1_1413(L_24, NULL);
if ((!(((uint32_t)L_25) == ((uint32_t)3))))
{
goto IL_0182;
}
}
{
t1_134 * L_26 = V_3;
t1_134 * L_27 = m1_1424(L_26, 2, NULL);
V_7 = L_27;
V_8 = 0;
V_9 = 0;
goto IL_0164;
}
IL_00a5:
{
t1_134 * L_28 = V_7;
int32_t L_29 = V_9;
t1_134 * L_30 = m1_1424(L_28, L_29, NULL);
V_10 = L_30;
t1_134 * L_31 = V_10;
t1_134 * L_32 = m1_1424(L_31, 0, NULL);
V_11 = L_32;
t1_134 * L_33 = V_11;
t1_18* L_34 = m1_1430(NULL, L_33, NULL);
V_12 = L_34;
t1_1 * L_35 = p1;
t1_18* L_36 = V_12;
t1_1 * L_37 = (t1_1 *)InterfaceFuncInvoker1< t1_1 *, t1_1 * >::Invoke(0 /* System.Object System.Collections.IDictionary::get_Item(System.Object) */, t1_45_TI_var, L_35, L_36);
V_13 = ((t1_126 *)CastclassClass(L_37, t1_126_TI_var));
t1_126 * L_38 = V_13;
if (!L_38)
{
goto IL_015e;
}
}
{
t1_134 * L_39 = V_10;
t1_134 * L_40 = m1_1424(L_39, 1, NULL);
V_14 = L_40;
t1_126 * L_41 = V_13;
int32_t L_42 = (int32_t)VirtFuncInvoker0< int32_t >::Invoke(23 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_41);
t1_134 * L_43 = V_14;
int32_t L_44 = m1_1413(L_43, NULL);
if ((!(((uint32_t)L_42) == ((uint32_t)L_44))))
{
goto IL_015e;
}
}
{
V_15 = 0;
V_16 = 0;
goto IL_013c;
}
IL_0101:
{
t1_134 * L_45 = V_14;
int32_t L_46 = V_16;
t1_134 * L_47 = m1_1424(L_45, L_46, NULL);
V_17 = L_47;
t1_126 * L_48 = V_13;
int32_t L_49 = V_16;
t1_1 * L_50 = (t1_1 *)VirtFuncInvoker1< t1_1 *, int32_t >::Invoke(21 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_48, L_49);
V_18 = ((t1_83*)Castclass(L_50, t1_83_TI_var));
t1_83* L_51 = V_18;
t1_134 * L_52 = V_17;
t1_83* L_53 = m1_1416(L_52, NULL);
bool L_54 = m1_1350(__this, L_51, L_53, NULL);
if (!L_54)
{
goto IL_0136;
}
}
{
int32_t L_55 = V_15;
V_15 = ((int32_t)((int32_t)L_55+(int32_t)1));
}
IL_0136:
{
int32_t L_56 = V_16;
V_16 = ((int32_t)((int32_t)L_56+(int32_t)1));
}
IL_013c:
{
int32_t L_57 = V_16;
t1_134 * L_58 = V_14;
int32_t L_59 = m1_1413(L_58, NULL);
if ((((int32_t)L_57) < ((int32_t)L_59)))
{
goto IL_0101;
}
}
{
int32_t L_60 = V_15;
t1_134 * L_61 = V_14;
int32_t L_62 = m1_1413(L_61, NULL);
if ((!(((uint32_t)L_60) == ((uint32_t)L_62))))
{
goto IL_015e;
}
}
{
int32_t L_63 = V_8;
V_8 = ((int32_t)((int32_t)L_63+(int32_t)1));
}
IL_015e:
{
int32_t L_64 = V_9;
V_9 = ((int32_t)((int32_t)L_64+(int32_t)1));
}
IL_0164:
{
int32_t L_65 = V_9;
t1_134 * L_66 = V_7;
int32_t L_67 = m1_1413(L_66, NULL);
if ((((int32_t)L_65) < ((int32_t)L_67)))
{
goto IL_00a5;
}
}
{
int32_t L_68 = V_8;
t1_134 * L_69 = V_7;
int32_t L_70 = m1_1413(L_69, NULL);
if ((!(((uint32_t)L_68) == ((uint32_t)L_70))))
{
goto IL_0182;
}
}
{
int32_t L_71 = V_1;
V_0 = L_71;
}
IL_0182:
{
goto IL_0189;
}
IL_0187:
{
int32_t L_72 = V_1;
V_0 = L_72;
}
IL_0189:
{
int32_t L_73 = V_1;
V_1 = ((int32_t)((int32_t)L_73+(int32_t)1));
}
IL_018d:
{
int32_t L_74 = V_0;
if ((!(((uint32_t)L_74) == ((uint32_t)(-1)))))
{
goto IL_01a5;
}
}
{
int32_t L_75 = V_1;
t1_126 * L_76 = (__this->f9);
int32_t L_77 = (int32_t)VirtFuncInvoker0< int32_t >::Invoke(23 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_76);
if ((((int32_t)L_75) < ((int32_t)L_77)))
{
goto IL_0009;
}
}
IL_01a5:
{
int32_t L_78 = V_0;
if ((((int32_t)L_78) == ((int32_t)(-1))))
{
goto IL_01bf;
}
}
{
t1_126 * L_79 = (__this->f9);
int32_t L_80 = V_0;
VirtActionInvoker1< int32_t >::Invoke(39 /* System.Void System.Collections.ArrayList::RemoveAt(System.Int32) */, L_79, L_80);
__this->f7 = 1;
}
IL_01bf:
{
return;
}
}
extern TypeInfo* t1_231_TI_var;
extern TypeInfo* t1_136_TI_var;
extern "C" t1_1 * m1_1366 (t1_136 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_231_TI_var = il2cpp_codegen_type_info_from_index(41);
t1_136_TI_var = il2cpp_codegen_type_info_from_index(154);
s_Il2CppMethodIntialized = true;
}
t1_136 * V_0 = {0};
{
V_0 = (t1_136 *)NULL;
t1_83* L_0 = (__this->f1);
if (!L_0)
{
goto IL_002e;
}
}
{
t1_83* L_1 = m1_1360(__this, NULL);
IL2CPP_RUNTIME_CLASS_INIT(t1_231_TI_var);
t1_231 * L_2 = m1_4263(NULL, NULL);
t1_83* L_3 = (__this->f1);
t1_18* L_4 = (t1_18*)VirtFuncInvoker1< t1_18*, t1_83* >::Invoke(22 /* System.String System.Text.Encoding::GetString(System.Byte[]) */, L_2, L_3);
t1_136 * L_5 = (t1_136 *)il2cpp_codegen_object_new (t1_136_TI_var);
m1_1341(L_5, L_1, L_4, NULL);
V_0 = L_5;
goto IL_003a;
}
IL_002e:
{
t1_83* L_6 = m1_1360(__this, NULL);
t1_136 * L_7 = (t1_136 *)il2cpp_codegen_object_new (t1_136_TI_var);
m1_1340(L_7, L_6, NULL);
V_0 = L_7;
}
IL_003a:
{
t1_136 * L_8 = V_0;
int32_t L_9 = m1_1346(__this, NULL);
m1_1347(L_8, L_9, NULL);
t1_136 * L_10 = V_0;
return L_10;
}
}
extern TypeInfo* t1_136_TI_var;
extern "C" int32_t m1_1367 (t1_1 * __this , const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_136_TI_var = il2cpp_codegen_type_info_from_index(154);
s_Il2CppMethodIntialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(t1_136_TI_var);
int32_t L_0 = ((t1_136_SFs*)t1_136_TI_var->static_fields)->f11;
return L_0;
}
}
extern TypeInfo* t1_83_TI_var;
extern TypeInfo* t1_138_TI_var;
extern FieldInfo* t1_808_f15_FieldInfo_var;
extern FieldInfo* t1_808_f16_FieldInfo_var;
extern FieldInfo* t1_808_f17_FieldInfo_var;
extern "C" void m1_1368 (t1_1 * __this , const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_83_TI_var = il2cpp_codegen_type_info_from_index(42);
t1_138_TI_var = il2cpp_codegen_type_info_from_index(165);
t1_808_f15_FieldInfo_var = il2cpp_codegen_field_info_from_index(29, 15);
t1_808_f16_FieldInfo_var = il2cpp_codegen_field_info_from_index(29, 16);
t1_808_f17_FieldInfo_var = il2cpp_codegen_field_info_from_index(29, 17);
s_Il2CppMethodIntialized = true;
}
{
t1_83* L_0 = ((t1_83*)SZArrayNew(t1_83_TI_var, 3));
*((uint8_t*)(uint8_t*)SZArrayLdElema(L_0, 0, sizeof(uint8_t))) = (uint8_t)((int32_t)85);
t1_83* L_1 = L_0;
*((uint8_t*)(uint8_t*)SZArrayLdElema(L_1, 1, sizeof(uint8_t))) = (uint8_t)4;
t1_83* L_2 = L_1;
*((uint8_t*)(uint8_t*)SZArrayLdElema(L_2, 2, sizeof(uint8_t))) = (uint8_t)6;
((t1_138_SFs*)t1_138_TI_var->static_fields)->f0 = L_2;
t1_83* L_3 = ((t1_83*)SZArrayNew(t1_83_TI_var, 3));
*((uint8_t*)(uint8_t*)SZArrayLdElema(L_3, 0, sizeof(uint8_t))) = (uint8_t)((int32_t)85);
t1_83* L_4 = L_3;
*((uint8_t*)(uint8_t*)SZArrayLdElema(L_4, 1, sizeof(uint8_t))) = (uint8_t)4;
t1_83* L_5 = L_4;
*((uint8_t*)(uint8_t*)SZArrayLdElema(L_5, 2, sizeof(uint8_t))) = (uint8_t)((int32_t)10);
((t1_138_SFs*)t1_138_TI_var->static_fields)->f1 = L_5;
t1_83* L_6 = ((t1_83*)SZArrayNew(t1_83_TI_var, 3));
*((uint8_t*)(uint8_t*)SZArrayLdElema(L_6, 0, sizeof(uint8_t))) = (uint8_t)((int32_t)85);
t1_83* L_7 = L_6;
*((uint8_t*)(uint8_t*)SZArrayLdElema(L_7, 1, sizeof(uint8_t))) = (uint8_t)4;
t1_83* L_8 = L_7;
*((uint8_t*)(uint8_t*)SZArrayLdElema(L_8, 2, sizeof(uint8_t))) = (uint8_t)((int32_t)11);
((t1_138_SFs*)t1_138_TI_var->static_fields)->f2 = L_8;
t1_83* L_9 = ((t1_83*)SZArrayNew(t1_83_TI_var, 3));
*((uint8_t*)(uint8_t*)SZArrayLdElema(L_9, 0, sizeof(uint8_t))) = (uint8_t)((int32_t)85);
t1_83* L_10 = L_9;
*((uint8_t*)(uint8_t*)SZArrayLdElema(L_10, 1, sizeof(uint8_t))) = (uint8_t)4;
t1_83* L_11 = L_10;
*((uint8_t*)(uint8_t*)SZArrayLdElema(L_11, 2, sizeof(uint8_t))) = (uint8_t)3;
((t1_138_SFs*)t1_138_TI_var->static_fields)->f3 = L_11;
t1_83* L_12 = ((t1_83*)SZArrayNew(t1_83_TI_var, 3));
*((uint8_t*)(uint8_t*)SZArrayLdElema(L_12, 0, sizeof(uint8_t))) = (uint8_t)((int32_t)85);
t1_83* L_13 = L_12;
*((uint8_t*)(uint8_t*)SZArrayLdElema(L_13, 1, sizeof(uint8_t))) = (uint8_t)4;
t1_83* L_14 = L_13;
*((uint8_t*)(uint8_t*)SZArrayLdElema(L_14, 2, sizeof(uint8_t))) = (uint8_t)7;
((t1_138_SFs*)t1_138_TI_var->static_fields)->f4 = L_14;
t1_83* L_15 = ((t1_83*)SZArrayNew(t1_83_TI_var, 3));
*((uint8_t*)(uint8_t*)SZArrayLdElema(L_15, 0, sizeof(uint8_t))) = (uint8_t)((int32_t)85);
t1_83* L_16 = L_15;
*((uint8_t*)(uint8_t*)SZArrayLdElema(L_16, 1, sizeof(uint8_t))) = (uint8_t)4;
t1_83* L_17 = L_16;
*((uint8_t*)(uint8_t*)SZArrayLdElema(L_17, 2, sizeof(uint8_t))) = (uint8_t)8;
((t1_138_SFs*)t1_138_TI_var->static_fields)->f5 = L_17;
t1_83* L_18 = ((t1_83*)SZArrayNew(t1_83_TI_var, 3));
*((uint8_t*)(uint8_t*)SZArrayLdElema(L_18, 0, sizeof(uint8_t))) = (uint8_t)((int32_t)85);
t1_83* L_19 = L_18;
*((uint8_t*)(uint8_t*)SZArrayLdElema(L_19, 1, sizeof(uint8_t))) = (uint8_t)4;
t1_83* L_20 = L_19;
*((uint8_t*)(uint8_t*)SZArrayLdElema(L_20, 2, sizeof(uint8_t))) = (uint8_t)((int32_t)9);
((t1_138_SFs*)t1_138_TI_var->static_fields)->f6 = L_20;
t1_83* L_21 = ((t1_83*)SZArrayNew(t1_83_TI_var, ((int32_t)10)));
m1_988(NULL, (t1_33 *)(t1_33 *)L_21, LoadFieldToken(t1_808_f15_FieldInfo_var), NULL);
((t1_138_SFs*)t1_138_TI_var->static_fields)->f7 = L_21;
t1_83* L_22 = ((t1_83*)SZArrayNew(t1_83_TI_var, ((int32_t)10)));
m1_988(NULL, (t1_33 *)(t1_33 *)L_22, LoadFieldToken(t1_808_f16_FieldInfo_var), NULL);
((t1_138_SFs*)t1_138_TI_var->static_fields)->f8 = L_22;
t1_83* L_23 = ((t1_83*)SZArrayNew(t1_83_TI_var, ((int32_t)9)));
m1_988(NULL, (t1_33 *)(t1_33 *)L_23, LoadFieldToken(t1_808_f17_FieldInfo_var), NULL);
((t1_138_SFs*)t1_138_TI_var->static_fields)->f9 = L_23;
t1_83* L_24 = ((t1_83*)SZArrayNew(t1_83_TI_var, 3));
*((uint8_t*)(uint8_t*)SZArrayLdElema(L_24, 0, sizeof(uint8_t))) = (uint8_t)((int32_t)85);
t1_83* L_25 = L_24;
*((uint8_t*)(uint8_t*)SZArrayLdElema(L_25, 1, sizeof(uint8_t))) = (uint8_t)4;
t1_83* L_26 = L_25;
*((uint8_t*)(uint8_t*)SZArrayLdElema(L_26, 2, sizeof(uint8_t))) = (uint8_t)((int32_t)46);
((t1_138_SFs*)t1_138_TI_var->static_fields)->f10 = L_26;
t1_83* L_27 = ((t1_83*)SZArrayNew(t1_83_TI_var, 3));
*((uint8_t*)(uint8_t*)SZArrayLdElema(L_27, 0, sizeof(uint8_t))) = (uint8_t)((int32_t)85);
t1_83* L_28 = L_27;
*((uint8_t*)(uint8_t*)SZArrayLdElema(L_28, 1, sizeof(uint8_t))) = (uint8_t)4;
t1_83* L_29 = L_28;
*((uint8_t*)(uint8_t*)SZArrayLdElema(L_29, 2, sizeof(uint8_t))) = (uint8_t)((int32_t)12);
((t1_138_SFs*)t1_138_TI_var->static_fields)->f11 = L_29;
t1_83* L_30 = ((t1_83*)SZArrayNew(t1_83_TI_var, 3));
*((uint8_t*)(uint8_t*)SZArrayLdElema(L_30, 0, sizeof(uint8_t))) = (uint8_t)((int32_t)85);
t1_83* L_31 = L_30;
*((uint8_t*)(uint8_t*)SZArrayLdElema(L_31, 1, sizeof(uint8_t))) = (uint8_t)4;
t1_83* L_32 = L_31;
*((uint8_t*)(uint8_t*)SZArrayLdElema(L_32, 2, sizeof(uint8_t))) = (uint8_t)4;
((t1_138_SFs*)t1_138_TI_var->static_fields)->f12 = L_32;
t1_83* L_33 = ((t1_83*)SZArrayNew(t1_83_TI_var, 3));
*((uint8_t*)(uint8_t*)SZArrayLdElema(L_33, 0, sizeof(uint8_t))) = (uint8_t)((int32_t)85);
t1_83* L_34 = L_33;
*((uint8_t*)(uint8_t*)SZArrayLdElema(L_34, 1, sizeof(uint8_t))) = (uint8_t)4;
t1_83* L_35 = L_34;
*((uint8_t*)(uint8_t*)SZArrayLdElema(L_35, 2, sizeof(uint8_t))) = (uint8_t)((int32_t)42);
((t1_138_SFs*)t1_138_TI_var->static_fields)->f13 = L_35;
t1_83* L_36 = ((t1_83*)SZArrayNew(t1_83_TI_var, 3));
*((uint8_t*)(uint8_t*)SZArrayLdElema(L_36, 0, sizeof(uint8_t))) = (uint8_t)((int32_t)85);
t1_83* L_37 = L_36;
*((uint8_t*)(uint8_t*)SZArrayLdElema(L_37, 1, sizeof(uint8_t))) = (uint8_t)4;
t1_83* L_38 = L_37;
*((uint8_t*)(uint8_t*)SZArrayLdElema(L_38, 2, sizeof(uint8_t))) = (uint8_t)((int32_t)43);
((t1_138_SFs*)t1_138_TI_var->static_fields)->f14 = L_38;
return;
}
}
extern TypeInfo* t1_158_TI_var;
extern TypeInfo* t1_138_TI_var;
extern Il2CppCodeGenString* _stringLiteral141;
extern "C" t1_18* m1_1369 (t1_1 * __this , t1_134 * p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_158_TI_var = il2cpp_codegen_type_info_from_index(36);
t1_138_TI_var = il2cpp_codegen_type_info_from_index(165);
_stringLiteral141 = il2cpp_codegen_string_literal_from_index(141);
s_Il2CppMethodIntialized = true;
}
t1_158 * V_0 = {0};
int32_t V_1 = 0;
t1_134 * V_2 = {0};
{
t1_158 * L_0 = (t1_158 *)il2cpp_codegen_object_new (t1_158_TI_var);
m1_4291(L_0, NULL);
V_0 = L_0;
V_1 = 0;
goto IL_003b;
}
IL_000d:
{
t1_134 * L_1 = p0;
int32_t L_2 = V_1;
t1_134 * L_3 = m1_1424(L_1, L_2, NULL);
V_2 = L_3;
t1_158 * L_4 = V_0;
t1_134 * L_5 = V_2;
IL2CPP_RUNTIME_CLASS_INIT(t1_138_TI_var);
m1_1371(NULL, L_4, L_5, 1, NULL);
int32_t L_6 = V_1;
t1_134 * L_7 = p0;
int32_t L_8 = m1_1413(L_7, NULL);
if ((((int32_t)L_6) >= ((int32_t)((int32_t)((int32_t)L_8-(int32_t)1)))))
{
goto IL_0037;
}
}
{
t1_158 * L_9 = V_0;
m1_4308(L_9, _stringLiteral141, NULL);
}
IL_0037:
{
int32_t L_10 = V_1;
V_1 = ((int32_t)((int32_t)L_10+(int32_t)1));
}
IL_003b:
{
int32_t L_11 = V_1;
t1_134 * L_12 = p0;
int32_t L_13 = m1_1413(L_12, NULL);
if ((((int32_t)L_11) < ((int32_t)L_13)))
{
goto IL_000d;
}
}
{
t1_158 * L_14 = V_0;
t1_18* L_15 = m1_4303(L_14, NULL);
return L_15;
}
}
extern TypeInfo* t1_158_TI_var;
extern TypeInfo* t1_138_TI_var;
extern "C" t1_18* m1_1370 (t1_1 * __this , t1_134 * p0, bool p1, t1_18* p2, bool p3, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_158_TI_var = il2cpp_codegen_type_info_from_index(36);
t1_138_TI_var = il2cpp_codegen_type_info_from_index(165);
s_Il2CppMethodIntialized = true;
}
t1_158 * V_0 = {0};
int32_t V_1 = 0;
t1_134 * V_2 = {0};
int32_t V_3 = 0;
t1_134 * V_4 = {0};
{
t1_158 * L_0 = (t1_158 *)il2cpp_codegen_object_new (t1_158_TI_var);
m1_4291(L_0, NULL);
V_0 = L_0;
bool L_1 = p1;
if (!L_1)
{
goto IL_0049;
}
}
{
t1_134 * L_2 = p0;
int32_t L_3 = m1_1413(L_2, NULL);
V_1 = ((int32_t)((int32_t)L_3-(int32_t)1));
goto IL_003d;
}
IL_001a:
{
t1_134 * L_4 = p0;
int32_t L_5 = V_1;
t1_134 * L_6 = m1_1424(L_4, L_5, NULL);
V_2 = L_6;
t1_158 * L_7 = V_0;
t1_134 * L_8 = V_2;
bool L_9 = p3;
IL2CPP_RUNTIME_CLASS_INIT(t1_138_TI_var);
m1_1371(NULL, L_7, L_8, L_9, NULL);
int32_t L_10 = V_1;
if ((((int32_t)L_10) <= ((int32_t)0)))
{
goto IL_0039;
}
}
{
t1_158 * L_11 = V_0;
t1_18* L_12 = p2;
m1_4308(L_11, L_12, NULL);
}
IL_0039:
{
int32_t L_13 = V_1;
V_1 = ((int32_t)((int32_t)L_13-(int32_t)1));
}
IL_003d:
{
int32_t L_14 = V_1;
if ((((int32_t)L_14) >= ((int32_t)0)))
{
goto IL_001a;
}
}
{
goto IL_0088;
}
IL_0049:
{
V_3 = 0;
goto IL_007c;
}
IL_0050:
{
t1_134 * L_15 = p0;
int32_t L_16 = V_3;
t1_134 * L_17 = m1_1424(L_15, L_16, NULL);
V_4 = L_17;
t1_158 * L_18 = V_0;
t1_134 * L_19 = V_4;
bool L_20 = p3;
IL2CPP_RUNTIME_CLASS_INIT(t1_138_TI_var);
m1_1371(NULL, L_18, L_19, L_20, NULL);
int32_t L_21 = V_3;
t1_134 * L_22 = p0;
int32_t L_23 = m1_1413(L_22, NULL);
if ((((int32_t)L_21) >= ((int32_t)((int32_t)((int32_t)L_23-(int32_t)1)))))
{
goto IL_0078;
}
}
{
t1_158 * L_24 = V_0;
t1_18* L_25 = p2;
m1_4308(L_24, L_25, NULL);
}
IL_0078:
{
int32_t L_26 = V_3;
V_3 = ((int32_t)((int32_t)L_26+(int32_t)1));
}
IL_007c:
{
int32_t L_27 = V_3;
t1_134 * L_28 = p0;
int32_t L_29 = m1_1413(L_28, NULL);
if ((((int32_t)L_27) < ((int32_t)L_29)))
{
goto IL_0050;
}
}
IL_0088:
{
t1_158 * L_30 = V_0;
t1_18* L_31 = m1_4303(L_30, NULL);
return L_31;
}
}
extern TypeInfo* t1_138_TI_var;
extern TypeInfo* t1_158_TI_var;
extern TypeInfo* t1_231_TI_var;
extern TypeInfo* t1_19_TI_var;
extern TypeInfo* t1_18_TI_var;
extern FieldInfo* t1_808_f18_FieldInfo_var;
extern Il2CppCodeGenString* _stringLiteral414;
extern Il2CppCodeGenString* _stringLiteral415;
extern Il2CppCodeGenString* _stringLiteral416;
extern Il2CppCodeGenString* _stringLiteral417;
extern Il2CppCodeGenString* _stringLiteral418;
extern Il2CppCodeGenString* _stringLiteral419;
extern Il2CppCodeGenString* _stringLiteral420;
extern Il2CppCodeGenString* _stringLiteral421;
extern Il2CppCodeGenString* _stringLiteral422;
extern Il2CppCodeGenString* _stringLiteral423;
extern Il2CppCodeGenString* _stringLiteral424;
extern Il2CppCodeGenString* _stringLiteral425;
extern Il2CppCodeGenString* _stringLiteral426;
extern Il2CppCodeGenString* _stringLiteral427;
extern Il2CppCodeGenString* _stringLiteral428;
extern Il2CppCodeGenString* _stringLiteral429;
extern Il2CppCodeGenString* _stringLiteral430;
extern Il2CppCodeGenString* _stringLiteral232;
extern Il2CppCodeGenString* _stringLiteral431;
extern Il2CppCodeGenString* _stringLiteral141;
extern "C" void m1_1371 (t1_1 * __this , t1_158 * p0, t1_134 * p1, bool p2, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_138_TI_var = il2cpp_codegen_type_info_from_index(165);
t1_158_TI_var = il2cpp_codegen_type_info_from_index(36);
t1_231_TI_var = il2cpp_codegen_type_info_from_index(41);
t1_19_TI_var = il2cpp_codegen_type_info_from_index(12);
t1_18_TI_var = il2cpp_codegen_type_info_from_index(11);
t1_808_f18_FieldInfo_var = il2cpp_codegen_field_info_from_index(29, 18);
_stringLiteral414 = il2cpp_codegen_string_literal_from_index(414);
_stringLiteral415 = il2cpp_codegen_string_literal_from_index(415);
_stringLiteral416 = il2cpp_codegen_string_literal_from_index(416);
_stringLiteral417 = il2cpp_codegen_string_literal_from_index(417);
_stringLiteral418 = il2cpp_codegen_string_literal_from_index(418);
_stringLiteral419 = il2cpp_codegen_string_literal_from_index(419);
_stringLiteral420 = il2cpp_codegen_string_literal_from_index(420);
_stringLiteral421 = il2cpp_codegen_string_literal_from_index(421);
_stringLiteral422 = il2cpp_codegen_string_literal_from_index(422);
_stringLiteral423 = il2cpp_codegen_string_literal_from_index(423);
_stringLiteral424 = il2cpp_codegen_string_literal_from_index(424);
_stringLiteral425 = il2cpp_codegen_string_literal_from_index(425);
_stringLiteral426 = il2cpp_codegen_string_literal_from_index(426);
_stringLiteral427 = il2cpp_codegen_string_literal_from_index(427);
_stringLiteral428 = il2cpp_codegen_string_literal_from_index(428);
_stringLiteral429 = il2cpp_codegen_string_literal_from_index(429);
_stringLiteral430 = il2cpp_codegen_string_literal_from_index(430);
_stringLiteral232 = il2cpp_codegen_string_literal_from_index(232);
_stringLiteral431 = il2cpp_codegen_string_literal_from_index(431);
_stringLiteral141 = il2cpp_codegen_string_literal_from_index(141);
s_Il2CppMethodIntialized = true;
}
int32_t V_0 = 0;
t1_134 * V_1 = {0};
t1_134 * V_2 = {0};
t1_134 * V_3 = {0};
t1_18* V_4 = {0};
t1_158 * V_5 = {0};
int32_t V_6 = 0;
t1_19* V_7 = {0};
{
V_0 = 0;
goto IL_035f;
}
IL_0007:
{
t1_134 * L_0 = p1;
int32_t L_1 = V_0;
t1_134 * L_2 = m1_1424(L_0, L_1, NULL);
V_1 = L_2;
t1_134 * L_3 = V_1;
t1_134 * L_4 = m1_1424(L_3, 1, NULL);
V_2 = L_4;
t1_134 * L_5 = V_2;
if (L_5)
{
goto IL_0022;
}
}
{
goto IL_035b;
}
IL_0022:
{
t1_134 * L_6 = V_1;
t1_134 * L_7 = m1_1424(L_6, 0, NULL);
V_3 = L_7;
t1_134 * L_8 = V_3;
if (L_8)
{
goto IL_0035;
}
}
{
goto IL_035b;
}
IL_0035:
{
t1_134 * L_9 = V_3;
IL2CPP_RUNTIME_CLASS_INIT(t1_138_TI_var);
t1_83* L_10 = ((t1_138_SFs*)t1_138_TI_var->static_fields)->f0;
bool L_11 = m1_1419(L_9, L_10, NULL);
if (!L_11)
{
goto IL_0056;
}
}
{
t1_158 * L_12 = p0;
m1_4308(L_12, _stringLiteral414, NULL);
goto IL_0249;
}
IL_0056:
{
t1_134 * L_13 = V_3;
IL2CPP_RUNTIME_CLASS_INIT(t1_138_TI_var);
t1_83* L_14 = ((t1_138_SFs*)t1_138_TI_var->static_fields)->f1;
bool L_15 = m1_1419(L_13, L_14, NULL);
if (!L_15)
{
goto IL_0077;
}
}
{
t1_158 * L_16 = p0;
m1_4308(L_16, _stringLiteral415, NULL);
goto IL_0249;
}
IL_0077:
{
t1_134 * L_17 = V_3;
IL2CPP_RUNTIME_CLASS_INIT(t1_138_TI_var);
t1_83* L_18 = ((t1_138_SFs*)t1_138_TI_var->static_fields)->f2;
bool L_19 = m1_1419(L_17, L_18, NULL);
if (!L_19)
{
goto IL_0098;
}
}
{
t1_158 * L_20 = p0;
m1_4308(L_20, _stringLiteral416, NULL);
goto IL_0249;
}
IL_0098:
{
t1_134 * L_21 = V_3;
IL2CPP_RUNTIME_CLASS_INIT(t1_138_TI_var);
t1_83* L_22 = ((t1_138_SFs*)t1_138_TI_var->static_fields)->f3;
bool L_23 = m1_1419(L_21, L_22, NULL);
if (!L_23)
{
goto IL_00b9;
}
}
{
t1_158 * L_24 = p0;
m1_4308(L_24, _stringLiteral417, NULL);
goto IL_0249;
}
IL_00b9:
{
t1_134 * L_25 = V_3;
IL2CPP_RUNTIME_CLASS_INIT(t1_138_TI_var);
t1_83* L_26 = ((t1_138_SFs*)t1_138_TI_var->static_fields)->f4;
bool L_27 = m1_1419(L_25, L_26, NULL);
if (!L_27)
{
goto IL_00da;
}
}
{
t1_158 * L_28 = p0;
m1_4308(L_28, _stringLiteral418, NULL);
goto IL_0249;
}
IL_00da:
{
t1_134 * L_29 = V_3;
IL2CPP_RUNTIME_CLASS_INIT(t1_138_TI_var);
t1_83* L_30 = ((t1_138_SFs*)t1_138_TI_var->static_fields)->f5;
bool L_31 = m1_1419(L_29, L_30, NULL);
if (!L_31)
{
goto IL_00fb;
}
}
{
t1_158 * L_32 = p0;
m1_4308(L_32, _stringLiteral419, NULL);
goto IL_0249;
}
IL_00fb:
{
t1_134 * L_33 = V_3;
IL2CPP_RUNTIME_CLASS_INIT(t1_138_TI_var);
t1_83* L_34 = ((t1_138_SFs*)t1_138_TI_var->static_fields)->f6;
bool L_35 = m1_1419(L_33, L_34, NULL);
if (!L_35)
{
goto IL_011c;
}
}
{
t1_158 * L_36 = p0;
m1_4308(L_36, _stringLiteral420, NULL);
goto IL_0249;
}
IL_011c:
{
t1_134 * L_37 = V_3;
IL2CPP_RUNTIME_CLASS_INIT(t1_138_TI_var);
t1_83* L_38 = ((t1_138_SFs*)t1_138_TI_var->static_fields)->f7;
bool L_39 = m1_1419(L_37, L_38, NULL);
if (!L_39)
{
goto IL_013d;
}
}
{
t1_158 * L_40 = p0;
m1_4308(L_40, _stringLiteral421, NULL);
goto IL_0249;
}
IL_013d:
{
t1_134 * L_41 = V_3;
IL2CPP_RUNTIME_CLASS_INIT(t1_138_TI_var);
t1_83* L_42 = ((t1_138_SFs*)t1_138_TI_var->static_fields)->f8;
bool L_43 = m1_1419(L_41, L_42, NULL);
if (!L_43)
{
goto IL_015e;
}
}
{
t1_158 * L_44 = p0;
m1_4308(L_44, _stringLiteral422, NULL);
goto IL_0249;
}
IL_015e:
{
t1_134 * L_45 = V_3;
IL2CPP_RUNTIME_CLASS_INIT(t1_138_TI_var);
t1_83* L_46 = ((t1_138_SFs*)t1_138_TI_var->static_fields)->f9;
bool L_47 = m1_1419(L_45, L_46, NULL);
if (!L_47)
{
goto IL_017f;
}
}
{
t1_158 * L_48 = p0;
m1_4308(L_48, _stringLiteral423, NULL);
goto IL_0249;
}
IL_017f:
{
t1_134 * L_49 = V_3;
IL2CPP_RUNTIME_CLASS_INIT(t1_138_TI_var);
t1_83* L_50 = ((t1_138_SFs*)t1_138_TI_var->static_fields)->f10;
bool L_51 = m1_1419(L_49, L_50, NULL);
if (!L_51)
{
goto IL_01a0;
}
}
{
t1_158 * L_52 = p0;
m1_4308(L_52, _stringLiteral424, NULL);
goto IL_0249;
}
IL_01a0:
{
t1_134 * L_53 = V_3;
IL2CPP_RUNTIME_CLASS_INIT(t1_138_TI_var);
t1_83* L_54 = ((t1_138_SFs*)t1_138_TI_var->static_fields)->f11;
bool L_55 = m1_1419(L_53, L_54, NULL);
if (!L_55)
{
goto IL_01c1;
}
}
{
t1_158 * L_56 = p0;
m1_4308(L_56, _stringLiteral425, NULL);
goto IL_0249;
}
IL_01c1:
{
t1_134 * L_57 = V_3;
IL2CPP_RUNTIME_CLASS_INIT(t1_138_TI_var);
t1_83* L_58 = ((t1_138_SFs*)t1_138_TI_var->static_fields)->f12;
bool L_59 = m1_1419(L_57, L_58, NULL);
if (!L_59)
{
goto IL_01e2;
}
}
{
t1_158 * L_60 = p0;
m1_4308(L_60, _stringLiteral426, NULL);
goto IL_0249;
}
IL_01e2:
{
t1_134 * L_61 = V_3;
IL2CPP_RUNTIME_CLASS_INIT(t1_138_TI_var);
t1_83* L_62 = ((t1_138_SFs*)t1_138_TI_var->static_fields)->f13;
bool L_63 = m1_1419(L_61, L_62, NULL);
if (!L_63)
{
goto IL_0203;
}
}
{
t1_158 * L_64 = p0;
m1_4308(L_64, _stringLiteral427, NULL);
goto IL_0249;
}
IL_0203:
{
t1_134 * L_65 = V_3;
IL2CPP_RUNTIME_CLASS_INIT(t1_138_TI_var);
t1_83* L_66 = ((t1_138_SFs*)t1_138_TI_var->static_fields)->f14;
bool L_67 = m1_1419(L_65, L_66, NULL);
if (!L_67)
{
goto IL_0224;
}
}
{
t1_158 * L_68 = p0;
m1_4308(L_68, _stringLiteral428, NULL);
goto IL_0249;
}
IL_0224:
{
t1_158 * L_69 = p0;
m1_4308(L_69, _stringLiteral429, NULL);
t1_158 * L_70 = p0;
t1_134 * L_71 = V_3;
t1_18* L_72 = m1_1430(NULL, L_71, NULL);
m1_4308(L_70, L_72, NULL);
t1_158 * L_73 = p0;
m1_4308(L_73, _stringLiteral430, NULL);
}
IL_0249:
{
V_4 = (t1_18*)NULL;
t1_134 * L_74 = V_2;
uint8_t L_75 = m1_1414(L_74, NULL);
if ((!(((uint32_t)L_75) == ((uint32_t)((int32_t)30)))))
{
goto IL_029d;
}
}
{
t1_158 * L_76 = (t1_158 *)il2cpp_codegen_object_new (t1_158_TI_var);
m1_4291(L_76, NULL);
V_5 = L_76;
V_6 = 1;
goto IL_0280;
}
IL_0268:
{
t1_158 * L_77 = V_5;
t1_134 * L_78 = V_2;
t1_83* L_79 = m1_1416(L_78, NULL);
int32_t L_80 = V_6;
int32_t L_81 = L_80;
m1_4312(L_77, (((int32_t)((uint16_t)(*(uint8_t*)(uint8_t*)SZArrayLdElema(L_79, L_81, sizeof(uint8_t)))))), NULL);
int32_t L_82 = V_6;
V_6 = ((int32_t)((int32_t)L_82+(int32_t)2));
}
IL_0280:
{
int32_t L_83 = V_6;
t1_134 * L_84 = V_2;
t1_83* L_85 = m1_1416(L_84, NULL);
if ((((int32_t)L_83) < ((int32_t)(((int32_t)((int32_t)(((t1_33 *)L_85)->max_length)))))))
{
goto IL_0268;
}
}
{
t1_158 * L_86 = V_5;
t1_18* L_87 = m1_4303(L_86, NULL);
V_4 = L_87;
goto IL_0338;
}
IL_029d:
{
t1_134 * L_88 = V_2;
uint8_t L_89 = m1_1414(L_88, NULL);
if ((!(((uint32_t)L_89) == ((uint32_t)((int32_t)20)))))
{
goto IL_02c1;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(t1_231_TI_var);
t1_231 * L_90 = m1_4267(NULL, NULL);
t1_134 * L_91 = V_2;
t1_83* L_92 = m1_1416(L_91, NULL);
t1_18* L_93 = (t1_18*)VirtFuncInvoker1< t1_18*, t1_83* >::Invoke(22 /* System.String System.Text.Encoding::GetString(System.Byte[]) */, L_90, L_92);
V_4 = L_93;
goto IL_02d3;
}
IL_02c1:
{
IL2CPP_RUNTIME_CLASS_INIT(t1_231_TI_var);
t1_231 * L_94 = m1_4268(NULL, NULL);
t1_134 * L_95 = V_2;
t1_83* L_96 = m1_1416(L_95, NULL);
t1_18* L_97 = (t1_18*)VirtFuncInvoker1< t1_18*, t1_83* >::Invoke(22 /* System.String System.Text.Encoding::GetString(System.Byte[]) */, L_94, L_96);
V_4 = L_97;
}
IL_02d3:
{
t1_19* L_98 = ((t1_19*)SZArrayNew(t1_19_TI_var, 7));
m1_988(NULL, (t1_33 *)(t1_33 *)L_98, LoadFieldToken(t1_808_f18_FieldInfo_var), NULL);
V_7 = L_98;
bool L_99 = p2;
if (!L_99)
{
goto IL_0338;
}
}
{
t1_18* L_100 = V_4;
t1_19* L_101 = V_7;
t1_18* L_102 = V_4;
int32_t L_103 = m1_430(L_102, NULL);
int32_t L_104 = m1_375(L_100, L_101, 0, L_103, NULL);
if ((((int32_t)L_104) > ((int32_t)0)))
{
goto IL_0325;
}
}
{
t1_18* L_105 = V_4;
bool L_106 = m1_401(L_105, _stringLiteral232, NULL);
if (L_106)
{
goto IL_0325;
}
}
{
t1_18* L_107 = V_4;
bool L_108 = m1_372(L_107, _stringLiteral232, NULL);
if (!L_108)
{
goto IL_0338;
}
}
IL_0325:
{
t1_18* L_109 = V_4;
IL2CPP_RUNTIME_CLASS_INIT(t1_18_TI_var);
t1_18* L_110 = m1_421(NULL, _stringLiteral431, L_109, _stringLiteral431, NULL);
V_4 = L_110;
}
IL_0338:
{
t1_158 * L_111 = p0;
t1_18* L_112 = V_4;
m1_4308(L_111, L_112, NULL);
int32_t L_113 = V_0;
t1_134 * L_114 = p1;
int32_t L_115 = m1_1413(L_114, NULL);
if ((((int32_t)L_113) >= ((int32_t)((int32_t)((int32_t)L_115-(int32_t)1)))))
{
goto IL_035b;
}
}
{
t1_158 * L_116 = p0;
m1_4308(L_116, _stringLiteral141, NULL);
}
IL_035b:
{
int32_t L_117 = V_0;
V_0 = ((int32_t)((int32_t)L_117+(int32_t)1));
}
IL_035f:
{
int32_t L_118 = V_0;
t1_134 * L_119 = p1;
int32_t L_120 = m1_1413(L_119, NULL);
if ((((int32_t)L_118) < ((int32_t)L_120)))
{
goto IL_0007;
}
}
{
return;
}
}
extern TypeInfo* t1_139_TI_var;
extern TypeInfo* t1_43_TI_var;
extern TypeInfo* t1_562_TI_var;
extern Il2CppCodeGenString* _stringLiteral432;
extern "C" void m1_1372 (t1_139 * __this, t1_83* p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_139_TI_var = il2cpp_codegen_type_info_from_index(160);
t1_43_TI_var = il2cpp_codegen_type_info_from_index(45);
t1_562_TI_var = il2cpp_codegen_type_info_from_index(130);
_stringLiteral432 = il2cpp_codegen_string_literal_from_index(432);
s_Il2CppMethodIntialized = true;
}
t1_43 * V_0 = {0};
t1_43 * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
t1_43 * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
m1_0(__this, NULL);
t1_83* L_0 = p0;
if (!L_0)
{
goto IL_004a;
}
}
{
t1_83* L_1 = p0;
if ((((int32_t)(((int32_t)((int32_t)(((t1_33 *)L_1)->max_length))))) <= ((int32_t)0)))
{
goto IL_0043;
}
}
{
t1_83* L_2 = p0;
int32_t L_3 = 0;
if ((((int32_t)(*(uint8_t*)(uint8_t*)SZArrayLdElema(L_2, L_3, sizeof(uint8_t)))) == ((int32_t)((int32_t)48))))
{
goto IL_0043;
}
}
IL_001f:
try
{ // begin try (depth: 1)
t1_83* L_4 = p0;
IL2CPP_RUNTIME_CLASS_INIT(t1_139_TI_var);
t1_83* L_5 = m1_1387(NULL, _stringLiteral432, L_4, NULL);
p0 = L_5;
goto IL_0043;
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (t1_43 *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (t1_43_TI_var, e.ex->object.klass))
goto CATCH_0031;
throw e;
}
CATCH_0031:
{ // begin catch(System.Exception)
{
V_0 = ((t1_43 *)__exception_local);
IL2CPP_RUNTIME_CLASS_INIT(t1_139_TI_var);
t1_18* L_6 = ((t1_139_SFs*)t1_139_TI_var->static_fields)->f20;
t1_43 * L_7 = V_0;
t1_562 * L_8 = (t1_562 *)il2cpp_codegen_object_new (t1_562_TI_var);
m1_3690(L_8, L_6, L_7, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_8);
}
IL_003e:
{
goto IL_0043;
}
} // end catch (depth: 1)
IL_0043:
{
t1_83* L_9 = p0;
m1_1374(__this, L_9, NULL);
}
IL_004a:
{
return;
}
}
extern TypeInfo* t1_139_TI_var;
extern Il2CppCodeGenString* _stringLiteral433;
extern "C" void m1_1373 (t1_1 * __this , const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_139_TI_var = il2cpp_codegen_type_info_from_index(160);
_stringLiteral433 = il2cpp_codegen_string_literal_from_index(433);
s_Il2CppMethodIntialized = true;
}
{
t1_18* L_0 = m1_990(NULL, _stringLiteral433, NULL);
((t1_139_SFs*)t1_139_TI_var->static_fields)->f20 = L_0;
return;
}
}
extern TypeInfo* t1_134_TI_var;
extern TypeInfo* t1_139_TI_var;
extern TypeInfo* t1_562_TI_var;
extern TypeInfo* t1_138_TI_var;
extern TypeInfo* t1_83_TI_var;
extern TypeInfo* t1_141_TI_var;
extern TypeInfo* t1_43_TI_var;
extern "C" void m1_1374 (t1_139 * __this, t1_83* p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_134_TI_var = il2cpp_codegen_type_info_from_index(148);
t1_139_TI_var = il2cpp_codegen_type_info_from_index(160);
t1_562_TI_var = il2cpp_codegen_type_info_from_index(130);
t1_138_TI_var = il2cpp_codegen_type_info_from_index(165);
t1_83_TI_var = il2cpp_codegen_type_info_from_index(42);
t1_141_TI_var = il2cpp_codegen_type_info_from_index(166);
t1_43_TI_var = il2cpp_codegen_type_info_from_index(45);
s_Il2CppMethodIntialized = true;
}
t1_134 * V_0 = {0};
int32_t V_1 = 0;
t1_134 * V_2 = {0};
t1_134 * V_3 = {0};
t1_134 * V_4 = {0};
t1_134 * V_5 = {0};
t1_134 * V_6 = {0};
t1_134 * V_7 = {0};
t1_134 * V_8 = {0};
t1_134 * V_9 = {0};
t1_134 * V_10 = {0};
t1_134 * V_11 = {0};
int32_t V_12 = 0;
t1_83* V_13 = {0};
t1_134 * V_14 = {0};
t1_134 * V_15 = {0};
t1_134 * V_16 = {0};
t1_43 * V_17 = {0};
t1_43 * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
t1_43 * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
t1_139 * G_B11_0 = {0};
t1_139 * G_B10_0 = {0};
t1_83* G_B12_0 = {0};
t1_139 * G_B12_1 = {0};
IL_0000:
try
{ // begin try (depth: 1)
{
t1_83* L_0 = p0;
t1_134 * L_1 = (t1_134 *)il2cpp_codegen_object_new (t1_134_TI_var);
m1_1412(L_1, L_0, NULL);
__this->f0 = L_1;
t1_134 * L_2 = (__this->f0);
uint8_t L_3 = m1_1414(L_2, NULL);
if ((((int32_t)L_3) == ((int32_t)((int32_t)48))))
{
goto IL_0029;
}
}
IL_001e:
{
IL2CPP_RUNTIME_CLASS_INIT(t1_139_TI_var);
t1_18* L_4 = ((t1_139_SFs*)t1_139_TI_var->static_fields)->f20;
t1_562 * L_5 = (t1_562 *)il2cpp_codegen_object_new (t1_562_TI_var);
m1_3689(L_5, L_4, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_5);
}
IL_0029:
{
t1_134 * L_6 = (__this->f0);
t1_134 * L_7 = m1_1424(L_6, 0, NULL);
uint8_t L_8 = m1_1414(L_7, NULL);
if ((((int32_t)L_8) == ((int32_t)((int32_t)48))))
{
goto IL_004c;
}
}
IL_0041:
{
IL2CPP_RUNTIME_CLASS_INIT(t1_139_TI_var);
t1_18* L_9 = ((t1_139_SFs*)t1_139_TI_var->static_fields)->f20;
t1_562 * L_10 = (t1_562 *)il2cpp_codegen_object_new (t1_562_TI_var);
m1_3689(L_10, L_9, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_10);
}
IL_004c:
{
t1_134 * L_11 = (__this->f0);
t1_134 * L_12 = m1_1424(L_11, 0, NULL);
V_0 = L_12;
V_1 = 0;
t1_134 * L_13 = (__this->f0);
t1_134 * L_14 = m1_1424(L_13, 0, NULL);
int32_t L_15 = V_1;
t1_134 * L_16 = m1_1424(L_14, L_15, NULL);
V_2 = L_16;
__this->f15 = 1;
t1_134 * L_17 = V_2;
uint8_t L_18 = m1_1414(L_17, NULL);
if ((!(((uint32_t)L_18) == ((uint32_t)((int32_t)160)))))
{
goto IL_00b0;
}
}
IL_0085:
{
t1_134 * L_19 = V_2;
int32_t L_20 = m1_1413(L_19, NULL);
if ((((int32_t)L_20) <= ((int32_t)0)))
{
goto IL_00b0;
}
}
IL_0091:
{
int32_t L_21 = (__this->f15);
t1_134 * L_22 = V_2;
t1_134 * L_23 = m1_1424(L_22, 0, NULL);
t1_83* L_24 = m1_1416(L_23, NULL);
int32_t L_25 = 0;
__this->f15 = ((int32_t)((int32_t)L_21+(int32_t)(*(uint8_t*)(uint8_t*)SZArrayLdElema(L_24, L_25, sizeof(uint8_t)))));
int32_t L_26 = V_1;
V_1 = ((int32_t)((int32_t)L_26+(int32_t)1));
}
IL_00b0:
{
t1_134 * L_27 = (__this->f0);
t1_134 * L_28 = m1_1424(L_27, 0, NULL);
int32_t L_29 = V_1;
int32_t L_30 = L_29;
V_1 = ((int32_t)((int32_t)L_30+(int32_t)1));
t1_134 * L_31 = m1_1424(L_28, L_30, NULL);
V_3 = L_31;
t1_134 * L_32 = V_3;
uint8_t L_33 = m1_1414(L_32, NULL);
if ((((int32_t)L_33) == ((int32_t)2)))
{
goto IL_00de;
}
}
IL_00d3:
{
IL2CPP_RUNTIME_CLASS_INIT(t1_139_TI_var);
t1_18* L_34 = ((t1_139_SFs*)t1_139_TI_var->static_fields)->f20;
t1_562 * L_35 = (t1_562 *)il2cpp_codegen_object_new (t1_562_TI_var);
m1_3689(L_35, L_34, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_35);
}
IL_00de:
{
t1_134 * L_36 = V_3;
t1_83* L_37 = m1_1416(L_36, NULL);
__this->f16 = L_37;
t1_83* L_38 = (__this->f16);
t1_83* L_39 = (__this->f16);
m1_837(NULL, (t1_33 *)(t1_33 *)L_38, 0, (((int32_t)((int32_t)(((t1_33 *)L_39)->max_length)))), NULL);
int32_t L_40 = V_1;
V_1 = ((int32_t)((int32_t)L_40+(int32_t)1));
t1_134 * L_41 = V_0;
int32_t L_42 = V_1;
int32_t L_43 = L_42;
V_1 = ((int32_t)((int32_t)L_43+(int32_t)1));
t1_134 * L_44 = m1_1425(L_41, L_43, ((int32_t)48), NULL);
__this->f4 = L_44;
t1_134 * L_45 = (__this->f4);
IL2CPP_RUNTIME_CLASS_INIT(t1_138_TI_var);
t1_18* L_46 = m1_1369(NULL, L_45, NULL);
__this->f5 = L_46;
t1_134 * L_47 = V_0;
int32_t L_48 = V_1;
int32_t L_49 = L_48;
V_1 = ((int32_t)((int32_t)L_49+(int32_t)1));
t1_134 * L_50 = m1_1425(L_47, L_49, ((int32_t)48), NULL);
V_4 = L_50;
t1_134 * L_51 = V_4;
t1_134 * L_52 = m1_1424(L_51, 0, NULL);
V_5 = L_52;
t1_134 * L_53 = V_5;
t1_140 L_54 = m1_1431(NULL, L_53, NULL);
__this->f2 = L_54;
t1_134 * L_55 = V_4;
t1_134 * L_56 = m1_1424(L_55, 1, NULL);
V_6 = L_56;
t1_134 * L_57 = V_6;
t1_140 L_58 = m1_1431(NULL, L_57, NULL);
__this->f3 = L_58;
t1_134 * L_59 = V_0;
int32_t L_60 = V_1;
int32_t L_61 = L_60;
V_1 = ((int32_t)((int32_t)L_61+(int32_t)1));
t1_134 * L_62 = m1_1425(L_59, L_61, ((int32_t)48), NULL);
__this->f8 = L_62;
t1_134 * L_63 = (__this->f8);
t1_18* L_64 = m1_1369(NULL, L_63, NULL);
__this->f9 = L_64;
t1_134 * L_65 = V_0;
int32_t L_66 = V_1;
int32_t L_67 = L_66;
V_1 = ((int32_t)((int32_t)L_67+(int32_t)1));
t1_134 * L_68 = m1_1425(L_65, L_67, ((int32_t)48), NULL);
V_7 = L_68;
t1_134 * L_69 = V_7;
t1_134 * L_70 = m1_1425(L_69, 0, ((int32_t)48), NULL);
V_8 = L_70;
t1_134 * L_71 = V_8;
t1_134 * L_72 = m1_1425(L_71, 0, 6, NULL);
V_9 = L_72;
t1_134 * L_73 = V_9;
t1_18* L_74 = m1_1430(NULL, L_73, NULL);
__this->f6 = L_74;
t1_134 * L_75 = V_8;
t1_134 * L_76 = m1_1424(L_75, 1, NULL);
V_10 = L_76;
t1_134 * L_77 = V_8;
int32_t L_78 = m1_1413(L_77, NULL);
G_B10_0 = __this;
if ((((int32_t)L_78) <= ((int32_t)1)))
{
G_B11_0 = __this;
goto IL_01de;
}
}
IL_01d2:
{
t1_134 * L_79 = V_10;
t1_83* L_80 = (t1_83*)VirtFuncInvoker0< t1_83* >::Invoke(4 /* System.Byte[] Mono.Security.ASN1::GetBytes() */, L_79);
G_B12_0 = L_80;
G_B12_1 = G_B10_0;
goto IL_01df;
}
IL_01de:
{
G_B12_0 = ((t1_83*)(NULL));
G_B12_1 = G_B11_0;
}
IL_01df:
{
G_B12_1->f7 = G_B12_0;
t1_134 * L_81 = V_7;
t1_134 * L_82 = m1_1425(L_81, 1, 3, NULL);
V_11 = L_82;
t1_134 * L_83 = V_11;
int32_t L_84 = m1_1415(L_83, NULL);
V_12 = ((int32_t)((int32_t)L_84-(int32_t)1));
int32_t L_85 = V_12;
__this->f10 = ((t1_83*)SZArrayNew(t1_83_TI_var, L_85));
t1_134 * L_86 = V_11;
t1_83* L_87 = m1_1416(L_86, NULL);
t1_83* L_88 = (__this->f10);
int32_t L_89 = V_12;
m1_4597(NULL, (t1_33 *)(t1_33 *)L_87, 1, (t1_33 *)(t1_33 *)L_88, 0, L_89, NULL);
t1_134 * L_90 = (__this->f0);
t1_134 * L_91 = m1_1424(L_90, 2, NULL);
t1_83* L_92 = m1_1416(L_91, NULL);
V_13 = L_92;
t1_83* L_93 = V_13;
__this->f11 = ((t1_83*)SZArrayNew(t1_83_TI_var, ((int32_t)((int32_t)(((int32_t)((int32_t)(((t1_33 *)L_93)->max_length))))-(int32_t)1))));
t1_83* L_94 = V_13;
t1_83* L_95 = (__this->f11);
t1_83* L_96 = (__this->f11);
m1_4597(NULL, (t1_33 *)(t1_33 *)L_94, 1, (t1_33 *)(t1_33 *)L_95, 0, (((int32_t)((int32_t)(((t1_33 *)L_96)->max_length)))), NULL);
t1_134 * L_97 = (__this->f0);
t1_134 * L_98 = m1_1424(L_97, 1, NULL);
V_8 = L_98;
t1_134 * L_99 = V_8;
t1_134 * L_100 = m1_1425(L_99, 0, 6, NULL);
V_9 = L_100;
t1_134 * L_101 = V_9;
t1_18* L_102 = m1_1430(NULL, L_101, NULL);
__this->f12 = L_102;
t1_134 * L_103 = V_8;
t1_134 * L_104 = m1_1424(L_103, 1, NULL);
V_10 = L_104;
t1_134 * L_105 = V_10;
if (!L_105)
{
goto IL_02a1;
}
}
IL_028f:
{
t1_134 * L_106 = V_10;
t1_83* L_107 = (t1_83*)VirtFuncInvoker0< t1_83* >::Invoke(4 /* System.Byte[] Mono.Security.ASN1::GetBytes() */, L_106);
__this->f13 = L_107;
goto IL_02a8;
}
IL_02a1:
{
__this->f13 = (t1_83*)NULL;
}
IL_02a8:
{
t1_134 * L_108 = V_0;
int32_t L_109 = V_1;
t1_134 * L_110 = m1_1425(L_108, L_109, ((int32_t)129), NULL);
V_14 = L_110;
t1_134 * L_111 = V_14;
if (!L_111)
{
goto IL_02ce;
}
}
IL_02bd:
{
int32_t L_112 = V_1;
V_1 = ((int32_t)((int32_t)L_112+(int32_t)1));
t1_134 * L_113 = V_14;
t1_83* L_114 = m1_1416(L_113, NULL);
__this->f17 = L_114;
}
IL_02ce:
{
t1_134 * L_115 = V_0;
int32_t L_116 = V_1;
t1_134 * L_117 = m1_1425(L_115, L_116, ((int32_t)130), NULL);
V_15 = L_117;
t1_134 * L_118 = V_15;
if (!L_118)
{
goto IL_02f4;
}
}
IL_02e3:
{
int32_t L_119 = V_1;
V_1 = ((int32_t)((int32_t)L_119+(int32_t)1));
t1_134 * L_120 = V_15;
t1_83* L_121 = m1_1416(L_120, NULL);
__this->f18 = L_121;
}
IL_02f4:
{
t1_134 * L_122 = V_0;
int32_t L_123 = V_1;
t1_134 * L_124 = m1_1425(L_122, L_123, ((int32_t)163), NULL);
V_16 = L_124;
t1_134 * L_125 = V_16;
if (!L_125)
{
goto IL_032e;
}
}
IL_0309:
{
t1_134 * L_126 = V_16;
int32_t L_127 = m1_1413(L_126, NULL);
if ((!(((uint32_t)L_127) == ((uint32_t)1))))
{
goto IL_032e;
}
}
IL_0316:
{
t1_134 * L_128 = V_16;
t1_134 * L_129 = m1_1424(L_128, 0, NULL);
t1_141 * L_130 = (t1_141 *)il2cpp_codegen_object_new (t1_141_TI_var);
m1_1408(L_130, L_129, NULL);
__this->f19 = L_130;
goto IL_033a;
}
IL_032e:
{
t1_141 * L_131 = (t1_141 *)il2cpp_codegen_object_new (t1_141_TI_var);
m1_1408(L_131, (t1_134 *)NULL, NULL);
__this->f19 = L_131;
}
IL_033a:
{
t1_83* L_132 = p0;
t1_1 * L_133 = (t1_1 *)VirtFuncInvoker0< t1_1 * >::Invoke(5 /* System.Object System.Array::Clone() */, L_132);
__this->f1 = ((t1_83*)Castclass(L_133, t1_83_TI_var));
goto IL_0364;
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (t1_43 *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (t1_43_TI_var, e.ex->object.klass))
goto CATCH_0350;
throw e;
}
CATCH_0350:
{ // begin catch(System.Exception)
{
V_17 = ((t1_43 *)__exception_local);
IL2CPP_RUNTIME_CLASS_INIT(t1_139_TI_var);
t1_18* L_134 = ((t1_139_SFs*)t1_139_TI_var->static_fields)->f20;
t1_43 * L_135 = V_17;
t1_562 * L_136 = (t1_562 *)il2cpp_codegen_object_new (t1_562_TI_var);
m1_3690(L_136, L_134, L_135, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_136);
}
IL_035f:
{
goto IL_0364;
}
} // end catch (depth: 1)
IL_0364:
{
return;
}
}
extern TypeInfo* t1_83_TI_var;
extern "C" t1_83* m1_1375 (t1_139 * __this, t1_83* p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_83_TI_var = il2cpp_codegen_type_info_from_index(42);
s_Il2CppMethodIntialized = true;
}
int32_t V_0 = 0;
t1_83* V_1 = {0};
{
t1_83* L_0 = p0;
int32_t L_1 = 0;
if ((*(uint8_t*)(uint8_t*)SZArrayLdElema(L_0, L_1, sizeof(uint8_t))))
{
goto IL_0021;
}
}
{
t1_83* L_2 = p0;
V_0 = ((int32_t)((int32_t)(((int32_t)((int32_t)(((t1_33 *)L_2)->max_length))))-(int32_t)1));
int32_t L_3 = V_0;
V_1 = ((t1_83*)SZArrayNew(t1_83_TI_var, L_3));
t1_83* L_4 = p0;
t1_83* L_5 = V_1;
int32_t L_6 = V_0;
m1_4597(NULL, (t1_33 *)(t1_33 *)L_4, 1, (t1_33 *)(t1_33 *)L_5, 0, L_6, NULL);
t1_83* L_7 = V_1;
return L_7;
}
IL_0021:
{
t1_83* L_8 = p0;
return L_8;
}
}
extern TypeInfo* t1_562_TI_var;
extern TypeInfo* t1_570_TI_var;
extern TypeInfo* t1_134_TI_var;
extern TypeInfo* t1_569_TI_var;
extern Il2CppCodeGenString* _stringLiteral434;
extern "C" t1_119 * m1_1376 (t1_139 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_562_TI_var = il2cpp_codegen_type_info_from_index(130);
t1_570_TI_var = il2cpp_codegen_type_info_from_index(138);
t1_134_TI_var = il2cpp_codegen_type_info_from_index(148);
t1_569_TI_var = il2cpp_codegen_type_info_from_index(167);
_stringLiteral434 = il2cpp_codegen_string_literal_from_index(434);
s_Il2CppMethodIntialized = true;
}
t1_570 V_0 = {0};
t1_134 * V_1 = {0};
t1_134 * V_2 = {0};
{
t1_83* L_0 = (__this->f7);
if (L_0)
{
goto IL_0016;
}
}
{
t1_562 * L_1 = (t1_562 *)il2cpp_codegen_object_new (t1_562_TI_var);
m1_3689(L_1, _stringLiteral434, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_1);
}
IL_0016:
{
t1_119 * L_2 = (__this->f14);
if (L_2)
{
goto IL_012e;
}
}
{
Initobj (t1_570_TI_var, (&V_0));
t1_83* L_3 = (__this->f10);
t1_134 * L_4 = (t1_134 *)il2cpp_codegen_object_new (t1_134_TI_var);
m1_1412(L_4, L_3, NULL);
V_1 = L_4;
t1_134 * L_5 = V_1;
if (!L_5)
{
goto IL_0047;
}
}
{
t1_134 * L_6 = V_1;
uint8_t L_7 = m1_1414(L_6, NULL);
if ((((int32_t)L_7) == ((int32_t)2)))
{
goto IL_0049;
}
}
IL_0047:
{
return (t1_119 *)NULL;
}
IL_0049:
{
t1_134 * L_8 = V_1;
t1_83* L_9 = m1_1416(L_8, NULL);
t1_83* L_10 = m1_1375(__this, L_9, NULL);
(&V_0)->f7 = L_10;
t1_83* L_11 = (__this->f7);
t1_134 * L_12 = (t1_134 *)il2cpp_codegen_object_new (t1_134_TI_var);
m1_1412(L_12, L_11, NULL);
V_2 = L_12;
t1_134 * L_13 = V_2;
if (!L_13)
{
goto IL_0087;
}
}
{
t1_134 * L_14 = V_2;
uint8_t L_15 = m1_1414(L_14, NULL);
if ((!(((uint32_t)L_15) == ((uint32_t)((int32_t)48)))))
{
goto IL_0087;
}
}
{
t1_134 * L_16 = V_2;
int32_t L_17 = m1_1413(L_16, NULL);
if ((((int32_t)L_17) >= ((int32_t)3)))
{
goto IL_0089;
}
}
IL_0087:
{
return (t1_119 *)NULL;
}
IL_0089:
{
t1_134 * L_18 = V_2;
t1_134 * L_19 = m1_1424(L_18, 0, NULL);
uint8_t L_20 = m1_1414(L_19, NULL);
if ((!(((uint32_t)L_20) == ((uint32_t)2))))
{
goto IL_00bf;
}
}
{
t1_134 * L_21 = V_2;
t1_134 * L_22 = m1_1424(L_21, 1, NULL);
uint8_t L_23 = m1_1414(L_22, NULL);
if ((!(((uint32_t)L_23) == ((uint32_t)2))))
{
goto IL_00bf;
}
}
{
t1_134 * L_24 = V_2;
t1_134 * L_25 = m1_1424(L_24, 2, NULL);
uint8_t L_26 = m1_1414(L_25, NULL);
if ((((int32_t)L_26) == ((int32_t)2)))
{
goto IL_00c1;
}
}
IL_00bf:
{
return (t1_119 *)NULL;
}
IL_00c1:
{
t1_134 * L_27 = V_2;
t1_134 * L_28 = m1_1424(L_27, 0, NULL);
t1_83* L_29 = m1_1416(L_28, NULL);
t1_83* L_30 = m1_1375(__this, L_29, NULL);
(&V_0)->f3 = L_30;
t1_134 * L_31 = V_2;
t1_134 * L_32 = m1_1424(L_31, 1, NULL);
t1_83* L_33 = m1_1416(L_32, NULL);
t1_83* L_34 = m1_1375(__this, L_33, NULL);
(&V_0)->f4 = L_34;
t1_134 * L_35 = V_2;
t1_134 * L_36 = m1_1424(L_35, 2, NULL);
t1_83* L_37 = m1_1416(L_36, NULL);
t1_83* L_38 = m1_1375(__this, L_37, NULL);
(&V_0)->f1 = L_38;
t1_83* L_39 = ((&V_0)->f7);
t1_569 * L_40 = (t1_569 *)il2cpp_codegen_object_new (t1_569_TI_var);
m1_3731(L_40, ((int32_t)((int32_t)(((int32_t)((int32_t)(((t1_33 *)L_39)->max_length))))<<(int32_t)3)), NULL);
__this->f14 = L_40;
t1_119 * L_41 = (__this->f14);
t1_570 L_42 = V_0;
VirtActionInvoker1< t1_570 >::Invoke(12 /* System.Void System.Security.Cryptography.DSA::ImportParameters(System.Security.Cryptography.DSAParameters) */, L_41, L_42);
}
IL_012e:
{
t1_119 * L_43 = (__this->f14);
return L_43;
}
}
extern "C" t1_18* m1_1377 (t1_139 * __this, const MethodInfo* method)
{
{
t1_18* L_0 = (__this->f5);
return L_0;
}
}
extern TypeInfo* t1_83_TI_var;
extern "C" t1_83* m1_1378 (t1_139 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_83_TI_var = il2cpp_codegen_type_info_from_index(42);
s_Il2CppMethodIntialized = true;
}
{
t1_83* L_0 = (__this->f7);
if (L_0)
{
goto IL_000d;
}
}
{
return (t1_83*)NULL;
}
IL_000d:
{
t1_83* L_1 = (__this->f7);
t1_1 * L_2 = (t1_1 *)VirtFuncInvoker0< t1_1 * >::Invoke(5 /* System.Object System.Array::Clone() */, L_1);
return ((t1_83*)Castclass(L_2, t1_83_TI_var));
}
}
extern TypeInfo* t1_83_TI_var;
extern "C" t1_83* m1_1379 (t1_139 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_83_TI_var = il2cpp_codegen_type_info_from_index(42);
s_Il2CppMethodIntialized = true;
}
{
t1_83* L_0 = (__this->f10);
if (L_0)
{
goto IL_000d;
}
}
{
return (t1_83*)NULL;
}
IL_000d:
{
t1_83* L_1 = (__this->f10);
t1_1 * L_2 = (t1_1 *)VirtFuncInvoker0< t1_1 * >::Invoke(5 /* System.Object System.Array::Clone() */, L_1);
return ((t1_83*)Castclass(L_2, t1_83_TI_var));
}
}
extern TypeInfo* t1_83_TI_var;
extern "C" t1_83* m1_1380 (t1_139 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_83_TI_var = il2cpp_codegen_type_info_from_index(42);
s_Il2CppMethodIntialized = true;
}
{
t1_83* L_0 = (__this->f1);
if (L_0)
{
goto IL_000d;
}
}
{
return (t1_83*)NULL;
}
IL_000d:
{
t1_83* L_1 = (__this->f1);
t1_1 * L_2 = (t1_1 *)VirtFuncInvoker0< t1_1 * >::Invoke(5 /* System.Object System.Array::Clone() */, L_1);
return ((t1_83*)Castclass(L_2, t1_83_TI_var));
}
}
extern "C" t1_18* m1_1381 (t1_139 * __this, const MethodInfo* method)
{
{
t1_18* L_0 = (__this->f9);
return L_0;
}
}
extern "C" t1_140 m1_1382 (t1_139 * __this, const MethodInfo* method)
{
{
t1_140 L_0 = (__this->f2);
return L_0;
}
}
extern "C" t1_140 m1_1383 (t1_139 * __this, const MethodInfo* method)
{
{
t1_140 L_0 = (__this->f3);
return L_0;
}
}
extern "C" t1_134 * m1_1384 (t1_139 * __this, const MethodInfo* method)
{
{
t1_134 * L_0 = (__this->f4);
return L_0;
}
}
extern "C" t1_134 * m1_1385 (t1_139 * __this, const MethodInfo* method)
{
{
t1_134 * L_0 = (__this->f8);
return L_0;
}
}
extern Il2CppCodeGenString* _stringLiteral435;
extern "C" void m1_1386 (t1_139 * __this, t1_190 * p0, t1_521 p1, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
_stringLiteral435 = il2cpp_codegen_string_literal_from_index(435);
s_Il2CppMethodIntialized = true;
}
{
t1_190 * L_0 = p0;
t1_83* L_1 = (__this->f1);
m1_3629(L_0, _stringLiteral435, (t1_1 *)(t1_1 *)L_1, NULL);
return;
}
}
extern TypeInfo* t1_231_TI_var;
extern TypeInfo* t1_18_TI_var;
extern TypeInfo* t1_710_TI_var;
extern Il2CppCodeGenString* _stringLiteral436;
extern Il2CppCodeGenString* _stringLiteral437;
extern "C" t1_83* m1_1387 (t1_1 * __this , t1_18* p0, t1_83* p1, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_231_TI_var = il2cpp_codegen_type_info_from_index(41);
t1_18_TI_var = il2cpp_codegen_type_info_from_index(11);
t1_710_TI_var = il2cpp_codegen_type_info_from_index(7);
_stringLiteral436 = il2cpp_codegen_string_literal_from_index(436);
_stringLiteral437 = il2cpp_codegen_string_literal_from_index(437);
s_Il2CppMethodIntialized = true;
}
t1_18* V_0 = {0};
t1_18* V_1 = {0};
t1_18* V_2 = {0};
int32_t V_3 = 0;
int32_t V_4 = 0;
t1_18* V_5 = {0};
{
IL2CPP_RUNTIME_CLASS_INIT(t1_231_TI_var);
t1_231 * L_0 = m1_4262(NULL, NULL);
t1_83* L_1 = p1;
t1_18* L_2 = (t1_18*)VirtFuncInvoker1< t1_18*, t1_83* >::Invoke(22 /* System.String System.Text.Encoding::GetString(System.Byte[]) */, L_0, L_1);
V_0 = L_2;
t1_18* L_3 = p0;
IL2CPP_RUNTIME_CLASS_INIT(t1_18_TI_var);
t1_18* L_4 = m1_412(NULL, _stringLiteral436, L_3, NULL);
V_1 = L_4;
t1_18* L_5 = p0;
t1_18* L_6 = m1_412(NULL, _stringLiteral437, L_5, NULL);
V_2 = L_6;
t1_18* L_7 = V_0;
t1_18* L_8 = V_1;
int32_t L_9 = m1_386(L_7, L_8, NULL);
t1_18* L_10 = V_1;
int32_t L_11 = m1_430(L_10, NULL);
V_3 = ((int32_t)((int32_t)L_9+(int32_t)L_11));
t1_18* L_12 = V_0;
t1_18* L_13 = V_2;
int32_t L_14 = V_3;
int32_t L_15 = m1_387(L_12, L_13, L_14, NULL);
V_4 = L_15;
t1_18* L_16 = V_0;
int32_t L_17 = V_3;
int32_t L_18 = V_4;
int32_t L_19 = V_3;
t1_18* L_20 = m1_355(L_16, L_17, ((int32_t)((int32_t)L_18-(int32_t)L_19)), NULL);
V_5 = L_20;
t1_18* L_21 = V_5;
IL2CPP_RUNTIME_CLASS_INIT(t1_710_TI_var);
t1_83* L_22 = m1_4617(NULL, L_21, NULL);
return L_22;
}
}
extern TypeInfo* t1_842_TI_var;
extern "C" void m1_1388 (t1_142 * __this, t1_137 * p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_842_TI_var = il2cpp_codegen_type_info_from_index(168);
s_Il2CppMethodIntialized = true;
}
{
m1_0(__this, NULL);
t1_137 * L_0 = p0;
t1_1 * L_1 = (t1_1 *)InterfaceFuncInvoker0< t1_1 * >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, t1_842_TI_var, L_0);
__this->f0 = L_1;
return;
}
}
extern TypeInfo* t1_143_TI_var;
extern "C" t1_1 * m1_1389 (t1_142 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_143_TI_var = il2cpp_codegen_type_info_from_index(158);
s_Il2CppMethodIntialized = true;
}
{
t1_1 * L_0 = (__this->f0);
t1_1 * L_1 = (t1_1 *)InterfaceFuncInvoker0< t1_1 * >::Invoke(0 /* System.Object System.Collections.IEnumerator::get_Current() */, t1_143_TI_var, L_0);
return L_1;
}
}
extern TypeInfo* t1_143_TI_var;
extern "C" bool m1_1390 (t1_142 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_143_TI_var = il2cpp_codegen_type_info_from_index(158);
s_Il2CppMethodIntialized = true;
}
{
t1_1 * L_0 = (__this->f0);
bool L_1 = (bool)InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, t1_143_TI_var, L_0);
return L_1;
}
}
extern TypeInfo* t1_143_TI_var;
extern "C" void m1_1391 (t1_142 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_143_TI_var = il2cpp_codegen_type_info_from_index(158);
s_Il2CppMethodIntialized = true;
}
{
t1_1 * L_0 = (__this->f0);
InterfaceActionInvoker0::Invoke(2 /* System.Void System.Collections.IEnumerator::Reset() */, t1_143_TI_var, L_0);
return;
}
}
extern TypeInfo* t1_143_TI_var;
extern TypeInfo* t1_139_TI_var;
extern "C" t1_139 * m1_1392 (t1_142 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_143_TI_var = il2cpp_codegen_type_info_from_index(158);
t1_139_TI_var = il2cpp_codegen_type_info_from_index(160);
s_Il2CppMethodIntialized = true;
}
{
t1_1 * L_0 = (__this->f0);
t1_1 * L_1 = (t1_1 *)InterfaceFuncInvoker0< t1_1 * >::Invoke(0 /* System.Object System.Collections.IEnumerator::get_Current() */, t1_143_TI_var, L_0);
return ((t1_139 *)CastclassClass(L_1, t1_139_TI_var));
}
}
extern TypeInfo* t1_143_TI_var;
extern "C" bool m1_1393 (t1_142 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_143_TI_var = il2cpp_codegen_type_info_from_index(158);
s_Il2CppMethodIntialized = true;
}
{
t1_1 * L_0 = (__this->f0);
bool L_1 = (bool)InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, t1_143_TI_var, L_0);
return L_1;
}
}
extern TypeInfo* t1_143_TI_var;
extern "C" void m1_1394 (t1_142 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_143_TI_var = il2cpp_codegen_type_info_from_index(158);
s_Il2CppMethodIntialized = true;
}
{
t1_1 * L_0 = (__this->f0);
InterfaceActionInvoker0::Invoke(2 /* System.Void System.Collections.IEnumerator::Reset() */, t1_143_TI_var, L_0);
return;
}
}
extern "C" void m1_1395 (t1_137 * __this, const MethodInfo* method)
{
{
m1_1661(__this, NULL);
return;
}
}
extern "C" t1_1 * m1_1396 (t1_137 * __this, const MethodInfo* method)
{
{
t1_126 * L_0 = m1_1678(__this, NULL);
t1_1 * L_1 = (t1_1 *)VirtFuncInvoker0< t1_1 * >::Invoke(43 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_0);
return L_1;
}
}
extern TypeInfo* t1_139_TI_var;
extern "C" t1_139 * m1_1397 (t1_137 * __this, int32_t p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_139_TI_var = il2cpp_codegen_type_info_from_index(160);
s_Il2CppMethodIntialized = true;
}
{
t1_126 * L_0 = m1_1678(__this, NULL);
int32_t L_1 = p0;
t1_1 * L_2 = (t1_1 *)VirtFuncInvoker1< t1_1 *, int32_t >::Invoke(21 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_0, L_1);
return ((t1_139 *)CastclassClass(L_2, t1_139_TI_var));
}
}
extern TypeInfo* t1_701_TI_var;
extern Il2CppCodeGenString* _stringLiteral52;
extern "C" int32_t m1_1398 (t1_137 * __this, t1_139 * p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_701_TI_var = il2cpp_codegen_type_info_from_index(2);
_stringLiteral52 = il2cpp_codegen_string_literal_from_index(52);
s_Il2CppMethodIntialized = true;
}
{
t1_139 * L_0 = p0;
if (L_0)
{
goto IL_0011;
}
}
{
t1_701 * L_1 = (t1_701 *)il2cpp_codegen_object_new (t1_701_TI_var);
m1_4570(L_1, _stringLiteral52, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_1);
}
IL_0011:
{
t1_126 * L_2 = m1_1678(__this, NULL);
t1_139 * L_3 = p0;
int32_t L_4 = (int32_t)VirtFuncInvoker1< int32_t, t1_1 * >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_2, L_3);
return L_4;
}
}
extern TypeInfo* t1_142_TI_var;
extern "C" t1_142 * m1_1399 (t1_137 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_142_TI_var = il2cpp_codegen_type_info_from_index(169);
s_Il2CppMethodIntialized = true;
}
{
t1_142 * L_0 = (t1_142 *)il2cpp_codegen_object_new (t1_142_TI_var);
m1_1388(L_0, __this, NULL);
return L_0;
}
}
extern "C" int32_t m1_1400 (t1_137 * __this, const MethodInfo* method)
{
{
t1_126 * L_0 = m1_1678(__this, NULL);
int32_t L_1 = (int32_t)VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, L_0);
return L_1;
}
}
extern TypeInfo* t1_653_TI_var;
extern TypeInfo* t1_134_TI_var;
extern TypeInfo* t1_1_TI_var;
extern Il2CppCodeGenString* _stringLiteral438;
extern "C" void m1_1401 (t1_145 * __this, t1_134 * p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_653_TI_var = il2cpp_codegen_type_info_from_index(4);
t1_134_TI_var = il2cpp_codegen_type_info_from_index(148);
t1_1_TI_var = il2cpp_codegen_type_info_from_index(0);
_stringLiteral438 = il2cpp_codegen_string_literal_from_index(438);
s_Il2CppMethodIntialized = true;
}
t1_134 * V_0 = {0};
t1_43 * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
t1_43 * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
t1_145 * G_B7_0 = {0};
t1_145 * G_B6_0 = {0};
int32_t G_B8_0 = 0;
t1_145 * G_B8_1 = {0};
{
m1_0(__this, NULL);
t1_134 * L_0 = p0;
uint8_t L_1 = m1_1414(L_0, NULL);
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)48)))))
{
goto IL_001f;
}
}
{
t1_134 * L_2 = p0;
int32_t L_3 = m1_1413(L_2, NULL);
if ((((int32_t)L_3) >= ((int32_t)2)))
{
goto IL_002f;
}
}
IL_001f:
{
t1_18* L_4 = m1_990(NULL, _stringLiteral438, NULL);
t1_653 * L_5 = (t1_653 *)il2cpp_codegen_object_new (t1_653_TI_var);
m1_4561(L_5, L_4, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_5);
}
IL_002f:
{
t1_134 * L_6 = p0;
t1_134 * L_7 = m1_1424(L_6, 0, NULL);
uint8_t L_8 = m1_1414(L_7, NULL);
if ((((int32_t)L_8) == ((int32_t)6)))
{
goto IL_0051;
}
}
{
t1_18* L_9 = m1_990(NULL, _stringLiteral438, NULL);
t1_653 * L_10 = (t1_653 *)il2cpp_codegen_object_new (t1_653_TI_var);
m1_4561(L_10, L_9, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_10);
}
IL_0051:
{
t1_134 * L_11 = p0;
t1_134 * L_12 = m1_1424(L_11, 0, NULL);
t1_18* L_13 = m1_1430(NULL, L_12, NULL);
__this->f0 = L_13;
t1_134 * L_14 = p0;
t1_134 * L_15 = m1_1424(L_14, 1, NULL);
uint8_t L_16 = m1_1414(L_15, NULL);
G_B6_0 = __this;
if ((!(((uint32_t)L_16) == ((uint32_t)1))))
{
G_B7_0 = __this;
goto IL_008d;
}
}
{
t1_134 * L_17 = p0;
t1_134 * L_18 = m1_1424(L_17, 1, NULL);
t1_83* L_19 = m1_1416(L_18, NULL);
int32_t L_20 = 0;
G_B8_0 = ((((int32_t)(*(uint8_t*)(uint8_t*)SZArrayLdElema(L_19, L_20, sizeof(uint8_t)))) == ((int32_t)((int32_t)255)))? 1 : 0);
G_B8_1 = G_B6_0;
goto IL_008e;
}
IL_008d:
{
G_B8_0 = 0;
G_B8_1 = G_B7_0;
}
IL_008e:
{
G_B8_1->f1 = G_B8_0;
t1_134 * L_21 = p0;
t1_134 * L_22 = p0;
int32_t L_23 = m1_1413(L_22, NULL);
t1_134 * L_24 = m1_1424(L_21, ((int32_t)((int32_t)L_23-(int32_t)1)), NULL);
__this->f2 = L_24;
t1_134 * L_25 = (__this->f2);
uint8_t L_26 = m1_1414(L_25, NULL);
if ((!(((uint32_t)L_26) == ((uint32_t)4))))
{
goto IL_010e;
}
}
{
t1_134 * L_27 = (__this->f2);
int32_t L_28 = m1_1415(L_27, NULL);
if ((((int32_t)L_28) <= ((int32_t)0)))
{
goto IL_010e;
}
}
{
t1_134 * L_29 = (__this->f2);
int32_t L_30 = m1_1413(L_29, NULL);
if (L_30)
{
goto IL_010e;
}
}
IL_00d9:
try
{ // begin try (depth: 1)
t1_134 * L_31 = (__this->f2);
t1_83* L_32 = m1_1416(L_31, NULL);
t1_134 * L_33 = (t1_134 *)il2cpp_codegen_object_new (t1_134_TI_var);
m1_1412(L_33, L_32, NULL);
V_0 = L_33;
t1_134 * L_34 = (__this->f2);
m1_1417(L_34, (t1_83*)(t1_83*)NULL, NULL);
t1_134 * L_35 = (__this->f2);
t1_134 * L_36 = V_0;
m1_1420(L_35, L_36, NULL);
goto IL_010e;
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (t1_43 *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (t1_1_TI_var, e.ex->object.klass))
goto CATCH_0108;
throw e;
}
CATCH_0108:
{ // begin catch(System.Object)
goto IL_010e;
} // end catch (depth: 1)
IL_010e:
{
VirtActionInvoker0::Invoke(4 /* System.Void Mono.Security.X509.X509Extension::Decode() */, __this);
return;
}
}
extern "C" void m1_1402 (t1_145 * __this, const MethodInfo* method)
{
{
return;
}
}
extern TypeInfo* t1_145_TI_var;
extern TypeInfo* t1_18_TI_var;
extern "C" bool m1_1403 (t1_145 * __this, t1_1 * p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_145_TI_var = il2cpp_codegen_type_info_from_index(170);
t1_18_TI_var = il2cpp_codegen_type_info_from_index(11);
s_Il2CppMethodIntialized = true;
}
t1_145 * V_0 = {0};
int32_t V_1 = 0;
{
t1_1 * L_0 = p0;
if (L_0)
{
goto IL_0008;
}
}
{
return 0;
}
IL_0008:
{
t1_1 * L_1 = p0;
V_0 = ((t1_145 *)IsInstClass(L_1, t1_145_TI_var));
t1_145 * L_2 = V_0;
if (L_2)
{
goto IL_0017;
}
}
{
return 0;
}
IL_0017:
{
bool L_3 = (__this->f1);
t1_145 * L_4 = V_0;
bool L_5 = (L_4->f1);
if ((((int32_t)L_3) == ((int32_t)L_5)))
{
goto IL_002a;
}
}
{
return 0;
}
IL_002a:
{
t1_18* L_6 = (__this->f0);
t1_145 * L_7 = V_0;
t1_18* L_8 = (L_7->f0);
IL2CPP_RUNTIME_CLASS_INIT(t1_18_TI_var);
bool L_9 = m1_457(NULL, L_6, L_8, NULL);
if (!L_9)
{
goto IL_0042;
}
}
{
return 0;
}
IL_0042:
{
t1_134 * L_10 = (__this->f2);
int32_t L_11 = m1_1415(L_10, NULL);
t1_145 * L_12 = V_0;
t1_134 * L_13 = (L_12->f2);
int32_t L_14 = m1_1415(L_13, NULL);
if ((((int32_t)L_11) == ((int32_t)L_14)))
{
goto IL_005f;
}
}
{
return 0;
}
IL_005f:
{
V_1 = 0;
goto IL_0089;
}
IL_0066:
{
t1_134 * L_15 = (__this->f2);
int32_t L_16 = V_1;
t1_134 * L_17 = m1_1424(L_15, L_16, NULL);
t1_145 * L_18 = V_0;
t1_134 * L_19 = (L_18->f2);
int32_t L_20 = V_1;
t1_134 * L_21 = m1_1424(L_19, L_20, NULL);
if ((((t1_1*)(t1_134 *)L_17) == ((t1_1*)(t1_134 *)L_21)))
{
goto IL_0085;
}
}
{
return 0;
}
IL_0085:
{
int32_t L_22 = V_1;
V_1 = ((int32_t)((int32_t)L_22+(int32_t)1));
}
IL_0089:
{
int32_t L_23 = V_1;
t1_134 * L_24 = (__this->f2);
int32_t L_25 = m1_1415(L_24, NULL);
if ((((int32_t)L_23) < ((int32_t)L_25)))
{
goto IL_0066;
}
}
{
return 1;
}
}
extern "C" int32_t m1_1404 (t1_145 * __this, const MethodInfo* method)
{
{
t1_18* L_0 = (__this->f0);
int32_t L_1 = m1_435(L_0, NULL);
return L_1;
}
}
extern TypeInfo* t1_175_TI_var;
extern TypeInfo* t1_710_TI_var;
extern Il2CppCodeGenString* _stringLiteral131;
extern Il2CppCodeGenString* _stringLiteral232;
extern Il2CppCodeGenString* _stringLiteral439;
extern Il2CppCodeGenString* _stringLiteral440;
extern Il2CppCodeGenString* _stringLiteral49;
extern "C" void m1_1405 (t1_145 * __this, t1_158 * p0, int32_t p1, int32_t p2, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_175_TI_var = il2cpp_codegen_type_info_from_index(28);
t1_710_TI_var = il2cpp_codegen_type_info_from_index(7);
_stringLiteral131 = il2cpp_codegen_string_literal_from_index(131);
_stringLiteral232 = il2cpp_codegen_string_literal_from_index(232);
_stringLiteral439 = il2cpp_codegen_string_literal_from_index(439);
_stringLiteral440 = il2cpp_codegen_string_literal_from_index(440);
_stringLiteral49 = il2cpp_codegen_string_literal_from_index(49);
s_Il2CppMethodIntialized = true;
}
t1_83* V_0 = {0};
int32_t V_1 = 0;
int32_t V_2 = 0;
int32_t V_3 = 0;
uint8_t V_4 = 0x0;
{
t1_134 * L_0 = (__this->f2);
t1_83* L_1 = m1_1416(L_0, NULL);
V_0 = L_1;
int32_t L_2 = p2;
V_1 = L_2;
V_2 = 0;
goto IL_005e;
}
IL_0015:
{
int32_t L_3 = V_2;
int32_t L_4 = p1;
if ((((int32_t)L_3) >= ((int32_t)L_4)))
{
goto IL_004e;
}
}
{
t1_158 * L_5 = p0;
t1_83* L_6 = V_0;
int32_t L_7 = V_1;
int32_t L_8 = L_7;
V_1 = ((int32_t)((int32_t)L_8+(int32_t)1));
IL2CPP_RUNTIME_CLASS_INIT(t1_175_TI_var);
t1_175 * L_9 = m1_1922(NULL, NULL);
t1_18* L_10 = m1_193(((uint8_t*)(uint8_t*)SZArrayLdElema(L_6, L_8, sizeof(uint8_t))), _stringLiteral131, L_9, NULL);
m1_4308(L_5, L_10, NULL);
t1_158 * L_11 = p0;
m1_4308(L_11, _stringLiteral232, NULL);
goto IL_005a;
}
IL_004e:
{
t1_158 * L_12 = p0;
m1_4308(L_12, _stringLiteral439, NULL);
}
IL_005a:
{
int32_t L_13 = V_2;
V_2 = ((int32_t)((int32_t)L_13+(int32_t)1));
}
IL_005e:
{
int32_t L_14 = V_2;
if ((((int32_t)L_14) < ((int32_t)8)))
{
goto IL_0015;
}
}
{
t1_158 * L_15 = p0;
m1_4308(L_15, _stringLiteral440, NULL);
int32_t L_16 = p2;
V_1 = L_16;
V_3 = 0;
goto IL_00af;
}
IL_007a:
{
t1_83* L_17 = V_0;
int32_t L_18 = V_1;
int32_t L_19 = L_18;
V_1 = ((int32_t)((int32_t)L_19+(int32_t)1));
int32_t L_20 = L_19;
V_4 = (*(uint8_t*)(uint8_t*)SZArrayLdElema(L_17, L_20, sizeof(uint8_t)));
uint8_t L_21 = V_4;
if ((((int32_t)L_21) >= ((int32_t)((int32_t)32))))
{
goto IL_009d;
}
}
{
t1_158 * L_22 = p0;
m1_4308(L_22, _stringLiteral49, NULL);
goto IL_00ab;
}
IL_009d:
{
t1_158 * L_23 = p0;
uint8_t L_24 = V_4;
IL2CPP_RUNTIME_CLASS_INIT(t1_710_TI_var);
uint16_t L_25 = m1_4649(NULL, L_24, NULL);
m1_4312(L_23, L_25, NULL);
}
IL_00ab:
{
int32_t L_26 = V_3;
V_3 = ((int32_t)((int32_t)L_26+(int32_t)1));
}
IL_00af:
{
int32_t L_27 = V_3;
int32_t L_28 = p1;
if ((((int32_t)L_27) < ((int32_t)L_28)))
{
goto IL_007a;
}
}
{
t1_158 * L_29 = p0;
t1_18* L_30 = m1_4977(NULL, NULL);
m1_4308(L_29, L_30, NULL);
return;
}
}
extern TypeInfo* t1_158_TI_var;
extern "C" t1_18* m1_1406 (t1_145 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_158_TI_var = il2cpp_codegen_type_info_from_index(36);
s_Il2CppMethodIntialized = true;
}
t1_158 * V_0 = {0};
int32_t V_1 = 0;
int32_t V_2 = 0;
int32_t V_3 = 0;
int32_t V_4 = 0;
{
t1_158 * L_0 = (t1_158 *)il2cpp_codegen_object_new (t1_158_TI_var);
m1_4291(L_0, NULL);
V_0 = L_0;
t1_134 * L_1 = (__this->f2);
int32_t L_2 = m1_1415(L_1, NULL);
V_1 = ((int32_t)((int32_t)L_2>>(int32_t)3));
t1_134 * L_3 = (__this->f2);
int32_t L_4 = m1_1415(L_3, NULL);
int32_t L_5 = V_1;
V_2 = ((int32_t)((int32_t)L_4-(int32_t)((int32_t)((int32_t)L_5<<(int32_t)3))));
V_3 = 0;
V_4 = 0;
goto IL_0041;
}
IL_002e:
{
t1_158 * L_6 = V_0;
int32_t L_7 = V_3;
m1_1405(__this, L_6, 8, L_7, NULL);
int32_t L_8 = V_3;
V_3 = ((int32_t)((int32_t)L_8+(int32_t)8));
int32_t L_9 = V_4;
V_4 = ((int32_t)((int32_t)L_9+(int32_t)1));
}
IL_0041:
{
int32_t L_10 = V_4;
int32_t L_11 = V_1;
if ((((int32_t)L_10) < ((int32_t)L_11)))
{
goto IL_002e;
}
}
{
t1_158 * L_12 = V_0;
int32_t L_13 = V_2;
int32_t L_14 = V_3;
m1_1405(__this, L_12, L_13, L_14, NULL);
t1_158 * L_15 = V_0;
t1_18* L_16 = m1_4303(L_15, NULL);
return L_16;
}
}
extern "C" void m1_1407 (t1_141 * __this, const MethodInfo* method)
{
{
m1_1661(__this, NULL);
return;
}
}
extern TypeInfo* t1_43_TI_var;
extern TypeInfo* t1_145_TI_var;
extern Il2CppCodeGenString* _stringLiteral441;
extern "C" void m1_1408 (t1_141 * __this, t1_134 * p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_43_TI_var = il2cpp_codegen_type_info_from_index(45);
t1_145_TI_var = il2cpp_codegen_type_info_from_index(170);
_stringLiteral441 = il2cpp_codegen_string_literal_from_index(441);
s_Il2CppMethodIntialized = true;
}
int32_t V_0 = 0;
t1_145 * V_1 = {0};
{
m1_1407(__this, NULL);
__this->f1 = 1;
t1_134 * L_0 = p0;
if (L_0)
{
goto IL_0014;
}
}
{
return;
}
IL_0014:
{
t1_134 * L_1 = p0;
uint8_t L_2 = m1_1414(L_1, NULL);
if ((((int32_t)L_2) == ((int32_t)((int32_t)48))))
{
goto IL_002c;
}
}
{
t1_43 * L_3 = (t1_43 *)il2cpp_codegen_object_new (t1_43_TI_var);
m1_933(L_3, _stringLiteral441, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_3);
}
IL_002c:
{
V_0 = 0;
goto IL_0051;
}
IL_0033:
{
t1_134 * L_4 = p0;
int32_t L_5 = V_0;
t1_134 * L_6 = m1_1424(L_4, L_5, NULL);
t1_145 * L_7 = (t1_145 *)il2cpp_codegen_object_new (t1_145_TI_var);
m1_1401(L_7, L_6, NULL);
V_1 = L_7;
t1_126 * L_8 = m1_1678(__this, NULL);
t1_145 * L_9 = V_1;
VirtFuncInvoker1< int32_t, t1_1 * >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_8, L_9);
int32_t L_10 = V_0;
V_0 = ((int32_t)((int32_t)L_10+(int32_t)1));
}
IL_0051:
{
int32_t L_11 = V_0;
t1_134 * L_12 = p0;
int32_t L_13 = m1_1413(L_12, NULL);
if ((((int32_t)L_11) < ((int32_t)L_13)))
{
goto IL_0033;
}
}
{
return;
}
}
extern "C" t1_1 * m1_1409 (t1_141 * __this, const MethodInfo* method)
{
{
t1_126 * L_0 = m1_1678(__this, NULL);
t1_1 * L_1 = (t1_1 *)VirtFuncInvoker0< t1_1 * >::Invoke(43 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_0);
return L_1;
}
}
extern "C" void m1_1410 (t1_134 * __this, uint8_t p0, const MethodInfo* method)
{
{
uint8_t L_0 = p0;
m1_1411(__this, L_0, (t1_83*)(t1_83*)NULL, NULL);
return;
}
}
extern "C" void m1_1411 (t1_134 * __this, uint8_t p0, t1_83* p1, const MethodInfo* method)
{
{
m1_0(__this, NULL);
uint8_t L_0 = p0;
__this->f0 = L_0;
t1_83* L_1 = p1;
__this->f1 = L_1;
return;
}
}
extern TypeInfo* t1_756_TI_var;
extern TypeInfo* t1_83_TI_var;
extern Il2CppCodeGenString* _stringLiteral442;
extern "C" void m1_1412 (t1_134 * __this, t1_83* p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_756_TI_var = il2cpp_codegen_type_info_from_index(6);
t1_83_TI_var = il2cpp_codegen_type_info_from_index(42);
_stringLiteral442 = il2cpp_codegen_string_literal_from_index(442);
s_Il2CppMethodIntialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
int32_t V_3 = 0;
{
m1_0(__this, NULL);
t1_83* L_0 = p0;
int32_t L_1 = 0;
__this->f0 = (*(uint8_t*)(uint8_t*)SZArrayLdElema(L_0, L_1, sizeof(uint8_t)));
V_0 = 0;
t1_83* L_2 = p0;
int32_t L_3 = 1;
V_1 = (*(uint8_t*)(uint8_t*)SZArrayLdElema(L_2, L_3, sizeof(uint8_t)));
int32_t L_4 = V_1;
if ((((int32_t)L_4) <= ((int32_t)((int32_t)128))))
{
goto IL_0051;
}
}
{
int32_t L_5 = V_1;
V_0 = ((int32_t)((int32_t)L_5-(int32_t)((int32_t)128)));
V_1 = 0;
V_2 = 0;
goto IL_0045;
}
IL_0031:
{
int32_t L_6 = V_1;
V_1 = ((int32_t)((int32_t)L_6*(int32_t)((int32_t)256)));
int32_t L_7 = V_1;
t1_83* L_8 = p0;
int32_t L_9 = V_2;
int32_t L_10 = ((int32_t)((int32_t)L_9+(int32_t)2));
V_1 = ((int32_t)((int32_t)L_7+(int32_t)(*(uint8_t*)(uint8_t*)SZArrayLdElema(L_8, L_10, sizeof(uint8_t)))));
int32_t L_11 = V_2;
V_2 = ((int32_t)((int32_t)L_11+(int32_t)1));
}
IL_0045:
{
int32_t L_12 = V_2;
int32_t L_13 = V_0;
if ((((int32_t)L_12) < ((int32_t)L_13)))
{
goto IL_0031;
}
}
{
goto IL_0067;
}
IL_0051:
{
int32_t L_14 = V_1;
if ((!(((uint32_t)L_14) == ((uint32_t)((int32_t)128)))))
{
goto IL_0067;
}
}
{
t1_756 * L_15 = (t1_756 *)il2cpp_codegen_object_new (t1_756_TI_var);
m1_5149(L_15, _stringLiteral442, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_15);
}
IL_0067:
{
int32_t L_16 = V_1;
__this->f1 = ((t1_83*)SZArrayNew(t1_83_TI_var, L_16));
t1_83* L_17 = p0;
int32_t L_18 = V_0;
t1_83* L_19 = (__this->f1);
int32_t L_20 = V_1;
m1_4597(NULL, (t1_33 *)(t1_33 *)L_17, ((int32_t)((int32_t)2+(int32_t)L_18)), (t1_33 *)(t1_33 *)L_19, 0, L_20, NULL);
uint8_t L_21 = (__this->f0);
if ((!(((uint32_t)((int32_t)((int32_t)L_21&(int32_t)((int32_t)32)))) == ((uint32_t)((int32_t)32)))))
{
goto IL_00a4;
}
}
{
int32_t L_22 = V_0;
V_3 = ((int32_t)((int32_t)2+(int32_t)L_22));
t1_83* L_23 = p0;
t1_83* L_24 = p0;
m1_1422(__this, L_23, (&V_3), (((int32_t)((int32_t)(((t1_33 *)L_24)->max_length)))), NULL);
}
IL_00a4:
{
return;
}
}
extern "C" int32_t m1_1413 (t1_134 * __this, const MethodInfo* method)
{
{
t1_126 * L_0 = (__this->f2);
if (L_0)
{
goto IL_000d;
}
}
{
return 0;
}
IL_000d:
{
t1_126 * L_1 = (__this->f2);
int32_t L_2 = (int32_t)VirtFuncInvoker0< int32_t >::Invoke(23 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_1);
return L_2;
}
}
extern "C" uint8_t m1_1414 (t1_134 * __this, const MethodInfo* method)
{
{
uint8_t L_0 = (__this->f0);
return L_0;
}
}
extern "C" int32_t m1_1415 (t1_134 * __this, const MethodInfo* method)
{
{
t1_83* L_0 = (__this->f1);
if (!L_0)
{
goto IL_0014;
}
}
{
t1_83* L_1 = (__this->f1);
return (((int32_t)((int32_t)(((t1_33 *)L_1)->max_length))));
}
IL_0014:
{
return 0;
}
}
extern TypeInfo* t1_83_TI_var;
extern "C" t1_83* m1_1416 (t1_134 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_83_TI_var = il2cpp_codegen_type_info_from_index(42);
s_Il2CppMethodIntialized = true;
}
{
t1_83* L_0 = (__this->f1);
if (L_0)
{
goto IL_0012;
}
}
{
VirtFuncInvoker0< t1_83* >::Invoke(4 /* System.Byte[] Mono.Security.ASN1::GetBytes() */, __this);
}
IL_0012:
{
t1_83* L_1 = (__this->f1);
t1_1 * L_2 = (t1_1 *)VirtFuncInvoker0< t1_1 * >::Invoke(5 /* System.Object System.Array::Clone() */, L_1);
return ((t1_83*)Castclass(L_2, t1_83_TI_var));
}
}
extern TypeInfo* t1_83_TI_var;
extern "C" void m1_1417 (t1_134 * __this, t1_83* p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_83_TI_var = il2cpp_codegen_type_info_from_index(42);
s_Il2CppMethodIntialized = true;
}
{
t1_83* L_0 = p0;
if (!L_0)
{
goto IL_0017;
}
}
{
t1_83* L_1 = p0;
t1_1 * L_2 = (t1_1 *)VirtFuncInvoker0< t1_1 * >::Invoke(5 /* System.Object System.Array::Clone() */, L_1);
__this->f1 = ((t1_83*)Castclass(L_2, t1_83_TI_var));
}
IL_0017:
{
return;
}
}
extern "C" bool m1_1418 (t1_134 * __this, t1_83* p0, t1_83* p1, const MethodInfo* method)
{
bool V_0 = false;
int32_t V_1 = 0;
{
t1_83* L_0 = p0;
t1_83* L_1 = p1;
V_0 = ((((int32_t)(((int32_t)((int32_t)(((t1_33 *)L_0)->max_length))))) == ((int32_t)(((int32_t)((int32_t)(((t1_33 *)L_1)->max_length))))))? 1 : 0);
bool L_2 = V_0;
if (!L_2)
{
goto IL_0030;
}
}
{
V_1 = 0;
goto IL_0027;
}
IL_0016:
{
t1_83* L_3 = p0;
int32_t L_4 = V_1;
int32_t L_5 = L_4;
t1_83* L_6 = p1;
int32_t L_7 = V_1;
int32_t L_8 = L_7;
if ((((int32_t)(*(uint8_t*)(uint8_t*)SZArrayLdElema(L_3, L_5, sizeof(uint8_t)))) == ((int32_t)(*(uint8_t*)(uint8_t*)SZArrayLdElema(L_6, L_8, sizeof(uint8_t))))))
{
goto IL_0023;
}
}
{
return 0;
}
IL_0023:
{
int32_t L_9 = V_1;
V_1 = ((int32_t)((int32_t)L_9+(int32_t)1));
}
IL_0027:
{
int32_t L_10 = V_1;
t1_83* L_11 = p0;
if ((((int32_t)L_10) < ((int32_t)(((int32_t)((int32_t)(((t1_33 *)L_11)->max_length)))))))
{
goto IL_0016;
}
}
IL_0030:
{
bool L_12 = V_0;
return L_12;
}
}
extern "C" bool m1_1419 (t1_134 * __this, t1_83* p0, const MethodInfo* method)
{
{
t1_83* L_0 = (__this->f1);
t1_83* L_1 = p0;
bool L_2 = m1_1418(__this, L_0, L_1, NULL);
return L_2;
}
}
extern TypeInfo* t1_126_TI_var;
extern "C" t1_134 * m1_1420 (t1_134 * __this, t1_134 * p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_126_TI_var = il2cpp_codegen_type_info_from_index(55);
s_Il2CppMethodIntialized = true;
}
{
t1_134 * L_0 = p0;
if (!L_0)
{
goto IL_0029;
}
}
{
t1_126 * L_1 = (__this->f2);
if (L_1)
{
goto IL_001c;
}
}
{
t1_126 * L_2 = (t1_126 *)il2cpp_codegen_object_new (t1_126_TI_var);
m1_1590(L_2, NULL);
__this->f2 = L_2;
}
IL_001c:
{
t1_126 * L_3 = (__this->f2);
t1_134 * L_4 = p0;
VirtFuncInvoker1< int32_t, t1_1 * >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_3, L_4);
}
IL_0029:
{
t1_134 * L_5 = p0;
return L_5;
}
}
extern TypeInfo* t1_126_TI_var;
extern TypeInfo* t1_143_TI_var;
extern TypeInfo* t1_134_TI_var;
extern TypeInfo* t1_841_TI_var;
extern TypeInfo* t1_83_TI_var;
extern "C" t1_83* m1_1421 (t1_134 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_126_TI_var = il2cpp_codegen_type_info_from_index(55);
t1_143_TI_var = il2cpp_codegen_type_info_from_index(158);
t1_134_TI_var = il2cpp_codegen_type_info_from_index(148);
t1_841_TI_var = il2cpp_codegen_type_info_from_index(141);
t1_83_TI_var = il2cpp_codegen_type_info_from_index(42);
s_Il2CppMethodIntialized = true;
}
t1_83* V_0 = {0};
int32_t V_1 = 0;
t1_126 * V_2 = {0};
t1_134 * V_3 = {0};
t1_1 * V_4 = {0};
t1_83* V_5 = {0};
int32_t V_6 = 0;
int32_t V_7 = 0;
t1_83* V_8 = {0};
t1_83* V_9 = {0};
int32_t V_10 = 0;
int32_t V_11 = 0;
t1_1 * V_12 = {0};
t1_43 * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
t1_43 * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
V_0 = (t1_83*)NULL;
int32_t L_0 = m1_1413(__this, NULL);
if ((((int32_t)L_0) <= ((int32_t)0)))
{
goto IL_00ca;
}
}
{
V_1 = 0;
t1_126 * L_1 = (t1_126 *)il2cpp_codegen_object_new (t1_126_TI_var);
m1_1590(L_1, NULL);
V_2 = L_1;
t1_126 * L_2 = (__this->f2);
t1_1 * L_3 = (t1_1 *)VirtFuncInvoker0< t1_1 * >::Invoke(43 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_2);
V_4 = L_3;
}
IL_0023:
try
{ // begin try (depth: 1)
{
goto IL_004d;
}
IL_0028:
{
t1_1 * L_4 = V_4;
t1_1 * L_5 = (t1_1 *)InterfaceFuncInvoker0< t1_1 * >::Invoke(0 /* System.Object System.Collections.IEnumerator::get_Current() */, t1_143_TI_var, L_4);
V_3 = ((t1_134 *)CastclassClass(L_5, t1_134_TI_var));
t1_134 * L_6 = V_3;
t1_83* L_7 = (t1_83*)VirtFuncInvoker0< t1_83* >::Invoke(4 /* System.Byte[] Mono.Security.ASN1::GetBytes() */, L_6);
V_5 = L_7;
t1_126 * L_8 = V_2;
t1_83* L_9 = V_5;
VirtFuncInvoker1< int32_t, t1_1 * >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_8, (t1_1 *)(t1_1 *)L_9);
int32_t L_10 = V_1;
t1_83* L_11 = V_5;
V_1 = ((int32_t)((int32_t)L_10+(int32_t)(((int32_t)((int32_t)(((t1_33 *)L_11)->max_length))))));
}
IL_004d:
{
t1_1 * L_12 = V_4;
bool L_13 = (bool)InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, t1_143_TI_var, L_12);
if (L_13)
{
goto IL_0028;
}
}
IL_0059:
{
IL2CPP_LEAVE(0x74, FINALLY_005e);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (t1_43 *)e.ex;
goto FINALLY_005e;
}
FINALLY_005e:
{ // begin finally (depth: 1)
{
t1_1 * L_14 = V_4;
V_12 = ((t1_1 *)IsInst(L_14, t1_841_TI_var));
t1_1 * L_15 = V_12;
if (L_15)
{
goto IL_006c;
}
}
IL_006b:
{
IL2CPP_END_FINALLY(94)
}
IL_006c:
{
t1_1 * L_16 = V_12;
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, t1_841_TI_var, L_16);
IL2CPP_END_FINALLY(94)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(94)
{
IL2CPP_JUMP_TBL(0x74, IL_0074)
IL2CPP_RETHROW_IF_UNHANDLED(t1_43 *)
}
IL_0074:
{
int32_t L_17 = V_1;
V_0 = ((t1_83*)SZArrayNew(t1_83_TI_var, L_17));
V_6 = 0;
V_7 = 0;
goto IL_00b3;
}
IL_0086:
{
t1_126 * L_18 = V_2;
int32_t L_19 = V_7;
t1_1 * L_20 = (t1_1 *)VirtFuncInvoker1< t1_1 *, int32_t >::Invoke(21 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_18, L_19);
V_8 = ((t1_83*)Castclass(L_20, t1_83_TI_var));
t1_83* L_21 = V_8;
t1_83* L_22 = V_0;
int32_t L_23 = V_6;
t1_83* L_24 = V_8;
m1_4597(NULL, (t1_33 *)(t1_33 *)L_21, 0, (t1_33 *)(t1_33 *)L_22, L_23, (((int32_t)((int32_t)(((t1_33 *)L_24)->max_length)))), NULL);
int32_t L_25 = V_6;
t1_83* L_26 = V_8;
V_6 = ((int32_t)((int32_t)L_25+(int32_t)(((int32_t)((int32_t)(((t1_33 *)L_26)->max_length))))));
int32_t L_27 = V_7;
V_7 = ((int32_t)((int32_t)L_27+(int32_t)1));
}
IL_00b3:
{
int32_t L_28 = V_7;
t1_126 * L_29 = (__this->f2);
int32_t L_30 = (int32_t)VirtFuncInvoker0< int32_t >::Invoke(23 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_29);
if ((((int32_t)L_28) < ((int32_t)L_30)))
{
goto IL_0086;
}
}
{
goto IL_00dc;
}
IL_00ca:
{
t1_83* L_31 = (__this->f1);
if (!L_31)
{
goto IL_00dc;
}
}
{
t1_83* L_32 = (__this->f1);
V_0 = L_32;
}
IL_00dc:
{
V_10 = 0;
t1_83* L_33 = V_0;
if (!L_33)
{
goto IL_022a;
}
}
{
t1_83* L_34 = V_0;
V_11 = (((int32_t)((int32_t)(((t1_33 *)L_34)->max_length))));
int32_t L_35 = V_11;
if ((((int32_t)L_35) <= ((int32_t)((int32_t)127))))
{
goto IL_01f8;
}
}
{
int32_t L_36 = V_11;
if ((((int32_t)L_36) > ((int32_t)((int32_t)255))))
{
goto IL_0129;
}
}
{
int32_t L_37 = V_11;
V_9 = ((t1_83*)SZArrayNew(t1_83_TI_var, ((int32_t)((int32_t)3+(int32_t)L_37))));
t1_83* L_38 = V_0;
t1_83* L_39 = V_9;
int32_t L_40 = V_11;
m1_4597(NULL, (t1_33 *)(t1_33 *)L_38, 0, (t1_33 *)(t1_33 *)L_39, 3, L_40, NULL);
V_10 = ((int32_t)129);
t1_83* L_41 = V_9;
int32_t L_42 = V_11;
*((uint8_t*)(uint8_t*)SZArrayLdElema(L_41, 2, sizeof(uint8_t))) = (uint8_t)(((int32_t)((uint8_t)L_42)));
goto IL_01f3;
}
IL_0129:
{
int32_t L_43 = V_11;
if ((((int32_t)L_43) > ((int32_t)((int32_t)65535))))
{
goto IL_0168;
}
}
{
int32_t L_44 = V_11;
V_9 = ((t1_83*)SZArrayNew(t1_83_TI_var, ((int32_t)((int32_t)4+(int32_t)L_44))));
t1_83* L_45 = V_0;
t1_83* L_46 = V_9;
int32_t L_47 = V_11;
m1_4597(NULL, (t1_33 *)(t1_33 *)L_45, 0, (t1_33 *)(t1_33 *)L_46, 4, L_47, NULL);
V_10 = ((int32_t)130);
t1_83* L_48 = V_9;
int32_t L_49 = V_11;
*((uint8_t*)(uint8_t*)SZArrayLdElema(L_48, 2, sizeof(uint8_t))) = (uint8_t)(((int32_t)((uint8_t)((int32_t)((int32_t)L_49>>(int32_t)8)))));
t1_83* L_50 = V_9;
int32_t L_51 = V_11;
*((uint8_t*)(uint8_t*)SZArrayLdElema(L_50, 3, sizeof(uint8_t))) = (uint8_t)(((int32_t)((uint8_t)L_51)));
goto IL_01f3;
}
IL_0168:
{
int32_t L_52 = V_11;
if ((((int32_t)L_52) > ((int32_t)((int32_t)16777215))))
{
goto IL_01b1;
}
}
{
int32_t L_53 = V_11;
V_9 = ((t1_83*)SZArrayNew(t1_83_TI_var, ((int32_t)((int32_t)5+(int32_t)L_53))));
t1_83* L_54 = V_0;
t1_83* L_55 = V_9;
int32_t L_56 = V_11;
m1_4597(NULL, (t1_33 *)(t1_33 *)L_54, 0, (t1_33 *)(t1_33 *)L_55, 5, L_56, NULL);
V_10 = ((int32_t)131);
t1_83* L_57 = V_9;
int32_t L_58 = V_11;
*((uint8_t*)(uint8_t*)SZArrayLdElema(L_57, 2, sizeof(uint8_t))) = (uint8_t)(((int32_t)((uint8_t)((int32_t)((int32_t)L_58>>(int32_t)((int32_t)16))))));
t1_83* L_59 = V_9;
int32_t L_60 = V_11;
*((uint8_t*)(uint8_t*)SZArrayLdElema(L_59, 3, sizeof(uint8_t))) = (uint8_t)(((int32_t)((uint8_t)((int32_t)((int32_t)L_60>>(int32_t)8)))));
t1_83* L_61 = V_9;
int32_t L_62 = V_11;
*((uint8_t*)(uint8_t*)SZArrayLdElema(L_61, 4, sizeof(uint8_t))) = (uint8_t)(((int32_t)((uint8_t)L_62)));
goto IL_01f3;
}
IL_01b1:
{
int32_t L_63 = V_11;
V_9 = ((t1_83*)SZArrayNew(t1_83_TI_var, ((int32_t)((int32_t)6+(int32_t)L_63))));
t1_83* L_64 = V_0;
t1_83* L_65 = V_9;
int32_t L_66 = V_11;
m1_4597(NULL, (t1_33 *)(t1_33 *)L_64, 0, (t1_33 *)(t1_33 *)L_65, 6, L_66, NULL);
V_10 = ((int32_t)132);
t1_83* L_67 = V_9;
int32_t L_68 = V_11;
*((uint8_t*)(uint8_t*)SZArrayLdElema(L_67, 2, sizeof(uint8_t))) = (uint8_t)(((int32_t)((uint8_t)((int32_t)((int32_t)L_68>>(int32_t)((int32_t)24))))));
t1_83* L_69 = V_9;
int32_t L_70 = V_11;
*((uint8_t*)(uint8_t*)SZArrayLdElema(L_69, 3, sizeof(uint8_t))) = (uint8_t)(((int32_t)((uint8_t)((int32_t)((int32_t)L_70>>(int32_t)((int32_t)16))))));
t1_83* L_71 = V_9;
int32_t L_72 = V_11;
*((uint8_t*)(uint8_t*)SZArrayLdElema(L_71, 4, sizeof(uint8_t))) = (uint8_t)(((int32_t)((uint8_t)((int32_t)((int32_t)L_72>>(int32_t)8)))));
t1_83* L_73 = V_9;
int32_t L_74 = V_11;
*((uint8_t*)(uint8_t*)SZArrayLdElema(L_73, 5, sizeof(uint8_t))) = (uint8_t)(((int32_t)((uint8_t)L_74)));
}
IL_01f3:
{
goto IL_0213;
}
IL_01f8:
{
int32_t L_75 = V_11;
V_9 = ((t1_83*)SZArrayNew(t1_83_TI_var, ((int32_t)((int32_t)2+(int32_t)L_75))));
t1_83* L_76 = V_0;
t1_83* L_77 = V_9;
int32_t L_78 = V_11;
m1_4597(NULL, (t1_33 *)(t1_33 *)L_76, 0, (t1_33 *)(t1_33 *)L_77, 2, L_78, NULL);
int32_t L_79 = V_11;
V_10 = L_79;
}
IL_0213:
{
t1_83* L_80 = (__this->f1);
if (L_80)
{
goto IL_0225;
}
}
{
t1_83* L_81 = V_0;
__this->f1 = L_81;
}
IL_0225:
{
goto IL_0232;
}
IL_022a:
{
V_9 = ((t1_83*)SZArrayNew(t1_83_TI_var, 2));
}
IL_0232:
{
t1_83* L_82 = V_9;
uint8_t L_83 = (__this->f0);
*((uint8_t*)(uint8_t*)SZArrayLdElema(L_82, 0, sizeof(uint8_t))) = (uint8_t)L_83;
t1_83* L_84 = V_9;
int32_t L_85 = V_10;
*((uint8_t*)(uint8_t*)SZArrayLdElema(L_84, 1, sizeof(uint8_t))) = (uint8_t)(((int32_t)((uint8_t)L_85)));
t1_83* L_86 = V_9;
return L_86;
}
}
extern TypeInfo* t1_134_TI_var;
extern "C" void m1_1422 (t1_134 * __this, t1_83* p0, int32_t* p1, int32_t p2, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_134_TI_var = il2cpp_codegen_type_info_from_index(148);
s_Il2CppMethodIntialized = true;
}
uint8_t V_0 = 0x0;
int32_t V_1 = 0;
t1_83* V_2 = {0};
t1_134 * V_3 = {0};
int32_t V_4 = 0;
{
goto IL_004e;
}
IL_0005:
{
t1_83* L_0 = p0;
int32_t* L_1 = p1;
m1_1423(__this, L_0, L_1, (&V_0), (&V_1), (&V_2), NULL);
uint8_t L_2 = V_0;
if (L_2)
{
goto IL_001e;
}
}
{
goto IL_004e;
}
IL_001e:
{
uint8_t L_3 = V_0;
t1_83* L_4 = V_2;
t1_134 * L_5 = (t1_134 *)il2cpp_codegen_object_new (t1_134_TI_var);
m1_1411(L_5, L_3, L_4, NULL);
t1_134 * L_6 = m1_1420(__this, L_5, NULL);
V_3 = L_6;
uint8_t L_7 = V_0;
if ((!(((uint32_t)((int32_t)((int32_t)L_7&(int32_t)((int32_t)32)))) == ((uint32_t)((int32_t)32)))))
{
goto IL_0048;
}
}
{
int32_t* L_8 = p1;
V_4 = (*((int32_t*)L_8));
t1_134 * L_9 = V_3;
t1_83* L_10 = p0;
int32_t L_11 = V_4;
int32_t L_12 = V_1;
m1_1422(L_9, L_10, (&V_4), ((int32_t)((int32_t)L_11+(int32_t)L_12)), NULL);
}
IL_0048:
{
int32_t* L_13 = p1;
int32_t* L_14 = p1;
int32_t L_15 = V_1;
*((int32_t*)(L_13)) = (int32_t)((int32_t)((int32_t)(*((int32_t*)L_14))+(int32_t)L_15));
}
IL_004e:
{
int32_t* L_16 = p1;
int32_t L_17 = p2;
if ((((int32_t)(*((int32_t*)L_16))) < ((int32_t)((int32_t)((int32_t)L_17-(int32_t)1)))))
{
goto IL_0005;
}
}
{
return;
}
}
extern TypeInfo* t1_83_TI_var;
extern "C" void m1_1423 (t1_134 * __this, t1_83* p0, int32_t* p1, uint8_t* p2, int32_t* p3, t1_83** p4, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_83_TI_var = il2cpp_codegen_type_info_from_index(42);
s_Il2CppMethodIntialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
uint8_t* L_0 = p2;
t1_83* L_1 = p0;
int32_t* L_2 = p1;
int32_t* L_3 = p1;
int32_t L_4 = (*((int32_t*)L_3));
V_2 = L_4;
*((int32_t*)(L_2)) = (int32_t)((int32_t)((int32_t)L_4+(int32_t)1));
int32_t L_5 = V_2;
int32_t L_6 = L_5;
*((int8_t*)(L_0)) = (int8_t)(*(uint8_t*)(uint8_t*)SZArrayLdElema(L_1, L_6, sizeof(uint8_t)));
int32_t* L_7 = p3;
t1_83* L_8 = p0;
int32_t* L_9 = p1;
int32_t* L_10 = p1;
int32_t L_11 = (*((int32_t*)L_10));
V_2 = L_11;
*((int32_t*)(L_9)) = (int32_t)((int32_t)((int32_t)L_11+(int32_t)1));
int32_t L_12 = V_2;
int32_t L_13 = L_12;
*((int32_t*)(L_7)) = (int32_t)(*(uint8_t*)(uint8_t*)SZArrayLdElema(L_8, L_13, sizeof(uint8_t)));
int32_t* L_14 = p3;
if ((!(((uint32_t)((int32_t)((int32_t)(*((int32_t*)L_14))&(int32_t)((int32_t)128)))) == ((uint32_t)((int32_t)128)))))
{
goto IL_0063;
}
}
{
int32_t* L_15 = p3;
V_0 = ((int32_t)((int32_t)(*((int32_t*)L_15))&(int32_t)((int32_t)127)));
int32_t* L_16 = p3;
*((int32_t*)(L_16)) = (int32_t)0;
V_1 = 0;
goto IL_005c;
}
IL_0040:
{
int32_t* L_17 = p3;
int32_t* L_18 = p3;
t1_83* L_19 = p0;
int32_t* L_20 = p1;
int32_t* L_21 = p1;
int32_t L_22 = (*((int32_t*)L_21));
V_2 = L_22;
*((int32_t*)(L_20)) = (int32_t)((int32_t)((int32_t)L_22+(int32_t)1));
int32_t L_23 = V_2;
int32_t L_24 = L_23;
*((int32_t*)(L_17)) = (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)(*((int32_t*)L_18))*(int32_t)((int32_t)256)))+(int32_t)(*(uint8_t*)(uint8_t*)SZArrayLdElema(L_19, L_24, sizeof(uint8_t)))));
int32_t L_25 = V_1;
V_1 = ((int32_t)((int32_t)L_25+(int32_t)1));
}
IL_005c:
{
int32_t L_26 = V_1;
int32_t L_27 = V_0;
if ((((int32_t)L_26) < ((int32_t)L_27)))
{
goto IL_0040;
}
}
IL_0063:
{
t1_83** L_28 = p4;
int32_t* L_29 = p3;
*((t1_1 **)(L_28)) = (t1_1 *)((t1_83*)SZArrayNew(t1_83_TI_var, (*((int32_t*)L_29))));
t1_83* L_30 = p0;
int32_t* L_31 = p1;
t1_83** L_32 = p4;
int32_t* L_33 = p3;
m1_4597(NULL, (t1_33 *)(t1_33 *)L_30, (*((int32_t*)L_31)), (t1_33 *)(t1_33 *)(*((t1_83**)L_32)), 0, (*((int32_t*)L_33)), NULL);
return;
}
}
extern TypeInfo* t1_134_TI_var;
extern TypeInfo* t1_702_TI_var;
extern "C" t1_134 * m1_1424 (t1_134 * __this, int32_t p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_134_TI_var = il2cpp_codegen_type_info_from_index(148);
t1_702_TI_var = il2cpp_codegen_type_info_from_index(27);
s_Il2CppMethodIntialized = true;
}
t1_134 * V_0 = {0};
t1_43 * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
t1_43 * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
IL_0000:
try
{ // begin try (depth: 1)
{
t1_126 * L_0 = (__this->f2);
if (!L_0)
{
goto IL_001c;
}
}
IL_000b:
{
int32_t L_1 = p0;
t1_126 * L_2 = (__this->f2);
int32_t L_3 = (int32_t)VirtFuncInvoker0< int32_t >::Invoke(23 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_2);
if ((((int32_t)L_1) < ((int32_t)L_3)))
{
goto IL_0023;
}
}
IL_001c:
{
V_0 = (t1_134 *)NULL;
goto IL_004c;
}
IL_0023:
{
t1_126 * L_4 = (__this->f2);
int32_t L_5 = p0;
t1_1 * L_6 = (t1_1 *)VirtFuncInvoker1< t1_1 *, int32_t >::Invoke(21 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_4, L_5);
V_0 = ((t1_134 *)CastclassClass(L_6, t1_134_TI_var));
goto IL_004c;
}
IL_003a:
{
; // IL_003a: leave IL_004c
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (t1_43 *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (t1_702_TI_var, e.ex->object.klass))
goto CATCH_003f;
throw e;
}
CATCH_003f:
{ // begin catch(System.ArgumentOutOfRangeException)
{
V_0 = (t1_134 *)NULL;
goto IL_004c;
}
IL_0047:
{
; // IL_0047: leave IL_004c
}
} // end catch (depth: 1)
IL_004c:
{
t1_134 * L_7 = V_0;
return L_7;
}
}
extern TypeInfo* t1_134_TI_var;
extern TypeInfo* t1_702_TI_var;
extern "C" t1_134 * m1_1425 (t1_134 * __this, int32_t p0, uint8_t p1, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_134_TI_var = il2cpp_codegen_type_info_from_index(148);
t1_702_TI_var = il2cpp_codegen_type_info_from_index(27);
s_Il2CppMethodIntialized = true;
}
t1_134 * V_0 = {0};
t1_134 * V_1 = {0};
t1_43 * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
t1_43 * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
IL_0000:
try
{ // begin try (depth: 1)
{
t1_126 * L_0 = (__this->f2);
if (!L_0)
{
goto IL_001c;
}
}
IL_000b:
{
int32_t L_1 = p0;
t1_126 * L_2 = (__this->f2);
int32_t L_3 = (int32_t)VirtFuncInvoker0< int32_t >::Invoke(23 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_2);
if ((((int32_t)L_1) < ((int32_t)L_3)))
{
goto IL_0023;
}
}
IL_001c:
{
V_1 = (t1_134 *)NULL;
goto IL_0061;
}
IL_0023:
{
t1_126 * L_4 = (__this->f2);
int32_t L_5 = p0;
t1_1 * L_6 = (t1_1 *)VirtFuncInvoker1< t1_1 *, int32_t >::Invoke(21 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_4, L_5);
V_0 = ((t1_134 *)CastclassClass(L_6, t1_134_TI_var));
t1_134 * L_7 = V_0;
uint8_t L_8 = m1_1414(L_7, NULL);
uint8_t L_9 = p1;
if ((!(((uint32_t)L_8) == ((uint32_t)L_9))))
{
goto IL_0048;
}
}
IL_0041:
{
t1_134 * L_10 = V_0;
V_1 = L_10;
goto IL_0061;
}
IL_0048:
{
V_1 = (t1_134 *)NULL;
goto IL_0061;
}
IL_004f:
{
; // IL_004f: leave IL_0061
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (t1_43 *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (t1_702_TI_var, e.ex->object.klass))
goto CATCH_0054;
throw e;
}
CATCH_0054:
{ // begin catch(System.ArgumentOutOfRangeException)
{
V_1 = (t1_134 *)NULL;
goto IL_0061;
}
IL_005c:
{
; // IL_005c: leave IL_0061
}
} // end catch (depth: 1)
IL_0061:
{
t1_134 * L_11 = V_1;
return L_11;
}
}
extern TypeInfo* t1_158_TI_var;
extern TypeInfo* t1_4_TI_var;
extern TypeInfo* t1_170_TI_var;
extern Il2CppCodeGenString* _stringLiteral443;
extern Il2CppCodeGenString* _stringLiteral131;
extern Il2CppCodeGenString* _stringLiteral444;
extern Il2CppCodeGenString* _stringLiteral445;
extern Il2CppCodeGenString* _stringLiteral446;
extern "C" t1_18* m1_1426 (t1_134 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_158_TI_var = il2cpp_codegen_type_info_from_index(36);
t1_4_TI_var = il2cpp_codegen_type_info_from_index(8);
t1_170_TI_var = il2cpp_codegen_type_info_from_index(19);
_stringLiteral443 = il2cpp_codegen_string_literal_from_index(443);
_stringLiteral131 = il2cpp_codegen_string_literal_from_index(131);
_stringLiteral444 = il2cpp_codegen_string_literal_from_index(444);
_stringLiteral445 = il2cpp_codegen_string_literal_from_index(445);
_stringLiteral446 = il2cpp_codegen_string_literal_from_index(446);
s_Il2CppMethodIntialized = true;
}
t1_158 * V_0 = {0};
int32_t V_1 = 0;
{
t1_158 * L_0 = (t1_158 *)il2cpp_codegen_object_new (t1_158_TI_var);
m1_4291(L_0, NULL);
V_0 = L_0;
t1_158 * L_1 = V_0;
uint8_t* L_2 = &(__this->f0);
t1_18* L_3 = m1_191(L_2, _stringLiteral131, NULL);
t1_18* L_4 = m1_4977(NULL, NULL);
m1_4321(L_1, _stringLiteral443, L_3, L_4, NULL);
t1_158 * L_5 = V_0;
t1_83* L_6 = m1_1416(__this, NULL);
int32_t L_7 = (((int32_t)((int32_t)(((t1_33 *)L_6)->max_length))));
t1_1 * L_8 = Box(t1_4_TI_var, &L_7);
t1_18* L_9 = m1_4977(NULL, NULL);
m1_4321(L_5, _stringLiteral444, L_8, L_9, NULL);
t1_158 * L_10 = V_0;
m1_4308(L_10, _stringLiteral445, NULL);
t1_158 * L_11 = V_0;
t1_18* L_12 = m1_4977(NULL, NULL);
m1_4308(L_11, L_12, NULL);
V_1 = 0;
goto IL_00a7;
}
IL_0064:
{
t1_158 * L_13 = V_0;
t1_83* L_14 = m1_1416(__this, NULL);
int32_t L_15 = V_1;
t1_18* L_16 = m1_191(((uint8_t*)(uint8_t*)SZArrayLdElema(L_14, L_15, sizeof(uint8_t))), _stringLiteral131, NULL);
m1_4320(L_13, _stringLiteral446, L_16, NULL);
int32_t L_17 = V_1;
if (((int32_t)((int32_t)((int32_t)((int32_t)L_17+(int32_t)1))%(int32_t)((int32_t)16))))
{
goto IL_00a3;
}
}
{
t1_158 * L_18 = V_0;
t1_18* L_19 = m1_4977(NULL, NULL);
m1_4318(L_18, L_19, ((t1_170*)SZArrayNew(t1_170_TI_var, 0)), NULL);
}
IL_00a3:
{
int32_t L_20 = V_1;
V_1 = ((int32_t)((int32_t)L_20+(int32_t)1));
}
IL_00a7:
{
int32_t L_21 = V_1;
t1_83* L_22 = m1_1416(__this, NULL);
if ((((int32_t)L_21) < ((int32_t)(((int32_t)((int32_t)(((t1_33 *)L_22)->max_length)))))))
{
goto IL_0064;
}
}
{
t1_158 * L_23 = V_0;
t1_18* L_24 = m1_4303(L_23, NULL);
return L_24;
}
}
extern TypeInfo* t1_134_TI_var;
extern TypeInfo* t1_83_TI_var;
extern "C" t1_134 * m1_1427 (t1_1 * __this , int32_t p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_134_TI_var = il2cpp_codegen_type_info_from_index(148);
t1_83_TI_var = il2cpp_codegen_type_info_from_index(42);
s_Il2CppMethodIntialized = true;
}
t1_83* V_0 = {0};
int32_t V_1 = 0;
t1_134 * V_2 = {0};
t1_83* V_3 = {0};
int32_t V_4 = 0;
{
int32_t L_0 = p0;
t1_83* L_1 = m1_1433(NULL, L_0, NULL);
V_0 = L_1;
t1_83* L_2 = V_0;
m1_836(NULL, (t1_33 *)(t1_33 *)L_2, NULL);
V_1 = 0;
goto IL_0018;
}
IL_0014:
{
int32_t L_3 = V_1;
V_1 = ((int32_t)((int32_t)L_3+(int32_t)1));
}
IL_0018:
{
int32_t L_4 = V_1;
t1_83* L_5 = V_0;
if ((((int32_t)L_4) >= ((int32_t)(((int32_t)((int32_t)(((t1_33 *)L_5)->max_length)))))))
{
goto IL_0029;
}
}
{
t1_83* L_6 = V_0;
int32_t L_7 = V_1;
int32_t L_8 = L_7;
if (!(*(uint8_t*)(uint8_t*)SZArrayLdElema(L_6, L_8, sizeof(uint8_t))))
{
goto IL_0014;
}
}
IL_0029:
{
t1_134 * L_9 = (t1_134 *)il2cpp_codegen_object_new (t1_134_TI_var);
m1_1410(L_9, 2, NULL);
V_2 = L_9;
int32_t L_10 = V_1;
V_4 = L_10;
int32_t L_11 = V_4;
if (!L_11)
{
goto IL_0047;
}
}
{
int32_t L_12 = V_4;
if ((((int32_t)L_12) == ((int32_t)4)))
{
goto IL_0053;
}
}
{
goto IL_0064;
}
IL_0047:
{
t1_134 * L_13 = V_2;
t1_83* L_14 = V_0;
m1_1417(L_13, L_14, NULL);
goto IL_0085;
}
IL_0053:
{
t1_134 * L_15 = V_2;
m1_1417(L_15, ((t1_83*)SZArrayNew(t1_83_TI_var, 1)), NULL);
goto IL_0085;
}
IL_0064:
{
int32_t L_16 = V_1;
V_3 = ((t1_83*)SZArrayNew(t1_83_TI_var, ((int32_t)((int32_t)4-(int32_t)L_16))));
t1_83* L_17 = V_0;
int32_t L_18 = V_1;
t1_83* L_19 = V_3;
t1_83* L_20 = V_3;
m1_4597(NULL, (t1_33 *)(t1_33 *)L_17, L_18, (t1_33 *)(t1_33 *)L_19, 0, (((int32_t)((int32_t)(((t1_33 *)L_20)->max_length)))), NULL);
t1_134 * L_21 = V_2;
t1_83* L_22 = V_3;
m1_1417(L_21, L_22, NULL);
goto IL_0085;
}
IL_0085:
{
t1_134 * L_23 = V_2;
return L_23;
}
}
extern TypeInfo* t1_701_TI_var;
extern TypeInfo* t1_561_TI_var;
extern TypeInfo* t1_134_TI_var;
extern Il2CppCodeGenString* _stringLiteral447;
extern "C" t1_134 * m1_1428 (t1_1 * __this , t1_18* p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_701_TI_var = il2cpp_codegen_type_info_from_index(2);
t1_561_TI_var = il2cpp_codegen_type_info_from_index(147);
t1_134_TI_var = il2cpp_codegen_type_info_from_index(148);
_stringLiteral447 = il2cpp_codegen_string_literal_from_index(447);
s_Il2CppMethodIntialized = true;
}
{
t1_18* L_0 = p0;
if (L_0)
{
goto IL_0011;
}
}
{
t1_701 * L_1 = (t1_701 *)il2cpp_codegen_object_new (t1_701_TI_var);
m1_4570(L_1, _stringLiteral447, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_1);
}
IL_0011:
{
t1_18* L_2 = p0;
IL2CPP_RUNTIME_CLASS_INIT(t1_561_TI_var);
t1_83* L_3 = m1_3686(NULL, L_2, NULL);
t1_134 * L_4 = (t1_134 *)il2cpp_codegen_object_new (t1_134_TI_var);
m1_1412(L_4, L_3, NULL);
return L_4;
}
}
extern TypeInfo* t1_701_TI_var;
extern TypeInfo* t1_735_TI_var;
extern Il2CppCodeGenString* _stringLiteral448;
extern Il2CppCodeGenString* _stringLiteral449;
extern "C" int32_t m1_1429 (t1_1 * __this , t1_134 * p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_701_TI_var = il2cpp_codegen_type_info_from_index(2);
t1_735_TI_var = il2cpp_codegen_type_info_from_index(13);
_stringLiteral448 = il2cpp_codegen_string_literal_from_index(448);
_stringLiteral449 = il2cpp_codegen_string_literal_from_index(449);
s_Il2CppMethodIntialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
{
t1_134 * L_0 = p0;
if (L_0)
{
goto IL_0011;
}
}
{
t1_701 * L_1 = (t1_701 *)il2cpp_codegen_object_new (t1_701_TI_var);
m1_4570(L_1, _stringLiteral448, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_1);
}
IL_0011:
{
t1_134 * L_2 = p0;
uint8_t L_3 = m1_1414(L_2, NULL);
if ((((int32_t)L_3) == ((int32_t)2)))
{
goto IL_0028;
}
}
{
t1_735 * L_4 = (t1_735 *)il2cpp_codegen_object_new (t1_735_TI_var);
m1_4999(L_4, _stringLiteral449, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_4);
}
IL_0028:
{
V_0 = 0;
V_1 = 0;
goto IL_0042;
}
IL_0031:
{
int32_t L_5 = V_0;
t1_134 * L_6 = p0;
t1_83* L_7 = m1_1416(L_6, NULL);
int32_t L_8 = V_1;
int32_t L_9 = L_8;
V_0 = ((int32_t)((int32_t)((int32_t)((int32_t)L_5<<(int32_t)8))+(int32_t)(*(uint8_t*)(uint8_t*)SZArrayLdElema(L_7, L_9, sizeof(uint8_t)))));
int32_t L_10 = V_1;
V_1 = ((int32_t)((int32_t)L_10+(int32_t)1));
}
IL_0042:
{
int32_t L_11 = V_1;
t1_134 * L_12 = p0;
t1_83* L_13 = m1_1416(L_12, NULL);
if ((((int32_t)L_11) < ((int32_t)(((int32_t)((int32_t)(((t1_33 *)L_13)->max_length)))))))
{
goto IL_0031;
}
}
{
int32_t L_14 = V_0;
return L_14;
}
}
extern TypeInfo* t1_701_TI_var;
extern TypeInfo* t1_158_TI_var;
extern TypeInfo* t1_175_TI_var;
extern Il2CppCodeGenString* _stringLiteral448;
extern Il2CppCodeGenString* _stringLiteral49;
extern "C" t1_18* m1_1430 (t1_1 * __this , t1_134 * p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_701_TI_var = il2cpp_codegen_type_info_from_index(2);
t1_158_TI_var = il2cpp_codegen_type_info_from_index(36);
t1_175_TI_var = il2cpp_codegen_type_info_from_index(28);
_stringLiteral448 = il2cpp_codegen_string_literal_from_index(448);
_stringLiteral49 = il2cpp_codegen_string_literal_from_index(49);
s_Il2CppMethodIntialized = true;
}
t1_83* V_0 = {0};
t1_158 * V_1 = {0};
uint8_t V_2 = 0x0;
uint8_t V_3 = 0x0;
uint64_t V_4 = 0;
{
t1_134 * L_0 = p0;
if (L_0)
{
goto IL_0011;
}
}
{
t1_701 * L_1 = (t1_701 *)il2cpp_codegen_object_new (t1_701_TI_var);
m1_4570(L_1, _stringLiteral448, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_1);
}
IL_0011:
{
t1_134 * L_2 = p0;
t1_83* L_3 = m1_1416(L_2, NULL);
V_0 = L_3;
t1_158 * L_4 = (t1_158 *)il2cpp_codegen_object_new (t1_158_TI_var);
m1_4291(L_4, NULL);
V_1 = L_4;
t1_83* L_5 = V_0;
int32_t L_6 = 0;
V_2 = (((int32_t)((uint8_t)((int32_t)((int32_t)(*(uint8_t*)(uint8_t*)SZArrayLdElema(L_5, L_6, sizeof(uint8_t)))/(int32_t)((int32_t)40))))));
t1_83* L_7 = V_0;
int32_t L_8 = 0;
V_3 = (((int32_t)((uint8_t)((int32_t)((int32_t)(*(uint8_t*)(uint8_t*)SZArrayLdElema(L_7, L_8, sizeof(uint8_t)))%(int32_t)((int32_t)40))))));
uint8_t L_9 = V_2;
if ((((int32_t)L_9) <= ((int32_t)2)))
{
goto IL_0042;
}
}
{
uint8_t L_10 = V_3;
uint8_t L_11 = V_2;
V_3 = (((int32_t)((uint8_t)((int32_t)((int32_t)L_10+(int32_t)(((int32_t)((uint8_t)((int32_t)((int32_t)((int32_t)((int32_t)L_11-(int32_t)2))*(int32_t)((int32_t)40)))))))))));
V_2 = 2;
}
IL_0042:
{
t1_158 * L_12 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(t1_175_TI_var);
t1_175 * L_13 = m1_1922(NULL, NULL);
t1_18* L_14 = m1_192((&V_2), L_13, NULL);
m1_4308(L_12, L_14, NULL);
t1_158 * L_15 = V_1;
m1_4308(L_15, _stringLiteral49, NULL);
t1_158 * L_16 = V_1;
t1_175 * L_17 = m1_1922(NULL, NULL);
t1_18* L_18 = m1_192((&V_3), L_17, NULL);
m1_4308(L_16, L_18, NULL);
V_4 = (((int64_t)((int64_t)0)));
V_2 = 1;
goto IL_00c9;
}
IL_007f:
{
uint64_t L_19 = V_4;
t1_83* L_20 = V_0;
uint8_t L_21 = V_2;
uint8_t L_22 = L_21;
V_4 = ((int64_t)((int64_t)((int64_t)((int64_t)L_19<<(int32_t)7))|(int64_t)(((int64_t)((uint64_t)(((uint32_t)((uint32_t)(((int32_t)((uint8_t)((int32_t)((int32_t)(*(uint8_t*)(uint8_t*)SZArrayLdElema(L_20, L_22, sizeof(uint8_t)))&(int32_t)((int32_t)127))))))))))))));
t1_83* L_23 = V_0;
uint8_t L_24 = V_2;
uint8_t L_25 = L_24;
if ((((int32_t)((int32_t)((int32_t)(*(uint8_t*)(uint8_t*)SZArrayLdElema(L_23, L_25, sizeof(uint8_t)))&(int32_t)((int32_t)128)))) == ((int32_t)((int32_t)128))))
{
goto IL_00c4;
}
}
{
t1_158 * L_26 = V_1;
m1_4308(L_26, _stringLiteral49, NULL);
t1_158 * L_27 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(t1_175_TI_var);
t1_175 * L_28 = m1_1922(NULL, NULL);
t1_18* L_29 = m1_162((&V_4), L_28, NULL);
m1_4308(L_27, L_29, NULL);
V_4 = (((int64_t)((int64_t)0)));
}
IL_00c4:
{
uint8_t L_30 = V_2;
V_2 = (((int32_t)((uint8_t)((int32_t)((int32_t)L_30+(int32_t)1)))));
}
IL_00c9:
{
uint8_t L_31 = V_2;
t1_83* L_32 = V_0;
if ((((int32_t)L_31) < ((int32_t)(((int32_t)((int32_t)(((t1_33 *)L_32)->max_length)))))))
{
goto IL_007f;
}
}
{
t1_158 * L_33 = V_1;
t1_18* L_34 = m1_4303(L_33, NULL);
return L_34;
}
}
extern TypeInfo* t1_701_TI_var;
extern TypeInfo* t1_231_TI_var;
extern TypeInfo* t1_175_TI_var;
extern TypeInfo* t1_710_TI_var;
extern TypeInfo* t1_18_TI_var;
extern TypeInfo* t1_170_TI_var;
extern TypeInfo* t1_17_TI_var;
extern TypeInfo* t1_140_TI_var;
extern Il2CppCodeGenString* _stringLiteral450;
extern Il2CppCodeGenString* _stringLiteral451;
extern Il2CppCodeGenString* _stringLiteral452;
extern Il2CppCodeGenString* _stringLiteral453;
extern Il2CppCodeGenString* _stringLiteral454;
extern Il2CppCodeGenString* _stringLiteral455;
extern Il2CppCodeGenString* _stringLiteral456;
extern "C" t1_140 m1_1431 (t1_1 * __this , t1_134 * p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_701_TI_var = il2cpp_codegen_type_info_from_index(2);
t1_231_TI_var = il2cpp_codegen_type_info_from_index(41);
t1_175_TI_var = il2cpp_codegen_type_info_from_index(28);
t1_710_TI_var = il2cpp_codegen_type_info_from_index(7);
t1_18_TI_var = il2cpp_codegen_type_info_from_index(11);
t1_170_TI_var = il2cpp_codegen_type_info_from_index(19);
t1_17_TI_var = il2cpp_codegen_type_info_from_index(9);
t1_140_TI_var = il2cpp_codegen_type_info_from_index(171);
_stringLiteral450 = il2cpp_codegen_string_literal_from_index(450);
_stringLiteral451 = il2cpp_codegen_string_literal_from_index(451);
_stringLiteral452 = il2cpp_codegen_string_literal_from_index(452);
_stringLiteral453 = il2cpp_codegen_string_literal_from_index(453);
_stringLiteral454 = il2cpp_codegen_string_literal_from_index(454);
_stringLiteral455 = il2cpp_codegen_string_literal_from_index(455);
_stringLiteral456 = il2cpp_codegen_string_literal_from_index(456);
s_Il2CppMethodIntialized = true;
}
t1_18* V_0 = {0};
t1_18* V_1 = {0};
int32_t V_2 = 0;
t1_18* V_3 = {0};
uint16_t V_4 = 0x0;
int32_t V_5 = 0;
t1_18* G_B13_0 = {0};
int32_t G_B16_0 = 0;
{
t1_134 * L_0 = p0;
if (L_0)
{
goto IL_0011;
}
}
{
t1_701 * L_1 = (t1_701 *)il2cpp_codegen_object_new (t1_701_TI_var);
m1_4570(L_1, _stringLiteral450, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_1);
}
IL_0011:
{
IL2CPP_RUNTIME_CLASS_INIT(t1_231_TI_var);
t1_231 * L_2 = m1_4262(NULL, NULL);
t1_134 * L_3 = p0;
t1_83* L_4 = m1_1416(L_3, NULL);
t1_18* L_5 = (t1_18*)VirtFuncInvoker1< t1_18*, t1_83* >::Invoke(22 /* System.String System.Text.Encoding::GetString(System.Byte[]) */, L_2, L_4);
V_0 = L_5;
V_1 = (t1_18*)NULL;
t1_18* L_6 = V_0;
int32_t L_7 = m1_430(L_6, NULL);
V_5 = L_7;
int32_t L_8 = V_5;
if (((int32_t)((int32_t)L_8-(int32_t)((int32_t)11))) == 0)
{
goto IL_0057;
}
if (((int32_t)((int32_t)L_8-(int32_t)((int32_t)11))) == 1)
{
goto IL_016b;
}
if (((int32_t)((int32_t)L_8-(int32_t)((int32_t)11))) == 2)
{
goto IL_0062;
}
if (((int32_t)((int32_t)L_8-(int32_t)((int32_t)11))) == 3)
{
goto IL_016b;
}
if (((int32_t)((int32_t)L_8-(int32_t)((int32_t)11))) == 4)
{
goto IL_00a5;
}
if (((int32_t)((int32_t)L_8-(int32_t)((int32_t)11))) == 5)
{
goto IL_016b;
}
if (((int32_t)((int32_t)L_8-(int32_t)((int32_t)11))) == 6)
{
goto IL_00b0;
}
}
{
goto IL_016b;
}
IL_0057:
{
V_1 = _stringLiteral451;
goto IL_016b;
}
IL_0062:
{
t1_18* L_9 = V_0;
t1_18* L_10 = m1_355(L_9, 0, 2, NULL);
IL2CPP_RUNTIME_CLASS_INIT(t1_175_TI_var);
t1_175 * L_11 = m1_1922(NULL, NULL);
IL2CPP_RUNTIME_CLASS_INIT(t1_710_TI_var);
int16_t L_12 = m1_4707(NULL, L_10, L_11, NULL);
V_2 = L_12;
int32_t L_13 = V_2;
if ((((int32_t)L_13) < ((int32_t)((int32_t)50))))
{
goto IL_008e;
}
}
{
t1_18* L_14 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(t1_18_TI_var);
t1_18* L_15 = m1_420(NULL, _stringLiteral452, L_14, NULL);
V_0 = L_15;
goto IL_009a;
}
IL_008e:
{
t1_18* L_16 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(t1_18_TI_var);
t1_18* L_17 = m1_420(NULL, _stringLiteral453, L_16, NULL);
V_0 = L_17;
}
IL_009a:
{
V_1 = _stringLiteral454;
goto IL_016b;
}
IL_00a5:
{
V_1 = _stringLiteral454;
goto IL_016b;
}
IL_00b0:
{
t1_18* L_18 = V_0;
t1_18* L_19 = m1_355(L_18, 0, 2, NULL);
IL2CPP_RUNTIME_CLASS_INIT(t1_175_TI_var);
t1_175 * L_20 = m1_1922(NULL, NULL);
IL2CPP_RUNTIME_CLASS_INIT(t1_710_TI_var);
int16_t L_21 = m1_4707(NULL, L_19, L_20, NULL);
V_2 = L_21;
int32_t L_22 = V_2;
if ((((int32_t)L_22) < ((int32_t)((int32_t)50))))
{
goto IL_00d5;
}
}
{
G_B13_0 = _stringLiteral452;
goto IL_00da;
}
IL_00d5:
{
G_B13_0 = _stringLiteral453;
}
IL_00da:
{
V_3 = G_B13_0;
t1_18* L_23 = V_0;
uint16_t L_24 = m1_344(L_23, ((int32_t)12), NULL);
if ((!(((uint32_t)L_24) == ((uint32_t)((int32_t)43)))))
{
goto IL_00f1;
}
}
{
G_B16_0 = ((int32_t)45);
goto IL_00f3;
}
IL_00f1:
{
G_B16_0 = ((int32_t)43);
}
IL_00f3:
{
V_4 = G_B16_0;
t1_170* L_25 = ((t1_170*)SZArrayNew(t1_170_TI_var, 7));
t1_18* L_26 = V_3;
ArrayElementTypeCheck (L_25, L_26);
*((t1_1 **)(t1_1 **)SZArrayLdElema(L_25, 0, sizeof(t1_1 *))) = (t1_1 *)L_26;
t1_170* L_27 = L_25;
t1_18* L_28 = V_0;
t1_18* L_29 = m1_355(L_28, 0, ((int32_t)12), NULL);
ArrayElementTypeCheck (L_27, L_29);
*((t1_1 **)(t1_1 **)SZArrayLdElema(L_27, 1, sizeof(t1_1 *))) = (t1_1 *)L_29;
t1_170* L_30 = L_27;
uint16_t L_31 = V_4;
uint16_t L_32 = L_31;
t1_1 * L_33 = Box(t1_17_TI_var, &L_32);
ArrayElementTypeCheck (L_30, L_33);
*((t1_1 **)(t1_1 **)SZArrayLdElema(L_30, 2, sizeof(t1_1 *))) = (t1_1 *)L_33;
t1_170* L_34 = L_30;
t1_18* L_35 = V_0;
uint16_t L_36 = m1_344(L_35, ((int32_t)13), NULL);
uint16_t L_37 = L_36;
t1_1 * L_38 = Box(t1_17_TI_var, &L_37);
ArrayElementTypeCheck (L_34, L_38);
*((t1_1 **)(t1_1 **)SZArrayLdElema(L_34, 3, sizeof(t1_1 *))) = (t1_1 *)L_38;
t1_170* L_39 = L_34;
t1_18* L_40 = V_0;
uint16_t L_41 = m1_344(L_40, ((int32_t)14), NULL);
uint16_t L_42 = L_41;
t1_1 * L_43 = Box(t1_17_TI_var, &L_42);
ArrayElementTypeCheck (L_39, L_43);
*((t1_1 **)(t1_1 **)SZArrayLdElema(L_39, 4, sizeof(t1_1 *))) = (t1_1 *)L_43;
t1_170* L_44 = L_39;
t1_18* L_45 = V_0;
uint16_t L_46 = m1_344(L_45, ((int32_t)15), NULL);
uint16_t L_47 = L_46;
t1_1 * L_48 = Box(t1_17_TI_var, &L_47);
ArrayElementTypeCheck (L_44, L_48);
*((t1_1 **)(t1_1 **)SZArrayLdElema(L_44, 5, sizeof(t1_1 *))) = (t1_1 *)L_48;
t1_170* L_49 = L_44;
t1_18* L_50 = V_0;
uint16_t L_51 = m1_344(L_50, ((int32_t)16), NULL);
uint16_t L_52 = L_51;
t1_1 * L_53 = Box(t1_17_TI_var, &L_52);
ArrayElementTypeCheck (L_49, L_53);
*((t1_1 **)(t1_1 **)SZArrayLdElema(L_49, 6, sizeof(t1_1 *))) = (t1_1 *)L_53;
IL2CPP_RUNTIME_CLASS_INIT(t1_18_TI_var);
t1_18* L_54 = m1_415(NULL, _stringLiteral455, L_49, NULL);
V_0 = L_54;
V_1 = _stringLiteral456;
goto IL_016b;
}
IL_016b:
{
t1_18* L_55 = V_0;
t1_18* L_56 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(t1_175_TI_var);
t1_175 * L_57 = m1_1922(NULL, NULL);
IL2CPP_RUNTIME_CLASS_INIT(t1_140_TI_var);
t1_140 L_58 = m1_4905(NULL, L_55, L_56, L_57, ((int32_t)16), NULL);
return L_58;
}
}
extern TypeInfo* t1_706_TI_var;
extern TypeInfo* t1_83_TI_var;
extern "C" t1_83* m1_1432 (t1_1 * __this , uint8_t* p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_706_TI_var = il2cpp_codegen_type_info_from_index(172);
t1_83_TI_var = il2cpp_codegen_type_info_from_index(42);
s_Il2CppMethodIntialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(t1_706_TI_var);
bool L_0 = ((t1_706_SFs*)t1_706_TI_var->static_fields)->f1;
if (!L_0)
{
goto IL_002b;
}
}
{
t1_83* L_1 = ((t1_83*)SZArrayNew(t1_83_TI_var, 4));
uint8_t* L_2 = p0;
*((uint8_t*)(uint8_t*)SZArrayLdElema(L_1, 0, sizeof(uint8_t))) = (uint8_t)(*((uint8_t*)L_2));
t1_83* L_3 = L_1;
uint8_t* L_4 = p0;
*((uint8_t*)(uint8_t*)SZArrayLdElema(L_3, 1, sizeof(uint8_t))) = (uint8_t)(*((uint8_t*)((uint8_t*)((intptr_t)L_4+(int32_t)1))));
t1_83* L_5 = L_3;
uint8_t* L_6 = p0;
*((uint8_t*)(uint8_t*)SZArrayLdElema(L_5, 2, sizeof(uint8_t))) = (uint8_t)(*((uint8_t*)((uint8_t*)((intptr_t)L_6+(int32_t)2))));
t1_83* L_7 = L_5;
uint8_t* L_8 = p0;
*((uint8_t*)(uint8_t*)SZArrayLdElema(L_7, 3, sizeof(uint8_t))) = (uint8_t)(*((uint8_t*)((uint8_t*)((intptr_t)L_8+(int32_t)3))));
return L_7;
}
IL_002b:
{
t1_83* L_9 = ((t1_83*)SZArrayNew(t1_83_TI_var, 4));
uint8_t* L_10 = p0;
*((uint8_t*)(uint8_t*)SZArrayLdElema(L_9, 0, sizeof(uint8_t))) = (uint8_t)(*((uint8_t*)((uint8_t*)((intptr_t)L_10+(int32_t)3))));
t1_83* L_11 = L_9;
uint8_t* L_12 = p0;
*((uint8_t*)(uint8_t*)SZArrayLdElema(L_11, 1, sizeof(uint8_t))) = (uint8_t)(*((uint8_t*)((uint8_t*)((intptr_t)L_12+(int32_t)2))));
t1_83* L_13 = L_11;
uint8_t* L_14 = p0;
*((uint8_t*)(uint8_t*)SZArrayLdElema(L_13, 2, sizeof(uint8_t))) = (uint8_t)(*((uint8_t*)((uint8_t*)((intptr_t)L_14+(int32_t)1))));
t1_83* L_15 = L_13;
uint8_t* L_16 = p0;
*((uint8_t*)(uint8_t*)SZArrayLdElema(L_15, 3, sizeof(uint8_t))) = (uint8_t)(*((uint8_t*)L_16));
return L_15;
}
}
extern "C" t1_83* m1_1433 (t1_1 * __this , int32_t p0, const MethodInfo* method)
{
{
t1_83* L_0 = m1_1432(NULL, (uint8_t*)(uint8_t*)(&p0), NULL);
return L_0;
}
}
extern TypeInfo* t1_706_TI_var;
extern "C" void m1_1434 (t1_1 * __this , uint8_t* p0, t1_83* p1, int32_t p2, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_706_TI_var = il2cpp_codegen_type_info_from_index(172);
s_Il2CppMethodIntialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(t1_706_TI_var);
bool L_0 = ((t1_706_SFs*)t1_706_TI_var->static_fields)->f1;
if (!L_0)
{
goto IL_001d;
}
}
{
uint8_t* L_1 = p0;
t1_83* L_2 = p1;
int32_t L_3 = p2;
int32_t L_4 = L_3;
*((int8_t*)(L_1)) = (int8_t)(*(uint8_t*)(uint8_t*)SZArrayLdElema(L_2, L_4, sizeof(uint8_t)));
uint8_t* L_5 = p0;
t1_83* L_6 = p1;
int32_t L_7 = p2;
int32_t L_8 = ((int32_t)((int32_t)L_7+(int32_t)1));
*((int8_t*)(((uint8_t*)((intptr_t)L_5+(int32_t)1)))) = (int8_t)(*(uint8_t*)(uint8_t*)SZArrayLdElema(L_6, L_8, sizeof(uint8_t)));
goto IL_002b;
}
IL_001d:
{
uint8_t* L_9 = p0;
t1_83* L_10 = p1;
int32_t L_11 = p2;
int32_t L_12 = ((int32_t)((int32_t)L_11+(int32_t)1));
*((int8_t*)(L_9)) = (int8_t)(*(uint8_t*)(uint8_t*)SZArrayLdElema(L_10, L_12, sizeof(uint8_t)));
uint8_t* L_13 = p0;
t1_83* L_14 = p1;
int32_t L_15 = p2;
int32_t L_16 = L_15;
*((int8_t*)(((uint8_t*)((intptr_t)L_13+(int32_t)1)))) = (int8_t)(*(uint8_t*)(uint8_t*)SZArrayLdElema(L_14, L_16, sizeof(uint8_t)));
}
IL_002b:
{
return;
}
}
extern TypeInfo* t1_706_TI_var;
extern "C" void m1_1435 (t1_1 * __this , uint8_t* p0, t1_83* p1, int32_t p2, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_706_TI_var = il2cpp_codegen_type_info_from_index(172);
s_Il2CppMethodIntialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(t1_706_TI_var);
bool L_0 = ((t1_706_SFs*)t1_706_TI_var->static_fields)->f1;
if (!L_0)
{
goto IL_002f;
}
}
{
uint8_t* L_1 = p0;
t1_83* L_2 = p1;
int32_t L_3 = p2;
int32_t L_4 = L_3;
*((int8_t*)(L_1)) = (int8_t)(*(uint8_t*)(uint8_t*)SZArrayLdElema(L_2, L_4, sizeof(uint8_t)));
uint8_t* L_5 = p0;
t1_83* L_6 = p1;
int32_t L_7 = p2;
int32_t L_8 = ((int32_t)((int32_t)L_7+(int32_t)1));
*((int8_t*)(((uint8_t*)((intptr_t)L_5+(int32_t)1)))) = (int8_t)(*(uint8_t*)(uint8_t*)SZArrayLdElema(L_6, L_8, sizeof(uint8_t)));
uint8_t* L_9 = p0;
t1_83* L_10 = p1;
int32_t L_11 = p2;
int32_t L_12 = ((int32_t)((int32_t)L_11+(int32_t)2));
*((int8_t*)(((uint8_t*)((intptr_t)L_9+(int32_t)2)))) = (int8_t)(*(uint8_t*)(uint8_t*)SZArrayLdElema(L_10, L_12, sizeof(uint8_t)));
uint8_t* L_13 = p0;
t1_83* L_14 = p1;
int32_t L_15 = p2;
int32_t L_16 = ((int32_t)((int32_t)L_15+(int32_t)3));
*((int8_t*)(((uint8_t*)((intptr_t)L_13+(int32_t)3)))) = (int8_t)(*(uint8_t*)(uint8_t*)SZArrayLdElema(L_14, L_16, sizeof(uint8_t)));
goto IL_004f;
}
IL_002f:
{
uint8_t* L_17 = p0;
t1_83* L_18 = p1;
int32_t L_19 = p2;
int32_t L_20 = ((int32_t)((int32_t)L_19+(int32_t)3));
*((int8_t*)(L_17)) = (int8_t)(*(uint8_t*)(uint8_t*)SZArrayLdElema(L_18, L_20, sizeof(uint8_t)));
uint8_t* L_21 = p0;
t1_83* L_22 = p1;
int32_t L_23 = p2;
int32_t L_24 = ((int32_t)((int32_t)L_23+(int32_t)2));
*((int8_t*)(((uint8_t*)((intptr_t)L_21+(int32_t)1)))) = (int8_t)(*(uint8_t*)(uint8_t*)SZArrayLdElema(L_22, L_24, sizeof(uint8_t)));
uint8_t* L_25 = p0;
t1_83* L_26 = p1;
int32_t L_27 = p2;
int32_t L_28 = ((int32_t)((int32_t)L_27+(int32_t)1));
*((int8_t*)(((uint8_t*)((intptr_t)L_25+(int32_t)2)))) = (int8_t)(*(uint8_t*)(uint8_t*)SZArrayLdElema(L_26, L_28, sizeof(uint8_t)));
uint8_t* L_29 = p0;
t1_83* L_30 = p1;
int32_t L_31 = p2;
int32_t L_32 = L_31;
*((int8_t*)(((uint8_t*)((intptr_t)L_29+(int32_t)3)))) = (int8_t)(*(uint8_t*)(uint8_t*)SZArrayLdElema(L_30, L_32, sizeof(uint8_t)));
}
IL_004f:
{
return;
}
}
extern TypeInfo* t1_706_TI_var;
extern "C" void m1_1436 (t1_1 * __this , uint8_t* p0, t1_83* p1, int32_t p2, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_706_TI_var = il2cpp_codegen_type_info_from_index(172);
s_Il2CppMethodIntialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
{
IL2CPP_RUNTIME_CLASS_INIT(t1_706_TI_var);
bool L_0 = ((t1_706_SFs*)t1_706_TI_var->static_fields)->f1;
if (!L_0)
{
goto IL_002a;
}
}
{
V_0 = 0;
goto IL_001e;
}
IL_0011:
{
uint8_t* L_1 = p0;
int32_t L_2 = V_0;
t1_83* L_3 = p1;
int32_t L_4 = p2;
int32_t L_5 = V_0;
int32_t L_6 = ((int32_t)((int32_t)L_4+(int32_t)L_5));
*((int8_t*)(((uint8_t*)((intptr_t)L_1+(int32_t)L_2)))) = (int8_t)(*(uint8_t*)(uint8_t*)SZArrayLdElema(L_3, L_6, sizeof(uint8_t)));
int32_t L_7 = V_0;
V_0 = ((int32_t)((int32_t)L_7+(int32_t)1));
}
IL_001e:
{
int32_t L_8 = V_0;
if ((((int32_t)L_8) < ((int32_t)8)))
{
goto IL_0011;
}
}
{
goto IL_0047;
}
IL_002a:
{
V_1 = 0;
goto IL_0040;
}
IL_0031:
{
uint8_t* L_9 = p0;
int32_t L_10 = V_1;
t1_83* L_11 = p1;
int32_t L_12 = p2;
int32_t L_13 = V_1;
int32_t L_14 = ((int32_t)((int32_t)L_12+(int32_t)((int32_t)((int32_t)7-(int32_t)L_13))));
*((int8_t*)(((uint8_t*)((intptr_t)L_9+(int32_t)L_10)))) = (int8_t)(*(uint8_t*)(uint8_t*)SZArrayLdElema(L_11, L_14, sizeof(uint8_t)));
int32_t L_15 = V_1;
V_1 = ((int32_t)((int32_t)L_15+(int32_t)1));
}
IL_0040:
{
int32_t L_16 = V_1;
if ((((int32_t)L_16) < ((int32_t)8)))
{
goto IL_0031;
}
}
IL_0047:
{
return;
}
}
extern "C" int16_t m1_1437 (t1_1 * __this , t1_83* p0, int32_t p1, const MethodInfo* method)
{
int16_t V_0 = 0;
{
t1_83* L_0 = p0;
int32_t L_1 = p1;
m1_1434(NULL, (uint8_t*)(uint8_t*)(&V_0), L_0, L_1, NULL);
int16_t L_2 = V_0;
return L_2;
}
}
extern "C" int32_t m1_1438 (t1_1 * __this , t1_83* p0, int32_t p1, const MethodInfo* method)
{
int32_t V_0 = 0;
{
t1_83* L_0 = p0;
int32_t L_1 = p1;
m1_1435(NULL, (uint8_t*)(uint8_t*)(&V_0), L_0, L_1, NULL);
int32_t L_2 = V_0;
return L_2;
}
}
extern "C" float m1_1439 (t1_1 * __this , t1_83* p0, int32_t p1, const MethodInfo* method)
{
float V_0 = 0.0f;
{
t1_83* L_0 = p0;
int32_t L_1 = p1;
m1_1435(NULL, (uint8_t*)(uint8_t*)(&V_0), L_0, L_1, NULL);
float L_2 = V_0;
return L_2;
}
}
extern "C" double m1_1440 (t1_1 * __this , t1_83* p0, int32_t p1, const MethodInfo* method)
{
double V_0 = 0.0;
{
t1_83* L_0 = p0;
int32_t L_1 = p1;
m1_1436(NULL, (uint8_t*)(uint8_t*)(&V_0), L_0, L_1, NULL);
double L_2 = V_0;
return L_2;
}
}
extern TypeInfo* t1_134_TI_var;
extern "C" void m1_1441 (t1_148 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_134_TI_var = il2cpp_codegen_type_info_from_index(148);
s_Il2CppMethodIntialized = true;
}
{
m1_0(__this, NULL);
t1_134 * L_0 = (t1_134 *)il2cpp_codegen_object_new (t1_134_TI_var);
m1_1410(L_0, ((int32_t)160), NULL);
__this->f1 = L_0;
return;
}
}
extern "C" void m1_1442 (t1_148 * __this, t1_18* p0, const MethodInfo* method)
{
{
m1_1441(__this, NULL);
t1_18* L_0 = p0;
__this->f0 = L_0;
return;
}
}
extern TypeInfo* t1_134_TI_var;
extern "C" void m1_1443 (t1_148 * __this, t1_83* p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_134_TI_var = il2cpp_codegen_type_info_from_index(148);
s_Il2CppMethodIntialized = true;
}
{
t1_83* L_0 = p0;
t1_134 * L_1 = (t1_134 *)il2cpp_codegen_object_new (t1_134_TI_var);
m1_1412(L_1, L_0, NULL);
m1_1444(__this, L_1, NULL);
return;
}
}
extern TypeInfo* t1_653_TI_var;
extern Il2CppCodeGenString* _stringLiteral457;
extern Il2CppCodeGenString* _stringLiteral458;
extern Il2CppCodeGenString* _stringLiteral459;
extern "C" void m1_1444 (t1_148 * __this, t1_134 * p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_653_TI_var = il2cpp_codegen_type_info_from_index(4);
_stringLiteral457 = il2cpp_codegen_string_literal_from_index(457);
_stringLiteral458 = il2cpp_codegen_string_literal_from_index(458);
_stringLiteral459 = il2cpp_codegen_string_literal_from_index(459);
s_Il2CppMethodIntialized = true;
}
{
m1_0(__this, NULL);
t1_134 * L_0 = p0;
uint8_t L_1 = m1_1414(L_0, NULL);
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)48)))))
{
goto IL_002b;
}
}
{
t1_134 * L_2 = p0;
int32_t L_3 = m1_1413(L_2, NULL);
if ((((int32_t)L_3) >= ((int32_t)1)))
{
goto IL_0036;
}
}
{
t1_134 * L_4 = p0;
int32_t L_5 = m1_1413(L_4, NULL);
if ((((int32_t)L_5) <= ((int32_t)2)))
{
goto IL_0036;
}
}
IL_002b:
{
t1_653 * L_6 = (t1_653 *)il2cpp_codegen_object_new (t1_653_TI_var);
m1_4561(L_6, _stringLiteral457, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_6);
}
IL_0036:
{
t1_134 * L_7 = p0;
t1_134 * L_8 = m1_1424(L_7, 0, NULL);
uint8_t L_9 = m1_1414(L_8, NULL);
if ((((int32_t)L_9) == ((int32_t)6)))
{
goto IL_0053;
}
}
{
t1_653 * L_10 = (t1_653 *)il2cpp_codegen_object_new (t1_653_TI_var);
m1_4561(L_10, _stringLiteral458, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_10);
}
IL_0053:
{
t1_134 * L_11 = p0;
t1_134 * L_12 = m1_1424(L_11, 0, NULL);
t1_18* L_13 = m1_1430(NULL, L_12, NULL);
__this->f0 = L_13;
t1_134 * L_14 = p0;
int32_t L_15 = m1_1413(L_14, NULL);
if ((((int32_t)L_15) <= ((int32_t)1)))
{
goto IL_009f;
}
}
{
t1_134 * L_16 = p0;
t1_134 * L_17 = m1_1424(L_16, 1, NULL);
uint8_t L_18 = m1_1414(L_17, NULL);
if ((((int32_t)L_18) == ((int32_t)((int32_t)160))))
{
goto IL_0092;
}
}
{
t1_653 * L_19 = (t1_653 *)il2cpp_codegen_object_new (t1_653_TI_var);
m1_4561(L_19, _stringLiteral459, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_19);
}
IL_0092:
{
t1_134 * L_20 = p0;
t1_134 * L_21 = m1_1424(L_20, 1, NULL);
__this->f1 = L_21;
}
IL_009f:
{
return;
}
}
extern "C" t1_134 * m1_1445 (t1_148 * __this, const MethodInfo* method)
{
{
t1_134 * L_0 = m1_1450(__this, NULL);
return L_0;
}
}
extern "C" t1_134 * m1_1446 (t1_148 * __this, const MethodInfo* method)
{
{
t1_134 * L_0 = (__this->f1);
return L_0;
}
}
extern "C" void m1_1447 (t1_148 * __this, t1_134 * p0, const MethodInfo* method)
{
{
t1_134 * L_0 = p0;
__this->f1 = L_0;
return;
}
}
extern "C" t1_18* m1_1448 (t1_148 * __this, const MethodInfo* method)
{
{
t1_18* L_0 = (__this->f0);
return L_0;
}
}
extern "C" void m1_1449 (t1_148 * __this, t1_18* p0, const MethodInfo* method)
{
{
t1_18* L_0 = p0;
__this->f0 = L_0;
return;
}
}
extern TypeInfo* t1_134_TI_var;
extern "C" t1_134 * m1_1450 (t1_148 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_134_TI_var = il2cpp_codegen_type_info_from_index(148);
s_Il2CppMethodIntialized = true;
}
t1_134 * V_0 = {0};
{
t1_134 * L_0 = (t1_134 *)il2cpp_codegen_object_new (t1_134_TI_var);
m1_1410(L_0, ((int32_t)48), NULL);
V_0 = L_0;
t1_134 * L_1 = V_0;
t1_18* L_2 = (__this->f0);
t1_134 * L_3 = m1_1428(NULL, L_2, NULL);
m1_1420(L_1, L_3, NULL);
t1_134 * L_4 = (__this->f1);
if (!L_4)
{
goto IL_0043;
}
}
{
t1_134 * L_5 = (__this->f1);
int32_t L_6 = m1_1413(L_5, NULL);
if ((((int32_t)L_6) <= ((int32_t)0)))
{
goto IL_0043;
}
}
{
t1_134 * L_7 = V_0;
t1_134 * L_8 = (__this->f1);
m1_1420(L_7, L_8, NULL);
}
IL_0043:
{
t1_134 * L_9 = V_0;
return L_9;
}
}
extern "C" void m1_1451 (t1_149 * __this, const MethodInfo* method)
{
{
m1_0(__this, NULL);
__this->f0 = 0;
return;
}
}
extern TypeInfo* t1_653_TI_var;
extern TypeInfo* t1_148_TI_var;
extern Il2CppCodeGenString* _stringLiteral460;
extern Il2CppCodeGenString* _stringLiteral461;
extern Il2CppCodeGenString* _stringLiteral462;
extern Il2CppCodeGenString* _stringLiteral463;
extern Il2CppCodeGenString* _stringLiteral464;
extern Il2CppCodeGenString* _stringLiteral465;
extern "C" void m1_1452 (t1_149 * __this, t1_134 * p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_653_TI_var = il2cpp_codegen_type_info_from_index(4);
t1_148_TI_var = il2cpp_codegen_type_info_from_index(156);
_stringLiteral460 = il2cpp_codegen_string_literal_from_index(460);
_stringLiteral461 = il2cpp_codegen_string_literal_from_index(461);
_stringLiteral462 = il2cpp_codegen_string_literal_from_index(462);
_stringLiteral463 = il2cpp_codegen_string_literal_from_index(463);
_stringLiteral464 = il2cpp_codegen_string_literal_from_index(464);
_stringLiteral465 = il2cpp_codegen_string_literal_from_index(465);
s_Il2CppMethodIntialized = true;
}
t1_134 * V_0 = {0};
t1_134 * V_1 = {0};
t1_134 * V_2 = {0};
t1_134 * V_3 = {0};
{
m1_1451(__this, NULL);
t1_134 * L_0 = p0;
uint8_t L_1 = m1_1414(L_0, NULL);
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)48)))))
{
goto IL_001f;
}
}
{
t1_134 * L_2 = p0;
int32_t L_3 = m1_1413(L_2, NULL);
if ((((int32_t)L_3) >= ((int32_t)2)))
{
goto IL_002a;
}
}
IL_001f:
{
t1_653 * L_4 = (t1_653 *)il2cpp_codegen_object_new (t1_653_TI_var);
m1_4561(L_4, _stringLiteral460, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_4);
}
IL_002a:
{
t1_134 * L_5 = p0;
t1_134 * L_6 = m1_1424(L_5, 0, NULL);
uint8_t L_7 = m1_1414(L_6, NULL);
if ((((int32_t)L_7) == ((int32_t)2)))
{
goto IL_0047;
}
}
{
t1_653 * L_8 = (t1_653 *)il2cpp_codegen_object_new (t1_653_TI_var);
m1_4561(L_8, _stringLiteral461, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_8);
}
IL_0047:
{
t1_134 * L_9 = p0;
t1_134 * L_10 = m1_1424(L_9, 0, NULL);
t1_83* L_11 = m1_1416(L_10, NULL);
int32_t L_12 = 0;
__this->f0 = (*(uint8_t*)(uint8_t*)SZArrayLdElema(L_11, L_12, sizeof(uint8_t)));
t1_134 * L_13 = p0;
t1_134 * L_14 = m1_1424(L_13, 1, NULL);
V_0 = L_14;
t1_134 * L_15 = V_0;
uint8_t L_16 = m1_1414(L_15, NULL);
if ((((int32_t)L_16) == ((int32_t)((int32_t)48))))
{
goto IL_007b;
}
}
{
t1_653 * L_17 = (t1_653 *)il2cpp_codegen_object_new (t1_653_TI_var);
m1_4561(L_17, _stringLiteral462, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_17);
}
IL_007b:
{
t1_134 * L_18 = V_0;
t1_134 * L_19 = m1_1424(L_18, 0, NULL);
V_1 = L_19;
t1_134 * L_20 = V_1;
uint8_t L_21 = m1_1414(L_20, NULL);
if ((((int32_t)L_21) == ((int32_t)6)))
{
goto IL_009a;
}
}
{
t1_653 * L_22 = (t1_653 *)il2cpp_codegen_object_new (t1_653_TI_var);
m1_4561(L_22, _stringLiteral463, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_22);
}
IL_009a:
{
t1_134 * L_23 = V_1;
t1_18* L_24 = m1_1430(NULL, L_23, NULL);
t1_148 * L_25 = (t1_148 *)il2cpp_codegen_object_new (t1_148_TI_var);
m1_1442(L_25, L_24, NULL);
__this->f1 = L_25;
t1_134 * L_26 = V_0;
t1_134 * L_27 = m1_1424(L_26, 1, NULL);
V_2 = L_27;
t1_134 * L_28 = V_2;
uint8_t L_29 = m1_1414(L_28, NULL);
if ((((int32_t)L_29) == ((int32_t)((int32_t)48))))
{
goto IL_00cb;
}
}
{
t1_653 * L_30 = (t1_653 *)il2cpp_codegen_object_new (t1_653_TI_var);
m1_4561(L_30, _stringLiteral464, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_30);
}
IL_00cb:
{
t1_134 * L_31 = V_2;
t1_134 * L_32 = m1_1424(L_31, 0, NULL);
t1_18* L_33 = m1_1430(NULL, L_32, NULL);
t1_148 * L_34 = (t1_148 *)il2cpp_codegen_object_new (t1_148_TI_var);
m1_1442(L_34, L_33, NULL);
__this->f2 = L_34;
t1_148 * L_35 = (__this->f2);
t1_134 * L_36 = V_2;
t1_134 * L_37 = m1_1424(L_36, 1, NULL);
m1_1447(L_35, L_37, NULL);
t1_134 * L_38 = V_0;
t1_134 * L_39 = m1_1424(L_38, 2, NULL);
V_3 = L_39;
t1_134 * L_40 = V_3;
uint8_t L_41 = m1_1414(L_40, NULL);
if ((((int32_t)L_41) == ((int32_t)((int32_t)128))))
{
goto IL_0117;
}
}
{
t1_653 * L_42 = (t1_653 *)il2cpp_codegen_object_new (t1_653_TI_var);
m1_4561(L_42, _stringLiteral465, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_42);
}
IL_0117:
{
t1_134 * L_43 = V_3;
t1_83* L_44 = m1_1416(L_43, NULL);
__this->f3 = L_44;
return;
}
}
extern "C" t1_148 * m1_1453 (t1_149 * __this, const MethodInfo* method)
{
{
t1_148 * L_0 = (__this->f2);
return L_0;
}
}
extern TypeInfo* t1_83_TI_var;
extern "C" t1_83* m1_1454 (t1_149 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_83_TI_var = il2cpp_codegen_type_info_from_index(42);
s_Il2CppMethodIntialized = true;
}
{
t1_83* L_0 = (__this->f3);
if (L_0)
{
goto IL_000d;
}
}
{
return (t1_83*)NULL;
}
IL_000d:
{
t1_83* L_1 = (__this->f3);
t1_1 * L_2 = (t1_1 *)VirtFuncInvoker0< t1_1 * >::Invoke(5 /* System.Object System.Array::Clone() */, L_1);
return ((t1_83*)Castclass(L_2, t1_83_TI_var));
}
}
extern TypeInfo* t1_1_TI_var;
extern TypeInfo* t1_151_TI_var;
extern "C" void m1_1455 (t1_1 * __this , const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_1_TI_var = il2cpp_codegen_type_info_from_index(0);
t1_151_TI_var = il2cpp_codegen_type_info_from_index(173);
s_Il2CppMethodIntialized = true;
}
{
t1_1 * L_0 = (t1_1 *)il2cpp_codegen_object_new (t1_1_TI_var);
m1_0(L_0, NULL);
((t1_151_SFs*)t1_151_TI_var->static_fields)->f4 = L_0;
((t1_151_SFs*)t1_151_TI_var->static_fields)->f5 = 0;
return;
}
}
extern TypeInfo* t1_83_TI_var;
extern "C" t1_83* m1_1456 (t1_151 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_83_TI_var = il2cpp_codegen_type_info_from_index(42);
s_Il2CppMethodIntialized = true;
}
t1_83* V_0 = {0};
t1_83* V_1 = {0};
{
t1_83* L_0 = (__this->f1);
if (L_0)
{
goto IL_00f6;
}
}
{
t1_131 * L_1 = (__this->f0);
t1_83* L_2 = m1_1197(NULL, L_1, 0, NULL);
V_0 = L_2;
t1_131 * L_3 = (__this->f0);
int32_t L_4 = (int32_t)VirtFuncInvoker0< int32_t >::Invoke(5 /* System.Int32 System.Security.Cryptography.AsymmetricAlgorithm::get_KeySize() */, L_3);
__this->f1 = ((t1_83*)SZArrayNew(t1_83_TI_var, ((int32_t)((int32_t)((int32_t)32)+(int32_t)((int32_t)((int32_t)L_4>>(int32_t)3))))));
t1_83* L_5 = (__this->f1);
t1_83* L_6 = V_0;
int32_t L_7 = 4;
*((uint8_t*)(uint8_t*)SZArrayLdElema(L_5, 0, sizeof(uint8_t))) = (uint8_t)(*(uint8_t*)(uint8_t*)SZArrayLdElema(L_6, L_7, sizeof(uint8_t)));
t1_83* L_8 = (__this->f1);
t1_83* L_9 = V_0;
int32_t L_10 = 5;
*((uint8_t*)(uint8_t*)SZArrayLdElema(L_8, 1, sizeof(uint8_t))) = (uint8_t)(*(uint8_t*)(uint8_t*)SZArrayLdElema(L_9, L_10, sizeof(uint8_t)));
t1_83* L_11 = (__this->f1);
t1_83* L_12 = V_0;
int32_t L_13 = 6;
*((uint8_t*)(uint8_t*)SZArrayLdElema(L_11, 2, sizeof(uint8_t))) = (uint8_t)(*(uint8_t*)(uint8_t*)SZArrayLdElema(L_12, L_13, sizeof(uint8_t)));
t1_83* L_14 = (__this->f1);
t1_83* L_15 = V_0;
int32_t L_16 = 7;
*((uint8_t*)(uint8_t*)SZArrayLdElema(L_14, 3, sizeof(uint8_t))) = (uint8_t)(*(uint8_t*)(uint8_t*)SZArrayLdElema(L_15, L_16, sizeof(uint8_t)));
t1_83* L_17 = (__this->f1);
*((uint8_t*)(uint8_t*)SZArrayLdElema(L_17, 4, sizeof(uint8_t))) = (uint8_t)4;
t1_83* L_18 = (__this->f1);
*((uint8_t*)(uint8_t*)SZArrayLdElema(L_18, 5, sizeof(uint8_t))) = (uint8_t)((int32_t)128);
t1_83* L_19 = (__this->f1);
*((uint8_t*)(uint8_t*)SZArrayLdElema(L_19, 6, sizeof(uint8_t))) = (uint8_t)0;
t1_83* L_20 = (__this->f1);
*((uint8_t*)(uint8_t*)SZArrayLdElema(L_20, 7, sizeof(uint8_t))) = (uint8_t)0;
t1_83* L_21 = (__this->f1);
t1_83* L_22 = m1_1433(NULL, ((int32_t)((int32_t)(((int32_t)((int32_t)(((t1_33 *)L_21)->max_length))))-(int32_t)((int32_t)12))), NULL);
V_1 = L_22;
t1_83* L_23 = (__this->f1);
t1_83* L_24 = V_1;
int32_t L_25 = 0;
*((uint8_t*)(uint8_t*)SZArrayLdElema(L_23, 8, sizeof(uint8_t))) = (uint8_t)(*(uint8_t*)(uint8_t*)SZArrayLdElema(L_24, L_25, sizeof(uint8_t)));
t1_83* L_26 = (__this->f1);
t1_83* L_27 = V_1;
int32_t L_28 = 1;
*((uint8_t*)(uint8_t*)SZArrayLdElema(L_26, ((int32_t)9), sizeof(uint8_t))) = (uint8_t)(*(uint8_t*)(uint8_t*)SZArrayLdElema(L_27, L_28, sizeof(uint8_t)));
t1_83* L_29 = (__this->f1);
t1_83* L_30 = V_1;
int32_t L_31 = 2;
*((uint8_t*)(uint8_t*)SZArrayLdElema(L_29, ((int32_t)10), sizeof(uint8_t))) = (uint8_t)(*(uint8_t*)(uint8_t*)SZArrayLdElema(L_30, L_31, sizeof(uint8_t)));
t1_83* L_32 = (__this->f1);
t1_83* L_33 = V_1;
int32_t L_34 = 3;
*((uint8_t*)(uint8_t*)SZArrayLdElema(L_32, ((int32_t)11), sizeof(uint8_t))) = (uint8_t)(*(uint8_t*)(uint8_t*)SZArrayLdElema(L_33, L_34, sizeof(uint8_t)));
t1_83* L_35 = (__this->f1);
*((uint8_t*)(uint8_t*)SZArrayLdElema(L_35, ((int32_t)12), sizeof(uint8_t))) = (uint8_t)6;
t1_83* L_36 = V_0;
t1_83* L_37 = (__this->f1);
t1_83* L_38 = (__this->f1);
m1_4597(NULL, (t1_33 *)(t1_33 *)L_36, 1, (t1_33 *)(t1_33 *)L_37, ((int32_t)13), ((int32_t)((int32_t)(((int32_t)((int32_t)(((t1_33 *)L_38)->max_length))))-(int32_t)((int32_t)13))), NULL);
t1_83* L_39 = (__this->f1);
*((uint8_t*)(uint8_t*)SZArrayLdElema(L_39, ((int32_t)23), sizeof(uint8_t))) = (uint8_t)((int32_t)49);
}
IL_00f6:
{
t1_83* L_40 = (__this->f1);
t1_1 * L_41 = (t1_1 *)VirtFuncInvoker0< t1_1 * >::Invoke(5 /* System.Object System.Array::Clone() */, L_40);
return ((t1_83*)Castclass(L_41, t1_83_TI_var));
}
}
extern TypeInfo* t1_83_TI_var;
extern "C" t1_83* m1_1457 (t1_151 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_83_TI_var = il2cpp_codegen_type_info_from_index(42);
s_Il2CppMethodIntialized = true;
}
t1_83* V_0 = {0};
t1_575 * V_1 = {0};
t1_83* V_2 = {0};
{
t1_83* L_0 = (__this->f2);
if (L_0)
{
goto IL_005a;
}
}
{
t1_83* L_1 = m1_1456(__this, NULL);
V_0 = L_1;
t1_83* L_2 = V_0;
if (L_2)
{
goto IL_001a;
}
}
{
return (t1_83*)NULL;
}
IL_001a:
{
t1_18* L_3 = m1_1458(__this, NULL);
t1_575 * L_4 = m1_3787(NULL, L_3, NULL);
V_1 = L_4;
t1_575 * L_5 = V_1;
t1_83* L_6 = V_0;
t1_83* L_7 = m1_3785(L_5, L_6, NULL);
V_2 = L_7;
__this->f2 = ((t1_83*)SZArrayNew(t1_83_TI_var, 8));
t1_83* L_8 = V_2;
t1_83* L_9 = V_2;
t1_83* L_10 = (__this->f2);
m1_4597(NULL, (t1_33 *)(t1_33 *)L_8, ((int32_t)((int32_t)(((int32_t)((int32_t)(((t1_33 *)L_9)->max_length))))-(int32_t)8)), (t1_33 *)(t1_33 *)L_10, 0, 8, NULL);
t1_83* L_11 = (__this->f2);
m1_837(NULL, (t1_33 *)(t1_33 *)L_11, 0, 8, NULL);
}
IL_005a:
{
t1_83* L_12 = (__this->f2);
t1_1 * L_13 = (t1_1 *)VirtFuncInvoker0< t1_1 * >::Invoke(5 /* System.Object System.Array::Clone() */, L_12);
return ((t1_83*)Castclass(L_13, t1_83_TI_var));
}
}
extern Il2CppCodeGenString* _stringLiteral393;
extern "C" t1_18* m1_1458 (t1_151 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
_stringLiteral393 = il2cpp_codegen_string_literal_from_index(393);
s_Il2CppMethodIntialized = true;
}
{
t1_18* L_0 = (__this->f3);
if (L_0)
{
goto IL_0016;
}
}
{
__this->f3 = _stringLiteral393;
}
IL_0016:
{
t1_18* L_1 = (__this->f3);
return L_1;
}
}
extern TypeInfo* t1_155_TI_var;
extern "C" void m1_1459 (t1_152 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_155_TI_var = il2cpp_codegen_type_info_from_index(174);
s_Il2CppMethodIntialized = true;
}
{
m1_1478(__this, NULL);
t1_155 * L_0 = (t1_155 *)il2cpp_codegen_object_new (t1_155_TI_var);
m1_1828(L_0, NULL);
__this->f15 = L_0;
return;
}
}
extern TypeInfo* t1_266_TI_var;
extern "C" void m1_1460 (t1_152 * __this, t1_18* p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_266_TI_var = il2cpp_codegen_type_info_from_index(175);
s_Il2CppMethodIntialized = true;
}
{
__this->f13 = (t1_154 *)NULL;
t1_155 * L_0 = (__this->f15);
VirtActionInvoker0::Invoke(13 /* System.Void System.Collections.Stack::Clear() */, L_0);
t1_18* L_1 = p0;
t1_266 * L_2 = (t1_266 *)il2cpp_codegen_object_new (t1_266_TI_var);
m1_2322(L_2, L_1, NULL);
m1_1491(__this, L_2, __this, NULL);
return;
}
}
extern "C" t1_154 * m1_1461 (t1_152 * __this, const MethodInfo* method)
{
{
t1_154 * L_0 = (__this->f13);
return L_0;
}
}
extern "C" void m1_1462 (t1_152 * __this, t1_153 * p0, const MethodInfo* method)
{
{
return;
}
}
extern "C" void m1_1463 (t1_152 * __this, t1_18* p0, t1_18* p1, const MethodInfo* method)
{
{
return;
}
}
extern "C" void m1_1464 (t1_152 * __this, t1_18* p0, const MethodInfo* method)
{
{
return;
}
}
extern TypeInfo* t1_154_TI_var;
extern TypeInfo* t1_816_TI_var;
extern "C" void m1_1465 (t1_152 * __this, t1_18* p0, t1_1 * p1, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_154_TI_var = il2cpp_codegen_type_info_from_index(176);
t1_816_TI_var = il2cpp_codegen_type_info_from_index(177);
s_Il2CppMethodIntialized = true;
}
t1_154 * V_0 = {0};
t1_154 * V_1 = {0};
int32_t V_2 = 0;
int32_t V_3 = 0;
{
t1_18* L_0 = p0;
t1_154 * L_1 = (t1_154 *)il2cpp_codegen_object_new (t1_154_TI_var);
m1_4112(L_1, L_0, NULL);
V_0 = L_1;
t1_154 * L_2 = (__this->f13);
if (L_2)
{
goto IL_0025;
}
}
{
t1_154 * L_3 = V_0;
__this->f13 = L_3;
t1_154 * L_4 = V_0;
__this->f14 = L_4;
goto IL_003d;
}
IL_0025:
{
t1_155 * L_5 = (__this->f15);
t1_1 * L_6 = (t1_1 *)VirtFuncInvoker0< t1_1 * >::Invoke(17 /* System.Object System.Collections.Stack::Peek() */, L_5);
V_1 = ((t1_154 *)CastclassSealed(L_6, t1_154_TI_var));
t1_154 * L_7 = V_1;
t1_154 * L_8 = V_0;
m1_4119(L_7, L_8, NULL);
}
IL_003d:
{
t1_155 * L_9 = (__this->f15);
t1_154 * L_10 = V_0;
VirtActionInvoker1< t1_1 * >::Invoke(19 /* System.Void System.Collections.Stack::Push(System.Object) */, L_9, L_10);
t1_154 * L_11 = V_0;
__this->f14 = L_11;
t1_1 * L_12 = p1;
int32_t L_13 = (int32_t)InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 Mono.Xml.SmallXmlParser/IAttrList::get_Length() */, t1_816_TI_var, L_12);
V_2 = L_13;
V_3 = 0;
goto IL_0080;
}
IL_005e:
{
t1_154 * L_14 = (__this->f14);
t1_1 * L_15 = p1;
int32_t L_16 = V_3;
t1_18* L_17 = (t1_18*)InterfaceFuncInvoker1< t1_18*, int32_t >::Invoke(1 /* System.String Mono.Xml.SmallXmlParser/IAttrList::GetName(System.Int32) */, t1_816_TI_var, L_15, L_16);
t1_1 * L_18 = p1;
int32_t L_19 = V_3;
t1_18* L_20 = (t1_18*)InterfaceFuncInvoker1< t1_18*, int32_t >::Invoke(2 /* System.String Mono.Xml.SmallXmlParser/IAttrList::GetValue(System.Int32) */, t1_816_TI_var, L_18, L_19);
IL2CPP_RUNTIME_CLASS_INIT(t1_154_TI_var);
t1_18* L_21 = m1_4120(NULL, L_20, NULL);
m1_4118(L_14, L_17, L_21, NULL);
int32_t L_22 = V_3;
V_3 = ((int32_t)((int32_t)L_22+(int32_t)1));
}
IL_0080:
{
int32_t L_23 = V_3;
int32_t L_24 = V_2;
if ((((int32_t)L_23) < ((int32_t)L_24)))
{
goto IL_005e;
}
}
{
return;
}
}
extern TypeInfo* t1_154_TI_var;
extern "C" void m1_1466 (t1_152 * __this, t1_18* p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_154_TI_var = il2cpp_codegen_type_info_from_index(176);
s_Il2CppMethodIntialized = true;
}
{
t1_155 * L_0 = (__this->f15);
t1_1 * L_1 = (t1_1 *)VirtFuncInvoker0< t1_1 * >::Invoke(18 /* System.Object System.Collections.Stack::Pop() */, L_0);
__this->f14 = ((t1_154 *)CastclassSealed(L_1, t1_154_TI_var));
return;
}
}
extern TypeInfo* t1_154_TI_var;
extern "C" void m1_1467 (t1_152 * __this, t1_18* p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_154_TI_var = il2cpp_codegen_type_info_from_index(176);
s_Il2CppMethodIntialized = true;
}
{
t1_154 * L_0 = (__this->f14);
t1_18* L_1 = p0;
IL2CPP_RUNTIME_CLASS_INIT(t1_154_TI_var);
t1_18* L_2 = m1_4120(NULL, L_1, NULL);
m1_4117(L_0, L_2, NULL);
return;
}
}
extern "C" void m1_1468 (t1_152 * __this, t1_153 * p0, const MethodInfo* method)
{
{
return;
}
}
extern TypeInfo* t1_126_TI_var;
extern "C" void m1_1469 (t1_156 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_126_TI_var = il2cpp_codegen_type_info_from_index(55);
s_Il2CppMethodIntialized = true;
}
{
t1_126 * L_0 = (t1_126 *)il2cpp_codegen_object_new (t1_126_TI_var);
m1_1590(L_0, NULL);
__this->f0 = L_0;
t1_126 * L_1 = (t1_126 *)il2cpp_codegen_object_new (t1_126_TI_var);
m1_1590(L_1, NULL);
__this->f1 = L_1;
m1_0(__this, NULL);
return;
}
}
extern "C" int32_t m1_1470 (t1_156 * __this, const MethodInfo* method)
{
{
t1_126 * L_0 = (__this->f0);
int32_t L_1 = (int32_t)VirtFuncInvoker0< int32_t >::Invoke(23 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_0);
return L_1;
}
}
extern TypeInfo* t1_18_TI_var;
extern "C" t1_18* m1_1471 (t1_156 * __this, int32_t p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_18_TI_var = il2cpp_codegen_type_info_from_index(11);
s_Il2CppMethodIntialized = true;
}
{
t1_126 * L_0 = (__this->f0);
int32_t L_1 = p0;
t1_1 * L_2 = (t1_1 *)VirtFuncInvoker1< t1_1 *, int32_t >::Invoke(21 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_0, L_1);
return ((t1_18*)CastclassSealed(L_2, t1_18_TI_var));
}
}
extern TypeInfo* t1_18_TI_var;
extern "C" t1_18* m1_1472 (t1_156 * __this, int32_t p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_18_TI_var = il2cpp_codegen_type_info_from_index(11);
s_Il2CppMethodIntialized = true;
}
{
t1_126 * L_0 = (__this->f1);
int32_t L_1 = p0;
t1_1 * L_2 = (t1_1 *)VirtFuncInvoker1< t1_1 *, int32_t >::Invoke(21 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_0, L_1);
return ((t1_18*)CastclassSealed(L_2, t1_18_TI_var));
}
}
extern TypeInfo* t1_18_TI_var;
extern "C" t1_18* m1_1473 (t1_156 * __this, t1_18* p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_18_TI_var = il2cpp_codegen_type_info_from_index(11);
s_Il2CppMethodIntialized = true;
}
int32_t V_0 = 0;
{
V_0 = 0;
goto IL_0039;
}
IL_0007:
{
t1_126 * L_0 = (__this->f0);
int32_t L_1 = V_0;
t1_1 * L_2 = (t1_1 *)VirtFuncInvoker1< t1_1 *, int32_t >::Invoke(21 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_0, L_1);
t1_18* L_3 = p0;
IL2CPP_RUNTIME_CLASS_INIT(t1_18_TI_var);
bool L_4 = m1_456(NULL, ((t1_18*)CastclassSealed(L_2, t1_18_TI_var)), L_3, NULL);
if (!L_4)
{
goto IL_0035;
}
}
{
t1_126 * L_5 = (__this->f1);
int32_t L_6 = V_0;
t1_1 * L_7 = (t1_1 *)VirtFuncInvoker1< t1_1 *, int32_t >::Invoke(21 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_5, L_6);
return ((t1_18*)CastclassSealed(L_7, t1_18_TI_var));
}
IL_0035:
{
int32_t L_8 = V_0;
V_0 = ((int32_t)((int32_t)L_8+(int32_t)1));
}
IL_0039:
{
int32_t L_9 = V_0;
t1_126 * L_10 = (__this->f0);
int32_t L_11 = (int32_t)VirtFuncInvoker0< int32_t >::Invoke(23 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_10);
if ((((int32_t)L_9) < ((int32_t)L_11)))
{
goto IL_0007;
}
}
{
return (t1_18*)NULL;
}
}
extern const Il2CppType* t1_18_0_0_0_var;
extern TypeInfo* t1_37_TI_var;
extern TypeInfo* t1_212_TI_var;
extern "C" t1_212* m1_1474 (t1_156 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_18_0_0_0_var = il2cpp_codegen_type_from_index(11);
t1_37_TI_var = il2cpp_codegen_type_info_from_index(3);
t1_212_TI_var = il2cpp_codegen_type_info_from_index(32);
s_Il2CppMethodIntialized = true;
}
{
t1_126 * L_0 = (__this->f0);
IL2CPP_RUNTIME_CLASS_INIT(t1_37_TI_var);
t1_37 * L_1 = m1_894(NULL, LoadTypeToken(t1_18_0_0_0_var), NULL);
t1_33 * L_2 = (t1_33 *)VirtFuncInvoker1< t1_33 *, t1_37 * >::Invoke(48 /* System.Array System.Collections.ArrayList::ToArray(System.Type) */, L_0, L_1);
return ((t1_212*)Castclass(L_2, t1_212_TI_var));
}
}
extern const Il2CppType* t1_18_0_0_0_var;
extern TypeInfo* t1_37_TI_var;
extern TypeInfo* t1_212_TI_var;
extern "C" t1_212* m1_1475 (t1_156 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_18_0_0_0_var = il2cpp_codegen_type_from_index(11);
t1_37_TI_var = il2cpp_codegen_type_info_from_index(3);
t1_212_TI_var = il2cpp_codegen_type_info_from_index(32);
s_Il2CppMethodIntialized = true;
}
{
t1_126 * L_0 = (__this->f1);
IL2CPP_RUNTIME_CLASS_INIT(t1_37_TI_var);
t1_37 * L_1 = m1_894(NULL, LoadTypeToken(t1_18_0_0_0_var), NULL);
t1_33 * L_2 = (t1_33 *)VirtFuncInvoker1< t1_33 *, t1_37 * >::Invoke(48 /* System.Array System.Collections.ArrayList::ToArray(System.Type) */, L_0, L_1);
return ((t1_212*)Castclass(L_2, t1_212_TI_var));
}
}
extern "C" void m1_1476 (t1_156 * __this, const MethodInfo* method)
{
{
t1_126 * L_0 = (__this->f0);
VirtActionInvoker0::Invoke(31 /* System.Void System.Collections.ArrayList::Clear() */, L_0);
t1_126 * L_1 = (__this->f1);
VirtActionInvoker0::Invoke(31 /* System.Void System.Collections.ArrayList::Clear() */, L_1);
return;
}
}
extern "C" void m1_1477 (t1_156 * __this, t1_18* p0, t1_18* p1, const MethodInfo* method)
{
{
t1_126 * L_0 = (__this->f0);
t1_18* L_1 = p0;
VirtFuncInvoker1< int32_t, t1_1 * >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_0, L_1);
t1_126 * L_2 = (__this->f1);
t1_18* L_3 = p1;
VirtFuncInvoker1< int32_t, t1_1 * >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_2, L_3);
return;
}
}
extern TypeInfo* t1_155_TI_var;
extern TypeInfo* t1_158_TI_var;
extern TypeInfo* t1_19_TI_var;
extern TypeInfo* t1_156_TI_var;
extern "C" void m1_1478 (t1_153 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_155_TI_var = il2cpp_codegen_type_info_from_index(174);
t1_158_TI_var = il2cpp_codegen_type_info_from_index(36);
t1_19_TI_var = il2cpp_codegen_type_info_from_index(12);
t1_156_TI_var = il2cpp_codegen_type_info_from_index(178);
s_Il2CppMethodIntialized = true;
}
{
t1_155 * L_0 = (t1_155 *)il2cpp_codegen_object_new (t1_155_TI_var);
m1_1828(L_0, NULL);
__this->f2 = L_0;
t1_155 * L_1 = (t1_155 *)il2cpp_codegen_object_new (t1_155_TI_var);
m1_1828(L_1, NULL);
__this->f3 = L_1;
t1_158 * L_2 = (t1_158 *)il2cpp_codegen_object_new (t1_158_TI_var);
m1_4292(L_2, ((int32_t)200), NULL);
__this->f5 = L_2;
__this->f6 = ((t1_19*)SZArrayNew(t1_19_TI_var, ((int32_t)30)));
t1_156 * L_3 = (t1_156 *)il2cpp_codegen_object_new (t1_156_TI_var);
m1_1469(L_3, NULL);
__this->f8 = L_3;
__this->f9 = 1;
m1_0(__this, NULL);
return;
}
}
extern TypeInfo* t1_160_TI_var;
extern "C" t1_43 * m1_1479 (t1_153 * __this, t1_18* p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_160_TI_var = il2cpp_codegen_type_info_from_index(179);
s_Il2CppMethodIntialized = true;
}
{
t1_18* L_0 = p0;
int32_t L_1 = (__this->f9);
int32_t L_2 = (__this->f10);
t1_160 * L_3 = (t1_160 *)il2cpp_codegen_object_new (t1_160_TI_var);
m1_1501(L_3, L_0, L_1, L_2, NULL);
return L_3;
}
}
extern TypeInfo* t1_212_TI_var;
extern TypeInfo* t1_18_TI_var;
extern Il2CppCodeGenString* _stringLiteral466;
extern Il2CppCodeGenString* _stringLiteral229;
extern "C" t1_43 * m1_1480 (t1_153 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_212_TI_var = il2cpp_codegen_type_info_from_index(32);
t1_18_TI_var = il2cpp_codegen_type_info_from_index(11);
_stringLiteral466 = il2cpp_codegen_string_literal_from_index(466);
_stringLiteral229 = il2cpp_codegen_string_literal_from_index(229);
s_Il2CppMethodIntialized = true;
}
t1_212* V_0 = {0};
{
t1_155 * L_0 = (__this->f2);
int32_t L_1 = (int32_t)VirtFuncInvoker0< int32_t >::Invoke(10 /* System.Int32 System.Collections.Stack::get_Count() */, L_0);
V_0 = ((t1_212*)SZArrayNew(t1_212_TI_var, L_1));
t1_155 * L_2 = (__this->f2);
t1_212* L_3 = V_0;
VirtActionInvoker2< t1_33 *, int32_t >::Invoke(15 /* System.Void System.Collections.Stack::CopyTo(System.Array,System.Int32) */, L_2, (t1_33 *)(t1_33 *)L_3, 0);
t1_212* L_4 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(t1_18_TI_var);
t1_18* L_5 = m1_427(NULL, _stringLiteral229, L_4, NULL);
t1_18* L_6 = m1_412(NULL, _stringLiteral466, L_5, NULL);
t1_43 * L_7 = m1_1479(__this, L_6, NULL);
return L_7;
}
}
extern TypeInfo* t1_17_TI_var;
extern "C" bool m1_1481 (t1_153 * __this, uint16_t p0, bool p1, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_17_TI_var = il2cpp_codegen_type_info_from_index(9);
s_Il2CppMethodIntialized = true;
}
uint16_t V_0 = 0x0;
int32_t V_1 = {0};
{
uint16_t L_0 = p0;
V_0 = L_0;
uint16_t L_1 = V_0;
if ((((int32_t)L_1) == ((int32_t)((int32_t)45))))
{
goto IL_0029;
}
}
{
uint16_t L_2 = V_0;
if ((((int32_t)L_2) == ((int32_t)((int32_t)46))))
{
goto IL_0029;
}
}
{
uint16_t L_3 = V_0;
if ((((int32_t)L_3) == ((int32_t)((int32_t)58))))
{
goto IL_0027;
}
}
{
uint16_t L_4 = V_0;
if ((((int32_t)L_4) == ((int32_t)((int32_t)95))))
{
goto IL_0027;
}
}
{
goto IL_002e;
}
IL_0027:
{
return 1;
}
IL_0029:
{
bool L_5 = p1;
return ((((int32_t)L_5) == ((int32_t)0))? 1 : 0);
}
IL_002e:
{
uint16_t L_6 = p0;
if ((((int32_t)L_6) <= ((int32_t)((int32_t)256))))
{
goto IL_007b;
}
}
{
uint16_t L_7 = p0;
V_0 = L_7;
uint16_t L_8 = V_0;
if ((((int32_t)L_8) == ((int32_t)((int32_t)1765))))
{
goto IL_0061;
}
}
{
uint16_t L_9 = V_0;
if ((((int32_t)L_9) == ((int32_t)((int32_t)1766))))
{
goto IL_0061;
}
}
{
uint16_t L_10 = V_0;
if ((((int32_t)L_10) == ((int32_t)((int32_t)1369))))
{
goto IL_0061;
}
}
{
goto IL_0063;
}
IL_0061:
{
return 1;
}
IL_0063:
{
uint16_t L_11 = p0;
if ((((int32_t)((int32_t)699)) > ((int32_t)L_11)))
{
goto IL_007b;
}
}
{
uint16_t L_12 = p0;
if ((((int32_t)L_12) > ((int32_t)((int32_t)705))))
{
goto IL_007b;
}
}
{
return 1;
}
IL_007b:
{
uint16_t L_13 = p0;
IL2CPP_RUNTIME_CLASS_INIT(t1_17_TI_var);
int32_t L_14 = m1_300(NULL, L_13, NULL);
V_1 = L_14;
int32_t L_15 = V_1;
if (L_15 == 0)
{
goto IL_00b5;
}
if (L_15 == 1)
{
goto IL_00b5;
}
if (L_15 == 2)
{
goto IL_00b5;
}
if (L_15 == 3)
{
goto IL_00b7;
}
if (L_15 == 4)
{
goto IL_00b5;
}
if (L_15 == 5)
{
goto IL_00b7;
}
if (L_15 == 6)
{
goto IL_00b7;
}
if (L_15 == 7)
{
goto IL_00b7;
}
if (L_15 == 8)
{
goto IL_00b7;
}
if (L_15 == 9)
{
goto IL_00b5;
}
}
{
goto IL_00bc;
}
IL_00b5:
{
return 1;
}
IL_00b7:
{
bool L_16 = p1;
return ((((int32_t)L_16) == ((int32_t)0))? 1 : 0);
}
IL_00bc:
{
return 0;
}
}
extern "C" bool m1_1482 (t1_153 * __this, int32_t p0, const MethodInfo* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = p0;
V_0 = L_0;
int32_t L_1 = V_0;
if (((int32_t)((int32_t)L_1-(int32_t)((int32_t)9))) == 0)
{
goto IL_002c;
}
if (((int32_t)((int32_t)L_1-(int32_t)((int32_t)9))) == 1)
{
goto IL_002c;
}
if (((int32_t)((int32_t)L_1-(int32_t)((int32_t)9))) == 2)
{
goto IL_001f;
}
if (((int32_t)((int32_t)L_1-(int32_t)((int32_t)9))) == 3)
{
goto IL_001f;
}
if (((int32_t)((int32_t)L_1-(int32_t)((int32_t)9))) == 4)
{
goto IL_002c;
}
}
IL_001f:
{
int32_t L_2 = V_0;
if ((((int32_t)L_2) == ((int32_t)((int32_t)32))))
{
goto IL_002c;
}
}
{
goto IL_002e;
}
IL_002c:
{
return 1;
}
IL_002e:
{
return 0;
}
}
extern "C" void m1_1483 (t1_153 * __this, const MethodInfo* method)
{
{
m1_1485(__this, 0, NULL);
return;
}
}
extern "C" void m1_1484 (t1_153 * __this, const MethodInfo* method)
{
{
goto IL_0018;
}
IL_0005:
{
t1_158 * L_0 = (__this->f5);
int32_t L_1 = m1_1487(__this, NULL);
m1_4312(L_0, (((int32_t)((uint16_t)L_1))), NULL);
}
IL_0018:
{
int32_t L_2 = m1_1486(__this, NULL);
bool L_3 = m1_1482(__this, L_2, NULL);
if (L_3)
{
goto IL_0005;
}
}
{
int32_t L_4 = m1_1486(__this, NULL);
if ((((int32_t)L_4) == ((int32_t)((int32_t)60))))
{
goto IL_0049;
}
}
{
int32_t L_5 = m1_1486(__this, NULL);
if ((((int32_t)L_5) < ((int32_t)0)))
{
goto IL_0049;
}
}
{
__this->f7 = 0;
}
IL_0049:
{
return;
}
}
extern Il2CppCodeGenString* _stringLiteral467;
extern "C" void m1_1485 (t1_153 * __this, bool p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
_stringLiteral467 = il2cpp_codegen_string_literal_from_index(467);
s_Il2CppMethodIntialized = true;
}
int32_t V_0 = 0;
IL_0000:
{
int32_t L_0 = m1_1486(__this, NULL);
V_0 = L_0;
int32_t L_1 = V_0;
if (((int32_t)((int32_t)L_1-(int32_t)((int32_t)9))) == 0)
{
goto IL_0031;
}
if (((int32_t)((int32_t)L_1-(int32_t)((int32_t)9))) == 1)
{
goto IL_0031;
}
if (((int32_t)((int32_t)L_1-(int32_t)((int32_t)9))) == 2)
{
goto IL_0024;
}
if (((int32_t)((int32_t)L_1-(int32_t)((int32_t)9))) == 3)
{
goto IL_0024;
}
if (((int32_t)((int32_t)L_1-(int32_t)((int32_t)9))) == 4)
{
goto IL_0031;
}
}
IL_0024:
{
int32_t L_2 = V_0;
if ((((int32_t)L_2) == ((int32_t)((int32_t)32))))
{
goto IL_0031;
}
}
{
goto IL_0046;
}
IL_0031:
{
m1_1487(__this, NULL);
bool L_3 = p0;
if (!L_3)
{
goto IL_0041;
}
}
{
p0 = 0;
}
IL_0041:
{
goto IL_0000;
}
IL_0046:
{
bool L_4 = p0;
if (!L_4)
{
goto IL_0058;
}
}
{
t1_43 * L_5 = m1_1479(__this, _stringLiteral467, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_5);
}
IL_0058:
{
return;
}
// Dead block : IL_0059: br IL_0000
}
extern "C" int32_t m1_1486 (t1_153 * __this, const MethodInfo* method)
{
{
t1_157 * L_0 = (__this->f1);
int32_t L_1 = (int32_t)VirtFuncInvoker0< int32_t >::Invoke(6 /* System.Int32 System.IO.TextReader::Peek() */, L_0);
return L_1;
}
}
extern "C" int32_t m1_1487 (t1_153 * __this, const MethodInfo* method)
{
int32_t V_0 = 0;
{
t1_157 * L_0 = (__this->f1);
int32_t L_1 = (int32_t)VirtFuncInvoker0< int32_t >::Invoke(7 /* System.Int32 System.IO.TextReader::Read() */, L_0);
V_0 = L_1;
int32_t L_2 = V_0;
if ((!(((uint32_t)L_2) == ((uint32_t)((int32_t)10)))))
{
goto IL_001b;
}
}
{
__this->f11 = 1;
}
IL_001b:
{
bool L_3 = (__this->f11);
if (!L_3)
{
goto IL_0047;
}
}
{
int32_t L_4 = (__this->f9);
__this->f9 = ((int32_t)((int32_t)L_4+(int32_t)1));
__this->f11 = 0;
__this->f10 = 1;
goto IL_0055;
}
IL_0047:
{
int32_t L_5 = (__this->f10);
__this->f10 = ((int32_t)((int32_t)L_5+(int32_t)1));
}
IL_0055:
{
int32_t L_6 = V_0;
return L_6;
}
}
extern TypeInfo* t1_17_TI_var;
extern TypeInfo* t1_18_TI_var;
extern Il2CppCodeGenString* _stringLiteral468;
extern "C" void m1_1488 (t1_153 * __this, int32_t p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_17_TI_var = il2cpp_codegen_type_info_from_index(9);
t1_18_TI_var = il2cpp_codegen_type_info_from_index(11);
_stringLiteral468 = il2cpp_codegen_string_literal_from_index(468);
s_Il2CppMethodIntialized = true;
}
int32_t V_0 = 0;
{
int32_t L_0 = m1_1487(__this, NULL);
V_0 = L_0;
int32_t L_1 = V_0;
if ((((int32_t)L_1) >= ((int32_t)0)))
{
goto IL_0015;
}
}
{
t1_43 * L_2 = m1_1480(__this, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_2);
}
IL_0015:
{
int32_t L_3 = V_0;
int32_t L_4 = p0;
if ((((int32_t)L_3) == ((int32_t)L_4)))
{
goto IL_003b;
}
}
{
int32_t L_5 = p0;
uint16_t L_6 = (((int32_t)((uint16_t)L_5)));
t1_1 * L_7 = Box(t1_17_TI_var, &L_6);
int32_t L_8 = V_0;
uint16_t L_9 = (((int32_t)((uint16_t)L_8)));
t1_1 * L_10 = Box(t1_17_TI_var, &L_9);
IL2CPP_RUNTIME_CLASS_INIT(t1_18_TI_var);
t1_18* L_11 = m1_413(NULL, _stringLiteral468, L_7, L_10, NULL);
t1_43 * L_12 = m1_1479(__this, L_11, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_12);
}
IL_003b:
{
return;
}
}
extern "C" t1_18* m1_1489 (t1_153 * __this, uint16_t p0, bool p1, const MethodInfo* method)
{
uint16_t V_0 = 0x0;
t1_18* V_1 = {0};
IL_0000:
{
int32_t L_0 = m1_1486(__this, NULL);
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0013;
}
}
{
t1_43 * L_1 = m1_1480(__this, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_1);
}
IL_0013:
{
int32_t L_2 = m1_1487(__this, NULL);
V_0 = (((int32_t)((uint16_t)L_2)));
uint16_t L_3 = V_0;
uint16_t L_4 = p0;
if ((!(((uint32_t)L_3) == ((uint32_t)L_4))))
{
goto IL_0027;
}
}
{
goto IL_0052;
}
IL_0027:
{
bool L_5 = p1;
if (!L_5)
{
goto IL_0040;
}
}
{
uint16_t L_6 = V_0;
if ((!(((uint32_t)L_6) == ((uint32_t)((int32_t)38)))))
{
goto IL_0040;
}
}
{
m1_1496(__this, NULL);
goto IL_004d;
}
IL_0040:
{
t1_158 * L_7 = (__this->f5);
uint16_t L_8 = V_0;
m1_4312(L_7, L_8, NULL);
}
IL_004d:
{
goto IL_0000;
}
IL_0052:
{
t1_158 * L_9 = (__this->f5);
t1_18* L_10 = m1_4303(L_9, NULL);
V_1 = L_10;
t1_158 * L_11 = (__this->f5);
m1_4300(L_11, 0, NULL);
t1_18* L_12 = V_1;
return L_12;
}
}
extern TypeInfo* t1_19_TI_var;
extern TypeInfo* t1_18_TI_var;
extern Il2CppCodeGenString* _stringLiteral469;
extern Il2CppCodeGenString* _stringLiteral470;
extern "C" t1_18* m1_1490 (t1_153 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_19_TI_var = il2cpp_codegen_type_info_from_index(12);
t1_18_TI_var = il2cpp_codegen_type_info_from_index(11);
_stringLiteral469 = il2cpp_codegen_string_literal_from_index(469);
_stringLiteral470 = il2cpp_codegen_string_literal_from_index(470);
s_Il2CppMethodIntialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
uint16_t V_2 = 0x0;
t1_19* V_3 = {0};
{
V_0 = 0;
int32_t L_0 = m1_1486(__this, NULL);
if ((((int32_t)L_0) < ((int32_t)0)))
{
goto IL_0021;
}
}
{
int32_t L_1 = m1_1486(__this, NULL);
bool L_2 = m1_1481(__this, (((int32_t)((uint16_t)L_1))), 1, NULL);
if (L_2)
{
goto IL_002d;
}
}
IL_0021:
{
t1_43 * L_3 = m1_1479(__this, _stringLiteral469, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_3);
}
IL_002d:
{
int32_t L_4 = m1_1486(__this, NULL);
V_1 = L_4;
goto IL_0094;
}
IL_0039:
{
int32_t L_5 = V_1;
V_2 = (((int32_t)((uint16_t)L_5)));
uint16_t L_6 = V_2;
bool L_7 = m1_1481(__this, L_6, 0, NULL);
if (L_7)
{
goto IL_004e;
}
}
{
goto IL_009b;
}
IL_004e:
{
int32_t L_8 = V_0;
t1_19* L_9 = (__this->f6);
if ((!(((uint32_t)L_8) == ((uint32_t)(((int32_t)((int32_t)(((t1_33 *)L_9)->max_length))))))))
{
goto IL_0079;
}
}
{
int32_t L_10 = V_0;
V_3 = ((t1_19*)SZArrayNew(t1_19_TI_var, ((int32_t)((int32_t)L_10*(int32_t)2))));
t1_19* L_11 = (__this->f6);
t1_19* L_12 = V_3;
int32_t L_13 = V_0;
m1_824(NULL, (t1_33 *)(t1_33 *)L_11, (t1_33 *)(t1_33 *)L_12, L_13, NULL);
t1_19* L_14 = V_3;
__this->f6 = L_14;
}
IL_0079:
{
t1_19* L_15 = (__this->f6);
int32_t L_16 = V_0;
int32_t L_17 = L_16;
V_0 = ((int32_t)((int32_t)L_17+(int32_t)1));
uint16_t L_18 = V_2;
*((uint16_t*)(uint16_t*)SZArrayLdElema(L_15, L_17, sizeof(uint16_t))) = (uint16_t)L_18;
m1_1487(__this, NULL);
int32_t L_19 = m1_1486(__this, NULL);
V_1 = L_19;
}
IL_0094:
{
int32_t L_20 = V_1;
if ((((int32_t)L_20) >= ((int32_t)0)))
{
goto IL_0039;
}
}
IL_009b:
{
int32_t L_21 = V_0;
if (L_21)
{
goto IL_00ad;
}
}
{
t1_43 * L_22 = m1_1479(__this, _stringLiteral470, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_22);
}
IL_00ad:
{
t1_19* L_23 = (__this->f6);
int32_t L_24 = V_0;
t1_18* L_25 = (t1_18*)il2cpp_codegen_object_new (t1_18_TI_var);
L_25 = m1_442(L_25, L_23, 0, L_24, NULL);
return L_25;
}
}
extern TypeInfo* t1_159_TI_var;
extern TypeInfo* t1_18_TI_var;
extern Il2CppCodeGenString* _stringLiteral471;
extern "C" void m1_1491 (t1_153 * __this, t1_157 * p0, t1_1 * p1, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_159_TI_var = il2cpp_codegen_type_info_from_index(180);
t1_18_TI_var = il2cpp_codegen_type_info_from_index(11);
_stringLiteral471 = il2cpp_codegen_string_literal_from_index(471);
s_Il2CppMethodIntialized = true;
}
{
t1_157 * L_0 = p0;
__this->f1 = L_0;
t1_1 * L_1 = p1;
__this->f0 = L_1;
t1_1 * L_2 = p1;
InterfaceActionInvoker1< t1_153 * >::Invoke(0 /* System.Void Mono.Xml.SmallXmlParser/IContentHandler::OnStartParsing(Mono.Xml.SmallXmlParser) */, t1_159_TI_var, L_2, __this);
goto IL_0020;
}
IL_001a:
{
m1_1493(__this, NULL);
}
IL_0020:
{
int32_t L_3 = m1_1486(__this, NULL);
if ((((int32_t)L_3) >= ((int32_t)0)))
{
goto IL_001a;
}
}
{
m1_1494(__this, NULL);
t1_155 * L_4 = (__this->f2);
int32_t L_5 = (int32_t)VirtFuncInvoker0< int32_t >::Invoke(10 /* System.Int32 System.Collections.Stack::get_Count() */, L_4);
if ((((int32_t)L_5) <= ((int32_t)0)))
{
goto IL_005f;
}
}
{
t1_155 * L_6 = (__this->f2);
t1_1 * L_7 = (t1_1 *)VirtFuncInvoker0< t1_1 * >::Invoke(17 /* System.Object System.Collections.Stack::Peek() */, L_6);
IL2CPP_RUNTIME_CLASS_INIT(t1_18_TI_var);
t1_18* L_8 = m1_412(NULL, _stringLiteral471, L_7, NULL);
t1_43 * L_9 = m1_1479(__this, L_8, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_9);
}
IL_005f:
{
t1_1 * L_10 = p1;
InterfaceActionInvoker1< t1_153 * >::Invoke(1 /* System.Void Mono.Xml.SmallXmlParser/IContentHandler::OnEndParsing(Mono.Xml.SmallXmlParser) */, t1_159_TI_var, L_10, __this);
m1_1492(__this, NULL);
return;
}
}
extern "C" void m1_1492 (t1_153 * __this, const MethodInfo* method)
{
{
__this->f9 = 1;
__this->f10 = 0;
__this->f0 = (t1_1 *)NULL;
__this->f1 = (t1_157 *)NULL;
t1_155 * L_0 = (__this->f2);
VirtActionInvoker0::Invoke(13 /* System.Void System.Collections.Stack::Clear() */, L_0);
t1_155 * L_1 = (__this->f3);
VirtActionInvoker0::Invoke(13 /* System.Void System.Collections.Stack::Clear() */, L_1);
t1_156 * L_2 = (__this->f8);
m1_1476(L_2, NULL);
t1_158 * L_3 = (__this->f5);
m1_4300(L_3, 0, NULL);
__this->f4 = (t1_18*)NULL;
__this->f7 = 0;
return;
}
}
extern TypeInfo* t1_18_TI_var;
extern TypeInfo* t1_159_TI_var;
extern Il2CppCodeGenString* _stringLiteral472;
extern Il2CppCodeGenString* _stringLiteral473;
extern Il2CppCodeGenString* _stringLiteral474;
extern Il2CppCodeGenString* _stringLiteral475;
extern Il2CppCodeGenString* _stringLiteral476;
extern Il2CppCodeGenString* _stringLiteral477;
extern Il2CppCodeGenString* _stringLiteral478;
extern "C" void m1_1493 (t1_153 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_18_TI_var = il2cpp_codegen_type_info_from_index(11);
t1_159_TI_var = il2cpp_codegen_type_info_from_index(180);
_stringLiteral472 = il2cpp_codegen_string_literal_from_index(472);
_stringLiteral473 = il2cpp_codegen_string_literal_from_index(473);
_stringLiteral474 = il2cpp_codegen_string_literal_from_index(474);
_stringLiteral475 = il2cpp_codegen_string_literal_from_index(475);
_stringLiteral476 = il2cpp_codegen_string_literal_from_index(476);
_stringLiteral477 = il2cpp_codegen_string_literal_from_index(477);
_stringLiteral478 = il2cpp_codegen_string_literal_from_index(478);
s_Il2CppMethodIntialized = true;
}
t1_18* V_0 = {0};
t1_18* V_1 = {0};
t1_18* V_2 = {0};
int32_t V_3 = 0;
{
int32_t L_0 = m1_1486(__this, NULL);
bool L_1 = m1_1482(__this, L_0, NULL);
if (!L_1)
{
goto IL_002e;
}
}
{
t1_158 * L_2 = (__this->f5);
int32_t L_3 = m1_4299(L_2, NULL);
if (L_3)
{
goto IL_0028;
}
}
{
__this->f7 = 1;
}
IL_0028:
{
m1_1484(__this, NULL);
}
IL_002e:
{
int32_t L_4 = m1_1486(__this, NULL);
if ((!(((uint32_t)L_4) == ((uint32_t)((int32_t)60)))))
{
goto IL_02c3;
}
}
{
m1_1487(__this, NULL);
int32_t L_5 = m1_1486(__this, NULL);
V_3 = L_5;
int32_t L_6 = V_3;
if ((((int32_t)L_6) == ((int32_t)((int32_t)33))))
{
goto IL_0066;
}
}
{
int32_t L_7 = V_3;
if ((((int32_t)L_7) == ((int32_t)((int32_t)47))))
{
goto IL_0168;
}
}
{
int32_t L_8 = V_3;
if ((((int32_t)L_8) == ((int32_t)((int32_t)63))))
{
goto IL_00f2;
}
}
{
goto IL_021d;
}
IL_0066:
{
m1_1487(__this, NULL);
int32_t L_9 = m1_1486(__this, NULL);
if ((!(((uint32_t)L_9) == ((uint32_t)((int32_t)91)))))
{
goto IL_00b1;
}
}
{
m1_1487(__this, NULL);
t1_18* L_10 = m1_1490(__this, NULL);
IL2CPP_RUNTIME_CLASS_INIT(t1_18_TI_var);
bool L_11 = m1_457(NULL, L_10, _stringLiteral472, NULL);
if (!L_11)
{
goto IL_00a2;
}
}
{
t1_43 * L_12 = m1_1479(__this, _stringLiteral473, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_12);
}
IL_00a2:
{
m1_1488(__this, ((int32_t)91), NULL);
m1_1499(__this, NULL);
return;
}
IL_00b1:
{
int32_t L_13 = m1_1486(__this, NULL);
if ((!(((uint32_t)L_13) == ((uint32_t)((int32_t)45)))))
{
goto IL_00c5;
}
}
{
m1_1500(__this, NULL);
return;
}
IL_00c5:
{
t1_18* L_14 = m1_1490(__this, NULL);
IL2CPP_RUNTIME_CLASS_INIT(t1_18_TI_var);
bool L_15 = m1_457(NULL, L_14, _stringLiteral474, NULL);
if (!L_15)
{
goto IL_00e6;
}
}
{
t1_43 * L_16 = m1_1479(__this, _stringLiteral475, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_16);
}
IL_00e6:
{
t1_43 * L_17 = m1_1479(__this, _stringLiteral476, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_17);
}
IL_00f2:
{
m1_1494(__this, NULL);
m1_1487(__this, NULL);
t1_18* L_18 = m1_1490(__this, NULL);
V_0 = L_18;
m1_1483(__this, NULL);
IL2CPP_RUNTIME_CLASS_INIT(t1_18_TI_var);
t1_18* L_19 = ((t1_18_SFs*)t1_18_TI_var->static_fields)->f2;
V_1 = L_19;
int32_t L_20 = m1_1486(__this, NULL);
if ((((int32_t)L_20) == ((int32_t)((int32_t)63))))
{
goto IL_0152;
}
}
IL_011f:
{
t1_18* L_21 = V_1;
t1_18* L_22 = m1_1489(__this, ((int32_t)63), 0, NULL);
IL2CPP_RUNTIME_CLASS_INIT(t1_18_TI_var);
t1_18* L_23 = m1_420(NULL, L_21, L_22, NULL);
V_1 = L_23;
int32_t L_24 = m1_1486(__this, NULL);
if ((!(((uint32_t)L_24) == ((uint32_t)((int32_t)62)))))
{
goto IL_0141;
}
}
{
goto IL_0152;
}
IL_0141:
{
t1_18* L_25 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(t1_18_TI_var);
t1_18* L_26 = m1_420(NULL, L_25, _stringLiteral477, NULL);
V_1 = L_26;
goto IL_011f;
}
IL_0152:
{
t1_1 * L_27 = (__this->f0);
t1_18* L_28 = V_0;
t1_18* L_29 = V_1;
InterfaceActionInvoker2< t1_18*, t1_18* >::Invoke(4 /* System.Void Mono.Xml.SmallXmlParser/IContentHandler::OnProcessingInstruction(System.String,System.String) */, t1_159_TI_var, L_27, L_28, L_29);
m1_1488(__this, ((int32_t)62), NULL);
return;
}
IL_0168:
{
m1_1494(__this, NULL);
t1_155 * L_30 = (__this->f2);
int32_t L_31 = (int32_t)VirtFuncInvoker0< int32_t >::Invoke(10 /* System.Int32 System.Collections.Stack::get_Count() */, L_30);
if (L_31)
{
goto IL_0185;
}
}
{
t1_43 * L_32 = m1_1480(__this, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_32);
}
IL_0185:
{
m1_1487(__this, NULL);
t1_18* L_33 = m1_1490(__this, NULL);
V_0 = L_33;
m1_1483(__this, NULL);
t1_155 * L_34 = (__this->f2);
t1_1 * L_35 = (t1_1 *)VirtFuncInvoker0< t1_1 * >::Invoke(18 /* System.Object System.Collections.Stack::Pop() */, L_34);
V_2 = ((t1_18*)CastclassSealed(L_35, t1_18_TI_var));
t1_155 * L_36 = (__this->f3);
VirtFuncInvoker0< t1_1 * >::Invoke(18 /* System.Object System.Collections.Stack::Pop() */, L_36);
t1_155 * L_37 = (__this->f3);
int32_t L_38 = (int32_t)VirtFuncInvoker0< int32_t >::Invoke(10 /* System.Int32 System.Collections.Stack::get_Count() */, L_37);
if ((((int32_t)L_38) <= ((int32_t)0)))
{
goto IL_01e2;
}
}
{
t1_155 * L_39 = (__this->f3);
t1_1 * L_40 = (t1_1 *)VirtFuncInvoker0< t1_1 * >::Invoke(17 /* System.Object System.Collections.Stack::Peek() */, L_39);
__this->f4 = ((t1_18*)CastclassSealed(L_40, t1_18_TI_var));
goto IL_01e9;
}
IL_01e2:
{
__this->f4 = (t1_18*)NULL;
}
IL_01e9:
{
t1_18* L_41 = V_0;
t1_18* L_42 = V_2;
IL2CPP_RUNTIME_CLASS_INIT(t1_18_TI_var);
bool L_43 = m1_457(NULL, L_41, L_42, NULL);
if (!L_43)
{
goto IL_0208;
}
}
{
t1_18* L_44 = V_2;
t1_18* L_45 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(t1_18_TI_var);
t1_18* L_46 = m1_413(NULL, _stringLiteral478, L_44, L_45, NULL);
t1_43 * L_47 = m1_1479(__this, L_46, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_47);
}
IL_0208:
{
t1_1 * L_48 = (__this->f0);
t1_18* L_49 = V_0;
InterfaceActionInvoker1< t1_18* >::Invoke(3 /* System.Void Mono.Xml.SmallXmlParser/IContentHandler::OnEndElement(System.String) */, t1_159_TI_var, L_48, L_49);
m1_1488(__this, ((int32_t)62), NULL);
return;
}
IL_021d:
{
m1_1494(__this, NULL);
t1_18* L_50 = m1_1490(__this, NULL);
V_0 = L_50;
goto IL_023b;
}
IL_022f:
{
t1_156 * L_51 = (__this->f8);
m1_1498(__this, L_51, NULL);
}
IL_023b:
{
int32_t L_52 = m1_1486(__this, NULL);
if ((((int32_t)L_52) == ((int32_t)((int32_t)62))))
{
goto IL_0255;
}
}
{
int32_t L_53 = m1_1486(__this, NULL);
if ((!(((uint32_t)L_53) == ((uint32_t)((int32_t)47)))))
{
goto IL_022f;
}
}
IL_0255:
{
t1_1 * L_54 = (__this->f0);
t1_18* L_55 = V_0;
t1_156 * L_56 = (__this->f8);
InterfaceActionInvoker2< t1_18*, t1_1 * >::Invoke(2 /* System.Void Mono.Xml.SmallXmlParser/IContentHandler::OnStartElement(System.String,Mono.Xml.SmallXmlParser/IAttrList) */, t1_159_TI_var, L_54, L_55, L_56);
t1_156 * L_57 = (__this->f8);
m1_1476(L_57, NULL);
m1_1483(__this, NULL);
int32_t L_58 = m1_1486(__this, NULL);
if ((!(((uint32_t)L_58) == ((uint32_t)((int32_t)47)))))
{
goto IL_029d;
}
}
{
m1_1487(__this, NULL);
t1_1 * L_59 = (__this->f0);
t1_18* L_60 = V_0;
InterfaceActionInvoker1< t1_18* >::Invoke(3 /* System.Void Mono.Xml.SmallXmlParser/IContentHandler::OnEndElement(System.String) */, t1_159_TI_var, L_59, L_60);
goto IL_02ba;
}
IL_029d:
{
t1_155 * L_61 = (__this->f2);
t1_18* L_62 = V_0;
VirtActionInvoker1< t1_1 * >::Invoke(19 /* System.Void System.Collections.Stack::Push(System.Object) */, L_61, L_62);
t1_155 * L_63 = (__this->f3);
t1_18* L_64 = (__this->f4);
VirtActionInvoker1< t1_1 * >::Invoke(19 /* System.Void System.Collections.Stack::Push(System.Object) */, L_63, L_64);
}
IL_02ba:
{
m1_1488(__this, ((int32_t)62), NULL);
return;
}
IL_02c3:
{
m1_1495(__this, NULL);
return;
}
}
extern TypeInfo* t1_159_TI_var;
extern "C" void m1_1494 (t1_153 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_159_TI_var = il2cpp_codegen_type_info_from_index(180);
s_Il2CppMethodIntialized = true;
}
{
t1_158 * L_0 = (__this->f5);
int32_t L_1 = m1_4299(L_0, NULL);
if (L_1)
{
goto IL_0011;
}
}
{
return;
}
IL_0011:
{
bool L_2 = (__this->f7);
if (!L_2)
{
goto IL_0037;
}
}
{
t1_1 * L_3 = (__this->f0);
t1_158 * L_4 = (__this->f5);
t1_18* L_5 = m1_4303(L_4, NULL);
InterfaceActionInvoker1< t1_18* >::Invoke(6 /* System.Void Mono.Xml.SmallXmlParser/IContentHandler::OnIgnorableWhitespace(System.String) */, t1_159_TI_var, L_3, L_5);
goto IL_004d;
}
IL_0037:
{
t1_1 * L_6 = (__this->f0);
t1_158 * L_7 = (__this->f5);
t1_18* L_8 = m1_4303(L_7, NULL);
InterfaceActionInvoker1< t1_18* >::Invoke(5 /* System.Void Mono.Xml.SmallXmlParser/IContentHandler::OnChars(System.String) */, t1_159_TI_var, L_6, L_8);
}
IL_004d:
{
t1_158 * L_9 = (__this->f5);
m1_4300(L_9, 0, NULL);
__this->f7 = 0;
return;
}
}
extern "C" void m1_1495 (t1_153 * __this, const MethodInfo* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
{
__this->f7 = 0;
}
IL_0007:
{
int32_t L_0 = m1_1486(__this, NULL);
V_0 = L_0;
int32_t L_1 = V_0;
V_1 = L_1;
int32_t L_2 = V_1;
if ((((int32_t)L_2) == ((int32_t)(-1))))
{
goto IL_002c;
}
}
{
int32_t L_3 = V_1;
if ((((int32_t)L_3) == ((int32_t)((int32_t)38))))
{
goto IL_002e;
}
}
{
int32_t L_4 = V_1;
if ((((int32_t)L_4) == ((int32_t)((int32_t)60))))
{
goto IL_002d;
}
}
{
goto IL_0040;
}
IL_002c:
{
return;
}
IL_002d:
{
return;
}
IL_002e:
{
m1_1487(__this, NULL);
m1_1496(__this, NULL);
goto IL_0007;
}
IL_0040:
{
t1_158 * L_5 = (__this->f5);
int32_t L_6 = m1_1487(__this, NULL);
m1_4312(L_5, (((int32_t)((uint16_t)L_6))), NULL);
goto IL_0007;
}
// Dead block : IL_0058: br IL_0007
}
extern TypeInfo* t1_153_TI_var;
extern TypeInfo* t1_89_TI_var;
extern const MethodInfo* m1_5457_MI_var;
extern Il2CppCodeGenString* _stringLiteral479;
extern Il2CppCodeGenString* _stringLiteral480;
extern Il2CppCodeGenString* _stringLiteral481;
extern Il2CppCodeGenString* _stringLiteral482;
extern Il2CppCodeGenString* _stringLiteral483;
extern Il2CppCodeGenString* _stringLiteral484;
extern "C" void m1_1496 (t1_153 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_153_TI_var = il2cpp_codegen_type_info_from_index(181);
t1_89_TI_var = il2cpp_codegen_type_info_from_index(115);
m1_5457_MI_var = il2cpp_codegen_method_info_from_index(2147483658);
_stringLiteral479 = il2cpp_codegen_string_literal_from_index(479);
_stringLiteral480 = il2cpp_codegen_string_literal_from_index(480);
_stringLiteral481 = il2cpp_codegen_string_literal_from_index(481);
_stringLiteral482 = il2cpp_codegen_string_literal_from_index(482);
_stringLiteral483 = il2cpp_codegen_string_literal_from_index(483);
_stringLiteral484 = il2cpp_codegen_string_literal_from_index(484);
s_Il2CppMethodIntialized = true;
}
t1_18* V_0 = {0};
t1_18* V_1 = {0};
t1_89 * V_2 = {0};
int32_t V_3 = 0;
{
int32_t L_0 = m1_1486(__this, NULL);
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)35)))))
{
goto IL_0020;
}
}
{
m1_1487(__this, NULL);
m1_1497(__this, NULL);
goto IL_0126;
}
IL_0020:
{
t1_18* L_1 = m1_1490(__this, NULL);
V_0 = L_1;
m1_1488(__this, ((int32_t)59), NULL);
t1_18* L_2 = V_0;
V_1 = L_2;
t1_18* L_3 = V_1;
if (!L_3)
{
goto IL_011a;
}
}
{
t1_89 * L_4 = ((t1_153_SFs*)t1_153_TI_var->static_fields)->f12;
if (L_4)
{
goto IL_008a;
}
}
{
t1_89 * L_5 = (t1_89 *)il2cpp_codegen_object_new (t1_89_TI_var);
m1_5457(L_5, 5, m1_5457_MI_var);
V_2 = L_5;
t1_89 * L_6 = V_2;
VirtActionInvoker2< t1_18*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(TKey,TValue) */, L_6, _stringLiteral479, 0);
t1_89 * L_7 = V_2;
VirtActionInvoker2< t1_18*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(TKey,TValue) */, L_7, _stringLiteral480, 1);
t1_89 * L_8 = V_2;
VirtActionInvoker2< t1_18*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(TKey,TValue) */, L_8, _stringLiteral481, 2);
t1_89 * L_9 = V_2;
VirtActionInvoker2< t1_18*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(TKey,TValue) */, L_9, _stringLiteral482, 3);
t1_89 * L_10 = V_2;
VirtActionInvoker2< t1_18*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(TKey,TValue) */, L_10, _stringLiteral483, 4);
t1_89 * L_11 = V_2;
((t1_153_SFs*)t1_153_TI_var->static_fields)->f12 = L_11;
}
IL_008a:
{
t1_89 * L_12 = ((t1_153_SFs*)t1_153_TI_var->static_fields)->f12;
t1_18* L_13 = V_1;
bool L_14 = (bool)VirtFuncInvoker2< bool, t1_18*, int32_t* >::Invoke(32 /* System.Boolean System.Collections.Generic.Dictionary`2<System.String,System.Int32>::TryGetValue(TKey,TValue&) */, L_12, L_13, (&V_3));
if (!L_14)
{
goto IL_011a;
}
}
{
int32_t L_15 = V_3;
if (L_15 == 0)
{
goto IL_00bb;
}
if (L_15 == 1)
{
goto IL_00ce;
}
if (L_15 == 2)
{
goto IL_00e1;
}
if (L_15 == 3)
{
goto IL_00f4;
}
if (L_15 == 4)
{
goto IL_0107;
}
}
{
goto IL_011a;
}
IL_00bb:
{
t1_158 * L_16 = (__this->f5);
m1_4312(L_16, ((int32_t)38), NULL);
goto IL_0126;
}
IL_00ce:
{
t1_158 * L_17 = (__this->f5);
m1_4312(L_17, ((int32_t)34), NULL);
goto IL_0126;
}
IL_00e1:
{
t1_158 * L_18 = (__this->f5);
m1_4312(L_18, ((int32_t)39), NULL);
goto IL_0126;
}
IL_00f4:
{
t1_158 * L_19 = (__this->f5);
m1_4312(L_19, ((int32_t)60), NULL);
goto IL_0126;
}
IL_0107:
{
t1_158 * L_20 = (__this->f5);
m1_4312(L_20, ((int32_t)62), NULL);
goto IL_0126;
}
IL_011a:
{
t1_43 * L_21 = m1_1479(__this, _stringLiteral484, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_21);
}
IL_0126:
{
return;
}
}
extern "C" int32_t m1_1497 (t1_153 * __this, const MethodInfo* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
V_0 = 0;
int32_t L_0 = m1_1486(__this, NULL);
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)120)))))
{
goto IL_00aa;
}
}
{
m1_1487(__this, NULL);
int32_t L_1 = m1_1486(__this, NULL);
V_1 = L_1;
goto IL_009e;
}
IL_0022:
{
int32_t L_2 = V_1;
if ((((int32_t)((int32_t)48)) > ((int32_t)L_2)))
{
goto IL_0043;
}
}
{
int32_t L_3 = V_1;
if ((((int32_t)L_3) > ((int32_t)((int32_t)57))))
{
goto IL_0043;
}
}
{
int32_t L_4 = V_0;
int32_t L_5 = V_1;
V_0 = ((int32_t)((int32_t)L_4<<(int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)4+(int32_t)L_5))-(int32_t)((int32_t)48)))&(int32_t)((int32_t)31)))));
goto IL_0090;
}
IL_0043:
{
int32_t L_6 = V_1;
if ((((int32_t)((int32_t)65)) > ((int32_t)L_6)))
{
goto IL_0067;
}
}
{
int32_t L_7 = V_1;
if ((((int32_t)L_7) > ((int32_t)((int32_t)70))))
{
goto IL_0067;
}
}
{
int32_t L_8 = V_0;
int32_t L_9 = V_1;
V_0 = ((int32_t)((int32_t)L_8<<(int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)4+(int32_t)L_9))-(int32_t)((int32_t)65)))+(int32_t)((int32_t)10)))&(int32_t)((int32_t)31)))));
goto IL_0090;
}
IL_0067:
{
int32_t L_10 = V_1;
if ((((int32_t)((int32_t)97)) > ((int32_t)L_10)))
{
goto IL_008b;
}
}
{
int32_t L_11 = V_1;
if ((((int32_t)L_11) > ((int32_t)((int32_t)102))))
{
goto IL_008b;
}
}
{
int32_t L_12 = V_0;
int32_t L_13 = V_1;
V_0 = ((int32_t)((int32_t)L_12<<(int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)4+(int32_t)L_13))-(int32_t)((int32_t)97)))+(int32_t)((int32_t)10)))&(int32_t)((int32_t)31)))));
goto IL_0090;
}
IL_008b:
{
goto IL_00a5;
}
IL_0090:
{
m1_1487(__this, NULL);
int32_t L_14 = m1_1486(__this, NULL);
V_1 = L_14;
}
IL_009e:
{
int32_t L_15 = V_1;
if ((((int32_t)L_15) >= ((int32_t)0)))
{
goto IL_0022;
}
}
IL_00a5:
{
goto IL_00f1;
}
IL_00aa:
{
int32_t L_16 = m1_1486(__this, NULL);
V_2 = L_16;
goto IL_00ea;
}
IL_00b6:
{
int32_t L_17 = V_2;
if ((((int32_t)((int32_t)48)) > ((int32_t)L_17)))
{
goto IL_00d7;
}
}
{
int32_t L_18 = V_2;
if ((((int32_t)L_18) > ((int32_t)((int32_t)57))))
{
goto IL_00d7;
}
}
{
int32_t L_19 = V_0;
int32_t L_20 = V_2;
V_0 = ((int32_t)((int32_t)L_19<<(int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)4+(int32_t)L_20))-(int32_t)((int32_t)48)))&(int32_t)((int32_t)31)))));
goto IL_00dc;
}
IL_00d7:
{
goto IL_00f1;
}
IL_00dc:
{
m1_1487(__this, NULL);
int32_t L_21 = m1_1486(__this, NULL);
V_2 = L_21;
}
IL_00ea:
{
int32_t L_22 = V_2;
if ((((int32_t)L_22) >= ((int32_t)0)))
{
goto IL_00b6;
}
}
IL_00f1:
{
int32_t L_23 = V_0;
return L_23;
}
}
extern TypeInfo* t1_18_TI_var;
extern Il2CppCodeGenString* _stringLiteral485;
extern Il2CppCodeGenString* _stringLiteral486;
extern "C" void m1_1498 (t1_153 * __this, t1_156 * p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_18_TI_var = il2cpp_codegen_type_info_from_index(11);
_stringLiteral485 = il2cpp_codegen_string_literal_from_index(485);
_stringLiteral486 = il2cpp_codegen_string_literal_from_index(486);
s_Il2CppMethodIntialized = true;
}
t1_18* V_0 = {0};
t1_18* V_1 = {0};
int32_t V_2 = 0;
{
m1_1485(__this, 1, NULL);
int32_t L_0 = m1_1486(__this, NULL);
if ((((int32_t)L_0) == ((int32_t)((int32_t)47))))
{
goto IL_0021;
}
}
{
int32_t L_1 = m1_1486(__this, NULL);
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)62)))))
{
goto IL_0022;
}
}
IL_0021:
{
return;
}
IL_0022:
{
t1_18* L_2 = m1_1490(__this, NULL);
V_0 = L_2;
m1_1483(__this, NULL);
m1_1488(__this, ((int32_t)61), NULL);
m1_1483(__this, NULL);
int32_t L_3 = m1_1487(__this, NULL);
V_2 = L_3;
int32_t L_4 = V_2;
if ((((int32_t)L_4) == ((int32_t)((int32_t)34))))
{
goto IL_0068;
}
}
{
int32_t L_5 = V_2;
if ((((int32_t)L_5) == ((int32_t)((int32_t)39))))
{
goto IL_0059;
}
}
{
goto IL_0077;
}
IL_0059:
{
t1_18* L_6 = m1_1489(__this, ((int32_t)39), 1, NULL);
V_1 = L_6;
goto IL_0083;
}
IL_0068:
{
t1_18* L_7 = m1_1489(__this, ((int32_t)34), 1, NULL);
V_1 = L_7;
goto IL_0083;
}
IL_0077:
{
t1_43 * L_8 = m1_1479(__this, _stringLiteral485, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_8);
}
IL_0083:
{
t1_18* L_9 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(t1_18_TI_var);
bool L_10 = m1_456(NULL, L_9, _stringLiteral486, NULL);
if (!L_10)
{
goto IL_009a;
}
}
{
t1_18* L_11 = V_1;
__this->f4 = L_11;
}
IL_009a:
{
t1_156 * L_12 = p0;
t1_18* L_13 = V_0;
t1_18* L_14 = V_1;
m1_1477(L_12, L_13, L_14, NULL);
return;
}
}
extern "C" void m1_1499 (t1_153 * __this, const MethodInfo* method)
{
int32_t V_0 = 0;
uint16_t V_1 = 0x0;
int32_t V_2 = 0;
int32_t V_3 = 0;
{
V_0 = 0;
}
IL_0002:
{
int32_t L_0 = m1_1486(__this, NULL);
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0015;
}
}
{
t1_43 * L_1 = m1_1480(__this, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_1);
}
IL_0015:
{
int32_t L_2 = m1_1487(__this, NULL);
V_1 = (((int32_t)((uint16_t)L_2)));
uint16_t L_3 = V_1;
if ((!(((uint32_t)L_3) == ((uint32_t)((int32_t)93)))))
{
goto IL_002e;
}
}
{
int32_t L_4 = V_0;
V_0 = ((int32_t)((int32_t)L_4+(int32_t)1));
goto IL_0091;
}
IL_002e:
{
uint16_t L_5 = V_1;
if ((!(((uint32_t)L_5) == ((uint32_t)((int32_t)62)))))
{
goto IL_0062;
}
}
{
int32_t L_6 = V_0;
if ((((int32_t)L_6) <= ((int32_t)1)))
{
goto IL_0062;
}
}
{
int32_t L_7 = V_0;
V_2 = L_7;
goto IL_0056;
}
IL_0044:
{
t1_158 * L_8 = (__this->f5);
m1_4312(L_8, ((int32_t)93), NULL);
int32_t L_9 = V_2;
V_2 = ((int32_t)((int32_t)L_9-(int32_t)1));
}
IL_0056:
{
int32_t L_10 = V_2;
if ((((int32_t)L_10) > ((int32_t)2)))
{
goto IL_0044;
}
}
{
goto IL_0096;
}
IL_0062:
{
V_3 = 0;
goto IL_007b;
}
IL_0069:
{
t1_158 * L_11 = (__this->f5);
m1_4312(L_11, ((int32_t)93), NULL);
int32_t L_12 = V_3;
V_3 = ((int32_t)((int32_t)L_12+(int32_t)1));
}
IL_007b:
{
int32_t L_13 = V_3;
int32_t L_14 = V_0;
if ((((int32_t)L_13) < ((int32_t)L_14)))
{
goto IL_0069;
}
}
{
V_0 = 0;
t1_158 * L_15 = (__this->f5);
uint16_t L_16 = V_1;
m1_4312(L_15, L_16, NULL);
}
IL_0091:
{
goto IL_0002;
}
IL_0096:
{
return;
}
}
extern Il2CppCodeGenString* _stringLiteral487;
extern "C" void m1_1500 (t1_153 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
_stringLiteral487 = il2cpp_codegen_string_literal_from_index(487);
s_Il2CppMethodIntialized = true;
}
{
m1_1488(__this, ((int32_t)45), NULL);
m1_1488(__this, ((int32_t)45), NULL);
}
IL_0010:
{
int32_t L_0 = m1_1487(__this, NULL);
if ((((int32_t)L_0) == ((int32_t)((int32_t)45))))
{
goto IL_0022;
}
}
{
goto IL_0010;
}
IL_0022:
{
int32_t L_1 = m1_1487(__this, NULL);
if ((((int32_t)L_1) == ((int32_t)((int32_t)45))))
{
goto IL_0034;
}
}
{
goto IL_0010;
}
IL_0034:
{
int32_t L_2 = m1_1487(__this, NULL);
if ((((int32_t)L_2) == ((int32_t)((int32_t)62))))
{
goto IL_004d;
}
}
{
t1_43 * L_3 = m1_1479(__this, _stringLiteral487, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_3);
}
IL_004d:
{
goto IL_0057;
}
// Dead block : IL_0052: br IL_0010
IL_0057:
{
return;
}
}
extern TypeInfo* t1_4_TI_var;
extern TypeInfo* t1_18_TI_var;
extern Il2CppCodeGenString* _stringLiteral488;
extern "C" void m1_1501 (t1_160 * __this, t1_18* p0, int32_t p1, int32_t p2, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_4_TI_var = il2cpp_codegen_type_info_from_index(8);
t1_18_TI_var = il2cpp_codegen_type_info_from_index(11);
_stringLiteral488 = il2cpp_codegen_string_literal_from_index(488);
s_Il2CppMethodIntialized = true;
}
{
t1_18* L_0 = p0;
int32_t L_1 = p1;
int32_t L_2 = L_1;
t1_1 * L_3 = Box(t1_4_TI_var, &L_2);
int32_t L_4 = p2;
int32_t L_5 = L_4;
t1_1 * L_6 = Box(t1_4_TI_var, &L_5);
IL2CPP_RUNTIME_CLASS_INIT(t1_18_TI_var);
t1_18* L_7 = m1_414(NULL, _stringLiteral488, L_0, L_3, L_6, NULL);
m1_5293(__this, L_7, NULL);
int32_t L_8 = p1;
__this->f11 = L_8;
int32_t L_9 = p2;
__this->f12 = L_9;
return;
}
}
extern "C" t1_18* m1_1502 (t1_1 * __this , const MethodInfo* method)
{
using namespace il2cpp::icalls;
typedef t1_18* (*m1_1502_ftn) ();
return ((m1_1502_ftn)mscorlib::Mono::Runtime::GetDisplayName) ();
}
extern Il2CppCodeGenString* _stringLiteral505;
extern "C" void m1_1503 (t1_164 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
_stringLiteral505 = il2cpp_codegen_string_literal_from_index(505);
s_Il2CppMethodIntialized = true;
}
{
m1_5293(__this, _stringLiteral505, NULL);
return;
}
}
extern "C" void m1_1504 (t1_164 * __this, t1_190 * p0, t1_521 p1, const MethodInfo* method)
{
{
t1_190 * L_0 = p0;
t1_521 L_1 = p1;
m1_5294(__this, L_0, L_1, NULL);
return;
}
}
extern TypeInfo* t1_165_TI_var;
extern "C" void m1_1505 (t1_165 * __this, t1_126 * p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_165_TI_var = il2cpp_codegen_type_info_from_index(182);
s_Il2CppMethodIntialized = true;
}
{
m1_0(__this, NULL);
t1_126 * L_0 = p0;
__this->f0 = L_0;
__this->f1 = (-1);
t1_126 * L_1 = p0;
int32_t L_2 = (L_1->f3);
__this->f2 = L_2;
IL2CPP_RUNTIME_CLASS_INIT(t1_165_TI_var);
t1_1 * L_3 = ((t1_165_SFs*)t1_165_TI_var->static_fields)->f4;
__this->f3 = L_3;
return;
}
}
extern TypeInfo* t1_1_TI_var;
extern TypeInfo* t1_165_TI_var;
extern "C" void m1_1506 (t1_1 * __this , const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_1_TI_var = il2cpp_codegen_type_info_from_index(0);
t1_165_TI_var = il2cpp_codegen_type_info_from_index(182);
s_Il2CppMethodIntialized = true;
}
{
t1_1 * L_0 = (t1_1 *)il2cpp_codegen_object_new (t1_1_TI_var);
m1_0(L_0, NULL);
((t1_165_SFs*)t1_165_TI_var->static_fields)->f4 = L_0;
return;
}
}
extern "C" t1_1 * m1_1507 (t1_165 * __this, const MethodInfo* method)
{
{
t1_1 * L_0 = m1_6(__this, NULL);
return L_0;
}
}
extern TypeInfo* t1_740_TI_var;
extern TypeInfo* t1_165_TI_var;
extern Il2CppCodeGenString* _stringLiteral521;
extern "C" bool m1_1508 (t1_165 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_740_TI_var = il2cpp_codegen_type_info_from_index(71);
t1_165_TI_var = il2cpp_codegen_type_info_from_index(182);
_stringLiteral521 = il2cpp_codegen_string_literal_from_index(521);
s_Il2CppMethodIntialized = true;
}
int32_t V_0 = 0;
{
int32_t L_0 = (__this->f2);
t1_126 * L_1 = (__this->f0);
int32_t L_2 = (L_1->f3);
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_0021;
}
}
{
t1_740 * L_3 = (t1_740 *)il2cpp_codegen_object_new (t1_740_TI_var);
m1_5030(L_3, _stringLiteral521, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_3);
}
IL_0021:
{
int32_t L_4 = (__this->f1);
int32_t L_5 = ((int32_t)((int32_t)L_4+(int32_t)1));
V_0 = L_5;
__this->f1 = L_5;
int32_t L_6 = V_0;
t1_126 * L_7 = (__this->f0);
int32_t L_8 = (int32_t)VirtFuncInvoker0< int32_t >::Invoke(23 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_7);
if ((((int32_t)L_6) >= ((int32_t)L_8)))
{
goto IL_005b;
}
}
{
t1_126 * L_9 = (__this->f0);
int32_t L_10 = (__this->f1);
t1_1 * L_11 = (t1_1 *)VirtFuncInvoker1< t1_1 *, int32_t >::Invoke(21 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_9, L_10);
__this->f3 = L_11;
return 1;
}
IL_005b:
{
IL2CPP_RUNTIME_CLASS_INIT(t1_165_TI_var);
t1_1 * L_12 = ((t1_165_SFs*)t1_165_TI_var->static_fields)->f4;
__this->f3 = L_12;
return 0;
}
}
extern TypeInfo* t1_165_TI_var;
extern TypeInfo* t1_740_TI_var;
extern Il2CppCodeGenString* _stringLiteral522;
extern Il2CppCodeGenString* _stringLiteral523;
extern "C" t1_1 * m1_1509 (t1_165 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_165_TI_var = il2cpp_codegen_type_info_from_index(182);
t1_740_TI_var = il2cpp_codegen_type_info_from_index(71);
_stringLiteral522 = il2cpp_codegen_string_literal_from_index(522);
_stringLiteral523 = il2cpp_codegen_string_literal_from_index(523);
s_Il2CppMethodIntialized = true;
}
{
t1_1 * L_0 = (__this->f3);
IL2CPP_RUNTIME_CLASS_INIT(t1_165_TI_var);
t1_1 * L_1 = ((t1_165_SFs*)t1_165_TI_var->static_fields)->f4;
if ((!(((t1_1*)(t1_1 *)L_0) == ((t1_1*)(t1_1 *)L_1))))
{
goto IL_0032;
}
}
{
int32_t L_2 = (__this->f1);
if ((!(((uint32_t)L_2) == ((uint32_t)(-1)))))
{
goto IL_0027;
}
}
{
t1_740 * L_3 = (t1_740 *)il2cpp_codegen_object_new (t1_740_TI_var);
m1_5030(L_3, _stringLiteral522, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_3);
}
IL_0027:
{
t1_740 * L_4 = (t1_740 *)il2cpp_codegen_object_new (t1_740_TI_var);
m1_5030(L_4, _stringLiteral523, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_4);
}
IL_0032:
{
t1_1 * L_5 = (__this->f3);
return L_5;
}
}
extern TypeInfo* t1_740_TI_var;
extern TypeInfo* t1_165_TI_var;
extern Il2CppCodeGenString* _stringLiteral521;
extern "C" void m1_1510 (t1_165 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_740_TI_var = il2cpp_codegen_type_info_from_index(71);
t1_165_TI_var = il2cpp_codegen_type_info_from_index(182);
_stringLiteral521 = il2cpp_codegen_string_literal_from_index(521);
s_Il2CppMethodIntialized = true;
}
{
int32_t L_0 = (__this->f2);
t1_126 * L_1 = (__this->f0);
int32_t L_2 = (L_1->f3);
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_0021;
}
}
{
t1_740 * L_3 = (t1_740 *)il2cpp_codegen_object_new (t1_740_TI_var);
m1_5030(L_3, _stringLiteral521, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_3);
}
IL_0021:
{
IL2CPP_RUNTIME_CLASS_INIT(t1_165_TI_var);
t1_1 * L_4 = ((t1_165_SFs*)t1_165_TI_var->static_fields)->f4;
__this->f3 = L_4;
__this->f1 = (-1);
return;
}
}
extern TypeInfo* t1_126_TI_var;
extern "C" void m1_1511 (t1_166 * __this, t1_126 * p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_126_TI_var = il2cpp_codegen_type_info_from_index(55);
s_Il2CppMethodIntialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(t1_126_TI_var);
m1_1590(__this, NULL);
t1_126 * L_0 = p0;
__this->f5 = L_0;
return;
}
}
extern "C" t1_1 * m1_1512 (t1_166 * __this, int32_t p0, const MethodInfo* method)
{
{
t1_126 * L_0 = (__this->f5);
int32_t L_1 = p0;
t1_1 * L_2 = (t1_1 *)VirtFuncInvoker1< t1_1 *, int32_t >::Invoke(21 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_0, L_1);
return L_2;
}
}
extern "C" void m1_1513 (t1_166 * __this, int32_t p0, t1_1 * p1, const MethodInfo* method)
{
{
t1_126 * L_0 = (__this->f5);
int32_t L_1 = p0;
t1_1 * L_2 = p1;
VirtActionInvoker2< int32_t, t1_1 * >::Invoke(22 /* System.Void System.Collections.ArrayList::set_Item(System.Int32,System.Object) */, L_0, L_1, L_2);
return;
}
}
extern "C" int32_t m1_1514 (t1_166 * __this, const MethodInfo* method)
{
{
t1_126 * L_0 = (__this->f5);
int32_t L_1 = (int32_t)VirtFuncInvoker0< int32_t >::Invoke(23 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_0);
return L_1;
}
}
extern "C" int32_t m1_1515 (t1_166 * __this, const MethodInfo* method)
{
{
t1_126 * L_0 = (__this->f5);
int32_t L_1 = (int32_t)VirtFuncInvoker0< int32_t >::Invoke(24 /* System.Int32 System.Collections.ArrayList::get_Capacity() */, L_0);
return L_1;
}
}
extern "C" void m1_1516 (t1_166 * __this, int32_t p0, const MethodInfo* method)
{
{
t1_126 * L_0 = (__this->f5);
int32_t L_1 = p0;
VirtActionInvoker1< int32_t >::Invoke(25 /* System.Void System.Collections.ArrayList::set_Capacity(System.Int32) */, L_0, L_1);
return;
}
}
extern "C" bool m1_1517 (t1_166 * __this, const MethodInfo* method)
{
{
t1_126 * L_0 = (__this->f5);
bool L_1 = (bool)VirtFuncInvoker0< bool >::Invoke(26 /* System.Boolean System.Collections.ArrayList::get_IsFixedSize() */, L_0);
return L_1;
}
}
extern "C" bool m1_1518 (t1_166 * __this, const MethodInfo* method)
{
{
t1_126 * L_0 = (__this->f5);
bool L_1 = (bool)VirtFuncInvoker0< bool >::Invoke(27 /* System.Boolean System.Collections.ArrayList::get_IsReadOnly() */, L_0);
return L_1;
}
}
extern "C" bool m1_1519 (t1_166 * __this, const MethodInfo* method)
{
{
t1_126 * L_0 = (__this->f5);
bool L_1 = (bool)VirtFuncInvoker0< bool >::Invoke(28 /* System.Boolean System.Collections.ArrayList::get_IsSynchronized() */, L_0);
return L_1;
}
}
extern "C" t1_1 * m1_1520 (t1_166 * __this, const MethodInfo* method)
{
{
t1_126 * L_0 = (__this->f5);
t1_1 * L_1 = (t1_1 *)VirtFuncInvoker0< t1_1 * >::Invoke(29 /* System.Object System.Collections.ArrayList::get_SyncRoot() */, L_0);
return L_1;
}
}
extern "C" int32_t m1_1521 (t1_166 * __this, t1_1 * p0, const MethodInfo* method)
{
{
t1_126 * L_0 = (__this->f5);
t1_1 * L_1 = p0;
int32_t L_2 = (int32_t)VirtFuncInvoker1< int32_t, t1_1 * >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_0, L_1);
return L_2;
}
}
extern "C" void m1_1522 (t1_166 * __this, const MethodInfo* method)
{
{
t1_126 * L_0 = (__this->f5);
VirtActionInvoker0::Invoke(31 /* System.Void System.Collections.ArrayList::Clear() */, L_0);
return;
}
}
extern "C" bool m1_1523 (t1_166 * __this, t1_1 * p0, const MethodInfo* method)
{
{
t1_126 * L_0 = (__this->f5);
t1_1 * L_1 = p0;
bool L_2 = (bool)VirtFuncInvoker1< bool, t1_1 * >::Invoke(32 /* System.Boolean System.Collections.ArrayList::Contains(System.Object) */, L_0, L_1);
return L_2;
}
}
extern "C" int32_t m1_1524 (t1_166 * __this, t1_1 * p0, const MethodInfo* method)
{
{
t1_126 * L_0 = (__this->f5);
t1_1 * L_1 = p0;
int32_t L_2 = (int32_t)VirtFuncInvoker1< int32_t, t1_1 * >::Invoke(33 /* System.Int32 System.Collections.ArrayList::IndexOf(System.Object) */, L_0, L_1);
return L_2;
}
}
extern "C" int32_t m1_1525 (t1_166 * __this, t1_1 * p0, int32_t p1, const MethodInfo* method)
{
{
t1_126 * L_0 = (__this->f5);
t1_1 * L_1 = p0;
int32_t L_2 = p1;
int32_t L_3 = (int32_t)VirtFuncInvoker2< int32_t, t1_1 *, int32_t >::Invoke(34 /* System.Int32 System.Collections.ArrayList::IndexOf(System.Object,System.Int32) */, L_0, L_1, L_2);
return L_3;
}
}
extern "C" int32_t m1_1526 (t1_166 * __this, t1_1 * p0, int32_t p1, int32_t p2, const MethodInfo* method)
{
{
t1_126 * L_0 = (__this->f5);
t1_1 * L_1 = p0;
int32_t L_2 = p1;
int32_t L_3 = p2;
int32_t L_4 = (int32_t)VirtFuncInvoker3< int32_t, t1_1 *, int32_t, int32_t >::Invoke(35 /* System.Int32 System.Collections.ArrayList::IndexOf(System.Object,System.Int32,System.Int32) */, L_0, L_1, L_2, L_3);
return L_4;
}
}
extern "C" void m1_1527 (t1_166 * __this, int32_t p0, t1_1 * p1, const MethodInfo* method)
{
{
t1_126 * L_0 = (__this->f5);
int32_t L_1 = p0;
t1_1 * L_2 = p1;
VirtActionInvoker2< int32_t, t1_1 * >::Invoke(36 /* System.Void System.Collections.ArrayList::Insert(System.Int32,System.Object) */, L_0, L_1, L_2);
return;
}
}
extern "C" void m1_1528 (t1_166 * __this, int32_t p0, t1_1 * p1, const MethodInfo* method)
{
{
t1_126 * L_0 = (__this->f5);
int32_t L_1 = p0;
t1_1 * L_2 = p1;
VirtActionInvoker2< int32_t, t1_1 * >::Invoke(37 /* System.Void System.Collections.ArrayList::InsertRange(System.Int32,System.Collections.ICollection) */, L_0, L_1, L_2);
return;
}
}
extern "C" void m1_1529 (t1_166 * __this, t1_1 * p0, const MethodInfo* method)
{
{
t1_126 * L_0 = (__this->f5);
t1_1 * L_1 = p0;
VirtActionInvoker1< t1_1 * >::Invoke(38 /* System.Void System.Collections.ArrayList::Remove(System.Object) */, L_0, L_1);
return;
}
}
extern "C" void m1_1530 (t1_166 * __this, int32_t p0, const MethodInfo* method)
{
{
t1_126 * L_0 = (__this->f5);
int32_t L_1 = p0;
VirtActionInvoker1< int32_t >::Invoke(39 /* System.Void System.Collections.ArrayList::RemoveAt(System.Int32) */, L_0, L_1);
return;
}
}
extern "C" void m1_1531 (t1_166 * __this, t1_33 * p0, const MethodInfo* method)
{
{
t1_126 * L_0 = (__this->f5);
t1_33 * L_1 = p0;
VirtActionInvoker1< t1_33 * >::Invoke(40 /* System.Void System.Collections.ArrayList::CopyTo(System.Array) */, L_0, L_1);
return;
}
}
extern "C" void m1_1532 (t1_166 * __this, t1_33 * p0, int32_t p1, const MethodInfo* method)
{
{
t1_126 * L_0 = (__this->f5);
t1_33 * L_1 = p0;
int32_t L_2 = p1;
VirtActionInvoker2< t1_33 *, int32_t >::Invoke(41 /* System.Void System.Collections.ArrayList::CopyTo(System.Array,System.Int32) */, L_0, L_1, L_2);
return;
}
}
extern "C" void m1_1533 (t1_166 * __this, int32_t p0, t1_33 * p1, int32_t p2, int32_t p3, const MethodInfo* method)
{
{
t1_126 * L_0 = (__this->f5);
int32_t L_1 = p0;
t1_33 * L_2 = p1;
int32_t L_3 = p2;
int32_t L_4 = p3;
VirtActionInvoker4< int32_t, t1_33 *, int32_t, int32_t >::Invoke(42 /* System.Void System.Collections.ArrayList::CopyTo(System.Int32,System.Array,System.Int32,System.Int32) */, L_0, L_1, L_2, L_3, L_4);
return;
}
}
extern "C" t1_1 * m1_1534 (t1_166 * __this, const MethodInfo* method)
{
{
t1_126 * L_0 = (__this->f5);
t1_1 * L_1 = (t1_1 *)VirtFuncInvoker0< t1_1 * >::Invoke(43 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_0);
return L_1;
}
}
extern "C" void m1_1535 (t1_166 * __this, t1_1 * p0, const MethodInfo* method)
{
{
t1_126 * L_0 = (__this->f5);
t1_1 * L_1 = p0;
VirtActionInvoker1< t1_1 * >::Invoke(44 /* System.Void System.Collections.ArrayList::AddRange(System.Collections.ICollection) */, L_0, L_1);
return;
}
}
extern "C" t1_1 * m1_1536 (t1_166 * __this, const MethodInfo* method)
{
{
t1_126 * L_0 = (__this->f5);
t1_1 * L_1 = (t1_1 *)VirtFuncInvoker0< t1_1 * >::Invoke(49 /* System.Object System.Collections.ArrayList::Clone() */, L_0);
return L_1;
}
}
extern "C" void m1_1537 (t1_166 * __this, const MethodInfo* method)
{
{
t1_126 * L_0 = (__this->f5);
VirtActionInvoker0::Invoke(45 /* System.Void System.Collections.ArrayList::Sort() */, L_0);
return;
}
}
extern "C" void m1_1538 (t1_166 * __this, t1_1 * p0, const MethodInfo* method)
{
{
t1_126 * L_0 = (__this->f5);
t1_1 * L_1 = p0;
VirtActionInvoker1< t1_1 * >::Invoke(46 /* System.Void System.Collections.ArrayList::Sort(System.Collections.IComparer) */, L_0, L_1);
return;
}
}
extern "C" t1_170* m1_1539 (t1_166 * __this, const MethodInfo* method)
{
{
t1_126 * L_0 = (__this->f5);
t1_170* L_1 = (t1_170*)VirtFuncInvoker0< t1_170* >::Invoke(47 /* System.Object[] System.Collections.ArrayList::ToArray() */, L_0);
return L_1;
}
}
extern "C" t1_33 * m1_1540 (t1_166 * __this, t1_37 * p0, const MethodInfo* method)
{
{
t1_126 * L_0 = (__this->f5);
t1_37 * L_1 = p0;
t1_33 * L_2 = (t1_33 *)VirtFuncInvoker1< t1_33 *, t1_37 * >::Invoke(48 /* System.Array System.Collections.ArrayList::ToArray(System.Type) */, L_0, L_1);
return L_2;
}
}
extern "C" void m1_1541 (t1_167 * __this, t1_126 * p0, const MethodInfo* method)
{
{
t1_126 * L_0 = p0;
m1_1511(__this, L_0, NULL);
t1_126 * L_1 = p0;
t1_1 * L_2 = (t1_1 *)VirtFuncInvoker0< t1_1 * >::Invoke(29 /* System.Object System.Collections.ArrayList::get_SyncRoot() */, L_1);
__this->f6 = L_2;
return;
}
}
extern "C" t1_1 * m1_1542 (t1_167 * __this, int32_t p0, const MethodInfo* method)
{
t1_1 * V_0 = {0};
t1_1 * V_1 = {0};
t1_43 * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
t1_43 * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
t1_1 * L_0 = (__this->f6);
V_0 = L_0;
t1_1 * L_1 = V_0;
m1_4445(NULL, L_1, NULL);
}
IL_000d:
try
{ // begin try (depth: 1)
{
t1_126 * L_2 = (((t1_166 *)__this)->f5);
int32_t L_3 = p0;
t1_1 * L_4 = (t1_1 *)VirtFuncInvoker1< t1_1 *, int32_t >::Invoke(21 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_2, L_3);
V_1 = L_4;
IL2CPP_LEAVE(0x2B, FINALLY_0024);
}
IL_001f:
{
; // IL_001f: leave IL_002b
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (t1_43 *)e.ex;
goto FINALLY_0024;
}
FINALLY_0024:
{ // begin finally (depth: 1)
t1_1 * L_5 = V_0;
m1_4446(NULL, L_5, NULL);
IL2CPP_END_FINALLY(36)
} // end finally (depth: 1)
IL2CPP_CLEANUP(36)
{
IL2CPP_JUMP_TBL(0x2B, IL_002b)
IL2CPP_RETHROW_IF_UNHANDLED(t1_43 *)
}
IL_002b:
{
t1_1 * L_6 = V_1;
return L_6;
}
}
extern "C" void m1_1543 (t1_167 * __this, int32_t p0, t1_1 * p1, const MethodInfo* method)
{
t1_1 * V_0 = {0};
t1_43 * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
t1_43 * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
t1_1 * L_0 = (__this->f6);
V_0 = L_0;
t1_1 * L_1 = V_0;
m1_4445(NULL, L_1, NULL);
}
IL_000d:
try
{ // begin try (depth: 1)
t1_126 * L_2 = (((t1_166 *)__this)->f5);
int32_t L_3 = p0;
t1_1 * L_4 = p1;
VirtActionInvoker2< int32_t, t1_1 * >::Invoke(22 /* System.Void System.Collections.ArrayList::set_Item(System.Int32,System.Object) */, L_2, L_3, L_4);
IL2CPP_LEAVE(0x26, FINALLY_001f);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (t1_43 *)e.ex;
goto FINALLY_001f;
}
FINALLY_001f:
{ // begin finally (depth: 1)
t1_1 * L_5 = V_0;
m1_4446(NULL, L_5, NULL);
IL2CPP_END_FINALLY(31)
} // end finally (depth: 1)
IL2CPP_CLEANUP(31)
{
IL2CPP_JUMP_TBL(0x26, IL_0026)
IL2CPP_RETHROW_IF_UNHANDLED(t1_43 *)
}
IL_0026:
{
return;
}
}
extern "C" int32_t m1_1544 (t1_167 * __this, const MethodInfo* method)
{
t1_1 * V_0 = {0};
int32_t V_1 = 0;
t1_43 * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
t1_43 * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
t1_1 * L_0 = (__this->f6);
V_0 = L_0;
t1_1 * L_1 = V_0;
m1_4445(NULL, L_1, NULL);
}
IL_000d:
try
{ // begin try (depth: 1)
{
t1_126 * L_2 = (((t1_166 *)__this)->f5);
int32_t L_3 = (int32_t)VirtFuncInvoker0< int32_t >::Invoke(23 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_2);
V_1 = L_3;
IL2CPP_LEAVE(0x2A, FINALLY_0023);
}
IL_001e:
{
; // IL_001e: leave IL_002a
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (t1_43 *)e.ex;
goto FINALLY_0023;
}
FINALLY_0023:
{ // begin finally (depth: 1)
t1_1 * L_4 = V_0;
m1_4446(NULL, L_4, NULL);
IL2CPP_END_FINALLY(35)
} // end finally (depth: 1)
IL2CPP_CLEANUP(35)
{
IL2CPP_JUMP_TBL(0x2A, IL_002a)
IL2CPP_RETHROW_IF_UNHANDLED(t1_43 *)
}
IL_002a:
{
int32_t L_5 = V_1;
return L_5;
}
}
extern "C" int32_t m1_1545 (t1_167 * __this, const MethodInfo* method)
{
t1_1 * V_0 = {0};
int32_t V_1 = 0;
t1_43 * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
t1_43 * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
t1_1 * L_0 = (__this->f6);
V_0 = L_0;
t1_1 * L_1 = V_0;
m1_4445(NULL, L_1, NULL);
}
IL_000d:
try
{ // begin try (depth: 1)
{
t1_126 * L_2 = (((t1_166 *)__this)->f5);
int32_t L_3 = (int32_t)VirtFuncInvoker0< int32_t >::Invoke(24 /* System.Int32 System.Collections.ArrayList::get_Capacity() */, L_2);
V_1 = L_3;
IL2CPP_LEAVE(0x2A, FINALLY_0023);
}
IL_001e:
{
; // IL_001e: leave IL_002a
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (t1_43 *)e.ex;
goto FINALLY_0023;
}
FINALLY_0023:
{ // begin finally (depth: 1)
t1_1 * L_4 = V_0;
m1_4446(NULL, L_4, NULL);
IL2CPP_END_FINALLY(35)
} // end finally (depth: 1)
IL2CPP_CLEANUP(35)
{
IL2CPP_JUMP_TBL(0x2A, IL_002a)
IL2CPP_RETHROW_IF_UNHANDLED(t1_43 *)
}
IL_002a:
{
int32_t L_5 = V_1;
return L_5;
}
}
extern "C" void m1_1546 (t1_167 * __this, int32_t p0, const MethodInfo* method)
{
t1_1 * V_0 = {0};
t1_43 * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
t1_43 * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
t1_1 * L_0 = (__this->f6);
V_0 = L_0;
t1_1 * L_1 = V_0;
m1_4445(NULL, L_1, NULL);
}
IL_000d:
try
{ // begin try (depth: 1)
t1_126 * L_2 = (((t1_166 *)__this)->f5);
int32_t L_3 = p0;
VirtActionInvoker1< int32_t >::Invoke(25 /* System.Void System.Collections.ArrayList::set_Capacity(System.Int32) */, L_2, L_3);
IL2CPP_LEAVE(0x25, FINALLY_001e);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (t1_43 *)e.ex;
goto FINALLY_001e;
}
FINALLY_001e:
{ // begin finally (depth: 1)
t1_1 * L_4 = V_0;
m1_4446(NULL, L_4, NULL);
IL2CPP_END_FINALLY(30)
} // end finally (depth: 1)
IL2CPP_CLEANUP(30)
{
IL2CPP_JUMP_TBL(0x25, IL_0025)
IL2CPP_RETHROW_IF_UNHANDLED(t1_43 *)
}
IL_0025:
{
return;
}
}
extern "C" bool m1_1547 (t1_167 * __this, const MethodInfo* method)
{
t1_1 * V_0 = {0};
bool V_1 = false;
t1_43 * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
t1_43 * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
t1_1 * L_0 = (__this->f6);
V_0 = L_0;
t1_1 * L_1 = V_0;
m1_4445(NULL, L_1, NULL);
}
IL_000d:
try
{ // begin try (depth: 1)
{
t1_126 * L_2 = (((t1_166 *)__this)->f5);
bool L_3 = (bool)VirtFuncInvoker0< bool >::Invoke(26 /* System.Boolean System.Collections.ArrayList::get_IsFixedSize() */, L_2);
V_1 = L_3;
IL2CPP_LEAVE(0x2A, FINALLY_0023);
}
IL_001e:
{
; // IL_001e: leave IL_002a
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (t1_43 *)e.ex;
goto FINALLY_0023;
}
FINALLY_0023:
{ // begin finally (depth: 1)
t1_1 * L_4 = V_0;
m1_4446(NULL, L_4, NULL);
IL2CPP_END_FINALLY(35)
} // end finally (depth: 1)
IL2CPP_CLEANUP(35)
{
IL2CPP_JUMP_TBL(0x2A, IL_002a)
IL2CPP_RETHROW_IF_UNHANDLED(t1_43 *)
}
IL_002a:
{
bool L_5 = V_1;
return L_5;
}
}
extern "C" bool m1_1548 (t1_167 * __this, const MethodInfo* method)
{
t1_1 * V_0 = {0};
bool V_1 = false;
t1_43 * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
t1_43 * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
t1_1 * L_0 = (__this->f6);
V_0 = L_0;
t1_1 * L_1 = V_0;
m1_4445(NULL, L_1, NULL);
}
IL_000d:
try
{ // begin try (depth: 1)
{
t1_126 * L_2 = (((t1_166 *)__this)->f5);
bool L_3 = (bool)VirtFuncInvoker0< bool >::Invoke(27 /* System.Boolean System.Collections.ArrayList::get_IsReadOnly() */, L_2);
V_1 = L_3;
IL2CPP_LEAVE(0x2A, FINALLY_0023);
}
IL_001e:
{
; // IL_001e: leave IL_002a
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (t1_43 *)e.ex;
goto FINALLY_0023;
}
FINALLY_0023:
{ // begin finally (depth: 1)
t1_1 * L_4 = V_0;
m1_4446(NULL, L_4, NULL);
IL2CPP_END_FINALLY(35)
} // end finally (depth: 1)
IL2CPP_CLEANUP(35)
{
IL2CPP_JUMP_TBL(0x2A, IL_002a)
IL2CPP_RETHROW_IF_UNHANDLED(t1_43 *)
}
IL_002a:
{
bool L_5 = V_1;
return L_5;
}
}
extern "C" bool m1_1549 (t1_167 * __this, const MethodInfo* method)
{
{
return 1;
}
}
extern "C" t1_1 * m1_1550 (t1_167 * __this, const MethodInfo* method)
{
{
t1_1 * L_0 = (__this->f6);
return L_0;
}
}
extern "C" int32_t m1_1551 (t1_167 * __this, t1_1 * p0, const MethodInfo* method)
{
t1_1 * V_0 = {0};
int32_t V_1 = 0;
t1_43 * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
t1_43 * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
t1_1 * L_0 = (__this->f6);
V_0 = L_0;
t1_1 * L_1 = V_0;
m1_4445(NULL, L_1, NULL);
}
IL_000d:
try
{ // begin try (depth: 1)
{
t1_126 * L_2 = (((t1_166 *)__this)->f5);
t1_1 * L_3 = p0;
int32_t L_4 = (int32_t)VirtFuncInvoker1< int32_t, t1_1 * >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_2, L_3);
V_1 = L_4;
IL2CPP_LEAVE(0x2B, FINALLY_0024);
}
IL_001f:
{
; // IL_001f: leave IL_002b
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (t1_43 *)e.ex;
goto FINALLY_0024;
}
FINALLY_0024:
{ // begin finally (depth: 1)
t1_1 * L_5 = V_0;
m1_4446(NULL, L_5, NULL);
IL2CPP_END_FINALLY(36)
} // end finally (depth: 1)
IL2CPP_CLEANUP(36)
{
IL2CPP_JUMP_TBL(0x2B, IL_002b)
IL2CPP_RETHROW_IF_UNHANDLED(t1_43 *)
}
IL_002b:
{
int32_t L_6 = V_1;
return L_6;
}
}
extern "C" void m1_1552 (t1_167 * __this, const MethodInfo* method)
{
t1_1 * V_0 = {0};
t1_43 * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
t1_43 * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
t1_1 * L_0 = (__this->f6);
V_0 = L_0;
t1_1 * L_1 = V_0;
m1_4445(NULL, L_1, NULL);
}
IL_000d:
try
{ // begin try (depth: 1)
t1_126 * L_2 = (((t1_166 *)__this)->f5);
VirtActionInvoker0::Invoke(31 /* System.Void System.Collections.ArrayList::Clear() */, L_2);
IL2CPP_LEAVE(0x24, FINALLY_001d);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (t1_43 *)e.ex;
goto FINALLY_001d;
}
FINALLY_001d:
{ // begin finally (depth: 1)
t1_1 * L_3 = V_0;
m1_4446(NULL, L_3, NULL);
IL2CPP_END_FINALLY(29)
} // end finally (depth: 1)
IL2CPP_CLEANUP(29)
{
IL2CPP_JUMP_TBL(0x24, IL_0024)
IL2CPP_RETHROW_IF_UNHANDLED(t1_43 *)
}
IL_0024:
{
return;
}
}
extern "C" bool m1_1553 (t1_167 * __this, t1_1 * p0, const MethodInfo* method)
{
t1_1 * V_0 = {0};
bool V_1 = false;
t1_43 * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
t1_43 * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
t1_1 * L_0 = (__this->f6);
V_0 = L_0;
t1_1 * L_1 = V_0;
m1_4445(NULL, L_1, NULL);
}
IL_000d:
try
{ // begin try (depth: 1)
{
t1_126 * L_2 = (((t1_166 *)__this)->f5);
t1_1 * L_3 = p0;
bool L_4 = (bool)VirtFuncInvoker1< bool, t1_1 * >::Invoke(32 /* System.Boolean System.Collections.ArrayList::Contains(System.Object) */, L_2, L_3);
V_1 = L_4;
IL2CPP_LEAVE(0x2B, FINALLY_0024);
}
IL_001f:
{
; // IL_001f: leave IL_002b
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (t1_43 *)e.ex;
goto FINALLY_0024;
}
FINALLY_0024:
{ // begin finally (depth: 1)
t1_1 * L_5 = V_0;
m1_4446(NULL, L_5, NULL);
IL2CPP_END_FINALLY(36)
} // end finally (depth: 1)
IL2CPP_CLEANUP(36)
{
IL2CPP_JUMP_TBL(0x2B, IL_002b)
IL2CPP_RETHROW_IF_UNHANDLED(t1_43 *)
}
IL_002b:
{
bool L_6 = V_1;
return L_6;
}
}
extern "C" int32_t m1_1554 (t1_167 * __this, t1_1 * p0, const MethodInfo* method)
{
t1_1 * V_0 = {0};
int32_t V_1 = 0;
t1_43 * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
t1_43 * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
t1_1 * L_0 = (__this->f6);
V_0 = L_0;
t1_1 * L_1 = V_0;
m1_4445(NULL, L_1, NULL);
}
IL_000d:
try
{ // begin try (depth: 1)
{
t1_126 * L_2 = (((t1_166 *)__this)->f5);
t1_1 * L_3 = p0;
int32_t L_4 = (int32_t)VirtFuncInvoker1< int32_t, t1_1 * >::Invoke(33 /* System.Int32 System.Collections.ArrayList::IndexOf(System.Object) */, L_2, L_3);
V_1 = L_4;
IL2CPP_LEAVE(0x2B, FINALLY_0024);
}
IL_001f:
{
; // IL_001f: leave IL_002b
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (t1_43 *)e.ex;
goto FINALLY_0024;
}
FINALLY_0024:
{ // begin finally (depth: 1)
t1_1 * L_5 = V_0;
m1_4446(NULL, L_5, NULL);
IL2CPP_END_FINALLY(36)
} // end finally (depth: 1)
IL2CPP_CLEANUP(36)
{
IL2CPP_JUMP_TBL(0x2B, IL_002b)
IL2CPP_RETHROW_IF_UNHANDLED(t1_43 *)
}
IL_002b:
{
int32_t L_6 = V_1;
return L_6;
}
}
extern "C" int32_t m1_1555 (t1_167 * __this, t1_1 * p0, int32_t p1, const MethodInfo* method)
{
t1_1 * V_0 = {0};
int32_t V_1 = 0;
t1_43 * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
t1_43 * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
t1_1 * L_0 = (__this->f6);
V_0 = L_0;
t1_1 * L_1 = V_0;
m1_4445(NULL, L_1, NULL);
}
IL_000d:
try
{ // begin try (depth: 1)
{
t1_126 * L_2 = (((t1_166 *)__this)->f5);
t1_1 * L_3 = p0;
int32_t L_4 = p1;
int32_t L_5 = (int32_t)VirtFuncInvoker2< int32_t, t1_1 *, int32_t >::Invoke(34 /* System.Int32 System.Collections.ArrayList::IndexOf(System.Object,System.Int32) */, L_2, L_3, L_4);
V_1 = L_5;
IL2CPP_LEAVE(0x2C, FINALLY_0025);
}
IL_0020:
{
; // IL_0020: leave IL_002c
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (t1_43 *)e.ex;
goto FINALLY_0025;
}
FINALLY_0025:
{ // begin finally (depth: 1)
t1_1 * L_6 = V_0;
m1_4446(NULL, L_6, NULL);
IL2CPP_END_FINALLY(37)
} // end finally (depth: 1)
IL2CPP_CLEANUP(37)
{
IL2CPP_JUMP_TBL(0x2C, IL_002c)
IL2CPP_RETHROW_IF_UNHANDLED(t1_43 *)
}
IL_002c:
{
int32_t L_7 = V_1;
return L_7;
}
}
extern "C" int32_t m1_1556 (t1_167 * __this, t1_1 * p0, int32_t p1, int32_t p2, const MethodInfo* method)
{
t1_1 * V_0 = {0};
int32_t V_1 = 0;
t1_43 * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
t1_43 * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
t1_1 * L_0 = (__this->f6);
V_0 = L_0;
t1_1 * L_1 = V_0;
m1_4445(NULL, L_1, NULL);
}
IL_000d:
try
{ // begin try (depth: 1)
{
t1_126 * L_2 = (((t1_166 *)__this)->f5);
t1_1 * L_3 = p0;
int32_t L_4 = p1;
int32_t L_5 = p2;
int32_t L_6 = (int32_t)VirtFuncInvoker3< int32_t, t1_1 *, int32_t, int32_t >::Invoke(35 /* System.Int32 System.Collections.ArrayList::IndexOf(System.Object,System.Int32,System.Int32) */, L_2, L_3, L_4, L_5);
V_1 = L_6;
IL2CPP_LEAVE(0x2D, FINALLY_0026);
}
IL_0021:
{
; // IL_0021: leave IL_002d
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (t1_43 *)e.ex;
goto FINALLY_0026;
}
FINALLY_0026:
{ // begin finally (depth: 1)
t1_1 * L_7 = V_0;
m1_4446(NULL, L_7, NULL);
IL2CPP_END_FINALLY(38)
} // end finally (depth: 1)
IL2CPP_CLEANUP(38)
{
IL2CPP_JUMP_TBL(0x2D, IL_002d)
IL2CPP_RETHROW_IF_UNHANDLED(t1_43 *)
}
IL_002d:
{
int32_t L_8 = V_1;
return L_8;
}
}
extern "C" void m1_1557 (t1_167 * __this, int32_t p0, t1_1 * p1, const MethodInfo* method)
{
t1_1 * V_0 = {0};
t1_43 * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
t1_43 * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
t1_1 * L_0 = (__this->f6);
V_0 = L_0;
t1_1 * L_1 = V_0;
m1_4445(NULL, L_1, NULL);
}
IL_000d:
try
{ // begin try (depth: 1)
t1_126 * L_2 = (((t1_166 *)__this)->f5);
int32_t L_3 = p0;
t1_1 * L_4 = p1;
VirtActionInvoker2< int32_t, t1_1 * >::Invoke(36 /* System.Void System.Collections.ArrayList::Insert(System.Int32,System.Object) */, L_2, L_3, L_4);
IL2CPP_LEAVE(0x26, FINALLY_001f);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (t1_43 *)e.ex;
goto FINALLY_001f;
}
FINALLY_001f:
{ // begin finally (depth: 1)
t1_1 * L_5 = V_0;
m1_4446(NULL, L_5, NULL);
IL2CPP_END_FINALLY(31)
} // end finally (depth: 1)
IL2CPP_CLEANUP(31)
{
IL2CPP_JUMP_TBL(0x26, IL_0026)
IL2CPP_RETHROW_IF_UNHANDLED(t1_43 *)
}
IL_0026:
{
return;
}
}
extern "C" void m1_1558 (t1_167 * __this, int32_t p0, t1_1 * p1, const MethodInfo* method)
{
t1_1 * V_0 = {0};
t1_43 * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
t1_43 * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
t1_1 * L_0 = (__this->f6);
V_0 = L_0;
t1_1 * L_1 = V_0;
m1_4445(NULL, L_1, NULL);
}
IL_000d:
try
{ // begin try (depth: 1)
t1_126 * L_2 = (((t1_166 *)__this)->f5);
int32_t L_3 = p0;
t1_1 * L_4 = p1;
VirtActionInvoker2< int32_t, t1_1 * >::Invoke(37 /* System.Void System.Collections.ArrayList::InsertRange(System.Int32,System.Collections.ICollection) */, L_2, L_3, L_4);
IL2CPP_LEAVE(0x26, FINALLY_001f);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (t1_43 *)e.ex;
goto FINALLY_001f;
}
FINALLY_001f:
{ // begin finally (depth: 1)
t1_1 * L_5 = V_0;
m1_4446(NULL, L_5, NULL);
IL2CPP_END_FINALLY(31)
} // end finally (depth: 1)
IL2CPP_CLEANUP(31)
{
IL2CPP_JUMP_TBL(0x26, IL_0026)
IL2CPP_RETHROW_IF_UNHANDLED(t1_43 *)
}
IL_0026:
{
return;
}
}
extern "C" void m1_1559 (t1_167 * __this, t1_1 * p0, const MethodInfo* method)
{
t1_1 * V_0 = {0};
t1_43 * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
t1_43 * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
t1_1 * L_0 = (__this->f6);
V_0 = L_0;
t1_1 * L_1 = V_0;
m1_4445(NULL, L_1, NULL);
}
IL_000d:
try
{ // begin try (depth: 1)
t1_126 * L_2 = (((t1_166 *)__this)->f5);
t1_1 * L_3 = p0;
VirtActionInvoker1< t1_1 * >::Invoke(38 /* System.Void System.Collections.ArrayList::Remove(System.Object) */, L_2, L_3);
IL2CPP_LEAVE(0x25, FINALLY_001e);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (t1_43 *)e.ex;
goto FINALLY_001e;
}
FINALLY_001e:
{ // begin finally (depth: 1)
t1_1 * L_4 = V_0;
m1_4446(NULL, L_4, NULL);
IL2CPP_END_FINALLY(30)
} // end finally (depth: 1)
IL2CPP_CLEANUP(30)
{
IL2CPP_JUMP_TBL(0x25, IL_0025)
IL2CPP_RETHROW_IF_UNHANDLED(t1_43 *)
}
IL_0025:
{
return;
}
}
extern "C" void m1_1560 (t1_167 * __this, int32_t p0, const MethodInfo* method)
{
t1_1 * V_0 = {0};
t1_43 * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
t1_43 * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
t1_1 * L_0 = (__this->f6);
V_0 = L_0;
t1_1 * L_1 = V_0;
m1_4445(NULL, L_1, NULL);
}
IL_000d:
try
{ // begin try (depth: 1)
t1_126 * L_2 = (((t1_166 *)__this)->f5);
int32_t L_3 = p0;
VirtActionInvoker1< int32_t >::Invoke(39 /* System.Void System.Collections.ArrayList::RemoveAt(System.Int32) */, L_2, L_3);
IL2CPP_LEAVE(0x25, FINALLY_001e);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (t1_43 *)e.ex;
goto FINALLY_001e;
}
FINALLY_001e:
{ // begin finally (depth: 1)
t1_1 * L_4 = V_0;
m1_4446(NULL, L_4, NULL);
IL2CPP_END_FINALLY(30)
} // end finally (depth: 1)
IL2CPP_CLEANUP(30)
{
IL2CPP_JUMP_TBL(0x25, IL_0025)
IL2CPP_RETHROW_IF_UNHANDLED(t1_43 *)
}
IL_0025:
{
return;
}
}
extern "C" void m1_1561 (t1_167 * __this, t1_33 * p0, const MethodInfo* method)
{
t1_1 * V_0 = {0};
t1_43 * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
t1_43 * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
t1_1 * L_0 = (__this->f6);
V_0 = L_0;
t1_1 * L_1 = V_0;
m1_4445(NULL, L_1, NULL);
}
IL_000d:
try
{ // begin try (depth: 1)
t1_126 * L_2 = (((t1_166 *)__this)->f5);
t1_33 * L_3 = p0;
VirtActionInvoker1< t1_33 * >::Invoke(40 /* System.Void System.Collections.ArrayList::CopyTo(System.Array) */, L_2, L_3);
IL2CPP_LEAVE(0x25, FINALLY_001e);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (t1_43 *)e.ex;
goto FINALLY_001e;
}
FINALLY_001e:
{ // begin finally (depth: 1)
t1_1 * L_4 = V_0;
m1_4446(NULL, L_4, NULL);
IL2CPP_END_FINALLY(30)
} // end finally (depth: 1)
IL2CPP_CLEANUP(30)
{
IL2CPP_JUMP_TBL(0x25, IL_0025)
IL2CPP_RETHROW_IF_UNHANDLED(t1_43 *)
}
IL_0025:
{
return;
}
}
extern "C" void m1_1562 (t1_167 * __this, t1_33 * p0, int32_t p1, const MethodInfo* method)
{
t1_1 * V_0 = {0};
t1_43 * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
t1_43 * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
t1_1 * L_0 = (__this->f6);
V_0 = L_0;
t1_1 * L_1 = V_0;
m1_4445(NULL, L_1, NULL);
}
IL_000d:
try
{ // begin try (depth: 1)
t1_126 * L_2 = (((t1_166 *)__this)->f5);
t1_33 * L_3 = p0;
int32_t L_4 = p1;
VirtActionInvoker2< t1_33 *, int32_t >::Invoke(41 /* System.Void System.Collections.ArrayList::CopyTo(System.Array,System.Int32) */, L_2, L_3, L_4);
IL2CPP_LEAVE(0x26, FINALLY_001f);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (t1_43 *)e.ex;
goto FINALLY_001f;
}
FINALLY_001f:
{ // begin finally (depth: 1)
t1_1 * L_5 = V_0;
m1_4446(NULL, L_5, NULL);
IL2CPP_END_FINALLY(31)
} // end finally (depth: 1)
IL2CPP_CLEANUP(31)
{
IL2CPP_JUMP_TBL(0x26, IL_0026)
IL2CPP_RETHROW_IF_UNHANDLED(t1_43 *)
}
IL_0026:
{
return;
}
}
extern "C" void m1_1563 (t1_167 * __this, int32_t p0, t1_33 * p1, int32_t p2, int32_t p3, const MethodInfo* method)
{
t1_1 * V_0 = {0};
t1_43 * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
t1_43 * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
t1_1 * L_0 = (__this->f6);
V_0 = L_0;
t1_1 * L_1 = V_0;
m1_4445(NULL, L_1, NULL);
}
IL_000d:
try
{ // begin try (depth: 1)
t1_126 * L_2 = (((t1_166 *)__this)->f5);
int32_t L_3 = p0;
t1_33 * L_4 = p1;
int32_t L_5 = p2;
int32_t L_6 = p3;
VirtActionInvoker4< int32_t, t1_33 *, int32_t, int32_t >::Invoke(42 /* System.Void System.Collections.ArrayList::CopyTo(System.Int32,System.Array,System.Int32,System.Int32) */, L_2, L_3, L_4, L_5, L_6);
IL2CPP_LEAVE(0x29, FINALLY_0022);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (t1_43 *)e.ex;
goto FINALLY_0022;
}
FINALLY_0022:
{ // begin finally (depth: 1)
t1_1 * L_7 = V_0;
m1_4446(NULL, L_7, NULL);
IL2CPP_END_FINALLY(34)
} // end finally (depth: 1)
IL2CPP_CLEANUP(34)
{
IL2CPP_JUMP_TBL(0x29, IL_0029)
IL2CPP_RETHROW_IF_UNHANDLED(t1_43 *)
}
IL_0029:
{
return;
}
}
extern "C" t1_1 * m1_1564 (t1_167 * __this, const MethodInfo* method)
{
t1_1 * V_0 = {0};
t1_1 * V_1 = {0};
t1_43 * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
t1_43 * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
t1_1 * L_0 = (__this->f6);
V_0 = L_0;
t1_1 * L_1 = V_0;
m1_4445(NULL, L_1, NULL);
}
IL_000d:
try
{ // begin try (depth: 1)
{
t1_126 * L_2 = (((t1_166 *)__this)->f5);
t1_1 * L_3 = (t1_1 *)VirtFuncInvoker0< t1_1 * >::Invoke(43 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_2);
V_1 = L_3;
IL2CPP_LEAVE(0x2A, FINALLY_0023);
}
IL_001e:
{
; // IL_001e: leave IL_002a
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (t1_43 *)e.ex;
goto FINALLY_0023;
}
FINALLY_0023:
{ // begin finally (depth: 1)
t1_1 * L_4 = V_0;
m1_4446(NULL, L_4, NULL);
IL2CPP_END_FINALLY(35)
} // end finally (depth: 1)
IL2CPP_CLEANUP(35)
{
IL2CPP_JUMP_TBL(0x2A, IL_002a)
IL2CPP_RETHROW_IF_UNHANDLED(t1_43 *)
}
IL_002a:
{
t1_1 * L_5 = V_1;
return L_5;
}
}
extern "C" void m1_1565 (t1_167 * __this, t1_1 * p0, const MethodInfo* method)
{
t1_1 * V_0 = {0};
t1_43 * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
t1_43 * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
t1_1 * L_0 = (__this->f6);
V_0 = L_0;
t1_1 * L_1 = V_0;
m1_4445(NULL, L_1, NULL);
}
IL_000d:
try
{ // begin try (depth: 1)
t1_126 * L_2 = (((t1_166 *)__this)->f5);
t1_1 * L_3 = p0;
VirtActionInvoker1< t1_1 * >::Invoke(44 /* System.Void System.Collections.ArrayList::AddRange(System.Collections.ICollection) */, L_2, L_3);
IL2CPP_LEAVE(0x25, FINALLY_001e);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (t1_43 *)e.ex;
goto FINALLY_001e;
}
FINALLY_001e:
{ // begin finally (depth: 1)
t1_1 * L_4 = V_0;
m1_4446(NULL, L_4, NULL);
IL2CPP_END_FINALLY(30)
} // end finally (depth: 1)
IL2CPP_CLEANUP(30)
{
IL2CPP_JUMP_TBL(0x25, IL_0025)
IL2CPP_RETHROW_IF_UNHANDLED(t1_43 *)
}
IL_0025:
{
return;
}
}
extern "C" t1_1 * m1_1566 (t1_167 * __this, const MethodInfo* method)
{
t1_1 * V_0 = {0};
t1_1 * V_1 = {0};
t1_43 * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
t1_43 * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
t1_1 * L_0 = (__this->f6);
V_0 = L_0;
t1_1 * L_1 = V_0;
m1_4445(NULL, L_1, NULL);
}
IL_000d:
try
{ // begin try (depth: 1)
{
t1_126 * L_2 = (((t1_166 *)__this)->f5);
t1_1 * L_3 = (t1_1 *)VirtFuncInvoker0< t1_1 * >::Invoke(49 /* System.Object System.Collections.ArrayList::Clone() */, L_2);
V_1 = L_3;
IL2CPP_LEAVE(0x2A, FINALLY_0023);
}
IL_001e:
{
; // IL_001e: leave IL_002a
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (t1_43 *)e.ex;
goto FINALLY_0023;
}
FINALLY_0023:
{ // begin finally (depth: 1)
t1_1 * L_4 = V_0;
m1_4446(NULL, L_4, NULL);
IL2CPP_END_FINALLY(35)
} // end finally (depth: 1)
IL2CPP_CLEANUP(35)
{
IL2CPP_JUMP_TBL(0x2A, IL_002a)
IL2CPP_RETHROW_IF_UNHANDLED(t1_43 *)
}
IL_002a:
{
t1_1 * L_5 = V_1;
return L_5;
}
}
extern "C" void m1_1567 (t1_167 * __this, const MethodInfo* method)
{
t1_1 * V_0 = {0};
t1_43 * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
t1_43 * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
t1_1 * L_0 = (__this->f6);
V_0 = L_0;
t1_1 * L_1 = V_0;
m1_4445(NULL, L_1, NULL);
}
IL_000d:
try
{ // begin try (depth: 1)
t1_126 * L_2 = (((t1_166 *)__this)->f5);
VirtActionInvoker0::Invoke(45 /* System.Void System.Collections.ArrayList::Sort() */, L_2);
IL2CPP_LEAVE(0x24, FINALLY_001d);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (t1_43 *)e.ex;
goto FINALLY_001d;
}
FINALLY_001d:
{ // begin finally (depth: 1)
t1_1 * L_3 = V_0;
m1_4446(NULL, L_3, NULL);
IL2CPP_END_FINALLY(29)
} // end finally (depth: 1)
IL2CPP_CLEANUP(29)
{
IL2CPP_JUMP_TBL(0x24, IL_0024)
IL2CPP_RETHROW_IF_UNHANDLED(t1_43 *)
}
IL_0024:
{
return;
}
}
extern "C" void m1_1568 (t1_167 * __this, t1_1 * p0, const MethodInfo* method)
{
t1_1 * V_0 = {0};
t1_43 * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
t1_43 * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
t1_1 * L_0 = (__this->f6);
V_0 = L_0;
t1_1 * L_1 = V_0;
m1_4445(NULL, L_1, NULL);
}
IL_000d:
try
{ // begin try (depth: 1)
t1_126 * L_2 = (((t1_166 *)__this)->f5);
t1_1 * L_3 = p0;
VirtActionInvoker1< t1_1 * >::Invoke(46 /* System.Void System.Collections.ArrayList::Sort(System.Collections.IComparer) */, L_2, L_3);
IL2CPP_LEAVE(0x25, FINALLY_001e);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (t1_43 *)e.ex;
goto FINALLY_001e;
}
FINALLY_001e:
{ // begin finally (depth: 1)
t1_1 * L_4 = V_0;
m1_4446(NULL, L_4, NULL);
IL2CPP_END_FINALLY(30)
} // end finally (depth: 1)
IL2CPP_CLEANUP(30)
{
IL2CPP_JUMP_TBL(0x25, IL_0025)
IL2CPP_RETHROW_IF_UNHANDLED(t1_43 *)
}
IL_0025:
{
return;
}
}
extern "C" t1_170* m1_1569 (t1_167 * __this, const MethodInfo* method)
{
t1_1 * V_0 = {0};
t1_170* V_1 = {0};
t1_43 * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
t1_43 * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
t1_1 * L_0 = (__this->f6);
V_0 = L_0;
t1_1 * L_1 = V_0;
m1_4445(NULL, L_1, NULL);
}
IL_000d:
try
{ // begin try (depth: 1)
{
t1_126 * L_2 = (((t1_166 *)__this)->f5);
t1_170* L_3 = (t1_170*)VirtFuncInvoker0< t1_170* >::Invoke(47 /* System.Object[] System.Collections.ArrayList::ToArray() */, L_2);
V_1 = L_3;
IL2CPP_LEAVE(0x2A, FINALLY_0023);
}
IL_001e:
{
; // IL_001e: leave IL_002a
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (t1_43 *)e.ex;
goto FINALLY_0023;
}
FINALLY_0023:
{ // begin finally (depth: 1)
t1_1 * L_4 = V_0;
m1_4446(NULL, L_4, NULL);
IL2CPP_END_FINALLY(35)
} // end finally (depth: 1)
IL2CPP_CLEANUP(35)
{
IL2CPP_JUMP_TBL(0x2A, IL_002a)
IL2CPP_RETHROW_IF_UNHANDLED(t1_43 *)
}
IL_002a:
{
t1_170* L_5 = V_1;
return L_5;
}
}
extern "C" t1_33 * m1_1570 (t1_167 * __this, t1_37 * p0, const MethodInfo* method)
{
t1_1 * V_0 = {0};
t1_33 * V_1 = {0};
t1_43 * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
t1_43 * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
t1_1 * L_0 = (__this->f6);
V_0 = L_0;
t1_1 * L_1 = V_0;
m1_4445(NULL, L_1, NULL);
}
IL_000d:
try
{ // begin try (depth: 1)
{
t1_126 * L_2 = (((t1_166 *)__this)->f5);
t1_37 * L_3 = p0;
t1_33 * L_4 = (t1_33 *)VirtFuncInvoker1< t1_33 *, t1_37 * >::Invoke(48 /* System.Array System.Collections.ArrayList::ToArray(System.Type) */, L_2, L_3);
V_1 = L_4;
IL2CPP_LEAVE(0x2B, FINALLY_0024);
}
IL_001f:
{
; // IL_001f: leave IL_002b
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (t1_43 *)e.ex;
goto FINALLY_0024;
}
FINALLY_0024:
{ // begin finally (depth: 1)
t1_1 * L_5 = V_0;
m1_4446(NULL, L_5, NULL);
IL2CPP_END_FINALLY(36)
} // end finally (depth: 1)
IL2CPP_CLEANUP(36)
{
IL2CPP_JUMP_TBL(0x2B, IL_002b)
IL2CPP_RETHROW_IF_UNHANDLED(t1_43 *)
}
IL_002b:
{
t1_33 * L_6 = V_1;
return L_6;
}
}
extern "C" void m1_1571 (t1_168 * __this, t1_126 * p0, const MethodInfo* method)
{
{
t1_126 * L_0 = p0;
m1_1511(__this, L_0, NULL);
return;
}
}
extern Il2CppCodeGenString* _stringLiteral524;
extern "C" t1_18* m1_1572 (t1_168 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
_stringLiteral524 = il2cpp_codegen_string_literal_from_index(524);
s_Il2CppMethodIntialized = true;
}
{
return _stringLiteral524;
}
}
extern "C" int32_t m1_1573 (t1_168 * __this, const MethodInfo* method)
{
{
int32_t L_0 = m1_1515(__this, NULL);
return L_0;
}
}
extern TypeInfo* t1_756_TI_var;
extern "C" void m1_1574 (t1_168 * __this, int32_t p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_756_TI_var = il2cpp_codegen_type_info_from_index(6);
s_Il2CppMethodIntialized = true;
}
{
t1_18* L_0 = (t1_18*)VirtFuncInvoker0< t1_18* >::Invoke(50 /* System.String System.Collections.ArrayList/FixedSizeArrayListWrapper::get_ErrorMessage() */, __this);
t1_756 * L_1 = (t1_756 *)il2cpp_codegen_object_new (t1_756_TI_var);
m1_5149(L_1, L_0, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_1);
}
}
extern "C" bool m1_1575 (t1_168 * __this, const MethodInfo* method)
{
{
return 1;
}
}
extern TypeInfo* t1_756_TI_var;
extern "C" int32_t m1_1576 (t1_168 * __this, t1_1 * p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_756_TI_var = il2cpp_codegen_type_info_from_index(6);
s_Il2CppMethodIntialized = true;
}
{
t1_18* L_0 = (t1_18*)VirtFuncInvoker0< t1_18* >::Invoke(50 /* System.String System.Collections.ArrayList/FixedSizeArrayListWrapper::get_ErrorMessage() */, __this);
t1_756 * L_1 = (t1_756 *)il2cpp_codegen_object_new (t1_756_TI_var);
m1_5149(L_1, L_0, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_1);
}
}
extern TypeInfo* t1_756_TI_var;
extern "C" void m1_1577 (t1_168 * __this, t1_1 * p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_756_TI_var = il2cpp_codegen_type_info_from_index(6);
s_Il2CppMethodIntialized = true;
}
{
t1_18* L_0 = (t1_18*)VirtFuncInvoker0< t1_18* >::Invoke(50 /* System.String System.Collections.ArrayList/FixedSizeArrayListWrapper::get_ErrorMessage() */, __this);
t1_756 * L_1 = (t1_756 *)il2cpp_codegen_object_new (t1_756_TI_var);
m1_5149(L_1, L_0, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_1);
}
}
extern TypeInfo* t1_756_TI_var;
extern "C" void m1_1578 (t1_168 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_756_TI_var = il2cpp_codegen_type_info_from_index(6);
s_Il2CppMethodIntialized = true;
}
{
t1_18* L_0 = (t1_18*)VirtFuncInvoker0< t1_18* >::Invoke(50 /* System.String System.Collections.ArrayList/FixedSizeArrayListWrapper::get_ErrorMessage() */, __this);
t1_756 * L_1 = (t1_756 *)il2cpp_codegen_object_new (t1_756_TI_var);
m1_5149(L_1, L_0, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_1);
}
}
extern TypeInfo* t1_756_TI_var;
extern "C" void m1_1579 (t1_168 * __this, int32_t p0, t1_1 * p1, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_756_TI_var = il2cpp_codegen_type_info_from_index(6);
s_Il2CppMethodIntialized = true;
}
{
t1_18* L_0 = (t1_18*)VirtFuncInvoker0< t1_18* >::Invoke(50 /* System.String System.Collections.ArrayList/FixedSizeArrayListWrapper::get_ErrorMessage() */, __this);
t1_756 * L_1 = (t1_756 *)il2cpp_codegen_object_new (t1_756_TI_var);
m1_5149(L_1, L_0, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_1);
}
}
extern TypeInfo* t1_756_TI_var;
extern "C" void m1_1580 (t1_168 * __this, int32_t p0, t1_1 * p1, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_756_TI_var = il2cpp_codegen_type_info_from_index(6);
s_Il2CppMethodIntialized = true;
}
{
t1_18* L_0 = (t1_18*)VirtFuncInvoker0< t1_18* >::Invoke(50 /* System.String System.Collections.ArrayList/FixedSizeArrayListWrapper::get_ErrorMessage() */, __this);
t1_756 * L_1 = (t1_756 *)il2cpp_codegen_object_new (t1_756_TI_var);
m1_5149(L_1, L_0, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_1);
}
}
extern TypeInfo* t1_756_TI_var;
extern "C" void m1_1581 (t1_168 * __this, t1_1 * p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_756_TI_var = il2cpp_codegen_type_info_from_index(6);
s_Il2CppMethodIntialized = true;
}
{
t1_18* L_0 = (t1_18*)VirtFuncInvoker0< t1_18* >::Invoke(50 /* System.String System.Collections.ArrayList/FixedSizeArrayListWrapper::get_ErrorMessage() */, __this);
t1_756 * L_1 = (t1_756 *)il2cpp_codegen_object_new (t1_756_TI_var);
m1_5149(L_1, L_0, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_1);
}
}
extern TypeInfo* t1_756_TI_var;
extern "C" void m1_1582 (t1_168 * __this, int32_t p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_756_TI_var = il2cpp_codegen_type_info_from_index(6);
s_Il2CppMethodIntialized = true;
}
{
t1_18* L_0 = (t1_18*)VirtFuncInvoker0< t1_18* >::Invoke(50 /* System.String System.Collections.ArrayList/FixedSizeArrayListWrapper::get_ErrorMessage() */, __this);
t1_756 * L_1 = (t1_756 *)il2cpp_codegen_object_new (t1_756_TI_var);
m1_5149(L_1, L_0, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_1);
}
}
extern "C" void m1_1583 (t1_169 * __this, t1_126 * p0, const MethodInfo* method)
{
{
t1_126 * L_0 = p0;
m1_1571(__this, L_0, NULL);
return;
}
}
extern Il2CppCodeGenString* _stringLiteral525;
extern "C" t1_18* m1_1584 (t1_169 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
_stringLiteral525 = il2cpp_codegen_string_literal_from_index(525);
s_Il2CppMethodIntialized = true;
}
{
return _stringLiteral525;
}
}
extern "C" bool m1_1585 (t1_169 * __this, const MethodInfo* method)
{
{
return 1;
}
}
extern "C" t1_1 * m1_1586 (t1_169 * __this, int32_t p0, const MethodInfo* method)
{
{
t1_126 * L_0 = (((t1_166 *)__this)->f5);
int32_t L_1 = p0;
t1_1 * L_2 = (t1_1 *)VirtFuncInvoker1< t1_1 *, int32_t >::Invoke(21 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_0, L_1);
return L_2;
}
}
extern TypeInfo* t1_756_TI_var;
extern "C" void m1_1587 (t1_169 * __this, int32_t p0, t1_1 * p1, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_756_TI_var = il2cpp_codegen_type_info_from_index(6);
s_Il2CppMethodIntialized = true;
}
{
t1_18* L_0 = m1_1584(__this, NULL);
t1_756 * L_1 = (t1_756 *)il2cpp_codegen_object_new (t1_756_TI_var);
m1_5149(L_1, L_0, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_1);
}
}
extern TypeInfo* t1_756_TI_var;
extern "C" void m1_1588 (t1_169 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_756_TI_var = il2cpp_codegen_type_info_from_index(6);
s_Il2CppMethodIntialized = true;
}
{
t1_18* L_0 = m1_1584(__this, NULL);
t1_756 * L_1 = (t1_756 *)il2cpp_codegen_object_new (t1_756_TI_var);
m1_5149(L_1, L_0, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_1);
}
}
extern TypeInfo* t1_756_TI_var;
extern "C" void m1_1589 (t1_169 * __this, t1_1 * p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_756_TI_var = il2cpp_codegen_type_info_from_index(6);
s_Il2CppMethodIntialized = true;
}
{
t1_18* L_0 = m1_1584(__this, NULL);
t1_756 * L_1 = (t1_756 *)il2cpp_codegen_object_new (t1_756_TI_var);
m1_5149(L_1, L_0, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_1);
}
}
extern TypeInfo* t1_126_TI_var;
extern "C" void m1_1590 (t1_126 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_126_TI_var = il2cpp_codegen_type_info_from_index(55);
s_Il2CppMethodIntialized = true;
}
{
m1_0(__this, NULL);
IL2CPP_RUNTIME_CLASS_INIT(t1_126_TI_var);
t1_170* L_0 = ((t1_126_SFs*)t1_126_TI_var->static_fields)->f4;
__this->f2 = L_0;
return;
}
}
extern TypeInfo* t1_701_TI_var;
extern TypeInfo* t1_33_TI_var;
extern TypeInfo* t1_764_TI_var;
extern TypeInfo* t1_817_TI_var;
extern TypeInfo* t1_170_TI_var;
extern Il2CppCodeGenString* _stringLiteral510;
extern "C" void m1_1591 (t1_126 * __this, t1_1 * p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_701_TI_var = il2cpp_codegen_type_info_from_index(2);
t1_33_TI_var = il2cpp_codegen_type_info_from_index(183);
t1_764_TI_var = il2cpp_codegen_type_info_from_index(72);
t1_817_TI_var = il2cpp_codegen_type_info_from_index(184);
t1_170_TI_var = il2cpp_codegen_type_info_from_index(19);
_stringLiteral510 = il2cpp_codegen_string_literal_from_index(510);
s_Il2CppMethodIntialized = true;
}
t1_33 * V_0 = {0};
{
m1_0(__this, NULL);
t1_1 * L_0 = p0;
if (L_0)
{
goto IL_0017;
}
}
{
t1_701 * L_1 = (t1_701 *)il2cpp_codegen_object_new (t1_701_TI_var);
m1_4570(L_1, _stringLiteral510, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_1);
}
IL_0017:
{
t1_1 * L_2 = p0;
V_0 = ((t1_33 *)IsInstClass(L_2, t1_33_TI_var));
t1_33 * L_3 = V_0;
if (!L_3)
{
goto IL_0036;
}
}
{
t1_33 * L_4 = V_0;
int32_t L_5 = m1_778(L_4, NULL);
if ((((int32_t)L_5) == ((int32_t)1)))
{
goto IL_0036;
}
}
{
t1_764 * L_6 = (t1_764 *)il2cpp_codegen_object_new (t1_764_TI_var);
m1_5267(L_6, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_6);
}
IL_0036:
{
t1_1 * L_7 = p0;
int32_t L_8 = (int32_t)InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.ICollection::get_Count() */, t1_817_TI_var, L_7);
__this->f2 = ((t1_170*)SZArrayNew(t1_170_TI_var, L_8));
t1_1 * L_9 = p0;
VirtActionInvoker1< t1_1 * >::Invoke(44 /* System.Void System.Collections.ArrayList::AddRange(System.Collections.ICollection) */, __this, L_9);
return;
}
}
extern TypeInfo* t1_4_TI_var;
extern TypeInfo* t1_126_TI_var;
extern TypeInfo* t1_170_TI_var;
extern Il2CppCodeGenString* _stringLiteral491;
extern Il2CppCodeGenString* _stringLiteral511;
extern "C" void m1_1592 (t1_126 * __this, int32_t p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_4_TI_var = il2cpp_codegen_type_info_from_index(8);
t1_126_TI_var = il2cpp_codegen_type_info_from_index(55);
t1_170_TI_var = il2cpp_codegen_type_info_from_index(19);
_stringLiteral491 = il2cpp_codegen_string_literal_from_index(491);
_stringLiteral511 = il2cpp_codegen_string_literal_from_index(511);
s_Il2CppMethodIntialized = true;
}
{
m1_0(__this, NULL);
int32_t L_0 = p0;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0022;
}
}
{
int32_t L_1 = p0;
int32_t L_2 = L_1;
t1_1 * L_3 = Box(t1_4_TI_var, &L_2);
IL2CPP_RUNTIME_CLASS_INIT(t1_126_TI_var);
m1_1626(NULL, _stringLiteral491, L_3, _stringLiteral511, NULL);
}
IL_0022:
{
int32_t L_4 = p0;
if (L_4)
{
goto IL_002b;
}
}
{
p0 = 4;
}
IL_002b:
{
int32_t L_5 = p0;
__this->f2 = ((t1_170*)SZArrayNew(t1_170_TI_var, L_5));
return;
}
}
extern TypeInfo* t1_170_TI_var;
extern "C" void m1_1593 (t1_126 * __this, t1_170* p0, int32_t p1, int32_t p2, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_170_TI_var = il2cpp_codegen_type_info_from_index(19);
s_Il2CppMethodIntialized = true;
}
{
m1_0(__this, NULL);
int32_t L_0 = p2;
if (L_0)
{
goto IL_001d;
}
}
{
__this->f2 = ((t1_170*)SZArrayNew(t1_170_TI_var, 4));
goto IL_0029;
}
IL_001d:
{
int32_t L_1 = p2;
__this->f2 = ((t1_170*)SZArrayNew(t1_170_TI_var, L_1));
}
IL_0029:
{
t1_170* L_2 = p0;
int32_t L_3 = p1;
t1_170* L_4 = (__this->f2);
int32_t L_5 = p2;
m1_825(NULL, (t1_33 *)(t1_33 *)L_2, L_3, (t1_33 *)(t1_33 *)L_4, 0, L_5, NULL);
int32_t L_6 = p2;
__this->f1 = L_6;
return;
}
}
extern TypeInfo* t1_170_TI_var;
extern TypeInfo* t1_126_TI_var;
extern "C" void m1_1594 (t1_1 * __this , const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_170_TI_var = il2cpp_codegen_type_info_from_index(19);
t1_126_TI_var = il2cpp_codegen_type_info_from_index(55);
s_Il2CppMethodIntialized = true;
}
{
((t1_126_SFs*)t1_126_TI_var->static_fields)->f4 = ((t1_170*)SZArrayNew(t1_170_TI_var, 0));
return;
}
}
extern TypeInfo* t1_4_TI_var;
extern TypeInfo* t1_126_TI_var;
extern Il2CppCodeGenString* _stringLiteral144;
extern Il2CppCodeGenString* _stringLiteral512;
extern "C" t1_1 * m1_1595 (t1_126 * __this, int32_t p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_4_TI_var = il2cpp_codegen_type_info_from_index(8);
t1_126_TI_var = il2cpp_codegen_type_info_from_index(55);
_stringLiteral144 = il2cpp_codegen_string_literal_from_index(144);
_stringLiteral512 = il2cpp_codegen_string_literal_from_index(512);
s_Il2CppMethodIntialized = true;
}
{
int32_t L_0 = p0;
if ((((int32_t)L_0) < ((int32_t)0)))
{
goto IL_0013;
}
}
{
int32_t L_1 = p0;
int32_t L_2 = (__this->f1);
if ((((int32_t)L_1) < ((int32_t)L_2)))
{
goto IL_0028;
}
}
IL_0013:
{
int32_t L_3 = p0;
int32_t L_4 = L_3;
t1_1 * L_5 = Box(t1_4_TI_var, &L_4);
IL2CPP_RUNTIME_CLASS_INIT(t1_126_TI_var);
m1_1626(NULL, _stringLiteral144, L_5, _stringLiteral512, NULL);
}
IL_0028:
{
t1_170* L_6 = (__this->f2);
int32_t L_7 = p0;
int32_t L_8 = L_7;
return (*(t1_1 **)(t1_1 **)SZArrayLdElema(L_6, L_8, sizeof(t1_1 *)));
}
}
extern TypeInfo* t1_4_TI_var;
extern TypeInfo* t1_126_TI_var;
extern Il2CppCodeGenString* _stringLiteral144;
extern Il2CppCodeGenString* _stringLiteral512;
extern "C" void m1_1596 (t1_126 * __this, int32_t p0, t1_1 * p1, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_4_TI_var = il2cpp_codegen_type_info_from_index(8);
t1_126_TI_var = il2cpp_codegen_type_info_from_index(55);
_stringLiteral144 = il2cpp_codegen_string_literal_from_index(144);
_stringLiteral512 = il2cpp_codegen_string_literal_from_index(512);
s_Il2CppMethodIntialized = true;
}
{
int32_t L_0 = p0;
if ((((int32_t)L_0) < ((int32_t)0)))
{
goto IL_0013;
}
}
{
int32_t L_1 = p0;
int32_t L_2 = (__this->f1);
if ((((int32_t)L_1) < ((int32_t)L_2)))
{
goto IL_0028;
}
}
IL_0013:
{
int32_t L_3 = p0;
int32_t L_4 = L_3;
t1_1 * L_5 = Box(t1_4_TI_var, &L_4);
IL2CPP_RUNTIME_CLASS_INIT(t1_126_TI_var);
m1_1626(NULL, _stringLiteral144, L_5, _stringLiteral512, NULL);
}
IL_0028:
{
t1_170* L_6 = (__this->f2);
int32_t L_7 = p0;
t1_1 * L_8 = p1;
ArrayElementTypeCheck (L_6, L_8);
*((t1_1 **)(t1_1 **)SZArrayLdElema(L_6, L_7, sizeof(t1_1 *))) = (t1_1 *)L_8;
int32_t L_9 = (__this->f3);
__this->f3 = ((int32_t)((int32_t)L_9+(int32_t)1));
return;
}
}
extern "C" int32_t m1_1597 (t1_126 * __this, const MethodInfo* method)
{
{
int32_t L_0 = (__this->f1);
return L_0;
}
}
extern "C" int32_t m1_1598 (t1_126 * __this, const MethodInfo* method)
{
{
t1_170* L_0 = (__this->f2);
return (((int32_t)((int32_t)(((t1_33 *)L_0)->max_length))));
}
}
extern TypeInfo* t1_4_TI_var;
extern TypeInfo* t1_126_TI_var;
extern TypeInfo* t1_170_TI_var;
extern Il2CppCodeGenString* _stringLiteral513;
extern Il2CppCodeGenString* _stringLiteral514;
extern "C" void m1_1599 (t1_126 * __this, int32_t p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_4_TI_var = il2cpp_codegen_type_info_from_index(8);
t1_126_TI_var = il2cpp_codegen_type_info_from_index(55);
t1_170_TI_var = il2cpp_codegen_type_info_from_index(19);
_stringLiteral513 = il2cpp_codegen_string_literal_from_index(513);
_stringLiteral514 = il2cpp_codegen_string_literal_from_index(514);
s_Il2CppMethodIntialized = true;
}
t1_170* V_0 = {0};
{
int32_t L_0 = p0;
int32_t L_1 = (__this->f1);
if ((((int32_t)L_0) >= ((int32_t)L_1)))
{
goto IL_0021;
}
}
{
int32_t L_2 = p0;
int32_t L_3 = L_2;
t1_1 * L_4 = Box(t1_4_TI_var, &L_3);
IL2CPP_RUNTIME_CLASS_INIT(t1_126_TI_var);
m1_1626(NULL, _stringLiteral513, L_4, _stringLiteral514, NULL);
}
IL_0021:
{
int32_t L_5 = p0;
V_0 = ((t1_170*)SZArrayNew(t1_170_TI_var, L_5));
t1_170* L_6 = (__this->f2);
t1_170* L_7 = V_0;
int32_t L_8 = (__this->f1);
m1_825(NULL, (t1_33 *)(t1_33 *)L_6, 0, (t1_33 *)(t1_33 *)L_7, 0, L_8, NULL);
t1_170* L_9 = V_0;
__this->f2 = L_9;
return;
}
}
extern "C" bool m1_1600 (t1_126 * __this, const MethodInfo* method)
{
{
return 0;
}
}
extern "C" bool m1_1601 (t1_126 * __this, const MethodInfo* method)
{
{
return 0;
}
}
extern "C" bool m1_1602 (t1_126 * __this, const MethodInfo* method)
{
{
return 0;
}
}
extern "C" t1_1 * m1_1603 (t1_126 * __this, const MethodInfo* method)
{
{
return __this;
}
}
extern TypeInfo* t1_170_TI_var;
extern "C" void m1_1604 (t1_126 * __this, int32_t p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_170_TI_var = il2cpp_codegen_type_info_from_index(19);
s_Il2CppMethodIntialized = true;
}
int32_t V_0 = 0;
t1_170* V_1 = {0};
{
int32_t L_0 = p0;
t1_170* L_1 = (__this->f2);
if ((((int32_t)L_0) > ((int32_t)(((int32_t)((int32_t)(((t1_33 *)L_1)->max_length)))))))
{
goto IL_000f;
}
}
{
return;
}
IL_000f:
{
t1_170* L_2 = (__this->f2);
V_0 = ((int32_t)((int32_t)(((int32_t)((int32_t)(((t1_33 *)L_2)->max_length))))<<(int32_t)1));
int32_t L_3 = V_0;
if (L_3)
{
goto IL_0022;
}
}
{
V_0 = 4;
}
IL_0022:
{
goto IL_002b;
}
IL_0027:
{
int32_t L_4 = V_0;
V_0 = ((int32_t)((int32_t)L_4<<(int32_t)1));
}
IL_002b:
{
int32_t L_5 = V_0;
int32_t L_6 = p0;
if ((((int32_t)L_5) < ((int32_t)L_6)))
{
goto IL_0027;
}
}
{
int32_t L_7 = V_0;
V_1 = ((t1_170*)SZArrayNew(t1_170_TI_var, L_7));
t1_170* L_8 = (__this->f2);
t1_170* L_9 = V_1;
t1_170* L_10 = (__this->f2);
m1_825(NULL, (t1_33 *)(t1_33 *)L_8, 0, (t1_33 *)(t1_33 *)L_9, 0, (((int32_t)((int32_t)(((t1_33 *)L_10)->max_length)))), NULL);
t1_170* L_11 = V_1;
__this->f2 = L_11;
return;
}
}
extern TypeInfo* t1_170_TI_var;
extern "C" void m1_1605 (t1_126 * __this, int32_t p0, int32_t p1, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_170_TI_var = il2cpp_codegen_type_info_from_index(19);
s_Il2CppMethodIntialized = true;
}
int32_t V_0 = 0;
t1_170* V_1 = {0};
int32_t V_2 = 0;
int32_t G_B5_0 = 0;
{
int32_t L_0 = p1;
if ((((int32_t)L_0) <= ((int32_t)0)))
{
goto IL_00ae;
}
}
{
int32_t L_1 = (__this->f1);
int32_t L_2 = p1;
t1_170* L_3 = (__this->f2);
if ((((int32_t)((int32_t)((int32_t)L_1+(int32_t)L_2))) <= ((int32_t)(((int32_t)((int32_t)(((t1_33 *)L_3)->max_length)))))))
{
goto IL_008c;
}
}
{
t1_170* L_4 = (__this->f2);
if ((((int32_t)(((int32_t)((int32_t)(((t1_33 *)L_4)->max_length))))) <= ((int32_t)0)))
{
goto IL_0039;
}
}
{
t1_170* L_5 = (__this->f2);
G_B5_0 = ((int32_t)((int32_t)(((int32_t)((int32_t)(((t1_33 *)L_5)->max_length))))<<(int32_t)1));
goto IL_003a;
}
IL_0039:
{
G_B5_0 = 1;
}
IL_003a:
{
V_0 = G_B5_0;
goto IL_0044;
}
IL_0040:
{
int32_t L_6 = V_0;
V_0 = ((int32_t)((int32_t)L_6<<(int32_t)1));
}
IL_0044:
{
int32_t L_7 = V_0;
int32_t L_8 = (__this->f1);
int32_t L_9 = p1;
if ((((int32_t)L_7) < ((int32_t)((int32_t)((int32_t)L_8+(int32_t)L_9)))))
{
goto IL_0040;
}
}
{
int32_t L_10 = V_0;
V_1 = ((t1_170*)SZArrayNew(t1_170_TI_var, L_10));
t1_170* L_11 = (__this->f2);
t1_170* L_12 = V_1;
int32_t L_13 = p0;
m1_825(NULL, (t1_33 *)(t1_33 *)L_11, 0, (t1_33 *)(t1_33 *)L_12, 0, L_13, NULL);
t1_170* L_14 = (__this->f2);
int32_t L_15 = p0;
t1_170* L_16 = V_1;
int32_t L_17 = p0;
int32_t L_18 = p1;
int32_t L_19 = (__this->f1);
int32_t L_20 = p0;
m1_825(NULL, (t1_33 *)(t1_33 *)L_14, L_15, (t1_33 *)(t1_33 *)L_16, ((int32_t)((int32_t)L_17+(int32_t)L_18)), ((int32_t)((int32_t)L_19-(int32_t)L_20)), NULL);
t1_170* L_21 = V_1;
__this->f2 = L_21;
goto IL_00a9;
}
IL_008c:
{
t1_170* L_22 = (__this->f2);
int32_t L_23 = p0;
t1_170* L_24 = (__this->f2);
int32_t L_25 = p0;
int32_t L_26 = p1;
int32_t L_27 = (__this->f1);
int32_t L_28 = p0;
m1_825(NULL, (t1_33 *)(t1_33 *)L_22, L_23, (t1_33 *)(t1_33 *)L_24, ((int32_t)((int32_t)L_25+(int32_t)L_26)), ((int32_t)((int32_t)L_27-(int32_t)L_28)), NULL);
}
IL_00a9:
{
goto IL_00e9;
}
IL_00ae:
{
int32_t L_29 = p1;
if ((((int32_t)L_29) >= ((int32_t)0)))
{
goto IL_00e9;
}
}
{
int32_t L_30 = p0;
int32_t L_31 = p1;
V_2 = ((int32_t)((int32_t)L_30-(int32_t)L_31));
t1_170* L_32 = (__this->f2);
int32_t L_33 = V_2;
t1_170* L_34 = (__this->f2);
int32_t L_35 = p0;
int32_t L_36 = (__this->f1);
int32_t L_37 = V_2;
m1_825(NULL, (t1_33 *)(t1_33 *)L_32, L_33, (t1_33 *)(t1_33 *)L_34, L_35, ((int32_t)((int32_t)L_36-(int32_t)L_37)), NULL);
t1_170* L_38 = (__this->f2);
int32_t L_39 = (__this->f1);
int32_t L_40 = p1;
int32_t L_41 = p1;
m1_821(NULL, (t1_33 *)(t1_33 *)L_38, ((int32_t)((int32_t)L_39+(int32_t)L_40)), ((-L_41)), NULL);
}
IL_00e9:
{
return;
}
}
extern "C" int32_t m1_1606 (t1_126 * __this, t1_1 * p0, const MethodInfo* method)
{
int32_t V_0 = 0;
{
t1_170* L_0 = (__this->f2);
int32_t L_1 = (__this->f1);
if ((((int32_t)(((int32_t)((int32_t)(((t1_33 *)L_0)->max_length))))) > ((int32_t)L_1)))
{
goto IL_0021;
}
}
{
int32_t L_2 = (__this->f1);
m1_1604(__this, ((int32_t)((int32_t)L_2+(int32_t)1)), NULL);
}
IL_0021:
{
t1_170* L_3 = (__this->f2);
int32_t L_4 = (__this->f1);
t1_1 * L_5 = p0;
ArrayElementTypeCheck (L_3, L_5);
*((t1_1 **)(t1_1 **)SZArrayLdElema(L_3, L_4, sizeof(t1_1 *))) = (t1_1 *)L_5;
int32_t L_6 = (__this->f3);
__this->f3 = ((int32_t)((int32_t)L_6+(int32_t)1));
int32_t L_7 = (__this->f1);
int32_t L_8 = L_7;
V_0 = L_8;
__this->f1 = ((int32_t)((int32_t)L_8+(int32_t)1));
int32_t L_9 = V_0;
return L_9;
}
}
extern "C" void m1_1607 (t1_126 * __this, const MethodInfo* method)
{
{
t1_170* L_0 = (__this->f2);
int32_t L_1 = (__this->f1);
m1_821(NULL, (t1_33 *)(t1_33 *)L_0, 0, L_1, NULL);
__this->f1 = 0;
int32_t L_2 = (__this->f3);
__this->f3 = ((int32_t)((int32_t)L_2+(int32_t)1));
return;
}
}
extern "C" bool m1_1608 (t1_126 * __this, t1_1 * p0, const MethodInfo* method)
{
{
t1_1 * L_0 = p0;
int32_t L_1 = (__this->f1);
int32_t L_2 = (int32_t)VirtFuncInvoker3< int32_t, t1_1 *, int32_t, int32_t >::Invoke(35 /* System.Int32 System.Collections.ArrayList::IndexOf(System.Object,System.Int32,System.Int32) */, __this, L_0, 0, L_1);
return ((((int32_t)L_2) > ((int32_t)(-1)))? 1 : 0);
}
}
extern "C" int32_t m1_1609 (t1_126 * __this, t1_1 * p0, const MethodInfo* method)
{
{
t1_1 * L_0 = p0;
int32_t L_1 = (int32_t)VirtFuncInvoker2< int32_t, t1_1 *, int32_t >::Invoke(34 /* System.Int32 System.Collections.ArrayList::IndexOf(System.Object,System.Int32) */, __this, L_0, 0);
return L_1;
}
}
extern "C" int32_t m1_1610 (t1_126 * __this, t1_1 * p0, int32_t p1, const MethodInfo* method)
{
{
t1_1 * L_0 = p0;
int32_t L_1 = p1;
int32_t L_2 = (__this->f1);
int32_t L_3 = p1;
int32_t L_4 = (int32_t)VirtFuncInvoker3< int32_t, t1_1 *, int32_t, int32_t >::Invoke(35 /* System.Int32 System.Collections.ArrayList::IndexOf(System.Object,System.Int32,System.Int32) */, __this, L_0, L_1, ((int32_t)((int32_t)L_2-(int32_t)L_3)));
return L_4;
}
}
extern TypeInfo* t1_4_TI_var;
extern TypeInfo* t1_126_TI_var;
extern TypeInfo* t1_702_TI_var;
extern const MethodInfo* m1_5458_MI_var;
extern Il2CppCodeGenString* _stringLiteral43;
extern Il2CppCodeGenString* _stringLiteral515;
extern Il2CppCodeGenString* _stringLiteral40;
extern Il2CppCodeGenString* _stringLiteral516;
extern Il2CppCodeGenString* _stringLiteral517;
extern "C" int32_t m1_1611 (t1_126 * __this, t1_1 * p0, int32_t p1, int32_t p2, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_4_TI_var = il2cpp_codegen_type_info_from_index(8);
t1_126_TI_var = il2cpp_codegen_type_info_from_index(55);
t1_702_TI_var = il2cpp_codegen_type_info_from_index(27);
m1_5458_MI_var = il2cpp_codegen_method_info_from_index(2147483660);
_stringLiteral43 = il2cpp_codegen_string_literal_from_index(43);
_stringLiteral515 = il2cpp_codegen_string_literal_from_index(515);
_stringLiteral40 = il2cpp_codegen_string_literal_from_index(40);
_stringLiteral516 = il2cpp_codegen_string_literal_from_index(516);
_stringLiteral517 = il2cpp_codegen_string_literal_from_index(517);
s_Il2CppMethodIntialized = true;
}
{
int32_t L_0 = p1;
if ((((int32_t)L_0) < ((int32_t)0)))
{
goto IL_0013;
}
}
{
int32_t L_1 = p1;
int32_t L_2 = (__this->f1);
if ((((int32_t)L_1) <= ((int32_t)L_2)))
{
goto IL_0028;
}
}
IL_0013:
{
int32_t L_3 = p1;
int32_t L_4 = L_3;
t1_1 * L_5 = Box(t1_4_TI_var, &L_4);
IL2CPP_RUNTIME_CLASS_INIT(t1_126_TI_var);
m1_1626(NULL, _stringLiteral43, L_5, _stringLiteral515, NULL);
}
IL_0028:
{
int32_t L_6 = p2;
if ((((int32_t)L_6) >= ((int32_t)0)))
{
goto IL_0044;
}
}
{
int32_t L_7 = p2;
int32_t L_8 = L_7;
t1_1 * L_9 = Box(t1_4_TI_var, &L_8);
IL2CPP_RUNTIME_CLASS_INIT(t1_126_TI_var);
m1_1626(NULL, _stringLiteral40, L_9, _stringLiteral516, NULL);
}
IL_0044:
{
int32_t L_10 = p1;
int32_t L_11 = (__this->f1);
int32_t L_12 = p2;
if ((((int32_t)L_10) <= ((int32_t)((int32_t)((int32_t)L_11-(int32_t)L_12)))))
{
goto IL_0062;
}
}
{
t1_702 * L_13 = (t1_702 *)il2cpp_codegen_object_new (t1_702_TI_var);
m1_4575(L_13, _stringLiteral40, _stringLiteral517, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_13);
}
IL_0062:
{
t1_170* L_14 = (__this->f2);
t1_1 * L_15 = p0;
int32_t L_16 = p1;
int32_t L_17 = p2;
int32_t L_18 = m1_5458(NULL, L_14, L_15, L_16, L_17, m1_5458_MI_var);
return L_18;
}
}
extern TypeInfo* t1_4_TI_var;
extern TypeInfo* t1_126_TI_var;
extern Il2CppCodeGenString* _stringLiteral144;
extern Il2CppCodeGenString* _stringLiteral518;
extern "C" void m1_1612 (t1_126 * __this, int32_t p0, t1_1 * p1, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_4_TI_var = il2cpp_codegen_type_info_from_index(8);
t1_126_TI_var = il2cpp_codegen_type_info_from_index(55);
_stringLiteral144 = il2cpp_codegen_string_literal_from_index(144);
_stringLiteral518 = il2cpp_codegen_string_literal_from_index(518);
s_Il2CppMethodIntialized = true;
}
{
int32_t L_0 = p0;
if ((((int32_t)L_0) < ((int32_t)0)))
{
goto IL_0013;
}
}
{
int32_t L_1 = p0;
int32_t L_2 = (__this->f1);
if ((((int32_t)L_1) <= ((int32_t)L_2)))
{
goto IL_0028;
}
}
IL_0013:
{
int32_t L_3 = p0;
int32_t L_4 = L_3;
t1_1 * L_5 = Box(t1_4_TI_var, &L_4);
IL2CPP_RUNTIME_CLASS_INIT(t1_126_TI_var);
m1_1626(NULL, _stringLiteral144, L_5, _stringLiteral518, NULL);
}
IL_0028:
{
int32_t L_6 = p0;
m1_1605(__this, L_6, 1, NULL);
t1_170* L_7 = (__this->f2);
int32_t L_8 = p0;
t1_1 * L_9 = p1;
ArrayElementTypeCheck (L_7, L_9);
*((t1_1 **)(t1_1 **)SZArrayLdElema(L_7, L_8, sizeof(t1_1 *))) = (t1_1 *)L_9;
int32_t L_10 = (__this->f1);
__this->f1 = ((int32_t)((int32_t)L_10+(int32_t)1));
int32_t L_11 = (__this->f3);
__this->f3 = ((int32_t)((int32_t)L_11+(int32_t)1));
return;
}
}
extern TypeInfo* t1_701_TI_var;
extern TypeInfo* t1_4_TI_var;
extern TypeInfo* t1_126_TI_var;
extern TypeInfo* t1_817_TI_var;
extern Il2CppCodeGenString* _stringLiteral510;
extern Il2CppCodeGenString* _stringLiteral144;
extern Il2CppCodeGenString* _stringLiteral518;
extern "C" void m1_1613 (t1_126 * __this, int32_t p0, t1_1 * p1, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_701_TI_var = il2cpp_codegen_type_info_from_index(2);
t1_4_TI_var = il2cpp_codegen_type_info_from_index(8);
t1_126_TI_var = il2cpp_codegen_type_info_from_index(55);
t1_817_TI_var = il2cpp_codegen_type_info_from_index(184);
_stringLiteral510 = il2cpp_codegen_string_literal_from_index(510);
_stringLiteral144 = il2cpp_codegen_string_literal_from_index(144);
_stringLiteral518 = il2cpp_codegen_string_literal_from_index(518);
s_Il2CppMethodIntialized = true;
}
int32_t V_0 = 0;
{
t1_1 * L_0 = p1;
if (L_0)
{
goto IL_0011;
}
}
{
t1_701 * L_1 = (t1_701 *)il2cpp_codegen_object_new (t1_701_TI_var);
m1_4570(L_1, _stringLiteral510, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_1);
}
IL_0011:
{
int32_t L_2 = p0;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0024;
}
}
{
int32_t L_3 = p0;
int32_t L_4 = (__this->f1);
if ((((int32_t)L_3) <= ((int32_t)L_4)))
{
goto IL_0039;
}
}
IL_0024:
{
int32_t L_5 = p0;
int32_t L_6 = L_5;
t1_1 * L_7 = Box(t1_4_TI_var, &L_6);
IL2CPP_RUNTIME_CLASS_INIT(t1_126_TI_var);
m1_1626(NULL, _stringLiteral144, L_7, _stringLiteral518, NULL);
}
IL_0039:
{
t1_1 * L_8 = p1;
int32_t L_9 = (int32_t)InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.ICollection::get_Count() */, t1_817_TI_var, L_8);
V_0 = L_9;
t1_170* L_10 = (__this->f2);
int32_t L_11 = (__this->f1);
int32_t L_12 = V_0;
if ((((int32_t)(((int32_t)((int32_t)(((t1_33 *)L_10)->max_length))))) >= ((int32_t)((int32_t)((int32_t)L_11+(int32_t)L_12)))))
{
goto IL_0063;
}
}
{
int32_t L_13 = (__this->f1);
int32_t L_14 = V_0;
m1_1604(__this, ((int32_t)((int32_t)L_13+(int32_t)L_14)), NULL);
}
IL_0063:
{
int32_t L_15 = p0;
int32_t L_16 = (__this->f1);
if ((((int32_t)L_15) >= ((int32_t)L_16)))
{
goto IL_008c;
}
}
{
t1_170* L_17 = (__this->f2);
int32_t L_18 = p0;
t1_170* L_19 = (__this->f2);
int32_t L_20 = p0;
int32_t L_21 = V_0;
int32_t L_22 = (__this->f1);
int32_t L_23 = p0;
m1_825(NULL, (t1_33 *)(t1_33 *)L_17, L_18, (t1_33 *)(t1_33 *)L_19, ((int32_t)((int32_t)L_20+(int32_t)L_21)), ((int32_t)((int32_t)L_22-(int32_t)L_23)), NULL);
}
IL_008c:
{
t1_1 * L_24 = p1;
t1_1 * L_25 = (t1_1 *)InterfaceFuncInvoker0< t1_1 * >::Invoke(2 /* System.Object System.Collections.ICollection::get_SyncRoot() */, t1_817_TI_var, L_24);
if ((!(((t1_1*)(t1_126 *)__this) == ((t1_1*)(t1_1 *)L_25))))
{
goto IL_00d0;
}
}
{
t1_170* L_26 = (__this->f2);
t1_170* L_27 = (__this->f2);
int32_t L_28 = p0;
int32_t L_29 = p0;
m1_825(NULL, (t1_33 *)(t1_33 *)L_26, 0, (t1_33 *)(t1_33 *)L_27, L_28, L_29, NULL);
t1_170* L_30 = (__this->f2);
int32_t L_31 = p0;
int32_t L_32 = V_0;
t1_170* L_33 = (__this->f2);
int32_t L_34 = p0;
int32_t L_35 = (__this->f1);
int32_t L_36 = p0;
m1_825(NULL, (t1_33 *)(t1_33 *)L_30, ((int32_t)((int32_t)L_31+(int32_t)L_32)), (t1_33 *)(t1_33 *)L_33, ((int32_t)((int32_t)L_34<<(int32_t)1)), ((int32_t)((int32_t)L_35-(int32_t)L_36)), NULL);
goto IL_00dd;
}
IL_00d0:
{
t1_1 * L_37 = p1;
t1_170* L_38 = (__this->f2);
int32_t L_39 = p0;
InterfaceActionInvoker2< t1_33 *, int32_t >::Invoke(3 /* System.Void System.Collections.ICollection::CopyTo(System.Array,System.Int32) */, t1_817_TI_var, L_37, (t1_33 *)(t1_33 *)L_38, L_39);
}
IL_00dd:
{
int32_t L_40 = (__this->f1);
t1_1 * L_41 = p1;
int32_t L_42 = (int32_t)InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.ICollection::get_Count() */, t1_817_TI_var, L_41);
__this->f1 = ((int32_t)((int32_t)L_40+(int32_t)L_42));
int32_t L_43 = (__this->f3);
__this->f3 = ((int32_t)((int32_t)L_43+(int32_t)1));
return;
}
}
extern "C" void m1_1614 (t1_126 * __this, t1_1 * p0, const MethodInfo* method)
{
int32_t V_0 = 0;
{
t1_1 * L_0 = p0;
int32_t L_1 = (int32_t)VirtFuncInvoker1< int32_t, t1_1 * >::Invoke(33 /* System.Int32 System.Collections.ArrayList::IndexOf(System.Object) */, __this, L_0);
V_0 = L_1;
int32_t L_2 = V_0;
if ((((int32_t)L_2) <= ((int32_t)(-1))))
{
goto IL_0016;
}
}
{
int32_t L_3 = V_0;
VirtActionInvoker1< int32_t >::Invoke(39 /* System.Void System.Collections.ArrayList::RemoveAt(System.Int32) */, __this, L_3);
}
IL_0016:
{
int32_t L_4 = (__this->f3);
__this->f3 = ((int32_t)((int32_t)L_4+(int32_t)1));
return;
}
}
extern TypeInfo* t1_4_TI_var;
extern TypeInfo* t1_126_TI_var;
extern Il2CppCodeGenString* _stringLiteral144;
extern Il2CppCodeGenString* _stringLiteral519;
extern "C" void m1_1615 (t1_126 * __this, int32_t p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_4_TI_var = il2cpp_codegen_type_info_from_index(8);
t1_126_TI_var = il2cpp_codegen_type_info_from_index(55);
_stringLiteral144 = il2cpp_codegen_string_literal_from_index(144);
_stringLiteral519 = il2cpp_codegen_string_literal_from_index(519);
s_Il2CppMethodIntialized = true;
}
{
int32_t L_0 = p0;
if ((((int32_t)L_0) < ((int32_t)0)))
{
goto IL_0013;
}
}
{
int32_t L_1 = p0;
int32_t L_2 = (__this->f1);
if ((((int32_t)L_1) < ((int32_t)L_2)))
{
goto IL_0028;
}
}
IL_0013:
{
int32_t L_3 = p0;
int32_t L_4 = L_3;
t1_1 * L_5 = Box(t1_4_TI_var, &L_4);
IL2CPP_RUNTIME_CLASS_INIT(t1_126_TI_var);
m1_1626(NULL, _stringLiteral144, L_5, _stringLiteral519, NULL);
}
IL_0028:
{
int32_t L_6 = p0;
m1_1605(__this, L_6, (-1), NULL);
int32_t L_7 = (__this->f1);
__this->f1 = ((int32_t)((int32_t)L_7-(int32_t)1));
int32_t L_8 = (__this->f3);
__this->f3 = ((int32_t)((int32_t)L_8+(int32_t)1));
return;
}
}
extern "C" void m1_1616 (t1_126 * __this, t1_33 * p0, const MethodInfo* method)
{
{
t1_170* L_0 = (__this->f2);
t1_33 * L_1 = p0;
int32_t L_2 = (__this->f1);
m1_824(NULL, (t1_33 *)(t1_33 *)L_0, L_1, L_2, NULL);
return;
}
}
extern "C" void m1_1617 (t1_126 * __this, t1_33 * p0, int32_t p1, const MethodInfo* method)
{
{
t1_33 * L_0 = p0;
int32_t L_1 = p1;
int32_t L_2 = (__this->f1);
VirtActionInvoker4< int32_t, t1_33 *, int32_t, int32_t >::Invoke(42 /* System.Void System.Collections.ArrayList::CopyTo(System.Int32,System.Array,System.Int32,System.Int32) */, __this, 0, L_0, L_1, L_2);
return;
}
}
extern TypeInfo* t1_701_TI_var;
extern TypeInfo* t1_653_TI_var;
extern Il2CppCodeGenString* _stringLiteral147;
extern Il2CppCodeGenString* _stringLiteral520;
extern "C" void m1_1618 (t1_126 * __this, int32_t p0, t1_33 * p1, int32_t p2, int32_t p3, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_701_TI_var = il2cpp_codegen_type_info_from_index(2);
t1_653_TI_var = il2cpp_codegen_type_info_from_index(4);
_stringLiteral147 = il2cpp_codegen_string_literal_from_index(147);
_stringLiteral520 = il2cpp_codegen_string_literal_from_index(520);
s_Il2CppMethodIntialized = true;
}
{
t1_33 * L_0 = p1;
if (L_0)
{
goto IL_0011;
}
}
{
t1_701 * L_1 = (t1_701 *)il2cpp_codegen_object_new (t1_701_TI_var);
m1_4570(L_1, _stringLiteral147, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_1);
}
IL_0011:
{
t1_33 * L_2 = p1;
int32_t L_3 = m1_778(L_2, NULL);
if ((((int32_t)L_3) == ((int32_t)1)))
{
goto IL_002d;
}
}
{
t1_653 * L_4 = (t1_653 *)il2cpp_codegen_object_new (t1_653_TI_var);
m1_4563(L_4, _stringLiteral520, _stringLiteral147, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_4);
}
IL_002d:
{
t1_170* L_5 = (__this->f2);
int32_t L_6 = p0;
t1_33 * L_7 = p1;
int32_t L_8 = p2;
int32_t L_9 = p3;
m1_825(NULL, (t1_33 *)(t1_33 *)L_5, L_6, L_7, L_8, L_9, NULL);
return;
}
}
extern TypeInfo* t1_165_TI_var;
extern "C" t1_1 * m1_1619 (t1_126 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_165_TI_var = il2cpp_codegen_type_info_from_index(182);
s_Il2CppMethodIntialized = true;
}
{
t1_165 * L_0 = (t1_165 *)il2cpp_codegen_object_new (t1_165_TI_var);
m1_1505(L_0, __this, NULL);
return L_0;
}
}
extern "C" void m1_1620 (t1_126 * __this, t1_1 * p0, const MethodInfo* method)
{
{
int32_t L_0 = (__this->f1);
t1_1 * L_1 = p0;
VirtActionInvoker2< int32_t, t1_1 * >::Invoke(37 /* System.Void System.Collections.ArrayList::InsertRange(System.Int32,System.Collections.ICollection) */, __this, L_0, L_1);
return;
}
}
extern const MethodInfo* m1_5459_MI_var;
extern "C" void m1_1621 (t1_126 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
m1_5459_MI_var = il2cpp_codegen_method_info_from_index(2147483661);
s_Il2CppMethodIntialized = true;
}
{
t1_170* L_0 = (__this->f2);
int32_t L_1 = (__this->f1);
m1_5459(NULL, L_0, 0, L_1, m1_5459_MI_var);
int32_t L_2 = (__this->f3);
__this->f3 = ((int32_t)((int32_t)L_2+(int32_t)1));
return;
}
}
extern "C" void m1_1622 (t1_126 * __this, t1_1 * p0, const MethodInfo* method)
{
{
t1_170* L_0 = (__this->f2);
int32_t L_1 = (__this->f1);
t1_1 * L_2 = p0;
m1_844(NULL, (t1_33 *)(t1_33 *)L_0, 0, L_1, L_2, NULL);
return;
}
}
extern TypeInfo* t1_170_TI_var;
extern "C" t1_170* m1_1623 (t1_126 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_170_TI_var = il2cpp_codegen_type_info_from_index(19);
s_Il2CppMethodIntialized = true;
}
t1_170* V_0 = {0};
{
int32_t L_0 = (__this->f1);
V_0 = ((t1_170*)SZArrayNew(t1_170_TI_var, L_0));
t1_170* L_1 = V_0;
VirtActionInvoker1< t1_33 * >::Invoke(40 /* System.Void System.Collections.ArrayList::CopyTo(System.Array) */, __this, (t1_33 *)(t1_33 *)L_1);
t1_170* L_2 = V_0;
return L_2;
}
}
extern "C" t1_33 * m1_1624 (t1_126 * __this, t1_37 * p0, const MethodInfo* method)
{
t1_33 * V_0 = {0};
{
t1_37 * L_0 = p0;
int32_t L_1 = (__this->f1);
t1_33 * L_2 = m1_807(NULL, L_0, L_1, NULL);
V_0 = L_2;
t1_33 * L_3 = V_0;
VirtActionInvoker1< t1_33 * >::Invoke(40 /* System.Void System.Collections.ArrayList::CopyTo(System.Array) */, __this, L_3);
t1_33 * L_4 = V_0;
return L_4;
}
}
extern TypeInfo* t1_126_TI_var;
extern "C" t1_1 * m1_1625 (t1_126 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_126_TI_var = il2cpp_codegen_type_info_from_index(55);
s_Il2CppMethodIntialized = true;
}
{
t1_170* L_0 = (__this->f2);
int32_t L_1 = (__this->f1);
t1_126 * L_2 = (t1_126 *)il2cpp_codegen_object_new (t1_126_TI_var);
m1_1593(L_2, L_0, 0, L_1, NULL);
return L_2;
}
}
extern TypeInfo* t1_702_TI_var;
extern "C" void m1_1626 (t1_1 * __this , t1_18* p0, t1_1 * p1, t1_18* p2, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_702_TI_var = il2cpp_codegen_type_info_from_index(27);
s_Il2CppMethodIntialized = true;
}
{
t1_18* L_0 = p0;
t1_1 * L_1 = p1;
t1_18* L_2 = p2;
t1_702 * L_3 = (t1_702 *)il2cpp_codegen_object_new (t1_702_TI_var);
m1_4576(L_3, L_0, L_1, L_2, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_3);
}
}
extern TypeInfo* t1_701_TI_var;
extern TypeInfo* t1_167_TI_var;
extern Il2CppCodeGenString* _stringLiteral509;
extern "C" t1_126 * m1_1627 (t1_1 * __this , t1_126 * p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_701_TI_var = il2cpp_codegen_type_info_from_index(2);
t1_167_TI_var = il2cpp_codegen_type_info_from_index(185);
_stringLiteral509 = il2cpp_codegen_string_literal_from_index(509);
s_Il2CppMethodIntialized = true;
}
{
t1_126 * L_0 = p0;
if (L_0)
{
goto IL_0011;
}
}
{
t1_701 * L_1 = (t1_701 *)il2cpp_codegen_object_new (t1_701_TI_var);
m1_4570(L_1, _stringLiteral509, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_1);
}
IL_0011:
{
t1_126 * L_2 = p0;
bool L_3 = (bool)VirtFuncInvoker0< bool >::Invoke(28 /* System.Boolean System.Collections.ArrayList::get_IsSynchronized() */, L_2);
if (!L_3)
{
goto IL_001e;
}
}
{
t1_126 * L_4 = p0;
return L_4;
}
IL_001e:
{
t1_126 * L_5 = p0;
t1_167 * L_6 = (t1_167 *)il2cpp_codegen_object_new (t1_167_TI_var);
m1_1541(L_6, L_5, NULL);
return L_6;
}
}
extern TypeInfo* t1_701_TI_var;
extern TypeInfo* t1_169_TI_var;
extern Il2CppCodeGenString* _stringLiteral509;
extern "C" t1_126 * m1_1628 (t1_1 * __this , t1_126 * p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_701_TI_var = il2cpp_codegen_type_info_from_index(2);
t1_169_TI_var = il2cpp_codegen_type_info_from_index(186);
_stringLiteral509 = il2cpp_codegen_string_literal_from_index(509);
s_Il2CppMethodIntialized = true;
}
{
t1_126 * L_0 = p0;
if (L_0)
{
goto IL_0011;
}
}
{
t1_701 * L_1 = (t1_701 *)il2cpp_codegen_object_new (t1_701_TI_var);
m1_4570(L_1, _stringLiteral509, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_1);
}
IL_0011:
{
t1_126 * L_2 = p0;
bool L_3 = (bool)VirtFuncInvoker0< bool >::Invoke(27 /* System.Boolean System.Collections.ArrayList::get_IsReadOnly() */, L_2);
if (!L_3)
{
goto IL_001e;
}
}
{
t1_126 * L_4 = p0;
return L_4;
}
IL_001e:
{
t1_126 * L_5 = p0;
t1_169 * L_6 = (t1_169 *)il2cpp_codegen_object_new (t1_169_TI_var);
m1_1583(L_6, L_5, NULL);
return L_6;
}
}
extern "C" void m1_1629 (t1_171 * __this, t1_172 * p0, const MethodInfo* method)
{
{
m1_0(__this, NULL);
__this->f2 = (-1);
t1_172 * L_0 = p0;
__this->f0 = L_0;
t1_172 * L_1 = p0;
int32_t L_2 = (L_1->f2);
__this->f3 = L_2;
return;
}
}
extern "C" t1_1 * m1_1630 (t1_171 * __this, const MethodInfo* method)
{
{
t1_1 * L_0 = m1_6(__this, NULL);
return L_0;
}
}
extern TypeInfo* t1_740_TI_var;
extern TypeInfo* t1_23_TI_var;
extern Il2CppCodeGenString* _stringLiteral530;
extern Il2CppCodeGenString* _stringLiteral531;
extern "C" t1_1 * m1_1631 (t1_171 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_740_TI_var = il2cpp_codegen_type_info_from_index(71);
t1_23_TI_var = il2cpp_codegen_type_info_from_index(49);
_stringLiteral530 = il2cpp_codegen_string_literal_from_index(530);
_stringLiteral531 = il2cpp_codegen_string_literal_from_index(531);
s_Il2CppMethodIntialized = true;
}
{
int32_t L_0 = (__this->f2);
if ((!(((uint32_t)L_0) == ((uint32_t)(-1)))))
{
goto IL_0017;
}
}
{
t1_740 * L_1 = (t1_740 *)il2cpp_codegen_object_new (t1_740_TI_var);
m1_5030(L_1, _stringLiteral530, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_1);
}
IL_0017:
{
int32_t L_2 = (__this->f2);
t1_172 * L_3 = (__this->f0);
int32_t L_4 = m1_1638(L_3, NULL);
if ((((int32_t)L_2) < ((int32_t)L_4)))
{
goto IL_0038;
}
}
{
t1_740 * L_5 = (t1_740 *)il2cpp_codegen_object_new (t1_740_TI_var);
m1_5030(L_5, _stringLiteral531, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_5);
}
IL_0038:
{
bool L_6 = (__this->f1);
bool L_7 = L_6;
t1_1 * L_8 = Box(t1_23_TI_var, &L_7);
return L_8;
}
}
extern "C" bool m1_1632 (t1_171 * __this, const MethodInfo* method)
{
int32_t V_0 = 0;
{
m1_1634(__this, NULL);
int32_t L_0 = (__this->f2);
t1_172 * L_1 = (__this->f0);
int32_t L_2 = m1_1638(L_1, NULL);
if ((((int32_t)L_0) >= ((int32_t)((int32_t)((int32_t)L_2-(int32_t)1)))))
{
goto IL_0042;
}
}
{
t1_172 * L_3 = (__this->f0);
int32_t L_4 = (__this->f2);
int32_t L_5 = ((int32_t)((int32_t)L_4+(int32_t)1));
V_0 = L_5;
__this->f2 = L_5;
int32_t L_6 = V_0;
bool L_7 = m1_1640(L_3, L_6, NULL);
__this->f1 = L_7;
return 1;
}
IL_0042:
{
t1_172 * L_8 = (__this->f0);
int32_t L_9 = m1_1638(L_8, NULL);
__this->f2 = L_9;
return 0;
}
}
extern "C" void m1_1633 (t1_171 * __this, const MethodInfo* method)
{
{
m1_1634(__this, NULL);
__this->f2 = (-1);
return;
}
}
extern TypeInfo* t1_740_TI_var;
extern "C" void m1_1634 (t1_171 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_740_TI_var = il2cpp_codegen_type_info_from_index(71);
s_Il2CppMethodIntialized = true;
}
{
int32_t L_0 = (__this->f3);
t1_172 * L_1 = (__this->f0);
int32_t L_2 = (L_1->f2);
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_001c;
}
}
{
t1_740 * L_3 = (t1_740 *)il2cpp_codegen_object_new (t1_740_TI_var);
m1_5029(L_3, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_3);
}
IL_001c:
{
return;
}
}
extern TypeInfo* t1_701_TI_var;
extern TypeInfo* t1_173_TI_var;
extern Il2CppCodeGenString* _stringLiteral526;
extern "C" void m1_1635 (t1_172 * __this, t1_172 * p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_701_TI_var = il2cpp_codegen_type_info_from_index(2);
t1_173_TI_var = il2cpp_codegen_type_info_from_index(47);
_stringLiteral526 = il2cpp_codegen_string_literal_from_index(526);
s_Il2CppMethodIntialized = true;
}
{
m1_0(__this, NULL);
t1_172 * L_0 = p0;
if (L_0)
{
goto IL_0017;
}
}
{
t1_701 * L_1 = (t1_701 *)il2cpp_codegen_object_new (t1_701_TI_var);
m1_4570(L_1, _stringLiteral526, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_1);
}
IL_0017:
{
t1_172 * L_2 = p0;
int32_t L_3 = (L_2->f1);
__this->f1 = L_3;
int32_t L_4 = (__this->f1);
__this->f0 = ((t1_173*)SZArrayNew(t1_173_TI_var, ((int32_t)((int32_t)((int32_t)((int32_t)L_4+(int32_t)((int32_t)31)))/(int32_t)((int32_t)32)))));
t1_173* L_5 = (__this->f0);
if ((!(((uint32_t)(((int32_t)((int32_t)(((t1_33 *)L_5)->max_length))))) == ((uint32_t)1))))
{
goto IL_005d;
}
}
{
t1_173* L_6 = (__this->f0);
t1_172 * L_7 = p0;
t1_173* L_8 = (L_7->f0);
int32_t L_9 = 0;
*((int32_t*)(int32_t*)SZArrayLdElema(L_6, 0, sizeof(int32_t))) = (int32_t)(*(int32_t*)(int32_t*)SZArrayLdElema(L_8, L_9, sizeof(int32_t)));
goto IL_0076;
}
IL_005d:
{
t1_172 * L_10 = p0;
t1_173* L_11 = (L_10->f0);
t1_173* L_12 = (__this->f0);
t1_173* L_13 = (__this->f0);
m1_824(NULL, (t1_33 *)(t1_33 *)L_11, (t1_33 *)(t1_33 *)L_12, (((int32_t)((int32_t)(((t1_33 *)L_13)->max_length)))), NULL);
}
IL_0076:
{
return;
}
}
extern TypeInfo* t1_702_TI_var;
extern TypeInfo* t1_173_TI_var;
extern Il2CppCodeGenString* _stringLiteral45;
extern "C" void m1_1636 (t1_172 * __this, int32_t p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_702_TI_var = il2cpp_codegen_type_info_from_index(27);
t1_173_TI_var = il2cpp_codegen_type_info_from_index(47);
_stringLiteral45 = il2cpp_codegen_string_literal_from_index(45);
s_Il2CppMethodIntialized = true;
}
{
m1_0(__this, NULL);
int32_t L_0 = p0;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0018;
}
}
{
t1_702 * L_1 = (t1_702 *)il2cpp_codegen_object_new (t1_702_TI_var);
m1_4574(L_1, _stringLiteral45, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_1);
}
IL_0018:
{
int32_t L_2 = p0;
__this->f1 = L_2;
int32_t L_3 = (__this->f1);
__this->f0 = ((t1_173*)SZArrayNew(t1_173_TI_var, ((int32_t)((int32_t)((int32_t)((int32_t)L_3+(int32_t)((int32_t)31)))/(int32_t)((int32_t)32)))));
return;
}
}
extern "C" uint8_t m1_1637 (t1_172 * __this, int32_t p0, const MethodInfo* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = p0;
V_0 = ((int32_t)((int32_t)L_0/(int32_t)4));
int32_t L_1 = p0;
V_1 = ((int32_t)((int32_t)((int32_t)((int32_t)L_1%(int32_t)4))*(int32_t)8));
t1_173* L_2 = (__this->f0);
int32_t L_3 = V_0;
int32_t L_4 = L_3;
int32_t L_5 = V_1;
V_2 = ((int32_t)((int32_t)(*(int32_t*)(int32_t*)SZArrayLdElema(L_2, L_4, sizeof(int32_t)))&(int32_t)((int32_t)((int32_t)((int32_t)255)<<(int32_t)((int32_t)((int32_t)L_5&(int32_t)((int32_t)31)))))));
int32_t L_6 = V_2;
int32_t L_7 = V_1;
return (((int32_t)((uint8_t)((int32_t)((int32_t)((int32_t)((int32_t)L_6>>(int32_t)((int32_t)((int32_t)L_7&(int32_t)((int32_t)31)))))&(int32_t)((int32_t)255))))));
}
}
extern "C" int32_t m1_1638 (t1_172 * __this, const MethodInfo* method)
{
{
int32_t L_0 = (__this->f1);
return L_0;
}
}
extern "C" bool m1_1639 (t1_172 * __this, const MethodInfo* method)
{
{
return 0;
}
}
extern "C" bool m1_1640 (t1_172 * __this, int32_t p0, const MethodInfo* method)
{
{
int32_t L_0 = p0;
bool L_1 = m1_1646(__this, L_0, NULL);
return L_1;
}
}
extern "C" void m1_1641 (t1_172 * __this, int32_t p0, bool p1, const MethodInfo* method)
{
{
int32_t L_0 = p0;
bool L_1 = p1;
m1_1647(__this, L_0, L_1, NULL);
return;
}
}
extern "C" int32_t m1_1642 (t1_172 * __this, const MethodInfo* method)
{
{
int32_t L_0 = (__this->f1);
return L_0;
}
}
extern "C" t1_1 * m1_1643 (t1_172 * __this, const MethodInfo* method)
{
{
return __this;
}
}
extern TypeInfo* t1_172_TI_var;
extern "C" t1_1 * m1_1644 (t1_172 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_172_TI_var = il2cpp_codegen_type_info_from_index(187);
s_Il2CppMethodIntialized = true;
}
{
t1_172 * L_0 = (t1_172 *)il2cpp_codegen_object_new (t1_172_TI_var);
m1_1635(L_0, __this, NULL);
return L_0;
}
}
extern TypeInfo* t1_701_TI_var;
extern TypeInfo* t1_702_TI_var;
extern TypeInfo* t1_653_TI_var;
extern TypeInfo* t1_272_TI_var;
extern TypeInfo* t1_83_TI_var;
extern TypeInfo* t1_173_TI_var;
extern Il2CppCodeGenString* _stringLiteral147;
extern Il2CppCodeGenString* _stringLiteral144;
extern Il2CppCodeGenString* _stringLiteral527;
extern Il2CppCodeGenString* _stringLiteral528;
extern Il2CppCodeGenString* _stringLiteral529;
extern "C" void m1_1645 (t1_172 * __this, t1_33 * p0, int32_t p1, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_701_TI_var = il2cpp_codegen_type_info_from_index(2);
t1_702_TI_var = il2cpp_codegen_type_info_from_index(27);
t1_653_TI_var = il2cpp_codegen_type_info_from_index(4);
t1_272_TI_var = il2cpp_codegen_type_info_from_index(188);
t1_83_TI_var = il2cpp_codegen_type_info_from_index(42);
t1_173_TI_var = il2cpp_codegen_type_info_from_index(47);
_stringLiteral147 = il2cpp_codegen_string_literal_from_index(147);
_stringLiteral144 = il2cpp_codegen_string_literal_from_index(144);
_stringLiteral527 = il2cpp_codegen_string_literal_from_index(527);
_stringLiteral528 = il2cpp_codegen_string_literal_from_index(528);
_stringLiteral529 = il2cpp_codegen_string_literal_from_index(529);
s_Il2CppMethodIntialized = true;
}
t1_272* V_0 = {0};
int32_t V_1 = 0;
int32_t V_2 = 0;
t1_83* V_3 = {0};
int32_t V_4 = 0;
{
t1_33 * L_0 = p0;
if (L_0)
{
goto IL_0011;
}
}
{
t1_701 * L_1 = (t1_701 *)il2cpp_codegen_object_new (t1_701_TI_var);
m1_4570(L_1, _stringLiteral147, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_1);
}
IL_0011:
{
int32_t L_2 = p1;
if ((((int32_t)L_2) >= ((int32_t)0)))
{
goto IL_0023;
}
}
{
t1_702 * L_3 = (t1_702 *)il2cpp_codegen_object_new (t1_702_TI_var);
m1_4574(L_3, _stringLiteral144, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_3);
}
IL_0023:
{
t1_33 * L_4 = p0;
int32_t L_5 = m1_778(L_4, NULL);
if ((((int32_t)L_5) == ((int32_t)1)))
{
goto IL_003f;
}
}
{
t1_653 * L_6 = (t1_653 *)il2cpp_codegen_object_new (t1_653_TI_var);
m1_4563(L_6, _stringLiteral147, _stringLiteral527, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_6);
}
IL_003f:
{
int32_t L_7 = p1;
t1_33 * L_8 = p0;
int32_t L_9 = m1_776(L_8, NULL);
if ((((int32_t)L_7) < ((int32_t)L_9)))
{
goto IL_0067;
}
}
{
int32_t L_10 = (__this->f1);
if ((((int32_t)L_10) <= ((int32_t)0)))
{
goto IL_0067;
}
}
{
t1_653 * L_11 = (t1_653 *)il2cpp_codegen_object_new (t1_653_TI_var);
m1_4563(L_11, _stringLiteral144, _stringLiteral528, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_11);
}
IL_0067:
{
t1_33 * L_12 = p0;
if (!((t1_272*)IsInst(L_12, t1_272_TI_var)))
{
goto IL_00ba;
}
}
{
t1_33 * L_13 = p0;
int32_t L_14 = m1_776(L_13, NULL);
int32_t L_15 = p1;
int32_t L_16 = (__this->f1);
if ((((int32_t)((int32_t)((int32_t)L_14-(int32_t)L_15))) >= ((int32_t)L_16)))
{
goto IL_008b;
}
}
{
t1_653 * L_17 = (t1_653 *)il2cpp_codegen_object_new (t1_653_TI_var);
m1_4560(L_17, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_17);
}
IL_008b:
{
t1_33 * L_18 = p0;
V_0 = ((t1_272*)Castclass(L_18, t1_272_TI_var));
V_1 = 0;
goto IL_00a9;
}
IL_0099:
{
t1_272* L_19 = V_0;
int32_t L_20 = p1;
int32_t L_21 = V_1;
int32_t L_22 = V_1;
bool L_23 = m1_1640(__this, L_22, NULL);
*((bool*)(bool*)SZArrayLdElema(L_19, ((int32_t)((int32_t)L_20+(int32_t)L_21)), sizeof(bool))) = (bool)L_23;
int32_t L_24 = V_1;
V_1 = ((int32_t)((int32_t)L_24+(int32_t)1));
}
IL_00a9:
{
int32_t L_25 = V_1;
int32_t L_26 = (__this->f1);
if ((((int32_t)L_25) < ((int32_t)L_26)))
{
goto IL_0099;
}
}
{
goto IL_014e;
}
IL_00ba:
{
t1_33 * L_27 = p0;
if (!((t1_83*)IsInst(L_27, t1_83_TI_var)))
{
goto IL_0114;
}
}
{
int32_t L_28 = (__this->f1);
V_2 = ((int32_t)((int32_t)((int32_t)((int32_t)L_28+(int32_t)7))/(int32_t)8));
t1_33 * L_29 = p0;
int32_t L_30 = m1_776(L_29, NULL);
int32_t L_31 = p1;
int32_t L_32 = V_2;
if ((((int32_t)((int32_t)((int32_t)L_30-(int32_t)L_31))) >= ((int32_t)L_32)))
{
goto IL_00e4;
}
}
{
t1_653 * L_33 = (t1_653 *)il2cpp_codegen_object_new (t1_653_TI_var);
m1_4560(L_33, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_33);
}
IL_00e4:
{
t1_33 * L_34 = p0;
V_3 = ((t1_83*)Castclass(L_34, t1_83_TI_var));
V_4 = 0;
goto IL_0107;
}
IL_00f3:
{
t1_83* L_35 = V_3;
int32_t L_36 = p1;
int32_t L_37 = V_4;
int32_t L_38 = V_4;
uint8_t L_39 = m1_1637(__this, L_38, NULL);
*((uint8_t*)(uint8_t*)SZArrayLdElema(L_35, ((int32_t)((int32_t)L_36+(int32_t)L_37)), sizeof(uint8_t))) = (uint8_t)L_39;
int32_t L_40 = V_4;
V_4 = ((int32_t)((int32_t)L_40+(int32_t)1));
}
IL_0107:
{
int32_t L_41 = V_4;
int32_t L_42 = V_2;
if ((((int32_t)L_41) < ((int32_t)L_42)))
{
goto IL_00f3;
}
}
{
goto IL_014e;
}
IL_0114:
{
t1_33 * L_43 = p0;
if (!((t1_173*)IsInst(L_43, t1_173_TI_var)))
{
goto IL_013e;
}
}
{
t1_173* L_44 = (__this->f0);
t1_33 * L_45 = p0;
int32_t L_46 = p1;
int32_t L_47 = (__this->f1);
m1_825(NULL, (t1_33 *)(t1_33 *)L_44, 0, L_45, L_46, ((int32_t)((int32_t)((int32_t)((int32_t)L_47+(int32_t)((int32_t)31)))/(int32_t)((int32_t)32))), NULL);
goto IL_014e;
}
IL_013e:
{
t1_653 * L_48 = (t1_653 *)il2cpp_codegen_object_new (t1_653_TI_var);
m1_4563(L_48, _stringLiteral147, _stringLiteral529, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_48);
}
IL_014e:
{
return;
}
}
extern TypeInfo* t1_702_TI_var;
extern "C" bool m1_1646 (t1_172 * __this, int32_t p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_702_TI_var = il2cpp_codegen_type_info_from_index(27);
s_Il2CppMethodIntialized = true;
}
{
int32_t L_0 = p0;
if ((((int32_t)L_0) < ((int32_t)0)))
{
goto IL_0013;
}
}
{
int32_t L_1 = p0;
int32_t L_2 = (__this->f1);
if ((((int32_t)L_1) < ((int32_t)L_2)))
{
goto IL_0019;
}
}
IL_0013:
{
t1_702 * L_3 = (t1_702 *)il2cpp_codegen_object_new (t1_702_TI_var);
m1_4573(L_3, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_3);
}
IL_0019:
{
t1_173* L_4 = (__this->f0);
int32_t L_5 = p0;
int32_t L_6 = ((int32_t)((int32_t)L_5>>(int32_t)5));
int32_t L_7 = p0;
return ((((int32_t)((((int32_t)((int32_t)((int32_t)(*(int32_t*)(int32_t*)SZArrayLdElema(L_4, L_6, sizeof(int32_t)))&(int32_t)((int32_t)((int32_t)1<<(int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_7&(int32_t)((int32_t)31)))&(int32_t)((int32_t)31)))))))) == ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
}
extern TypeInfo* t1_702_TI_var;
extern "C" void m1_1647 (t1_172 * __this, int32_t p0, bool p1, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_702_TI_var = il2cpp_codegen_type_info_from_index(27);
s_Il2CppMethodIntialized = true;
}
{
int32_t L_0 = p0;
if ((((int32_t)L_0) < ((int32_t)0)))
{
goto IL_0013;
}
}
{
int32_t L_1 = p0;
int32_t L_2 = (__this->f1);
if ((((int32_t)L_1) < ((int32_t)L_2)))
{
goto IL_0019;
}
}
IL_0013:
{
t1_702 * L_3 = (t1_702 *)il2cpp_codegen_object_new (t1_702_TI_var);
m1_4573(L_3, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_3);
}
IL_0019:
{
bool L_4 = p1;
if (!L_4)
{
goto IL_0042;
}
}
{
t1_173* L_5 = (__this->f0);
int32_t L_6 = p0;
int32_t* L_7 = ((int32_t*)(int32_t*)SZArrayLdElema(L_5, ((int32_t)((int32_t)L_6>>(int32_t)5)), sizeof(int32_t)));
int32_t L_8 = p0;
*((int32_t*)(L_7)) = (int32_t)((int32_t)((int32_t)(*((int32_t*)L_7))|(int32_t)((int32_t)((int32_t)1<<(int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_8&(int32_t)((int32_t)31)))&(int32_t)((int32_t)31)))&(int32_t)((int32_t)31)))))));
goto IL_0061;
}
IL_0042:
{
t1_173* L_9 = (__this->f0);
int32_t L_10 = p0;
int32_t* L_11 = ((int32_t*)(int32_t*)SZArrayLdElema(L_9, ((int32_t)((int32_t)L_10>>(int32_t)5)), sizeof(int32_t)));
int32_t L_12 = p0;
*((int32_t*)(L_11)) = (int32_t)((int32_t)((int32_t)(*((int32_t*)L_11))&(int32_t)((~((int32_t)((int32_t)1<<(int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_12&(int32_t)((int32_t)31)))&(int32_t)((int32_t)31)))&(int32_t)((int32_t)31)))))))));
}
IL_0061:
{
int32_t L_13 = (__this->f2);
__this->f2 = ((int32_t)((int32_t)L_13+(int32_t)1));
return;
}
}
extern TypeInfo* t1_171_TI_var;
extern "C" t1_1 * m1_1648 (t1_172 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_171_TI_var = il2cpp_codegen_type_info_from_index(189);
s_Il2CppMethodIntialized = true;
}
{
t1_171 * L_0 = (t1_171 *)il2cpp_codegen_object_new (t1_171_TI_var);
m1_1629(L_0, __this, NULL);
return L_0;
}
}
extern TypeInfo* t1_175_TI_var;
extern "C" void m1_1649 (t1_174 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_175_TI_var = il2cpp_codegen_type_info_from_index(28);
s_Il2CppMethodIntialized = true;
}
{
m1_0(__this, NULL);
IL2CPP_RUNTIME_CLASS_INIT(t1_175_TI_var);
t1_175 * L_0 = m1_1923(NULL, NULL);
__this->f2 = L_0;
return;
}
}
extern "C" void m1_1650 (t1_174 * __this, bool p0, const MethodInfo* method)
{
{
m1_0(__this, NULL);
return;
}
}
extern TypeInfo* t1_174_TI_var;
extern "C" void m1_1651 (t1_1 * __this , const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_174_TI_var = il2cpp_codegen_type_info_from_index(190);
s_Il2CppMethodIntialized = true;
}
{
t1_174 * L_0 = (t1_174 *)il2cpp_codegen_object_new (t1_174_TI_var);
m1_1649(L_0, NULL);
((t1_174_SFs*)t1_174_TI_var->static_fields)->f0 = L_0;
t1_174 * L_1 = (t1_174 *)il2cpp_codegen_object_new (t1_174_TI_var);
m1_1650(L_1, 1, NULL);
((t1_174_SFs*)t1_174_TI_var->static_fields)->f1 = L_1;
return;
}
}
extern TypeInfo* t1_174_TI_var;
extern "C" t1_174 * m1_1652 (t1_1 * __this , const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_174_TI_var = il2cpp_codegen_type_info_from_index(190);
s_Il2CppMethodIntialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(t1_174_TI_var);
t1_174 * L_0 = ((t1_174_SFs*)t1_174_TI_var->static_fields)->f1;
return L_0;
}
}
extern TypeInfo* t1_18_TI_var;
extern TypeInfo* t1_175_TI_var;
extern TypeInfo* t1_178_TI_var;
extern "C" int32_t m1_1653 (t1_174 * __this, t1_1 * p0, t1_1 * p1, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_18_TI_var = il2cpp_codegen_type_info_from_index(11);
t1_175_TI_var = il2cpp_codegen_type_info_from_index(28);
t1_178_TI_var = il2cpp_codegen_type_info_from_index(77);
s_Il2CppMethodIntialized = true;
}
t1_18* V_0 = {0};
t1_18* V_1 = {0};
{
t1_1 * L_0 = p0;
V_0 = ((t1_18*)IsInstSealed(L_0, t1_18_TI_var));
t1_1 * L_1 = p1;
V_1 = ((t1_18*)IsInstSealed(L_1, t1_18_TI_var));
t1_18* L_2 = V_0;
if (!L_2)
{
goto IL_004c;
}
}
{
t1_18* L_3 = V_1;
if (!L_3)
{
goto IL_004c;
}
}
{
t1_175 * L_4 = (__this->f2);
if (!L_4)
{
goto IL_0039;
}
}
{
t1_175 * L_5 = (__this->f2);
t1_179 * L_6 = (t1_179 *)VirtFuncInvoker0< t1_179 * >::Invoke(11 /* System.Globalization.CompareInfo System.Globalization.CultureInfo::get_CompareInfo() */, L_5);
t1_18* L_7 = V_0;
t1_18* L_8 = V_1;
int32_t L_9 = (int32_t)VirtFuncInvoker3< int32_t, t1_18*, t1_18*, int32_t >::Invoke(6 /* System.Int32 System.Globalization.CompareInfo::Compare(System.String,System.String,System.Globalization.CompareOptions) */, L_6, L_7, L_8, 1);
return L_9;
}
IL_0039:
{
IL2CPP_RUNTIME_CLASS_INIT(t1_175_TI_var);
t1_175 * L_10 = m1_1922(NULL, NULL);
t1_179 * L_11 = (t1_179 *)VirtFuncInvoker0< t1_179 * >::Invoke(11 /* System.Globalization.CompareInfo System.Globalization.CultureInfo::get_CompareInfo() */, L_10);
t1_18* L_12 = V_0;
t1_18* L_13 = V_1;
int32_t L_14 = (int32_t)VirtFuncInvoker3< int32_t, t1_18*, t1_18*, int32_t >::Invoke(6 /* System.Int32 System.Globalization.CompareInfo::Compare(System.String,System.String,System.Globalization.CompareOptions) */, L_11, L_12, L_13, 1);
return L_14;
}
IL_004c:
{
IL2CPP_RUNTIME_CLASS_INIT(t1_178_TI_var);
t1_178 * L_15 = ((t1_178_SFs*)t1_178_TI_var->static_fields)->f0;
t1_1 * L_16 = p0;
t1_1 * L_17 = p1;
int32_t L_18 = m1_1692(L_15, L_16, L_17, NULL);
return L_18;
}
}
extern TypeInfo* t1_175_TI_var;
extern TypeInfo* t1_176_TI_var;
extern "C" void m1_1654 (t1_176 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_175_TI_var = il2cpp_codegen_type_info_from_index(28);
t1_176_TI_var = il2cpp_codegen_type_info_from_index(191);
s_Il2CppMethodIntialized = true;
}
t1_175 * V_0 = {0};
{
m1_0(__this, NULL);
IL2CPP_RUNTIME_CLASS_INIT(t1_175_TI_var);
t1_175 * L_0 = m1_1923(NULL, NULL);
V_0 = L_0;
t1_175 * L_1 = V_0;
t1_175 * L_2 = m1_1922(NULL, NULL);
IL2CPP_RUNTIME_CLASS_INIT(t1_176_TI_var);
bool L_3 = m1_1657(NULL, L_1, L_2, NULL);
if (L_3)
{
goto IL_002c;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(t1_175_TI_var);
t1_175 * L_4 = m1_1923(NULL, NULL);
t1_97 * L_5 = (t1_97 *)VirtFuncInvoker0< t1_97 * >::Invoke(9 /* System.Globalization.TextInfo System.Globalization.CultureInfo::get_TextInfo() */, L_4);
__this->f2 = L_5;
}
IL_002c:
{
return;
}
}
extern TypeInfo* t1_701_TI_var;
extern TypeInfo* t1_175_TI_var;
extern TypeInfo* t1_176_TI_var;
extern Il2CppCodeGenString* _stringLiteral32;
extern "C" void m1_1655 (t1_176 * __this, t1_175 * p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_701_TI_var = il2cpp_codegen_type_info_from_index(2);
t1_175_TI_var = il2cpp_codegen_type_info_from_index(28);
t1_176_TI_var = il2cpp_codegen_type_info_from_index(191);
_stringLiteral32 = il2cpp_codegen_string_literal_from_index(32);
s_Il2CppMethodIntialized = true;
}
{
m1_0(__this, NULL);
t1_175 * L_0 = p0;
if (L_0)
{
goto IL_0017;
}
}
{
t1_701 * L_1 = (t1_701 *)il2cpp_codegen_object_new (t1_701_TI_var);
m1_4570(L_1, _stringLiteral32, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_1);
}
IL_0017:
{
t1_175 * L_2 = p0;
IL2CPP_RUNTIME_CLASS_INIT(t1_175_TI_var);
t1_175 * L_3 = m1_1922(NULL, NULL);
IL2CPP_RUNTIME_CLASS_INIT(t1_176_TI_var);
bool L_4 = m1_1657(NULL, L_2, L_3, NULL);
if (L_4)
{
goto IL_0033;
}
}
{
t1_175 * L_5 = p0;
t1_97 * L_6 = (t1_97 *)VirtFuncInvoker0< t1_97 * >::Invoke(9 /* System.Globalization.TextInfo System.Globalization.CultureInfo::get_TextInfo() */, L_5);
__this->f2 = L_6;
}
IL_0033:
{
return;
}
}
extern TypeInfo* t1_175_TI_var;
extern TypeInfo* t1_176_TI_var;
extern TypeInfo* t1_1_TI_var;
extern "C" void m1_1656 (t1_1 * __this , const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_175_TI_var = il2cpp_codegen_type_info_from_index(28);
t1_176_TI_var = il2cpp_codegen_type_info_from_index(191);
t1_1_TI_var = il2cpp_codegen_type_info_from_index(0);
s_Il2CppMethodIntialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(t1_175_TI_var);
t1_175 * L_0 = m1_1922(NULL, NULL);
t1_176 * L_1 = (t1_176 *)il2cpp_codegen_object_new (t1_176_TI_var);
m1_1655(L_1, L_0, NULL);
((t1_176_SFs*)t1_176_TI_var->static_fields)->f0 = L_1;
t1_1 * L_2 = (t1_1 *)il2cpp_codegen_object_new (t1_1_TI_var);
m1_0(L_2, NULL);
((t1_176_SFs*)t1_176_TI_var->static_fields)->f1 = L_2;
return;
}
}
extern TypeInfo* t1_18_TI_var;
extern "C" bool m1_1657 (t1_1 * __this , t1_175 * p0, t1_175 * p1, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_18_TI_var = il2cpp_codegen_type_info_from_index(11);
s_Il2CppMethodIntialized = true;
}
{
t1_175 * L_0 = p0;
t1_18* L_1 = (t1_18*)VirtFuncInvoker0< t1_18* >::Invoke(7 /* System.String System.Globalization.CultureInfo::get_Name() */, L_0);
t1_175 * L_2 = p1;
t1_18* L_3 = (t1_18*)VirtFuncInvoker0< t1_18* >::Invoke(7 /* System.String System.Globalization.CultureInfo::get_Name() */, L_2);
IL2CPP_RUNTIME_CLASS_INIT(t1_18_TI_var);
bool L_4 = m1_456(NULL, L_1, L_3, NULL);
return L_4;
}
}
extern TypeInfo* t1_18_TI_var;
extern "C" bool m1_1658 (t1_1 * __this , t1_97 * p0, t1_175 * p1, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_18_TI_var = il2cpp_codegen_type_info_from_index(11);
s_Il2CppMethodIntialized = true;
}
{
t1_97 * L_0 = p0;
t1_18* L_1 = m1_2050(L_0, NULL);
t1_175 * L_2 = p1;
t1_18* L_3 = (t1_18*)VirtFuncInvoker0< t1_18* >::Invoke(7 /* System.String System.Globalization.CultureInfo::get_Name() */, L_2);
IL2CPP_RUNTIME_CLASS_INIT(t1_18_TI_var);
bool L_4 = m1_456(NULL, L_1, L_3, NULL);
return L_4;
}
}
extern TypeInfo* t1_176_TI_var;
extern "C" t1_176 * m1_1659 (t1_1 * __this , const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_176_TI_var = il2cpp_codegen_type_info_from_index(191);
s_Il2CppMethodIntialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(t1_176_TI_var);
t1_176 * L_0 = ((t1_176_SFs*)t1_176_TI_var->static_fields)->f0;
return L_0;
}
}
extern TypeInfo* t1_701_TI_var;
extern TypeInfo* t1_18_TI_var;
extern TypeInfo* t1_175_TI_var;
extern TypeInfo* t1_176_TI_var;
extern TypeInfo* t1_17_TI_var;
extern Il2CppCodeGenString* _stringLiteral532;
extern "C" int32_t m1_1660 (t1_176 * __this, t1_1 * p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_701_TI_var = il2cpp_codegen_type_info_from_index(2);
t1_18_TI_var = il2cpp_codegen_type_info_from_index(11);
t1_175_TI_var = il2cpp_codegen_type_info_from_index(28);
t1_176_TI_var = il2cpp_codegen_type_info_from_index(191);
t1_17_TI_var = il2cpp_codegen_type_info_from_index(9);
_stringLiteral532 = il2cpp_codegen_string_literal_from_index(532);
s_Il2CppMethodIntialized = true;
}
t1_18* V_0 = {0};
int32_t V_1 = 0;
uint16_t V_2 = 0x0;
int32_t V_3 = 0;
int32_t V_4 = 0;
{
t1_1 * L_0 = p0;
if (L_0)
{
goto IL_0011;
}
}
{
t1_701 * L_1 = (t1_701 *)il2cpp_codegen_object_new (t1_701_TI_var);
m1_4570(L_1, _stringLiteral532, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_1);
}
IL_0011:
{
t1_1 * L_2 = p0;
V_0 = ((t1_18*)IsInstSealed(L_2, t1_18_TI_var));
t1_18* L_3 = V_0;
if (L_3)
{
goto IL_0025;
}
}
{
t1_1 * L_4 = p0;
int32_t L_5 = (int32_t)VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, L_4);
return L_5;
}
IL_0025:
{
V_1 = 0;
t1_97 * L_6 = (__this->f2);
if (!L_6)
{
goto IL_007f;
}
}
{
t1_97 * L_7 = (__this->f2);
IL2CPP_RUNTIME_CLASS_INIT(t1_175_TI_var);
t1_175 * L_8 = m1_1922(NULL, NULL);
IL2CPP_RUNTIME_CLASS_INIT(t1_176_TI_var);
bool L_9 = m1_1658(NULL, L_7, L_8, NULL);
if (L_9)
{
goto IL_007f;
}
}
{
t1_97 * L_10 = (__this->f2);
t1_18* L_11 = V_0;
t1_18* L_12 = (t1_18*)VirtFuncInvoker1< t1_18*, t1_18* >::Invoke(9 /* System.String System.Globalization.TextInfo::ToLower(System.String) */, L_10, L_11);
V_0 = L_12;
V_3 = 0;
goto IL_006e;
}
IL_005b:
{
t1_18* L_13 = V_0;
int32_t L_14 = V_3;
uint16_t L_15 = m1_344(L_13, L_14, NULL);
V_2 = L_15;
int32_t L_16 = V_1;
uint16_t L_17 = V_2;
V_1 = ((int32_t)((int32_t)((int32_t)((int32_t)L_16*(int32_t)((int32_t)31)))+(int32_t)L_17));
int32_t L_18 = V_3;
V_3 = ((int32_t)((int32_t)L_18+(int32_t)1));
}
IL_006e:
{
int32_t L_19 = V_3;
t1_18* L_20 = V_0;
int32_t L_21 = m1_430(L_20, NULL);
if ((((int32_t)L_19) < ((int32_t)L_21)))
{
goto IL_005b;
}
}
{
goto IL_00b4;
}
IL_007f:
{
V_4 = 0;
goto IL_00a7;
}
IL_0087:
{
t1_18* L_22 = V_0;
int32_t L_23 = V_4;
uint16_t L_24 = m1_344(L_22, L_23, NULL);
IL2CPP_RUNTIME_CLASS_INIT(t1_175_TI_var);
t1_175 * L_25 = m1_1922(NULL, NULL);
IL2CPP_RUNTIME_CLASS_INIT(t1_17_TI_var);
uint16_t L_26 = m1_313(NULL, L_24, L_25, NULL);
V_2 = L_26;
int32_t L_27 = V_1;
uint16_t L_28 = V_2;
V_1 = ((int32_t)((int32_t)((int32_t)((int32_t)L_27*(int32_t)((int32_t)31)))+(int32_t)L_28));
int32_t L_29 = V_4;
V_4 = ((int32_t)((int32_t)L_29+(int32_t)1));
}
IL_00a7:
{
int32_t L_30 = V_4;
t1_18* L_31 = V_0;
int32_t L_32 = m1_430(L_31, NULL);
if ((((int32_t)L_30) < ((int32_t)L_32)))
{
goto IL_0087;
}
}
IL_00b4:
{
int32_t L_33 = V_1;
return L_33;
}
}
extern "C" void m1_1661 (t1_144 * __this, const MethodInfo* method)
{
{
m1_0(__this, NULL);
return;
}
}
extern "C" void m1_1662 (t1_144 * __this, t1_33 * p0, int32_t p1, const MethodInfo* method)
{
{
t1_126 * L_0 = m1_1678(__this, NULL);
t1_33 * L_1 = p0;
int32_t L_2 = p1;
VirtActionInvoker2< t1_33 *, int32_t >::Invoke(41 /* System.Void System.Collections.ArrayList::CopyTo(System.Array,System.Int32) */, L_0, L_1, L_2);
return;
}
}
extern "C" t1_1 * m1_1663 (t1_144 * __this, const MethodInfo* method)
{
{
t1_126 * L_0 = m1_1678(__this, NULL);
t1_1 * L_1 = (t1_1 *)VirtFuncInvoker0< t1_1 * >::Invoke(29 /* System.Object System.Collections.ArrayList::get_SyncRoot() */, L_0);
return L_1;
}
}
extern "C" bool m1_1664 (t1_144 * __this, const MethodInfo* method)
{
{
t1_126 * L_0 = m1_1678(__this, NULL);
bool L_1 = (bool)VirtFuncInvoker0< bool >::Invoke(28 /* System.Boolean System.Collections.ArrayList::get_IsSynchronized() */, L_0);
return L_1;
}
}
extern TypeInfo* t1_1_TI_var;
extern "C" int32_t m1_1665 (t1_144 * __this, t1_1 * p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_1_TI_var = il2cpp_codegen_type_info_from_index(0);
s_Il2CppMethodIntialized = true;
}
int32_t V_0 = 0;
t1_43 * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
t1_43 * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
t1_1 * L_0 = p0;
VirtActionInvoker1< t1_1 * >::Invoke(28 /* System.Void System.Collections.CollectionBase::OnValidate(System.Object) */, __this, L_0);
t1_126 * L_1 = m1_1678(__this, NULL);
int32_t L_2 = (int32_t)VirtFuncInvoker0< int32_t >::Invoke(23 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_1);
V_0 = L_2;
int32_t L_3 = V_0;
t1_1 * L_4 = p0;
VirtActionInvoker2< int32_t, t1_1 * >::Invoke(22 /* System.Void System.Collections.CollectionBase::OnInsert(System.Int32,System.Object) */, __this, L_3, L_4);
t1_126 * L_5 = m1_1678(__this, NULL);
t1_1 * L_6 = p0;
VirtFuncInvoker1< int32_t, t1_1 * >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_5, L_6);
}
IL_0028:
try
{ // begin try (depth: 1)
int32_t L_7 = V_0;
t1_1 * L_8 = p0;
VirtActionInvoker2< int32_t, t1_1 * >::Invoke(23 /* System.Void System.Collections.CollectionBase::OnInsertComplete(System.Int32,System.Object) */, __this, L_7, L_8);
goto IL_0049;
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (t1_43 *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (t1_1_TI_var, e.ex->object.klass))
goto CATCH_0035;
throw e;
}
CATCH_0035:
{ // begin catch(System.Object)
{
t1_126 * L_9 = m1_1678(__this, NULL);
int32_t L_10 = V_0;
VirtActionInvoker1< int32_t >::Invoke(39 /* System.Void System.Collections.ArrayList::RemoveAt(System.Int32) */, L_9, L_10);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)__exception_local);
}
IL_0044:
{
goto IL_0049;
}
} // end catch (depth: 1)
IL_0049:
{
int32_t L_11 = V_0;
return L_11;
}
}
extern "C" bool m1_1666 (t1_144 * __this, t1_1 * p0, const MethodInfo* method)
{
{
t1_126 * L_0 = m1_1678(__this, NULL);
t1_1 * L_1 = p0;
bool L_2 = (bool)VirtFuncInvoker1< bool, t1_1 * >::Invoke(32 /* System.Boolean System.Collections.ArrayList::Contains(System.Object) */, L_0, L_1);
return L_2;
}
}
extern "C" int32_t m1_1667 (t1_144 * __this, t1_1 * p0, const MethodInfo* method)
{
{
t1_126 * L_0 = m1_1678(__this, NULL);
t1_1 * L_1 = p0;
int32_t L_2 = (int32_t)VirtFuncInvoker1< int32_t, t1_1 * >::Invoke(33 /* System.Int32 System.Collections.ArrayList::IndexOf(System.Object) */, L_0, L_1);
return L_2;
}
}
extern TypeInfo* t1_1_TI_var;
extern "C" void m1_1668 (t1_144 * __this, int32_t p0, t1_1 * p1, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_1_TI_var = il2cpp_codegen_type_info_from_index(0);
s_Il2CppMethodIntialized = true;
}
t1_43 * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
t1_43 * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
t1_1 * L_0 = p1;
VirtActionInvoker1< t1_1 * >::Invoke(28 /* System.Void System.Collections.CollectionBase::OnValidate(System.Object) */, __this, L_0);
int32_t L_1 = p0;
t1_1 * L_2 = p1;
VirtActionInvoker2< int32_t, t1_1 * >::Invoke(22 /* System.Void System.Collections.CollectionBase::OnInsert(System.Int32,System.Object) */, __this, L_1, L_2);
t1_126 * L_3 = m1_1678(__this, NULL);
int32_t L_4 = p0;
t1_1 * L_5 = p1;
VirtActionInvoker2< int32_t, t1_1 * >::Invoke(36 /* System.Void System.Collections.ArrayList::Insert(System.Int32,System.Object) */, L_3, L_4, L_5);
}
IL_001c:
try
{ // begin try (depth: 1)
int32_t L_6 = p0;
t1_1 * L_7 = p1;
VirtActionInvoker2< int32_t, t1_1 * >::Invoke(23 /* System.Void System.Collections.CollectionBase::OnInsertComplete(System.Int32,System.Object) */, __this, L_6, L_7);
goto IL_003d;
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (t1_43 *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (t1_1_TI_var, e.ex->object.klass))
goto CATCH_0029;
throw e;
}
CATCH_0029:
{ // begin catch(System.Object)
{
t1_126 * L_8 = m1_1678(__this, NULL);
int32_t L_9 = p0;
VirtActionInvoker1< int32_t >::Invoke(39 /* System.Void System.Collections.ArrayList::RemoveAt(System.Int32) */, L_8, L_9);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)__exception_local);
}
IL_0038:
{
goto IL_003d;
}
} // end catch (depth: 1)
IL_003d:
{
return;
}
}
extern TypeInfo* t1_653_TI_var;
extern Il2CppCodeGenString* _stringLiteral533;
extern Il2CppCodeGenString* _stringLiteral52;
extern "C" void m1_1669 (t1_144 * __this, t1_1 * p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_653_TI_var = il2cpp_codegen_type_info_from_index(4);
_stringLiteral533 = il2cpp_codegen_string_literal_from_index(533);
_stringLiteral52 = il2cpp_codegen_string_literal_from_index(52);
s_Il2CppMethodIntialized = true;
}
int32_t V_0 = 0;
{
t1_1 * L_0 = p0;
VirtActionInvoker1< t1_1 * >::Invoke(28 /* System.Void System.Collections.CollectionBase::OnValidate(System.Object) */, __this, L_0);
t1_126 * L_1 = m1_1678(__this, NULL);
t1_1 * L_2 = p0;
int32_t L_3 = (int32_t)VirtFuncInvoker1< int32_t, t1_1 * >::Invoke(33 /* System.Int32 System.Collections.ArrayList::IndexOf(System.Object) */, L_1, L_2);
V_0 = L_3;
int32_t L_4 = V_0;
if ((!(((uint32_t)L_4) == ((uint32_t)(-1)))))
{
goto IL_002b;
}
}
{
t1_653 * L_5 = (t1_653 *)il2cpp_codegen_object_new (t1_653_TI_var);
m1_4563(L_5, _stringLiteral533, _stringLiteral52, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_5);
}
IL_002b:
{
int32_t L_6 = V_0;
t1_1 * L_7 = p0;
VirtActionInvoker2< int32_t, t1_1 * >::Invoke(24 /* System.Void System.Collections.CollectionBase::OnRemove(System.Int32,System.Object) */, __this, L_6, L_7);
t1_126 * L_8 = m1_1678(__this, NULL);
t1_1 * L_9 = p0;
VirtActionInvoker1< t1_1 * >::Invoke(38 /* System.Void System.Collections.ArrayList::Remove(System.Object) */, L_8, L_9);
int32_t L_10 = V_0;
t1_1 * L_11 = p0;
VirtActionInvoker2< int32_t, t1_1 * >::Invoke(25 /* System.Void System.Collections.CollectionBase::OnRemoveComplete(System.Int32,System.Object) */, __this, L_10, L_11);
return;
}
}
extern "C" bool m1_1670 (t1_144 * __this, const MethodInfo* method)
{
{
t1_126 * L_0 = m1_1678(__this, NULL);
bool L_1 = (bool)VirtFuncInvoker0< bool >::Invoke(26 /* System.Boolean System.Collections.ArrayList::get_IsFixedSize() */, L_0);
return L_1;
}
}
extern "C" bool m1_1671 (t1_144 * __this, const MethodInfo* method)
{
{
t1_126 * L_0 = m1_1678(__this, NULL);
bool L_1 = (bool)VirtFuncInvoker0< bool >::Invoke(27 /* System.Boolean System.Collections.ArrayList::get_IsReadOnly() */, L_0);
return L_1;
}
}
extern "C" t1_1 * m1_1672 (t1_144 * __this, int32_t p0, const MethodInfo* method)
{
{
t1_126 * L_0 = m1_1678(__this, NULL);
int32_t L_1 = p0;
t1_1 * L_2 = (t1_1 *)VirtFuncInvoker1< t1_1 *, int32_t >::Invoke(21 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_0, L_1);
return L_2;
}
}
extern TypeInfo* t1_702_TI_var;
extern TypeInfo* t1_1_TI_var;
extern Il2CppCodeGenString* _stringLiteral144;
extern "C" void m1_1673 (t1_144 * __this, int32_t p0, t1_1 * p1, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_702_TI_var = il2cpp_codegen_type_info_from_index(27);
t1_1_TI_var = il2cpp_codegen_type_info_from_index(0);
_stringLiteral144 = il2cpp_codegen_string_literal_from_index(144);
s_Il2CppMethodIntialized = true;
}
t1_1 * V_0 = {0};
t1_43 * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
t1_43 * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
int32_t L_0 = p0;
if ((((int32_t)L_0) < ((int32_t)0)))
{
goto IL_0018;
}
}
{
int32_t L_1 = p0;
t1_126 * L_2 = m1_1678(__this, NULL);
int32_t L_3 = (int32_t)VirtFuncInvoker0< int32_t >::Invoke(23 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_2);
if ((((int32_t)L_1) < ((int32_t)L_3)))
{
goto IL_0023;
}
}
IL_0018:
{
t1_702 * L_4 = (t1_702 *)il2cpp_codegen_object_new (t1_702_TI_var);
m1_4574(L_4, _stringLiteral144, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_4);
}
IL_0023:
{
t1_1 * L_5 = p1;
VirtActionInvoker1< t1_1 * >::Invoke(28 /* System.Void System.Collections.CollectionBase::OnValidate(System.Object) */, __this, L_5);
t1_126 * L_6 = m1_1678(__this, NULL);
int32_t L_7 = p0;
t1_1 * L_8 = (t1_1 *)VirtFuncInvoker1< t1_1 *, int32_t >::Invoke(21 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_6, L_7);
V_0 = L_8;
int32_t L_9 = p0;
t1_1 * L_10 = V_0;
t1_1 * L_11 = p1;
VirtActionInvoker3< int32_t, t1_1 *, t1_1 * >::Invoke(26 /* System.Void System.Collections.CollectionBase::OnSet(System.Int32,System.Object,System.Object) */, __this, L_9, L_10, L_11);
t1_126 * L_12 = m1_1678(__this, NULL);
int32_t L_13 = p0;
t1_1 * L_14 = p1;
VirtActionInvoker2< int32_t, t1_1 * >::Invoke(22 /* System.Void System.Collections.ArrayList::set_Item(System.Int32,System.Object) */, L_12, L_13, L_14);
}
IL_004d:
try
{ // begin try (depth: 1)
int32_t L_15 = p0;
t1_1 * L_16 = V_0;
t1_1 * L_17 = p1;
VirtActionInvoker3< int32_t, t1_1 *, t1_1 * >::Invoke(27 /* System.Void System.Collections.CollectionBase::OnSetComplete(System.Int32,System.Object,System.Object) */, __this, L_15, L_16, L_17);
goto IL_0070;
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (t1_43 *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (t1_1_TI_var, e.ex->object.klass))
goto CATCH_005b;
throw e;
}
CATCH_005b:
{ // begin catch(System.Object)
{
t1_126 * L_18 = m1_1678(__this, NULL);
int32_t L_19 = p0;
t1_1 * L_20 = V_0;
VirtActionInvoker2< int32_t, t1_1 * >::Invoke(22 /* System.Void System.Collections.ArrayList::set_Item(System.Int32,System.Object) */, L_18, L_19, L_20);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)__exception_local);
}
IL_006b:
{
goto IL_0070;
}
} // end catch (depth: 1)
IL_0070:
{
return;
}
}
extern "C" int32_t m1_1674 (t1_144 * __this, const MethodInfo* method)
{
{
t1_126 * L_0 = m1_1678(__this, NULL);
int32_t L_1 = (int32_t)VirtFuncInvoker0< int32_t >::Invoke(23 /* System.Int32 System.Collections.ArrayList::get_Count() */, L_0);
return L_1;
}
}
extern "C" t1_1 * m1_1675 (t1_144 * __this, const MethodInfo* method)
{
{
t1_126 * L_0 = m1_1678(__this, NULL);
t1_1 * L_1 = (t1_1 *)VirtFuncInvoker0< t1_1 * >::Invoke(43 /* System.Collections.IEnumerator System.Collections.ArrayList::GetEnumerator() */, L_0);
return L_1;
}
}
extern "C" void m1_1676 (t1_144 * __this, const MethodInfo* method)
{
{
VirtActionInvoker0::Invoke(20 /* System.Void System.Collections.CollectionBase::OnClear() */, __this);
t1_126 * L_0 = m1_1678(__this, NULL);
VirtActionInvoker0::Invoke(31 /* System.Void System.Collections.ArrayList::Clear() */, L_0);
VirtActionInvoker0::Invoke(21 /* System.Void System.Collections.CollectionBase::OnClearComplete() */, __this);
return;
}
}
extern "C" void m1_1677 (t1_144 * __this, int32_t p0, const MethodInfo* method)
{
t1_1 * V_0 = {0};
{
t1_126 * L_0 = m1_1678(__this, NULL);
int32_t L_1 = p0;
t1_1 * L_2 = (t1_1 *)VirtFuncInvoker1< t1_1 *, int32_t >::Invoke(21 /* System.Object System.Collections.ArrayList::get_Item(System.Int32) */, L_0, L_1);
V_0 = L_2;
t1_1 * L_3 = V_0;
VirtActionInvoker1< t1_1 * >::Invoke(28 /* System.Void System.Collections.CollectionBase::OnValidate(System.Object) */, __this, L_3);
int32_t L_4 = p0;
t1_1 * L_5 = V_0;
VirtActionInvoker2< int32_t, t1_1 * >::Invoke(24 /* System.Void System.Collections.CollectionBase::OnRemove(System.Int32,System.Object) */, __this, L_4, L_5);
t1_126 * L_6 = m1_1678(__this, NULL);
int32_t L_7 = p0;
VirtActionInvoker1< int32_t >::Invoke(39 /* System.Void System.Collections.ArrayList::RemoveAt(System.Int32) */, L_6, L_7);
int32_t L_8 = p0;
t1_1 * L_9 = V_0;
VirtActionInvoker2< int32_t, t1_1 * >::Invoke(25 /* System.Void System.Collections.CollectionBase::OnRemoveComplete(System.Int32,System.Object) */, __this, L_8, L_9);
return;
}
}
extern TypeInfo* t1_126_TI_var;
extern "C" t1_126 * m1_1678 (t1_144 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_126_TI_var = il2cpp_codegen_type_info_from_index(55);
s_Il2CppMethodIntialized = true;
}
{
t1_126 * L_0 = (__this->f0);
if (L_0)
{
goto IL_0016;
}
}
{
t1_126 * L_1 = (t1_126 *)il2cpp_codegen_object_new (t1_126_TI_var);
m1_1590(L_1, NULL);
__this->f0 = L_1;
}
IL_0016:
{
t1_126 * L_2 = (__this->f0);
return L_2;
}
}
extern "C" t1_1 * m1_1679 (t1_144 * __this, const MethodInfo* method)
{
{
return __this;
}
}
extern "C" void m1_1680 (t1_144 * __this, const MethodInfo* method)
{
{
return;
}
}
extern "C" void m1_1681 (t1_144 * __this, const MethodInfo* method)
{
{
return;
}
}
extern "C" void m1_1682 (t1_144 * __this, int32_t p0, t1_1 * p1, const MethodInfo* method)
{
{
return;
}
}
extern "C" void m1_1683 (t1_144 * __this, int32_t p0, t1_1 * p1, const MethodInfo* method)
{
{
return;
}
}
extern "C" void m1_1684 (t1_144 * __this, int32_t p0, t1_1 * p1, const MethodInfo* method)
{
{
return;
}
}
extern "C" void m1_1685 (t1_144 * __this, int32_t p0, t1_1 * p1, const MethodInfo* method)
{
{
return;
}
}
extern "C" void m1_1686 (t1_144 * __this, int32_t p0, t1_1 * p1, t1_1 * p2, const MethodInfo* method)
{
{
return;
}
}
extern "C" void m1_1687 (t1_144 * __this, int32_t p0, t1_1 * p1, t1_1 * p2, const MethodInfo* method)
{
{
return;
}
}
extern TypeInfo* t1_701_TI_var;
extern Il2CppCodeGenString* _stringLiteral534;
extern "C" void m1_1688 (t1_144 * __this, t1_1 * p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_701_TI_var = il2cpp_codegen_type_info_from_index(2);
_stringLiteral534 = il2cpp_codegen_string_literal_from_index(534);
s_Il2CppMethodIntialized = true;
}
{
t1_1 * L_0 = p0;
if (L_0)
{
goto IL_0011;
}
}
{
t1_701 * L_1 = (t1_701 *)il2cpp_codegen_object_new (t1_701_TI_var);
m1_4570(L_1, _stringLiteral534, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_1);
}
IL_0011:
{
return;
}
}
extern "C" void m1_1689 (t1_178 * __this, const MethodInfo* method)
{
{
m1_0(__this, NULL);
return;
}
}
extern TypeInfo* t1_701_TI_var;
extern Il2CppCodeGenString* _stringLiteral32;
extern "C" void m1_1690 (t1_178 * __this, t1_175 * p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_701_TI_var = il2cpp_codegen_type_info_from_index(2);
_stringLiteral32 = il2cpp_codegen_string_literal_from_index(32);
s_Il2CppMethodIntialized = true;
}
{
m1_0(__this, NULL);
t1_175 * L_0 = p0;
if (L_0)
{
goto IL_0017;
}
}
{
t1_701 * L_1 = (t1_701 *)il2cpp_codegen_object_new (t1_701_TI_var);
m1_4570(L_1, _stringLiteral32, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_1);
}
IL_0017:
{
t1_175 * L_2 = p0;
t1_179 * L_3 = (t1_179 *)VirtFuncInvoker0< t1_179 * >::Invoke(11 /* System.Globalization.CompareInfo System.Globalization.CultureInfo::get_CompareInfo() */, L_2);
__this->f2 = L_3;
return;
}
}
extern TypeInfo* t1_178_TI_var;
extern TypeInfo* t1_175_TI_var;
extern "C" void m1_1691 (t1_1 * __this , const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_178_TI_var = il2cpp_codegen_type_info_from_index(77);
t1_175_TI_var = il2cpp_codegen_type_info_from_index(28);
s_Il2CppMethodIntialized = true;
}
{
t1_178 * L_0 = (t1_178 *)il2cpp_codegen_object_new (t1_178_TI_var);
m1_1689(L_0, NULL);
((t1_178_SFs*)t1_178_TI_var->static_fields)->f0 = L_0;
IL2CPP_RUNTIME_CLASS_INIT(t1_175_TI_var);
t1_175 * L_1 = m1_1922(NULL, NULL);
t1_178 * L_2 = (t1_178 *)il2cpp_codegen_object_new (t1_178_TI_var);
m1_1690(L_2, L_1, NULL);
((t1_178_SFs*)t1_178_TI_var->static_fields)->f1 = L_2;
return;
}
}
extern TypeInfo* t1_18_TI_var;
extern TypeInfo* t1_839_TI_var;
extern TypeInfo* t1_653_TI_var;
extern Il2CppCodeGenString* _stringLiteral535;
extern "C" int32_t m1_1692 (t1_178 * __this, t1_1 * p0, t1_1 * p1, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_18_TI_var = il2cpp_codegen_type_info_from_index(11);
t1_839_TI_var = il2cpp_codegen_type_info_from_index(76);
t1_653_TI_var = il2cpp_codegen_type_info_from_index(4);
_stringLiteral535 = il2cpp_codegen_string_literal_from_index(535);
s_Il2CppMethodIntialized = true;
}
t1_18* V_0 = {0};
t1_18* V_1 = {0};
{
t1_1 * L_0 = p0;
t1_1 * L_1 = p1;
if ((!(((t1_1*)(t1_1 *)L_0) == ((t1_1*)(t1_1 *)L_1))))
{
goto IL_0009;
}
}
{
return 0;
}
IL_0009:
{
t1_1 * L_2 = p0;
if (L_2)
{
goto IL_0011;
}
}
{
return (-1);
}
IL_0011:
{
t1_1 * L_3 = p1;
if (L_3)
{
goto IL_0019;
}
}
{
return 1;
}
IL_0019:
{
t1_179 * L_4 = (__this->f2);
if (!L_4)
{
goto IL_004c;
}
}
{
t1_1 * L_5 = p0;
V_0 = ((t1_18*)IsInstSealed(L_5, t1_18_TI_var));
t1_1 * L_6 = p1;
V_1 = ((t1_18*)IsInstSealed(L_6, t1_18_TI_var));
t1_18* L_7 = V_0;
if (!L_7)
{
goto IL_004c;
}
}
{
t1_18* L_8 = V_1;
if (!L_8)
{
goto IL_004c;
}
}
{
t1_179 * L_9 = (__this->f2);
t1_18* L_10 = V_0;
t1_18* L_11 = V_1;
int32_t L_12 = (int32_t)VirtFuncInvoker2< int32_t, t1_18*, t1_18* >::Invoke(5 /* System.Int32 System.Globalization.CompareInfo::Compare(System.String,System.String) */, L_9, L_10, L_11);
return L_12;
}
IL_004c:
{
t1_1 * L_13 = p0;
if (!((t1_1 *)IsInst(L_13, t1_839_TI_var)))
{
goto IL_0064;
}
}
{
t1_1 * L_14 = p0;
t1_1 * L_15 = p1;
int32_t L_16 = (int32_t)InterfaceFuncInvoker1< int32_t, t1_1 * >::Invoke(0 /* System.Int32 System.IComparable::CompareTo(System.Object) */, t1_839_TI_var, ((t1_1 *)IsInst(L_14, t1_839_TI_var)), L_15);
return L_16;
}
IL_0064:
{
t1_1 * L_17 = p1;
if (!((t1_1 *)IsInst(L_17, t1_839_TI_var)))
{
goto IL_007d;
}
}
{
t1_1 * L_18 = p1;
t1_1 * L_19 = p0;
int32_t L_20 = (int32_t)InterfaceFuncInvoker1< int32_t, t1_1 * >::Invoke(0 /* System.Int32 System.IComparable::CompareTo(System.Object) */, t1_839_TI_var, ((t1_1 *)IsInst(L_18, t1_839_TI_var)), L_19);
return ((-L_20));
}
IL_007d:
{
t1_18* L_21 = m1_990(NULL, _stringLiteral535, NULL);
t1_653 * L_22 = (t1_653 *)il2cpp_codegen_object_new (t1_653_TI_var);
m1_4561(L_22, L_21, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_22);
}
}
extern const Il2CppType* t1_179_0_0_0_var;
extern TypeInfo* t1_701_TI_var;
extern TypeInfo* t1_37_TI_var;
extern Il2CppCodeGenString* _stringLiteral109;
extern Il2CppCodeGenString* _stringLiteral536;
extern "C" void m1_1693 (t1_178 * __this, t1_190 * p0, t1_521 p1, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_179_0_0_0_var = il2cpp_codegen_type_from_index(192);
t1_701_TI_var = il2cpp_codegen_type_info_from_index(2);
t1_37_TI_var = il2cpp_codegen_type_info_from_index(3);
_stringLiteral109 = il2cpp_codegen_string_literal_from_index(109);
_stringLiteral536 = il2cpp_codegen_string_literal_from_index(536);
s_Il2CppMethodIntialized = true;
}
{
t1_190 * L_0 = p0;
if (L_0)
{
goto IL_0011;
}
}
{
t1_701 * L_1 = (t1_701 *)il2cpp_codegen_object_new (t1_701_TI_var);
m1_4570(L_1, _stringLiteral109, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_1);
}
IL_0011:
{
t1_190 * L_2 = p0;
t1_179 * L_3 = (__this->f2);
IL2CPP_RUNTIME_CLASS_INIT(t1_37_TI_var);
t1_37 * L_4 = m1_894(NULL, LoadTypeToken(t1_179_0_0_0_var), NULL);
m1_3618(L_2, _stringLiteral536, L_3, L_4, NULL);
return;
}
}
extern "C" void m1_1694 (t1_180 * __this, t1_1 * p0, t1_1 * p1, const MethodInfo* method)
{
{
t1_1 * L_0 = p0;
__this->f0 = L_0;
t1_1 * L_1 = p1;
__this->f1 = L_1;
return;
}
}
extern "C" t1_1 * m1_1695 (t1_180 * __this, const MethodInfo* method)
{
{
t1_1 * L_0 = (__this->f0);
return L_0;
}
}
extern "C" t1_1 * m1_1696 (t1_180 * __this, const MethodInfo* method)
{
{
t1_1 * L_0 = (__this->f1);
return L_0;
}
}
extern "C" void m1_1697 (t1_182 * __this, const MethodInfo* method)
{
{
m1_0(__this, NULL);
return;
}
}
extern TypeInfo* t1_182_TI_var;
extern "C" void m1_1698 (t1_1 * __this , const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_182_TI_var = il2cpp_codegen_type_info_from_index(193);
s_Il2CppMethodIntialized = true;
}
{
t1_182 * L_0 = (t1_182 *)il2cpp_codegen_object_new (t1_182_TI_var);
m1_1697(L_0, NULL);
((t1_182_SFs*)t1_182_TI_var->static_fields)->f0 = L_0;
return;
}
}
extern "C" void m1_1699 (t1_184 * __this, t1_185 * p0, int32_t p1, const MethodInfo* method)
{
{
m1_0(__this, NULL);
t1_185 * L_0 = p0;
__this->f0 = L_0;
t1_185 * L_1 = p0;
int32_t L_2 = (L_1->f2);
__this->f1 = L_2;
t1_185 * L_3 = p0;
t1_189* L_4 = (L_3->f4);
__this->f3 = (((int32_t)((int32_t)(((t1_33 *)L_4)->max_length))));
int32_t L_5 = p1;
__this->f4 = L_5;
m1_1702(__this, NULL);
return;
}
}
extern TypeInfo* t1_184_TI_var;
extern Il2CppCodeGenString* _stringLiteral555;
extern "C" void m1_1700 (t1_1 * __this , const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_184_TI_var = il2cpp_codegen_type_info_from_index(194);
_stringLiteral555 = il2cpp_codegen_string_literal_from_index(555);
s_Il2CppMethodIntialized = true;
}
{
((t1_184_SFs*)t1_184_TI_var->static_fields)->f7 = _stringLiteral555;
return;
}
}
extern TypeInfo* t1_184_TI_var;
extern TypeInfo* t1_740_TI_var;
extern "C" void m1_1701 (t1_184 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_184_TI_var = il2cpp_codegen_type_info_from_index(194);
t1_740_TI_var = il2cpp_codegen_type_info_from_index(71);
s_Il2CppMethodIntialized = true;
}
{
t1_185 * L_0 = (__this->f0);
int32_t L_1 = (L_0->f2);
int32_t L_2 = (__this->f1);
if ((((int32_t)L_1) == ((int32_t)L_2)))
{
goto IL_0021;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(t1_184_TI_var);
t1_18* L_3 = ((t1_184_SFs*)t1_184_TI_var->static_fields)->f7;
t1_740 * L_4 = (t1_740 *)il2cpp_codegen_object_new (t1_740_TI_var);
m1_5030(L_4, L_3, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_4);
}
IL_0021:
{
return;
}
}
extern "C" void m1_1702 (t1_184 * __this, const MethodInfo* method)
{
{
m1_1701(__this, NULL);
__this->f2 = (-1);
__this->f5 = NULL;
__this->f6 = NULL;
return;
}
}
extern TypeInfo* t1_182_TI_var;
extern "C" bool m1_1703 (t1_184 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_182_TI_var = il2cpp_codegen_type_info_from_index(193);
s_Il2CppMethodIntialized = true;
}
t1_181 V_0 = {0};
int32_t V_1 = 0;
{
m1_1701(__this, NULL);
int32_t L_0 = (__this->f2);
int32_t L_1 = (__this->f3);
if ((((int32_t)L_0) >= ((int32_t)L_1)))
{
goto IL_008d;
}
}
{
goto IL_0071;
}
IL_001c:
{
t1_185 * L_2 = (__this->f0);
t1_189* L_3 = (L_2->f4);
int32_t L_4 = (__this->f2);
V_0 = (*(t1_181 *)((t1_181 *)(t1_181 *)SZArrayLdElema(L_3, L_4, sizeof(t1_181 ))));
t1_1 * L_5 = ((&V_0)->f0);
if (!L_5)
{
goto IL_0071;
}
}
{
t1_1 * L_6 = ((&V_0)->f0);
IL2CPP_RUNTIME_CLASS_INIT(t1_182_TI_var);
t1_182 * L_7 = ((t1_182_SFs*)t1_182_TI_var->static_fields)->f0;
if ((((t1_1*)(t1_1 *)L_6) == ((t1_1*)(t1_182 *)L_7)))
{
goto IL_0071;
}
}
{
t1_1 * L_8 = ((&V_0)->f0);
__this->f5 = L_8;
t1_1 * L_9 = ((&V_0)->f1);
__this->f6 = L_9;
return 1;
}
IL_0071:
{
int32_t L_10 = (__this->f2);
int32_t L_11 = ((int32_t)((int32_t)L_10+(int32_t)1));
V_1 = L_11;
__this->f2 = L_11;
int32_t L_12 = V_1;
int32_t L_13 = (__this->f3);
if ((((int32_t)L_12) < ((int32_t)L_13)))
{
goto IL_001c;
}
}
IL_008d:
{
__this->f5 = NULL;
__this->f6 = NULL;
return 0;
}
}
extern TypeInfo* t1_740_TI_var;
extern "C" t1_180 m1_1704 (t1_184 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_740_TI_var = il2cpp_codegen_type_info_from_index(71);
s_Il2CppMethodIntialized = true;
}
{
t1_1 * L_0 = (__this->f5);
if (L_0)
{
goto IL_0011;
}
}
{
t1_740 * L_1 = (t1_740 *)il2cpp_codegen_object_new (t1_740_TI_var);
m1_5029(L_1, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_1);
}
IL_0011:
{
m1_1701(__this, NULL);
t1_1 * L_2 = (__this->f5);
t1_1 * L_3 = (__this->f6);
t1_180 L_4 = {0};
m1_1694(&L_4, L_2, L_3, NULL);
return L_4;
}
}
extern TypeInfo* t1_740_TI_var;
extern "C" t1_1 * m1_1705 (t1_184 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_740_TI_var = il2cpp_codegen_type_info_from_index(71);
s_Il2CppMethodIntialized = true;
}
{
t1_1 * L_0 = (__this->f5);
if (L_0)
{
goto IL_0011;
}
}
{
t1_740 * L_1 = (t1_740 *)il2cpp_codegen_object_new (t1_740_TI_var);
m1_5029(L_1, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_1);
}
IL_0011:
{
m1_1701(__this, NULL);
t1_1 * L_2 = (__this->f5);
return L_2;
}
}
extern TypeInfo* t1_740_TI_var;
extern "C" t1_1 * m1_1706 (t1_184 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_740_TI_var = il2cpp_codegen_type_info_from_index(71);
s_Il2CppMethodIntialized = true;
}
{
t1_1 * L_0 = (__this->f5);
if (L_0)
{
goto IL_0011;
}
}
{
t1_740 * L_1 = (t1_740 *)il2cpp_codegen_object_new (t1_740_TI_var);
m1_5029(L_1, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_1);
}
IL_0011:
{
m1_1701(__this, NULL);
t1_1 * L_2 = (__this->f6);
return L_2;
}
}
extern TypeInfo* t1_740_TI_var;
extern TypeInfo* t1_180_TI_var;
extern TypeInfo* t1_43_TI_var;
extern Il2CppCodeGenString* _stringLiteral556;
extern "C" t1_1 * m1_1707 (t1_184 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_740_TI_var = il2cpp_codegen_type_info_from_index(71);
t1_180_TI_var = il2cpp_codegen_type_info_from_index(195);
t1_43_TI_var = il2cpp_codegen_type_info_from_index(45);
_stringLiteral556 = il2cpp_codegen_string_literal_from_index(556);
s_Il2CppMethodIntialized = true;
}
int32_t V_0 = {0};
{
t1_1 * L_0 = (__this->f5);
if (L_0)
{
goto IL_0011;
}
}
{
t1_740 * L_1 = (t1_740 *)il2cpp_codegen_object_new (t1_740_TI_var);
m1_5029(L_1, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_1);
}
IL_0011:
{
int32_t L_2 = (__this->f4);
V_0 = L_2;
int32_t L_3 = V_0;
if (L_3 == 0)
{
goto IL_002f;
}
if (L_3 == 1)
{
goto IL_0036;
}
if (L_3 == 2)
{
goto IL_003d;
}
}
{
goto IL_0054;
}
IL_002f:
{
t1_1 * L_4 = (__this->f5);
return L_4;
}
IL_0036:
{
t1_1 * L_5 = (__this->f6);
return L_5;
}
IL_003d:
{
t1_1 * L_6 = (__this->f5);
t1_1 * L_7 = (__this->f6);
t1_180 L_8 = {0};
m1_1694(&L_8, L_6, L_7, NULL);
t1_180 L_9 = L_8;
t1_1 * L_10 = Box(t1_180_TI_var, &L_9);
return L_10;
}
IL_0054:
{
t1_43 * L_11 = (t1_43 *)il2cpp_codegen_object_new (t1_43_TI_var);
m1_933(L_11, _stringLiteral556, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_11);
}
}
extern TypeInfo* t1_701_TI_var;
extern "C" void m1_1708 (t1_186 * __this, t1_185 * p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_701_TI_var = il2cpp_codegen_type_info_from_index(2);
s_Il2CppMethodIntialized = true;
}
{
m1_0(__this, NULL);
t1_185 * L_0 = p0;
if (L_0)
{
goto IL_0012;
}
}
{
t1_701 * L_1 = (t1_701 *)il2cpp_codegen_object_new (t1_701_TI_var);
m1_4569(L_1, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_1);
}
IL_0012:
{
t1_185 * L_2 = p0;
__this->f0 = L_2;
return;
}
}
extern "C" int32_t m1_1709 (t1_186 * __this, const MethodInfo* method)
{
{
t1_185 * L_0 = (__this->f0);
int32_t L_1 = (int32_t)VirtFuncInvoker0< int32_t >::Invoke(18 /* System.Int32 System.Collections.Hashtable::get_Count() */, L_0);
return L_1;
}
}
extern "C" bool m1_1710 (t1_186 * __this, const MethodInfo* method)
{
{
t1_185 * L_0 = (__this->f0);
bool L_1 = (bool)VirtFuncInvoker0< bool >::Invoke(19 /* System.Boolean System.Collections.Hashtable::get_IsSynchronized() */, L_0);
return L_1;
}
}
extern "C" t1_1 * m1_1711 (t1_186 * __this, const MethodInfo* method)
{
{
t1_185 * L_0 = (__this->f0);
t1_1 * L_1 = (t1_1 *)VirtFuncInvoker0< t1_1 * >::Invoke(20 /* System.Object System.Collections.Hashtable::get_SyncRoot() */, L_0);
return L_1;
}
}
extern TypeInfo* t1_701_TI_var;
extern TypeInfo* t1_653_TI_var;
extern TypeInfo* t1_702_TI_var;
extern Il2CppCodeGenString* _stringLiteral147;
extern Il2CppCodeGenString* _stringLiteral542;
extern Il2CppCodeGenString* _stringLiteral557;
extern "C" void m1_1712 (t1_186 * __this, t1_33 * p0, int32_t p1, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_701_TI_var = il2cpp_codegen_type_info_from_index(2);
t1_653_TI_var = il2cpp_codegen_type_info_from_index(4);
t1_702_TI_var = il2cpp_codegen_type_info_from_index(27);
_stringLiteral147 = il2cpp_codegen_string_literal_from_index(147);
_stringLiteral542 = il2cpp_codegen_string_literal_from_index(542);
_stringLiteral557 = il2cpp_codegen_string_literal_from_index(557);
s_Il2CppMethodIntialized = true;
}
{
t1_33 * L_0 = p0;
if (L_0)
{
goto IL_0011;
}
}
{
t1_701 * L_1 = (t1_701 *)il2cpp_codegen_object_new (t1_701_TI_var);
m1_4570(L_1, _stringLiteral147, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_1);
}
IL_0011:
{
t1_33 * L_2 = p0;
int32_t L_3 = m1_778(L_2, NULL);
if ((((int32_t)L_3) == ((int32_t)1)))
{
goto IL_0028;
}
}
{
t1_653 * L_4 = (t1_653 *)il2cpp_codegen_object_new (t1_653_TI_var);
m1_4561(L_4, _stringLiteral147, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_4);
}
IL_0028:
{
int32_t L_5 = p1;
if ((((int32_t)L_5) >= ((int32_t)0)))
{
goto IL_003a;
}
}
{
t1_702 * L_6 = (t1_702 *)il2cpp_codegen_object_new (t1_702_TI_var);
m1_4574(L_6, _stringLiteral542, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_6);
}
IL_003a:
{
t1_33 * L_7 = p0;
int32_t L_8 = m1_776(L_7, NULL);
int32_t L_9 = p1;
int32_t L_10 = (int32_t)VirtFuncInvoker0< int32_t >::Invoke(9 /* System.Int32 System.Collections.Hashtable/HashKeys::get_Count() */, __this);
if ((((int32_t)((int32_t)((int32_t)L_8-(int32_t)L_9))) >= ((int32_t)L_10)))
{
goto IL_0058;
}
}
{
t1_653 * L_11 = (t1_653 *)il2cpp_codegen_object_new (t1_653_TI_var);
m1_4561(L_11, _stringLiteral557, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_11);
}
IL_0058:
{
t1_185 * L_12 = (__this->f0);
t1_33 * L_13 = p0;
int32_t L_14 = p1;
m1_1780(L_12, L_13, L_14, 0, NULL);
return;
}
}
extern TypeInfo* t1_184_TI_var;
extern "C" t1_1 * m1_1713 (t1_186 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_184_TI_var = il2cpp_codegen_type_info_from_index(194);
s_Il2CppMethodIntialized = true;
}
{
t1_185 * L_0 = (__this->f0);
t1_184 * L_1 = (t1_184 *)il2cpp_codegen_object_new (t1_184_TI_var);
m1_1699(L_1, L_0, 0, NULL);
return L_1;
}
}
extern TypeInfo* t1_701_TI_var;
extern "C" void m1_1714 (t1_187 * __this, t1_185 * p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_701_TI_var = il2cpp_codegen_type_info_from_index(2);
s_Il2CppMethodIntialized = true;
}
{
m1_0(__this, NULL);
t1_185 * L_0 = p0;
if (L_0)
{
goto IL_0012;
}
}
{
t1_701 * L_1 = (t1_701 *)il2cpp_codegen_object_new (t1_701_TI_var);
m1_4569(L_1, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_1);
}
IL_0012:
{
t1_185 * L_2 = p0;
__this->f0 = L_2;
return;
}
}
extern "C" int32_t m1_1715 (t1_187 * __this, const MethodInfo* method)
{
{
t1_185 * L_0 = (__this->f0);
int32_t L_1 = (int32_t)VirtFuncInvoker0< int32_t >::Invoke(18 /* System.Int32 System.Collections.Hashtable::get_Count() */, L_0);
return L_1;
}
}
extern "C" bool m1_1716 (t1_187 * __this, const MethodInfo* method)
{
{
t1_185 * L_0 = (__this->f0);
bool L_1 = (bool)VirtFuncInvoker0< bool >::Invoke(19 /* System.Boolean System.Collections.Hashtable::get_IsSynchronized() */, L_0);
return L_1;
}
}
extern "C" t1_1 * m1_1717 (t1_187 * __this, const MethodInfo* method)
{
{
t1_185 * L_0 = (__this->f0);
t1_1 * L_1 = (t1_1 *)VirtFuncInvoker0< t1_1 * >::Invoke(20 /* System.Object System.Collections.Hashtable::get_SyncRoot() */, L_0);
return L_1;
}
}
extern TypeInfo* t1_701_TI_var;
extern TypeInfo* t1_653_TI_var;
extern TypeInfo* t1_702_TI_var;
extern Il2CppCodeGenString* _stringLiteral147;
extern Il2CppCodeGenString* _stringLiteral542;
extern Il2CppCodeGenString* _stringLiteral557;
extern "C" void m1_1718 (t1_187 * __this, t1_33 * p0, int32_t p1, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_701_TI_var = il2cpp_codegen_type_info_from_index(2);
t1_653_TI_var = il2cpp_codegen_type_info_from_index(4);
t1_702_TI_var = il2cpp_codegen_type_info_from_index(27);
_stringLiteral147 = il2cpp_codegen_string_literal_from_index(147);
_stringLiteral542 = il2cpp_codegen_string_literal_from_index(542);
_stringLiteral557 = il2cpp_codegen_string_literal_from_index(557);
s_Il2CppMethodIntialized = true;
}
{
t1_33 * L_0 = p0;
if (L_0)
{
goto IL_0011;
}
}
{
t1_701 * L_1 = (t1_701 *)il2cpp_codegen_object_new (t1_701_TI_var);
m1_4570(L_1, _stringLiteral147, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_1);
}
IL_0011:
{
t1_33 * L_2 = p0;
int32_t L_3 = m1_778(L_2, NULL);
if ((((int32_t)L_3) == ((int32_t)1)))
{
goto IL_0028;
}
}
{
t1_653 * L_4 = (t1_653 *)il2cpp_codegen_object_new (t1_653_TI_var);
m1_4561(L_4, _stringLiteral147, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_4);
}
IL_0028:
{
int32_t L_5 = p1;
if ((((int32_t)L_5) >= ((int32_t)0)))
{
goto IL_003a;
}
}
{
t1_702 * L_6 = (t1_702 *)il2cpp_codegen_object_new (t1_702_TI_var);
m1_4574(L_6, _stringLiteral542, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_6);
}
IL_003a:
{
t1_33 * L_7 = p0;
int32_t L_8 = m1_776(L_7, NULL);
int32_t L_9 = p1;
int32_t L_10 = (int32_t)VirtFuncInvoker0< int32_t >::Invoke(9 /* System.Int32 System.Collections.Hashtable/HashValues::get_Count() */, __this);
if ((((int32_t)((int32_t)((int32_t)L_8-(int32_t)L_9))) >= ((int32_t)L_10)))
{
goto IL_0058;
}
}
{
t1_653 * L_11 = (t1_653 *)il2cpp_codegen_object_new (t1_653_TI_var);
m1_4561(L_11, _stringLiteral557, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_11);
}
IL_0058:
{
t1_185 * L_12 = (__this->f0);
t1_33 * L_13 = p0;
int32_t L_14 = p1;
m1_1780(L_12, L_13, L_14, 1, NULL);
return;
}
}
extern TypeInfo* t1_184_TI_var;
extern "C" t1_1 * m1_1719 (t1_187 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_184_TI_var = il2cpp_codegen_type_info_from_index(194);
s_Il2CppMethodIntialized = true;
}
{
t1_185 * L_0 = (__this->f0);
t1_184 * L_1 = (t1_184 *)il2cpp_codegen_object_new (t1_184_TI_var);
m1_1699(L_1, L_0, 1, NULL);
return L_1;
}
}
extern TypeInfo* t1_185_TI_var;
extern TypeInfo* t1_701_TI_var;
extern "C" void m1_1720 (t1_188 * __this, t1_185 * p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_185_TI_var = il2cpp_codegen_type_info_from_index(196);
t1_701_TI_var = il2cpp_codegen_type_info_from_index(2);
s_Il2CppMethodIntialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(t1_185_TI_var);
m1_1739(__this, NULL);
t1_185 * L_0 = p0;
if (L_0)
{
goto IL_0012;
}
}
{
t1_701 * L_1 = (t1_701 *)il2cpp_codegen_object_new (t1_701_TI_var);
m1_4569(L_1, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_1);
}
IL_0012:
{
t1_185 * L_2 = p0;
__this->f14 = L_2;
return;
}
}
extern const Il2CppType* t1_185_0_0_0_var;
extern TypeInfo* t1_185_TI_var;
extern TypeInfo* t1_37_TI_var;
extern Il2CppCodeGenString* _stringLiteral558;
extern "C" void m1_1721 (t1_188 * __this, t1_190 * p0, t1_521 p1, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_185_0_0_0_var = il2cpp_codegen_type_from_index(196);
t1_185_TI_var = il2cpp_codegen_type_info_from_index(196);
t1_37_TI_var = il2cpp_codegen_type_info_from_index(3);
_stringLiteral558 = il2cpp_codegen_string_literal_from_index(558);
s_Il2CppMethodIntialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(t1_185_TI_var);
m1_1739(__this, NULL);
t1_190 * L_0 = p0;
IL2CPP_RUNTIME_CLASS_INIT(t1_37_TI_var);
t1_37 * L_1 = m1_894(NULL, LoadTypeToken(t1_185_0_0_0_var), NULL);
t1_1 * L_2 = m1_3619(L_0, _stringLiteral558, L_1, NULL);
__this->f14 = ((t1_185 *)CastclassClass(L_2, t1_185_TI_var));
return;
}
}
extern TypeInfo* t1_184_TI_var;
extern "C" t1_1 * m1_1722 (t1_188 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_184_TI_var = il2cpp_codegen_type_info_from_index(194);
s_Il2CppMethodIntialized = true;
}
{
t1_185 * L_0 = (__this->f14);
t1_184 * L_1 = (t1_184 *)il2cpp_codegen_object_new (t1_184_TI_var);
m1_1699(L_1, L_0, 2, NULL);
return L_1;
}
}
extern Il2CppCodeGenString* _stringLiteral558;
extern "C" void m1_1723 (t1_188 * __this, t1_190 * p0, t1_521 p1, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
_stringLiteral558 = il2cpp_codegen_string_literal_from_index(558);
s_Il2CppMethodIntialized = true;
}
{
t1_190 * L_0 = p0;
t1_185 * L_1 = (__this->f14);
m1_3629(L_0, _stringLiteral558, L_1, NULL);
return;
}
}
extern "C" int32_t m1_1724 (t1_188 * __this, const MethodInfo* method)
{
{
t1_185 * L_0 = (__this->f14);
int32_t L_1 = (int32_t)VirtFuncInvoker0< int32_t >::Invoke(18 /* System.Int32 System.Collections.Hashtable::get_Count() */, L_0);
return L_1;
}
}
extern "C" bool m1_1725 (t1_188 * __this, const MethodInfo* method)
{
{
return 1;
}
}
extern "C" t1_1 * m1_1726 (t1_188 * __this, const MethodInfo* method)
{
{
t1_185 * L_0 = (__this->f14);
t1_1 * L_1 = (t1_1 *)VirtFuncInvoker0< t1_1 * >::Invoke(20 /* System.Object System.Collections.Hashtable::get_SyncRoot() */, L_0);
return L_1;
}
}
extern "C" t1_1 * m1_1727 (t1_188 * __this, const MethodInfo* method)
{
t1_1 * V_0 = {0};
t1_1 * V_1 = {0};
t1_43 * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
t1_43 * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
V_0 = (t1_1 *)NULL;
t1_185 * L_0 = (__this->f14);
t1_1 * L_1 = (t1_1 *)VirtFuncInvoker0< t1_1 * >::Invoke(20 /* System.Object System.Collections.Hashtable::get_SyncRoot() */, L_0);
V_1 = L_1;
t1_1 * L_2 = V_1;
m1_4445(NULL, L_2, NULL);
}
IL_0014:
try
{ // begin try (depth: 1)
t1_185 * L_3 = (__this->f14);
t1_1 * L_4 = (t1_1 *)VirtFuncInvoker0< t1_1 * >::Invoke(21 /* System.Collections.ICollection System.Collections.Hashtable::get_Keys() */, L_3);
V_0 = L_4;
IL2CPP_LEAVE(0x2C, FINALLY_0025);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (t1_43 *)e.ex;
goto FINALLY_0025;
}
FINALLY_0025:
{ // begin finally (depth: 1)
t1_1 * L_5 = V_1;
m1_4446(NULL, L_5, NULL);
IL2CPP_END_FINALLY(37)
} // end finally (depth: 1)
IL2CPP_CLEANUP(37)
{
IL2CPP_JUMP_TBL(0x2C, IL_002c)
IL2CPP_RETHROW_IF_UNHANDLED(t1_43 *)
}
IL_002c:
{
t1_1 * L_6 = V_0;
return L_6;
}
}
extern "C" t1_1 * m1_1728 (t1_188 * __this, const MethodInfo* method)
{
t1_1 * V_0 = {0};
t1_1 * V_1 = {0};
t1_43 * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
t1_43 * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
V_0 = (t1_1 *)NULL;
t1_185 * L_0 = (__this->f14);
t1_1 * L_1 = (t1_1 *)VirtFuncInvoker0< t1_1 * >::Invoke(20 /* System.Object System.Collections.Hashtable::get_SyncRoot() */, L_0);
V_1 = L_1;
t1_1 * L_2 = V_1;
m1_4445(NULL, L_2, NULL);
}
IL_0014:
try
{ // begin try (depth: 1)
t1_185 * L_3 = (__this->f14);
t1_1 * L_4 = (t1_1 *)VirtFuncInvoker0< t1_1 * >::Invoke(22 /* System.Collections.ICollection System.Collections.Hashtable::get_Values() */, L_3);
V_0 = L_4;
IL2CPP_LEAVE(0x2C, FINALLY_0025);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (t1_43 *)e.ex;
goto FINALLY_0025;
}
FINALLY_0025:
{ // begin finally (depth: 1)
t1_1 * L_5 = V_1;
m1_4446(NULL, L_5, NULL);
IL2CPP_END_FINALLY(37)
} // end finally (depth: 1)
IL2CPP_CLEANUP(37)
{
IL2CPP_JUMP_TBL(0x2C, IL_002c)
IL2CPP_RETHROW_IF_UNHANDLED(t1_43 *)
}
IL_002c:
{
t1_1 * L_6 = V_0;
return L_6;
}
}
extern "C" t1_1 * m1_1729 (t1_188 * __this, t1_1 * p0, const MethodInfo* method)
{
{
t1_185 * L_0 = (__this->f14);
t1_1 * L_1 = p0;
t1_1 * L_2 = (t1_1 *)VirtFuncInvoker1< t1_1 *, t1_1 * >::Invoke(23 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_0, L_1);
return L_2;
}
}
extern "C" void m1_1730 (t1_188 * __this, t1_1 * p0, t1_1 * p1, const MethodInfo* method)
{
t1_1 * V_0 = {0};
t1_43 * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
t1_43 * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
t1_185 * L_0 = (__this->f14);
t1_1 * L_1 = (t1_1 *)VirtFuncInvoker0< t1_1 * >::Invoke(20 /* System.Object System.Collections.Hashtable::get_SyncRoot() */, L_0);
V_0 = L_1;
t1_1 * L_2 = V_0;
m1_4445(NULL, L_2, NULL);
}
IL_0012:
try
{ // begin try (depth: 1)
t1_185 * L_3 = (__this->f14);
t1_1 * L_4 = p0;
t1_1 * L_5 = p1;
VirtActionInvoker2< t1_1 *, t1_1 * >::Invoke(24 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_3, L_4, L_5);
IL2CPP_LEAVE(0x2B, FINALLY_0024);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (t1_43 *)e.ex;
goto FINALLY_0024;
}
FINALLY_0024:
{ // begin finally (depth: 1)
t1_1 * L_6 = V_0;
m1_4446(NULL, L_6, NULL);
IL2CPP_END_FINALLY(36)
} // end finally (depth: 1)
IL2CPP_CLEANUP(36)
{
IL2CPP_JUMP_TBL(0x2B, IL_002b)
IL2CPP_RETHROW_IF_UNHANDLED(t1_43 *)
}
IL_002b:
{
return;
}
}
extern "C" void m1_1731 (t1_188 * __this, t1_33 * p0, int32_t p1, const MethodInfo* method)
{
{
t1_185 * L_0 = (__this->f14);
t1_33 * L_1 = p0;
int32_t L_2 = p1;
VirtActionInvoker2< t1_33 *, int32_t >::Invoke(25 /* System.Void System.Collections.Hashtable::CopyTo(System.Array,System.Int32) */, L_0, L_1, L_2);
return;
}
}
extern "C" void m1_1732 (t1_188 * __this, t1_1 * p0, t1_1 * p1, const MethodInfo* method)
{
t1_1 * V_0 = {0};
t1_43 * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
t1_43 * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
t1_185 * L_0 = (__this->f14);
t1_1 * L_1 = (t1_1 *)VirtFuncInvoker0< t1_1 * >::Invoke(20 /* System.Object System.Collections.Hashtable::get_SyncRoot() */, L_0);
V_0 = L_1;
t1_1 * L_2 = V_0;
m1_4445(NULL, L_2, NULL);
}
IL_0012:
try
{ // begin try (depth: 1)
t1_185 * L_3 = (__this->f14);
t1_1 * L_4 = p0;
t1_1 * L_5 = p1;
VirtActionInvoker2< t1_1 *, t1_1 * >::Invoke(26 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_3, L_4, L_5);
IL2CPP_LEAVE(0x2B, FINALLY_0024);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (t1_43 *)e.ex;
goto FINALLY_0024;
}
FINALLY_0024:
{ // begin finally (depth: 1)
t1_1 * L_6 = V_0;
m1_4446(NULL, L_6, NULL);
IL2CPP_END_FINALLY(36)
} // end finally (depth: 1)
IL2CPP_CLEANUP(36)
{
IL2CPP_JUMP_TBL(0x2B, IL_002b)
IL2CPP_RETHROW_IF_UNHANDLED(t1_43 *)
}
IL_002b:
{
return;
}
}
extern "C" void m1_1733 (t1_188 * __this, const MethodInfo* method)
{
t1_1 * V_0 = {0};
t1_43 * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
t1_43 * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
t1_185 * L_0 = (__this->f14);
t1_1 * L_1 = (t1_1 *)VirtFuncInvoker0< t1_1 * >::Invoke(20 /* System.Object System.Collections.Hashtable::get_SyncRoot() */, L_0);
V_0 = L_1;
t1_1 * L_2 = V_0;
m1_4445(NULL, L_2, NULL);
}
IL_0012:
try
{ // begin try (depth: 1)
t1_185 * L_3 = (__this->f14);
VirtActionInvoker0::Invoke(27 /* System.Void System.Collections.Hashtable::Clear() */, L_3);
IL2CPP_LEAVE(0x29, FINALLY_0022);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (t1_43 *)e.ex;
goto FINALLY_0022;
}
FINALLY_0022:
{ // begin finally (depth: 1)
t1_1 * L_4 = V_0;
m1_4446(NULL, L_4, NULL);
IL2CPP_END_FINALLY(34)
} // end finally (depth: 1)
IL2CPP_CLEANUP(34)
{
IL2CPP_JUMP_TBL(0x29, IL_0029)
IL2CPP_RETHROW_IF_UNHANDLED(t1_43 *)
}
IL_0029:
{
return;
}
}
extern "C" bool m1_1734 (t1_188 * __this, t1_1 * p0, const MethodInfo* method)
{
{
t1_185 * L_0 = (__this->f14);
t1_1 * L_1 = p0;
int32_t L_2 = m1_1777(L_0, L_1, NULL);
return ((((int32_t)((((int32_t)L_2) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
}
extern TypeInfo* t1_184_TI_var;
extern "C" t1_1 * m1_1735 (t1_188 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_184_TI_var = il2cpp_codegen_type_info_from_index(194);
s_Il2CppMethodIntialized = true;
}
{
t1_185 * L_0 = (__this->f14);
t1_184 * L_1 = (t1_184 *)il2cpp_codegen_object_new (t1_184_TI_var);
m1_1699(L_1, L_0, 2, NULL);
return L_1;
}
}
extern "C" void m1_1736 (t1_188 * __this, t1_1 * p0, const MethodInfo* method)
{
t1_1 * V_0 = {0};
t1_43 * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
t1_43 * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
t1_185 * L_0 = (__this->f14);
t1_1 * L_1 = (t1_1 *)VirtFuncInvoker0< t1_1 * >::Invoke(20 /* System.Object System.Collections.Hashtable::get_SyncRoot() */, L_0);
V_0 = L_1;
t1_1 * L_2 = V_0;
m1_4445(NULL, L_2, NULL);
}
IL_0012:
try
{ // begin try (depth: 1)
t1_185 * L_3 = (__this->f14);
t1_1 * L_4 = p0;
VirtActionInvoker1< t1_1 * >::Invoke(30 /* System.Void System.Collections.Hashtable::Remove(System.Object) */, L_3, L_4);
IL2CPP_LEAVE(0x2A, FINALLY_0023);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (t1_43 *)e.ex;
goto FINALLY_0023;
}
FINALLY_0023:
{ // begin finally (depth: 1)
t1_1 * L_5 = V_0;
m1_4446(NULL, L_5, NULL);
IL2CPP_END_FINALLY(35)
} // end finally (depth: 1)
IL2CPP_CLEANUP(35)
{
IL2CPP_JUMP_TBL(0x2A, IL_002a)
IL2CPP_RETHROW_IF_UNHANDLED(t1_43 *)
}
IL_002a:
{
return;
}
}
extern "C" bool m1_1737 (t1_188 * __this, t1_1 * p0, const MethodInfo* method)
{
{
t1_185 * L_0 = (__this->f14);
t1_1 * L_1 = p0;
bool L_2 = (bool)VirtFuncInvoker1< bool, t1_1 * >::Invoke(28 /* System.Boolean System.Collections.Hashtable::Contains(System.Object) */, L_0, L_1);
return L_2;
}
}
extern TypeInfo* t1_185_TI_var;
extern TypeInfo* t1_188_TI_var;
extern "C" t1_1 * m1_1738 (t1_188 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_185_TI_var = il2cpp_codegen_type_info_from_index(196);
t1_188_TI_var = il2cpp_codegen_type_info_from_index(197);
s_Il2CppMethodIntialized = true;
}
t1_1 * V_0 = {0};
t1_1 * V_1 = {0};
t1_43 * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
t1_43 * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
t1_185 * L_0 = (__this->f14);
t1_1 * L_1 = (t1_1 *)VirtFuncInvoker0< t1_1 * >::Invoke(20 /* System.Object System.Collections.Hashtable::get_SyncRoot() */, L_0);
V_0 = L_1;
t1_1 * L_2 = V_0;
m1_4445(NULL, L_2, NULL);
}
IL_0012:
try
{ // begin try (depth: 1)
{
t1_185 * L_3 = (__this->f14);
t1_1 * L_4 = (t1_1 *)VirtFuncInvoker0< t1_1 * >::Invoke(32 /* System.Object System.Collections.Hashtable::Clone() */, L_3);
t1_188 * L_5 = (t1_188 *)il2cpp_codegen_object_new (t1_188_TI_var);
m1_1720(L_5, ((t1_185 *)CastclassClass(L_4, t1_185_TI_var)), NULL);
V_1 = L_5;
IL2CPP_LEAVE(0x39, FINALLY_0032);
}
IL_002d:
{
; // IL_002d: leave IL_0039
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (t1_43 *)e.ex;
goto FINALLY_0032;
}
FINALLY_0032:
{ // begin finally (depth: 1)
t1_1 * L_6 = V_0;
m1_4446(NULL, L_6, NULL);
IL2CPP_END_FINALLY(50)
} // end finally (depth: 1)
IL2CPP_CLEANUP(50)
{
IL2CPP_JUMP_TBL(0x39, IL_0039)
IL2CPP_RETHROW_IF_UNHANDLED(t1_43 *)
}
IL_0039:
{
t1_1 * L_7 = V_1;
return L_7;
}
}
extern "C" void m1_1739 (t1_185 * __this, const MethodInfo* method)
{
{
m1_1741(__this, 0, (1.0f), NULL);
return;
}
}
extern TypeInfo* t1_702_TI_var;
extern TypeInfo* t1_653_TI_var;
extern TypeInfo* t1_185_TI_var;
extern TypeInfo* t1_189_TI_var;
extern TypeInfo* t1_173_TI_var;
extern Il2CppCodeGenString* _stringLiteral491;
extern Il2CppCodeGenString* _stringLiteral537;
extern Il2CppCodeGenString* _stringLiteral538;
extern Il2CppCodeGenString* _stringLiteral539;
extern Il2CppCodeGenString* _stringLiteral540;
extern "C" void m1_1740 (t1_185 * __this, int32_t p0, float p1, t1_1 * p2, t1_1 * p3, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_702_TI_var = il2cpp_codegen_type_info_from_index(27);
t1_653_TI_var = il2cpp_codegen_type_info_from_index(4);
t1_185_TI_var = il2cpp_codegen_type_info_from_index(196);
t1_189_TI_var = il2cpp_codegen_type_info_from_index(198);
t1_173_TI_var = il2cpp_codegen_type_info_from_index(47);
_stringLiteral491 = il2cpp_codegen_string_literal_from_index(491);
_stringLiteral537 = il2cpp_codegen_string_literal_from_index(537);
_stringLiteral538 = il2cpp_codegen_string_literal_from_index(538);
_stringLiteral539 = il2cpp_codegen_string_literal_from_index(539);
_stringLiteral540 = il2cpp_codegen_string_literal_from_index(540);
s_Il2CppMethodIntialized = true;
}
double V_0 = 0.0;
int32_t V_1 = 0;
{
m1_0(__this, NULL);
int32_t L_0 = p0;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_001d;
}
}
{
t1_702 * L_1 = (t1_702 *)il2cpp_codegen_object_new (t1_702_TI_var);
m1_4575(L_1, _stringLiteral491, _stringLiteral537, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_1);
}
IL_001d:
{
float L_2 = p1;
if ((((float)L_2) < ((float)(0.1f))))
{
goto IL_003e;
}
}
{
float L_3 = p1;
if ((((float)L_3) > ((float)(1.0f))))
{
goto IL_003e;
}
}
{
float L_4 = p1;
bool L_5 = m1_479(NULL, L_4, NULL);
if (!L_5)
{
goto IL_004e;
}
}
IL_003e:
{
t1_702 * L_6 = (t1_702 *)il2cpp_codegen_object_new (t1_702_TI_var);
m1_4575(L_6, _stringLiteral538, _stringLiteral539, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_6);
}
IL_004e:
{
int32_t L_7 = p0;
if (L_7)
{
goto IL_0059;
}
}
{
int32_t L_8 = p0;
p0 = ((int32_t)((int32_t)L_8+(int32_t)1));
}
IL_0059:
{
float L_9 = p1;
__this->f3 = ((float)((float)(0.75f)*(float)L_9));
int32_t L_10 = p0;
float L_11 = (__this->f3);
V_0 = (((double)((double)((float)((float)(((float)((float)L_10)))/(float)L_11)))));
double L_12 = V_0;
if ((!(((double)L_12) > ((double)(2147483647.0)))))
{
goto IL_008b;
}
}
{
t1_653 * L_13 = (t1_653 *)il2cpp_codegen_object_new (t1_653_TI_var);
m1_4561(L_13, _stringLiteral540, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_13);
}
IL_008b:
{
double L_14 = V_0;
V_1 = (((int32_t)((int32_t)L_14)));
int32_t L_15 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(t1_185_TI_var);
int32_t L_16 = m1_1783(NULL, L_15, NULL);
V_1 = L_16;
int32_t L_17 = V_1;
int32_t L_18 = V_1;
m1_1776(__this, ((t1_189*)SZArrayNew(t1_189_TI_var, L_17)), ((t1_173*)SZArrayNew(t1_173_TI_var, L_18)), NULL);
t1_1 * L_19 = p2;
m1_1754(__this, L_19, NULL);
t1_1 * L_20 = p3;
m1_1753(__this, L_20, NULL);
__this->f1 = 0;
__this->f2 = 0;
return;
}
}
extern "C" void m1_1741 (t1_185 * __this, int32_t p0, float p1, const MethodInfo* method)
{
{
int32_t L_0 = p0;
float L_1 = p1;
m1_1740(__this, L_0, L_1, (t1_1 *)NULL, (t1_1 *)NULL, NULL);
return;
}
}
extern "C" void m1_1742 (t1_185 * __this, int32_t p0, const MethodInfo* method)
{
{
int32_t L_0 = p0;
m1_1741(__this, L_0, (1.0f), NULL);
return;
}
}
extern TypeInfo* t1_189_TI_var;
extern TypeInfo* t1_173_TI_var;
extern "C" void m1_1743 (t1_185 * __this, t1_185 * p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_189_TI_var = il2cpp_codegen_type_info_from_index(198);
t1_173_TI_var = il2cpp_codegen_type_info_from_index(47);
s_Il2CppMethodIntialized = true;
}
{
m1_0(__this, NULL);
t1_185 * L_0 = p0;
int32_t L_1 = (L_0->f1);
__this->f1 = L_1;
t1_185 * L_2 = p0;
float L_3 = (L_2->f3);
__this->f3 = L_3;
t1_185 * L_4 = p0;
t1_189* L_5 = (L_4->f4);
t1_1 * L_6 = (t1_1 *)VirtFuncInvoker0< t1_1 * >::Invoke(5 /* System.Object System.Array::Clone() */, L_5);
__this->f4 = ((t1_189*)Castclass(L_6, t1_189_TI_var));
t1_185 * L_7 = p0;
t1_173* L_8 = (L_7->f5);
t1_1 * L_9 = (t1_1 *)VirtFuncInvoker0< t1_1 * >::Invoke(5 /* System.Object System.Array::Clone() */, L_8);
__this->f5 = ((t1_173*)Castclass(L_9, t1_173_TI_var));
t1_185 * L_10 = p0;
int32_t L_11 = (L_10->f6);
__this->f6 = L_11;
t1_185 * L_12 = p0;
t1_1 * L_13 = (L_12->f9);
__this->f9 = L_13;
t1_185 * L_14 = p0;
t1_1 * L_15 = (L_14->f10);
__this->f10 = L_15;
t1_185 * L_16 = p0;
t1_1 * L_17 = (L_16->f12);
__this->f12 = L_17;
return;
}
}
extern "C" void m1_1744 (t1_185 * __this, int32_t p0, t1_1 * p1, t1_1 * p2, const MethodInfo* method)
{
{
int32_t L_0 = p0;
t1_1 * L_1 = p1;
t1_1 * L_2 = p2;
m1_1740(__this, L_0, (1.0f), L_1, L_2, NULL);
return;
}
}
extern TypeInfo* t1_817_TI_var;
extern TypeInfo* t1_701_TI_var;
extern TypeInfo* t1_45_TI_var;
extern TypeInfo* t1_465_TI_var;
extern TypeInfo* t1_143_TI_var;
extern Il2CppCodeGenString* _stringLiteral503;
extern "C" void m1_1745 (t1_185 * __this, t1_1 * p0, float p1, t1_1 * p2, t1_1 * p3, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_817_TI_var = il2cpp_codegen_type_info_from_index(184);
t1_701_TI_var = il2cpp_codegen_type_info_from_index(2);
t1_45_TI_var = il2cpp_codegen_type_info_from_index(97);
t1_465_TI_var = il2cpp_codegen_type_info_from_index(163);
t1_143_TI_var = il2cpp_codegen_type_info_from_index(158);
_stringLiteral503 = il2cpp_codegen_string_literal_from_index(503);
s_Il2CppMethodIntialized = true;
}
t1_1 * V_0 = {0};
t1_185 * G_B2_0 = {0};
t1_185 * G_B1_0 = {0};
int32_t G_B3_0 = 0;
t1_185 * G_B3_1 = {0};
{
t1_1 * L_0 = p0;
G_B1_0 = __this;
if (!L_0)
{
G_B2_0 = __this;
goto IL_0012;
}
}
{
t1_1 * L_1 = p0;
int32_t L_2 = (int32_t)InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.ICollection::get_Count() */, t1_817_TI_var, L_1);
G_B3_0 = L_2;
G_B3_1 = G_B1_0;
goto IL_0013;
}
IL_0012:
{
G_B3_0 = 0;
G_B3_1 = G_B2_0;
}
IL_0013:
{
float L_3 = p1;
t1_1 * L_4 = p2;
t1_1 * L_5 = p3;
m1_1740(G_B3_1, G_B3_0, L_3, L_4, L_5, NULL);
t1_1 * L_6 = p0;
if (L_6)
{
goto IL_002d;
}
}
{
t1_701 * L_7 = (t1_701 *)il2cpp_codegen_object_new (t1_701_TI_var);
m1_4570(L_7, _stringLiteral503, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_7);
}
IL_002d:
{
t1_1 * L_8 = p0;
t1_1 * L_9 = (t1_1 *)InterfaceFuncInvoker0< t1_1 * >::Invoke(4 /* System.Collections.IDictionaryEnumerator System.Collections.IDictionary::GetEnumerator() */, t1_45_TI_var, L_8);
V_0 = L_9;
goto IL_004b;
}
IL_0039:
{
t1_1 * L_10 = V_0;
t1_1 * L_11 = (t1_1 *)InterfaceFuncInvoker0< t1_1 * >::Invoke(1 /* System.Object System.Collections.IDictionaryEnumerator::get_Key() */, t1_465_TI_var, L_10);
t1_1 * L_12 = V_0;
t1_1 * L_13 = (t1_1 *)InterfaceFuncInvoker0< t1_1 * >::Invoke(2 /* System.Object System.Collections.IDictionaryEnumerator::get_Value() */, t1_465_TI_var, L_12);
VirtActionInvoker2< t1_1 *, t1_1 * >::Invoke(26 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, __this, L_11, L_13);
}
IL_004b:
{
t1_1 * L_14 = V_0;
bool L_15 = (bool)InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, t1_143_TI_var, L_14);
if (L_15)
{
goto IL_0039;
}
}
{
return;
}
}
extern "C" void m1_1746 (t1_185 * __this, t1_1 * p0, t1_1 * p1, t1_1 * p2, const MethodInfo* method)
{
{
t1_1 * L_0 = p0;
t1_1 * L_1 = p1;
t1_1 * L_2 = p2;
m1_1745(__this, L_0, (1.0f), L_1, L_2, NULL);
return;
}
}
extern "C" void m1_1747 (t1_185 * __this, t1_1 * p0, t1_1 * p1, const MethodInfo* method)
{
{
t1_1 * L_0 = p0;
t1_1 * L_1 = p1;
m1_1740(__this, 1, (1.0f), L_0, L_1, NULL);
return;
}
}
extern "C" void m1_1748 (t1_185 * __this, t1_190 * p0, t1_521 p1, const MethodInfo* method)
{
{
m1_0(__this, NULL);
t1_190 * L_0 = p0;
__this->f11 = L_0;
return;
}
}
extern "C" void m1_1749 (t1_185 * __this, int32_t p0, t1_1 * p1, const MethodInfo* method)
{
{
int32_t L_0 = p0;
t1_1 * L_1 = p1;
m1_1750(__this, L_0, (1.0f), L_1, NULL);
return;
}
}
extern "C" void m1_1750 (t1_185 * __this, int32_t p0, float p1, t1_1 * p2, const MethodInfo* method)
{
{
int32_t L_0 = p0;
float L_1 = p1;
m1_1741(__this, L_0, L_1, NULL);
t1_1 * L_2 = p2;
__this->f12 = L_2;
return;
}
}
extern TypeInfo* t1_173_TI_var;
extern TypeInfo* t1_185_TI_var;
extern FieldInfo* t1_808_f19_FieldInfo_var;
extern "C" void m1_1751 (t1_1 * __this , const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_173_TI_var = il2cpp_codegen_type_info_from_index(47);
t1_185_TI_var = il2cpp_codegen_type_info_from_index(196);
t1_808_f19_FieldInfo_var = il2cpp_codegen_field_info_from_index(29, 19);
s_Il2CppMethodIntialized = true;
}
{
t1_173* L_0 = ((t1_173*)SZArrayNew(t1_173_TI_var, ((int32_t)34)));
m1_988(NULL, (t1_33 *)(t1_33 *)L_0, LoadFieldToken(t1_808_f19_FieldInfo_var), NULL);
((t1_185_SFs*)t1_185_TI_var->static_fields)->f13 = L_0;
return;
}
}
extern TypeInfo* t1_184_TI_var;
extern "C" t1_1 * m1_1752 (t1_185 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_184_TI_var = il2cpp_codegen_type_info_from_index(194);
s_Il2CppMethodIntialized = true;
}
{
t1_184 * L_0 = (t1_184 *)il2cpp_codegen_object_new (t1_184_TI_var);
m1_1699(L_0, __this, 2, NULL);
return L_0;
}
}
extern "C" void m1_1753 (t1_185 * __this, t1_1 * p0, const MethodInfo* method)
{
{
t1_1 * L_0 = p0;
__this->f10 = L_0;
return;
}
}
extern "C" void m1_1754 (t1_185 * __this, t1_1 * p0, const MethodInfo* method)
{
{
t1_1 * L_0 = p0;
__this->f9 = L_0;
return;
}
}
extern "C" int32_t m1_1755 (t1_185 * __this, const MethodInfo* method)
{
{
int32_t L_0 = (__this->f1);
return L_0;
}
}
extern "C" bool m1_1756 (t1_185 * __this, const MethodInfo* method)
{
{
return 0;
}
}
extern "C" t1_1 * m1_1757 (t1_185 * __this, const MethodInfo* method)
{
{
return __this;
}
}
extern TypeInfo* t1_186_TI_var;
extern "C" t1_1 * m1_1758 (t1_185 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_186_TI_var = il2cpp_codegen_type_info_from_index(200);
s_Il2CppMethodIntialized = true;
}
{
t1_186 * L_0 = (__this->f7);
if (L_0)
{
goto IL_0017;
}
}
{
t1_186 * L_1 = (t1_186 *)il2cpp_codegen_object_new (t1_186_TI_var);
m1_1708(L_1, __this, NULL);
__this->f7 = L_1;
}
IL_0017:
{
t1_186 * L_2 = (__this->f7);
return L_2;
}
}
extern TypeInfo* t1_187_TI_var;
extern "C" t1_1 * m1_1759 (t1_185 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_187_TI_var = il2cpp_codegen_type_info_from_index(201);
s_Il2CppMethodIntialized = true;
}
{
t1_187 * L_0 = (__this->f8);
if (L_0)
{
goto IL_0017;
}
}
{
t1_187 * L_1 = (t1_187 *)il2cpp_codegen_object_new (t1_187_TI_var);
m1_1714(L_1, __this, NULL);
__this->f8 = L_1;
}
IL_0017:
{
t1_187 * L_2 = (__this->f8);
return L_2;
}
}
extern TypeInfo* t1_701_TI_var;
extern Il2CppCodeGenString* _stringLiteral490;
extern Il2CppCodeGenString* _stringLiteral541;
extern "C" t1_1 * m1_1760 (t1_185 * __this, t1_1 * p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_701_TI_var = il2cpp_codegen_type_info_from_index(2);
_stringLiteral490 = il2cpp_codegen_string_literal_from_index(490);
_stringLiteral541 = il2cpp_codegen_string_literal_from_index(541);
s_Il2CppMethodIntialized = true;
}
t1_189* V_0 = {0};
t1_173* V_1 = {0};
uint32_t V_2 = 0;
int32_t V_3 = 0;
uint32_t V_4 = 0;
uint32_t V_5 = 0;
uint32_t V_6 = 0;
t1_181 V_7 = {0};
int32_t V_8 = 0;
t1_1 * V_9 = {0};
{
t1_1 * L_0 = p0;
if (L_0)
{
goto IL_0016;
}
}
{
t1_701 * L_1 = (t1_701 *)il2cpp_codegen_object_new (t1_701_TI_var);
m1_4571(L_1, _stringLiteral490, _stringLiteral541, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_1);
}
IL_0016:
{
t1_189* L_2 = (__this->f4);
V_0 = L_2;
t1_173* L_3 = (__this->f5);
V_1 = L_3;
t1_189* L_4 = V_0;
V_2 = (((int32_t)((int32_t)(((t1_33 *)L_4)->max_length))));
t1_1 * L_5 = p0;
int32_t L_6 = (int32_t)VirtFuncInvoker1< int32_t, t1_1 * >::Invoke(35 /* System.Int32 System.Collections.Hashtable::GetHash(System.Object) */, __this, L_5);
V_3 = ((int32_t)((int32_t)L_6&(int32_t)((int32_t)2147483647)));
int32_t L_7 = V_3;
V_4 = L_7;
int32_t L_8 = V_3;
uint32_t L_9 = V_2;
V_5 = ((int32_t)((int32_t)((int32_t)((uint32_t)(int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_8>>(int32_t)5))+(int32_t)1))%(uint32_t)(int32_t)((int32_t)((int32_t)L_9-(int32_t)1))))+(int32_t)1));
uint32_t L_10 = V_2;
V_6 = L_10;
goto IL_00cb;
}
IL_004e:
{
uint32_t L_11 = V_4;
uint32_t L_12 = V_2;
V_4 = ((int32_t)((uint32_t)(int32_t)L_11%(uint32_t)(int32_t)L_12));
t1_189* L_13 = V_0;
uint32_t L_14 = V_4;
V_7 = (*(t1_181 *)((t1_181 *)(t1_181 *)SZArrayLdElema(L_13, (((uintptr_t)L_14)), sizeof(t1_181 ))));
t1_173* L_15 = V_1;
uint32_t L_16 = V_4;
uintptr_t L_17 = (((uintptr_t)L_16));
V_8 = (*(int32_t*)(int32_t*)SZArrayLdElema(L_15, L_17, sizeof(int32_t)));
t1_1 * L_18 = ((&V_7)->f0);
V_9 = L_18;
t1_1 * L_19 = V_9;
if (L_19)
{
goto IL_0080;
}
}
{
goto IL_00d3;
}
IL_0080:
{
t1_1 * L_20 = V_9;
t1_1 * L_21 = p0;
if ((((t1_1*)(t1_1 *)L_20) == ((t1_1*)(t1_1 *)L_21)))
{
goto IL_00a4;
}
}
{
int32_t L_22 = V_8;
int32_t L_23 = V_3;
if ((!(((uint32_t)((int32_t)((int32_t)L_22&(int32_t)((int32_t)2147483647)))) == ((uint32_t)L_23))))
{
goto IL_00ac;
}
}
{
t1_1 * L_24 = p0;
t1_1 * L_25 = V_9;
bool L_26 = (bool)VirtFuncInvoker2< bool, t1_1 *, t1_1 * >::Invoke(36 /* System.Boolean System.Collections.Hashtable::KeyEquals(System.Object,System.Object) */, __this, L_24, L_25);
if (!L_26)
{
goto IL_00ac;
}
}
IL_00a4:
{
t1_1 * L_27 = ((&V_7)->f1);
return L_27;
}
IL_00ac:
{
int32_t L_28 = V_8;
if (((int32_t)((int32_t)L_28&(int32_t)((int32_t)-2147483648))))
{
goto IL_00be;
}
}
{
goto IL_00d3;
}
IL_00be:
{
uint32_t L_29 = V_4;
uint32_t L_30 = V_5;
V_4 = ((int32_t)((int32_t)L_29+(int32_t)L_30));
uint32_t L_31 = V_6;
V_6 = ((int32_t)((int32_t)L_31-(int32_t)1));
}
IL_00cb:
{
uint32_t L_32 = V_6;
if ((!(((uint32_t)L_32) <= ((uint32_t)0))))
{
goto IL_004e;
}
}
IL_00d3:
{
return NULL;
}
}
extern "C" void m1_1761 (t1_185 * __this, t1_1 * p0, t1_1 * p1, const MethodInfo* method)
{
{
t1_1 * L_0 = p0;
t1_1 * L_1 = p1;
m1_1779(__this, L_0, L_1, 1, NULL);
return;
}
}
extern TypeInfo* t1_701_TI_var;
extern TypeInfo* t1_702_TI_var;
extern TypeInfo* t1_653_TI_var;
extern TypeInfo* t1_465_TI_var;
extern TypeInfo* t1_180_TI_var;
extern TypeInfo* t1_143_TI_var;
extern Il2CppCodeGenString* _stringLiteral147;
extern Il2CppCodeGenString* _stringLiteral542;
extern Il2CppCodeGenString* _stringLiteral543;
extern Il2CppCodeGenString* _stringLiteral544;
extern Il2CppCodeGenString* _stringLiteral545;
extern "C" void m1_1762 (t1_185 * __this, t1_33 * p0, int32_t p1, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_701_TI_var = il2cpp_codegen_type_info_from_index(2);
t1_702_TI_var = il2cpp_codegen_type_info_from_index(27);
t1_653_TI_var = il2cpp_codegen_type_info_from_index(4);
t1_465_TI_var = il2cpp_codegen_type_info_from_index(163);
t1_180_TI_var = il2cpp_codegen_type_info_from_index(195);
t1_143_TI_var = il2cpp_codegen_type_info_from_index(158);
_stringLiteral147 = il2cpp_codegen_string_literal_from_index(147);
_stringLiteral542 = il2cpp_codegen_string_literal_from_index(542);
_stringLiteral543 = il2cpp_codegen_string_literal_from_index(543);
_stringLiteral544 = il2cpp_codegen_string_literal_from_index(544);
_stringLiteral545 = il2cpp_codegen_string_literal_from_index(545);
s_Il2CppMethodIntialized = true;
}
t1_1 * V_0 = {0};
int32_t V_1 = 0;
{
t1_33 * L_0 = p0;
if (L_0)
{
goto IL_0011;
}
}
{
t1_701 * L_1 = (t1_701 *)il2cpp_codegen_object_new (t1_701_TI_var);
m1_4570(L_1, _stringLiteral147, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_1);
}
IL_0011:
{
int32_t L_2 = p1;
if ((((int32_t)L_2) >= ((int32_t)0)))
{
goto IL_0023;
}
}
{
t1_702 * L_3 = (t1_702 *)il2cpp_codegen_object_new (t1_702_TI_var);
m1_4574(L_3, _stringLiteral542, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_3);
}
IL_0023:
{
t1_33 * L_4 = p0;
int32_t L_5 = m1_778(L_4, NULL);
if ((((int32_t)L_5) <= ((int32_t)1)))
{
goto IL_003a;
}
}
{
t1_653 * L_6 = (t1_653 *)il2cpp_codegen_object_new (t1_653_TI_var);
m1_4561(L_6, _stringLiteral543, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_6);
}
IL_003a:
{
t1_33 * L_7 = p0;
int32_t L_8 = m1_776(L_7, NULL);
if ((((int32_t)L_8) <= ((int32_t)0)))
{
goto IL_005d;
}
}
{
int32_t L_9 = p1;
t1_33 * L_10 = p0;
int32_t L_11 = m1_776(L_10, NULL);
if ((((int32_t)L_9) < ((int32_t)L_11)))
{
goto IL_005d;
}
}
{
t1_653 * L_12 = (t1_653 *)il2cpp_codegen_object_new (t1_653_TI_var);
m1_4561(L_12, _stringLiteral544, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_12);
}
IL_005d:
{
int32_t L_13 = p1;
int32_t L_14 = (__this->f1);
t1_33 * L_15 = p0;
int32_t L_16 = m1_776(L_15, NULL);
if ((((int32_t)((int32_t)((int32_t)L_13+(int32_t)L_14))) <= ((int32_t)L_16)))
{
goto IL_007b;
}
}
{
t1_653 * L_17 = (t1_653 *)il2cpp_codegen_object_new (t1_653_TI_var);
m1_4561(L_17, _stringLiteral545, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_17);
}
IL_007b:
{
t1_1 * L_18 = (t1_1 *)VirtFuncInvoker0< t1_1 * >::Invoke(29 /* System.Collections.IDictionaryEnumerator System.Collections.Hashtable::GetEnumerator() */, __this);
V_0 = L_18;
int32_t L_19 = p1;
V_1 = L_19;
goto IL_009f;
}
IL_0089:
{
t1_33 * L_20 = p0;
t1_1 * L_21 = V_0;
t1_180 L_22 = (t1_180 )InterfaceFuncInvoker0< t1_180 >::Invoke(0 /* System.Collections.DictionaryEntry System.Collections.IDictionaryEnumerator::get_Entry() */, t1_465_TI_var, L_21);
t1_180 L_23 = L_22;
t1_1 * L_24 = Box(t1_180_TI_var, &L_23);
int32_t L_25 = V_1;
int32_t L_26 = L_25;
V_1 = ((int32_t)((int32_t)L_26+(int32_t)1));
m1_804(L_20, L_24, L_26, NULL);
}
IL_009f:
{
t1_1 * L_27 = V_0;
bool L_28 = (bool)InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, t1_143_TI_var, L_27);
if (L_28)
{
goto IL_0089;
}
}
{
return;
}
}
extern "C" void m1_1763 (t1_185 * __this, t1_1 * p0, t1_1 * p1, const MethodInfo* method)
{
{
t1_1 * L_0 = p0;
t1_1 * L_1 = p1;
m1_1779(__this, L_0, L_1, 0, NULL);
return;
}
}
extern "C" void m1_1764 (t1_185 * __this, const MethodInfo* method)
{
int32_t V_0 = 0;
{
V_0 = 0;
goto IL_0038;
}
IL_0007:
{
t1_189* L_0 = (__this->f4);
int32_t L_1 = V_0;
((t1_181 *)(t1_181 *)SZArrayLdElema(L_0, L_1, sizeof(t1_181 )))->f0 = NULL;
t1_189* L_2 = (__this->f4);
int32_t L_3 = V_0;
((t1_181 *)(t1_181 *)SZArrayLdElema(L_2, L_3, sizeof(t1_181 )))->f1 = NULL;
t1_173* L_4 = (__this->f5);
int32_t L_5 = V_0;
*((int32_t*)(int32_t*)SZArrayLdElema(L_4, L_5, sizeof(int32_t))) = (int32_t)0;
int32_t L_6 = V_0;
V_0 = ((int32_t)((int32_t)L_6+(int32_t)1));
}
IL_0038:
{
int32_t L_7 = V_0;
t1_189* L_8 = (__this->f4);
if ((((int32_t)L_7) < ((int32_t)(((int32_t)((int32_t)(((t1_33 *)L_8)->max_length)))))))
{
goto IL_0007;
}
}
{
__this->f1 = 0;
int32_t L_9 = (__this->f2);
__this->f2 = ((int32_t)((int32_t)L_9+(int32_t)1));
return;
}
}
extern "C" bool m1_1765 (t1_185 * __this, t1_1 * p0, const MethodInfo* method)
{
{
t1_1 * L_0 = p0;
int32_t L_1 = m1_1777(__this, L_0, NULL);
return ((((int32_t)((((int32_t)L_1) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
}
extern TypeInfo* t1_184_TI_var;
extern "C" t1_1 * m1_1766 (t1_185 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_184_TI_var = il2cpp_codegen_type_info_from_index(194);
s_Il2CppMethodIntialized = true;
}
{
t1_184 * L_0 = (t1_184 *)il2cpp_codegen_object_new (t1_184_TI_var);
m1_1699(L_0, __this, 2, NULL);
return L_0;
}
}
extern TypeInfo* t1_182_TI_var;
extern "C" void m1_1767 (t1_185 * __this, t1_1 * p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_182_TI_var = il2cpp_codegen_type_info_from_index(193);
s_Il2CppMethodIntialized = true;
}
int32_t V_0 = 0;
t1_189* V_1 = {0};
int32_t V_2 = 0;
t1_181 * G_B3_0 = {0};
t1_181 * G_B2_0 = {0};
t1_182 * G_B4_0 = {0};
t1_181 * G_B4_1 = {0};
{
t1_1 * L_0 = p0;
int32_t L_1 = m1_1777(__this, L_0, NULL);
V_0 = L_1;
int32_t L_2 = V_0;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0076;
}
}
{
t1_189* L_3 = (__this->f4);
V_1 = L_3;
t1_173* L_4 = (__this->f5);
int32_t L_5 = V_0;
int32_t L_6 = L_5;
V_2 = (*(int32_t*)(int32_t*)SZArrayLdElema(L_4, L_6, sizeof(int32_t)));
int32_t L_7 = V_2;
V_2 = ((int32_t)((int32_t)L_7&(int32_t)((int32_t)-2147483648)));
t1_173* L_8 = (__this->f5);
int32_t L_9 = V_0;
int32_t L_10 = V_2;
*((int32_t*)(int32_t*)SZArrayLdElema(L_8, L_9, sizeof(int32_t))) = (int32_t)L_10;
t1_189* L_11 = V_1;
int32_t L_12 = V_0;
int32_t L_13 = V_2;
G_B2_0 = ((t1_181 *)(t1_181 *)SZArrayLdElema(L_11, L_12, sizeof(t1_181 )));
if (!L_13)
{
G_B3_0 = ((t1_181 *)(t1_181 *)SZArrayLdElema(L_11, L_12, sizeof(t1_181 )));
goto IL_0047;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(t1_182_TI_var);
t1_182 * L_14 = ((t1_182_SFs*)t1_182_TI_var->static_fields)->f0;
G_B4_0 = L_14;
G_B4_1 = G_B2_0;
goto IL_0048;
}
IL_0047:
{
G_B4_0 = ((t1_182 *)(NULL));
G_B4_1 = G_B3_0;
}
IL_0048:
{
G_B4_1->f0 = G_B4_0;
t1_189* L_15 = V_1;
int32_t L_16 = V_0;
((t1_181 *)(t1_181 *)SZArrayLdElema(L_15, L_16, sizeof(t1_181 )))->f1 = NULL;
int32_t L_17 = (__this->f1);
__this->f1 = ((int32_t)((int32_t)L_17-(int32_t)1));
int32_t L_18 = (__this->f2);
__this->f2 = ((int32_t)((int32_t)L_18+(int32_t)1));
}
IL_0076:
{
return;
}
}
extern "C" bool m1_1768 (t1_185 * __this, t1_1 * p0, const MethodInfo* method)
{
{
t1_1 * L_0 = p0;
bool L_1 = (bool)VirtFuncInvoker1< bool, t1_1 * >::Invoke(28 /* System.Boolean System.Collections.Hashtable::Contains(System.Object) */, __this, L_0);
return L_1;
}
}
extern TypeInfo* t1_185_TI_var;
extern "C" t1_1 * m1_1769 (t1_185 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_185_TI_var = il2cpp_codegen_type_info_from_index(196);
s_Il2CppMethodIntialized = true;
}
{
t1_185 * L_0 = (t1_185 *)il2cpp_codegen_object_new (t1_185_TI_var);
m1_1743(L_0, __this, NULL);
return L_0;
}
}
extern TypeInfo* t1_701_TI_var;
extern TypeInfo* t1_170_TI_var;
extern Il2CppCodeGenString* _stringLiteral109;
extern Il2CppCodeGenString* _stringLiteral546;
extern Il2CppCodeGenString* _stringLiteral496;
extern Il2CppCodeGenString* _stringLiteral547;
extern Il2CppCodeGenString* _stringLiteral497;
extern Il2CppCodeGenString* _stringLiteral548;
extern Il2CppCodeGenString* _stringLiteral498;
extern Il2CppCodeGenString* _stringLiteral549;
extern Il2CppCodeGenString* _stringLiteral550;
extern Il2CppCodeGenString* _stringLiteral551;
extern "C" void m1_1770 (t1_185 * __this, t1_190 * p0, t1_521 p1, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_701_TI_var = il2cpp_codegen_type_info_from_index(2);
t1_170_TI_var = il2cpp_codegen_type_info_from_index(19);
_stringLiteral109 = il2cpp_codegen_string_literal_from_index(109);
_stringLiteral546 = il2cpp_codegen_string_literal_from_index(546);
_stringLiteral496 = il2cpp_codegen_string_literal_from_index(496);
_stringLiteral547 = il2cpp_codegen_string_literal_from_index(547);
_stringLiteral497 = il2cpp_codegen_string_literal_from_index(497);
_stringLiteral548 = il2cpp_codegen_string_literal_from_index(548);
_stringLiteral498 = il2cpp_codegen_string_literal_from_index(498);
_stringLiteral549 = il2cpp_codegen_string_literal_from_index(549);
_stringLiteral550 = il2cpp_codegen_string_literal_from_index(550);
_stringLiteral551 = il2cpp_codegen_string_literal_from_index(551);
s_Il2CppMethodIntialized = true;
}
t1_170* V_0 = {0};
t1_170* V_1 = {0};
{
t1_190 * L_0 = p0;
if (L_0)
{
goto IL_0011;
}
}
{
t1_701 * L_1 = (t1_701 *)il2cpp_codegen_object_new (t1_701_TI_var);
m1_4570(L_1, _stringLiteral109, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_1);
}
IL_0011:
{
t1_190 * L_2 = p0;
float L_3 = (__this->f3);
m1_3626(L_2, _stringLiteral546, L_3, NULL);
t1_190 * L_4 = p0;
int32_t L_5 = (__this->f2);
m1_3623(L_4, _stringLiteral496, L_5, NULL);
t1_1 * L_6 = (__this->f12);
if (!L_6)
{
goto IL_0054;
}
}
{
t1_190 * L_7 = p0;
t1_1 * L_8 = (__this->f12);
m1_3629(L_7, _stringLiteral547, L_8, NULL);
goto IL_0065;
}
IL_0054:
{
t1_190 * L_9 = p0;
t1_1 * L_10 = (__this->f10);
m1_3629(L_9, _stringLiteral497, L_10, NULL);
}
IL_0065:
{
t1_1 * L_11 = (__this->f9);
if (!L_11)
{
goto IL_0081;
}
}
{
t1_190 * L_12 = p0;
t1_1 * L_13 = (__this->f9);
m1_3629(L_12, _stringLiteral548, L_13, NULL);
}
IL_0081:
{
t1_190 * L_14 = p0;
t1_189* L_15 = (__this->f4);
m1_3623(L_14, _stringLiteral498, (((int32_t)((int32_t)(((t1_33 *)L_15)->max_length)))), NULL);
int32_t L_16 = (__this->f1);
V_0 = ((t1_170*)SZArrayNew(t1_170_TI_var, L_16));
t1_170* L_17 = V_0;
m1_1780(__this, (t1_33 *)(t1_33 *)L_17, 0, 0, NULL);
int32_t L_18 = (__this->f1);
V_1 = ((t1_170*)SZArrayNew(t1_170_TI_var, L_18));
t1_170* L_19 = V_1;
m1_1780(__this, (t1_33 *)(t1_33 *)L_19, 0, 1, NULL);
t1_190 * L_20 = p0;
t1_170* L_21 = V_0;
m1_3629(L_20, _stringLiteral549, (t1_1 *)(t1_1 *)L_21, NULL);
t1_190 * L_22 = p0;
t1_170* L_23 = V_1;
m1_3629(L_22, _stringLiteral550, (t1_1 *)(t1_1 *)L_23, NULL);
t1_190 * L_24 = p0;
t1_1 * L_25 = (__this->f12);
m1_3629(L_24, _stringLiteral551, L_25, NULL);
return;
}
}
extern const Il2CppType* t1_20_0_0_0_var;
extern const Il2CppType* t1_4_0_0_0_var;
extern const Il2CppType* t1_1_0_0_0_var;
extern const Il2CppType* t1_170_0_0_0_var;
extern TypeInfo* t1_37_TI_var;
extern TypeInfo* t1_20_TI_var;
extern TypeInfo* t1_4_TI_var;
extern TypeInfo* t1_193_TI_var;
extern TypeInfo* t1_1_TI_var;
extern TypeInfo* t1_192_TI_var;
extern TypeInfo* t1_191_TI_var;
extern TypeInfo* t1_170_TI_var;
extern TypeInfo* t1_548_TI_var;
extern TypeInfo* t1_185_TI_var;
extern TypeInfo* t1_189_TI_var;
extern TypeInfo* t1_173_TI_var;
extern Il2CppCodeGenString* _stringLiteral546;
extern Il2CppCodeGenString* _stringLiteral496;
extern Il2CppCodeGenString* _stringLiteral547;
extern Il2CppCodeGenString* _stringLiteral497;
extern Il2CppCodeGenString* _stringLiteral548;
extern Il2CppCodeGenString* _stringLiteral498;
extern Il2CppCodeGenString* _stringLiteral549;
extern Il2CppCodeGenString* _stringLiteral550;
extern Il2CppCodeGenString* _stringLiteral552;
extern "C" void m1_1771 (t1_185 * __this, t1_1 * p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_20_0_0_0_var = il2cpp_codegen_type_from_index(43);
t1_4_0_0_0_var = il2cpp_codegen_type_from_index(8);
t1_1_0_0_0_var = il2cpp_codegen_type_from_index(0);
t1_170_0_0_0_var = il2cpp_codegen_type_from_index(19);
t1_37_TI_var = il2cpp_codegen_type_info_from_index(3);
t1_20_TI_var = il2cpp_codegen_type_info_from_index(43);
t1_4_TI_var = il2cpp_codegen_type_info_from_index(8);
t1_193_TI_var = il2cpp_codegen_type_info_from_index(202);
t1_1_TI_var = il2cpp_codegen_type_info_from_index(0);
t1_192_TI_var = il2cpp_codegen_type_info_from_index(78);
t1_191_TI_var = il2cpp_codegen_type_info_from_index(203);
t1_170_TI_var = il2cpp_codegen_type_info_from_index(19);
t1_548_TI_var = il2cpp_codegen_type_info_from_index(98);
t1_185_TI_var = il2cpp_codegen_type_info_from_index(196);
t1_189_TI_var = il2cpp_codegen_type_info_from_index(198);
t1_173_TI_var = il2cpp_codegen_type_info_from_index(47);
_stringLiteral546 = il2cpp_codegen_string_literal_from_index(546);
_stringLiteral496 = il2cpp_codegen_string_literal_from_index(496);
_stringLiteral547 = il2cpp_codegen_string_literal_from_index(547);
_stringLiteral497 = il2cpp_codegen_string_literal_from_index(497);
_stringLiteral548 = il2cpp_codegen_string_literal_from_index(548);
_stringLiteral498 = il2cpp_codegen_string_literal_from_index(498);
_stringLiteral549 = il2cpp_codegen_string_literal_from_index(549);
_stringLiteral550 = il2cpp_codegen_string_literal_from_index(550);
_stringLiteral552 = il2cpp_codegen_string_literal_from_index(552);
s_Il2CppMethodIntialized = true;
}
int32_t V_0 = 0;
t1_170* V_1 = {0};
t1_170* V_2 = {0};
int32_t V_3 = 0;
t1_43 * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
t1_43 * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
t1_190 * L_0 = (__this->f11);
if (L_0)
{
goto IL_000c;
}
}
{
return;
}
IL_000c:
{
t1_190 * L_1 = (__this->f11);
IL2CPP_RUNTIME_CLASS_INIT(t1_37_TI_var);
t1_37 * L_2 = m1_894(NULL, LoadTypeToken(t1_20_0_0_0_var), NULL);
t1_1 * L_3 = m1_3619(L_1, _stringLiteral546, L_2, NULL);
__this->f3 = ((*(float*)((float*)UnBox (L_3, t1_20_TI_var))));
t1_190 * L_4 = (__this->f11);
t1_37 * L_5 = m1_894(NULL, LoadTypeToken(t1_4_0_0_0_var), NULL);
t1_1 * L_6 = m1_3619(L_4, _stringLiteral496, L_5, NULL);
__this->f2 = ((*(int32_t*)((int32_t*)UnBox (L_6, t1_4_TI_var))));
}
IL_0056:
try
{ // begin try (depth: 1)
t1_190 * L_7 = (__this->f11);
IL2CPP_RUNTIME_CLASS_INIT(t1_37_TI_var);
t1_37 * L_8 = m1_894(NULL, LoadTypeToken(t1_1_0_0_0_var), NULL);
t1_1 * L_9 = m1_3619(L_7, _stringLiteral547, L_8, NULL);
__this->f12 = ((t1_1 *)Castclass(L_9, t1_193_TI_var));
goto IL_0086;
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (t1_43 *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (t1_1_TI_var, e.ex->object.klass))
goto CATCH_0080;
throw e;
}
CATCH_0080:
{ // begin catch(System.Object)
goto IL_0086;
} // end catch (depth: 1)
IL_0086:
{
t1_1 * L_10 = (__this->f12);
if (L_10)
{
goto IL_00b6;
}
}
{
t1_190 * L_11 = (__this->f11);
IL2CPP_RUNTIME_CLASS_INIT(t1_37_TI_var);
t1_37 * L_12 = m1_894(NULL, LoadTypeToken(t1_1_0_0_0_var), NULL);
t1_1 * L_13 = m1_3619(L_11, _stringLiteral497, L_12, NULL);
__this->f10 = ((t1_1 *)Castclass(L_13, t1_192_TI_var));
}
IL_00b6:
try
{ // begin try (depth: 1)
t1_190 * L_14 = (__this->f11);
IL2CPP_RUNTIME_CLASS_INIT(t1_37_TI_var);
t1_37 * L_15 = m1_894(NULL, LoadTypeToken(t1_1_0_0_0_var), NULL);
t1_1 * L_16 = m1_3619(L_14, _stringLiteral548, L_15, NULL);
__this->f9 = ((t1_1 *)Castclass(L_16, t1_191_TI_var));
goto IL_00e6;
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (t1_43 *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (t1_1_TI_var, e.ex->object.klass))
goto CATCH_00e0;
throw e;
}
CATCH_00e0:
{ // begin catch(System.Object)
goto IL_00e6;
} // end catch (depth: 1)
IL_00e6:
{
t1_190 * L_17 = (__this->f11);
IL2CPP_RUNTIME_CLASS_INIT(t1_37_TI_var);
t1_37 * L_18 = m1_894(NULL, LoadTypeToken(t1_4_0_0_0_var), NULL);
t1_1 * L_19 = m1_3619(L_17, _stringLiteral498, L_18, NULL);
V_0 = ((*(int32_t*)((int32_t*)UnBox (L_19, t1_4_TI_var))));
t1_190 * L_20 = (__this->f11);
t1_37 * L_21 = m1_894(NULL, LoadTypeToken(t1_170_0_0_0_var), NULL);
t1_1 * L_22 = m1_3619(L_20, _stringLiteral549, L_21, NULL);
V_1 = ((t1_170*)Castclass(L_22, t1_170_TI_var));
t1_190 * L_23 = (__this->f11);
t1_37 * L_24 = m1_894(NULL, LoadTypeToken(t1_170_0_0_0_var), NULL);
t1_1 * L_25 = m1_3619(L_23, _stringLiteral550, L_24, NULL);
V_2 = ((t1_170*)Castclass(L_25, t1_170_TI_var));
t1_170* L_26 = V_1;
t1_170* L_27 = V_2;
if ((((int32_t)(((int32_t)((int32_t)(((t1_33 *)L_26)->max_length))))) == ((int32_t)(((int32_t)((int32_t)(((t1_33 *)L_27)->max_length)))))))
{
goto IL_015c;
}
}
{
t1_548 * L_28 = (t1_548 *)il2cpp_codegen_object_new (t1_548_TI_var);
m1_3615(L_28, _stringLiteral552, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_28);
}
IL_015c:
{
int32_t L_29 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(t1_185_TI_var);
int32_t L_30 = m1_1783(NULL, L_29, NULL);
V_0 = L_30;
int32_t L_31 = V_0;
int32_t L_32 = V_0;
m1_1776(__this, ((t1_189*)SZArrayNew(t1_189_TI_var, L_31)), ((t1_173*)SZArrayNew(t1_173_TI_var, L_32)), NULL);
V_3 = 0;
goto IL_018c;
}
IL_017c:
{
t1_170* L_33 = V_1;
int32_t L_34 = V_3;
int32_t L_35 = L_34;
t1_170* L_36 = V_2;
int32_t L_37 = V_3;
int32_t L_38 = L_37;
VirtActionInvoker2< t1_1 *, t1_1 * >::Invoke(26 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, __this, (*(t1_1 **)(t1_1 **)SZArrayLdElema(L_33, L_35, sizeof(t1_1 *))), (*(t1_1 **)(t1_1 **)SZArrayLdElema(L_36, L_38, sizeof(t1_1 *))));
int32_t L_39 = V_3;
V_3 = ((int32_t)((int32_t)L_39+(int32_t)1));
}
IL_018c:
{
int32_t L_40 = V_3;
t1_170* L_41 = V_1;
if ((((int32_t)L_40) < ((int32_t)(((int32_t)((int32_t)(((t1_33 *)L_41)->max_length)))))))
{
goto IL_017c;
}
}
{
m1_1775(__this, NULL);
__this->f11 = (t1_190 *)NULL;
return;
}
}
extern TypeInfo* t1_701_TI_var;
extern TypeInfo* t1_188_TI_var;
extern Il2CppCodeGenString* _stringLiteral553;
extern "C" t1_185 * m1_1772 (t1_1 * __this , t1_185 * p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_701_TI_var = il2cpp_codegen_type_info_from_index(2);
t1_188_TI_var = il2cpp_codegen_type_info_from_index(197);
_stringLiteral553 = il2cpp_codegen_string_literal_from_index(553);
s_Il2CppMethodIntialized = true;
}
{
t1_185 * L_0 = p0;
if (L_0)
{
goto IL_0011;
}
}
{
t1_701 * L_1 = (t1_701 *)il2cpp_codegen_object_new (t1_701_TI_var);
m1_4570(L_1, _stringLiteral553, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_1);
}
IL_0011:
{
t1_185 * L_2 = p0;
t1_188 * L_3 = (t1_188 *)il2cpp_codegen_object_new (t1_188_TI_var);
m1_1720(L_3, L_2, NULL);
return L_3;
}
}
extern TypeInfo* t1_193_TI_var;
extern TypeInfo* t1_191_TI_var;
extern "C" int32_t m1_1773 (t1_185 * __this, t1_1 * p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_193_TI_var = il2cpp_codegen_type_info_from_index(202);
t1_191_TI_var = il2cpp_codegen_type_info_from_index(203);
s_Il2CppMethodIntialized = true;
}
{
t1_1 * L_0 = (__this->f12);
if (!L_0)
{
goto IL_0018;
}
}
{
t1_1 * L_1 = (__this->f12);
t1_1 * L_2 = p0;
int32_t L_3 = (int32_t)InterfaceFuncInvoker1< int32_t, t1_1 * >::Invoke(1 /* System.Int32 System.Collections.IEqualityComparer::GetHashCode(System.Object) */, t1_193_TI_var, L_1, L_2);
return L_3;
}
IL_0018:
{
t1_1 * L_4 = (__this->f9);
if (L_4)
{
goto IL_002a;
}
}
{
t1_1 * L_5 = p0;
int32_t L_6 = (int32_t)VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, L_5);
return L_6;
}
IL_002a:
{
t1_1 * L_7 = (__this->f9);
t1_1 * L_8 = p0;
int32_t L_9 = (int32_t)InterfaceFuncInvoker1< int32_t, t1_1 * >::Invoke(0 /* System.Int32 System.Collections.IHashCodeProvider::GetHashCode(System.Object) */, t1_191_TI_var, L_7, L_8);
return L_9;
}
}
extern TypeInfo* t1_182_TI_var;
extern TypeInfo* t1_193_TI_var;
extern TypeInfo* t1_192_TI_var;
extern "C" bool m1_1774 (t1_185 * __this, t1_1 * p0, t1_1 * p1, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_182_TI_var = il2cpp_codegen_type_info_from_index(193);
t1_193_TI_var = il2cpp_codegen_type_info_from_index(202);
t1_192_TI_var = il2cpp_codegen_type_info_from_index(78);
s_Il2CppMethodIntialized = true;
}
{
t1_1 * L_0 = p1;
IL2CPP_RUNTIME_CLASS_INIT(t1_182_TI_var);
t1_182 * L_1 = ((t1_182_SFs*)t1_182_TI_var->static_fields)->f0;
if ((!(((t1_1*)(t1_1 *)L_0) == ((t1_1*)(t1_182 *)L_1))))
{
goto IL_000d;
}
}
{
return 0;
}
IL_000d:
{
t1_1 * L_2 = (__this->f12);
if (!L_2)
{
goto IL_0026;
}
}
{
t1_1 * L_3 = (__this->f12);
t1_1 * L_4 = p0;
t1_1 * L_5 = p1;
bool L_6 = (bool)InterfaceFuncInvoker2< bool, t1_1 *, t1_1 * >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, t1_193_TI_var, L_3, L_4, L_5);
return L_6;
}
IL_0026:
{
t1_1 * L_7 = (__this->f10);
if (L_7)
{
goto IL_0039;
}
}
{
t1_1 * L_8 = p0;
t1_1 * L_9 = p1;
bool L_10 = (bool)VirtFuncInvoker1< bool, t1_1 * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_8, L_9);
return L_10;
}
IL_0039:
{
t1_1 * L_11 = (__this->f10);
t1_1 * L_12 = p0;
t1_1 * L_13 = p1;
int32_t L_14 = (int32_t)InterfaceFuncInvoker2< int32_t, t1_1 *, t1_1 * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, t1_192_TI_var, L_11, L_12, L_13);
return ((((int32_t)L_14) == ((int32_t)0))? 1 : 0);
}
}
extern "C" void m1_1775 (t1_185 * __this, const MethodInfo* method)
{
int32_t V_0 = 0;
{
t1_189* L_0 = (__this->f4);
V_0 = (((int32_t)((int32_t)(((t1_33 *)L_0)->max_length))));
int32_t L_1 = V_0;
float L_2 = (__this->f3);
__this->f6 = (((int32_t)((int32_t)((float)((float)(((float)((float)L_1)))*(float)L_2)))));
int32_t L_3 = (__this->f6);
int32_t L_4 = V_0;
if ((((int32_t)L_3) < ((int32_t)L_4)))
{
goto IL_002e;
}
}
{
int32_t L_5 = V_0;
__this->f6 = ((int32_t)((int32_t)L_5-(int32_t)1));
}
IL_002e:
{
return;
}
}
extern TypeInfo* t1_701_TI_var;
extern Il2CppCodeGenString* _stringLiteral553;
extern "C" void m1_1776 (t1_185 * __this, t1_189* p0, t1_173* p1, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_701_TI_var = il2cpp_codegen_type_info_from_index(2);
_stringLiteral553 = il2cpp_codegen_string_literal_from_index(553);
s_Il2CppMethodIntialized = true;
}
{
t1_189* L_0 = p0;
if (L_0)
{
goto IL_0011;
}
}
{
t1_701 * L_1 = (t1_701 *)il2cpp_codegen_object_new (t1_701_TI_var);
m1_4570(L_1, _stringLiteral553, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_1);
}
IL_0011:
{
t1_189* L_2 = p0;
__this->f4 = L_2;
t1_173* L_3 = p1;
__this->f5 = L_3;
m1_1775(__this, NULL);
return;
}
}
extern TypeInfo* t1_701_TI_var;
extern Il2CppCodeGenString* _stringLiteral490;
extern Il2CppCodeGenString* _stringLiteral541;
extern "C" int32_t m1_1777 (t1_185 * __this, t1_1 * p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_701_TI_var = il2cpp_codegen_type_info_from_index(2);
_stringLiteral490 = il2cpp_codegen_string_literal_from_index(490);
_stringLiteral541 = il2cpp_codegen_string_literal_from_index(541);
s_Il2CppMethodIntialized = true;
}
t1_189* V_0 = {0};
t1_173* V_1 = {0};
uint32_t V_2 = 0;
int32_t V_3 = 0;
uint32_t V_4 = 0;
uint32_t V_5 = 0;
uint32_t V_6 = 0;
t1_181 V_7 = {0};
int32_t V_8 = 0;
t1_1 * V_9 = {0};
{
t1_1 * L_0 = p0;
if (L_0)
{
goto IL_0016;
}
}
{
t1_701 * L_1 = (t1_701 *)il2cpp_codegen_object_new (t1_701_TI_var);
m1_4571(L_1, _stringLiteral490, _stringLiteral541, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_1);
}
IL_0016:
{
t1_189* L_2 = (__this->f4);
V_0 = L_2;
t1_173* L_3 = (__this->f5);
V_1 = L_3;
t1_189* L_4 = V_0;
V_2 = (((int32_t)((int32_t)(((t1_33 *)L_4)->max_length))));
t1_1 * L_5 = p0;
int32_t L_6 = (int32_t)VirtFuncInvoker1< int32_t, t1_1 * >::Invoke(35 /* System.Int32 System.Collections.Hashtable::GetHash(System.Object) */, __this, L_5);
V_3 = ((int32_t)((int32_t)L_6&(int32_t)((int32_t)2147483647)));
int32_t L_7 = V_3;
V_4 = L_7;
int32_t L_8 = V_3;
uint32_t L_9 = V_2;
V_5 = ((int32_t)((int32_t)((int32_t)((uint32_t)(int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_8>>(int32_t)5))+(int32_t)1))%(uint32_t)(int32_t)((int32_t)((int32_t)L_9-(int32_t)1))))+(int32_t)1));
uint32_t L_10 = V_2;
V_6 = L_10;
goto IL_00c6;
}
IL_004e:
{
uint32_t L_11 = V_4;
uint32_t L_12 = V_2;
V_4 = ((int32_t)((uint32_t)(int32_t)L_11%(uint32_t)(int32_t)L_12));
t1_189* L_13 = V_0;
uint32_t L_14 = V_4;
V_7 = (*(t1_181 *)((t1_181 *)(t1_181 *)SZArrayLdElema(L_13, (((uintptr_t)L_14)), sizeof(t1_181 ))));
t1_173* L_15 = V_1;
uint32_t L_16 = V_4;
uintptr_t L_17 = (((uintptr_t)L_16));
V_8 = (*(int32_t*)(int32_t*)SZArrayLdElema(L_15, L_17, sizeof(int32_t)));
t1_1 * L_18 = ((&V_7)->f0);
V_9 = L_18;
t1_1 * L_19 = V_9;
if (L_19)
{
goto IL_0080;
}
}
{
goto IL_00ce;
}
IL_0080:
{
t1_1 * L_20 = V_9;
t1_1 * L_21 = p0;
if ((((t1_1*)(t1_1 *)L_20) == ((t1_1*)(t1_1 *)L_21)))
{
goto IL_00a4;
}
}
{
int32_t L_22 = V_8;
int32_t L_23 = V_3;
if ((!(((uint32_t)((int32_t)((int32_t)L_22&(int32_t)((int32_t)2147483647)))) == ((uint32_t)L_23))))
{
goto IL_00a7;
}
}
{
t1_1 * L_24 = p0;
t1_1 * L_25 = V_9;
bool L_26 = (bool)VirtFuncInvoker2< bool, t1_1 *, t1_1 * >::Invoke(36 /* System.Boolean System.Collections.Hashtable::KeyEquals(System.Object,System.Object) */, __this, L_24, L_25);
if (!L_26)
{
goto IL_00a7;
}
}
IL_00a4:
{
uint32_t L_27 = V_4;
return L_27;
}
IL_00a7:
{
int32_t L_28 = V_8;
if (((int32_t)((int32_t)L_28&(int32_t)((int32_t)-2147483648))))
{
goto IL_00b9;
}
}
{
goto IL_00ce;
}
IL_00b9:
{
uint32_t L_29 = V_4;
uint32_t L_30 = V_5;
V_4 = ((int32_t)((int32_t)L_29+(int32_t)L_30));
uint32_t L_31 = V_6;
V_6 = ((int32_t)((int32_t)L_31-(int32_t)1));
}
IL_00c6:
{
uint32_t L_32 = V_6;
if ((!(((uint32_t)L_32) <= ((uint32_t)0))))
{
goto IL_004e;
}
}
IL_00ce:
{
return (-1);
}
}
extern TypeInfo* t1_185_TI_var;
extern TypeInfo* t1_189_TI_var;
extern TypeInfo* t1_173_TI_var;
extern "C" void m1_1778 (t1_185 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_185_TI_var = il2cpp_codegen_type_info_from_index(196);
t1_189_TI_var = il2cpp_codegen_type_info_from_index(198);
t1_173_TI_var = il2cpp_codegen_type_info_from_index(47);
s_Il2CppMethodIntialized = true;
}
int32_t V_0 = 0;
uint32_t V_1 = 0;
t1_189* V_2 = {0};
t1_189* V_3 = {0};
t1_173* V_4 = {0};
t1_173* V_5 = {0};
int32_t V_6 = 0;
t1_181 V_7 = {0};
int32_t V_8 = 0;
uint32_t V_9 = 0;
uint32_t V_10 = 0;
uint32_t V_11 = 0;
{
t1_189* L_0 = (__this->f4);
V_0 = (((int32_t)((int32_t)(((t1_33 *)L_0)->max_length))));
int32_t L_1 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(t1_185_TI_var);
int32_t L_2 = m1_1783(NULL, ((int32_t)((int32_t)((int32_t)((int32_t)L_1<<(int32_t)1))|(int32_t)1)), NULL);
V_1 = L_2;
uint32_t L_3 = V_1;
V_2 = ((t1_189*)SZArrayNew(t1_189_TI_var, (((uintptr_t)L_3))));
t1_189* L_4 = (__this->f4);
V_3 = L_4;
uint32_t L_5 = V_1;
V_4 = ((t1_173*)SZArrayNew(t1_173_TI_var, (((uintptr_t)L_5))));
t1_173* L_6 = (__this->f5);
V_5 = L_6;
V_6 = 0;
goto IL_00fe;
}
IL_003c:
{
t1_189* L_7 = V_3;
int32_t L_8 = V_6;
V_7 = (*(t1_181 *)((t1_181 *)(t1_181 *)SZArrayLdElema(L_7, L_8, sizeof(t1_181 ))));
t1_1 * L_9 = ((&V_7)->f0);
if (!L_9)
{
goto IL_00f8;
}
}
{
t1_173* L_10 = V_5;
int32_t L_11 = V_6;
int32_t L_12 = L_11;
V_8 = ((int32_t)((int32_t)(*(int32_t*)(int32_t*)SZArrayLdElema(L_10, L_12, sizeof(int32_t)))&(int32_t)((int32_t)2147483647)));
int32_t L_13 = V_8;
V_9 = L_13;
int32_t L_14 = V_8;
uint32_t L_15 = V_1;
V_10 = ((int32_t)((int32_t)((int32_t)((uint32_t)(int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_14>>(int32_t)5))+(int32_t)1))%(uint32_t)(int32_t)((int32_t)((int32_t)L_15-(int32_t)1))))+(int32_t)1));
uint32_t L_16 = V_9;
uint32_t L_17 = V_1;
V_11 = ((int32_t)((uint32_t)(int32_t)L_16%(uint32_t)(int32_t)L_17));
goto IL_00f3;
}
IL_0081:
{
t1_189* L_18 = V_2;
uint32_t L_19 = V_11;
t1_1 * L_20 = (((t1_181 *)(t1_181 *)SZArrayLdElema(L_18, (((uintptr_t)L_19)), sizeof(t1_181 )))->f0);
if (L_20)
{
goto IL_00d3;
}
}
{
t1_189* L_21 = V_2;
uint32_t L_22 = V_11;
t1_1 * L_23 = ((&V_7)->f0);
((t1_181 *)(t1_181 *)SZArrayLdElema(L_21, (((uintptr_t)L_22)), sizeof(t1_181 )))->f0 = L_23;
t1_189* L_24 = V_2;
uint32_t L_25 = V_11;
t1_1 * L_26 = ((&V_7)->f1);
((t1_181 *)(t1_181 *)SZArrayLdElema(L_24, (((uintptr_t)L_25)), sizeof(t1_181 )))->f1 = L_26;
t1_173* L_27 = V_4;
uint32_t L_28 = V_11;
int32_t* L_29 = ((int32_t*)(int32_t*)SZArrayLdElema(L_27, (((uintptr_t)L_28)), sizeof(int32_t)));
int32_t L_30 = V_8;
*((int32_t*)(L_29)) = (int32_t)((int32_t)((int32_t)(*((int32_t*)L_29))|(int32_t)L_30));
goto IL_00f8;
}
IL_00d3:
{
t1_173* L_31 = V_4;
uint32_t L_32 = V_11;
int32_t* L_33 = ((int32_t*)(int32_t*)SZArrayLdElema(L_31, (((uintptr_t)L_32)), sizeof(int32_t)));
*((int32_t*)(L_33)) = (int32_t)((int32_t)((int32_t)(*((int32_t*)L_33))|(int32_t)((int32_t)-2147483648)));
uint32_t L_34 = V_9;
uint32_t L_35 = V_10;
V_9 = ((int32_t)((int32_t)L_34+(int32_t)L_35));
uint32_t L_36 = V_9;
uint32_t L_37 = V_1;
V_11 = ((int32_t)((uint32_t)(int32_t)L_36%(uint32_t)(int32_t)L_37));
}
IL_00f3:
{
goto IL_0081;
}
IL_00f8:
{
int32_t L_38 = V_6;
V_6 = ((int32_t)((int32_t)L_38+(int32_t)1));
}
IL_00fe:
{
int32_t L_39 = V_6;
int32_t L_40 = V_0;
if ((((int32_t)L_39) < ((int32_t)L_40)))
{
goto IL_003c;
}
}
{
int32_t L_41 = (__this->f2);
__this->f2 = ((int32_t)((int32_t)L_41+(int32_t)1));
t1_189* L_42 = V_2;
t1_173* L_43 = V_4;
m1_1776(__this, L_42, L_43, NULL);
return;
}
}
extern TypeInfo* t1_701_TI_var;
extern TypeInfo* t1_182_TI_var;
extern TypeInfo* t1_18_TI_var;
extern TypeInfo* t1_653_TI_var;
extern Il2CppCodeGenString* _stringLiteral490;
extern Il2CppCodeGenString* _stringLiteral541;
extern Il2CppCodeGenString* _stringLiteral554;
extern "C" void m1_1779 (t1_185 * __this, t1_1 * p0, t1_1 * p1, bool p2, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_701_TI_var = il2cpp_codegen_type_info_from_index(2);
t1_182_TI_var = il2cpp_codegen_type_info_from_index(193);
t1_18_TI_var = il2cpp_codegen_type_info_from_index(11);
t1_653_TI_var = il2cpp_codegen_type_info_from_index(4);
_stringLiteral490 = il2cpp_codegen_string_literal_from_index(490);
_stringLiteral541 = il2cpp_codegen_string_literal_from_index(541);
_stringLiteral554 = il2cpp_codegen_string_literal_from_index(554);
s_Il2CppMethodIntialized = true;
}
uint32_t V_0 = 0;
int32_t V_1 = 0;
uint32_t V_2 = 0;
uint32_t V_3 = 0;
t1_189* V_4 = {0};
t1_173* V_5 = {0};
t1_181 V_6 = {0};
int32_t V_7 = 0;
int32_t V_8 = 0;
int32_t V_9 = 0;
int32_t V_10 = 0;
{
t1_1 * L_0 = p0;
if (L_0)
{
goto IL_0016;
}
}
{
t1_701 * L_1 = (t1_701 *)il2cpp_codegen_object_new (t1_701_TI_var);
m1_4571(L_1, _stringLiteral490, _stringLiteral541, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_1);
}
IL_0016:
{
int32_t L_2 = (__this->f1);
int32_t L_3 = (__this->f6);
if ((((int32_t)L_2) < ((int32_t)L_3)))
{
goto IL_002d;
}
}
{
m1_1778(__this, NULL);
}
IL_002d:
{
t1_189* L_4 = (__this->f4);
V_0 = (((int32_t)((int32_t)(((t1_33 *)L_4)->max_length))));
t1_1 * L_5 = p0;
int32_t L_6 = (int32_t)VirtFuncInvoker1< int32_t, t1_1 * >::Invoke(35 /* System.Int32 System.Collections.Hashtable::GetHash(System.Object) */, __this, L_5);
V_1 = ((int32_t)((int32_t)L_6&(int32_t)((int32_t)2147483647)));
int32_t L_7 = V_1;
V_2 = L_7;
uint32_t L_8 = V_2;
uint32_t L_9 = V_0;
V_3 = ((int32_t)((int32_t)((int32_t)((uint32_t)(int32_t)((int32_t)((int32_t)((int32_t)((uint32_t)L_8>>5))+(int32_t)1))%(uint32_t)(int32_t)((int32_t)((int32_t)L_9-(int32_t)1))))+(int32_t)1));
t1_189* L_10 = (__this->f4);
V_4 = L_10;
t1_173* L_11 = (__this->f5);
V_5 = L_11;
V_7 = (-1);
V_8 = 0;
goto IL_016d;
}
IL_006d:
{
uint32_t L_12 = V_2;
uint32_t L_13 = V_0;
V_9 = ((int32_t)((uint32_t)(int32_t)L_12%(uint32_t)(int32_t)L_13));
t1_189* L_14 = V_4;
int32_t L_15 = V_9;
V_6 = (*(t1_181 *)((t1_181 *)(t1_181 *)SZArrayLdElema(L_14, L_15, sizeof(t1_181 ))));
t1_173* L_16 = V_5;
int32_t L_17 = V_9;
int32_t L_18 = L_17;
V_10 = (*(int32_t*)(int32_t*)SZArrayLdElema(L_16, L_18, sizeof(int32_t)));
int32_t L_19 = V_7;
if ((!(((uint32_t)L_19) == ((uint32_t)(-1)))))
{
goto IL_00b3;
}
}
{
t1_1 * L_20 = ((&V_6)->f0);
IL2CPP_RUNTIME_CLASS_INIT(t1_182_TI_var);
t1_182 * L_21 = ((t1_182_SFs*)t1_182_TI_var->static_fields)->f0;
if ((!(((t1_1*)(t1_1 *)L_20) == ((t1_1*)(t1_182 *)L_21))))
{
goto IL_00b3;
}
}
{
int32_t L_22 = V_10;
if (!((int32_t)((int32_t)L_22&(int32_t)((int32_t)-2147483648))))
{
goto IL_00b3;
}
}
{
int32_t L_23 = V_9;
V_7 = L_23;
}
IL_00b3:
{
t1_1 * L_24 = ((&V_6)->f0);
if (!L_24)
{
goto IL_00dd;
}
}
{
t1_1 * L_25 = ((&V_6)->f0);
IL2CPP_RUNTIME_CLASS_INIT(t1_182_TI_var);
t1_182 * L_26 = ((t1_182_SFs*)t1_182_TI_var->static_fields)->f0;
if ((!(((t1_1*)(t1_1 *)L_25) == ((t1_1*)(t1_182 *)L_26))))
{
goto IL_00ee;
}
}
{
int32_t L_27 = V_10;
if (((int32_t)((int32_t)L_27&(int32_t)((int32_t)-2147483648))))
{
goto IL_00ee;
}
}
IL_00dd:
{
int32_t L_28 = V_7;
if ((!(((uint32_t)L_28) == ((uint32_t)(-1)))))
{
goto IL_00e9;
}
}
{
int32_t L_29 = V_9;
V_7 = L_29;
}
IL_00e9:
{
goto IL_0177;
}
IL_00ee:
{
int32_t L_30 = V_10;
int32_t L_31 = V_1;
if ((!(((uint32_t)((int32_t)((int32_t)L_30&(int32_t)((int32_t)2147483647)))) == ((uint32_t)L_31))))
{
goto IL_0149;
}
}
{
t1_1 * L_32 = p0;
t1_1 * L_33 = ((&V_6)->f0);
bool L_34 = (bool)VirtFuncInvoker2< bool, t1_1 *, t1_1 * >::Invoke(36 /* System.Boolean System.Collections.Hashtable::KeyEquals(System.Object,System.Object) */, __this, L_32, L_33);
if (!L_34)
{
goto IL_0149;
}
}
{
bool L_35 = p2;
if (!L_35)
{
goto IL_0137;
}
}
{
t1_189* L_36 = V_4;
int32_t L_37 = V_9;
t1_1 * L_38 = p1;
((t1_181 *)(t1_181 *)SZArrayLdElema(L_36, L_37, sizeof(t1_181 )))->f1 = L_38;
int32_t L_39 = (__this->f2);
__this->f2 = ((int32_t)((int32_t)L_39+(int32_t)1));
goto IL_0148;
}
IL_0137:
{
t1_1 * L_40 = p0;
IL2CPP_RUNTIME_CLASS_INIT(t1_18_TI_var);
t1_18* L_41 = m1_418(NULL, _stringLiteral554, L_40, NULL);
t1_653 * L_42 = (t1_653 *)il2cpp_codegen_object_new (t1_653_TI_var);
m1_4561(L_42, L_41, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_42);
}
IL_0148:
{
return;
}
IL_0149:
{
int32_t L_43 = V_7;
if ((!(((uint32_t)L_43) == ((uint32_t)(-1)))))
{
goto IL_0163;
}
}
{
t1_173* L_44 = V_5;
int32_t L_45 = V_9;
int32_t* L_46 = ((int32_t*)(int32_t*)SZArrayLdElema(L_44, L_45, sizeof(int32_t)));
*((int32_t*)(L_46)) = (int32_t)((int32_t)((int32_t)(*((int32_t*)L_46))|(int32_t)((int32_t)-2147483648)));
}
IL_0163:
{
uint32_t L_47 = V_2;
uint32_t L_48 = V_3;
V_2 = ((int32_t)((int32_t)L_47+(int32_t)L_48));
int32_t L_49 = V_8;
V_8 = ((int32_t)((int32_t)L_49+(int32_t)1));
}
IL_016d:
{
int32_t L_50 = V_8;
uint32_t L_51 = V_0;
if ((((int64_t)(((int64_t)((int64_t)L_50)))) < ((int64_t)(((int64_t)((uint64_t)L_51))))))
{
goto IL_006d;
}
}
IL_0177:
{
int32_t L_52 = V_7;
if ((((int32_t)L_52) == ((int32_t)(-1))))
{
goto IL_01c7;
}
}
{
t1_189* L_53 = V_4;
int32_t L_54 = V_7;
t1_1 * L_55 = p0;
((t1_181 *)(t1_181 *)SZArrayLdElema(L_53, L_54, sizeof(t1_181 )))->f0 = L_55;
t1_189* L_56 = V_4;
int32_t L_57 = V_7;
t1_1 * L_58 = p1;
((t1_181 *)(t1_181 *)SZArrayLdElema(L_56, L_57, sizeof(t1_181 )))->f1 = L_58;
t1_173* L_59 = V_5;
int32_t L_60 = V_7;
int32_t* L_61 = ((int32_t*)(int32_t*)SZArrayLdElema(L_59, L_60, sizeof(int32_t)));
int32_t L_62 = V_1;
*((int32_t*)(L_61)) = (int32_t)((int32_t)((int32_t)(*((int32_t*)L_61))|(int32_t)L_62));
int32_t L_63 = (__this->f1);
__this->f1 = ((int32_t)((int32_t)L_63+(int32_t)1));
int32_t L_64 = (__this->f2);
__this->f2 = ((int32_t)((int32_t)L_64+(int32_t)1));
}
IL_01c7:
{
return;
}
}
extern TypeInfo* t1_184_TI_var;
extern TypeInfo* t1_143_TI_var;
extern "C" void m1_1780 (t1_185 * __this, t1_33 * p0, int32_t p1, int32_t p2, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_184_TI_var = il2cpp_codegen_type_info_from_index(194);
t1_143_TI_var = il2cpp_codegen_type_info_from_index(158);
s_Il2CppMethodIntialized = true;
}
t1_1 * V_0 = {0};
{
int32_t L_0 = p2;
t1_184 * L_1 = (t1_184 *)il2cpp_codegen_object_new (t1_184_TI_var);
m1_1699(L_1, __this, L_0, NULL);
V_0 = L_1;
goto IL_001f;
}
IL_000d:
{
t1_33 * L_2 = p0;
t1_1 * L_3 = V_0;
t1_1 * L_4 = (t1_1 *)InterfaceFuncInvoker0< t1_1 * >::Invoke(0 /* System.Object System.Collections.IEnumerator::get_Current() */, t1_143_TI_var, L_3);
int32_t L_5 = p1;
int32_t L_6 = L_5;
p1 = ((int32_t)((int32_t)L_6+(int32_t)1));
m1_804(L_2, L_4, L_6, NULL);
}
IL_001f:
{
t1_1 * L_7 = V_0;
bool L_8 = (bool)InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, t1_143_TI_var, L_7);
if (L_8)
{
goto IL_000d;
}
}
{
return;
}
}
extern "C" bool m1_1781 (t1_1 * __this , int32_t p0, const MethodInfo* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
{
int32_t L_0 = p0;
if (!((int32_t)((int32_t)L_0&(int32_t)1)))
{
goto IL_002f;
}
}
{
int32_t L_1 = p0;
double L_2 = sqrt((((double)((double)L_1))));
V_0 = (((int32_t)((int32_t)L_2)));
V_1 = 3;
goto IL_0026;
}
IL_0018:
{
int32_t L_3 = p0;
int32_t L_4 = V_1;
if (((int32_t)((int32_t)L_3%(int32_t)L_4)))
{
goto IL_0022;
}
}
{
return 0;
}
IL_0022:
{
int32_t L_5 = V_1;
V_1 = ((int32_t)((int32_t)L_5+(int32_t)2));
}
IL_0026:
{
int32_t L_6 = V_1;
int32_t L_7 = V_0;
if ((((int32_t)L_6) < ((int32_t)L_7)))
{
goto IL_0018;
}
}
{
return 1;
}
IL_002f:
{
int32_t L_8 = p0;
return ((((int32_t)L_8) == ((int32_t)2))? 1 : 0);
}
}
extern TypeInfo* t1_185_TI_var;
extern "C" int32_t m1_1782 (t1_1 * __this , int32_t p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_185_TI_var = il2cpp_codegen_type_info_from_index(196);
s_Il2CppMethodIntialized = true;
}
int32_t V_0 = 0;
{
int32_t L_0 = p0;
V_0 = ((int32_t)((int32_t)((int32_t)((int32_t)L_0&(int32_t)((int32_t)-2)))-(int32_t)1));
goto IL_001d;
}
IL_000c:
{
int32_t L_1 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(t1_185_TI_var);
bool L_2 = m1_1781(NULL, L_1, NULL);
if (!L_2)
{
goto IL_0019;
}
}
{
int32_t L_3 = V_0;
return L_3;
}
IL_0019:
{
int32_t L_4 = V_0;
V_0 = ((int32_t)((int32_t)L_4+(int32_t)2));
}
IL_001d:
{
int32_t L_5 = V_0;
if ((((int32_t)L_5) < ((int32_t)((int32_t)2147483647))))
{
goto IL_000c;
}
}
{
int32_t L_6 = p0;
return L_6;
}
}
extern TypeInfo* t1_185_TI_var;
extern "C" int32_t m1_1783 (t1_1 * __this , int32_t p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_185_TI_var = il2cpp_codegen_type_info_from_index(196);
s_Il2CppMethodIntialized = true;
}
int32_t V_0 = 0;
{
V_0 = 0;
goto IL_0020;
}
IL_0007:
{
int32_t L_0 = p0;
IL2CPP_RUNTIME_CLASS_INIT(t1_185_TI_var);
t1_173* L_1 = ((t1_185_SFs*)t1_185_TI_var->static_fields)->f13;
int32_t L_2 = V_0;
int32_t L_3 = L_2;
if ((((int32_t)L_0) > ((int32_t)(*(int32_t*)(int32_t*)SZArrayLdElema(L_1, L_3, sizeof(int32_t))))))
{
goto IL_001c;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(t1_185_TI_var);
t1_173* L_4 = ((t1_185_SFs*)t1_185_TI_var->static_fields)->f13;
int32_t L_5 = V_0;
int32_t L_6 = L_5;
return (*(int32_t*)(int32_t*)SZArrayLdElema(L_4, L_6, sizeof(int32_t)));
}
IL_001c:
{
int32_t L_7 = V_0;
V_0 = ((int32_t)((int32_t)L_7+(int32_t)1));
}
IL_0020:
{
int32_t L_8 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(t1_185_TI_var);
t1_173* L_9 = ((t1_185_SFs*)t1_185_TI_var->static_fields)->f13;
if ((((int32_t)L_8) < ((int32_t)(((int32_t)((int32_t)(((t1_33 *)L_9)->max_length)))))))
{
goto IL_0007;
}
}
{
int32_t L_10 = p0;
IL2CPP_RUNTIME_CLASS_INIT(t1_185_TI_var);
int32_t L_11 = m1_1782(NULL, L_10, NULL);
return L_11;
}
}
extern "C" void m1_1784 (t1_196 * __this, t1_197 * p0, int32_t p1, const MethodInfo* method)
{
{
m1_0(__this, NULL);
t1_197 * L_0 = p0;
__this->f0 = L_0;
t1_197 * L_1 = p0;
int32_t L_2 = (L_1->f2);
__this->f1 = L_2;
t1_197 * L_3 = p0;
int32_t L_4 = (int32_t)VirtFuncInvoker0< int32_t >::Invoke(16 /* System.Int32 System.Collections.SortedList::get_Count() */, L_3);
__this->f3 = L_4;
int32_t L_5 = p1;
__this->f4 = L_5;
m1_1786(__this, NULL);
return;
}
}
extern TypeInfo* t1_196_TI_var;
extern Il2CppCodeGenString* _stringLiteral569;
extern "C" void m1_1785 (t1_1 * __this , const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_196_TI_var = il2cpp_codegen_type_info_from_index(204);
_stringLiteral569 = il2cpp_codegen_string_literal_from_index(569);
s_Il2CppMethodIntialized = true;
}
{
((t1_196_SFs*)t1_196_TI_var->static_fields)->f8 = _stringLiteral569;
return;
}
}
extern TypeInfo* t1_196_TI_var;
extern TypeInfo* t1_740_TI_var;
extern "C" void m1_1786 (t1_196 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_196_TI_var = il2cpp_codegen_type_info_from_index(204);
t1_740_TI_var = il2cpp_codegen_type_info_from_index(71);
s_Il2CppMethodIntialized = true;
}
{
t1_197 * L_0 = (__this->f0);
int32_t L_1 = (L_0->f2);
int32_t L_2 = (__this->f1);
if ((!(((uint32_t)L_1) == ((uint32_t)L_2))))
{
goto IL_0021;
}
}
{
bool L_3 = (__this->f7);
if (!L_3)
{
goto IL_002c;
}
}
IL_0021:
{
IL2CPP_RUNTIME_CLASS_INIT(t1_196_TI_var);
t1_18* L_4 = ((t1_196_SFs*)t1_196_TI_var->static_fields)->f8;
t1_740 * L_5 = (t1_740 *)il2cpp_codegen_object_new (t1_740_TI_var);
m1_5030(L_5, L_4, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_5);
}
IL_002c:
{
__this->f2 = (-1);
__this->f5 = NULL;
__this->f6 = NULL;
return;
}
}
extern TypeInfo* t1_196_TI_var;
extern TypeInfo* t1_740_TI_var;
extern "C" bool m1_1787 (t1_196 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_196_TI_var = il2cpp_codegen_type_info_from_index(204);
t1_740_TI_var = il2cpp_codegen_type_info_from_index(71);
s_Il2CppMethodIntialized = true;
}
t1_198* V_0 = {0};
t1_194 V_1 = {0};
int32_t V_2 = 0;
{
t1_197 * L_0 = (__this->f0);
int32_t L_1 = (L_0->f2);
int32_t L_2 = (__this->f1);
if ((!(((uint32_t)L_1) == ((uint32_t)L_2))))
{
goto IL_0021;
}
}
{
bool L_3 = (__this->f7);
if (!L_3)
{
goto IL_002c;
}
}
IL_0021:
{
IL2CPP_RUNTIME_CLASS_INIT(t1_196_TI_var);
t1_18* L_4 = ((t1_196_SFs*)t1_196_TI_var->static_fields)->f8;
t1_740 * L_5 = (t1_740 *)il2cpp_codegen_object_new (t1_740_TI_var);
m1_5030(L_5, L_4, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_5);
}
IL_002c:
{
t1_197 * L_6 = (__this->f0);
t1_198* L_7 = (L_6->f3);
V_0 = L_7;
int32_t L_8 = (__this->f2);
int32_t L_9 = ((int32_t)((int32_t)L_8+(int32_t)1));
V_2 = L_9;
__this->f2 = L_9;
int32_t L_10 = V_2;
int32_t L_11 = (__this->f3);
if ((((int32_t)L_10) >= ((int32_t)L_11)))
{
goto IL_0082;
}
}
{
t1_198* L_12 = V_0;
int32_t L_13 = (__this->f2);
V_1 = (*(t1_194 *)((t1_194 *)(t1_194 *)SZArrayLdElema(L_12, L_13, sizeof(t1_194 ))));
t1_1 * L_14 = ((&V_1)->f0);
__this->f5 = L_14;
t1_1 * L_15 = ((&V_1)->f1);
__this->f6 = L_15;
return 1;
}
IL_0082:
{
__this->f5 = NULL;
__this->f6 = NULL;
return 0;
}
}
extern TypeInfo* t1_196_TI_var;
extern TypeInfo* t1_740_TI_var;
extern "C" t1_180 m1_1788 (t1_196 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_196_TI_var = il2cpp_codegen_type_info_from_index(204);
t1_740_TI_var = il2cpp_codegen_type_info_from_index(71);
s_Il2CppMethodIntialized = true;
}
{
bool L_0 = (__this->f7);
if (L_0)
{
goto IL_0028;
}
}
{
int32_t L_1 = (__this->f2);
int32_t L_2 = (__this->f3);
if ((((int32_t)L_1) >= ((int32_t)L_2)))
{
goto IL_0028;
}
}
{
int32_t L_3 = (__this->f2);
if ((!(((uint32_t)L_3) == ((uint32_t)(-1)))))
{
goto IL_0033;
}
}
IL_0028:
{
IL2CPP_RUNTIME_CLASS_INIT(t1_196_TI_var);
t1_18* L_4 = ((t1_196_SFs*)t1_196_TI_var->static_fields)->f8;
t1_740 * L_5 = (t1_740 *)il2cpp_codegen_object_new (t1_740_TI_var);
m1_5030(L_5, L_4, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_5);
}
IL_0033:
{
t1_1 * L_6 = (__this->f5);
t1_1 * L_7 = (__this->f6);
t1_180 L_8 = {0};
m1_1694(&L_8, L_6, L_7, NULL);
return L_8;
}
}
extern TypeInfo* t1_196_TI_var;
extern TypeInfo* t1_740_TI_var;
extern "C" t1_1 * m1_1789 (t1_196 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_196_TI_var = il2cpp_codegen_type_info_from_index(204);
t1_740_TI_var = il2cpp_codegen_type_info_from_index(71);
s_Il2CppMethodIntialized = true;
}
{
bool L_0 = (__this->f7);
if (L_0)
{
goto IL_0028;
}
}
{
int32_t L_1 = (__this->f2);
int32_t L_2 = (__this->f3);
if ((((int32_t)L_1) >= ((int32_t)L_2)))
{
goto IL_0028;
}
}
{
int32_t L_3 = (__this->f2);
if ((!(((uint32_t)L_3) == ((uint32_t)(-1)))))
{
goto IL_0033;
}
}
IL_0028:
{
IL2CPP_RUNTIME_CLASS_INIT(t1_196_TI_var);
t1_18* L_4 = ((t1_196_SFs*)t1_196_TI_var->static_fields)->f8;
t1_740 * L_5 = (t1_740 *)il2cpp_codegen_object_new (t1_740_TI_var);
m1_5030(L_5, L_4, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_5);
}
IL_0033:
{
t1_1 * L_6 = (__this->f5);
return L_6;
}
}
extern TypeInfo* t1_196_TI_var;
extern TypeInfo* t1_740_TI_var;
extern "C" t1_1 * m1_1790 (t1_196 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_196_TI_var = il2cpp_codegen_type_info_from_index(204);
t1_740_TI_var = il2cpp_codegen_type_info_from_index(71);
s_Il2CppMethodIntialized = true;
}
{
bool L_0 = (__this->f7);
if (L_0)
{
goto IL_0028;
}
}
{
int32_t L_1 = (__this->f2);
int32_t L_2 = (__this->f3);
if ((((int32_t)L_1) >= ((int32_t)L_2)))
{
goto IL_0028;
}
}
{
int32_t L_3 = (__this->f2);
if ((!(((uint32_t)L_3) == ((uint32_t)(-1)))))
{
goto IL_0033;
}
}
IL_0028:
{
IL2CPP_RUNTIME_CLASS_INIT(t1_196_TI_var);
t1_18* L_4 = ((t1_196_SFs*)t1_196_TI_var->static_fields)->f8;
t1_740 * L_5 = (t1_740 *)il2cpp_codegen_object_new (t1_740_TI_var);
m1_5030(L_5, L_4, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_5);
}
IL_0033:
{
t1_1 * L_6 = (__this->f6);
return L_6;
}
}
extern TypeInfo* t1_196_TI_var;
extern TypeInfo* t1_740_TI_var;
extern TypeInfo* t1_180_TI_var;
extern TypeInfo* t1_195_TI_var;
extern TypeInfo* t1_18_TI_var;
extern TypeInfo* t1_756_TI_var;
extern Il2CppCodeGenString* _stringLiteral570;
extern "C" t1_1 * m1_1791 (t1_196 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_196_TI_var = il2cpp_codegen_type_info_from_index(204);
t1_740_TI_var = il2cpp_codegen_type_info_from_index(71);
t1_180_TI_var = il2cpp_codegen_type_info_from_index(195);
t1_195_TI_var = il2cpp_codegen_type_info_from_index(205);
t1_18_TI_var = il2cpp_codegen_type_info_from_index(11);
t1_756_TI_var = il2cpp_codegen_type_info_from_index(6);
_stringLiteral570 = il2cpp_codegen_string_literal_from_index(570);
s_Il2CppMethodIntialized = true;
}
int32_t V_0 = {0};
{
bool L_0 = (__this->f7);
if (L_0)
{
goto IL_0028;
}
}
{
int32_t L_1 = (__this->f2);
int32_t L_2 = (__this->f3);
if ((((int32_t)L_1) >= ((int32_t)L_2)))
{
goto IL_0028;
}
}
{
int32_t L_3 = (__this->f2);
if ((!(((uint32_t)L_3) == ((uint32_t)(-1)))))
{
goto IL_0033;
}
}
IL_0028:
{
IL2CPP_RUNTIME_CLASS_INIT(t1_196_TI_var);
t1_18* L_4 = ((t1_196_SFs*)t1_196_TI_var->static_fields)->f8;
t1_740 * L_5 = (t1_740 *)il2cpp_codegen_object_new (t1_740_TI_var);
m1_5030(L_5, L_4, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_5);
}
IL_0033:
{
int32_t L_6 = (__this->f4);
V_0 = L_6;
int32_t L_7 = V_0;
if (L_7 == 0)
{
goto IL_0051;
}
if (L_7 == 1)
{
goto IL_0058;
}
if (L_7 == 2)
{
goto IL_005f;
}
}
{
goto IL_006b;
}
IL_0051:
{
t1_1 * L_8 = (__this->f5);
return L_8;
}
IL_0058:
{
t1_1 * L_9 = (__this->f6);
return L_9;
}
IL_005f:
{
t1_180 L_10 = m1_1788(__this, NULL);
t1_180 L_11 = L_10;
t1_1 * L_12 = Box(t1_180_TI_var, &L_11);
return L_12;
}
IL_006b:
{
int32_t L_13 = (__this->f4);
int32_t L_14 = L_13;
t1_1 * L_15 = Box(t1_195_TI_var, &L_14);
IL2CPP_RUNTIME_CLASS_INIT(t1_18_TI_var);
t1_18* L_16 = m1_418(NULL, L_15, _stringLiteral570, NULL);
t1_756 * L_17 = (t1_756 *)il2cpp_codegen_object_new (t1_756_TI_var);
m1_5149(L_17, L_16, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_17);
}
}
extern TypeInfo* t1_196_TI_var;
extern "C" t1_1 * m1_1792 (t1_196 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_196_TI_var = il2cpp_codegen_type_info_from_index(204);
s_Il2CppMethodIntialized = true;
}
t1_196 * V_0 = {0};
{
t1_197 * L_0 = (__this->f0);
int32_t L_1 = (__this->f4);
t1_196 * L_2 = (t1_196 *)il2cpp_codegen_object_new (t1_196_TI_var);
m1_1784(L_2, L_0, L_1, NULL);
V_0 = L_2;
t1_196 * L_3 = V_0;
int32_t L_4 = (__this->f1);
L_3->f1 = L_4;
t1_196 * L_5 = V_0;
int32_t L_6 = (__this->f2);
L_5->f2 = L_6;
t1_196 * L_7 = V_0;
int32_t L_8 = (__this->f3);
L_7->f3 = L_8;
t1_196 * L_9 = V_0;
t1_1 * L_10 = (__this->f5);
L_9->f5 = L_10;
t1_196 * L_11 = V_0;
t1_1 * L_12 = (__this->f6);
L_11->f6 = L_12;
t1_196 * L_13 = V_0;
bool L_14 = (__this->f7);
L_13->f7 = L_14;
t1_196 * L_15 = V_0;
return L_15;
}
}
extern TypeInfo* t1_197_TI_var;
extern "C" void m1_1793 (t1_197 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_197_TI_var = il2cpp_codegen_type_info_from_index(206);
s_Il2CppMethodIntialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(t1_197_TI_var);
int32_t L_0 = ((t1_197_SFs*)t1_197_TI_var->static_fields)->f0;
m1_1795(__this, (t1_1 *)NULL, L_0, NULL);
return;
}
}
extern "C" void m1_1794 (t1_197 * __this, int32_t p0, const MethodInfo* method)
{
{
int32_t L_0 = p0;
m1_1795(__this, (t1_1 *)NULL, L_0, NULL);
return;
}
}
extern TypeInfo* t1_702_TI_var;
extern TypeInfo* t1_197_TI_var;
extern Il2CppCodeGenString* _stringLiteral491;
extern "C" void m1_1795 (t1_197 * __this, t1_1 * p0, int32_t p1, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_702_TI_var = il2cpp_codegen_type_info_from_index(27);
t1_197_TI_var = il2cpp_codegen_type_info_from_index(206);
_stringLiteral491 = il2cpp_codegen_string_literal_from_index(491);
s_Il2CppMethodIntialized = true;
}
{
m1_0(__this, NULL);
int32_t L_0 = p1;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0018;
}
}
{
t1_702 * L_1 = (t1_702 *)il2cpp_codegen_object_new (t1_702_TI_var);
m1_4574(L_1, _stringLiteral491, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_1);
}
IL_0018:
{
int32_t L_2 = p1;
if (L_2)
{
goto IL_002a;
}
}
{
__this->f5 = 0;
goto IL_0035;
}
IL_002a:
{
IL2CPP_RUNTIME_CLASS_INIT(t1_197_TI_var);
int32_t L_3 = ((t1_197_SFs*)t1_197_TI_var->static_fields)->f0;
__this->f5 = L_3;
}
IL_0035:
{
t1_1 * L_4 = p0;
__this->f4 = L_4;
int32_t L_5 = p1;
m1_1821(__this, L_5, 1, NULL);
return;
}
}
extern TypeInfo* t1_701_TI_var;
extern TypeInfo* t1_817_TI_var;
extern TypeInfo* t1_45_TI_var;
extern TypeInfo* t1_465_TI_var;
extern TypeInfo* t1_143_TI_var;
extern Il2CppCodeGenString* _stringLiteral503;
extern "C" void m1_1796 (t1_197 * __this, t1_1 * p0, t1_1 * p1, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_701_TI_var = il2cpp_codegen_type_info_from_index(2);
t1_817_TI_var = il2cpp_codegen_type_info_from_index(184);
t1_45_TI_var = il2cpp_codegen_type_info_from_index(97);
t1_465_TI_var = il2cpp_codegen_type_info_from_index(163);
t1_143_TI_var = il2cpp_codegen_type_info_from_index(158);
_stringLiteral503 = il2cpp_codegen_string_literal_from_index(503);
s_Il2CppMethodIntialized = true;
}
t1_1 * V_0 = {0};
{
m1_0(__this, NULL);
t1_1 * L_0 = p0;
if (L_0)
{
goto IL_0017;
}
}
{
t1_701 * L_1 = (t1_701 *)il2cpp_codegen_object_new (t1_701_TI_var);
m1_4570(L_1, _stringLiteral503, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_1);
}
IL_0017:
{
t1_1 * L_2 = p0;
int32_t L_3 = (int32_t)InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.ICollection::get_Count() */, t1_817_TI_var, L_2);
m1_1821(__this, L_3, 1, NULL);
t1_1 * L_4 = p1;
__this->f4 = L_4;
t1_1 * L_5 = p0;
t1_1 * L_6 = (t1_1 *)InterfaceFuncInvoker0< t1_1 * >::Invoke(4 /* System.Collections.IDictionaryEnumerator System.Collections.IDictionary::GetEnumerator() */, t1_45_TI_var, L_5);
V_0 = L_6;
goto IL_0049;
}
IL_0037:
{
t1_1 * L_7 = V_0;
t1_1 * L_8 = (t1_1 *)InterfaceFuncInvoker0< t1_1 * >::Invoke(1 /* System.Object System.Collections.IDictionaryEnumerator::get_Key() */, t1_465_TI_var, L_7);
t1_1 * L_9 = V_0;
t1_1 * L_10 = (t1_1 *)InterfaceFuncInvoker0< t1_1 * >::Invoke(2 /* System.Object System.Collections.IDictionaryEnumerator::get_Value() */, t1_465_TI_var, L_9);
VirtActionInvoker2< t1_1 *, t1_1 * >::Invoke(25 /* System.Void System.Collections.SortedList::Add(System.Object,System.Object) */, __this, L_8, L_10);
}
IL_0049:
{
t1_1 * L_11 = V_0;
bool L_12 = (bool)InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, t1_143_TI_var, L_11);
if (L_12)
{
goto IL_0037;
}
}
{
return;
}
}
extern TypeInfo* t1_197_TI_var;
extern "C" void m1_1797 (t1_1 * __this , const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_197_TI_var = il2cpp_codegen_type_info_from_index(206);
s_Il2CppMethodIntialized = true;
}
{
((t1_197_SFs*)t1_197_TI_var->static_fields)->f0 = ((int32_t)16);
return;
}
}
extern TypeInfo* t1_196_TI_var;
extern "C" t1_1 * m1_1798 (t1_197 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_196_TI_var = il2cpp_codegen_type_info_from_index(204);
s_Il2CppMethodIntialized = true;
}
{
t1_196 * L_0 = (t1_196 *)il2cpp_codegen_object_new (t1_196_TI_var);
m1_1784(L_0, __this, 2, NULL);
return L_0;
}
}
extern "C" int32_t m1_1799 (t1_197 * __this, const MethodInfo* method)
{
{
int32_t L_0 = (__this->f1);
return L_0;
}
}
extern "C" bool m1_1800 (t1_197 * __this, const MethodInfo* method)
{
{
return 0;
}
}
extern "C" t1_1 * m1_1801 (t1_197 * __this, const MethodInfo* method)
{
{
return __this;
}
}
extern "C" bool m1_1802 (t1_197 * __this, const MethodInfo* method)
{
{
return 0;
}
}
extern "C" bool m1_1803 (t1_197 * __this, const MethodInfo* method)
{
{
return 0;
}
}
extern TypeInfo* t1_701_TI_var;
extern "C" t1_1 * m1_1804 (t1_197 * __this, t1_1 * p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_701_TI_var = il2cpp_codegen_type_info_from_index(2);
s_Il2CppMethodIntialized = true;
}
{
t1_1 * L_0 = p0;
if (L_0)
{
goto IL_000c;
}
}
{
t1_701 * L_1 = (t1_701 *)il2cpp_codegen_object_new (t1_701_TI_var);
m1_4569(L_1, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_1);
}
IL_000c:
{
t1_1 * L_2 = p0;
t1_1 * L_3 = m1_1820(__this, L_2, NULL);
return L_3;
}
}
extern TypeInfo* t1_701_TI_var;
extern TypeInfo* t1_756_TI_var;
extern Il2CppCodeGenString* _stringLiteral559;
extern Il2CppCodeGenString* _stringLiteral560;
extern "C" void m1_1805 (t1_197 * __this, t1_1 * p0, t1_1 * p1, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_701_TI_var = il2cpp_codegen_type_info_from_index(2);
t1_756_TI_var = il2cpp_codegen_type_info_from_index(6);
_stringLiteral559 = il2cpp_codegen_string_literal_from_index(559);
_stringLiteral560 = il2cpp_codegen_string_literal_from_index(560);
s_Il2CppMethodIntialized = true;
}
{
t1_1 * L_0 = p0;
if (L_0)
{
goto IL_000c;
}
}
{
t1_701 * L_1 = (t1_701 *)il2cpp_codegen_object_new (t1_701_TI_var);
m1_4569(L_1, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_1);
}
IL_000c:
{
bool L_2 = (bool)VirtFuncInvoker0< bool >::Invoke(20 /* System.Boolean System.Collections.SortedList::get_IsReadOnly() */, __this);
if (!L_2)
{
goto IL_0022;
}
}
{
t1_756 * L_3 = (t1_756 *)il2cpp_codegen_object_new (t1_756_TI_var);
m1_5149(L_3, _stringLiteral559, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_3);
}
IL_0022:
{
t1_1 * L_4 = p0;
int32_t L_5 = m1_1822(__this, L_4, NULL);
if ((((int32_t)L_5) >= ((int32_t)0)))
{
goto IL_0045;
}
}
{
bool L_6 = (bool)VirtFuncInvoker0< bool >::Invoke(19 /* System.Boolean System.Collections.SortedList::get_IsFixedSize() */, __this);
if (!L_6)
{
goto IL_0045;
}
}
{
t1_756 * L_7 = (t1_756 *)il2cpp_codegen_object_new (t1_756_TI_var);
m1_5149(L_7, _stringLiteral560, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_7);
}
IL_0045:
{
t1_1 * L_8 = p0;
t1_1 * L_9 = p1;
m1_1819(__this, L_8, L_9, 1, NULL);
return;
}
}
extern "C" int32_t m1_1806 (t1_197 * __this, const MethodInfo* method)
{
{
t1_198* L_0 = (__this->f3);
return (((int32_t)((int32_t)(((t1_33 *)L_0)->max_length))));
}
}
extern TypeInfo* t1_702_TI_var;
extern TypeInfo* t1_198_TI_var;
extern Il2CppCodeGenString* _stringLiteral561;
extern "C" void m1_1807 (t1_197 * __this, int32_t p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_702_TI_var = il2cpp_codegen_type_info_from_index(27);
t1_198_TI_var = il2cpp_codegen_type_info_from_index(207);
_stringLiteral561 = il2cpp_codegen_string_literal_from_index(561);
s_Il2CppMethodIntialized = true;
}
int32_t V_0 = 0;
t1_198* V_1 = {0};
t1_198* V_2 = {0};
t1_198* V_3 = {0};
{
t1_198* L_0 = (__this->f3);
V_0 = (((int32_t)((int32_t)(((t1_33 *)L_0)->max_length))));
int32_t L_1 = (__this->f1);
int32_t L_2 = p0;
if ((((int32_t)L_1) <= ((int32_t)L_2)))
{
goto IL_0020;
}
}
{
t1_702 * L_3 = (t1_702 *)il2cpp_codegen_object_new (t1_702_TI_var);
m1_4574(L_3, _stringLiteral561, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_3);
}
IL_0020:
{
int32_t L_4 = p0;
if (L_4)
{
goto IL_0050;
}
}
{
int32_t L_5 = (__this->f5);
V_1 = ((t1_198*)SZArrayNew(t1_198_TI_var, L_5));
t1_198* L_6 = (__this->f3);
t1_198* L_7 = V_1;
int32_t L_8 = (__this->f1);
m1_824(NULL, (t1_33 *)(t1_33 *)L_6, (t1_33 *)(t1_33 *)L_7, L_8, NULL);
t1_198* L_9 = V_1;
__this->f3 = L_9;
goto IL_00a3;
}
IL_0050:
{
int32_t L_10 = p0;
int32_t L_11 = (__this->f1);
if ((((int32_t)L_10) <= ((int32_t)L_11)))
{
goto IL_0081;
}
}
{
int32_t L_12 = p0;
V_2 = ((t1_198*)SZArrayNew(t1_198_TI_var, L_12));
t1_198* L_13 = (__this->f3);
t1_198* L_14 = V_2;
int32_t L_15 = (__this->f1);
m1_824(NULL, (t1_33 *)(t1_33 *)L_13, (t1_33 *)(t1_33 *)L_14, L_15, NULL);
t1_198* L_16 = V_2;
__this->f3 = L_16;
goto IL_00a3;
}
IL_0081:
{
int32_t L_17 = p0;
int32_t L_18 = V_0;
if ((((int32_t)L_17) <= ((int32_t)L_18)))
{
goto IL_00a3;
}
}
{
int32_t L_19 = p0;
V_3 = ((t1_198*)SZArrayNew(t1_198_TI_var, L_19));
t1_198* L_20 = (__this->f3);
t1_198* L_21 = V_3;
int32_t L_22 = V_0;
m1_824(NULL, (t1_33 *)(t1_33 *)L_20, (t1_33 *)(t1_33 *)L_21, L_22, NULL);
t1_198* L_23 = V_3;
__this->f3 = L_23;
}
IL_00a3:
{
return;
}
}
extern "C" void m1_1808 (t1_197 * __this, t1_1 * p0, t1_1 * p1, const MethodInfo* method)
{
{
t1_1 * L_0 = p0;
t1_1 * L_1 = p1;
m1_1819(__this, L_0, L_1, 0, NULL);
return;
}
}
extern TypeInfo* t1_701_TI_var;
extern TypeInfo* t1_43_TI_var;
extern TypeInfo* t1_740_TI_var;
extern "C" bool m1_1809 (t1_197 * __this, t1_1 * p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_701_TI_var = il2cpp_codegen_type_info_from_index(2);
t1_43_TI_var = il2cpp_codegen_type_info_from_index(45);
t1_740_TI_var = il2cpp_codegen_type_info_from_index(71);
s_Il2CppMethodIntialized = true;
}
bool V_0 = false;
t1_43 * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
t1_43 * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
t1_1 * L_0 = p0;
if (L_0)
{
goto IL_000c;
}
}
{
t1_701 * L_1 = (t1_701 *)il2cpp_codegen_object_new (t1_701_TI_var);
m1_4569(L_1, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_1);
}
IL_000c:
try
{ // begin try (depth: 1)
{
t1_1 * L_2 = p0;
int32_t L_3 = m1_1822(__this, L_2, NULL);
V_0 = ((((int32_t)((((int32_t)L_3) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_0030;
}
IL_001f:
{
; // IL_001f: leave IL_0030
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (t1_43 *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (t1_43_TI_var, e.ex->object.klass))
goto CATCH_0024;
throw e;
}
CATCH_0024:
{ // begin catch(System.Exception)
{
t1_740 * L_4 = (t1_740 *)il2cpp_codegen_object_new (t1_740_TI_var);
m1_5029(L_4, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_4);
}
IL_002b:
{
goto IL_0030;
}
} // end catch (depth: 1)
IL_0030:
{
bool L_5 = V_0;
return L_5;
}
}
extern TypeInfo* t1_196_TI_var;
extern "C" t1_1 * m1_1810 (t1_197 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_196_TI_var = il2cpp_codegen_type_info_from_index(204);
s_Il2CppMethodIntialized = true;
}
{
t1_196 * L_0 = (t1_196 *)il2cpp_codegen_object_new (t1_196_TI_var);
m1_1784(L_0, __this, 2, NULL);
return L_0;
}
}
extern "C" void m1_1811 (t1_197 * __this, t1_1 * p0, const MethodInfo* method)
{
int32_t V_0 = 0;
{
t1_1 * L_0 = p0;
int32_t L_1 = (int32_t)VirtFuncInvoker1< int32_t, t1_1 * >::Invoke(32 /* System.Int32 System.Collections.SortedList::IndexOfKey(System.Object) */, __this, L_0);
V_0 = L_1;
int32_t L_2 = V_0;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0016;
}
}
{
int32_t L_3 = V_0;
VirtActionInvoker1< int32_t >::Invoke(31 /* System.Void System.Collections.SortedList::RemoveAt(System.Int32) */, __this, L_3);
}
IL_0016:
{
return;
}
}
extern TypeInfo* t1_701_TI_var;
extern TypeInfo* t1_702_TI_var;
extern TypeInfo* t1_653_TI_var;
extern TypeInfo* t1_465_TI_var;
extern TypeInfo* t1_180_TI_var;
extern TypeInfo* t1_143_TI_var;
extern Il2CppCodeGenString* _stringLiteral562;
extern Il2CppCodeGenString* _stringLiteral563;
extern Il2CppCodeGenString* _stringLiteral564;
extern "C" void m1_1812 (t1_197 * __this, t1_33 * p0, int32_t p1, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_701_TI_var = il2cpp_codegen_type_info_from_index(2);
t1_702_TI_var = il2cpp_codegen_type_info_from_index(27);
t1_653_TI_var = il2cpp_codegen_type_info_from_index(4);
t1_465_TI_var = il2cpp_codegen_type_info_from_index(163);
t1_180_TI_var = il2cpp_codegen_type_info_from_index(195);
t1_143_TI_var = il2cpp_codegen_type_info_from_index(158);
_stringLiteral562 = il2cpp_codegen_string_literal_from_index(562);
_stringLiteral563 = il2cpp_codegen_string_literal_from_index(563);
_stringLiteral564 = il2cpp_codegen_string_literal_from_index(564);
s_Il2CppMethodIntialized = true;
}
t1_1 * V_0 = {0};
int32_t V_1 = 0;
{
t1_33 * L_0 = p0;
if (L_0)
{
goto IL_000c;
}
}
{
t1_701 * L_1 = (t1_701 *)il2cpp_codegen_object_new (t1_701_TI_var);
m1_4569(L_1, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_1);
}
IL_000c:
{
int32_t L_2 = p1;
if ((((int32_t)L_2) >= ((int32_t)0)))
{
goto IL_0019;
}
}
{
t1_702 * L_3 = (t1_702 *)il2cpp_codegen_object_new (t1_702_TI_var);
m1_4573(L_3, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_3);
}
IL_0019:
{
t1_33 * L_4 = p0;
int32_t L_5 = m1_778(L_4, NULL);
if ((((int32_t)L_5) <= ((int32_t)1)))
{
goto IL_0030;
}
}
{
t1_653 * L_6 = (t1_653 *)il2cpp_codegen_object_new (t1_653_TI_var);
m1_4561(L_6, _stringLiteral562, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_6);
}
IL_0030:
{
int32_t L_7 = p1;
t1_33 * L_8 = p0;
int32_t L_9 = m1_776(L_8, NULL);
if ((((int32_t)L_7) < ((int32_t)L_9)))
{
goto IL_0047;
}
}
{
t1_701 * L_10 = (t1_701 *)il2cpp_codegen_object_new (t1_701_TI_var);
m1_4570(L_10, _stringLiteral563, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_10);
}
IL_0047:
{
int32_t L_11 = (int32_t)VirtFuncInvoker0< int32_t >::Invoke(16 /* System.Int32 System.Collections.SortedList::get_Count() */, __this);
t1_33 * L_12 = p0;
int32_t L_13 = m1_776(L_12, NULL);
int32_t L_14 = p1;
if ((((int32_t)L_11) <= ((int32_t)((int32_t)((int32_t)L_13-(int32_t)L_14)))))
{
goto IL_0065;
}
}
{
t1_701 * L_15 = (t1_701 *)il2cpp_codegen_object_new (t1_701_TI_var);
m1_4570(L_15, _stringLiteral564, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_15);
}
IL_0065:
{
t1_1 * L_16 = (t1_1 *)VirtFuncInvoker0< t1_1 * >::Invoke(27 /* System.Collections.IDictionaryEnumerator System.Collections.SortedList::GetEnumerator() */, __this);
V_0 = L_16;
int32_t L_17 = p1;
V_1 = L_17;
goto IL_0089;
}
IL_0073:
{
t1_33 * L_18 = p0;
t1_1 * L_19 = V_0;
t1_180 L_20 = (t1_180 )InterfaceFuncInvoker0< t1_180 >::Invoke(0 /* System.Collections.DictionaryEntry System.Collections.IDictionaryEnumerator::get_Entry() */, t1_465_TI_var, L_19);
t1_180 L_21 = L_20;
t1_1 * L_22 = Box(t1_180_TI_var, &L_21);
int32_t L_23 = V_1;
int32_t L_24 = L_23;
V_1 = ((int32_t)((int32_t)L_24+(int32_t)1));
m1_804(L_18, L_22, L_24, NULL);
}
IL_0089:
{
t1_1 * L_25 = V_0;
bool L_26 = (bool)InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, t1_143_TI_var, L_25);
if (L_26)
{
goto IL_0073;
}
}
{
return;
}
}
extern TypeInfo* t1_197_TI_var;
extern "C" t1_1 * m1_1813 (t1_197 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_197_TI_var = il2cpp_codegen_type_info_from_index(206);
s_Il2CppMethodIntialized = true;
}
t1_197 * V_0 = {0};
{
t1_1 * L_0 = (__this->f4);
t1_197 * L_1 = (t1_197 *)il2cpp_codegen_object_new (t1_197_TI_var);
m1_1796(L_1, __this, L_0, NULL);
V_0 = L_1;
t1_197 * L_2 = V_0;
int32_t L_3 = (__this->f2);
L_2->f2 = L_3;
t1_197 * L_4 = V_0;
return L_4;
}
}
extern TypeInfo* t1_702_TI_var;
extern Il2CppCodeGenString* _stringLiteral565;
extern "C" void m1_1814 (t1_197 * __this, int32_t p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_702_TI_var = il2cpp_codegen_type_info_from_index(27);
_stringLiteral565 = il2cpp_codegen_string_literal_from_index(565);
s_Il2CppMethodIntialized = true;
}
t1_198* V_0 = {0};
int32_t V_1 = 0;
{
t1_198* L_0 = (__this->f3);
V_0 = L_0;
int32_t L_1 = (int32_t)VirtFuncInvoker0< int32_t >::Invoke(16 /* System.Int32 System.Collections.SortedList::get_Count() */, __this);
V_1 = L_1;
int32_t L_2 = p0;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0075;
}
}
{
int32_t L_3 = p0;
int32_t L_4 = V_1;
if ((((int32_t)L_3) >= ((int32_t)L_4)))
{
goto IL_0075;
}
}
{
int32_t L_5 = p0;
int32_t L_6 = V_1;
if ((((int32_t)L_5) == ((int32_t)((int32_t)((int32_t)L_6-(int32_t)1)))))
{
goto IL_003a;
}
}
{
t1_198* L_7 = V_0;
int32_t L_8 = p0;
t1_198* L_9 = V_0;
int32_t L_10 = p0;
int32_t L_11 = V_1;
int32_t L_12 = p0;
m1_825(NULL, (t1_33 *)(t1_33 *)L_7, ((int32_t)((int32_t)L_8+(int32_t)1)), (t1_33 *)(t1_33 *)L_9, L_10, ((int32_t)((int32_t)((int32_t)((int32_t)L_11-(int32_t)1))-(int32_t)L_12)), NULL);
goto IL_0054;
}
IL_003a:
{
t1_198* L_13 = V_0;
int32_t L_14 = p0;
((t1_194 *)(t1_194 *)SZArrayLdElema(L_13, L_14, sizeof(t1_194 )))->f0 = NULL;
t1_198* L_15 = V_0;
int32_t L_16 = p0;
((t1_194 *)(t1_194 *)SZArrayLdElema(L_15, L_16, sizeof(t1_194 )))->f1 = NULL;
}
IL_0054:
{
int32_t L_17 = (__this->f1);
__this->f1 = ((int32_t)((int32_t)L_17-(int32_t)1));
int32_t L_18 = (__this->f2);
__this->f2 = ((int32_t)((int32_t)L_18+(int32_t)1));
goto IL_0080;
}
IL_0075:
{
t1_702 * L_19 = (t1_702 *)il2cpp_codegen_object_new (t1_702_TI_var);
m1_4574(L_19, _stringLiteral565, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_19);
}
IL_0080:
{
return;
}
}
extern TypeInfo* t1_701_TI_var;
extern TypeInfo* t1_43_TI_var;
extern TypeInfo* t1_740_TI_var;
extern "C" int32_t m1_1815 (t1_197 * __this, t1_1 * p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_701_TI_var = il2cpp_codegen_type_info_from_index(2);
t1_43_TI_var = il2cpp_codegen_type_info_from_index(45);
t1_740_TI_var = il2cpp_codegen_type_info_from_index(71);
s_Il2CppMethodIntialized = true;
}
int32_t V_0 = 0;
t1_43 * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
t1_43 * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
t1_1 * L_0 = p0;
if (L_0)
{
goto IL_000c;
}
}
{
t1_701 * L_1 = (t1_701 *)il2cpp_codegen_object_new (t1_701_TI_var);
m1_4569(L_1, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_1);
}
IL_000c:
{
V_0 = 0;
}
IL_000e:
try
{ // begin try (depth: 1)
t1_1 * L_2 = p0;
int32_t L_3 = m1_1822(__this, L_2, NULL);
V_0 = L_3;
goto IL_0027;
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (t1_43 *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (t1_43_TI_var, e.ex->object.klass))
goto CATCH_001b;
throw e;
}
CATCH_001b:
{ // begin catch(System.Exception)
{
t1_740 * L_4 = (t1_740 *)il2cpp_codegen_object_new (t1_740_TI_var);
m1_5029(L_4, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_4);
}
IL_0022:
{
goto IL_0027;
}
} // end catch (depth: 1)
IL_0027:
{
int32_t L_5 = V_0;
int32_t L_6 = V_0;
return ((int32_t)((int32_t)L_5|(int32_t)((int32_t)((int32_t)L_6>>(int32_t)((int32_t)31)))));
}
}
extern TypeInfo* t1_701_TI_var;
extern TypeInfo* t1_43_TI_var;
extern TypeInfo* t1_740_TI_var;
extern "C" bool m1_1816 (t1_197 * __this, t1_1 * p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_701_TI_var = il2cpp_codegen_type_info_from_index(2);
t1_43_TI_var = il2cpp_codegen_type_info_from_index(45);
t1_740_TI_var = il2cpp_codegen_type_info_from_index(71);
s_Il2CppMethodIntialized = true;
}
bool V_0 = false;
t1_43 * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
t1_43 * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
t1_1 * L_0 = p0;
if (L_0)
{
goto IL_000c;
}
}
{
t1_701 * L_1 = (t1_701 *)il2cpp_codegen_object_new (t1_701_TI_var);
m1_4569(L_1, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_1);
}
IL_000c:
try
{ // begin try (depth: 1)
{
t1_1 * L_2 = p0;
bool L_3 = (bool)VirtFuncInvoker1< bool, t1_1 * >::Invoke(26 /* System.Boolean System.Collections.SortedList::Contains(System.Object) */, __this, L_2);
V_0 = L_3;
goto IL_002a;
}
IL_0019:
{
; // IL_0019: leave IL_002a
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (t1_43 *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (t1_43_TI_var, e.ex->object.klass))
goto CATCH_001e;
throw e;
}
CATCH_001e:
{ // begin catch(System.Exception)
{
t1_740 * L_4 = (t1_740 *)il2cpp_codegen_object_new (t1_740_TI_var);
m1_5029(L_4, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_4);
}
IL_0025:
{
goto IL_002a;
}
} // end catch (depth: 1)
IL_002a:
{
bool L_5 = V_0;
return L_5;
}
}
extern TypeInfo* t1_702_TI_var;
extern Il2CppCodeGenString* _stringLiteral565;
extern "C" t1_1 * m1_1817 (t1_197 * __this, int32_t p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_702_TI_var = il2cpp_codegen_type_info_from_index(27);
_stringLiteral565 = il2cpp_codegen_string_literal_from_index(565);
s_Il2CppMethodIntialized = true;
}
{
int32_t L_0 = p0;
if ((((int32_t)L_0) < ((int32_t)0)))
{
goto IL_0025;
}
}
{
int32_t L_1 = p0;
int32_t L_2 = (int32_t)VirtFuncInvoker0< int32_t >::Invoke(16 /* System.Int32 System.Collections.SortedList::get_Count() */, __this);
if ((((int32_t)L_1) >= ((int32_t)L_2)))
{
goto IL_0025;
}
}
{
t1_198* L_3 = (__this->f3);
int32_t L_4 = p0;
t1_1 * L_5 = (((t1_194 *)(t1_194 *)SZArrayLdElema(L_3, L_4, sizeof(t1_194 )))->f1);
return L_5;
}
IL_0025:
{
t1_702 * L_6 = (t1_702 *)il2cpp_codegen_object_new (t1_702_TI_var);
m1_4574(L_6, _stringLiteral565, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_6);
}
}
extern TypeInfo* t1_198_TI_var;
extern "C" void m1_1818 (t1_197 * __this, int32_t p0, int32_t p1, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_198_TI_var = il2cpp_codegen_type_info_from_index(207);
s_Il2CppMethodIntialized = true;
}
t1_198* V_0 = {0};
t1_198* V_1 = {0};
int32_t V_2 = 0;
bool V_3 = false;
int32_t V_4 = 0;
int32_t G_B3_0 = 0;
{
t1_198* L_0 = (__this->f3);
V_0 = L_0;
V_1 = (t1_198*)NULL;
int32_t L_1 = (int32_t)VirtFuncInvoker0< int32_t >::Invoke(23 /* System.Int32 System.Collections.SortedList::get_Capacity() */, __this);
V_2 = L_1;
int32_t L_2 = p1;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0022;
}
}
{
int32_t L_3 = p1;
int32_t L_4 = (int32_t)VirtFuncInvoker0< int32_t >::Invoke(16 /* System.Int32 System.Collections.SortedList::get_Count() */, __this);
G_B3_0 = ((((int32_t)L_3) < ((int32_t)L_4))? 1 : 0);
goto IL_0023;
}
IL_0022:
{
G_B3_0 = 0;
}
IL_0023:
{
V_3 = G_B3_0;
int32_t L_5 = p0;
int32_t L_6 = V_2;
if ((((int32_t)L_5) <= ((int32_t)L_6)))
{
goto IL_0034;
}
}
{
int32_t L_7 = p0;
V_1 = ((t1_198*)SZArrayNew(t1_198_TI_var, ((int32_t)((int32_t)L_7<<(int32_t)1))));
}
IL_0034:
{
t1_198* L_8 = V_1;
if (!L_8)
{
goto IL_0093;
}
}
{
bool L_9 = V_3;
if (!L_9)
{
goto IL_007a;
}
}
{
int32_t L_10 = p1;
V_4 = L_10;
int32_t L_11 = V_4;
if ((((int32_t)L_11) <= ((int32_t)0)))
{
goto IL_0056;
}
}
{
t1_198* L_12 = V_0;
t1_198* L_13 = V_1;
int32_t L_14 = V_4;
m1_825(NULL, (t1_33 *)(t1_33 *)L_12, 0, (t1_33 *)(t1_33 *)L_13, 0, L_14, NULL);
}
IL_0056:
{
int32_t L_15 = (int32_t)VirtFuncInvoker0< int32_t >::Invoke(16 /* System.Int32 System.Collections.SortedList::get_Count() */, __this);
int32_t L_16 = p1;
V_4 = ((int32_t)((int32_t)L_15-(int32_t)L_16));
int32_t L_17 = V_4;
if ((((int32_t)L_17) <= ((int32_t)0)))
{
goto IL_0075;
}
}
{
t1_198* L_18 = V_0;
int32_t L_19 = p1;
t1_198* L_20 = V_1;
int32_t L_21 = p1;
int32_t L_22 = V_4;
m1_825(NULL, (t1_33 *)(t1_33 *)L_18, L_19, (t1_33 *)(t1_33 *)L_20, ((int32_t)((int32_t)L_21+(int32_t)1)), L_22, NULL);
}
IL_0075:
{
goto IL_0087;
}
IL_007a:
{
t1_198* L_23 = V_0;
t1_198* L_24 = V_1;
int32_t L_25 = (int32_t)VirtFuncInvoker0< int32_t >::Invoke(16 /* System.Int32 System.Collections.SortedList::get_Count() */, __this);
m1_824(NULL, (t1_33 *)(t1_33 *)L_23, (t1_33 *)(t1_33 *)L_24, L_25, NULL);
}
IL_0087:
{
t1_198* L_26 = V_1;
__this->f3 = L_26;
goto IL_00ac;
}
IL_0093:
{
bool L_27 = V_3;
if (!L_27)
{
goto IL_00ac;
}
}
{
t1_198* L_28 = V_0;
int32_t L_29 = p1;
t1_198* L_30 = V_0;
int32_t L_31 = p1;
int32_t L_32 = (int32_t)VirtFuncInvoker0< int32_t >::Invoke(16 /* System.Int32 System.Collections.SortedList::get_Count() */, __this);
int32_t L_33 = p1;
m1_825(NULL, (t1_33 *)(t1_33 *)L_28, L_29, (t1_33 *)(t1_33 *)L_30, ((int32_t)((int32_t)L_31+(int32_t)1)), ((int32_t)((int32_t)L_32-(int32_t)L_33)), NULL);
}
IL_00ac:
{
return;
}
}
extern TypeInfo* t1_701_TI_var;
extern TypeInfo* t1_43_TI_var;
extern TypeInfo* t1_740_TI_var;
extern TypeInfo* t1_170_TI_var;
extern TypeInfo* t1_653_TI_var;
extern TypeInfo* t1_4_TI_var;
extern TypeInfo* t1_18_TI_var;
extern Il2CppCodeGenString* _stringLiteral541;
extern Il2CppCodeGenString* _stringLiteral566;
extern Il2CppCodeGenString* _stringLiteral567;
extern Il2CppCodeGenString* _stringLiteral141;
extern Il2CppCodeGenString* _stringLiteral568;
extern Il2CppCodeGenString* _stringLiteral230;
extern "C" void m1_1819 (t1_197 * __this, t1_1 * p0, t1_1 * p1, bool p2, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_701_TI_var = il2cpp_codegen_type_info_from_index(2);
t1_43_TI_var = il2cpp_codegen_type_info_from_index(45);
t1_740_TI_var = il2cpp_codegen_type_info_from_index(71);
t1_170_TI_var = il2cpp_codegen_type_info_from_index(19);
t1_653_TI_var = il2cpp_codegen_type_info_from_index(4);
t1_4_TI_var = il2cpp_codegen_type_info_from_index(8);
t1_18_TI_var = il2cpp_codegen_type_info_from_index(11);
_stringLiteral541 = il2cpp_codegen_string_literal_from_index(541);
_stringLiteral566 = il2cpp_codegen_string_literal_from_index(566);
_stringLiteral567 = il2cpp_codegen_string_literal_from_index(567);
_stringLiteral141 = il2cpp_codegen_string_literal_from_index(141);
_stringLiteral568 = il2cpp_codegen_string_literal_from_index(568);
_stringLiteral230 = il2cpp_codegen_string_literal_from_index(230);
s_Il2CppMethodIntialized = true;
}
t1_198* V_0 = {0};
int32_t V_1 = 0;
t1_18* V_2 = {0};
t1_43 * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
t1_43 * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
t1_1 * L_0 = p0;
if (L_0)
{
goto IL_0011;
}
}
{
t1_701 * L_1 = (t1_701 *)il2cpp_codegen_object_new (t1_701_TI_var);
m1_4570(L_1, _stringLiteral541, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_1);
}
IL_0011:
{
t1_198* L_2 = (__this->f3);
V_0 = L_2;
V_1 = (-1);
}
IL_001a:
try
{ // begin try (depth: 1)
t1_1 * L_3 = p0;
int32_t L_4 = m1_1822(__this, L_3, NULL);
V_1 = L_4;
goto IL_0033;
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (t1_43 *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (t1_43_TI_var, e.ex->object.klass))
goto CATCH_0027;
throw e;
}
CATCH_0027:
{ // begin catch(System.Exception)
{
t1_740 * L_5 = (t1_740 *)il2cpp_codegen_object_new (t1_740_TI_var);
m1_5029(L_5, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_5);
}
IL_002e:
{
goto IL_0033;
}
} // end catch (depth: 1)
IL_0033:
{
int32_t L_6 = V_1;
if ((((int32_t)L_6) < ((int32_t)0)))
{
goto IL_0078;
}
}
{
bool L_7 = p2;
if (L_7)
{
goto IL_005c;
}
}
{
t1_170* L_8 = ((t1_170*)SZArrayNew(t1_170_TI_var, 1));
t1_1 * L_9 = p0;
ArrayElementTypeCheck (L_8, L_9);
*((t1_1 **)(t1_1 **)SZArrayLdElema(L_8, 0, sizeof(t1_1 *))) = (t1_1 *)L_9;
t1_18* L_10 = m1_991(NULL, _stringLiteral566, L_8, NULL);
V_2 = L_10;
t1_18* L_11 = V_2;
t1_653 * L_12 = (t1_653 *)il2cpp_codegen_object_new (t1_653_TI_var);
m1_4561(L_12, L_11, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_12);
}
IL_005c:
{
t1_198* L_13 = V_0;
int32_t L_14 = V_1;
t1_1 * L_15 = p1;
((t1_194 *)(t1_194 *)SZArrayLdElema(L_13, L_14, sizeof(t1_194 )))->f1 = L_15;
int32_t L_16 = (__this->f2);
__this->f2 = ((int32_t)((int32_t)L_16+(int32_t)1));
return;
}
IL_0078:
{
int32_t L_17 = V_1;
V_1 = ((~L_17));
int32_t L_18 = V_1;
int32_t L_19 = (int32_t)VirtFuncInvoker0< int32_t >::Invoke(23 /* System.Int32 System.Collections.SortedList::get_Capacity() */, __this);
if ((((int32_t)L_18) <= ((int32_t)((int32_t)((int32_t)L_19+(int32_t)1)))))
{
goto IL_00cb;
}
}
{
t1_170* L_20 = ((t1_170*)SZArrayNew(t1_170_TI_var, 7));
ArrayElementTypeCheck (L_20, _stringLiteral567);
*((t1_1 **)(t1_1 **)SZArrayLdElema(L_20, 0, sizeof(t1_1 *))) = (t1_1 *)_stringLiteral567;
t1_170* L_21 = L_20;
t1_1 * L_22 = p0;
ArrayElementTypeCheck (L_21, L_22);
*((t1_1 **)(t1_1 **)SZArrayLdElema(L_21, 1, sizeof(t1_1 *))) = (t1_1 *)L_22;
t1_170* L_23 = L_21;
ArrayElementTypeCheck (L_23, _stringLiteral141);
*((t1_1 **)(t1_1 **)SZArrayLdElema(L_23, 2, sizeof(t1_1 *))) = (t1_1 *)_stringLiteral141;
t1_170* L_24 = L_23;
t1_1 * L_25 = p1;
ArrayElementTypeCheck (L_24, L_25);
*((t1_1 **)(t1_1 **)SZArrayLdElema(L_24, 3, sizeof(t1_1 *))) = (t1_1 *)L_25;
t1_170* L_26 = L_24;
ArrayElementTypeCheck (L_26, _stringLiteral568);
*((t1_1 **)(t1_1 **)SZArrayLdElema(L_26, 4, sizeof(t1_1 *))) = (t1_1 *)_stringLiteral568;
t1_170* L_27 = L_26;
int32_t L_28 = V_1;
int32_t L_29 = L_28;
t1_1 * L_30 = Box(t1_4_TI_var, &L_29);
ArrayElementTypeCheck (L_27, L_30);
*((t1_1 **)(t1_1 **)SZArrayLdElema(L_27, 5, sizeof(t1_1 *))) = (t1_1 *)L_30;
t1_170* L_31 = L_27;
ArrayElementTypeCheck (L_31, _stringLiteral230);
*((t1_1 **)(t1_1 **)SZArrayLdElema(L_31, 6, sizeof(t1_1 *))) = (t1_1 *)_stringLiteral230;
IL2CPP_RUNTIME_CLASS_INIT(t1_18_TI_var);
t1_18* L_32 = m1_423(NULL, L_31, NULL);
t1_43 * L_33 = (t1_43 *)il2cpp_codegen_object_new (t1_43_TI_var);
m1_933(L_33, L_32, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_33);
}
IL_00cb:
{
int32_t L_34 = (int32_t)VirtFuncInvoker0< int32_t >::Invoke(16 /* System.Int32 System.Collections.SortedList::get_Count() */, __this);
int32_t L_35 = V_1;
m1_1818(__this, ((int32_t)((int32_t)L_34+(int32_t)1)), L_35, NULL);
t1_198* L_36 = (__this->f3);
V_0 = L_36;
t1_198* L_37 = V_0;
int32_t L_38 = V_1;
t1_1 * L_39 = p0;
((t1_194 *)(t1_194 *)SZArrayLdElema(L_37, L_38, sizeof(t1_194 )))->f0 = L_39;
t1_198* L_40 = V_0;
int32_t L_41 = V_1;
t1_1 * L_42 = p1;
((t1_194 *)(t1_194 *)SZArrayLdElema(L_40, L_41, sizeof(t1_194 )))->f1 = L_42;
int32_t L_43 = (__this->f1);
__this->f1 = ((int32_t)((int32_t)L_43+(int32_t)1));
int32_t L_44 = (__this->f2);
__this->f2 = ((int32_t)((int32_t)L_44+(int32_t)1));
return;
}
}
extern "C" t1_1 * m1_1820 (t1_197 * __this, t1_1 * p0, const MethodInfo* method)
{
int32_t V_0 = 0;
{
t1_1 * L_0 = p0;
int32_t L_1 = m1_1822(__this, L_0, NULL);
V_0 = L_1;
int32_t L_2 = V_0;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0021;
}
}
{
t1_198* L_3 = (__this->f3);
int32_t L_4 = V_0;
t1_1 * L_5 = (((t1_194 *)(t1_194 *)SZArrayLdElema(L_3, L_4, sizeof(t1_194 )))->f1);
return L_5;
}
IL_0021:
{
return NULL;
}
}
extern TypeInfo* t1_198_TI_var;
extern "C" void m1_1821 (t1_197 * __this, int32_t p0, bool p1, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_198_TI_var = il2cpp_codegen_type_info_from_index(207);
s_Il2CppMethodIntialized = true;
}
{
bool L_0 = p1;
if (L_0)
{
goto IL_001a;
}
}
{
int32_t L_1 = p0;
int32_t L_2 = (__this->f5);
if ((((int32_t)L_1) >= ((int32_t)L_2)))
{
goto IL_001a;
}
}
{
int32_t L_3 = (__this->f5);
p0 = L_3;
}
IL_001a:
{
int32_t L_4 = p0;
__this->f3 = ((t1_198*)SZArrayNew(t1_198_TI_var, L_4));
__this->f1 = 0;
__this->f2 = 0;
return;
}
}
extern TypeInfo* t1_178_TI_var;
extern TypeInfo* t1_192_TI_var;
extern "C" int32_t m1_1822 (t1_197 * __this, t1_1 * p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_178_TI_var = il2cpp_codegen_type_info_from_index(77);
t1_192_TI_var = il2cpp_codegen_type_info_from_index(78);
s_Il2CppMethodIntialized = true;
}
t1_198* V_0 = {0};
int32_t V_1 = 0;
t1_1 * V_2 = {0};
int32_t V_3 = 0;
int32_t V_4 = 0;
int32_t V_5 = 0;
int32_t V_6 = 0;
t1_1 * V_7 = {0};
t1_1 * G_B5_0 = {0};
{
t1_198* L_0 = (__this->f3);
V_0 = L_0;
int32_t L_1 = (int32_t)VirtFuncInvoker0< int32_t >::Invoke(16 /* System.Int32 System.Collections.SortedList::get_Count() */, __this);
V_1 = L_1;
int32_t L_2 = V_1;
if (L_2)
{
goto IL_0016;
}
}
{
return (-1);
}
IL_0016:
{
t1_1 * L_3 = (__this->f4);
if (L_3)
{
goto IL_002f;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(t1_178_TI_var);
t1_178 * L_4 = ((t1_178_SFs*)t1_178_TI_var->static_fields)->f0;
V_7 = L_4;
t1_1 * L_5 = V_7;
G_B5_0 = L_5;
goto IL_0035;
}
IL_002f:
{
t1_1 * L_6 = (__this->f4);
G_B5_0 = L_6;
}
IL_0035:
{
V_2 = G_B5_0;
V_3 = 0;
int32_t L_7 = V_1;
V_4 = ((int32_t)((int32_t)L_7-(int32_t)1));
goto IL_0082;
}
IL_0042:
{
int32_t L_8 = V_3;
int32_t L_9 = V_4;
V_5 = ((int32_t)((int32_t)((int32_t)((int32_t)L_8+(int32_t)L_9))>>(int32_t)1));
t1_1 * L_10 = V_2;
t1_198* L_11 = V_0;
int32_t L_12 = V_5;
t1_1 * L_13 = (((t1_194 *)(t1_194 *)SZArrayLdElema(L_11, L_12, sizeof(t1_194 )))->f0);
t1_1 * L_14 = p0;
int32_t L_15 = (int32_t)InterfaceFuncInvoker2< int32_t, t1_1 *, t1_1 * >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, t1_192_TI_var, L_10, L_13, L_14);
V_6 = L_15;
int32_t L_16 = V_6;
if (L_16)
{
goto IL_006a;
}
}
{
int32_t L_17 = V_5;
return L_17;
}
IL_006a:
{
int32_t L_18 = V_6;
if ((((int32_t)L_18) >= ((int32_t)0)))
{
goto IL_007c;
}
}
{
int32_t L_19 = V_5;
V_3 = ((int32_t)((int32_t)L_19+(int32_t)1));
goto IL_0082;
}
IL_007c:
{
int32_t L_20 = V_5;
V_4 = ((int32_t)((int32_t)L_20-(int32_t)1));
}
IL_0082:
{
int32_t L_21 = V_3;
int32_t L_22 = V_4;
if ((((int32_t)L_21) <= ((int32_t)L_22)))
{
goto IL_0042;
}
}
{
int32_t L_23 = V_3;
return ((~L_23));
}
}
extern "C" void m1_1823 (t1_199 * __this, t1_155 * p0, const MethodInfo* method)
{
{
m1_0(__this, NULL);
t1_155 * L_0 = p0;
__this->f0 = L_0;
t1_155 * L_1 = p0;
int32_t L_2 = (L_1->f4);
__this->f1 = L_2;
__this->f2 = ((int32_t)-2);
return;
}
}
extern "C" t1_1 * m1_1824 (t1_199 * __this, const MethodInfo* method)
{
{
t1_1 * L_0 = m1_6(__this, NULL);
return L_0;
}
}
extern TypeInfo* t1_740_TI_var;
extern "C" t1_1 * m1_1825 (t1_199 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_740_TI_var = il2cpp_codegen_type_info_from_index(71);
s_Il2CppMethodIntialized = true;
}
{
int32_t L_0 = (__this->f1);
t1_155 * L_1 = (__this->f0);
int32_t L_2 = (L_1->f4);
if ((!(((uint32_t)L_0) == ((uint32_t)L_2))))
{
goto IL_0045;
}
}
{
int32_t L_3 = (__this->f2);
if ((((int32_t)L_3) == ((int32_t)((int32_t)-2))))
{
goto IL_0045;
}
}
{
int32_t L_4 = (__this->f2);
if ((((int32_t)L_4) == ((int32_t)(-1))))
{
goto IL_0045;
}
}
{
int32_t L_5 = (__this->f2);
t1_155 * L_6 = (__this->f0);
int32_t L_7 = (L_6->f2);
if ((((int32_t)L_5) <= ((int32_t)L_7)))
{
goto IL_004b;
}
}
IL_0045:
{
t1_740 * L_8 = (t1_740 *)il2cpp_codegen_object_new (t1_740_TI_var);
m1_5029(L_8, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_8);
}
IL_004b:
{
t1_155 * L_9 = (__this->f0);
t1_170* L_10 = (L_9->f0);
int32_t L_11 = (__this->f2);
int32_t L_12 = L_11;
return (*(t1_1 **)(t1_1 **)SZArrayLdElema(L_10, L_12, sizeof(t1_1 *)));
}
}
extern TypeInfo* t1_740_TI_var;
extern "C" bool m1_1826 (t1_199 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_740_TI_var = il2cpp_codegen_type_info_from_index(71);
s_Il2CppMethodIntialized = true;
}
int32_t V_0 = 0;
{
int32_t L_0 = (__this->f1);
t1_155 * L_1 = (__this->f0);
int32_t L_2 = (L_1->f4);
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_001c;
}
}
{
t1_740 * L_3 = (t1_740 *)il2cpp_codegen_object_new (t1_740_TI_var);
m1_5029(L_3, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_3);
}
IL_001c:
{
int32_t L_4 = (__this->f2);
V_0 = L_4;
int32_t L_5 = V_0;
if ((((int32_t)L_5) == ((int32_t)((int32_t)-2))))
{
goto IL_0037;
}
}
{
int32_t L_6 = V_0;
if ((((int32_t)L_6) == ((int32_t)(-1))))
{
goto IL_0055;
}
}
{
goto IL_0057;
}
IL_0037:
{
t1_155 * L_7 = (__this->f0);
int32_t L_8 = (L_7->f1);
__this->f2 = L_8;
int32_t L_9 = (__this->f2);
return ((((int32_t)((((int32_t)L_9) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_0055:
{
return 0;
}
IL_0057:
{
int32_t L_10 = (__this->f2);
__this->f2 = ((int32_t)((int32_t)L_10-(int32_t)1));
int32_t L_11 = (__this->f2);
return ((((int32_t)((((int32_t)L_11) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
}
extern TypeInfo* t1_740_TI_var;
extern "C" void m1_1827 (t1_199 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_740_TI_var = il2cpp_codegen_type_info_from_index(71);
s_Il2CppMethodIntialized = true;
}
{
int32_t L_0 = (__this->f1);
t1_155 * L_1 = (__this->f0);
int32_t L_2 = (L_1->f4);
if ((((int32_t)L_0) == ((int32_t)L_2)))
{
goto IL_001c;
}
}
{
t1_740 * L_3 = (t1_740 *)il2cpp_codegen_object_new (t1_740_TI_var);
m1_5029(L_3, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_3);
}
IL_001c:
{
__this->f2 = ((int32_t)-2);
return;
}
}
extern TypeInfo* t1_170_TI_var;
extern "C" void m1_1828 (t1_155 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_170_TI_var = il2cpp_codegen_type_info_from_index(19);
s_Il2CppMethodIntialized = true;
}
{
__this->f1 = (-1);
m1_0(__this, NULL);
__this->f0 = ((t1_170*)SZArrayNew(t1_170_TI_var, ((int32_t)16)));
__this->f3 = ((int32_t)16);
return;
}
}
extern TypeInfo* t1_817_TI_var;
extern TypeInfo* t1_701_TI_var;
extern TypeInfo* t1_842_TI_var;
extern TypeInfo* t1_143_TI_var;
extern TypeInfo* t1_841_TI_var;
extern Il2CppCodeGenString* _stringLiteral571;
extern "C" void m1_1829 (t1_155 * __this, t1_1 * p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_817_TI_var = il2cpp_codegen_type_info_from_index(184);
t1_701_TI_var = il2cpp_codegen_type_info_from_index(2);
t1_842_TI_var = il2cpp_codegen_type_info_from_index(168);
t1_143_TI_var = il2cpp_codegen_type_info_from_index(158);
t1_841_TI_var = il2cpp_codegen_type_info_from_index(141);
_stringLiteral571 = il2cpp_codegen_string_literal_from_index(571);
s_Il2CppMethodIntialized = true;
}
t1_1 * V_0 = {0};
t1_1 * V_1 = {0};
t1_1 * V_2 = {0};
t1_43 * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
t1_43 * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
t1_155 * G_B2_0 = {0};
t1_155 * G_B1_0 = {0};
int32_t G_B3_0 = 0;
t1_155 * G_B3_1 = {0};
{
t1_1 * L_0 = p0;
G_B1_0 = __this;
if (L_0)
{
G_B2_0 = __this;
goto IL_000e;
}
}
{
G_B3_0 = ((int32_t)16);
G_B3_1 = G_B1_0;
goto IL_0014;
}
IL_000e:
{
t1_1 * L_1 = p0;
int32_t L_2 = (int32_t)InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.ICollection::get_Count() */, t1_817_TI_var, L_1);
G_B3_0 = L_2;
G_B3_1 = G_B2_0;
}
IL_0014:
{
m1_1830(G_B3_1, G_B3_0, NULL);
t1_1 * L_3 = p0;
if (L_3)
{
goto IL_002a;
}
}
{
t1_701 * L_4 = (t1_701 *)il2cpp_codegen_object_new (t1_701_TI_var);
m1_4570(L_4, _stringLiteral571, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_4);
}
IL_002a:
{
t1_1 * L_5 = p0;
t1_1 * L_6 = (t1_1 *)InterfaceFuncInvoker0< t1_1 * >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, t1_842_TI_var, L_5);
V_1 = L_6;
}
IL_0031:
try
{ // begin try (depth: 1)
{
goto IL_0044;
}
IL_0036:
{
t1_1 * L_7 = V_1;
t1_1 * L_8 = (t1_1 *)InterfaceFuncInvoker0< t1_1 * >::Invoke(0 /* System.Object System.Collections.IEnumerator::get_Current() */, t1_143_TI_var, L_7);
V_0 = L_8;
t1_1 * L_9 = V_0;
VirtActionInvoker1< t1_1 * >::Invoke(19 /* System.Void System.Collections.Stack::Push(System.Object) */, __this, L_9);
}
IL_0044:
{
t1_1 * L_10 = V_1;
bool L_11 = (bool)InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, t1_143_TI_var, L_10);
if (L_11)
{
goto IL_0036;
}
}
IL_004f:
{
IL2CPP_LEAVE(0x66, FINALLY_0054);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (t1_43 *)e.ex;
goto FINALLY_0054;
}
FINALLY_0054:
{ // begin finally (depth: 1)
{
t1_1 * L_12 = V_1;
V_2 = ((t1_1 *)IsInst(L_12, t1_841_TI_var));
t1_1 * L_13 = V_2;
if (L_13)
{
goto IL_005f;
}
}
IL_005e:
{
IL2CPP_END_FINALLY(84)
}
IL_005f:
{
t1_1 * L_14 = V_2;
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, t1_841_TI_var, L_14);
IL2CPP_END_FINALLY(84)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(84)
{
IL2CPP_JUMP_TBL(0x66, IL_0066)
IL2CPP_RETHROW_IF_UNHANDLED(t1_43 *)
}
IL_0066:
{
return;
}
}
extern TypeInfo* t1_702_TI_var;
extern TypeInfo* t1_170_TI_var;
extern Il2CppCodeGenString* _stringLiteral572;
extern "C" void m1_1830 (t1_155 * __this, int32_t p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_702_TI_var = il2cpp_codegen_type_info_from_index(27);
t1_170_TI_var = il2cpp_codegen_type_info_from_index(19);
_stringLiteral572 = il2cpp_codegen_string_literal_from_index(572);
s_Il2CppMethodIntialized = true;
}
{
__this->f1 = (-1);
m1_0(__this, NULL);
int32_t L_0 = p0;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_001f;
}
}
{
t1_702 * L_1 = (t1_702 *)il2cpp_codegen_object_new (t1_702_TI_var);
m1_4574(L_1, _stringLiteral572, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_1);
}
IL_001f:
{
int32_t L_2 = p0;
__this->f3 = L_2;
int32_t L_3 = (__this->f3);
__this->f0 = ((t1_170*)SZArrayNew(t1_170_TI_var, L_3));
return;
}
}
extern TypeInfo* t1_170_TI_var;
extern "C" void m1_1831 (t1_155 * __this, int32_t p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_170_TI_var = il2cpp_codegen_type_info_from_index(19);
s_Il2CppMethodIntialized = true;
}
t1_170* V_0 = {0};
{
int32_t L_0 = p0;
int32_t L_1 = m1_5042(NULL, L_0, ((int32_t)16), NULL);
p0 = L_1;
int32_t L_2 = p0;
V_0 = ((t1_170*)SZArrayNew(t1_170_TI_var, L_2));
t1_170* L_3 = (__this->f0);
t1_170* L_4 = V_0;
int32_t L_5 = (__this->f2);
m1_824(NULL, (t1_33 *)(t1_33 *)L_3, (t1_33 *)(t1_33 *)L_4, L_5, NULL);
int32_t L_6 = p0;
__this->f3 = L_6;
t1_170* L_7 = V_0;
__this->f0 = L_7;
return;
}
}
extern "C" int32_t m1_1832 (t1_155 * __this, const MethodInfo* method)
{
{
int32_t L_0 = (__this->f2);
return L_0;
}
}
extern "C" bool m1_1833 (t1_155 * __this, const MethodInfo* method)
{
{
return 0;
}
}
extern "C" t1_1 * m1_1834 (t1_155 * __this, const MethodInfo* method)
{
{
return __this;
}
}
extern "C" void m1_1835 (t1_155 * __this, const MethodInfo* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = (__this->f4);
__this->f4 = ((int32_t)((int32_t)L_0+(int32_t)1));
V_0 = 0;
goto IL_0022;
}
IL_0015:
{
t1_170* L_1 = (__this->f0);
int32_t L_2 = V_0;
ArrayElementTypeCheck (L_1, NULL);
*((t1_1 **)(t1_1 **)SZArrayLdElema(L_1, L_2, sizeof(t1_1 *))) = (t1_1 *)NULL;
int32_t L_3 = V_0;
V_0 = ((int32_t)((int32_t)L_3+(int32_t)1));
}
IL_0022:
{
int32_t L_4 = V_0;
int32_t L_5 = (__this->f2);
if ((((int32_t)L_4) < ((int32_t)L_5)))
{
goto IL_0015;
}
}
{
__this->f2 = 0;
__this->f1 = (-1);
return;
}
}
extern TypeInfo* t1_155_TI_var;
extern "C" t1_1 * m1_1836 (t1_155 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_155_TI_var = il2cpp_codegen_type_info_from_index(174);
s_Il2CppMethodIntialized = true;
}
t1_155 * V_0 = {0};
{
t1_170* L_0 = (__this->f0);
t1_155 * L_1 = (t1_155 *)il2cpp_codegen_object_new (t1_155_TI_var);
m1_1829(L_1, (t1_1 *)(t1_1 *)L_0, NULL);
V_0 = L_1;
t1_155 * L_2 = V_0;
int32_t L_3 = (__this->f1);
L_2->f1 = L_3;
t1_155 * L_4 = V_0;
int32_t L_5 = (__this->f2);
L_4->f2 = L_5;
t1_155 * L_6 = V_0;
return L_6;
}
}
extern TypeInfo* t1_701_TI_var;
extern TypeInfo* t1_702_TI_var;
extern TypeInfo* t1_653_TI_var;
extern Il2CppCodeGenString* _stringLiteral147;
extern Il2CppCodeGenString* _stringLiteral144;
extern "C" void m1_1837 (t1_155 * __this, t1_33 * p0, int32_t p1, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_701_TI_var = il2cpp_codegen_type_info_from_index(2);
t1_702_TI_var = il2cpp_codegen_type_info_from_index(27);
t1_653_TI_var = il2cpp_codegen_type_info_from_index(4);
_stringLiteral147 = il2cpp_codegen_string_literal_from_index(147);
_stringLiteral144 = il2cpp_codegen_string_literal_from_index(144);
s_Il2CppMethodIntialized = true;
}
int32_t V_0 = 0;
{
t1_33 * L_0 = p0;
if (L_0)
{
goto IL_0011;
}
}
{
t1_701 * L_1 = (t1_701 *)il2cpp_codegen_object_new (t1_701_TI_var);
m1_4570(L_1, _stringLiteral147, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_1);
}
IL_0011:
{
int32_t L_2 = p1;
if ((((int32_t)L_2) >= ((int32_t)0)))
{
goto IL_0023;
}
}
{
t1_702 * L_3 = (t1_702 *)il2cpp_codegen_object_new (t1_702_TI_var);
m1_4574(L_3, _stringLiteral144, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_3);
}
IL_0023:
{
t1_33 * L_4 = p0;
int32_t L_5 = m1_778(L_4, NULL);
if ((((int32_t)L_5) > ((int32_t)1)))
{
goto IL_005a;
}
}
{
t1_33 * L_6 = p0;
int32_t L_7 = m1_776(L_6, NULL);
if ((((int32_t)L_7) <= ((int32_t)0)))
{
goto IL_0047;
}
}
{
int32_t L_8 = p1;
t1_33 * L_9 = p0;
int32_t L_10 = m1_776(L_9, NULL);
if ((((int32_t)L_8) >= ((int32_t)L_10)))
{
goto IL_005a;
}
}
IL_0047:
{
int32_t L_11 = (__this->f2);
t1_33 * L_12 = p0;
int32_t L_13 = m1_776(L_12, NULL);
int32_t L_14 = p1;
if ((((int32_t)L_11) <= ((int32_t)((int32_t)((int32_t)L_13-(int32_t)L_14)))))
{
goto IL_0060;
}
}
IL_005a:
{
t1_653 * L_15 = (t1_653 *)il2cpp_codegen_object_new (t1_653_TI_var);
m1_4560(L_15, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_15);
}
IL_0060:
{
int32_t L_16 = (__this->f1);
V_0 = L_16;
goto IL_008a;
}
IL_006c:
{
t1_33 * L_17 = p0;
t1_170* L_18 = (__this->f0);
int32_t L_19 = V_0;
int32_t L_20 = L_19;
int32_t L_21 = (__this->f2);
int32_t L_22 = V_0;
int32_t L_23 = p1;
m1_804(L_17, (*(t1_1 **)(t1_1 **)SZArrayLdElema(L_18, L_20, sizeof(t1_1 *))), ((int32_t)((int32_t)((int32_t)((int32_t)L_21-(int32_t)((int32_t)((int32_t)L_22+(int32_t)1))))+(int32_t)L_23)), NULL);
int32_t L_24 = V_0;
V_0 = ((int32_t)((int32_t)L_24-(int32_t)1));
}
IL_008a:
{
int32_t L_25 = V_0;
if ((!(((uint32_t)L_25) == ((uint32_t)(-1)))))
{
goto IL_006c;
}
}
{
return;
}
}
extern TypeInfo* t1_199_TI_var;
extern "C" t1_1 * m1_1838 (t1_155 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_199_TI_var = il2cpp_codegen_type_info_from_index(209);
s_Il2CppMethodIntialized = true;
}
{
t1_199 * L_0 = (t1_199 *)il2cpp_codegen_object_new (t1_199_TI_var);
m1_1823(L_0, __this, NULL);
return L_0;
}
}
extern TypeInfo* t1_740_TI_var;
extern "C" t1_1 * m1_1839 (t1_155 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_740_TI_var = il2cpp_codegen_type_info_from_index(71);
s_Il2CppMethodIntialized = true;
}
{
int32_t L_0 = (__this->f1);
if ((!(((uint32_t)L_0) == ((uint32_t)(-1)))))
{
goto IL_0012;
}
}
{
t1_740 * L_1 = (t1_740 *)il2cpp_codegen_object_new (t1_740_TI_var);
m1_5029(L_1, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_1);
}
IL_0012:
{
t1_170* L_2 = (__this->f0);
int32_t L_3 = (__this->f1);
int32_t L_4 = L_3;
return (*(t1_1 **)(t1_1 **)SZArrayLdElema(L_2, L_4, sizeof(t1_1 *)));
}
}
extern TypeInfo* t1_740_TI_var;
extern "C" t1_1 * m1_1840 (t1_155 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_740_TI_var = il2cpp_codegen_type_info_from_index(71);
s_Il2CppMethodIntialized = true;
}
t1_1 * V_0 = {0};
{
int32_t L_0 = (__this->f1);
if ((!(((uint32_t)L_0) == ((uint32_t)(-1)))))
{
goto IL_0012;
}
}
{
t1_740 * L_1 = (t1_740 *)il2cpp_codegen_object_new (t1_740_TI_var);
m1_5029(L_1, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_1);
}
IL_0012:
{
int32_t L_2 = (__this->f4);
__this->f4 = ((int32_t)((int32_t)L_2+(int32_t)1));
t1_170* L_3 = (__this->f0);
int32_t L_4 = (__this->f1);
int32_t L_5 = L_4;
V_0 = (*(t1_1 **)(t1_1 **)SZArrayLdElema(L_3, L_5, sizeof(t1_1 *)));
t1_170* L_6 = (__this->f0);
int32_t L_7 = (__this->f1);
ArrayElementTypeCheck (L_6, NULL);
*((t1_1 **)(t1_1 **)SZArrayLdElema(L_6, L_7, sizeof(t1_1 *))) = (t1_1 *)NULL;
int32_t L_8 = (__this->f2);
__this->f2 = ((int32_t)((int32_t)L_8-(int32_t)1));
int32_t L_9 = (__this->f1);
__this->f1 = ((int32_t)((int32_t)L_9-(int32_t)1));
int32_t L_10 = (__this->f2);
int32_t L_11 = (__this->f3);
if ((((int32_t)L_10) > ((int32_t)((int32_t)((int32_t)L_11/(int32_t)4)))))
{
goto IL_0086;
}
}
{
int32_t L_12 = (__this->f2);
if ((((int32_t)L_12) <= ((int32_t)((int32_t)16))))
{
goto IL_0086;
}
}
{
int32_t L_13 = (__this->f3);
m1_1831(__this, ((int32_t)((int32_t)L_13/(int32_t)2)), NULL);
}
IL_0086:
{
t1_1 * L_14 = V_0;
return L_14;
}
}
extern "C" void m1_1841 (t1_155 * __this, t1_1 * p0, const MethodInfo* method)
{
{
int32_t L_0 = (__this->f4);
__this->f4 = ((int32_t)((int32_t)L_0+(int32_t)1));
int32_t L_1 = (__this->f3);
int32_t L_2 = (__this->f2);
if ((!(((uint32_t)L_1) == ((uint32_t)L_2))))
{
goto IL_002d;
}
}
{
int32_t L_3 = (__this->f3);
m1_1831(__this, ((int32_t)((int32_t)L_3*(int32_t)2)), NULL);
}
IL_002d:
{
int32_t L_4 = (__this->f2);
__this->f2 = ((int32_t)((int32_t)L_4+(int32_t)1));
int32_t L_5 = (__this->f1);
__this->f1 = ((int32_t)((int32_t)L_5+(int32_t)1));
t1_170* L_6 = (__this->f0);
int32_t L_7 = (__this->f1);
t1_1 * L_8 = p0;
ArrayElementTypeCheck (L_6, L_8);
*((t1_1 **)(t1_1 **)SZArrayLdElema(L_6, L_7, sizeof(t1_1 *))) = (t1_1 *)L_8;
return;
}
}
extern "C" void m1_1842 (t1_203 * __this, int32_t p0, const MethodInfo* method)
{
{
m1_17(__this, NULL);
int32_t L_0 = p0;
__this->f2 = L_0;
int32_t L_1 = (__this->f2);
__this->f0 = ((((int32_t)((((int32_t)((int32_t)((int32_t)L_1&(int32_t)1))) == ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0);
int32_t L_2 = (__this->f2);
__this->f1 = ((((int32_t)((((int32_t)((int32_t)((int32_t)L_2&(int32_t)((int32_t)256)))) == ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0);
return;
}
}
extern TypeInfo* t1_18_TI_var;
extern "C" void m1_1843 (t1_204 * __this, t1_18* p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_18_TI_var = il2cpp_codegen_type_info_from_index(11);
s_Il2CppMethodIntialized = true;
}
{
m1_17(__this, NULL);
t1_18* L_0 = p0;
if (L_0)
{
goto IL_0013;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(t1_18_TI_var);
t1_18* L_1 = ((t1_18_SFs*)t1_18_TI_var->static_fields)->f2;
p0 = L_1;
}
IL_0013:
{
t1_18* L_2 = p0;
__this->f0 = L_2;
IL2CPP_RUNTIME_CLASS_INIT(t1_18_TI_var);
t1_18* L_3 = ((t1_18_SFs*)t1_18_TI_var->static_fields)->f2;
__this->f1 = L_3;
t1_18* L_4 = ((t1_18_SFs*)t1_18_TI_var->static_fields)->f2;
__this->f2 = L_4;
return;
}
}
extern "C" void m1_1844 (t1_204 * __this, t1_18* p0, const MethodInfo* method)
{
{
t1_18* L_0 = p0;
__this->f2 = L_0;
return;
}
}
extern "C" void m1_1845 (t1_205 * __this, const MethodInfo* method)
{
{
m1_17(__this, NULL);
return;
}
}
extern "C" void m1_1846 (t1_206 * __this, t1_37 * p0, const MethodInfo* method)
{
{
m1_17(__this, NULL);
t1_37 * L_0 = p0;
t1_18* L_1 = (t1_18*)VirtFuncInvoker0< t1_18* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, L_0);
__this->f0 = L_1;
return;
}
}
extern "C" void m1_1847 (t1_207 * __this, const MethodInfo* method)
{
{
__this->f1 = (-1);
__this->f2 = (-1);
m1_0(__this, NULL);
t1_208 ** L_0 = &(__this->f3);
int32_t* L_1 = &(__this->f1);
int32_t* L_2 = &(__this->f2);
t1_18** L_3 = &(__this->f4);
int32_t* L_4 = &(__this->f5);
int32_t* L_5 = &(__this->f6);
m1_1849(NULL, 2, 0, L_0, L_1, L_2, L_3, L_4, L_5, NULL);
return;
}
}
extern "C" void m1_1848 (t1_207 * __this, int32_t p0, bool p1, const MethodInfo* method)
{
{
__this->f1 = (-1);
__this->f2 = (-1);
m1_0(__this, NULL);
int32_t L_0 = p0;
bool L_1 = p1;
t1_208 ** L_2 = &(__this->f3);
int32_t* L_3 = &(__this->f1);
int32_t* L_4 = &(__this->f2);
t1_18** L_5 = &(__this->f4);
int32_t* L_6 = &(__this->f5);
int32_t* L_7 = &(__this->f6);
m1_1849(NULL, ((int32_t)((int32_t)L_0+(int32_t)2)), L_1, L_2, L_3, L_4, L_5, L_6, L_7, NULL);
return;
}
}
extern "C" bool m1_1849 (t1_1 * __this , int32_t p0, bool p1, t1_208 ** p2, int32_t* p3, int32_t* p4, t1_18** p5, int32_t* p6, int32_t* p7, const MethodInfo* method)
{
using namespace il2cpp::icalls;
typedef bool (*m1_1849_ftn) (int32_t, bool, t1_208 **, int32_t*, int32_t*, t1_18**, int32_t*, int32_t*);
return ((m1_1849_ftn)mscorlib::System::Diagnostics::StackFrame::get_frame_info) (p0, p1, p2, p3, p4, p5, p6, p7);
}
extern "C" int32_t m1_1850 (t1_207 * __this, const MethodInfo* method)
{
{
int32_t L_0 = (__this->f5);
return L_0;
}
}
extern "C" t1_18* m1_1851 (t1_207 * __this, const MethodInfo* method)
{
{
t1_18* L_0 = (__this->f4);
return L_0;
}
}
extern TypeInfo* t1_637_TI_var;
extern Il2CppCodeGenString* _stringLiteral573;
extern "C" t1_18* m1_1852 (t1_207 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_637_TI_var = il2cpp_codegen_type_info_from_index(210);
_stringLiteral573 = il2cpp_codegen_string_literal_from_index(573);
s_Il2CppMethodIntialized = true;
}
t1_18* V_0 = {0};
t1_43 * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
t1_43 * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
V_0 = _stringLiteral573;
t1_18* L_0 = (__this->f4);
if (L_0)
{
goto IL_0013;
}
}
{
t1_18* L_1 = V_0;
return L_1;
}
IL_0013:
try
{ // begin try (depth: 1)
t1_18* L_2 = (t1_18*)VirtFuncInvoker0< t1_18* >::Invoke(5 /* System.String System.Diagnostics.StackFrame::GetFileName() */, __this);
V_0 = L_2;
goto IL_0025;
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (t1_43 *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (t1_637_TI_var, e.ex->object.klass))
goto CATCH_001f;
throw e;
}
CATCH_001f:
{ // begin catch(System.Security.SecurityException)
goto IL_0025;
} // end catch (depth: 1)
IL_0025:
{
t1_18* L_3 = V_0;
return L_3;
}
}
extern "C" int32_t m1_1853 (t1_207 * __this, const MethodInfo* method)
{
{
int32_t L_0 = (__this->f1);
return L_0;
}
}
extern "C" t1_208 * m1_1854 (t1_207 * __this, const MethodInfo* method)
{
{
t1_208 * L_0 = (__this->f3);
return L_0;
}
}
extern "C" int32_t m1_1855 (t1_207 * __this, const MethodInfo* method)
{
{
int32_t L_0 = (__this->f2);
return L_0;
}
}
extern "C" t1_18* m1_1856 (t1_207 * __this, const MethodInfo* method)
{
{
t1_18* L_0 = (__this->f7);
return L_0;
}
}
extern TypeInfo* t1_158_TI_var;
extern TypeInfo* t1_4_TI_var;
extern Il2CppCodeGenString* _stringLiteral218;
extern Il2CppCodeGenString* _stringLiteral574;
extern Il2CppCodeGenString* _stringLiteral575;
extern Il2CppCodeGenString* _stringLiteral576;
extern Il2CppCodeGenString* _stringLiteral577;
extern Il2CppCodeGenString* _stringLiteral578;
extern "C" t1_18* m1_1857 (t1_207 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_158_TI_var = il2cpp_codegen_type_info_from_index(36);
t1_4_TI_var = il2cpp_codegen_type_info_from_index(8);
_stringLiteral218 = il2cpp_codegen_string_literal_from_index(218);
_stringLiteral574 = il2cpp_codegen_string_literal_from_index(574);
_stringLiteral575 = il2cpp_codegen_string_literal_from_index(575);
_stringLiteral576 = il2cpp_codegen_string_literal_from_index(576);
_stringLiteral577 = il2cpp_codegen_string_literal_from_index(577);
_stringLiteral578 = il2cpp_codegen_string_literal_from_index(578);
s_Il2CppMethodIntialized = true;
}
t1_158 * V_0 = {0};
{
t1_158 * L_0 = (t1_158 *)il2cpp_codegen_object_new (t1_158_TI_var);
m1_4291(L_0, NULL);
V_0 = L_0;
t1_208 * L_1 = (__this->f3);
if (L_1)
{
goto IL_0027;
}
}
{
t1_158 * L_2 = V_0;
t1_18* L_3 = m1_990(NULL, _stringLiteral218, NULL);
m1_4308(L_2, L_3, NULL);
goto IL_0039;
}
IL_0027:
{
t1_158 * L_4 = V_0;
t1_208 * L_5 = (__this->f3);
t1_18* L_6 = (t1_18*)VirtFuncInvoker0< t1_18* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, L_5);
m1_4308(L_4, L_6, NULL);
}
IL_0039:
{
t1_158 * L_7 = V_0;
t1_18* L_8 = m1_990(NULL, _stringLiteral574, NULL);
m1_4308(L_7, L_8, NULL);
int32_t L_9 = (__this->f1);
if ((!(((uint32_t)L_9) == ((uint32_t)(-1)))))
{
goto IL_006c;
}
}
{
t1_158 * L_10 = V_0;
t1_18* L_11 = m1_990(NULL, _stringLiteral575, NULL);
m1_4308(L_10, L_11, NULL);
goto IL_008a;
}
IL_006c:
{
t1_158 * L_12 = V_0;
t1_18* L_13 = m1_990(NULL, _stringLiteral576, NULL);
m1_4308(L_12, L_13, NULL);
t1_158 * L_14 = V_0;
int32_t L_15 = (__this->f1);
m1_4309(L_14, L_15, NULL);
}
IL_008a:
{
t1_158 * L_16 = V_0;
t1_18* L_17 = m1_990(NULL, _stringLiteral577, NULL);
m1_4308(L_16, L_17, NULL);
t1_158 * L_18 = V_0;
t1_18* L_19 = m1_1852(__this, NULL);
m1_4308(L_18, L_19, NULL);
t1_158 * L_20 = V_0;
int32_t L_21 = (__this->f5);
int32_t L_22 = L_21;
t1_1 * L_23 = Box(t1_4_TI_var, &L_22);
int32_t L_24 = (__this->f6);
int32_t L_25 = L_24;
t1_1 * L_26 = Box(t1_4_TI_var, &L_25);
m1_4321(L_20, _stringLiteral578, L_23, L_26, NULL);
t1_158 * L_27 = V_0;
t1_18* L_28 = m1_4303(L_27, NULL);
return L_28;
}
}
extern "C" void m1_1858 (t1_209 * __this, const MethodInfo* method)
{
{
m1_0(__this, NULL);
m1_1863(__this, 0, 0, NULL);
return;
}
}
extern "C" void m1_1859 (t1_209 * __this, int32_t p0, bool p1, const MethodInfo* method)
{
{
m1_0(__this, NULL);
int32_t L_0 = p0;
bool L_1 = p1;
m1_1863(__this, L_0, L_1, NULL);
return;
}
}
extern "C" void m1_1860 (t1_209 * __this, t1_43 * p0, bool p1, const MethodInfo* method)
{
{
t1_43 * L_0 = p0;
bool L_1 = p1;
m1_1861(__this, L_0, 0, L_1, NULL);
return;
}
}
extern "C" void m1_1861 (t1_209 * __this, t1_43 * p0, int32_t p1, bool p2, const MethodInfo* method)
{
{
t1_43 * L_0 = p0;
int32_t L_1 = p1;
bool L_2 = p2;
m1_1862(__this, L_0, L_1, L_2, 0, NULL);
return;
}
}
extern const Il2CppType* t1_207_0_0_0_var;
extern TypeInfo* t1_701_TI_var;
extern TypeInfo* t1_702_TI_var;
extern TypeInfo* t1_126_TI_var;
extern TypeInfo* t1_37_TI_var;
extern TypeInfo* t1_210_TI_var;
extern Il2CppCodeGenString* _stringLiteral579;
extern Il2CppCodeGenString* _stringLiteral44;
extern Il2CppCodeGenString* _stringLiteral580;
extern "C" void m1_1862 (t1_209 * __this, t1_43 * p0, int32_t p1, bool p2, bool p3, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_207_0_0_0_var = il2cpp_codegen_type_from_index(211);
t1_701_TI_var = il2cpp_codegen_type_info_from_index(2);
t1_702_TI_var = il2cpp_codegen_type_info_from_index(27);
t1_126_TI_var = il2cpp_codegen_type_info_from_index(55);
t1_37_TI_var = il2cpp_codegen_type_info_from_index(3);
t1_210_TI_var = il2cpp_codegen_type_info_from_index(212);
_stringLiteral579 = il2cpp_codegen_string_literal_from_index(579);
_stringLiteral44 = il2cpp_codegen_string_literal_from_index(44);
_stringLiteral580 = il2cpp_codegen_string_literal_from_index(580);
s_Il2CppMethodIntialized = true;
}
bool V_0 = false;
int32_t V_1 = 0;
t1_126 * V_2 = {0};
int32_t V_3 = 0;
{
m1_0(__this, NULL);
t1_43 * L_0 = p0;
if (L_0)
{
goto IL_0017;
}
}
{
t1_701 * L_1 = (t1_701 *)il2cpp_codegen_object_new (t1_701_TI_var);
m1_4570(L_1, _stringLiteral579, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_1);
}
IL_0017:
{
int32_t L_2 = p1;
if ((((int32_t)L_2) >= ((int32_t)0)))
{
goto IL_002e;
}
}
{
t1_702 * L_3 = (t1_702 *)il2cpp_codegen_object_new (t1_702_TI_var);
m1_4575(L_3, _stringLiteral44, _stringLiteral580, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_3);
}
IL_002e:
{
t1_43 * L_4 = p0;
int32_t L_5 = p1;
bool L_6 = p2;
t1_210* L_7 = m1_1864(NULL, L_4, L_5, L_6, NULL);
__this->f1 = L_7;
bool L_8 = p3;
if (L_8)
{
goto IL_00d3;
}
}
{
V_0 = 0;
V_1 = 0;
goto IL_0064;
}
IL_004c:
{
t1_210* L_9 = (__this->f1);
int32_t L_10 = V_1;
int32_t L_11 = L_10;
t1_208 * L_12 = (t1_208 *)VirtFuncInvoker0< t1_208 * >::Invoke(7 /* System.Reflection.MethodBase System.Diagnostics.StackFrame::GetMethod() */, (*(t1_207 **)(t1_207 **)SZArrayLdElema(L_9, L_11, sizeof(t1_207 *))));
if (L_12)
{
goto IL_0060;
}
}
{
V_0 = 1;
}
IL_0060:
{
int32_t L_13 = V_1;
V_1 = ((int32_t)((int32_t)L_13+(int32_t)1));
}
IL_0064:
{
int32_t L_14 = V_1;
t1_210* L_15 = (__this->f1);
if ((((int32_t)L_14) < ((int32_t)(((int32_t)((int32_t)(((t1_33 *)L_15)->max_length)))))))
{
goto IL_004c;
}
}
{
bool L_16 = V_0;
if (!L_16)
{
goto IL_00d3;
}
}
{
t1_126 * L_17 = (t1_126 *)il2cpp_codegen_object_new (t1_126_TI_var);
m1_1590(L_17, NULL);
V_2 = L_17;
V_3 = 0;
goto IL_00aa;
}
IL_0085:
{
t1_210* L_18 = (__this->f1);
int32_t L_19 = V_3;
int32_t L_20 = L_19;
t1_208 * L_21 = (t1_208 *)VirtFuncInvoker0< t1_208 * >::Invoke(7 /* System.Reflection.MethodBase System.Diagnostics.StackFrame::GetMethod() */, (*(t1_207 **)(t1_207 **)SZArrayLdElema(L_18, L_20, sizeof(t1_207 *))));
if (!L_21)
{
goto IL_00a6;
}
}
{
t1_126 * L_22 = V_2;
t1_210* L_23 = (__this->f1);
int32_t L_24 = V_3;
int32_t L_25 = L_24;
VirtFuncInvoker1< int32_t, t1_1 * >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_22, (*(t1_207 **)(t1_207 **)SZArrayLdElema(L_23, L_25, sizeof(t1_207 *))));
}
IL_00a6:
{
int32_t L_26 = V_3;
V_3 = ((int32_t)((int32_t)L_26+(int32_t)1));
}
IL_00aa:
{
int32_t L_27 = V_3;
t1_210* L_28 = (__this->f1);
if ((((int32_t)L_27) < ((int32_t)(((int32_t)((int32_t)(((t1_33 *)L_28)->max_length)))))))
{
goto IL_0085;
}
}
{
t1_126 * L_29 = V_2;
IL2CPP_RUNTIME_CLASS_INIT(t1_37_TI_var);
t1_37 * L_30 = m1_894(NULL, LoadTypeToken(t1_207_0_0_0_var), NULL);
t1_33 * L_31 = (t1_33 *)VirtFuncInvoker1< t1_33 *, t1_37 * >::Invoke(48 /* System.Array System.Collections.ArrayList::ToArray(System.Type) */, L_29, L_30);
__this->f1 = ((t1_210*)Castclass(L_31, t1_210_TI_var));
}
IL_00d3:
{
return;
}
}
extern const Il2CppType* t1_207_0_0_0_var;
extern TypeInfo* t1_702_TI_var;
extern TypeInfo* t1_126_TI_var;
extern TypeInfo* t1_207_TI_var;
extern TypeInfo* t1_37_TI_var;
extern TypeInfo* t1_210_TI_var;
extern Il2CppCodeGenString* _stringLiteral44;
extern Il2CppCodeGenString* _stringLiteral580;
extern "C" void m1_1863 (t1_209 * __this, int32_t p0, bool p1, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_207_0_0_0_var = il2cpp_codegen_type_from_index(211);
t1_702_TI_var = il2cpp_codegen_type_info_from_index(27);
t1_126_TI_var = il2cpp_codegen_type_info_from_index(55);
t1_207_TI_var = il2cpp_codegen_type_info_from_index(211);
t1_37_TI_var = il2cpp_codegen_type_info_from_index(3);
t1_210_TI_var = il2cpp_codegen_type_info_from_index(212);
_stringLiteral44 = il2cpp_codegen_string_literal_from_index(44);
_stringLiteral580 = il2cpp_codegen_string_literal_from_index(580);
s_Il2CppMethodIntialized = true;
}
t1_207 * V_0 = {0};
t1_126 * V_1 = {0};
{
int32_t L_0 = p0;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0017;
}
}
{
t1_702 * L_1 = (t1_702 *)il2cpp_codegen_object_new (t1_702_TI_var);
m1_4575(L_1, _stringLiteral44, _stringLiteral580, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_1);
}
IL_0017:
{
t1_126 * L_2 = (t1_126 *)il2cpp_codegen_object_new (t1_126_TI_var);
m1_1590(L_2, NULL);
V_1 = L_2;
int32_t L_3 = p0;
p0 = ((int32_t)((int32_t)L_3+(int32_t)2));
goto IL_0034;
}
IL_0027:
{
t1_126 * L_4 = V_1;
t1_207 * L_5 = V_0;
VirtFuncInvoker1< int32_t, t1_1 * >::Invoke(30 /* System.Int32 System.Collections.ArrayList::Add(System.Object) */, L_4, L_5);
int32_t L_6 = p0;
p0 = ((int32_t)((int32_t)L_6+(int32_t)1));
}
IL_0034:
{
int32_t L_7 = p0;
bool L_8 = p1;
t1_207 * L_9 = (t1_207 *)il2cpp_codegen_object_new (t1_207_TI_var);
m1_1848(L_9, L_7, L_8, NULL);
t1_207 * L_10 = L_9;
V_0 = L_10;
if (!L_10)
{
goto IL_004d;
}
}
{
t1_207 * L_11 = V_0;
t1_208 * L_12 = (t1_208 *)VirtFuncInvoker0< t1_208 * >::Invoke(7 /* System.Reflection.MethodBase System.Diagnostics.StackFrame::GetMethod() */, L_11);
if (L_12)
{
goto IL_0027;
}
}
IL_004d:
{
bool L_13 = p1;
__this->f2 = L_13;
t1_126 * L_14 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(t1_37_TI_var);
t1_37 * L_15 = m1_894(NULL, LoadTypeToken(t1_207_0_0_0_var), NULL);
t1_33 * L_16 = (t1_33 *)VirtFuncInvoker1< t1_33 *, t1_37 * >::Invoke(48 /* System.Array System.Collections.ArrayList::ToArray(System.Type) */, L_14, L_15);
__this->f1 = ((t1_210*)Castclass(L_16, t1_210_TI_var));
return;
}
}
extern "C" t1_210* m1_1864 (t1_1 * __this , t1_43 * p0, int32_t p1, bool p2, const MethodInfo* method)
{
using namespace il2cpp::icalls;
typedef t1_210* (*m1_1864_ftn) (t1_43 *, int32_t, bool);
return ((m1_1864_ftn)mscorlib::System::Diagnostics::StackTrace::get_trace) (p0, p1, p2);
}
extern "C" int32_t m1_1865 (t1_209 * __this, const MethodInfo* method)
{
int32_t G_B3_0 = 0;
{
t1_210* L_0 = (__this->f1);
if (L_0)
{
goto IL_0011;
}
}
{
G_B3_0 = 0;
goto IL_0019;
}
IL_0011:
{
t1_210* L_1 = (__this->f1);
G_B3_0 = (((int32_t)((int32_t)(((t1_33 *)L_1)->max_length))));
}
IL_0019:
{
return G_B3_0;
}
}
extern "C" t1_207 * m1_1866 (t1_209 * __this, int32_t p0, const MethodInfo* method)
{
{
int32_t L_0 = p0;
if ((((int32_t)L_0) < ((int32_t)0)))
{
goto IL_0013;
}
}
{
int32_t L_1 = p0;
int32_t L_2 = (int32_t)VirtFuncInvoker0< int32_t >::Invoke(4 /* System.Int32 System.Diagnostics.StackTrace::get_FrameCount() */, __this);
if ((((int32_t)L_1) < ((int32_t)L_2)))
{
goto IL_0015;
}
}
IL_0013:
{
return (t1_207 *)NULL;
}
IL_0015:
{
t1_210* L_3 = (__this->f1);
int32_t L_4 = p0;
int32_t L_5 = L_4;
return (*(t1_207 **)(t1_207 **)SZArrayLdElema(L_3, L_5, sizeof(t1_207 *)));
}
}
extern TypeInfo* t1_18_TI_var;
extern TypeInfo* t1_158_TI_var;
extern TypeInfo* t1_4_TI_var;
extern Il2CppCodeGenString* _stringLiteral581;
extern Il2CppCodeGenString* _stringLiteral217;
extern Il2CppCodeGenString* _stringLiteral218;
extern Il2CppCodeGenString* _stringLiteral582;
extern Il2CppCodeGenString* _stringLiteral583;
extern Il2CppCodeGenString* _stringLiteral584;
extern Il2CppCodeGenString* _stringLiteral585;
extern Il2CppCodeGenString* _stringLiteral141;
extern Il2CppCodeGenString* _stringLiteral49;
extern Il2CppCodeGenString* _stringLiteral586;
extern Il2CppCodeGenString* _stringLiteral587;
extern Il2CppCodeGenString* _stringLiteral93;
extern Il2CppCodeGenString* _stringLiteral573;
extern "C" t1_18* m1_1867 (t1_209 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_18_TI_var = il2cpp_codegen_type_info_from_index(11);
t1_158_TI_var = il2cpp_codegen_type_info_from_index(36);
t1_4_TI_var = il2cpp_codegen_type_info_from_index(8);
_stringLiteral581 = il2cpp_codegen_string_literal_from_index(581);
_stringLiteral217 = il2cpp_codegen_string_literal_from_index(217);
_stringLiteral218 = il2cpp_codegen_string_literal_from_index(218);
_stringLiteral582 = il2cpp_codegen_string_literal_from_index(582);
_stringLiteral583 = il2cpp_codegen_string_literal_from_index(583);
_stringLiteral584 = il2cpp_codegen_string_literal_from_index(584);
_stringLiteral585 = il2cpp_codegen_string_literal_from_index(585);
_stringLiteral141 = il2cpp_codegen_string_literal_from_index(141);
_stringLiteral49 = il2cpp_codegen_string_literal_from_index(49);
_stringLiteral586 = il2cpp_codegen_string_literal_from_index(586);
_stringLiteral587 = il2cpp_codegen_string_literal_from_index(587);
_stringLiteral93 = il2cpp_codegen_string_literal_from_index(93);
_stringLiteral573 = il2cpp_codegen_string_literal_from_index(573);
s_Il2CppMethodIntialized = true;
}
t1_18* V_0 = {0};
t1_18* V_1 = {0};
t1_18* V_2 = {0};
t1_158 * V_3 = {0};
int32_t V_4 = 0;
t1_207 * V_5 = {0};
t1_208 * V_6 = {0};
t1_818* V_7 = {0};
int32_t V_8 = 0;
t1_37 * V_9 = {0};
bool V_10 = false;
t1_18* V_11 = {0};
{
t1_18* L_0 = m1_4977(NULL, NULL);
t1_18* L_1 = m1_990(NULL, _stringLiteral217, NULL);
IL2CPP_RUNTIME_CLASS_INIT(t1_18_TI_var);
t1_18* L_2 = m1_413(NULL, _stringLiteral581, L_0, L_1, NULL);
V_0 = L_2;
t1_18* L_3 = m1_990(NULL, _stringLiteral218, NULL);
V_1 = L_3;
t1_18* L_4 = m1_990(NULL, _stringLiteral582, NULL);
V_2 = L_4;
t1_158 * L_5 = (t1_158 *)il2cpp_codegen_object_new (t1_158_TI_var);
m1_4291(L_5, NULL);
V_3 = L_5;
V_4 = 0;
goto IL_01d6;
}
IL_003e:
{
int32_t L_6 = V_4;
t1_207 * L_7 = (t1_207 *)VirtFuncInvoker1< t1_207 *, int32_t >::Invoke(5 /* System.Diagnostics.StackFrame System.Diagnostics.StackTrace::GetFrame(System.Int32) */, __this, L_6);
V_5 = L_7;
int32_t L_8 = V_4;
if ((((int32_t)L_8) <= ((int32_t)0)))
{
goto IL_005d;
}
}
{
t1_158 * L_9 = V_3;
t1_18* L_10 = V_0;
m1_4308(L_9, L_10, NULL);
goto IL_0073;
}
IL_005d:
{
t1_158 * L_11 = V_3;
t1_18* L_12 = m1_990(NULL, _stringLiteral217, NULL);
m1_4320(L_11, _stringLiteral583, L_12, NULL);
}
IL_0073:
{
t1_207 * L_13 = V_5;
t1_208 * L_14 = (t1_208 *)VirtFuncInvoker0< t1_208 * >::Invoke(7 /* System.Reflection.MethodBase System.Diagnostics.StackFrame::GetMethod() */, L_13);
V_6 = L_14;
t1_208 * L_15 = V_6;
if (!L_15)
{
goto IL_018d;
}
}
{
t1_158 * L_16 = V_3;
t1_208 * L_17 = V_6;
t1_37 * L_18 = (t1_37 *)VirtFuncInvoker0< t1_37 * >::Invoke(6 /* System.Type System.Reflection.MemberInfo::get_DeclaringType() */, L_17);
t1_18* L_19 = (t1_18*)VirtFuncInvoker0< t1_18* >::Invoke(18 /* System.String System.Type::get_FullName() */, L_18);
t1_208 * L_20 = V_6;
t1_18* L_21 = (t1_18*)VirtFuncInvoker0< t1_18* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, L_20);
m1_4321(L_16, _stringLiteral584, L_19, L_21, NULL);
t1_158 * L_22 = V_3;
m1_4308(L_22, _stringLiteral585, NULL);
t1_208 * L_23 = V_6;
t1_818* L_24 = (t1_818*)VirtFuncInvoker0< t1_818* >::Invoke(14 /* System.Reflection.ParameterInfo[] System.Reflection.MethodBase::GetParameters() */, L_23);
V_7 = L_24;
V_8 = 0;
goto IL_0171;
}
IL_00bf:
{
int32_t L_25 = V_8;
if ((((int32_t)L_25) <= ((int32_t)0)))
{
goto IL_00d3;
}
}
{
t1_158 * L_26 = V_3;
m1_4308(L_26, _stringLiteral141, NULL);
}
IL_00d3:
{
t1_818* L_27 = V_7;
int32_t L_28 = V_8;
int32_t L_29 = L_28;
t1_37 * L_30 = (t1_37 *)VirtFuncInvoker0< t1_37 * >::Invoke(6 /* System.Type System.Reflection.ParameterInfo::get_ParameterType() */, (*(t1_369 **)(t1_369 **)SZArrayLdElema(L_27, L_29, sizeof(t1_369 *))));
V_9 = L_30;
t1_37 * L_31 = V_9;
bool L_32 = (bool)VirtFuncInvoker0< bool >::Invoke(22 /* System.Boolean System.Type::get_IsByRef() */, L_31);
V_10 = L_32;
bool L_33 = V_10;
if (!L_33)
{
goto IL_00f8;
}
}
{
t1_37 * L_34 = V_9;
t1_37 * L_35 = (t1_37 *)VirtFuncInvoker0< t1_37 * >::Invoke(42 /* System.Type System.Type::GetElementType() */, L_34);
V_9 = L_35;
}
IL_00f8:
{
t1_37 * L_36 = V_9;
bool L_37 = (bool)VirtFuncInvoker0< bool >::Invoke(23 /* System.Boolean System.Type::get_IsClass() */, L_36);
if (!L_37)
{
goto IL_0134;
}
}
{
t1_37 * L_38 = V_9;
t1_18* L_39 = (t1_18*)VirtFuncInvoker0< t1_18* >::Invoke(34 /* System.String System.Type::get_Namespace() */, L_38);
IL2CPP_RUNTIME_CLASS_INIT(t1_18_TI_var);
t1_18* L_40 = ((t1_18_SFs*)t1_18_TI_var->static_fields)->f2;
bool L_41 = m1_457(NULL, L_39, L_40, NULL);
if (!L_41)
{
goto IL_0134;
}
}
{
t1_158 * L_42 = V_3;
t1_37 * L_43 = V_9;
t1_18* L_44 = (t1_18*)VirtFuncInvoker0< t1_18* >::Invoke(34 /* System.String System.Type::get_Namespace() */, L_43);
m1_4308(L_42, L_44, NULL);
t1_158 * L_45 = V_3;
m1_4308(L_45, _stringLiteral49, NULL);
}
IL_0134:
{
t1_158 * L_46 = V_3;
t1_37 * L_47 = V_9;
t1_18* L_48 = (t1_18*)VirtFuncInvoker0< t1_18* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, L_47);
m1_4308(L_46, L_48, NULL);
bool L_49 = V_10;
if (!L_49)
{
goto IL_0155;
}
}
{
t1_158 * L_50 = V_3;
m1_4308(L_50, _stringLiteral586, NULL);
}
IL_0155:
{
t1_158 * L_51 = V_3;
t1_818* L_52 = V_7;
int32_t L_53 = V_8;
int32_t L_54 = L_53;
t1_18* L_55 = (t1_18*)VirtFuncInvoker0< t1_18* >::Invoke(9 /* System.String System.Reflection.ParameterInfo::get_Name() */, (*(t1_369 **)(t1_369 **)SZArrayLdElema(L_52, L_54, sizeof(t1_369 *))));
m1_4320(L_51, _stringLiteral587, L_55, NULL);
int32_t L_56 = V_8;
V_8 = ((int32_t)((int32_t)L_56+(int32_t)1));
}
IL_0171:
{
int32_t L_57 = V_8;
t1_818* L_58 = V_7;
if ((((int32_t)L_57) < ((int32_t)(((int32_t)((int32_t)(((t1_33 *)L_58)->max_length)))))))
{
goto IL_00bf;
}
}
{
t1_158 * L_59 = V_3;
m1_4308(L_59, _stringLiteral93, NULL);
goto IL_0195;
}
IL_018d:
{
t1_158 * L_60 = V_3;
t1_18* L_61 = V_1;
m1_4308(L_60, L_61, NULL);
}
IL_0195:
{
bool L_62 = (__this->f2);
if (!L_62)
{
goto IL_01d0;
}
}
{
t1_207 * L_63 = V_5;
t1_18* L_64 = m1_1852(L_63, NULL);
V_11 = L_64;
t1_18* L_65 = V_11;
IL2CPP_RUNTIME_CLASS_INIT(t1_18_TI_var);
bool L_66 = m1_457(NULL, L_65, _stringLiteral573, NULL);
if (!L_66)
{
goto IL_01d0;
}
}
{
t1_158 * L_67 = V_3;
t1_18* L_68 = V_2;
t1_18* L_69 = V_11;
t1_207 * L_70 = V_5;
int32_t L_71 = (int32_t)VirtFuncInvoker0< int32_t >::Invoke(4 /* System.Int32 System.Diagnostics.StackFrame::GetFileLineNumber() */, L_70);
int32_t L_72 = L_71;
t1_1 * L_73 = Box(t1_4_TI_var, &L_72);
m1_4321(L_67, L_68, L_69, L_73, NULL);
}
IL_01d0:
{
int32_t L_74 = V_4;
V_4 = ((int32_t)((int32_t)L_74+(int32_t)1));
}
IL_01d6:
{
int32_t L_75 = V_4;
int32_t L_76 = (int32_t)VirtFuncInvoker0< int32_t >::Invoke(4 /* System.Int32 System.Diagnostics.StackTrace::get_FrameCount() */, __this);
if ((((int32_t)L_75) < ((int32_t)L_76)))
{
goto IL_003e;
}
}
{
t1_158 * L_77 = V_3;
t1_18* L_78 = m1_4303(L_77, NULL);
return L_78;
}
}
extern "C" void m1_1868 (t1_211 * __this, const MethodInfo* method)
{
{
m1_0(__this, NULL);
__this->f1 = ((int32_t)99);
return;
}
}
extern TypeInfo* t1_211_TI_var;
extern "C" t1_1 * m1_1869 (t1_211 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_211_TI_var = il2cpp_codegen_type_info_from_index(213);
s_Il2CppMethodIntialized = true;
}
t1_211 * V_0 = {0};
{
t1_1 * L_0 = m1_6(__this, NULL);
V_0 = ((t1_211 *)CastclassClass(L_0, t1_211_TI_var));
t1_211 * L_1 = V_0;
L_1->f0 = 0;
t1_211 * L_2 = V_0;
return L_2;
}
}
extern TypeInfo* t1_740_TI_var;
extern Il2CppCodeGenString* _stringLiteral588;
extern "C" void m1_1870 (t1_211 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_740_TI_var = il2cpp_codegen_type_info_from_index(71);
_stringLiteral588 = il2cpp_codegen_string_literal_from_index(588);
s_Il2CppMethodIntialized = true;
}
{
bool L_0 = (__this->f0);
if (!L_0)
{
goto IL_0016;
}
}
{
t1_740 * L_1 = (t1_740 *)il2cpp_codegen_object_new (t1_740_TI_var);
m1_5030(L_1, _stringLiteral588, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_1);
}
IL_0016:
{
return;
}
}
extern TypeInfo* t1_43_TI_var;
extern TypeInfo* t1_212_TI_var;
extern Il2CppCodeGenString* _stringLiteral589;
extern "C" t1_212* m1_1871 (t1_211 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_43_TI_var = il2cpp_codegen_type_info_from_index(45);
t1_212_TI_var = il2cpp_codegen_type_info_from_index(32);
_stringLiteral589 = il2cpp_codegen_string_literal_from_index(589);
s_Il2CppMethodIntialized = true;
}
{
t1_212* L_0 = (__this->f3);
if (!L_0)
{
goto IL_0020;
}
}
{
t1_212* L_1 = (__this->f3);
t1_173* L_2 = (t1_173*)VirtFuncInvoker0< t1_173* >::Invoke(5 /* System.Int32[] System.Globalization.Calendar::get_Eras() */, __this);
if ((((int32_t)(((int32_t)((int32_t)(((t1_33 *)L_1)->max_length))))) == ((int32_t)(((int32_t)((int32_t)(((t1_33 *)L_2)->max_length)))))))
{
goto IL_002b;
}
}
IL_0020:
{
t1_43 * L_3 = (t1_43 *)il2cpp_codegen_object_new (t1_43_TI_var);
m1_933(L_3, _stringLiteral589, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_3);
}
IL_002b:
{
t1_212* L_4 = (__this->f3);
t1_1 * L_5 = (t1_1 *)VirtFuncInvoker0< t1_1 * >::Invoke(5 /* System.Object System.Array::Clone() */, L_4);
return ((t1_212*)Castclass(L_5, t1_212_TI_var));
}
}
extern "C" int32_t m1_1872 (t1_1 * __this , int32_t p0, int32_t p1, const MethodInfo* method)
{
{
int32_t L_0 = p0;
int32_t L_1 = p1;
double L_2 = floor(((double)((double)(((double)((double)L_0)))/(double)(((double)((double)L_1))))));
return (((int32_t)((int32_t)L_2)));
}
}
extern "C" int32_t m1_1873 (t1_1 * __this , int32_t p0, int32_t p1, const MethodInfo* method)
{
{
int32_t L_0 = p0;
int32_t L_1 = p1;
int32_t L_2 = p0;
int32_t L_3 = p1;
int32_t L_4 = m1_1872(NULL, L_2, L_3, NULL);
return ((int32_t)((int32_t)L_0-(int32_t)((int32_t)((int32_t)L_1*(int32_t)L_4))));
}
}
extern "C" int32_t m1_1874 (t1_1 * __this , int32_t* p0, int32_t p1, int32_t p2, const MethodInfo* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = p1;
int32_t L_1 = p2;
int32_t L_2 = m1_1872(NULL, L_0, L_1, NULL);
V_0 = L_2;
int32_t* L_3 = p0;
int32_t L_4 = p1;
int32_t L_5 = p2;
int32_t L_6 = V_0;
*((int32_t*)(L_3)) = (int32_t)((int32_t)((int32_t)L_4-(int32_t)((int32_t)((int32_t)L_5*(int32_t)L_6))));
int32_t L_7 = V_0;
return L_7;
}
}
extern "C" int32_t m1_1875 (t1_1 * __this , t1_140 p0, const MethodInfo* method)
{
{
int64_t L_0 = m1_4873((&p0), NULL);
return ((int32_t)((int32_t)1+(int32_t)(((int32_t)((int32_t)((int64_t)((int64_t)L_0/(int64_t)((int64_t)864000000000LL))))))));
}
}
extern "C" int32_t m1_1876 (t1_1 * __this , int32_t p0, const MethodInfo* method)
{
{
int32_t L_0 = p0;
int32_t L_1 = m1_1873(NULL, L_0, 7, NULL);
return (int32_t)(L_1);
}
}
extern "C" bool m1_1877 (t1_1 * __this , int32_t p0, const MethodInfo* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = p0;
int32_t L_1 = m1_1873(NULL, L_0, 4, NULL);
if (!L_1)
{
goto IL_000e;
}
}
{
return 0;
}
IL_000e:
{
int32_t L_2 = p0;
int32_t L_3 = m1_1873(NULL, L_2, ((int32_t)400), NULL);
V_0 = L_3;
int32_t L_4 = V_0;
if ((((int32_t)L_4) == ((int32_t)((int32_t)100))))
{
goto IL_003d;
}
}
{
int32_t L_5 = V_0;
if ((((int32_t)L_5) == ((int32_t)((int32_t)200))))
{
goto IL_003f;
}
}
{
int32_t L_6 = V_0;
if ((((int32_t)L_6) == ((int32_t)((int32_t)300))))
{
goto IL_0041;
}
}
{
goto IL_0043;
}
IL_003d:
{
return 0;
}
IL_003f:
{
return 0;
}
IL_0041:
{
return 0;
}
IL_0043:
{
return 1;
}
}
extern "C" int32_t m1_1878 (t1_1 * __this , int32_t p0, int32_t p1, int32_t p2, const MethodInfo* method)
{
int32_t V_0 = 0;
int32_t G_B3_0 = 0;
int32_t G_B2_0 = 0;
int32_t G_B4_0 = 0;
int32_t G_B4_1 = 0;
{
V_0 = 0;
int32_t L_0 = V_0;
int32_t L_1 = p2;
V_0 = ((int32_t)((int32_t)L_0+(int32_t)((int32_t)((int32_t)((int32_t)365)*(int32_t)((int32_t)((int32_t)L_1-(int32_t)1))))));
int32_t L_2 = V_0;
int32_t L_3 = p2;
int32_t L_4 = m1_1872(NULL, ((int32_t)((int32_t)L_3-(int32_t)1)), 4, NULL);
V_0 = ((int32_t)((int32_t)L_2+(int32_t)L_4));
int32_t L_5 = V_0;
int32_t L_6 = p2;
int32_t L_7 = m1_1872(NULL, ((int32_t)((int32_t)L_6-(int32_t)1)), ((int32_t)100), NULL);
V_0 = ((int32_t)((int32_t)L_5-(int32_t)L_7));
int32_t L_8 = V_0;
int32_t L_9 = p2;
int32_t L_10 = m1_1872(NULL, ((int32_t)((int32_t)L_9-(int32_t)1)), ((int32_t)400), NULL);
V_0 = ((int32_t)((int32_t)L_8+(int32_t)L_10));
int32_t L_11 = V_0;
int32_t L_12 = p1;
int32_t L_13 = m1_1872(NULL, ((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)367)*(int32_t)L_12))-(int32_t)((int32_t)362))), ((int32_t)12), NULL);
V_0 = ((int32_t)((int32_t)L_11+(int32_t)L_13));
int32_t L_14 = p1;
if ((((int32_t)L_14) <= ((int32_t)2)))
{
goto IL_006b;
}
}
{
int32_t L_15 = V_0;
int32_t L_16 = p2;
bool L_17 = m1_1877(NULL, L_16, NULL);
G_B2_0 = L_15;
if (!L_17)
{
G_B3_0 = L_15;
goto IL_0067;
}
}
{
G_B4_0 = (-1);
G_B4_1 = G_B2_0;
goto IL_0069;
}
IL_0067:
{
G_B4_0 = ((int32_t)-2);
G_B4_1 = G_B3_0;
}
IL_0069:
{
V_0 = ((int32_t)((int32_t)G_B4_1+(int32_t)G_B4_0));
}
IL_006b:
{
int32_t L_18 = V_0;
int32_t L_19 = p0;
V_0 = ((int32_t)((int32_t)L_18+(int32_t)L_19));
int32_t L_20 = V_0;
return L_20;
}
}
extern "C" int32_t m1_1879 (t1_1 * __this , int32_t p0, const MethodInfo* method)
{
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;
int32_t V_5 = 0;
int32_t G_B4_0 = 0;
{
int32_t L_0 = p0;
V_0 = ((int32_t)((int32_t)L_0-(int32_t)1));
int32_t L_1 = V_0;
int32_t L_2 = m1_1874(NULL, (&V_0), L_1, ((int32_t)146097), NULL);
V_1 = L_2;
int32_t L_3 = V_0;
int32_t L_4 = m1_1874(NULL, (&V_0), L_3, ((int32_t)36524), NULL);
V_2 = L_4;
int32_t L_5 = V_0;
int32_t L_6 = m1_1874(NULL, (&V_0), L_5, ((int32_t)1461), NULL);
V_3 = L_6;
int32_t L_7 = V_0;
int32_t L_8 = m1_1872(NULL, L_7, ((int32_t)365), NULL);
V_4 = L_8;
int32_t L_9 = V_1;
int32_t L_10 = V_2;
int32_t L_11 = V_3;
int32_t L_12 = V_4;
V_5 = ((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)400)*(int32_t)L_9))+(int32_t)((int32_t)((int32_t)((int32_t)100)*(int32_t)L_10))))+(int32_t)((int32_t)((int32_t)4*(int32_t)L_11))))+(int32_t)L_12));
int32_t L_13 = V_2;
if ((((int32_t)L_13) == ((int32_t)4)))
{
goto IL_005f;
}
}
{
int32_t L_14 = V_4;
if ((!(((uint32_t)L_14) == ((uint32_t)4))))
{
goto IL_0066;
}
}
IL_005f:
{
int32_t L_15 = V_5;
G_B4_0 = L_15;
goto IL_006a;
}
IL_0066:
{
int32_t L_16 = V_5;
G_B4_0 = ((int32_t)((int32_t)L_16+(int32_t)1));
}
IL_006a:
{
return G_B4_0;
}
}
extern "C" void m1_1880 (t1_1 * __this , int32_t* p0, int32_t* p1, int32_t p2, const MethodInfo* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
{
int32_t* L_0 = p1;
int32_t L_1 = p2;
int32_t L_2 = m1_1879(NULL, L_1, NULL);
*((int32_t*)(L_0)) = (int32_t)L_2;
int32_t L_3 = p2;
int32_t* L_4 = p1;
int32_t L_5 = m1_1878(NULL, 1, 1, (*((int32_t*)L_4)), NULL);
V_0 = ((int32_t)((int32_t)L_3-(int32_t)L_5));
int32_t L_6 = p2;
int32_t* L_7 = p1;
int32_t L_8 = m1_1878(NULL, 1, 3, (*((int32_t*)L_7)), NULL);
if ((((int32_t)L_6) >= ((int32_t)L_8)))
{
goto IL_002a;
}
}
{
V_1 = 0;
goto IL_003f;
}
IL_002a:
{
int32_t* L_9 = p1;
bool L_10 = m1_1877(NULL, (*((int32_t*)L_9)), NULL);
if (!L_10)
{
goto IL_003d;
}
}
{
V_1 = 1;
goto IL_003f;
}
IL_003d:
{
V_1 = 2;
}
IL_003f:
{
int32_t* L_11 = p0;
int32_t L_12 = V_0;
int32_t L_13 = V_1;
int32_t L_14 = m1_1872(NULL, ((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)12)*(int32_t)((int32_t)((int32_t)L_12+(int32_t)L_13))))+(int32_t)((int32_t)373))), ((int32_t)367), NULL);
*((int32_t*)(L_11)) = (int32_t)L_14;
return;
}
}
extern "C" void m1_1881 (t1_1 * __this , int32_t* p0, int32_t* p1, int32_t* p2, int32_t p3, const MethodInfo* method)
{
{
int32_t* L_0 = p1;
int32_t* L_1 = p2;
int32_t L_2 = p3;
m1_1880(NULL, L_0, L_1, L_2, NULL);
int32_t* L_3 = p0;
int32_t L_4 = p3;
int32_t* L_5 = p1;
int32_t* L_6 = p2;
int32_t L_7 = m1_1878(NULL, 1, (*((int32_t*)L_5)), (*((int32_t*)L_6)), NULL);
*((int32_t*)(L_3)) = (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_4-(int32_t)L_7))+(int32_t)1));
return;
}
}
extern "C" int32_t m1_1882 (t1_1 * __this , int32_t p0, const MethodInfo* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
{
int32_t L_0 = p0;
m1_1880(NULL, (&V_0), (&V_1), L_0, NULL);
int32_t L_1 = V_0;
return L_1;
}
}
extern "C" int32_t m1_1883 (t1_1 * __this , int32_t p0, const MethodInfo* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = p0;
m1_1881(NULL, (&V_0), (&V_1), (&V_2), L_0, NULL);
int32_t L_1 = V_0;
return L_1;
}
}
extern "C" int32_t m1_1884 (t1_1 * __this , t1_140 p0, const MethodInfo* method)
{
{
t1_140 L_0 = p0;
int32_t L_1 = m1_1875(NULL, L_0, NULL);
int32_t L_2 = m1_1883(NULL, L_1, NULL);
return L_2;
}
}
extern "C" int32_t m1_1885 (t1_1 * __this , t1_140 p0, const MethodInfo* method)
{
{
t1_140 L_0 = p0;
int32_t L_1 = m1_1875(NULL, L_0, NULL);
int32_t L_2 = m1_1882(NULL, L_1, NULL);
return L_2;
}
}
extern "C" int32_t m1_1886 (t1_1 * __this , t1_140 p0, const MethodInfo* method)
{
{
t1_140 L_0 = p0;
int32_t L_1 = m1_1875(NULL, L_0, NULL);
int32_t L_2 = m1_1879(NULL, L_1, NULL);
return L_2;
}
}
extern "C" void m1_1887 (t1_179 * __this, const MethodInfo* method)
{
{
m1_0(__this, NULL);
return;
}
}
extern TypeInfo* t1_179_TI_var;
extern TypeInfo* t1_185_TI_var;
extern TypeInfo* t1_4_TI_var;
extern TypeInfo* t1_96_TI_var;
extern "C" void m1_1888 (t1_179 * __this, t1_175 * p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_179_TI_var = il2cpp_codegen_type_info_from_index(192);
t1_185_TI_var = il2cpp_codegen_type_info_from_index(196);
t1_4_TI_var = il2cpp_codegen_type_info_from_index(8);
t1_96_TI_var = il2cpp_codegen_type_info_from_index(118);
s_Il2CppMethodIntialized = true;
}
t1_1 * V_0 = {0};
t1_43 * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
t1_43 * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
m1_0(__this, NULL);
t1_175 * L_0 = p0;
int32_t L_1 = (int32_t)VirtFuncInvoker0< int32_t >::Invoke(6 /* System.Int32 System.Globalization.CultureInfo::get_LCID() */, L_0);
__this->f1 = L_1;
IL2CPP_RUNTIME_CLASS_INIT(t1_179_TI_var);
bool L_2 = m1_1891(NULL, NULL);
if (!L_2)
{
goto IL_009f;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(t1_179_TI_var);
t1_1 * L_3 = ((t1_179_SFs*)t1_179_TI_var->static_fields)->f5;
V_0 = L_3;
t1_1 * L_4 = V_0;
m1_4445(NULL, L_4, NULL);
}
IL_0028:
try
{ // begin try (depth: 1)
{
IL2CPP_RUNTIME_CLASS_INIT(t1_179_TI_var);
t1_185 * L_5 = ((t1_179_SFs*)t1_179_TI_var->static_fields)->f4;
if (L_5)
{
goto IL_003c;
}
}
IL_0032:
{
t1_185 * L_6 = (t1_185 *)il2cpp_codegen_object_new (t1_185_TI_var);
m1_1739(L_6, NULL);
IL2CPP_RUNTIME_CLASS_INIT(t1_179_TI_var);
((t1_179_SFs*)t1_179_TI_var->static_fields)->f4 = L_6;
}
IL_003c:
{
IL2CPP_RUNTIME_CLASS_INIT(t1_179_TI_var);
t1_185 * L_7 = ((t1_179_SFs*)t1_179_TI_var->static_fields)->f4;
t1_175 * L_8 = p0;
int32_t L_9 = (int32_t)VirtFuncInvoker0< int32_t >::Invoke(6 /* System.Int32 System.Globalization.CultureInfo::get_LCID() */, L_8);
int32_t L_10 = L_9;
t1_1 * L_11 = Box(t1_4_TI_var, &L_10);
t1_1 * L_12 = (t1_1 *)VirtFuncInvoker1< t1_1 *, t1_1 * >::Invoke(23 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_7, L_11);
__this->f3 = ((t1_96 *)CastclassClass(L_12, t1_96_TI_var));
t1_96 * L_13 = (__this->f3);
if (L_13)
{
goto IL_008e;
}
}
IL_0067:
{
t1_175 * L_14 = p0;
t1_96 * L_15 = (t1_96 *)il2cpp_codegen_object_new (t1_96_TI_var);
m1_1035(L_15, L_14, NULL);
__this->f3 = L_15;
IL2CPP_RUNTIME_CLASS_INIT(t1_179_TI_var);
t1_185 * L_16 = ((t1_179_SFs*)t1_179_TI_var->static_fields)->f4;
t1_175 * L_17 = p0;
int32_t L_18 = (int32_t)VirtFuncInvoker0< int32_t >::Invoke(6 /* System.Int32 System.Globalization.CultureInfo::get_LCID() */, L_17);
int32_t L_19 = L_18;
t1_1 * L_20 = Box(t1_4_TI_var, &L_19);
t1_96 * L_21 = (__this->f3);
VirtActionInvoker2< t1_1 *, t1_1 * >::Invoke(24 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_16, L_20, L_21);
}
IL_008e:
{
IL2CPP_LEAVE(0x9A, FINALLY_0093);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (t1_43 *)e.ex;
goto FINALLY_0093;
}
FINALLY_0093:
{ // begin finally (depth: 1)
t1_1 * L_22 = V_0;
m1_4446(NULL, L_22, NULL);
IL2CPP_END_FINALLY(147)
} // end finally (depth: 1)
IL2CPP_CLEANUP(147)
{
IL2CPP_JUMP_TBL(0x9A, IL_009a)
IL2CPP_RETHROW_IF_UNHANDLED(t1_43 *)
}
IL_009a:
{
goto IL_00b7;
}
IL_009f:
{
t1_175 * L_23 = p0;
t1_18* L_24 = m1_1931(L_23, NULL);
__this->f2 = L_24;
t1_18* L_25 = (__this->f2);
m1_1892(__this, L_25, NULL);
}
IL_00b7:
{
return;
}
}
extern TypeInfo* t1_18_TI_var;
extern TypeInfo* t1_87_TI_var;
extern TypeInfo* t1_179_TI_var;
extern TypeInfo* t1_1_TI_var;
extern Il2CppCodeGenString* _stringLiteral590;
extern Il2CppCodeGenString* _stringLiteral254;
extern "C" void m1_1889 (t1_1 * __this , const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_18_TI_var = il2cpp_codegen_type_info_from_index(11);
t1_87_TI_var = il2cpp_codegen_type_info_from_index(108);
t1_179_TI_var = il2cpp_codegen_type_info_from_index(192);
t1_1_TI_var = il2cpp_codegen_type_info_from_index(0);
_stringLiteral590 = il2cpp_codegen_string_literal_from_index(590);
_stringLiteral254 = il2cpp_codegen_string_literal_from_index(254);
s_Il2CppMethodIntialized = true;
}
int32_t G_B3_0 = 0;
{
t1_18* L_0 = m1_4981(NULL, _stringLiteral590, NULL);
IL2CPP_RUNTIME_CLASS_INIT(t1_18_TI_var);
bool L_1 = m1_457(NULL, L_0, _stringLiteral254, NULL);
if (!L_1)
{
goto IL_0020;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(t1_87_TI_var);
bool L_2 = m1_1027(NULL, NULL);
G_B3_0 = ((int32_t)(L_2));
goto IL_0021;
}
IL_0020:
{
G_B3_0 = 0;
}
IL_0021:
{
((t1_179_SFs*)t1_179_TI_var->static_fields)->f0 = G_B3_0;
t1_1 * L_3 = (t1_1 *)il2cpp_codegen_object_new (t1_1_TI_var);
m1_0(L_3, NULL);
((t1_179_SFs*)t1_179_TI_var->static_fields)->f5 = L_3;
return;
}
}
extern TypeInfo* t1_179_TI_var;
extern TypeInfo* t1_175_TI_var;
extern TypeInfo* t1_96_TI_var;
extern TypeInfo* t1_1_TI_var;
extern "C" void m1_1890 (t1_179 * __this, t1_1 * p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_179_TI_var = il2cpp_codegen_type_info_from_index(192);
t1_175_TI_var = il2cpp_codegen_type_info_from_index(28);
t1_96_TI_var = il2cpp_codegen_type_info_from_index(118);
t1_1_TI_var = il2cpp_codegen_type_info_from_index(0);
s_Il2CppMethodIntialized = true;
}
t1_43 * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
t1_43 * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
IL2CPP_RUNTIME_CLASS_INIT(t1_179_TI_var);
bool L_0 = m1_1891(NULL, NULL);
if (!L_0)
{
goto IL_0025;
}
}
{
int32_t L_1 = (__this->f1);
t1_175 * L_2 = (t1_175 *)il2cpp_codegen_object_new (t1_175_TI_var);
m1_1916(L_2, L_1, NULL);
t1_96 * L_3 = (t1_96 *)il2cpp_codegen_object_new (t1_96_TI_var);
m1_1035(L_3, L_2, NULL);
__this->f3 = L_3;
goto IL_003c;
}
IL_0025:
try
{ // begin try (depth: 1)
t1_18* L_4 = (__this->f2);
m1_1892(__this, L_4, NULL);
goto IL_003c;
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (t1_43 *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (t1_1_TI_var, e.ex->object.klass))
goto CATCH_0036;
throw e;
}
CATCH_0036:
{ // begin catch(System.Object)
goto IL_003c;
} // end catch (depth: 1)
IL_003c:
{
return;
}
}
extern TypeInfo* t1_179_TI_var;
extern "C" bool m1_1891 (t1_1 * __this , const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_179_TI_var = il2cpp_codegen_type_info_from_index(192);
s_Il2CppMethodIntialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(t1_179_TI_var);
bool L_0 = ((t1_179_SFs*)t1_179_TI_var->static_fields)->f0;
return L_0;
}
}
extern "C" void m1_1892 (t1_179 * __this, t1_18* p0, const MethodInfo* method)
{
using namespace il2cpp::icalls;
typedef void (*m1_1892_ftn) (t1_179 *, t1_18*);
((m1_1892_ftn)mscorlib::System::Globalization::CompareInfo::construct_compareinfo) (__this, p0);
}
extern "C" void m1_1893 (t1_179 * __this, const MethodInfo* method)
{
using namespace il2cpp::icalls;
typedef void (*m1_1893_ftn) (t1_179 *);
((m1_1893_ftn)mscorlib::System::Globalization::CompareInfo::free_internal_collator) (__this);
}
extern "C" int32_t m1_1894 (t1_179 * __this, t1_18* p0, int32_t p1, int32_t p2, t1_18* p3, int32_t p4, int32_t p5, int32_t p6, const MethodInfo* method)
{
using namespace il2cpp::icalls;
typedef int32_t (*m1_1894_ftn) (t1_179 *, t1_18*, int32_t, int32_t, t1_18*, int32_t, int32_t, int32_t);
return ((m1_1894_ftn)mscorlib::System::Globalization::CompareInfo::internal_compare) (__this, p0, p1, p2, p3, p4, p5, p6);
}
extern "C" void m1_1895 (t1_179 * __this, t1_1 * p0, t1_18* p1, int32_t p2, const MethodInfo* method)
{
using namespace il2cpp::icalls;
typedef void (*m1_1895_ftn) (t1_179 *, t1_1 *, t1_18*, int32_t);
((m1_1895_ftn)mscorlib::System::Globalization::CompareInfo::assign_sortkey) (__this, p0, p1, p2);
}
extern "C" int32_t m1_1896 (t1_179 * __this, t1_18* p0, int32_t p1, int32_t p2, t1_18* p3, int32_t p4, bool p5, const MethodInfo* method)
{
using namespace il2cpp::icalls;
typedef int32_t (*m1_1896_ftn) (t1_179 *, t1_18*, int32_t, int32_t, t1_18*, int32_t, bool);
return ((m1_1896_ftn)mscorlib::System::Globalization::CompareInfo::internal_index) (__this, p0, p1, p2, p3, p4, p5);
}
extern "C" void m1_1897 (t1_179 * __this, const MethodInfo* method)
{
t1_43 * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
t1_43 * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
IL_0000:
try
{ // begin try (depth: 1)
m1_1893(__this, NULL);
IL2CPP_LEAVE(0x12, FINALLY_000b);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (t1_43 *)e.ex;
goto FINALLY_000b;
}
FINALLY_000b:
{ // begin finally (depth: 1)
m1_3(__this, NULL);
IL2CPP_END_FINALLY(11)
} // end finally (depth: 1)
IL2CPP_CLEANUP(11)
{
IL2CPP_JUMP_TBL(0x12, IL_0012)
IL2CPP_RETHROW_IF_UNHANDLED(t1_43 *)
}
IL_0012:
{
return;
}
}
extern "C" int32_t m1_1898 (t1_179 * __this, t1_18* p0, int32_t p1, int32_t p2, t1_18* p3, int32_t p4, int32_t p5, int32_t p6, const MethodInfo* method)
{
{
t1_96 * L_0 = (__this->f3);
t1_18* L_1 = p0;
int32_t L_2 = p1;
int32_t L_3 = p2;
t1_18* L_4 = p3;
int32_t L_5 = p4;
int32_t L_6 = p5;
int32_t L_7 = p6;
int32_t L_8 = m1_1061(L_0, L_1, L_2, L_3, L_4, L_5, L_6, L_7, NULL);
return L_8;
}
}
extern TypeInfo* t1_179_TI_var;
extern "C" int32_t m1_1899 (t1_179 * __this, t1_18* p0, int32_t p1, int32_t p2, t1_18* p3, int32_t p4, int32_t p5, int32_t p6, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_179_TI_var = il2cpp_codegen_type_info_from_index(192);
s_Il2CppMethodIntialized = true;
}
int32_t G_B3_0 = 0;
{
IL2CPP_RUNTIME_CLASS_INIT(t1_179_TI_var);
bool L_0 = m1_1891(NULL, NULL);
if (!L_0)
{
goto IL_0020;
}
}
{
t1_18* L_1 = p0;
int32_t L_2 = p1;
int32_t L_3 = p2;
t1_18* L_4 = p3;
int32_t L_5 = p4;
int32_t L_6 = p5;
int32_t L_7 = p6;
int32_t L_8 = m1_1898(__this, L_1, L_2, L_3, L_4, L_5, L_6, L_7, NULL);
G_B3_0 = L_8;
goto IL_0031;
}
IL_0020:
{
t1_18* L_9 = p0;
int32_t L_10 = p1;
int32_t L_11 = p2;
t1_18* L_12 = p3;
int32_t L_13 = p4;
int32_t L_14 = p5;
int32_t L_15 = p6;
int32_t L_16 = m1_1894(__this, L_9, L_10, L_11, L_12, L_13, L_14, L_15, NULL);
G_B3_0 = L_16;
}
IL_0031:
{
return G_B3_0;
}
}
extern "C" int32_t m1_1900 (t1_179 * __this, t1_18* p0, t1_18* p1, const MethodInfo* method)
{
{
t1_18* L_0 = p0;
t1_18* L_1 = p1;
int32_t L_2 = (int32_t)VirtFuncInvoker3< int32_t, t1_18*, t1_18*, int32_t >::Invoke(6 /* System.Int32 System.Globalization.CompareInfo::Compare(System.String,System.String,System.Globalization.CompareOptions) */, __this, L_0, L_1, 0);
return L_2;
}
}
extern TypeInfo* t1_653_TI_var;
extern Il2CppCodeGenString* _stringLiteral591;
extern "C" int32_t m1_1901 (t1_179 * __this, t1_18* p0, t1_18* p1, int32_t p2, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_653_TI_var = il2cpp_codegen_type_info_from_index(4);
_stringLiteral591 = il2cpp_codegen_string_literal_from_index(591);
s_Il2CppMethodIntialized = true;
}
{
int32_t L_0 = p2;
int32_t L_1 = p2;
if ((((int32_t)((int32_t)((int32_t)L_0&(int32_t)((int32_t)1879048223)))) == ((int32_t)L_1)))
{
goto IL_0018;
}
}
{
t1_653 * L_2 = (t1_653 *)il2cpp_codegen_object_new (t1_653_TI_var);
m1_4561(L_2, _stringLiteral591, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_2);
}
IL_0018:
{
t1_18* L_3 = p0;
if (L_3)
{
goto IL_0028;
}
}
{
t1_18* L_4 = p1;
if (L_4)
{
goto IL_0026;
}
}
{
return 0;
}
IL_0026:
{
return (-1);
}
IL_0028:
{
t1_18* L_5 = p1;
if (L_5)
{
goto IL_0030;
}
}
{
return 1;
}
IL_0030:
{
t1_18* L_6 = p0;
int32_t L_7 = m1_430(L_6, NULL);
if (L_7)
{
goto IL_0048;
}
}
{
t1_18* L_8 = p1;
int32_t L_9 = m1_430(L_8, NULL);
if (L_9)
{
goto IL_0048;
}
}
{
return 0;
}
IL_0048:
{
t1_18* L_10 = p0;
t1_18* L_11 = p0;
int32_t L_12 = m1_430(L_11, NULL);
t1_18* L_13 = p1;
t1_18* L_14 = p1;
int32_t L_15 = m1_430(L_14, NULL);
int32_t L_16 = p2;
int32_t L_17 = m1_1899(__this, L_10, 0, L_12, L_13, 0, L_15, L_16, NULL);
return L_17;
}
}
extern TypeInfo* t1_653_TI_var;
extern TypeInfo* t1_702_TI_var;
extern Il2CppCodeGenString* _stringLiteral591;
extern Il2CppCodeGenString* _stringLiteral592;
extern Il2CppCodeGenString* _stringLiteral593;
extern Il2CppCodeGenString* _stringLiteral594;
extern Il2CppCodeGenString* _stringLiteral595;
extern Il2CppCodeGenString* _stringLiteral596;
extern "C" int32_t m1_1902 (t1_179 * __this, t1_18* p0, int32_t p1, int32_t p2, t1_18* p3, int32_t p4, int32_t p5, int32_t p6, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_653_TI_var = il2cpp_codegen_type_info_from_index(4);
t1_702_TI_var = il2cpp_codegen_type_info_from_index(27);
_stringLiteral591 = il2cpp_codegen_string_literal_from_index(591);
_stringLiteral592 = il2cpp_codegen_string_literal_from_index(592);
_stringLiteral593 = il2cpp_codegen_string_literal_from_index(593);
_stringLiteral594 = il2cpp_codegen_string_literal_from_index(594);
_stringLiteral595 = il2cpp_codegen_string_literal_from_index(595);
_stringLiteral596 = il2cpp_codegen_string_literal_from_index(596);
s_Il2CppMethodIntialized = true;
}
{
int32_t L_0 = p6;
int32_t L_1 = p6;
if ((((int32_t)((int32_t)((int32_t)L_0&(int32_t)((int32_t)1879048223)))) == ((int32_t)L_1)))
{
goto IL_001a;
}
}
{
t1_653 * L_2 = (t1_653 *)il2cpp_codegen_object_new (t1_653_TI_var);
m1_4561(L_2, _stringLiteral591, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_2);
}
IL_001a:
{
t1_18* L_3 = p0;
if (L_3)
{
goto IL_002b;
}
}
{
t1_18* L_4 = p3;
if (L_4)
{
goto IL_0029;
}
}
{
return 0;
}
IL_0029:
{
return (-1);
}
IL_002b:
{
t1_18* L_5 = p3;
if (L_5)
{
goto IL_0034;
}
}
{
return 1;
}
IL_0034:
{
t1_18* L_6 = p0;
int32_t L_7 = m1_430(L_6, NULL);
if (!L_7)
{
goto IL_0051;
}
}
{
int32_t L_8 = p1;
t1_18* L_9 = p0;
int32_t L_10 = m1_430(L_9, NULL);
if ((((int32_t)L_8) == ((int32_t)L_10)))
{
goto IL_0051;
}
}
{
int32_t L_11 = p2;
if (L_11)
{
goto IL_0074;
}
}
IL_0051:
{
t1_18* L_12 = p3;
int32_t L_13 = m1_430(L_12, NULL);
if (!L_13)
{
goto IL_0072;
}
}
{
int32_t L_14 = p4;
t1_18* L_15 = p3;
int32_t L_16 = m1_430(L_15, NULL);
if ((((int32_t)L_14) == ((int32_t)L_16)))
{
goto IL_0072;
}
}
{
int32_t L_17 = p5;
if (L_17)
{
goto IL_0074;
}
}
IL_0072:
{
return 0;
}
IL_0074:
{
int32_t L_18 = p1;
if ((((int32_t)L_18) < ((int32_t)0)))
{
goto IL_0092;
}
}
{
int32_t L_19 = p2;
if ((((int32_t)L_19) < ((int32_t)0)))
{
goto IL_0092;
}
}
{
int32_t L_20 = p4;
if ((((int32_t)L_20) < ((int32_t)0)))
{
goto IL_0092;
}
}
{
int32_t L_21 = p5;
if ((((int32_t)L_21) >= ((int32_t)0)))
{
goto IL_009d;
}
}
IL_0092:
{
t1_702 * L_22 = (t1_702 *)il2cpp_codegen_object_new (t1_702_TI_var);
m1_4574(L_22, _stringLiteral592, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_22);
}
IL_009d:
{
int32_t L_23 = p1;
t1_18* L_24 = p0;
int32_t L_25 = m1_430(L_24, NULL);
if ((((int32_t)L_23) <= ((int32_t)L_25)))
{
goto IL_00b4;
}
}
{
t1_702 * L_26 = (t1_702 *)il2cpp_codegen_object_new (t1_702_TI_var);
m1_4574(L_26, _stringLiteral593, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_26);
}
IL_00b4:
{
int32_t L_27 = p4;
t1_18* L_28 = p3;
int32_t L_29 = m1_430(L_28, NULL);
if ((((int32_t)L_27) <= ((int32_t)L_29)))
{
goto IL_00cd;
}
}
{
t1_702 * L_30 = (t1_702 *)il2cpp_codegen_object_new (t1_702_TI_var);
m1_4574(L_30, _stringLiteral594, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_30);
}
IL_00cd:
{
int32_t L_31 = p2;
t1_18* L_32 = p0;
int32_t L_33 = m1_430(L_32, NULL);
int32_t L_34 = p1;
if ((((int32_t)L_31) <= ((int32_t)((int32_t)((int32_t)L_33-(int32_t)L_34)))))
{
goto IL_00e6;
}
}
{
t1_702 * L_35 = (t1_702 *)il2cpp_codegen_object_new (t1_702_TI_var);
m1_4574(L_35, _stringLiteral595, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_35);
}
IL_00e6:
{
int32_t L_36 = p5;
t1_18* L_37 = p3;
int32_t L_38 = m1_430(L_37, NULL);
int32_t L_39 = p4;
if ((((int32_t)L_36) <= ((int32_t)((int32_t)((int32_t)L_38-(int32_t)L_39)))))
{
goto IL_0102;
}
}
{
t1_702 * L_40 = (t1_702 *)il2cpp_codegen_object_new (t1_702_TI_var);
m1_4574(L_40, _stringLiteral596, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_40);
}
IL_0102:
{
t1_18* L_41 = p0;
int32_t L_42 = p1;
int32_t L_43 = p2;
t1_18* L_44 = p3;
int32_t L_45 = p4;
int32_t L_46 = p5;
int32_t L_47 = p6;
int32_t L_48 = m1_1899(__this, L_41, L_42, L_43, L_44, L_45, L_46, L_47, NULL);
return L_48;
}
}
extern TypeInfo* t1_179_TI_var;
extern "C" bool m1_1903 (t1_179 * __this, t1_1 * p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_179_TI_var = il2cpp_codegen_type_info_from_index(192);
s_Il2CppMethodIntialized = true;
}
t1_179 * V_0 = {0};
{
t1_1 * L_0 = p0;
V_0 = ((t1_179 *)IsInstClass(L_0, t1_179_TI_var));
t1_179 * L_1 = V_0;
if (L_1)
{
goto IL_000f;
}
}
{
return 0;
}
IL_000f:
{
t1_179 * L_2 = V_0;
int32_t L_3 = (L_2->f1);
int32_t L_4 = (__this->f1);
return ((((int32_t)L_3) == ((int32_t)L_4))? 1 : 0);
}
}
extern "C" int32_t m1_1904 (t1_179 * __this, const MethodInfo* method)
{
{
int32_t L_0 = m1_1915(__this, NULL);
return L_0;
}
}
extern TypeInfo* t1_653_TI_var;
extern TypeInfo* t1_179_TI_var;
extern TypeInfo* t1_100_TI_var;
extern Il2CppCodeGenString* _stringLiteral597;
extern Il2CppCodeGenString* _stringLiteral591;
extern "C" t1_100 * m1_1905 (t1_179 * __this, t1_18* p0, int32_t p1, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_653_TI_var = il2cpp_codegen_type_info_from_index(4);
t1_179_TI_var = il2cpp_codegen_type_info_from_index(192);
t1_100_TI_var = il2cpp_codegen_type_info_from_index(122);
_stringLiteral597 = il2cpp_codegen_string_literal_from_index(597);
_stringLiteral591 = il2cpp_codegen_string_literal_from_index(591);
s_Il2CppMethodIntialized = true;
}
t1_100 * V_0 = {0};
int32_t V_1 = {0};
{
int32_t L_0 = p1;
V_1 = L_0;
int32_t L_1 = V_1;
if ((((int32_t)L_1) == ((int32_t)((int32_t)268435456))))
{
goto IL_001d;
}
}
{
int32_t L_2 = V_1;
if ((((int32_t)L_2) == ((int32_t)((int32_t)1073741824))))
{
goto IL_001d;
}
}
{
goto IL_002d;
}
IL_001d:
{
t1_653 * L_3 = (t1_653 *)il2cpp_codegen_object_new (t1_653_TI_var);
m1_4563(L_3, _stringLiteral597, _stringLiteral591, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_3);
}
IL_002d:
{
IL2CPP_RUNTIME_CLASS_INIT(t1_179_TI_var);
bool L_4 = m1_1891(NULL, NULL);
if (!L_4)
{
goto IL_0045;
}
}
{
t1_96 * L_5 = (__this->f3);
t1_18* L_6 = p0;
int32_t L_7 = p1;
t1_100 * L_8 = m1_1053(L_5, L_6, L_7, NULL);
return L_8;
}
IL_0045:
{
int32_t L_9 = (__this->f1);
t1_18* L_10 = p0;
int32_t L_11 = p1;
t1_100 * L_12 = (t1_100 *)il2cpp_codegen_object_new (t1_100_TI_var);
m1_1087(L_12, L_9, L_10, L_11, NULL);
V_0 = L_12;
t1_100 * L_13 = V_0;
t1_18* L_14 = p0;
int32_t L_15 = p1;
m1_1895(__this, L_13, L_14, L_15, NULL);
t1_100 * L_16 = V_0;
return L_16;
}
}
extern "C" int32_t m1_1906 (t1_179 * __this, t1_18* p0, t1_18* p1, int32_t p2, int32_t p3, const MethodInfo* method)
{
{
t1_18* L_0 = p0;
t1_18* L_1 = p1;
int32_t L_2 = p2;
int32_t L_3 = p3;
int32_t L_4 = (int32_t)VirtFuncInvoker5< int32_t, t1_18*, t1_18*, int32_t, int32_t, int32_t >::Invoke(10 /* System.Int32 System.Globalization.CompareInfo::IndexOf(System.String,System.String,System.Int32,System.Int32,System.Globalization.CompareOptions) */, __this, L_0, L_1, L_2, L_3, 0);
return L_4;
}
}
extern "C" int32_t m1_1907 (t1_179 * __this, t1_18* p0, int32_t p1, int32_t p2, t1_18* p3, int32_t p4, bool p5, const MethodInfo* method)
{
int32_t G_B3_0 = 0;
{
bool L_0 = p5;
if (!L_0)
{
goto IL_001e;
}
}
{
t1_96 * L_1 = (__this->f3);
t1_18* L_2 = p0;
t1_18* L_3 = p3;
int32_t L_4 = p1;
int32_t L_5 = p2;
int32_t L_6 = p4;
int32_t L_7 = m1_1072(L_1, L_2, L_3, L_4, L_5, L_6, NULL);
G_B3_0 = L_7;
goto IL_0030;
}
IL_001e:
{
t1_96 * L_8 = (__this->f3);
t1_18* L_9 = p0;
t1_18* L_10 = p3;
int32_t L_11 = p1;
int32_t L_12 = p2;
int32_t L_13 = p4;
int32_t L_14 = m1_1077(L_8, L_9, L_10, L_11, L_12, L_13, NULL);
G_B3_0 = L_14;
}
IL_0030:
{
return G_B3_0;
}
}
extern TypeInfo* t1_179_TI_var;
extern "C" int32_t m1_1908 (t1_179 * __this, t1_18* p0, int32_t p1, int32_t p2, t1_18* p3, int32_t p4, bool p5, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_179_TI_var = il2cpp_codegen_type_info_from_index(192);
s_Il2CppMethodIntialized = true;
}
int32_t G_B5_0 = 0;
{
IL2CPP_RUNTIME_CLASS_INIT(t1_179_TI_var);
bool L_0 = m1_1891(NULL, NULL);
if (!L_0)
{
goto IL_0031;
}
}
{
bool L_1 = p5;
if (!L_1)
{
goto IL_001d;
}
}
{
int32_t L_2 = p4;
if ((((int32_t)L_2) == ((int32_t)((int32_t)1073741824))))
{
goto IL_0031;
}
}
IL_001d:
{
t1_18* L_3 = p0;
int32_t L_4 = p1;
int32_t L_5 = p2;
t1_18* L_6 = p3;
int32_t L_7 = p4;
bool L_8 = p5;
int32_t L_9 = m1_1907(__this, L_3, L_4, L_5, L_6, L_7, L_8, NULL);
G_B5_0 = L_9;
goto IL_0040;
}
IL_0031:
{
t1_18* L_10 = p0;
int32_t L_11 = p1;
int32_t L_12 = p2;
t1_18* L_13 = p3;
int32_t L_14 = p4;
bool L_15 = p5;
int32_t L_16 = m1_1896(__this, L_10, L_11, L_12, L_13, L_14, L_15, NULL);
G_B5_0 = L_16;
}
IL_0040:
{
return G_B5_0;
}
}
extern TypeInfo* t1_701_TI_var;
extern TypeInfo* t1_702_TI_var;
extern TypeInfo* t1_653_TI_var;
extern Il2CppCodeGenString* _stringLiteral598;
extern Il2CppCodeGenString* _stringLiteral52;
extern Il2CppCodeGenString* _stringLiteral43;
extern Il2CppCodeGenString* _stringLiteral40;
extern Il2CppCodeGenString* _stringLiteral591;
extern "C" int32_t m1_1909 (t1_179 * __this, t1_18* p0, t1_18* p1, int32_t p2, int32_t p3, int32_t p4, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_701_TI_var = il2cpp_codegen_type_info_from_index(2);
t1_702_TI_var = il2cpp_codegen_type_info_from_index(27);
t1_653_TI_var = il2cpp_codegen_type_info_from_index(4);
_stringLiteral598 = il2cpp_codegen_string_literal_from_index(598);
_stringLiteral52 = il2cpp_codegen_string_literal_from_index(52);
_stringLiteral43 = il2cpp_codegen_string_literal_from_index(43);
_stringLiteral40 = il2cpp_codegen_string_literal_from_index(40);
_stringLiteral591 = il2cpp_codegen_string_literal_from_index(591);
s_Il2CppMethodIntialized = true;
}
{
t1_18* L_0 = p0;
if (L_0)
{
goto IL_0011;
}
}
{
t1_701 * L_1 = (t1_701 *)il2cpp_codegen_object_new (t1_701_TI_var);
m1_4570(L_1, _stringLiteral598, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_1);
}
IL_0011:
{
t1_18* L_2 = p1;
if (L_2)
{
goto IL_0022;
}
}
{
t1_701 * L_3 = (t1_701 *)il2cpp_codegen_object_new (t1_701_TI_var);
m1_4570(L_3, _stringLiteral52, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_3);
}
IL_0022:
{
int32_t L_4 = p2;
if ((((int32_t)L_4) >= ((int32_t)0)))
{
goto IL_0034;
}
}
{
t1_702 * L_5 = (t1_702 *)il2cpp_codegen_object_new (t1_702_TI_var);
m1_4574(L_5, _stringLiteral43, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_5);
}
IL_0034:
{
int32_t L_6 = p3;
if ((((int32_t)L_6) < ((int32_t)0)))
{
goto IL_004b;
}
}
{
t1_18* L_7 = p0;
int32_t L_8 = m1_430(L_7, NULL);
int32_t L_9 = p2;
int32_t L_10 = p3;
if ((((int32_t)((int32_t)((int32_t)L_8-(int32_t)L_9))) >= ((int32_t)L_10)))
{
goto IL_0056;
}
}
IL_004b:
{
t1_702 * L_11 = (t1_702 *)il2cpp_codegen_object_new (t1_702_TI_var);
m1_4574(L_11, _stringLiteral40, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_11);
}
IL_0056:
{
int32_t L_12 = p4;
int32_t L_13 = p4;
if ((((int32_t)((int32_t)((int32_t)L_12&(int32_t)((int32_t)1342177311)))) == ((int32_t)L_13)))
{
goto IL_0070;
}
}
{
t1_653 * L_14 = (t1_653 *)il2cpp_codegen_object_new (t1_653_TI_var);
m1_4561(L_14, _stringLiteral591, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_14);
}
IL_0070:
{
t1_18* L_15 = p1;
int32_t L_16 = m1_430(L_15, NULL);
if (L_16)
{
goto IL_007d;
}
}
{
int32_t L_17 = p2;
return L_17;
}
IL_007d:
{
int32_t L_18 = p3;
if (L_18)
{
goto IL_0086;
}
}
{
return (-1);
}
IL_0086:
{
t1_18* L_19 = p0;
int32_t L_20 = p2;
int32_t L_21 = p3;
t1_18* L_22 = p1;
int32_t L_23 = p4;
int32_t L_24 = m1_1908(__this, L_19, L_20, L_21, L_22, L_23, 1, NULL);
return L_24;
}
}
extern TypeInfo* t1_701_TI_var;
extern TypeInfo* t1_179_TI_var;
extern Il2CppCodeGenString* _stringLiteral598;
extern Il2CppCodeGenString* _stringLiteral599;
extern "C" bool m1_1910 (t1_179 * __this, t1_18* p0, t1_18* p1, int32_t p2, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_701_TI_var = il2cpp_codegen_type_info_from_index(2);
t1_179_TI_var = il2cpp_codegen_type_info_from_index(192);
_stringLiteral598 = il2cpp_codegen_string_literal_from_index(598);
_stringLiteral599 = il2cpp_codegen_string_literal_from_index(599);
s_Il2CppMethodIntialized = true;
}
{
t1_18* L_0 = p0;
if (L_0)
{
goto IL_0011;
}
}
{
t1_701 * L_1 = (t1_701 *)il2cpp_codegen_object_new (t1_701_TI_var);
m1_4570(L_1, _stringLiteral598, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_1);
}
IL_0011:
{
t1_18* L_2 = p1;
if (L_2)
{
goto IL_0022;
}
}
{
t1_701 * L_3 = (t1_701 *)il2cpp_codegen_object_new (t1_701_TI_var);
m1_4570(L_3, _stringLiteral599, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_3);
}
IL_0022:
{
IL2CPP_RUNTIME_CLASS_INIT(t1_179_TI_var);
bool L_4 = m1_1891(NULL, NULL);
if (!L_4)
{
goto IL_003b;
}
}
{
t1_96 * L_5 = (__this->f3);
t1_18* L_6 = p0;
t1_18* L_7 = p1;
int32_t L_8 = p2;
bool L_9 = m1_1066(L_5, L_6, L_7, L_8, NULL);
return L_9;
}
IL_003b:
{
t1_18* L_10 = p0;
int32_t L_11 = m1_430(L_10, NULL);
t1_18* L_12 = p1;
int32_t L_13 = m1_430(L_12, NULL);
if ((((int32_t)L_11) >= ((int32_t)L_13)))
{
goto IL_004e;
}
}
{
return 0;
}
IL_004e:
{
t1_18* L_14 = p0;
t1_18* L_15 = p1;
int32_t L_16 = m1_430(L_15, NULL);
t1_18* L_17 = p1;
t1_18* L_18 = p1;
int32_t L_19 = m1_430(L_18, NULL);
int32_t L_20 = p2;
int32_t L_21 = (int32_t)VirtFuncInvoker7< int32_t, t1_18*, int32_t, int32_t, t1_18*, int32_t, int32_t, int32_t >::Invoke(7 /* System.Int32 System.Globalization.CompareInfo::Compare(System.String,System.Int32,System.Int32,System.String,System.Int32,System.Int32,System.Globalization.CompareOptions) */, __this, L_14, 0, L_16, L_17, 0, L_19, L_20);
return ((((int32_t)L_21) == ((int32_t)0))? 1 : 0);
}
}
extern TypeInfo* t1_701_TI_var;
extern TypeInfo* t1_179_TI_var;
extern Il2CppCodeGenString* _stringLiteral598;
extern Il2CppCodeGenString* _stringLiteral600;
extern "C" bool m1_1911 (t1_179 * __this, t1_18* p0, t1_18* p1, int32_t p2, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_701_TI_var = il2cpp_codegen_type_info_from_index(2);
t1_179_TI_var = il2cpp_codegen_type_info_from_index(192);
_stringLiteral598 = il2cpp_codegen_string_literal_from_index(598);
_stringLiteral600 = il2cpp_codegen_string_literal_from_index(600);
s_Il2CppMethodIntialized = true;
}
{
t1_18* L_0 = p0;
if (L_0)
{
goto IL_0011;
}
}
{
t1_701 * L_1 = (t1_701 *)il2cpp_codegen_object_new (t1_701_TI_var);
m1_4570(L_1, _stringLiteral598, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_1);
}
IL_0011:
{
t1_18* L_2 = p1;
if (L_2)
{
goto IL_0022;
}
}
{
t1_701 * L_3 = (t1_701 *)il2cpp_codegen_object_new (t1_701_TI_var);
m1_4570(L_3, _stringLiteral600, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_3);
}
IL_0022:
{
IL2CPP_RUNTIME_CLASS_INIT(t1_179_TI_var);
bool L_4 = m1_1891(NULL, NULL);
if (!L_4)
{
goto IL_003b;
}
}
{
t1_96 * L_5 = (__this->f3);
t1_18* L_6 = p0;
t1_18* L_7 = p1;
int32_t L_8 = p2;
bool L_9 = m1_1069(L_5, L_6, L_7, L_8, NULL);
return L_9;
}
IL_003b:
{
t1_18* L_10 = p0;
int32_t L_11 = m1_430(L_10, NULL);
t1_18* L_12 = p1;
int32_t L_13 = m1_430(L_12, NULL);
if ((((int32_t)L_11) >= ((int32_t)L_13)))
{
goto IL_004e;
}
}
{
return 0;
}
IL_004e:
{
t1_18* L_14 = p0;
t1_18* L_15 = p0;
int32_t L_16 = m1_430(L_15, NULL);
t1_18* L_17 = p1;
int32_t L_18 = m1_430(L_17, NULL);
t1_18* L_19 = p1;
int32_t L_20 = m1_430(L_19, NULL);
t1_18* L_21 = p1;
t1_18* L_22 = p1;
int32_t L_23 = m1_430(L_22, NULL);
int32_t L_24 = p2;
int32_t L_25 = (int32_t)VirtFuncInvoker7< int32_t, t1_18*, int32_t, int32_t, t1_18*, int32_t, int32_t, int32_t >::Invoke(7 /* System.Int32 System.Globalization.CompareInfo::Compare(System.String,System.Int32,System.Int32,System.String,System.Int32,System.Int32,System.Globalization.CompareOptions) */, __this, L_14, ((int32_t)((int32_t)L_16-(int32_t)L_18)), L_20, L_21, 0, L_23, L_24);
return ((((int32_t)L_25) == ((int32_t)0))? 1 : 0);
}
}
extern "C" int32_t m1_1912 (t1_179 * __this, t1_18* p0, t1_18* p1, int32_t p2, int32_t p3, const MethodInfo* method)
{
{
t1_18* L_0 = p0;
t1_18* L_1 = p1;
int32_t L_2 = p2;
int32_t L_3 = p3;
int32_t L_4 = (int32_t)VirtFuncInvoker5< int32_t, t1_18*, t1_18*, int32_t, int32_t, int32_t >::Invoke(14 /* System.Int32 System.Globalization.CompareInfo::LastIndexOf(System.String,System.String,System.Int32,System.Int32,System.Globalization.CompareOptions) */, __this, L_0, L_1, L_2, L_3, 0);
return L_4;
}
}
extern TypeInfo* t1_701_TI_var;
extern TypeInfo* t1_702_TI_var;
extern TypeInfo* t1_653_TI_var;
extern Il2CppCodeGenString* _stringLiteral598;
extern Il2CppCodeGenString* _stringLiteral52;
extern Il2CppCodeGenString* _stringLiteral43;
extern Il2CppCodeGenString* _stringLiteral40;
extern Il2CppCodeGenString* _stringLiteral591;
extern "C" int32_t m1_1913 (t1_179 * __this, t1_18* p0, t1_18* p1, int32_t p2, int32_t p3, int32_t p4, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_701_TI_var = il2cpp_codegen_type_info_from_index(2);
t1_702_TI_var = il2cpp_codegen_type_info_from_index(27);
t1_653_TI_var = il2cpp_codegen_type_info_from_index(4);
_stringLiteral598 = il2cpp_codegen_string_literal_from_index(598);
_stringLiteral52 = il2cpp_codegen_string_literal_from_index(52);
_stringLiteral43 = il2cpp_codegen_string_literal_from_index(43);
_stringLiteral40 = il2cpp_codegen_string_literal_from_index(40);
_stringLiteral591 = il2cpp_codegen_string_literal_from_index(591);
s_Il2CppMethodIntialized = true;
}
int32_t V_0 = 0;
{
t1_18* L_0 = p0;
if (L_0)
{
goto IL_0011;
}
}
{
t1_701 * L_1 = (t1_701 *)il2cpp_codegen_object_new (t1_701_TI_var);
m1_4570(L_1, _stringLiteral598, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_1);
}
IL_0011:
{
t1_18* L_2 = p1;
if (L_2)
{
goto IL_0022;
}
}
{
t1_701 * L_3 = (t1_701 *)il2cpp_codegen_object_new (t1_701_TI_var);
m1_4570(L_3, _stringLiteral52, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_3);
}
IL_0022:
{
int32_t L_4 = p2;
if ((((int32_t)L_4) >= ((int32_t)0)))
{
goto IL_0034;
}
}
{
t1_702 * L_5 = (t1_702 *)il2cpp_codegen_object_new (t1_702_TI_var);
m1_4574(L_5, _stringLiteral43, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_5);
}
IL_0034:
{
int32_t L_6 = p3;
if ((((int32_t)L_6) < ((int32_t)0)))
{
goto IL_0046;
}
}
{
int32_t L_7 = p2;
int32_t L_8 = p3;
if ((((int32_t)((int32_t)((int32_t)L_7-(int32_t)L_8))) >= ((int32_t)(-1))))
{
goto IL_0051;
}
}
IL_0046:
{
t1_702 * L_9 = (t1_702 *)il2cpp_codegen_object_new (t1_702_TI_var);
m1_4574(L_9, _stringLiteral40, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_9);
}
IL_0051:
{
int32_t L_10 = p4;
int32_t L_11 = p4;
if ((((int32_t)((int32_t)((int32_t)L_10&(int32_t)((int32_t)1342177311)))) == ((int32_t)L_11)))
{
goto IL_006b;
}
}
{
t1_653 * L_12 = (t1_653 *)il2cpp_codegen_object_new (t1_653_TI_var);
m1_4561(L_12, _stringLiteral591, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_12);
}
IL_006b:
{
int32_t L_13 = p3;
if (L_13)
{
goto IL_0074;
}
}
{
return (-1);
}
IL_0074:
{
t1_18* L_14 = p1;
int32_t L_15 = m1_430(L_14, NULL);
V_0 = L_15;
int32_t L_16 = V_0;
if (L_16)
{
goto IL_0083;
}
}
{
return 0;
}
IL_0083:
{
t1_18* L_17 = p0;
int32_t L_18 = p2;
int32_t L_19 = p3;
t1_18* L_20 = p1;
int32_t L_21 = p4;
int32_t L_22 = m1_1908(__this, L_17, L_18, L_19, L_20, L_21, 0, NULL);
return L_22;
}
}
extern TypeInfo* t1_4_TI_var;
extern TypeInfo* t1_18_TI_var;
extern Il2CppCodeGenString* _stringLiteral601;
extern "C" t1_18* m1_1914 (t1_179 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_4_TI_var = il2cpp_codegen_type_info_from_index(8);
t1_18_TI_var = il2cpp_codegen_type_info_from_index(11);
_stringLiteral601 = il2cpp_codegen_string_literal_from_index(601);
s_Il2CppMethodIntialized = true;
}
{
int32_t L_0 = (__this->f1);
int32_t L_1 = L_0;
t1_1 * L_2 = Box(t1_4_TI_var, &L_1);
IL2CPP_RUNTIME_CLASS_INIT(t1_18_TI_var);
t1_18* L_3 = m1_418(NULL, _stringLiteral601, L_2, NULL);
return L_3;
}
}
extern "C" int32_t m1_1915 (t1_179 * __this, const MethodInfo* method)
{
{
int32_t L_0 = (__this->f1);
return L_0;
}
}
extern "C" void m1_1916 (t1_175 * __this, int32_t p0, const MethodInfo* method)
{
{
int32_t L_0 = p0;
m1_1917(__this, L_0, 1, NULL);
return;
}
}
extern "C" void m1_1917 (t1_175 * __this, int32_t p0, bool p1, const MethodInfo* method)
{
{
int32_t L_0 = p0;
bool L_1 = p1;
m1_1918(__this, L_0, L_1, 0, NULL);
return;
}
}
extern TypeInfo* t1_702_TI_var;
extern TypeInfo* t1_4_TI_var;
extern TypeInfo* t1_18_TI_var;
extern TypeInfo* t1_653_TI_var;
extern Il2CppCodeGenString* _stringLiteral32;
extern Il2CppCodeGenString* _stringLiteral602;
extern Il2CppCodeGenString* _stringLiteral603;
extern "C" void m1_1918 (t1_175 * __this, int32_t p0, bool p1, bool p2, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_702_TI_var = il2cpp_codegen_type_info_from_index(27);
t1_4_TI_var = il2cpp_codegen_type_info_from_index(8);
t1_18_TI_var = il2cpp_codegen_type_info_from_index(11);
t1_653_TI_var = il2cpp_codegen_type_info_from_index(4);
_stringLiteral32 = il2cpp_codegen_string_literal_from_index(32);
_stringLiteral602 = il2cpp_codegen_string_literal_from_index(602);
_stringLiteral603 = il2cpp_codegen_string_literal_from_index(603);
s_Il2CppMethodIntialized = true;
}
{
m1_0(__this, NULL);
int32_t L_0 = p0;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_001d;
}
}
{
t1_702 * L_1 = (t1_702 *)il2cpp_codegen_object_new (t1_702_TI_var);
m1_4575(L_1, _stringLiteral32, _stringLiteral602, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_1);
}
IL_001d:
{
__this->f33 = 1;
bool L_2 = p2;
__this->f7 = L_2;
bool L_3 = p1;
__this->f13 = L_3;
int32_t L_4 = p0;
if ((!(((uint32_t)L_4) == ((uint32_t)((int32_t)127)))))
{
goto IL_0042;
}
}
{
bool L_5 = p2;
m1_1954(__this, L_5, NULL);
return;
}
IL_0042:
{
int32_t L_6 = p0;
bool L_7 = m1_1947(__this, L_6, NULL);
if (L_7)
{
goto IL_0069;
}
}
{
int32_t L_8 = p0;
int32_t L_9 = L_8;
t1_1 * L_10 = Box(t1_4_TI_var, &L_9);
IL2CPP_RUNTIME_CLASS_INIT(t1_18_TI_var);
t1_18* L_11 = m1_412(NULL, _stringLiteral603, L_10, NULL);
t1_653 * L_12 = (t1_653 *)il2cpp_codegen_object_new (t1_653_TI_var);
m1_4563(L_12, L_11, _stringLiteral32, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_12);
}
IL_0069:
{
return;
}
}
extern TypeInfo* t1_701_TI_var;
extern TypeInfo* t1_18_TI_var;
extern TypeInfo* t1_653_TI_var;
extern Il2CppCodeGenString* _stringLiteral199;
extern Il2CppCodeGenString* _stringLiteral604;
extern Il2CppCodeGenString* _stringLiteral605;
extern "C" void m1_1919 (t1_175 * __this, t1_18* p0, bool p1, bool p2, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_701_TI_var = il2cpp_codegen_type_info_from_index(2);
t1_18_TI_var = il2cpp_codegen_type_info_from_index(11);
t1_653_TI_var = il2cpp_codegen_type_info_from_index(4);
_stringLiteral199 = il2cpp_codegen_string_literal_from_index(199);
_stringLiteral604 = il2cpp_codegen_string_literal_from_index(604);
_stringLiteral605 = il2cpp_codegen_string_literal_from_index(605);
s_Il2CppMethodIntialized = true;
}
{
m1_0(__this, NULL);
t1_18* L_0 = p0;
if (L_0)
{
goto IL_0017;
}
}
{
t1_701 * L_1 = (t1_701 *)il2cpp_codegen_object_new (t1_701_TI_var);
m1_4570(L_1, _stringLiteral199, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_1);
}
IL_0017:
{
__this->f33 = 1;
bool L_2 = p2;
__this->f7 = L_2;
bool L_3 = p1;
__this->f13 = L_3;
t1_18* L_4 = p0;
int32_t L_5 = m1_430(L_4, NULL);
if (L_5)
{
goto IL_003f;
}
}
{
bool L_6 = p2;
m1_1954(__this, L_6, NULL);
return;
}
IL_003f:
{
t1_18* L_7 = p0;
t1_18* L_8 = m1_409(L_7, NULL);
bool L_9 = m1_1946(__this, L_8, NULL);
if (L_9)
{
goto IL_006b;
}
}
{
t1_18* L_10 = p0;
IL2CPP_RUNTIME_CLASS_INIT(t1_18_TI_var);
t1_18* L_11 = m1_421(NULL, _stringLiteral604, L_10, _stringLiteral605, NULL);
t1_653 * L_12 = (t1_653 *)il2cpp_codegen_object_new (t1_653_TI_var);
m1_4563(L_12, L_11, _stringLiteral199, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_12);
}
IL_006b:
{
return;
}
}
extern "C" void m1_1920 (t1_175 * __this, const MethodInfo* method)
{
{
m1_0(__this, NULL);
__this->f33 = 1;
return;
}
}
extern TypeInfo* t1_1_TI_var;
extern TypeInfo* t1_175_TI_var;
extern Il2CppCodeGenString* _stringLiteral606;
extern "C" void m1_1921 (t1_1 * __this , const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_1_TI_var = il2cpp_codegen_type_info_from_index(0);
t1_175_TI_var = il2cpp_codegen_type_info_from_index(28);
_stringLiteral606 = il2cpp_codegen_string_literal_from_index(606);
s_Il2CppMethodIntialized = true;
}
{
t1_1 * L_0 = (t1_1 *)il2cpp_codegen_object_new (t1_1_TI_var);
m1_0(L_0, NULL);
((t1_175_SFs*)t1_175_TI_var->static_fields)->f5 = L_0;
((t1_175_SFs*)t1_175_TI_var->static_fields)->f35 = _stringLiteral606;
t1_175 * L_1 = (t1_175 *)il2cpp_codegen_object_new (t1_175_TI_var);
m1_1918(L_1, ((int32_t)127), 0, 1, NULL);
il2cpp_codegen_memory_barrier();
((t1_175_SFs*)t1_175_TI_var->static_fields)->f4 = L_1;
return;
}
}
extern TypeInfo* t1_175_TI_var;
extern "C" t1_175 * m1_1922 (t1_1 * __this , const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_175_TI_var = il2cpp_codegen_type_info_from_index(28);
s_Il2CppMethodIntialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(t1_175_TI_var);
t1_175 * L_0 = ((t1_175_SFs*)t1_175_TI_var->static_fields)->f4;
il2cpp_codegen_memory_barrier();
return L_0;
}
}
extern TypeInfo* t1_439_TI_var;
extern "C" t1_175 * m1_1923 (t1_1 * __this , const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_439_TI_var = il2cpp_codegen_type_info_from_index(16);
s_Il2CppMethodIntialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(t1_439_TI_var);
t1_439 * L_0 = m1_4467(NULL, NULL);
t1_175 * L_1 = m1_4478(L_0, NULL);
return L_1;
}
}
extern TypeInfo* t1_439_TI_var;
extern "C" t1_175 * m1_1924 (t1_1 * __this , const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_439_TI_var = il2cpp_codegen_type_info_from_index(16);
s_Il2CppMethodIntialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(t1_439_TI_var);
t1_439 * L_0 = m1_4467(NULL, NULL);
t1_175 * L_1 = m1_4479(L_0, NULL);
return L_1;
}
}
extern TypeInfo* t1_175_TI_var;
extern "C" t1_175 * m1_1925 (t1_1 * __this , const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_175_TI_var = il2cpp_codegen_type_info_from_index(28);
s_Il2CppMethodIntialized = true;
}
t1_175 * V_0 = {0};
{
t1_175 * L_0 = (t1_175 *)il2cpp_codegen_object_new (t1_175_TI_var);
m1_1920(L_0, NULL);
V_0 = L_0;
t1_175 * L_1 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(t1_175_TI_var);
bool L_2 = m1_1948(NULL, L_1, NULL);
if (L_2)
{
goto IL_0017;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(t1_175_TI_var);
t1_175 * L_3 = m1_1922(NULL, NULL);
V_0 = L_3;
}
IL_0017:
{
t1_175 * L_4 = V_0;
int32_t L_5 = (L_4->f8);
IL2CPP_RUNTIME_CLASS_INIT(t1_175_TI_var);
((t1_175_SFs*)t1_175_TI_var->static_fields)->f6 = L_5;
t1_175 * L_6 = V_0;
return L_6;
}
}
extern TypeInfo* t1_175_TI_var;
extern "C" t1_175 * m1_1926 (t1_1 * __this , const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_175_TI_var = il2cpp_codegen_type_info_from_index(28);
s_Il2CppMethodIntialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(t1_175_TI_var);
t1_175 * L_0 = m1_1925(NULL, NULL);
return L_0;
}
}
extern "C" int32_t m1_1927 (t1_175 * __this, const MethodInfo* method)
{
{
int32_t L_0 = (__this->f8);
return L_0;
}
}
extern "C" t1_18* m1_1928 (t1_175 * __this, const MethodInfo* method)
{
{
t1_18* L_0 = (__this->f17);
return L_0;
}
}
extern TypeInfo* t1_175_TI_var;
extern "C" t1_175 * m1_1929 (t1_175 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_175_TI_var = il2cpp_codegen_type_info_from_index(28);
s_Il2CppMethodIntialized = true;
}
{
t1_175 * L_0 = (__this->f30);
if (L_0)
{
goto IL_0076;
}
}
{
bool L_1 = (__this->f33);
if (L_1)
{
goto IL_001c;
}
}
{
m1_1945(__this, NULL);
}
IL_001c:
{
int32_t L_2 = (__this->f9);
int32_t L_3 = (__this->f8);
if ((!(((uint32_t)L_2) == ((uint32_t)L_3))))
{
goto IL_002f;
}
}
{
return (t1_175 *)NULL;
}
IL_002f:
{
int32_t L_4 = (__this->f9);
if ((!(((uint32_t)L_4) == ((uint32_t)((int32_t)127)))))
{
goto IL_004c;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(t1_175_TI_var);
t1_175 * L_5 = m1_1922(NULL, NULL);
__this->f30 = L_5;
goto IL_0076;
}
IL_004c:
{
int32_t L_6 = (__this->f8);
if ((!(((uint32_t)L_6) == ((uint32_t)((int32_t)127)))))
{
goto IL_0065;
}
}
{
__this->f30 = __this;
goto IL_0076;
}
IL_0065:
{
int32_t L_7 = (__this->f9);
t1_175 * L_8 = (t1_175 *)il2cpp_codegen_object_new (t1_175_TI_var);
m1_1916(L_8, L_7, NULL);
__this->f30 = L_8;
}
IL_0076:
{
t1_175 * L_9 = (__this->f30);
return L_9;
}
}
extern "C" t1_97 * m1_1930 (t1_175 * __this, const MethodInfo* method)
{
t1_175 * V_0 = {0};
t1_43 * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
t1_43 * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
t1_97 * L_0 = (__this->f16);
il2cpp_codegen_memory_barrier();
if (L_0)
{
goto IL_0053;
}
}
{
bool L_1 = (__this->f33);
if (L_1)
{
goto IL_001e;
}
}
{
m1_1945(__this, NULL);
}
IL_001e:
{
V_0 = __this;
t1_175 * L_2 = V_0;
m1_4445(NULL, L_2, NULL);
}
IL_0026:
try
{ // begin try (depth: 1)
{
t1_97 * L_3 = (__this->f16);
il2cpp_codegen_memory_barrier();
if (L_3)
{
goto IL_0047;
}
}
IL_0033:
{
bool L_4 = (__this->f7);
t1_97 * L_5 = m1_1955(__this, L_4, NULL);
il2cpp_codegen_memory_barrier();
__this->f16 = L_5;
}
IL_0047:
{
IL2CPP_LEAVE(0x53, FINALLY_004c);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (t1_43 *)e.ex;
goto FINALLY_004c;
}
FINALLY_004c:
{ // begin finally (depth: 1)
t1_175 * L_6 = V_0;
m1_4446(NULL, L_6, NULL);
IL2CPP_END_FINALLY(76)
} // end finally (depth: 1)
IL2CPP_CLEANUP(76)
{
IL2CPP_JUMP_TBL(0x53, IL_0053)
IL2CPP_RETHROW_IF_UNHANDLED(t1_43 *)
}
IL_0053:
{
t1_97 * L_7 = (__this->f16);
il2cpp_codegen_memory_barrier();
return L_7;
}
}
extern "C" t1_18* m1_1931 (t1_175 * __this, const MethodInfo* method)
{
{
bool L_0 = (__this->f33);
if (L_0)
{
goto IL_0011;
}
}
{
m1_1945(__this, NULL);
}
IL_0011:
{
t1_18* L_1 = (__this->f23);
return L_1;
}
}
extern TypeInfo* t1_175_TI_var;
extern TypeInfo* t1_216_TI_var;
extern TypeInfo* t1_217_TI_var;
extern "C" t1_1 * m1_1932 (t1_175 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_175_TI_var = il2cpp_codegen_type_info_from_index(28);
t1_216_TI_var = il2cpp_codegen_type_info_from_index(14);
t1_217_TI_var = il2cpp_codegen_type_info_from_index(214);
s_Il2CppMethodIntialized = true;
}
t1_175 * V_0 = {0};
{
bool L_0 = (__this->f33);
if (L_0)
{
goto IL_0011;
}
}
{
m1_1945(__this, NULL);
}
IL_0011:
{
t1_1 * L_1 = m1_6(__this, NULL);
V_0 = ((t1_175 *)CastclassClass(L_1, t1_175_TI_var));
t1_175 * L_2 = V_0;
L_2->f7 = 0;
t1_175 * L_3 = V_0;
L_3->f34 = (t1_83*)NULL;
bool L_4 = (bool)VirtFuncInvoker0< bool >::Invoke(12 /* System.Boolean System.Globalization.CultureInfo::get_IsNeutralCulture() */, __this);
if (L_4)
{
goto IL_0062;
}
}
{
t1_175 * L_5 = V_0;
t1_216 * L_6 = (t1_216 *)VirtFuncInvoker0< t1_216 * >::Invoke(13 /* System.Globalization.NumberFormatInfo System.Globalization.CultureInfo::get_NumberFormat() */, __this);
t1_1 * L_7 = m1_2044(L_6, NULL);
VirtActionInvoker1< t1_216 * >::Invoke(14 /* System.Void System.Globalization.CultureInfo::set_NumberFormat(System.Globalization.NumberFormatInfo) */, L_5, ((t1_216 *)CastclassSealed(L_7, t1_216_TI_var)));
t1_175 * L_8 = V_0;
t1_217 * L_9 = (t1_217 *)VirtFuncInvoker0< t1_217 * >::Invoke(15 /* System.Globalization.DateTimeFormatInfo System.Globalization.CultureInfo::get_DateTimeFormat() */, __this);
t1_1 * L_10 = m1_1963(L_9, NULL);
VirtActionInvoker1< t1_217 * >::Invoke(16 /* System.Void System.Globalization.CultureInfo::set_DateTimeFormat(System.Globalization.DateTimeFormatInfo) */, L_8, ((t1_217 *)CastclassSealed(L_10, t1_217_TI_var)));
}
IL_0062:
{
t1_175 * L_11 = V_0;
return L_11;
}
}
extern TypeInfo* t1_175_TI_var;
extern "C" bool m1_1933 (t1_175 * __this, t1_1 * p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_175_TI_var = il2cpp_codegen_type_info_from_index(28);
s_Il2CppMethodIntialized = true;
}
t1_175 * V_0 = {0};
{
t1_1 * L_0 = p0;
V_0 = ((t1_175 *)IsInstClass(L_0, t1_175_TI_var));
t1_175 * L_1 = V_0;
if (!L_1)
{
goto IL_001c;
}
}
{
t1_175 * L_2 = V_0;
int32_t L_3 = (L_2->f8);
int32_t L_4 = (__this->f8);
return ((((int32_t)L_3) == ((int32_t)L_4))? 1 : 0);
}
IL_001c:
{
return 0;
}
}
extern "C" int32_t m1_1934 (t1_175 * __this, const MethodInfo* method)
{
{
int32_t L_0 = (__this->f8);
return L_0;
}
}
extern "C" t1_18* m1_1935 (t1_175 * __this, const MethodInfo* method)
{
{
t1_18* L_0 = (__this->f17);
return L_0;
}
}
extern TypeInfo* t1_179_TI_var;
extern "C" t1_179 * m1_1936 (t1_175 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_179_TI_var = il2cpp_codegen_type_info_from_index(192);
s_Il2CppMethodIntialized = true;
}
t1_175 * V_0 = {0};
t1_43 * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
t1_43 * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
t1_179 * L_0 = (__this->f26);
il2cpp_codegen_memory_barrier();
if (L_0)
{
goto IL_004d;
}
}
{
bool L_1 = (__this->f33);
if (L_1)
{
goto IL_001e;
}
}
{
m1_1945(__this, NULL);
}
IL_001e:
{
V_0 = __this;
t1_175 * L_2 = V_0;
m1_4445(NULL, L_2, NULL);
}
IL_0026:
try
{ // begin try (depth: 1)
{
t1_179 * L_3 = (__this->f26);
il2cpp_codegen_memory_barrier();
if (L_3)
{
goto IL_0041;
}
}
IL_0033:
{
t1_179 * L_4 = (t1_179 *)il2cpp_codegen_object_new (t1_179_TI_var);
m1_1888(L_4, __this, NULL);
il2cpp_codegen_memory_barrier();
__this->f26 = L_4;
}
IL_0041:
{
IL2CPP_LEAVE(0x4D, FINALLY_0046);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (t1_43 *)e.ex;
goto FINALLY_0046;
}
FINALLY_0046:
{ // begin finally (depth: 1)
t1_175 * L_5 = V_0;
m1_4446(NULL, L_5, NULL);
IL2CPP_END_FINALLY(70)
} // end finally (depth: 1)
IL2CPP_CLEANUP(70)
{
IL2CPP_JUMP_TBL(0x4D, IL_004d)
IL2CPP_RETHROW_IF_UNHANDLED(t1_43 *)
}
IL_004d:
{
t1_179 * L_6 = (__this->f26);
il2cpp_codegen_memory_barrier();
return L_6;
}
}
extern "C" bool m1_1937 (t1_175 * __this, const MethodInfo* method)
{
int32_t G_B7_0 = 0;
{
bool L_0 = (__this->f33);
if (L_0)
{
goto IL_0011;
}
}
{
m1_1945(__this, NULL);
}
IL_0011:
{
int32_t L_1 = (__this->f8);
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)127)))))
{
goto IL_0020;
}
}
{
return 0;
}
IL_0020:
{
int32_t L_2 = (__this->f8);
if (!((int32_t)((int32_t)L_2&(int32_t)((int32_t)65280))))
{
goto IL_003c;
}
}
{
int32_t L_3 = (__this->f10);
G_B7_0 = ((((int32_t)L_3) == ((int32_t)0))? 1 : 0);
goto IL_003d;
}
IL_003c:
{
G_B7_0 = 1;
}
IL_003d:
{
return G_B7_0;
}
}
extern TypeInfo* t1_18_TI_var;
extern TypeInfo* t1_756_TI_var;
extern Il2CppCodeGenString* _stringLiteral607;
extern Il2CppCodeGenString* _stringLiteral608;
extern "C" void m1_1938 (t1_175 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_18_TI_var = il2cpp_codegen_type_info_from_index(11);
t1_756_TI_var = il2cpp_codegen_type_info_from_index(6);
_stringLiteral607 = il2cpp_codegen_string_literal_from_index(607);
_stringLiteral608 = il2cpp_codegen_string_literal_from_index(608);
s_Il2CppMethodIntialized = true;
}
{
bool L_0 = (bool)VirtFuncInvoker0< bool >::Invoke(12 /* System.Boolean System.Globalization.CultureInfo::get_IsNeutralCulture() */, __this);
if (!L_0)
{
goto IL_0026;
}
}
{
t1_18* L_1 = (__this->f17);
IL2CPP_RUNTIME_CLASS_INIT(t1_18_TI_var);
t1_18* L_2 = m1_421(NULL, _stringLiteral607, L_1, _stringLiteral608, NULL);
t1_756 * L_3 = (t1_756 *)il2cpp_codegen_object_new (t1_756_TI_var);
m1_5149(L_3, L_2, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_3);
}
IL_0026:
{
return;
}
}
extern TypeInfo* t1_216_TI_var;
extern "C" t1_216 * m1_1939 (t1_175 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_216_TI_var = il2cpp_codegen_type_info_from_index(14);
s_Il2CppMethodIntialized = true;
}
t1_175 * V_0 = {0};
t1_43 * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
t1_43 * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
bool L_0 = (__this->f33);
if (L_0)
{
goto IL_0011;
}
}
{
m1_1945(__this, NULL);
}
IL_0011:
{
m1_1938(__this, NULL);
t1_216 * L_1 = (__this->f14);
il2cpp_codegen_memory_barrier();
if (L_1)
{
goto IL_005e;
}
}
{
V_0 = __this;
t1_175 * L_2 = V_0;
m1_4445(NULL, L_2, NULL);
}
IL_002c:
try
{ // begin try (depth: 1)
{
t1_216 * L_3 = (__this->f14);
il2cpp_codegen_memory_barrier();
if (L_3)
{
goto IL_0052;
}
}
IL_0039:
{
bool L_4 = (__this->f7);
t1_216 * L_5 = (t1_216 *)il2cpp_codegen_object_new (t1_216_TI_var);
m1_2012(L_5, L_4, NULL);
il2cpp_codegen_memory_barrier();
__this->f14 = L_5;
m1_1953(__this, NULL);
}
IL_0052:
{
IL2CPP_LEAVE(0x5E, FINALLY_0057);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (t1_43 *)e.ex;
goto FINALLY_0057;
}
FINALLY_0057:
{ // begin finally (depth: 1)
t1_175 * L_6 = V_0;
m1_4446(NULL, L_6, NULL);
IL2CPP_END_FINALLY(87)
} // end finally (depth: 1)
IL2CPP_CLEANUP(87)
{
IL2CPP_JUMP_TBL(0x5E, IL_005e)
IL2CPP_RETHROW_IF_UNHANDLED(t1_43 *)
}
IL_005e:
{
t1_216 * L_7 = (__this->f14);
il2cpp_codegen_memory_barrier();
return L_7;
}
}
extern TypeInfo* t1_175_TI_var;
extern TypeInfo* t1_740_TI_var;
extern TypeInfo* t1_701_TI_var;
extern Il2CppCodeGenString* _stringLiteral609;
extern "C" void m1_1940 (t1_175 * __this, t1_216 * p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_175_TI_var = il2cpp_codegen_type_info_from_index(28);
t1_740_TI_var = il2cpp_codegen_type_info_from_index(71);
t1_701_TI_var = il2cpp_codegen_type_info_from_index(2);
_stringLiteral609 = il2cpp_codegen_string_literal_from_index(609);
s_Il2CppMethodIntialized = true;
}
{
bool L_0 = (__this->f33);
if (L_0)
{
goto IL_0011;
}
}
{
m1_1945(__this, NULL);
}
IL_0011:
{
bool L_1 = (__this->f7);
if (!L_1)
{
goto IL_0027;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(t1_175_TI_var);
t1_18* L_2 = ((t1_175_SFs*)t1_175_TI_var->static_fields)->f35;
t1_740 * L_3 = (t1_740 *)il2cpp_codegen_object_new (t1_740_TI_var);
m1_5030(L_3, L_2, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_3);
}
IL_0027:
{
t1_216 * L_4 = p0;
if (L_4)
{
goto IL_0038;
}
}
{
t1_701 * L_5 = (t1_701 *)il2cpp_codegen_object_new (t1_701_TI_var);
m1_4570(L_5, _stringLiteral609, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_5);
}
IL_0038:
{
t1_216 * L_6 = p0;
il2cpp_codegen_memory_barrier();
__this->f14 = L_6;
return;
}
}
extern TypeInfo* t1_217_TI_var;
extern "C" t1_217 * m1_1941 (t1_175 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_217_TI_var = il2cpp_codegen_type_info_from_index(214);
s_Il2CppMethodIntialized = true;
}
t1_175 * V_0 = {0};
t1_43 * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
t1_43 * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
bool L_0 = (__this->f33);
if (L_0)
{
goto IL_0011;
}
}
{
m1_1945(__this, NULL);
}
IL_0011:
{
m1_1938(__this, NULL);
t1_217 * L_1 = (__this->f15);
il2cpp_codegen_memory_barrier();
if (L_1)
{
goto IL_007e;
}
}
{
V_0 = __this;
t1_175 * L_2 = V_0;
m1_4445(NULL, L_2, NULL);
}
IL_002c:
try
{ // begin try (depth: 1)
{
t1_217 * L_3 = (__this->f15);
il2cpp_codegen_memory_barrier();
if (L_3)
{
goto IL_0072;
}
}
IL_0039:
{
bool L_4 = (__this->f7);
t1_217 * L_5 = (t1_217 *)il2cpp_codegen_object_new (t1_217_TI_var);
m1_1957(L_5, L_4, NULL);
il2cpp_codegen_memory_barrier();
__this->f15 = L_5;
m1_1952(__this, NULL);
t1_218* L_6 = (__this->f29);
if (!L_6)
{
goto IL_0072;
}
}
IL_005d:
{
t1_217 * L_7 = (__this->f15);
il2cpp_codegen_memory_barrier();
t1_218* L_8 = (__this->f29);
int32_t L_9 = 0;
m1_1986(L_7, (*(t1_211 **)(t1_211 **)SZArrayLdElema(L_8, L_9, sizeof(t1_211 *))), NULL);
}
IL_0072:
{
IL2CPP_LEAVE(0x7E, FINALLY_0077);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (t1_43 *)e.ex;
goto FINALLY_0077;
}
FINALLY_0077:
{ // begin finally (depth: 1)
t1_175 * L_10 = V_0;
m1_4446(NULL, L_10, NULL);
IL2CPP_END_FINALLY(119)
} // end finally (depth: 1)
IL2CPP_CLEANUP(119)
{
IL2CPP_JUMP_TBL(0x7E, IL_007e)
IL2CPP_RETHROW_IF_UNHANDLED(t1_43 *)
}
IL_007e:
{
t1_217 * L_11 = (__this->f15);
il2cpp_codegen_memory_barrier();
return L_11;
}
}
extern TypeInfo* t1_175_TI_var;
extern TypeInfo* t1_740_TI_var;
extern TypeInfo* t1_701_TI_var;
extern Il2CppCodeGenString* _stringLiteral610;
extern "C" void m1_1942 (t1_175 * __this, t1_217 * p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_175_TI_var = il2cpp_codegen_type_info_from_index(28);
t1_740_TI_var = il2cpp_codegen_type_info_from_index(71);
t1_701_TI_var = il2cpp_codegen_type_info_from_index(2);
_stringLiteral610 = il2cpp_codegen_string_literal_from_index(610);
s_Il2CppMethodIntialized = true;
}
{
bool L_0 = (__this->f33);
if (L_0)
{
goto IL_0011;
}
}
{
m1_1945(__this, NULL);
}
IL_0011:
{
bool L_1 = (__this->f7);
if (!L_1)
{
goto IL_0027;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(t1_175_TI_var);
t1_18* L_2 = ((t1_175_SFs*)t1_175_TI_var->static_fields)->f35;
t1_740 * L_3 = (t1_740 *)il2cpp_codegen_object_new (t1_740_TI_var);
m1_5030(L_3, L_2, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_3);
}
IL_0027:
{
t1_217 * L_4 = p0;
if (L_4)
{
goto IL_0038;
}
}
{
t1_701 * L_5 = (t1_701 *)il2cpp_codegen_object_new (t1_701_TI_var);
m1_4570(L_5, _stringLiteral610, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_5);
}
IL_0038:
{
t1_217 * L_6 = p0;
il2cpp_codegen_memory_barrier();
__this->f15 = L_6;
return;
}
}
extern "C" bool m1_1943 (t1_175 * __this, const MethodInfo* method)
{
{
bool L_0 = (__this->f7);
return L_0;
}
}
extern const Il2CppType* t1_216_0_0_0_var;
extern const Il2CppType* t1_217_0_0_0_var;
extern TypeInfo* t1_37_TI_var;
extern "C" t1_1 * m1_1944 (t1_175 * __this, t1_37 * p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_216_0_0_0_var = il2cpp_codegen_type_from_index(14);
t1_217_0_0_0_var = il2cpp_codegen_type_from_index(214);
t1_37_TI_var = il2cpp_codegen_type_info_from_index(3);
s_Il2CppMethodIntialized = true;
}
t1_1 * V_0 = {0};
{
V_0 = NULL;
t1_37 * L_0 = p0;
IL2CPP_RUNTIME_CLASS_INIT(t1_37_TI_var);
t1_37 * L_1 = m1_894(NULL, LoadTypeToken(t1_216_0_0_0_var), NULL);
if ((!(((t1_1*)(t1_37 *)L_0) == ((t1_1*)(t1_37 *)L_1))))
{
goto IL_001e;
}
}
{
t1_216 * L_2 = (t1_216 *)VirtFuncInvoker0< t1_216 * >::Invoke(13 /* System.Globalization.NumberFormatInfo System.Globalization.CultureInfo::get_NumberFormat() */, __this);
V_0 = L_2;
goto IL_0035;
}
IL_001e:
{
t1_37 * L_3 = p0;
IL2CPP_RUNTIME_CLASS_INIT(t1_37_TI_var);
t1_37 * L_4 = m1_894(NULL, LoadTypeToken(t1_217_0_0_0_var), NULL);
if ((!(((t1_1*)(t1_37 *)L_3) == ((t1_1*)(t1_37 *)L_4))))
{
goto IL_0035;
}
}
{
t1_217 * L_5 = (t1_217 *)VirtFuncInvoker0< t1_217 * >::Invoke(15 /* System.Globalization.DateTimeFormatInfo System.Globalization.CultureInfo::get_DateTimeFormat() */, __this);
V_0 = L_5;
}
IL_0035:
{
t1_1 * L_6 = V_0;
return L_6;
}
}
extern "C" void m1_1945 (t1_175 * __this, const MethodInfo* method)
{
{
int32_t L_0 = (__this->f8);
m1_1949(__this, L_0, NULL);
__this->f33 = 1;
return;
}
}
extern TypeInfo* t1_175_TI_var;
extern TypeInfo* t1_89_TI_var;
extern const MethodInfo* m1_5457_MI_var;
extern Il2CppCodeGenString* _stringLiteral611;
extern Il2CppCodeGenString* _stringLiteral612;
extern Il2CppCodeGenString* _stringLiteral613;
extern Il2CppCodeGenString* _stringLiteral614;
extern "C" bool m1_1946 (t1_175 * __this, t1_18* p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_175_TI_var = il2cpp_codegen_type_info_from_index(28);
t1_89_TI_var = il2cpp_codegen_type_info_from_index(115);
m1_5457_MI_var = il2cpp_codegen_method_info_from_index(2147483658);
_stringLiteral611 = il2cpp_codegen_string_literal_from_index(611);
_stringLiteral612 = il2cpp_codegen_string_literal_from_index(612);
_stringLiteral613 = il2cpp_codegen_string_literal_from_index(613);
_stringLiteral614 = il2cpp_codegen_string_literal_from_index(614);
s_Il2CppMethodIntialized = true;
}
t1_18* V_0 = {0};
t1_89 * V_1 = {0};
int32_t V_2 = 0;
{
t1_18* L_0 = p0;
V_0 = L_0;
t1_18* L_1 = V_0;
if (!L_1)
{
goto IL_0073;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(t1_175_TI_var);
t1_89 * L_2 = ((t1_175_SFs*)t1_175_TI_var->static_fields)->f38;
if (L_2)
{
goto IL_0037;
}
}
{
t1_89 * L_3 = (t1_89 *)il2cpp_codegen_object_new (t1_89_TI_var);
m1_5457(L_3, 2, m1_5457_MI_var);
V_1 = L_3;
t1_89 * L_4 = V_1;
VirtActionInvoker2< t1_18*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(TKey,TValue) */, L_4, _stringLiteral611, 0);
t1_89 * L_5 = V_1;
VirtActionInvoker2< t1_18*, int32_t >::Invoke(27 /* System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::Add(TKey,TValue) */, L_5, _stringLiteral612, 1);
t1_89 * L_6 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(t1_175_TI_var);
((t1_175_SFs*)t1_175_TI_var->static_fields)->f38 = L_6;
}
IL_0037:
{
IL2CPP_RUNTIME_CLASS_INIT(t1_175_TI_var);
t1_89 * L_7 = ((t1_175_SFs*)t1_175_TI_var->static_fields)->f38;
t1_18* L_8 = V_0;
bool L_9 = (bool)VirtFuncInvoker2< bool, t1_18*, int32_t* >::Invoke(32 /* System.Boolean System.Collections.Generic.Dictionary`2<System.String,System.Int32>::TryGetValue(TKey,TValue&) */, L_7, L_8, (&V_2));
if (!L_9)
{
goto IL_0073;
}
}
{
int32_t L_10 = V_2;
if (!L_10)
{
goto IL_005b;
}
}
{
int32_t L_11 = V_2;
if ((((int32_t)L_11) == ((int32_t)1)))
{
goto IL_0067;
}
}
{
goto IL_0073;
}
IL_005b:
{
p0 = _stringLiteral613;
goto IL_0073;
}
IL_0067:
{
p0 = _stringLiteral614;
goto IL_0073;
}
IL_0073:
{
t1_18* L_12 = p0;
bool L_13 = m1_1950(__this, L_12, NULL);
if (L_13)
{
goto IL_0081;
}
}
{
return 0;
}
IL_0081:
{
return 1;
}
}
extern "C" bool m1_1947 (t1_175 * __this, int32_t p0, const MethodInfo* method)
{
{
int32_t L_0 = p0;
bool L_1 = m1_1949(__this, L_0, NULL);
if (L_1)
{
goto IL_000e;
}
}
{
return 0;
}
IL_000e:
{
return 1;
}
}
extern TypeInfo* t1_175_TI_var;
extern "C" bool m1_1948 (t1_1 * __this , t1_175 * p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_175_TI_var = il2cpp_codegen_type_info_from_index(28);
s_Il2CppMethodIntialized = true;
}
{
t1_175 * L_0 = p0;
IL2CPP_RUNTIME_CLASS_INIT(t1_175_TI_var);
bool L_1 = m1_1951(NULL, L_0, NULL);
if (L_1)
{
goto IL_000d;
}
}
{
return 0;
}
IL_000d:
{
return 1;
}
}
extern "C" bool m1_1949 (t1_175 * __this, int32_t p0, const MethodInfo* method)
{
using namespace il2cpp::icalls;
typedef bool (*m1_1949_ftn) (t1_175 *, int32_t);
return ((m1_1949_ftn)mscorlib::System::Globalization::CultureInfo::construct_internal_locale_from_lcid) (__this, p0);
}
extern "C" bool m1_1950 (t1_175 * __this, t1_18* p0, const MethodInfo* method)
{
using namespace il2cpp::icalls;
typedef bool (*m1_1950_ftn) (t1_175 *, t1_18*);
return ((m1_1950_ftn)mscorlib::System::Globalization::CultureInfo::construct_internal_locale_from_name) (__this, p0);
}
extern "C" bool m1_1951 (t1_1 * __this , t1_175 * p0, const MethodInfo* method)
{
using namespace il2cpp::icalls;
typedef bool (*m1_1951_ftn) (t1_175 *);
return ((m1_1951_ftn)mscorlib::System::Globalization::CultureInfo::construct_internal_locale_from_current_locale) (p0);
}
extern "C" void m1_1952 (t1_175 * __this, const MethodInfo* method)
{
using namespace il2cpp::icalls;
typedef void (*m1_1952_ftn) (t1_175 *);
((m1_1952_ftn)mscorlib::System::Globalization::CultureInfo::construct_datetime_format) (__this);
}
extern "C" void m1_1953 (t1_175 * __this, const MethodInfo* method)
{
using namespace il2cpp::icalls;
typedef void (*m1_1953_ftn) (t1_175 *);
((m1_1953_ftn)mscorlib::System::Globalization::CultureInfo::construct_number_format) (__this);
}
extern TypeInfo* t1_216_TI_var;
extern TypeInfo* t1_217_TI_var;
extern TypeInfo* t1_18_TI_var;
extern Il2CppCodeGenString* _stringLiteral615;
extern Il2CppCodeGenString* _stringLiteral616;
extern Il2CppCodeGenString* _stringLiteral617;
extern Il2CppCodeGenString* _stringLiteral618;
extern "C" void m1_1954 (t1_175 * __this, bool p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_216_TI_var = il2cpp_codegen_type_info_from_index(14);
t1_217_TI_var = il2cpp_codegen_type_info_from_index(214);
t1_18_TI_var = il2cpp_codegen_type_info_from_index(11);
_stringLiteral615 = il2cpp_codegen_string_literal_from_index(615);
_stringLiteral616 = il2cpp_codegen_string_literal_from_index(616);
_stringLiteral617 = il2cpp_codegen_string_literal_from_index(617);
_stringLiteral618 = il2cpp_codegen_string_literal_from_index(618);
s_Il2CppMethodIntialized = true;
}
t1_18* V_0 = {0};
{
__this->f8 = ((int32_t)127);
IL2CPP_RUNTIME_CLASS_INIT(t1_216_TI_var);
t1_216 * L_0 = m1_2023(NULL, NULL);
il2cpp_codegen_memory_barrier();
__this->f14 = L_0;
IL2CPP_RUNTIME_CLASS_INIT(t1_217_TI_var);
t1_217 * L_1 = m1_1984(NULL, NULL);
il2cpp_codegen_memory_barrier();
__this->f15 = L_1;
bool L_2 = p0;
if (L_2)
{
goto IL_005c;
}
}
{
t1_216 * L_3 = (__this->f14);
il2cpp_codegen_memory_barrier();
t1_1 * L_4 = m1_2044(L_3, NULL);
il2cpp_codegen_memory_barrier();
__this->f14 = ((t1_216 *)CastclassSealed(L_4, t1_216_TI_var));
t1_217 * L_5 = (__this->f15);
il2cpp_codegen_memory_barrier();
t1_1 * L_6 = m1_1963(L_5, NULL);
il2cpp_codegen_memory_barrier();
__this->f15 = ((t1_217 *)CastclassSealed(L_6, t1_217_TI_var));
}
IL_005c:
{
bool L_7 = p0;
t1_97 * L_8 = m1_1955(__this, L_7, NULL);
il2cpp_codegen_memory_barrier();
__this->f16 = L_8;
IL2CPP_RUNTIME_CLASS_INIT(t1_18_TI_var);
t1_18* L_9 = ((t1_18_SFs*)t1_18_TI_var->static_fields)->f2;
__this->f17 = L_9;
t1_18* L_10 = _stringLiteral615;
V_0 = L_10;
__this->f20 = L_10;
t1_18* L_11 = V_0;
t1_18* L_12 = L_11;
V_0 = L_12;
__this->f19 = L_12;
t1_18* L_13 = V_0;
__this->f18 = L_13;
__this->f21 = _stringLiteral616;
__this->f22 = _stringLiteral617;
__this->f23 = _stringLiteral618;
__this->f24 = _stringLiteral616;
return;
}
}
extern TypeInfo* t1_97_TI_var;
extern "C" t1_97 * m1_1955 (t1_175 * __this, bool p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_97_TI_var = il2cpp_codegen_type_info_from_index(215);
s_Il2CppMethodIntialized = true;
}
{
int32_t L_0 = (__this->f8);
void* L_1 = (__this->f28);
bool L_2 = p0;
t1_97 * L_3 = (t1_97 *)il2cpp_codegen_object_new (t1_97_TI_var);
m1_2046(L_3, __this, L_0, (void*)(void*)L_1, L_2, NULL);
return L_3;
}
}
extern TypeInfo* t1_175_TI_var;
extern "C" t1_175 * m1_1956 (t1_1 * __this , t1_18* p0, bool p1, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_175_TI_var = il2cpp_codegen_type_info_from_index(28);
s_Il2CppMethodIntialized = true;
}
bool V_0 = false;
bool V_1 = false;
bool V_2 = false;
int32_t G_B4_0 = 0;
int32_t G_B8_0 = 0;
{
t1_18* L_0 = p0;
int32_t L_1 = m1_430(L_0, NULL);
V_2 = ((((int32_t)L_1) == ((int32_t)0))? 1 : 0);
bool L_2 = p1;
if (!L_2)
{
goto IL_0025;
}
}
{
bool L_3 = V_2;
if (!L_3)
{
goto IL_001c;
}
}
{
G_B4_0 = 0;
goto IL_001d;
}
IL_001c:
{
G_B4_0 = 1;
}
IL_001d:
{
V_1 = G_B4_0;
V_0 = 0;
goto IL_0035;
}
IL_0025:
{
V_0 = 0;
bool L_4 = V_2;
if (!L_4)
{
goto IL_0033;
}
}
{
G_B8_0 = 0;
goto IL_0034;
}
IL_0033:
{
G_B8_0 = 1;
}
IL_0034:
{
V_1 = G_B8_0;
}
IL_0035:
{
t1_18* L_5 = p0;
bool L_6 = V_1;
bool L_7 = V_0;
t1_175 * L_8 = (t1_175 *)il2cpp_codegen_object_new (t1_175_TI_var);
m1_1919(L_8, L_5, L_6, L_7, NULL);
return L_8;
}
}
extern TypeInfo* t1_223_TI_var;
extern TypeInfo* t1_217_TI_var;
extern Il2CppCodeGenString* _stringLiteral619;
extern Il2CppCodeGenString* _stringLiteral620;
extern Il2CppCodeGenString* _stringLiteral621;
extern Il2CppCodeGenString* _stringLiteral622;
extern Il2CppCodeGenString* _stringLiteral623;
extern Il2CppCodeGenString* _stringLiteral624;
extern Il2CppCodeGenString* _stringLiteral625;
extern Il2CppCodeGenString* _stringLiteral626;
extern Il2CppCodeGenString* _stringLiteral627;
extern Il2CppCodeGenString* _stringLiteral628;
extern Il2CppCodeGenString* _stringLiteral629;
extern Il2CppCodeGenString* _stringLiteral630;
extern Il2CppCodeGenString* _stringLiteral631;
extern Il2CppCodeGenString* _stringLiteral632;
extern "C" void m1_1957 (t1_217 * __this, bool p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_223_TI_var = il2cpp_codegen_type_info_from_index(216);
t1_217_TI_var = il2cpp_codegen_type_info_from_index(214);
_stringLiteral619 = il2cpp_codegen_string_literal_from_index(619);
_stringLiteral620 = il2cpp_codegen_string_literal_from_index(620);
_stringLiteral621 = il2cpp_codegen_string_literal_from_index(621);
_stringLiteral622 = il2cpp_codegen_string_literal_from_index(622);
_stringLiteral623 = il2cpp_codegen_string_literal_from_index(623);
_stringLiteral624 = il2cpp_codegen_string_literal_from_index(624);
_stringLiteral625 = il2cpp_codegen_string_literal_from_index(625);
_stringLiteral626 = il2cpp_codegen_string_literal_from_index(626);
_stringLiteral627 = il2cpp_codegen_string_literal_from_index(627);
_stringLiteral628 = il2cpp_codegen_string_literal_from_index(628);
_stringLiteral629 = il2cpp_codegen_string_literal_from_index(629);
_stringLiteral630 = il2cpp_codegen_string_literal_from_index(630);
_stringLiteral631 = il2cpp_codegen_string_literal_from_index(631);
_stringLiteral632 = il2cpp_codegen_string_literal_from_index(632);
s_Il2CppMethodIntialized = true;
}
{
m1_0(__this, NULL);
bool L_0 = p0;
__this->f10 = L_0;
__this->f11 = _stringLiteral619;
__this->f12 = _stringLiteral620;
__this->f13 = _stringLiteral621;
__this->f14 = _stringLiteral622;
__this->f15 = _stringLiteral623;
__this->f16 = _stringLiteral624;
__this->f17 = _stringLiteral625;
__this->f18 = _stringLiteral626;
__this->f19 = _stringLiteral627;
__this->f20 = _stringLiteral628;
__this->f21 = _stringLiteral629;
__this->f22 = _stringLiteral630;
__this->f23 = _stringLiteral631;
__this->f24 = _stringLiteral632;
__this->f25 = 0;
t1_223 * L_1 = (t1_223 *)il2cpp_codegen_object_new (t1_223_TI_var);
m1_2003(L_1, NULL);
__this->f26 = L_1;
__this->f27 = 0;
IL2CPP_RUNTIME_CLASS_INIT(t1_217_TI_var);
t1_212* L_2 = ((t1_217_SFs*)t1_217_TI_var->static_fields)->f4;
__this->f28 = L_2;
t1_212* L_3 = ((t1_217_SFs*)t1_217_TI_var->static_fields)->f5;
__this->f29 = L_3;
t1_212* L_4 = ((t1_217_SFs*)t1_217_TI_var->static_fields)->f6;
__this->f31 = L_4;
t1_212* L_5 = ((t1_217_SFs*)t1_217_TI_var->static_fields)->f7;
__this->f30 = L_5;
t1_212* L_6 = ((t1_217_SFs*)t1_217_TI_var->static_fields)->f6;
__this->f53 = L_6;
t1_212* L_7 = ((t1_217_SFs*)t1_217_TI_var->static_fields)->f7;
__this->f52 = L_7;
t1_212* L_8 = ((t1_217_SFs*)t1_217_TI_var->static_fields)->f8;
__this->f38 = L_8;
return;
}
}
extern "C" void m1_1958 (t1_217 * __this, const MethodInfo* method)
{
{
m1_1957(__this, 0, NULL);
return;
}
}
extern TypeInfo* t1_217_TI_var;
extern TypeInfo* t1_212_TI_var;
extern TypeInfo* t1_18_TI_var;
extern Il2CppCodeGenString* _stringLiteral606;
extern Il2CppCodeGenString* _stringLiteral633;
extern Il2CppCodeGenString* _stringLiteral634;
extern Il2CppCodeGenString* _stringLiteral635;
extern Il2CppCodeGenString* _stringLiteral636;
extern Il2CppCodeGenString* _stringLiteral637;
extern Il2CppCodeGenString* _stringLiteral638;
extern Il2CppCodeGenString* _stringLiteral639;
extern Il2CppCodeGenString* _stringLiteral640;
extern Il2CppCodeGenString* _stringLiteral641;
extern Il2CppCodeGenString* _stringLiteral642;
extern Il2CppCodeGenString* _stringLiteral643;
extern Il2CppCodeGenString* _stringLiteral644;
extern Il2CppCodeGenString* _stringLiteral645;
extern Il2CppCodeGenString* _stringLiteral646;
extern Il2CppCodeGenString* _stringLiteral647;
extern Il2CppCodeGenString* _stringLiteral648;
extern Il2CppCodeGenString* _stringLiteral649;
extern Il2CppCodeGenString* _stringLiteral650;
extern Il2CppCodeGenString* _stringLiteral651;
extern Il2CppCodeGenString* _stringLiteral652;
extern Il2CppCodeGenString* _stringLiteral653;
extern Il2CppCodeGenString* _stringLiteral654;
extern Il2CppCodeGenString* _stringLiteral655;
extern Il2CppCodeGenString* _stringLiteral656;
extern Il2CppCodeGenString* _stringLiteral657;
extern Il2CppCodeGenString* _stringLiteral658;
extern Il2CppCodeGenString* _stringLiteral659;
extern Il2CppCodeGenString* _stringLiteral660;
extern Il2CppCodeGenString* _stringLiteral661;
extern Il2CppCodeGenString* _stringLiteral662;
extern Il2CppCodeGenString* _stringLiteral663;
extern Il2CppCodeGenString* _stringLiteral664;
extern Il2CppCodeGenString* _stringLiteral665;
extern Il2CppCodeGenString* _stringLiteral666;
extern Il2CppCodeGenString* _stringLiteral667;
extern Il2CppCodeGenString* _stringLiteral668;
extern Il2CppCodeGenString* _stringLiteral669;
extern Il2CppCodeGenString* _stringLiteral670;
extern Il2CppCodeGenString* _stringLiteral671;
extern Il2CppCodeGenString* _stringLiteral672;
extern Il2CppCodeGenString* _stringLiteral673;
extern Il2CppCodeGenString* _stringLiteral674;
extern Il2CppCodeGenString* _stringLiteral675;
extern Il2CppCodeGenString* _stringLiteral676;
extern Il2CppCodeGenString* _stringLiteral677;
extern Il2CppCodeGenString* _stringLiteral678;
extern "C" void m1_1959 (t1_1 * __this , const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_217_TI_var = il2cpp_codegen_type_info_from_index(214);
t1_212_TI_var = il2cpp_codegen_type_info_from_index(32);
t1_18_TI_var = il2cpp_codegen_type_info_from_index(11);
_stringLiteral606 = il2cpp_codegen_string_literal_from_index(606);
_stringLiteral633 = il2cpp_codegen_string_literal_from_index(633);
_stringLiteral634 = il2cpp_codegen_string_literal_from_index(634);
_stringLiteral635 = il2cpp_codegen_string_literal_from_index(635);
_stringLiteral636 = il2cpp_codegen_string_literal_from_index(636);
_stringLiteral637 = il2cpp_codegen_string_literal_from_index(637);
_stringLiteral638 = il2cpp_codegen_string_literal_from_index(638);
_stringLiteral639 = il2cpp_codegen_string_literal_from_index(639);
_stringLiteral640 = il2cpp_codegen_string_literal_from_index(640);
_stringLiteral641 = il2cpp_codegen_string_literal_from_index(641);
_stringLiteral642 = il2cpp_codegen_string_literal_from_index(642);
_stringLiteral643 = il2cpp_codegen_string_literal_from_index(643);
_stringLiteral644 = il2cpp_codegen_string_literal_from_index(644);
_stringLiteral645 = il2cpp_codegen_string_literal_from_index(645);
_stringLiteral646 = il2cpp_codegen_string_literal_from_index(646);
_stringLiteral647 = il2cpp_codegen_string_literal_from_index(647);
_stringLiteral648 = il2cpp_codegen_string_literal_from_index(648);
_stringLiteral649 = il2cpp_codegen_string_literal_from_index(649);
_stringLiteral650 = il2cpp_codegen_string_literal_from_index(650);
_stringLiteral651 = il2cpp_codegen_string_literal_from_index(651);
_stringLiteral652 = il2cpp_codegen_string_literal_from_index(652);
_stringLiteral653 = il2cpp_codegen_string_literal_from_index(653);
_stringLiteral654 = il2cpp_codegen_string_literal_from_index(654);
_stringLiteral655 = il2cpp_codegen_string_literal_from_index(655);
_stringLiteral656 = il2cpp_codegen_string_literal_from_index(656);
_stringLiteral657 = il2cpp_codegen_string_literal_from_index(657);
_stringLiteral658 = il2cpp_codegen_string_literal_from_index(658);
_stringLiteral659 = il2cpp_codegen_string_literal_from_index(659);
_stringLiteral660 = il2cpp_codegen_string_literal_from_index(660);
_stringLiteral661 = il2cpp_codegen_string_literal_from_index(661);
_stringLiteral662 = il2cpp_codegen_string_literal_from_index(662);
_stringLiteral663 = il2cpp_codegen_string_literal_from_index(663);
_stringLiteral664 = il2cpp_codegen_string_literal_from_index(664);
_stringLiteral665 = il2cpp_codegen_string_literal_from_index(665);
_stringLiteral666 = il2cpp_codegen_string_literal_from_index(666);
_stringLiteral667 = il2cpp_codegen_string_literal_from_index(667);
_stringLiteral668 = il2cpp_codegen_string_literal_from_index(668);
_stringLiteral669 = il2cpp_codegen_string_literal_from_index(669);
_stringLiteral670 = il2cpp_codegen_string_literal_from_index(670);
_stringLiteral671 = il2cpp_codegen_string_literal_from_index(671);
_stringLiteral672 = il2cpp_codegen_string_literal_from_index(672);
_stringLiteral673 = il2cpp_codegen_string_literal_from_index(673);
_stringLiteral674 = il2cpp_codegen_string_literal_from_index(674);
_stringLiteral675 = il2cpp_codegen_string_literal_from_index(675);
_stringLiteral676 = il2cpp_codegen_string_literal_from_index(676);
_stringLiteral677 = il2cpp_codegen_string_literal_from_index(677);
_stringLiteral678 = il2cpp_codegen_string_literal_from_index(678);
s_Il2CppMethodIntialized = true;
}
{
((t1_217_SFs*)t1_217_TI_var->static_fields)->f1 = _stringLiteral606;
((t1_217_SFs*)t1_217_TI_var->static_fields)->f2 = _stringLiteral633;
((t1_217_SFs*)t1_217_TI_var->static_fields)->f3 = _stringLiteral634;
t1_212* L_0 = ((t1_212*)SZArrayNew(t1_212_TI_var, 7));
ArrayElementTypeCheck (L_0, _stringLiteral635);
*((t1_18**)(t1_18**)SZArrayLdElema(L_0, 0, sizeof(t1_18*))) = (t1_18*)_stringLiteral635;
t1_212* L_1 = L_0;
ArrayElementTypeCheck (L_1, _stringLiteral636);
*((t1_18**)(t1_18**)SZArrayLdElema(L_1, 1, sizeof(t1_18*))) = (t1_18*)_stringLiteral636;
t1_212* L_2 = L_1;
ArrayElementTypeCheck (L_2, _stringLiteral637);
*((t1_18**)(t1_18**)SZArrayLdElema(L_2, 2, sizeof(t1_18*))) = (t1_18*)_stringLiteral637;
t1_212* L_3 = L_2;
ArrayElementTypeCheck (L_3, _stringLiteral638);
*((t1_18**)(t1_18**)SZArrayLdElema(L_3, 3, sizeof(t1_18*))) = (t1_18*)_stringLiteral638;
t1_212* L_4 = L_3;
ArrayElementTypeCheck (L_4, _stringLiteral639);
*((t1_18**)(t1_18**)SZArrayLdElema(L_4, 4, sizeof(t1_18*))) = (t1_18*)_stringLiteral639;
t1_212* L_5 = L_4;
ArrayElementTypeCheck (L_5, _stringLiteral640);
*((t1_18**)(t1_18**)SZArrayLdElema(L_5, 5, sizeof(t1_18*))) = (t1_18*)_stringLiteral640;
t1_212* L_6 = L_5;
ArrayElementTypeCheck (L_6, _stringLiteral641);
*((t1_18**)(t1_18**)SZArrayLdElema(L_6, 6, sizeof(t1_18*))) = (t1_18*)_stringLiteral641;
((t1_217_SFs*)t1_217_TI_var->static_fields)->f4 = L_6;
t1_212* L_7 = ((t1_212*)SZArrayNew(t1_212_TI_var, 7));
ArrayElementTypeCheck (L_7, _stringLiteral642);
*((t1_18**)(t1_18**)SZArrayLdElema(L_7, 0, sizeof(t1_18*))) = (t1_18*)_stringLiteral642;
t1_212* L_8 = L_7;
ArrayElementTypeCheck (L_8, _stringLiteral643);
*((t1_18**)(t1_18**)SZArrayLdElema(L_8, 1, sizeof(t1_18*))) = (t1_18*)_stringLiteral643;
t1_212* L_9 = L_8;
ArrayElementTypeCheck (L_9, _stringLiteral644);
*((t1_18**)(t1_18**)SZArrayLdElema(L_9, 2, sizeof(t1_18*))) = (t1_18*)_stringLiteral644;
t1_212* L_10 = L_9;
ArrayElementTypeCheck (L_10, _stringLiteral645);
*((t1_18**)(t1_18**)SZArrayLdElema(L_10, 3, sizeof(t1_18*))) = (t1_18*)_stringLiteral645;
t1_212* L_11 = L_10;
ArrayElementTypeCheck (L_11, _stringLiteral646);
*((t1_18**)(t1_18**)SZArrayLdElema(L_11, 4, sizeof(t1_18*))) = (t1_18*)_stringLiteral646;
t1_212* L_12 = L_11;
ArrayElementTypeCheck (L_12, _stringLiteral647);
*((t1_18**)(t1_18**)SZArrayLdElema(L_12, 5, sizeof(t1_18*))) = (t1_18*)_stringLiteral647;
t1_212* L_13 = L_12;
ArrayElementTypeCheck (L_13, _stringLiteral648);
*((t1_18**)(t1_18**)SZArrayLdElema(L_13, 6, sizeof(t1_18*))) = (t1_18*)_stringLiteral648;
((t1_217_SFs*)t1_217_TI_var->static_fields)->f5 = L_13;
t1_212* L_14 = ((t1_212*)SZArrayNew(t1_212_TI_var, ((int32_t)13)));
ArrayElementTypeCheck (L_14, _stringLiteral649);
*((t1_18**)(t1_18**)SZArrayLdElema(L_14, 0, sizeof(t1_18*))) = (t1_18*)_stringLiteral649;
t1_212* L_15 = L_14;
ArrayElementTypeCheck (L_15, _stringLiteral650);
*((t1_18**)(t1_18**)SZArrayLdElema(L_15, 1, sizeof(t1_18*))) = (t1_18*)_stringLiteral650;
t1_212* L_16 = L_15;
ArrayElementTypeCheck (L_16, _stringLiteral651);
*((t1_18**)(t1_18**)SZArrayLdElema(L_16, 2, sizeof(t1_18*))) = (t1_18*)_stringLiteral651;
t1_212* L_17 = L_16;
ArrayElementTypeCheck (L_17, _stringLiteral652);
*((t1_18**)(t1_18**)SZArrayLdElema(L_17, 3, sizeof(t1_18*))) = (t1_18*)_stringLiteral652;
t1_212* L_18 = L_17;
ArrayElementTypeCheck (L_18, _stringLiteral653);
*((t1_18**)(t1_18**)SZArrayLdElema(L_18, 4, sizeof(t1_18*))) = (t1_18*)_stringLiteral653;
t1_212* L_19 = L_18;
ArrayElementTypeCheck (L_19, _stringLiteral654);
*((t1_18**)(t1_18**)SZArrayLdElema(L_19, 5, sizeof(t1_18*))) = (t1_18*)_stringLiteral654;
t1_212* L_20 = L_19;
ArrayElementTypeCheck (L_20, _stringLiteral655);
*((t1_18**)(t1_18**)SZArrayLdElema(L_20, 6, sizeof(t1_18*))) = (t1_18*)_stringLiteral655;
t1_212* L_21 = L_20;
ArrayElementTypeCheck (L_21, _stringLiteral656);
*((t1_18**)(t1_18**)SZArrayLdElema(L_21, 7, sizeof(t1_18*))) = (t1_18*)_stringLiteral656;
t1_212* L_22 = L_21;
ArrayElementTypeCheck (L_22, _stringLiteral657);
*((t1_18**)(t1_18**)SZArrayLdElema(L_22, 8, sizeof(t1_18*))) = (t1_18*)_stringLiteral657;
t1_212* L_23 = L_22;
ArrayElementTypeCheck (L_23, _stringLiteral658);
*((t1_18**)(t1_18**)SZArrayLdElema(L_23, ((int32_t)9), sizeof(t1_18*))) = (t1_18*)_stringLiteral658;
t1_212* L_24 = L_23;
ArrayElementTypeCheck (L_24, _stringLiteral659);
*((t1_18**)(t1_18**)SZArrayLdElema(L_24, ((int32_t)10), sizeof(t1_18*))) = (t1_18*)_stringLiteral659;
t1_212* L_25 = L_24;
ArrayElementTypeCheck (L_25, _stringLiteral660);
*((t1_18**)(t1_18**)SZArrayLdElema(L_25, ((int32_t)11), sizeof(t1_18*))) = (t1_18*)_stringLiteral660;
t1_212* L_26 = L_25;
IL2CPP_RUNTIME_CLASS_INIT(t1_18_TI_var);
t1_18* L_27 = ((t1_18_SFs*)t1_18_TI_var->static_fields)->f2;
ArrayElementTypeCheck (L_26, L_27);
*((t1_18**)(t1_18**)SZArrayLdElema(L_26, ((int32_t)12), sizeof(t1_18*))) = (t1_18*)L_27;
((t1_217_SFs*)t1_217_TI_var->static_fields)->f6 = L_26;
t1_212* L_28 = ((t1_212*)SZArrayNew(t1_212_TI_var, ((int32_t)13)));
ArrayElementTypeCheck (L_28, _stringLiteral661);
*((t1_18**)(t1_18**)SZArrayLdElema(L_28, 0, sizeof(t1_18*))) = (t1_18*)_stringLiteral661;
t1_212* L_29 = L_28;
ArrayElementTypeCheck (L_29, _stringLiteral662);
*((t1_18**)(t1_18**)SZArrayLdElema(L_29, 1, sizeof(t1_18*))) = (t1_18*)_stringLiteral662;
t1_212* L_30 = L_29;
ArrayElementTypeCheck (L_30, _stringLiteral663);
*((t1_18**)(t1_18**)SZArrayLdElema(L_30, 2, sizeof(t1_18*))) = (t1_18*)_stringLiteral663;
t1_212* L_31 = L_30;
ArrayElementTypeCheck (L_31, _stringLiteral664);
*((t1_18**)(t1_18**)SZArrayLdElema(L_31, 3, sizeof(t1_18*))) = (t1_18*)_stringLiteral664;
t1_212* L_32 = L_31;
ArrayElementTypeCheck (L_32, _stringLiteral653);
*((t1_18**)(t1_18**)SZArrayLdElema(L_32, 4, sizeof(t1_18*))) = (t1_18*)_stringLiteral653;
t1_212* L_33 = L_32;
ArrayElementTypeCheck (L_33, _stringLiteral665);
*((t1_18**)(t1_18**)SZArrayLdElema(L_33, 5, sizeof(t1_18*))) = (t1_18*)_stringLiteral665;
t1_212* L_34 = L_33;
ArrayElementTypeCheck (L_34, _stringLiteral666);
*((t1_18**)(t1_18**)SZArrayLdElema(L_34, 6, sizeof(t1_18*))) = (t1_18*)_stringLiteral666;
t1_212* L_35 = L_34;
ArrayElementTypeCheck (L_35, _stringLiteral667);
*((t1_18**)(t1_18**)SZArrayLdElema(L_35, 7, sizeof(t1_18*))) = (t1_18*)_stringLiteral667;
t1_212* L_36 = L_35;
ArrayElementTypeCheck (L_36, _stringLiteral668);
*((t1_18**)(t1_18**)SZArrayLdElema(L_36, 8, sizeof(t1_18*))) = (t1_18*)_stringLiteral668;
t1_212* L_37 = L_36;
ArrayElementTypeCheck (L_37, _stringLiteral669);
*((t1_18**)(t1_18**)SZArrayLdElema(L_37, ((int32_t)9), sizeof(t1_18*))) = (t1_18*)_stringLiteral669;
t1_212* L_38 = L_37;
ArrayElementTypeCheck (L_38, _stringLiteral670);
*((t1_18**)(t1_18**)SZArrayLdElema(L_38, ((int32_t)10), sizeof(t1_18*))) = (t1_18*)_stringLiteral670;
t1_212* L_39 = L_38;
ArrayElementTypeCheck (L_39, _stringLiteral671);
*((t1_18**)(t1_18**)SZArrayLdElema(L_39, ((int32_t)11), sizeof(t1_18*))) = (t1_18*)_stringLiteral671;
t1_212* L_40 = L_39;
t1_18* L_41 = ((t1_18_SFs*)t1_18_TI_var->static_fields)->f2;
ArrayElementTypeCheck (L_40, L_41);
*((t1_18**)(t1_18**)SZArrayLdElema(L_40, ((int32_t)12), sizeof(t1_18*))) = (t1_18*)L_41;
((t1_217_SFs*)t1_217_TI_var->static_fields)->f7 = L_40;
t1_212* L_42 = ((t1_212*)SZArrayNew(t1_212_TI_var, 7));
ArrayElementTypeCheck (L_42, _stringLiteral672);
*((t1_18**)(t1_18**)SZArrayLdElema(L_42, 0, sizeof(t1_18*))) = (t1_18*)_stringLiteral672;
t1_212* L_43 = L_42;
ArrayElementTypeCheck (L_43, _stringLiteral673);
*((t1_18**)(t1_18**)SZArrayLdElema(L_43, 1, sizeof(t1_18*))) = (t1_18*)_stringLiteral673;
t1_212* L_44 = L_43;
ArrayElementTypeCheck (L_44, _stringLiteral674);
*((t1_18**)(t1_18**)SZArrayLdElema(L_44, 2, sizeof(t1_18*))) = (t1_18*)_stringLiteral674;
t1_212* L_45 = L_44;
ArrayElementTypeCheck (L_45, _stringLiteral675);
*((t1_18**)(t1_18**)SZArrayLdElema(L_45, 3, sizeof(t1_18*))) = (t1_18*)_stringLiteral675;
t1_212* L_46 = L_45;
ArrayElementTypeCheck (L_46, _stringLiteral676);
*((t1_18**)(t1_18**)SZArrayLdElema(L_46, 4, sizeof(t1_18*))) = (t1_18*)_stringLiteral676;
t1_212* L_47 = L_46;
ArrayElementTypeCheck (L_47, _stringLiteral677);
*((t1_18**)(t1_18**)SZArrayLdElema(L_47, 5, sizeof(t1_18*))) = (t1_18*)_stringLiteral677;
t1_212* L_48 = L_47;
ArrayElementTypeCheck (L_48, _stringLiteral678);
*((t1_18**)(t1_18**)SZArrayLdElema(L_48, 6, sizeof(t1_18*))) = (t1_18*)_stringLiteral678;
((t1_217_SFs*)t1_217_TI_var->static_fields)->f8 = L_48;
return;
}
}
extern const Il2CppType* t1_217_0_0_0_var;
extern TypeInfo* t1_37_TI_var;
extern TypeInfo* t1_809_TI_var;
extern TypeInfo* t1_217_TI_var;
extern "C" t1_217 * m1_1960 (t1_1 * __this , t1_1 * p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_217_0_0_0_var = il2cpp_codegen_type_from_index(214);
t1_37_TI_var = il2cpp_codegen_type_info_from_index(3);
t1_809_TI_var = il2cpp_codegen_type_info_from_index(15);
t1_217_TI_var = il2cpp_codegen_type_info_from_index(214);
s_Il2CppMethodIntialized = true;
}
t1_217 * V_0 = {0};
{
t1_1 * L_0 = p0;
if (!L_0)
{
goto IL_0024;
}
}
{
t1_1 * L_1 = p0;
IL2CPP_RUNTIME_CLASS_INIT(t1_37_TI_var);
t1_37 * L_2 = m1_894(NULL, LoadTypeToken(t1_217_0_0_0_var), NULL);
t1_1 * L_3 = (t1_1 *)InterfaceFuncInvoker1< t1_1 *, t1_37 * >::Invoke(0 /* System.Object System.IFormatProvider::GetFormat(System.Type) */, t1_809_TI_var, L_1, L_2);
V_0 = ((t1_217 *)CastclassSealed(L_3, t1_217_TI_var));
t1_217 * L_4 = V_0;
if (!L_4)
{
goto IL_0024;
}
}
{
t1_217 * L_5 = V_0;
return L_5;
}
IL_0024:
{
IL2CPP_RUNTIME_CLASS_INIT(t1_217_TI_var);
t1_217 * L_6 = m1_1983(NULL, NULL);
return L_6;
}
}
extern "C" bool m1_1961 (t1_217 * __this, const MethodInfo* method)
{
{
bool L_0 = (__this->f10);
return L_0;
}
}
extern TypeInfo* t1_217_TI_var;
extern "C" t1_217 * m1_1962 (t1_1 * __this , t1_217 * p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_217_TI_var = il2cpp_codegen_type_info_from_index(214);
s_Il2CppMethodIntialized = true;
}
t1_217 * V_0 = {0};
{
t1_217 * L_0 = p0;
t1_1 * L_1 = m1_1963(L_0, NULL);
V_0 = ((t1_217 *)CastclassSealed(L_1, t1_217_TI_var));
t1_217 * L_2 = V_0;
L_2->f10 = 1;
t1_217 * L_3 = V_0;
return L_3;
}
}
extern TypeInfo* t1_217_TI_var;
extern "C" t1_1 * m1_1963 (t1_217 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_217_TI_var = il2cpp_codegen_type_info_from_index(214);
s_Il2CppMethodIntialized = true;
}
t1_217 * V_0 = {0};
{
t1_1 * L_0 = m1_6(__this, NULL);
V_0 = ((t1_217 *)CastclassSealed(L_0, t1_217_TI_var));
t1_217 * L_1 = V_0;
L_1->f10 = 0;
t1_217 * L_2 = V_0;
return L_2;
}
}
extern "C" t1_1 * m1_1964 (t1_217 * __this, t1_37 * p0, const MethodInfo* method)
{
t1_217 * G_B3_0 = {0};
{
t1_37 * L_0 = p0;
t1_37 * L_1 = m1_5(__this, NULL);
if ((!(((t1_1*)(t1_37 *)L_0) == ((t1_1*)(t1_37 *)L_1))))
{
goto IL_0012;
}
}
{
G_B3_0 = __this;
goto IL_0013;
}
IL_0012:
{
G_B3_0 = ((t1_217 *)(NULL));
}
IL_0013:
{
return G_B3_0;
}
}
extern TypeInfo* t1_702_TI_var;
extern "C" t1_18* m1_1965 (t1_217 * __this, int32_t p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_702_TI_var = il2cpp_codegen_type_info_from_index(27);
s_Il2CppMethodIntialized = true;
}
{
int32_t L_0 = p0;
if ((((int32_t)L_0) < ((int32_t)1)))
{
goto IL_000f;
}
}
{
int32_t L_1 = p0;
if ((((int32_t)L_1) <= ((int32_t)((int32_t)13))))
{
goto IL_0015;
}
}
IL_000f:
{
t1_702 * L_2 = (t1_702 *)il2cpp_codegen_object_new (t1_702_TI_var);
m1_4573(L_2, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_2);
}
IL_0015:
{
t1_212* L_3 = (__this->f31);
int32_t L_4 = p0;
int32_t L_5 = ((int32_t)((int32_t)L_4-(int32_t)1));
return (*(t1_18**)(t1_18**)SZArrayLdElema(L_3, L_5, sizeof(t1_18*)));
}
}
extern TypeInfo* t1_702_TI_var;
extern Il2CppCodeGenString* _stringLiteral679;
extern "C" t1_18* m1_1966 (t1_217 * __this, int32_t p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_702_TI_var = il2cpp_codegen_type_info_from_index(27);
_stringLiteral679 = il2cpp_codegen_string_literal_from_index(679);
s_Il2CppMethodIntialized = true;
}
{
int32_t L_0 = p0;
if ((((int32_t)L_0) < ((int32_t)0)))
{
goto IL_001a;
}
}
{
int32_t L_1 = p0;
t1_211 * L_2 = (__this->f26);
t1_212* L_3 = m1_1871(L_2, NULL);
if ((((int32_t)L_1) <= ((int32_t)(((int32_t)((int32_t)(((t1_33 *)L_3)->max_length)))))))
{
goto IL_002c;
}
}
IL_001a:
{
t1_18* L_4 = m1_63((&p0), NULL);
t1_702 * L_5 = (t1_702 *)il2cpp_codegen_object_new (t1_702_TI_var);
m1_4575(L_5, _stringLiteral679, L_4, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_5);
}
IL_002c:
{
t1_211 * L_6 = (__this->f26);
t1_212* L_7 = m1_1871(L_6, NULL);
int32_t L_8 = p0;
int32_t L_9 = ((int32_t)((int32_t)L_8-(int32_t)1));
return (*(t1_18**)(t1_18**)SZArrayLdElema(L_7, L_9, sizeof(t1_18*)));
}
}
extern TypeInfo* t1_702_TI_var;
extern "C" t1_18* m1_1967 (t1_217 * __this, int32_t p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_702_TI_var = il2cpp_codegen_type_info_from_index(27);
s_Il2CppMethodIntialized = true;
}
{
int32_t L_0 = p0;
if ((((int32_t)L_0) < ((int32_t)1)))
{
goto IL_000f;
}
}
{
int32_t L_1 = p0;
if ((((int32_t)L_1) <= ((int32_t)((int32_t)13))))
{
goto IL_0015;
}
}
IL_000f:
{
t1_702 * L_2 = (t1_702 *)il2cpp_codegen_object_new (t1_702_TI_var);
m1_4573(L_2, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_2);
}
IL_0015:
{
t1_212* L_3 = (__this->f30);
int32_t L_4 = p0;
int32_t L_5 = ((int32_t)((int32_t)L_4-(int32_t)1));
return (*(t1_18**)(t1_18**)SZArrayLdElema(L_3, L_5, sizeof(t1_18*)));
}
}
extern "C" t1_212* m1_1968 (t1_217 * __this, const MethodInfo* method)
{
{
t1_212* L_0 = (__this->f28);
return L_0;
}
}
extern "C" t1_212* m1_1969 (t1_217 * __this, const MethodInfo* method)
{
{
t1_212* L_0 = (__this->f31);
return L_0;
}
}
extern "C" t1_212* m1_1970 (t1_217 * __this, const MethodInfo* method)
{
{
t1_212* L_0 = (__this->f29);
return L_0;
}
}
extern "C" t1_212* m1_1971 (t1_217 * __this, const MethodInfo* method)
{
{
t1_212* L_0 = (__this->f30);
return L_0;
}
}
extern "C" t1_18* m1_1972 (t1_217 * __this, const MethodInfo* method)
{
{
t1_18* L_0 = (__this->f11);
return L_0;
}
}
extern "C" t1_18* m1_1973 (t1_217 * __this, const MethodInfo* method)
{
{
t1_18* L_0 = (__this->f12);
return L_0;
}
}
extern "C" t1_18* m1_1974 (t1_217 * __this, const MethodInfo* method)
{
{
t1_18* L_0 = (__this->f13);
return L_0;
}
}
extern "C" t1_18* m1_1975 (t1_217 * __this, const MethodInfo* method)
{
{
t1_18* L_0 = (__this->f14);
return L_0;
}
}
extern "C" t1_18* m1_1976 (t1_217 * __this, const MethodInfo* method)
{
{
t1_18* L_0 = (__this->f16);
return L_0;
}
}
extern "C" t1_18* m1_1977 (t1_217 * __this, const MethodInfo* method)
{
{
t1_18* L_0 = (__this->f15);
return L_0;
}
}
extern "C" t1_18* m1_1978 (t1_217 * __this, const MethodInfo* method)
{
{
t1_18* L_0 = (__this->f17);
return L_0;
}
}
extern "C" t1_18* m1_1979 (t1_217 * __this, const MethodInfo* method)
{
{
t1_18* L_0 = (__this->f18);
return L_0;
}
}
extern "C" t1_18* m1_1980 (t1_217 * __this, const MethodInfo* method)
{
{
t1_18* L_0 = (__this->f19);
return L_0;
}
}
extern "C" t1_18* m1_1981 (t1_217 * __this, const MethodInfo* method)
{
{
t1_18* L_0 = (__this->f20);
return L_0;
}
}
extern TypeInfo* t1_18_TI_var;
extern Il2CppCodeGenString* _stringLiteral232;
extern "C" t1_18* m1_1982 (t1_217 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_18_TI_var = il2cpp_codegen_type_info_from_index(11);
_stringLiteral232 = il2cpp_codegen_string_literal_from_index(232);
s_Il2CppMethodIntialized = true;
}
{
t1_18* L_0 = (__this->f21);
if (!L_0)
{
goto IL_0012;
}
}
{
t1_18* L_1 = (__this->f21);
return L_1;
}
IL_0012:
{
t1_18* L_2 = (__this->f16);
t1_18* L_3 = (__this->f18);
IL2CPP_RUNTIME_CLASS_INIT(t1_18_TI_var);
t1_18* L_4 = m1_421(NULL, L_2, _stringLiteral232, L_3, NULL);
return L_4;
}
}
extern TypeInfo* t1_439_TI_var;
extern "C" t1_217 * m1_1983 (t1_1 * __this , const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_439_TI_var = il2cpp_codegen_type_info_from_index(16);
s_Il2CppMethodIntialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(t1_439_TI_var);
t1_439 * L_0 = m1_4467(NULL, NULL);
t1_175 * L_1 = m1_4478(L_0, NULL);
t1_217 * L_2 = (t1_217 *)VirtFuncInvoker0< t1_217 * >::Invoke(15 /* System.Globalization.DateTimeFormatInfo System.Globalization.CultureInfo::get_DateTimeFormat() */, L_1);
return L_2;
}
}
extern TypeInfo* t1_217_TI_var;
extern "C" t1_217 * m1_1984 (t1_1 * __this , const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_217_TI_var = il2cpp_codegen_type_info_from_index(214);
s_Il2CppMethodIntialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(t1_217_TI_var);
t1_217 * L_0 = ((t1_217_SFs*)t1_217_TI_var->static_fields)->f9;
if (L_0)
{
goto IL_0023;
}
}
{
t1_217 * L_1 = (t1_217 *)il2cpp_codegen_object_new (t1_217_TI_var);
m1_1958(L_1, NULL);
IL2CPP_RUNTIME_CLASS_INIT(t1_217_TI_var);
t1_217 * L_2 = m1_1962(NULL, L_1, NULL);
((t1_217_SFs*)t1_217_TI_var->static_fields)->f9 = L_2;
t1_217 * L_3 = ((t1_217_SFs*)t1_217_TI_var->static_fields)->f9;
m1_1996(L_3, NULL);
}
IL_0023:
{
IL2CPP_RUNTIME_CLASS_INIT(t1_217_TI_var);
t1_217 * L_4 = ((t1_217_SFs*)t1_217_TI_var->static_fields)->f9;
return L_4;
}
}
extern "C" t1_211 * m1_1985 (t1_217 * __this, const MethodInfo* method)
{
{
t1_211 * L_0 = (__this->f26);
return L_0;
}
}
extern TypeInfo* t1_217_TI_var;
extern TypeInfo* t1_740_TI_var;
extern TypeInfo* t1_701_TI_var;
extern "C" void m1_1986 (t1_217 * __this, t1_211 * p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_217_TI_var = il2cpp_codegen_type_info_from_index(214);
t1_740_TI_var = il2cpp_codegen_type_info_from_index(71);
t1_701_TI_var = il2cpp_codegen_type_info_from_index(2);
s_Il2CppMethodIntialized = true;
}
{
bool L_0 = m1_1961(__this, NULL);
if (!L_0)
{
goto IL_0016;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(t1_217_TI_var);
t1_18* L_1 = ((t1_217_SFs*)t1_217_TI_var->static_fields)->f1;
t1_740 * L_2 = (t1_740 *)il2cpp_codegen_object_new (t1_740_TI_var);
m1_5030(L_2, L_1, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_2);
}
IL_0016:
{
t1_211 * L_3 = p0;
if (L_3)
{
goto IL_0022;
}
}
{
t1_701 * L_4 = (t1_701 *)il2cpp_codegen_object_new (t1_701_TI_var);
m1_4569(L_4, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_4);
}
IL_0022:
{
t1_211 * L_5 = p0;
__this->f26 = L_5;
return;
}
}
extern "C" t1_18* m1_1987 (t1_217 * __this, const MethodInfo* method)
{
{
t1_18* L_0 = (__this->f22);
return L_0;
}
}
extern Il2CppCodeGenString* _stringLiteral680;
extern "C" t1_18* m1_1988 (t1_217 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
_stringLiteral680 = il2cpp_codegen_string_literal_from_index(680);
s_Il2CppMethodIntialized = true;
}
{
return _stringLiteral680;
}
}
extern "C" t1_18* m1_1989 (t1_217 * __this, const MethodInfo* method)
{
{
t1_18* L_0 = (__this->f23);
return L_0;
}
}
extern "C" t1_18* m1_1990 (t1_217 * __this, const MethodInfo* method)
{
{
t1_18* L_0 = (__this->f24);
return L_0;
}
}
extern "C" t1_212* m1_1991 (t1_217 * __this, const MethodInfo* method)
{
{
m1_1992(__this, NULL);
t1_212* L_0 = (__this->f57);
il2cpp_codegen_memory_barrier();
return (t1_212*)L_0;
}
}
extern const Il2CppType* t1_18_0_0_0_var;
extern TypeInfo* t1_126_TI_var;
extern TypeInfo* t1_37_TI_var;
extern TypeInfo* t1_212_TI_var;
extern "C" void m1_1992 (t1_217 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_18_0_0_0_var = il2cpp_codegen_type_from_index(11);
t1_126_TI_var = il2cpp_codegen_type_info_from_index(55);
t1_37_TI_var = il2cpp_codegen_type_info_from_index(3);
t1_212_TI_var = il2cpp_codegen_type_info_from_index(32);
s_Il2CppMethodIntialized = true;
}
t1_126 * V_0 = {0};
{
t1_212* L_0 = (__this->f57);
il2cpp_codegen_memory_barrier();
if (!L_0)
{
goto IL_000e;
}
}
{
return;
}
IL_000e:
{
t1_126 * L_1 = (t1_126 *)il2cpp_codegen_object_new (t1_126_TI_var);
m1_1590(L_1, NULL);
V_0 = L_1;
t1_126 * L_2 = V_0;
t1_212* L_3 = m1_1993(__this, ((int32_t)100), NULL);
VirtActionInvoker1< t1_1 * >::Invoke(44 /* System.Void System.Collections.ArrayList::AddRange(System.Collections.ICollection) */, L_2, (t1_1 *)(t1_1 *)L_3);
t1_126 * L_4 = V_0;
t1_212* L_5 = m1_1993(__this, ((int32_t)68), NULL);
VirtActionInvoker1< t1_1 * >::Invoke(44 /* System.Void System.Collections.ArrayList::AddRange(System.Collections.ICollection) */, L_4, (t1_1 *)(t1_1 *)L_5);
t1_126 * L_6 = V_0;
t1_212* L_7 = m1_1993(__this, ((int32_t)103), NULL);
VirtActionInvoker1< t1_1 * >::Invoke(44 /* System.Void System.Collections.ArrayList::AddRange(System.Collections.ICollection) */, L_6, (t1_1 *)(t1_1 *)L_7);
t1_126 * L_8 = V_0;
t1_212* L_9 = m1_1993(__this, ((int32_t)71), NULL);
VirtActionInvoker1< t1_1 * >::Invoke(44 /* System.Void System.Collections.ArrayList::AddRange(System.Collections.ICollection) */, L_8, (t1_1 *)(t1_1 *)L_9);
t1_126 * L_10 = V_0;
t1_212* L_11 = m1_1993(__this, ((int32_t)102), NULL);
VirtActionInvoker1< t1_1 * >::Invoke(44 /* System.Void System.Collections.ArrayList::AddRange(System.Collections.ICollection) */, L_10, (t1_1 *)(t1_1 *)L_11);
t1_126 * L_12 = V_0;
t1_212* L_13 = m1_1993(__this, ((int32_t)70), NULL);
VirtActionInvoker1< t1_1 * >::Invoke(44 /* System.Void System.Collections.ArrayList::AddRange(System.Collections.ICollection) */, L_12, (t1_1 *)(t1_1 *)L_13);
t1_126 * L_14 = V_0;
t1_212* L_15 = m1_1993(__this, ((int32_t)109), NULL);
VirtActionInvoker1< t1_1 * >::Invoke(44 /* System.Void System.Collections.ArrayList::AddRange(System.Collections.ICollection) */, L_14, (t1_1 *)(t1_1 *)L_15);
t1_126 * L_16 = V_0;
t1_212* L_17 = m1_1993(__this, ((int32_t)77), NULL);
VirtActionInvoker1< t1_1 * >::Invoke(44 /* System.Void System.Collections.ArrayList::AddRange(System.Collections.ICollection) */, L_16, (t1_1 *)(t1_1 *)L_17);
t1_126 * L_18 = V_0;
t1_212* L_19 = m1_1993(__this, ((int32_t)114), NULL);
VirtActionInvoker1< t1_1 * >::Invoke(44 /* System.Void System.Collections.ArrayList::AddRange(System.Collections.ICollection) */, L_18, (t1_1 *)(t1_1 *)L_19);
t1_126 * L_20 = V_0;
t1_212* L_21 = m1_1993(__this, ((int32_t)82), NULL);
VirtActionInvoker1< t1_1 * >::Invoke(44 /* System.Void System.Collections.ArrayList::AddRange(System.Collections.ICollection) */, L_20, (t1_1 *)(t1_1 *)L_21);
t1_126 * L_22 = V_0;
t1_212* L_23 = m1_1993(__this, ((int32_t)115), NULL);
VirtActionInvoker1< t1_1 * >::Invoke(44 /* System.Void System.Collections.ArrayList::AddRange(System.Collections.ICollection) */, L_22, (t1_1 *)(t1_1 *)L_23);
t1_126 * L_24 = V_0;
t1_212* L_25 = m1_1993(__this, ((int32_t)116), NULL);
VirtActionInvoker1< t1_1 * >::Invoke(44 /* System.Void System.Collections.ArrayList::AddRange(System.Collections.ICollection) */, L_24, (t1_1 *)(t1_1 *)L_25);
t1_126 * L_26 = V_0;
t1_212* L_27 = m1_1993(__this, ((int32_t)84), NULL);
VirtActionInvoker1< t1_1 * >::Invoke(44 /* System.Void System.Collections.ArrayList::AddRange(System.Collections.ICollection) */, L_26, (t1_1 *)(t1_1 *)L_27);
t1_126 * L_28 = V_0;
t1_212* L_29 = m1_1993(__this, ((int32_t)117), NULL);
VirtActionInvoker1< t1_1 * >::Invoke(44 /* System.Void System.Collections.ArrayList::AddRange(System.Collections.ICollection) */, L_28, (t1_1 *)(t1_1 *)L_29);
t1_126 * L_30 = V_0;
t1_212* L_31 = m1_1993(__this, ((int32_t)85), NULL);
VirtActionInvoker1< t1_1 * >::Invoke(44 /* System.Void System.Collections.ArrayList::AddRange(System.Collections.ICollection) */, L_30, (t1_1 *)(t1_1 *)L_31);
t1_126 * L_32 = V_0;
t1_212* L_33 = m1_1993(__this, ((int32_t)121), NULL);
VirtActionInvoker1< t1_1 * >::Invoke(44 /* System.Void System.Collections.ArrayList::AddRange(System.Collections.ICollection) */, L_32, (t1_1 *)(t1_1 *)L_33);
t1_126 * L_34 = V_0;
t1_212* L_35 = m1_1993(__this, ((int32_t)89), NULL);
VirtActionInvoker1< t1_1 * >::Invoke(44 /* System.Void System.Collections.ArrayList::AddRange(System.Collections.ICollection) */, L_34, (t1_1 *)(t1_1 *)L_35);
t1_126 * L_36 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(t1_37_TI_var);
t1_37 * L_37 = m1_894(NULL, LoadTypeToken(t1_18_0_0_0_var), NULL);
t1_33 * L_38 = (t1_33 *)VirtFuncInvoker1< t1_33 *, t1_37 * >::Invoke(48 /* System.Array System.Collections.ArrayList::ToArray(System.Type) */, L_36, L_37);
il2cpp_codegen_memory_barrier();
__this->f57 = (t1_212*)((t1_212*)Castclass(L_38, t1_212_TI_var));
return;
}
}
extern TypeInfo* t1_212_TI_var;
extern TypeInfo* t1_18_TI_var;
extern TypeInfo* t1_653_TI_var;
extern Il2CppCodeGenString* _stringLiteral232;
extern Il2CppCodeGenString* _stringLiteral681;
extern "C" t1_212* m1_1993 (t1_217 * __this, uint16_t p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_212_TI_var = il2cpp_codegen_type_info_from_index(32);
t1_18_TI_var = il2cpp_codegen_type_info_from_index(11);
t1_653_TI_var = il2cpp_codegen_type_info_from_index(4);
_stringLiteral232 = il2cpp_codegen_string_literal_from_index(232);
_stringLiteral681 = il2cpp_codegen_string_literal_from_index(681);
s_Il2CppMethodIntialized = true;
}
t1_212* V_0 = {0};
uint16_t V_1 = 0x0;
{
uint16_t L_0 = p0;
V_1 = L_0;
uint16_t L_1 = V_1;
if (((int32_t)((int32_t)L_1-(int32_t)((int32_t)82))) == 0)
{
goto IL_02cb;
}
if (((int32_t)((int32_t)L_1-(int32_t)((int32_t)82))) == 1)
{
goto IL_002b;
}
if (((int32_t)((int32_t)L_1-(int32_t)((int32_t)82))) == 2)
{
goto IL_00fb;
}
if (((int32_t)((int32_t)L_1-(int32_t)((int32_t)82))) == 3)
{
goto IL_01e3;
}
if (((int32_t)((int32_t)L_1-(int32_t)((int32_t)82))) == 4)
{
goto IL_002b;
}
if (((int32_t)((int32_t)L_1-(int32_t)((int32_t)82))) == 5)
{
goto IL_002b;
}
if (((int32_t)((int32_t)L_1-(int32_t)((int32_t)82))) == 6)
{
goto IL_002b;
}
if (((int32_t)((int32_t)L_1-(int32_t)((int32_t)82))) == 7)
{
goto IL_029b;
}
}
IL_002b:
{
uint16_t L_2 = V_1;
if (((int32_t)((int32_t)L_2-(int32_t)((int32_t)114))) == 0)
{
goto IL_02cb;
}
if (((int32_t)((int32_t)L_2-(int32_t)((int32_t)114))) == 1)
{
goto IL_02db;
}
if (((int32_t)((int32_t)L_2-(int32_t)((int32_t)114))) == 2)
{
goto IL_012b;
}
if (((int32_t)((int32_t)L_2-(int32_t)((int32_t)114))) == 3)
{
goto IL_02eb;
}
if (((int32_t)((int32_t)L_2-(int32_t)((int32_t)114))) == 4)
{
goto IL_0054;
}
if (((int32_t)((int32_t)L_2-(int32_t)((int32_t)114))) == 5)
{
goto IL_0054;
}
if (((int32_t)((int32_t)L_2-(int32_t)((int32_t)114))) == 6)
{
goto IL_0054;
}
if (((int32_t)((int32_t)L_2-(int32_t)((int32_t)114))) == 7)
{
goto IL_029b;
}
}
IL_0054:
{
uint16_t L_3 = V_1;
if (((int32_t)((int32_t)L_3-(int32_t)((int32_t)68))) == 0)
{
goto IL_009b;
}
if (((int32_t)((int32_t)L_3-(int32_t)((int32_t)68))) == 1)
{
goto IL_006d;
}
if (((int32_t)((int32_t)L_3-(int32_t)((int32_t)68))) == 2)
{
goto IL_01e3;
}
if (((int32_t)((int32_t)L_3-(int32_t)((int32_t)68))) == 3)
{
goto IL_015b;
}
}
IL_006d:
{
uint16_t L_4 = V_1;
if (((int32_t)((int32_t)L_4-(int32_t)((int32_t)100))) == 0)
{
goto IL_00cb;
}
if (((int32_t)((int32_t)L_4-(int32_t)((int32_t)100))) == 1)
{
goto IL_0086;
}
if (((int32_t)((int32_t)L_4-(int32_t)((int32_t)100))) == 2)
{
goto IL_0227;
}
if (((int32_t)((int32_t)L_4-(int32_t)((int32_t)100))) == 3)
{
goto IL_019f;
}
}
IL_0086:
{
uint16_t L_5 = V_1;
if ((((int32_t)L_5) == ((int32_t)((int32_t)77))))
{
goto IL_026b;
}
}
{
uint16_t L_6 = V_1;
if ((((int32_t)L_6) == ((int32_t)((int32_t)109))))
{
goto IL_026b;
}
}
{
goto IL_02fb;
}
IL_009b:
{
t1_212* L_7 = (__this->f33);
if (!L_7)
{
goto IL_00bb;
}
}
{
t1_212* L_8 = (__this->f33);
if ((((int32_t)(((int32_t)((int32_t)(((t1_33 *)L_8)->max_length))))) <= ((int32_t)0)))
{
goto IL_00bb;
}
}
{
t1_212* L_9 = (__this->f33);
return L_9;
}
IL_00bb:
{
t1_212* L_10 = ((t1_212*)SZArrayNew(t1_212_TI_var, 1));
t1_18* L_11 = m1_1976(__this, NULL);
ArrayElementTypeCheck (L_10, L_11);
*((t1_18**)(t1_18**)SZArrayLdElema(L_10, 0, sizeof(t1_18*))) = (t1_18*)L_11;
return L_10;
}
IL_00cb:
{
t1_212* L_12 = (__this->f32);
if (!L_12)
{
goto IL_00eb;
}
}
{
t1_212* L_13 = (__this->f32);
if ((((int32_t)(((int32_t)((int32_t)(((t1_33 *)L_13)->max_length))))) <= ((int32_t)0)))
{
goto IL_00eb;
}
}
{
t1_212* L_14 = (__this->f32);
return L_14;
}
IL_00eb:
{
t1_212* L_15 = ((t1_212*)SZArrayNew(t1_212_TI_var, 1));
t1_18* L_16 = m1_1977(__this, NULL);
ArrayElementTypeCheck (L_15, L_16);
*((t1_18**)(t1_18**)SZArrayLdElema(L_15, 0, sizeof(t1_18*))) = (t1_18*)L_16;
return L_15;
}
IL_00fb:
{
t1_212* L_17 = (__this->f35);
if (!L_17)
{
goto IL_011b;
}
}
{
t1_212* L_18 = (__this->f35);
if ((((int32_t)(((int32_t)((int32_t)(((t1_33 *)L_18)->max_length))))) <= ((int32_t)0)))
{
goto IL_011b;
}
}
{
t1_212* L_19 = (__this->f35);
return L_19;
}
IL_011b:
{
t1_212* L_20 = ((t1_212*)SZArrayNew(t1_212_TI_var, 1));
t1_18* L_21 = m1_1979(__this, NULL);
ArrayElementTypeCheck (L_20, L_21);
*((t1_18**)(t1_18**)SZArrayLdElema(L_20, 0, sizeof(t1_18*))) = (t1_18*)L_21;
return L_20;
}
IL_012b:
{
t1_212* L_22 = (__this->f34);
if (!L_22)
{
goto IL_014b;
}
}
{
t1_212* L_23 = (__this->f34);
if ((((int32_t)(((int32_t)((int32_t)(((t1_33 *)L_23)->max_length))))) <= ((int32_t)0)))
{
goto IL_014b;
}
}
{
t1_212* L_24 = (__this->f34);
return L_24;
}
IL_014b:
{
t1_212* L_25 = ((t1_212*)SZArrayNew(t1_212_TI_var, 1));
t1_18* L_26 = m1_1978(__this, NULL);
ArrayElementTypeCheck (L_25, L_26);
*((t1_18**)(t1_18**)SZArrayLdElema(L_25, 0, sizeof(t1_18*))) = (t1_18*)L_26;
return L_25;
}
IL_015b:
{
t1_212* L_27 = (__this->f32);
t1_212* L_28 = (__this->f35);
t1_212* L_29 = m1_1997(__this, L_27, L_28, NULL);
V_0 = L_29;
t1_212* L_30 = V_0;
if (!L_30)
{
goto IL_017f;
}
}
{
t1_212* L_31 = V_0;
if ((((int32_t)(((int32_t)((int32_t)(((t1_33 *)L_31)->max_length))))) <= ((int32_t)0)))
{
goto IL_017f;
}
}
{
t1_212* L_32 = V_0;
return L_32;
}
IL_017f:
{
t1_212* L_33 = ((t1_212*)SZArrayNew(t1_212_TI_var, 1));
t1_18* L_34 = m1_1977(__this, NULL);
t1_18* L_35 = m1_1979(__this, NULL);
IL2CPP_RUNTIME_CLASS_INIT(t1_18_TI_var);
t1_18* L_36 = m1_421(NULL, L_34, _stringLiteral232, L_35, NULL);
ArrayElementTypeCheck (L_33, L_36);
*((t1_18**)(t1_18**)SZArrayLdElema(L_33, 0, sizeof(t1_18*))) = (t1_18*)L_36;
return L_33;
}
IL_019f:
{
t1_212* L_37 = (__this->f32);
t1_212* L_38 = (__this->f34);
t1_212* L_39 = m1_1997(__this, L_37, L_38, NULL);
V_0 = L_39;
t1_212* L_40 = V_0;
if (!L_40)
{
goto IL_01c3;
}
}
{
t1_212* L_41 = V_0;
if ((((int32_t)(((int32_t)((int32_t)(((t1_33 *)L_41)->max_length))))) <= ((int32_t)0)))
{
goto IL_01c3;
}
}
{
t1_212* L_42 = V_0;
return L_42;
}
IL_01c3:
{
t1_212* L_43 = ((t1_212*)SZArrayNew(t1_212_TI_var, 1));
t1_18* L_44 = m1_1977(__this, NULL);
t1_18* L_45 = m1_1978(__this, NULL);
IL2CPP_RUNTIME_CLASS_INIT(t1_18_TI_var);
t1_18* L_46 = m1_421(NULL, L_44, _stringLiteral232, L_45, NULL);
ArrayElementTypeCheck (L_43, L_46);
*((t1_18**)(t1_18**)SZArrayLdElema(L_43, 0, sizeof(t1_18*))) = (t1_18*)L_46;
return L_43;
}
IL_01e3:
{
t1_212* L_47 = (__this->f33);
t1_212* L_48 = (__this->f35);
t1_212* L_49 = m1_1997(__this, L_47, L_48, NULL);
V_0 = L_49;
t1_212* L_50 = V_0;
if (!L_50)
{
goto IL_0207;
}
}
{
t1_212* L_51 = V_0;
if ((((int32_t)(((int32_t)((int32_t)(((t1_33 *)L_51)->max_length))))) <= ((int32_t)0)))
{
goto IL_0207;
}
}
{
t1_212* L_52 = V_0;
return L_52;
}
IL_0207:
{
t1_212* L_53 = ((t1_212*)SZArrayNew(t1_212_TI_var, 1));
t1_18* L_54 = m1_1976(__this, NULL);
t1_18* L_55 = m1_1979(__this, NULL);
IL2CPP_RUNTIME_CLASS_INIT(t1_18_TI_var);
t1_18* L_56 = m1_421(NULL, L_54, _stringLiteral232, L_55, NULL);
ArrayElementTypeCheck (L_53, L_56);
*((t1_18**)(t1_18**)SZArrayLdElema(L_53, 0, sizeof(t1_18*))) = (t1_18*)L_56;
return L_53;
}
IL_0227:
{
t1_212* L_57 = (__this->f33);
t1_212* L_58 = (__this->f34);
t1_212* L_59 = m1_1997(__this, L_57, L_58, NULL);
V_0 = L_59;
t1_212* L_60 = V_0;
if (!L_60)
{
goto IL_024b;
}
}
{
t1_212* L_61 = V_0;
if ((((int32_t)(((int32_t)((int32_t)(((t1_33 *)L_61)->max_length))))) <= ((int32_t)0)))
{
goto IL_024b;
}
}
{
t1_212* L_62 = V_0;
return L_62;
}
IL_024b:
{
t1_212* L_63 = ((t1_212*)SZArrayNew(t1_212_TI_var, 1));
t1_18* L_64 = m1_1976(__this, NULL);
t1_18* L_65 = m1_1978(__this, NULL);
IL2CPP_RUNTIME_CLASS_INIT(t1_18_TI_var);
t1_18* L_66 = m1_421(NULL, L_64, _stringLiteral232, L_65, NULL);
ArrayElementTypeCheck (L_63, L_66);
*((t1_18**)(t1_18**)SZArrayLdElema(L_63, 0, sizeof(t1_18*))) = (t1_18*)L_66;
return L_63;
}
IL_026b:
{
t1_212* L_67 = (__this->f36);
if (!L_67)
{
goto IL_028b;
}
}
{
t1_212* L_68 = (__this->f36);
if ((((int32_t)(((int32_t)((int32_t)(((t1_33 *)L_68)->max_length))))) <= ((int32_t)0)))
{
goto IL_028b;
}
}
{
t1_212* L_69 = (__this->f36);
return L_69;
}
IL_028b:
{
t1_212* L_70 = ((t1_212*)SZArrayNew(t1_212_TI_var, 1));
t1_18* L_71 = m1_1980(__this, NULL);
ArrayElementTypeCheck (L_70, L_71);
*((t1_18**)(t1_18**)SZArrayLdElema(L_70, 0, sizeof(t1_18*))) = (t1_18*)L_71;
return L_70;
}
IL_029b:
{
t1_212* L_72 = (__this->f37);
if (!L_72)
{
goto IL_02bb;
}
}
{
t1_212* L_73 = (__this->f37);
if ((((int32_t)(((int32_t)((int32_t)(((t1_33 *)L_73)->max_length))))) <= ((int32_t)0)))
{
goto IL_02bb;
}
}
{
t1_212* L_74 = (__this->f37);
return L_74;
}
IL_02bb:
{
t1_212* L_75 = ((t1_212*)SZArrayNew(t1_212_TI_var, 1));
t1_18* L_76 = m1_1981(__this, NULL);
ArrayElementTypeCheck (L_75, L_76);
*((t1_18**)(t1_18**)SZArrayLdElema(L_75, 0, sizeof(t1_18*))) = (t1_18*)L_76;
return L_75;
}
IL_02cb:
{
t1_212* L_77 = ((t1_212*)SZArrayNew(t1_212_TI_var, 1));
t1_18* L_78 = m1_1987(__this, NULL);
ArrayElementTypeCheck (L_77, L_78);
*((t1_18**)(t1_18**)SZArrayLdElema(L_77, 0, sizeof(t1_18*))) = (t1_18*)L_78;
return L_77;
}
IL_02db:
{
t1_212* L_79 = ((t1_212*)SZArrayNew(t1_212_TI_var, 1));
t1_18* L_80 = m1_1989(__this, NULL);
ArrayElementTypeCheck (L_79, L_80);
*((t1_18**)(t1_18**)SZArrayLdElema(L_79, 0, sizeof(t1_18*))) = (t1_18*)L_80;
return L_79;
}
IL_02eb:
{
t1_212* L_81 = ((t1_212*)SZArrayNew(t1_212_TI_var, 1));
t1_18* L_82 = m1_1990(__this, NULL);
ArrayElementTypeCheck (L_81, L_82);
*((t1_18**)(t1_18**)SZArrayLdElema(L_81, 0, sizeof(t1_18*))) = (t1_18*)L_82;
return L_81;
}
IL_02fb:
{
t1_653 * L_83 = (t1_653 *)il2cpp_codegen_object_new (t1_653_TI_var);
m1_4561(L_83, _stringLiteral681, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_83);
}
}
extern TypeInfo* t1_702_TI_var;
extern "C" t1_18* m1_1994 (t1_217 * __this, int32_t p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_702_TI_var = il2cpp_codegen_type_info_from_index(27);
s_Il2CppMethodIntialized = true;
}
int32_t V_0 = 0;
{
int32_t L_0 = p0;
V_0 = L_0;
int32_t L_1 = V_0;
if ((((int32_t)L_1) < ((int32_t)0)))
{
goto IL_0010;
}
}
{
int32_t L_2 = V_0;
if ((((int32_t)L_2) <= ((int32_t)6)))
{
goto IL_0016;
}
}
IL_0010:
{
t1_702 * L_3 = (t1_702 *)il2cpp_codegen_object_new (t1_702_TI_var);
m1_4573(L_3, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_3);
}
IL_0016:
{
t1_212* L_4 = (__this->f29);
int32_t L_5 = V_0;
int32_t L_6 = L_5;
return (*(t1_18**)(t1_18**)SZArrayLdElema(L_4, L_6, sizeof(t1_18*)));
}
}
extern TypeInfo* t1_702_TI_var;
extern "C" t1_18* m1_1995 (t1_217 * __this, int32_t p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_702_TI_var = il2cpp_codegen_type_info_from_index(27);
s_Il2CppMethodIntialized = true;
}
int32_t V_0 = 0;
{
int32_t L_0 = p0;
V_0 = L_0;
int32_t L_1 = V_0;
if ((((int32_t)L_1) < ((int32_t)0)))
{
goto IL_0010;
}
}
{
int32_t L_2 = V_0;
if ((((int32_t)L_2) <= ((int32_t)6)))
{
goto IL_0016;
}
}
IL_0010:
{
t1_702 * L_3 = (t1_702 *)il2cpp_codegen_object_new (t1_702_TI_var);
m1_4573(L_3, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_3);
}
IL_0016:
{
t1_212* L_4 = (__this->f28);
int32_t L_5 = V_0;
int32_t L_6 = L_5;
return (*(t1_18**)(t1_18**)SZArrayLdElema(L_4, L_6, sizeof(t1_18*)));
}
}
extern TypeInfo* t1_212_TI_var;
extern Il2CppCodeGenString* _stringLiteral623;
extern Il2CppCodeGenString* _stringLiteral624;
extern Il2CppCodeGenString* _stringLiteral626;
extern Il2CppCodeGenString* _stringLiteral625;
extern Il2CppCodeGenString* _stringLiteral682;
extern Il2CppCodeGenString* _stringLiteral683;
extern Il2CppCodeGenString* _stringLiteral684;
extern Il2CppCodeGenString* _stringLiteral627;
extern Il2CppCodeGenString* _stringLiteral628;
extern "C" void m1_1996 (t1_217 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_212_TI_var = il2cpp_codegen_type_info_from_index(32);
_stringLiteral623 = il2cpp_codegen_string_literal_from_index(623);
_stringLiteral624 = il2cpp_codegen_string_literal_from_index(624);
_stringLiteral626 = il2cpp_codegen_string_literal_from_index(626);
_stringLiteral625 = il2cpp_codegen_string_literal_from_index(625);
_stringLiteral682 = il2cpp_codegen_string_literal_from_index(682);
_stringLiteral683 = il2cpp_codegen_string_literal_from_index(683);
_stringLiteral684 = il2cpp_codegen_string_literal_from_index(684);
_stringLiteral627 = il2cpp_codegen_string_literal_from_index(627);
_stringLiteral628 = il2cpp_codegen_string_literal_from_index(628);
s_Il2CppMethodIntialized = true;
}
{
t1_212* L_0 = ((t1_212*)SZArrayNew(t1_212_TI_var, 1));
ArrayElementTypeCheck (L_0, _stringLiteral623);
*((t1_18**)(t1_18**)SZArrayLdElema(L_0, 0, sizeof(t1_18*))) = (t1_18*)_stringLiteral623;
__this->f32 = L_0;
t1_212* L_1 = ((t1_212*)SZArrayNew(t1_212_TI_var, 1));
ArrayElementTypeCheck (L_1, _stringLiteral624);
*((t1_18**)(t1_18**)SZArrayLdElema(L_1, 0, sizeof(t1_18*))) = (t1_18*)_stringLiteral624;
__this->f33 = L_1;
t1_212* L_2 = ((t1_212*)SZArrayNew(t1_212_TI_var, 1));
ArrayElementTypeCheck (L_2, _stringLiteral626);
*((t1_18**)(t1_18**)SZArrayLdElema(L_2, 0, sizeof(t1_18*))) = (t1_18*)_stringLiteral626;
__this->f35 = L_2;
t1_212* L_3 = ((t1_212*)SZArrayNew(t1_212_TI_var, 4));
ArrayElementTypeCheck (L_3, _stringLiteral625);
*((t1_18**)(t1_18**)SZArrayLdElema(L_3, 0, sizeof(t1_18*))) = (t1_18*)_stringLiteral625;
t1_212* L_4 = L_3;
ArrayElementTypeCheck (L_4, _stringLiteral682);
*((t1_18**)(t1_18**)SZArrayLdElema(L_4, 1, sizeof(t1_18*))) = (t1_18*)_stringLiteral682;
t1_212* L_5 = L_4;
ArrayElementTypeCheck (L_5, _stringLiteral683);
*((t1_18**)(t1_18**)SZArrayLdElema(L_5, 2, sizeof(t1_18*))) = (t1_18*)_stringLiteral683;
t1_212* L_6 = L_5;
ArrayElementTypeCheck (L_6, _stringLiteral684);
*((t1_18**)(t1_18**)SZArrayLdElema(L_6, 3, sizeof(t1_18*))) = (t1_18*)_stringLiteral684;
__this->f34 = L_6;
t1_212* L_7 = ((t1_212*)SZArrayNew(t1_212_TI_var, 1));
ArrayElementTypeCheck (L_7, _stringLiteral627);
*((t1_18**)(t1_18**)SZArrayLdElema(L_7, 0, sizeof(t1_18*))) = (t1_18*)_stringLiteral627;
__this->f36 = L_7;
t1_212* L_8 = ((t1_212*)SZArrayNew(t1_212_TI_var, 1));
ArrayElementTypeCheck (L_8, _stringLiteral628);
*((t1_18**)(t1_18**)SZArrayLdElema(L_8, 0, sizeof(t1_18*))) = (t1_18*)_stringLiteral628;
__this->f37 = L_8;
return;
}
}
extern TypeInfo* t1_212_TI_var;
extern TypeInfo* t1_18_TI_var;
extern Il2CppCodeGenString* _stringLiteral232;
extern "C" t1_212* m1_1997 (t1_217 * __this, t1_212* p0, t1_212* p1, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_212_TI_var = il2cpp_codegen_type_info_from_index(32);
t1_18_TI_var = il2cpp_codegen_type_info_from_index(11);
_stringLiteral232 = il2cpp_codegen_string_literal_from_index(232);
s_Il2CppMethodIntialized = true;
}
t1_212* V_0 = {0};
int32_t V_1 = 0;
t1_18* V_2 = {0};
t1_212* V_3 = {0};
int32_t V_4 = 0;
t1_18* V_5 = {0};
t1_212* V_6 = {0};
int32_t V_7 = 0;
{
t1_212* L_0 = p0;
if (!L_0)
{
goto IL_0073;
}
}
{
t1_212* L_1 = p1;
if (!L_1)
{
goto IL_0073;
}
}
{
t1_212* L_2 = p0;
t1_212* L_3 = p1;
V_0 = ((t1_212*)SZArrayNew(t1_212_TI_var, ((int32_t)((int32_t)(((int32_t)((int32_t)(((t1_33 *)L_2)->max_length))))*(int32_t)(((int32_t)((int32_t)(((t1_33 *)L_3)->max_length))))))));
V_1 = 0;
t1_212* L_4 = p0;
V_3 = L_4;
V_4 = 0;
goto IL_0067;
}
IL_0025:
{
t1_212* L_5 = V_3;
int32_t L_6 = V_4;
int32_t L_7 = L_6;
V_2 = (*(t1_18**)(t1_18**)SZArrayLdElema(L_5, L_7, sizeof(t1_18*)));
t1_212* L_8 = p1;
V_6 = L_8;
V_7 = 0;
goto IL_0056;
}
IL_0035:
{
t1_212* L_9 = V_6;
int32_t L_10 = V_7;
int32_t L_11 = L_10;
V_5 = (*(t1_18**)(t1_18**)SZArrayLdElema(L_9, L_11, sizeof(t1_18*)));
t1_212* L_12 = V_0;
int32_t L_13 = V_1;
int32_t L_14 = L_13;
V_1 = ((int32_t)((int32_t)L_14+(int32_t)1));
t1_18* L_15 = V_2;
t1_18* L_16 = V_5;
IL2CPP_RUNTIME_CLASS_INIT(t1_18_TI_var);
t1_18* L_17 = m1_421(NULL, L_15, _stringLiteral232, L_16, NULL);
ArrayElementTypeCheck (L_12, L_17);
*((t1_18**)(t1_18**)SZArrayLdElema(L_12, L_14, sizeof(t1_18*))) = (t1_18*)L_17;
int32_t L_18 = V_7;
V_7 = ((int32_t)((int32_t)L_18+(int32_t)1));
}
IL_0056:
{
int32_t L_19 = V_7;
t1_212* L_20 = V_6;
if ((((int32_t)L_19) < ((int32_t)(((int32_t)((int32_t)(((t1_33 *)L_20)->max_length)))))))
{
goto IL_0035;
}
}
{
int32_t L_21 = V_4;
V_4 = ((int32_t)((int32_t)L_21+(int32_t)1));
}
IL_0067:
{
int32_t L_22 = V_4;
t1_212* L_23 = V_3;
if ((((int32_t)L_22) < ((int32_t)(((int32_t)((int32_t)(((t1_33 *)L_23)->max_length)))))))
{
goto IL_0025;
}
}
{
t1_212* L_24 = V_0;
return L_24;
}
IL_0073:
{
return (t1_212*)NULL;
}
}
extern "C" void m1_1998 (t1_221 * __this, t1_140 p0, t1_140 p1, t1_222 p2, const MethodInfo* method)
{
{
m1_0(__this, NULL);
t1_140 L_0 = p0;
__this->f0 = L_0;
t1_140 L_1 = p1;
__this->f1 = L_1;
t1_222 L_2 = p2;
__this->f2 = L_2;
return;
}
}
extern "C" t1_140 m1_1999 (t1_221 * __this, const MethodInfo* method)
{
{
t1_140 L_0 = (__this->f0);
return L_0;
}
}
extern "C" t1_140 m1_2000 (t1_221 * __this, const MethodInfo* method)
{
{
t1_140 L_0 = (__this->f1);
return L_0;
}
}
extern "C" t1_222 m1_2001 (t1_221 * __this, const MethodInfo* method)
{
{
t1_222 L_0 = (__this->f2);
return L_0;
}
}
extern TypeInfo* t1_212_TI_var;
extern Il2CppCodeGenString* _stringLiteral685;
extern Il2CppCodeGenString* _stringLiteral686;
extern "C" void m1_2002 (t1_223 * __this, int32_t p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_212_TI_var = il2cpp_codegen_type_info_from_index(32);
_stringLiteral685 = il2cpp_codegen_string_literal_from_index(685);
_stringLiteral686 = il2cpp_codegen_string_literal_from_index(686);
s_Il2CppMethodIntialized = true;
}
{
m1_1868(__this, NULL);
int32_t L_0 = p0;
VirtActionInvoker1< int32_t >::Invoke(12 /* System.Void System.Globalization.GregorianCalendar::set_CalendarType(System.Globalization.GregorianCalendarTypes) */, __this, L_0);
t1_212* L_1 = ((t1_212*)SZArrayNew(t1_212_TI_var, 1));
ArrayElementTypeCheck (L_1, _stringLiteral685);
*((t1_18**)(t1_18**)SZArrayLdElema(L_1, 0, sizeof(t1_18*))) = (t1_18*)_stringLiteral685;
((t1_211 *)__this)->f2 = L_1;
t1_212* L_2 = ((t1_212*)SZArrayNew(t1_212_TI_var, 1));
ArrayElementTypeCheck (L_2, _stringLiteral686);
*((t1_18**)(t1_18**)SZArrayLdElema(L_2, 0, sizeof(t1_18*))) = (t1_18*)_stringLiteral686;
((t1_211 *)__this)->f3 = L_2;
int32_t L_3 = (((t1_211 *)__this)->f1);
if ((!(((uint32_t)L_3) == ((uint32_t)((int32_t)99)))))
{
goto IL_004d;
}
}
{
((t1_211 *)__this)->f1 = ((int32_t)2029);
}
IL_004d:
{
return;
}
}
extern "C" void m1_2003 (t1_223 * __this, const MethodInfo* method)
{
{
m1_2002(__this, 1, NULL);
return;
}
}
extern TypeInfo* t1_173_TI_var;
extern "C" t1_173* m1_2004 (t1_223 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_173_TI_var = il2cpp_codegen_type_info_from_index(47);
s_Il2CppMethodIntialized = true;
}
{
t1_173* L_0 = ((t1_173*)SZArrayNew(t1_173_TI_var, 1));
*((int32_t*)(int32_t*)SZArrayLdElema(L_0, 0, sizeof(int32_t))) = (int32_t)1;
return L_0;
}
}
extern "C" void m1_2005 (t1_223 * __this, int32_t p0, const MethodInfo* method)
{
{
m1_1870(__this, NULL);
int32_t L_0 = p0;
__this->f4 = L_0;
return;
}
}
extern "C" int32_t m1_2006 (t1_223 * __this, t1_140 p0, const MethodInfo* method)
{
{
t1_140 L_0 = p0;
int32_t L_1 = m1_1884(NULL, L_0, NULL);
return L_1;
}
}
extern "C" int32_t m1_2007 (t1_223 * __this, t1_140 p0, const MethodInfo* method)
{
int32_t V_0 = 0;
{
t1_140 L_0 = p0;
int32_t L_1 = m1_1875(NULL, L_0, NULL);
V_0 = L_1;
int32_t L_2 = V_0;
int32_t L_3 = m1_1876(NULL, L_2, NULL);
return L_3;
}
}
extern "C" int32_t m1_2008 (t1_223 * __this, t1_140 p0, const MethodInfo* method)
{
{
return 1;
}
}
extern "C" int32_t m1_2009 (t1_223 * __this, t1_140 p0, const MethodInfo* method)
{
{
t1_140 L_0 = p0;
int32_t L_1 = m1_1885(NULL, L_0, NULL);
return L_1;
}
}
extern "C" int32_t m1_2010 (t1_223 * __this, t1_140 p0, const MethodInfo* method)
{
{
t1_140 L_0 = p0;
int32_t L_1 = m1_1886(NULL, L_0, NULL);
return L_1;
}
}
extern TypeInfo* t1_216_TI_var;
extern TypeInfo* t1_173_TI_var;
extern Il2CppCodeGenString* _stringLiteral687;
extern Il2CppCodeGenString* _stringLiteral140;
extern Il2CppCodeGenString* _stringLiteral49;
extern Il2CppCodeGenString* _stringLiteral229;
extern Il2CppCodeGenString* _stringLiteral688;
extern Il2CppCodeGenString* _stringLiteral689;
extern Il2CppCodeGenString* _stringLiteral690;
extern Il2CppCodeGenString* _stringLiteral691;
extern Il2CppCodeGenString* _stringLiteral692;
extern Il2CppCodeGenString* _stringLiteral693;
extern Il2CppCodeGenString* _stringLiteral694;
extern Il2CppCodeGenString* _stringLiteral695;
extern "C" void m1_2011 (t1_216 * __this, int32_t p0, bool p1, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_216_TI_var = il2cpp_codegen_type_info_from_index(14);
t1_173_TI_var = il2cpp_codegen_type_info_from_index(47);
_stringLiteral687 = il2cpp_codegen_string_literal_from_index(687);
_stringLiteral140 = il2cpp_codegen_string_literal_from_index(140);
_stringLiteral49 = il2cpp_codegen_string_literal_from_index(49);
_stringLiteral229 = il2cpp_codegen_string_literal_from_index(229);
_stringLiteral688 = il2cpp_codegen_string_literal_from_index(688);
_stringLiteral689 = il2cpp_codegen_string_literal_from_index(689);
_stringLiteral690 = il2cpp_codegen_string_literal_from_index(690);
_stringLiteral691 = il2cpp_codegen_string_literal_from_index(691);
_stringLiteral692 = il2cpp_codegen_string_literal_from_index(692);
_stringLiteral693 = il2cpp_codegen_string_literal_from_index(693);
_stringLiteral694 = il2cpp_codegen_string_literal_from_index(694);
_stringLiteral695 = il2cpp_codegen_string_literal_from_index(695);
s_Il2CppMethodIntialized = true;
}
int32_t V_0 = 0;
{
__this->f4 = _stringLiteral687;
__this->f5 = _stringLiteral140;
IL2CPP_RUNTIME_CLASS_INIT(t1_216_TI_var);
t1_212* L_0 = ((t1_216_SFs*)t1_216_TI_var->static_fields)->f38;
__this->f36 = L_0;
__this->f37 = 1;
m1_0(__this, NULL);
bool L_1 = p1;
__this->f0 = L_1;
int32_t L_2 = p0;
if ((((int32_t)L_2) == ((int32_t)((int32_t)127))))
{
goto IL_0041;
}
}
{
p0 = ((int32_t)127);
}
IL_0041:
{
int32_t L_3 = p0;
V_0 = L_3;
int32_t L_4 = V_0;
if ((((int32_t)L_4) == ((int32_t)((int32_t)127))))
{
goto IL_0050;
}
}
{
goto IL_015e;
}
IL_0050:
{
__this->f0 = 0;
__this->f6 = 2;
__this->f7 = _stringLiteral49;
__this->f8 = _stringLiteral229;
t1_173* L_5 = ((t1_173*)SZArrayNew(t1_173_TI_var, 1));
*((int32_t*)(int32_t*)SZArrayLdElema(L_5, 0, sizeof(int32_t))) = (int32_t)3;
__this->f9 = L_5;
__this->f10 = 0;
__this->f11 = 0;
__this->f12 = _stringLiteral688;
__this->f13 = _stringLiteral689;
__this->f14 = _stringLiteral690;
__this->f15 = _stringLiteral691;
__this->f16 = 2;
__this->f17 = _stringLiteral49;
__this->f18 = _stringLiteral229;
t1_173* L_6 = ((t1_173*)SZArrayNew(t1_173_TI_var, 1));
*((int32_t*)(int32_t*)SZArrayLdElema(L_6, 0, sizeof(int32_t))) = (int32_t)3;
__this->f19 = L_6;
__this->f20 = 1;
__this->f21 = 2;
__this->f22 = _stringLiteral49;
__this->f23 = _stringLiteral229;
t1_173* L_7 = ((t1_173*)SZArrayNew(t1_173_TI_var, 1));
*((int32_t*)(int32_t*)SZArrayLdElema(L_7, 0, sizeof(int32_t))) = (int32_t)3;
__this->f24 = L_7;
__this->f25 = 0;
__this->f26 = 0;
__this->f27 = _stringLiteral692;
__this->f28 = _stringLiteral693;
__this->f29 = _stringLiteral694;
__this->f30 = _stringLiteral695;
goto IL_015e;
}
IL_015e:
{
return;
}
}
extern "C" void m1_2012 (t1_216 * __this, bool p0, const MethodInfo* method)
{
{
bool L_0 = p0;
m1_2011(__this, ((int32_t)127), L_0, NULL);
return;
}
}
extern "C" void m1_2013 (t1_216 * __this, const MethodInfo* method)
{
{
m1_2012(__this, 0, NULL);
return;
}
}
extern TypeInfo* t1_212_TI_var;
extern TypeInfo* t1_216_TI_var;
extern Il2CppCodeGenString* _stringLiteral140;
extern Il2CppCodeGenString* _stringLiteral103;
extern Il2CppCodeGenString* _stringLiteral696;
extern Il2CppCodeGenString* _stringLiteral697;
extern Il2CppCodeGenString* _stringLiteral698;
extern Il2CppCodeGenString* _stringLiteral699;
extern Il2CppCodeGenString* _stringLiteral700;
extern Il2CppCodeGenString* _stringLiteral701;
extern Il2CppCodeGenString* _stringLiteral702;
extern Il2CppCodeGenString* _stringLiteral703;
extern "C" void m1_2014 (t1_1 * __this , const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_212_TI_var = il2cpp_codegen_type_info_from_index(32);
t1_216_TI_var = il2cpp_codegen_type_info_from_index(14);
_stringLiteral140 = il2cpp_codegen_string_literal_from_index(140);
_stringLiteral103 = il2cpp_codegen_string_literal_from_index(103);
_stringLiteral696 = il2cpp_codegen_string_literal_from_index(696);
_stringLiteral697 = il2cpp_codegen_string_literal_from_index(697);
_stringLiteral698 = il2cpp_codegen_string_literal_from_index(698);
_stringLiteral699 = il2cpp_codegen_string_literal_from_index(699);
_stringLiteral700 = il2cpp_codegen_string_literal_from_index(700);
_stringLiteral701 = il2cpp_codegen_string_literal_from_index(701);
_stringLiteral702 = il2cpp_codegen_string_literal_from_index(702);
_stringLiteral703 = il2cpp_codegen_string_literal_from_index(703);
s_Il2CppMethodIntialized = true;
}
{
t1_212* L_0 = ((t1_212*)SZArrayNew(t1_212_TI_var, ((int32_t)10)));
ArrayElementTypeCheck (L_0, _stringLiteral140);
*((t1_18**)(t1_18**)SZArrayLdElema(L_0, 0, sizeof(t1_18*))) = (t1_18*)_stringLiteral140;
t1_212* L_1 = L_0;
ArrayElementTypeCheck (L_1, _stringLiteral103);
*((t1_18**)(t1_18**)SZArrayLdElema(L_1, 1, sizeof(t1_18*))) = (t1_18*)_stringLiteral103;
t1_212* L_2 = L_1;
ArrayElementTypeCheck (L_2, _stringLiteral696);
*((t1_18**)(t1_18**)SZArrayLdElema(L_2, 2, sizeof(t1_18*))) = (t1_18*)_stringLiteral696;
t1_212* L_3 = L_2;
ArrayElementTypeCheck (L_3, _stringLiteral697);
*((t1_18**)(t1_18**)SZArrayLdElema(L_3, 3, sizeof(t1_18*))) = (t1_18*)_stringLiteral697;
t1_212* L_4 = L_3;
ArrayElementTypeCheck (L_4, _stringLiteral698);
*((t1_18**)(t1_18**)SZArrayLdElema(L_4, 4, sizeof(t1_18*))) = (t1_18*)_stringLiteral698;
t1_212* L_5 = L_4;
ArrayElementTypeCheck (L_5, _stringLiteral699);
*((t1_18**)(t1_18**)SZArrayLdElema(L_5, 5, sizeof(t1_18*))) = (t1_18*)_stringLiteral699;
t1_212* L_6 = L_5;
ArrayElementTypeCheck (L_6, _stringLiteral700);
*((t1_18**)(t1_18**)SZArrayLdElema(L_6, 6, sizeof(t1_18*))) = (t1_18*)_stringLiteral700;
t1_212* L_7 = L_6;
ArrayElementTypeCheck (L_7, _stringLiteral701);
*((t1_18**)(t1_18**)SZArrayLdElema(L_7, 7, sizeof(t1_18*))) = (t1_18*)_stringLiteral701;
t1_212* L_8 = L_7;
ArrayElementTypeCheck (L_8, _stringLiteral702);
*((t1_18**)(t1_18**)SZArrayLdElema(L_8, 8, sizeof(t1_18*))) = (t1_18*)_stringLiteral702;
t1_212* L_9 = L_8;
ArrayElementTypeCheck (L_9, _stringLiteral703);
*((t1_18**)(t1_18**)SZArrayLdElema(L_9, ((int32_t)9), sizeof(t1_18*))) = (t1_18*)_stringLiteral703;
((t1_216_SFs*)t1_216_TI_var->static_fields)->f38 = L_9;
return;
}
}
extern "C" int32_t m1_2015 (t1_216 * __this, const MethodInfo* method)
{
{
int32_t L_0 = (__this->f6);
return L_0;
}
}
extern "C" t1_18* m1_2016 (t1_216 * __this, const MethodInfo* method)
{
{
t1_18* L_0 = (__this->f7);
return L_0;
}
}
extern "C" t1_18* m1_2017 (t1_216 * __this, const MethodInfo* method)
{
{
t1_18* L_0 = (__this->f8);
return L_0;
}
}
extern "C" t1_173* m1_2018 (t1_216 * __this, const MethodInfo* method)
{
{
t1_173* L_0 = (__this->f9);
return L_0;
}
}
extern "C" int32_t m1_2019 (t1_216 * __this, const MethodInfo* method)
{
{
int32_t L_0 = (__this->f10);
return L_0;
}
}
extern "C" int32_t m1_2020 (t1_216 * __this, const MethodInfo* method)
{
{
int32_t L_0 = (__this->f11);
return L_0;
}
}
extern "C" t1_18* m1_2021 (t1_216 * __this, const MethodInfo* method)
{
{
t1_18* L_0 = (__this->f12);
return L_0;
}
}
extern TypeInfo* t1_439_TI_var;
extern "C" t1_216 * m1_2022 (t1_1 * __this , const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_439_TI_var = il2cpp_codegen_type_info_from_index(16);
s_Il2CppMethodIntialized = true;
}
t1_216 * V_0 = {0};
{
IL2CPP_RUNTIME_CLASS_INIT(t1_439_TI_var);
t1_439 * L_0 = m1_4467(NULL, NULL);
t1_175 * L_1 = m1_4478(L_0, NULL);
t1_216 * L_2 = (t1_216 *)VirtFuncInvoker0< t1_216 * >::Invoke(13 /* System.Globalization.NumberFormatInfo System.Globalization.CultureInfo::get_NumberFormat() */, L_1);
V_0 = L_2;
t1_216 * L_3 = V_0;
L_3->f0 = 1;
t1_216 * L_4 = V_0;
return L_4;
}
}
extern TypeInfo* t1_216_TI_var;
extern "C" t1_216 * m1_2023 (t1_1 * __this , const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_216_TI_var = il2cpp_codegen_type_info_from_index(14);
s_Il2CppMethodIntialized = true;
}
t1_216 * V_0 = {0};
{
t1_216 * L_0 = (t1_216 *)il2cpp_codegen_object_new (t1_216_TI_var);
m1_2013(L_0, NULL);
V_0 = L_0;
t1_216 * L_1 = V_0;
m1_2032(L_1, 1, NULL);
t1_216 * L_2 = V_0;
L_2->f0 = 1;
t1_216 * L_3 = V_0;
return L_3;
}
}
extern "C" t1_18* m1_2024 (t1_216 * __this, const MethodInfo* method)
{
{
t1_18* L_0 = (__this->f13);
return L_0;
}
}
extern "C" t1_18* m1_2025 (t1_216 * __this, const MethodInfo* method)
{
{
t1_18* L_0 = (__this->f14);
return L_0;
}
}
extern "C" t1_18* m1_2026 (t1_216 * __this, const MethodInfo* method)
{
{
t1_18* L_0 = (__this->f15);
return L_0;
}
}
extern "C" int32_t m1_2027 (t1_216 * __this, const MethodInfo* method)
{
{
int32_t L_0 = (__this->f16);
return L_0;
}
}
extern "C" t1_18* m1_2028 (t1_216 * __this, const MethodInfo* method)
{
{
t1_18* L_0 = (__this->f17);
return L_0;
}
}
extern "C" t1_18* m1_2029 (t1_216 * __this, const MethodInfo* method)
{
{
t1_18* L_0 = (__this->f18);
return L_0;
}
}
extern "C" t1_173* m1_2030 (t1_216 * __this, const MethodInfo* method)
{
{
t1_173* L_0 = (__this->f19);
return L_0;
}
}
extern "C" int32_t m1_2031 (t1_216 * __this, const MethodInfo* method)
{
{
int32_t L_0 = (__this->f20);
return L_0;
}
}
extern TypeInfo* t1_702_TI_var;
extern TypeInfo* t1_740_TI_var;
extern Il2CppCodeGenString* _stringLiteral704;
extern Il2CppCodeGenString* _stringLiteral705;
extern "C" void m1_2032 (t1_216 * __this, int32_t p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_702_TI_var = il2cpp_codegen_type_info_from_index(27);
t1_740_TI_var = il2cpp_codegen_type_info_from_index(71);
_stringLiteral704 = il2cpp_codegen_string_literal_from_index(704);
_stringLiteral705 = il2cpp_codegen_string_literal_from_index(705);
s_Il2CppMethodIntialized = true;
}
{
int32_t L_0 = p0;
if ((((int32_t)L_0) < ((int32_t)0)))
{
goto IL_000e;
}
}
{
int32_t L_1 = p0;
if ((((int32_t)L_1) <= ((int32_t)4)))
{
goto IL_0019;
}
}
IL_000e:
{
t1_702 * L_2 = (t1_702 *)il2cpp_codegen_object_new (t1_702_TI_var);
m1_4574(L_2, _stringLiteral704, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_2);
}
IL_0019:
{
bool L_3 = (__this->f0);
if (!L_3)
{
goto IL_002f;
}
}
{
t1_740 * L_4 = (t1_740 *)il2cpp_codegen_object_new (t1_740_TI_var);
m1_5030(L_4, _stringLiteral705, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_4);
}
IL_002f:
{
int32_t L_5 = p0;
__this->f20 = L_5;
return;
}
}
extern "C" int32_t m1_2033 (t1_216 * __this, const MethodInfo* method)
{
{
int32_t L_0 = (__this->f21);
return L_0;
}
}
extern "C" t1_18* m1_2034 (t1_216 * __this, const MethodInfo* method)
{
{
t1_18* L_0 = (__this->f22);
return L_0;
}
}
extern "C" t1_18* m1_2035 (t1_216 * __this, const MethodInfo* method)
{
{
t1_18* L_0 = (__this->f23);
return L_0;
}
}
extern "C" t1_173* m1_2036 (t1_216 * __this, const MethodInfo* method)
{
{
t1_173* L_0 = (__this->f24);
return L_0;
}
}
extern "C" int32_t m1_2037 (t1_216 * __this, const MethodInfo* method)
{
{
int32_t L_0 = (__this->f25);
return L_0;
}
}
extern "C" int32_t m1_2038 (t1_216 * __this, const MethodInfo* method)
{
{
int32_t L_0 = (__this->f26);
return L_0;
}
}
extern "C" t1_18* m1_2039 (t1_216 * __this, const MethodInfo* method)
{
{
t1_18* L_0 = (__this->f27);
return L_0;
}
}
extern "C" t1_18* m1_2040 (t1_216 * __this, const MethodInfo* method)
{
{
t1_18* L_0 = (__this->f28);
return L_0;
}
}
extern "C" t1_18* m1_2041 (t1_216 * __this, const MethodInfo* method)
{
{
t1_18* L_0 = (__this->f29);
return L_0;
}
}
extern "C" t1_18* m1_2042 (t1_216 * __this, const MethodInfo* method)
{
{
t1_18* L_0 = (__this->f30);
return L_0;
}
}
extern const Il2CppType* t1_216_0_0_0_var;
extern TypeInfo* t1_37_TI_var;
extern "C" t1_1 * m1_2043 (t1_216 * __this, t1_37 * p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_216_0_0_0_var = il2cpp_codegen_type_from_index(14);
t1_37_TI_var = il2cpp_codegen_type_info_from_index(3);
s_Il2CppMethodIntialized = true;
}
t1_216 * G_B3_0 = {0};
{
t1_37 * L_0 = p0;
IL2CPP_RUNTIME_CLASS_INIT(t1_37_TI_var);
t1_37 * L_1 = m1_894(NULL, LoadTypeToken(t1_216_0_0_0_var), NULL);
if ((!(((t1_1*)(t1_37 *)L_0) == ((t1_1*)(t1_37 *)L_1))))
{
goto IL_0016;
}
}
{
G_B3_0 = __this;
goto IL_0017;
}
IL_0016:
{
G_B3_0 = ((t1_216 *)(NULL));
}
IL_0017:
{
return G_B3_0;
}
}
extern TypeInfo* t1_216_TI_var;
extern "C" t1_1 * m1_2044 (t1_216 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_216_TI_var = il2cpp_codegen_type_info_from_index(14);
s_Il2CppMethodIntialized = true;
}
t1_216 * V_0 = {0};
{
t1_1 * L_0 = m1_6(__this, NULL);
V_0 = ((t1_216 *)CastclassSealed(L_0, t1_216_TI_var));
t1_216 * L_1 = V_0;
L_1->f0 = 0;
t1_216 * L_2 = V_0;
return L_2;
}
}
extern const Il2CppType* t1_216_0_0_0_var;
extern TypeInfo* t1_37_TI_var;
extern TypeInfo* t1_809_TI_var;
extern TypeInfo* t1_216_TI_var;
extern "C" t1_216 * m1_2045 (t1_1 * __this , t1_1 * p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_216_0_0_0_var = il2cpp_codegen_type_from_index(14);
t1_37_TI_var = il2cpp_codegen_type_info_from_index(3);
t1_809_TI_var = il2cpp_codegen_type_info_from_index(15);
t1_216_TI_var = il2cpp_codegen_type_info_from_index(14);
s_Il2CppMethodIntialized = true;
}
t1_216 * V_0 = {0};
{
t1_1 * L_0 = p0;
if (!L_0)
{
goto IL_0024;
}
}
{
t1_1 * L_1 = p0;
IL2CPP_RUNTIME_CLASS_INIT(t1_37_TI_var);
t1_37 * L_2 = m1_894(NULL, LoadTypeToken(t1_216_0_0_0_var), NULL);
t1_1 * L_3 = (t1_1 *)InterfaceFuncInvoker1< t1_1 *, t1_37 * >::Invoke(0 /* System.Object System.IFormatProvider::GetFormat(System.Type) */, t1_809_TI_var, L_1, L_2);
V_0 = ((t1_216 *)CastclassSealed(L_3, t1_216_TI_var));
t1_216 * L_4 = V_0;
if (!L_4)
{
goto IL_0024;
}
}
{
t1_216 * L_5 = V_0;
return L_5;
}
IL_0024:
{
IL2CPP_RUNTIME_CLASS_INIT(t1_216_TI_var);
t1_216 * L_6 = m1_2022(NULL, NULL);
return L_6;
}
}
extern TypeInfo* t1_226_TI_var;
extern "C" void m1_2046 (t1_97 * __this, t1_175 * p0, int32_t p1, void* p2, bool p3, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_226_TI_var = il2cpp_codegen_type_info_from_index(217);
s_Il2CppMethodIntialized = true;
}
t1_175 * V_0 = {0};
t1_226 V_1 = {0};
int32_t V_2 = 0;
{
m1_0(__this, NULL);
bool L_0 = p3;
__this->f1 = L_0;
int32_t L_1 = p1;
__this->f5 = L_1;
t1_175 * L_2 = p0;
__this->f6 = L_2;
void* L_3 = p2;
if (!L_3)
{
goto IL_0033;
}
}
{
void* L_4 = p2;
__this->f8 = (*(t1_226 *)L_4);
goto IL_004f;
}
IL_0033:
{
Initobj (t1_226_TI_var, (&V_1));
t1_226 L_5 = V_1;
__this->f8 = L_5;
t1_226 * L_6 = &(__this->f8);
L_6->f4 = ((int32_t)44);
}
IL_004f:
{
t1_175 * L_7 = p0;
V_0 = L_7;
goto IL_005d;
}
IL_0056:
{
t1_175 * L_8 = V_0;
t1_175 * L_9 = (t1_175 *)VirtFuncInvoker0< t1_175 * >::Invoke(8 /* System.Globalization.CultureInfo System.Globalization.CultureInfo::get_Parent() */, L_8);
V_0 = L_9;
}
IL_005d:
{
t1_175 * L_10 = V_0;
t1_175 * L_11 = (t1_175 *)VirtFuncInvoker0< t1_175 * >::Invoke(8 /* System.Globalization.CultureInfo System.Globalization.CultureInfo::get_Parent() */, L_10);
if (!L_11)
{
goto IL_0086;
}
}
{
t1_175 * L_12 = V_0;
t1_175 * L_13 = (t1_175 *)VirtFuncInvoker0< t1_175 * >::Invoke(8 /* System.Globalization.CultureInfo System.Globalization.CultureInfo::get_Parent() */, L_12);
int32_t L_14 = (int32_t)VirtFuncInvoker0< int32_t >::Invoke(6 /* System.Int32 System.Globalization.CultureInfo::get_LCID() */, L_13);
if ((((int32_t)L_14) == ((int32_t)((int32_t)127))))
{
goto IL_0086;
}
}
{
t1_175 * L_15 = V_0;
t1_175 * L_16 = (t1_175 *)VirtFuncInvoker0< t1_175 * >::Invoke(8 /* System.Globalization.CultureInfo System.Globalization.CultureInfo::get_Parent() */, L_15);
t1_175 * L_17 = V_0;
if ((!(((t1_1*)(t1_175 *)L_16) == ((t1_1*)(t1_175 *)L_17))))
{
goto IL_0056;
}
}
IL_0086:
{
t1_175 * L_18 = V_0;
if (!L_18)
{
goto IL_00b4;
}
}
{
t1_175 * L_19 = V_0;
int32_t L_20 = (int32_t)VirtFuncInvoker0< int32_t >::Invoke(6 /* System.Int32 System.Globalization.CultureInfo::get_LCID() */, L_19);
V_2 = L_20;
int32_t L_21 = V_2;
if ((((int32_t)L_21) == ((int32_t)((int32_t)31))))
{
goto IL_00a8;
}
}
{
int32_t L_22 = V_2;
if ((((int32_t)L_22) == ((int32_t)((int32_t)44))))
{
goto IL_00a8;
}
}
{
goto IL_00b4;
}
IL_00a8:
{
__this->f7 = 1;
goto IL_00b4;
}
IL_00b4:
{
return;
}
}
extern "C" void m1_2047 (t1_97 * __this, t1_97 * p0, const MethodInfo* method)
{
{
m1_0(__this, NULL);
t1_97 * L_0 = p0;
int32_t L_1 = (L_0->f5);
__this->f5 = L_1;
t1_97 * L_2 = p0;
int32_t L_3 = (L_2->f3);
__this->f3 = L_3;
t1_97 * L_4 = p0;
bool L_5 = (L_4->f4);
__this->f4 = L_5;
t1_97 * L_6 = p0;
t1_18* L_7 = (t1_18*)VirtFuncInvoker0< t1_18* >::Invoke(6 /* System.String System.Globalization.TextInfo::get_ListSeparator() */, L_6);
__this->f0 = L_7;
t1_97 * L_8 = p0;
t1_18* L_9 = m1_2050(L_8, NULL);
__this->f2 = L_9;
t1_97 * L_10 = p0;
t1_175 * L_11 = (L_10->f6);
__this->f6 = L_11;
t1_97 * L_12 = p0;
bool L_13 = (L_12->f7);
__this->f7 = L_13;
t1_97 * L_14 = p0;
t1_226 L_15 = (L_14->f8);
__this->f8 = L_15;
return;
}
}
extern "C" void m1_2048 (t1_97 * __this, t1_1 * p0, const MethodInfo* method)
{
{
return;
}
}
extern "C" t1_18* m1_2049 (t1_97 * __this, const MethodInfo* method)
{
t1_226 V_0 = {0};
uint16_t V_1 = 0x0;
{
t1_18* L_0 = (__this->f0);
if (L_0)
{
goto IL_0028;
}
}
{
t1_226 L_1 = (__this->f8);
V_0 = L_1;
uint8_t L_2 = ((&V_0)->f4);
V_1 = (((int32_t)((uint16_t)L_2)));
t1_18* L_3 = m1_316((&V_1), NULL);
__this->f0 = L_3;
}
IL_0028:
{
t1_18* L_4 = (__this->f0);
return L_4;
}
}
extern "C" t1_18* m1_2050 (t1_97 * __this, const MethodInfo* method)
{
{
t1_18* L_0 = (__this->f2);
if (L_0)
{
goto IL_001c;
}
}
{
t1_175 * L_1 = (__this->f6);
t1_18* L_2 = (t1_18*)VirtFuncInvoker0< t1_18* >::Invoke(7 /* System.String System.Globalization.CultureInfo::get_Name() */, L_1);
__this->f2 = L_2;
}
IL_001c:
{
t1_18* L_3 = (__this->f2);
return L_3;
}
}
extern TypeInfo* t1_97_TI_var;
extern "C" bool m1_2051 (t1_97 * __this, t1_1 * p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_97_TI_var = il2cpp_codegen_type_info_from_index(215);
s_Il2CppMethodIntialized = true;
}
t1_97 * V_0 = {0};
{
t1_1 * L_0 = p0;
if (L_0)
{
goto IL_0008;
}
}
{
return 0;
}
IL_0008:
{
t1_1 * L_1 = p0;
V_0 = ((t1_97 *)IsInstClass(L_1, t1_97_TI_var));
t1_97 * L_2 = V_0;
if (L_2)
{
goto IL_0017;
}
}
{
return 0;
}
IL_0017:
{
t1_97 * L_3 = V_0;
int32_t L_4 = (L_3->f5);
int32_t L_5 = (__this->f5);
if ((((int32_t)L_4) == ((int32_t)L_5)))
{
goto IL_002a;
}
}
{
return 0;
}
IL_002a:
{
t1_97 * L_6 = V_0;
t1_175 * L_7 = (L_6->f6);
t1_175 * L_8 = (__this->f6);
if ((((t1_1*)(t1_175 *)L_7) == ((t1_1*)(t1_175 *)L_8)))
{
goto IL_003d;
}
}
{
return 0;
}
IL_003d:
{
return 1;
}
}
extern "C" int32_t m1_2052 (t1_97 * __this, const MethodInfo* method)
{
{
int32_t L_0 = (__this->f5);
return L_0;
}
}
extern TypeInfo* t1_4_TI_var;
extern TypeInfo* t1_18_TI_var;
extern Il2CppCodeGenString* _stringLiteral706;
extern "C" t1_18* m1_2053 (t1_97 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_4_TI_var = il2cpp_codegen_type_info_from_index(8);
t1_18_TI_var = il2cpp_codegen_type_info_from_index(11);
_stringLiteral706 = il2cpp_codegen_string_literal_from_index(706);
s_Il2CppMethodIntialized = true;
}
{
int32_t L_0 = (__this->f5);
int32_t L_1 = L_0;
t1_1 * L_2 = Box(t1_4_TI_var, &L_1);
IL2CPP_RUNTIME_CLASS_INIT(t1_18_TI_var);
t1_18* L_3 = m1_418(NULL, _stringLiteral706, L_2, NULL);
return L_3;
}
}
extern TypeInfo* t1_17_TI_var;
extern "C" uint16_t m1_2054 (t1_97 * __this, uint16_t p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_17_TI_var = il2cpp_codegen_type_info_from_index(9);
s_Il2CppMethodIntialized = true;
}
uint16_t V_0 = 0x0;
{
uint16_t L_0 = p0;
if ((((int32_t)L_0) < ((int32_t)((int32_t)64))))
{
goto IL_001b;
}
}
{
uint16_t L_1 = p0;
if ((((int32_t)((int32_t)96)) >= ((int32_t)L_1)))
{
goto IL_001d;
}
}
{
uint16_t L_2 = p0;
if ((((int32_t)L_2) >= ((int32_t)((int32_t)128))))
{
goto IL_001d;
}
}
IL_001b:
{
uint16_t L_3 = p0;
return L_3;
}
IL_001d:
{
uint16_t L_4 = p0;
if ((((int32_t)((int32_t)65)) > ((int32_t)L_4)))
{
goto IL_0046;
}
}
{
uint16_t L_5 = p0;
if ((((int32_t)L_5) > ((int32_t)((int32_t)90))))
{
goto IL_0046;
}
}
{
bool L_6 = (__this->f7);
if (!L_6)
{
goto IL_0040;
}
}
{
uint16_t L_7 = p0;
if ((((int32_t)L_7) == ((int32_t)((int32_t)73))))
{
goto IL_0046;
}
}
IL_0040:
{
uint16_t L_8 = p0;
return (((int32_t)((uint16_t)((int32_t)((int32_t)L_8+(int32_t)((int32_t)32))))));
}
IL_0046:
{
t1_175 * L_9 = (__this->f6);
if (!L_9)
{
goto IL_0063;
}
}
{
t1_175 * L_10 = (__this->f6);
int32_t L_11 = (int32_t)VirtFuncInvoker0< int32_t >::Invoke(6 /* System.Int32 System.Globalization.CultureInfo::get_LCID() */, L_10);
if ((!(((uint32_t)L_11) == ((uint32_t)((int32_t)127)))))
{
goto IL_006a;
}
}
IL_0063:
{
uint16_t L_12 = p0;
IL2CPP_RUNTIME_CLASS_INIT(t1_17_TI_var);
uint16_t L_13 = m1_312(NULL, L_12, NULL);
return L_13;
}
IL_006a:
{
uint16_t L_14 = p0;
V_0 = L_14;
uint16_t L_15 = V_0;
if (((int32_t)((int32_t)L_15-(int32_t)((int32_t)453))) == 0)
{
goto IL_00e7;
}
if (((int32_t)((int32_t)L_15-(int32_t)((int32_t)453))) == 1)
{
goto IL_0088;
}
if (((int32_t)((int32_t)L_15-(int32_t)((int32_t)453))) == 2)
{
goto IL_0088;
}
if (((int32_t)((int32_t)L_15-(int32_t)((int32_t)453))) == 3)
{
goto IL_00ed;
}
}
IL_0088:
{
uint16_t L_16 = V_0;
if (((int32_t)((int32_t)L_16-(int32_t)((int32_t)978))) == 0)
{
goto IL_00ff;
}
if (((int32_t)((int32_t)L_16-(int32_t)((int32_t)978))) == 1)
{
goto IL_0105;
}
if (((int32_t)((int32_t)L_16-(int32_t)((int32_t)978))) == 2)
{
goto IL_010b;
}
}
{
uint16_t L_17 = V_0;
if ((((int32_t)L_17) == ((int32_t)((int32_t)73))))
{
goto IL_00ce;
}
}
{
uint16_t L_18 = V_0;
if ((((int32_t)L_18) == ((int32_t)((int32_t)304))))
{
goto IL_00e4;
}
}
{
uint16_t L_19 = V_0;
if ((((int32_t)L_19) == ((int32_t)((int32_t)459))))
{
goto IL_00f3;
}
}
{
uint16_t L_20 = V_0;
if ((((int32_t)L_20) == ((int32_t)((int32_t)498))))
{
goto IL_00f9;
}
}
{
goto IL_0111;
}
IL_00ce:
{
bool L_21 = (__this->f7);
if (!L_21)
{
goto IL_00df;
}
}
{
return ((int32_t)305);
}
IL_00df:
{
goto IL_0111;
}
IL_00e4:
{
return ((int32_t)105);
}
IL_00e7:
{
return ((int32_t)454);
}
IL_00ed:
{
return ((int32_t)457);
}
IL_00f3:
{
return ((int32_t)460);
}
IL_00f9:
{
return ((int32_t)499);
}
IL_00ff:
{
return ((int32_t)965);
}
IL_0105:
{
return ((int32_t)973);
}
IL_010b:
{
return ((int32_t)971);
}
IL_0111:
{
uint16_t L_22 = p0;
IL2CPP_RUNTIME_CLASS_INIT(t1_17_TI_var);
uint16_t L_23 = m1_312(NULL, L_22, NULL);
return L_23;
}
}
extern TypeInfo* t1_17_TI_var;
extern "C" uint16_t m1_2055 (t1_97 * __this, uint16_t p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_17_TI_var = il2cpp_codegen_type_info_from_index(9);
s_Il2CppMethodIntialized = true;
}
uint16_t V_0 = 0x0;
{
uint16_t L_0 = p0;
if ((((int32_t)L_0) >= ((int32_t)((int32_t)96))))
{
goto IL_000a;
}
}
{
uint16_t L_1 = p0;
return L_1;
}
IL_000a:
{
uint16_t L_2 = p0;
if ((((int32_t)((int32_t)97)) > ((int32_t)L_2)))
{
goto IL_0033;
}
}
{
uint16_t L_3 = p0;
if ((((int32_t)L_3) > ((int32_t)((int32_t)122))))
{
goto IL_0033;
}
}
{
bool L_4 = (__this->f7);
if (!L_4)
{
goto IL_002d;
}
}
{
uint16_t L_5 = p0;
if ((((int32_t)L_5) == ((int32_t)((int32_t)105))))
{
goto IL_0033;
}
}
IL_002d:
{
uint16_t L_6 = p0;
return (((int32_t)((uint16_t)((int32_t)((int32_t)L_6-(int32_t)((int32_t)32))))));
}
IL_0033:
{
t1_175 * L_7 = (__this->f6);
if (!L_7)
{
goto IL_0050;
}
}
{
t1_175 * L_8 = (__this->f6);
int32_t L_9 = (int32_t)VirtFuncInvoker0< int32_t >::Invoke(6 /* System.Int32 System.Globalization.CultureInfo::get_LCID() */, L_8);
if ((!(((uint32_t)L_9) == ((uint32_t)((int32_t)127)))))
{
goto IL_0057;
}
}
IL_0050:
{
uint16_t L_10 = p0;
IL2CPP_RUNTIME_CLASS_INIT(t1_17_TI_var);
uint16_t L_11 = m1_315(NULL, L_10, NULL);
return L_11;
}
IL_0057:
{
uint16_t L_12 = p0;
V_0 = L_12;
uint16_t L_13 = V_0;
if (((int32_t)((int32_t)L_13-(int32_t)((int32_t)976))) == 0)
{
goto IL_0134;
}
if (((int32_t)((int32_t)L_13-(int32_t)((int32_t)976))) == 1)
{
goto IL_013a;
}
if (((int32_t)((int32_t)L_13-(int32_t)((int32_t)976))) == 2)
{
goto IL_0081;
}
if (((int32_t)((int32_t)L_13-(int32_t)((int32_t)976))) == 3)
{
goto IL_0081;
}
if (((int32_t)((int32_t)L_13-(int32_t)((int32_t)976))) == 4)
{
goto IL_0081;
}
if (((int32_t)((int32_t)L_13-(int32_t)((int32_t)976))) == 5)
{
goto IL_0140;
}
if (((int32_t)((int32_t)L_13-(int32_t)((int32_t)976))) == 6)
{
goto IL_0146;
}
}
IL_0081:
{
uint16_t L_14 = V_0;
if (((int32_t)((int32_t)L_14-(int32_t)((int32_t)453))) == 0)
{
goto IL_0110;
}
if (((int32_t)((int32_t)L_14-(int32_t)((int32_t)453))) == 1)
{
goto IL_009d;
}
if (((int32_t)((int32_t)L_14-(int32_t)((int32_t)453))) == 2)
{
goto IL_009d;
}
if (((int32_t)((int32_t)L_14-(int32_t)((int32_t)453))) == 3)
{
goto IL_0116;
}
}
IL_009d:
{
uint16_t L_15 = V_0;
if ((((int32_t)L_15) == ((int32_t)((int32_t)1008))))
{
goto IL_014c;
}
}
{
uint16_t L_16 = V_0;
if ((((int32_t)L_16) == ((int32_t)((int32_t)1009))))
{
goto IL_0152;
}
}
{
uint16_t L_17 = V_0;
if ((((int32_t)L_17) == ((int32_t)((int32_t)105))))
{
goto IL_00f7;
}
}
{
uint16_t L_18 = V_0;
if ((((int32_t)L_18) == ((int32_t)((int32_t)305))))
{
goto IL_010d;
}
}
{
uint16_t L_19 = V_0;
if ((((int32_t)L_19) == ((int32_t)((int32_t)459))))
{
goto IL_011c;
}
}
{
uint16_t L_20 = V_0;
if ((((int32_t)L_20) == ((int32_t)((int32_t)498))))
{
goto IL_0122;
}
}
{
uint16_t L_21 = V_0;
if ((((int32_t)L_21) == ((int32_t)((int32_t)912))))
{
goto IL_0128;
}
}
{
uint16_t L_22 = V_0;
if ((((int32_t)L_22) == ((int32_t)((int32_t)944))))
{
goto IL_012e;
}
}
{
goto IL_0158;
}
IL_00f7:
{
bool L_23 = (__this->f7);
if (!L_23)
{
goto IL_0108;
}
}
{
return ((int32_t)304);
}
IL_0108:
{
goto IL_0158;
}
IL_010d:
{
return ((int32_t)73);
}
IL_0110:
{
return ((int32_t)452);
}
IL_0116:
{
return ((int32_t)455);
}
IL_011c:
{
return ((int32_t)458);
}
IL_0122:
{
return ((int32_t)497);
}
IL_0128:
{
return ((int32_t)938);
}
IL_012e:
{
return ((int32_t)939);
}
IL_0134:
{
return ((int32_t)914);
}
IL_013a:
{
return ((int32_t)920);
}
IL_0140:
{
return ((int32_t)934);
}
IL_0146:
{
return ((int32_t)928);
}
IL_014c:
{
return ((int32_t)922);
}
IL_0152:
{
return ((int32_t)929);
}
IL_0158:
{
uint16_t L_24 = p0;
IL2CPP_RUNTIME_CLASS_INIT(t1_17_TI_var);
uint16_t L_25 = m1_315(NULL, L_24, NULL);
return L_25;
}
}
extern TypeInfo* t1_701_TI_var;
extern TypeInfo* t1_18_TI_var;
extern Il2CppCodeGenString* _stringLiteral707;
extern "C" t1_18* m1_2056 (t1_97 * __this, t1_18* p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_701_TI_var = il2cpp_codegen_type_info_from_index(2);
t1_18_TI_var = il2cpp_codegen_type_info_from_index(11);
_stringLiteral707 = il2cpp_codegen_string_literal_from_index(707);
s_Il2CppMethodIntialized = true;
}
t1_18* V_0 = {0};
uint16_t* V_1 = {0};
uint16_t* V_2 = {0};
uint16_t* V_3 = {0};
uint16_t* V_4 = {0};
int32_t V_5 = 0;
t1_18* V_6 = {0};
t1_18* V_7 = {0};
{
t1_18* L_0 = p0;
if (L_0)
{
goto IL_0011;
}
}
{
t1_701 * L_1 = (t1_701 *)il2cpp_codegen_object_new (t1_701_TI_var);
m1_4570(L_1, _stringLiteral707, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_1);
}
IL_0011:
{
t1_18* L_2 = p0;
int32_t L_3 = m1_430(L_2, NULL);
if (L_3)
{
goto IL_0022;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(t1_18_TI_var);
t1_18* L_4 = ((t1_18_SFs*)t1_18_TI_var->static_fields)->f2;
return L_4;
}
IL_0022:
{
t1_18* L_5 = p0;
int32_t L_6 = m1_430(L_5, NULL);
IL2CPP_RUNTIME_CLASS_INIT(t1_18_TI_var);
t1_18* L_7 = m1_455(NULL, L_6, NULL);
V_0 = L_7;
t1_18* L_8 = p0;
V_6 = L_8;
t1_18* L_9 = V_6;
int32_t L_10 = m1_989(NULL, NULL);
V_1 = (uint16_t*)((intptr_t)((intptr_t)(((intptr_t)L_9))+(int32_t)L_10));
t1_18* L_11 = V_0;
V_7 = L_11;
t1_18* L_12 = V_7;
int32_t L_13 = m1_989(NULL, NULL);
V_2 = (uint16_t*)((intptr_t)((intptr_t)(((intptr_t)L_12))+(int32_t)L_13));
uint16_t* L_14 = V_2;
V_3 = (uint16_t*)L_14;
uint16_t* L_15 = V_1;
V_4 = (uint16_t*)L_15;
V_5 = 0;
goto IL_0072;
}
IL_0055:
{
uint16_t* L_16 = V_3;
uint16_t* L_17 = V_4;
uint16_t L_18 = (uint16_t)VirtFuncInvoker1< uint16_t, uint16_t >::Invoke(7 /* System.Char System.Globalization.TextInfo::ToLower(System.Char) */, __this, (*((uint16_t*)L_17)));
*((int16_t*)(L_16)) = (int16_t)L_18;
uint16_t* L_19 = V_4;
V_4 = (uint16_t*)((uint16_t*)((intptr_t)L_19+(intptr_t)(((intptr_t)2))));
uint16_t* L_20 = V_3;
V_3 = (uint16_t*)((uint16_t*)((intptr_t)L_20+(intptr_t)(((intptr_t)2))));
int32_t L_21 = V_5;
V_5 = ((int32_t)((int32_t)L_21+(int32_t)1));
}
IL_0072:
{
int32_t L_22 = V_5;
t1_18* L_23 = p0;
int32_t L_24 = m1_430(L_23, NULL);
if ((((int32_t)L_22) < ((int32_t)L_24)))
{
goto IL_0055;
}
}
{
V_6 = (t1_18*)NULL;
V_7 = (t1_18*)NULL;
t1_18* L_25 = V_0;
return L_25;
}
}
extern TypeInfo* t1_97_TI_var;
extern "C" t1_1 * m1_2057 (t1_97 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_97_TI_var = il2cpp_codegen_type_info_from_index(215);
s_Il2CppMethodIntialized = true;
}
{
t1_97 * L_0 = (t1_97 *)il2cpp_codegen_object_new (t1_97_TI_var);
m1_2047(L_0, __this, NULL);
return L_0;
}
}
extern Il2CppCodeGenString* _stringLiteral708;
extern "C" void m1_2058 (t1_228 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
_stringLiteral708 = il2cpp_codegen_string_literal_from_index(708);
s_Il2CppMethodIntialized = true;
}
{
t1_18* L_0 = m1_990(NULL, _stringLiteral708, NULL);
m1_933(__this, L_0, NULL);
return;
}
}
extern "C" void m1_2059 (t1_228 * __this, t1_18* p0, const MethodInfo* method)
{
{
t1_18* L_0 = p0;
m1_933(__this, L_0, NULL);
return;
}
}
extern "C" void m1_2060 (t1_228 * __this, t1_190 * p0, t1_521 p1, const MethodInfo* method)
{
{
t1_190 * L_0 = p0;
t1_521 L_1 = p1;
m1_934(__this, L_0, L_1, NULL);
return;
}
}
extern TypeInfo* t1_231_TI_var;
extern "C" void m1_2061 (t1_229 * __this, t1_230 * p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_231_TI_var = il2cpp_codegen_type_info_from_index(41);
s_Il2CppMethodIntialized = true;
}
{
t1_230 * L_0 = p0;
IL2CPP_RUNTIME_CLASS_INIT(t1_231_TI_var);
t1_231 * L_1 = m1_4270(NULL, NULL);
m1_2062(__this, L_0, L_1, NULL);
return;
}
}
extern TypeInfo* t1_701_TI_var;
extern TypeInfo* t1_653_TI_var;
extern TypeInfo* t1_83_TI_var;
extern Il2CppCodeGenString* _stringLiteral709;
extern Il2CppCodeGenString* _stringLiteral710;
extern "C" void m1_2062 (t1_229 * __this, t1_230 * p0, t1_231 * p1, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_701_TI_var = il2cpp_codegen_type_info_from_index(2);
t1_653_TI_var = il2cpp_codegen_type_info_from_index(4);
t1_83_TI_var = il2cpp_codegen_type_info_from_index(42);
_stringLiteral709 = il2cpp_codegen_string_literal_from_index(709);
_stringLiteral710 = il2cpp_codegen_string_literal_from_index(710);
s_Il2CppMethodIntialized = true;
}
{
m1_0(__this, NULL);
t1_230 * L_0 = p0;
if (!L_0)
{
goto IL_0012;
}
}
{
t1_231 * L_1 = p1;
if (L_1)
{
goto IL_0022;
}
}
IL_0012:
{
t1_18* L_2 = m1_990(NULL, _stringLiteral709, NULL);
t1_701 * L_3 = (t1_701 *)il2cpp_codegen_object_new (t1_701_TI_var);
m1_4570(L_3, L_2, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_3);
}
IL_0022:
{
t1_230 * L_4 = p0;
bool L_5 = (bool)VirtFuncInvoker0< bool >::Invoke(5 /* System.Boolean System.IO.Stream::get_CanRead() */, L_4);
if (L_5)
{
goto IL_003d;
}
}
{
t1_18* L_6 = m1_990(NULL, _stringLiteral710, NULL);
t1_653 * L_7 = (t1_653 *)il2cpp_codegen_object_new (t1_653_TI_var);
m1_4561(L_7, L_6, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_7);
}
IL_003d:
{
t1_230 * L_8 = p0;
__this->f0 = L_8;
t1_231 * L_9 = p1;
__this->f1 = L_9;
t1_231 * L_10 = p1;
t1_232 * L_11 = (t1_232 *)VirtFuncInvoker0< t1_232 * >::Invoke(16 /* System.Text.Decoder System.Text.Encoding::GetDecoder() */, L_10);
__this->f3 = L_11;
__this->f2 = ((t1_83*)SZArrayNew(t1_83_TI_var, ((int32_t)32)));
return;
}
}
extern "C" void m1_2063 (t1_229 * __this, const MethodInfo* method)
{
{
VirtActionInvoker1< bool >::Invoke(7 /* System.Void System.IO.BinaryReader::Dispose(System.Boolean) */, __this, 1);
return;
}
}
extern "C" t1_230 * m1_2064 (t1_229 * __this, const MethodInfo* method)
{
{
t1_230 * L_0 = (__this->f0);
return L_0;
}
}
extern "C" void m1_2065 (t1_229 * __this, const MethodInfo* method)
{
{
VirtActionInvoker1< bool >::Invoke(7 /* System.Void System.IO.BinaryReader::Dispose(System.Boolean) */, __this, 1);
__this->f5 = 1;
return;
}
}
extern "C" void m1_2066 (t1_229 * __this, bool p0, const MethodInfo* method)
{
{
bool L_0 = p0;
if (!L_0)
{
goto IL_001c;
}
}
{
t1_230 * L_1 = (__this->f0);
if (!L_1)
{
goto IL_001c;
}
}
{
t1_230 * L_2 = (__this->f0);
VirtActionInvoker0::Invoke(12 /* System.Void System.IO.Stream::Close() */, L_2);
}
IL_001c:
{
__this->f5 = 1;
__this->f2 = (t1_83*)NULL;
__this->f1 = (t1_231 *)NULL;
__this->f0 = (t1_230 *)NULL;
__this->f4 = (t1_19*)NULL;
return;
}
}
extern TypeInfo* t1_760_TI_var;
extern TypeInfo* t1_237_TI_var;
extern TypeInfo* t1_238_TI_var;
extern Il2CppCodeGenString* _stringLiteral711;
extern Il2CppCodeGenString* _stringLiteral712;
extern Il2CppCodeGenString* _stringLiteral713;
extern "C" void m1_2067 (t1_229 * __this, int32_t p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_760_TI_var = il2cpp_codegen_type_info_from_index(137);
t1_237_TI_var = il2cpp_codegen_type_info_from_index(218);
t1_238_TI_var = il2cpp_codegen_type_info_from_index(219);
_stringLiteral711 = il2cpp_codegen_string_literal_from_index(711);
_stringLiteral712 = il2cpp_codegen_string_literal_from_index(712);
_stringLiteral713 = il2cpp_codegen_string_literal_from_index(713);
s_Il2CppMethodIntialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
{
bool L_0 = (__this->f5);
if (!L_0)
{
goto IL_001b;
}
}
{
t1_760 * L_1 = (t1_760 *)il2cpp_codegen_object_new (t1_760_TI_var);
m1_5253(L_1, _stringLiteral711, _stringLiteral712, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_1);
}
IL_001b:
{
t1_230 * L_2 = (__this->f0);
if (L_2)
{
goto IL_0031;
}
}
{
t1_237 * L_3 = (t1_237 *)il2cpp_codegen_object_new (t1_237_TI_var);
m1_2176(L_3, _stringLiteral713, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_3);
}
IL_0031:
{
int32_t L_4 = p0;
m1_2088(__this, L_4, NULL);
V_0 = 0;
goto IL_0065;
}
IL_003f:
{
t1_230 * L_5 = (__this->f0);
t1_83* L_6 = (__this->f2);
int32_t L_7 = V_0;
int32_t L_8 = p0;
int32_t L_9 = V_0;
int32_t L_10 = (int32_t)VirtFuncInvoker3< int32_t, t1_83*, int32_t, int32_t >::Invoke(14 /* System.Int32 System.IO.Stream::Read(System.Byte[],System.Int32,System.Int32) */, L_5, L_6, L_7, ((int32_t)((int32_t)L_8-(int32_t)L_9)));
V_1 = L_10;
int32_t L_11 = V_1;
if (L_11)
{
goto IL_0061;
}
}
{
t1_238 * L_12 = (t1_238 *)il2cpp_codegen_object_new (t1_238_TI_var);
m1_2106(L_12, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_12);
}
IL_0061:
{
int32_t L_13 = V_0;
int32_t L_14 = V_1;
V_0 = ((int32_t)((int32_t)L_13+(int32_t)L_14));
}
IL_0065:
{
int32_t L_15 = V_0;
int32_t L_16 = p0;
if ((((int32_t)L_15) < ((int32_t)L_16)))
{
goto IL_003f;
}
}
{
return;
}
}
extern TypeInfo* t1_19_TI_var;
extern "C" int32_t m1_2068 (t1_229 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_19_TI_var = il2cpp_codegen_type_info_from_index(12);
s_Il2CppMethodIntialized = true;
}
int32_t V_0 = 0;
{
t1_19* L_0 = (__this->f4);
if (L_0)
{
goto IL_001b;
}
}
{
__this->f4 = ((t1_19*)SZArrayNew(t1_19_TI_var, ((int32_t)128)));
}
IL_001b:
{
t1_19* L_1 = (__this->f4);
int32_t L_2 = (int32_t)VirtFuncInvoker3< int32_t, t1_19*, int32_t, int32_t >::Invoke(11 /* System.Int32 System.IO.BinaryReader::Read(System.Char[],System.Int32,System.Int32) */, __this, L_1, 0, 1);
V_0 = L_2;
int32_t L_3 = V_0;
if (L_3)
{
goto IL_0032;
}
}
{
return (-1);
}
IL_0032:
{
t1_19* L_4 = (__this->f4);
int32_t L_5 = 0;
return (*(uint16_t*)(uint16_t*)SZArrayLdElema(L_4, L_5, sizeof(uint16_t)));
}
}
extern TypeInfo* t1_760_TI_var;
extern TypeInfo* t1_237_TI_var;
extern TypeInfo* t1_701_TI_var;
extern TypeInfo* t1_702_TI_var;
extern TypeInfo* t1_653_TI_var;
extern Il2CppCodeGenString* _stringLiteral711;
extern Il2CppCodeGenString* _stringLiteral712;
extern Il2CppCodeGenString* _stringLiteral713;
extern Il2CppCodeGenString* _stringLiteral714;
extern Il2CppCodeGenString* _stringLiteral715;
extern Il2CppCodeGenString* _stringLiteral716;
extern Il2CppCodeGenString* _stringLiteral717;
extern "C" int32_t m1_2069 (t1_229 * __this, t1_83* p0, int32_t p1, int32_t p2, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_760_TI_var = il2cpp_codegen_type_info_from_index(137);
t1_237_TI_var = il2cpp_codegen_type_info_from_index(218);
t1_701_TI_var = il2cpp_codegen_type_info_from_index(2);
t1_702_TI_var = il2cpp_codegen_type_info_from_index(27);
t1_653_TI_var = il2cpp_codegen_type_info_from_index(4);
_stringLiteral711 = il2cpp_codegen_string_literal_from_index(711);
_stringLiteral712 = il2cpp_codegen_string_literal_from_index(712);
_stringLiteral713 = il2cpp_codegen_string_literal_from_index(713);
_stringLiteral714 = il2cpp_codegen_string_literal_from_index(714);
_stringLiteral715 = il2cpp_codegen_string_literal_from_index(715);
_stringLiteral716 = il2cpp_codegen_string_literal_from_index(716);
_stringLiteral717 = il2cpp_codegen_string_literal_from_index(717);
s_Il2CppMethodIntialized = true;
}
int32_t V_0 = 0;
{
t1_230 * L_0 = (__this->f0);
if (L_0)
{
goto IL_0031;
}
}
{
bool L_1 = (__this->f5);
if (!L_1)
{
goto IL_0026;
}
}
{
t1_760 * L_2 = (t1_760 *)il2cpp_codegen_object_new (t1_760_TI_var);
m1_5253(L_2, _stringLiteral711, _stringLiteral712, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_2);
}
IL_0026:
{
t1_237 * L_3 = (t1_237 *)il2cpp_codegen_object_new (t1_237_TI_var);
m1_2176(L_3, _stringLiteral713, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_3);
}
IL_0031:
{
t1_83* L_4 = p0;
if (L_4)
{
goto IL_0042;
}
}
{
t1_701 * L_5 = (t1_701 *)il2cpp_codegen_object_new (t1_701_TI_var);
m1_4570(L_5, _stringLiteral714, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_5);
}
IL_0042:
{
int32_t L_6 = p1;
if ((((int32_t)L_6) >= ((int32_t)0)))
{
goto IL_0054;
}
}
{
t1_702 * L_7 = (t1_702 *)il2cpp_codegen_object_new (t1_702_TI_var);
m1_4574(L_7, _stringLiteral715, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_7);
}
IL_0054:
{
int32_t L_8 = p2;
if ((((int32_t)L_8) >= ((int32_t)0)))
{
goto IL_0066;
}
}
{
t1_702 * L_9 = (t1_702 *)il2cpp_codegen_object_new (t1_702_TI_var);
m1_4574(L_9, _stringLiteral716, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_9);
}
IL_0066:
{
t1_83* L_10 = p0;
int32_t L_11 = p1;
int32_t L_12 = p2;
if ((((int32_t)((int32_t)((int32_t)(((int32_t)((int32_t)(((t1_33 *)L_10)->max_length))))-(int32_t)L_11))) >= ((int32_t)L_12)))
{
goto IL_007c;
}
}
{
t1_653 * L_13 = (t1_653 *)il2cpp_codegen_object_new (t1_653_TI_var);
m1_4561(L_13, _stringLiteral717, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_13);
}
IL_007c:
{
t1_230 * L_14 = (__this->f0);
t1_83* L_15 = p0;
int32_t L_16 = p1;
int32_t L_17 = p2;
int32_t L_18 = (int32_t)VirtFuncInvoker3< int32_t, t1_83*, int32_t, int32_t >::Invoke(14 /* System.Int32 System.IO.Stream::Read(System.Byte[],System.Int32,System.Int32) */, L_14, L_15, L_16, L_17);
V_0 = L_18;
int32_t L_19 = V_0;
return L_19;
}
}
extern TypeInfo* t1_760_TI_var;
extern TypeInfo* t1_237_TI_var;
extern TypeInfo* t1_701_TI_var;
extern TypeInfo* t1_702_TI_var;
extern TypeInfo* t1_653_TI_var;
extern Il2CppCodeGenString* _stringLiteral711;
extern Il2CppCodeGenString* _stringLiteral712;
extern Il2CppCodeGenString* _stringLiteral713;
extern Il2CppCodeGenString* _stringLiteral714;
extern Il2CppCodeGenString* _stringLiteral715;
extern Il2CppCodeGenString* _stringLiteral716;
extern Il2CppCodeGenString* _stringLiteral717;
extern "C" int32_t m1_2070 (t1_229 * __this, t1_19* p0, int32_t p1, int32_t p2, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_760_TI_var = il2cpp_codegen_type_info_from_index(137);
t1_237_TI_var = il2cpp_codegen_type_info_from_index(218);
t1_701_TI_var = il2cpp_codegen_type_info_from_index(2);
t1_702_TI_var = il2cpp_codegen_type_info_from_index(27);
t1_653_TI_var = il2cpp_codegen_type_info_from_index(4);
_stringLiteral711 = il2cpp_codegen_string_literal_from_index(711);
_stringLiteral712 = il2cpp_codegen_string_literal_from_index(712);
_stringLiteral713 = il2cpp_codegen_string_literal_from_index(713);
_stringLiteral714 = il2cpp_codegen_string_literal_from_index(714);
_stringLiteral715 = il2cpp_codegen_string_literal_from_index(715);
_stringLiteral716 = il2cpp_codegen_string_literal_from_index(716);
_stringLiteral717 = il2cpp_codegen_string_literal_from_index(717);
s_Il2CppMethodIntialized = true;
}
int32_t V_0 = 0;
{
t1_230 * L_0 = (__this->f0);
if (L_0)
{
goto IL_0031;
}
}
{
bool L_1 = (__this->f5);
if (!L_1)
{
goto IL_0026;
}
}
{
t1_760 * L_2 = (t1_760 *)il2cpp_codegen_object_new (t1_760_TI_var);
m1_5253(L_2, _stringLiteral711, _stringLiteral712, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_2);
}
IL_0026:
{
t1_237 * L_3 = (t1_237 *)il2cpp_codegen_object_new (t1_237_TI_var);
m1_2176(L_3, _stringLiteral713, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_3);
}
IL_0031:
{
t1_19* L_4 = p0;
if (L_4)
{
goto IL_0042;
}
}
{
t1_701 * L_5 = (t1_701 *)il2cpp_codegen_object_new (t1_701_TI_var);
m1_4570(L_5, _stringLiteral714, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_5);
}
IL_0042:
{
int32_t L_6 = p1;
if ((((int32_t)L_6) >= ((int32_t)0)))
{
goto IL_0054;
}
}
{
t1_702 * L_7 = (t1_702 *)il2cpp_codegen_object_new (t1_702_TI_var);
m1_4574(L_7, _stringLiteral715, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_7);
}
IL_0054:
{
int32_t L_8 = p2;
if ((((int32_t)L_8) >= ((int32_t)0)))
{
goto IL_0066;
}
}
{
t1_702 * L_9 = (t1_702 *)il2cpp_codegen_object_new (t1_702_TI_var);
m1_4574(L_9, _stringLiteral716, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_9);
}
IL_0066:
{
t1_19* L_10 = p0;
int32_t L_11 = p1;
int32_t L_12 = p2;
if ((((int32_t)((int32_t)((int32_t)(((int32_t)((int32_t)(((t1_33 *)L_10)->max_length))))-(int32_t)L_11))) >= ((int32_t)L_12)))
{
goto IL_007c;
}
}
{
t1_653 * L_13 = (t1_653 *)il2cpp_codegen_object_new (t1_653_TI_var);
m1_4561(L_13, _stringLiteral717, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_13);
}
IL_007c:
{
t1_19* L_14 = p0;
int32_t L_15 = p1;
int32_t L_16 = p2;
int32_t L_17 = m1_2071(__this, L_14, L_15, L_16, (&V_0), NULL);
return L_17;
}
}
extern "C" int32_t m1_2071 (t1_229 * __this, t1_19* p0, int32_t p1, int32_t p2, int32_t* p3, const MethodInfo* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
int32_t V_3 = 0;
{
V_0 = 0;
int32_t* L_0 = p3;
*((int32_t*)(L_0)) = (int32_t)0;
goto IL_006e;
}
IL_000b:
{
V_1 = 0;
}
IL_000d:
{
int32_t L_1 = V_1;
m1_2088(__this, ((int32_t)((int32_t)L_1+(int32_t)1)), NULL);
t1_230 * L_2 = (__this->f0);
int32_t L_3 = (int32_t)VirtFuncInvoker0< int32_t >::Invoke(15 /* System.Int32 System.IO.Stream::ReadByte() */, L_2);
V_2 = L_3;
int32_t L_4 = V_2;
if ((!(((uint32_t)L_4) == ((uint32_t)(-1)))))
{
goto IL_002b;
}
}
{
int32_t L_5 = V_0;
return L_5;
}
IL_002b:
{
t1_83* L_6 = (__this->f2);
int32_t L_7 = V_1;
int32_t L_8 = L_7;
V_1 = ((int32_t)((int32_t)L_8+(int32_t)1));
int32_t L_9 = V_2;
*((uint8_t*)(uint8_t*)SZArrayLdElema(L_6, L_8, sizeof(uint8_t))) = (uint8_t)(((int32_t)((uint8_t)L_9)));
int32_t* L_10 = p3;
int32_t* L_11 = p3;
*((int32_t*)(L_10)) = (int32_t)((int32_t)((int32_t)(*((int32_t*)L_11))+(int32_t)1));
t1_231 * L_12 = (__this->f1);
t1_83* L_13 = (__this->f2);
int32_t L_14 = V_1;
t1_19* L_15 = p0;
int32_t L_16 = p1;
int32_t L_17 = V_0;
int32_t L_18 = (int32_t)VirtFuncInvoker5< int32_t, t1_83*, int32_t, int32_t, t1_19*, int32_t >::Invoke(14 /* System.Int32 System.Text.Encoding::GetChars(System.Byte[],System.Int32,System.Int32,System.Char[],System.Int32) */, L_12, L_13, 0, L_14, L_15, ((int32_t)((int32_t)L_16+(int32_t)L_17)));
V_3 = L_18;
int32_t L_19 = V_3;
if ((((int32_t)L_19) <= ((int32_t)0)))
{
goto IL_0065;
}
}
{
goto IL_006a;
}
IL_0065:
{
goto IL_000d;
}
IL_006a:
{
int32_t L_20 = V_0;
V_0 = ((int32_t)((int32_t)L_20+(int32_t)1));
}
IL_006e:
{
int32_t L_21 = V_0;
int32_t L_22 = p2;
if ((((int32_t)L_21) < ((int32_t)L_22)))
{
goto IL_000b;
}
}
{
int32_t L_23 = V_0;
return L_23;
}
}
extern TypeInfo* t1_735_TI_var;
extern Il2CppCodeGenString* _stringLiteral718;
extern "C" int32_t m1_2072 (t1_229 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_735_TI_var = il2cpp_codegen_type_info_from_index(13);
_stringLiteral718 = il2cpp_codegen_string_literal_from_index(718);
s_Il2CppMethodIntialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
uint8_t V_3 = 0x0;
{
V_0 = 0;
V_1 = 0;
V_2 = 0;
goto IL_0037;
}
IL_000b:
{
uint8_t L_0 = (uint8_t)VirtFuncInvoker0< uint8_t >::Invoke(13 /* System.Byte System.IO.BinaryReader::ReadByte() */, __this);
V_3 = L_0;
int32_t L_1 = V_0;
uint8_t L_2 = V_3;
int32_t L_3 = V_1;
V_0 = ((int32_t)((int32_t)L_1|(int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_2&(int32_t)((int32_t)127)))<<(int32_t)((int32_t)((int32_t)L_3&(int32_t)((int32_t)31)))))));
int32_t L_4 = V_1;
V_1 = ((int32_t)((int32_t)L_4+(int32_t)7));
uint8_t L_5 = V_3;
if (((int32_t)((int32_t)L_5&(int32_t)((int32_t)128))))
{
goto IL_0033;
}
}
{
goto IL_003e;
}
IL_0033:
{
int32_t L_6 = V_2;
V_2 = ((int32_t)((int32_t)L_6+(int32_t)1));
}
IL_0037:
{
int32_t L_7 = V_2;
if ((((int32_t)L_7) < ((int32_t)5)))
{
goto IL_000b;
}
}
IL_003e:
{
int32_t L_8 = V_2;
if ((((int32_t)L_8) >= ((int32_t)5)))
{
goto IL_0047;
}
}
{
int32_t L_9 = V_0;
return L_9;
}
IL_0047:
{
t1_735 * L_10 = (t1_735 *)il2cpp_codegen_object_new (t1_735_TI_var);
m1_4999(L_10, _stringLiteral718, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_10);
}
}
extern "C" bool m1_2073 (t1_229 * __this, const MethodInfo* method)
{
{
uint8_t L_0 = (uint8_t)VirtFuncInvoker0< uint8_t >::Invoke(13 /* System.Byte System.IO.BinaryReader::ReadByte() */, __this);
return ((((int32_t)((((int32_t)L_0) == ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
}
extern TypeInfo* t1_760_TI_var;
extern TypeInfo* t1_237_TI_var;
extern TypeInfo* t1_238_TI_var;
extern Il2CppCodeGenString* _stringLiteral711;
extern Il2CppCodeGenString* _stringLiteral712;
extern Il2CppCodeGenString* _stringLiteral713;
extern "C" uint8_t m1_2074 (t1_229 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_760_TI_var = il2cpp_codegen_type_info_from_index(137);
t1_237_TI_var = il2cpp_codegen_type_info_from_index(218);
t1_238_TI_var = il2cpp_codegen_type_info_from_index(219);
_stringLiteral711 = il2cpp_codegen_string_literal_from_index(711);
_stringLiteral712 = il2cpp_codegen_string_literal_from_index(712);
_stringLiteral713 = il2cpp_codegen_string_literal_from_index(713);
s_Il2CppMethodIntialized = true;
}
int32_t V_0 = 0;
{
t1_230 * L_0 = (__this->f0);
if (L_0)
{
goto IL_0031;
}
}
{
bool L_1 = (__this->f5);
if (!L_1)
{
goto IL_0026;
}
}
{
t1_760 * L_2 = (t1_760 *)il2cpp_codegen_object_new (t1_760_TI_var);
m1_5253(L_2, _stringLiteral711, _stringLiteral712, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_2);
}
IL_0026:
{
t1_237 * L_3 = (t1_237 *)il2cpp_codegen_object_new (t1_237_TI_var);
m1_2176(L_3, _stringLiteral713, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_3);
}
IL_0031:
{
t1_230 * L_4 = (__this->f0);
int32_t L_5 = (int32_t)VirtFuncInvoker0< int32_t >::Invoke(15 /* System.Int32 System.IO.Stream::ReadByte() */, L_4);
V_0 = L_5;
int32_t L_6 = V_0;
if ((((int32_t)L_6) == ((int32_t)(-1))))
{
goto IL_0047;
}
}
{
int32_t L_7 = V_0;
return (((int32_t)((uint8_t)L_7)));
}
IL_0047:
{
t1_238 * L_8 = (t1_238 *)il2cpp_codegen_object_new (t1_238_TI_var);
m1_2106(L_8, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_8);
}
}
extern TypeInfo* t1_760_TI_var;
extern TypeInfo* t1_237_TI_var;
extern TypeInfo* t1_702_TI_var;
extern TypeInfo* t1_83_TI_var;
extern Il2CppCodeGenString* _stringLiteral711;
extern Il2CppCodeGenString* _stringLiteral712;
extern Il2CppCodeGenString* _stringLiteral713;
extern Il2CppCodeGenString* _stringLiteral716;
extern "C" t1_83* m1_2075 (t1_229 * __this, int32_t p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_760_TI_var = il2cpp_codegen_type_info_from_index(137);
t1_237_TI_var = il2cpp_codegen_type_info_from_index(218);
t1_702_TI_var = il2cpp_codegen_type_info_from_index(27);
t1_83_TI_var = il2cpp_codegen_type_info_from_index(42);
_stringLiteral711 = il2cpp_codegen_string_literal_from_index(711);
_stringLiteral712 = il2cpp_codegen_string_literal_from_index(712);
_stringLiteral713 = il2cpp_codegen_string_literal_from_index(713);
_stringLiteral716 = il2cpp_codegen_string_literal_from_index(716);
s_Il2CppMethodIntialized = true;
}
t1_83* V_0 = {0};
int32_t V_1 = 0;
int32_t V_2 = 0;
t1_83* V_3 = {0};
{
t1_230 * L_0 = (__this->f0);
if (L_0)
{
goto IL_0031;
}
}
{
bool L_1 = (__this->f5);
if (!L_1)
{
goto IL_0026;
}
}
{
t1_760 * L_2 = (t1_760 *)il2cpp_codegen_object_new (t1_760_TI_var);
m1_5253(L_2, _stringLiteral711, _stringLiteral712, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_2);
}
IL_0026:
{
t1_237 * L_3 = (t1_237 *)il2cpp_codegen_object_new (t1_237_TI_var);
m1_2176(L_3, _stringLiteral713, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_3);
}
IL_0031:
{
int32_t L_4 = p0;
if ((((int32_t)L_4) >= ((int32_t)0)))
{
goto IL_0043;
}
}
{
t1_702 * L_5 = (t1_702 *)il2cpp_codegen_object_new (t1_702_TI_var);
m1_4574(L_5, _stringLiteral716, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_5);
}
IL_0043:
{
int32_t L_6 = p0;
V_0 = ((t1_83*)SZArrayNew(t1_83_TI_var, L_6));
V_1 = 0;
goto IL_0071;
}
IL_0051:
{
t1_230 * L_7 = (__this->f0);
t1_83* L_8 = V_0;
int32_t L_9 = V_1;
int32_t L_10 = p0;
int32_t L_11 = V_1;
int32_t L_12 = (int32_t)VirtFuncInvoker3< int32_t, t1_83*, int32_t, int32_t >::Invoke(14 /* System.Int32 System.IO.Stream::Read(System.Byte[],System.Int32,System.Int32) */, L_7, L_8, L_9, ((int32_t)((int32_t)L_10-(int32_t)L_11)));
V_2 = L_12;
int32_t L_13 = V_2;
if (L_13)
{
goto IL_006d;
}
}
{
goto IL_0078;
}
IL_006d:
{
int32_t L_14 = V_1;
int32_t L_15 = V_2;
V_1 = ((int32_t)((int32_t)L_14+(int32_t)L_15));
}
IL_0071:
{
int32_t L_16 = V_1;
int32_t L_17 = p0;
if ((((int32_t)L_16) < ((int32_t)L_17)))
{
goto IL_0051;
}
}
IL_0078:
{
int32_t L_18 = V_1;
int32_t L_19 = p0;
if ((((int32_t)L_18) == ((int32_t)L_19)))
{
goto IL_0093;
}
}
{
int32_t L_20 = V_1;
V_3 = ((t1_83*)SZArrayNew(t1_83_TI_var, L_20));
t1_83* L_21 = V_0;
t1_83* L_22 = V_3;
int32_t L_23 = V_1;
m1_4599(NULL, (t1_33 *)(t1_33 *)L_21, 0, (t1_33 *)(t1_33 *)L_22, 0, L_23, NULL);
t1_83* L_24 = V_3;
return L_24;
}
IL_0093:
{
t1_83* L_25 = V_0;
return L_25;
}
}
extern TypeInfo* t1_238_TI_var;
extern "C" uint16_t m1_2076 (t1_229 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_238_TI_var = il2cpp_codegen_type_info_from_index(219);
s_Il2CppMethodIntialized = true;
}
int32_t V_0 = 0;
{
int32_t L_0 = (int32_t)VirtFuncInvoker0< int32_t >::Invoke(9 /* System.Int32 System.IO.BinaryReader::Read() */, __this);
V_0 = L_0;
int32_t L_1 = V_0;
if ((!(((uint32_t)L_1) == ((uint32_t)(-1)))))
{
goto IL_0014;
}
}
{
t1_238 * L_2 = (t1_238 *)il2cpp_codegen_object_new (t1_238_TI_var);
m1_2106(L_2, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_2);
}
IL_0014:
{
int32_t L_3 = V_0;
return (((int32_t)((uint16_t)L_3)));
}
}
extern TypeInfo* t1_706_TI_var;
extern "C" t1_22 m1_2077 (t1_229 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_706_TI_var = il2cpp_codegen_type_info_from_index(172);
s_Il2CppMethodIntialized = true;
}
t1_22 V_0 = {0};
uint8_t* V_1 = {0};
int32_t V_2 = 0;
int32_t V_3 = 0;
{
VirtActionInvoker1< int32_t >::Invoke(8 /* System.Void System.IO.BinaryReader::FillBuffer(System.Int32) */, __this, ((int32_t)16));
V_1 = (uint8_t*)(&V_0);
IL2CPP_RUNTIME_CLASS_INIT(t1_706_TI_var);
bool L_0 = ((t1_706_SFs*)t1_706_TI_var->static_fields)->f1;
if (!L_0)
{
goto IL_0093;
}
}
{
V_2 = 0;
goto IL_0086;
}
IL_001c:
{
int32_t L_1 = V_2;
if ((((int32_t)L_1) >= ((int32_t)4)))
{
goto IL_0036;
}
}
{
uint8_t* L_2 = V_1;
int32_t L_3 = V_2;
t1_83* L_4 = (__this->f2);
int32_t L_5 = V_2;
int32_t L_6 = L_5;
*((int8_t*)(((uint8_t*)((intptr_t)L_2+(int32_t)((int32_t)((int32_t)L_3+(int32_t)8)))))) = (int8_t)(*(uint8_t*)(uint8_t*)SZArrayLdElema(L_4, L_6, sizeof(uint8_t)));
goto IL_0082;
}
IL_0036:
{
int32_t L_7 = V_2;
if ((((int32_t)L_7) >= ((int32_t)8)))
{
goto IL_0050;
}
}
{
uint8_t* L_8 = V_1;
int32_t L_9 = V_2;
t1_83* L_10 = (__this->f2);
int32_t L_11 = V_2;
int32_t L_12 = L_11;
*((int8_t*)(((uint8_t*)((intptr_t)L_8+(int32_t)((int32_t)((int32_t)L_9+(int32_t)8)))))) = (int8_t)(*(uint8_t*)(uint8_t*)SZArrayLdElema(L_10, L_12, sizeof(uint8_t)));
goto IL_0082;
}
IL_0050:
{
int32_t L_13 = V_2;
if ((((int32_t)L_13) >= ((int32_t)((int32_t)12))))
{
goto IL_006b;
}
}
{
uint8_t* L_14 = V_1;
int32_t L_15 = V_2;
t1_83* L_16 = (__this->f2);
int32_t L_17 = V_2;
int32_t L_18 = L_17;
*((int8_t*)(((uint8_t*)((intptr_t)L_14+(int32_t)((int32_t)((int32_t)L_15-(int32_t)4)))))) = (int8_t)(*(uint8_t*)(uint8_t*)SZArrayLdElema(L_16, L_18, sizeof(uint8_t)));
goto IL_0082;
}
IL_006b:
{
int32_t L_19 = V_2;
if ((((int32_t)L_19) >= ((int32_t)((int32_t)16))))
{
goto IL_0082;
}
}
{
uint8_t* L_20 = V_1;
int32_t L_21 = V_2;
t1_83* L_22 = (__this->f2);
int32_t L_23 = V_2;
int32_t L_24 = L_23;
*((int8_t*)(((uint8_t*)((intptr_t)L_20+(int32_t)((int32_t)((int32_t)L_21-(int32_t)((int32_t)12))))))) = (int8_t)(*(uint8_t*)(uint8_t*)SZArrayLdElema(L_22, L_24, sizeof(uint8_t)));
}
IL_0082:
{
int32_t L_25 = V_2;
V_2 = ((int32_t)((int32_t)L_25+(int32_t)1));
}
IL_0086:
{
int32_t L_26 = V_2;
if ((((int32_t)L_26) < ((int32_t)((int32_t)16))))
{
goto IL_001c;
}
}
{
goto IL_010f;
}
IL_0093:
{
V_3 = 0;
goto IL_0107;
}
IL_009a:
{
int32_t L_27 = V_3;
if ((((int32_t)L_27) >= ((int32_t)4)))
{
goto IL_00b5;
}
}
{
uint8_t* L_28 = V_1;
int32_t L_29 = V_3;
t1_83* L_30 = (__this->f2);
int32_t L_31 = V_3;
int32_t L_32 = L_31;
*((int8_t*)(((uint8_t*)((intptr_t)L_28+(int32_t)((int32_t)((int32_t)((int32_t)11)-(int32_t)L_29)))))) = (int8_t)(*(uint8_t*)(uint8_t*)SZArrayLdElema(L_30, L_32, sizeof(uint8_t)));
goto IL_0103;
}
IL_00b5:
{
int32_t L_33 = V_3;
if ((((int32_t)L_33) >= ((int32_t)8)))
{
goto IL_00d0;
}
}
{
uint8_t* L_34 = V_1;
int32_t L_35 = V_3;
t1_83* L_36 = (__this->f2);
int32_t L_37 = V_3;
int32_t L_38 = L_37;
*((int8_t*)(((uint8_t*)((intptr_t)L_34+(int32_t)((int32_t)((int32_t)((int32_t)19)-(int32_t)L_35)))))) = (int8_t)(*(uint8_t*)(uint8_t*)SZArrayLdElema(L_36, L_38, sizeof(uint8_t)));
goto IL_0103;
}
IL_00d0:
{
int32_t L_39 = V_3;
if ((((int32_t)L_39) >= ((int32_t)((int32_t)12))))
{
goto IL_00ec;
}
}
{
uint8_t* L_40 = V_1;
int32_t L_41 = V_3;
t1_83* L_42 = (__this->f2);
int32_t L_43 = V_3;
int32_t L_44 = L_43;
*((int8_t*)(((uint8_t*)((intptr_t)L_40+(int32_t)((int32_t)((int32_t)((int32_t)15)-(int32_t)L_41)))))) = (int8_t)(*(uint8_t*)(uint8_t*)SZArrayLdElema(L_42, L_44, sizeof(uint8_t)));
goto IL_0103;
}
IL_00ec:
{
int32_t L_45 = V_3;
if ((((int32_t)L_45) >= ((int32_t)((int32_t)16))))
{
goto IL_0103;
}
}
{
uint8_t* L_46 = V_1;
int32_t L_47 = V_3;
t1_83* L_48 = (__this->f2);
int32_t L_49 = V_3;
int32_t L_50 = L_49;
*((int8_t*)(((uint8_t*)((intptr_t)L_46+(int32_t)((int32_t)((int32_t)((int32_t)15)-(int32_t)L_47)))))) = (int8_t)(*(uint8_t*)(uint8_t*)SZArrayLdElema(L_48, L_50, sizeof(uint8_t)));
}
IL_0103:
{
int32_t L_51 = V_3;
V_3 = ((int32_t)((int32_t)L_51+(int32_t)1));
}
IL_0107:
{
int32_t L_52 = V_3;
if ((((int32_t)L_52) < ((int32_t)((int32_t)16))))
{
goto IL_009a;
}
}
IL_010f:
{
t1_22 L_53 = V_0;
return L_53;
}
}
extern "C" double m1_2078 (t1_229 * __this, const MethodInfo* method)
{
{
VirtActionInvoker1< int32_t >::Invoke(8 /* System.Void System.IO.BinaryReader::FillBuffer(System.Int32) */, __this, 8);
t1_83* L_0 = (__this->f2);
double L_1 = m1_1440(NULL, L_0, 0, NULL);
return L_1;
}
}
extern "C" int16_t m1_2079 (t1_229 * __this, const MethodInfo* method)
{
{
VirtActionInvoker1< int32_t >::Invoke(8 /* System.Void System.IO.BinaryReader::FillBuffer(System.Int32) */, __this, 2);
t1_83* L_0 = (__this->f2);
int32_t L_1 = 0;
t1_83* L_2 = (__this->f2);
int32_t L_3 = 1;
return (((int16_t)((int16_t)((int32_t)((int32_t)(*(uint8_t*)(uint8_t*)SZArrayLdElema(L_0, L_1, sizeof(uint8_t)))|(int32_t)((int32_t)((int32_t)(*(uint8_t*)(uint8_t*)SZArrayLdElema(L_2, L_3, sizeof(uint8_t)))<<(int32_t)8)))))));
}
}
extern "C" int32_t m1_2080 (t1_229 * __this, const MethodInfo* method)
{
{
VirtActionInvoker1< int32_t >::Invoke(8 /* System.Void System.IO.BinaryReader::FillBuffer(System.Int32) */, __this, 4);
t1_83* L_0 = (__this->f2);
int32_t L_1 = 0;
t1_83* L_2 = (__this->f2);
int32_t L_3 = 1;
t1_83* L_4 = (__this->f2);
int32_t L_5 = 2;
t1_83* L_6 = (__this->f2);
int32_t L_7 = 3;
return ((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)(*(uint8_t*)(uint8_t*)SZArrayLdElema(L_0, L_1, sizeof(uint8_t)))|(int32_t)((int32_t)((int32_t)(*(uint8_t*)(uint8_t*)SZArrayLdElema(L_2, L_3, sizeof(uint8_t)))<<(int32_t)8))))|(int32_t)((int32_t)((int32_t)(*(uint8_t*)(uint8_t*)SZArrayLdElema(L_4, L_5, sizeof(uint8_t)))<<(int32_t)((int32_t)16)))))|(int32_t)((int32_t)((int32_t)(*(uint8_t*)(uint8_t*)SZArrayLdElema(L_6, L_7, sizeof(uint8_t)))<<(int32_t)((int32_t)24)))));
}
}
extern "C" int64_t m1_2081 (t1_229 * __this, const MethodInfo* method)
{
uint32_t V_0 = 0;
uint32_t V_1 = 0;
{
VirtActionInvoker1< int32_t >::Invoke(8 /* System.Void System.IO.BinaryReader::FillBuffer(System.Int32) */, __this, 8);
t1_83* L_0 = (__this->f2);
int32_t L_1 = 0;
t1_83* L_2 = (__this->f2);
int32_t L_3 = 1;
t1_83* L_4 = (__this->f2);
int32_t L_5 = 2;
t1_83* L_6 = (__this->f2);
int32_t L_7 = 3;
V_0 = ((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)(*(uint8_t*)(uint8_t*)SZArrayLdElema(L_0, L_1, sizeof(uint8_t)))|(int32_t)((int32_t)((int32_t)(*(uint8_t*)(uint8_t*)SZArrayLdElema(L_2, L_3, sizeof(uint8_t)))<<(int32_t)8))))|(int32_t)((int32_t)((int32_t)(*(uint8_t*)(uint8_t*)SZArrayLdElema(L_4, L_5, sizeof(uint8_t)))<<(int32_t)((int32_t)16)))))|(int32_t)((int32_t)((int32_t)(*(uint8_t*)(uint8_t*)SZArrayLdElema(L_6, L_7, sizeof(uint8_t)))<<(int32_t)((int32_t)24)))));
t1_83* L_8 = (__this->f2);
int32_t L_9 = 4;
t1_83* L_10 = (__this->f2);
int32_t L_11 = 5;
t1_83* L_12 = (__this->f2);
int32_t L_13 = 6;
t1_83* L_14 = (__this->f2);
int32_t L_15 = 7;
V_1 = ((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)(*(uint8_t*)(uint8_t*)SZArrayLdElema(L_8, L_9, sizeof(uint8_t)))|(int32_t)((int32_t)((int32_t)(*(uint8_t*)(uint8_t*)SZArrayLdElema(L_10, L_11, sizeof(uint8_t)))<<(int32_t)8))))|(int32_t)((int32_t)((int32_t)(*(uint8_t*)(uint8_t*)SZArrayLdElema(L_12, L_13, sizeof(uint8_t)))<<(int32_t)((int32_t)16)))))|(int32_t)((int32_t)((int32_t)(*(uint8_t*)(uint8_t*)SZArrayLdElema(L_14, L_15, sizeof(uint8_t)))<<(int32_t)((int32_t)24)))));
uint32_t L_16 = V_1;
uint32_t L_17 = V_0;
return ((int64_t)((int64_t)((int64_t)((int64_t)(((int64_t)((uint64_t)L_16)))<<(int32_t)((int32_t)32)))|(int64_t)(((int64_t)((uint64_t)L_17)))));
}
}
extern "C" int8_t m1_2082 (t1_229 * __this, const MethodInfo* method)
{
{
uint8_t L_0 = (uint8_t)VirtFuncInvoker0< uint8_t >::Invoke(13 /* System.Byte System.IO.BinaryReader::ReadByte() */, __this);
return (((int8_t)((int8_t)L_0)));
}
}
extern TypeInfo* t1_237_TI_var;
extern TypeInfo* t1_18_TI_var;
extern TypeInfo* t1_19_TI_var;
extern TypeInfo* t1_158_TI_var;
extern Il2CppCodeGenString* _stringLiteral719;
extern "C" t1_18* m1_2083 (t1_229 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_237_TI_var = il2cpp_codegen_type_info_from_index(218);
t1_18_TI_var = il2cpp_codegen_type_info_from_index(11);
t1_19_TI_var = il2cpp_codegen_type_info_from_index(12);
t1_158_TI_var = il2cpp_codegen_type_info_from_index(36);
_stringLiteral719 = il2cpp_codegen_string_literal_from_index(719);
s_Il2CppMethodIntialized = true;
}
int32_t V_0 = 0;
t1_158 * V_1 = {0};
int32_t V_2 = 0;
int32_t V_3 = 0;
int32_t G_B10_0 = 0;
{
int32_t L_0 = m1_2072(__this, NULL);
V_0 = L_0;
int32_t L_1 = V_0;
if ((((int32_t)L_1) >= ((int32_t)0)))
{
goto IL_0019;
}
}
{
t1_237 * L_2 = (t1_237 *)il2cpp_codegen_object_new (t1_237_TI_var);
m1_2176(L_2, _stringLiteral719, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_2);
}
IL_0019:
{
int32_t L_3 = V_0;
if (L_3)
{
goto IL_0025;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(t1_18_TI_var);
t1_18* L_4 = ((t1_18_SFs*)t1_18_TI_var->static_fields)->f2;
return L_4;
}
IL_0025:
{
t1_19* L_5 = (__this->f4);
if (L_5)
{
goto IL_0040;
}
}
{
__this->f4 = ((t1_19*)SZArrayNew(t1_19_TI_var, ((int32_t)128)));
}
IL_0040:
{
V_1 = (t1_158 *)NULL;
}
IL_0042:
{
int32_t L_6 = V_0;
if ((((int32_t)L_6) <= ((int32_t)((int32_t)128))))
{
goto IL_0057;
}
}
{
G_B10_0 = ((int32_t)128);
goto IL_0058;
}
IL_0057:
{
int32_t L_7 = V_0;
G_B10_0 = L_7;
}
IL_0058:
{
V_2 = G_B10_0;
int32_t L_8 = V_2;
VirtActionInvoker1< int32_t >::Invoke(8 /* System.Void System.IO.BinaryReader::FillBuffer(System.Int32) */, __this, L_8);
t1_232 * L_9 = (__this->f3);
t1_83* L_10 = (__this->f2);
int32_t L_11 = V_2;
t1_19* L_12 = (__this->f4);
int32_t L_13 = (int32_t)VirtFuncInvoker5< int32_t, t1_83*, int32_t, int32_t, t1_19*, int32_t >::Invoke(4 /* System.Int32 System.Text.Decoder::GetChars(System.Byte[],System.Int32,System.Int32,System.Char[],System.Int32) */, L_9, L_10, 0, L_11, L_12, 0);
V_3 = L_13;
t1_158 * L_14 = V_1;
if (L_14)
{
goto IL_0096;
}
}
{
int32_t L_15 = V_2;
int32_t L_16 = V_0;
if ((!(((uint32_t)L_15) == ((uint32_t)L_16))))
{
goto IL_0096;
}
}
{
t1_19* L_17 = (__this->f4);
int32_t L_18 = V_3;
t1_18* L_19 = (t1_18*)il2cpp_codegen_object_new (t1_18_TI_var);
L_19 = m1_442(L_19, L_17, 0, L_18, NULL);
return L_19;
}
IL_0096:
{
t1_158 * L_20 = V_1;
if (L_20)
{
goto IL_00a3;
}
}
{
int32_t L_21 = V_0;
t1_158 * L_22 = (t1_158 *)il2cpp_codegen_object_new (t1_158_TI_var);
m1_4292(L_22, L_21, NULL);
V_1 = L_22;
}
IL_00a3:
{
t1_158 * L_23 = V_1;
t1_19* L_24 = (__this->f4);
int32_t L_25 = V_3;
m1_4314(L_23, L_24, 0, L_25, NULL);
int32_t L_26 = V_0;
int32_t L_27 = V_2;
V_0 = ((int32_t)((int32_t)L_26-(int32_t)L_27));
int32_t L_28 = V_0;
if ((((int32_t)L_28) > ((int32_t)0)))
{
goto IL_0042;
}
}
{
t1_158 * L_29 = V_1;
t1_18* L_30 = m1_4303(L_29, NULL);
return L_30;
}
}
extern "C" float m1_2084 (t1_229 * __this, const MethodInfo* method)
{
{
VirtActionInvoker1< int32_t >::Invoke(8 /* System.Void System.IO.BinaryReader::FillBuffer(System.Int32) */, __this, 4);
t1_83* L_0 = (__this->f2);
float L_1 = m1_1439(NULL, L_0, 0, NULL);
return L_1;
}
}
extern "C" uint16_t m1_2085 (t1_229 * __this, const MethodInfo* method)
{
{
VirtActionInvoker1< int32_t >::Invoke(8 /* System.Void System.IO.BinaryReader::FillBuffer(System.Int32) */, __this, 2);
t1_83* L_0 = (__this->f2);
int32_t L_1 = 0;
t1_83* L_2 = (__this->f2);
int32_t L_3 = 1;
return (((int32_t)((uint16_t)((int32_t)((int32_t)(*(uint8_t*)(uint8_t*)SZArrayLdElema(L_0, L_1, sizeof(uint8_t)))|(int32_t)((int32_t)((int32_t)(*(uint8_t*)(uint8_t*)SZArrayLdElema(L_2, L_3, sizeof(uint8_t)))<<(int32_t)8)))))));
}
}
extern "C" uint32_t m1_2086 (t1_229 * __this, const MethodInfo* method)
{
{
VirtActionInvoker1< int32_t >::Invoke(8 /* System.Void System.IO.BinaryReader::FillBuffer(System.Int32) */, __this, 4);
t1_83* L_0 = (__this->f2);
int32_t L_1 = 0;
t1_83* L_2 = (__this->f2);
int32_t L_3 = 1;
t1_83* L_4 = (__this->f2);
int32_t L_5 = 2;
t1_83* L_6 = (__this->f2);
int32_t L_7 = 3;
return ((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)(*(uint8_t*)(uint8_t*)SZArrayLdElema(L_0, L_1, sizeof(uint8_t)))|(int32_t)((int32_t)((int32_t)(*(uint8_t*)(uint8_t*)SZArrayLdElema(L_2, L_3, sizeof(uint8_t)))<<(int32_t)8))))|(int32_t)((int32_t)((int32_t)(*(uint8_t*)(uint8_t*)SZArrayLdElema(L_4, L_5, sizeof(uint8_t)))<<(int32_t)((int32_t)16)))))|(int32_t)((int32_t)((int32_t)(*(uint8_t*)(uint8_t*)SZArrayLdElema(L_6, L_7, sizeof(uint8_t)))<<(int32_t)((int32_t)24)))));
}
}
extern "C" uint64_t m1_2087 (t1_229 * __this, const MethodInfo* method)
{
uint32_t V_0 = 0;
uint32_t V_1 = 0;
{
VirtActionInvoker1< int32_t >::Invoke(8 /* System.Void System.IO.BinaryReader::FillBuffer(System.Int32) */, __this, 8);
t1_83* L_0 = (__this->f2);
int32_t L_1 = 0;
t1_83* L_2 = (__this->f2);
int32_t L_3 = 1;
t1_83* L_4 = (__this->f2);
int32_t L_5 = 2;
t1_83* L_6 = (__this->f2);
int32_t L_7 = 3;
V_0 = ((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)(*(uint8_t*)(uint8_t*)SZArrayLdElema(L_0, L_1, sizeof(uint8_t)))|(int32_t)((int32_t)((int32_t)(*(uint8_t*)(uint8_t*)SZArrayLdElema(L_2, L_3, sizeof(uint8_t)))<<(int32_t)8))))|(int32_t)((int32_t)((int32_t)(*(uint8_t*)(uint8_t*)SZArrayLdElema(L_4, L_5, sizeof(uint8_t)))<<(int32_t)((int32_t)16)))))|(int32_t)((int32_t)((int32_t)(*(uint8_t*)(uint8_t*)SZArrayLdElema(L_6, L_7, sizeof(uint8_t)))<<(int32_t)((int32_t)24)))));
t1_83* L_8 = (__this->f2);
int32_t L_9 = 4;
t1_83* L_10 = (__this->f2);
int32_t L_11 = 5;
t1_83* L_12 = (__this->f2);
int32_t L_13 = 6;
t1_83* L_14 = (__this->f2);
int32_t L_15 = 7;
V_1 = ((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)(*(uint8_t*)(uint8_t*)SZArrayLdElema(L_8, L_9, sizeof(uint8_t)))|(int32_t)((int32_t)((int32_t)(*(uint8_t*)(uint8_t*)SZArrayLdElema(L_10, L_11, sizeof(uint8_t)))<<(int32_t)8))))|(int32_t)((int32_t)((int32_t)(*(uint8_t*)(uint8_t*)SZArrayLdElema(L_12, L_13, sizeof(uint8_t)))<<(int32_t)((int32_t)16)))))|(int32_t)((int32_t)((int32_t)(*(uint8_t*)(uint8_t*)SZArrayLdElema(L_14, L_15, sizeof(uint8_t)))<<(int32_t)((int32_t)24)))));
uint32_t L_16 = V_1;
uint32_t L_17 = V_0;
return ((int64_t)((int64_t)((int64_t)((int64_t)(((int64_t)((uint64_t)L_16)))<<(int32_t)((int32_t)32)))|(int64_t)(((int64_t)((uint64_t)L_17)))));
}
}
extern TypeInfo* t1_83_TI_var;
extern "C" void m1_2088 (t1_229 * __this, int32_t p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_83_TI_var = il2cpp_codegen_type_info_from_index(42);
s_Il2CppMethodIntialized = true;
}
t1_83* V_0 = {0};
{
t1_83* L_0 = (__this->f2);
int32_t L_1 = p0;
if ((((int32_t)(((int32_t)((int32_t)(((t1_33 *)L_0)->max_length))))) > ((int32_t)L_1)))
{
goto IL_0033;
}
}
{
int32_t L_2 = p0;
V_0 = ((t1_83*)SZArrayNew(t1_83_TI_var, L_2));
t1_83* L_3 = (__this->f2);
t1_83* L_4 = V_0;
t1_83* L_5 = (__this->f2);
m1_4599(NULL, (t1_33 *)(t1_33 *)L_3, 0, (t1_33 *)(t1_33 *)L_4, 0, (((int32_t)((int32_t)(((t1_33 *)L_5)->max_length)))), NULL);
t1_83* L_6 = V_0;
__this->f2 = L_6;
}
IL_0033:
{
return;
}
}
extern TypeInfo* t1_701_TI_var;
extern TypeInfo* t1_653_TI_var;
extern TypeInfo* t1_256_TI_var;
extern TypeInfo* t1_18_TI_var;
extern TypeInfo* t1_237_TI_var;
extern Il2CppCodeGenString* _stringLiteral720;
extern Il2CppCodeGenString* _stringLiteral721;
extern Il2CppCodeGenString* _stringLiteral722;
extern Il2CppCodeGenString* _stringLiteral723;
extern Il2CppCodeGenString* _stringLiteral724;
extern Il2CppCodeGenString* _stringLiteral725;
extern Il2CppCodeGenString* _stringLiteral622;
extern Il2CppCodeGenString* _stringLiteral726;
extern "C" t1_234 * m1_2089 (t1_1 * __this , t1_18* p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_701_TI_var = il2cpp_codegen_type_info_from_index(2);
t1_653_TI_var = il2cpp_codegen_type_info_from_index(4);
t1_256_TI_var = il2cpp_codegen_type_info_from_index(140);
t1_18_TI_var = il2cpp_codegen_type_info_from_index(11);
t1_237_TI_var = il2cpp_codegen_type_info_from_index(218);
_stringLiteral720 = il2cpp_codegen_string_literal_from_index(720);
_stringLiteral721 = il2cpp_codegen_string_literal_from_index(721);
_stringLiteral722 = il2cpp_codegen_string_literal_from_index(722);
_stringLiteral723 = il2cpp_codegen_string_literal_from_index(723);
_stringLiteral724 = il2cpp_codegen_string_literal_from_index(724);
_stringLiteral725 = il2cpp_codegen_string_literal_from_index(725);
_stringLiteral622 = il2cpp_codegen_string_literal_from_index(622);
_stringLiteral726 = il2cpp_codegen_string_literal_from_index(726);
s_Il2CppMethodIntialized = true;
}
{
t1_18* L_0 = p0;
if (L_0)
{
goto IL_0011;
}
}
{
t1_701 * L_1 = (t1_701 *)il2cpp_codegen_object_new (t1_701_TI_var);
m1_4570(L_1, _stringLiteral720, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_1);
}
IL_0011:
{
t1_18* L_2 = p0;
int32_t L_3 = m1_430(L_2, NULL);
if (L_3)
{
goto IL_0027;
}
}
{
t1_653 * L_4 = (t1_653 *)il2cpp_codegen_object_new (t1_653_TI_var);
m1_4561(L_4, _stringLiteral721, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_4);
}
IL_0027:
{
t1_18* L_5 = p0;
IL2CPP_RUNTIME_CLASS_INIT(t1_256_TI_var);
t1_19* L_6 = ((t1_256_SFs*)t1_256_TI_var->static_fields)->f0;
int32_t L_7 = m1_373(L_5, L_6, NULL);
if ((((int32_t)L_7) == ((int32_t)(-1))))
{
goto IL_0043;
}
}
{
t1_653 * L_8 = (t1_653 *)il2cpp_codegen_object_new (t1_653_TI_var);
m1_4561(L_8, _stringLiteral722, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_8);
}
IL_0043:
{
t1_18* L_9 = p0;
t1_18* L_10 = m1_357(L_9, NULL);
int32_t L_11 = m1_430(L_10, NULL);
if (L_11)
{
goto IL_005e;
}
}
{
t1_653 * L_12 = (t1_653 *)il2cpp_codegen_object_new (t1_653_TI_var);
m1_4561(L_12, _stringLiteral723, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_12);
}
IL_005e:
{
t1_18* L_13 = p0;
bool L_14 = m1_2109(NULL, L_13, NULL);
if (!L_14)
{
goto IL_007f;
}
}
{
t1_18* L_15 = p0;
IL2CPP_RUNTIME_CLASS_INIT(t1_18_TI_var);
t1_18* L_16 = m1_421(NULL, _stringLiteral724, L_15, _stringLiteral725, NULL);
t1_237 * L_17 = (t1_237 *)il2cpp_codegen_object_new (t1_237_TI_var);
m1_2176(L_17, L_16, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_17);
}
IL_007f:
{
t1_18* L_18 = p0;
IL2CPP_RUNTIME_CLASS_INIT(t1_18_TI_var);
bool L_19 = m1_456(NULL, L_18, _stringLiteral622, NULL);
if (!L_19)
{
goto IL_009a;
}
}
{
t1_653 * L_20 = (t1_653 *)il2cpp_codegen_object_new (t1_653_TI_var);
m1_4561(L_20, _stringLiteral726, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_20);
}
IL_009a:
{
t1_18* L_21 = p0;
t1_234 * L_22 = m1_2090(NULL, L_21, NULL);
return L_22;
}
}
extern TypeInfo* t1_234_TI_var;
extern TypeInfo* t1_254_TI_var;
extern "C" t1_234 * m1_2090 (t1_1 * __this , t1_18* p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_234_TI_var = il2cpp_codegen_type_info_from_index(220);
t1_254_TI_var = il2cpp_codegen_type_info_from_index(221);
s_Il2CppMethodIntialized = true;
}
t1_234 * V_0 = {0};
int32_t V_1 = {0};
{
t1_18* L_0 = p0;
t1_234 * L_1 = (t1_234 *)il2cpp_codegen_object_new (t1_234_TI_var);
m1_2096(L_1, L_0, 1, NULL);
V_0 = L_1;
t1_234 * L_2 = V_0;
t1_234 * L_3 = m1_2100(L_2, NULL);
if (!L_3)
{
goto IL_002e;
}
}
{
t1_234 * L_4 = V_0;
t1_234 * L_5 = m1_2100(L_4, NULL);
bool L_6 = m1_2099(L_5, NULL);
if (L_6)
{
goto IL_002e;
}
}
{
t1_234 * L_7 = V_0;
t1_234 * L_8 = m1_2100(L_7, NULL);
m1_2101(L_8, NULL);
}
IL_002e:
{
t1_18* L_9 = p0;
IL2CPP_RUNTIME_CLASS_INIT(t1_254_TI_var);
bool L_10 = m1_2206(NULL, L_9, (&V_1), NULL);
if (L_10)
{
goto IL_0056;
}
}
{
int32_t L_11 = V_1;
if ((((int32_t)L_11) == ((int32_t)((int32_t)183))))
{
goto IL_0056;
}
}
{
int32_t L_12 = V_1;
if ((((int32_t)L_12) == ((int32_t)((int32_t)80))))
{
goto IL_0056;
}
}
{
t1_18* L_13 = p0;
int32_t L_14 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(t1_254_TI_var);
t1_43 * L_15 = m1_2205(NULL, L_13, L_14, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_15);
}
IL_0056:
{
t1_234 * L_16 = V_0;
return L_16;
}
}
extern TypeInfo* t1_254_TI_var;
extern "C" bool m1_2091 (t1_1 * __this , t1_18* p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_254_TI_var = il2cpp_codegen_type_info_from_index(221);
s_Il2CppMethodIntialized = true;
}
int32_t V_0 = {0};
bool V_1 = false;
{
t1_18* L_0 = p0;
if (L_0)
{
goto IL_0008;
}
}
{
return 0;
}
IL_0008:
{
t1_18* L_1 = p0;
IL2CPP_RUNTIME_CLASS_INIT(t1_254_TI_var);
bool L_2 = m1_2213(NULL, L_1, (&V_0), NULL);
V_1 = L_2;
bool L_3 = V_1;
return L_3;
}
}
extern TypeInfo* t1_254_TI_var;
extern "C" t1_18* m1_2092 (t1_1 * __this , const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_254_TI_var = il2cpp_codegen_type_info_from_index(221);
s_Il2CppMethodIntialized = true;
}
int32_t V_0 = {0};
t1_18* V_1 = {0};
{
IL2CPP_RUNTIME_CLASS_INIT(t1_254_TI_var);
t1_18* L_0 = m1_2208(NULL, (&V_0), NULL);
V_1 = L_0;
int32_t L_1 = V_0;
if (!L_1)
{
goto IL_0015;
}
}
{
int32_t L_2 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(t1_254_TI_var);
t1_43 * L_3 = m1_2204(NULL, L_2, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_3);
}
IL_0015:
{
t1_18* L_4 = V_1;
return L_4;
}
}
extern "C" t1_212* m1_2093 (t1_1 * __this , t1_18* p0, t1_18* p1, const MethodInfo* method)
{
{
t1_18* L_0 = p0;
t1_18* L_1 = p1;
t1_212* L_2 = m1_2094(NULL, L_0, L_1, ((int32_t)16), 0, NULL);
return L_2;
}
}
extern TypeInfo* t1_701_TI_var;
extern TypeInfo* t1_212_TI_var;
extern TypeInfo* t1_653_TI_var;
extern TypeInfo* t1_256_TI_var;
extern TypeInfo* t1_258_TI_var;
extern TypeInfo* t1_254_TI_var;
extern TypeInfo* t1_18_TI_var;
extern TypeInfo* t1_236_TI_var;
extern Il2CppCodeGenString* _stringLiteral727;
extern Il2CppCodeGenString* _stringLiteral728;
extern Il2CppCodeGenString* _stringLiteral720;
extern Il2CppCodeGenString* _stringLiteral729;
extern Il2CppCodeGenString* _stringLiteral730;
extern Il2CppCodeGenString* _stringLiteral731;
extern Il2CppCodeGenString* _stringLiteral732;
extern Il2CppCodeGenString* _stringLiteral733;
extern Il2CppCodeGenString* _stringLiteral734;
extern Il2CppCodeGenString* _stringLiteral735;
extern "C" t1_212* m1_2094 (t1_1 * __this , t1_18* p0, t1_18* p1, int32_t p2, int32_t p3, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_701_TI_var = il2cpp_codegen_type_info_from_index(2);
t1_212_TI_var = il2cpp_codegen_type_info_from_index(32);
t1_653_TI_var = il2cpp_codegen_type_info_from_index(4);
t1_256_TI_var = il2cpp_codegen_type_info_from_index(140);
t1_258_TI_var = il2cpp_codegen_type_info_from_index(222);
t1_254_TI_var = il2cpp_codegen_type_info_from_index(221);
t1_18_TI_var = il2cpp_codegen_type_info_from_index(11);
t1_236_TI_var = il2cpp_codegen_type_info_from_index(223);
_stringLiteral727 = il2cpp_codegen_string_literal_from_index(727);
_stringLiteral728 = il2cpp_codegen_string_literal_from_index(728);
_stringLiteral720 = il2cpp_codegen_string_literal_from_index(720);
_stringLiteral729 = il2cpp_codegen_string_literal_from_index(729);
_stringLiteral730 = il2cpp_codegen_string_literal_from_index(730);
_stringLiteral731 = il2cpp_codegen_string_literal_from_index(731);
_stringLiteral732 = il2cpp_codegen_string_literal_from_index(732);
_stringLiteral733 = il2cpp_codegen_string_literal_from_index(733);
_stringLiteral734 = il2cpp_codegen_string_literal_from_index(734);
_stringLiteral735 = il2cpp_codegen_string_literal_from_index(735);
s_Il2CppMethodIntialized = true;
}
t1_18* V_0 = {0};
t1_18* V_1 = {0};
int32_t V_2 = {0};
int32_t V_3 = {0};
t1_18* V_4 = {0};
t1_212* V_5 = {0};
{
t1_18* L_0 = p0;
if (!L_0)
{
goto IL_000c;
}
}
{
t1_18* L_1 = p1;
if (L_1)
{
goto IL_0012;
}
}
IL_000c:
{
t1_701 * L_2 = (t1_701 *)il2cpp_codegen_object_new (t1_701_TI_var);
m1_4569(L_2, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_2);
}
IL_0012:
{
t1_18* L_3 = p1;
int32_t L_4 = m1_430(L_3, NULL);
if (L_4)
{
goto IL_0024;
}
}
{
return ((t1_212*)SZArrayNew(t1_212_TI_var, 0));
}
IL_0024:
{
t1_18* L_5 = p0;
t1_18* L_6 = m1_357(L_5, NULL);
int32_t L_7 = m1_430(L_6, NULL);
if (L_7)
{
goto IL_003f;
}
}
{
t1_653 * L_8 = (t1_653 *)il2cpp_codegen_object_new (t1_653_TI_var);
m1_4561(L_8, _stringLiteral727, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_8);
}
IL_003f:
{
t1_18* L_9 = p0;
t1_18* L_10 = p1;
IL2CPP_RUNTIME_CLASS_INIT(t1_256_TI_var);
t1_18* L_11 = m1_2230(NULL, L_9, L_10, NULL);
V_0 = L_11;
t1_18* L_12 = V_0;
t1_18* L_13 = m1_2232(NULL, L_12, NULL);
V_1 = L_13;
t1_18* L_14 = V_1;
t1_19* L_15 = ((t1_256_SFs*)t1_256_TI_var->static_fields)->f0;
int32_t L_16 = m1_373(L_14, L_15, NULL);
if ((((int32_t)L_16) == ((int32_t)(-1))))
{
goto IL_006a;
}
}
{
t1_653 * L_17 = (t1_653 *)il2cpp_codegen_object_new (t1_653_TI_var);
m1_4561(L_17, _stringLiteral728, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_17);
}
IL_006a:
{
t1_18* L_18 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(t1_256_TI_var);
t1_19* L_19 = ((t1_256_SFs*)t1_256_TI_var->static_fields)->f0;
int32_t L_20 = m1_373(L_18, L_19, NULL);
if ((((int32_t)L_20) == ((int32_t)(-1))))
{
goto IL_00ac;
}
}
{
t1_18* L_21 = p0;
IL2CPP_RUNTIME_CLASS_INIT(t1_258_TI_var);
t1_19* L_22 = ((t1_258_SFs*)t1_258_TI_var->static_fields)->f1;
int32_t L_23 = m1_373(L_21, L_22, NULL);
if ((!(((uint32_t)L_23) == ((uint32_t)(-1)))))
{
goto IL_009c;
}
}
{
t1_653 * L_24 = (t1_653 *)il2cpp_codegen_object_new (t1_653_TI_var);
m1_4563(L_24, _stringLiteral728, _stringLiteral720, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_24);
}
IL_009c:
{
t1_653 * L_25 = (t1_653 *)il2cpp_codegen_object_new (t1_653_TI_var);
m1_4563(L_25, _stringLiteral729, _stringLiteral730, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_25);
}
IL_00ac:
{
t1_18* L_26 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(t1_254_TI_var);
bool L_27 = m1_2213(NULL, L_26, (&V_2), NULL);
if (L_27)
{
goto IL_013e;
}
}
{
int32_t L_28 = V_2;
if (L_28)
{
goto IL_00d7;
}
}
{
t1_18* L_29 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(t1_254_TI_var);
bool L_30 = m1_2212(NULL, L_29, (&V_3), NULL);
if (!L_30)
{
goto IL_00d7;
}
}
{
t1_212* L_31 = ((t1_212*)SZArrayNew(t1_212_TI_var, 1));
t1_18* L_32 = V_1;
ArrayElementTypeCheck (L_31, L_32);
*((t1_18**)(t1_18**)SZArrayLdElema(L_31, 0, sizeof(t1_18*))) = (t1_18*)L_32;
return L_31;
}
IL_00d7:
{
int32_t L_33 = V_2;
if ((((int32_t)L_33) == ((int32_t)3)))
{
goto IL_00e6;
}
}
{
t1_18* L_34 = V_1;
int32_t L_35 = V_2;
IL2CPP_RUNTIME_CLASS_INIT(t1_254_TI_var);
t1_43 * L_36 = m1_2205(NULL, L_34, L_35, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_36);
}
IL_00e6:
{
t1_18* L_37 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(t1_258_TI_var);
t1_19* L_38 = ((t1_258_SFs*)t1_258_TI_var->static_fields)->f0;
int32_t L_39 = m1_373(L_37, L_38, NULL);
if ((!(((uint32_t)L_39) == ((uint32_t)(-1)))))
{
goto IL_010d;
}
}
{
t1_18* L_40 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(t1_18_TI_var);
t1_18* L_41 = m1_421(NULL, _stringLiteral731, L_40, _stringLiteral732, NULL);
t1_236 * L_42 = (t1_236 *)il2cpp_codegen_object_new (t1_236_TI_var);
m1_2104(L_42, L_41, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_42);
}
IL_010d:
{
t1_18* L_43 = p0;
IL2CPP_RUNTIME_CLASS_INIT(t1_258_TI_var);
t1_19* L_44 = ((t1_258_SFs*)t1_258_TI_var->static_fields)->f0;
int32_t L_45 = m1_373(L_43, L_44, NULL);
if ((!(((uint32_t)L_45) == ((uint32_t)(-1)))))
{
goto IL_012e;
}
}
{
t1_653 * L_46 = (t1_653 *)il2cpp_codegen_object_new (t1_653_TI_var);
m1_4563(L_46, _stringLiteral733, _stringLiteral734, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_46);
}
IL_012e:
{
t1_653 * L_47 = (t1_653 *)il2cpp_codegen_object_new (t1_653_TI_var);
m1_4563(L_47, _stringLiteral735, _stringLiteral720, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_47);
}
IL_013e:
{
t1_18* L_48 = V_1;
t1_18* L_49 = p1;
IL2CPP_RUNTIME_CLASS_INIT(t1_256_TI_var);
t1_18* L_50 = m1_2230(NULL, L_48, L_49, NULL);
V_4 = L_50;
t1_18* L_51 = p0;
t1_18* L_52 = V_4;
int32_t L_53 = p3;
int32_t L_54 = p2;
IL2CPP_RUNTIME_CLASS_INIT(t1_254_TI_var);
t1_212* L_55 = m1_2207(NULL, L_51, L_52, L_53, L_54, (&V_2), NULL);
V_5 = L_55;
int32_t L_56 = V_2;
if (!L_56)
{
goto IL_0163;
}
}
{
t1_18* L_57 = V_1;
int32_t L_58 = V_2;
IL2CPP_RUNTIME_CLASS_INIT(t1_254_TI_var);
t1_43 * L_59 = m1_2205(NULL, L_57, L_58, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_59);
}
IL_0163:
{
t1_212* L_60 = V_5;
return L_60;
}
}
extern "C" void m1_2095 (t1_234 * __this, t1_18* p0, const MethodInfo* method)
{
{
t1_18* L_0 = p0;
m1_2096(__this, L_0, 0, NULL);
return;
}
}
extern TypeInfo* t1_256_TI_var;
extern "C" void m1_2096 (t1_234 * __this, t1_18* p0, bool p1, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_256_TI_var = il2cpp_codegen_type_info_from_index(140);
s_Il2CppMethodIntialized = true;
}
{
m1_2168(__this, NULL);
t1_18* L_0 = p0;
m1_2174(__this, L_0, NULL);
t1_18* L_1 = p0;
IL2CPP_RUNTIME_CLASS_INIT(t1_256_TI_var);
t1_18* L_2 = m1_2234(NULL, L_1, NULL);
((t1_235 *)__this)->f1 = L_2;
bool L_3 = p1;
if (!L_3)
{
goto IL_0030;
}
}
{
t1_18* L_4 = p0;
IL2CPP_RUNTIME_CLASS_INIT(t1_256_TI_var);
t1_18* L_5 = m1_2233(NULL, L_4, NULL);
((t1_235 *)__this)->f2 = L_5;
goto IL_0037;
}
IL_0030:
{
t1_18* L_6 = p0;
((t1_235 *)__this)->f2 = L_6;
}
IL_0037:
{
m1_2098(__this, NULL);
return;
}
}
extern "C" void m1_2097 (t1_234 * __this, t1_190 * p0, t1_521 p1, const MethodInfo* method)
{
{
t1_190 * L_0 = p0;
t1_521 L_1 = p1;
m1_2169(__this, L_0, L_1, NULL);
m1_2098(__this, NULL);
return;
}
}
extern TypeInfo* t1_256_TI_var;
extern TypeInfo* t1_17_TI_var;
extern TypeInfo* t1_18_TI_var;
extern "C" void m1_2098 (t1_234 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_256_TI_var = il2cpp_codegen_type_info_from_index(140);
t1_17_TI_var = il2cpp_codegen_type_info_from_index(9);
t1_18_TI_var = il2cpp_codegen_type_info_from_index(11);
s_Il2CppMethodIntialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
{
t1_18* L_0 = (((t1_235 *)__this)->f1);
int32_t L_1 = m1_430(L_0, NULL);
V_0 = ((int32_t)((int32_t)L_1-(int32_t)1));
int32_t L_2 = V_0;
if ((((int32_t)L_2) <= ((int32_t)1)))
{
goto IL_002f;
}
}
{
t1_18* L_3 = (((t1_235 *)__this)->f1);
int32_t L_4 = V_0;
uint16_t L_5 = m1_344(L_3, L_4, NULL);
IL2CPP_RUNTIME_CLASS_INIT(t1_256_TI_var);
uint16_t L_6 = ((t1_256_SFs*)t1_256_TI_var->static_fields)->f2;
if ((!(((uint32_t)L_5) == ((uint32_t)L_6))))
{
goto IL_002f;
}
}
{
int32_t L_7 = V_0;
V_0 = ((int32_t)((int32_t)L_7-(int32_t)1));
}
IL_002f:
{
t1_18* L_8 = (((t1_235 *)__this)->f1);
IL2CPP_RUNTIME_CLASS_INIT(t1_256_TI_var);
uint16_t L_9 = ((t1_256_SFs*)t1_256_TI_var->static_fields)->f2;
int32_t L_10 = V_0;
int32_t L_11 = m1_393(L_8, L_9, L_10, NULL);
V_1 = L_11;
int32_t L_12 = V_1;
if ((((int32_t)L_12) == ((int32_t)(-1))))
{
goto IL_0054;
}
}
{
int32_t L_13 = V_1;
if (L_13)
{
goto IL_006c;
}
}
{
int32_t L_14 = V_0;
if (L_14)
{
goto IL_006c;
}
}
IL_0054:
{
t1_18* L_15 = (((t1_235 *)__this)->f1);
__this->f5 = L_15;
__this->f6 = (t1_18*)NULL;
goto IL_0115;
}
IL_006c:
{
t1_18* L_16 = (((t1_235 *)__this)->f1);
int32_t L_17 = V_1;
int32_t L_18 = V_0;
int32_t L_19 = V_1;
t1_18* L_20 = m1_355(L_16, ((int32_t)((int32_t)L_17+(int32_t)1)), ((int32_t)((int32_t)L_18-(int32_t)L_19)), NULL);
__this->f5 = L_20;
int32_t L_21 = V_1;
if (L_21)
{
goto IL_00a3;
}
}
{
bool L_22 = m1_4987(NULL, NULL);
if (L_22)
{
goto IL_00a3;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(t1_256_TI_var);
t1_18* L_23 = ((t1_256_SFs*)t1_256_TI_var->static_fields)->f4;
__this->f6 = L_23;
goto IL_00b6;
}
IL_00a3:
{
t1_18* L_24 = (((t1_235 *)__this)->f1);
int32_t L_25 = V_1;
t1_18* L_26 = m1_355(L_24, 0, L_25, NULL);
__this->f6 = L_26;
}
IL_00b6:
{
bool L_27 = m1_4987(NULL, NULL);
if (!L_27)
{
goto IL_0115;
}
}
{
t1_18* L_28 = (__this->f6);
int32_t L_29 = m1_430(L_28, NULL);
if ((!(((uint32_t)L_29) == ((uint32_t)2))))
{
goto IL_0115;
}
}
{
t1_18* L_30 = (__this->f6);
uint16_t L_31 = m1_344(L_30, 1, NULL);
if ((!(((uint32_t)L_31) == ((uint32_t)((int32_t)58)))))
{
goto IL_0115;
}
}
{
t1_18* L_32 = (__this->f6);
uint16_t L_33 = m1_344(L_32, 0, NULL);
IL2CPP_RUNTIME_CLASS_INIT(t1_17_TI_var);
bool L_34 = m1_302(NULL, L_33, NULL);
if (!L_34)
{
goto IL_0115;
}
}
{
t1_18* L_35 = (__this->f6);
IL2CPP_RUNTIME_CLASS_INIT(t1_256_TI_var);
uint16_t L_36 = ((t1_256_SFs*)t1_256_TI_var->static_fields)->f2;
uint16_t L_37 = L_36;
t1_1 * L_38 = Box(t1_17_TI_var, &L_37);
IL2CPP_RUNTIME_CLASS_INIT(t1_18_TI_var);
t1_18* L_39 = m1_418(NULL, L_35, L_38, NULL);
__this->f6 = L_39;
}
IL_0115:
{
return;
}
}
extern TypeInfo* t1_254_TI_var;
extern "C" bool m1_2099 (t1_234 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_254_TI_var = il2cpp_codegen_type_info_from_index(221);
s_Il2CppMethodIntialized = true;
}
{
m1_2172(__this, 0, NULL);
t1_251 * L_0 = &(((t1_235 *)__this)->f3);
int32_t L_1 = (L_0->f1);
IL2CPP_RUNTIME_CLASS_INIT(t1_254_TI_var);
int32_t L_2 = ((t1_254_SFs*)t1_254_TI_var->static_fields)->f0;
if ((!(((uint32_t)L_1) == ((uint32_t)L_2))))
{
goto IL_001e;
}
}
{
return 0;
}
IL_001e:
{
t1_251 * L_3 = &(((t1_235 *)__this)->f3);
int32_t L_4 = (L_3->f1);
if (((int32_t)((int32_t)L_4&(int32_t)((int32_t)16))))
{
goto IL_0033;
}
}
{
return 0;
}
IL_0033:
{
return 1;
}
}
extern TypeInfo* t1_234_TI_var;
extern "C" t1_234 * m1_2100 (t1_234 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_234_TI_var = il2cpp_codegen_type_info_from_index(220);
s_Il2CppMethodIntialized = true;
}
{
t1_18* L_0 = (__this->f6);
if (!L_0)
{
goto IL_001b;
}
}
{
t1_18* L_1 = (__this->f6);
int32_t L_2 = m1_430(L_1, NULL);
if (L_2)
{
goto IL_001d;
}
}
IL_001b:
{
return (t1_234 *)NULL;
}
IL_001d:
{
t1_18* L_3 = (__this->f6);
t1_234 * L_4 = (t1_234 *)il2cpp_codegen_object_new (t1_234_TI_var);
m1_2095(L_4, L_3, NULL);
return L_4;
}
}
extern "C" void m1_2101 (t1_234 * __this, const MethodInfo* method)
{
{
t1_18* L_0 = (((t1_235 *)__this)->f1);
m1_2089(NULL, L_0, NULL);
return;
}
}
extern "C" t1_18* m1_2102 (t1_234 * __this, const MethodInfo* method)
{
{
t1_18* L_0 = (((t1_235 *)__this)->f2);
return L_0;
}
}
extern Il2CppCodeGenString* _stringLiteral736;
extern "C" void m1_2103 (t1_236 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
_stringLiteral736 = il2cpp_codegen_string_literal_from_index(736);
s_Il2CppMethodIntialized = true;
}
{
m1_2176(__this, _stringLiteral736, NULL);
return;
}
}
extern "C" void m1_2104 (t1_236 * __this, t1_18* p0, const MethodInfo* method)
{
{
t1_18* L_0 = p0;
m1_2176(__this, L_0, NULL);
return;
}
}
extern "C" void m1_2105 (t1_236 * __this, t1_190 * p0, t1_521 p1, const MethodInfo* method)
{
{
t1_190 * L_0 = p0;
t1_521 L_1 = p1;
m1_2178(__this, L_0, L_1, NULL);
return;
}
}
extern Il2CppCodeGenString* _stringLiteral737;
extern "C" void m1_2106 (t1_238 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
_stringLiteral737 = il2cpp_codegen_string_literal_from_index(737);
s_Il2CppMethodIntialized = true;
}
{
t1_18* L_0 = m1_990(NULL, _stringLiteral737, NULL);
m1_2176(__this, L_0, NULL);
return;
}
}
extern "C" void m1_2107 (t1_238 * __this, t1_190 * p0, t1_521 p1, const MethodInfo* method)
{
{
t1_190 * L_0 = p0;
t1_521 L_1 = p1;
m1_2178(__this, L_0, L_1, NULL);
return;
}
}
extern TypeInfo* t1_701_TI_var;
extern TypeInfo* t1_256_TI_var;
extern TypeInfo* t1_653_TI_var;
extern TypeInfo* t1_170_TI_var;
extern TypeInfo* t1_777_TI_var;
extern TypeInfo* t1_18_TI_var;
extern TypeInfo* t1_236_TI_var;
extern TypeInfo* t1_254_TI_var;
extern Il2CppCodeGenString* _stringLiteral720;
extern Il2CppCodeGenString* _stringLiteral738;
extern Il2CppCodeGenString* _stringLiteral739;
extern "C" void m1_2108 (t1_1 * __this , t1_18* p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_701_TI_var = il2cpp_codegen_type_info_from_index(2);
t1_256_TI_var = il2cpp_codegen_type_info_from_index(140);
t1_653_TI_var = il2cpp_codegen_type_info_from_index(4);
t1_170_TI_var = il2cpp_codegen_type_info_from_index(19);
t1_777_TI_var = il2cpp_codegen_type_info_from_index(224);
t1_18_TI_var = il2cpp_codegen_type_info_from_index(11);
t1_236_TI_var = il2cpp_codegen_type_info_from_index(223);
t1_254_TI_var = il2cpp_codegen_type_info_from_index(221);
_stringLiteral720 = il2cpp_codegen_string_literal_from_index(720);
_stringLiteral738 = il2cpp_codegen_string_literal_from_index(738);
_stringLiteral739 = il2cpp_codegen_string_literal_from_index(739);
s_Il2CppMethodIntialized = true;
}
t1_18* V_0 = {0};
int32_t V_1 = {0};
{
t1_18* L_0 = p0;
if (L_0)
{
goto IL_0011;
}
}
{
t1_701 * L_1 = (t1_701 *)il2cpp_codegen_object_new (t1_701_TI_var);
m1_4570(L_1, _stringLiteral720, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_1);
}
IL_0011:
{
t1_18* L_2 = p0;
t1_18* L_3 = m1_357(L_2, NULL);
int32_t L_4 = m1_430(L_3, NULL);
if (!L_4)
{
goto IL_0032;
}
}
{
t1_18* L_5 = p0;
IL2CPP_RUNTIME_CLASS_INIT(t1_256_TI_var);
t1_19* L_6 = ((t1_256_SFs*)t1_256_TI_var->static_fields)->f0;
int32_t L_7 = m1_373(L_5, L_6, NULL);
if ((((int32_t)L_7) < ((int32_t)0)))
{
goto IL_003d;
}
}
IL_0032:
{
t1_653 * L_8 = (t1_653 *)il2cpp_codegen_object_new (t1_653_TI_var);
m1_4561(L_8, _stringLiteral720, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_8);
}
IL_003d:
{
t1_18* L_9 = p0;
bool L_10 = m1_2091(NULL, L_9, NULL);
if (!L_10)
{
goto IL_0062;
}
}
{
t1_170* L_11 = ((t1_170*)SZArrayNew(t1_170_TI_var, 1));
t1_18* L_12 = p0;
ArrayElementTypeCheck (L_11, L_12);
*((t1_1 **)(t1_1 **)SZArrayLdElema(L_11, 0, sizeof(t1_1 *))) = (t1_1 *)L_12;
t1_18* L_13 = m1_991(NULL, _stringLiteral738, L_11, NULL);
t1_777 * L_14 = (t1_777 *)il2cpp_codegen_object_new (t1_777_TI_var);
m1_5363(L_14, L_13, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_14);
}
IL_0062:
{
t1_18* L_15 = p0;
IL2CPP_RUNTIME_CLASS_INIT(t1_256_TI_var);
t1_18* L_16 = m1_2232(NULL, L_15, NULL);
V_0 = L_16;
t1_18* L_17 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(t1_18_TI_var);
t1_18* L_18 = ((t1_18_SFs*)t1_18_TI_var->static_fields)->f2;
bool L_19 = m1_457(NULL, L_17, L_18, NULL);
if (!L_19)
{
goto IL_009e;
}
}
{
t1_18* L_20 = V_0;
bool L_21 = m1_2091(NULL, L_20, NULL);
if (L_21)
{
goto IL_009e;
}
}
{
t1_170* L_22 = ((t1_170*)SZArrayNew(t1_170_TI_var, 1));
t1_18* L_23 = p0;
ArrayElementTypeCheck (L_22, L_23);
*((t1_1 **)(t1_1 **)SZArrayLdElema(L_22, 0, sizeof(t1_1 *))) = (t1_1 *)L_23;
t1_18* L_24 = m1_991(NULL, _stringLiteral739, L_22, NULL);
t1_236 * L_25 = (t1_236 *)il2cpp_codegen_object_new (t1_236_TI_var);
m1_2104(L_25, L_24, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_25);
}
IL_009e:
{
t1_18* L_26 = p0;
IL2CPP_RUNTIME_CLASS_INIT(t1_254_TI_var);
bool L_27 = m1_2209(NULL, L_26, (&V_1), NULL);
if (L_27)
{
goto IL_00ba;
}
}
{
int32_t L_28 = V_1;
if ((((int32_t)L_28) == ((int32_t)2)))
{
goto IL_00ba;
}
}
{
t1_18* L_29 = p0;
int32_t L_30 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(t1_254_TI_var);
t1_43 * L_31 = m1_2205(NULL, L_29, L_30, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_31);
}
IL_00ba:
{
return;
}
}
extern TypeInfo* t1_256_TI_var;
extern TypeInfo* t1_254_TI_var;
extern "C" bool m1_2109 (t1_1 * __this , t1_18* p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_256_TI_var = il2cpp_codegen_type_info_from_index(140);
t1_254_TI_var = il2cpp_codegen_type_info_from_index(221);
s_Il2CppMethodIntialized = true;
}
int32_t V_0 = {0};
{
t1_18* L_0 = p0;
if (!L_0)
{
goto IL_0027;
}
}
{
t1_18* L_1 = p0;
t1_18* L_2 = m1_357(L_1, NULL);
int32_t L_3 = m1_430(L_2, NULL);
if (!L_3)
{
goto IL_0027;
}
}
{
t1_18* L_4 = p0;
IL2CPP_RUNTIME_CLASS_INIT(t1_256_TI_var);
t1_19* L_5 = ((t1_256_SFs*)t1_256_TI_var->static_fields)->f0;
int32_t L_6 = m1_373(L_4, L_5, NULL);
if ((((int32_t)L_6) < ((int32_t)0)))
{
goto IL_0029;
}
}
IL_0027:
{
return 0;
}
IL_0029:
{
t1_18* L_7 = p0;
IL2CPP_RUNTIME_CLASS_INIT(t1_254_TI_var);
bool L_8 = m1_2212(NULL, L_7, (&V_0), NULL);
return L_8;
}
}
extern TypeInfo* t1_248_TI_var;
extern "C" t1_248 * m1_2110 (t1_1 * __this , t1_18* p0, int32_t p1, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_248_TI_var = il2cpp_codegen_type_info_from_index(225);
s_Il2CppMethodIntialized = true;
}
int32_t G_B2_0 = {0};
t1_18* G_B2_1 = {0};
int32_t G_B1_0 = {0};
t1_18* G_B1_1 = {0};
int32_t G_B3_0 = 0;
int32_t G_B3_1 = {0};
t1_18* G_B3_2 = {0};
{
t1_18* L_0 = p0;
int32_t L_1 = p1;
int32_t L_2 = p1;
G_B1_0 = L_1;
G_B1_1 = L_0;
if ((!(((uint32_t)L_2) == ((uint32_t)6))))
{
G_B2_0 = L_1;
G_B2_1 = L_0;
goto IL_000f;
}
}
{
G_B3_0 = 2;
G_B3_1 = G_B1_0;
G_B3_2 = G_B1_1;
goto IL_0010;
}
IL_000f:
{
G_B3_0 = 3;
G_B3_1 = G_B2_0;
G_B3_2 = G_B2_1;
}
IL_0010:
{
t1_248 * L_3 = (t1_248 *)il2cpp_codegen_object_new (t1_248_TI_var);
m1_2129(L_3, G_B3_2, G_B3_1, G_B3_0, 0, NULL);
return L_3;
}
}
extern TypeInfo* t1_248_TI_var;
extern "C" t1_248 * m1_2111 (t1_1 * __this , t1_18* p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_248_TI_var = il2cpp_codegen_type_info_from_index(225);
s_Il2CppMethodIntialized = true;
}
{
t1_18* L_0 = p0;
t1_248 * L_1 = (t1_248 *)il2cpp_codegen_object_new (t1_248_TI_var);
m1_2129(L_1, L_0, 3, 1, 1, NULL);
return L_1;
}
}
extern TypeInfo* t1_263_TI_var;
extern "C" t1_263 * m1_2112 (t1_1 * __this , t1_18* p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_263_TI_var = il2cpp_codegen_type_info_from_index(226);
s_Il2CppMethodIntialized = true;
}
{
t1_18* L_0 = p0;
t1_263 * L_1 = (t1_263 *)il2cpp_codegen_object_new (t1_263_TI_var);
m1_2292(L_1, L_0, NULL);
return L_1;
}
}
extern Il2CppCodeGenString* _stringLiteral740;
extern "C" void m1_2113 (t1_243 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
_stringLiteral740 = il2cpp_codegen_string_literal_from_index(740);
s_Il2CppMethodIntialized = true;
}
{
t1_18* L_0 = m1_990(NULL, _stringLiteral740, NULL);
m1_2176(__this, L_0, NULL);
m1_937(__this, ((int32_t)-2146232799), NULL);
return;
}
}
extern "C" void m1_2114 (t1_243 * __this, t1_18* p0, t1_18* p1, const MethodInfo* method)
{
{
t1_18* L_0 = p0;
m1_2176(__this, L_0, NULL);
m1_937(__this, ((int32_t)-2146232799), NULL);
t1_18* L_1 = p1;
__this->f11 = L_1;
return;
}
}
extern Il2CppCodeGenString* _stringLiteral741;
extern Il2CppCodeGenString* _stringLiteral742;
extern "C" void m1_2115 (t1_243 * __this, t1_190 * p0, t1_521 p1, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
_stringLiteral741 = il2cpp_codegen_string_literal_from_index(741);
_stringLiteral742 = il2cpp_codegen_string_literal_from_index(742);
s_Il2CppMethodIntialized = true;
}
{
t1_190 * L_0 = p0;
t1_521 L_1 = p1;
m1_2178(__this, L_0, L_1, NULL);
t1_190 * L_2 = p0;
t1_18* L_3 = m1_3634(L_2, _stringLiteral741, NULL);
__this->f11 = L_3;
t1_190 * L_4 = p0;
t1_18* L_5 = m1_3634(L_4, _stringLiteral742, NULL);
__this->f12 = L_5;
return;
}
}
extern TypeInfo* t1_175_TI_var;
extern TypeInfo* t1_170_TI_var;
extern TypeInfo* t1_18_TI_var;
extern Il2CppCodeGenString* _stringLiteral743;
extern "C" t1_18* m1_2116 (t1_243 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_175_TI_var = il2cpp_codegen_type_info_from_index(28);
t1_170_TI_var = il2cpp_codegen_type_info_from_index(19);
t1_18_TI_var = il2cpp_codegen_type_info_from_index(11);
_stringLiteral743 = il2cpp_codegen_string_literal_from_index(743);
s_Il2CppMethodIntialized = true;
}
t1_18* V_0 = {0};
{
t1_18* L_0 = (((t1_43 *)__this)->f2);
if (L_0)
{
goto IL_0037;
}
}
{
t1_18* L_1 = (__this->f11);
if (!L_1)
{
goto IL_0037;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(t1_175_TI_var);
t1_175 * L_2 = m1_1923(NULL, NULL);
t1_170* L_3 = ((t1_170*)SZArrayNew(t1_170_TI_var, 1));
t1_18* L_4 = (__this->f11);
ArrayElementTypeCheck (L_3, L_4);
*((t1_1 **)(t1_1 **)SZArrayLdElema(L_3, 0, sizeof(t1_1 *))) = (t1_1 *)L_4;
IL2CPP_RUNTIME_CLASS_INIT(t1_18_TI_var);
t1_18* L_5 = m1_416(NULL, L_2, _stringLiteral743, L_3, NULL);
V_0 = L_5;
t1_18* L_6 = V_0;
return L_6;
}
IL_0037:
{
t1_18* L_7 = (((t1_43 *)__this)->f2);
return L_7;
}
}
extern Il2CppCodeGenString* _stringLiteral741;
extern Il2CppCodeGenString* _stringLiteral742;
extern "C" void m1_2117 (t1_243 * __this, t1_190 * p0, t1_521 p1, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
_stringLiteral741 = il2cpp_codegen_string_literal_from_index(741);
_stringLiteral742 = il2cpp_codegen_string_literal_from_index(742);
s_Il2CppMethodIntialized = true;
}
{
t1_190 * L_0 = p0;
t1_521 L_1 = p1;
m1_942(__this, L_0, L_1, NULL);
t1_190 * L_2 = p0;
t1_18* L_3 = (__this->f11);
m1_3629(L_2, _stringLiteral741, L_3, NULL);
t1_190 * L_4 = p0;
t1_18* L_5 = (__this->f12);
m1_3629(L_4, _stringLiteral742, L_5, NULL);
return;
}
}
extern TypeInfo* t1_158_TI_var;
extern Il2CppCodeGenString* _stringLiteral744;
extern Il2CppCodeGenString* _stringLiteral745;
extern Il2CppCodeGenString* _stringLiteral746;
extern "C" t1_18* m1_2118 (t1_243 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_158_TI_var = il2cpp_codegen_type_info_from_index(36);
_stringLiteral744 = il2cpp_codegen_string_literal_from_index(744);
_stringLiteral745 = il2cpp_codegen_string_literal_from_index(745);
_stringLiteral746 = il2cpp_codegen_string_literal_from_index(746);
s_Il2CppMethodIntialized = true;
}
t1_158 * V_0 = {0};
{
t1_37 * L_0 = (t1_37 *)VirtFuncInvoker0< t1_37 * >::Invoke(10 /* System.Type System.Exception::GetType() */, __this);
t1_18* L_1 = (t1_18*)VirtFuncInvoker0< t1_18* >::Invoke(18 /* System.String System.Type::get_FullName() */, L_0);
t1_158 * L_2 = (t1_158 *)il2cpp_codegen_object_new (t1_158_TI_var);
m1_4293(L_2, L_1, NULL);
V_0 = L_2;
t1_158 * L_3 = V_0;
t1_18* L_4 = (t1_18*)VirtFuncInvoker0< t1_18* >::Invoke(6 /* System.String System.IO.FileNotFoundException::get_Message() */, __this);
m1_4320(L_3, _stringLiteral744, L_4, NULL);
t1_18* L_5 = (__this->f11);
if (!L_5)
{
goto IL_005d;
}
}
{
t1_18* L_6 = (__this->f11);
int32_t L_7 = m1_430(L_6, NULL);
if ((((int32_t)L_7) <= ((int32_t)0)))
{
goto IL_005d;
}
}
{
t1_158 * L_8 = V_0;
t1_18* L_9 = m1_4977(NULL, NULL);
m1_4308(L_8, L_9, NULL);
t1_158 * L_10 = V_0;
t1_18* L_11 = (__this->f11);
m1_4320(L_10, _stringLiteral745, L_11, NULL);
}
IL_005d:
{
t1_43 * L_12 = (t1_43 *)VirtFuncInvoker0< t1_43 * >::Invoke(5 /* System.Exception System.Exception::get_InnerException() */, __this);
if (!L_12)
{
goto IL_007a;
}
}
{
t1_158 * L_13 = V_0;
t1_43 * L_14 = (t1_43 *)VirtFuncInvoker0< t1_43 * >::Invoke(5 /* System.Exception System.Exception::get_InnerException() */, __this);
m1_4320(L_13, _stringLiteral746, L_14, NULL);
}
IL_007a:
{
t1_18* L_15 = (t1_18*)VirtFuncInvoker0< t1_18* >::Invoke(8 /* System.String System.Exception::get_StackTrace() */, __this);
if (!L_15)
{
goto IL_009e;
}
}
{
t1_158 * L_16 = V_0;
t1_18* L_17 = m1_4977(NULL, NULL);
m1_4308(L_16, L_17, NULL);
t1_158 * L_18 = V_0;
t1_18* L_19 = (t1_18*)VirtFuncInvoker0< t1_18* >::Invoke(8 /* System.String System.Exception::get_StackTrace() */, __this);
m1_4308(L_18, L_19, NULL);
}
IL_009e:
{
t1_158 * L_20 = V_0;
t1_18* L_21 = m1_4303(L_20, NULL);
return L_21;
}
}
extern "C" void m1_2119 (t1_246 * __this, t1_1 * p0, t1_24 p1, const MethodInfo* method)
{
__this->f0 = (methodPointerType)((MethodInfo*)p1.f0)->method;
__this->f3 = p1;
__this->f2 = p0;
}
extern "C" int32_t m1_2120 (t1_246 * __this, t1_83* p0, int32_t p1, int32_t p2, const MethodInfo* method)
{
if(__this->f9 != NULL)
{
m1_2120((t1_246 *)__this->f9,p0, p1, p2, method);
}
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found((MethodInfo*)(__this->f3.f0));
bool ___methodIsStatic = MethodIsStatic((MethodInfo*)(__this->f3.f0));
if (__this->f2 != NULL && ___methodIsStatic)
{
typedef int32_t (*FunctionPointerType) (t1_1 *, t1_1 * __this, t1_83* p0, int32_t p1, int32_t p2, const MethodInfo* method);
return ((FunctionPointerType)__this->f0)(NULL,__this->f2,p0, p1, p2,(MethodInfo*)(__this->f3.f0));
}
else if (__this->f2 != NULL || ___methodIsStatic)
{
typedef int32_t (*FunctionPointerType) (t1_1 * __this, t1_83* p0, int32_t p1, int32_t p2, const MethodInfo* method);
return ((FunctionPointerType)__this->f0)(__this->f2,p0, p1, p2,(MethodInfo*)(__this->f3.f0));
}
else
{
typedef int32_t (*FunctionPointerType) (t1_1 * __this, int32_t p1, int32_t p2, const MethodInfo* method);
return ((FunctionPointerType)__this->f0)(p0, p1, p2,(MethodInfo*)(__this->f3.f0));
}
}
extern "C" int32_t pinvoke_delegate_wrapper_t1_246(Il2CppObject* delegate, t1_83* p0, int32_t p1, int32_t p2)
{
typedef int32_t (STDCALL *native_function_ptr_type)(uint8_t*, int32_t, int32_t);
native_function_ptr_type _il2cpp_pinvoke_func = ((native_function_ptr_type)((Il2CppDelegate*)delegate)->method->method);
// Marshaling of parameter 'p0' to native representation
uint8_t* _p0_marshaled = { 0 };
_p0_marshaled = il2cpp_codegen_marshal_array<uint8_t>((Il2CppCodeGenArray*)p0);
// Marshaling of parameter 'p1' to native representation
// Marshaling of parameter 'p2' to native representation
// Native function invocation and marshaling of return value back from native representation
int32_t _return_value = _il2cpp_pinvoke_func(_p0_marshaled, p1, p2);
// Marshaling cleanup of parameter 'p0' native representation
// Marshaling cleanup of parameter 'p1' native representation
// Marshaling cleanup of parameter 'p2' native representation
return _return_value;
}
extern TypeInfo* t1_4_TI_var;
extern "C" t1_1 * m1_2121 (t1_246 * __this, t1_83* p0, int32_t p1, int32_t p2, t1_36 * p3, t1_1 * p4, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_4_TI_var = il2cpp_codegen_type_info_from_index(8);
s_Il2CppMethodIntialized = true;
}
void *__d_args[4] = {0};
__d_args[0] = p0;
__d_args[1] = Box(t1_4_TI_var, &p1);
__d_args[2] = Box(t1_4_TI_var, &p2);
return (t1_1 *)il2cpp_delegate_begin_invoke((Il2CppDelegate*)__this, __d_args, (Il2CppDelegate*)p3, (Il2CppObject*)p4);
}
extern "C" int32_t m1_2122 (t1_246 * __this, t1_1 * p0, const MethodInfo* method)
{
Il2CppObject *__result = il2cpp_delegate_end_invoke((Il2CppAsyncResult*) p0, 0);
return *(int32_t*)UnBox ((Il2CppCodeGenObject*)__result);
}
extern "C" void m1_2123 (t1_247 * __this, t1_1 * p0, t1_24 p1, const MethodInfo* method)
{
__this->f0 = (methodPointerType)((MethodInfo*)p1.f0)->method;
__this->f3 = p1;
__this->f2 = p0;
}
extern "C" void m1_2124 (t1_247 * __this, t1_83* p0, int32_t p1, int32_t p2, const MethodInfo* method)
{
if(__this->f9 != NULL)
{
m1_2124((t1_247 *)__this->f9,p0, p1, p2, method);
}
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found((MethodInfo*)(__this->f3.f0));
bool ___methodIsStatic = MethodIsStatic((MethodInfo*)(__this->f3.f0));
if (__this->f2 != NULL && ___methodIsStatic)
{
typedef void (*FunctionPointerType) (t1_1 *, t1_1 * __this, t1_83* p0, int32_t p1, int32_t p2, const MethodInfo* method);
((FunctionPointerType)__this->f0)(NULL,__this->f2,p0, p1, p2,(MethodInfo*)(__this->f3.f0));
}
else if (__this->f2 != NULL || ___methodIsStatic)
{
typedef void (*FunctionPointerType) (t1_1 * __this, t1_83* p0, int32_t p1, int32_t p2, const MethodInfo* method);
((FunctionPointerType)__this->f0)(__this->f2,p0, p1, p2,(MethodInfo*)(__this->f3.f0));
}
else
{
typedef void (*FunctionPointerType) (t1_1 * __this, int32_t p1, int32_t p2, const MethodInfo* method);
((FunctionPointerType)__this->f0)(p0, p1, p2,(MethodInfo*)(__this->f3.f0));
}
}
extern "C" void pinvoke_delegate_wrapper_t1_247(Il2CppObject* delegate, t1_83* p0, int32_t p1, int32_t p2)
{
typedef void (STDCALL *native_function_ptr_type)(uint8_t*, int32_t, int32_t);
native_function_ptr_type _il2cpp_pinvoke_func = ((native_function_ptr_type)((Il2CppDelegate*)delegate)->method->method);
// Marshaling of parameter 'p0' to native representation
uint8_t* _p0_marshaled = { 0 };
_p0_marshaled = il2cpp_codegen_marshal_array<uint8_t>((Il2CppCodeGenArray*)p0);
// Marshaling of parameter 'p1' to native representation
// Marshaling of parameter 'p2' to native representation
// Native function invocation
_il2cpp_pinvoke_func(_p0_marshaled, p1, p2);
// Marshaling cleanup of parameter 'p0' native representation
// Marshaling cleanup of parameter 'p1' native representation
// Marshaling cleanup of parameter 'p2' native representation
}
extern TypeInfo* t1_4_TI_var;
extern "C" t1_1 * m1_2125 (t1_247 * __this, t1_83* p0, int32_t p1, int32_t p2, t1_36 * p3, t1_1 * p4, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_4_TI_var = il2cpp_codegen_type_info_from_index(8);
s_Il2CppMethodIntialized = true;
}
void *__d_args[4] = {0};
__d_args[0] = p0;
__d_args[1] = Box(t1_4_TI_var, &p1);
__d_args[2] = Box(t1_4_TI_var, &p2);
return (t1_1 *)il2cpp_delegate_begin_invoke((Il2CppDelegate*)__this, __d_args, (Il2CppDelegate*)p3, (Il2CppObject*)p4);
}
extern "C" void m1_2126 (t1_247 * __this, t1_1 * p0, const MethodInfo* method)
{
il2cpp_delegate_end_invoke((Il2CppAsyncResult*) p0, 0);
}
extern TypeInfo* t1_230_TI_var;
extern TypeInfo* t1_254_TI_var;
extern TypeInfo* t1_653_TI_var;
extern TypeInfo* t1_702_TI_var;
extern TypeInfo* t1_237_TI_var;
extern Il2CppCodeGenString* _stringLiteral747;
extern Il2CppCodeGenString* _stringLiteral748;
extern Il2CppCodeGenString* _stringLiteral749;
extern Il2CppCodeGenString* _stringLiteral750;
extern Il2CppCodeGenString* _stringLiteral751;
extern "C" void m1_2127 (t1_248 * __this, t1_24 p0, int32_t p1, bool p2, int32_t p3, bool p4, bool p5, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_230_TI_var = il2cpp_codegen_type_info_from_index(227);
t1_254_TI_var = il2cpp_codegen_type_info_from_index(221);
t1_653_TI_var = il2cpp_codegen_type_info_from_index(4);
t1_702_TI_var = il2cpp_codegen_type_info_from_index(27);
t1_237_TI_var = il2cpp_codegen_type_info_from_index(218);
_stringLiteral747 = il2cpp_codegen_string_literal_from_index(747);
_stringLiteral748 = il2cpp_codegen_string_literal_from_index(748);
_stringLiteral749 = il2cpp_codegen_string_literal_from_index(749);
_stringLiteral750 = il2cpp_codegen_string_literal_from_index(750);
_stringLiteral751 = il2cpp_codegen_string_literal_from_index(751);
s_Il2CppMethodIntialized = true;
}
int32_t V_0 = {0};
int32_t V_1 = {0};
{
__this->f13 = _stringLiteral747;
IL2CPP_RUNTIME_CLASS_INIT(t1_230_TI_var);
m1_2248(__this, NULL);
IL2CPP_RUNTIME_CLASS_INIT(t1_254_TI_var);
t1_24 L_0 = ((t1_254_SFs*)t1_254_TI_var->static_fields)->f1;
__this->f14 = L_0;
t1_24 L_1 = p0;
t1_24 L_2 = (__this->f14);
bool L_3 = m1_643(NULL, L_1, L_2, NULL);
if (!L_3)
{
goto IL_0042;
}
}
{
t1_18* L_4 = m1_990(NULL, _stringLiteral749, NULL);
t1_653 * L_5 = (t1_653 *)il2cpp_codegen_object_new (t1_653_TI_var);
m1_4563(L_5, _stringLiteral748, L_4, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_5);
}
IL_0042:
{
int32_t L_6 = p1;
if ((((int32_t)L_6) < ((int32_t)1)))
{
goto IL_0050;
}
}
{
int32_t L_7 = p1;
if ((((int32_t)L_7) <= ((int32_t)3)))
{
goto IL_005b;
}
}
IL_0050:
{
t1_702 * L_8 = (t1_702 *)il2cpp_codegen_object_new (t1_702_TI_var);
m1_4574(L_8, _stringLiteral750, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_8);
}
IL_005b:
{
t1_24 L_9 = p0;
IL2CPP_RUNTIME_CLASS_INIT(t1_254_TI_var);
int32_t L_10 = m1_2211(NULL, L_9, (&V_0), NULL);
V_1 = L_10;
int32_t L_11 = V_0;
if (!L_11)
{
goto IL_0077;
}
}
{
t1_18* L_12 = (__this->f13);
int32_t L_13 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(t1_254_TI_var);
t1_43 * L_14 = m1_2205(NULL, L_12, L_13, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_14);
}
IL_0077:
{
int32_t L_15 = V_1;
if (L_15)
{
goto IL_0088;
}
}
{
t1_237 * L_16 = (t1_237 *)il2cpp_codegen_object_new (t1_237_TI_var);
m1_2176(L_16, _stringLiteral751, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_16);
}
IL_0088:
{
int32_t L_17 = V_1;
if ((!(((uint32_t)L_17) == ((uint32_t)1))))
{
goto IL_009b;
}
}
{
__this->f4 = 1;
goto IL_00a2;
}
IL_009b:
{
__this->f4 = 0;
}
IL_00a2:
{
t1_24 L_18 = p0;
__this->f14 = L_18;
int32_t L_19 = p1;
__this->f1 = L_19;
bool L_20 = p2;
__this->f2 = L_20;
bool L_21 = p4;
__this->f3 = L_21;
__this->f6 = 0;
int32_t L_22 = p3;
bool L_23 = p5;
m1_2160(__this, L_22, L_23, NULL);
bool L_24 = (__this->f4);
if (!L_24)
{
goto IL_00ff;
}
}
{
t1_24 L_25 = p0;
IL2CPP_RUNTIME_CLASS_INIT(t1_254_TI_var);
int64_t L_26 = m1_2219(NULL, L_25, (((int64_t)((int64_t)0))), 1, (&V_0), NULL);
__this->f12 = L_26;
int32_t L_27 = V_0;
if (!L_27)
{
goto IL_00ff;
}
}
{
t1_18* L_28 = (__this->f13);
int32_t L_29 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(t1_254_TI_var);
t1_43 * L_30 = m1_2205(NULL, L_28, L_29, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_30);
}
IL_00ff:
{
__this->f5 = (((int64_t)((int64_t)0)));
return;
}
}
extern "C" void m1_2128 (t1_248 * __this, t1_18* p0, int32_t p1, int32_t p2, const MethodInfo* method)
{
int32_t G_B2_0 = {0};
int32_t G_B2_1 = {0};
t1_18* G_B2_2 = {0};
t1_248 * G_B2_3 = {0};
int32_t G_B1_0 = {0};
int32_t G_B1_1 = {0};
t1_18* G_B1_2 = {0};
t1_248 * G_B1_3 = {0};
int32_t G_B3_0 = 0;
int32_t G_B3_1 = {0};
int32_t G_B3_2 = {0};
t1_18* G_B3_3 = {0};
t1_248 * G_B3_4 = {0};
{
t1_18* L_0 = p0;
int32_t L_1 = p1;
int32_t L_2 = p2;
int32_t L_3 = p2;
G_B1_0 = L_2;
G_B1_1 = L_1;
G_B1_2 = L_0;
G_B1_3 = __this;
if ((!(((uint32_t)L_3) == ((uint32_t)2))))
{
G_B2_0 = L_2;
G_B2_1 = L_1;
G_B2_2 = L_0;
G_B2_3 = __this;
goto IL_0011;
}
}
{
G_B3_0 = 0;
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_0012;
}
IL_0011:
{
G_B3_0 = 1;
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_0012:
{
m1_2130(G_B3_4, G_B3_3, G_B3_2, G_B3_1, G_B3_0, ((int32_t)8192), 0, 0, NULL);
return;
}
}
extern "C" void m1_2129 (t1_248 * __this, t1_18* p0, int32_t p1, int32_t p2, int32_t p3, const MethodInfo* method)
{
{
t1_18* L_0 = p0;
int32_t L_1 = p1;
int32_t L_2 = p2;
int32_t L_3 = p3;
m1_2131(__this, L_0, L_1, L_2, L_3, ((int32_t)8192), 0, 0, NULL);
return;
}
}
extern "C" void m1_2130 (t1_248 * __this, t1_18* p0, int32_t p1, int32_t p2, int32_t p3, int32_t p4, bool p5, bool p6, const MethodInfo* method)
{
bool G_B2_0 = false;
int32_t G_B2_1 = 0;
int32_t G_B2_2 = {0};
int32_t G_B2_3 = {0};
int32_t G_B2_4 = {0};
t1_18* G_B2_5 = {0};
t1_248 * G_B2_6 = {0};
bool G_B1_0 = false;
int32_t G_B1_1 = 0;
int32_t G_B1_2 = {0};
int32_t G_B1_3 = {0};
int32_t G_B1_4 = {0};
t1_18* G_B1_5 = {0};
t1_248 * G_B1_6 = {0};
int32_t G_B3_0 = 0;
bool G_B3_1 = false;
int32_t G_B3_2 = 0;
int32_t G_B3_3 = {0};
int32_t G_B3_4 = {0};
int32_t G_B3_5 = {0};
t1_18* G_B3_6 = {0};
t1_248 * G_B3_7 = {0};
{
t1_18* L_0 = p0;
int32_t L_1 = p1;
int32_t L_2 = p2;
int32_t L_3 = p3;
int32_t L_4 = p4;
bool L_5 = p6;
bool L_6 = p5;
G_B1_0 = L_5;
G_B1_1 = L_4;
G_B1_2 = L_3;
G_B1_3 = L_2;
G_B1_4 = L_1;
G_B1_5 = L_0;
G_B1_6 = __this;
if (!L_6)
{
G_B2_0 = L_5;
G_B2_1 = L_4;
G_B2_2 = L_3;
G_B2_3 = L_2;
G_B2_4 = L_1;
G_B2_5 = L_0;
G_B2_6 = __this;
goto IL_001b;
}
}
{
G_B3_0 = ((int32_t)1073741824);
G_B3_1 = G_B1_0;
G_B3_2 = G_B1_1;
G_B3_3 = G_B1_2;
G_B3_4 = G_B1_3;
G_B3_5 = G_B1_4;
G_B3_6 = G_B1_5;
G_B3_7 = G_B1_6;
goto IL_001c;
}
IL_001b:
{
G_B3_0 = 0;
G_B3_1 = G_B2_0;
G_B3_2 = G_B2_1;
G_B3_3 = G_B2_2;
G_B3_4 = G_B2_3;
G_B3_5 = G_B2_4;
G_B3_6 = G_B2_5;
G_B3_7 = G_B2_6;
}
IL_001c:
{
m1_2131(G_B3_7, G_B3_6, G_B3_5, G_B3_4, G_B3_3, G_B3_2, G_B3_1, G_B3_0, NULL);
return;
}
}
extern TypeInfo* t1_230_TI_var;
extern TypeInfo* t1_701_TI_var;
extern TypeInfo* t1_653_TI_var;
extern TypeInfo* t1_702_TI_var;
extern TypeInfo* t1_228_TI_var;
extern TypeInfo* t1_256_TI_var;
extern TypeInfo* t1_18_TI_var;
extern TypeInfo* t1_777_TI_var;
extern TypeInfo* t1_240_TI_var;
extern TypeInfo* t1_242_TI_var;
extern TypeInfo* t1_254_TI_var;
extern Il2CppCodeGenString* _stringLiteral747;
extern Il2CppCodeGenString* _stringLiteral720;
extern Il2CppCodeGenString* _stringLiteral721;
extern Il2CppCodeGenString* _stringLiteral752;
extern Il2CppCodeGenString* _stringLiteral602;
extern Il2CppCodeGenString* _stringLiteral753;
extern Il2CppCodeGenString* _stringLiteral754;
extern Il2CppCodeGenString* _stringLiteral755;
extern Il2CppCodeGenString* _stringLiteral750;
extern Il2CppCodeGenString* _stringLiteral756;
extern Il2CppCodeGenString* _stringLiteral757;
extern Il2CppCodeGenString* _stringLiteral758;
extern Il2CppCodeGenString* _stringLiteral759;
extern Il2CppCodeGenString* _stringLiteral760;
extern Il2CppCodeGenString* _stringLiteral761;
extern Il2CppCodeGenString* _stringLiteral739;
extern Il2CppCodeGenString* _stringLiteral762;
extern "C" void m1_2131 (t1_248 * __this, t1_18* p0, int32_t p1, int32_t p2, int32_t p3, int32_t p4, bool p5, int32_t p6, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_230_TI_var = il2cpp_codegen_type_info_from_index(227);
t1_701_TI_var = il2cpp_codegen_type_info_from_index(2);
t1_653_TI_var = il2cpp_codegen_type_info_from_index(4);
t1_702_TI_var = il2cpp_codegen_type_info_from_index(27);
t1_228_TI_var = il2cpp_codegen_type_info_from_index(228);
t1_256_TI_var = il2cpp_codegen_type_info_from_index(140);
t1_18_TI_var = il2cpp_codegen_type_info_from_index(11);
t1_777_TI_var = il2cpp_codegen_type_info_from_index(224);
t1_240_TI_var = il2cpp_codegen_type_info_from_index(229);
t1_242_TI_var = il2cpp_codegen_type_info_from_index(230);
t1_254_TI_var = il2cpp_codegen_type_info_from_index(221);
_stringLiteral747 = il2cpp_codegen_string_literal_from_index(747);
_stringLiteral720 = il2cpp_codegen_string_literal_from_index(720);
_stringLiteral721 = il2cpp_codegen_string_literal_from_index(721);
_stringLiteral752 = il2cpp_codegen_string_literal_from_index(752);
_stringLiteral602 = il2cpp_codegen_string_literal_from_index(602);
_stringLiteral753 = il2cpp_codegen_string_literal_from_index(753);
_stringLiteral754 = il2cpp_codegen_string_literal_from_index(754);
_stringLiteral755 = il2cpp_codegen_string_literal_from_index(755);
_stringLiteral750 = il2cpp_codegen_string_literal_from_index(750);
_stringLiteral756 = il2cpp_codegen_string_literal_from_index(756);
_stringLiteral757 = il2cpp_codegen_string_literal_from_index(757);
_stringLiteral758 = il2cpp_codegen_string_literal_from_index(758);
_stringLiteral759 = il2cpp_codegen_string_literal_from_index(759);
_stringLiteral760 = il2cpp_codegen_string_literal_from_index(760);
_stringLiteral761 = il2cpp_codegen_string_literal_from_index(761);
_stringLiteral739 = il2cpp_codegen_string_literal_from_index(739);
_stringLiteral762 = il2cpp_codegen_string_literal_from_index(762);
s_Il2CppMethodIntialized = true;
}
t1_18* V_0 = {0};
t1_18* V_1 = {0};
t1_18* V_2 = {0};
t1_18* V_3 = {0};
t1_18* V_4 = {0};
t1_18* V_5 = {0};
t1_18* V_6 = {0};
t1_18* V_7 = {0};
int32_t V_8 = {0};
int64_t V_9 = 0;
t1_18* G_B41_0 = {0};
int64_t G_B62_0 = 0;
{
__this->f13 = _stringLiteral747;
IL2CPP_RUNTIME_CLASS_INIT(t1_230_TI_var);
m1_2248(__this, NULL);
t1_18* L_0 = p0;
if (L_0)
{
goto IL_0022;
}
}
{
t1_701 * L_1 = (t1_701 *)il2cpp_codegen_object_new (t1_701_TI_var);
m1_4570(L_1, _stringLiteral720, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_1);
}
IL_0022:
{
t1_18* L_2 = p0;
int32_t L_3 = m1_430(L_2, NULL);
if (L_3)
{
goto IL_0038;
}
}
{
t1_653 * L_4 = (t1_653 *)il2cpp_codegen_object_new (t1_653_TI_var);
m1_4561(L_4, _stringLiteral721, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_4);
}
IL_0038:
{
int32_t L_5 = p3;
p3 = ((int32_t)((int32_t)L_5&(int32_t)((int32_t)-17)));
int32_t L_6 = p4;
if ((((int32_t)L_6) > ((int32_t)0)))
{
goto IL_0057;
}
}
{
t1_702 * L_7 = (t1_702 *)il2cpp_codegen_object_new (t1_702_TI_var);
m1_4575(L_7, _stringLiteral752, _stringLiteral602, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_7);
}
IL_0057:
{
int32_t L_8 = p1;
if ((((int32_t)L_8) < ((int32_t)1)))
{
goto IL_0065;
}
}
{
int32_t L_9 = p1;
if ((((int32_t)L_9) <= ((int32_t)6)))
{
goto IL_008c;
}
}
IL_0065:
{
bool L_10 = p5;
if (!L_10)
{
goto IL_007c;
}
}
{
t1_653 * L_11 = (t1_653 *)il2cpp_codegen_object_new (t1_653_TI_var);
m1_4563(L_11, _stringLiteral753, _stringLiteral754, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_11);
}
IL_007c:
{
t1_702 * L_12 = (t1_702 *)il2cpp_codegen_object_new (t1_702_TI_var);
m1_4575(L_12, _stringLiteral753, _stringLiteral754, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_12);
}
IL_008c:
{
int32_t L_13 = p2;
if ((((int32_t)L_13) < ((int32_t)1)))
{
goto IL_009a;
}
}
{
int32_t L_14 = p2;
if ((((int32_t)L_14) <= ((int32_t)3)))
{
goto IL_00bc;
}
}
IL_009a:
{
bool L_15 = p5;
if (!L_15)
{
goto IL_00ac;
}
}
{
t1_228 * L_16 = (t1_228 *)il2cpp_codegen_object_new (t1_228_TI_var);
m1_2059(L_16, _stringLiteral755, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_16);
}
IL_00ac:
{
t1_702 * L_17 = (t1_702 *)il2cpp_codegen_object_new (t1_702_TI_var);
m1_4575(L_17, _stringLiteral750, _stringLiteral754, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_17);
}
IL_00bc:
{
int32_t L_18 = p3;
if ((((int32_t)L_18) < ((int32_t)0)))
{
goto IL_00cc;
}
}
{
int32_t L_19 = p3;
if ((((int32_t)L_19) <= ((int32_t)7)))
{
goto IL_00ee;
}
}
IL_00cc:
{
bool L_20 = p5;
if (!L_20)
{
goto IL_00de;
}
}
{
t1_228 * L_21 = (t1_228 *)il2cpp_codegen_object_new (t1_228_TI_var);
m1_2059(L_21, _stringLiteral756, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_21);
}
IL_00de:
{
t1_702 * L_22 = (t1_702 *)il2cpp_codegen_object_new (t1_702_TI_var);
m1_4575(L_22, _stringLiteral757, _stringLiteral754, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_22);
}
IL_00ee:
{
t1_18* L_23 = p0;
IL2CPP_RUNTIME_CLASS_INIT(t1_256_TI_var);
t1_19* L_24 = ((t1_256_SFs*)t1_256_TI_var->static_fields)->f0;
int32_t L_25 = m1_373(L_23, L_24, NULL);
if ((((int32_t)L_25) == ((int32_t)(-1))))
{
goto IL_010a;
}
}
{
t1_653 * L_26 = (t1_653 *)il2cpp_codegen_object_new (t1_653_TI_var);
m1_4561(L_26, _stringLiteral758, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_26);
}
IL_010a:
{
t1_18* L_27 = p0;
bool L_28 = m1_2091(NULL, L_27, NULL);
if (!L_28)
{
goto IL_0134;
}
}
{
t1_18* L_29 = m1_990(NULL, _stringLiteral759, NULL);
V_0 = L_29;
t1_18* L_30 = V_0;
t1_18* L_31 = p0;
t1_18* L_32 = m1_2162(__this, L_31, 0, NULL);
IL2CPP_RUNTIME_CLASS_INIT(t1_18_TI_var);
t1_18* L_33 = m1_412(NULL, L_30, L_32, NULL);
t1_777 * L_34 = (t1_777 *)il2cpp_codegen_object_new (t1_777_TI_var);
m1_5363(L_34, L_33, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_34);
}
IL_0134:
{
int32_t L_35 = p1;
if ((!(((uint32_t)L_35) == ((uint32_t)6))))
{
goto IL_014f;
}
}
{
int32_t L_36 = p2;
if ((!(((uint32_t)((int32_t)((int32_t)L_36&(int32_t)1))) == ((uint32_t)1))))
{
goto IL_014f;
}
}
{
t1_653 * L_37 = (t1_653 *)il2cpp_codegen_object_new (t1_653_TI_var);
m1_4561(L_37, _stringLiteral760, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_37);
}
IL_014f:
{
int32_t L_38 = p2;
if (((int32_t)((int32_t)L_38&(int32_t)2)))
{
goto IL_0188;
}
}
{
int32_t L_39 = p1;
if ((((int32_t)L_39) == ((int32_t)3)))
{
goto IL_0188;
}
}
{
int32_t L_40 = p1;
if ((((int32_t)L_40) == ((int32_t)4)))
{
goto IL_0188;
}
}
{
t1_18* L_41 = m1_990(NULL, _stringLiteral761, NULL);
V_1 = L_41;
t1_18* L_42 = V_1;
int32_t L_43 = p2;
int32_t L_44 = L_43;
t1_1 * L_45 = Box(t1_240_TI_var, &L_44);
int32_t L_46 = p1;
int32_t L_47 = L_46;
t1_1 * L_48 = Box(t1_242_TI_var, &L_47);
IL2CPP_RUNTIME_CLASS_INIT(t1_18_TI_var);
t1_18* L_49 = m1_413(NULL, L_42, L_45, L_48, NULL);
t1_653 * L_50 = (t1_653 *)il2cpp_codegen_object_new (t1_653_TI_var);
m1_4561(L_50, L_49, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_50);
}
IL_0188:
{
IL2CPP_RUNTIME_CLASS_INIT(t1_256_TI_var);
uint16_t L_51 = ((t1_256_SFs*)t1_256_TI_var->static_fields)->f2;
if ((((int32_t)L_51) == ((int32_t)((int32_t)47))))
{
goto IL_01b3;
}
}
{
t1_18* L_52 = p0;
int32_t L_53 = m1_382(L_52, ((int32_t)47), NULL);
if ((((int32_t)L_53) < ((int32_t)0)))
{
goto IL_01b3;
}
}
{
t1_18* L_54 = p0;
IL2CPP_RUNTIME_CLASS_INIT(t1_256_TI_var);
t1_18* L_55 = m1_2234(NULL, L_54, NULL);
t1_18* L_56 = m1_2232(NULL, L_55, NULL);
V_2 = L_56;
goto IL_01ba;
}
IL_01b3:
{
t1_18* L_57 = p0;
IL2CPP_RUNTIME_CLASS_INIT(t1_256_TI_var);
t1_18* L_58 = m1_2232(NULL, L_57, NULL);
V_2 = L_58;
}
IL_01ba:
{
t1_18* L_59 = V_2;
int32_t L_60 = m1_430(L_59, NULL);
if ((((int32_t)L_60) <= ((int32_t)0)))
{
goto IL_0208;
}
}
{
t1_18* L_61 = V_2;
IL2CPP_RUNTIME_CLASS_INIT(t1_256_TI_var);
t1_18* L_62 = m1_2234(NULL, L_61, NULL);
V_3 = L_62;
t1_18* L_63 = V_3;
bool L_64 = m1_2091(NULL, L_63, NULL);
if (L_64)
{
goto IL_0208;
}
}
{
t1_18* L_65 = m1_990(NULL, _stringLiteral739, NULL);
V_4 = L_65;
bool L_66 = p5;
if (!L_66)
{
goto IL_01f1;
}
}
{
t1_18* L_67 = V_2;
G_B41_0 = L_67;
goto IL_01f7;
}
IL_01f1:
{
t1_18* L_68 = p0;
IL2CPP_RUNTIME_CLASS_INIT(t1_256_TI_var);
t1_18* L_69 = m1_2234(NULL, L_68, NULL);
G_B41_0 = L_69;
}
IL_01f7:
{
V_5 = G_B41_0;
t1_18* L_70 = V_4;
t1_18* L_71 = V_5;
IL2CPP_RUNTIME_CLASS_INIT(t1_18_TI_var);
t1_18* L_72 = m1_412(NULL, L_70, L_71, NULL);
t1_228 * L_73 = (t1_228 *)il2cpp_codegen_object_new (t1_228_TI_var);
m1_2059(L_73, L_72, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_73);
}
IL_0208:
{
int32_t L_74 = p2;
if ((!(((uint32_t)L_74) == ((uint32_t)1))))
{
goto IL_0253;
}
}
{
int32_t L_75 = p1;
if ((((int32_t)L_75) == ((int32_t)2)))
{
goto IL_0253;
}
}
{
int32_t L_76 = p1;
if ((((int32_t)L_76) == ((int32_t)4)))
{
goto IL_0253;
}
}
{
int32_t L_77 = p1;
if ((((int32_t)L_77) == ((int32_t)1)))
{
goto IL_0253;
}
}
{
t1_18* L_78 = p0;
bool L_79 = m1_2109(NULL, L_78, NULL);
if (L_79)
{
goto IL_0253;
}
}
{
t1_18* L_80 = m1_990(NULL, _stringLiteral762, NULL);
V_6 = L_80;
t1_18* L_81 = p0;
t1_18* L_82 = m1_2161(__this, L_81, NULL);
V_7 = L_82;
t1_18* L_83 = V_6;
t1_18* L_84 = V_7;
IL2CPP_RUNTIME_CLASS_INIT(t1_18_TI_var);
t1_18* L_85 = m1_412(NULL, L_83, L_84, NULL);
t1_228 * L_86 = (t1_228 *)il2cpp_codegen_object_new (t1_228_TI_var);
m1_2059(L_86, L_85, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_86);
}
IL_0253:
{
bool L_87 = p5;
if (L_87)
{
goto IL_0261;
}
}
{
t1_18* L_88 = p0;
__this->f13 = L_88;
}
IL_0261:
{
t1_18* L_89 = p0;
int32_t L_90 = p1;
int32_t L_91 = p2;
int32_t L_92 = p3;
int32_t L_93 = p6;
IL2CPP_RUNTIME_CLASS_INIT(t1_254_TI_var);
t1_24 L_94 = m1_2215(NULL, L_89, L_90, L_91, L_92, L_93, (&V_8), NULL);
__this->f14 = L_94;
t1_24 L_95 = (__this->f14);
t1_24 L_96 = ((t1_254_SFs*)t1_254_TI_var->static_fields)->f1;
bool L_97 = m1_643(NULL, L_95, L_96, NULL);
if (!L_97)
{
goto IL_0299;
}
}
{
t1_18* L_98 = p0;
t1_18* L_99 = m1_2161(__this, L_98, NULL);
int32_t L_100 = V_8;
IL2CPP_RUNTIME_CLASS_INIT(t1_254_TI_var);
t1_43 * L_101 = m1_2205(NULL, L_99, L_100, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_101);
}
IL_0299:
{
int32_t L_102 = p2;
__this->f1 = L_102;
__this->f2 = 1;
bool L_103 = p5;
__this->f6 = L_103;
t1_24 L_104 = (__this->f14);
IL2CPP_RUNTIME_CLASS_INIT(t1_254_TI_var);
int32_t L_105 = m1_2211(NULL, L_104, (&V_8), NULL);
if ((!(((uint32_t)L_105) == ((uint32_t)1))))
{
goto IL_02e2;
}
}
{
__this->f4 = 1;
int32_t L_106 = p6;
__this->f3 = ((((int32_t)((((int32_t)((int32_t)((int32_t)L_106&(int32_t)((int32_t)1073741824)))) == ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_02f0;
}
IL_02e2:
{
__this->f4 = 0;
__this->f3 = 0;
}
IL_02f0:
{
int32_t L_107 = p2;
if ((!(((uint32_t)L_107) == ((uint32_t)1))))
{
goto IL_033d;
}
}
{
bool L_108 = (__this->f4);
if (!L_108)
{
goto IL_033d;
}
}
{
int32_t L_109 = p4;
if ((!(((uint32_t)L_109) == ((uint32_t)((int32_t)8192)))))
{
goto IL_033d;
}
}
{
int64_t L_110 = (int64_t)VirtFuncInvoker0< int64_t >::Invoke(8 /* System.Int64 System.IO.FileStream::get_Length() */, __this);
V_9 = L_110;
int32_t L_111 = p4;
int64_t L_112 = V_9;
if ((((int64_t)(((int64_t)((int64_t)L_111)))) <= ((int64_t)L_112)))
{
goto IL_033d;
}
}
{
int64_t L_113 = V_9;
if ((((int64_t)L_113) >= ((int64_t)(((int64_t)((int64_t)((int32_t)1000)))))))
{
goto IL_0338;
}
}
{
G_B62_0 = (((int64_t)((int64_t)((int32_t)1000))));
goto IL_033a;
}
IL_0338:
{
int64_t L_114 = V_9;
G_B62_0 = L_114;
}
IL_033a:
{
p4 = (((int32_t)((int32_t)G_B62_0)));
}
IL_033d:
{
int32_t L_115 = p4;
m1_2160(__this, L_115, 0, NULL);
int32_t L_116 = p1;
if ((!(((uint32_t)L_116) == ((uint32_t)6))))
{
goto IL_0368;
}
}
{
VirtFuncInvoker2< int64_t, int64_t, int32_t >::Invoke(16 /* System.Int64 System.IO.FileStream::Seek(System.Int64,System.IO.SeekOrigin) */, __this, (((int64_t)((int64_t)0))), 2);
int64_t L_117 = (int64_t)VirtFuncInvoker0< int64_t >::Invoke(9 /* System.Int64 System.IO.FileStream::get_Position() */, __this);
__this->f5 = L_117;
goto IL_0370;
}
IL_0368:
{
__this->f5 = (((int64_t)((int64_t)0)));
}
IL_0370:
{
return;
}
}
extern "C" bool m1_2132 (t1_248 * __this, const MethodInfo* method)
{
int32_t G_B3_0 = 0;
{
int32_t L_0 = (__this->f1);
if ((((int32_t)L_0) == ((int32_t)1)))
{
goto IL_0017;
}
}
{
int32_t L_1 = (__this->f1);
G_B3_0 = ((((int32_t)L_1) == ((int32_t)3))? 1 : 0);
goto IL_0018;
}
IL_0017:
{
G_B3_0 = 1;
}
IL_0018:
{
return G_B3_0;
}
}
extern "C" bool m1_2133 (t1_248 * __this, const MethodInfo* method)
{
int32_t G_B3_0 = 0;
{
int32_t L_0 = (__this->f1);
if ((((int32_t)L_0) == ((int32_t)2)))
{
goto IL_0017;
}
}
{
int32_t L_1 = (__this->f1);
G_B3_0 = ((((int32_t)L_1) == ((int32_t)3))? 1 : 0);
goto IL_0018;
}
IL_0017:
{
G_B3_0 = 1;
}
IL_0018:
{
return G_B3_0;
}
}
extern "C" bool m1_2134 (t1_248 * __this, const MethodInfo* method)
{
{
bool L_0 = (__this->f4);
return L_0;
}
}
extern TypeInfo* t1_254_TI_var;
extern TypeInfo* t1_760_TI_var;
extern TypeInfo* t1_756_TI_var;
extern Il2CppCodeGenString* _stringLiteral763;
extern Il2CppCodeGenString* _stringLiteral764;
extern "C" int64_t m1_2135 (t1_248 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_254_TI_var = il2cpp_codegen_type_info_from_index(221);
t1_760_TI_var = il2cpp_codegen_type_info_from_index(137);
t1_756_TI_var = il2cpp_codegen_type_info_from_index(6);
_stringLiteral763 = il2cpp_codegen_string_literal_from_index(763);
_stringLiteral764 = il2cpp_codegen_string_literal_from_index(764);
s_Il2CppMethodIntialized = true;
}
int32_t V_0 = {0};
int64_t V_1 = 0;
{
t1_24 L_0 = (__this->f14);
IL2CPP_RUNTIME_CLASS_INIT(t1_254_TI_var);
t1_24 L_1 = ((t1_254_SFs*)t1_254_TI_var->static_fields)->f1;
bool L_2 = m1_643(NULL, L_0, L_1, NULL);
if (!L_2)
{
goto IL_0020;
}
}
{
t1_760 * L_3 = (t1_760 *)il2cpp_codegen_object_new (t1_760_TI_var);
m1_5252(L_3, _stringLiteral763, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_3);
}
IL_0020:
{
bool L_4 = (bool)VirtFuncInvoker0< bool >::Invoke(6 /* System.Boolean System.IO.FileStream::get_CanSeek() */, __this);
if (L_4)
{
goto IL_0036;
}
}
{
t1_756 * L_5 = (t1_756 *)il2cpp_codegen_object_new (t1_756_TI_var);
m1_5149(L_5, _stringLiteral764, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_5);
}
IL_0036:
{
m1_2157(__this, NULL);
t1_24 L_6 = (__this->f14);
IL2CPP_RUNTIME_CLASS_INIT(t1_254_TI_var);
int64_t L_7 = m1_2220(NULL, L_6, (&V_0), NULL);
V_1 = L_7;
int32_t L_8 = V_0;
if (!L_8)
{
goto IL_0063;
}
}
{
t1_18* L_9 = (__this->f13);
t1_18* L_10 = m1_2161(__this, L_9, NULL);
int32_t L_11 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(t1_254_TI_var);
t1_43 * L_12 = m1_2205(NULL, L_10, L_11, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_12);
}
IL_0063:
{
int64_t L_13 = V_1;
return L_13;
}
}
extern TypeInfo* t1_254_TI_var;
extern TypeInfo* t1_760_TI_var;
extern TypeInfo* t1_756_TI_var;
extern Il2CppCodeGenString* _stringLiteral763;
extern Il2CppCodeGenString* _stringLiteral764;
extern "C" int64_t m1_2136 (t1_248 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_254_TI_var = il2cpp_codegen_type_info_from_index(221);
t1_760_TI_var = il2cpp_codegen_type_info_from_index(137);
t1_756_TI_var = il2cpp_codegen_type_info_from_index(6);
_stringLiteral763 = il2cpp_codegen_string_literal_from_index(763);
_stringLiteral764 = il2cpp_codegen_string_literal_from_index(764);
s_Il2CppMethodIntialized = true;
}
{
t1_24 L_0 = (__this->f14);
IL2CPP_RUNTIME_CLASS_INIT(t1_254_TI_var);
t1_24 L_1 = ((t1_254_SFs*)t1_254_TI_var->static_fields)->f1;
bool L_2 = m1_643(NULL, L_0, L_1, NULL);
if (!L_2)
{
goto IL_0020;
}
}
{
t1_760 * L_3 = (t1_760 *)il2cpp_codegen_object_new (t1_760_TI_var);
m1_5252(L_3, _stringLiteral763, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_3);
}
IL_0020:
{
bool L_4 = (bool)VirtFuncInvoker0< bool >::Invoke(6 /* System.Boolean System.IO.FileStream::get_CanSeek() */, __this);
if (L_4)
{
goto IL_0036;
}
}
{
t1_756 * L_5 = (t1_756 *)il2cpp_codegen_object_new (t1_756_TI_var);
m1_5149(L_5, _stringLiteral764, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_5);
}
IL_0036:
{
int64_t L_6 = (__this->f12);
int32_t L_7 = (__this->f10);
return ((int64_t)((int64_t)L_6+(int64_t)(((int64_t)((int64_t)L_7)))));
}
}
extern TypeInfo* t1_254_TI_var;
extern TypeInfo* t1_760_TI_var;
extern TypeInfo* t1_756_TI_var;
extern TypeInfo* t1_702_TI_var;
extern Il2CppCodeGenString* _stringLiteral763;
extern Il2CppCodeGenString* _stringLiteral764;
extern Il2CppCodeGenString* _stringLiteral765;
extern "C" void m1_2137 (t1_248 * __this, int64_t p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_254_TI_var = il2cpp_codegen_type_info_from_index(221);
t1_760_TI_var = il2cpp_codegen_type_info_from_index(137);
t1_756_TI_var = il2cpp_codegen_type_info_from_index(6);
t1_702_TI_var = il2cpp_codegen_type_info_from_index(27);
_stringLiteral763 = il2cpp_codegen_string_literal_from_index(763);
_stringLiteral764 = il2cpp_codegen_string_literal_from_index(764);
_stringLiteral765 = il2cpp_codegen_string_literal_from_index(765);
s_Il2CppMethodIntialized = true;
}
{
t1_24 L_0 = (__this->f14);
IL2CPP_RUNTIME_CLASS_INIT(t1_254_TI_var);
t1_24 L_1 = ((t1_254_SFs*)t1_254_TI_var->static_fields)->f1;
bool L_2 = m1_643(NULL, L_0, L_1, NULL);
if (!L_2)
{
goto IL_0020;
}
}
{
t1_760 * L_3 = (t1_760 *)il2cpp_codegen_object_new (t1_760_TI_var);
m1_5252(L_3, _stringLiteral763, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_3);
}
IL_0020:
{
bool L_4 = (bool)VirtFuncInvoker0< bool >::Invoke(6 /* System.Boolean System.IO.FileStream::get_CanSeek() */, __this);
if (L_4)
{
goto IL_0036;
}
}
{
t1_756 * L_5 = (t1_756 *)il2cpp_codegen_object_new (t1_756_TI_var);
m1_5149(L_5, _stringLiteral764, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_5);
}
IL_0036:
{
int64_t L_6 = p0;
if ((((int64_t)L_6) >= ((int64_t)(((int64_t)((int64_t)0))))))
{
goto IL_0049;
}
}
{
t1_702 * L_7 = (t1_702 *)il2cpp_codegen_object_new (t1_702_TI_var);
m1_4574(L_7, _stringLiteral765, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_7);
}
IL_0049:
{
int64_t L_8 = p0;
VirtFuncInvoker2< int64_t, int64_t, int32_t >::Invoke(16 /* System.Int64 System.IO.FileStream::Seek(System.Int64,System.IO.SeekOrigin) */, __this, L_8, 0);
return;
}
}
extern TypeInfo* t1_254_TI_var;
extern TypeInfo* t1_760_TI_var;
extern TypeInfo* t1_756_TI_var;
extern Il2CppCodeGenString* _stringLiteral763;
extern Il2CppCodeGenString* _stringLiteral766;
extern "C" int32_t m1_2138 (t1_248 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_254_TI_var = il2cpp_codegen_type_info_from_index(221);
t1_760_TI_var = il2cpp_codegen_type_info_from_index(137);
t1_756_TI_var = il2cpp_codegen_type_info_from_index(6);
_stringLiteral763 = il2cpp_codegen_string_literal_from_index(763);
_stringLiteral766 = il2cpp_codegen_string_literal_from_index(766);
s_Il2CppMethodIntialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
{
t1_24 L_0 = (__this->f14);
IL2CPP_RUNTIME_CLASS_INIT(t1_254_TI_var);
t1_24 L_1 = ((t1_254_SFs*)t1_254_TI_var->static_fields)->f1;
bool L_2 = m1_643(NULL, L_0, L_1, NULL);
if (!L_2)
{
goto IL_0020;
}
}
{
t1_760 * L_3 = (t1_760 *)il2cpp_codegen_object_new (t1_760_TI_var);
m1_5252(L_3, _stringLiteral763, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_3);
}
IL_0020:
{
bool L_4 = (bool)VirtFuncInvoker0< bool >::Invoke(5 /* System.Boolean System.IO.FileStream::get_CanRead() */, __this);
if (L_4)
{
goto IL_0036;
}
}
{
t1_756 * L_5 = (t1_756 *)il2cpp_codegen_object_new (t1_756_TI_var);
m1_5149(L_5, _stringLiteral766, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_5);
}
IL_0036:
{
int32_t L_6 = (__this->f8);
if (L_6)
{
goto IL_0067;
}
}
{
t1_24 L_7 = (__this->f14);
t1_83* L_8 = (__this->f7);
int32_t L_9 = m1_2159(__this, L_7, L_8, 0, 1, NULL);
V_0 = L_9;
int32_t L_10 = V_0;
if (L_10)
{
goto IL_005e;
}
}
{
return (-1);
}
IL_005e:
{
t1_83* L_11 = (__this->f7);
int32_t L_12 = 0;
return (*(uint8_t*)(uint8_t*)SZArrayLdElema(L_11, L_12, sizeof(uint8_t)));
}
IL_0067:
{
int32_t L_13 = (__this->f10);
int32_t L_14 = (__this->f9);
if ((((int32_t)L_13) < ((int32_t)L_14)))
{
goto IL_008b;
}
}
{
m1_2158(__this, NULL);
int32_t L_15 = (__this->f9);
if (L_15)
{
goto IL_008b;
}
}
{
return (-1);
}
IL_008b:
{
t1_83* L_16 = (__this->f7);
int32_t L_17 = (__this->f10);
int32_t L_18 = L_17;
V_1 = L_18;
__this->f10 = ((int32_t)((int32_t)L_18+(int32_t)1));
int32_t L_19 = V_1;
int32_t L_20 = L_19;
return (*(uint8_t*)(uint8_t*)SZArrayLdElema(L_16, L_20, sizeof(uint8_t)));
}
}
extern TypeInfo* t1_254_TI_var;
extern TypeInfo* t1_760_TI_var;
extern TypeInfo* t1_756_TI_var;
extern Il2CppCodeGenString* _stringLiteral763;
extern Il2CppCodeGenString* _stringLiteral767;
extern "C" void m1_2139 (t1_248 * __this, uint8_t p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_254_TI_var = il2cpp_codegen_type_info_from_index(221);
t1_760_TI_var = il2cpp_codegen_type_info_from_index(137);
t1_756_TI_var = il2cpp_codegen_type_info_from_index(6);
_stringLiteral763 = il2cpp_codegen_string_literal_from_index(763);
_stringLiteral767 = il2cpp_codegen_string_literal_from_index(767);
s_Il2CppMethodIntialized = true;
}
int32_t V_0 = 0;
{
t1_24 L_0 = (__this->f14);
IL2CPP_RUNTIME_CLASS_INIT(t1_254_TI_var);
t1_24 L_1 = ((t1_254_SFs*)t1_254_TI_var->static_fields)->f1;
bool L_2 = m1_643(NULL, L_0, L_1, NULL);
if (!L_2)
{
goto IL_0020;
}
}
{
t1_760 * L_3 = (t1_760 *)il2cpp_codegen_object_new (t1_760_TI_var);
m1_5252(L_3, _stringLiteral763, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_3);
}
IL_0020:
{
bool L_4 = (bool)VirtFuncInvoker0< bool >::Invoke(7 /* System.Boolean System.IO.FileStream::get_CanWrite() */, __this);
if (L_4)
{
goto IL_0036;
}
}
{
t1_756 * L_5 = (t1_756 *)il2cpp_codegen_object_new (t1_756_TI_var);
m1_5149(L_5, _stringLiteral767, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_5);
}
IL_0036:
{
int32_t L_6 = (__this->f10);
int32_t L_7 = (__this->f8);
if ((!(((uint32_t)L_6) == ((uint32_t)L_7))))
{
goto IL_004d;
}
}
{
m1_2156(__this, NULL);
}
IL_004d:
{
int32_t L_8 = (__this->f8);
if (L_8)
{
goto IL_0076;
}
}
{
t1_83* L_9 = (__this->f7);
uint8_t L_10 = p0;
*((uint8_t*)(uint8_t*)SZArrayLdElema(L_9, 0, sizeof(uint8_t))) = (uint8_t)L_10;
__this->f11 = 1;
__this->f9 = 1;
m1_2156(__this, NULL);
return;
}
IL_0076:
{
t1_83* L_11 = (__this->f7);
int32_t L_12 = (__this->f10);
int32_t L_13 = L_12;
V_0 = L_13;
__this->f10 = ((int32_t)((int32_t)L_13+(int32_t)1));
int32_t L_14 = V_0;
uint8_t L_15 = p0;
*((uint8_t*)(uint8_t*)SZArrayLdElema(L_11, L_14, sizeof(uint8_t))) = (uint8_t)L_15;
int32_t L_16 = (__this->f10);
int32_t L_17 = (__this->f9);
if ((((int32_t)L_16) <= ((int32_t)L_17)))
{
goto IL_00ac;
}
}
{
int32_t L_18 = (__this->f10);
__this->f9 = L_18;
}
IL_00ac:
{
__this->f11 = 1;
return;
}
}
extern TypeInfo* t1_254_TI_var;
extern TypeInfo* t1_760_TI_var;
extern TypeInfo* t1_701_TI_var;
extern TypeInfo* t1_756_TI_var;
extern TypeInfo* t1_702_TI_var;
extern TypeInfo* t1_653_TI_var;
extern Il2CppCodeGenString* _stringLiteral763;
extern Il2CppCodeGenString* _stringLiteral147;
extern Il2CppCodeGenString* _stringLiteral766;
extern Il2CppCodeGenString* _stringLiteral768;
extern Il2CppCodeGenString* _stringLiteral44;
extern Il2CppCodeGenString* _stringLiteral40;
extern Il2CppCodeGenString* _stringLiteral769;
extern Il2CppCodeGenString* _stringLiteral770;
extern "C" int32_t m1_2140 (t1_248 * __this, t1_83* p0, int32_t p1, int32_t p2, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_254_TI_var = il2cpp_codegen_type_info_from_index(221);
t1_760_TI_var = il2cpp_codegen_type_info_from_index(137);
t1_701_TI_var = il2cpp_codegen_type_info_from_index(2);
t1_756_TI_var = il2cpp_codegen_type_info_from_index(6);
t1_702_TI_var = il2cpp_codegen_type_info_from_index(27);
t1_653_TI_var = il2cpp_codegen_type_info_from_index(4);
_stringLiteral763 = il2cpp_codegen_string_literal_from_index(763);
_stringLiteral147 = il2cpp_codegen_string_literal_from_index(147);
_stringLiteral766 = il2cpp_codegen_string_literal_from_index(766);
_stringLiteral768 = il2cpp_codegen_string_literal_from_index(768);
_stringLiteral44 = il2cpp_codegen_string_literal_from_index(44);
_stringLiteral40 = il2cpp_codegen_string_literal_from_index(40);
_stringLiteral769 = il2cpp_codegen_string_literal_from_index(769);
_stringLiteral770 = il2cpp_codegen_string_literal_from_index(770);
s_Il2CppMethodIntialized = true;
}
int32_t V_0 = 0;
t1_1 * V_1 = {0};
{
t1_24 L_0 = (__this->f14);
IL2CPP_RUNTIME_CLASS_INIT(t1_254_TI_var);
t1_24 L_1 = ((t1_254_SFs*)t1_254_TI_var->static_fields)->f1;
bool L_2 = m1_643(NULL, L_0, L_1, NULL);
if (!L_2)
{
goto IL_0020;
}
}
{
t1_760 * L_3 = (t1_760 *)il2cpp_codegen_object_new (t1_760_TI_var);
m1_5252(L_3, _stringLiteral763, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_3);
}
IL_0020:
{
t1_83* L_4 = p0;
if (L_4)
{
goto IL_0031;
}
}
{
t1_701 * L_5 = (t1_701 *)il2cpp_codegen_object_new (t1_701_TI_var);
m1_4570(L_5, _stringLiteral147, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_5);
}
IL_0031:
{
bool L_6 = (bool)VirtFuncInvoker0< bool >::Invoke(5 /* System.Boolean System.IO.FileStream::get_CanRead() */, __this);
if (L_6)
{
goto IL_0047;
}
}
{
t1_756 * L_7 = (t1_756 *)il2cpp_codegen_object_new (t1_756_TI_var);
m1_5149(L_7, _stringLiteral766, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_7);
}
IL_0047:
{
t1_83* L_8 = p0;
V_0 = (((int32_t)((int32_t)(((t1_33 *)L_8)->max_length))));
int32_t L_9 = p1;
if ((((int32_t)L_9) >= ((int32_t)0)))
{
goto IL_0062;
}
}
{
t1_702 * L_10 = (t1_702 *)il2cpp_codegen_object_new (t1_702_TI_var);
m1_4575(L_10, _stringLiteral768, _stringLiteral44, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_10);
}
IL_0062:
{
int32_t L_11 = p2;
if ((((int32_t)L_11) >= ((int32_t)0)))
{
goto IL_0079;
}
}
{
t1_702 * L_12 = (t1_702 *)il2cpp_codegen_object_new (t1_702_TI_var);
m1_4575(L_12, _stringLiteral40, _stringLiteral44, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_12);
}
IL_0079:
{
int32_t L_13 = p1;
int32_t L_14 = V_0;
if ((((int32_t)L_13) <= ((int32_t)L_14)))
{
goto IL_008b;
}
}
{
t1_653 * L_15 = (t1_653 *)il2cpp_codegen_object_new (t1_653_TI_var);
m1_4561(L_15, _stringLiteral769, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_15);
}
IL_008b:
{
int32_t L_16 = p1;
int32_t L_17 = V_0;
int32_t L_18 = p2;
if ((((int32_t)L_16) <= ((int32_t)((int32_t)((int32_t)L_17-(int32_t)L_18)))))
{
goto IL_009f;
}
}
{
t1_653 * L_19 = (t1_653 *)il2cpp_codegen_object_new (t1_653_TI_var);
m1_4561(L_19, _stringLiteral770, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_19);
}
IL_009f:
{
bool L_20 = (__this->f3);
if (!L_20)
{
goto IL_00be;
}
}
{
t1_83* L_21 = p0;
int32_t L_22 = p1;
int32_t L_23 = p2;
t1_1 * L_24 = (t1_1 *)VirtFuncInvoker5< t1_1 *, t1_83*, int32_t, int32_t, t1_36 *, t1_1 * >::Invoke(20 /* System.IAsyncResult System.IO.FileStream::BeginRead(System.Byte[],System.Int32,System.Int32,System.AsyncCallback,System.Object) */, __this, L_21, L_22, L_23, (t1_36 *)NULL, NULL);
V_1 = L_24;
t1_1 * L_25 = V_1;
int32_t L_26 = (int32_t)VirtFuncInvoker1< int32_t, t1_1 * >::Invoke(22 /* System.Int32 System.IO.FileStream::EndRead(System.IAsyncResult) */, __this, L_25);
return L_26;
}
IL_00be:
{
t1_83* L_27 = p0;
int32_t L_28 = p1;
int32_t L_29 = p2;
int32_t L_30 = m1_2141(__this, L_27, L_28, L_29, NULL);
return L_30;
}
}
extern "C" int32_t m1_2141 (t1_248 * __this, t1_83* p0, int32_t p1, int32_t p2, const MethodInfo* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
{
V_0 = 0;
t1_83* L_0 = p0;
int32_t L_1 = p1;
int32_t L_2 = p2;
int32_t L_3 = m1_2153(__this, L_0, L_1, L_2, NULL);
V_1 = L_3;
int32_t L_4 = V_0;
int32_t L_5 = V_1;
V_0 = ((int32_t)((int32_t)L_4+(int32_t)L_5));
int32_t L_6 = p2;
int32_t L_7 = V_1;
p2 = ((int32_t)((int32_t)L_6-(int32_t)L_7));
int32_t L_8 = p2;
if (L_8)
{
goto IL_001d;
}
}
{
int32_t L_9 = V_0;
return L_9;
}
IL_001d:
{
int32_t L_10 = p2;
int32_t L_11 = (__this->f8);
if ((((int32_t)L_10) <= ((int32_t)L_11)))
{
goto IL_0055;
}
}
{
m1_2156(__this, NULL);
t1_24 L_12 = (__this->f14);
t1_83* L_13 = p0;
int32_t L_14 = p1;
int32_t L_15 = V_0;
int32_t L_16 = p2;
int32_t L_17 = m1_2159(__this, L_12, L_13, ((int32_t)((int32_t)L_14+(int32_t)L_15)), L_16, NULL);
V_1 = L_17;
int64_t L_18 = (__this->f12);
int32_t L_19 = V_1;
__this->f12 = ((int64_t)((int64_t)L_18+(int64_t)(((int64_t)((int64_t)L_19)))));
goto IL_0067;
}
IL_0055:
{
m1_2158(__this, NULL);
t1_83* L_20 = p0;
int32_t L_21 = p1;
int32_t L_22 = V_0;
int32_t L_23 = p2;
int32_t L_24 = m1_2153(__this, L_20, ((int32_t)((int32_t)L_21+(int32_t)L_22)), L_23, NULL);
V_1 = L_24;
}
IL_0067:
{
int32_t L_25 = V_0;
int32_t L_26 = V_1;
V_0 = ((int32_t)((int32_t)L_25+(int32_t)L_26));
int32_t L_27 = V_0;
return L_27;
}
}
extern TypeInfo* t1_254_TI_var;
extern TypeInfo* t1_760_TI_var;
extern TypeInfo* t1_756_TI_var;
extern TypeInfo* t1_701_TI_var;
extern TypeInfo* t1_702_TI_var;
extern TypeInfo* t1_653_TI_var;
extern TypeInfo* t1_246_TI_var;
extern const MethodInfo* m1_2141_MI_var;
extern Il2CppCodeGenString* _stringLiteral763;
extern Il2CppCodeGenString* _stringLiteral771;
extern Il2CppCodeGenString* _stringLiteral147;
extern Il2CppCodeGenString* _stringLiteral772;
extern Il2CppCodeGenString* _stringLiteral773;
extern Il2CppCodeGenString* _stringLiteral768;
extern Il2CppCodeGenString* _stringLiteral774;
extern "C" t1_1 * m1_2142 (t1_248 * __this, t1_83* p0, int32_t p1, int32_t p2, t1_36 * p3, t1_1 * p4, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_254_TI_var = il2cpp_codegen_type_info_from_index(221);
t1_760_TI_var = il2cpp_codegen_type_info_from_index(137);
t1_756_TI_var = il2cpp_codegen_type_info_from_index(6);
t1_701_TI_var = il2cpp_codegen_type_info_from_index(2);
t1_702_TI_var = il2cpp_codegen_type_info_from_index(27);
t1_653_TI_var = il2cpp_codegen_type_info_from_index(4);
t1_246_TI_var = il2cpp_codegen_type_info_from_index(231);
m1_2141_MI_var = il2cpp_codegen_method_info_from_index(14);
_stringLiteral763 = il2cpp_codegen_string_literal_from_index(763);
_stringLiteral771 = il2cpp_codegen_string_literal_from_index(771);
_stringLiteral147 = il2cpp_codegen_string_literal_from_index(147);
_stringLiteral772 = il2cpp_codegen_string_literal_from_index(772);
_stringLiteral773 = il2cpp_codegen_string_literal_from_index(773);
_stringLiteral768 = il2cpp_codegen_string_literal_from_index(768);
_stringLiteral774 = il2cpp_codegen_string_literal_from_index(774);
s_Il2CppMethodIntialized = true;
}
t1_246 * V_0 = {0};
{
t1_24 L_0 = (__this->f14);
IL2CPP_RUNTIME_CLASS_INIT(t1_254_TI_var);
t1_24 L_1 = ((t1_254_SFs*)t1_254_TI_var->static_fields)->f1;
bool L_2 = m1_643(NULL, L_0, L_1, NULL);
if (!L_2)
{
goto IL_0020;
}
}
{
t1_760 * L_3 = (t1_760 *)il2cpp_codegen_object_new (t1_760_TI_var);
m1_5252(L_3, _stringLiteral763, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_3);
}
IL_0020:
{
bool L_4 = (bool)VirtFuncInvoker0< bool >::Invoke(5 /* System.Boolean System.IO.FileStream::get_CanRead() */, __this);
if (L_4)
{
goto IL_0036;
}
}
{
t1_756 * L_5 = (t1_756 *)il2cpp_codegen_object_new (t1_756_TI_var);
m1_5149(L_5, _stringLiteral771, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_5);
}
IL_0036:
{
t1_83* L_6 = p0;
if (L_6)
{
goto IL_0047;
}
}
{
t1_701 * L_7 = (t1_701 *)il2cpp_codegen_object_new (t1_701_TI_var);
m1_4570(L_7, _stringLiteral147, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_7);
}
IL_0047:
{
int32_t L_8 = p2;
if ((((int32_t)L_8) >= ((int32_t)0)))
{
goto IL_005e;
}
}
{
t1_702 * L_9 = (t1_702 *)il2cpp_codegen_object_new (t1_702_TI_var);
m1_4575(L_9, _stringLiteral772, _stringLiteral773, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_9);
}
IL_005e:
{
int32_t L_10 = p1;
if ((((int32_t)L_10) >= ((int32_t)0)))
{
goto IL_0075;
}
}
{
t1_702 * L_11 = (t1_702 *)il2cpp_codegen_object_new (t1_702_TI_var);
m1_4575(L_11, _stringLiteral768, _stringLiteral773, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_11);
}
IL_0075:
{
int32_t L_12 = p2;
t1_83* L_13 = p0;
int32_t L_14 = p1;
if ((((int32_t)L_12) <= ((int32_t)((int32_t)((int32_t)(((int32_t)((int32_t)(((t1_33 *)L_13)->max_length))))-(int32_t)L_14)))))
{
goto IL_008b;
}
}
{
t1_653 * L_15 = (t1_653 *)il2cpp_codegen_object_new (t1_653_TI_var);
m1_4561(L_15, _stringLiteral774, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_15);
}
IL_008b:
{
bool L_16 = (__this->f3);
if (L_16)
{
goto IL_00a4;
}
}
{
t1_83* L_17 = p0;
int32_t L_18 = p1;
int32_t L_19 = p2;
t1_36 * L_20 = p3;
t1_1 * L_21 = p4;
t1_1 * L_22 = m1_2255(__this, L_17, L_18, L_19, L_20, L_21, NULL);
return L_22;
}
IL_00a4:
{
t1_24 L_23 = { (void*)m1_2141_MI_var };
t1_246 * L_24 = (t1_246 *)il2cpp_codegen_object_new (t1_246_TI_var);
m1_2119(L_24, __this, L_23, NULL);
V_0 = L_24;
t1_246 * L_25 = V_0;
t1_83* L_26 = p0;
int32_t L_27 = p1;
int32_t L_28 = p2;
t1_36 * L_29 = p3;
t1_1 * L_30 = p4;
t1_1 * L_31 = m1_2121(L_25, L_26, L_27, L_28, L_29, L_30, NULL);
return L_31;
}
}
extern TypeInfo* t1_701_TI_var;
extern TypeInfo* t1_448_TI_var;
extern TypeInfo* t1_653_TI_var;
extern TypeInfo* t1_246_TI_var;
extern Il2CppCodeGenString* _stringLiteral775;
extern Il2CppCodeGenString* _stringLiteral776;
extern "C" int32_t m1_2143 (t1_248 * __this, t1_1 * p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_701_TI_var = il2cpp_codegen_type_info_from_index(2);
t1_448_TI_var = il2cpp_codegen_type_info_from_index(232);
t1_653_TI_var = il2cpp_codegen_type_info_from_index(4);
t1_246_TI_var = il2cpp_codegen_type_info_from_index(231);
_stringLiteral775 = il2cpp_codegen_string_literal_from_index(775);
_stringLiteral776 = il2cpp_codegen_string_literal_from_index(776);
s_Il2CppMethodIntialized = true;
}
t1_448 * V_0 = {0};
t1_246 * V_1 = {0};
{
t1_1 * L_0 = p0;
if (L_0)
{
goto IL_0011;
}
}
{
t1_701 * L_1 = (t1_701 *)il2cpp_codegen_object_new (t1_701_TI_var);
m1_4570(L_1, _stringLiteral775, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_1);
}
IL_0011:
{
bool L_2 = (__this->f3);
if (L_2)
{
goto IL_0024;
}
}
{
t1_1 * L_3 = p0;
int32_t L_4 = m1_2257(__this, L_3, NULL);
return L_4;
}
IL_0024:
{
t1_1 * L_5 = p0;
V_0 = ((t1_448 *)IsInstClass(L_5, t1_448_TI_var));
t1_448 * L_6 = V_0;
if (L_6)
{
goto IL_0041;
}
}
{
t1_653 * L_7 = (t1_653 *)il2cpp_codegen_object_new (t1_653_TI_var);
m1_4563(L_7, _stringLiteral776, _stringLiteral775, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_7);
}
IL_0041:
{
t1_448 * L_8 = V_0;
t1_1 * L_9 = (t1_1 *)VirtFuncInvoker0< t1_1 * >::Invoke(11 /* System.Object System.Runtime.Remoting.Messaging.AsyncResult::get_AsyncDelegate() */, L_8);
V_1 = ((t1_246 *)IsInstSealed(L_9, t1_246_TI_var));
t1_246 * L_10 = V_1;
if (L_10)
{
goto IL_0063;
}
}
{
t1_653 * L_11 = (t1_653 *)il2cpp_codegen_object_new (t1_653_TI_var);
m1_4563(L_11, _stringLiteral776, _stringLiteral775, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_11);
}
IL_0063:
{
t1_246 * L_12 = V_1;
t1_1 * L_13 = p0;
int32_t L_14 = m1_2122(L_12, L_13, NULL);
return L_14;
}
}
extern TypeInfo* t1_254_TI_var;
extern TypeInfo* t1_760_TI_var;
extern TypeInfo* t1_701_TI_var;
extern TypeInfo* t1_702_TI_var;
extern TypeInfo* t1_653_TI_var;
extern TypeInfo* t1_756_TI_var;
extern Il2CppCodeGenString* _stringLiteral763;
extern Il2CppCodeGenString* _stringLiteral147;
extern Il2CppCodeGenString* _stringLiteral768;
extern Il2CppCodeGenString* _stringLiteral44;
extern Il2CppCodeGenString* _stringLiteral40;
extern Il2CppCodeGenString* _stringLiteral770;
extern Il2CppCodeGenString* _stringLiteral767;
extern "C" void m1_2144 (t1_248 * __this, t1_83* p0, int32_t p1, int32_t p2, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_254_TI_var = il2cpp_codegen_type_info_from_index(221);
t1_760_TI_var = il2cpp_codegen_type_info_from_index(137);
t1_701_TI_var = il2cpp_codegen_type_info_from_index(2);
t1_702_TI_var = il2cpp_codegen_type_info_from_index(27);
t1_653_TI_var = il2cpp_codegen_type_info_from_index(4);
t1_756_TI_var = il2cpp_codegen_type_info_from_index(6);
_stringLiteral763 = il2cpp_codegen_string_literal_from_index(763);
_stringLiteral147 = il2cpp_codegen_string_literal_from_index(147);
_stringLiteral768 = il2cpp_codegen_string_literal_from_index(768);
_stringLiteral44 = il2cpp_codegen_string_literal_from_index(44);
_stringLiteral40 = il2cpp_codegen_string_literal_from_index(40);
_stringLiteral770 = il2cpp_codegen_string_literal_from_index(770);
_stringLiteral767 = il2cpp_codegen_string_literal_from_index(767);
s_Il2CppMethodIntialized = true;
}
t1_1 * V_0 = {0};
{
t1_24 L_0 = (__this->f14);
IL2CPP_RUNTIME_CLASS_INIT(t1_254_TI_var);
t1_24 L_1 = ((t1_254_SFs*)t1_254_TI_var->static_fields)->f1;
bool L_2 = m1_643(NULL, L_0, L_1, NULL);
if (!L_2)
{
goto IL_0020;
}
}
{
t1_760 * L_3 = (t1_760 *)il2cpp_codegen_object_new (t1_760_TI_var);
m1_5252(L_3, _stringLiteral763, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_3);
}
IL_0020:
{
t1_83* L_4 = p0;
if (L_4)
{
goto IL_0031;
}
}
{
t1_701 * L_5 = (t1_701 *)il2cpp_codegen_object_new (t1_701_TI_var);
m1_4570(L_5, _stringLiteral147, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_5);
}
IL_0031:
{
int32_t L_6 = p1;
if ((((int32_t)L_6) >= ((int32_t)0)))
{
goto IL_0048;
}
}
{
t1_702 * L_7 = (t1_702 *)il2cpp_codegen_object_new (t1_702_TI_var);
m1_4575(L_7, _stringLiteral768, _stringLiteral44, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_7);
}
IL_0048:
{
int32_t L_8 = p2;
if ((((int32_t)L_8) >= ((int32_t)0)))
{
goto IL_005f;
}
}
{
t1_702 * L_9 = (t1_702 *)il2cpp_codegen_object_new (t1_702_TI_var);
m1_4575(L_9, _stringLiteral40, _stringLiteral44, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_9);
}
IL_005f:
{
int32_t L_10 = p1;
t1_83* L_11 = p0;
int32_t L_12 = p2;
if ((((int32_t)L_10) <= ((int32_t)((int32_t)((int32_t)(((int32_t)((int32_t)(((t1_33 *)L_11)->max_length))))-(int32_t)L_12)))))
{
goto IL_0075;
}
}
{
t1_653 * L_13 = (t1_653 *)il2cpp_codegen_object_new (t1_653_TI_var);
m1_4561(L_13, _stringLiteral770, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_13);
}
IL_0075:
{
bool L_14 = (bool)VirtFuncInvoker0< bool >::Invoke(7 /* System.Boolean System.IO.FileStream::get_CanWrite() */, __this);
if (L_14)
{
goto IL_008b;
}
}
{
t1_756 * L_15 = (t1_756 *)il2cpp_codegen_object_new (t1_756_TI_var);
m1_5149(L_15, _stringLiteral767, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_15);
}
IL_008b:
{
bool L_16 = (__this->f3);
if (!L_16)
{
goto IL_00aa;
}
}
{
t1_83* L_17 = p0;
int32_t L_18 = p1;
int32_t L_19 = p2;
t1_1 * L_20 = (t1_1 *)VirtFuncInvoker5< t1_1 *, t1_83*, int32_t, int32_t, t1_36 *, t1_1 * >::Invoke(21 /* System.IAsyncResult System.IO.FileStream::BeginWrite(System.Byte[],System.Int32,System.Int32,System.AsyncCallback,System.Object) */, __this, L_17, L_18, L_19, (t1_36 *)NULL, NULL);
V_0 = L_20;
t1_1 * L_21 = V_0;
VirtActionInvoker1< t1_1 * >::Invoke(23 /* System.Void System.IO.FileStream::EndWrite(System.IAsyncResult) */, __this, L_21);
return;
}
IL_00aa:
{
t1_83* L_22 = p0;
int32_t L_23 = p1;
int32_t L_24 = p2;
m1_2145(__this, L_22, L_23, L_24, NULL);
return;
}
}
extern TypeInfo* t1_254_TI_var;
extern "C" void m1_2145 (t1_248 * __this, t1_83* p0, int32_t p1, int32_t p2, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_254_TI_var = il2cpp_codegen_type_info_from_index(221);
s_Il2CppMethodIntialized = 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;
{
int32_t L_0 = p2;
int32_t L_1 = (__this->f8);
if ((((int32_t)L_0) <= ((int32_t)L_1)))
{
goto IL_0067;
}
}
{
m1_2156(__this, NULL);
int32_t L_2 = p2;
V_1 = L_2;
goto IL_004c;
}
IL_0019:
{
t1_24 L_3 = (__this->f14);
t1_83* L_4 = p0;
int32_t L_5 = p1;
int32_t L_6 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(t1_254_TI_var);
int32_t L_7 = m1_2218(NULL, L_3, L_4, L_5, L_6, (&V_0), NULL);
V_2 = L_7;
int32_t L_8 = V_0;
if (!L_8)
{
goto IL_0043;
}
}
{
t1_18* L_9 = (__this->f13);
t1_18* L_10 = m1_2161(__this, L_9, NULL);
int32_t L_11 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(t1_254_TI_var);
t1_43 * L_12 = m1_2205(NULL, L_10, L_11, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_12);
}
IL_0043:
{
int32_t L_13 = V_1;
int32_t L_14 = V_2;
V_1 = ((int32_t)((int32_t)L_13-(int32_t)L_14));
int32_t L_15 = p1;
int32_t L_16 = V_2;
p1 = ((int32_t)((int32_t)L_15+(int32_t)L_16));
}
IL_004c:
{
int32_t L_17 = V_1;
if ((((int32_t)L_17) > ((int32_t)0)))
{
goto IL_0019;
}
}
{
int64_t L_18 = (__this->f12);
int32_t L_19 = p2;
__this->f12 = ((int64_t)((int64_t)L_18+(int64_t)(((int64_t)((int64_t)L_19)))));
goto IL_009e;
}
IL_0067:
{
V_3 = 0;
goto IL_0097;
}
IL_006e:
{
t1_83* L_20 = p0;
int32_t L_21 = p1;
int32_t L_22 = V_3;
int32_t L_23 = p2;
int32_t L_24 = m1_2154(__this, L_20, ((int32_t)((int32_t)L_21+(int32_t)L_22)), L_23, NULL);
V_4 = L_24;
int32_t L_25 = V_3;
int32_t L_26 = V_4;
V_3 = ((int32_t)((int32_t)L_25+(int32_t)L_26));
int32_t L_27 = p2;
int32_t L_28 = V_4;
p2 = ((int32_t)((int32_t)L_27-(int32_t)L_28));
int32_t L_29 = p2;
if (L_29)
{
goto IL_0091;
}
}
{
goto IL_009e;
}
IL_0091:
{
m1_2156(__this, NULL);
}
IL_0097:
{
int32_t L_30 = p2;
if ((((int32_t)L_30) > ((int32_t)0)))
{
goto IL_006e;
}
}
IL_009e:
{
return;
}
}
extern TypeInfo* t1_254_TI_var;
extern TypeInfo* t1_760_TI_var;
extern TypeInfo* t1_756_TI_var;
extern TypeInfo* t1_701_TI_var;
extern TypeInfo* t1_702_TI_var;
extern TypeInfo* t1_653_TI_var;
extern TypeInfo* t1_249_TI_var;
extern TypeInfo* t1_252_TI_var;
extern TypeInfo* t1_247_TI_var;
extern const MethodInfo* m1_2145_MI_var;
extern Il2CppCodeGenString* _stringLiteral763;
extern Il2CppCodeGenString* _stringLiteral777;
extern Il2CppCodeGenString* _stringLiteral147;
extern Il2CppCodeGenString* _stringLiteral772;
extern Il2CppCodeGenString* _stringLiteral773;
extern Il2CppCodeGenString* _stringLiteral768;
extern Il2CppCodeGenString* _stringLiteral778;
extern "C" t1_1 * m1_2146 (t1_248 * __this, t1_83* p0, int32_t p1, int32_t p2, t1_36 * p3, t1_1 * p4, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_254_TI_var = il2cpp_codegen_type_info_from_index(221);
t1_760_TI_var = il2cpp_codegen_type_info_from_index(137);
t1_756_TI_var = il2cpp_codegen_type_info_from_index(6);
t1_701_TI_var = il2cpp_codegen_type_info_from_index(2);
t1_702_TI_var = il2cpp_codegen_type_info_from_index(27);
t1_653_TI_var = il2cpp_codegen_type_info_from_index(4);
t1_249_TI_var = il2cpp_codegen_type_info_from_index(233);
t1_252_TI_var = il2cpp_codegen_type_info_from_index(234);
t1_247_TI_var = il2cpp_codegen_type_info_from_index(235);
m1_2145_MI_var = il2cpp_codegen_method_info_from_index(15);
_stringLiteral763 = il2cpp_codegen_string_literal_from_index(763);
_stringLiteral777 = il2cpp_codegen_string_literal_from_index(777);
_stringLiteral147 = il2cpp_codegen_string_literal_from_index(147);
_stringLiteral772 = il2cpp_codegen_string_literal_from_index(772);
_stringLiteral773 = il2cpp_codegen_string_literal_from_index(773);
_stringLiteral768 = il2cpp_codegen_string_literal_from_index(768);
_stringLiteral778 = il2cpp_codegen_string_literal_from_index(778);
s_Il2CppMethodIntialized = true;
}
t1_249 * V_0 = {0};
t1_252 * V_1 = {0};
t1_247 * V_2 = {0};
{
t1_24 L_0 = (__this->f14);
IL2CPP_RUNTIME_CLASS_INIT(t1_254_TI_var);
t1_24 L_1 = ((t1_254_SFs*)t1_254_TI_var->static_fields)->f1;
bool L_2 = m1_643(NULL, L_0, L_1, NULL);
if (!L_2)
{
goto IL_0020;
}
}
{
t1_760 * L_3 = (t1_760 *)il2cpp_codegen_object_new (t1_760_TI_var);
m1_5252(L_3, _stringLiteral763, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_3);
}
IL_0020:
{
bool L_4 = (bool)VirtFuncInvoker0< bool >::Invoke(7 /* System.Boolean System.IO.FileStream::get_CanWrite() */, __this);
if (L_4)
{
goto IL_0036;
}
}
{
t1_756 * L_5 = (t1_756 *)il2cpp_codegen_object_new (t1_756_TI_var);
m1_5149(L_5, _stringLiteral777, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_5);
}
IL_0036:
{
t1_83* L_6 = p0;
if (L_6)
{
goto IL_0047;
}
}
{
t1_701 * L_7 = (t1_701 *)il2cpp_codegen_object_new (t1_701_TI_var);
m1_4570(L_7, _stringLiteral147, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_7);
}
IL_0047:
{
int32_t L_8 = p2;
if ((((int32_t)L_8) >= ((int32_t)0)))
{
goto IL_005e;
}
}
{
t1_702 * L_9 = (t1_702 *)il2cpp_codegen_object_new (t1_702_TI_var);
m1_4575(L_9, _stringLiteral772, _stringLiteral773, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_9);
}
IL_005e:
{
int32_t L_10 = p1;
if ((((int32_t)L_10) >= ((int32_t)0)))
{
goto IL_0075;
}
}
{
t1_702 * L_11 = (t1_702 *)il2cpp_codegen_object_new (t1_702_TI_var);
m1_4575(L_11, _stringLiteral768, _stringLiteral773, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_11);
}
IL_0075:
{
int32_t L_12 = p2;
t1_83* L_13 = p0;
int32_t L_14 = p1;
if ((((int32_t)L_12) <= ((int32_t)((int32_t)((int32_t)(((int32_t)((int32_t)(((t1_33 *)L_13)->max_length))))-(int32_t)L_14)))))
{
goto IL_008b;
}
}
{
t1_653 * L_15 = (t1_653 *)il2cpp_codegen_object_new (t1_653_TI_var);
m1_4561(L_15, _stringLiteral778, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_15);
}
IL_008b:
{
bool L_16 = (__this->f3);
if (L_16)
{
goto IL_00a4;
}
}
{
t1_83* L_17 = p0;
int32_t L_18 = p1;
int32_t L_19 = p2;
t1_36 * L_20 = p3;
t1_1 * L_21 = p4;
t1_1 * L_22 = m1_2256(__this, L_17, L_18, L_19, L_20, L_21, NULL);
return L_22;
}
IL_00a4:
{
t1_36 * L_23 = p3;
t1_1 * L_24 = p4;
t1_249 * L_25 = (t1_249 *)il2cpp_codegen_object_new (t1_249_TI_var);
m1_2163(L_25, L_23, L_24, NULL);
V_0 = L_25;
t1_249 * L_26 = V_0;
L_26->f6 = (-1);
t1_249 * L_27 = V_0;
int32_t L_28 = p2;
L_27->f4 = L_28;
t1_249 * L_29 = V_0;
int32_t L_30 = p2;
L_29->f5 = L_30;
bool L_31 = (__this->f11);
if (!L_31)
{
goto IL_00f0;
}
}
{
t1_252 * L_32 = (t1_252 *)il2cpp_codegen_object_new (t1_252_TI_var);
m1_2180(L_32, NULL);
V_1 = L_32;
t1_252 * L_33 = V_1;
m1_2155(__this, L_33, NULL);
t1_252 * L_34 = V_1;
t1_83* L_35 = p0;
int32_t L_36 = p1;
int32_t L_37 = p2;
VirtActionInvoker3< t1_83*, int32_t, int32_t >::Invoke(18 /* System.Void System.IO.MemoryStream::Write(System.Byte[],System.Int32,System.Int32) */, L_34, L_35, L_36, L_37);
p1 = 0;
t1_252 * L_38 = V_1;
int64_t L_39 = (int64_t)VirtFuncInvoker0< int64_t >::Invoke(8 /* System.Int64 System.IO.MemoryStream::get_Length() */, L_38);
p2 = (((int32_t)((int32_t)L_39)));
}
IL_00f0:
{
t1_24 L_40 = { (void*)m1_2145_MI_var };
t1_247 * L_41 = (t1_247 *)il2cpp_codegen_object_new (t1_247_TI_var);
m1_2123(L_41, __this, L_40, NULL);
V_2 = L_41;
t1_247 * L_42 = V_2;
t1_83* L_43 = p0;
int32_t L_44 = p1;
int32_t L_45 = p2;
t1_36 * L_46 = p3;
t1_1 * L_47 = p4;
t1_1 * L_48 = m1_2125(L_42, L_43, L_44, L_45, L_46, L_47, NULL);
return L_48;
}
}
extern TypeInfo* t1_701_TI_var;
extern TypeInfo* t1_448_TI_var;
extern TypeInfo* t1_653_TI_var;
extern TypeInfo* t1_247_TI_var;
extern Il2CppCodeGenString* _stringLiteral775;
extern Il2CppCodeGenString* _stringLiteral776;
extern "C" void m1_2147 (t1_248 * __this, t1_1 * p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_701_TI_var = il2cpp_codegen_type_info_from_index(2);
t1_448_TI_var = il2cpp_codegen_type_info_from_index(232);
t1_653_TI_var = il2cpp_codegen_type_info_from_index(4);
t1_247_TI_var = il2cpp_codegen_type_info_from_index(235);
_stringLiteral775 = il2cpp_codegen_string_literal_from_index(775);
_stringLiteral776 = il2cpp_codegen_string_literal_from_index(776);
s_Il2CppMethodIntialized = true;
}
t1_448 * V_0 = {0};
t1_247 * V_1 = {0};
{
t1_1 * L_0 = p0;
if (L_0)
{
goto IL_0011;
}
}
{
t1_701 * L_1 = (t1_701 *)il2cpp_codegen_object_new (t1_701_TI_var);
m1_4570(L_1, _stringLiteral775, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_1);
}
IL_0011:
{
bool L_2 = (__this->f3);
if (L_2)
{
goto IL_0024;
}
}
{
t1_1 * L_3 = p0;
m1_2258(__this, L_3, NULL);
return;
}
IL_0024:
{
t1_1 * L_4 = p0;
V_0 = ((t1_448 *)IsInstClass(L_4, t1_448_TI_var));
t1_448 * L_5 = V_0;
if (L_5)
{
goto IL_0041;
}
}
{
t1_653 * L_6 = (t1_653 *)il2cpp_codegen_object_new (t1_653_TI_var);
m1_4563(L_6, _stringLiteral776, _stringLiteral775, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_6);
}
IL_0041:
{
t1_448 * L_7 = V_0;
t1_1 * L_8 = (t1_1 *)VirtFuncInvoker0< t1_1 * >::Invoke(11 /* System.Object System.Runtime.Remoting.Messaging.AsyncResult::get_AsyncDelegate() */, L_7);
V_1 = ((t1_247 *)IsInstSealed(L_8, t1_247_TI_var));
t1_247 * L_9 = V_1;
if (L_9)
{
goto IL_0063;
}
}
{
t1_653 * L_10 = (t1_653 *)il2cpp_codegen_object_new (t1_653_TI_var);
m1_4563(L_10, _stringLiteral776, _stringLiteral775, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_10);
}
IL_0063:
{
t1_247 * L_11 = V_1;
t1_1 * L_12 = p0;
m1_2126(L_11, L_12, NULL);
return;
}
}
extern TypeInfo* t1_254_TI_var;
extern TypeInfo* t1_760_TI_var;
extern TypeInfo* t1_756_TI_var;
extern TypeInfo* t1_653_TI_var;
extern TypeInfo* t1_237_TI_var;
extern Il2CppCodeGenString* _stringLiteral763;
extern Il2CppCodeGenString* _stringLiteral764;
extern Il2CppCodeGenString* _stringLiteral779;
extern Il2CppCodeGenString* _stringLiteral780;
extern Il2CppCodeGenString* _stringLiteral781;
extern Il2CppCodeGenString* _stringLiteral782;
extern "C" int64_t m1_2148 (t1_248 * __this, int64_t p0, int32_t p1, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_254_TI_var = il2cpp_codegen_type_info_from_index(221);
t1_760_TI_var = il2cpp_codegen_type_info_from_index(137);
t1_756_TI_var = il2cpp_codegen_type_info_from_index(6);
t1_653_TI_var = il2cpp_codegen_type_info_from_index(4);
t1_237_TI_var = il2cpp_codegen_type_info_from_index(218);
_stringLiteral763 = il2cpp_codegen_string_literal_from_index(763);
_stringLiteral764 = il2cpp_codegen_string_literal_from_index(764);
_stringLiteral779 = il2cpp_codegen_string_literal_from_index(779);
_stringLiteral780 = il2cpp_codegen_string_literal_from_index(780);
_stringLiteral781 = il2cpp_codegen_string_literal_from_index(781);
_stringLiteral782 = il2cpp_codegen_string_literal_from_index(782);
s_Il2CppMethodIntialized = true;
}
int64_t V_0 = 0;
int32_t V_1 = {0};
int32_t V_2 = {0};
{
t1_24 L_0 = (__this->f14);
IL2CPP_RUNTIME_CLASS_INIT(t1_254_TI_var);
t1_24 L_1 = ((t1_254_SFs*)t1_254_TI_var->static_fields)->f1;
bool L_2 = m1_643(NULL, L_0, L_1, NULL);
if (!L_2)
{
goto IL_0020;
}
}
{
t1_760 * L_3 = (t1_760 *)il2cpp_codegen_object_new (t1_760_TI_var);
m1_5252(L_3, _stringLiteral763, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_3);
}
IL_0020:
{
bool L_4 = (bool)VirtFuncInvoker0< bool >::Invoke(6 /* System.Boolean System.IO.FileStream::get_CanSeek() */, __this);
if (L_4)
{
goto IL_0036;
}
}
{
t1_756 * L_5 = (t1_756 *)il2cpp_codegen_object_new (t1_756_TI_var);
m1_5149(L_5, _stringLiteral764, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_5);
}
IL_0036:
{
int32_t L_6 = p1;
V_2 = L_6;
int32_t L_7 = V_2;
if (L_7 == 0)
{
goto IL_006b;
}
if (L_7 == 1)
{
goto IL_005d;
}
if (L_7 == 2)
{
goto IL_004f;
}
}
{
goto IL_0072;
}
IL_004f:
{
int64_t L_8 = (int64_t)VirtFuncInvoker0< int64_t >::Invoke(8 /* System.Int64 System.IO.FileStream::get_Length() */, __this);
int64_t L_9 = p0;
V_0 = ((int64_t)((int64_t)L_8+(int64_t)L_9));
goto IL_0082;
}
IL_005d:
{
int64_t L_10 = (int64_t)VirtFuncInvoker0< int64_t >::Invoke(9 /* System.Int64 System.IO.FileStream::get_Position() */, __this);
int64_t L_11 = p0;
V_0 = ((int64_t)((int64_t)L_10+(int64_t)L_11));
goto IL_0082;
}
IL_006b:
{
int64_t L_12 = p0;
V_0 = L_12;
goto IL_0082;
}
IL_0072:
{
t1_653 * L_13 = (t1_653 *)il2cpp_codegen_object_new (t1_653_TI_var);
m1_4563(L_13, _stringLiteral779, _stringLiteral780, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_13);
}
IL_0082:
{
int64_t L_14 = V_0;
if ((((int64_t)L_14) >= ((int64_t)(((int64_t)((int64_t)0))))))
{
goto IL_0095;
}
}
{
t1_237 * L_15 = (t1_237 *)il2cpp_codegen_object_new (t1_237_TI_var);
m1_2176(L_15, _stringLiteral781, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_15);
}
IL_0095:
{
int64_t L_16 = V_0;
int64_t L_17 = (__this->f5);
if ((((int64_t)L_16) >= ((int64_t)L_17)))
{
goto IL_00ac;
}
}
{
t1_237 * L_18 = (t1_237 *)il2cpp_codegen_object_new (t1_237_TI_var);
m1_2176(L_18, _stringLiteral782, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_18);
}
IL_00ac:
{
m1_2156(__this, NULL);
t1_24 L_19 = (__this->f14);
int64_t L_20 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(t1_254_TI_var);
int64_t L_21 = m1_2219(NULL, L_19, L_20, 0, (&V_1), NULL);
__this->f12 = L_21;
int32_t L_22 = V_1;
if (!L_22)
{
goto IL_00e0;
}
}
{
t1_18* L_23 = (__this->f13);
t1_18* L_24 = m1_2161(__this, L_23, NULL);
int32_t L_25 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(t1_254_TI_var);
t1_43 * L_26 = m1_2205(NULL, L_24, L_25, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_26);
}
IL_00e0:
{
int64_t L_27 = (__this->f12);
return L_27;
}
}
extern TypeInfo* t1_254_TI_var;
extern TypeInfo* t1_760_TI_var;
extern TypeInfo* t1_756_TI_var;
extern TypeInfo* t1_702_TI_var;
extern Il2CppCodeGenString* _stringLiteral763;
extern Il2CppCodeGenString* _stringLiteral764;
extern Il2CppCodeGenString* _stringLiteral783;
extern Il2CppCodeGenString* _stringLiteral784;
extern "C" void m1_2149 (t1_248 * __this, int64_t p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_254_TI_var = il2cpp_codegen_type_info_from_index(221);
t1_760_TI_var = il2cpp_codegen_type_info_from_index(137);
t1_756_TI_var = il2cpp_codegen_type_info_from_index(6);
t1_702_TI_var = il2cpp_codegen_type_info_from_index(27);
_stringLiteral763 = il2cpp_codegen_string_literal_from_index(763);
_stringLiteral764 = il2cpp_codegen_string_literal_from_index(764);
_stringLiteral783 = il2cpp_codegen_string_literal_from_index(783);
_stringLiteral784 = il2cpp_codegen_string_literal_from_index(784);
s_Il2CppMethodIntialized = true;
}
int32_t V_0 = {0};
{
t1_24 L_0 = (__this->f14);
IL2CPP_RUNTIME_CLASS_INIT(t1_254_TI_var);
t1_24 L_1 = ((t1_254_SFs*)t1_254_TI_var->static_fields)->f1;
bool L_2 = m1_643(NULL, L_0, L_1, NULL);
if (!L_2)
{
goto IL_0020;
}
}
{
t1_760 * L_3 = (t1_760 *)il2cpp_codegen_object_new (t1_760_TI_var);
m1_5252(L_3, _stringLiteral763, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_3);
}
IL_0020:
{
bool L_4 = (bool)VirtFuncInvoker0< bool >::Invoke(6 /* System.Boolean System.IO.FileStream::get_CanSeek() */, __this);
if (L_4)
{
goto IL_0036;
}
}
{
t1_756 * L_5 = (t1_756 *)il2cpp_codegen_object_new (t1_756_TI_var);
m1_5149(L_5, _stringLiteral764, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_5);
}
IL_0036:
{
bool L_6 = (bool)VirtFuncInvoker0< bool >::Invoke(7 /* System.Boolean System.IO.FileStream::get_CanWrite() */, __this);
if (L_6)
{
goto IL_004c;
}
}
{
t1_756 * L_7 = (t1_756 *)il2cpp_codegen_object_new (t1_756_TI_var);
m1_5149(L_7, _stringLiteral783, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_7);
}
IL_004c:
{
int64_t L_8 = p0;
if ((((int64_t)L_8) >= ((int64_t)(((int64_t)((int64_t)0))))))
{
goto IL_005f;
}
}
{
t1_702 * L_9 = (t1_702 *)il2cpp_codegen_object_new (t1_702_TI_var);
m1_4574(L_9, _stringLiteral784, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_9);
}
IL_005f:
{
VirtActionInvoker0::Invoke(13 /* System.Void System.IO.FileStream::Flush() */, __this);
t1_24 L_10 = (__this->f14);
int64_t L_11 = p0;
IL2CPP_RUNTIME_CLASS_INIT(t1_254_TI_var);
m1_2221(NULL, L_10, L_11, (&V_0), NULL);
int32_t L_12 = V_0;
if (!L_12)
{
goto IL_008d;
}
}
{
t1_18* L_13 = (__this->f13);
t1_18* L_14 = m1_2161(__this, L_13, NULL);
int32_t L_15 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(t1_254_TI_var);
t1_43 * L_16 = m1_2205(NULL, L_14, L_15, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_16);
}
IL_008d:
{
int64_t L_17 = (int64_t)VirtFuncInvoker0< int64_t >::Invoke(9 /* System.Int64 System.IO.FileStream::get_Position() */, __this);
int64_t L_18 = p0;
if ((((int64_t)L_17) <= ((int64_t)L_18)))
{
goto IL_00a0;
}
}
{
int64_t L_19 = p0;
VirtActionInvoker1< int64_t >::Invoke(10 /* System.Void System.IO.FileStream::set_Position(System.Int64) */, __this, L_19);
}
IL_00a0:
{
return;
}
}
extern TypeInfo* t1_254_TI_var;
extern TypeInfo* t1_760_TI_var;
extern Il2CppCodeGenString* _stringLiteral763;
extern "C" void m1_2150 (t1_248 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_254_TI_var = il2cpp_codegen_type_info_from_index(221);
t1_760_TI_var = il2cpp_codegen_type_info_from_index(137);
_stringLiteral763 = il2cpp_codegen_string_literal_from_index(763);
s_Il2CppMethodIntialized = true;
}
{
t1_24 L_0 = (__this->f14);
IL2CPP_RUNTIME_CLASS_INIT(t1_254_TI_var);
t1_24 L_1 = ((t1_254_SFs*)t1_254_TI_var->static_fields)->f1;
bool L_2 = m1_643(NULL, L_0, L_1, NULL);
if (!L_2)
{
goto IL_0020;
}
}
{
t1_760 * L_3 = (t1_760 *)il2cpp_codegen_object_new (t1_760_TI_var);
m1_5252(L_3, _stringLiteral763, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_3);
}
IL_0020:
{
m1_2156(__this, NULL);
return;
}
}
extern "C" void m1_2151 (t1_248 * __this, const MethodInfo* method)
{
t1_43 * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
t1_43 * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
IL_0000:
try
{ // begin try (depth: 1)
VirtActionInvoker1< bool >::Invoke(11 /* System.Void System.IO.FileStream::Dispose(System.Boolean) */, __this, 0);
IL2CPP_LEAVE(0x13, FINALLY_000c);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (t1_43 *)e.ex;
goto FINALLY_000c;
}
FINALLY_000c:
{ // begin finally (depth: 1)
m1_3(__this, NULL);
IL2CPP_END_FINALLY(12)
} // end finally (depth: 1)
IL2CPP_CLEANUP(12)
{
IL2CPP_JUMP_TBL(0x13, IL_0013)
IL2CPP_RETHROW_IF_UNHANDLED(t1_43 *)
}
IL_0013:
{
return;
}
}
extern TypeInfo* t1_254_TI_var;
extern TypeInfo* t1_43_TI_var;
extern "C" void m1_2152 (t1_248 * __this, bool p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_254_TI_var = il2cpp_codegen_type_info_from_index(221);
t1_43_TI_var = il2cpp_codegen_type_info_from_index(45);
s_Il2CppMethodIntialized = true;
}
t1_43 * V_0 = {0};
t1_43 * V_1 = {0};
int32_t V_2 = {0};
t1_43 * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
t1_43 * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = 0;
NO_UNUSED_WARNING (__leave_target);
{
V_0 = (t1_43 *)NULL;
t1_24 L_0 = (__this->f14);
IL2CPP_RUNTIME_CLASS_INIT(t1_254_TI_var);
t1_24 L_1 = ((t1_254_SFs*)t1_254_TI_var->static_fields)->f1;
bool L_2 = m1_644(NULL, L_0, L_1, NULL);
if (!L_2)
{
goto IL_0067;
}
}
IL_0017:
try
{ // begin try (depth: 1)
m1_2156(__this, NULL);
goto IL_002a;
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (t1_43 *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (t1_43_TI_var, e.ex->object.klass))
goto CATCH_0022;
throw e;
}
CATCH_0022:
{ // begin catch(System.Exception)
V_1 = ((t1_43 *)__exception_local);
t1_43 * L_3 = V_1;
V_0 = L_3;
goto IL_002a;
} // end catch (depth: 1)
IL_002a:
{
bool L_4 = (__this->f2);
if (!L_4)
{
goto IL_0067;
}
}
{
t1_24 L_5 = (__this->f14);
IL2CPP_RUNTIME_CLASS_INIT(t1_254_TI_var);
m1_2216(NULL, L_5, (&V_2), NULL);
int32_t L_6 = V_2;
if (!L_6)
{
goto IL_005c;
}
}
{
t1_18* L_7 = (__this->f13);
t1_18* L_8 = m1_2161(__this, L_7, NULL);
int32_t L_9 = V_2;
IL2CPP_RUNTIME_CLASS_INIT(t1_254_TI_var);
t1_43 * L_10 = m1_2205(NULL, L_8, L_9, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_10);
}
IL_005c:
{
IL2CPP_RUNTIME_CLASS_INIT(t1_254_TI_var);
t1_24 L_11 = ((t1_254_SFs*)t1_254_TI_var->static_fields)->f1;
__this->f14 = L_11;
}
IL_0067:
{
__this->f4 = 0;
__this->f1 = 0;
bool L_12 = p0;
if (!L_12)
{
goto IL_0082;
}
}
{
__this->f7 = (t1_83*)NULL;
}
IL_0082:
{
bool L_13 = p0;
if (!L_13)
{
goto IL_008e;
}
}
{
m1_5001(NULL, __this, NULL);
}
IL_008e:
{
t1_43 * L_14 = V_0;
if (!L_14)
{
goto IL_0096;
}
}
{
t1_43 * L_15 = V_0;
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_15);
}
IL_0096:
{
return;
}
}
extern "C" int32_t m1_2153 (t1_248 * __this, t1_83* p0, int32_t p1, int32_t p2, const MethodInfo* method)
{
{
int32_t L_0 = p2;
int32_t L_1 = (__this->f9);
int32_t L_2 = (__this->f10);
if ((((int32_t)L_0) <= ((int32_t)((int32_t)((int32_t)L_1-(int32_t)L_2)))))
{
goto IL_0022;
}
}
{
int32_t L_3 = (__this->f9);
int32_t L_4 = (__this->f10);
p2 = ((int32_t)((int32_t)L_3-(int32_t)L_4));
}
IL_0022:
{
int32_t L_5 = p2;
if ((((int32_t)L_5) <= ((int32_t)0)))
{
goto IL_004b;
}
}
{
t1_83* L_6 = (__this->f7);
int32_t L_7 = (__this->f10);
t1_83* L_8 = p0;
int32_t L_9 = p1;
int32_t L_10 = p2;
m1_4597(NULL, (t1_33 *)(t1_33 *)L_6, L_7, (t1_33 *)(t1_33 *)L_8, L_9, L_10, NULL);
int32_t L_11 = (__this->f10);
int32_t L_12 = p2;
__this->f10 = ((int32_t)((int32_t)L_11+(int32_t)L_12));
}
IL_004b:
{
int32_t L_13 = p2;
return L_13;
}
}
extern "C" int32_t m1_2154 (t1_248 * __this, t1_83* p0, int32_t p1, int32_t p2, const MethodInfo* method)
{
{
int32_t L_0 = p2;
int32_t L_1 = (__this->f8);
int32_t L_2 = (__this->f10);
if ((((int32_t)L_0) <= ((int32_t)((int32_t)((int32_t)L_1-(int32_t)L_2)))))
{
goto IL_0022;
}
}
{
int32_t L_3 = (__this->f8);
int32_t L_4 = (__this->f10);
p2 = ((int32_t)((int32_t)L_3-(int32_t)L_4));
}
IL_0022:
{
int32_t L_5 = p2;
if ((((int32_t)L_5) <= ((int32_t)0)))
{
goto IL_006f;
}
}
{
t1_83* L_6 = p0;
int32_t L_7 = p1;
t1_83* L_8 = (__this->f7);
int32_t L_9 = (__this->f10);
int32_t L_10 = p2;
m1_4597(NULL, (t1_33 *)(t1_33 *)L_6, L_7, (t1_33 *)(t1_33 *)L_8, L_9, L_10, NULL);
int32_t L_11 = (__this->f10);
int32_t L_12 = p2;
__this->f10 = ((int32_t)((int32_t)L_11+(int32_t)L_12));
int32_t L_13 = (__this->f10);
int32_t L_14 = (__this->f9);
if ((((int32_t)L_13) <= ((int32_t)L_14)))
{
goto IL_0068;
}
}
{
int32_t L_15 = (__this->f10);
__this->f9 = L_15;
}
IL_0068:
{
__this->f11 = 1;
}
IL_006f:
{
int32_t L_16 = p2;
return L_16;
}
}
extern TypeInfo* t1_254_TI_var;
extern "C" void m1_2155 (t1_248 * __this, t1_230 * p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_254_TI_var = il2cpp_codegen_type_info_from_index(221);
s_Il2CppMethodIntialized = true;
}
int32_t V_0 = {0};
int32_t V_1 = 0;
{
bool L_0 = (__this->f11);
if (!L_0)
{
goto IL_0096;
}
}
{
bool L_1 = (bool)VirtFuncInvoker0< bool >::Invoke(6 /* System.Boolean System.IO.FileStream::get_CanSeek() */, __this);
if (!L_1)
{
goto IL_0044;
}
}
{
t1_24 L_2 = (__this->f14);
int64_t L_3 = (__this->f12);
IL2CPP_RUNTIME_CLASS_INIT(t1_254_TI_var);
m1_2219(NULL, L_2, L_3, 0, (&V_0), NULL);
int32_t L_4 = V_0;
if (!L_4)
{
goto IL_0044;
}
}
{
t1_18* L_5 = (__this->f13);
t1_18* L_6 = m1_2161(__this, L_5, NULL);
int32_t L_7 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(t1_254_TI_var);
t1_43 * L_8 = m1_2205(NULL, L_6, L_7, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_8);
}
IL_0044:
{
t1_230 * L_9 = p0;
if (L_9)
{
goto IL_0083;
}
}
{
t1_24 L_10 = (__this->f14);
t1_83* L_11 = (__this->f7);
int32_t L_12 = (__this->f9);
IL2CPP_RUNTIME_CLASS_INIT(t1_254_TI_var);
m1_2218(NULL, L_10, L_11, 0, L_12, (&V_0), NULL);
int32_t L_13 = V_0;
if (!L_13)
{
goto IL_007e;
}
}
{
t1_18* L_14 = (__this->f13);
t1_18* L_15 = m1_2161(__this, L_14, NULL);
int32_t L_16 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(t1_254_TI_var);
t1_43 * L_17 = m1_2205(NULL, L_15, L_16, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_17);
}
IL_007e:
{
goto IL_0096;
}
IL_0083:
{
t1_230 * L_18 = p0;
t1_83* L_19 = (__this->f7);
int32_t L_20 = (__this->f9);
VirtActionInvoker3< t1_83*, int32_t, int32_t >::Invoke(18 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_18, L_19, 0, L_20);
}
IL_0096:
{
int64_t L_21 = (__this->f12);
int32_t L_22 = (__this->f10);
__this->f12 = ((int64_t)((int64_t)L_21+(int64_t)(((int64_t)((int64_t)L_22)))));
int32_t L_23 = 0;
V_1 = L_23;
__this->f9 = L_23;
int32_t L_24 = V_1;
__this->f10 = L_24;
__this->f11 = 0;
return;
}
}
extern "C" void m1_2156 (t1_248 * __this, const MethodInfo* method)
{
{
m1_2155(__this, (t1_230 *)NULL, NULL);
return;
}
}
extern "C" void m1_2157 (t1_248 * __this, const MethodInfo* method)
{
{
bool L_0 = (__this->f11);
if (!L_0)
{
goto IL_0012;
}
}
{
m1_2155(__this, (t1_230 *)NULL, NULL);
}
IL_0012:
{
return;
}
}
extern "C" void m1_2158 (t1_248 * __this, const MethodInfo* method)
{
{
m1_2155(__this, (t1_230 *)NULL, NULL);
t1_24 L_0 = (__this->f14);
t1_83* L_1 = (__this->f7);
int32_t L_2 = (__this->f8);
int32_t L_3 = m1_2159(__this, L_0, L_1, 0, L_2, NULL);
__this->f9 = L_3;
return;
}
}
extern TypeInfo* t1_254_TI_var;
extern TypeInfo* t1_237_TI_var;
extern "C" int32_t m1_2159 (t1_248 * __this, t1_24 p0, t1_83* p1, int32_t p2, int32_t p3, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_254_TI_var = il2cpp_codegen_type_info_from_index(221);
t1_237_TI_var = il2cpp_codegen_type_info_from_index(218);
s_Il2CppMethodIntialized = true;
}
int32_t V_0 = {0};
int32_t V_1 = 0;
{
V_1 = 0;
t1_24 L_0 = p0;
t1_83* L_1 = p1;
int32_t L_2 = p2;
int32_t L_3 = p3;
IL2CPP_RUNTIME_CLASS_INIT(t1_254_TI_var);
int32_t L_4 = m1_2217(NULL, L_0, L_1, L_2, L_3, (&V_0), NULL);
V_1 = L_4;
int32_t L_5 = V_0;
if ((!(((uint32_t)L_5) == ((uint32_t)((int32_t)109)))))
{
goto IL_001e;
}
}
{
V_1 = 0;
goto IL_0037;
}
IL_001e:
{
int32_t L_6 = V_0;
if (!L_6)
{
goto IL_0037;
}
}
{
t1_18* L_7 = (__this->f13);
t1_18* L_8 = m1_2161(__this, L_7, NULL);
int32_t L_9 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(t1_254_TI_var);
t1_43 * L_10 = m1_2205(NULL, L_8, L_9, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_10);
}
IL_0037:
{
int32_t L_11 = V_1;
if ((!(((uint32_t)L_11) == ((uint32_t)(-1)))))
{
goto IL_0044;
}
}
{
t1_237 * L_12 = (t1_237 *)il2cpp_codegen_object_new (t1_237_TI_var);
m1_2175(L_12, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_12);
}
IL_0044:
{
int32_t L_13 = V_1;
return L_13;
}
}
extern TypeInfo* t1_83_TI_var;
extern TypeInfo* t1_702_TI_var;
extern Il2CppCodeGenString* _stringLiteral752;
extern Il2CppCodeGenString* _stringLiteral602;
extern "C" void m1_2160 (t1_248 * __this, int32_t p0, bool p1, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_83_TI_var = il2cpp_codegen_type_info_from_index(42);
t1_702_TI_var = il2cpp_codegen_type_info_from_index(27);
_stringLiteral752 = il2cpp_codegen_string_literal_from_index(752);
_stringLiteral602 = il2cpp_codegen_string_literal_from_index(602);
s_Il2CppMethodIntialized = true;
}
int32_t V_0 = 0;
{
bool L_0 = p1;
if (!L_0)
{
goto IL_001a;
}
}
{
p0 = 0;
__this->f7 = ((t1_83*)SZArrayNew(t1_83_TI_var, 1));
goto IL_0047;
}
IL_001a:
{
int32_t L_1 = p0;
if ((((int32_t)L_1) > ((int32_t)0)))
{
goto IL_0031;
}
}
{
t1_702 * L_2 = (t1_702 *)il2cpp_codegen_object_new (t1_702_TI_var);
m1_4575(L_2, _stringLiteral752, _stringLiteral602, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_2);
}
IL_0031:
{
int32_t L_3 = p0;
if ((((int32_t)L_3) >= ((int32_t)8)))
{
goto IL_003b;
}
}
{
p0 = 8;
}
IL_003b:
{
int32_t L_4 = p0;
__this->f7 = ((t1_83*)SZArrayNew(t1_83_TI_var, L_4));
}
IL_0047:
{
int32_t L_5 = p0;
__this->f8 = L_5;
__this->f12 = (((int64_t)((int64_t)0)));
int32_t L_6 = 0;
V_0 = L_6;
__this->f9 = L_6;
int32_t L_7 = V_0;
__this->f10 = L_7;
__this->f11 = 0;
return;
}
}
extern TypeInfo* t1_256_TI_var;
extern "C" t1_18* m1_2161 (t1_248 * __this, t1_18* p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_256_TI_var = il2cpp_codegen_type_info_from_index(140);
s_Il2CppMethodIntialized = true;
}
t1_18* G_B3_0 = {0};
{
bool L_0 = (__this->f6);
if (!L_0)
{
goto IL_0016;
}
}
{
t1_18* L_1 = p0;
IL2CPP_RUNTIME_CLASS_INIT(t1_256_TI_var);
t1_18* L_2 = m1_2233(NULL, L_1, NULL);
G_B3_0 = L_2;
goto IL_001c;
}
IL_0016:
{
t1_18* L_3 = p0;
IL2CPP_RUNTIME_CLASS_INIT(t1_256_TI_var);
t1_18* L_4 = m1_2234(NULL, L_3, NULL);
G_B3_0 = L_4;
}
IL_001c:
{
return G_B3_0;
}
}
extern TypeInfo* t1_256_TI_var;
extern "C" t1_18* m1_2162 (t1_248 * __this, t1_18* p0, bool p1, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_256_TI_var = il2cpp_codegen_type_info_from_index(140);
s_Il2CppMethodIntialized = true;
}
t1_18* G_B5_0 = {0};
{
bool L_0 = (__this->f6);
if (!L_0)
{
goto IL_0016;
}
}
{
t1_18* L_1 = p0;
IL2CPP_RUNTIME_CLASS_INIT(t1_256_TI_var);
t1_18* L_2 = m1_2233(NULL, L_1, NULL);
G_B5_0 = L_2;
goto IL_0028;
}
IL_0016:
{
bool L_3 = p1;
if (!L_3)
{
goto IL_0027;
}
}
{
t1_18* L_4 = p0;
IL2CPP_RUNTIME_CLASS_INIT(t1_256_TI_var);
t1_18* L_5 = m1_2234(NULL, L_4, NULL);
G_B5_0 = L_5;
goto IL_0028;
}
IL_0027:
{
t1_18* L_6 = p0;
G_B5_0 = L_6;
}
IL_0028:
{
return G_B5_0;
}
}
extern TypeInfo* t1_36_TI_var;
extern TypeInfo* t1_250_TI_var;
extern const MethodInfo* m1_2164_MI_var;
extern "C" void m1_2163 (t1_249 * __this, t1_36 * p0, t1_1 * p1, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_36_TI_var = il2cpp_codegen_type_info_from_index(236);
t1_250_TI_var = il2cpp_codegen_type_info_from_index(237);
m1_2164_MI_var = il2cpp_codegen_method_info_from_index(16);
s_Il2CppMethodIntialized = true;
}
{
m1_0(__this, NULL);
t1_1 * L_0 = p1;
__this->f0 = L_0;
t1_36 * L_1 = p0;
__this->f7 = L_1;
t1_36 * L_2 = (__this->f7);
if (!L_2)
{
goto IL_0031;
}
}
{
t1_24 L_3 = { (void*)m1_2164_MI_var };
t1_36 * L_4 = (t1_36 *)il2cpp_codegen_object_new (t1_36_TI_var);
m1_977(L_4, NULL, L_3, NULL);
__this->f3 = L_4;
}
IL_0031:
{
t1_250 * L_5 = (t1_250 *)il2cpp_codegen_object_new (t1_250_TI_var);
m1_4444(L_5, 0, NULL);
__this->f2 = L_5;
return;
}
}
extern TypeInfo* t1_249_TI_var;
extern "C" void m1_2164 (t1_1 * __this , t1_1 * p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_249_TI_var = il2cpp_codegen_type_info_from_index(233);
s_Il2CppMethodIntialized = true;
}
t1_249 * V_0 = {0};
{
t1_1 * L_0 = p0;
V_0 = ((t1_249 *)CastclassClass(L_0, t1_249_TI_var));
t1_249 * L_1 = V_0;
t1_36 * L_2 = (L_1->f7);
t1_1 * L_3 = p0;
m1_979(L_2, L_3, (t1_36 *)NULL, NULL, NULL);
return;
}
}
extern "C" t1_1 * m1_2165 (t1_249 * __this, const MethodInfo* method)
{
{
t1_1 * L_0 = (__this->f0);
return L_0;
}
}
extern "C" t1_449 * m1_2166 (t1_249 * __this, const MethodInfo* method)
{
{
t1_250 * L_0 = (__this->f2);
return L_0;
}
}
extern "C" bool m1_2167 (t1_249 * __this, const MethodInfo* method)
{
{
bool L_0 = (__this->f1);
return L_0;
}
}
extern "C" void m1_2168 (t1_235 * __this, const MethodInfo* method)
{
{
m1_985(__this, NULL);
__this->f4 = 0;
__this->f1 = (t1_18*)NULL;
return;
}
}
extern TypeInfo* t1_701_TI_var;
extern Il2CppCodeGenString* _stringLiteral109;
extern Il2CppCodeGenString* _stringLiteral785;
extern Il2CppCodeGenString* _stringLiteral786;
extern "C" void m1_2169 (t1_235 * __this, t1_190 * p0, t1_521 p1, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_701_TI_var = il2cpp_codegen_type_info_from_index(2);
_stringLiteral109 = il2cpp_codegen_string_literal_from_index(109);
_stringLiteral785 = il2cpp_codegen_string_literal_from_index(785);
_stringLiteral786 = il2cpp_codegen_string_literal_from_index(786);
s_Il2CppMethodIntialized = true;
}
{
m1_985(__this, NULL);
t1_190 * L_0 = p0;
if (L_0)
{
goto IL_0017;
}
}
{
t1_701 * L_1 = (t1_701 *)il2cpp_codegen_object_new (t1_701_TI_var);
m1_4570(L_1, _stringLiteral109, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_1);
}
IL_0017:
{
t1_190 * L_2 = p0;
t1_18* L_3 = m1_3634(L_2, _stringLiteral785, NULL);
__this->f1 = L_3;
t1_190 * L_4 = p0;
t1_18* L_5 = m1_3634(L_4, _stringLiteral786, NULL);
__this->f2 = L_5;
return;
}
}
extern const Il2CppType* t1_18_0_0_0_var;
extern TypeInfo* t1_37_TI_var;
extern Il2CppCodeGenString* _stringLiteral786;
extern Il2CppCodeGenString* _stringLiteral785;
extern "C" void m1_2170 (t1_235 * __this, t1_190 * p0, t1_521 p1, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_18_0_0_0_var = il2cpp_codegen_type_from_index(11);
t1_37_TI_var = il2cpp_codegen_type_info_from_index(3);
_stringLiteral786 = il2cpp_codegen_string_literal_from_index(786);
_stringLiteral785 = il2cpp_codegen_string_literal_from_index(785);
s_Il2CppMethodIntialized = true;
}
{
t1_190 * L_0 = p0;
t1_18* L_1 = (__this->f2);
IL2CPP_RUNTIME_CLASS_INIT(t1_37_TI_var);
t1_37 * L_2 = m1_894(NULL, LoadTypeToken(t1_18_0_0_0_var), NULL);
m1_3618(L_0, _stringLiteral786, L_1, L_2, NULL);
t1_190 * L_3 = p0;
t1_18* L_4 = (__this->f1);
t1_37 * L_5 = m1_894(NULL, LoadTypeToken(t1_18_0_0_0_var), NULL);
m1_3618(L_3, _stringLiteral785, L_4, L_5, NULL);
return;
}
}
extern "C" t1_18* m1_2171 (t1_235 * __this, const MethodInfo* method)
{
{
t1_18* L_0 = (__this->f1);
return L_0;
}
}
extern TypeInfo* t1_254_TI_var;
extern "C" void m1_2172 (t1_235 * __this, bool p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_254_TI_var = il2cpp_codegen_type_info_from_index(221);
s_Il2CppMethodIntialized = true;
}
int32_t V_0 = {0};
{
bool L_0 = (__this->f4);
if (!L_0)
{
goto IL_0012;
}
}
{
bool L_1 = p0;
if (L_1)
{
goto IL_0012;
}
}
{
return;
}
IL_0012:
{
t1_18* L_2 = (t1_18*)VirtFuncInvoker0< t1_18* >::Invoke(7 /* System.String System.IO.FileSystemInfo::get_FullName() */, __this);
t1_251 * L_3 = &(__this->f3);
IL2CPP_RUNTIME_CLASS_INIT(t1_254_TI_var);
m1_2214(NULL, L_2, L_3, (&V_0), NULL);
__this->f4 = 1;
VirtActionInvoker0::Invoke(8 /* System.Void System.IO.FileSystemInfo::InternalRefresh() */, __this);
return;
}
}
extern "C" void m1_2173 (t1_235 * __this, const MethodInfo* method)
{
{
return;
}
}
extern TypeInfo* t1_701_TI_var;
extern TypeInfo* t1_653_TI_var;
extern TypeInfo* t1_256_TI_var;
extern Il2CppCodeGenString* _stringLiteral720;
extern Il2CppCodeGenString* _stringLiteral787;
extern Il2CppCodeGenString* _stringLiteral788;
extern "C" void m1_2174 (t1_235 * __this, t1_18* p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_701_TI_var = il2cpp_codegen_type_info_from_index(2);
t1_653_TI_var = il2cpp_codegen_type_info_from_index(4);
t1_256_TI_var = il2cpp_codegen_type_info_from_index(140);
_stringLiteral720 = il2cpp_codegen_string_literal_from_index(720);
_stringLiteral787 = il2cpp_codegen_string_literal_from_index(787);
_stringLiteral788 = il2cpp_codegen_string_literal_from_index(788);
s_Il2CppMethodIntialized = true;
}
{
t1_18* L_0 = p0;
if (L_0)
{
goto IL_0011;
}
}
{
t1_701 * L_1 = (t1_701 *)il2cpp_codegen_object_new (t1_701_TI_var);
m1_4570(L_1, _stringLiteral720, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_1);
}
IL_0011:
{
t1_18* L_2 = p0;
int32_t L_3 = m1_430(L_2, NULL);
if (L_3)
{
goto IL_0027;
}
}
{
t1_653 * L_4 = (t1_653 *)il2cpp_codegen_object_new (t1_653_TI_var);
m1_4561(L_4, _stringLiteral787, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_4);
}
IL_0027:
{
t1_18* L_5 = p0;
IL2CPP_RUNTIME_CLASS_INIT(t1_256_TI_var);
t1_19* L_6 = ((t1_256_SFs*)t1_256_TI_var->static_fields)->f0;
int32_t L_7 = m1_373(L_5, L_6, NULL);
if ((((int32_t)L_7) == ((int32_t)(-1))))
{
goto IL_0043;
}
}
{
t1_653 * L_8 = (t1_653 *)il2cpp_codegen_object_new (t1_653_TI_var);
m1_4561(L_8, _stringLiteral788, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_8);
}
IL_0043:
{
return;
}
}
extern Il2CppCodeGenString* _stringLiteral789;
extern "C" void m1_2175 (t1_237 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
_stringLiteral789 = il2cpp_codegen_string_literal_from_index(789);
s_Il2CppMethodIntialized = true;
}
{
m1_5293(__this, _stringLiteral789, NULL);
return;
}
}
extern "C" void m1_2176 (t1_237 * __this, t1_18* p0, const MethodInfo* method)
{
{
t1_18* L_0 = p0;
m1_5293(__this, L_0, NULL);
return;
}
}
extern "C" void m1_2177 (t1_237 * __this, t1_18* p0, t1_43 * p1, const MethodInfo* method)
{
{
t1_18* L_0 = p0;
t1_43 * L_1 = p1;
m1_5295(__this, L_0, L_1, NULL);
return;
}
}
extern "C" void m1_2178 (t1_237 * __this, t1_190 * p0, t1_521 p1, const MethodInfo* method)
{
{
t1_190 * L_0 = p0;
t1_521 L_1 = p1;
m1_5294(__this, L_0, L_1, NULL);
return;
}
}
extern "C" void m1_2179 (t1_237 * __this, t1_18* p0, int32_t p1, const MethodInfo* method)
{
{
t1_18* L_0 = p0;
m1_5293(__this, L_0, NULL);
int32_t L_1 = p1;
m1_937(__this, L_1, NULL);
return;
}
}
extern "C" void m1_2180 (t1_252 * __this, const MethodInfo* method)
{
{
m1_2181(__this, 0, NULL);
return;
}
}
extern TypeInfo* t1_230_TI_var;
extern TypeInfo* t1_702_TI_var;
extern TypeInfo* t1_83_TI_var;
extern Il2CppCodeGenString* _stringLiteral491;
extern "C" void m1_2181 (t1_252 * __this, int32_t p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_230_TI_var = il2cpp_codegen_type_info_from_index(227);
t1_702_TI_var = il2cpp_codegen_type_info_from_index(27);
t1_83_TI_var = il2cpp_codegen_type_info_from_index(42);
_stringLiteral491 = il2cpp_codegen_string_literal_from_index(491);
s_Il2CppMethodIntialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(t1_230_TI_var);
m1_2248(__this, NULL);
int32_t L_0 = p0;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0018;
}
}
{
t1_702 * L_1 = (t1_702 *)il2cpp_codegen_object_new (t1_702_TI_var);
m1_4574(L_1, _stringLiteral491, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_1);
}
IL_0018:
{
__this->f1 = 1;
int32_t L_2 = p0;
__this->f3 = L_2;
int32_t L_3 = p0;
__this->f5 = ((t1_83*)SZArrayNew(t1_83_TI_var, L_3));
__this->f7 = 1;
__this->f2 = 1;
return;
}
}
extern TypeInfo* t1_230_TI_var;
extern TypeInfo* t1_701_TI_var;
extern Il2CppCodeGenString* _stringLiteral790;
extern "C" void m1_2182 (t1_252 * __this, t1_83* p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_230_TI_var = il2cpp_codegen_type_info_from_index(227);
t1_701_TI_var = il2cpp_codegen_type_info_from_index(2);
_stringLiteral790 = il2cpp_codegen_string_literal_from_index(790);
s_Il2CppMethodIntialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(t1_230_TI_var);
m1_2248(__this, NULL);
t1_83* L_0 = p0;
if (L_0)
{
goto IL_0017;
}
}
{
t1_701 * L_1 = (t1_701 *)il2cpp_codegen_object_new (t1_701_TI_var);
m1_4570(L_1, _stringLiteral790, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_1);
}
IL_0017:
{
t1_83* L_2 = p0;
t1_83* L_3 = p0;
m1_2183(__this, L_2, 0, (((int32_t)((int32_t)(((t1_33 *)L_3)->max_length)))), 1, 0, NULL);
return;
}
}
extern TypeInfo* t1_701_TI_var;
extern TypeInfo* t1_702_TI_var;
extern TypeInfo* t1_653_TI_var;
extern Il2CppCodeGenString* _stringLiteral790;
extern Il2CppCodeGenString* _stringLiteral791;
extern Il2CppCodeGenString* _stringLiteral792;
extern Il2CppCodeGenString* _stringLiteral793;
extern "C" void m1_2183 (t1_252 * __this, t1_83* p0, int32_t p1, int32_t p2, bool p3, bool p4, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_701_TI_var = il2cpp_codegen_type_info_from_index(2);
t1_702_TI_var = il2cpp_codegen_type_info_from_index(27);
t1_653_TI_var = il2cpp_codegen_type_info_from_index(4);
_stringLiteral790 = il2cpp_codegen_string_literal_from_index(790);
_stringLiteral791 = il2cpp_codegen_string_literal_from_index(791);
_stringLiteral792 = il2cpp_codegen_string_literal_from_index(792);
_stringLiteral793 = il2cpp_codegen_string_literal_from_index(793);
s_Il2CppMethodIntialized = true;
}
{
t1_83* L_0 = p0;
if (L_0)
{
goto IL_0011;
}
}
{
t1_701 * L_1 = (t1_701 *)il2cpp_codegen_object_new (t1_701_TI_var);
m1_4570(L_1, _stringLiteral790, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_1);
}
IL_0011:
{
int32_t L_2 = p1;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_001f;
}
}
{
int32_t L_3 = p2;
if ((((int32_t)L_3) >= ((int32_t)0)))
{
goto IL_002a;
}
}
IL_001f:
{
t1_702 * L_4 = (t1_702 *)il2cpp_codegen_object_new (t1_702_TI_var);
m1_4574(L_4, _stringLiteral791, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_4);
}
IL_002a:
{
t1_83* L_5 = p0;
int32_t L_6 = p1;
int32_t L_7 = p2;
if ((((int32_t)((int32_t)((int32_t)(((int32_t)((int32_t)(((t1_33 *)L_5)->max_length))))-(int32_t)L_6))) >= ((int32_t)L_7)))
{
goto IL_0045;
}
}
{
t1_653 * L_8 = (t1_653 *)il2cpp_codegen_object_new (t1_653_TI_var);
m1_4563(L_8, _stringLiteral792, _stringLiteral793, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_8);
}
IL_0045:
{
bool L_9 = p3;
__this->f1 = L_9;
t1_83* L_10 = p0;
__this->f5 = L_10;
int32_t L_11 = p2;
int32_t L_12 = p1;
__this->f3 = ((int32_t)((int32_t)L_11+(int32_t)L_12));
int32_t L_13 = (__this->f3);
__this->f4 = L_13;
int32_t L_14 = p1;
__this->f9 = L_14;
int32_t L_15 = p1;
__this->f6 = L_15;
bool L_16 = p4;
__this->f2 = L_16;
__this->f7 = 0;
return;
}
}
extern TypeInfo* t1_760_TI_var;
extern Il2CppCodeGenString* _stringLiteral794;
extern "C" void m1_2184 (t1_252 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_760_TI_var = il2cpp_codegen_type_info_from_index(137);
_stringLiteral794 = il2cpp_codegen_string_literal_from_index(794);
s_Il2CppMethodIntialized = true;
}
{
bool L_0 = (__this->f8);
if (!L_0)
{
goto IL_0016;
}
}
{
t1_760 * L_1 = (t1_760 *)il2cpp_codegen_object_new (t1_760_TI_var);
m1_5252(L_1, _stringLiteral794, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_1);
}
IL_0016:
{
return;
}
}
extern "C" bool m1_2185 (t1_252 * __this, const MethodInfo* method)
{
{
bool L_0 = (__this->f8);
return ((((int32_t)L_0) == ((int32_t)0))? 1 : 0);
}
}
extern "C" bool m1_2186 (t1_252 * __this, const MethodInfo* method)
{
{
bool L_0 = (__this->f8);
return ((((int32_t)L_0) == ((int32_t)0))? 1 : 0);
}
}
extern "C" bool m1_2187 (t1_252 * __this, const MethodInfo* method)
{
int32_t G_B3_0 = 0;
{
bool L_0 = (__this->f8);
if (L_0)
{
goto IL_0013;
}
}
{
bool L_1 = (__this->f1);
G_B3_0 = ((int32_t)(L_1));
goto IL_0014;
}
IL_0013:
{
G_B3_0 = 0;
}
IL_0014:
{
return G_B3_0;
}
}
extern TypeInfo* t1_756_TI_var;
extern TypeInfo* t1_170_TI_var;
extern TypeInfo* t1_4_TI_var;
extern TypeInfo* t1_18_TI_var;
extern TypeInfo* t1_702_TI_var;
extern TypeInfo* t1_83_TI_var;
extern Il2CppCodeGenString* _stringLiteral795;
extern Il2CppCodeGenString* _stringLiteral52;
extern Il2CppCodeGenString* _stringLiteral796;
extern Il2CppCodeGenString* _stringLiteral232;
extern "C" void m1_2188 (t1_252 * __this, int32_t p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_756_TI_var = il2cpp_codegen_type_info_from_index(6);
t1_170_TI_var = il2cpp_codegen_type_info_from_index(19);
t1_4_TI_var = il2cpp_codegen_type_info_from_index(8);
t1_18_TI_var = il2cpp_codegen_type_info_from_index(11);
t1_702_TI_var = il2cpp_codegen_type_info_from_index(27);
t1_83_TI_var = il2cpp_codegen_type_info_from_index(42);
_stringLiteral795 = il2cpp_codegen_string_literal_from_index(795);
_stringLiteral52 = il2cpp_codegen_string_literal_from_index(52);
_stringLiteral796 = il2cpp_codegen_string_literal_from_index(796);
_stringLiteral232 = il2cpp_codegen_string_literal_from_index(232);
s_Il2CppMethodIntialized = true;
}
t1_83* V_0 = {0};
{
m1_2184(__this, NULL);
int32_t L_0 = p0;
int32_t L_1 = (__this->f3);
if ((!(((uint32_t)L_0) == ((uint32_t)L_1))))
{
goto IL_0013;
}
}
{
return;
}
IL_0013:
{
bool L_2 = (__this->f7);
if (L_2)
{
goto IL_0029;
}
}
{
t1_756 * L_3 = (t1_756 *)il2cpp_codegen_object_new (t1_756_TI_var);
m1_5149(L_3, _stringLiteral795, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_3);
}
IL_0029:
{
int32_t L_4 = p0;
if ((((int32_t)L_4) < ((int32_t)0)))
{
goto IL_003c;
}
}
{
int32_t L_5 = p0;
int32_t L_6 = (__this->f4);
if ((((int32_t)L_5) >= ((int32_t)L_6)))
{
goto IL_0079;
}
}
IL_003c:
{
t1_170* L_7 = ((t1_170*)SZArrayNew(t1_170_TI_var, 4));
ArrayElementTypeCheck (L_7, _stringLiteral796);
*((t1_1 **)(t1_1 **)SZArrayLdElema(L_7, 0, sizeof(t1_1 *))) = (t1_1 *)_stringLiteral796;
t1_170* L_8 = L_7;
int32_t L_9 = p0;
int32_t L_10 = L_9;
t1_1 * L_11 = Box(t1_4_TI_var, &L_10);
ArrayElementTypeCheck (L_8, L_11);
*((t1_1 **)(t1_1 **)SZArrayLdElema(L_8, 1, sizeof(t1_1 *))) = (t1_1 *)L_11;
t1_170* L_12 = L_8;
ArrayElementTypeCheck (L_12, _stringLiteral232);
*((t1_1 **)(t1_1 **)SZArrayLdElema(L_12, 2, sizeof(t1_1 *))) = (t1_1 *)_stringLiteral232;
t1_170* L_13 = L_12;
int32_t L_14 = (__this->f3);
int32_t L_15 = L_14;
t1_1 * L_16 = Box(t1_4_TI_var, &L_15);
ArrayElementTypeCheck (L_13, L_16);
*((t1_1 **)(t1_1 **)SZArrayLdElema(L_13, 3, sizeof(t1_1 *))) = (t1_1 *)L_16;
IL2CPP_RUNTIME_CLASS_INIT(t1_18_TI_var);
t1_18* L_17 = m1_423(NULL, L_13, NULL);
t1_702 * L_18 = (t1_702 *)il2cpp_codegen_object_new (t1_702_TI_var);
m1_4575(L_18, _stringLiteral52, L_17, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_18);
}
IL_0079:
{
V_0 = (t1_83*)NULL;
int32_t L_19 = p0;
if (!L_19)
{
goto IL_009c;
}
}
{
int32_t L_20 = p0;
V_0 = ((t1_83*)SZArrayNew(t1_83_TI_var, L_20));
t1_83* L_21 = (__this->f5);
t1_83* L_22 = V_0;
int32_t L_23 = (__this->f4);
m1_4597(NULL, (t1_33 *)(t1_33 *)L_21, 0, (t1_33 *)(t1_33 *)L_22, 0, L_23, NULL);
}
IL_009c:
{
__this->f10 = 0;
t1_83* L_24 = V_0;
__this->f5 = L_24;
int32_t L_25 = p0;
__this->f3 = L_25;
return;
}
}
extern "C" int64_t m1_2189 (t1_252 * __this, const MethodInfo* method)
{
{
m1_2184(__this, NULL);
int32_t L_0 = (__this->f4);
int32_t L_1 = (__this->f6);
return (((int64_t)((int64_t)((int32_t)((int32_t)L_0-(int32_t)L_1)))));
}
}
extern "C" int64_t m1_2190 (t1_252 * __this, const MethodInfo* method)
{
{
m1_2184(__this, NULL);
int32_t L_0 = (__this->f9);
int32_t L_1 = (__this->f6);
return (((int64_t)((int64_t)((int32_t)((int32_t)L_0-(int32_t)L_1)))));
}
}
extern TypeInfo* t1_702_TI_var;
extern Il2CppCodeGenString* _stringLiteral52;
extern Il2CppCodeGenString* _stringLiteral797;
extern Il2CppCodeGenString* _stringLiteral798;
extern "C" void m1_2191 (t1_252 * __this, int64_t p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_702_TI_var = il2cpp_codegen_type_info_from_index(27);
_stringLiteral52 = il2cpp_codegen_string_literal_from_index(52);
_stringLiteral797 = il2cpp_codegen_string_literal_from_index(797);
_stringLiteral798 = il2cpp_codegen_string_literal_from_index(798);
s_Il2CppMethodIntialized = true;
}
{
m1_2184(__this, NULL);
int64_t L_0 = p0;
if ((((int64_t)L_0) >= ((int64_t)(((int64_t)((int64_t)0))))))
{
goto IL_001e;
}
}
{
t1_702 * L_1 = (t1_702 *)il2cpp_codegen_object_new (t1_702_TI_var);
m1_4575(L_1, _stringLiteral52, _stringLiteral797, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_1);
}
IL_001e:
{
int64_t L_2 = p0;
if ((((int64_t)L_2) <= ((int64_t)(((int64_t)((int64_t)((int32_t)2147483647)))))))
{
goto IL_003a;
}
}
{
t1_702 * L_3 = (t1_702 *)il2cpp_codegen_object_new (t1_702_TI_var);
m1_4575(L_3, _stringLiteral52, _stringLiteral798, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_3);
}
IL_003a:
{
int32_t L_4 = (__this->f6);
int64_t L_5 = p0;
__this->f9 = ((int32_t)((int32_t)L_4+(int32_t)(((int32_t)((int32_t)L_5)))));
return;
}
}
extern "C" void m1_2192 (t1_252 * __this, bool p0, const MethodInfo* method)
{
{
__this->f8 = 1;
__this->f7 = 0;
return;
}
}
extern "C" void m1_2193 (t1_252 * __this, const MethodInfo* method)
{
{
return;
}
}
extern TypeInfo* t1_701_TI_var;
extern TypeInfo* t1_702_TI_var;
extern TypeInfo* t1_653_TI_var;
extern Il2CppCodeGenString* _stringLiteral790;
extern Il2CppCodeGenString* _stringLiteral799;
extern Il2CppCodeGenString* _stringLiteral800;
extern Il2CppCodeGenString* _stringLiteral801;
extern "C" int32_t m1_2194 (t1_252 * __this, t1_83* p0, int32_t p1, int32_t p2, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_701_TI_var = il2cpp_codegen_type_info_from_index(2);
t1_702_TI_var = il2cpp_codegen_type_info_from_index(27);
t1_653_TI_var = il2cpp_codegen_type_info_from_index(4);
_stringLiteral790 = il2cpp_codegen_string_literal_from_index(790);
_stringLiteral799 = il2cpp_codegen_string_literal_from_index(799);
_stringLiteral800 = il2cpp_codegen_string_literal_from_index(800);
_stringLiteral801 = il2cpp_codegen_string_literal_from_index(801);
s_Il2CppMethodIntialized = true;
}
{
m1_2184(__this, NULL);
t1_83* L_0 = p0;
if (L_0)
{
goto IL_0017;
}
}
{
t1_701 * L_1 = (t1_701 *)il2cpp_codegen_object_new (t1_701_TI_var);
m1_4570(L_1, _stringLiteral790, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_1);
}
IL_0017:
{
int32_t L_2 = p1;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0025;
}
}
{
int32_t L_3 = p2;
if ((((int32_t)L_3) >= ((int32_t)0)))
{
goto IL_0030;
}
}
IL_0025:
{
t1_702 * L_4 = (t1_702 *)il2cpp_codegen_object_new (t1_702_TI_var);
m1_4574(L_4, _stringLiteral799, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_4);
}
IL_0030:
{
t1_83* L_5 = p0;
int32_t L_6 = p1;
int32_t L_7 = p2;
if ((((int32_t)((int32_t)((int32_t)(((int32_t)((int32_t)(((t1_33 *)L_5)->max_length))))-(int32_t)L_6))) >= ((int32_t)L_7)))
{
goto IL_004b;
}
}
{
t1_653 * L_8 = (t1_653 *)il2cpp_codegen_object_new (t1_653_TI_var);
m1_4563(L_8, _stringLiteral800, _stringLiteral801, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_8);
}
IL_004b:
{
int32_t L_9 = (__this->f9);
int32_t L_10 = (__this->f4);
if ((((int32_t)L_9) >= ((int32_t)L_10)))
{
goto IL_0062;
}
}
{
int32_t L_11 = p2;
if (L_11)
{
goto IL_0064;
}
}
IL_0062:
{
return 0;
}
IL_0064:
{
int32_t L_12 = (__this->f9);
int32_t L_13 = (__this->f4);
int32_t L_14 = p2;
if ((((int32_t)L_12) <= ((int32_t)((int32_t)((int32_t)L_13-(int32_t)L_14)))))
{
goto IL_0086;
}
}
{
int32_t L_15 = (__this->f4);
int32_t L_16 = (__this->f9);
p2 = ((int32_t)((int32_t)L_15-(int32_t)L_16));
}
IL_0086:
{
t1_83* L_17 = (__this->f5);
int32_t L_18 = (__this->f9);
t1_83* L_19 = p0;
int32_t L_20 = p1;
int32_t L_21 = p2;
m1_4597(NULL, (t1_33 *)(t1_33 *)L_17, L_18, (t1_33 *)(t1_33 *)L_19, L_20, L_21, NULL);
int32_t L_22 = (__this->f9);
int32_t L_23 = p2;
__this->f9 = ((int32_t)((int32_t)L_22+(int32_t)L_23));
int32_t L_24 = p2;
return L_24;
}
}
extern "C" int32_t m1_2195 (t1_252 * __this, const MethodInfo* method)
{
int32_t V_0 = 0;
{
m1_2184(__this, NULL);
int32_t L_0 = (__this->f9);
int32_t L_1 = (__this->f4);
if ((((int32_t)L_0) < ((int32_t)L_1)))
{
goto IL_0019;
}
}
{
return (-1);
}
IL_0019:
{
t1_83* L_2 = (__this->f5);
int32_t L_3 = (__this->f9);
int32_t L_4 = L_3;
V_0 = L_4;
__this->f9 = ((int32_t)((int32_t)L_4+(int32_t)1));
int32_t L_5 = V_0;
int32_t L_6 = L_5;
return (*(uint8_t*)(uint8_t*)SZArrayLdElema(L_2, L_6, sizeof(uint8_t)));
}
}
extern TypeInfo* t1_9_TI_var;
extern TypeInfo* t1_18_TI_var;
extern TypeInfo* t1_702_TI_var;
extern TypeInfo* t1_237_TI_var;
extern TypeInfo* t1_653_TI_var;
extern Il2CppCodeGenString* _stringLiteral802;
extern Il2CppCodeGenString* _stringLiteral803;
extern Il2CppCodeGenString* _stringLiteral804;
extern Il2CppCodeGenString* _stringLiteral780;
extern "C" int64_t m1_2196 (t1_252 * __this, int64_t p0, int32_t p1, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_9_TI_var = il2cpp_codegen_type_info_from_index(18);
t1_18_TI_var = il2cpp_codegen_type_info_from_index(11);
t1_702_TI_var = il2cpp_codegen_type_info_from_index(27);
t1_237_TI_var = il2cpp_codegen_type_info_from_index(218);
t1_653_TI_var = il2cpp_codegen_type_info_from_index(4);
_stringLiteral802 = il2cpp_codegen_string_literal_from_index(802);
_stringLiteral803 = il2cpp_codegen_string_literal_from_index(803);
_stringLiteral804 = il2cpp_codegen_string_literal_from_index(804);
_stringLiteral780 = il2cpp_codegen_string_literal_from_index(780);
s_Il2CppMethodIntialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = {0};
{
m1_2184(__this, NULL);
int64_t L_0 = p0;
if ((((int64_t)L_0) <= ((int64_t)(((int64_t)((int64_t)((int32_t)2147483647)))))))
{
goto IL_0028;
}
}
{
int64_t L_1 = p0;
int64_t L_2 = L_1;
t1_1 * L_3 = Box(t1_9_TI_var, &L_2);
IL2CPP_RUNTIME_CLASS_INIT(t1_18_TI_var);
t1_18* L_4 = m1_418(NULL, _stringLiteral802, L_3, NULL);
t1_702 * L_5 = (t1_702 *)il2cpp_codegen_object_new (t1_702_TI_var);
m1_4574(L_5, L_4, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_5);
}
IL_0028:
{
int32_t L_6 = p1;
V_1 = L_6;
int32_t L_7 = V_1;
if (L_7 == 0)
{
goto IL_0041;
}
if (L_7 == 1)
{
goto IL_0060;
}
if (L_7 == 2)
{
goto IL_006c;
}
}
{
goto IL_0078;
}
IL_0041:
{
int64_t L_8 = p0;
if ((((int64_t)L_8) >= ((int64_t)(((int64_t)((int64_t)0))))))
{
goto IL_0054;
}
}
{
t1_237 * L_9 = (t1_237 *)il2cpp_codegen_object_new (t1_237_TI_var);
m1_2176(L_9, _stringLiteral803, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_9);
}
IL_0054:
{
int32_t L_10 = (__this->f6);
V_0 = L_10;
goto IL_0088;
}
IL_0060:
{
int32_t L_11 = (__this->f9);
V_0 = L_11;
goto IL_0088;
}
IL_006c:
{
int32_t L_12 = (__this->f4);
V_0 = L_12;
goto IL_0088;
}
IL_0078:
{
t1_653 * L_13 = (t1_653 *)il2cpp_codegen_object_new (t1_653_TI_var);
m1_4563(L_13, _stringLiteral804, _stringLiteral780, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_13);
}
IL_0088:
{
int32_t L_14 = V_0;
int64_t L_15 = p0;
V_0 = ((int32_t)((int32_t)L_14+(int32_t)(((int32_t)((int32_t)L_15)))));
int32_t L_16 = V_0;
int32_t L_17 = (__this->f6);
if ((((int32_t)L_16) >= ((int32_t)L_17)))
{
goto IL_00a4;
}
}
{
t1_237 * L_18 = (t1_237 *)il2cpp_codegen_object_new (t1_237_TI_var);
m1_2176(L_18, _stringLiteral803, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_18);
}
IL_00a4:
{
int32_t L_19 = V_0;
__this->f9 = L_19;
int32_t L_20 = (__this->f9);
return (((int64_t)((int64_t)L_20)));
}
}
extern "C" int32_t m1_2197 (t1_252 * __this, int32_t p0, const MethodInfo* method)
{
{
int32_t L_0 = p0;
if ((((int32_t)L_0) >= ((int32_t)((int32_t)256))))
{
goto IL_0012;
}
}
{
p0 = ((int32_t)256);
}
IL_0012:
{
int32_t L_1 = p0;
int32_t L_2 = (__this->f3);
if ((((int32_t)L_1) >= ((int32_t)((int32_t)((int32_t)L_2*(int32_t)2)))))
{
goto IL_002a;
}
}
{
int32_t L_3 = (__this->f3);
p0 = ((int32_t)((int32_t)L_3*(int32_t)2));
}
IL_002a:
{
int32_t L_4 = p0;
return L_4;
}
}
extern "C" void m1_2198 (t1_252 * __this, int32_t p0, const MethodInfo* method)
{
{
int32_t L_0 = p0;
int32_t L_1 = (__this->f3);
if ((((int32_t)L_0) <= ((int32_t)L_1)))
{
goto IL_001e;
}
}
{
int32_t L_2 = p0;
int32_t L_3 = m1_2197(__this, L_2, NULL);
VirtActionInvoker1< int32_t >::Invoke(24 /* System.Void System.IO.MemoryStream::set_Capacity(System.Int32) */, __this, L_3);
goto IL_0048;
}
IL_001e:
{
int32_t L_4 = (__this->f10);
if ((((int32_t)L_4) <= ((int32_t)0)))
{
goto IL_0048;
}
}
{
t1_83* L_5 = (__this->f5);
int32_t L_6 = (__this->f4);
int32_t L_7 = (__this->f10);
m1_821(NULL, (t1_33 *)(t1_33 *)L_5, L_6, L_7, NULL);
__this->f10 = 0;
}
IL_0048:
{
return;
}
}
extern TypeInfo* t1_756_TI_var;
extern TypeInfo* t1_702_TI_var;
extern Il2CppCodeGenString* _stringLiteral805;
extern Il2CppCodeGenString* _stringLiteral806;
extern "C" void m1_2199 (t1_252 * __this, int64_t p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_756_TI_var = il2cpp_codegen_type_info_from_index(6);
t1_702_TI_var = il2cpp_codegen_type_info_from_index(27);
_stringLiteral805 = il2cpp_codegen_string_literal_from_index(805);
_stringLiteral806 = il2cpp_codegen_string_literal_from_index(806);
s_Il2CppMethodIntialized = true;
}
int32_t V_0 = 0;
{
bool L_0 = (__this->f7);
if (L_0)
{
goto IL_0023;
}
}
{
int64_t L_1 = p0;
int32_t L_2 = (__this->f3);
if ((((int64_t)L_1) <= ((int64_t)(((int64_t)((int64_t)L_2))))))
{
goto IL_0023;
}
}
{
t1_756 * L_3 = (t1_756 *)il2cpp_codegen_object_new (t1_756_TI_var);
m1_5149(L_3, _stringLiteral805, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_3);
}
IL_0023:
{
m1_2184(__this, NULL);
bool L_4 = (__this->f1);
if (L_4)
{
goto IL_0044;
}
}
{
t1_18* L_5 = m1_990(NULL, _stringLiteral806, NULL);
t1_756 * L_6 = (t1_756 *)il2cpp_codegen_object_new (t1_756_TI_var);
m1_5149(L_6, L_5, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_6);
}
IL_0044:
{
int64_t L_7 = p0;
if ((((int64_t)L_7) < ((int64_t)(((int64_t)((int64_t)0))))))
{
goto IL_0060;
}
}
{
int64_t L_8 = p0;
int32_t L_9 = (__this->f6);
if ((((int64_t)((int64_t)((int64_t)L_8+(int64_t)(((int64_t)((int64_t)L_9)))))) <= ((int64_t)(((int64_t)((int64_t)((int32_t)2147483647)))))))
{
goto IL_0066;
}
}
IL_0060:
{
t1_702 * L_10 = (t1_702 *)il2cpp_codegen_object_new (t1_702_TI_var);
m1_4573(L_10, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_10);
}
IL_0066:
{
int64_t L_11 = p0;
int32_t L_12 = (__this->f6);
V_0 = ((int32_t)((int32_t)(((int32_t)((int32_t)L_11)))+(int32_t)L_12));
int32_t L_13 = V_0;
int32_t L_14 = (__this->f4);
if ((((int32_t)L_13) <= ((int32_t)L_14)))
{
goto IL_0088;
}
}
{
int32_t L_15 = V_0;
m1_2198(__this, L_15, NULL);
goto IL_00a9;
}
IL_0088:
{
int32_t L_16 = V_0;
int32_t L_17 = (__this->f4);
if ((((int32_t)L_16) >= ((int32_t)L_17)))
{
goto IL_00a9;
}
}
{
int32_t L_18 = (__this->f10);
int32_t L_19 = (__this->f4);
int32_t L_20 = V_0;
__this->f10 = ((int32_t)((int32_t)L_18+(int32_t)((int32_t)((int32_t)L_19-(int32_t)L_20))));
}
IL_00a9:
{
int32_t L_21 = V_0;
__this->f4 = L_21;
int32_t L_22 = (__this->f9);
int32_t L_23 = (__this->f4);
if ((((int32_t)L_22) <= ((int32_t)L_23)))
{
goto IL_00cd;
}
}
{
int32_t L_24 = (__this->f4);
__this->f9 = L_24;
}
IL_00cd:
{
return;
}
}
extern TypeInfo* t1_83_TI_var;
extern "C" t1_83* m1_2200 (t1_252 * __this, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_83_TI_var = il2cpp_codegen_type_info_from_index(42);
s_Il2CppMethodIntialized = true;
}
int32_t V_0 = 0;
t1_83* V_1 = {0};
{
int32_t L_0 = (__this->f4);
int32_t L_1 = (__this->f6);
V_0 = ((int32_t)((int32_t)L_0-(int32_t)L_1));
int32_t L_2 = V_0;
V_1 = ((t1_83*)SZArrayNew(t1_83_TI_var, L_2));
t1_83* L_3 = (__this->f5);
if (!L_3)
{
goto IL_0034;
}
}
{
t1_83* L_4 = (__this->f5);
int32_t L_5 = (__this->f6);
t1_83* L_6 = V_1;
int32_t L_7 = V_0;
m1_4597(NULL, (t1_33 *)(t1_33 *)L_4, L_5, (t1_33 *)(t1_33 *)L_6, 0, L_7, NULL);
}
IL_0034:
{
t1_83* L_8 = V_1;
return L_8;
}
}
extern TypeInfo* t1_756_TI_var;
extern TypeInfo* t1_701_TI_var;
extern TypeInfo* t1_702_TI_var;
extern TypeInfo* t1_653_TI_var;
extern Il2CppCodeGenString* _stringLiteral807;
extern Il2CppCodeGenString* _stringLiteral790;
extern Il2CppCodeGenString* _stringLiteral800;
extern Il2CppCodeGenString* _stringLiteral801;
extern "C" void m1_2201 (t1_252 * __this, t1_83* p0, int32_t p1, int32_t p2, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_756_TI_var = il2cpp_codegen_type_info_from_index(6);
t1_701_TI_var = il2cpp_codegen_type_info_from_index(2);
t1_702_TI_var = il2cpp_codegen_type_info_from_index(27);
t1_653_TI_var = il2cpp_codegen_type_info_from_index(4);
_stringLiteral807 = il2cpp_codegen_string_literal_from_index(807);
_stringLiteral790 = il2cpp_codegen_string_literal_from_index(790);
_stringLiteral800 = il2cpp_codegen_string_literal_from_index(800);
_stringLiteral801 = il2cpp_codegen_string_literal_from_index(801);
s_Il2CppMethodIntialized = true;
}
{
m1_2184(__this, NULL);
bool L_0 = (__this->f1);
if (L_0)
{
goto IL_001c;
}
}
{
t1_756 * L_1 = (t1_756 *)il2cpp_codegen_object_new (t1_756_TI_var);
m1_5149(L_1, _stringLiteral807, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_1);
}
IL_001c:
{
t1_83* L_2 = p0;
if (L_2)
{
goto IL_002d;
}
}
{
t1_701 * L_3 = (t1_701 *)il2cpp_codegen_object_new (t1_701_TI_var);
m1_4570(L_3, _stringLiteral790, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_3);
}
IL_002d:
{
int32_t L_4 = p1;
if ((((int32_t)L_4) < ((int32_t)0)))
{
goto IL_003b;
}
}
{
int32_t L_5 = p2;
if ((((int32_t)L_5) >= ((int32_t)0)))
{
goto IL_0041;
}
}
IL_003b:
{
t1_702 * L_6 = (t1_702 *)il2cpp_codegen_object_new (t1_702_TI_var);
m1_4573(L_6, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_6);
}
IL_0041:
{
t1_83* L_7 = p0;
int32_t L_8 = p1;
int32_t L_9 = p2;
if ((((int32_t)((int32_t)((int32_t)(((int32_t)((int32_t)(((t1_33 *)L_7)->max_length))))-(int32_t)L_8))) >= ((int32_t)L_9)))
{
goto IL_005c;
}
}
{
t1_653 * L_10 = (t1_653 *)il2cpp_codegen_object_new (t1_653_TI_var);
m1_4563(L_10, _stringLiteral800, _stringLiteral801, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_10);
}
IL_005c:
{
int32_t L_11 = (__this->f9);
int32_t L_12 = (__this->f4);
int32_t L_13 = p2;
if ((((int32_t)L_11) <= ((int32_t)((int32_t)((int32_t)L_12-(int32_t)L_13)))))
{
goto IL_007d;
}
}
{
int32_t L_14 = (__this->f9);
int32_t L_15 = p2;
m1_2198(__this, ((int32_t)((int32_t)L_14+(int32_t)L_15)), NULL);
}
IL_007d:
{
t1_83* L_16 = p0;
int32_t L_17 = p1;
t1_83* L_18 = (__this->f5);
int32_t L_19 = (__this->f9);
int32_t L_20 = p2;
m1_4597(NULL, (t1_33 *)(t1_33 *)L_16, L_17, (t1_33 *)(t1_33 *)L_18, L_19, L_20, NULL);
int32_t L_21 = (__this->f9);
int32_t L_22 = p2;
__this->f9 = ((int32_t)((int32_t)L_21+(int32_t)L_22));
int32_t L_23 = (__this->f9);
int32_t L_24 = (__this->f4);
if ((((int32_t)L_23) < ((int32_t)L_24)))
{
goto IL_00bc;
}
}
{
int32_t L_25 = (__this->f9);
__this->f4 = L_25;
}
IL_00bc:
{
return;
}
}
extern TypeInfo* t1_756_TI_var;
extern Il2CppCodeGenString* _stringLiteral807;
extern "C" void m1_2202 (t1_252 * __this, uint8_t p0, const MethodInfo* method)
{
static bool s_Il2CppMethodIntialized;
if (!s_Il2CppMethodIntialized)
{
t1_756_TI_var = il2cpp_codegen_type_info_from_index(6);
_stringLiteral807 = il2cpp_codegen_string_literal_from_index(807);
s_Il2CppMethodIntialized = true;
}
int32_t V_0 = 0;
{
m1_2184(__this, NULL);
bool L_0 = (__this->f1);
if (L_0)
{
goto IL_001c;
}
}
{
t1_756 * L_1 = (t1_756 *)il2cpp_codegen_object_new (t1_756_TI_var);
m1_5149(L_1, _stringLiteral807, NULL);
il2cpp_codegen_raise_exception((Il2CppCodeGenException*)L_1);
}
IL_001c:
{
int32_t L_2 = (__this->f9);
int32_t L_3 = (__this->f4);
if ((((int32_t)L_2) < ((int32_t)L_3)))
{
goto IL_0049;
}
}
{
int32_t L_4 = (__this->f9);
m1_2198(__this, ((int32_t)((int32_t)L_4+(int32_t)1)), NULL);
int32_t L_5 = (__this->f9);
__this->f4 = ((int32_t)((int32_t)L_5+(int32_t)1));
}
IL_0049:
{
t1_83* L_6 = (__this->f5);
int32_t L_7 = (__this->f9);
int32_t L_8 = L_7;
V_0 = L_8;
__this->f9 = ((int32_t)((int32_t)L_8+(int32_t)1));
int32_t L_9 = V_0;
uint8_t L_10 = p0;
*((uint8_t*)(uint8_t*)SZArrayLdElema(L_6, L_9, sizeof(uint8_t))) = (uint8_t)L_10;
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
| [
"tatewaki_kuno2@yahoo.com"
] | tatewaki_kuno2@yahoo.com |
e421ea59c2b389b966a2742f50710bb587893d72 | be97168ef734e4283209d908f6b82ea29ec8ea7e | /include/Part2.h | ad836dfcfa69b66ebd6bdbadc4dac52e3312321c | [] | no_license | trinhgiahuy/ESP32-FreeRTOS-Tutorial | 0a27b56c4b7e53bed522dfd520c58baef3f20e39 | 4684e8deb1f82a3dd1142565ffe21a4bba2c3cff | refs/heads/master | 2023-06-06T08:22:53.518165 | 2021-06-30T04:30:04 | 2021-06-30T04:30:04 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 147 | h | #include "config.h"
namespace Part2 {
void toggleLED(void* param);
void toggleLED2(void* param);
void setup();
void loop();
} // namespace Part2
| [
"neilbalch@gmail.com"
] | neilbalch@gmail.com |
9f8a78072ce54736ad45a3f409f196aa4fad2766 | 2e3cb16a7062ded957d6bb4e32c61b3088993f89 | /Lens-Immersive Poker Test Dorani/Card.h | 189a49ea1d373c1101c82b88a40d0e8af145a1f9 | [
"MIT"
] | permissive | shuaibd19/Lens-Immersive-Poker-Test-Dorani | 989604c94248fcc2dc47b4d8815c91fc58904720 | 0664b1285bda694e3b0ec89e412b0e90c6d7b30b | refs/heads/main | 2023-01-02T13:20:44.297701 | 2020-10-19T02:57:01 | 2020-10-19T02:57:01 | 305,081,827 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 868 | h | #pragma once
#include <iostream> //cout
#include <string> //compare
using namespace std;
class Card
{
public:
Card(string suit, string value);
Card();
~Card();
//return the card
string getCard();
//set the value of the card
void setCard(string suit, string value);
/// <summary>
/// returns value of card
/// </summary>
/// <returns>int</returns>
int getNumericValue();
/// <summary>
/// returns suit of card
/// </summary>
/// <returns></returns>
char getSuitValue();
private:
//The card should have a value and type
string cardSuit;
string cardValue;
//numeric value
int _cValue;
//char suit
char _cSuit;
/// <summary>
/// checks value of card
/// </summary>
/// <returns>int</returns>
int checkValueOfCard();
/// <summary>
/// checks suit of the card
/// </summary>
/// <returns>char</returns>
char checkSuitOfCard();
};
| [
"Ahmad.Dorani@mds.torrens.edu.au"
] | Ahmad.Dorani@mds.torrens.edu.au |
b40973edb39dfcd9e6e9caccd958ac5e84eea0cb | 367d2670c75d385d122bca60b9f550ca5b3888c1 | /gem5/src/cpu/o3/lsq_unit.hh | 3d6e3f0c2f2359d1f4721a92e8fc4cb624705c5a | [
"BSD-3-Clause",
"LicenseRef-scancode-proprietary-license",
"LGPL-2.0-or-later",
"MIT"
] | permissive | Anish-Saxena/aqua_rowhammer_mitigation | 4f060037d50fb17707338a6edcaa0ac33c39d559 | 3fef5b6aa80c006a4bd6ed4bedd726016142a81c | refs/heads/main | 2023-04-13T05:35:20.872581 | 2023-01-05T21:10:39 | 2023-01-05T21:10:39 | 519,395,072 | 4 | 3 | Unlicense | 2023-01-05T21:10:40 | 2022-07-30T02:03:02 | C++ | UTF-8 | C++ | false | false | 35,676 | hh | /*
* Copyright (c) 2012-2014,2017-2018,2020 ARM Limited
* All rights reserved
*
* The license below extends only to copyright in the software and shall
* not be construed as granting a license to any other intellectual
* property including but not limited to intellectual property relating
* to a hardware implementation of the functionality of the software
* licensed hereunder. You may use the software subject to the license
* terms below provided that you ensure that this notice is replicated
* unmodified and in its entirety in all distributions of the software,
* modified or unmodified, in source code or in binary form.
*
* Copyright (c) 2004-2006 The Regents of The University of Michigan
* Copyright (c) 2013 Advanced Micro Devices, Inc.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met: redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer;
* redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution;
* neither the name of the copyright holders nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef __CPU_O3_LSQ_UNIT_HH__
#define __CPU_O3_LSQ_UNIT_HH__
#include <algorithm>
#include <cstring>
#include <map>
#include <memory>
#include <queue>
#include "arch/generic/debugfaults.hh"
#include "arch/generic/vec_reg.hh"
#include "arch/locked_mem.hh"
#include "config/the_isa.hh"
#include "cpu/inst_seq.hh"
#include "cpu/timebuf.hh"
#include "debug/HtmCpu.hh"
#include "debug/LSQUnit.hh"
#include "mem/packet.hh"
#include "mem/port.hh"
struct DerivO3CPUParams;
#include "base/circular_queue.hh"
/**
* Class that implements the actual LQ and SQ for each specific
* thread. Both are circular queues; load entries are freed upon
* committing, while store entries are freed once they writeback. The
* LSQUnit tracks if there are memory ordering violations, and also
* detects partial load to store forwarding cases (a store only has
* part of a load's data) that requires the load to wait until the
* store writes back. In the former case it holds onto the instruction
* until the dependence unit looks at it, and in the latter it stalls
* the LSQ until the store writes back. At that point the load is
* replayed.
*/
template <class Impl>
class LSQUnit
{
public:
static constexpr auto MaxDataBytes = MaxVecRegLenInBytes;
typedef typename Impl::O3CPU O3CPU;
typedef typename Impl::DynInstPtr DynInstPtr;
typedef typename Impl::CPUPol::IEW IEW;
typedef typename Impl::CPUPol::LSQ LSQ;
typedef typename Impl::CPUPol::IssueStruct IssueStruct;
using LSQSenderState = typename LSQ::LSQSenderState;
using LSQRequest = typename Impl::CPUPol::LSQ::LSQRequest;
private:
class LSQEntry
{
private:
/** The instruction. */
DynInstPtr inst;
/** The request. */
LSQRequest* req;
/** The size of the operation. */
uint32_t _size;
/** Valid entry. */
bool _valid;
public:
/** Constructs an empty store queue entry. */
LSQEntry()
: inst(nullptr), req(nullptr), _size(0), _valid(false)
{
}
~LSQEntry()
{
inst = nullptr;
if (req != nullptr) {
req->freeLSQEntry();
req = nullptr;
}
}
void
clear()
{
inst = nullptr;
if (req != nullptr) {
req->freeLSQEntry();
}
req = nullptr;
_valid = false;
_size = 0;
}
void
set(const DynInstPtr& inst)
{
assert(!_valid);
this->inst = inst;
_valid = true;
_size = 0;
}
LSQRequest* request() { return req; }
void setRequest(LSQRequest* r) { req = r; }
bool hasRequest() { return req != nullptr; }
/** Member accessors. */
/** @{ */
bool valid() const { return _valid; }
uint32_t& size() { return _size; }
const uint32_t& size() const { return _size; }
const DynInstPtr& instruction() const { return inst; }
/** @} */
};
class SQEntry : public LSQEntry
{
private:
/** The store data. */
char _data[MaxDataBytes];
/** Whether or not the store can writeback. */
bool _canWB;
/** Whether or not the store is committed. */
bool _committed;
/** Whether or not the store is completed. */
bool _completed;
/** Does this request write all zeros and thus doesn't
* have any data attached to it. Used for cache block zero
* style instructs (ARM DC ZVA; ALPHA WH64)
*/
bool _isAllZeros;
public:
static constexpr size_t DataSize = sizeof(_data);
/** Constructs an empty store queue entry. */
SQEntry()
: _canWB(false), _committed(false), _completed(false),
_isAllZeros(false)
{
std::memset(_data, 0, DataSize);
}
~SQEntry()
{
}
void
set(const DynInstPtr& inst)
{
LSQEntry::set(inst);
}
void
clear()
{
LSQEntry::clear();
_canWB = _completed = _committed = _isAllZeros = false;
}
/** Member accessors. */
/** @{ */
bool& canWB() { return _canWB; }
const bool& canWB() const { return _canWB; }
bool& completed() { return _completed; }
const bool& completed() const { return _completed; }
bool& committed() { return _committed; }
const bool& committed() const { return _committed; }
bool& isAllZeros() { return _isAllZeros; }
const bool& isAllZeros() const { return _isAllZeros; }
char* data() { return _data; }
const char* data() const { return _data; }
/** @} */
};
using LQEntry = LSQEntry;
/** Coverage of one address range with another */
enum class AddrRangeCoverage
{
PartialAddrRangeCoverage, /* Two ranges partly overlap */
FullAddrRangeCoverage, /* One range fully covers another */
NoAddrRangeCoverage /* Two ranges are disjoint */
};
public:
using LoadQueue = CircularQueue<LQEntry>;
using StoreQueue = CircularQueue<SQEntry>;
public:
/** Constructs an LSQ unit. init() must be called prior to use. */
LSQUnit(uint32_t lqEntries, uint32_t sqEntries);
/** We cannot copy LSQUnit because it has stats for which copy
* contructor is deleted explicitly. However, STL vector requires
* a valid copy constructor for the base type at compile time.
*/
LSQUnit(const LSQUnit &l): stats(nullptr)
{
panic("LSQUnit is not copy-able");
}
/** Initializes the LSQ unit with the specified number of entries. */
void init(O3CPU *cpu_ptr, IEW *iew_ptr, DerivO3CPUParams *params,
LSQ *lsq_ptr, unsigned id);
/** Returns the name of the LSQ unit. */
std::string name() const;
/** Sets the pointer to the dcache port. */
void setDcachePort(RequestPort *dcache_port);
/** Perform sanity checks after a drain. */
void drainSanityCheck() const;
/** Takes over from another CPU's thread. */
void takeOverFrom();
/** Inserts an instruction. */
void insert(const DynInstPtr &inst);
/** Inserts a load instruction. */
void insertLoad(const DynInstPtr &load_inst);
/** Inserts a store instruction. */
void insertStore(const DynInstPtr &store_inst);
/** Check for ordering violations in the LSQ. For a store squash if we
* ever find a conflicting load. For a load, only squash if we
* an external snoop invalidate has been seen for that load address
* @param load_idx index to start checking at
* @param inst the instruction to check
*/
Fault checkViolations(typename LoadQueue::iterator& loadIt,
const DynInstPtr& inst);
/** Check if an incoming invalidate hits in the lsq on a load
* that might have issued out of order wrt another load beacuse
* of the intermediate invalidate.
*/
void checkSnoop(PacketPtr pkt);
/** Executes a load instruction. */
Fault executeLoad(const DynInstPtr &inst);
Fault executeLoad(int lq_idx) { panic("Not implemented"); return NoFault; }
/** Executes a store instruction. */
Fault executeStore(const DynInstPtr &inst);
/** Commits the head load. */
void commitLoad();
/** Commits loads older than a specific sequence number. */
void commitLoads(InstSeqNum &youngest_inst);
/** Commits stores older than a specific sequence number. */
void commitStores(InstSeqNum &youngest_inst);
/** Writes back stores. */
void writebackStores();
/** Completes the data access that has been returned from the
* memory system. */
void completeDataAccess(PacketPtr pkt);
/** Squashes all instructions younger than a specific sequence number. */
void squash(const InstSeqNum &squashed_num);
/** Returns if there is a memory ordering violation. Value is reset upon
* call to getMemDepViolator().
*/
bool violation() { return memDepViolator; }
/** Returns the memory ordering violator. */
DynInstPtr getMemDepViolator();
/** Returns the number of free LQ entries. */
unsigned numFreeLoadEntries();
/** Returns the number of free SQ entries. */
unsigned numFreeStoreEntries();
/** Returns the number of loads in the LQ. */
int numLoads() { return loads; }
/** Returns the number of stores in the SQ. */
int numStores() { return stores; }
// hardware transactional memory
int numHtmStarts() const { return htmStarts; }
int numHtmStops() const { return htmStops; }
void resetHtmStartsStops() { htmStarts = htmStops = 0; }
uint64_t getLatestHtmUid() const
{
const auto& htm_cpt = cpu->tcBase(lsqID)->getHtmCheckpointPtr();
return htm_cpt->getHtmUid();
}
void setLastRetiredHtmUid(uint64_t htm_uid)
{
assert(htm_uid >= lastRetiredHtmUid);
lastRetiredHtmUid = htm_uid;
}
/** Returns if either the LQ or SQ is full. */
bool isFull() { return lqFull() || sqFull(); }
/** Returns if both the LQ and SQ are empty. */
bool isEmpty() const { return lqEmpty() && sqEmpty(); }
/** Returns if the LQ is full. */
bool lqFull() { return loadQueue.full(); }
/** Returns if the SQ is full. */
bool sqFull() { return storeQueue.full(); }
/** Returns if the LQ is empty. */
bool lqEmpty() const { return loads == 0; }
/** Returns if the SQ is empty. */
bool sqEmpty() const { return stores == 0; }
/** Returns the number of instructions in the LSQ. */
unsigned getCount() { return loads + stores; }
/** Returns if there are any stores to writeback. */
bool hasStoresToWB() { return storesToWB; }
/** Returns the number of stores to writeback. */
int numStoresToWB() { return storesToWB; }
/** Returns if the LSQ unit will writeback on this cycle. */
bool
willWB()
{
return storeWBIt.dereferenceable() &&
storeWBIt->valid() &&
storeWBIt->canWB() &&
!storeWBIt->completed() &&
!isStoreBlocked;
}
/** Handles doing the retry. */
void recvRetry();
unsigned int cacheLineSize();
private:
/** Reset the LSQ state */
void resetState();
/** Writes back the instruction, sending it to IEW. */
void writeback(const DynInstPtr &inst, PacketPtr pkt);
/** Try to finish a previously blocked write back attempt */
void writebackBlockedStore();
/** Completes the store at the specified index. */
void completeStore(typename StoreQueue::iterator store_idx);
/** Handles completing the send of a store to memory. */
void storePostSend();
public:
/** Attempts to send a packet to the cache.
* Check if there are ports available. Return true if
* there are, false if there are not.
*/
bool trySendPacket(bool isLoad, PacketPtr data_pkt);
/** Debugging function to dump instructions in the LSQ. */
void dumpInsts() const;
/** Schedule event for the cpu. */
void schedule(Event& ev, Tick when) { cpu->schedule(ev, when); }
BaseTLB* dTLB() { return cpu->dtb; }
private:
/** Pointer to the CPU. */
O3CPU *cpu;
/** Pointer to the IEW stage. */
IEW *iewStage;
/** Pointer to the LSQ. */
LSQ *lsq;
/** Pointer to the dcache port. Used only for sending. */
RequestPort *dcachePort;
/** Particularisation of the LSQSenderState to the LQ. */
class LQSenderState : public LSQSenderState
{
using LSQSenderState::alive;
public:
LQSenderState(typename LoadQueue::iterator idx_)
: LSQSenderState(idx_->request(), true), idx(idx_) { }
/** The LQ index of the instruction. */
typename LoadQueue::iterator idx;
//virtual LSQRequest* request() { return idx->request(); }
virtual void
complete()
{
//if (alive())
// idx->request()->senderState(nullptr);
}
};
/** Particularisation of the LSQSenderState to the SQ. */
class SQSenderState : public LSQSenderState
{
using LSQSenderState::alive;
public:
SQSenderState(typename StoreQueue::iterator idx_)
: LSQSenderState(idx_->request(), false), idx(idx_) { }
/** The SQ index of the instruction. */
typename StoreQueue::iterator idx;
//virtual LSQRequest* request() { return idx->request(); }
virtual void
complete()
{
//if (alive())
// idx->request()->senderState(nullptr);
}
};
/** Writeback event, specifically for when stores forward data to loads. */
class WritebackEvent : public Event
{
public:
/** Constructs a writeback event. */
WritebackEvent(const DynInstPtr &_inst, PacketPtr pkt,
LSQUnit *lsq_ptr);
/** Processes the writeback event. */
void process();
/** Returns the description of this event. */
const char *description() const;
private:
/** Instruction whose results are being written back. */
DynInstPtr inst;
/** The packet that would have been sent to memory. */
PacketPtr pkt;
/** The pointer to the LSQ unit that issued the store. */
LSQUnit<Impl> *lsqPtr;
};
public:
/**
* Handles writing back and completing the load or store that has
* returned from memory.
*
* @param pkt Response packet from the memory sub-system
*/
bool recvTimingResp(PacketPtr pkt);
private:
/** The LSQUnit thread id. */
ThreadID lsqID;
public:
/** The store queue. */
CircularQueue<SQEntry> storeQueue;
/** The load queue. */
LoadQueue loadQueue;
private:
/** The number of places to shift addresses in the LSQ before checking
* for dependency violations
*/
unsigned depCheckShift;
/** Should loads be checked for dependency issues */
bool checkLoads;
/** The number of load instructions in the LQ. */
int loads;
/** The number of store instructions in the SQ. */
int stores;
/** The number of store instructions in the SQ waiting to writeback. */
int storesToWB;
// hardware transactional memory
// nesting depth
int htmStarts;
int htmStops;
// sanity checks and debugging
uint64_t lastRetiredHtmUid;
/** The index of the first instruction that may be ready to be
* written back, and has not yet been written back.
*/
typename StoreQueue::iterator storeWBIt;
/** Address Mask for a cache block (e.g. ~(cache_block_size-1)) */
Addr cacheBlockMask;
/** Wire to read information from the issue stage time queue. */
typename TimeBuffer<IssueStruct>::wire fromIssue;
/** Whether or not the LSQ is stalled. */
bool stalled;
/** The store that causes the stall due to partial store to load
* forwarding.
*/
InstSeqNum stallingStoreIsn;
/** The index of the above store. */
int stallingLoadIdx;
/** The packet that needs to be retried. */
PacketPtr retryPkt;
/** Whehter or not a store is blocked due to the memory system. */
bool isStoreBlocked;
/** Whether or not a store is in flight. */
bool storeInFlight;
/** The oldest load that caused a memory ordering violation. */
DynInstPtr memDepViolator;
/** Whether or not there is a packet that couldn't be sent because of
* a lack of cache ports. */
bool hasPendingRequest;
/** The packet that is pending free cache ports. */
LSQRequest* pendingRequest;
/** Flag for memory model. */
bool needsTSO;
protected:
// Will also need how many read/write ports the Dcache has. Or keep track
// of that in stage that is one level up, and only call executeLoad/Store
// the appropriate number of times.
struct LSQUnitStats : public Stats::Group{
LSQUnitStats(Stats::Group *parent);
/** Total number of loads forwaded from LSQ stores. */
Stats::Scalar forwLoads;
/** Total number of squashed loads. */
Stats::Scalar squashedLoads;
/** Total number of responses from the memory system that are
* ignored due to the instruction already being squashed. */
Stats::Scalar ignoredResponses;
/** Tota number of memory ordering violations. */
Stats::Scalar memOrderViolation;
/** Total number of squashed stores. */
Stats::Scalar squashedStores;
/** Number of loads that were rescheduled. */
Stats::Scalar rescheduledLoads;
/** Number of times the LSQ is blocked due to the cache. */
Stats::Scalar blockedByCache;
} stats;
public:
/** Executes the load at the given index. */
Fault read(LSQRequest *req, int load_idx);
/** Executes the store at the given index. */
Fault write(LSQRequest *req, uint8_t *data, int store_idx);
/** Returns the index of the head load instruction. */
int getLoadHead() { return loadQueue.head(); }
/** Returns the sequence number of the head load instruction. */
InstSeqNum
getLoadHeadSeqNum()
{
return loadQueue.front().valid()
? loadQueue.front().instruction()->seqNum
: 0;
}
/** Returns the index of the head store instruction. */
int getStoreHead() { return storeQueue.head(); }
/** Returns the sequence number of the head store instruction. */
InstSeqNum
getStoreHeadSeqNum()
{
return storeQueue.front().valid()
? storeQueue.front().instruction()->seqNum
: 0;
}
/** Returns whether or not the LSQ unit is stalled. */
bool isStalled() { return stalled; }
public:
typedef typename CircularQueue<LQEntry>::iterator LQIterator;
typedef typename CircularQueue<SQEntry>::iterator SQIterator;
typedef CircularQueue<LQEntry> LQueue;
typedef CircularQueue<SQEntry> SQueue;
};
template <class Impl>
Fault
LSQUnit<Impl>::read(LSQRequest *req, int load_idx)
{
LQEntry& load_req = loadQueue[load_idx];
const DynInstPtr& load_inst = load_req.instruction();
load_req.setRequest(req);
assert(load_inst);
assert(!load_inst->isExecuted());
// Make sure this isn't a strictly ordered load
// A bit of a hackish way to get strictly ordered accesses to work
// only if they're at the head of the LSQ and are ready to commit
// (at the head of the ROB too).
if (req->mainRequest()->isStrictlyOrdered() &&
(load_idx != loadQueue.head() || !load_inst->isAtCommit())) {
// Tell IQ/mem dep unit that this instruction will need to be
// rescheduled eventually
iewStage->rescheduleMemInst(load_inst);
load_inst->clearIssued();
load_inst->effAddrValid(false);
++stats.rescheduledLoads;
DPRINTF(LSQUnit, "Strictly ordered load [sn:%lli] PC %s\n",
load_inst->seqNum, load_inst->pcState());
// Must delete request now that it wasn't handed off to
// memory. This is quite ugly. @todo: Figure out the proper
// place to really handle request deletes.
load_req.setRequest(nullptr);
req->discard();
return std::make_shared<GenericISA::M5PanicFault>(
"Strictly ordered load [sn:%llx] PC %s\n",
load_inst->seqNum, load_inst->pcState());
}
DPRINTF(LSQUnit, "Read called, load idx: %i, store idx: %i, "
"storeHead: %i addr: %#x%s\n",
load_idx - 1, load_inst->sqIt._idx, storeQueue.head() - 1,
req->mainRequest()->getPaddr(), req->isSplit() ? " split" : "");
if (req->mainRequest()->isLLSC()) {
// Disable recording the result temporarily. Writing to misc
// regs normally updates the result, but this is not the
// desired behavior when handling store conditionals.
load_inst->recordResult(false);
TheISA::handleLockedRead(load_inst.get(), req->mainRequest());
load_inst->recordResult(true);
}
if (req->mainRequest()->isLocalAccess()) {
assert(!load_inst->memData);
assert(!load_inst->inHtmTransactionalState());
load_inst->memData = new uint8_t[MaxDataBytes];
ThreadContext *thread = cpu->tcBase(lsqID);
PacketPtr main_pkt = new Packet(req->mainRequest(), MemCmd::ReadReq);
main_pkt->dataStatic(load_inst->memData);
Cycles delay = req->mainRequest()->localAccessor(thread, main_pkt);
WritebackEvent *wb = new WritebackEvent(load_inst, main_pkt, this);
cpu->schedule(wb, cpu->clockEdge(delay));
return NoFault;
}
// hardware transactional memory
if (req->mainRequest()->isHTMStart() || req->mainRequest()->isHTMCommit())
{
// don't want to send nested transactionStarts and
// transactionStops outside of core, e.g. to Ruby
if (req->mainRequest()->getFlags().isSet(Request::NO_ACCESS)) {
Cycles delay(0);
PacketPtr data_pkt =
new Packet(req->mainRequest(), MemCmd::ReadReq);
// Allocate memory if this is the first time a load is issued.
if (!load_inst->memData) {
load_inst->memData =
new uint8_t[req->mainRequest()->getSize()];
// sanity checks espect zero in request's data
memset(load_inst->memData, 0, req->mainRequest()->getSize());
}
data_pkt->dataStatic(load_inst->memData);
if (load_inst->inHtmTransactionalState()) {
data_pkt->setHtmTransactional(
load_inst->getHtmTransactionUid());
}
data_pkt->makeResponse();
WritebackEvent *wb = new WritebackEvent(load_inst, data_pkt, this);
cpu->schedule(wb, cpu->clockEdge(delay));
return NoFault;
}
}
// Check the SQ for any previous stores that might lead to forwarding
auto store_it = load_inst->sqIt;
assert (store_it >= storeWBIt);
// End once we've reached the top of the LSQ
while (store_it != storeWBIt) {
// Move the index to one younger
store_it--;
assert(store_it->valid());
assert(store_it->instruction()->seqNum < load_inst->seqNum);
int store_size = store_it->size();
// Cache maintenance instructions go down via the store
// path but they carry no data and they shouldn't be
// considered for forwarding
if (store_size != 0 && !store_it->instruction()->strictlyOrdered() &&
!(store_it->request()->mainRequest() &&
store_it->request()->mainRequest()->isCacheMaintenance())) {
assert(store_it->instruction()->effAddrValid());
// Check if the store data is within the lower and upper bounds of
// addresses that the request needs.
auto req_s = req->mainRequest()->getVaddr();
auto req_e = req_s + req->mainRequest()->getSize();
auto st_s = store_it->instruction()->effAddr;
auto st_e = st_s + store_size;
bool store_has_lower_limit = req_s >= st_s;
bool store_has_upper_limit = req_e <= st_e;
bool lower_load_has_store_part = req_s < st_e;
bool upper_load_has_store_part = req_e > st_s;
auto coverage = AddrRangeCoverage::NoAddrRangeCoverage;
// If the store entry is not atomic (atomic does not have valid
// data), the store has all of the data needed, and
// the load is not LLSC, then
// we can forward data from the store to the load
if (!store_it->instruction()->isAtomic() &&
store_has_lower_limit && store_has_upper_limit &&
!req->mainRequest()->isLLSC()) {
const auto& store_req = store_it->request()->mainRequest();
coverage = store_req->isMasked() ?
AddrRangeCoverage::PartialAddrRangeCoverage :
AddrRangeCoverage::FullAddrRangeCoverage;
} else if (
// This is the partial store-load forwarding case where a store
// has only part of the load's data and the load isn't LLSC
(!req->mainRequest()->isLLSC() &&
((store_has_lower_limit && lower_load_has_store_part) ||
(store_has_upper_limit && upper_load_has_store_part) ||
(lower_load_has_store_part && upper_load_has_store_part))) ||
// The load is LLSC, and the store has all or part of the
// load's data
(req->mainRequest()->isLLSC() &&
((store_has_lower_limit || upper_load_has_store_part) &&
(store_has_upper_limit || lower_load_has_store_part))) ||
// The store entry is atomic and has all or part of the load's
// data
(store_it->instruction()->isAtomic() &&
((store_has_lower_limit || upper_load_has_store_part) &&
(store_has_upper_limit || lower_load_has_store_part)))) {
coverage = AddrRangeCoverage::PartialAddrRangeCoverage;
}
if (coverage == AddrRangeCoverage::FullAddrRangeCoverage) {
// Get shift amount for offset into the store's data.
int shift_amt = req->mainRequest()->getVaddr() -
store_it->instruction()->effAddr;
// Allocate memory if this is the first time a load is issued.
if (!load_inst->memData) {
load_inst->memData =
new uint8_t[req->mainRequest()->getSize()];
}
if (store_it->isAllZeros())
memset(load_inst->memData, 0,
req->mainRequest()->getSize());
else
memcpy(load_inst->memData,
store_it->data() + shift_amt,
req->mainRequest()->getSize());
DPRINTF(LSQUnit, "Forwarding from store idx %i to load to "
"addr %#x\n", store_it._idx,
req->mainRequest()->getVaddr());
PacketPtr data_pkt = new Packet(req->mainRequest(),
MemCmd::ReadReq);
data_pkt->dataStatic(load_inst->memData);
// hardware transactional memory
// Store to load forwarding within a transaction
// This should be okay because the store will be sent to
// the memory subsystem and subsequently get added to the
// write set of the transaction. The write set has a stronger
// property than the read set, so the load doesn't necessarily
// have to be there.
assert(!req->mainRequest()->isHTMCmd());
if (load_inst->inHtmTransactionalState()) {
assert (!storeQueue[store_it._idx].completed());
assert (
storeQueue[store_it._idx].instruction()->
inHtmTransactionalState());
assert (
load_inst->getHtmTransactionUid() ==
storeQueue[store_it._idx].instruction()->
getHtmTransactionUid());
data_pkt->setHtmTransactional(
load_inst->getHtmTransactionUid());
DPRINTF(HtmCpu, "HTM LD (ST2LDF) "
"pc=0x%lx - vaddr=0x%lx - "
"paddr=0x%lx - htmUid=%u\n",
load_inst->instAddr(),
data_pkt->req->hasVaddr() ?
data_pkt->req->getVaddr() : 0lu,
data_pkt->getAddr(),
load_inst->getHtmTransactionUid());
}
if (req->isAnyOutstandingRequest()) {
assert(req->_numOutstandingPackets > 0);
// There are memory requests packets in flight already.
// This may happen if the store was not complete the
// first time this load got executed. Signal the senderSate
// that response packets should be discarded.
req->discardSenderState();
}
WritebackEvent *wb = new WritebackEvent(load_inst, data_pkt,
this);
// We'll say this has a 1 cycle load-store forwarding latency
// for now.
// @todo: Need to make this a parameter.
cpu->schedule(wb, curTick());
// Don't need to do anything special for split loads.
++stats.forwLoads;
return NoFault;
} else if (coverage == AddrRangeCoverage::PartialAddrRangeCoverage) {
// If it's already been written back, then don't worry about
// stalling on it.
if (store_it->completed()) {
panic("Should not check one of these");
continue;
}
// Must stall load and force it to retry, so long as it's the
// oldest load that needs to do so.
if (!stalled ||
(stalled &&
load_inst->seqNum <
loadQueue[stallingLoadIdx].instruction()->seqNum)) {
stalled = true;
stallingStoreIsn = store_it->instruction()->seqNum;
stallingLoadIdx = load_idx;
}
// Tell IQ/mem dep unit that this instruction will need to be
// rescheduled eventually
iewStage->rescheduleMemInst(load_inst);
load_inst->clearIssued();
load_inst->effAddrValid(false);
++stats.rescheduledLoads;
// Do not generate a writeback event as this instruction is not
// complete.
DPRINTF(LSQUnit, "Load-store forwarding mis-match. "
"Store idx %i to load addr %#x\n",
store_it._idx, req->mainRequest()->getVaddr());
// Must discard the request.
req->discard();
load_req.setRequest(nullptr);
return NoFault;
}
}
}
// If there's no forwarding case, then go access memory
DPRINTF(LSQUnit, "Doing memory access for inst [sn:%lli] PC %s\n",
load_inst->seqNum, load_inst->pcState());
// Allocate memory if this is the first time a load is issued.
if (!load_inst->memData) {
load_inst->memData = new uint8_t[req->mainRequest()->getSize()];
}
// hardware transactional memory
if (req->mainRequest()->isHTMCmd()) {
// this is a simple sanity check
// the Ruby cache controller will set
// memData to 0x0ul if successful.
*load_inst->memData = (uint64_t) 0x1ull;
}
// For now, load throughput is constrained by the number of
// load FUs only, and loads do not consume a cache port (only
// stores do).
// @todo We should account for cache port contention
// and arbitrate between loads and stores.
// if we the cache is not blocked, do cache access
if (req->senderState() == nullptr) {
LQSenderState *state = new LQSenderState(
loadQueue.getIterator(load_idx));
state->isLoad = true;
state->inst = load_inst;
state->isSplit = req->isSplit();
req->senderState(state);
}
req->buildPackets();
req->sendPacketToCache();
if (!req->isSent())
iewStage->blockMemInst(load_inst);
return NoFault;
}
template <class Impl>
Fault
LSQUnit<Impl>::write(LSQRequest *req, uint8_t *data, int store_idx)
{
assert(storeQueue[store_idx].valid());
DPRINTF(LSQUnit, "Doing write to store idx %i, addr %#x | storeHead:%i "
"[sn:%llu]\n",
store_idx - 1, req->request()->getPaddr(), storeQueue.head() - 1,
storeQueue[store_idx].instruction()->seqNum);
storeQueue[store_idx].setRequest(req);
unsigned size = req->_size;
storeQueue[store_idx].size() = size;
bool store_no_data =
req->mainRequest()->getFlags() & Request::STORE_NO_DATA;
storeQueue[store_idx].isAllZeros() = store_no_data;
assert(size <= SQEntry::DataSize || store_no_data);
// copy data into the storeQueue only if the store request has valid data
if (!(req->request()->getFlags() & Request::CACHE_BLOCK_ZERO) &&
!req->request()->isCacheMaintenance() &&
!req->request()->isAtomic())
memcpy(storeQueue[store_idx].data(), data, size);
// This function only writes the data to the store queue, so no fault
// can happen here.
return NoFault;
}
#endif // __CPU_O3_LSQ_UNIT_HH__
| [
"asaxena317@krishna-srv4.ece.gatech.edu"
] | asaxena317@krishna-srv4.ece.gatech.edu |
8bfd860417b110f1532018d4d32d2c8f866406d5 | 988c484d1242084bf49c5b104d873a33d76825b9 | /A/1070/main_0.cpp | 0c93d78258eaa9bac5961551fa09e3ffacedd7df | [] | no_license | yjqiang/pat | de9e7b50df55eb2a2cd6eeae781ac76896fcb736 | 8b459ce087e048cb66954cc160efc5419b2964f2 | refs/heads/master | 2022-04-22T15:43:52.282615 | 2020-04-16T02:09:38 | 2020-04-16T02:09:38 | 242,607,944 | 2 | 0 | null | null | null | null | GB18030 | C++ | false | false | 1,299 | cpp | #define _CRT_SECURE_NO_WARNINGS
#include <vector>
#include <algorithm>
#include <cstdio>
#include <cstring>
#include <string>
#include <iostream>
#include <map>
#include <cmath>
#include <climits>
#include <queue>
#include <set>
using namespace std;
#define N_MAX 1000
struct MoonCake {
// 坑:不一定为int
double nums;
// 单价
double unit_price;
};
// 从大到小
int cmp(const void* p0, const void* p1) {
MoonCake* moon_cake0 = (MoonCake*)p0;
MoonCake* moon_cake1 = (MoonCake*)p1;
if (moon_cake0->unit_price > moon_cake1->unit_price)
return -1;
if (moon_cake0->unit_price == moon_cake1->unit_price)
return 0;
return 1;
}
MoonCake moon_cakes[N_MAX];
int main() {
int N, D;
scanf("%d%d", &N, &D);
int i;
double price;
for (i = 0; i < N; ++i)
scanf("%lf", &(moon_cakes[i].nums));
for (i = 0; i < N; ++i) {
scanf("%lf", &price);
moon_cakes[i].unit_price = price / moon_cakes[i].nums;
}
qsort(moon_cakes, N, sizeof(MoonCake), cmp);
double result = 0;
for (i = 0; D > 0 && i < N; ++i) {
// 备货不足
if (moon_cakes[i].nums < D) {
result += moon_cakes[i].nums * moon_cakes[i].unit_price;
D -= moon_cakes[i].nums;
}
else {
result += D * moon_cakes[i].unit_price;
break;
}
}
printf("%.2lf", result);
system("pause");
return 0;
} | [
"yjqiang1@gmail.com"
] | yjqiang1@gmail.com |
032f6596b52814da7d7c664561d6e18fba63be5c | e01f60cd9891f71d8fbc0b270b1106e7472b373b | /RayStudio/Editor/Common/DeviceManager.cpp | e6d98dfac262441e4751436c680cc7926029ce0e | [] | no_license | KobayashiLW/ArtHands | fbb82484eb01d8ca1a8caa87e43a076d9b8619ae | b62d28d1f15fbfce21ba134b835e67fc9ceede65 | refs/heads/master | 2021-08-23T08:26:46.971449 | 2017-12-04T09:15:17 | 2017-12-04T09:15:17 | null | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 7,556 | cpp | #include "DeviceManager.h"
#include "InfoManager.h"
DeviceManager::DeviceManager()
{
}
DeviceManager::DeviceManager(InfoManager *InfoManager)
{
InfManager = InfoManager;
}
DeviceManager::~DeviceManager()
{
}
void DeviceManager::Init(InfoManager &stream)
{
InfManager = &stream;
}
void DeviceManager::Update()
{
}
HRESULT DeviceManager::Create(char &DeviceName)
{
return S_OK;
}
HRESULT DeviceManager::CreateD3d11Device()
{
//创建设备及上下文
D3D_FEATURE_LEVEL features[3] = { D3D_FEATURE_LEVEL_11_0, D3D_FEATURE_LEVEL_10_0, D3D_FEATURE_LEVEL_9_3 };
D3D_FEATURE_LEVEL myFeatureLevel;
HRESULT hr = D3D11CreateDevice(NULL, D3D_DRIVER_TYPE_HARDWARE, 0, 0, features, 3, D3D11_SDK_VERSION, &ptr_id3d_device_, &myFeatureLevel, &ptr_device_context_);
if (FAILED(hr))
{
// MessageBox(NULL, "创建d3d11设备失败!", "错误", MB_OK);
return S_FALSE;
}
//检测4x采样等级
UINT msaa4xQuality(0);
ptr_id3d_device_->CheckMultisampleQualityLevels(DXGI_FORMAT_R8G8B8A8_UNORM, 4, &msaa4xQuality);
//创建交换链
//先描述其属性
DXGI_SWAP_CHAIN_DESC swapChainDesc = { 0 };
swapChainDesc.BufferDesc.Width = InfManager->WndWidth; //宽、高
swapChainDesc.BufferDesc.Height = InfManager->WndHeight;
swapChainDesc.BufferDesc.RefreshRate.Denominator = 1; //刷新率
swapChainDesc.BufferDesc.RefreshRate.Numerator = 60;
swapChainDesc.BufferDesc.Scaling = DXGI_MODE_SCALING_UNSPECIFIED; //恒定参数,按照这样指明即可
swapChainDesc.BufferDesc.ScanlineOrdering = DXGI_MODE_SCANLINE_ORDER_UNSPECIFIED; //同上
swapChainDesc.BufferDesc.Format = DXGI_FORMAT_R8G8B8A8_UNORM; //数据格式,一个为RGBA四元色格式
swapChainDesc.BufferCount = 1; //后缓冲区个数,1个足够
swapChainDesc.BufferUsage = DXGI_USAGE_RENDER_TARGET_OUTPUT; //Usage,很好理解
swapChainDesc.Flags = 0;
swapChainDesc.OutputWindow = InfManager->HWnd; //主窗口句柄
swapChainDesc.SampleDesc.Count = 1; //多重采样
swapChainDesc.SampleDesc.Quality = msaa4xQuality - 1;
swapChainDesc.SwapEffect = DXGI_SWAP_EFFECT_DISCARD; //交换:绝大多数情况用DISCARD
swapChainDesc.Windowed = true; //窗口模式
//获取IDXGIFactory以创建交换链
IDXGIDevice *dxgiDevice(NULL);
ptr_id3d_device_->QueryInterface(__uuidof(IDXGIDevice), reinterpret_cast<void**>(&dxgiDevice));
IDXGIAdapter *dxgiAdapter(NULL);
dxgiDevice->GetParent(__uuidof(IDXGIAdapter), reinterpret_cast<void**>(&dxgiAdapter));
IDXGIFactory *dxgiFactory(NULL);
dxgiAdapter->GetParent(__uuidof(IDXGIFactory), reinterpret_cast<void**>(&dxgiFactory));
hr = dxgiFactory->CreateSwapChain(ptr_id3d_device_, &swapChainDesc, &ptr_swap_chain_);
if (FAILED(hr))
{
//MessageBox(NULL, "创建d3d11交换链失败!", "错误", MB_OK);
return S_FALSE;
}
dxgiFactory->Release();
dxgiAdapter->Release();
dxgiDevice->Release();
//创建视图
//需要先获得资源
ID3D11Texture2D *backBuffer(NULL);
ptr_swap_chain_->GetBuffer(0, __uuidof(ID3D11Texture2D), reinterpret_cast<void**>(&backBuffer));
hr = ptr_id3d_device_->CreateRenderTargetView(backBuffer, NULL, &ptr_render_target_view_);
if (FAILED(hr))
{
//MessageBox(NULL, "创建RenderTargetView失败!", "错误", MB_OK);
return S_FALSE;
}
backBuffer->Release();
//创建深度缓冲区视图
//要先创建对应缓冲区
//创建缓冲区Texture2D,要先给出描述
D3D11_TEXTURE2D_DESC desc = { 0 };
desc.Width = InfManager->WndWidth;
desc.Height = InfManager->WndHeight;
desc.MipLevels = 1;
desc.ArraySize = 1;
desc.BindFlags = D3D11_BIND_DEPTH_STENCIL;
desc.Format = DXGI_FORMAT_D24_UNORM_S8_UINT;
desc.MiscFlags = 0;
desc.SampleDesc.Count = 1;
desc.SampleDesc.Quality = msaa4xQuality - 1;
desc.Usage = D3D11_USAGE_DEFAULT;
desc.CPUAccessFlags = 0;
ID3D11Texture2D *depthStencilBuffer(NULL);
hr = ptr_id3d_device_->CreateTexture2D(&desc, NULL, &depthStencilBuffer);
if (FAILED(hr))
{
// MessageBox(NULL, "创建d3d11深度缓冲区失败!", "错误", MB_OK);
return S_FALSE;
}
// Initialize the depth stencil view.
D3D11_DEPTH_STENCIL_VIEW_DESC depthStencilViewDesc;
ZeroMemory(&depthStencilViewDesc, sizeof(depthStencilViewDesc));
depthStencilViewDesc.Format = DXGI_FORMAT_D24_UNORM_S8_UINT;
depthStencilViewDesc.ViewDimension = D3D11_DSV_DIMENSION_TEXTURE2D;
depthStencilViewDesc.Texture2D.MipSlice = 0;
hr = ptr_id3d_device_->CreateDepthStencilView(depthStencilBuffer, &depthStencilViewDesc, &ptr_depth_stencil_view_);
if (FAILED(hr))
{
// MessageBox(NULL, "创建DepthStencilView失败!", "错误", MB_OK);
return S_FALSE;
}
//有了视图要绑定到管线相应阶段
ptr_device_context_->OMSetRenderTargets(1, &ptr_render_target_view_, ptr_depth_stencil_view_);
depthStencilBuffer->Release();
//最后设置视口
D3D11_VIEWPORT viewPort = { 0 };
viewPort.Width = static_cast<FLOAT>(InfManager->WndWidth);
viewPort.Height = static_cast<FLOAT>(InfManager->WndHeight);
viewPort.MinDepth = 0.f;
viewPort.MaxDepth = 1.f;
viewPort.TopLeftX = 0.f;
viewPort.TopLeftY = 0.f;
ptr_device_context_->RSSetViewports(0, &viewPort);
return S_OK;
}
void DeviceManager::CreateRenderTarget(ID3D11RenderTargetView *&InRenderTarget)
{
DXGI_SWAP_CHAIN_DESC sd;
gptr_swap_chain_->GetDesc(&sd);
// Create the render target
ID3D11Texture2D* pBackBuffer;
D3D11_RENDER_TARGET_VIEW_DESC render_target_view_desc;
ZeroMemory(&render_target_view_desc, sizeof(render_target_view_desc));
render_target_view_desc.Format = sd.BufferDesc.Format;
render_target_view_desc.ViewDimension = D3D11_RTV_DIMENSION_TEXTURE2D;
gptr_swap_chain_->GetBuffer(0, __uuidof(ID3D11Texture2D), (LPVOID*)&pBackBuffer);
gptr_d3d_device_->CreateRenderTargetView(pBackBuffer, &render_target_view_desc, &InRenderTarget);
gptr_d3d_device_context_->OMSetRenderTargets(1, &InRenderTarget, NULL);
pBackBuffer->Release();
}
void DeviceManager::CleanupRenderTarget(ID3D11RenderTargetView *&InRenderTarget)
{
if (InRenderTarget) { InRenderTarget->Release(); InRenderTarget = NULL; }
}
HRESULT DeviceManager::CreateDeviceD3D(HWND hWnd)
{
// Setup swap chain
DXGI_SWAP_CHAIN_DESC sd;
{
ZeroMemory(&sd, sizeof(sd));
sd.BufferCount = 2;
sd.BufferDesc.Width = 0;
sd.BufferDesc.Height = 0;
sd.BufferDesc.Format = DXGI_FORMAT_R8G8B8A8_UNORM;
sd.BufferDesc.RefreshRate.Numerator = 60;
sd.BufferDesc.RefreshRate.Denominator = 1;
sd.Flags = DXGI_SWAP_CHAIN_FLAG_ALLOW_MODE_SWITCH;
sd.BufferUsage = DXGI_USAGE_RENDER_TARGET_OUTPUT;
sd.OutputWindow = hWnd;
sd.SampleDesc.Count = 1;
sd.SampleDesc.Quality = 0;
sd.Windowed = TRUE;
sd.SwapEffect = DXGI_SWAP_EFFECT_DISCARD;
}
UINT createDeviceFlags = 0;
//createDeviceFlags |= D3D11_CREATE_DEVICE_DEBUG;
D3D_FEATURE_LEVEL featureLevel;
const D3D_FEATURE_LEVEL featureLevelArray[1] = { D3D_FEATURE_LEVEL_11_0, };
if (D3D11CreateDeviceAndSwapChain(NULL, D3D_DRIVER_TYPE_HARDWARE, NULL, createDeviceFlags, featureLevelArray, 1, D3D11_SDK_VERSION, &sd, &gptr_swap_chain_, &gptr_d3d_device_, &featureLevel, &gptr_d3d_device_context_) != S_OK)
return E_FAIL;
CreateRenderTarget(gptr_main_render_target_view_);
return S_OK;
}
void DeviceManager::CleanupDeviceD3D()
{
CleanupRenderTarget(gptr_main_render_target_view_);
if (gptr_swap_chain_) { gptr_swap_chain_->Release(); gptr_swap_chain_ = NULL; }
if (gptr_d3d_device_context_) { gptr_d3d_device_context_->Release(); gptr_d3d_device_context_ = NULL; }
if (gptr_d3d_device_) { gptr_d3d_device_->Release(); gptr_d3d_device_ = NULL; }
}
| [
"30485057+SSuperStar@users.noreply.github.com"
] | 30485057+SSuperStar@users.noreply.github.com |
cb094a2dcd6cc2983a972edc5cf4194f4784850c | 5e680370511e8622b6cfccfb4c1f487cccadc028 | /search/lib/comparator.h | 9a55e9d4336e1aa7f43b8e44b3e375386b31d58a | [] | no_license | EmanuelAzage/local_file_search_engine | ad24ad6f16c5776c5160252f3ed23b55eca42e6d | 3dac4625712fb1f2df5b0ce9b1c15169ddaaf9be | refs/heads/master | 2016-08-13T00:01:26.492855 | 2015-11-11T21:52:43 | 2015-11-11T21:52:43 | 45,760,281 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 712 | h |
struct filenameComp{
bool operator()(WebPage* wp1, WebPage* wp2){
bool isLessThan = wp1->filename() <= wp2->filename();
return isLessThan;
}
};
struct incLinkSizeComp {
bool operator()(WebPage* wp1, WebPage* wp2){
bool isLessThan = wp1->incoming_links().size() <= wp2->incoming_links().size() ;
return isLessThan;
}
};
struct outgLinkSizeComp {
bool operator()(WebPage* wp1, WebPage* wp2){
bool isLessThan = wp1->outgoing_links().size() <= wp2->outgoing_links().size() ;
return isLessThan;
}
};
struct pageRankComp {
bool operator()(std::pair<WebPage*, double> pair1, std::pair<WebPage*, double> pair2){
bool isLessThan = pair1.second >= pair2.second;
return isLessThan;
}
}; | [
"eazage@usc.edu"
] | eazage@usc.edu |
2b71a95c2494208d5f13e235d38c8b6eaa901019 | eb6f085558dd52755799b4ccbdcd14c6cbd167ed | /Qt_code/day02/HaibinSerialPortDebuger-master/build-MyCustumColorfulAppFrameWork-Desktop_Qt_5_13_0_MinGW_64_bit-Debug/debug/moc_MainWindow.cpp | 56405a466dc7eef67675b20cda8fecf7e83f916b | [] | no_license | Qianhongbo/Mycode | c72faa187849ae7dab92df1996322b80f93d545b | 1014feee0460b030c29b58a3b9623ff6cde78fe8 | refs/heads/master | 2020-06-22T21:33:46.353232 | 2019-08-29T00:41:10 | 2019-08-29T00:41:10 | 198,403,250 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,008 | cpp | /****************************************************************************
** Meta object code from reading C++ file 'MainWindow.h'
**
** Created by: The Qt Meta Object Compiler version 67 (Qt 5.13.0)
**
** WARNING! All changes made in this file will be lost!
*****************************************************************************/
#include <memory>
#include "../../HaibinSerialPortDebuger-master/MainWindow.h"
#include <QtCore/qbytearray.h>
#include <QtCore/qmetatype.h>
#if !defined(Q_MOC_OUTPUT_REVISION)
#error "The header file 'MainWindow.h' doesn't include <QObject>."
#elif Q_MOC_OUTPUT_REVISION != 67
#error "This file was generated using the moc from 5.13.0. It"
#error "cannot be used with the include files from this version of Qt."
#error "(The moc has changed too much.)"
#endif
QT_BEGIN_MOC_NAMESPACE
QT_WARNING_PUSH
QT_WARNING_DISABLE_DEPRECATED
struct qt_meta_stringdata_MainWindow_t {
QByteArrayData data[7];
char stringdata0[84];
};
#define QT_MOC_LITERAL(idx, ofs, len) \
Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \
qptrdiff(offsetof(qt_meta_stringdata_MainWindow_t, stringdata0) + ofs \
- idx * sizeof(QByteArrayData)) \
)
static const qt_meta_stringdata_MainWindow_t qt_meta_stringdata_MainWindow = {
{
QT_MOC_LITERAL(0, 0, 10), // "MainWindow"
QT_MOC_LITERAL(1, 11, 23), // "slotOnSendSerialContent"
QT_MOC_LITERAL(2, 35, 0), // ""
QT_MOC_LITERAL(3, 36, 14), // "slotOnSaveData"
QT_MOC_LITERAL(4, 51, 9), // "SEND_TYPE"
QT_MOC_LITERAL(5, 61, 11), // "Serial_SEND"
QT_MOC_LITERAL(6, 73, 10) // "Serial_RCV"
},
"MainWindow\0slotOnSendSerialContent\0\0"
"slotOnSaveData\0SEND_TYPE\0Serial_SEND\0"
"Serial_RCV"
};
#undef QT_MOC_LITERAL
static const uint qt_meta_data_MainWindow[] = {
// content:
8, // revision
0, // classname
0, 0, // classinfo
2, 14, // methods
0, 0, // properties
1, 26, // enums/sets
0, 0, // constructors
0, // flags
0, // signalCount
// slots: name, argc, parameters, tag, flags
1, 0, 24, 2, 0x0a /* Public */,
3, 0, 25, 2, 0x0a /* Public */,
// slots: parameters
QMetaType::Void,
QMetaType::Void,
// enums: name, alias, flags, count, data
4, 4, 0x0, 2, 31,
// enum data: key, value
5, uint(MainWindow::Serial_SEND),
6, uint(MainWindow::Serial_RCV),
0 // eod
};
void MainWindow::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a)
{
if (_c == QMetaObject::InvokeMetaMethod) {
auto *_t = static_cast<MainWindow *>(_o);
Q_UNUSED(_t)
switch (_id) {
case 0: _t->slotOnSendSerialContent(); break;
case 1: _t->slotOnSaveData(); break;
default: ;
}
}
Q_UNUSED(_a);
}
QT_INIT_METAOBJECT const QMetaObject MainWindow::staticMetaObject = { {
&QMainWindow::staticMetaObject,
qt_meta_stringdata_MainWindow.data,
qt_meta_data_MainWindow,
qt_static_metacall,
nullptr,
nullptr
} };
const QMetaObject *MainWindow::metaObject() const
{
return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject;
}
void *MainWindow::qt_metacast(const char *_clname)
{
if (!_clname) return nullptr;
if (!strcmp(_clname, qt_meta_stringdata_MainWindow.stringdata0))
return static_cast<void*>(this);
return QMainWindow::qt_metacast(_clname);
}
int MainWindow::qt_metacall(QMetaObject::Call _c, int _id, void **_a)
{
_id = QMainWindow::qt_metacall(_c, _id, _a);
if (_id < 0)
return _id;
if (_c == QMetaObject::InvokeMetaMethod) {
if (_id < 2)
qt_static_metacall(this, _c, _id, _a);
_id -= 2;
} else if (_c == QMetaObject::RegisterMethodArgumentMetaType) {
if (_id < 2)
*reinterpret_cast<int*>(_a[0]) = -1;
_id -= 2;
}
return _id;
}
QT_WARNING_POP
QT_END_MOC_NAMESPACE
| [
"3172858@qq.com"
] | 3172858@qq.com |
bd140e4188ea8d87d3f81fa2e6e19c630785d09b | ce1e8b29ffd9d97ffc5c693fe3bd4ee358b5e1d5 | /src/ExtDataT3R/T3RLookupTables.cpp | 9b8cd89aa61a6f0e5f67e4f09ce5b3569f92f508 | [
"MIT"
] | permissive | voxie-viewer/voxie | d76fe7d3990b14dea34e654378d82ddeb48f6445 | 2b4f23116ab1c2fd44b134c4265a59987049dcdb | refs/heads/master | 2023-04-14T13:30:18.668070 | 2023-04-04T10:58:24 | 2023-04-04T10:58:24 | 60,341,017 | 6 | 1 | MIT | 2022-11-29T06:52:16 | 2016-06-03T10:50:54 | C++ | UTF-8 | C++ | false | false | 128,293 | cpp | /*
* Copyright (c) 2014-2022 The Voxie Authors
*
* 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 "T3RLookupTables.hpp"
namespace vx {
namespace t3r {
namespace lookup {
const std::array<Coord, 256> ColumnShift = {
0, 0, 15, 15, 14, 14, 13, 13, 12, 12, 11, 11, 10, 10, 9, 9, 8, 8, 7,
7, 6, 6, 5, 5, 4, 4, 3, 3, 2, 2, 1, 1, 0, 0, 15, 15, 14, 14,
13, 13, 12, 12, 11, 11, 10, 10, 9, 9, 8, 8, 7, 7, 6, 6, 5, 5, 4,
4, 3, 3, 2, 2, 1, 1, 0, 0, 15, 15, 14, 14, 13, 13, 12, 12, 11, 11,
10, 10, 9, 9, 8, 8, 7, 7, 6, 6, 5, 5, 4, 4, 3, 3, 2, 2, 1,
1, 0, 0, 15, 15, 14, 14, 13, 13, 12, 12, 11, 11, 10, 10, 9, 9, 8, 8,
7, 7, 6, 6, 5, 5, 4, 4, 3, 3, 2, 2, 1, 1, 0, 0, 15, 15, 14,
14, 13, 13, 12, 12, 11, 11, 10, 10, 9, 9, 8, 8, 7, 7, 6, 6, 5, 5,
4, 4, 3, 3, 2, 2, 1, 1, 0, 0, 15, 15, 14, 14, 13, 13, 12, 12, 11,
11, 10, 10, 9, 9, 8, 8, 7, 7, 6, 6, 5, 5, 4, 4, 3, 3, 2, 2,
1, 1, 0, 0, 15, 15, 14, 14, 13, 13, 12, 12, 11, 11, 10, 10, 9, 9, 8,
8, 7, 7, 6, 6, 5, 5, 4, 4, 3, 3, 2, 2, 1, 1, 0, 0, 15, 15,
14, 14, 13, 13, 12, 12, 11, 11, 10, 10, 9, 9, 8, 8, 7, 7, 6, 6, 5,
5, 4, 4, 3, 3, 2, 2, 1, 1};
const std::array<ShortTimestamp, 1024> TimeOverThreshold = {
0, 77, 78, 154, 79, 231, 155, 10, 80, 87, 232, 402, 156,
695, 11, 308, 81, 385, 88, 277, 233, 966, 403, 772, 157, 101,
696, 164, 12, 479, 309, 513, 82, 590, 386, 628, 89, 117, 278,
556, 234, 595, 967, 178, 404, 241, 773, 937, 158, 335, 102, 462,
697, 354, 165, 654, 13, 849, 480, 757, 310, 129, 514, 20, 83,
97, 591, 845, 387, 727, 629, 206, 90, 391, 118, 926, 279, 834,
557, 34, 235, 290, 596, 412, 968, 539, 179, 984, 405, 731, 242,
341, 774, 446, 938, 431, 159, 752, 336, 667, 103, 705, 463, 45,
698, 633, 355, 899, 166, 296, 655, 194, 14, 1014, 850, 610, 481,
568, 758, 318, 311, 210, 130, 672, 515, 255, 21, 1020, 74, 84,
382, 98, 587, 592, 332, 846, 94, 388, 287, 728, 749, 630, 1011,
207, 71, 91, 68, 392, 687, 119, 268, 927, 395, 280, 108, 835,
505, 558, 645, 35, 690, 236, 829, 291, 744, 597, 865, 413, 122,
969, 878, 540, 602, 180, 782, 985, 271, 406, 62, 732, 719, 243,
373, 342, 930, 775, 710, 447, 976, 939, 856, 432, 398, 160, 174,
753, 922, 337, 895, 668, 283, 104, 874, 706, 870, 464, 804, 46,
111, 699, 738, 634, 497, 356, 911, 900, 838, 167, 468, 297, 1003,
656, 528, 195, 508, 15, 426, 1015, 640, 851, 523, 611, 561, 482,
808, 569, 418, 759, 791, 319, 648, 312, 367, 211, 489, 131, 217,
673, 38, 516, 50, 256, 887, 22, 616, 1021, 75, 229, 85, 693,
383, 964, 99, 477, 588, 115, 593, 239, 333, 352, 847, 127, 95,
725, 389, 832, 288, 537, 729, 444, 750, 703, 631, 294, 1012, 566,
208, 253, 72, 585, 92, 747, 69, 685, 393, 503, 688, 742, 120,
600, 269, 717, 928, 974, 396, 920, 281, 868, 109, 495, 836, 1001,
506, 638, 559, 416, 646, 487, 36, 885, 691, 475, 237, 125, 830,
442, 292, 251, 745, 501, 598, 972, 866, 999, 414, 883, 123, 249,
970, 881, 879, 947, 541, 949, 603, 360, 181, 543, 783, 813, 986,
951, 272, 457, 407, 605, 63, 57, 733, 362, 720, 915, 244, 183,
374, 143, 343, 545, 931, 188, 776, 785, 711, 137, 448, 815, 977,
904, 940, 988, 857, 574, 433, 953, 151, 399, 274, 161, 625, 175,
459, 754, 842, 923, 409, 338, 664, 896, 607, 669, 379, 284, 65,
105, 826, 875, 59, 707, 171, 871, 735, 465, 423, 805, 364, 47,
226, 112, 722, 700, 582, 739, 917, 635, 472, 498, 246, 357, 454,
912, 185, 901, 148, 839, 376, 168, 223, 469, 145, 298, 301, 1004,
345, 657, 764, 529, 547, 196, 304, 509, 933, 16, 30, 427, 190,
1016, 1007, 641, 778, 852, 800, 524, 787, 612, 348, 562, 713, 483,
995, 809, 139, 570, 660, 419, 450, 760, 796, 792, 817, 320, 767,
649, 979, 313, 263, 368, 906, 212, 532, 490, 942, 132, 821, 218,
990, 674, 550, 39, 859, 517, 679, 51, 576, 257, 199, 888, 435,
23, 324, 617, 955, 1022, 76, 153, 230, 9, 86, 401, 694, 307,
384, 276, 965, 771, 100, 163, 478, 512, 589, 627, 116, 555, 594,
177, 240, 936, 334, 461, 353, 653, 848, 756, 128, 19, 96, 844,
726, 205, 390, 925, 833, 33, 289, 411, 538, 983, 730, 340, 445,
430, 751, 666, 704, 44, 632, 898, 295, 193, 1013, 609, 567, 317,
209, 671, 254, 1019, 73, 381, 586, 331, 93, 286, 748, 1010, 70,
67, 686, 267, 394, 107, 504, 644, 689, 828, 743, 864, 121, 877,
601, 781, 270, 61, 718, 372, 929, 709, 975, 855, 397, 173, 921,
894, 282, 873, 869, 803, 110, 737, 496, 910, 837, 467, 1002, 527,
507, 425, 639, 522, 560, 807, 417, 790, 647, 366, 488, 216, 37,
49, 886, 615, 228, 692, 963, 476, 114, 238, 351, 126, 724, 831,
536, 443, 702, 293, 565, 252, 584, 746, 684, 502, 741, 599, 716,
973, 919, 867, 494, 1000, 637, 415, 486, 884, 474, 124, 441, 250,
500, 971, 998, 882, 248, 880, 946, 948, 359, 542, 812, 950, 456,
604, 56, 361, 914, 182, 142, 544, 187, 784, 136, 814, 903, 987,
573, 952, 150, 273, 624, 458, 841, 408, 663, 606, 378, 64, 825,
58, 170, 734, 422, 363, 225, 721, 581, 916, 471, 245, 453, 184,
147, 375, 222, 144, 300, 344, 763, 546, 303, 932, 29, 189, 1006,
777, 799, 786, 347, 712, 994, 138, 659, 449, 795, 816, 766, 978,
262, 905, 531, 941, 820, 989, 549, 858, 678, 575, 198, 434, 323,
954, 152, 8, 400, 306, 275, 770, 162, 511, 626, 554, 176, 935,
460, 652, 755, 18, 843, 204, 924, 32, 410, 982, 339, 429, 665,
43, 897, 192, 608, 316, 670, 1018, 380, 330, 285, 1009, 66, 266,
106, 643, 827, 863, 876, 780, 60, 371, 708, 854, 172, 893, 872,
802, 736, 909, 466, 526, 424, 521, 806, 789, 365, 215, 48, 614,
227, 962, 113, 350, 723, 535, 701, 564, 583, 683, 740, 715, 918,
493, 636, 485, 473, 440, 499, 997, 247, 945, 358, 811, 455, 55,
913, 141, 186, 135, 902, 572, 149, 623, 840, 662, 377, 824, 169,
421, 224, 580, 470, 452, 146, 221, 299, 762, 302, 28, 1005, 798,
346, 993, 658, 794, 765, 261, 530, 819, 548, 677, 197, 322, 7,
305, 769, 510, 553, 934, 651, 17, 203, 31, 981, 428, 42, 191,
315, 1017, 329, 1008, 265, 642, 862, 779, 370, 853, 892, 801, 908,
525, 520, 788, 214, 613, 961, 349, 534, 563, 682, 714, 492, 484,
439, 996, 944, 810, 54, 140, 134, 571, 622, 661, 823, 420, 579,
451, 220, 761, 27, 797, 992, 793, 260, 818, 676, 321, 6, 768,
552, 650, 202, 980, 41, 314, 328, 264, 861, 369, 891, 907, 519,
213, 960, 533, 681, 491, 438, 943, 53, 133, 621, 822, 578, 219,
26, 991, 259, 675, 5, 551, 201, 40, 327, 860, 890, 518, 959,
680, 437, 52, 620, 577, 25, 258, 4, 200, 326, 889, 958, 436,
619, 24, 3, 325, 957, 618, 2, 956, 1, 0};
const std::array<ShortTimestamp, 16384> TimeOfActivation = {
0, 1, 3, 2, 7, 6, 4, 5, 15, 14, 12,
13, 8, 9, 11, 10, 31, 30, 28, 29, 24, 25,
27, 26, 16, 17, 19, 18, 23, 22, 20, 21, 63,
62, 60, 61, 56, 57, 59, 58, 48, 49, 51, 50,
55, 54, 52, 53, 32, 33, 35, 34, 39, 38, 36,
37, 47, 46, 44, 45, 40, 41, 43, 42, 127, 126,
124, 125, 120, 121, 123, 122, 112, 113, 115, 114, 119,
118, 116, 117, 96, 97, 99, 98, 103, 102, 100, 101,
111, 110, 108, 109, 104, 105, 107, 106, 64, 65, 67,
66, 71, 70, 68, 69, 79, 78, 76, 77, 72, 73,
75, 74, 95, 94, 92, 93, 88, 89, 91, 90, 80,
81, 83, 82, 87, 86, 84, 85, 255, 254, 252, 253,
248, 249, 251, 250, 240, 241, 243, 242, 247, 246, 244,
245, 224, 225, 227, 226, 231, 230, 228, 229, 239, 238,
236, 237, 232, 233, 235, 234, 192, 193, 195, 194, 199,
198, 196, 197, 207, 206, 204, 205, 200, 201, 203, 202,
223, 222, 220, 221, 216, 217, 219, 218, 208, 209, 211,
210, 215, 214, 212, 213, 128, 129, 131, 130, 135, 134,
132, 133, 143, 142, 140, 141, 136, 137, 139, 138, 159,
158, 156, 157, 152, 153, 155, 154, 144, 145, 147, 146,
151, 150, 148, 149, 191, 190, 188, 189, 184, 185, 187,
186, 176, 177, 179, 178, 183, 182, 180, 181, 160, 161,
163, 162, 167, 166, 164, 165, 175, 174, 172, 173, 168,
169, 171, 170, 511, 510, 508, 509, 504, 505, 507, 506,
496, 497, 499, 498, 503, 502, 500, 501, 480, 481, 483,
482, 487, 486, 484, 485, 495, 494, 492, 493, 488, 489,
491, 490, 448, 449, 451, 450, 455, 454, 452, 453, 463,
462, 460, 461, 456, 457, 459, 458, 479, 478, 476, 477,
472, 473, 475, 474, 464, 465, 467, 466, 471, 470, 468,
469, 384, 385, 387, 386, 391, 390, 388, 389, 399, 398,
396, 397, 392, 393, 395, 394, 415, 414, 412, 413, 408,
409, 411, 410, 400, 401, 403, 402, 407, 406, 404, 405,
447, 446, 444, 445, 440, 441, 443, 442, 432, 433, 435,
434, 439, 438, 436, 437, 416, 417, 419, 418, 423, 422,
420, 421, 431, 430, 428, 429, 424, 425, 427, 426, 256,
257, 259, 258, 263, 262, 260, 261, 271, 270, 268, 269,
264, 265, 267, 266, 287, 286, 284, 285, 280, 281, 283,
282, 272, 273, 275, 274, 279, 278, 276, 277, 319, 318,
316, 317, 312, 313, 315, 314, 304, 305, 307, 306, 311,
310, 308, 309, 288, 289, 291, 290, 295, 294, 292, 293,
303, 302, 300, 301, 296, 297, 299, 298, 383, 382, 380,
381, 376, 377, 379, 378, 368, 369, 371, 370, 375, 374,
372, 373, 352, 353, 355, 354, 359, 358, 356, 357, 367,
366, 364, 365, 360, 361, 363, 362, 320, 321, 323, 322,
327, 326, 324, 325, 335, 334, 332, 333, 328, 329, 331,
330, 351, 350, 348, 349, 344, 345, 347, 346, 336, 337,
339, 338, 343, 342, 340, 341, 1023, 1022, 1020, 1021, 1016,
1017, 1019, 1018, 1008, 1009, 1011, 1010, 1015, 1014, 1012, 1013,
992, 993, 995, 994, 999, 998, 996, 997, 1007, 1006, 1004,
1005, 1000, 1001, 1003, 1002, 960, 961, 963, 962, 967, 966,
964, 965, 975, 974, 972, 973, 968, 969, 971, 970, 991,
990, 988, 989, 984, 985, 987, 986, 976, 977, 979, 978,
983, 982, 980, 981, 896, 897, 899, 898, 903, 902, 900,
901, 911, 910, 908, 909, 904, 905, 907, 906, 927, 926,
924, 925, 920, 921, 923, 922, 912, 913, 915, 914, 919,
918, 916, 917, 959, 958, 956, 957, 952, 953, 955, 954,
944, 945, 947, 946, 951, 950, 948, 949, 928, 929, 931,
930, 935, 934, 932, 933, 943, 942, 940, 941, 936, 937,
939, 938, 768, 769, 771, 770, 775, 774, 772, 773, 783,
782, 780, 781, 776, 777, 779, 778, 799, 798, 796, 797,
792, 793, 795, 794, 784, 785, 787, 786, 791, 790, 788,
789, 831, 830, 828, 829, 824, 825, 827, 826, 816, 817,
819, 818, 823, 822, 820, 821, 800, 801, 803, 802, 807,
806, 804, 805, 815, 814, 812, 813, 808, 809, 811, 810,
895, 894, 892, 893, 888, 889, 891, 890, 880, 881, 883,
882, 887, 886, 884, 885, 864, 865, 867, 866, 871, 870,
868, 869, 879, 878, 876, 877, 872, 873, 875, 874, 832,
833, 835, 834, 839, 838, 836, 837, 847, 846, 844, 845,
840, 841, 843, 842, 863, 862, 860, 861, 856, 857, 859,
858, 848, 849, 851, 850, 855, 854, 852, 853, 512, 513,
515, 514, 519, 518, 516, 517, 527, 526, 524, 525, 520,
521, 523, 522, 543, 542, 540, 541, 536, 537, 539, 538,
528, 529, 531, 530, 535, 534, 532, 533, 575, 574, 572,
573, 568, 569, 571, 570, 560, 561, 563, 562, 567, 566,
564, 565, 544, 545, 547, 546, 551, 550, 548, 549, 559,
558, 556, 557, 552, 553, 555, 554, 639, 638, 636, 637,
632, 633, 635, 634, 624, 625, 627, 626, 631, 630, 628,
629, 608, 609, 611, 610, 615, 614, 612, 613, 623, 622,
620, 621, 616, 617, 619, 618, 576, 577, 579, 578, 583,
582, 580, 581, 591, 590, 588, 589, 584, 585, 587, 586,
607, 606, 604, 605, 600, 601, 603, 602, 592, 593, 595,
594, 599, 598, 596, 597, 767, 766, 764, 765, 760, 761,
763, 762, 752, 753, 755, 754, 759, 758, 756, 757, 736,
737, 739, 738, 743, 742, 740, 741, 751, 750, 748, 749,
744, 745, 747, 746, 704, 705, 707, 706, 711, 710, 708,
709, 719, 718, 716, 717, 712, 713, 715, 714, 735, 734,
732, 733, 728, 729, 731, 730, 720, 721, 723, 722, 727,
726, 724, 725, 640, 641, 643, 642, 647, 646, 644, 645,
655, 654, 652, 653, 648, 649, 651, 650, 671, 670, 668,
669, 664, 665, 667, 666, 656, 657, 659, 658, 663, 662,
660, 661, 703, 702, 700, 701, 696, 697, 699, 698, 688,
689, 691, 690, 695, 694, 692, 693, 672, 673, 675, 674,
679, 678, 676, 677, 687, 686, 684, 685, 680, 681, 683,
682, 2047, 2046, 2044, 2045, 2040, 2041, 2043, 2042, 2032, 2033,
2035, 2034, 2039, 2038, 2036, 2037, 2016, 2017, 2019, 2018, 2023,
2022, 2020, 2021, 2031, 2030, 2028, 2029, 2024, 2025, 2027, 2026,
1984, 1985, 1987, 1986, 1991, 1990, 1988, 1989, 1999, 1998, 1996,
1997, 1992, 1993, 1995, 1994, 2015, 2014, 2012, 2013, 2008, 2009,
2011, 2010, 2000, 2001, 2003, 2002, 2007, 2006, 2004, 2005, 1920,
1921, 1923, 1922, 1927, 1926, 1924, 1925, 1935, 1934, 1932, 1933,
1928, 1929, 1931, 1930, 1951, 1950, 1948, 1949, 1944, 1945, 1947,
1946, 1936, 1937, 1939, 1938, 1943, 1942, 1940, 1941, 1983, 1982,
1980, 1981, 1976, 1977, 1979, 1978, 1968, 1969, 1971, 1970, 1975,
1974, 1972, 1973, 1952, 1953, 1955, 1954, 1959, 1958, 1956, 1957,
1967, 1966, 1964, 1965, 1960, 1961, 1963, 1962, 1792, 1793, 1795,
1794, 1799, 1798, 1796, 1797, 1807, 1806, 1804, 1805, 1800, 1801,
1803, 1802, 1823, 1822, 1820, 1821, 1816, 1817, 1819, 1818, 1808,
1809, 1811, 1810, 1815, 1814, 1812, 1813, 1855, 1854, 1852, 1853,
1848, 1849, 1851, 1850, 1840, 1841, 1843, 1842, 1847, 1846, 1844,
1845, 1824, 1825, 1827, 1826, 1831, 1830, 1828, 1829, 1839, 1838,
1836, 1837, 1832, 1833, 1835, 1834, 1919, 1918, 1916, 1917, 1912,
1913, 1915, 1914, 1904, 1905, 1907, 1906, 1911, 1910, 1908, 1909,
1888, 1889, 1891, 1890, 1895, 1894, 1892, 1893, 1903, 1902, 1900,
1901, 1896, 1897, 1899, 1898, 1856, 1857, 1859, 1858, 1863, 1862,
1860, 1861, 1871, 1870, 1868, 1869, 1864, 1865, 1867, 1866, 1887,
1886, 1884, 1885, 1880, 1881, 1883, 1882, 1872, 1873, 1875, 1874,
1879, 1878, 1876, 1877, 1536, 1537, 1539, 1538, 1543, 1542, 1540,
1541, 1551, 1550, 1548, 1549, 1544, 1545, 1547, 1546, 1567, 1566,
1564, 1565, 1560, 1561, 1563, 1562, 1552, 1553, 1555, 1554, 1559,
1558, 1556, 1557, 1599, 1598, 1596, 1597, 1592, 1593, 1595, 1594,
1584, 1585, 1587, 1586, 1591, 1590, 1588, 1589, 1568, 1569, 1571,
1570, 1575, 1574, 1572, 1573, 1583, 1582, 1580, 1581, 1576, 1577,
1579, 1578, 1663, 1662, 1660, 1661, 1656, 1657, 1659, 1658, 1648,
1649, 1651, 1650, 1655, 1654, 1652, 1653, 1632, 1633, 1635, 1634,
1639, 1638, 1636, 1637, 1647, 1646, 1644, 1645, 1640, 1641, 1643,
1642, 1600, 1601, 1603, 1602, 1607, 1606, 1604, 1605, 1615, 1614,
1612, 1613, 1608, 1609, 1611, 1610, 1631, 1630, 1628, 1629, 1624,
1625, 1627, 1626, 1616, 1617, 1619, 1618, 1623, 1622, 1620, 1621,
1791, 1790, 1788, 1789, 1784, 1785, 1787, 1786, 1776, 1777, 1779,
1778, 1783, 1782, 1780, 1781, 1760, 1761, 1763, 1762, 1767, 1766,
1764, 1765, 1775, 1774, 1772, 1773, 1768, 1769, 1771, 1770, 1728,
1729, 1731, 1730, 1735, 1734, 1732, 1733, 1743, 1742, 1740, 1741,
1736, 1737, 1739, 1738, 1759, 1758, 1756, 1757, 1752, 1753, 1755,
1754, 1744, 1745, 1747, 1746, 1751, 1750, 1748, 1749, 1664, 1665,
1667, 1666, 1671, 1670, 1668, 1669, 1679, 1678, 1676, 1677, 1672,
1673, 1675, 1674, 1695, 1694, 1692, 1693, 1688, 1689, 1691, 1690,
1680, 1681, 1683, 1682, 1687, 1686, 1684, 1685, 1727, 1726, 1724,
1725, 1720, 1721, 1723, 1722, 1712, 1713, 1715, 1714, 1719, 1718,
1716, 1717, 1696, 1697, 1699, 1698, 1703, 1702, 1700, 1701, 1711,
1710, 1708, 1709, 1704, 1705, 1707, 1706, 1024, 1025, 1027, 1026,
1031, 1030, 1028, 1029, 1039, 1038, 1036, 1037, 1032, 1033, 1035,
1034, 1055, 1054, 1052, 1053, 1048, 1049, 1051, 1050, 1040, 1041,
1043, 1042, 1047, 1046, 1044, 1045, 1087, 1086, 1084, 1085, 1080,
1081, 1083, 1082, 1072, 1073, 1075, 1074, 1079, 1078, 1076, 1077,
1056, 1057, 1059, 1058, 1063, 1062, 1060, 1061, 1071, 1070, 1068,
1069, 1064, 1065, 1067, 1066, 1151, 1150, 1148, 1149, 1144, 1145,
1147, 1146, 1136, 1137, 1139, 1138, 1143, 1142, 1140, 1141, 1120,
1121, 1123, 1122, 1127, 1126, 1124, 1125, 1135, 1134, 1132, 1133,
1128, 1129, 1131, 1130, 1088, 1089, 1091, 1090, 1095, 1094, 1092,
1093, 1103, 1102, 1100, 1101, 1096, 1097, 1099, 1098, 1119, 1118,
1116, 1117, 1112, 1113, 1115, 1114, 1104, 1105, 1107, 1106, 1111,
1110, 1108, 1109, 1279, 1278, 1276, 1277, 1272, 1273, 1275, 1274,
1264, 1265, 1267, 1266, 1271, 1270, 1268, 1269, 1248, 1249, 1251,
1250, 1255, 1254, 1252, 1253, 1263, 1262, 1260, 1261, 1256, 1257,
1259, 1258, 1216, 1217, 1219, 1218, 1223, 1222, 1220, 1221, 1231,
1230, 1228, 1229, 1224, 1225, 1227, 1226, 1247, 1246, 1244, 1245,
1240, 1241, 1243, 1242, 1232, 1233, 1235, 1234, 1239, 1238, 1236,
1237, 1152, 1153, 1155, 1154, 1159, 1158, 1156, 1157, 1167, 1166,
1164, 1165, 1160, 1161, 1163, 1162, 1183, 1182, 1180, 1181, 1176,
1177, 1179, 1178, 1168, 1169, 1171, 1170, 1175, 1174, 1172, 1173,
1215, 1214, 1212, 1213, 1208, 1209, 1211, 1210, 1200, 1201, 1203,
1202, 1207, 1206, 1204, 1205, 1184, 1185, 1187, 1186, 1191, 1190,
1188, 1189, 1199, 1198, 1196, 1197, 1192, 1193, 1195, 1194, 1535,
1534, 1532, 1533, 1528, 1529, 1531, 1530, 1520, 1521, 1523, 1522,
1527, 1526, 1524, 1525, 1504, 1505, 1507, 1506, 1511, 1510, 1508,
1509, 1519, 1518, 1516, 1517, 1512, 1513, 1515, 1514, 1472, 1473,
1475, 1474, 1479, 1478, 1476, 1477, 1487, 1486, 1484, 1485, 1480,
1481, 1483, 1482, 1503, 1502, 1500, 1501, 1496, 1497, 1499, 1498,
1488, 1489, 1491, 1490, 1495, 1494, 1492, 1493, 1408, 1409, 1411,
1410, 1415, 1414, 1412, 1413, 1423, 1422, 1420, 1421, 1416, 1417,
1419, 1418, 1439, 1438, 1436, 1437, 1432, 1433, 1435, 1434, 1424,
1425, 1427, 1426, 1431, 1430, 1428, 1429, 1471, 1470, 1468, 1469,
1464, 1465, 1467, 1466, 1456, 1457, 1459, 1458, 1463, 1462, 1460,
1461, 1440, 1441, 1443, 1442, 1447, 1446, 1444, 1445, 1455, 1454,
1452, 1453, 1448, 1449, 1451, 1450, 1280, 1281, 1283, 1282, 1287,
1286, 1284, 1285, 1295, 1294, 1292, 1293, 1288, 1289, 1291, 1290,
1311, 1310, 1308, 1309, 1304, 1305, 1307, 1306, 1296, 1297, 1299,
1298, 1303, 1302, 1300, 1301, 1343, 1342, 1340, 1341, 1336, 1337,
1339, 1338, 1328, 1329, 1331, 1330, 1335, 1334, 1332, 1333, 1312,
1313, 1315, 1314, 1319, 1318, 1316, 1317, 1327, 1326, 1324, 1325,
1320, 1321, 1323, 1322, 1407, 1406, 1404, 1405, 1400, 1401, 1403,
1402, 1392, 1393, 1395, 1394, 1399, 1398, 1396, 1397, 1376, 1377,
1379, 1378, 1383, 1382, 1380, 1381, 1391, 1390, 1388, 1389, 1384,
1385, 1387, 1386, 1344, 1345, 1347, 1346, 1351, 1350, 1348, 1349,
1359, 1358, 1356, 1357, 1352, 1353, 1355, 1354, 1375, 1374, 1372,
1373, 1368, 1369, 1371, 1370, 1360, 1361, 1363, 1362, 1367, 1366,
1364, 1365, 4095, 4094, 4092, 4093, 4088, 4089, 4091, 4090, 4080,
4081, 4083, 4082, 4087, 4086, 4084, 4085, 4064, 4065, 4067, 4066,
4071, 4070, 4068, 4069, 4079, 4078, 4076, 4077, 4072, 4073, 4075,
4074, 4032, 4033, 4035, 4034, 4039, 4038, 4036, 4037, 4047, 4046,
4044, 4045, 4040, 4041, 4043, 4042, 4063, 4062, 4060, 4061, 4056,
4057, 4059, 4058, 4048, 4049, 4051, 4050, 4055, 4054, 4052, 4053,
3968, 3969, 3971, 3970, 3975, 3974, 3972, 3973, 3983, 3982, 3980,
3981, 3976, 3977, 3979, 3978, 3999, 3998, 3996, 3997, 3992, 3993,
3995, 3994, 3984, 3985, 3987, 3986, 3991, 3990, 3988, 3989, 4031,
4030, 4028, 4029, 4024, 4025, 4027, 4026, 4016, 4017, 4019, 4018,
4023, 4022, 4020, 4021, 4000, 4001, 4003, 4002, 4007, 4006, 4004,
4005, 4015, 4014, 4012, 4013, 4008, 4009, 4011, 4010, 3840, 3841,
3843, 3842, 3847, 3846, 3844, 3845, 3855, 3854, 3852, 3853, 3848,
3849, 3851, 3850, 3871, 3870, 3868, 3869, 3864, 3865, 3867, 3866,
3856, 3857, 3859, 3858, 3863, 3862, 3860, 3861, 3903, 3902, 3900,
3901, 3896, 3897, 3899, 3898, 3888, 3889, 3891, 3890, 3895, 3894,
3892, 3893, 3872, 3873, 3875, 3874, 3879, 3878, 3876, 3877, 3887,
3886, 3884, 3885, 3880, 3881, 3883, 3882, 3967, 3966, 3964, 3965,
3960, 3961, 3963, 3962, 3952, 3953, 3955, 3954, 3959, 3958, 3956,
3957, 3936, 3937, 3939, 3938, 3943, 3942, 3940, 3941, 3951, 3950,
3948, 3949, 3944, 3945, 3947, 3946, 3904, 3905, 3907, 3906, 3911,
3910, 3908, 3909, 3919, 3918, 3916, 3917, 3912, 3913, 3915, 3914,
3935, 3934, 3932, 3933, 3928, 3929, 3931, 3930, 3920, 3921, 3923,
3922, 3927, 3926, 3924, 3925, 3584, 3585, 3587, 3586, 3591, 3590,
3588, 3589, 3599, 3598, 3596, 3597, 3592, 3593, 3595, 3594, 3615,
3614, 3612, 3613, 3608, 3609, 3611, 3610, 3600, 3601, 3603, 3602,
3607, 3606, 3604, 3605, 3647, 3646, 3644, 3645, 3640, 3641, 3643,
3642, 3632, 3633, 3635, 3634, 3639, 3638, 3636, 3637, 3616, 3617,
3619, 3618, 3623, 3622, 3620, 3621, 3631, 3630, 3628, 3629, 3624,
3625, 3627, 3626, 3711, 3710, 3708, 3709, 3704, 3705, 3707, 3706,
3696, 3697, 3699, 3698, 3703, 3702, 3700, 3701, 3680, 3681, 3683,
3682, 3687, 3686, 3684, 3685, 3695, 3694, 3692, 3693, 3688, 3689,
3691, 3690, 3648, 3649, 3651, 3650, 3655, 3654, 3652, 3653, 3663,
3662, 3660, 3661, 3656, 3657, 3659, 3658, 3679, 3678, 3676, 3677,
3672, 3673, 3675, 3674, 3664, 3665, 3667, 3666, 3671, 3670, 3668,
3669, 3839, 3838, 3836, 3837, 3832, 3833, 3835, 3834, 3824, 3825,
3827, 3826, 3831, 3830, 3828, 3829, 3808, 3809, 3811, 3810, 3815,
3814, 3812, 3813, 3823, 3822, 3820, 3821, 3816, 3817, 3819, 3818,
3776, 3777, 3779, 3778, 3783, 3782, 3780, 3781, 3791, 3790, 3788,
3789, 3784, 3785, 3787, 3786, 3807, 3806, 3804, 3805, 3800, 3801,
3803, 3802, 3792, 3793, 3795, 3794, 3799, 3798, 3796, 3797, 3712,
3713, 3715, 3714, 3719, 3718, 3716, 3717, 3727, 3726, 3724, 3725,
3720, 3721, 3723, 3722, 3743, 3742, 3740, 3741, 3736, 3737, 3739,
3738, 3728, 3729, 3731, 3730, 3735, 3734, 3732, 3733, 3775, 3774,
3772, 3773, 3768, 3769, 3771, 3770, 3760, 3761, 3763, 3762, 3767,
3766, 3764, 3765, 3744, 3745, 3747, 3746, 3751, 3750, 3748, 3749,
3759, 3758, 3756, 3757, 3752, 3753, 3755, 3754, 3072, 3073, 3075,
3074, 3079, 3078, 3076, 3077, 3087, 3086, 3084, 3085, 3080, 3081,
3083, 3082, 3103, 3102, 3100, 3101, 3096, 3097, 3099, 3098, 3088,
3089, 3091, 3090, 3095, 3094, 3092, 3093, 3135, 3134, 3132, 3133,
3128, 3129, 3131, 3130, 3120, 3121, 3123, 3122, 3127, 3126, 3124,
3125, 3104, 3105, 3107, 3106, 3111, 3110, 3108, 3109, 3119, 3118,
3116, 3117, 3112, 3113, 3115, 3114, 3199, 3198, 3196, 3197, 3192,
3193, 3195, 3194, 3184, 3185, 3187, 3186, 3191, 3190, 3188, 3189,
3168, 3169, 3171, 3170, 3175, 3174, 3172, 3173, 3183, 3182, 3180,
3181, 3176, 3177, 3179, 3178, 3136, 3137, 3139, 3138, 3143, 3142,
3140, 3141, 3151, 3150, 3148, 3149, 3144, 3145, 3147, 3146, 3167,
3166, 3164, 3165, 3160, 3161, 3163, 3162, 3152, 3153, 3155, 3154,
3159, 3158, 3156, 3157, 3327, 3326, 3324, 3325, 3320, 3321, 3323,
3322, 3312, 3313, 3315, 3314, 3319, 3318, 3316, 3317, 3296, 3297,
3299, 3298, 3303, 3302, 3300, 3301, 3311, 3310, 3308, 3309, 3304,
3305, 3307, 3306, 3264, 3265, 3267, 3266, 3271, 3270, 3268, 3269,
3279, 3278, 3276, 3277, 3272, 3273, 3275, 3274, 3295, 3294, 3292,
3293, 3288, 3289, 3291, 3290, 3280, 3281, 3283, 3282, 3287, 3286,
3284, 3285, 3200, 3201, 3203, 3202, 3207, 3206, 3204, 3205, 3215,
3214, 3212, 3213, 3208, 3209, 3211, 3210, 3231, 3230, 3228, 3229,
3224, 3225, 3227, 3226, 3216, 3217, 3219, 3218, 3223, 3222, 3220,
3221, 3263, 3262, 3260, 3261, 3256, 3257, 3259, 3258, 3248, 3249,
3251, 3250, 3255, 3254, 3252, 3253, 3232, 3233, 3235, 3234, 3239,
3238, 3236, 3237, 3247, 3246, 3244, 3245, 3240, 3241, 3243, 3242,
3583, 3582, 3580, 3581, 3576, 3577, 3579, 3578, 3568, 3569, 3571,
3570, 3575, 3574, 3572, 3573, 3552, 3553, 3555, 3554, 3559, 3558,
3556, 3557, 3567, 3566, 3564, 3565, 3560, 3561, 3563, 3562, 3520,
3521, 3523, 3522, 3527, 3526, 3524, 3525, 3535, 3534, 3532, 3533,
3528, 3529, 3531, 3530, 3551, 3550, 3548, 3549, 3544, 3545, 3547,
3546, 3536, 3537, 3539, 3538, 3543, 3542, 3540, 3541, 3456, 3457,
3459, 3458, 3463, 3462, 3460, 3461, 3471, 3470, 3468, 3469, 3464,
3465, 3467, 3466, 3487, 3486, 3484, 3485, 3480, 3481, 3483, 3482,
3472, 3473, 3475, 3474, 3479, 3478, 3476, 3477, 3519, 3518, 3516,
3517, 3512, 3513, 3515, 3514, 3504, 3505, 3507, 3506, 3511, 3510,
3508, 3509, 3488, 3489, 3491, 3490, 3495, 3494, 3492, 3493, 3503,
3502, 3500, 3501, 3496, 3497, 3499, 3498, 3328, 3329, 3331, 3330,
3335, 3334, 3332, 3333, 3343, 3342, 3340, 3341, 3336, 3337, 3339,
3338, 3359, 3358, 3356, 3357, 3352, 3353, 3355, 3354, 3344, 3345,
3347, 3346, 3351, 3350, 3348, 3349, 3391, 3390, 3388, 3389, 3384,
3385, 3387, 3386, 3376, 3377, 3379, 3378, 3383, 3382, 3380, 3381,
3360, 3361, 3363, 3362, 3367, 3366, 3364, 3365, 3375, 3374, 3372,
3373, 3368, 3369, 3371, 3370, 3455, 3454, 3452, 3453, 3448, 3449,
3451, 3450, 3440, 3441, 3443, 3442, 3447, 3446, 3444, 3445, 3424,
3425, 3427, 3426, 3431, 3430, 3428, 3429, 3439, 3438, 3436, 3437,
3432, 3433, 3435, 3434, 3392, 3393, 3395, 3394, 3399, 3398, 3396,
3397, 3407, 3406, 3404, 3405, 3400, 3401, 3403, 3402, 3423, 3422,
3420, 3421, 3416, 3417, 3419, 3418, 3408, 3409, 3411, 3410, 3415,
3414, 3412, 3413, 2048, 2049, 2051, 2050, 2055, 2054, 2052, 2053,
2063, 2062, 2060, 2061, 2056, 2057, 2059, 2058, 2079, 2078, 2076,
2077, 2072, 2073, 2075, 2074, 2064, 2065, 2067, 2066, 2071, 2070,
2068, 2069, 2111, 2110, 2108, 2109, 2104, 2105, 2107, 2106, 2096,
2097, 2099, 2098, 2103, 2102, 2100, 2101, 2080, 2081, 2083, 2082,
2087, 2086, 2084, 2085, 2095, 2094, 2092, 2093, 2088, 2089, 2091,
2090, 2175, 2174, 2172, 2173, 2168, 2169, 2171, 2170, 2160, 2161,
2163, 2162, 2167, 2166, 2164, 2165, 2144, 2145, 2147, 2146, 2151,
2150, 2148, 2149, 2159, 2158, 2156, 2157, 2152, 2153, 2155, 2154,
2112, 2113, 2115, 2114, 2119, 2118, 2116, 2117, 2127, 2126, 2124,
2125, 2120, 2121, 2123, 2122, 2143, 2142, 2140, 2141, 2136, 2137,
2139, 2138, 2128, 2129, 2131, 2130, 2135, 2134, 2132, 2133, 2303,
2302, 2300, 2301, 2296, 2297, 2299, 2298, 2288, 2289, 2291, 2290,
2295, 2294, 2292, 2293, 2272, 2273, 2275, 2274, 2279, 2278, 2276,
2277, 2287, 2286, 2284, 2285, 2280, 2281, 2283, 2282, 2240, 2241,
2243, 2242, 2247, 2246, 2244, 2245, 2255, 2254, 2252, 2253, 2248,
2249, 2251, 2250, 2271, 2270, 2268, 2269, 2264, 2265, 2267, 2266,
2256, 2257, 2259, 2258, 2263, 2262, 2260, 2261, 2176, 2177, 2179,
2178, 2183, 2182, 2180, 2181, 2191, 2190, 2188, 2189, 2184, 2185,
2187, 2186, 2207, 2206, 2204, 2205, 2200, 2201, 2203, 2202, 2192,
2193, 2195, 2194, 2199, 2198, 2196, 2197, 2239, 2238, 2236, 2237,
2232, 2233, 2235, 2234, 2224, 2225, 2227, 2226, 2231, 2230, 2228,
2229, 2208, 2209, 2211, 2210, 2215, 2214, 2212, 2213, 2223, 2222,
2220, 2221, 2216, 2217, 2219, 2218, 2559, 2558, 2556, 2557, 2552,
2553, 2555, 2554, 2544, 2545, 2547, 2546, 2551, 2550, 2548, 2549,
2528, 2529, 2531, 2530, 2535, 2534, 2532, 2533, 2543, 2542, 2540,
2541, 2536, 2537, 2539, 2538, 2496, 2497, 2499, 2498, 2503, 2502,
2500, 2501, 2511, 2510, 2508, 2509, 2504, 2505, 2507, 2506, 2527,
2526, 2524, 2525, 2520, 2521, 2523, 2522, 2512, 2513, 2515, 2514,
2519, 2518, 2516, 2517, 2432, 2433, 2435, 2434, 2439, 2438, 2436,
2437, 2447, 2446, 2444, 2445, 2440, 2441, 2443, 2442, 2463, 2462,
2460, 2461, 2456, 2457, 2459, 2458, 2448, 2449, 2451, 2450, 2455,
2454, 2452, 2453, 2495, 2494, 2492, 2493, 2488, 2489, 2491, 2490,
2480, 2481, 2483, 2482, 2487, 2486, 2484, 2485, 2464, 2465, 2467,
2466, 2471, 2470, 2468, 2469, 2479, 2478, 2476, 2477, 2472, 2473,
2475, 2474, 2304, 2305, 2307, 2306, 2311, 2310, 2308, 2309, 2319,
2318, 2316, 2317, 2312, 2313, 2315, 2314, 2335, 2334, 2332, 2333,
2328, 2329, 2331, 2330, 2320, 2321, 2323, 2322, 2327, 2326, 2324,
2325, 2367, 2366, 2364, 2365, 2360, 2361, 2363, 2362, 2352, 2353,
2355, 2354, 2359, 2358, 2356, 2357, 2336, 2337, 2339, 2338, 2343,
2342, 2340, 2341, 2351, 2350, 2348, 2349, 2344, 2345, 2347, 2346,
2431, 2430, 2428, 2429, 2424, 2425, 2427, 2426, 2416, 2417, 2419,
2418, 2423, 2422, 2420, 2421, 2400, 2401, 2403, 2402, 2407, 2406,
2404, 2405, 2415, 2414, 2412, 2413, 2408, 2409, 2411, 2410, 2368,
2369, 2371, 2370, 2375, 2374, 2372, 2373, 2383, 2382, 2380, 2381,
2376, 2377, 2379, 2378, 2399, 2398, 2396, 2397, 2392, 2393, 2395,
2394, 2384, 2385, 2387, 2386, 2391, 2390, 2388, 2389, 3071, 3070,
3068, 3069, 3064, 3065, 3067, 3066, 3056, 3057, 3059, 3058, 3063,
3062, 3060, 3061, 3040, 3041, 3043, 3042, 3047, 3046, 3044, 3045,
3055, 3054, 3052, 3053, 3048, 3049, 3051, 3050, 3008, 3009, 3011,
3010, 3015, 3014, 3012, 3013, 3023, 3022, 3020, 3021, 3016, 3017,
3019, 3018, 3039, 3038, 3036, 3037, 3032, 3033, 3035, 3034, 3024,
3025, 3027, 3026, 3031, 3030, 3028, 3029, 2944, 2945, 2947, 2946,
2951, 2950, 2948, 2949, 2959, 2958, 2956, 2957, 2952, 2953, 2955,
2954, 2975, 2974, 2972, 2973, 2968, 2969, 2971, 2970, 2960, 2961,
2963, 2962, 2967, 2966, 2964, 2965, 3007, 3006, 3004, 3005, 3000,
3001, 3003, 3002, 2992, 2993, 2995, 2994, 2999, 2998, 2996, 2997,
2976, 2977, 2979, 2978, 2983, 2982, 2980, 2981, 2991, 2990, 2988,
2989, 2984, 2985, 2987, 2986, 2816, 2817, 2819, 2818, 2823, 2822,
2820, 2821, 2831, 2830, 2828, 2829, 2824, 2825, 2827, 2826, 2847,
2846, 2844, 2845, 2840, 2841, 2843, 2842, 2832, 2833, 2835, 2834,
2839, 2838, 2836, 2837, 2879, 2878, 2876, 2877, 2872, 2873, 2875,
2874, 2864, 2865, 2867, 2866, 2871, 2870, 2868, 2869, 2848, 2849,
2851, 2850, 2855, 2854, 2852, 2853, 2863, 2862, 2860, 2861, 2856,
2857, 2859, 2858, 2943, 2942, 2940, 2941, 2936, 2937, 2939, 2938,
2928, 2929, 2931, 2930, 2935, 2934, 2932, 2933, 2912, 2913, 2915,
2914, 2919, 2918, 2916, 2917, 2927, 2926, 2924, 2925, 2920, 2921,
2923, 2922, 2880, 2881, 2883, 2882, 2887, 2886, 2884, 2885, 2895,
2894, 2892, 2893, 2888, 2889, 2891, 2890, 2911, 2910, 2908, 2909,
2904, 2905, 2907, 2906, 2896, 2897, 2899, 2898, 2903, 2902, 2900,
2901, 2560, 2561, 2563, 2562, 2567, 2566, 2564, 2565, 2575, 2574,
2572, 2573, 2568, 2569, 2571, 2570, 2591, 2590, 2588, 2589, 2584,
2585, 2587, 2586, 2576, 2577, 2579, 2578, 2583, 2582, 2580, 2581,
2623, 2622, 2620, 2621, 2616, 2617, 2619, 2618, 2608, 2609, 2611,
2610, 2615, 2614, 2612, 2613, 2592, 2593, 2595, 2594, 2599, 2598,
2596, 2597, 2607, 2606, 2604, 2605, 2600, 2601, 2603, 2602, 2687,
2686, 2684, 2685, 2680, 2681, 2683, 2682, 2672, 2673, 2675, 2674,
2679, 2678, 2676, 2677, 2656, 2657, 2659, 2658, 2663, 2662, 2660,
2661, 2671, 2670, 2668, 2669, 2664, 2665, 2667, 2666, 2624, 2625,
2627, 2626, 2631, 2630, 2628, 2629, 2639, 2638, 2636, 2637, 2632,
2633, 2635, 2634, 2655, 2654, 2652, 2653, 2648, 2649, 2651, 2650,
2640, 2641, 2643, 2642, 2647, 2646, 2644, 2645, 2815, 2814, 2812,
2813, 2808, 2809, 2811, 2810, 2800, 2801, 2803, 2802, 2807, 2806,
2804, 2805, 2784, 2785, 2787, 2786, 2791, 2790, 2788, 2789, 2799,
2798, 2796, 2797, 2792, 2793, 2795, 2794, 2752, 2753, 2755, 2754,
2759, 2758, 2756, 2757, 2767, 2766, 2764, 2765, 2760, 2761, 2763,
2762, 2783, 2782, 2780, 2781, 2776, 2777, 2779, 2778, 2768, 2769,
2771, 2770, 2775, 2774, 2772, 2773, 2688, 2689, 2691, 2690, 2695,
2694, 2692, 2693, 2703, 2702, 2700, 2701, 2696, 2697, 2699, 2698,
2719, 2718, 2716, 2717, 2712, 2713, 2715, 2714, 2704, 2705, 2707,
2706, 2711, 2710, 2708, 2709, 2751, 2750, 2748, 2749, 2744, 2745,
2747, 2746, 2736, 2737, 2739, 2738, 2743, 2742, 2740, 2741, 2720,
2721, 2723, 2722, 2727, 2726, 2724, 2725, 2735, 2734, 2732, 2733,
2728, 2729, 2731, 2730, 8191, 8190, 8188, 8189, 8184, 8185, 8187,
8186, 8176, 8177, 8179, 8178, 8183, 8182, 8180, 8181, 8160, 8161,
8163, 8162, 8167, 8166, 8164, 8165, 8175, 8174, 8172, 8173, 8168,
8169, 8171, 8170, 8128, 8129, 8131, 8130, 8135, 8134, 8132, 8133,
8143, 8142, 8140, 8141, 8136, 8137, 8139, 8138, 8159, 8158, 8156,
8157, 8152, 8153, 8155, 8154, 8144, 8145, 8147, 8146, 8151, 8150,
8148, 8149, 8064, 8065, 8067, 8066, 8071, 8070, 8068, 8069, 8079,
8078, 8076, 8077, 8072, 8073, 8075, 8074, 8095, 8094, 8092, 8093,
8088, 8089, 8091, 8090, 8080, 8081, 8083, 8082, 8087, 8086, 8084,
8085, 8127, 8126, 8124, 8125, 8120, 8121, 8123, 8122, 8112, 8113,
8115, 8114, 8119, 8118, 8116, 8117, 8096, 8097, 8099, 8098, 8103,
8102, 8100, 8101, 8111, 8110, 8108, 8109, 8104, 8105, 8107, 8106,
7936, 7937, 7939, 7938, 7943, 7942, 7940, 7941, 7951, 7950, 7948,
7949, 7944, 7945, 7947, 7946, 7967, 7966, 7964, 7965, 7960, 7961,
7963, 7962, 7952, 7953, 7955, 7954, 7959, 7958, 7956, 7957, 7999,
7998, 7996, 7997, 7992, 7993, 7995, 7994, 7984, 7985, 7987, 7986,
7991, 7990, 7988, 7989, 7968, 7969, 7971, 7970, 7975, 7974, 7972,
7973, 7983, 7982, 7980, 7981, 7976, 7977, 7979, 7978, 8063, 8062,
8060, 8061, 8056, 8057, 8059, 8058, 8048, 8049, 8051, 8050, 8055,
8054, 8052, 8053, 8032, 8033, 8035, 8034, 8039, 8038, 8036, 8037,
8047, 8046, 8044, 8045, 8040, 8041, 8043, 8042, 8000, 8001, 8003,
8002, 8007, 8006, 8004, 8005, 8015, 8014, 8012, 8013, 8008, 8009,
8011, 8010, 8031, 8030, 8028, 8029, 8024, 8025, 8027, 8026, 8016,
8017, 8019, 8018, 8023, 8022, 8020, 8021, 7680, 7681, 7683, 7682,
7687, 7686, 7684, 7685, 7695, 7694, 7692, 7693, 7688, 7689, 7691,
7690, 7711, 7710, 7708, 7709, 7704, 7705, 7707, 7706, 7696, 7697,
7699, 7698, 7703, 7702, 7700, 7701, 7743, 7742, 7740, 7741, 7736,
7737, 7739, 7738, 7728, 7729, 7731, 7730, 7735, 7734, 7732, 7733,
7712, 7713, 7715, 7714, 7719, 7718, 7716, 7717, 7727, 7726, 7724,
7725, 7720, 7721, 7723, 7722, 7807, 7806, 7804, 7805, 7800, 7801,
7803, 7802, 7792, 7793, 7795, 7794, 7799, 7798, 7796, 7797, 7776,
7777, 7779, 7778, 7783, 7782, 7780, 7781, 7791, 7790, 7788, 7789,
7784, 7785, 7787, 7786, 7744, 7745, 7747, 7746, 7751, 7750, 7748,
7749, 7759, 7758, 7756, 7757, 7752, 7753, 7755, 7754, 7775, 7774,
7772, 7773, 7768, 7769, 7771, 7770, 7760, 7761, 7763, 7762, 7767,
7766, 7764, 7765, 7935, 7934, 7932, 7933, 7928, 7929, 7931, 7930,
7920, 7921, 7923, 7922, 7927, 7926, 7924, 7925, 7904, 7905, 7907,
7906, 7911, 7910, 7908, 7909, 7919, 7918, 7916, 7917, 7912, 7913,
7915, 7914, 7872, 7873, 7875, 7874, 7879, 7878, 7876, 7877, 7887,
7886, 7884, 7885, 7880, 7881, 7883, 7882, 7903, 7902, 7900, 7901,
7896, 7897, 7899, 7898, 7888, 7889, 7891, 7890, 7895, 7894, 7892,
7893, 7808, 7809, 7811, 7810, 7815, 7814, 7812, 7813, 7823, 7822,
7820, 7821, 7816, 7817, 7819, 7818, 7839, 7838, 7836, 7837, 7832,
7833, 7835, 7834, 7824, 7825, 7827, 7826, 7831, 7830, 7828, 7829,
7871, 7870, 7868, 7869, 7864, 7865, 7867, 7866, 7856, 7857, 7859,
7858, 7863, 7862, 7860, 7861, 7840, 7841, 7843, 7842, 7847, 7846,
7844, 7845, 7855, 7854, 7852, 7853, 7848, 7849, 7851, 7850, 7168,
7169, 7171, 7170, 7175, 7174, 7172, 7173, 7183, 7182, 7180, 7181,
7176, 7177, 7179, 7178, 7199, 7198, 7196, 7197, 7192, 7193, 7195,
7194, 7184, 7185, 7187, 7186, 7191, 7190, 7188, 7189, 7231, 7230,
7228, 7229, 7224, 7225, 7227, 7226, 7216, 7217, 7219, 7218, 7223,
7222, 7220, 7221, 7200, 7201, 7203, 7202, 7207, 7206, 7204, 7205,
7215, 7214, 7212, 7213, 7208, 7209, 7211, 7210, 7295, 7294, 7292,
7293, 7288, 7289, 7291, 7290, 7280, 7281, 7283, 7282, 7287, 7286,
7284, 7285, 7264, 7265, 7267, 7266, 7271, 7270, 7268, 7269, 7279,
7278, 7276, 7277, 7272, 7273, 7275, 7274, 7232, 7233, 7235, 7234,
7239, 7238, 7236, 7237, 7247, 7246, 7244, 7245, 7240, 7241, 7243,
7242, 7263, 7262, 7260, 7261, 7256, 7257, 7259, 7258, 7248, 7249,
7251, 7250, 7255, 7254, 7252, 7253, 7423, 7422, 7420, 7421, 7416,
7417, 7419, 7418, 7408, 7409, 7411, 7410, 7415, 7414, 7412, 7413,
7392, 7393, 7395, 7394, 7399, 7398, 7396, 7397, 7407, 7406, 7404,
7405, 7400, 7401, 7403, 7402, 7360, 7361, 7363, 7362, 7367, 7366,
7364, 7365, 7375, 7374, 7372, 7373, 7368, 7369, 7371, 7370, 7391,
7390, 7388, 7389, 7384, 7385, 7387, 7386, 7376, 7377, 7379, 7378,
7383, 7382, 7380, 7381, 7296, 7297, 7299, 7298, 7303, 7302, 7300,
7301, 7311, 7310, 7308, 7309, 7304, 7305, 7307, 7306, 7327, 7326,
7324, 7325, 7320, 7321, 7323, 7322, 7312, 7313, 7315, 7314, 7319,
7318, 7316, 7317, 7359, 7358, 7356, 7357, 7352, 7353, 7355, 7354,
7344, 7345, 7347, 7346, 7351, 7350, 7348, 7349, 7328, 7329, 7331,
7330, 7335, 7334, 7332, 7333, 7343, 7342, 7340, 7341, 7336, 7337,
7339, 7338, 7679, 7678, 7676, 7677, 7672, 7673, 7675, 7674, 7664,
7665, 7667, 7666, 7671, 7670, 7668, 7669, 7648, 7649, 7651, 7650,
7655, 7654, 7652, 7653, 7663, 7662, 7660, 7661, 7656, 7657, 7659,
7658, 7616, 7617, 7619, 7618, 7623, 7622, 7620, 7621, 7631, 7630,
7628, 7629, 7624, 7625, 7627, 7626, 7647, 7646, 7644, 7645, 7640,
7641, 7643, 7642, 7632, 7633, 7635, 7634, 7639, 7638, 7636, 7637,
7552, 7553, 7555, 7554, 7559, 7558, 7556, 7557, 7567, 7566, 7564,
7565, 7560, 7561, 7563, 7562, 7583, 7582, 7580, 7581, 7576, 7577,
7579, 7578, 7568, 7569, 7571, 7570, 7575, 7574, 7572, 7573, 7615,
7614, 7612, 7613, 7608, 7609, 7611, 7610, 7600, 7601, 7603, 7602,
7607, 7606, 7604, 7605, 7584, 7585, 7587, 7586, 7591, 7590, 7588,
7589, 7599, 7598, 7596, 7597, 7592, 7593, 7595, 7594, 7424, 7425,
7427, 7426, 7431, 7430, 7428, 7429, 7439, 7438, 7436, 7437, 7432,
7433, 7435, 7434, 7455, 7454, 7452, 7453, 7448, 7449, 7451, 7450,
7440, 7441, 7443, 7442, 7447, 7446, 7444, 7445, 7487, 7486, 7484,
7485, 7480, 7481, 7483, 7482, 7472, 7473, 7475, 7474, 7479, 7478,
7476, 7477, 7456, 7457, 7459, 7458, 7463, 7462, 7460, 7461, 7471,
7470, 7468, 7469, 7464, 7465, 7467, 7466, 7551, 7550, 7548, 7549,
7544, 7545, 7547, 7546, 7536, 7537, 7539, 7538, 7543, 7542, 7540,
7541, 7520, 7521, 7523, 7522, 7527, 7526, 7524, 7525, 7535, 7534,
7532, 7533, 7528, 7529, 7531, 7530, 7488, 7489, 7491, 7490, 7495,
7494, 7492, 7493, 7503, 7502, 7500, 7501, 7496, 7497, 7499, 7498,
7519, 7518, 7516, 7517, 7512, 7513, 7515, 7514, 7504, 7505, 7507,
7506, 7511, 7510, 7508, 7509, 6144, 6145, 6147, 6146, 6151, 6150,
6148, 6149, 6159, 6158, 6156, 6157, 6152, 6153, 6155, 6154, 6175,
6174, 6172, 6173, 6168, 6169, 6171, 6170, 6160, 6161, 6163, 6162,
6167, 6166, 6164, 6165, 6207, 6206, 6204, 6205, 6200, 6201, 6203,
6202, 6192, 6193, 6195, 6194, 6199, 6198, 6196, 6197, 6176, 6177,
6179, 6178, 6183, 6182, 6180, 6181, 6191, 6190, 6188, 6189, 6184,
6185, 6187, 6186, 6271, 6270, 6268, 6269, 6264, 6265, 6267, 6266,
6256, 6257, 6259, 6258, 6263, 6262, 6260, 6261, 6240, 6241, 6243,
6242, 6247, 6246, 6244, 6245, 6255, 6254, 6252, 6253, 6248, 6249,
6251, 6250, 6208, 6209, 6211, 6210, 6215, 6214, 6212, 6213, 6223,
6222, 6220, 6221, 6216, 6217, 6219, 6218, 6239, 6238, 6236, 6237,
6232, 6233, 6235, 6234, 6224, 6225, 6227, 6226, 6231, 6230, 6228,
6229, 6399, 6398, 6396, 6397, 6392, 6393, 6395, 6394, 6384, 6385,
6387, 6386, 6391, 6390, 6388, 6389, 6368, 6369, 6371, 6370, 6375,
6374, 6372, 6373, 6383, 6382, 6380, 6381, 6376, 6377, 6379, 6378,
6336, 6337, 6339, 6338, 6343, 6342, 6340, 6341, 6351, 6350, 6348,
6349, 6344, 6345, 6347, 6346, 6367, 6366, 6364, 6365, 6360, 6361,
6363, 6362, 6352, 6353, 6355, 6354, 6359, 6358, 6356, 6357, 6272,
6273, 6275, 6274, 6279, 6278, 6276, 6277, 6287, 6286, 6284, 6285,
6280, 6281, 6283, 6282, 6303, 6302, 6300, 6301, 6296, 6297, 6299,
6298, 6288, 6289, 6291, 6290, 6295, 6294, 6292, 6293, 6335, 6334,
6332, 6333, 6328, 6329, 6331, 6330, 6320, 6321, 6323, 6322, 6327,
6326, 6324, 6325, 6304, 6305, 6307, 6306, 6311, 6310, 6308, 6309,
6319, 6318, 6316, 6317, 6312, 6313, 6315, 6314, 6655, 6654, 6652,
6653, 6648, 6649, 6651, 6650, 6640, 6641, 6643, 6642, 6647, 6646,
6644, 6645, 6624, 6625, 6627, 6626, 6631, 6630, 6628, 6629, 6639,
6638, 6636, 6637, 6632, 6633, 6635, 6634, 6592, 6593, 6595, 6594,
6599, 6598, 6596, 6597, 6607, 6606, 6604, 6605, 6600, 6601, 6603,
6602, 6623, 6622, 6620, 6621, 6616, 6617, 6619, 6618, 6608, 6609,
6611, 6610, 6615, 6614, 6612, 6613, 6528, 6529, 6531, 6530, 6535,
6534, 6532, 6533, 6543, 6542, 6540, 6541, 6536, 6537, 6539, 6538,
6559, 6558, 6556, 6557, 6552, 6553, 6555, 6554, 6544, 6545, 6547,
6546, 6551, 6550, 6548, 6549, 6591, 6590, 6588, 6589, 6584, 6585,
6587, 6586, 6576, 6577, 6579, 6578, 6583, 6582, 6580, 6581, 6560,
6561, 6563, 6562, 6567, 6566, 6564, 6565, 6575, 6574, 6572, 6573,
6568, 6569, 6571, 6570, 6400, 6401, 6403, 6402, 6407, 6406, 6404,
6405, 6415, 6414, 6412, 6413, 6408, 6409, 6411, 6410, 6431, 6430,
6428, 6429, 6424, 6425, 6427, 6426, 6416, 6417, 6419, 6418, 6423,
6422, 6420, 6421, 6463, 6462, 6460, 6461, 6456, 6457, 6459, 6458,
6448, 6449, 6451, 6450, 6455, 6454, 6452, 6453, 6432, 6433, 6435,
6434, 6439, 6438, 6436, 6437, 6447, 6446, 6444, 6445, 6440, 6441,
6443, 6442, 6527, 6526, 6524, 6525, 6520, 6521, 6523, 6522, 6512,
6513, 6515, 6514, 6519, 6518, 6516, 6517, 6496, 6497, 6499, 6498,
6503, 6502, 6500, 6501, 6511, 6510, 6508, 6509, 6504, 6505, 6507,
6506, 6464, 6465, 6467, 6466, 6471, 6470, 6468, 6469, 6479, 6478,
6476, 6477, 6472, 6473, 6475, 6474, 6495, 6494, 6492, 6493, 6488,
6489, 6491, 6490, 6480, 6481, 6483, 6482, 6487, 6486, 6484, 6485,
7167, 7166, 7164, 7165, 7160, 7161, 7163, 7162, 7152, 7153, 7155,
7154, 7159, 7158, 7156, 7157, 7136, 7137, 7139, 7138, 7143, 7142,
7140, 7141, 7151, 7150, 7148, 7149, 7144, 7145, 7147, 7146, 7104,
7105, 7107, 7106, 7111, 7110, 7108, 7109, 7119, 7118, 7116, 7117,
7112, 7113, 7115, 7114, 7135, 7134, 7132, 7133, 7128, 7129, 7131,
7130, 7120, 7121, 7123, 7122, 7127, 7126, 7124, 7125, 7040, 7041,
7043, 7042, 7047, 7046, 7044, 7045, 7055, 7054, 7052, 7053, 7048,
7049, 7051, 7050, 7071, 7070, 7068, 7069, 7064, 7065, 7067, 7066,
7056, 7057, 7059, 7058, 7063, 7062, 7060, 7061, 7103, 7102, 7100,
7101, 7096, 7097, 7099, 7098, 7088, 7089, 7091, 7090, 7095, 7094,
7092, 7093, 7072, 7073, 7075, 7074, 7079, 7078, 7076, 7077, 7087,
7086, 7084, 7085, 7080, 7081, 7083, 7082, 6912, 6913, 6915, 6914,
6919, 6918, 6916, 6917, 6927, 6926, 6924, 6925, 6920, 6921, 6923,
6922, 6943, 6942, 6940, 6941, 6936, 6937, 6939, 6938, 6928, 6929,
6931, 6930, 6935, 6934, 6932, 6933, 6975, 6974, 6972, 6973, 6968,
6969, 6971, 6970, 6960, 6961, 6963, 6962, 6967, 6966, 6964, 6965,
6944, 6945, 6947, 6946, 6951, 6950, 6948, 6949, 6959, 6958, 6956,
6957, 6952, 6953, 6955, 6954, 7039, 7038, 7036, 7037, 7032, 7033,
7035, 7034, 7024, 7025, 7027, 7026, 7031, 7030, 7028, 7029, 7008,
7009, 7011, 7010, 7015, 7014, 7012, 7013, 7023, 7022, 7020, 7021,
7016, 7017, 7019, 7018, 6976, 6977, 6979, 6978, 6983, 6982, 6980,
6981, 6991, 6990, 6988, 6989, 6984, 6985, 6987, 6986, 7007, 7006,
7004, 7005, 7000, 7001, 7003, 7002, 6992, 6993, 6995, 6994, 6999,
6998, 6996, 6997, 6656, 6657, 6659, 6658, 6663, 6662, 6660, 6661,
6671, 6670, 6668, 6669, 6664, 6665, 6667, 6666, 6687, 6686, 6684,
6685, 6680, 6681, 6683, 6682, 6672, 6673, 6675, 6674, 6679, 6678,
6676, 6677, 6719, 6718, 6716, 6717, 6712, 6713, 6715, 6714, 6704,
6705, 6707, 6706, 6711, 6710, 6708, 6709, 6688, 6689, 6691, 6690,
6695, 6694, 6692, 6693, 6703, 6702, 6700, 6701, 6696, 6697, 6699,
6698, 6783, 6782, 6780, 6781, 6776, 6777, 6779, 6778, 6768, 6769,
6771, 6770, 6775, 6774, 6772, 6773, 6752, 6753, 6755, 6754, 6759,
6758, 6756, 6757, 6767, 6766, 6764, 6765, 6760, 6761, 6763, 6762,
6720, 6721, 6723, 6722, 6727, 6726, 6724, 6725, 6735, 6734, 6732,
6733, 6728, 6729, 6731, 6730, 6751, 6750, 6748, 6749, 6744, 6745,
6747, 6746, 6736, 6737, 6739, 6738, 6743, 6742, 6740, 6741, 6911,
6910, 6908, 6909, 6904, 6905, 6907, 6906, 6896, 6897, 6899, 6898,
6903, 6902, 6900, 6901, 6880, 6881, 6883, 6882, 6887, 6886, 6884,
6885, 6895, 6894, 6892, 6893, 6888, 6889, 6891, 6890, 6848, 6849,
6851, 6850, 6855, 6854, 6852, 6853, 6863, 6862, 6860, 6861, 6856,
6857, 6859, 6858, 6879, 6878, 6876, 6877, 6872, 6873, 6875, 6874,
6864, 6865, 6867, 6866, 6871, 6870, 6868, 6869, 6784, 6785, 6787,
6786, 6791, 6790, 6788, 6789, 6799, 6798, 6796, 6797, 6792, 6793,
6795, 6794, 6815, 6814, 6812, 6813, 6808, 6809, 6811, 6810, 6800,
6801, 6803, 6802, 6807, 6806, 6804, 6805, 6847, 6846, 6844, 6845,
6840, 6841, 6843, 6842, 6832, 6833, 6835, 6834, 6839, 6838, 6836,
6837, 6816, 6817, 6819, 6818, 6823, 6822, 6820, 6821, 6831, 6830,
6828, 6829, 6824, 6825, 6827, 6826, 4096, 4097, 4099, 4098, 4103,
4102, 4100, 4101, 4111, 4110, 4108, 4109, 4104, 4105, 4107, 4106,
4127, 4126, 4124, 4125, 4120, 4121, 4123, 4122, 4112, 4113, 4115,
4114, 4119, 4118, 4116, 4117, 4159, 4158, 4156, 4157, 4152, 4153,
4155, 4154, 4144, 4145, 4147, 4146, 4151, 4150, 4148, 4149, 4128,
4129, 4131, 4130, 4135, 4134, 4132, 4133, 4143, 4142, 4140, 4141,
4136, 4137, 4139, 4138, 4223, 4222, 4220, 4221, 4216, 4217, 4219,
4218, 4208, 4209, 4211, 4210, 4215, 4214, 4212, 4213, 4192, 4193,
4195, 4194, 4199, 4198, 4196, 4197, 4207, 4206, 4204, 4205, 4200,
4201, 4203, 4202, 4160, 4161, 4163, 4162, 4167, 4166, 4164, 4165,
4175, 4174, 4172, 4173, 4168, 4169, 4171, 4170, 4191, 4190, 4188,
4189, 4184, 4185, 4187, 4186, 4176, 4177, 4179, 4178, 4183, 4182,
4180, 4181, 4351, 4350, 4348, 4349, 4344, 4345, 4347, 4346, 4336,
4337, 4339, 4338, 4343, 4342, 4340, 4341, 4320, 4321, 4323, 4322,
4327, 4326, 4324, 4325, 4335, 4334, 4332, 4333, 4328, 4329, 4331,
4330, 4288, 4289, 4291, 4290, 4295, 4294, 4292, 4293, 4303, 4302,
4300, 4301, 4296, 4297, 4299, 4298, 4319, 4318, 4316, 4317, 4312,
4313, 4315, 4314, 4304, 4305, 4307, 4306, 4311, 4310, 4308, 4309,
4224, 4225, 4227, 4226, 4231, 4230, 4228, 4229, 4239, 4238, 4236,
4237, 4232, 4233, 4235, 4234, 4255, 4254, 4252, 4253, 4248, 4249,
4251, 4250, 4240, 4241, 4243, 4242, 4247, 4246, 4244, 4245, 4287,
4286, 4284, 4285, 4280, 4281, 4283, 4282, 4272, 4273, 4275, 4274,
4279, 4278, 4276, 4277, 4256, 4257, 4259, 4258, 4263, 4262, 4260,
4261, 4271, 4270, 4268, 4269, 4264, 4265, 4267, 4266, 4607, 4606,
4604, 4605, 4600, 4601, 4603, 4602, 4592, 4593, 4595, 4594, 4599,
4598, 4596, 4597, 4576, 4577, 4579, 4578, 4583, 4582, 4580, 4581,
4591, 4590, 4588, 4589, 4584, 4585, 4587, 4586, 4544, 4545, 4547,
4546, 4551, 4550, 4548, 4549, 4559, 4558, 4556, 4557, 4552, 4553,
4555, 4554, 4575, 4574, 4572, 4573, 4568, 4569, 4571, 4570, 4560,
4561, 4563, 4562, 4567, 4566, 4564, 4565, 4480, 4481, 4483, 4482,
4487, 4486, 4484, 4485, 4495, 4494, 4492, 4493, 4488, 4489, 4491,
4490, 4511, 4510, 4508, 4509, 4504, 4505, 4507, 4506, 4496, 4497,
4499, 4498, 4503, 4502, 4500, 4501, 4543, 4542, 4540, 4541, 4536,
4537, 4539, 4538, 4528, 4529, 4531, 4530, 4535, 4534, 4532, 4533,
4512, 4513, 4515, 4514, 4519, 4518, 4516, 4517, 4527, 4526, 4524,
4525, 4520, 4521, 4523, 4522, 4352, 4353, 4355, 4354, 4359, 4358,
4356, 4357, 4367, 4366, 4364, 4365, 4360, 4361, 4363, 4362, 4383,
4382, 4380, 4381, 4376, 4377, 4379, 4378, 4368, 4369, 4371, 4370,
4375, 4374, 4372, 4373, 4415, 4414, 4412, 4413, 4408, 4409, 4411,
4410, 4400, 4401, 4403, 4402, 4407, 4406, 4404, 4405, 4384, 4385,
4387, 4386, 4391, 4390, 4388, 4389, 4399, 4398, 4396, 4397, 4392,
4393, 4395, 4394, 4479, 4478, 4476, 4477, 4472, 4473, 4475, 4474,
4464, 4465, 4467, 4466, 4471, 4470, 4468, 4469, 4448, 4449, 4451,
4450, 4455, 4454, 4452, 4453, 4463, 4462, 4460, 4461, 4456, 4457,
4459, 4458, 4416, 4417, 4419, 4418, 4423, 4422, 4420, 4421, 4431,
4430, 4428, 4429, 4424, 4425, 4427, 4426, 4447, 4446, 4444, 4445,
4440, 4441, 4443, 4442, 4432, 4433, 4435, 4434, 4439, 4438, 4436,
4437, 5119, 5118, 5116, 5117, 5112, 5113, 5115, 5114, 5104, 5105,
5107, 5106, 5111, 5110, 5108, 5109, 5088, 5089, 5091, 5090, 5095,
5094, 5092, 5093, 5103, 5102, 5100, 5101, 5096, 5097, 5099, 5098,
5056, 5057, 5059, 5058, 5063, 5062, 5060, 5061, 5071, 5070, 5068,
5069, 5064, 5065, 5067, 5066, 5087, 5086, 5084, 5085, 5080, 5081,
5083, 5082, 5072, 5073, 5075, 5074, 5079, 5078, 5076, 5077, 4992,
4993, 4995, 4994, 4999, 4998, 4996, 4997, 5007, 5006, 5004, 5005,
5000, 5001, 5003, 5002, 5023, 5022, 5020, 5021, 5016, 5017, 5019,
5018, 5008, 5009, 5011, 5010, 5015, 5014, 5012, 5013, 5055, 5054,
5052, 5053, 5048, 5049, 5051, 5050, 5040, 5041, 5043, 5042, 5047,
5046, 5044, 5045, 5024, 5025, 5027, 5026, 5031, 5030, 5028, 5029,
5039, 5038, 5036, 5037, 5032, 5033, 5035, 5034, 4864, 4865, 4867,
4866, 4871, 4870, 4868, 4869, 4879, 4878, 4876, 4877, 4872, 4873,
4875, 4874, 4895, 4894, 4892, 4893, 4888, 4889, 4891, 4890, 4880,
4881, 4883, 4882, 4887, 4886, 4884, 4885, 4927, 4926, 4924, 4925,
4920, 4921, 4923, 4922, 4912, 4913, 4915, 4914, 4919, 4918, 4916,
4917, 4896, 4897, 4899, 4898, 4903, 4902, 4900, 4901, 4911, 4910,
4908, 4909, 4904, 4905, 4907, 4906, 4991, 4990, 4988, 4989, 4984,
4985, 4987, 4986, 4976, 4977, 4979, 4978, 4983, 4982, 4980, 4981,
4960, 4961, 4963, 4962, 4967, 4966, 4964, 4965, 4975, 4974, 4972,
4973, 4968, 4969, 4971, 4970, 4928, 4929, 4931, 4930, 4935, 4934,
4932, 4933, 4943, 4942, 4940, 4941, 4936, 4937, 4939, 4938, 4959,
4958, 4956, 4957, 4952, 4953, 4955, 4954, 4944, 4945, 4947, 4946,
4951, 4950, 4948, 4949, 4608, 4609, 4611, 4610, 4615, 4614, 4612,
4613, 4623, 4622, 4620, 4621, 4616, 4617, 4619, 4618, 4639, 4638,
4636, 4637, 4632, 4633, 4635, 4634, 4624, 4625, 4627, 4626, 4631,
4630, 4628, 4629, 4671, 4670, 4668, 4669, 4664, 4665, 4667, 4666,
4656, 4657, 4659, 4658, 4663, 4662, 4660, 4661, 4640, 4641, 4643,
4642, 4647, 4646, 4644, 4645, 4655, 4654, 4652, 4653, 4648, 4649,
4651, 4650, 4735, 4734, 4732, 4733, 4728, 4729, 4731, 4730, 4720,
4721, 4723, 4722, 4727, 4726, 4724, 4725, 4704, 4705, 4707, 4706,
4711, 4710, 4708, 4709, 4719, 4718, 4716, 4717, 4712, 4713, 4715,
4714, 4672, 4673, 4675, 4674, 4679, 4678, 4676, 4677, 4687, 4686,
4684, 4685, 4680, 4681, 4683, 4682, 4703, 4702, 4700, 4701, 4696,
4697, 4699, 4698, 4688, 4689, 4691, 4690, 4695, 4694, 4692, 4693,
4863, 4862, 4860, 4861, 4856, 4857, 4859, 4858, 4848, 4849, 4851,
4850, 4855, 4854, 4852, 4853, 4832, 4833, 4835, 4834, 4839, 4838,
4836, 4837, 4847, 4846, 4844, 4845, 4840, 4841, 4843, 4842, 4800,
4801, 4803, 4802, 4807, 4806, 4804, 4805, 4815, 4814, 4812, 4813,
4808, 4809, 4811, 4810, 4831, 4830, 4828, 4829, 4824, 4825, 4827,
4826, 4816, 4817, 4819, 4818, 4823, 4822, 4820, 4821, 4736, 4737,
4739, 4738, 4743, 4742, 4740, 4741, 4751, 4750, 4748, 4749, 4744,
4745, 4747, 4746, 4767, 4766, 4764, 4765, 4760, 4761, 4763, 4762,
4752, 4753, 4755, 4754, 4759, 4758, 4756, 4757, 4799, 4798, 4796,
4797, 4792, 4793, 4795, 4794, 4784, 4785, 4787, 4786, 4791, 4790,
4788, 4789, 4768, 4769, 4771, 4770, 4775, 4774, 4772, 4773, 4783,
4782, 4780, 4781, 4776, 4777, 4779, 4778, 6143, 6142, 6140, 6141,
6136, 6137, 6139, 6138, 6128, 6129, 6131, 6130, 6135, 6134, 6132,
6133, 6112, 6113, 6115, 6114, 6119, 6118, 6116, 6117, 6127, 6126,
6124, 6125, 6120, 6121, 6123, 6122, 6080, 6081, 6083, 6082, 6087,
6086, 6084, 6085, 6095, 6094, 6092, 6093, 6088, 6089, 6091, 6090,
6111, 6110, 6108, 6109, 6104, 6105, 6107, 6106, 6096, 6097, 6099,
6098, 6103, 6102, 6100, 6101, 6016, 6017, 6019, 6018, 6023, 6022,
6020, 6021, 6031, 6030, 6028, 6029, 6024, 6025, 6027, 6026, 6047,
6046, 6044, 6045, 6040, 6041, 6043, 6042, 6032, 6033, 6035, 6034,
6039, 6038, 6036, 6037, 6079, 6078, 6076, 6077, 6072, 6073, 6075,
6074, 6064, 6065, 6067, 6066, 6071, 6070, 6068, 6069, 6048, 6049,
6051, 6050, 6055, 6054, 6052, 6053, 6063, 6062, 6060, 6061, 6056,
6057, 6059, 6058, 5888, 5889, 5891, 5890, 5895, 5894, 5892, 5893,
5903, 5902, 5900, 5901, 5896, 5897, 5899, 5898, 5919, 5918, 5916,
5917, 5912, 5913, 5915, 5914, 5904, 5905, 5907, 5906, 5911, 5910,
5908, 5909, 5951, 5950, 5948, 5949, 5944, 5945, 5947, 5946, 5936,
5937, 5939, 5938, 5943, 5942, 5940, 5941, 5920, 5921, 5923, 5922,
5927, 5926, 5924, 5925, 5935, 5934, 5932, 5933, 5928, 5929, 5931,
5930, 6015, 6014, 6012, 6013, 6008, 6009, 6011, 6010, 6000, 6001,
6003, 6002, 6007, 6006, 6004, 6005, 5984, 5985, 5987, 5986, 5991,
5990, 5988, 5989, 5999, 5998, 5996, 5997, 5992, 5993, 5995, 5994,
5952, 5953, 5955, 5954, 5959, 5958, 5956, 5957, 5967, 5966, 5964,
5965, 5960, 5961, 5963, 5962, 5983, 5982, 5980, 5981, 5976, 5977,
5979, 5978, 5968, 5969, 5971, 5970, 5975, 5974, 5972, 5973, 5632,
5633, 5635, 5634, 5639, 5638, 5636, 5637, 5647, 5646, 5644, 5645,
5640, 5641, 5643, 5642, 5663, 5662, 5660, 5661, 5656, 5657, 5659,
5658, 5648, 5649, 5651, 5650, 5655, 5654, 5652, 5653, 5695, 5694,
5692, 5693, 5688, 5689, 5691, 5690, 5680, 5681, 5683, 5682, 5687,
5686, 5684, 5685, 5664, 5665, 5667, 5666, 5671, 5670, 5668, 5669,
5679, 5678, 5676, 5677, 5672, 5673, 5675, 5674, 5759, 5758, 5756,
5757, 5752, 5753, 5755, 5754, 5744, 5745, 5747, 5746, 5751, 5750,
5748, 5749, 5728, 5729, 5731, 5730, 5735, 5734, 5732, 5733, 5743,
5742, 5740, 5741, 5736, 5737, 5739, 5738, 5696, 5697, 5699, 5698,
5703, 5702, 5700, 5701, 5711, 5710, 5708, 5709, 5704, 5705, 5707,
5706, 5727, 5726, 5724, 5725, 5720, 5721, 5723, 5722, 5712, 5713,
5715, 5714, 5719, 5718, 5716, 5717, 5887, 5886, 5884, 5885, 5880,
5881, 5883, 5882, 5872, 5873, 5875, 5874, 5879, 5878, 5876, 5877,
5856, 5857, 5859, 5858, 5863, 5862, 5860, 5861, 5871, 5870, 5868,
5869, 5864, 5865, 5867, 5866, 5824, 5825, 5827, 5826, 5831, 5830,
5828, 5829, 5839, 5838, 5836, 5837, 5832, 5833, 5835, 5834, 5855,
5854, 5852, 5853, 5848, 5849, 5851, 5850, 5840, 5841, 5843, 5842,
5847, 5846, 5844, 5845, 5760, 5761, 5763, 5762, 5767, 5766, 5764,
5765, 5775, 5774, 5772, 5773, 5768, 5769, 5771, 5770, 5791, 5790,
5788, 5789, 5784, 5785, 5787, 5786, 5776, 5777, 5779, 5778, 5783,
5782, 5780, 5781, 5823, 5822, 5820, 5821, 5816, 5817, 5819, 5818,
5808, 5809, 5811, 5810, 5815, 5814, 5812, 5813, 5792, 5793, 5795,
5794, 5799, 5798, 5796, 5797, 5807, 5806, 5804, 5805, 5800, 5801,
5803, 5802, 5120, 5121, 5123, 5122, 5127, 5126, 5124, 5125, 5135,
5134, 5132, 5133, 5128, 5129, 5131, 5130, 5151, 5150, 5148, 5149,
5144, 5145, 5147, 5146, 5136, 5137, 5139, 5138, 5143, 5142, 5140,
5141, 5183, 5182, 5180, 5181, 5176, 5177, 5179, 5178, 5168, 5169,
5171, 5170, 5175, 5174, 5172, 5173, 5152, 5153, 5155, 5154, 5159,
5158, 5156, 5157, 5167, 5166, 5164, 5165, 5160, 5161, 5163, 5162,
5247, 5246, 5244, 5245, 5240, 5241, 5243, 5242, 5232, 5233, 5235,
5234, 5239, 5238, 5236, 5237, 5216, 5217, 5219, 5218, 5223, 5222,
5220, 5221, 5231, 5230, 5228, 5229, 5224, 5225, 5227, 5226, 5184,
5185, 5187, 5186, 5191, 5190, 5188, 5189, 5199, 5198, 5196, 5197,
5192, 5193, 5195, 5194, 5215, 5214, 5212, 5213, 5208, 5209, 5211,
5210, 5200, 5201, 5203, 5202, 5207, 5206, 5204, 5205, 5375, 5374,
5372, 5373, 5368, 5369, 5371, 5370, 5360, 5361, 5363, 5362, 5367,
5366, 5364, 5365, 5344, 5345, 5347, 5346, 5351, 5350, 5348, 5349,
5359, 5358, 5356, 5357, 5352, 5353, 5355, 5354, 5312, 5313, 5315,
5314, 5319, 5318, 5316, 5317, 5327, 5326, 5324, 5325, 5320, 5321,
5323, 5322, 5343, 5342, 5340, 5341, 5336, 5337, 5339, 5338, 5328,
5329, 5331, 5330, 5335, 5334, 5332, 5333, 5248, 5249, 5251, 5250,
5255, 5254, 5252, 5253, 5263, 5262, 5260, 5261, 5256, 5257, 5259,
5258, 5279, 5278, 5276, 5277, 5272, 5273, 5275, 5274, 5264, 5265,
5267, 5266, 5271, 5270, 5268, 5269, 5311, 5310, 5308, 5309, 5304,
5305, 5307, 5306, 5296, 5297, 5299, 5298, 5303, 5302, 5300, 5301,
5280, 5281, 5283, 5282, 5287, 5286, 5284, 5285, 5295, 5294, 5292,
5293, 5288, 5289, 5291, 5290, 5631, 5630, 5628, 5629, 5624, 5625,
5627, 5626, 5616, 5617, 5619, 5618, 5623, 5622, 5620, 5621, 5600,
5601, 5603, 5602, 5607, 5606, 5604, 5605, 5615, 5614, 5612, 5613,
5608, 5609, 5611, 5610, 5568, 5569, 5571, 5570, 5575, 5574, 5572,
5573, 5583, 5582, 5580, 5581, 5576, 5577, 5579, 5578, 5599, 5598,
5596, 5597, 5592, 5593, 5595, 5594, 5584, 5585, 5587, 5586, 5591,
5590, 5588, 5589, 5504, 5505, 5507, 5506, 5511, 5510, 5508, 5509,
5519, 5518, 5516, 5517, 5512, 5513, 5515, 5514, 5535, 5534, 5532,
5533, 5528, 5529, 5531, 5530, 5520, 5521, 5523, 5522, 5527, 5526,
5524, 5525, 5567, 5566, 5564, 5565, 5560, 5561, 5563, 5562, 5552,
5553, 5555, 5554, 5559, 5558, 5556, 5557, 5536, 5537, 5539, 5538,
5543, 5542, 5540, 5541, 5551, 5550, 5548, 5549, 5544, 5545, 5547,
5546, 5376, 5377, 5379, 5378, 5383, 5382, 5380, 5381, 5391, 5390,
5388, 5389, 5384, 5385, 5387, 5386, 5407, 5406, 5404, 5405, 5400,
5401, 5403, 5402, 5392, 5393, 5395, 5394, 5399, 5398, 5396, 5397,
5439, 5438, 5436, 5437, 5432, 5433, 5435, 5434, 5424, 5425, 5427,
5426, 5431, 5430, 5428, 5429, 5408, 5409, 5411, 5410, 5415, 5414,
5412, 5413, 5423, 5422, 5420, 5421, 5416, 5417, 5419, 5418, 5503,
5502, 5500, 5501, 5496, 5497, 5499, 5498, 5488, 5489, 5491, 5490,
5495, 5494, 5492, 5493, 5472, 5473, 5475, 5474, 5479, 5478, 5476,
5477, 5487, 5486, 5484, 5485, 5480, 5481, 5483, 5482, 5440, 5441,
5443, 5442, 5447, 5446, 5444, 5445, 5455, 5454, 5452, 5453, 5448,
5449, 5451, 5450, 5471, 5470, 5468, 5469, 5464, 5465, 5467, 5466,
5456, 5457, 5459, 5458, 5463, 5462, 5460, 5461, 16383, 16382, 16380,
16381, 16376, 16377, 16379, 16378, 16368, 16369, 16371, 16370, 16375, 16374,
16372, 16373, 16352, 16353, 16355, 16354, 16359, 16358, 16356, 16357, 16367,
16366, 16364, 16365, 16360, 16361, 16363, 16362, 16320, 16321, 16323, 16322,
16327, 16326, 16324, 16325, 16335, 16334, 16332, 16333, 16328, 16329, 16331,
16330, 16351, 16350, 16348, 16349, 16344, 16345, 16347, 16346, 16336, 16337,
16339, 16338, 16343, 16342, 16340, 16341, 16256, 16257, 16259, 16258, 16263,
16262, 16260, 16261, 16271, 16270, 16268, 16269, 16264, 16265, 16267, 16266,
16287, 16286, 16284, 16285, 16280, 16281, 16283, 16282, 16272, 16273, 16275,
16274, 16279, 16278, 16276, 16277, 16319, 16318, 16316, 16317, 16312, 16313,
16315, 16314, 16304, 16305, 16307, 16306, 16311, 16310, 16308, 16309, 16288,
16289, 16291, 16290, 16295, 16294, 16292, 16293, 16303, 16302, 16300, 16301,
16296, 16297, 16299, 16298, 16128, 16129, 16131, 16130, 16135, 16134, 16132,
16133, 16143, 16142, 16140, 16141, 16136, 16137, 16139, 16138, 16159, 16158,
16156, 16157, 16152, 16153, 16155, 16154, 16144, 16145, 16147, 16146, 16151,
16150, 16148, 16149, 16191, 16190, 16188, 16189, 16184, 16185, 16187, 16186,
16176, 16177, 16179, 16178, 16183, 16182, 16180, 16181, 16160, 16161, 16163,
16162, 16167, 16166, 16164, 16165, 16175, 16174, 16172, 16173, 16168, 16169,
16171, 16170, 16255, 16254, 16252, 16253, 16248, 16249, 16251, 16250, 16240,
16241, 16243, 16242, 16247, 16246, 16244, 16245, 16224, 16225, 16227, 16226,
16231, 16230, 16228, 16229, 16239, 16238, 16236, 16237, 16232, 16233, 16235,
16234, 16192, 16193, 16195, 16194, 16199, 16198, 16196, 16197, 16207, 16206,
16204, 16205, 16200, 16201, 16203, 16202, 16223, 16222, 16220, 16221, 16216,
16217, 16219, 16218, 16208, 16209, 16211, 16210, 16215, 16214, 16212, 16213,
15872, 15873, 15875, 15874, 15879, 15878, 15876, 15877, 15887, 15886, 15884,
15885, 15880, 15881, 15883, 15882, 15903, 15902, 15900, 15901, 15896, 15897,
15899, 15898, 15888, 15889, 15891, 15890, 15895, 15894, 15892, 15893, 15935,
15934, 15932, 15933, 15928, 15929, 15931, 15930, 15920, 15921, 15923, 15922,
15927, 15926, 15924, 15925, 15904, 15905, 15907, 15906, 15911, 15910, 15908,
15909, 15919, 15918, 15916, 15917, 15912, 15913, 15915, 15914, 15999, 15998,
15996, 15997, 15992, 15993, 15995, 15994, 15984, 15985, 15987, 15986, 15991,
15990, 15988, 15989, 15968, 15969, 15971, 15970, 15975, 15974, 15972, 15973,
15983, 15982, 15980, 15981, 15976, 15977, 15979, 15978, 15936, 15937, 15939,
15938, 15943, 15942, 15940, 15941, 15951, 15950, 15948, 15949, 15944, 15945,
15947, 15946, 15967, 15966, 15964, 15965, 15960, 15961, 15963, 15962, 15952,
15953, 15955, 15954, 15959, 15958, 15956, 15957, 16127, 16126, 16124, 16125,
16120, 16121, 16123, 16122, 16112, 16113, 16115, 16114, 16119, 16118, 16116,
16117, 16096, 16097, 16099, 16098, 16103, 16102, 16100, 16101, 16111, 16110,
16108, 16109, 16104, 16105, 16107, 16106, 16064, 16065, 16067, 16066, 16071,
16070, 16068, 16069, 16079, 16078, 16076, 16077, 16072, 16073, 16075, 16074,
16095, 16094, 16092, 16093, 16088, 16089, 16091, 16090, 16080, 16081, 16083,
16082, 16087, 16086, 16084, 16085, 16000, 16001, 16003, 16002, 16007, 16006,
16004, 16005, 16015, 16014, 16012, 16013, 16008, 16009, 16011, 16010, 16031,
16030, 16028, 16029, 16024, 16025, 16027, 16026, 16016, 16017, 16019, 16018,
16023, 16022, 16020, 16021, 16063, 16062, 16060, 16061, 16056, 16057, 16059,
16058, 16048, 16049, 16051, 16050, 16055, 16054, 16052, 16053, 16032, 16033,
16035, 16034, 16039, 16038, 16036, 16037, 16047, 16046, 16044, 16045, 16040,
16041, 16043, 16042, 15360, 15361, 15363, 15362, 15367, 15366, 15364, 15365,
15375, 15374, 15372, 15373, 15368, 15369, 15371, 15370, 15391, 15390, 15388,
15389, 15384, 15385, 15387, 15386, 15376, 15377, 15379, 15378, 15383, 15382,
15380, 15381, 15423, 15422, 15420, 15421, 15416, 15417, 15419, 15418, 15408,
15409, 15411, 15410, 15415, 15414, 15412, 15413, 15392, 15393, 15395, 15394,
15399, 15398, 15396, 15397, 15407, 15406, 15404, 15405, 15400, 15401, 15403,
15402, 15487, 15486, 15484, 15485, 15480, 15481, 15483, 15482, 15472, 15473,
15475, 15474, 15479, 15478, 15476, 15477, 15456, 15457, 15459, 15458, 15463,
15462, 15460, 15461, 15471, 15470, 15468, 15469, 15464, 15465, 15467, 15466,
15424, 15425, 15427, 15426, 15431, 15430, 15428, 15429, 15439, 15438, 15436,
15437, 15432, 15433, 15435, 15434, 15455, 15454, 15452, 15453, 15448, 15449,
15451, 15450, 15440, 15441, 15443, 15442, 15447, 15446, 15444, 15445, 15615,
15614, 15612, 15613, 15608, 15609, 15611, 15610, 15600, 15601, 15603, 15602,
15607, 15606, 15604, 15605, 15584, 15585, 15587, 15586, 15591, 15590, 15588,
15589, 15599, 15598, 15596, 15597, 15592, 15593, 15595, 15594, 15552, 15553,
15555, 15554, 15559, 15558, 15556, 15557, 15567, 15566, 15564, 15565, 15560,
15561, 15563, 15562, 15583, 15582, 15580, 15581, 15576, 15577, 15579, 15578,
15568, 15569, 15571, 15570, 15575, 15574, 15572, 15573, 15488, 15489, 15491,
15490, 15495, 15494, 15492, 15493, 15503, 15502, 15500, 15501, 15496, 15497,
15499, 15498, 15519, 15518, 15516, 15517, 15512, 15513, 15515, 15514, 15504,
15505, 15507, 15506, 15511, 15510, 15508, 15509, 15551, 15550, 15548, 15549,
15544, 15545, 15547, 15546, 15536, 15537, 15539, 15538, 15543, 15542, 15540,
15541, 15520, 15521, 15523, 15522, 15527, 15526, 15524, 15525, 15535, 15534,
15532, 15533, 15528, 15529, 15531, 15530, 15871, 15870, 15868, 15869, 15864,
15865, 15867, 15866, 15856, 15857, 15859, 15858, 15863, 15862, 15860, 15861,
15840, 15841, 15843, 15842, 15847, 15846, 15844, 15845, 15855, 15854, 15852,
15853, 15848, 15849, 15851, 15850, 15808, 15809, 15811, 15810, 15815, 15814,
15812, 15813, 15823, 15822, 15820, 15821, 15816, 15817, 15819, 15818, 15839,
15838, 15836, 15837, 15832, 15833, 15835, 15834, 15824, 15825, 15827, 15826,
15831, 15830, 15828, 15829, 15744, 15745, 15747, 15746, 15751, 15750, 15748,
15749, 15759, 15758, 15756, 15757, 15752, 15753, 15755, 15754, 15775, 15774,
15772, 15773, 15768, 15769, 15771, 15770, 15760, 15761, 15763, 15762, 15767,
15766, 15764, 15765, 15807, 15806, 15804, 15805, 15800, 15801, 15803, 15802,
15792, 15793, 15795, 15794, 15799, 15798, 15796, 15797, 15776, 15777, 15779,
15778, 15783, 15782, 15780, 15781, 15791, 15790, 15788, 15789, 15784, 15785,
15787, 15786, 15616, 15617, 15619, 15618, 15623, 15622, 15620, 15621, 15631,
15630, 15628, 15629, 15624, 15625, 15627, 15626, 15647, 15646, 15644, 15645,
15640, 15641, 15643, 15642, 15632, 15633, 15635, 15634, 15639, 15638, 15636,
15637, 15679, 15678, 15676, 15677, 15672, 15673, 15675, 15674, 15664, 15665,
15667, 15666, 15671, 15670, 15668, 15669, 15648, 15649, 15651, 15650, 15655,
15654, 15652, 15653, 15663, 15662, 15660, 15661, 15656, 15657, 15659, 15658,
15743, 15742, 15740, 15741, 15736, 15737, 15739, 15738, 15728, 15729, 15731,
15730, 15735, 15734, 15732, 15733, 15712, 15713, 15715, 15714, 15719, 15718,
15716, 15717, 15727, 15726, 15724, 15725, 15720, 15721, 15723, 15722, 15680,
15681, 15683, 15682, 15687, 15686, 15684, 15685, 15695, 15694, 15692, 15693,
15688, 15689, 15691, 15690, 15711, 15710, 15708, 15709, 15704, 15705, 15707,
15706, 15696, 15697, 15699, 15698, 15703, 15702, 15700, 15701, 14336, 14337,
14339, 14338, 14343, 14342, 14340, 14341, 14351, 14350, 14348, 14349, 14344,
14345, 14347, 14346, 14367, 14366, 14364, 14365, 14360, 14361, 14363, 14362,
14352, 14353, 14355, 14354, 14359, 14358, 14356, 14357, 14399, 14398, 14396,
14397, 14392, 14393, 14395, 14394, 14384, 14385, 14387, 14386, 14391, 14390,
14388, 14389, 14368, 14369, 14371, 14370, 14375, 14374, 14372, 14373, 14383,
14382, 14380, 14381, 14376, 14377, 14379, 14378, 14463, 14462, 14460, 14461,
14456, 14457, 14459, 14458, 14448, 14449, 14451, 14450, 14455, 14454, 14452,
14453, 14432, 14433, 14435, 14434, 14439, 14438, 14436, 14437, 14447, 14446,
14444, 14445, 14440, 14441, 14443, 14442, 14400, 14401, 14403, 14402, 14407,
14406, 14404, 14405, 14415, 14414, 14412, 14413, 14408, 14409, 14411, 14410,
14431, 14430, 14428, 14429, 14424, 14425, 14427, 14426, 14416, 14417, 14419,
14418, 14423, 14422, 14420, 14421, 14591, 14590, 14588, 14589, 14584, 14585,
14587, 14586, 14576, 14577, 14579, 14578, 14583, 14582, 14580, 14581, 14560,
14561, 14563, 14562, 14567, 14566, 14564, 14565, 14575, 14574, 14572, 14573,
14568, 14569, 14571, 14570, 14528, 14529, 14531, 14530, 14535, 14534, 14532,
14533, 14543, 14542, 14540, 14541, 14536, 14537, 14539, 14538, 14559, 14558,
14556, 14557, 14552, 14553, 14555, 14554, 14544, 14545, 14547, 14546, 14551,
14550, 14548, 14549, 14464, 14465, 14467, 14466, 14471, 14470, 14468, 14469,
14479, 14478, 14476, 14477, 14472, 14473, 14475, 14474, 14495, 14494, 14492,
14493, 14488, 14489, 14491, 14490, 14480, 14481, 14483, 14482, 14487, 14486,
14484, 14485, 14527, 14526, 14524, 14525, 14520, 14521, 14523, 14522, 14512,
14513, 14515, 14514, 14519, 14518, 14516, 14517, 14496, 14497, 14499, 14498,
14503, 14502, 14500, 14501, 14511, 14510, 14508, 14509, 14504, 14505, 14507,
14506, 14847, 14846, 14844, 14845, 14840, 14841, 14843, 14842, 14832, 14833,
14835, 14834, 14839, 14838, 14836, 14837, 14816, 14817, 14819, 14818, 14823,
14822, 14820, 14821, 14831, 14830, 14828, 14829, 14824, 14825, 14827, 14826,
14784, 14785, 14787, 14786, 14791, 14790, 14788, 14789, 14799, 14798, 14796,
14797, 14792, 14793, 14795, 14794, 14815, 14814, 14812, 14813, 14808, 14809,
14811, 14810, 14800, 14801, 14803, 14802, 14807, 14806, 14804, 14805, 14720,
14721, 14723, 14722, 14727, 14726, 14724, 14725, 14735, 14734, 14732, 14733,
14728, 14729, 14731, 14730, 14751, 14750, 14748, 14749, 14744, 14745, 14747,
14746, 14736, 14737, 14739, 14738, 14743, 14742, 14740, 14741, 14783, 14782,
14780, 14781, 14776, 14777, 14779, 14778, 14768, 14769, 14771, 14770, 14775,
14774, 14772, 14773, 14752, 14753, 14755, 14754, 14759, 14758, 14756, 14757,
14767, 14766, 14764, 14765, 14760, 14761, 14763, 14762, 14592, 14593, 14595,
14594, 14599, 14598, 14596, 14597, 14607, 14606, 14604, 14605, 14600, 14601,
14603, 14602, 14623, 14622, 14620, 14621, 14616, 14617, 14619, 14618, 14608,
14609, 14611, 14610, 14615, 14614, 14612, 14613, 14655, 14654, 14652, 14653,
14648, 14649, 14651, 14650, 14640, 14641, 14643, 14642, 14647, 14646, 14644,
14645, 14624, 14625, 14627, 14626, 14631, 14630, 14628, 14629, 14639, 14638,
14636, 14637, 14632, 14633, 14635, 14634, 14719, 14718, 14716, 14717, 14712,
14713, 14715, 14714, 14704, 14705, 14707, 14706, 14711, 14710, 14708, 14709,
14688, 14689, 14691, 14690, 14695, 14694, 14692, 14693, 14703, 14702, 14700,
14701, 14696, 14697, 14699, 14698, 14656, 14657, 14659, 14658, 14663, 14662,
14660, 14661, 14671, 14670, 14668, 14669, 14664, 14665, 14667, 14666, 14687,
14686, 14684, 14685, 14680, 14681, 14683, 14682, 14672, 14673, 14675, 14674,
14679, 14678, 14676, 14677, 15359, 15358, 15356, 15357, 15352, 15353, 15355,
15354, 15344, 15345, 15347, 15346, 15351, 15350, 15348, 15349, 15328, 15329,
15331, 15330, 15335, 15334, 15332, 15333, 15343, 15342, 15340, 15341, 15336,
15337, 15339, 15338, 15296, 15297, 15299, 15298, 15303, 15302, 15300, 15301,
15311, 15310, 15308, 15309, 15304, 15305, 15307, 15306, 15327, 15326, 15324,
15325, 15320, 15321, 15323, 15322, 15312, 15313, 15315, 15314, 15319, 15318,
15316, 15317, 15232, 15233, 15235, 15234, 15239, 15238, 15236, 15237, 15247,
15246, 15244, 15245, 15240, 15241, 15243, 15242, 15263, 15262, 15260, 15261,
15256, 15257, 15259, 15258, 15248, 15249, 15251, 15250, 15255, 15254, 15252,
15253, 15295, 15294, 15292, 15293, 15288, 15289, 15291, 15290, 15280, 15281,
15283, 15282, 15287, 15286, 15284, 15285, 15264, 15265, 15267, 15266, 15271,
15270, 15268, 15269, 15279, 15278, 15276, 15277, 15272, 15273, 15275, 15274,
15104, 15105, 15107, 15106, 15111, 15110, 15108, 15109, 15119, 15118, 15116,
15117, 15112, 15113, 15115, 15114, 15135, 15134, 15132, 15133, 15128, 15129,
15131, 15130, 15120, 15121, 15123, 15122, 15127, 15126, 15124, 15125, 15167,
15166, 15164, 15165, 15160, 15161, 15163, 15162, 15152, 15153, 15155, 15154,
15159, 15158, 15156, 15157, 15136, 15137, 15139, 15138, 15143, 15142, 15140,
15141, 15151, 15150, 15148, 15149, 15144, 15145, 15147, 15146, 15231, 15230,
15228, 15229, 15224, 15225, 15227, 15226, 15216, 15217, 15219, 15218, 15223,
15222, 15220, 15221, 15200, 15201, 15203, 15202, 15207, 15206, 15204, 15205,
15215, 15214, 15212, 15213, 15208, 15209, 15211, 15210, 15168, 15169, 15171,
15170, 15175, 15174, 15172, 15173, 15183, 15182, 15180, 15181, 15176, 15177,
15179, 15178, 15199, 15198, 15196, 15197, 15192, 15193, 15195, 15194, 15184,
15185, 15187, 15186, 15191, 15190, 15188, 15189, 14848, 14849, 14851, 14850,
14855, 14854, 14852, 14853, 14863, 14862, 14860, 14861, 14856, 14857, 14859,
14858, 14879, 14878, 14876, 14877, 14872, 14873, 14875, 14874, 14864, 14865,
14867, 14866, 14871, 14870, 14868, 14869, 14911, 14910, 14908, 14909, 14904,
14905, 14907, 14906, 14896, 14897, 14899, 14898, 14903, 14902, 14900, 14901,
14880, 14881, 14883, 14882, 14887, 14886, 14884, 14885, 14895, 14894, 14892,
14893, 14888, 14889, 14891, 14890, 14975, 14974, 14972, 14973, 14968, 14969,
14971, 14970, 14960, 14961, 14963, 14962, 14967, 14966, 14964, 14965, 14944,
14945, 14947, 14946, 14951, 14950, 14948, 14949, 14959, 14958, 14956, 14957,
14952, 14953, 14955, 14954, 14912, 14913, 14915, 14914, 14919, 14918, 14916,
14917, 14927, 14926, 14924, 14925, 14920, 14921, 14923, 14922, 14943, 14942,
14940, 14941, 14936, 14937, 14939, 14938, 14928, 14929, 14931, 14930, 14935,
14934, 14932, 14933, 15103, 15102, 15100, 15101, 15096, 15097, 15099, 15098,
15088, 15089, 15091, 15090, 15095, 15094, 15092, 15093, 15072, 15073, 15075,
15074, 15079, 15078, 15076, 15077, 15087, 15086, 15084, 15085, 15080, 15081,
15083, 15082, 15040, 15041, 15043, 15042, 15047, 15046, 15044, 15045, 15055,
15054, 15052, 15053, 15048, 15049, 15051, 15050, 15071, 15070, 15068, 15069,
15064, 15065, 15067, 15066, 15056, 15057, 15059, 15058, 15063, 15062, 15060,
15061, 14976, 14977, 14979, 14978, 14983, 14982, 14980, 14981, 14991, 14990,
14988, 14989, 14984, 14985, 14987, 14986, 15007, 15006, 15004, 15005, 15000,
15001, 15003, 15002, 14992, 14993, 14995, 14994, 14999, 14998, 14996, 14997,
15039, 15038, 15036, 15037, 15032, 15033, 15035, 15034, 15024, 15025, 15027,
15026, 15031, 15030, 15028, 15029, 15008, 15009, 15011, 15010, 15015, 15014,
15012, 15013, 15023, 15022, 15020, 15021, 15016, 15017, 15019, 15018, 12288,
12289, 12291, 12290, 12295, 12294, 12292, 12293, 12303, 12302, 12300, 12301,
12296, 12297, 12299, 12298, 12319, 12318, 12316, 12317, 12312, 12313, 12315,
12314, 12304, 12305, 12307, 12306, 12311, 12310, 12308, 12309, 12351, 12350,
12348, 12349, 12344, 12345, 12347, 12346, 12336, 12337, 12339, 12338, 12343,
12342, 12340, 12341, 12320, 12321, 12323, 12322, 12327, 12326, 12324, 12325,
12335, 12334, 12332, 12333, 12328, 12329, 12331, 12330, 12415, 12414, 12412,
12413, 12408, 12409, 12411, 12410, 12400, 12401, 12403, 12402, 12407, 12406,
12404, 12405, 12384, 12385, 12387, 12386, 12391, 12390, 12388, 12389, 12399,
12398, 12396, 12397, 12392, 12393, 12395, 12394, 12352, 12353, 12355, 12354,
12359, 12358, 12356, 12357, 12367, 12366, 12364, 12365, 12360, 12361, 12363,
12362, 12383, 12382, 12380, 12381, 12376, 12377, 12379, 12378, 12368, 12369,
12371, 12370, 12375, 12374, 12372, 12373, 12543, 12542, 12540, 12541, 12536,
12537, 12539, 12538, 12528, 12529, 12531, 12530, 12535, 12534, 12532, 12533,
12512, 12513, 12515, 12514, 12519, 12518, 12516, 12517, 12527, 12526, 12524,
12525, 12520, 12521, 12523, 12522, 12480, 12481, 12483, 12482, 12487, 12486,
12484, 12485, 12495, 12494, 12492, 12493, 12488, 12489, 12491, 12490, 12511,
12510, 12508, 12509, 12504, 12505, 12507, 12506, 12496, 12497, 12499, 12498,
12503, 12502, 12500, 12501, 12416, 12417, 12419, 12418, 12423, 12422, 12420,
12421, 12431, 12430, 12428, 12429, 12424, 12425, 12427, 12426, 12447, 12446,
12444, 12445, 12440, 12441, 12443, 12442, 12432, 12433, 12435, 12434, 12439,
12438, 12436, 12437, 12479, 12478, 12476, 12477, 12472, 12473, 12475, 12474,
12464, 12465, 12467, 12466, 12471, 12470, 12468, 12469, 12448, 12449, 12451,
12450, 12455, 12454, 12452, 12453, 12463, 12462, 12460, 12461, 12456, 12457,
12459, 12458, 12799, 12798, 12796, 12797, 12792, 12793, 12795, 12794, 12784,
12785, 12787, 12786, 12791, 12790, 12788, 12789, 12768, 12769, 12771, 12770,
12775, 12774, 12772, 12773, 12783, 12782, 12780, 12781, 12776, 12777, 12779,
12778, 12736, 12737, 12739, 12738, 12743, 12742, 12740, 12741, 12751, 12750,
12748, 12749, 12744, 12745, 12747, 12746, 12767, 12766, 12764, 12765, 12760,
12761, 12763, 12762, 12752, 12753, 12755, 12754, 12759, 12758, 12756, 12757,
12672, 12673, 12675, 12674, 12679, 12678, 12676, 12677, 12687, 12686, 12684,
12685, 12680, 12681, 12683, 12682, 12703, 12702, 12700, 12701, 12696, 12697,
12699, 12698, 12688, 12689, 12691, 12690, 12695, 12694, 12692, 12693, 12735,
12734, 12732, 12733, 12728, 12729, 12731, 12730, 12720, 12721, 12723, 12722,
12727, 12726, 12724, 12725, 12704, 12705, 12707, 12706, 12711, 12710, 12708,
12709, 12719, 12718, 12716, 12717, 12712, 12713, 12715, 12714, 12544, 12545,
12547, 12546, 12551, 12550, 12548, 12549, 12559, 12558, 12556, 12557, 12552,
12553, 12555, 12554, 12575, 12574, 12572, 12573, 12568, 12569, 12571, 12570,
12560, 12561, 12563, 12562, 12567, 12566, 12564, 12565, 12607, 12606, 12604,
12605, 12600, 12601, 12603, 12602, 12592, 12593, 12595, 12594, 12599, 12598,
12596, 12597, 12576, 12577, 12579, 12578, 12583, 12582, 12580, 12581, 12591,
12590, 12588, 12589, 12584, 12585, 12587, 12586, 12671, 12670, 12668, 12669,
12664, 12665, 12667, 12666, 12656, 12657, 12659, 12658, 12663, 12662, 12660,
12661, 12640, 12641, 12643, 12642, 12647, 12646, 12644, 12645, 12655, 12654,
12652, 12653, 12648, 12649, 12651, 12650, 12608, 12609, 12611, 12610, 12615,
12614, 12612, 12613, 12623, 12622, 12620, 12621, 12616, 12617, 12619, 12618,
12639, 12638, 12636, 12637, 12632, 12633, 12635, 12634, 12624, 12625, 12627,
12626, 12631, 12630, 12628, 12629, 13311, 13310, 13308, 13309, 13304, 13305,
13307, 13306, 13296, 13297, 13299, 13298, 13303, 13302, 13300, 13301, 13280,
13281, 13283, 13282, 13287, 13286, 13284, 13285, 13295, 13294, 13292, 13293,
13288, 13289, 13291, 13290, 13248, 13249, 13251, 13250, 13255, 13254, 13252,
13253, 13263, 13262, 13260, 13261, 13256, 13257, 13259, 13258, 13279, 13278,
13276, 13277, 13272, 13273, 13275, 13274, 13264, 13265, 13267, 13266, 13271,
13270, 13268, 13269, 13184, 13185, 13187, 13186, 13191, 13190, 13188, 13189,
13199, 13198, 13196, 13197, 13192, 13193, 13195, 13194, 13215, 13214, 13212,
13213, 13208, 13209, 13211, 13210, 13200, 13201, 13203, 13202, 13207, 13206,
13204, 13205, 13247, 13246, 13244, 13245, 13240, 13241, 13243, 13242, 13232,
13233, 13235, 13234, 13239, 13238, 13236, 13237, 13216, 13217, 13219, 13218,
13223, 13222, 13220, 13221, 13231, 13230, 13228, 13229, 13224, 13225, 13227,
13226, 13056, 13057, 13059, 13058, 13063, 13062, 13060, 13061, 13071, 13070,
13068, 13069, 13064, 13065, 13067, 13066, 13087, 13086, 13084, 13085, 13080,
13081, 13083, 13082, 13072, 13073, 13075, 13074, 13079, 13078, 13076, 13077,
13119, 13118, 13116, 13117, 13112, 13113, 13115, 13114, 13104, 13105, 13107,
13106, 13111, 13110, 13108, 13109, 13088, 13089, 13091, 13090, 13095, 13094,
13092, 13093, 13103, 13102, 13100, 13101, 13096, 13097, 13099, 13098, 13183,
13182, 13180, 13181, 13176, 13177, 13179, 13178, 13168, 13169, 13171, 13170,
13175, 13174, 13172, 13173, 13152, 13153, 13155, 13154, 13159, 13158, 13156,
13157, 13167, 13166, 13164, 13165, 13160, 13161, 13163, 13162, 13120, 13121,
13123, 13122, 13127, 13126, 13124, 13125, 13135, 13134, 13132, 13133, 13128,
13129, 13131, 13130, 13151, 13150, 13148, 13149, 13144, 13145, 13147, 13146,
13136, 13137, 13139, 13138, 13143, 13142, 13140, 13141, 12800, 12801, 12803,
12802, 12807, 12806, 12804, 12805, 12815, 12814, 12812, 12813, 12808, 12809,
12811, 12810, 12831, 12830, 12828, 12829, 12824, 12825, 12827, 12826, 12816,
12817, 12819, 12818, 12823, 12822, 12820, 12821, 12863, 12862, 12860, 12861,
12856, 12857, 12859, 12858, 12848, 12849, 12851, 12850, 12855, 12854, 12852,
12853, 12832, 12833, 12835, 12834, 12839, 12838, 12836, 12837, 12847, 12846,
12844, 12845, 12840, 12841, 12843, 12842, 12927, 12926, 12924, 12925, 12920,
12921, 12923, 12922, 12912, 12913, 12915, 12914, 12919, 12918, 12916, 12917,
12896, 12897, 12899, 12898, 12903, 12902, 12900, 12901, 12911, 12910, 12908,
12909, 12904, 12905, 12907, 12906, 12864, 12865, 12867, 12866, 12871, 12870,
12868, 12869, 12879, 12878, 12876, 12877, 12872, 12873, 12875, 12874, 12895,
12894, 12892, 12893, 12888, 12889, 12891, 12890, 12880, 12881, 12883, 12882,
12887, 12886, 12884, 12885, 13055, 13054, 13052, 13053, 13048, 13049, 13051,
13050, 13040, 13041, 13043, 13042, 13047, 13046, 13044, 13045, 13024, 13025,
13027, 13026, 13031, 13030, 13028, 13029, 13039, 13038, 13036, 13037, 13032,
13033, 13035, 13034, 12992, 12993, 12995, 12994, 12999, 12998, 12996, 12997,
13007, 13006, 13004, 13005, 13000, 13001, 13003, 13002, 13023, 13022, 13020,
13021, 13016, 13017, 13019, 13018, 13008, 13009, 13011, 13010, 13015, 13014,
13012, 13013, 12928, 12929, 12931, 12930, 12935, 12934, 12932, 12933, 12943,
12942, 12940, 12941, 12936, 12937, 12939, 12938, 12959, 12958, 12956, 12957,
12952, 12953, 12955, 12954, 12944, 12945, 12947, 12946, 12951, 12950, 12948,
12949, 12991, 12990, 12988, 12989, 12984, 12985, 12987, 12986, 12976, 12977,
12979, 12978, 12983, 12982, 12980, 12981, 12960, 12961, 12963, 12962, 12967,
12966, 12964, 12965, 12975, 12974, 12972, 12973, 12968, 12969, 12971, 12970,
14335, 14334, 14332, 14333, 14328, 14329, 14331, 14330, 14320, 14321, 14323,
14322, 14327, 14326, 14324, 14325, 14304, 14305, 14307, 14306, 14311, 14310,
14308, 14309, 14319, 14318, 14316, 14317, 14312, 14313, 14315, 14314, 14272,
14273, 14275, 14274, 14279, 14278, 14276, 14277, 14287, 14286, 14284, 14285,
14280, 14281, 14283, 14282, 14303, 14302, 14300, 14301, 14296, 14297, 14299,
14298, 14288, 14289, 14291, 14290, 14295, 14294, 14292, 14293, 14208, 14209,
14211, 14210, 14215, 14214, 14212, 14213, 14223, 14222, 14220, 14221, 14216,
14217, 14219, 14218, 14239, 14238, 14236, 14237, 14232, 14233, 14235, 14234,
14224, 14225, 14227, 14226, 14231, 14230, 14228, 14229, 14271, 14270, 14268,
14269, 14264, 14265, 14267, 14266, 14256, 14257, 14259, 14258, 14263, 14262,
14260, 14261, 14240, 14241, 14243, 14242, 14247, 14246, 14244, 14245, 14255,
14254, 14252, 14253, 14248, 14249, 14251, 14250, 14080, 14081, 14083, 14082,
14087, 14086, 14084, 14085, 14095, 14094, 14092, 14093, 14088, 14089, 14091,
14090, 14111, 14110, 14108, 14109, 14104, 14105, 14107, 14106, 14096, 14097,
14099, 14098, 14103, 14102, 14100, 14101, 14143, 14142, 14140, 14141, 14136,
14137, 14139, 14138, 14128, 14129, 14131, 14130, 14135, 14134, 14132, 14133,
14112, 14113, 14115, 14114, 14119, 14118, 14116, 14117, 14127, 14126, 14124,
14125, 14120, 14121, 14123, 14122, 14207, 14206, 14204, 14205, 14200, 14201,
14203, 14202, 14192, 14193, 14195, 14194, 14199, 14198, 14196, 14197, 14176,
14177, 14179, 14178, 14183, 14182, 14180, 14181, 14191, 14190, 14188, 14189,
14184, 14185, 14187, 14186, 14144, 14145, 14147, 14146, 14151, 14150, 14148,
14149, 14159, 14158, 14156, 14157, 14152, 14153, 14155, 14154, 14175, 14174,
14172, 14173, 14168, 14169, 14171, 14170, 14160, 14161, 14163, 14162, 14167,
14166, 14164, 14165, 13824, 13825, 13827, 13826, 13831, 13830, 13828, 13829,
13839, 13838, 13836, 13837, 13832, 13833, 13835, 13834, 13855, 13854, 13852,
13853, 13848, 13849, 13851, 13850, 13840, 13841, 13843, 13842, 13847, 13846,
13844, 13845, 13887, 13886, 13884, 13885, 13880, 13881, 13883, 13882, 13872,
13873, 13875, 13874, 13879, 13878, 13876, 13877, 13856, 13857, 13859, 13858,
13863, 13862, 13860, 13861, 13871, 13870, 13868, 13869, 13864, 13865, 13867,
13866, 13951, 13950, 13948, 13949, 13944, 13945, 13947, 13946, 13936, 13937,
13939, 13938, 13943, 13942, 13940, 13941, 13920, 13921, 13923, 13922, 13927,
13926, 13924, 13925, 13935, 13934, 13932, 13933, 13928, 13929, 13931, 13930,
13888, 13889, 13891, 13890, 13895, 13894, 13892, 13893, 13903, 13902, 13900,
13901, 13896, 13897, 13899, 13898, 13919, 13918, 13916, 13917, 13912, 13913,
13915, 13914, 13904, 13905, 13907, 13906, 13911, 13910, 13908, 13909, 14079,
14078, 14076, 14077, 14072, 14073, 14075, 14074, 14064, 14065, 14067, 14066,
14071, 14070, 14068, 14069, 14048, 14049, 14051, 14050, 14055, 14054, 14052,
14053, 14063, 14062, 14060, 14061, 14056, 14057, 14059, 14058, 14016, 14017,
14019, 14018, 14023, 14022, 14020, 14021, 14031, 14030, 14028, 14029, 14024,
14025, 14027, 14026, 14047, 14046, 14044, 14045, 14040, 14041, 14043, 14042,
14032, 14033, 14035, 14034, 14039, 14038, 14036, 14037, 13952, 13953, 13955,
13954, 13959, 13958, 13956, 13957, 13967, 13966, 13964, 13965, 13960, 13961,
13963, 13962, 13983, 13982, 13980, 13981, 13976, 13977, 13979, 13978, 13968,
13969, 13971, 13970, 13975, 13974, 13972, 13973, 14015, 14014, 14012, 14013,
14008, 14009, 14011, 14010, 14000, 14001, 14003, 14002, 14007, 14006, 14004,
14005, 13984, 13985, 13987, 13986, 13991, 13990, 13988, 13989, 13999, 13998,
13996, 13997, 13992, 13993, 13995, 13994, 13312, 13313, 13315, 13314, 13319,
13318, 13316, 13317, 13327, 13326, 13324, 13325, 13320, 13321, 13323, 13322,
13343, 13342, 13340, 13341, 13336, 13337, 13339, 13338, 13328, 13329, 13331,
13330, 13335, 13334, 13332, 13333, 13375, 13374, 13372, 13373, 13368, 13369,
13371, 13370, 13360, 13361, 13363, 13362, 13367, 13366, 13364, 13365, 13344,
13345, 13347, 13346, 13351, 13350, 13348, 13349, 13359, 13358, 13356, 13357,
13352, 13353, 13355, 13354, 13439, 13438, 13436, 13437, 13432, 13433, 13435,
13434, 13424, 13425, 13427, 13426, 13431, 13430, 13428, 13429, 13408, 13409,
13411, 13410, 13415, 13414, 13412, 13413, 13423, 13422, 13420, 13421, 13416,
13417, 13419, 13418, 13376, 13377, 13379, 13378, 13383, 13382, 13380, 13381,
13391, 13390, 13388, 13389, 13384, 13385, 13387, 13386, 13407, 13406, 13404,
13405, 13400, 13401, 13403, 13402, 13392, 13393, 13395, 13394, 13399, 13398,
13396, 13397, 13567, 13566, 13564, 13565, 13560, 13561, 13563, 13562, 13552,
13553, 13555, 13554, 13559, 13558, 13556, 13557, 13536, 13537, 13539, 13538,
13543, 13542, 13540, 13541, 13551, 13550, 13548, 13549, 13544, 13545, 13547,
13546, 13504, 13505, 13507, 13506, 13511, 13510, 13508, 13509, 13519, 13518,
13516, 13517, 13512, 13513, 13515, 13514, 13535, 13534, 13532, 13533, 13528,
13529, 13531, 13530, 13520, 13521, 13523, 13522, 13527, 13526, 13524, 13525,
13440, 13441, 13443, 13442, 13447, 13446, 13444, 13445, 13455, 13454, 13452,
13453, 13448, 13449, 13451, 13450, 13471, 13470, 13468, 13469, 13464, 13465,
13467, 13466, 13456, 13457, 13459, 13458, 13463, 13462, 13460, 13461, 13503,
13502, 13500, 13501, 13496, 13497, 13499, 13498, 13488, 13489, 13491, 13490,
13495, 13494, 13492, 13493, 13472, 13473, 13475, 13474, 13479, 13478, 13476,
13477, 13487, 13486, 13484, 13485, 13480, 13481, 13483, 13482, 13823, 13822,
13820, 13821, 13816, 13817, 13819, 13818, 13808, 13809, 13811, 13810, 13815,
13814, 13812, 13813, 13792, 13793, 13795, 13794, 13799, 13798, 13796, 13797,
13807, 13806, 13804, 13805, 13800, 13801, 13803, 13802, 13760, 13761, 13763,
13762, 13767, 13766, 13764, 13765, 13775, 13774, 13772, 13773, 13768, 13769,
13771, 13770, 13791, 13790, 13788, 13789, 13784, 13785, 13787, 13786, 13776,
13777, 13779, 13778, 13783, 13782, 13780, 13781, 13696, 13697, 13699, 13698,
13703, 13702, 13700, 13701, 13711, 13710, 13708, 13709, 13704, 13705, 13707,
13706, 13727, 13726, 13724, 13725, 13720, 13721, 13723, 13722, 13712, 13713,
13715, 13714, 13719, 13718, 13716, 13717, 13759, 13758, 13756, 13757, 13752,
13753, 13755, 13754, 13744, 13745, 13747, 13746, 13751, 13750, 13748, 13749,
13728, 13729, 13731, 13730, 13735, 13734, 13732, 13733, 13743, 13742, 13740,
13741, 13736, 13737, 13739, 13738, 13568, 13569, 13571, 13570, 13575, 13574,
13572, 13573, 13583, 13582, 13580, 13581, 13576, 13577, 13579, 13578, 13599,
13598, 13596, 13597, 13592, 13593, 13595, 13594, 13584, 13585, 13587, 13586,
13591, 13590, 13588, 13589, 13631, 13630, 13628, 13629, 13624, 13625, 13627,
13626, 13616, 13617, 13619, 13618, 13623, 13622, 13620, 13621, 13600, 13601,
13603, 13602, 13607, 13606, 13604, 13605, 13615, 13614, 13612, 13613, 13608,
13609, 13611, 13610, 13695, 13694, 13692, 13693, 13688, 13689, 13691, 13690,
13680, 13681, 13683, 13682, 13687, 13686, 13684, 13685, 13664, 13665, 13667,
13666, 13671, 13670, 13668, 13669, 13679, 13678, 13676, 13677, 13672, 13673,
13675, 13674, 13632, 13633, 13635, 13634, 13639, 13638, 13636, 13637, 13647,
13646, 13644, 13645, 13640, 13641, 13643, 13642, 13663, 13662, 13660, 13661,
13656, 13657, 13659, 13658, 13648, 13649, 13651, 13650, 13655, 13654, 13652,
13653, 8192, 8193, 8195, 8194, 8199, 8198, 8196, 8197, 8207, 8206,
8204, 8205, 8200, 8201, 8203, 8202, 8223, 8222, 8220, 8221, 8216,
8217, 8219, 8218, 8208, 8209, 8211, 8210, 8215, 8214, 8212, 8213,
8255, 8254, 8252, 8253, 8248, 8249, 8251, 8250, 8240, 8241, 8243,
8242, 8247, 8246, 8244, 8245, 8224, 8225, 8227, 8226, 8231, 8230,
8228, 8229, 8239, 8238, 8236, 8237, 8232, 8233, 8235, 8234, 8319,
8318, 8316, 8317, 8312, 8313, 8315, 8314, 8304, 8305, 8307, 8306,
8311, 8310, 8308, 8309, 8288, 8289, 8291, 8290, 8295, 8294, 8292,
8293, 8303, 8302, 8300, 8301, 8296, 8297, 8299, 8298, 8256, 8257,
8259, 8258, 8263, 8262, 8260, 8261, 8271, 8270, 8268, 8269, 8264,
8265, 8267, 8266, 8287, 8286, 8284, 8285, 8280, 8281, 8283, 8282,
8272, 8273, 8275, 8274, 8279, 8278, 8276, 8277, 8447, 8446, 8444,
8445, 8440, 8441, 8443, 8442, 8432, 8433, 8435, 8434, 8439, 8438,
8436, 8437, 8416, 8417, 8419, 8418, 8423, 8422, 8420, 8421, 8431,
8430, 8428, 8429, 8424, 8425, 8427, 8426, 8384, 8385, 8387, 8386,
8391, 8390, 8388, 8389, 8399, 8398, 8396, 8397, 8392, 8393, 8395,
8394, 8415, 8414, 8412, 8413, 8408, 8409, 8411, 8410, 8400, 8401,
8403, 8402, 8407, 8406, 8404, 8405, 8320, 8321, 8323, 8322, 8327,
8326, 8324, 8325, 8335, 8334, 8332, 8333, 8328, 8329, 8331, 8330,
8351, 8350, 8348, 8349, 8344, 8345, 8347, 8346, 8336, 8337, 8339,
8338, 8343, 8342, 8340, 8341, 8383, 8382, 8380, 8381, 8376, 8377,
8379, 8378, 8368, 8369, 8371, 8370, 8375, 8374, 8372, 8373, 8352,
8353, 8355, 8354, 8359, 8358, 8356, 8357, 8367, 8366, 8364, 8365,
8360, 8361, 8363, 8362, 8703, 8702, 8700, 8701, 8696, 8697, 8699,
8698, 8688, 8689, 8691, 8690, 8695, 8694, 8692, 8693, 8672, 8673,
8675, 8674, 8679, 8678, 8676, 8677, 8687, 8686, 8684, 8685, 8680,
8681, 8683, 8682, 8640, 8641, 8643, 8642, 8647, 8646, 8644, 8645,
8655, 8654, 8652, 8653, 8648, 8649, 8651, 8650, 8671, 8670, 8668,
8669, 8664, 8665, 8667, 8666, 8656, 8657, 8659, 8658, 8663, 8662,
8660, 8661, 8576, 8577, 8579, 8578, 8583, 8582, 8580, 8581, 8591,
8590, 8588, 8589, 8584, 8585, 8587, 8586, 8607, 8606, 8604, 8605,
8600, 8601, 8603, 8602, 8592, 8593, 8595, 8594, 8599, 8598, 8596,
8597, 8639, 8638, 8636, 8637, 8632, 8633, 8635, 8634, 8624, 8625,
8627, 8626, 8631, 8630, 8628, 8629, 8608, 8609, 8611, 8610, 8615,
8614, 8612, 8613, 8623, 8622, 8620, 8621, 8616, 8617, 8619, 8618,
8448, 8449, 8451, 8450, 8455, 8454, 8452, 8453, 8463, 8462, 8460,
8461, 8456, 8457, 8459, 8458, 8479, 8478, 8476, 8477, 8472, 8473,
8475, 8474, 8464, 8465, 8467, 8466, 8471, 8470, 8468, 8469, 8511,
8510, 8508, 8509, 8504, 8505, 8507, 8506, 8496, 8497, 8499, 8498,
8503, 8502, 8500, 8501, 8480, 8481, 8483, 8482, 8487, 8486, 8484,
8485, 8495, 8494, 8492, 8493, 8488, 8489, 8491, 8490, 8575, 8574,
8572, 8573, 8568, 8569, 8571, 8570, 8560, 8561, 8563, 8562, 8567,
8566, 8564, 8565, 8544, 8545, 8547, 8546, 8551, 8550, 8548, 8549,
8559, 8558, 8556, 8557, 8552, 8553, 8555, 8554, 8512, 8513, 8515,
8514, 8519, 8518, 8516, 8517, 8527, 8526, 8524, 8525, 8520, 8521,
8523, 8522, 8543, 8542, 8540, 8541, 8536, 8537, 8539, 8538, 8528,
8529, 8531, 8530, 8535, 8534, 8532, 8533, 9215, 9214, 9212, 9213,
9208, 9209, 9211, 9210, 9200, 9201, 9203, 9202, 9207, 9206, 9204,
9205, 9184, 9185, 9187, 9186, 9191, 9190, 9188, 9189, 9199, 9198,
9196, 9197, 9192, 9193, 9195, 9194, 9152, 9153, 9155, 9154, 9159,
9158, 9156, 9157, 9167, 9166, 9164, 9165, 9160, 9161, 9163, 9162,
9183, 9182, 9180, 9181, 9176, 9177, 9179, 9178, 9168, 9169, 9171,
9170, 9175, 9174, 9172, 9173, 9088, 9089, 9091, 9090, 9095, 9094,
9092, 9093, 9103, 9102, 9100, 9101, 9096, 9097, 9099, 9098, 9119,
9118, 9116, 9117, 9112, 9113, 9115, 9114, 9104, 9105, 9107, 9106,
9111, 9110, 9108, 9109, 9151, 9150, 9148, 9149, 9144, 9145, 9147,
9146, 9136, 9137, 9139, 9138, 9143, 9142, 9140, 9141, 9120, 9121,
9123, 9122, 9127, 9126, 9124, 9125, 9135, 9134, 9132, 9133, 9128,
9129, 9131, 9130, 8960, 8961, 8963, 8962, 8967, 8966, 8964, 8965,
8975, 8974, 8972, 8973, 8968, 8969, 8971, 8970, 8991, 8990, 8988,
8989, 8984, 8985, 8987, 8986, 8976, 8977, 8979, 8978, 8983, 8982,
8980, 8981, 9023, 9022, 9020, 9021, 9016, 9017, 9019, 9018, 9008,
9009, 9011, 9010, 9015, 9014, 9012, 9013, 8992, 8993, 8995, 8994,
8999, 8998, 8996, 8997, 9007, 9006, 9004, 9005, 9000, 9001, 9003,
9002, 9087, 9086, 9084, 9085, 9080, 9081, 9083, 9082, 9072, 9073,
9075, 9074, 9079, 9078, 9076, 9077, 9056, 9057, 9059, 9058, 9063,
9062, 9060, 9061, 9071, 9070, 9068, 9069, 9064, 9065, 9067, 9066,
9024, 9025, 9027, 9026, 9031, 9030, 9028, 9029, 9039, 9038, 9036,
9037, 9032, 9033, 9035, 9034, 9055, 9054, 9052, 9053, 9048, 9049,
9051, 9050, 9040, 9041, 9043, 9042, 9047, 9046, 9044, 9045, 8704,
8705, 8707, 8706, 8711, 8710, 8708, 8709, 8719, 8718, 8716, 8717,
8712, 8713, 8715, 8714, 8735, 8734, 8732, 8733, 8728, 8729, 8731,
8730, 8720, 8721, 8723, 8722, 8727, 8726, 8724, 8725, 8767, 8766,
8764, 8765, 8760, 8761, 8763, 8762, 8752, 8753, 8755, 8754, 8759,
8758, 8756, 8757, 8736, 8737, 8739, 8738, 8743, 8742, 8740, 8741,
8751, 8750, 8748, 8749, 8744, 8745, 8747, 8746, 8831, 8830, 8828,
8829, 8824, 8825, 8827, 8826, 8816, 8817, 8819, 8818, 8823, 8822,
8820, 8821, 8800, 8801, 8803, 8802, 8807, 8806, 8804, 8805, 8815,
8814, 8812, 8813, 8808, 8809, 8811, 8810, 8768, 8769, 8771, 8770,
8775, 8774, 8772, 8773, 8783, 8782, 8780, 8781, 8776, 8777, 8779,
8778, 8799, 8798, 8796, 8797, 8792, 8793, 8795, 8794, 8784, 8785,
8787, 8786, 8791, 8790, 8788, 8789, 8959, 8958, 8956, 8957, 8952,
8953, 8955, 8954, 8944, 8945, 8947, 8946, 8951, 8950, 8948, 8949,
8928, 8929, 8931, 8930, 8935, 8934, 8932, 8933, 8943, 8942, 8940,
8941, 8936, 8937, 8939, 8938, 8896, 8897, 8899, 8898, 8903, 8902,
8900, 8901, 8911, 8910, 8908, 8909, 8904, 8905, 8907, 8906, 8927,
8926, 8924, 8925, 8920, 8921, 8923, 8922, 8912, 8913, 8915, 8914,
8919, 8918, 8916, 8917, 8832, 8833, 8835, 8834, 8839, 8838, 8836,
8837, 8847, 8846, 8844, 8845, 8840, 8841, 8843, 8842, 8863, 8862,
8860, 8861, 8856, 8857, 8859, 8858, 8848, 8849, 8851, 8850, 8855,
8854, 8852, 8853, 8895, 8894, 8892, 8893, 8888, 8889, 8891, 8890,
8880, 8881, 8883, 8882, 8887, 8886, 8884, 8885, 8864, 8865, 8867,
8866, 8871, 8870, 8868, 8869, 8879, 8878, 8876, 8877, 8872, 8873,
8875, 8874, 10239, 10238, 10236, 10237, 10232, 10233, 10235, 10234, 10224,
10225, 10227, 10226, 10231, 10230, 10228, 10229, 10208, 10209, 10211, 10210,
10215, 10214, 10212, 10213, 10223, 10222, 10220, 10221, 10216, 10217, 10219,
10218, 10176, 10177, 10179, 10178, 10183, 10182, 10180, 10181, 10191, 10190,
10188, 10189, 10184, 10185, 10187, 10186, 10207, 10206, 10204, 10205, 10200,
10201, 10203, 10202, 10192, 10193, 10195, 10194, 10199, 10198, 10196, 10197,
10112, 10113, 10115, 10114, 10119, 10118, 10116, 10117, 10127, 10126, 10124,
10125, 10120, 10121, 10123, 10122, 10143, 10142, 10140, 10141, 10136, 10137,
10139, 10138, 10128, 10129, 10131, 10130, 10135, 10134, 10132, 10133, 10175,
10174, 10172, 10173, 10168, 10169, 10171, 10170, 10160, 10161, 10163, 10162,
10167, 10166, 10164, 10165, 10144, 10145, 10147, 10146, 10151, 10150, 10148,
10149, 10159, 10158, 10156, 10157, 10152, 10153, 10155, 10154, 9984, 9985,
9987, 9986, 9991, 9990, 9988, 9989, 9999, 9998, 9996, 9997, 9992,
9993, 9995, 9994, 10015, 10014, 10012, 10013, 10008, 10009, 10011, 10010,
10000, 10001, 10003, 10002, 10007, 10006, 10004, 10005, 10047, 10046, 10044,
10045, 10040, 10041, 10043, 10042, 10032, 10033, 10035, 10034, 10039, 10038,
10036, 10037, 10016, 10017, 10019, 10018, 10023, 10022, 10020, 10021, 10031,
10030, 10028, 10029, 10024, 10025, 10027, 10026, 10111, 10110, 10108, 10109,
10104, 10105, 10107, 10106, 10096, 10097, 10099, 10098, 10103, 10102, 10100,
10101, 10080, 10081, 10083, 10082, 10087, 10086, 10084, 10085, 10095, 10094,
10092, 10093, 10088, 10089, 10091, 10090, 10048, 10049, 10051, 10050, 10055,
10054, 10052, 10053, 10063, 10062, 10060, 10061, 10056, 10057, 10059, 10058,
10079, 10078, 10076, 10077, 10072, 10073, 10075, 10074, 10064, 10065, 10067,
10066, 10071, 10070, 10068, 10069, 9728, 9729, 9731, 9730, 9735, 9734,
9732, 9733, 9743, 9742, 9740, 9741, 9736, 9737, 9739, 9738, 9759,
9758, 9756, 9757, 9752, 9753, 9755, 9754, 9744, 9745, 9747, 9746,
9751, 9750, 9748, 9749, 9791, 9790, 9788, 9789, 9784, 9785, 9787,
9786, 9776, 9777, 9779, 9778, 9783, 9782, 9780, 9781, 9760, 9761,
9763, 9762, 9767, 9766, 9764, 9765, 9775, 9774, 9772, 9773, 9768,
9769, 9771, 9770, 9855, 9854, 9852, 9853, 9848, 9849, 9851, 9850,
9840, 9841, 9843, 9842, 9847, 9846, 9844, 9845, 9824, 9825, 9827,
9826, 9831, 9830, 9828, 9829, 9839, 9838, 9836, 9837, 9832, 9833,
9835, 9834, 9792, 9793, 9795, 9794, 9799, 9798, 9796, 9797, 9807,
9806, 9804, 9805, 9800, 9801, 9803, 9802, 9823, 9822, 9820, 9821,
9816, 9817, 9819, 9818, 9808, 9809, 9811, 9810, 9815, 9814, 9812,
9813, 9983, 9982, 9980, 9981, 9976, 9977, 9979, 9978, 9968, 9969,
9971, 9970, 9975, 9974, 9972, 9973, 9952, 9953, 9955, 9954, 9959,
9958, 9956, 9957, 9967, 9966, 9964, 9965, 9960, 9961, 9963, 9962,
9920, 9921, 9923, 9922, 9927, 9926, 9924, 9925, 9935, 9934, 9932,
9933, 9928, 9929, 9931, 9930, 9951, 9950, 9948, 9949, 9944, 9945,
9947, 9946, 9936, 9937, 9939, 9938, 9943, 9942, 9940, 9941, 9856,
9857, 9859, 9858, 9863, 9862, 9860, 9861, 9871, 9870, 9868, 9869,
9864, 9865, 9867, 9866, 9887, 9886, 9884, 9885, 9880, 9881, 9883,
9882, 9872, 9873, 9875, 9874, 9879, 9878, 9876, 9877, 9919, 9918,
9916, 9917, 9912, 9913, 9915, 9914, 9904, 9905, 9907, 9906, 9911,
9910, 9908, 9909, 9888, 9889, 9891, 9890, 9895, 9894, 9892, 9893,
9903, 9902, 9900, 9901, 9896, 9897, 9899, 9898, 9216, 9217, 9219,
9218, 9223, 9222, 9220, 9221, 9231, 9230, 9228, 9229, 9224, 9225,
9227, 9226, 9247, 9246, 9244, 9245, 9240, 9241, 9243, 9242, 9232,
9233, 9235, 9234, 9239, 9238, 9236, 9237, 9279, 9278, 9276, 9277,
9272, 9273, 9275, 9274, 9264, 9265, 9267, 9266, 9271, 9270, 9268,
9269, 9248, 9249, 9251, 9250, 9255, 9254, 9252, 9253, 9263, 9262,
9260, 9261, 9256, 9257, 9259, 9258, 9343, 9342, 9340, 9341, 9336,
9337, 9339, 9338, 9328, 9329, 9331, 9330, 9335, 9334, 9332, 9333,
9312, 9313, 9315, 9314, 9319, 9318, 9316, 9317, 9327, 9326, 9324,
9325, 9320, 9321, 9323, 9322, 9280, 9281, 9283, 9282, 9287, 9286,
9284, 9285, 9295, 9294, 9292, 9293, 9288, 9289, 9291, 9290, 9311,
9310, 9308, 9309, 9304, 9305, 9307, 9306, 9296, 9297, 9299, 9298,
9303, 9302, 9300, 9301, 9471, 9470, 9468, 9469, 9464, 9465, 9467,
9466, 9456, 9457, 9459, 9458, 9463, 9462, 9460, 9461, 9440, 9441,
9443, 9442, 9447, 9446, 9444, 9445, 9455, 9454, 9452, 9453, 9448,
9449, 9451, 9450, 9408, 9409, 9411, 9410, 9415, 9414, 9412, 9413,
9423, 9422, 9420, 9421, 9416, 9417, 9419, 9418, 9439, 9438, 9436,
9437, 9432, 9433, 9435, 9434, 9424, 9425, 9427, 9426, 9431, 9430,
9428, 9429, 9344, 9345, 9347, 9346, 9351, 9350, 9348, 9349, 9359,
9358, 9356, 9357, 9352, 9353, 9355, 9354, 9375, 9374, 9372, 9373,
9368, 9369, 9371, 9370, 9360, 9361, 9363, 9362, 9367, 9366, 9364,
9365, 9407, 9406, 9404, 9405, 9400, 9401, 9403, 9402, 9392, 9393,
9395, 9394, 9399, 9398, 9396, 9397, 9376, 9377, 9379, 9378, 9383,
9382, 9380, 9381, 9391, 9390, 9388, 9389, 9384, 9385, 9387, 9386,
9727, 9726, 9724, 9725, 9720, 9721, 9723, 9722, 9712, 9713, 9715,
9714, 9719, 9718, 9716, 9717, 9696, 9697, 9699, 9698, 9703, 9702,
9700, 9701, 9711, 9710, 9708, 9709, 9704, 9705, 9707, 9706, 9664,
9665, 9667, 9666, 9671, 9670, 9668, 9669, 9679, 9678, 9676, 9677,
9672, 9673, 9675, 9674, 9695, 9694, 9692, 9693, 9688, 9689, 9691,
9690, 9680, 9681, 9683, 9682, 9687, 9686, 9684, 9685, 9600, 9601,
9603, 9602, 9607, 9606, 9604, 9605, 9615, 9614, 9612, 9613, 9608,
9609, 9611, 9610, 9631, 9630, 9628, 9629, 9624, 9625, 9627, 9626,
9616, 9617, 9619, 9618, 9623, 9622, 9620, 9621, 9663, 9662, 9660,
9661, 9656, 9657, 9659, 9658, 9648, 9649, 9651, 9650, 9655, 9654,
9652, 9653, 9632, 9633, 9635, 9634, 9639, 9638, 9636, 9637, 9647,
9646, 9644, 9645, 9640, 9641, 9643, 9642, 9472, 9473, 9475, 9474,
9479, 9478, 9476, 9477, 9487, 9486, 9484, 9485, 9480, 9481, 9483,
9482, 9503, 9502, 9500, 9501, 9496, 9497, 9499, 9498, 9488, 9489,
9491, 9490, 9495, 9494, 9492, 9493, 9535, 9534, 9532, 9533, 9528,
9529, 9531, 9530, 9520, 9521, 9523, 9522, 9527, 9526, 9524, 9525,
9504, 9505, 9507, 9506, 9511, 9510, 9508, 9509, 9519, 9518, 9516,
9517, 9512, 9513, 9515, 9514, 9599, 9598, 9596, 9597, 9592, 9593,
9595, 9594, 9584, 9585, 9587, 9586, 9591, 9590, 9588, 9589, 9568,
9569, 9571, 9570, 9575, 9574, 9572, 9573, 9583, 9582, 9580, 9581,
9576, 9577, 9579, 9578, 9536, 9537, 9539, 9538, 9543, 9542, 9540,
9541, 9551, 9550, 9548, 9549, 9544, 9545, 9547, 9546, 9567, 9566,
9564, 9565, 9560, 9561, 9563, 9562, 9552, 9553, 9555, 9554, 9559,
9558, 9556, 9557, 12287, 12286, 12284, 12285, 12280, 12281, 12283, 12282,
12272, 12273, 12275, 12274, 12279, 12278, 12276, 12277, 12256, 12257, 12259,
12258, 12263, 12262, 12260, 12261, 12271, 12270, 12268, 12269, 12264, 12265,
12267, 12266, 12224, 12225, 12227, 12226, 12231, 12230, 12228, 12229, 12239,
12238, 12236, 12237, 12232, 12233, 12235, 12234, 12255, 12254, 12252, 12253,
12248, 12249, 12251, 12250, 12240, 12241, 12243, 12242, 12247, 12246, 12244,
12245, 12160, 12161, 12163, 12162, 12167, 12166, 12164, 12165, 12175, 12174,
12172, 12173, 12168, 12169, 12171, 12170, 12191, 12190, 12188, 12189, 12184,
12185, 12187, 12186, 12176, 12177, 12179, 12178, 12183, 12182, 12180, 12181,
12223, 12222, 12220, 12221, 12216, 12217, 12219, 12218, 12208, 12209, 12211,
12210, 12215, 12214, 12212, 12213, 12192, 12193, 12195, 12194, 12199, 12198,
12196, 12197, 12207, 12206, 12204, 12205, 12200, 12201, 12203, 12202, 12032,
12033, 12035, 12034, 12039, 12038, 12036, 12037, 12047, 12046, 12044, 12045,
12040, 12041, 12043, 12042, 12063, 12062, 12060, 12061, 12056, 12057, 12059,
12058, 12048, 12049, 12051, 12050, 12055, 12054, 12052, 12053, 12095, 12094,
12092, 12093, 12088, 12089, 12091, 12090, 12080, 12081, 12083, 12082, 12087,
12086, 12084, 12085, 12064, 12065, 12067, 12066, 12071, 12070, 12068, 12069,
12079, 12078, 12076, 12077, 12072, 12073, 12075, 12074, 12159, 12158, 12156,
12157, 12152, 12153, 12155, 12154, 12144, 12145, 12147, 12146, 12151, 12150,
12148, 12149, 12128, 12129, 12131, 12130, 12135, 12134, 12132, 12133, 12143,
12142, 12140, 12141, 12136, 12137, 12139, 12138, 12096, 12097, 12099, 12098,
12103, 12102, 12100, 12101, 12111, 12110, 12108, 12109, 12104, 12105, 12107,
12106, 12127, 12126, 12124, 12125, 12120, 12121, 12123, 12122, 12112, 12113,
12115, 12114, 12119, 12118, 12116, 12117, 11776, 11777, 11779, 11778, 11783,
11782, 11780, 11781, 11791, 11790, 11788, 11789, 11784, 11785, 11787, 11786,
11807, 11806, 11804, 11805, 11800, 11801, 11803, 11802, 11792, 11793, 11795,
11794, 11799, 11798, 11796, 11797, 11839, 11838, 11836, 11837, 11832, 11833,
11835, 11834, 11824, 11825, 11827, 11826, 11831, 11830, 11828, 11829, 11808,
11809, 11811, 11810, 11815, 11814, 11812, 11813, 11823, 11822, 11820, 11821,
11816, 11817, 11819, 11818, 11903, 11902, 11900, 11901, 11896, 11897, 11899,
11898, 11888, 11889, 11891, 11890, 11895, 11894, 11892, 11893, 11872, 11873,
11875, 11874, 11879, 11878, 11876, 11877, 11887, 11886, 11884, 11885, 11880,
11881, 11883, 11882, 11840, 11841, 11843, 11842, 11847, 11846, 11844, 11845,
11855, 11854, 11852, 11853, 11848, 11849, 11851, 11850, 11871, 11870, 11868,
11869, 11864, 11865, 11867, 11866, 11856, 11857, 11859, 11858, 11863, 11862,
11860, 11861, 12031, 12030, 12028, 12029, 12024, 12025, 12027, 12026, 12016,
12017, 12019, 12018, 12023, 12022, 12020, 12021, 12000, 12001, 12003, 12002,
12007, 12006, 12004, 12005, 12015, 12014, 12012, 12013, 12008, 12009, 12011,
12010, 11968, 11969, 11971, 11970, 11975, 11974, 11972, 11973, 11983, 11982,
11980, 11981, 11976, 11977, 11979, 11978, 11999, 11998, 11996, 11997, 11992,
11993, 11995, 11994, 11984, 11985, 11987, 11986, 11991, 11990, 11988, 11989,
11904, 11905, 11907, 11906, 11911, 11910, 11908, 11909, 11919, 11918, 11916,
11917, 11912, 11913, 11915, 11914, 11935, 11934, 11932, 11933, 11928, 11929,
11931, 11930, 11920, 11921, 11923, 11922, 11927, 11926, 11924, 11925, 11967,
11966, 11964, 11965, 11960, 11961, 11963, 11962, 11952, 11953, 11955, 11954,
11959, 11958, 11956, 11957, 11936, 11937, 11939, 11938, 11943, 11942, 11940,
11941, 11951, 11950, 11948, 11949, 11944, 11945, 11947, 11946, 11264, 11265,
11267, 11266, 11271, 11270, 11268, 11269, 11279, 11278, 11276, 11277, 11272,
11273, 11275, 11274, 11295, 11294, 11292, 11293, 11288, 11289, 11291, 11290,
11280, 11281, 11283, 11282, 11287, 11286, 11284, 11285, 11327, 11326, 11324,
11325, 11320, 11321, 11323, 11322, 11312, 11313, 11315, 11314, 11319, 11318,
11316, 11317, 11296, 11297, 11299, 11298, 11303, 11302, 11300, 11301, 11311,
11310, 11308, 11309, 11304, 11305, 11307, 11306, 11391, 11390, 11388, 11389,
11384, 11385, 11387, 11386, 11376, 11377, 11379, 11378, 11383, 11382, 11380,
11381, 11360, 11361, 11363, 11362, 11367, 11366, 11364, 11365, 11375, 11374,
11372, 11373, 11368, 11369, 11371, 11370, 11328, 11329, 11331, 11330, 11335,
11334, 11332, 11333, 11343, 11342, 11340, 11341, 11336, 11337, 11339, 11338,
11359, 11358, 11356, 11357, 11352, 11353, 11355, 11354, 11344, 11345, 11347,
11346, 11351, 11350, 11348, 11349, 11519, 11518, 11516, 11517, 11512, 11513,
11515, 11514, 11504, 11505, 11507, 11506, 11511, 11510, 11508, 11509, 11488,
11489, 11491, 11490, 11495, 11494, 11492, 11493, 11503, 11502, 11500, 11501,
11496, 11497, 11499, 11498, 11456, 11457, 11459, 11458, 11463, 11462, 11460,
11461, 11471, 11470, 11468, 11469, 11464, 11465, 11467, 11466, 11487, 11486,
11484, 11485, 11480, 11481, 11483, 11482, 11472, 11473, 11475, 11474, 11479,
11478, 11476, 11477, 11392, 11393, 11395, 11394, 11399, 11398, 11396, 11397,
11407, 11406, 11404, 11405, 11400, 11401, 11403, 11402, 11423, 11422, 11420,
11421, 11416, 11417, 11419, 11418, 11408, 11409, 11411, 11410, 11415, 11414,
11412, 11413, 11455, 11454, 11452, 11453, 11448, 11449, 11451, 11450, 11440,
11441, 11443, 11442, 11447, 11446, 11444, 11445, 11424, 11425, 11427, 11426,
11431, 11430, 11428, 11429, 11439, 11438, 11436, 11437, 11432, 11433, 11435,
11434, 11775, 11774, 11772, 11773, 11768, 11769, 11771, 11770, 11760, 11761,
11763, 11762, 11767, 11766, 11764, 11765, 11744, 11745, 11747, 11746, 11751,
11750, 11748, 11749, 11759, 11758, 11756, 11757, 11752, 11753, 11755, 11754,
11712, 11713, 11715, 11714, 11719, 11718, 11716, 11717, 11727, 11726, 11724,
11725, 11720, 11721, 11723, 11722, 11743, 11742, 11740, 11741, 11736, 11737,
11739, 11738, 11728, 11729, 11731, 11730, 11735, 11734, 11732, 11733, 11648,
11649, 11651, 11650, 11655, 11654, 11652, 11653, 11663, 11662, 11660, 11661,
11656, 11657, 11659, 11658, 11679, 11678, 11676, 11677, 11672, 11673, 11675,
11674, 11664, 11665, 11667, 11666, 11671, 11670, 11668, 11669, 11711, 11710,
11708, 11709, 11704, 11705, 11707, 11706, 11696, 11697, 11699, 11698, 11703,
11702, 11700, 11701, 11680, 11681, 11683, 11682, 11687, 11686, 11684, 11685,
11695, 11694, 11692, 11693, 11688, 11689, 11691, 11690, 11520, 11521, 11523,
11522, 11527, 11526, 11524, 11525, 11535, 11534, 11532, 11533, 11528, 11529,
11531, 11530, 11551, 11550, 11548, 11549, 11544, 11545, 11547, 11546, 11536,
11537, 11539, 11538, 11543, 11542, 11540, 11541, 11583, 11582, 11580, 11581,
11576, 11577, 11579, 11578, 11568, 11569, 11571, 11570, 11575, 11574, 11572,
11573, 11552, 11553, 11555, 11554, 11559, 11558, 11556, 11557, 11567, 11566,
11564, 11565, 11560, 11561, 11563, 11562, 11647, 11646, 11644, 11645, 11640,
11641, 11643, 11642, 11632, 11633, 11635, 11634, 11639, 11638, 11636, 11637,
11616, 11617, 11619, 11618, 11623, 11622, 11620, 11621, 11631, 11630, 11628,
11629, 11624, 11625, 11627, 11626, 11584, 11585, 11587, 11586, 11591, 11590,
11588, 11589, 11599, 11598, 11596, 11597, 11592, 11593, 11595, 11594, 11615,
11614, 11612, 11613, 11608, 11609, 11611, 11610, 11600, 11601, 11603, 11602,
11607, 11606, 11604, 11605, 10240, 10241, 10243, 10242, 10247, 10246, 10244,
10245, 10255, 10254, 10252, 10253, 10248, 10249, 10251, 10250, 10271, 10270,
10268, 10269, 10264, 10265, 10267, 10266, 10256, 10257, 10259, 10258, 10263,
10262, 10260, 10261, 10303, 10302, 10300, 10301, 10296, 10297, 10299, 10298,
10288, 10289, 10291, 10290, 10295, 10294, 10292, 10293, 10272, 10273, 10275,
10274, 10279, 10278, 10276, 10277, 10287, 10286, 10284, 10285, 10280, 10281,
10283, 10282, 10367, 10366, 10364, 10365, 10360, 10361, 10363, 10362, 10352,
10353, 10355, 10354, 10359, 10358, 10356, 10357, 10336, 10337, 10339, 10338,
10343, 10342, 10340, 10341, 10351, 10350, 10348, 10349, 10344, 10345, 10347,
10346, 10304, 10305, 10307, 10306, 10311, 10310, 10308, 10309, 10319, 10318,
10316, 10317, 10312, 10313, 10315, 10314, 10335, 10334, 10332, 10333, 10328,
10329, 10331, 10330, 10320, 10321, 10323, 10322, 10327, 10326, 10324, 10325,
10495, 10494, 10492, 10493, 10488, 10489, 10491, 10490, 10480, 10481, 10483,
10482, 10487, 10486, 10484, 10485, 10464, 10465, 10467, 10466, 10471, 10470,
10468, 10469, 10479, 10478, 10476, 10477, 10472, 10473, 10475, 10474, 10432,
10433, 10435, 10434, 10439, 10438, 10436, 10437, 10447, 10446, 10444, 10445,
10440, 10441, 10443, 10442, 10463, 10462, 10460, 10461, 10456, 10457, 10459,
10458, 10448, 10449, 10451, 10450, 10455, 10454, 10452, 10453, 10368, 10369,
10371, 10370, 10375, 10374, 10372, 10373, 10383, 10382, 10380, 10381, 10376,
10377, 10379, 10378, 10399, 10398, 10396, 10397, 10392, 10393, 10395, 10394,
10384, 10385, 10387, 10386, 10391, 10390, 10388, 10389, 10431, 10430, 10428,
10429, 10424, 10425, 10427, 10426, 10416, 10417, 10419, 10418, 10423, 10422,
10420, 10421, 10400, 10401, 10403, 10402, 10407, 10406, 10404, 10405, 10415,
10414, 10412, 10413, 10408, 10409, 10411, 10410, 10751, 10750, 10748, 10749,
10744, 10745, 10747, 10746, 10736, 10737, 10739, 10738, 10743, 10742, 10740,
10741, 10720, 10721, 10723, 10722, 10727, 10726, 10724, 10725, 10735, 10734,
10732, 10733, 10728, 10729, 10731, 10730, 10688, 10689, 10691, 10690, 10695,
10694, 10692, 10693, 10703, 10702, 10700, 10701, 10696, 10697, 10699, 10698,
10719, 10718, 10716, 10717, 10712, 10713, 10715, 10714, 10704, 10705, 10707,
10706, 10711, 10710, 10708, 10709, 10624, 10625, 10627, 10626, 10631, 10630,
10628, 10629, 10639, 10638, 10636, 10637, 10632, 10633, 10635, 10634, 10655,
10654, 10652, 10653, 10648, 10649, 10651, 10650, 10640, 10641, 10643, 10642,
10647, 10646, 10644, 10645, 10687, 10686, 10684, 10685, 10680, 10681, 10683,
10682, 10672, 10673, 10675, 10674, 10679, 10678, 10676, 10677, 10656, 10657,
10659, 10658, 10663, 10662, 10660, 10661, 10671, 10670, 10668, 10669, 10664,
10665, 10667, 10666, 10496, 10497, 10499, 10498, 10503, 10502, 10500, 10501,
10511, 10510, 10508, 10509, 10504, 10505, 10507, 10506, 10527, 10526, 10524,
10525, 10520, 10521, 10523, 10522, 10512, 10513, 10515, 10514, 10519, 10518,
10516, 10517, 10559, 10558, 10556, 10557, 10552, 10553, 10555, 10554, 10544,
10545, 10547, 10546, 10551, 10550, 10548, 10549, 10528, 10529, 10531, 10530,
10535, 10534, 10532, 10533, 10543, 10542, 10540, 10541, 10536, 10537, 10539,
10538, 10623, 10622, 10620, 10621, 10616, 10617, 10619, 10618, 10608, 10609,
10611, 10610, 10615, 10614, 10612, 10613, 10592, 10593, 10595, 10594, 10599,
10598, 10596, 10597, 10607, 10606, 10604, 10605, 10600, 10601, 10603, 10602,
10560, 10561, 10563, 10562, 10567, 10566, 10564, 10565, 10575, 10574, 10572,
10573, 10568, 10569, 10571, 10570, 10591, 10590, 10588, 10589, 10584, 10585,
10587, 10586, 10576, 10577, 10579, 10578, 10583, 10582, 10580, 10581, 11263,
11262, 11260, 11261, 11256, 11257, 11259, 11258, 11248, 11249, 11251, 11250,
11255, 11254, 11252, 11253, 11232, 11233, 11235, 11234, 11239, 11238, 11236,
11237, 11247, 11246, 11244, 11245, 11240, 11241, 11243, 11242, 11200, 11201,
11203, 11202, 11207, 11206, 11204, 11205, 11215, 11214, 11212, 11213, 11208,
11209, 11211, 11210, 11231, 11230, 11228, 11229, 11224, 11225, 11227, 11226,
11216, 11217, 11219, 11218, 11223, 11222, 11220, 11221, 11136, 11137, 11139,
11138, 11143, 11142, 11140, 11141, 11151, 11150, 11148, 11149, 11144, 11145,
11147, 11146, 11167, 11166, 11164, 11165, 11160, 11161, 11163, 11162, 11152,
11153, 11155, 11154, 11159, 11158, 11156, 11157, 11199, 11198, 11196, 11197,
11192, 11193, 11195, 11194, 11184, 11185, 11187, 11186, 11191, 11190, 11188,
11189, 11168, 11169, 11171, 11170, 11175, 11174, 11172, 11173, 11183, 11182,
11180, 11181, 11176, 11177, 11179, 11178, 11008, 11009, 11011, 11010, 11015,
11014, 11012, 11013, 11023, 11022, 11020, 11021, 11016, 11017, 11019, 11018,
11039, 11038, 11036, 11037, 11032, 11033, 11035, 11034, 11024, 11025, 11027,
11026, 11031, 11030, 11028, 11029, 11071, 11070, 11068, 11069, 11064, 11065,
11067, 11066, 11056, 11057, 11059, 11058, 11063, 11062, 11060, 11061, 11040,
11041, 11043, 11042, 11047, 11046, 11044, 11045, 11055, 11054, 11052, 11053,
11048, 11049, 11051, 11050, 11135, 11134, 11132, 11133, 11128, 11129, 11131,
11130, 11120, 11121, 11123, 11122, 11127, 11126, 11124, 11125, 11104, 11105,
11107, 11106, 11111, 11110, 11108, 11109, 11119, 11118, 11116, 11117, 11112,
11113, 11115, 11114, 11072, 11073, 11075, 11074, 11079, 11078, 11076, 11077,
11087, 11086, 11084, 11085, 11080, 11081, 11083, 11082, 11103, 11102, 11100,
11101, 11096, 11097, 11099, 11098, 11088, 11089, 11091, 11090, 11095, 11094,
11092, 11093, 10752, 10753, 10755, 10754, 10759, 10758, 10756, 10757, 10767,
10766, 10764, 10765, 10760, 10761, 10763, 10762, 10783, 10782, 10780, 10781,
10776, 10777, 10779, 10778, 10768, 10769, 10771, 10770, 10775, 10774, 10772,
10773, 10815, 10814, 10812, 10813, 10808, 10809, 10811, 10810, 10800, 10801,
10803, 10802, 10807, 10806, 10804, 10805, 10784, 10785, 10787, 10786, 10791,
10790, 10788, 10789, 10799, 10798, 10796, 10797, 10792, 10793, 10795, 10794,
10879, 10878, 10876, 10877, 10872, 10873, 10875, 10874, 10864, 10865, 10867,
10866, 10871, 10870, 10868, 10869, 10848, 10849, 10851, 10850, 10855, 10854,
10852, 10853, 10863, 10862, 10860, 10861, 10856, 10857, 10859, 10858, 10816,
10817, 10819, 10818, 10823, 10822, 10820, 10821, 10831, 10830, 10828, 10829,
10824, 10825, 10827, 10826, 10847, 10846, 10844, 10845, 10840, 10841, 10843,
10842, 10832, 10833, 10835, 10834, 10839, 10838, 10836, 10837, 11007, 11006,
11004, 11005, 11000, 11001, 11003, 11002, 10992, 10993, 10995, 10994, 10999,
10998, 10996, 10997, 10976, 10977, 10979, 10978, 10983, 10982, 10980, 10981,
10991, 10990, 10988, 10989, 10984, 10985, 10987, 10986, 10944, 10945, 10947,
10946, 10951, 10950, 10948, 10949, 10959, 10958, 10956, 10957, 10952, 10953,
10955, 10954, 10975, 10974, 10972, 10973, 10968, 10969, 10971, 10970, 10960,
10961, 10963, 10962, 10967, 10966, 10964, 10965, 10880, 10881, 10883, 10882,
10887, 10886, 10884, 10885, 10895, 10894, 10892, 10893, 10888, 10889, 10891,
10890, 10911, 10910, 10908, 10909, 10904, 10905, 10907, 10906, 10896, 10897,
10899, 10898, 10903, 10902, 10900, 10901, 10943, 10942, 10940, 10941, 10936,
10937, 10939, 10938, 10928, 10929, 10931, 10930, 10935, 10934, 10932, 10933,
10912, 10913, 10915, 10914, 10919, 10918, 10916, 10917, 10927, 10926, 10924,
10925, 10920, 10921, 10923, 10922};
} // namespace lookup
} // namespace t3r
} // namespace vx
| [
"steffen.kiess@cis.iti.uni-stuttgart.de"
] | steffen.kiess@cis.iti.uni-stuttgart.de |
88e3644907aaf765f351216d7df122c65ad492e5 | 7abbbef9590f9c4b9469adcbae5ea8907478bf03 | /chromium_git/chromium/src/out/Debug/gen/blink/bindings/modules/v8/V8ErrorCallback.cpp | 74612e4425db099ed86cfa3ceaa12f4df6ef8c34 | [
"BSD-3-Clause"
] | permissive | GiorgiGagnidze/CEF | 845bdc2f54833254b3454ba8f6c61449431c7884 | fbfc30b5d60f1ea7157da449e34dd9ba9c50f360 | refs/heads/master | 2021-01-10T17:32:27.640882 | 2016-03-23T07:43:04 | 2016-03-23T07:43:04 | 54,463,340 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,647 | cpp | // Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// This file has been auto-generated by code_generator_v8.py. DO NOT MODIFY!
#include "V8ErrorCallback.h"
#include "bindings/core/v8/ScriptController.h"
#include "bindings/core/v8/V8Binding.h"
#include "bindings/core/v8/V8FileError.h"
#include "core/dom/ExecutionContext.h"
#include "wtf/Assertions.h"
#include "wtf/GetPtr.h"
#include "wtf/RefPtr.h"
namespace blink {
V8ErrorCallback::V8ErrorCallback(v8::Local<v8::Function> callback, ScriptState* scriptState)
: ActiveDOMCallback(scriptState->executionContext())
, m_scriptState(scriptState)
{
m_callback.set(scriptState->isolate(), callback);
}
V8ErrorCallback::~V8ErrorCallback()
{
}
DEFINE_TRACE(V8ErrorCallback)
{
ErrorCallback::trace(visitor);
ActiveDOMCallback::trace(visitor);
}
void V8ErrorCallback::handleEvent(FileError* error)
{
if (!canInvokeCallback())
return;
if (!m_scriptState->contextIsValid())
return;
ScriptState::Scope scope(m_scriptState.get());
v8::Local<v8::Value> errorHandle = toV8(error, m_scriptState->context()->Global(), m_scriptState->isolate());
if (errorHandle.IsEmpty()) {
if (!isScriptControllerTerminating())
CRASH();
return;
}
v8::Local<v8::Value> argv[] = { errorHandle };
ScriptController::callFunction(m_scriptState->executionContext(), m_callback.newLocal(m_scriptState->isolate()), v8::Undefined(m_scriptState->isolate()), 1, argv, m_scriptState->isolate());
}
} // namespace blink
| [
"ggagn12@freeuni.edu.ge"
] | ggagn12@freeuni.edu.ge |
730c8dff96ed45820fb2c3cba815d94f4ae2c94c | 5456502f97627278cbd6e16d002d50f1de3da7bb | /ash/common/wm/overview/window_selector_item.cc | d72a4f4632bb9eda507710eaa31245f401cf7f82 | [
"BSD-3-Clause"
] | permissive | TrellixVulnTeam/Chromium_7C66 | 72d108a413909eb3bd36c73a6c2f98de1573b6e5 | c8649ab2a0f5a747369ed50351209a42f59672ee | refs/heads/master | 2023-03-16T12:51:40.231959 | 2017-12-20T10:38:26 | 2017-12-20T10:38:26 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 33,281 | 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 "ash/common/wm/overview/window_selector_item.h"
#include <algorithm>
#include <vector>
#include "ash/common/material_design/material_design_controller.h"
#include "ash/common/metrics/user_metrics_action.h"
#include "ash/common/wm/overview/cleanup_animation_observer.h"
#include "ash/common/wm/overview/overview_animation_type.h"
#include "ash/common/wm/overview/scoped_overview_animation_settings.h"
#include "ash/common/wm/overview/scoped_overview_animation_settings_factory.h"
#include "ash/common/wm/overview/scoped_transform_overview_window.h"
#include "ash/common/wm/overview/window_selector.h"
#include "ash/common/wm/overview/window_selector_controller.h"
#include "ash/common/wm/window_state.h"
#include "ash/common/wm_lookup.h"
#include "ash/common/wm_root_window_controller.h"
#include "ash/common/wm_shell.h"
#include "ash/common/wm_window.h"
#include "ash/common/wm_window_property.h"
#include "ash/public/cpp/shell_window_ids.h"
#include "base/auto_reset.h"
#include "base/strings/string_util.h"
#include "base/strings/utf_string_conversions.h"
#include "base/time/time.h"
#include "grit/ash_strings.h"
#include "ui/base/l10n/l10n_util.h"
#include "ui/compositor/layer_animation_sequence.h"
#include "ui/compositor/scoped_animation_duration_scale_mode.h"
#include "ui/gfx/animation/slide_animation.h"
#include "ui/gfx/canvas.h"
#include "ui/gfx/color_utils.h"
#include "ui/gfx/geometry/safe_integer_conversions.h"
#include "ui/gfx/paint_vector_icon.h"
#include "ui/gfx/transform_util.h"
#include "ui/gfx/vector_icons_public.h"
#include "ui/strings/grit/ui_strings.h"
#include "ui/views/background.h"
#include "ui/views/border.h"
#include "ui/views/layout/box_layout.h"
#include "ui/views/window/non_client_view.h"
#include "ui/wm/core/shadow.h"
#include "ui/wm/core/window_util.h"
namespace ash {
namespace {
// In the conceptual overview table, the window margin is the space reserved
// around the window within the cell. This margin does not overlap so the
// closest distance between adjacent windows will be twice this amount.
static const int kWindowMargin = 5;
// Cover the transformed window including the gaps between the windows with a
// transparent shield to block the input events from reaching the transformed
// window while in overview.
static const int kWindowSelectorMargin = kWindowMargin * 2;
// Foreground label color.
static const SkColor kLabelColor = SK_ColorWHITE;
// TODO(tdanderson): Move this to a central location.
static const SkColor kCloseButtonColor = SK_ColorWHITE;
// Label background color once in overview mode.
static const SkColor kLabelBackgroundColor = SkColorSetARGB(25, 255, 255, 255);
// Label background color when exiting overview mode.
static const SkColor kLabelExitColor = SkColorSetARGB(255, 90, 90, 90);
// Corner radius for the selection tiles.
static int kLabelBackgroundRadius = 2;
// Vertical padding for the label, on top of it.
static const int kVerticalLabelPadding = 20;
// Horizontal padding for the label, on both sides.
static const int kHorizontalLabelPadding = 8;
// Height of an item header.
static const int kHeaderHeight = 32;
// Opacity for dimmed items.
static const float kDimmedItemOpacity = 0.5f;
// Opacity for fading out during closing a window.
static const float kClosingItemOpacity = 0.8f;
// Opacity for the item header.
static const float kHeaderOpacity =
(SkColorGetA(kLabelBackgroundColor) / 255.f);
// Duration it takes for the header to shift from opaque header color to
// |kLabelBackgroundColor|.
static const int kSelectorColorSlideMilliseconds = 240;
// Duration of background opacity transition for the selected label.
static const int kSelectorFadeInMilliseconds = 350;
// Duration of background opacity transition when exiting overview mode.
static const int kExitFadeInMilliseconds = 30;
// Before closing a window animate both the window and the caption to shrink by
// this fraction of size.
static const float kPreCloseScale = 0.02f;
// Convenience method to fade in a Window with predefined animation settings.
// Note: The fade in animation will occur after a delay where the delay is how
// long the lay out animations take.
void SetupFadeInAfterLayout(views::Widget* widget) {
WmWindow* window = WmLookup::Get()->GetWindowForWidget(widget);
window->SetOpacity(0.0f);
std::unique_ptr<ScopedOverviewAnimationSettings>
scoped_overview_animation_settings =
ScopedOverviewAnimationSettingsFactory::Get()
->CreateOverviewAnimationSettings(
OverviewAnimationType::
OVERVIEW_ANIMATION_ENTER_OVERVIEW_MODE_FADE_IN,
window);
window->SetOpacity(1.0f);
}
} // namespace
WindowSelectorItem::OverviewCloseButton::OverviewCloseButton(
views::ButtonListener* listener)
: views::ImageButton(listener) {
icon_image_ = gfx::CreateVectorIcon(gfx::VectorIconId::WINDOW_CONTROL_CLOSE,
kCloseButtonColor);
SetImage(views::CustomButton::STATE_NORMAL, &icon_image_);
SetImageAlignment(views::ImageButton::ALIGN_CENTER,
views::ImageButton::ALIGN_MIDDLE);
SetMinimumImageSize(gfx::Size(kHeaderHeight, kHeaderHeight));
}
WindowSelectorItem::OverviewCloseButton::~OverviewCloseButton() {}
// A View having rounded top corners and a specified background color which is
// only painted within the bounds defined by the rounded corners.
// This class coordinates the transitions of the overview mode header when
// entering the overview mode. Those animations are:
// - Opacity animation. The header is initially same color as the original
// window's header. It starts as transparent and is faded in. When the full
// opacity is reached the original header is hidden (which is nearly
// imperceptable because this view obscures the original header) and a color
// animation starts.
// - Color animation is used to change the color from the opaque color of the
// original window's header to semi-transparent color of the overview mode
// header (on entry to overview). It is also used on exit from overview to
// quickly change the color to a close opaque color in parallel with an
// opacity transition to mask the original header reappearing.
class WindowSelectorItem::RoundedContainerView
: public views::View,
public gfx::AnimationDelegate,
public ui::LayerAnimationObserver {
public:
RoundedContainerView(WindowSelectorItem* item,
WmWindow* item_window,
int corner_radius,
SkColor background)
: item_(item),
item_window_(item_window),
corner_radius_(corner_radius),
initial_color_(background),
target_color_(background),
current_value_(0),
layer_(nullptr),
animation_(new gfx::SlideAnimation(this)) {}
~RoundedContainerView() override { StopObservingLayerAnimations(); }
void OnItemRestored() {
item_ = nullptr;
item_window_ = nullptr;
}
// Starts observing layer animations so that actions can be taken when
// particular animations (opacity) complete. It should only be called once
// when the initial fade in animation is started.
void ObserveLayerAnimations(ui::Layer* layer) {
DCHECK(!layer_);
layer_ = layer;
layer_->GetAnimator()->AddObserver(this);
}
// Stops observing layer animations
void StopObservingLayerAnimations() {
if (!layer_)
return;
layer_->GetAnimator()->RemoveObserver(this);
layer_ = nullptr;
}
// Used by tests to set animation state.
gfx::SlideAnimation* animation() { return animation_.get(); }
void set_color(SkColor target_color) { target_color_ = target_color; }
// Starts a color animation using |tween_type|. The animation will change the
// color from |initial_color_| to |target_color_| over |duration| specified
// in milliseconds.
// This animation can start once the implicit layer fade-in opacity animation
// is completed. It is used to transition color from the opaque original
// window header color to |kLabelBackgroundColor| on entry into overview mode
// and from |kLabelBackgroundColor| back to the original window header color
// on exit from the overview mode.
void AnimateColor(gfx::Tween::Type tween_type, int duration) {
DCHECK(!layer_); // layer animations should be completed.
animation_->SetSlideDuration(duration);
animation_->SetTweenType(tween_type);
animation_->Reset(0);
animation_->Show();
// Tests complete animations immediately. Emulate by invoking the callback.
if (ui::ScopedAnimationDurationScaleMode::duration_scale_mode() ==
ui::ScopedAnimationDurationScaleMode::ZERO_DURATION) {
AnimationEnded(animation_.get());
}
}
// Changes the view opacity by animating its background color. The animation
// will change the alpha value in |target_color_| from its current value to
// |opacity| * 255 but preserve the RGB values.
void AnimateBackgroundOpacity(float opacity) {
animation_->SetSlideDuration(kSelectorFadeInMilliseconds);
animation_->SetTweenType(gfx::Tween::EASE_OUT);
animation_->Reset(0);
animation_->Show();
target_color_ = SkColorSetA(target_color_, opacity * 255);
}
// views::View:
void OnPaint(gfx::Canvas* canvas) override {
views::View::OnPaint(canvas);
SkScalar radius = SkIntToScalar(corner_radius_);
const SkScalar kRadius[8] = {radius, radius, radius, radius, 0, 0, 0, 0};
SkPath path;
gfx::Rect bounds(size());
path.addRoundRect(gfx::RectToSkRect(bounds), kRadius);
SkPaint paint;
paint.setAntiAlias(true);
canvas->ClipPath(path, true);
SkColor target_color = initial_color_;
if (target_color_ != target_color) {
target_color = color_utils::AlphaBlend(target_color_, initial_color_,
current_value_);
}
canvas->DrawColor(target_color);
}
private:
// gfx::AnimationDelegate:
void AnimationEnded(const gfx::Animation* animation) override {
initial_color_ = target_color_;
// Tabbed browser windows show the overview mode header behind the window
// during the initial animation. Once the initial fade-in completes and the
// overview header is fully exposed update stacking to keep the label above
// the item which prevents input events from reaching the window.
WmWindow* label_window = WmLookup::Get()->GetWindowForWidget(GetWidget());
if (label_window && item_window_)
label_window->GetParent()->StackChildAbove(label_window, item_window_);
item_window_ = nullptr;
}
void AnimationProgressed(const gfx::Animation* animation) override {
current_value_ = animation_->CurrentValueBetween(0, 255);
SchedulePaint();
}
void AnimationCanceled(const gfx::Animation* animation) override {
item_window_ = nullptr;
initial_color_ = target_color_;
current_value_ = 255;
SchedulePaint();
}
// ui::LayerAnimationObserver:
void OnLayerAnimationEnded(ui::LayerAnimationSequence* sequence) override {
if (0 != (sequence->properties() &
ui::LayerAnimationElement::AnimatableProperty::OPACITY)) {
if (item_)
item_->HideHeader();
StopObservingLayerAnimations();
AnimateColor(gfx::Tween::EASE_IN, kSelectorColorSlideMilliseconds);
}
}
void OnLayerAnimationAborted(ui::LayerAnimationSequence* sequence) override {
if (0 != (sequence->properties() &
ui::LayerAnimationElement::AnimatableProperty::OPACITY)) {
StopObservingLayerAnimations();
}
}
void OnLayerAnimationScheduled(
ui::LayerAnimationSequence* sequence) override {}
WindowSelectorItem* item_;
WmWindow* item_window_;
int corner_radius_;
SkColor initial_color_;
SkColor target_color_;
int current_value_;
ui::Layer* layer_;
std::unique_ptr<gfx::SlideAnimation> animation_;
DISALLOW_COPY_AND_ASSIGN(RoundedContainerView);
};
WindowSelectorItem::OverviewLabelButton::OverviewLabelButton(
views::ButtonListener* listener,
const base::string16& text)
: LabelButton(listener, text) {}
WindowSelectorItem::OverviewLabelButton::~OverviewLabelButton() {}
void WindowSelectorItem::OverviewLabelButton::SetBackgroundColorHint(
SkColor color) {
// Tell the label what color it will be drawn onto. It will use whether the
// background color is opaque or transparent to decide whether to use subpixel
// rendering. Does not actually set the label's background color.
label()->SetBackgroundColor(color);
}
gfx::Rect WindowSelectorItem::OverviewLabelButton::GetChildAreaBounds() {
gfx::Rect bounds = GetLocalBounds();
bounds.Inset(padding_ + gfx::Insets(0, kHorizontalLabelPadding));
return bounds;
}
// Container View that has an item label and a close button as children.
class WindowSelectorItem::CaptionContainerView : public views::View {
public:
CaptionContainerView(WindowSelectorItem::OverviewLabelButton* label,
views::ImageButton* close_button,
WindowSelectorItem::RoundedContainerView* background)
: label_(label), close_button_(close_button), background_(background) {
AddChildView(background_);
AddChildView(label_);
AddChildView(close_button_);
}
protected:
// views::View:
void Layout() override {
// Position close button in the top right corner sized to its icon size and
// the label in the top left corner as tall as the button and extending to
// the button's left edge.
// The rest of this container view serves as a shield to prevent input
// events from reaching the transformed window in overview.
gfx::Rect bounds(GetLocalBounds());
bounds.Inset(kWindowSelectorMargin, kWindowSelectorMargin);
gfx::Rect background_bounds(bounds);
background_bounds.set_height(close_button_->GetPreferredSize().height());
background_->SetBoundsRect(background_bounds);
const int visible_height = close_button_->GetPreferredSize().height();
gfx::Insets label_padding(0, 0, bounds.height() - visible_height,
visible_height);
label_->set_padding(label_padding);
label_->SetBoundsRect(bounds);
bounds.set_x(bounds.right() - visible_height);
bounds.set_width(visible_height);
bounds.set_height(visible_height);
close_button_->SetBoundsRect(bounds);
}
private:
WindowSelectorItem::OverviewLabelButton* label_;
views::ImageButton* close_button_;
WindowSelectorItem::RoundedContainerView* background_;
DISALLOW_COPY_AND_ASSIGN(CaptionContainerView);
};
WindowSelectorItem::WindowSelectorItem(WmWindow* window,
WindowSelector* window_selector)
: dimmed_(false),
root_window_(window->GetRootWindow()),
transform_window_(window),
in_bounds_update_(false),
selected_(false),
caption_container_view_(nullptr),
window_label_button_view_(nullptr),
close_button_(new OverviewCloseButton(this)),
window_selector_(window_selector),
background_view_(nullptr) {
CreateWindowLabel(window->GetTitle());
GetWindow()->AddObserver(this);
}
WindowSelectorItem::~WindowSelectorItem() {
GetWindow()->RemoveObserver(this);
}
WmWindow* WindowSelectorItem::GetWindow() {
return transform_window_.window();
}
void WindowSelectorItem::RestoreWindow() {
window_label_button_view_->ResetListener();
close_button_->ResetListener();
transform_window_.RestoreWindow();
if (background_view_) {
background_view_->OnItemRestored();
background_view_ = nullptr;
}
UpdateHeaderLayout(
HeaderFadeInMode::EXIT,
OverviewAnimationType::OVERVIEW_ANIMATION_LAY_OUT_SELECTOR_ITEMS);
}
void WindowSelectorItem::EnsureVisible() {
transform_window_.EnsureVisible();
}
void WindowSelectorItem::Shutdown() {
if (transform_window_.GetTopInset()) {
// Activating a window (even when it is the window that was active before
// overview) results in stacking it at the top. Maintain the label window
// stacking position above the item to make the header transformation more
// gradual upon exiting the overview mode.
WmWindow* label_window =
WmLookup::Get()->GetWindowForWidget(window_label_.get());
// |label_window| was originally created in the same container as the
// |transform_window_| but when closing overview the |transform_window_|
// could have been reparented if a drag was active. Only change stacking
// if the windows still belong to the same container.
if (label_window->GetParent() == transform_window_.window()->GetParent()) {
label_window->GetParent()->StackChildAbove(label_window,
transform_window_.window());
}
}
if (background_view_) {
background_view_->OnItemRestored();
background_view_ = nullptr;
}
FadeOut(std::move(window_label_));
}
void WindowSelectorItem::PrepareForOverview() {
transform_window_.PrepareForOverview();
UpdateHeaderLayout(HeaderFadeInMode::ENTER,
OverviewAnimationType::OVERVIEW_ANIMATION_NONE);
}
bool WindowSelectorItem::Contains(const WmWindow* target) const {
return transform_window_.Contains(target);
}
void WindowSelectorItem::SetBounds(const gfx::Rect& target_bounds,
OverviewAnimationType animation_type) {
if (in_bounds_update_)
return;
base::AutoReset<bool> auto_reset_in_bounds_update(&in_bounds_update_, true);
target_bounds_ = target_bounds;
gfx::Rect inset_bounds(target_bounds);
inset_bounds.Inset(kWindowMargin, kWindowMargin);
SetItemBounds(inset_bounds, animation_type);
// SetItemBounds is called before UpdateHeaderLayout so the header can
// properly use the updated windows bounds.
UpdateHeaderLayout(HeaderFadeInMode::UPDATE, animation_type);
}
void WindowSelectorItem::SetSelected(bool selected) {
selected_ = selected;
background_view_->AnimateBackgroundOpacity(selected ? 0.f : kHeaderOpacity);
if (shadow_) {
ui::ScopedLayerAnimationSettings animation_settings_shadow(
shadow_->shadow_layer()->GetAnimator());
animation_settings_shadow.SetTransitionDuration(
base::TimeDelta::FromMilliseconds(kSelectorFadeInMilliseconds));
animation_settings_shadow.SetTweenType(
selected ? gfx::Tween::FAST_OUT_LINEAR_IN
: gfx::Tween::LINEAR_OUT_SLOW_IN);
animation_settings_shadow.SetPreemptionStrategy(
ui::LayerAnimator::IMMEDIATELY_ANIMATE_TO_NEW_TARGET);
shadow_->shadow_layer()->SetOpacity(selected ? 0.0f : 1.0f);
}
}
void WindowSelectorItem::SendAccessibleSelectionEvent() {
window_label_button_view_->NotifyAccessibilityEvent(ui::AX_EVENT_SELECTION,
true);
}
void WindowSelectorItem::CloseWindow() {
gfx::Rect inset_bounds(target_bounds_);
inset_bounds.Inset(target_bounds_.width() * kPreCloseScale,
target_bounds_.height() * kPreCloseScale);
OverviewAnimationType animation_type =
OverviewAnimationType::OVERVIEW_ANIMATION_CLOSING_SELECTOR_ITEM;
// Scale down both the window and label.
SetBounds(inset_bounds, animation_type);
// First animate opacity to an intermediate value concurrently with the
// scaling animation.
AnimateOpacity(kClosingItemOpacity, animation_type);
// Fade out the window and the label, effectively hiding them.
AnimateOpacity(0.0,
OverviewAnimationType::OVERVIEW_ANIMATION_CLOSE_SELECTOR_ITEM);
transform_window_.Close();
}
void WindowSelectorItem::HideHeader() {
transform_window_.HideHeader();
}
void WindowSelectorItem::OnMinimizedStateChanged() {
transform_window_.UpdateMirrorWindowForMinimizedState();
}
void WindowSelectorItem::SetDimmed(bool dimmed) {
dimmed_ = dimmed;
SetOpacity(dimmed ? kDimmedItemOpacity : 1.0f);
}
void WindowSelectorItem::ButtonPressed(views::Button* sender,
const ui::Event& event) {
if (sender == close_button_) {
WmShell::Get()->RecordUserMetricsAction(UMA_WINDOW_OVERVIEW_CLOSE_BUTTON);
CloseWindow();
return;
}
CHECK(sender == window_label_button_view_);
window_selector_->SelectWindow(this);
}
void WindowSelectorItem::OnWindowDestroying(WmWindow* window) {
window->RemoveObserver(this);
transform_window_.OnWindowDestroyed();
}
void WindowSelectorItem::OnWindowTitleChanged(WmWindow* window) {
// TODO(flackr): Maybe add the new title to a vector of titles so that we can
// filter any of the titles the window had while in the overview session.
window_label_button_view_->SetText(window->GetTitle());
UpdateCloseButtonAccessibilityName();
}
float WindowSelectorItem::GetItemScale(const gfx::Size& size) {
gfx::Size inset_size(size.width(), size.height() - 2 * kWindowMargin);
return ScopedTransformOverviewWindow::GetItemScale(
transform_window_.GetTargetBoundsInScreen().size(), inset_size,
transform_window_.GetTopInset(),
close_button_->GetPreferredSize().height());
}
gfx::Rect WindowSelectorItem::GetTargetBoundsInScreen() const {
return transform_window_.GetTargetBoundsInScreen();
}
void WindowSelectorItem::SetItemBounds(const gfx::Rect& target_bounds,
OverviewAnimationType animation_type) {
DCHECK(root_window_ == GetWindow()->GetRootWindow());
gfx::Rect screen_rect = transform_window_.GetTargetBoundsInScreen();
// Avoid division by zero by ensuring screen bounds is not empty.
gfx::Size screen_size(screen_rect.size());
screen_size.SetToMax(gfx::Size(1, 1));
screen_rect.set_size(screen_size);
const int top_view_inset = transform_window_.GetTopInset();
const int title_height = close_button_->GetPreferredSize().height();
gfx::Rect selector_item_bounds =
ScopedTransformOverviewWindow::ShrinkRectToFitPreservingAspectRatio(
screen_rect, target_bounds, top_view_inset, title_height);
gfx::Transform transform = ScopedTransformOverviewWindow::GetTransformForRect(
screen_rect, selector_item_bounds);
ScopedTransformOverviewWindow::ScopedAnimationSettings animation_settings;
transform_window_.BeginScopedAnimation(animation_type, &animation_settings);
transform_window_.SetTransform(root_window_, transform);
}
void WindowSelectorItem::SetOpacity(float opacity) {
window_label_->SetOpacity(opacity);
if (background_view_) {
background_view_->AnimateBackgroundOpacity(
selected_ ? 0.f : kHeaderOpacity * opacity);
}
transform_window_.SetOpacity(opacity);
}
void WindowSelectorItem::UpdateWindowLabel(
const gfx::Rect& window_bounds,
OverviewAnimationType animation_type) {
if (!window_label_->IsVisible()) {
window_label_->Show();
SetupFadeInAfterLayout(window_label_.get());
}
gfx::Rect label_bounds = root_window_->ConvertRectFromScreen(window_bounds);
window_label_button_view_->set_padding(
gfx::Insets(label_bounds.height() - kVerticalLabelPadding, 0, 0, 0));
std::unique_ptr<ScopedOverviewAnimationSettings> animation_settings =
ScopedOverviewAnimationSettingsFactory::Get()
->CreateOverviewAnimationSettings(
animation_type,
WmLookup::Get()->GetWindowForWidget(window_label_.get()));
WmWindow* window_label_window =
WmLookup::Get()->GetWindowForWidget(window_label_.get());
window_label_window->SetBounds(label_bounds);
}
void WindowSelectorItem::CreateWindowLabel(const base::string16& title) {
background_view_ = new RoundedContainerView(this, transform_window_.window(),
kLabelBackgroundRadius,
transform_window_.GetTopColor());
// |background_view_| will get added as a child to CaptionContainerView.
views::Widget::InitParams params_label;
params_label.type = views::Widget::InitParams::TYPE_POPUP;
params_label.ownership = views::Widget::InitParams::WIDGET_OWNS_NATIVE_WIDGET;
params_label.opacity = views::Widget::InitParams::TRANSLUCENT_WINDOW;
params_label.visible_on_all_workspaces = true;
params_label.name = "OverviewModeLabel";
params_label.activatable =
views::Widget::InitParams::Activatable::ACTIVATABLE_DEFAULT;
params_label.accept_events = true;
window_label_.reset(new views::Widget);
root_window_->GetRootWindowController()
->ConfigureWidgetInitParamsForContainer(
window_label_.get(),
transform_window_.window()->GetParent()->GetShellWindowId(),
¶ms_label);
window_label_->set_focus_on_creation(false);
window_label_->Init(params_label);
window_label_button_view_ = new OverviewLabelButton(this, title);
window_label_button_view_->SetBorder(views::NullBorder());
window_label_button_view_->SetEnabledTextColors(kLabelColor);
window_label_button_view_->set_animate_on_state_change(false);
WmWindow* label_window =
WmLookup::Get()->GetWindowForWidget(window_label_.get());
if (transform_window_.GetTopInset()) {
// For windows with headers the overview header fades in above the
// original window header.
label_window->GetParent()->StackChildAbove(label_window,
transform_window_.window());
} else {
// For tabbed windows the overview header slides from behind. The stacking
// is then corrected when the animation completes.
label_window->GetParent()->StackChildBelow(label_window,
transform_window_.window());
}
window_label_button_view_->SetHorizontalAlignment(gfx::ALIGN_LEFT);
// Hint at the background color that the label will be drawn onto (for
// subpixel antialiasing). Does not actually set the background color.
window_label_button_view_->SetBackgroundColorHint(kLabelBackgroundColor);
caption_container_view_ = new CaptionContainerView(
window_label_button_view_, close_button_, background_view_);
window_label_->SetContentsView(caption_container_view_);
window_label_button_view_->SetVisible(false);
window_label_->SetOpacity(0);
window_label_->Show();
// TODO(varkha): Restore shadows when programmatic shadows exist.
// Note: current shadow implementation does not allow proper animation when
// the parent layer bounds change during the animation since
// Shadow::UpdateLayerBounds() only happens before the animation starts.
if (ash::MaterialDesignController::GetMode() ==
ash::MaterialDesignController::Mode::MATERIAL_EXPERIMENTAL) {
shadow_.reset(new ::wm::Shadow());
shadow_->Init(::wm::Shadow::STYLE_INACTIVE);
shadow_->layer()->SetVisible(true);
window_label_->GetLayer()->Add(shadow_->layer());
}
window_label_->GetLayer()->SetMasksToBounds(false);
}
void WindowSelectorItem::UpdateHeaderLayout(
HeaderFadeInMode mode,
OverviewAnimationType animation_type) {
gfx::Rect transformed_window_bounds = root_window_->ConvertRectFromScreen(
transform_window_.GetTransformedBounds());
gfx::Rect label_rect(close_button_->GetPreferredSize());
label_rect.set_width(transformed_window_bounds.width());
// For tabbed windows the initial bounds of the caption are set such that it
// appears to be "growing" up from the window content area.
label_rect.set_y(
(mode != HeaderFadeInMode::ENTER || transform_window_.GetTopInset())
? -label_rect.height()
: 0);
if (background_view_) {
if (mode == HeaderFadeInMode::ENTER) {
background_view_->ObserveLayerAnimations(window_label_->GetLayer());
background_view_->set_color(kLabelBackgroundColor);
// The color will be animated only once the label widget is faded in.
} else if (mode == HeaderFadeInMode::EXIT) {
// Normally the observer is disconnected when the fade-in animations
// complete but some tests invoke animations with |NON_ZERO_DURATION|
// without waiting for completion so do it here.
background_view_->StopObservingLayerAnimations();
// Make the header visible above the window. It will be faded out when
// the Shutdown() is called.
background_view_->AnimateColor(gfx::Tween::EASE_OUT,
kExitFadeInMilliseconds);
background_view_->set_color(kLabelExitColor);
}
}
if (!window_label_button_view_->visible()) {
window_label_button_view_->SetVisible(true);
SetupFadeInAfterLayout(window_label_.get());
}
WmWindow* window_label_window =
WmLookup::Get()->GetWindowForWidget(window_label_.get());
std::unique_ptr<ScopedOverviewAnimationSettings> animation_settings =
ScopedOverviewAnimationSettingsFactory::Get()
->CreateOverviewAnimationSettings(animation_type,
window_label_window);
// |window_label_window| covers both the transformed window and the header
// as well as the gap between the windows to prevent events from reaching
// the window including its sizing borders.
if (mode != HeaderFadeInMode::ENTER) {
label_rect.set_height(close_button_->GetPreferredSize().height() +
transformed_window_bounds.height());
}
label_rect.Inset(-kWindowSelectorMargin, -kWindowSelectorMargin);
window_label_window->SetBounds(label_rect);
gfx::Transform label_transform;
label_transform.Translate(transformed_window_bounds.x(),
transformed_window_bounds.y());
window_label_window->SetTransform(label_transform);
gfx::Rect shadow_bounds(label_rect.size());
shadow_bounds.Inset(kWindowSelectorMargin, kWindowSelectorMargin);
if (shadow_)
shadow_->SetContentBounds(shadow_bounds);
}
void WindowSelectorItem::AnimateOpacity(float opacity,
OverviewAnimationType animation_type) {
DCHECK_GE(opacity, 0.f);
DCHECK_LE(opacity, 1.f);
ScopedTransformOverviewWindow::ScopedAnimationSettings animation_settings;
transform_window_.BeginScopedAnimation(animation_type, &animation_settings);
transform_window_.SetOpacity(opacity);
const float header_opacity = selected_ ? 0.f : kHeaderOpacity * opacity;
WmWindow* window_label_window =
WmLookup::Get()->GetWindowForWidget(window_label_.get());
std::unique_ptr<ScopedOverviewAnimationSettings> animation_settings_label =
ScopedOverviewAnimationSettingsFactory::Get()
->CreateOverviewAnimationSettings(animation_type,
window_label_window);
window_label_window->SetOpacity(header_opacity);
}
void WindowSelectorItem::UpdateCloseButtonAccessibilityName() {
close_button_->SetAccessibleName(l10n_util::GetStringFUTF16(
IDS_ASH_OVERVIEW_CLOSE_ITEM_BUTTON_ACCESSIBLE_NAME,
GetWindow()->GetTitle()));
}
void WindowSelectorItem::FadeOut(std::unique_ptr<views::Widget> widget) {
widget->SetOpacity(1.f);
// Fade out the widget. This animation continues past the lifetime of |this|.
WmWindow* widget_window = WmLookup::Get()->GetWindowForWidget(widget.get());
std::unique_ptr<ScopedOverviewAnimationSettings> animation_settings =
ScopedOverviewAnimationSettingsFactory::Get()
->CreateOverviewAnimationSettings(
OverviewAnimationType::
OVERVIEW_ANIMATION_EXIT_OVERVIEW_MODE_FADE_OUT,
widget_window);
// CleanupAnimationObserver will delete itself (and the widget) when the
// opacity animation is complete.
// Ownership over the observer is passed to the window_selector_->delegate()
// which has longer lifetime so that animations can continue even after the
// overview mode is shut down.
views::Widget* widget_ptr = widget.get();
std::unique_ptr<CleanupAnimationObserver> observer(
new CleanupAnimationObserver(std::move(widget)));
animation_settings->AddObserver(observer.get());
window_selector_->delegate()->AddDelayedAnimationObserver(
std::move(observer));
widget_ptr->SetOpacity(0.f);
}
gfx::SlideAnimation* WindowSelectorItem::GetBackgroundViewAnimation() {
return background_view_ ? background_view_->animation() : nullptr;
}
WmWindow* WindowSelectorItem::GetOverviewWindowForMinimizedStateForTest() {
return transform_window_.GetOverviewWindowForMinimizedState();
}
} // namespace ash
| [
"lixiaodonglove7@aliyun.com"
] | lixiaodonglove7@aliyun.com |
920c76f8060405306318ba95685938c2888afc2b | 6876f4e73b1d13050e8fd025c79a084ef0925f1c | /DP/FriendsPairing.cpp | 1991bdf9d2700e2dc058dfe7c70d27badc286d70 | [] | no_license | sakshi-06/Wootech_session_notes | 07a18c45a4bd4ce044648cd299057a4963027b16 | 4a0f63d1475a6e6c931401f06ce6d0c27f988cb2 | refs/heads/master | 2023-03-01T23:17:38.066623 | 2021-02-06T18:38:37 | 2021-02-06T18:38:37 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,354 | cpp | #include <bits/stdc++.h>
using namespace std;
// https://practice.geeksforgeeks.org/problems/friends-pairing-problem/0
long friendsPairingProblem(int n, vector<long> dp)
{
if (n <= 1)
return dp[n] = 1;
if (dp[n] != 0)
return dp[n];
long single = friendsPairingProblem(n - 1, dp) % mod;
long pairUp = friendsPairingProblem(n - 2, dp) % mod * (n - 1) % mod;
return dp[n] = (single + pairUp) % mod;
}
long friendsPairingProblem_DP(int n, vector<long> dp)
{
int N = n;
for (n = 0; n <= N; n++)
{
if (n <= 1)
{
dp[n] = 1;
continue;
}
long single = dp[n - 1] % mod; // friendsPairingProblem(n - 1, dp);
long pairUp = dp[n - 2] % mod * (n - 1) % mod; // friendsPairingProblem(n - 2, dp) * (n - 1);
dp[n] = single + pairUp;
}
return dp[N] % mod;
}
// 0 1 1 2 3
// p s
// p s
// p s
int friendsPairingProblem_Opti(int n)
{
int single = 1;
int pairUp = 1;
int ans = 0;
for (int i = 2; i <= n; i++)
{
ans = single + pairUp * (i - 1);
pairUp = single;
single = ans;
}
return ans;
}
void friendsPairingProblem()
{
// int n = scn.nextInt();
int n = 5;
vector<long>dp(n+1);
long ans = friendsPairingProblem(n, dp);
cout<<ans<<endl;
} | [
"singhalshiva936@gmail.com"
] | singhalshiva936@gmail.com |
8a6cfe80de5a46122b86755f984a7372f6386a49 | 4efb2f9f694e4eee36592566e8dcbf0387dc70b4 | /serialportdialog.cpp | 8957377ea361c8b11bacdd339cd8b1fc73107f96 | [] | no_license | oldkohler/MotorTest | 9251ba2531a4ccfe716672300251db8e747d7eb4 | 4735be587c28c88a99785713937f3791bc458168 | refs/heads/master | 2020-04-11T20:09:34.080930 | 2018-12-17T02:15:22 | 2018-12-17T02:15:22 | 162,061,719 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,207 | cpp | #include "serialportdialog.h"
#include "ui_serialportdialog.h"
QString name,baud;
int bit,jiaoyan,stopbit;
SerialPortDialog::SerialPortDialog(QWidget *parent) :
QDialog(parent),
ui(new Ui::SerialPortDialog)
{
ui->setupUi(this);
find_port();
name = ui->portname->currentText();
baud = ui->baud->currentText();
bit = ui->bit->currentIndex();
jiaoyan = ui->jiaoyan->currentIndex();
stopbit = ui->stopbit->currentIndex();
}
SerialPortDialog::~SerialPortDialog()
{
delete ui;
}
void SerialPortDialog::on_SendDataButton_clicked()
{
name = ui->portname->currentText();
baud = ui->baud->currentText();
bit = ui->bit->currentIndex();
jiaoyan = ui->jiaoyan->currentIndex();
stopbit = ui->stopbit->currentIndex();
this->close();
}
//查找串口
void SerialPortDialog::find_port()
{
//查找可用的串口
foreach(const QSerialPortInfo &info, QSerialPortInfo::availablePorts())
{
QSerialPort serial;
serial.setPort(info); //设置串口
if(serial.open(QIODevice::ReadWrite))
{
ui->portname->addItem(serial.portName()); //显示串口name
serial.close();
}
}
}
| [
"18550162163@163.com"
] | 18550162163@163.com |
16d8ce713a27750b72a0fe41b1ec9c998b75a409 | 19e78b53f3b7c4e135f272a478d47df3d4a42cae | /source/compiler/ast/node_module_call_argument.h | 55cc9321f82d9b933d2c703a30c1336ec6344532 | [] | no_license | Gumgo/WaveLang | 5eaaa2f5d7876805fd5b353e1d885e630580d124 | c993b4303de0889f63dda10a0fd4169aaa59d400 | refs/heads/master | 2021-06-17T23:24:07.827945 | 2021-03-12T18:22:19 | 2021-03-12T18:22:19 | 37,759,958 | 2 | 3 | null | 2015-07-18T11:54:16 | 2015-06-20T06:10:50 | C++ | UTF-8 | C++ | false | false | 979 | h | #pragma once
#include "common/common.h"
#include "compiler/ast/data_type.h"
#include "compiler/ast/node.h"
#include "compiler/ast/node_expression.h"
#include <memory>
class c_ast_node_module_call_argument : public c_ast_node {
public:
AST_NODE_TYPE_DESCRIPTION(c_ast_node_module_call_argument, k_module_call_argument, "module call argument");
c_ast_node_module_call_argument();
e_ast_argument_direction get_argument_direction() const;
void set_argument_direction(e_ast_argument_direction argument_direction);
const char *get_name() const;
void set_name(const char *name);
c_ast_node_expression *get_value_expression() const;
void set_value_expression(c_ast_node_expression *value_expression);
protected:
c_ast_node *copy_internal() const override;
private:
e_ast_argument_direction m_argument_direction = e_ast_argument_direction::k_invalid;
std::string m_name; // Empty if no name was specified
std::unique_ptr<c_ast_node_expression> m_value_expression;
};
| [
"gumgo1@gmail.com"
] | gumgo1@gmail.com |
1e24bf7e8c68aef2bce65dc1f1e4428657cf60ba | a090fc0f5e500f3a57ed0accedb8242fb2ceb0a3 | /Projects/OpenCV/Pose_Estimation/Project_OpenCV/main_registration_RealCamera.cpp | 643fcedbb041db54eab38e0a663da19d5ed53ec6 | [] | no_license | buianhhuy96/Master_Study | f06cf5c99c04ba7983a4ea092ee9a809b72fb788 | 54045821ae895b9e69cde61801b15ca97dae6eec | refs/heads/main | 2023-02-23T23:21:52.640754 | 2021-02-05T09:12:46 | 2021-02-05T09:12:46 | 306,818,913 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,624 | cpp | // C++
#include <iostream>
// OpenCV
#include <opencv2/core.hpp>
#include <opencv2/imgproc.hpp>
#include <opencv2/calib3d.hpp>
#include <opencv2/features2d.hpp>
// PnP Tutorial
#include "Mesh.h"
#include "Model.h"
#include "PnPProblem.h"
#include "RobustMatcher.h"
#include "ModelRegistration.h"
#include "Utils.h"
using namespace cv;
using namespace std;
/** GLOBAL VARIABLES **/
string img_path = "Data/huybox_above_yellow.jpg";
string ply_read_path = "Data/mybox.ply";
string write_path = "Data/mybox.yml";
bool end_registration = false;
// Intrinsic camera parameters
double f = 35; // focal length in mm
double sx = 23.6, sy = 15.7; // sensor size
double width = 720, height = 480; // image size
double params_camera[] =
{ width*f / sx, // fx
height*f / sy, // fy
width / 2, // cx
height / 2 }; // cy
// Setup the points to register in the image
// In the order of the *.ply file and starting at 1
int n = 8;
int pts[] = { 1, 2, 3, 4, 5, 6, 7, 8 }; // 3 -> 4
// Some basic colors
Scalar red(0, 0, 255);
Scalar green(0, 255, 0);
Scalar blue(255, 0, 0);
Scalar yellow(0, 255, 255);
/*
* CREATE MODEL REGISTRATION OBJECT
* CREATE OBJECT MESH
* CREATE OBJECT MODEL
* CREATE PNP OBJECT
*/
ModelRegistration registration;
Model model;
Mesh mesh;
PnPProblem pnp_registration(params_camera);
// Mouse events for model registration
static void onMouseModelRegistration(int event, int x, int y, int, void*)
{
if (event == EVENT_LBUTTONUP)
{
int n_regist = registration.getNumRegist();
int n_vertex = pts[n_regist];
Point2f point_2d = Point2f((float)x, (float)y);
Point3f point_3d = mesh.getVertex(n_vertex - 1);
bool is_registrable = registration.is_registrable();
if (is_registrable)
{
registration.registerPoint(point_2d, point_3d);
if (registration.getNumRegist() == registration.getNumMax()) end_registration = true;
}
}
}
/** Main program **/
int main()
{
/** Step 1: Load Mesh and setup Robust Matcher **/
/*Load a mesh given the *.ply file path*/
mesh.load(ply_read_path);
/*setup Robust Matcher: detector, extractor, matcher*/
RobustMatcher rmatcher;
int numKeyPoints = 5000;
Ptr<FeatureDetector> detector = ORB::create(numKeyPoints);
rmatcher.setFeatureDetector(detector);
rmatcher.setDescriptorExtractor(detector);
/** Step 2: Point registration **/
/*setup*/
namedWindow("MODEL REGISTRATION", WINDOW_KEEPRATIO);
setMouseCallback("MODEL REGISTRATION", onMouseModelRegistration, 0); /*Set up the mouse events*/
Mat img_in = imread(img_path, IMREAD_COLOR);
Mat img_vis = img_in.clone();
if (!img_in.data) {
cout << "Could not open or find the image" << endl;
return -1;
}
cout << "Click the box corners ..." << endl;
cout << "Waiting ..." << endl;
/*Point registration*/
int num_registrations = n; /*Set the number of points to register*/
registration.setNumMax(num_registrations);
while (waitKey(30) < 0)
{
img_vis = img_in.clone(); /*Refresh debug image*/
// Current registered points
vector<Point2f> list_points2d = registration.get_points2d();
vector<Point3f> list_points3d = registration.get_points3d();
// Draw current registered points
drawPoints(img_vis, list_points2d, list_points3d, red);
// If the registration is not finished, draw which 3D point we have to register.
// If the registration is finished, breaks the loop.
if (!end_registration)
{
/*draw debug text*/
int n_regist = registration.getNumRegist();
int n_vertex = pts[n_regist];
Point3f current_poin3d = mesh.getVertex(n_vertex - 1);
drawQuestion(img_vis, current_poin3d, green);
drawCounter(img_vis, registration.getNumRegist(), registration.getNumMax(), red);
}
else
{
/*draw debug text*/
drawText(img_vis, "END REGISTRATION", green);
drawCounter(img_vis, registration.getNumRegist(), registration.getNumMax(), green);
break;
}
// Show the image
imshow("MODEL REGISTRATION", img_vis);
}
/** Step 3: Pose Estimate **/
/*setup*/
cout << "COMPUTING POSE ..." << endl;
vector<Point2f> list_points2d = registration.get_points2d();
vector<Point3f> list_points3d = registration.get_points3d();
/*Estimate pose given the registered points*/
bool is_correspondence = pnp_registration.estimatePose(list_points3d, list_points2d, SOLVEPNP_ITERATIVE);
if (is_correspondence)
{
cout << "Correspondence found" << endl;
// Compute all the 2D points of the mesh to verify the algorithm and draw it
vector<Point2f> list_points2d_mesh = pnp_registration.verify_points(&mesh);
draw2DPoints(img_vis, list_points2d_mesh, green);
drawObjectMesh(img_vis, &mesh, &pnp_registration, blue);
}
else {
cout << "Correspondence not found" << endl << endl;
}
/*show the image*/
imshow("MODEL REGISTRATION", img_vis);
waitKey(0);
/** Step 4: Keypoint detectoion & Descriptors extraction, Inlier Outlier check **/
/*setup*/
vector<KeyPoint> keypoints_model;
Mat descriptors;
/*Keypoint detectoion & Descriptors extraction*/
rmatcher.computeKeyPoints(img_in, keypoints_model);
rmatcher.computeDescriptors(img_in, keypoints_model, descriptors);
/*Inlier Outlier check*/
for (unsigned int i = 0; i < keypoints_model.size(); ++i) {
Point2f point2d(keypoints_model[i].pt);
Point3f point3d;
bool on_surface = pnp_registration.backproject2DPoint(&mesh, point2d, point3d);
if (on_surface)
{
model.add_correspondence(point2d, point3d);
model.add_descriptor(descriptors.row(i));
model.add_keypoint(keypoints_model[i]);
}
else
{
model.add_outlier(point2d);
}
}
/** Step 5: Save model, show info **/
/*Save model*/
model.save(write_path);
/*show info*/
img_vis = img_in.clone();
vector<Point2f> list_points_in = model.get_points2d_in();
vector<Point2f> list_points_out = model.get_points2d_out();
string num = IntToString((int)list_points_in.size());
string text = "There are " + num + " inliers";
drawText(img_vis, text, green);
num = IntToString((int)list_points_out.size());
text = "There are " + num + " outliers";
drawText2(img_vis, text, red);
drawObjectMesh(img_vis, &mesh, &pnp_registration, blue);
draw2DPoints(img_vis, list_points_in, green);
draw2DPoints(img_vis, list_points_out, red);
imshow("MODEL REGISTRATION", img_vis);
waitKey(0);
// Close and Destroy Window
destroyWindow("MODEL REGISTRATION");
cout << "GOODBYE" << endl;
}
| [
"huy.bui-anh@internal.banvien.com"
] | huy.bui-anh@internal.banvien.com |
7c6044a9053a27482d00fd0b7f71f1b625501e2d | 41575c498b7197e97b12a8ce2a880047df363cc3 | /src/local/wnd/win32/Window.cpp | e3e334a0a43a5dac06ebfa623ec985b867a31b5f | [] | no_license | gongfuPanada/page | f00a6f9015b4aad79398f0df041613ab28be405b | fa2ccdef4b33480c2ac5f872d717323f45618a34 | refs/heads/master | 2021-01-15T22:09:34.836791 | 2013-03-23T18:54:13 | 2013-03-23T18:54:13 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 13,303 | cpp | /**
* @section license
*
* Copyright (c) 2006-2013 David Osborn
*
* Permission is granted to use and redistribute this software in source and
* binary form, with or without modification, subject to the following
* conditions:
*
* 1. Redistributions in source form 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, and in the same
* place and form as other copyright, license, and disclaimer information.
*
* As a special exception, distributions of derivative works in binary form may
* include an acknowledgement in place of the above copyright notice, this list
* of conditions, and the following disclaimer in the documentation and/or other
* materials provided with the distribution, and in the same place and form as
* other acknowledgements, similar in substance to the following:
*
* Portions of this software are based on the work of David Osborn.
*
* This software is provided "as is", without any express or implied warranty.
* In no event will the authors be liable for any damages arising out of the use
* of this software.
*/
#include <unordered_map>
#include <windowsx.h> // GET_[XY]_LPARAM
#include "../../aud/Driver.hpp" // MakeDriver
#include "../../cfg/vars.hpp"
#include "../../err/Exception.hpp"
#include "../../inp/Driver.hpp" // MakeDriver
#include "../../res/type/image/win32.hpp" // MakeBitmap
#include "../../util/cpp.hpp" // STRINGIZE
#include "../../util/locale/convert.hpp" // Convert
#include "../../vid/Driver.hpp" // Driver::RenderImage, MakeDriver
#include "../../win32/resource.h" // IDI_ICON
#include "Window.hpp"
namespace page
{
namespace wnd
{
namespace win32
{
namespace
{
// window handle mapping
typedef std::unordered_map<HWND, Window *> WindowMap;
inline WindowMap &GetWindowMap()
{
static WindowMap map;
return map;
}
Window *lastWindow;
// critical section for thread-safe window handle mapping
// initialization
struct CriticalSection
{
CriticalSection();
~CriticalSection();
CRITICAL_SECTION cs;
};
CriticalSection::CriticalSection()
{
InitializeCriticalSection(&cs);
}
CriticalSection::~CriticalSection()
{
DeleteCriticalSection(&cs);
}
inline CRITICAL_SECTION &GetCriticalSection()
{
static CriticalSection cs;
return cs.cs;
}
}
// construct/destroy
Window::Window(const std::string &title) :
alive(false), min(false), full(*CVAR(windowFullscreen)),
waitFocus(false), moving(false), sizing(false),
muteFocus(false), muteMove(false), muteSize(false),
clientBitmap(NULL)
{
DWORD style;
RECT rect;
if (full)
{
try
{
SetFull(true);
}
catch (const err::Exception<err::Win32PlatformTag>::Permutation &)
{
CVAR(windowFullscreen) = full = false;
goto InitWindowed;
}
style = WS_POPUP;
rect.left = rect.top = 0;
rect.right = CVAR(videoResolution)->x;
rect.bottom = CVAR(videoResolution)->y;
}
else
{
InitWindowed:
style = WS_OVERLAPPEDWINDOW;
rect.right = (rect.left = CVAR(windowPosition)->x) + CVAR(windowSize)->x;
rect.bottom = (rect.top = CVAR(windowPosition)->y) + CVAR(windowSize)->y;
AdjustWindowRectEx(&rect, style, FALSE, WS_EX_APPWINDOW);
}
// create window
EnterCriticalSection(&GetCriticalSection());
lastWindow = this;
if (!(hwnd = CreateWindowEx(WS_EX_APPWINDOW, GetClass(),
util::Convert<TCHAR>(title).c_str(), style,
rect.left, rect.top, rect.right - rect.left, rect.bottom - rect.top,
0, 0, reinterpret_cast<HINSTANCE>(GetModuleHandle(0)), 0)))
{
LeaveCriticalSection(&GetCriticalSection());
if (full) SetFull(false);
THROW((err::Exception<err::EnvModuleTag, err::Win32PlatformTag>("failed to create window") <<
boost::errinfo_api_function("CreateWindowEx")))
}
GetWindowMap().insert(std::make_pair(hwnd, this));
LeaveCriticalSection(&GetCriticalSection());
// show window
SetForegroundWindow(hwnd);
ShowWindow(hwnd, *CVAR(windowMaximized) ? SW_SHOWMAXIMIZED : SW_SHOWNORMAL);
if (GetForegroundWindow() != hwnd) waitFocus = true;
// process immediate messages
MSG msg;
while (PeekMessage(&msg, 0, 0, 0, PM_REMOVE))
{
TranslateMessage(&msg);
DispatchMessage(&msg);
}
alive = true;
// set initial state
GetClientRect(hwnd, &rect);
MapWindowPoints(hwnd, 0, reinterpret_cast<LPPOINT>(&rect), 1);
InitState(GetForegroundWindow() == hwnd,
math::Vector<2, int>(rect.left, rect.top),
math::Vector<2, unsigned>(rect.right, rect.bottom));
}
Window::~Window()
{
Deinit();
alive = false;
if (clientBitmap) DeleteObject(clientBitmap);
DestroyWindow(hwnd);
GetWindowMap().erase(hwnd);
if (full) SetFull(false);
}
// update
void Window::Update()
{
MSG msg;
while (PeekMessage(&msg, 0, 0, 0, PM_REMOVE))
{
TranslateMessage(&msg);
DispatchMessage(&msg);
}
}
// platform access
HWND Window::GetHwnd() const
{
return hwnd;
}
// environment state
math::Vector<2, unsigned> Window::GetScreenSize() const
{
// FIXME: it would be best to use the device context of the
// screen that contains the window
HDC hdc = GetDC(NULL);
if (!hdc)
THROW((err::Exception<err::EnvModuleTag, err::Win32PlatformTag>("failed to get device context") <<
boost::errinfo_api_function("GetDC")))
math::Vector<2, unsigned> size(
GetDeviceCaps(hdc, HORZRES),
GetDeviceCaps(hdc, VERTRES));
ReleaseDC(NULL, hdc);
return size;
}
// driver factory functions
aud::Driver *Window::MakeAudioDriver()
{
return aud::MakeDriver(*this);
}
inp::Driver *Window::MakeInputDriver()
{
return inp::MakeDriver(*this);
}
vid::Driver *Window::MakeVideoDriver()
{
return vid::MakeDriver(*this);
}
// fullscreen modifiers
void Window::SetFull(bool full)
{
if (full)
{
DEVMODE dm = {};
dm.dmSize = sizeof dm;
dm.dmFields = DM_PELSWIDTH | DM_PELSHEIGHT;
dm.dmPelsWidth = CVAR(videoResolution)->x;
dm.dmPelsHeight = CVAR(videoResolution)->y;
// maintain refresh rate
if (HDC hdc = GetDC(NULL))
{
if (GetDeviceCaps(hdc, HORZRES) == CVAR(videoResolution)->x &&
GetDeviceCaps(hdc, VERTRES) == CVAR(videoResolution)->y)
{
dm.dmFields |= DM_DISPLAYFREQUENCY;
dm.dmDisplayFrequency = GetDeviceCaps(hdc, VREFRESH);
}
ReleaseDC(NULL, hdc);
}
if (ChangeDisplaySettings(&dm, CDS_FULLSCREEN) != DISP_CHANGE_SUCCESSFUL)
THROW((err::Exception<err::EnvModuleTag, err::Win32PlatformTag>("failed to change display mode") <<
boost::errinfo_api_function("ChangeDisplaySettings")))
}
else if (ChangeDisplaySettings(0, 0) != DISP_CHANGE_SUCCESSFUL)
THROW((err::Exception<err::EnvModuleTag, err::Win32PlatformTag>("failed to change display mode") <<
boost::errinfo_api_function("ChangeDisplaySettings")))
}
void Window::SwitchFull()
{
muteFocus = muteMove = muteSize = true;
if (full = !full)
{
try
{
SetFull(true);
}
catch (...)
{
full = false;
muteFocus = muteMove = muteSize = false;
throw;
}
SetWindowLongPtr(hwnd, GWL_STYLE, WS_POPUP);
muteMove = muteSize = false;
SetWindowPos(hwnd, 0, 0, 0, CVAR(videoResolution)->x, CVAR(videoResolution)->y, SWP_SHOWWINDOW | SWP_NOCOPYBITS | SWP_NOOWNERZORDER | SWP_NOZORDER);
SetForegroundWindow(hwnd);
}
else
{
ShowWindow(hwnd, SW_HIDE);
try
{
SetFull(false);
}
catch (...)
{
full = true;
muteFocus = muteMove = muteSize = false;
throw;
}
RECT rect;
rect.right = (rect.left = CVAR(windowPosition)->x) + CVAR(windowSize)->x;
rect.bottom = (rect.top = CVAR(windowPosition)->y) + CVAR(windowSize)->y;
AdjustWindowRectEx(&rect, WS_OVERLAPPEDWINDOW, false, WS_EX_APPWINDOW);
SetWindowLongPtr(hwnd, GWL_STYLE, WS_OVERLAPPEDWINDOW);
muteMove = muteSize = false;
SetWindowPos(hwnd, 0, rect.left, rect.top, rect.right - rect.left, rect.bottom - rect.top, SWP_NOACTIVATE | SWP_NOCOPYBITS | SWP_NOOWNERZORDER | SWP_NOZORDER);
ShowWindow(hwnd, *CVAR(windowMaximized) ? SW_SHOWMAXIMIZED : SW_SHOW);
SetForegroundWindow(hwnd);
}
muteFocus = muteMove = muteSize = false;
CVAR(windowFullscreen) = full;
}
// message handling
LRESULT Window::WindowProc(UINT msg, WPARAM wparam, LPARAM lparam)
{
switch (msg)
{
case WM_CLOSE:
exitSig();
return 0;
case WM_SYSCOMMAND:
switch (wparam)
{
case SC_MINIMIZE:
case SC_MINIMIZE + 2:
min = true;
break;
case SC_MAXIMIZE:
case SC_MAXIMIZE + 2:
CVAR(windowMaximized) = true;
break;
case SC_RESTORE:
case SC_RESTORE + 2:
if (!min) CVAR(windowMaximized) = false;
break;
}
break;
case WM_KEYDOWN:
switch (wparam)
{
case VK_F11:
SwitchFull();
break;
}
break;
case WM_SYSKEYDOWN:
switch (wparam)
{
case VK_RETURN:
SwitchFull();
break;
}
break;
case WM_WINDOWPOSCHANGED:
if (!waitFocus) break;
waitFocus = false;
case WM_SETFOCUS:
min = false;
if (alive && !muteFocus) focusSig(true);
break;
case WM_KILLFOCUS:
if (alive && !muteFocus)
{
focusSig(false);
// save client area
if (HasVideoDriver())
clientBitmap = res::win32::MakeBitmap(
GetVideoDriver().RenderImage(GetSize()));
}
break;
case WM_MOVING:
moving = true;
break;
case WM_MOVE:
if (sizing) moving = true; // HACK: top-left frame sizing
if (alive && !min && !muteMove && !moving && wparam != 0x83008300)
{
math::Vector<2, int> newPos(GET_X_LPARAM(lparam), GET_Y_LPARAM(lparam));
if (!*CVAR(windowMaximized) && !full) CVAR(windowPosition) = newPos;
moveSig(newPos);
}
break;
case WM_SIZING:
sizing = true;
break;
case WM_SIZE:
if (alive && !min && !muteSize && !sizing && wparam != SIZE_MINIMIZED)
{
math::Vector<2, unsigned> newSize(LOWORD(lparam), HIWORD(lparam));
if (!*CVAR(windowMaximized) && !full) CVAR(windowSize) = newSize;
sizeSig(newSize);
}
break;
case WM_EXITSIZEMOVE:
if (alive && !min)
{
if (moving)
{
RECT rect;
GetClientRect(hwnd, &rect);
MapWindowPoints(hwnd, 0, reinterpret_cast<LPPOINT>(&rect), 1);
moveSig(*(CVAR(windowPosition) = math::Vector<2, int>(rect.left, rect.top)));
moving = false;
}
if (sizing)
{
RECT rect;
GetClientRect(hwnd, &rect);
sizeSig(*(CVAR(windowSize) = math::Vector<2, unsigned>(rect.right, rect.bottom)));
sizing = false;
}
}
break;
case WM_PAINT:
if (alive && !HasFocus() && clientBitmap)
{
RECT rect;
if (GetUpdateRect(hwnd, &rect, false))
{
PAINTSTRUCT ps;
if (BeginPaint(hwnd, &ps))
{
HDC hbmdc = CreateCompatibleDC(ps.hdc);
HGDIOBJ prevObj = SelectObject(hbmdc, clientBitmap);
BitBlt(
ps.hdc,
ps.rcPaint.left, ps.rcPaint.top,
ps.rcPaint.right - ps.rcPaint.left,
ps.rcPaint.bottom - ps.rcPaint.top,
hbmdc,
ps.rcPaint.left, ps.rcPaint.top,
SRCCOPY);
SelectObject(hbmdc, prevObj);
DeleteDC(hbmdc);
EndPaint(hwnd, &ps);
}
}
}
break;
}
return DefWindowProc(hwnd, msg, wparam, lparam);
}
LRESULT CALLBACK Window::MsgRouter(HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam)
{
WindowMap::const_iterator iter(GetWindowMap().find(hwnd));
Window *wnd;
if (iter != GetWindowMap().end())
wnd = iter->second;
else
{
wnd = lastWindow;
wnd->hwnd = hwnd;
}
wnd->messageSig(msg, wparam, lparam);
return wnd->WindowProc(msg, wparam, lparam);
}
// window class
LPCTSTR Window::MakeClass()
{
WNDCLASSEX wc = {sizeof wc};
wc.lpfnWndProc = &Window::MsgRouter;
wc.hInstance = reinterpret_cast<HINSTANCE>(GetModuleHandle(0));
wc.hIcon = LoadIcon(wc.hInstance, MAKEINTRESOURCE(IDI_ICON));
wc.lpszClassName = TEXT(STRINGIZE(NAME));
ATOM atom = RegisterClassEx(&wc);
if (!atom)
THROW((err::Exception<err::EnvModuleTag, err::Win32PlatformTag>("failed to register window class") <<
boost::errinfo_api_function("RegisterClassEx")))
return reinterpret_cast<LPTSTR>(MAKEINTATOM(atom));
}
LPCTSTR Window::GetClass()
{
static LPCTSTR name = MakeClass();
return name;
}
}
// factory function
Window *MakeWindow(const std::string &title)
{ return new win32::Window(title); }
}
}
| [
"davidcosborn@gmail.com"
] | davidcosborn@gmail.com |
4599a0fdf5a09373b512674e929e2bf751117a25 | 81fea7e421f7a8dce11870ca64d4aed1d1c75e04 | /c++11/tuple_move_test.cpp | 1c4e967909d5557a2a59174ebc4fed9c882b8f8a | [] | no_license | petergottschling/dmc2 | d88b258717faf75f2bc808233d1b6237cbe92712 | cbb1df755cbfe244efa0f87ac064382d87a1f4d2 | refs/heads/master | 2020-03-26T14:34:26.143182 | 2018-08-16T14:00:58 | 2018-08-16T14:00:58 | 144,994,456 | 27 | 3 | null | null | null | null | UTF-8 | C++ | false | false | 2,460 | cpp | #include <iostream>
#include <tuple>
#include <functional>
#include <typeinfo>
#include "print_compiler.hpp"
using namespace std;
struct dings
{
dings() : i{}, p{} {};
dings(int i) : i(i), p(new int) {}
dings(const dings& that) : i(that.i), p(new int) { i= that.i; std::cout << "Copy constructor\n"; }
dings(dings&& that) : i(that.i), p(that.p) { that.p= nullptr; std::cout << "Move constructor\n"; }
~dings() { delete p; }
dings& operator=(const dings& that) { i= that.i; return *this; }
dings& operator=(dings&& that) { p= that.p; that.p= nullptr; i= that.i; return *this; }
int i;
int* p;
};
tuple<dings, dings> f(bool c)
{
dings d(3), e(1);
if (c)
d.i= 2;
std::cout << "d.p = " << d.p << '\n';
std::cout << "e.p = " << e.p << '\n';
// return forward_as_tuple(d, e);
// cout << "Type is " << typeid(make_tuple(d, move(e))).name() << '\n';
return make_tuple(move(d), move(e));
// return make_tuple(dings(1), dings(2));
}
struct matrix {};
struct vector {};
tuple<matrix, vector> lu(const matrix& A)
{
matrix LU;
vector p;
#if 0
assert(num_cols(A) == num_rows(A));
unsigned n= num_rows(A);
matrix LU(A);
vector p(n);
iota(p);
for (unsigned i= 0; i < n-1; i++) {
irange r(i+1, imax), ir(i, i+1); // Intervals [i+1, n-1], [i, i]
unsigned rmax= max_abs_pos(A[irange(i, imax)][ir]).first + i;
swap_row(A, i, rmax);
swap_row(P, i, rmax);
if(abs(A[i][i]) == 0) throw matrix_singular();
A[r][i]/= A[i][i]; // Scale column i
A[r][r]-= A[r][i] * A[i][r]; // Decrease bottom right block of matrix
}
#endif
return tuple<matrix, vector>(LU, p);
// return make_tuple(LU, p);
// return make_tuple(move(LU), move(p));
}
int main (int argc, char* argv[])
{
print_compiler();
// dings d, e;
// tie(d, e)= f(true);
auto td= f(true);
// auto d= get<0>(move(td));
// auto e= get<1>(move(td));
auto d= move(get<0>(td));
auto e= move(get<1>(td));
std::cout << "d.i = " << d.i << '\n';
std::cout << "e.i = " << e.i << '\n';
std::cout << "d.p = " << d.p << '\n';
std::cout << "e.p = " << e.p << '\n';
matrix A;
matrix LU;
vector p;
tie(LU, p)= lu(A);
// tuple<matrix, vector> t= lu(A);
// matrix LU= get<0>(t);
// vector p= get<1>(t);
// auto t= lu(A);
// auto LU= get<0>(t);
// auto p= get<1>(t);
return 0;
}
| [
"peter.gottschling@simunova.com"
] | peter.gottschling@simunova.com |
dc26589ce3498028c3882b6bda4b6cc398618082 | 5f7c2d593c8fa378eb89cebbe9ab71109e7d874d | /TrainerObject.cpp | aec5c86bc596ad39bd793f7dc227b33dae5b0e49 | [] | no_license | madildev/Gym-Management-System | f8c45eb1d5d473a732628db8ecd5692d44d4d24e | b70b90cb35daf96806bdf79ad690d28a9b6dc424 | refs/heads/master | 2022-12-22T21:58:25.406604 | 2020-10-02T22:58:47 | 2020-10-02T22:58:47 | 298,391,724 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 38 | cpp | #include "TrainerObject.h"
Trainer T; | [
"noreply@github.com"
] | noreply@github.com |
0c508359e45fc0b2a9bb336972396bb9d5b7170c | 63c71060f36866bca4ac27304cef6d5755fdc35c | /src/GICs/GicTypeSet.cpp | 8235039c3f561501a917dd5aebf5bc7113462e9e | [] | no_license | 15831944/barry_dev | bc8441cbfbd4b62fbb42bee3dcb79ff7f5fcaf8a | d4a83421458aa28ca293caa7a5567433e9358596 | refs/heads/master | 2022-03-24T07:00:26.810732 | 2015-12-22T07:19:58 | 2015-12-22T07:19:58 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,931 | cpp | ////////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2005
// Packet Engineering, Inc. All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification is not permitted unless authorized in writing by a duly
// appointed officer of Packet Engineering, Inc. or its derivatives
//
// Description:
//
//
// Modification History:
// 07/08/2010: Created by Tracy
////////////////////////////////////////////////////////////////////////////
#include "GICs/GicTypeSet.h"
#include "HtmlUtil/HtmlUtil.h"
#include "XmlUtil/Ptrs.h"
#include "XmlUtil/XmlTag.h"
#include "Util/RCObject.h"
#include "Util/RCObjImp.h"
#include "Util/String.h"
// static AosGicPtr sgGic = new AosGicTypeSet();
AosGicTypeSet::AosGicTypeSet(const bool flag)
:
AosGic(AOSGIC_TYPESET, AosGicType::eTypeSet, flag)
{
}
AosGicTypeSet::~AosGicTypeSet()
{
}
bool
AosGicTypeSet::generateCode(
const AosHtmlReqProcPtr &htmlPtr,
AosXmlTagPtr &vpd,
const AosXmlTagPtr &obj,
const OmnString &parentid,
AosHtmlCode &code)
{
// This function will generate:
// 1. HTML code
// 2. CSS code
// 3. JavaScript Code
// 4. Flash code
// Tracy, = Debug
//set CSS
OmnString cssStr;
OmnString cellww;
OmnString cellwwbd = vpd->getAttrStr("gic_cellwwbd");
if (cellwwbd != "" && obj)
cellww = obj->getAttrStr(cellwwbd, vpd->getAttrStr("gic_cellww"));
else
cellww = vpd->getAttrStr("gic_cellww", "60");
// binding
OmnString ctn, col, itemstl;
OmnString ctnbd = vpd->getAttrStr("gic_ctnbd");
if (ctnbd != "" && obj)
ctn = obj->getAttrStr(ctnbd, vpd->getAttrStr("gic_ctn"));
else
ctn = vpd->getAttrStr("gic_ctn");
OmnString disordctnbd = vpd->getAttrStr("gic_disordctnbd");
OmnString colbd = vpd->getAttrStr("gic_colbd");
if (colbd != "" && obj)
col = obj->getAttrStr(colbd, vpd->getAttrStr("gic_col"));
else
col = vpd->getAttrStr("gic_col");
OmnString itemstlbd = vpd->getAttrStr("gic_itemstlbd");
if (itemstlbd != "" && obj)
itemstl = obj->getAttrStr(itemstlbd, vpd->getAttrStr("gic_itemstl"));
else
itemstl = vpd->getAttrStr("gic_itemstl");
// end
OmnString gic_ctn, content;
AosXmlTagPtr cnt = vpd->getFirstChild("contents");
if (cnt) content = cnt->getNodeText();
if (ctn!="")
gic_ctn = ctn;
else if (content!="")
gic_ctn = content;
else gic_ctn = "ABCDE";
code.mJson
<< ",gic_ctn: \"" << gic_ctn
<< "\",gic_containerbd: \"" << vpd->getAttrStr("gic_containerbd", "typeset")
<< "\",gic_ctnbd: \"" << ctnbd
<< "\",gic_disordctnbd: \"" << disordctnbd
<< "\",gic_itemstl: \"" << vpd->getAttrStr("gic_itemstl", "word")
<< "\",gic_flashsrc: \"" << vpd->getAttrStr("gic_flashsrc", "")
<< "\",gic_colbd: \"" << colbd
<< "\",gic_cellwwbd: \"" << cellwwbd
<< "\",gic_itemstlbd: \"" << itemstlbd
<< "\",gic_col:" << vpd->getAttrInt("gic_col", 6)
<< ",gic_cellww:" << cellww;
return true;
}
| [
"barryniu@jimodb.com"
] | barryniu@jimodb.com |
651952003954e15ced6498e4a7e4c2b072c9a79c | 3e5e8d6c1b39d459f4e489db083bd437f88bf213 | /gmra_src/lib/GMRANeighborhood.h | 46e423afa5b0f9bae48c710b1aefb9ccf682bd60 | [] | no_license | emonson/SamVis | 37b4f92e482a5227520c4f6b95896ab35d0b71e5 | 98f1dc793bc6a0a38785cb279cd8d27a44807b8b | refs/heads/master | 2020-06-04T03:04:53.257031 | 2014-10-30T17:34:39 | 2014-10-30T17:34:39 | 9,029,161 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 3,679 | h | #ifndef GMRANEIGHBORHOOD_H
#define GMRANEIGHBORHOOD_H
#include "GMRATree.h"
#include <list>
#include <set>
#include <vector>
#include "EuclideanMetric.h"
#include "NodeDistance.h"
template <typename TPrecision>
class GMRANeighborhood{
protected:
GMRATree<TPrecision> &tree;
NodeDistance<TPrecision> *dist;
public:
GMRANeighborhood(GMRATree<TPrecision> &t, NodeDistance<TPrecision> *d) : tree(t), dist(d){
};
virtual ~GMRANeighborhood(){};
typedef typename std::pair< TPrecision, GMRANode<TPrecision> * > Neighbor;
typedef typename std::list< Neighbor > NeighborList;
typedef typename NeighborList::iterator NeighborListIterator;
virtual int neighbors(GMRANode<TPrecision> *node, TPrecision epsilon,
NeighborList &result, int stopScale=1000000) const = 0;
GMRATree<TPrecision> &getTree(){
return tree;
};
NodeDistance<TPrecision> *getNodeDistance(){
return dist;
}
};
//Neighborhood search using only the GMRA tree structure
template <typename TPrecision>
class GenericGMRANeighborhood : public GMRANeighborhood<TPrecision>{
private:
typedef typename GMRANeighborhood<TPrecision>::Neighbor Neighbor;
typedef typename GMRANeighborhood<TPrecision>::NeighborList NeighborList;
typedef typename NeighborList::iterator NeighborListIterator;
typedef typename GMRANode<TPrecision>::NodeVector NodeVector;
typedef typename NodeVector::iterator NodeVectorIterator;
public:
int neighbors(GMRANode<TPrecision> *x, TPrecision eps, NeighborList
&collected, int stopScale=10000000) const{
NeighborList nodes;
GMRANode<TPrecision> *root = this->tree.getRoot();
TPrecision d = this->dist->distance(x, root);
nodes.push_back( Neighbor(d, root) );
int nVisited =0;
int nCollected = 0;
while( !nodes.empty() ){
nVisited++;
Neighbor &n = nodes.front();
NodeVector kids = n.second->getChildren();
if( n.second->isStop() || n.second->getScale() == stopScale || kids.size() == 0 ){
if( n.first <= eps ){
collected.push_back( n );
nCollected++;
}
}
else if( n.second->getScale() < stopScale ) {
//For each kid check if nearest neighbors within epsilon are possible.
for( NodeVectorIterator it = kids.begin(); it != kids.end(); ++it ){
GMRANode<TPrecision> *kid = *it;
TPrecision d = this->dist->distance(kid, x);
if( d <= kid->getRadius() + eps ){
nodes.push_back( Neighbor(d, kid) );
}
}
}
nodes.pop_front();
}
//std::cout << nVisited << ", " << nCollected << std::endl;
return nCollected;
};
GenericGMRANeighborhood(GMRATree<TPrecision> &t, NodeDistance<TPrecision>
*d) : GMRANeighborhood<TPrecision>(t, d){
};
/*
//find all points within epsilon
std::list<int> epsilon(GMRANode<TPrecision> &x, TPrecision eps){
std::list<int> &result;
NeighborList candidates;
collectNodes(x, eps, candidates);
for(NeighborListIterator it = candidates.begin(); it != candidates.end();
++it){
std::list<int> &points = it->getPoints();
for(std:list<int>::iterator pit = points.begin(); pit<points.end();
++pit){
DenseVector<TPrecision> &p = tree.getPoint(*pit);
dist->distance(p, x);
if(d < eps){
result.push_back(*pit);
}
}
}
return result;
};
*/
};
#endif
| [
"emonson@cs.duke.edu"
] | emonson@cs.duke.edu |
c9d013917b73f41bc004a7e11b7cfde6a1167e17 | 6ced41da926682548df646099662e79d7a6022c5 | /aws-cpp-sdk-elasticache/include/aws/elasticache/model/LogDeliveryConfiguration.h | ba3e6c9aa5e1061e35dda0ad31e3ef4dfb0964cf | [
"Apache-2.0",
"MIT",
"JSON"
] | permissive | irods/aws-sdk-cpp | 139104843de529f615defa4f6b8e20bc95a6be05 | 2c7fb1a048c96713a28b730e1f48096bd231e932 | refs/heads/main | 2023-07-25T12:12:04.363757 | 2022-08-26T15:33:31 | 2022-08-26T15:33:31 | 141,315,346 | 0 | 1 | Apache-2.0 | 2022-08-26T17:45:09 | 2018-07-17T16:24:06 | C++ | UTF-8 | C++ | false | false | 10,952 | h | /**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/elasticache/ElastiCache_EXPORTS.h>
#include <aws/core/utils/memory/stl/AWSStreamFwd.h>
#include <aws/elasticache/model/LogType.h>
#include <aws/elasticache/model/DestinationType.h>
#include <aws/elasticache/model/DestinationDetails.h>
#include <aws/elasticache/model/LogFormat.h>
#include <aws/elasticache/model/LogDeliveryConfigurationStatus.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <utility>
namespace Aws
{
namespace Utils
{
namespace Xml
{
class XmlNode;
} // namespace Xml
} // namespace Utils
namespace ElastiCache
{
namespace Model
{
/**
* <p>Returns the destination, format and type of the logs. </p><p><h3>See
* Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/elasticache-2015-02-02/LogDeliveryConfiguration">AWS
* API Reference</a></p>
*/
class AWS_ELASTICACHE_API LogDeliveryConfiguration
{
public:
LogDeliveryConfiguration();
LogDeliveryConfiguration(const Aws::Utils::Xml::XmlNode& xmlNode);
LogDeliveryConfiguration& operator=(const Aws::Utils::Xml::XmlNode& xmlNode);
void OutputToStream(Aws::OStream& ostream, const char* location, unsigned index, const char* locationValue) const;
void OutputToStream(Aws::OStream& oStream, const char* location) const;
/**
* <p>Refers to <a href="https://redis.io/commands/slowlog">slow-log</a> or
* engine-log.</p>
*/
inline const LogType& GetLogType() const{ return m_logType; }
/**
* <p>Refers to <a href="https://redis.io/commands/slowlog">slow-log</a> or
* engine-log.</p>
*/
inline bool LogTypeHasBeenSet() const { return m_logTypeHasBeenSet; }
/**
* <p>Refers to <a href="https://redis.io/commands/slowlog">slow-log</a> or
* engine-log.</p>
*/
inline void SetLogType(const LogType& value) { m_logTypeHasBeenSet = true; m_logType = value; }
/**
* <p>Refers to <a href="https://redis.io/commands/slowlog">slow-log</a> or
* engine-log.</p>
*/
inline void SetLogType(LogType&& value) { m_logTypeHasBeenSet = true; m_logType = std::move(value); }
/**
* <p>Refers to <a href="https://redis.io/commands/slowlog">slow-log</a> or
* engine-log.</p>
*/
inline LogDeliveryConfiguration& WithLogType(const LogType& value) { SetLogType(value); return *this;}
/**
* <p>Refers to <a href="https://redis.io/commands/slowlog">slow-log</a> or
* engine-log.</p>
*/
inline LogDeliveryConfiguration& WithLogType(LogType&& value) { SetLogType(std::move(value)); return *this;}
/**
* <p>Returns the destination type, either <code>cloudwatch-logs</code> or
* <code>kinesis-firehose</code>.</p>
*/
inline const DestinationType& GetDestinationType() const{ return m_destinationType; }
/**
* <p>Returns the destination type, either <code>cloudwatch-logs</code> or
* <code>kinesis-firehose</code>.</p>
*/
inline bool DestinationTypeHasBeenSet() const { return m_destinationTypeHasBeenSet; }
/**
* <p>Returns the destination type, either <code>cloudwatch-logs</code> or
* <code>kinesis-firehose</code>.</p>
*/
inline void SetDestinationType(const DestinationType& value) { m_destinationTypeHasBeenSet = true; m_destinationType = value; }
/**
* <p>Returns the destination type, either <code>cloudwatch-logs</code> or
* <code>kinesis-firehose</code>.</p>
*/
inline void SetDestinationType(DestinationType&& value) { m_destinationTypeHasBeenSet = true; m_destinationType = std::move(value); }
/**
* <p>Returns the destination type, either <code>cloudwatch-logs</code> or
* <code>kinesis-firehose</code>.</p>
*/
inline LogDeliveryConfiguration& WithDestinationType(const DestinationType& value) { SetDestinationType(value); return *this;}
/**
* <p>Returns the destination type, either <code>cloudwatch-logs</code> or
* <code>kinesis-firehose</code>.</p>
*/
inline LogDeliveryConfiguration& WithDestinationType(DestinationType&& value) { SetDestinationType(std::move(value)); return *this;}
/**
* <p>Configuration details of either a CloudWatch Logs destination or Kinesis Data
* Firehose destination.</p>
*/
inline const DestinationDetails& GetDestinationDetails() const{ return m_destinationDetails; }
/**
* <p>Configuration details of either a CloudWatch Logs destination or Kinesis Data
* Firehose destination.</p>
*/
inline bool DestinationDetailsHasBeenSet() const { return m_destinationDetailsHasBeenSet; }
/**
* <p>Configuration details of either a CloudWatch Logs destination or Kinesis Data
* Firehose destination.</p>
*/
inline void SetDestinationDetails(const DestinationDetails& value) { m_destinationDetailsHasBeenSet = true; m_destinationDetails = value; }
/**
* <p>Configuration details of either a CloudWatch Logs destination or Kinesis Data
* Firehose destination.</p>
*/
inline void SetDestinationDetails(DestinationDetails&& value) { m_destinationDetailsHasBeenSet = true; m_destinationDetails = std::move(value); }
/**
* <p>Configuration details of either a CloudWatch Logs destination or Kinesis Data
* Firehose destination.</p>
*/
inline LogDeliveryConfiguration& WithDestinationDetails(const DestinationDetails& value) { SetDestinationDetails(value); return *this;}
/**
* <p>Configuration details of either a CloudWatch Logs destination or Kinesis Data
* Firehose destination.</p>
*/
inline LogDeliveryConfiguration& WithDestinationDetails(DestinationDetails&& value) { SetDestinationDetails(std::move(value)); return *this;}
/**
* <p>Returns the log format, either JSON or TEXT.</p>
*/
inline const LogFormat& GetLogFormat() const{ return m_logFormat; }
/**
* <p>Returns the log format, either JSON or TEXT.</p>
*/
inline bool LogFormatHasBeenSet() const { return m_logFormatHasBeenSet; }
/**
* <p>Returns the log format, either JSON or TEXT.</p>
*/
inline void SetLogFormat(const LogFormat& value) { m_logFormatHasBeenSet = true; m_logFormat = value; }
/**
* <p>Returns the log format, either JSON or TEXT.</p>
*/
inline void SetLogFormat(LogFormat&& value) { m_logFormatHasBeenSet = true; m_logFormat = std::move(value); }
/**
* <p>Returns the log format, either JSON or TEXT.</p>
*/
inline LogDeliveryConfiguration& WithLogFormat(const LogFormat& value) { SetLogFormat(value); return *this;}
/**
* <p>Returns the log format, either JSON or TEXT.</p>
*/
inline LogDeliveryConfiguration& WithLogFormat(LogFormat&& value) { SetLogFormat(std::move(value)); return *this;}
/**
* <p>Returns the log delivery configuration status. Values are one of
* <code>enabling</code> | <code>disabling</code> | <code>modifying</code> |
* <code>active</code> | <code>error</code> </p>
*/
inline const LogDeliveryConfigurationStatus& GetStatus() const{ return m_status; }
/**
* <p>Returns the log delivery configuration status. Values are one of
* <code>enabling</code> | <code>disabling</code> | <code>modifying</code> |
* <code>active</code> | <code>error</code> </p>
*/
inline bool StatusHasBeenSet() const { return m_statusHasBeenSet; }
/**
* <p>Returns the log delivery configuration status. Values are one of
* <code>enabling</code> | <code>disabling</code> | <code>modifying</code> |
* <code>active</code> | <code>error</code> </p>
*/
inline void SetStatus(const LogDeliveryConfigurationStatus& value) { m_statusHasBeenSet = true; m_status = value; }
/**
* <p>Returns the log delivery configuration status. Values are one of
* <code>enabling</code> | <code>disabling</code> | <code>modifying</code> |
* <code>active</code> | <code>error</code> </p>
*/
inline void SetStatus(LogDeliveryConfigurationStatus&& value) { m_statusHasBeenSet = true; m_status = std::move(value); }
/**
* <p>Returns the log delivery configuration status. Values are one of
* <code>enabling</code> | <code>disabling</code> | <code>modifying</code> |
* <code>active</code> | <code>error</code> </p>
*/
inline LogDeliveryConfiguration& WithStatus(const LogDeliveryConfigurationStatus& value) { SetStatus(value); return *this;}
/**
* <p>Returns the log delivery configuration status. Values are one of
* <code>enabling</code> | <code>disabling</code> | <code>modifying</code> |
* <code>active</code> | <code>error</code> </p>
*/
inline LogDeliveryConfiguration& WithStatus(LogDeliveryConfigurationStatus&& value) { SetStatus(std::move(value)); return *this;}
/**
* <p>Returns an error message for the log delivery configuration.</p>
*/
inline const Aws::String& GetMessage() const{ return m_message; }
/**
* <p>Returns an error message for the log delivery configuration.</p>
*/
inline bool MessageHasBeenSet() const { return m_messageHasBeenSet; }
/**
* <p>Returns an error message for the log delivery configuration.</p>
*/
inline void SetMessage(const Aws::String& value) { m_messageHasBeenSet = true; m_message = value; }
/**
* <p>Returns an error message for the log delivery configuration.</p>
*/
inline void SetMessage(Aws::String&& value) { m_messageHasBeenSet = true; m_message = std::move(value); }
/**
* <p>Returns an error message for the log delivery configuration.</p>
*/
inline void SetMessage(const char* value) { m_messageHasBeenSet = true; m_message.assign(value); }
/**
* <p>Returns an error message for the log delivery configuration.</p>
*/
inline LogDeliveryConfiguration& WithMessage(const Aws::String& value) { SetMessage(value); return *this;}
/**
* <p>Returns an error message for the log delivery configuration.</p>
*/
inline LogDeliveryConfiguration& WithMessage(Aws::String&& value) { SetMessage(std::move(value)); return *this;}
/**
* <p>Returns an error message for the log delivery configuration.</p>
*/
inline LogDeliveryConfiguration& WithMessage(const char* value) { SetMessage(value); return *this;}
private:
LogType m_logType;
bool m_logTypeHasBeenSet;
DestinationType m_destinationType;
bool m_destinationTypeHasBeenSet;
DestinationDetails m_destinationDetails;
bool m_destinationDetailsHasBeenSet;
LogFormat m_logFormat;
bool m_logFormatHasBeenSet;
LogDeliveryConfigurationStatus m_status;
bool m_statusHasBeenSet;
Aws::String m_message;
bool m_messageHasBeenSet;
};
} // namespace Model
} // namespace ElastiCache
} // namespace Aws
| [
"aws-sdk-cpp-automation@github.com"
] | aws-sdk-cpp-automation@github.com |
87d0b4f8eb5bc17faa75026a9338304a76d1f5a5 | 114d28dda688013551be7f5632168ca293ab9d08 | /contests/3/WinterFun/ReadWriter.h | e19feefb3fd42e674170c798c55a832964e964aa | [] | no_license | zilzilok/sharaga_ads | 4f342347f0fd706c77fbb5285159bd94fda7a67c | a5b3dadf186a5ae99ae88c9b011280ccc9de963e | refs/heads/master | 2023-05-27T21:50:47.977763 | 2021-06-06T21:17:38 | 2021-06-06T21:17:38 | 244,006,512 | 5 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,850 | h | #include <iostream>
#include <fstream>
#include "Student_and_Ski.h"
class ReadWriter
{
private:
std::fstream fin;
std::fstream fout;
public:
~ReadWriter()
{
fin.close();
fout.close();
}
ReadWriter()
{
fin.open("input.txt", std::ios::in);
fout.open("output.txt", std::ios::out);
}
int readInt()
{
if (!fin.is_open())
throw std::ios_base::failure("file not open");
int n = 0;
fin >> n;
return n;
}
//формат: 1 140; 2 156; 3 187; 4 198;
//This method only fill array. You should create it with operator (new) before call this method.
void readStudents(Student* arr, int length)
{
if (!fin.is_open())
throw std::ios_base::failure("file not open");
char ch;
for (int i = 0; i < length; i++)
{
fin >> arr[i].id;
fin >> arr[i].height;
fin >> ch; // ;
}
}
//формат: 1 140; 2 156; 3 187; 4 198;
//This method only fill array. You should create it with (new) operator before call this method.
void readSkis(Ski* arr, int length)
{
if (!fin.is_open())
throw std::ios_base::failure("file not open");
char ch;
for (int i = 0; i < length; i++)
{
fin >> arr[i].id;
fin >> arr[i].length;
fin >> ch; // ;
}
}
//формат: 1 3; 2 1; 3 56; 4 13;
void writeStudentsAndSkis(Student* students, Ski* skis, int n)
{
if (!fout.is_open())
throw std::ios_base::failure("file not open");
for (int i = 0; i < n; i++)
fout << students[i].id << " " << skis[i].id << ";" << " ";
}
};
| [
"tnsafin@edu.hse.ru"
] | tnsafin@edu.hse.ru |
01e6e3cc4213db5fad37266f442b6f42e849eb97 | 8203cd72573e4b329d786429934777f3f7c167b0 | /DirectoryWalker.cpp | f0e3ae5d0d3dc9d9660a27306945f4d1d1808ff3 | [] | no_license | ohookins/photo-fingerprint | 32f0977cf7121a4e0d5b55baba97a6068574f119 | 9ecf667a4008e602da1164c94a47aff11e81ae38 | refs/heads/master | 2021-07-12T18:10:24.964998 | 2020-11-20T05:59:29 | 2020-11-20T05:59:29 | 223,288,994 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,895 | cpp | #include "DirectoryWalker.hpp"
#include <iostream>
#include <queue>
DirectoryWalker::DirectoryWalker(const std::string directoryName)
: Queue(0), Directory(directoryName) {}
void DirectoryWalker::Traverse(const bool descend = false) {
Completed = false;
Worker = std::thread([this, descend]() {
std::cerr << "Retrieving list of files..." << std::endl;
// TODO: Check that the directory is valid
// Push the starting directory onto the queue so the loop is the same for
// each directory
std::queue<boost::filesystem::path> toBeListed;
toBeListed.push(Directory);
for (;;) {
if (toBeListed.empty())
break;
boost::filesystem::path currentDir = toBeListed.front();
toBeListed.pop();
for (boost::filesystem::directory_entry &entry :
boost::filesystem::directory_iterator(currentDir)) {
// TODO: Print out number of entries walked in an ncurses window?
// Add any found directories to the traversal queue
if (boost::filesystem::is_directory(entry)) {
if (descend)
toBeListed.push(entry);
continue;
}
Queue.push(new boost::filesystem::path(entry));
}
}
Completed = true;
});
}
std::pair<std::optional<boost::filesystem::path>, bool>
DirectoryWalker::GetNext() {
boost::filesystem::path *entry;
bool success = Queue.pop(entry);
if (!success)
return {std::nullopt, Completed};
auto retval = boost::filesystem::path(*entry);
delete entry;
return {retval, Completed};
}
void DirectoryWalker::Finish() {
// If the directory traversal has completed, join the thread.
// This is probably not a great way to do this. Also because we don't actually
// check that the traversal has completed (although if the thread has finished
// we can assume it has).
if (Worker.joinable()) {
Worker.join();
}
} | [
"ohookins@gmail.com"
] | ohookins@gmail.com |
7a37b11845486c233a695078722f4f91b0669cdf | c28f2a42787a01e2101a816ecfbbca7c6cbac8ea | /jammer/jammerglcore.cpp | b3d180e787a59fd1a803f8ce59683ac3c401f1cb | [] | no_license | develengine/frogress | c034ec0808c96016dd6da84e73bfbe795251c8ac | 555e399561779253e899f8d612e2a6de669851c3 | refs/heads/master | 2022-04-11T18:47:17.932854 | 2020-04-11T16:55:16 | 2020-04-11T16:55:16 | 254,913,942 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 214 | cpp | #include "jammerglcore.hpp"
namespace Jammer {
u32 vaos[VAO_COUNT];
u32 buffers[BUFFER_COUNT];
u32 textures[TEXTURE_COUNT];
u32 programs[PROGRAM_COUNT];
u32 shaders[SHADER_COUNT];
int uniforms[UNIFORM_COUNT];
}
| [
"enginedevel@gmail.com"
] | enginedevel@gmail.com |
c95f0f2a1703f67213ccea7e80c15d357b1cbb96 | 61cbaba5fd849ad52c3c2ee8ee003554b6389a79 | /il2cpp/Classes/Native/mscorlib12.cpp | fc19c0f9c4a8c7425693ebe470dffa791aad83a0 | [] | no_license | wallstudio/UnityTest_2019_4_4 | 9b8c6a6df2b55733659bd7d90d5d686f8b1bdd61 | 6b30f321504b6377c36f703f1bbb1d8d9ec5ba11 | refs/heads/master | 2023-02-03T21:42:36.063139 | 2020-12-09T17:08:37 | 2020-12-09T17:08:37 | 310,818,733 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,709,458 | cpp | #include "il2cpp-config.h"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <cstring>
#include <string.h>
#include <stdio.h>
#include <cmath>
#include <limits>
#include <assert.h>
#include <stdint.h>
#include "codegen/il2cpp-codegen.h"
#include "icalls/mscorlib/System.Text/EncodingHelper.h"
#include "icalls/mscorlib/System.Text/Normalization.h"
#include "il2cpp-object-internals.h"
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>
struct VirtFuncInvoker1
{
typedef R (*Func)(void*, T1, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
template <typename R>
struct VirtFuncInvoker0
{
typedef R (*Func)(void*, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, invokeData.method);
}
};
template <typename T1>
struct VirtActionInvoker1
{
typedef void (*Action)(void*, T1, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
template <typename 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, 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, 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, typename T4>
struct VirtFuncInvoker4
{
typedef R (*Func)(void*, T1, T2, T3, T4, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, p4, invokeData.method);
}
};
template <typename R, typename T1, typename T2, typename T3, typename T4, typename T5, typename T6>
struct VirtFuncInvoker6
{
typedef R (*Func)(void*, T1, T2, T3, T4, T5, T6, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4, T5 p5, T6 p6)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, p4, p5, p6, 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 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>
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);
}
};
struct InterfaceActionInvoker0
{
typedef void (*Action)(void*, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
((Action)invokeData.methodPtr)(obj, invokeData.method);
}
};
template <typename R, typename T1, typename T2, 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 R, typename T1, typename T2>
struct InterfaceFuncInvoker2
{
typedef R (*Func)(void*, T1, T2, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
return ((Func)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
}
};
// Microsoft.Win32.SafeHandles.SafeFileHandle
struct SafeFileHandle_tE1B31BE63CD11BBF2B9B6A205A72735F32EB1BCB;
// Mono.Globalization.Unicode.CodePointIndexer
struct CodePointIndexer_tA70DBD5101E826E30EEF124C2EEE1019B539DB4A;
// Mono.Globalization.Unicode.CodePointIndexer/TableRange[]
struct TableRangeU5BU5D_t6948DE52FB348848EC96FB928C2FCFEFB250C23A;
// System.Action`1<System.Object>
struct Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0;
// System.ArgumentException
struct ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1;
// System.ArgumentNullException
struct ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD;
// System.ArgumentOutOfRangeException
struct ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA;
// System.Boolean[]
struct BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040;
// System.Byte
struct Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07;
// System.ByteMatcher
struct ByteMatcher_tB199BDD35E2575B84D9FDED34954705653D241DC;
// System.Byte[]
struct ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821;
// System.Char
struct Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9;
// System.Char[]
struct CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2;
// System.Collections.Generic.Dictionary`2<System.Int32,System.Globalization.CultureInfo>
struct Dictionary_2_tC88A56872F7C79DBB9582D4F3FC22ED5D8E0B98B;
// System.Collections.Generic.Dictionary`2<System.String,System.Globalization.CultureInfo>
struct Dictionary_2_tBA5388DBB42BF620266F9A48E8B859BBBB224E25;
// System.Collections.Generic.Dictionary`2<System.String,System.Int32>
struct Dictionary_2_tD6E204872BA9FD506A0287EF68E285BEB9EC0DFB;
// System.Collections.Hashtable
struct Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9;
// System.Collections.Hashtable/bucket[]
struct bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A;
// System.Collections.ICollection
struct ICollection_tA3BAB2482E28132A7CA9E0E21393027353C28B54;
// System.Collections.IDictionary
struct IDictionary_t1BD5C1546718A374EA8122FBD6C6EE45331E8CE7;
// System.Collections.IEqualityComparer
struct IEqualityComparer_t3102D0F5BABD60224F6DFF4815BCA1045831FB7C;
// System.Console/InternalCancelHandler
struct InternalCancelHandler_t2DD134D8150B67E2F9FAD1BC2E6BE92EED57968A;
// System.ConsoleCancelEventHandler
struct ConsoleCancelEventHandler_t6F3B5D9C55C25FF6B53EFEDA9150EFE807311EB4;
// System.CultureAwareComparer
struct CultureAwareComparer_tFCEC16B02A638A8DFF49C7C8C507A6A889C8E058;
// System.Diagnostics.StackTrace[]
struct StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196;
// System.Exception
struct Exception_t;
// System.FormatException
struct FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC;
// System.Func`2<System.Object,System.Int32>
struct Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6;
// System.Func`2<System.Object,System.String>
struct Func_2_t44B347E67E515867D995E8BD5EFD67FA88CE53CF;
// System.Globalization.Calendar
struct Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5;
// System.Globalization.CodePageDataItem
struct CodePageDataItem_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB;
// System.Globalization.CompareInfo
struct CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1;
// System.Globalization.CultureData
struct CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD;
// System.Globalization.CultureInfo
struct CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F;
// System.Globalization.DateTimeFormatInfo
struct DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F;
// System.Globalization.NumberFormatInfo
struct NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8;
// System.Globalization.TextInfo
struct TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8;
// System.IFormatProvider
struct IFormatProvider_t4247E13AE2D97A079B88D594B7ABABF313259901;
// System.IO.CStreamWriter
struct CStreamWriter_t6B662CA496662AF63D81722DCA99094893C80450;
// System.IO.FileStream
struct FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418;
// System.IO.IOException
struct IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA;
// System.IO.Stream
struct Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7;
// System.IO.Stream/ReadWriteTask
struct ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80;
// System.IO.StreamReader
struct StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E;
// System.IO.TextReader
struct TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A;
// System.IO.TextWriter
struct TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0;
// System.IndexOutOfRangeException
struct IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF;
// System.Int16
struct Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D;
// System.Int32
struct Int32_t585191389E07734F19F3156FF88FB3EF4800D102;
// System.Int32[]
struct Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83;
// System.IntPtr[]
struct IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD;
// System.InvalidOperationException
struct InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1;
// System.NotSupportedException
struct NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010;
// System.Object[]
struct ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A;
// System.OrdinalComparer
struct OrdinalComparer_tF6BA53365493F2DF0E4DA7C73C4094D1E35F240A;
// System.OutOfMemoryException
struct OutOfMemoryException_t2DF3EAC178583BD1DEFAAECBEDB2AF1EA86FBFC7;
// System.ParameterizedStrings/FormatParam[]
struct FormatParamU5BU5D_t2F95A3C5AF726E75A42BC28843BAD579B62199B5;
// System.Reflection.Assembly
struct Assembly_t;
// System.Reflection.Assembly/ResolveEventHolder
struct ResolveEventHolder_t5267893EB7CB9C12F7B9B463FD4C221BEA03326E;
// System.Reflection.Binder
struct Binder_t4D5CB06963501D32847C057B57157D6DC49CA759;
// System.Reflection.MemberFilter
struct MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381;
// System.Runtime.Serialization.IFormatterConverter
struct IFormatterConverter_tC3280D64D358F47EA4DAF1A65609BA0FC081888A;
// System.Runtime.Serialization.SafeSerializationManager
struct SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770;
// System.Runtime.Serialization.SerializationException
struct SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210;
// System.Runtime.Serialization.SerializationInfo
struct SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26;
// System.Runtime.Serialization.SerializationInfoEnumerator
struct SerializationInfoEnumerator_tB72162C419D705A40F34DDFEB18E6ACA347C54E5;
// System.SByte[]
struct SByteU5BU5D_t623D1F33C61DEAC564E2B0560E00F1E1364F7889;
// System.String
struct String_t;
// System.StringComparer
struct StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE;
// System.String[]
struct StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E;
// System.SystemException
struct SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782;
// System.TermInfoDriver
struct TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653;
// System.TermInfoReader
struct TermInfoReader_tCAABF3484E6F0AA298F809766C52CA9DC4E6C55C;
// System.Text.ASCIIEncoding
struct ASCIIEncoding_t3A4744E997A7BE0CEF1D5AE3A35EFC4DFFDDC6B9;
// System.Text.Decoder
struct Decoder_tEEF45EB6F965222036C49E8EC6BA8A0692AA1F26;
// System.Text.DecoderExceptionFallback
struct DecoderExceptionFallback_tF6CA264320D5F576FED0265DBEC89C1F5759C8C9;
// System.Text.DecoderExceptionFallbackBuffer
struct DecoderExceptionFallbackBuffer_t1E27F547826A8F4F4CCDA2CB51E232EFB64000EA;
// System.Text.DecoderFallback
struct DecoderFallback_t128445EB7676870485230893338EF044F6B72F60;
// System.Text.DecoderFallbackBuffer
struct DecoderFallbackBuffer_t41EB1B3F5748BEEF5BE883DA09DBDB937441A83C;
// System.Text.DecoderFallbackException
struct DecoderFallbackException_t600999E267866BD2B6A47BF1E525E779171FD41A;
// System.Text.DecoderNLS
struct DecoderNLS_tCDF0A810A2E2B738728A98BBB49F792E66BDF6CD;
// System.Text.DecoderReplacementFallback
struct DecoderReplacementFallback_t8CF74B2DAE2A08AEA7DF6366778D2E3EA75FC742;
// System.Text.DecoderReplacementFallbackBuffer
struct DecoderReplacementFallbackBuffer_t1D90752C8EFF20A65277F02C619E16C373790D23;
// System.Text.Encoder
struct Encoder_t29B2697B0B775EABC52EBFB914F327BE9B1A3464;
// System.Text.EncoderExceptionFallback
struct EncoderExceptionFallback_tF2E778252F491EF902164CC17AB15AD7AF14BE58;
// System.Text.EncoderExceptionFallbackBuffer
struct EncoderExceptionFallbackBuffer_tCCFC3E153251EFA466428A3D364E075DCB5408EB;
// System.Text.EncoderFallback
struct EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63;
// System.Text.EncoderFallbackBuffer
struct EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C;
// System.Text.EncoderFallbackException
struct EncoderFallbackException_t2577E6366E4064953BFA80B3A71BD75154E15B53;
// System.Text.EncoderNLS
struct EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8;
// System.Text.EncoderReplacementFallback
struct EncoderReplacementFallback_tC2E8A94C82BBF7A4CFC8E3FDBA8A381DCF29F998;
// System.Text.EncoderReplacementFallbackBuffer
struct EncoderReplacementFallbackBuffer_t15BBCFD4E3EFF8C907821BB065AA94A58C36959A;
// System.Text.Encoding
struct Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4;
// System.Text.Encoding/DefaultDecoder
struct DefaultDecoder_t3872BD77BDC12EB0F34D0DEE8E34D7A1FE49F91C;
// System.Text.Encoding/DefaultEncoder
struct DefaultEncoder_t71EA10E1235BA46A6CC88E06EF73C2BAC1673225;
// System.Text.Encoding/EncodingByteBuffer
struct EncodingByteBuffer_t3F87DF1BC4355EFCA2E26FFAE6D239ABCFBF3AD5;
// System.Text.Encoding/EncodingCharBuffer
struct EncodingCharBuffer_t57DF2C468BB65F56788A37E2DDF56AA6BE536BD0;
// System.Text.EncodingNLS
struct EncodingNLS_tED4EB523BC03EF4F815875D8A722B294A72F40E7;
// System.Text.EncodingProvider
struct EncodingProvider_t75FB9C8A37AAC86251A690CAB8D5D718B9DCB480;
// System.Text.EncodingProvider[]
struct EncodingProviderU5BU5D_tC6F023570A13EC5DEAC72E9403D9C8B84DCF4E49;
// System.Text.InternalDecoderBestFitFallback
struct InternalDecoderBestFitFallback_tEDAD252E54B0CA27A47ABC5681EC6BCACB3C19B4;
// System.Text.InternalDecoderBestFitFallbackBuffer
struct InternalDecoderBestFitFallbackBuffer_t72773560F3EA35774592AA02A71B46D4A46DA25F;
// System.Text.InternalEncoderBestFitFallback
struct InternalEncoderBestFitFallback_tE5EF81259A780E6F8990218A8E46D41B5BCE56F3;
// System.Text.InternalEncoderBestFitFallbackBuffer
struct InternalEncoderBestFitFallbackBuffer_t8A9165EBB478F5F06CA6F3D170BC17B3A342EDE3;
// System.Text.Latin1Encoding
struct Latin1Encoding_tC026E9CCC23C3A25568FF02B75F937DB388DC9E7;
// System.Text.StringBuilder
struct StringBuilder_t;
// System.Text.UTF32Encoding
struct UTF32Encoding_t16A7634FE9BE75EEC897F21F1420783FAA53C30A;
// System.Text.UTF7Encoding
struct UTF7Encoding_t5733F4C1ABD99AECA11B02CBABEACF7A14545A86;
// System.Text.UTF8Encoding
struct UTF8Encoding_t77ED103B749A387EF072C3429F48C91D12CA08DE;
// System.Text.UnicodeEncoding
struct UnicodeEncoding_t6E0E60A1D7A4BECF9901B00EB286FFC2B57F6356;
// System.Threading.SemaphoreSlim
struct SemaphoreSlim_t2E2888D1C0C8FAB80823C76F1602E4434B8FA048;
// System.Threading.Tasks.Task
struct Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2;
// System.Type
struct Type_t;
// System.Type[]
struct TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F;
// System.UInt16
struct UInt16_tAE45CEF73BF720100519F6867F32145D075F928E;
// System.Void
struct Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017;
IL2CPP_EXTERN_C RuntimeClass* ASCIIEncoding_t3A4744E997A7BE0CEF1D5AE3A35EFC4DFFDDC6B9_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Boolean_tB53F6830F670160873277339AA58F15CAED4399C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ByteMatcher_tB199BDD35E2575B84D9FDED34954705653D241DC_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CStreamWriter_t6B662CA496662AF63D81722DCA99094893C80450_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CompatibilitySwitches_tC541F9F5404925C97741A0628E9B6D26C40CFA91_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ConsoleDriver_t4F24DB42600CA82912181D5D312902B8BEFEE101_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Console_t5C8E87BA271B0DECA837A3BF9093AC3560DB3D5D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CultureAwareComparer_tFCEC16B02A638A8DFF49C7C8C507A6A889C8E058_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DecoderExceptionFallbackBuffer_t1E27F547826A8F4F4CCDA2CB51E232EFB64000EA_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DecoderExceptionFallback_tF6CA264320D5F576FED0265DBEC89C1F5759C8C9_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DecoderFallbackException_t600999E267866BD2B6A47BF1E525E779171FD41A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DecoderFallback_t128445EB7676870485230893338EF044F6B72F60_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DecoderNLS_tCDF0A810A2E2B738728A98BBB49F792E66BDF6CD_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DecoderReplacementFallbackBuffer_t1D90752C8EFF20A65277F02C619E16C373790D23_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DecoderReplacementFallback_t8CF74B2DAE2A08AEA7DF6366778D2E3EA75FC742_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DefaultDecoder_t3872BD77BDC12EB0F34D0DEE8E34D7A1FE49F91C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DefaultEncoder_t71EA10E1235BA46A6CC88E06EF73C2BAC1673225_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* EmptyArray_1_t138215D75D34CDCC9D3A3248006BB81FC3F9609C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* EmptyArray_1_t40AF87279AA6E3AEEABB0CBA1425F6720C40961A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* EncoderExceptionFallbackBuffer_tCCFC3E153251EFA466428A3D364E075DCB5408EB_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* EncoderExceptionFallback_tF2E778252F491EF902164CC17AB15AD7AF14BE58_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* EncoderFallbackException_t2577E6366E4064953BFA80B3A71BD75154E15B53_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* EncoderReplacementFallbackBuffer_t15BBCFD4E3EFF8C907821BB065AA94A58C36959A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* EncoderReplacementFallback_tC2E8A94C82BBF7A4CFC8E3FDBA8A381DCF29F998_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* EncodingHelper_t1A078DCE9CF2B3578DA8CAFE03FB9FFABD00EBB3_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* EncodingProvider_t75FB9C8A37AAC86251A690CAB8D5D718B9DCB480_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* EncodingTable_t22A8552898CDE776E92D442768930CF463B8032D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Exception_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* FormatParamU5BU5D_t2F95A3C5AF726E75A42BC28843BAD579B62199B5_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IComparable_tF58875555EC83AB78FA9E958C48803C6AF9FB5D9_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ICustomFormatter_tDAB6E1F893DB2D4F44572E9B6ED6E82BC9D26D1E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IFormatProvider_t4247E13AE2D97A079B88D594B7ABABF313259901_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IFormattable_t58E0883927AD7B9E881837942BD4FA2E7D8330C0_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* InternalDecoderBestFitFallbackBuffer_t72773560F3EA35774592AA02A71B46D4A46DA25F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* InternalDecoderBestFitFallback_tEDAD252E54B0CA27A47ABC5681EC6BCACB3C19B4_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* InternalEncoderBestFitFallbackBuffer_t8A9165EBB478F5F06CA6F3D170BC17B3A342EDE3_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* InternalEncoderBestFitFallback_tE5EF81259A780E6F8990218A8E46D41B5BCE56F3_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Latin1Encoding_tC026E9CCC23C3A25568FF02B75F937DB388DC9E7_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Math_tFB388E53C7FDC6FCCF9A19ABF5A4E521FBD52E19_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* MissingMethodException_t7D33DFD3009E4F19BE4DD0967F04D3878F348498_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* NormalizationTableUtil_t03190D7C1B6FF779D40EBEB0A5929DE24585DAA5_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Normalization_t5DC806A630757AD1E908576E8B2EEB2A77BEC22E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* NotImplementedException_t8AD6EBE5FEDB0AEBECEE0961CF73C35B372EFFA4_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* OrdinalComparer_tF6BA53365493F2DF0E4DA7C73C4094D1E35F240A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* OutOfMemoryException_t2DF3EAC178583BD1DEFAAECBEDB2AF1EA86FBFC7_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Path_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* RuntimeObject_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SecurityException_tBB116BA16A419AB19A4F7DEEF43A3FC2A638E8D5_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* StringBuilder_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* String_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TermInfoReader_tCAABF3484E6F0AA298F809766C52CA9DC4E6C55C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TermInfoStringsU5BU5D_t734604FFAFCF8B18CFD63C5901E11EA6C13F23F2_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TermInfoStrings_tA50FD6AB2B4EFB66E90CD563942E0A664FD6022F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Type_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* UTF32Encoding_t16A7634FE9BE75EEC897F21F1420783FAA53C30A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* UTF7Encoding_t5733F4C1ABD99AECA11B02CBABEACF7A14545A86_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* UTF8Encoding_t77ED103B749A387EF072C3429F48C91D12CA08DE_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* UnicodeEncoding_t6E0E60A1D7A4BECF9901B00EB286FFC2B57F6356_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____121EC59E23F7559B28D338D562528F6299C2DE22_2_FieldInfo_var;
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____25CF935D2AE9EDF05DD75BCD47FF84D9255D6F6E_6_FieldInfo_var;
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____EBF68F411848D603D059DFDEA2321C5A5EA78044_92_FieldInfo_var;
IL2CPP_EXTERN_C String_t* _stringLiteral044F779DD78DC457C66C3F03FB54E04EE4013F70;
IL2CPP_EXTERN_C String_t* _stringLiteral046490AF8515A05693281DF74BD30B0BD06C83E0;
IL2CPP_EXTERN_C String_t* _stringLiteral048251B7F14BEBC4F04C6E75383D0CCE50A9CC5A;
IL2CPP_EXTERN_C String_t* _stringLiteral0498E94C4956DFAA08F19AE2A65E26A19A16C9A9;
IL2CPP_EXTERN_C String_t* _stringLiteral08538A1A7BAEAE9E6D01BC0A536BDD942B56B316;
IL2CPP_EXTERN_C String_t* _stringLiteral12B316FD412591B95637D99714DDDBD3638B2D91;
IL2CPP_EXTERN_C String_t* _stringLiteral12C0F1FBADC4046B5F2BB9E063B227EF8750D9D6;
IL2CPP_EXTERN_C String_t* _stringLiteral1423A24195F33B29B91882563FADE351CF5AD3AB;
IL2CPP_EXTERN_C String_t* _stringLiteral14A9DC09E10179B15BEAF94C0AED53904ACE0336;
IL2CPP_EXTERN_C String_t* _stringLiteral16A2FC77086B1F5E4B5D8B40D2BDA0C400F720EC;
IL2CPP_EXTERN_C String_t* _stringLiteral1A75B798F31CCE27B38AA9AE88BDD80B52DCD158;
IL2CPP_EXTERN_C String_t* _stringLiteral1E5C2F367F02E47A8C160CDA1CD9D91DECBAC441;
IL2CPP_EXTERN_C String_t* _stringLiteral2028F29133B2E44BEB124C38745724AC71E7E14C;
IL2CPP_EXTERN_C String_t* _stringLiteral23C470084C11AED675C34B4BA1F2522082975AF1;
IL2CPP_EXTERN_C String_t* _stringLiteral27461778DEE27391FA6989DD3BF8A0988F190F59;
IL2CPP_EXTERN_C String_t* _stringLiteral278316CA5ED0FC3A0A92ED4DC8DA6CA9FB56DEBA;
IL2CPP_EXTERN_C String_t* _stringLiteral3030E728F154BF51419109EFB93B6B8AEEC9A976;
IL2CPP_EXTERN_C String_t* _stringLiteral30604394791BC9E659A2233492C5416B09AC67D5;
IL2CPP_EXTERN_C String_t* _stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D;
IL2CPP_EXTERN_C String_t* _stringLiteral33B5FF620EE9A16D40627E9D0C64AAB763B1328C;
IL2CPP_EXTERN_C String_t* _stringLiteral36D1AAE32206DD665C860BDBE0E1AC6343CE46CC;
IL2CPP_EXTERN_C String_t* _stringLiteral37A1B691DA7F35114BD641247FD0D89D439D37B4;
IL2CPP_EXTERN_C String_t* _stringLiteral3D54973F528B01019A58A52D34D518405A01B891;
IL2CPP_EXTERN_C String_t* _stringLiteral3ECE74215FB2793907E8EFA463AA7FFD96E196C1;
IL2CPP_EXTERN_C String_t* _stringLiteral3F1A0D1D0F6B2DF6299555699EA20A335495FD6A;
IL2CPP_EXTERN_C String_t* _stringLiteral41ACFBBE0BF9743D4D3DB3BED46D472A616254EF;
IL2CPP_EXTERN_C String_t* _stringLiteral44B87FDC3140E2D8517F78B55C3F2FDA0B683070;
IL2CPP_EXTERN_C String_t* _stringLiteral4507298CF6128B9A09326DBFCBA2EC4E9985BB1E;
IL2CPP_EXTERN_C String_t* _stringLiteral45BD908DF490EDD79694BA0DAFF82FC092970B55;
IL2CPP_EXTERN_C String_t* _stringLiteral463C9ACFFA099CA60B83F74DD23B2E4DE31E298B;
IL2CPP_EXTERN_C String_t* _stringLiteral4FF447B8EF42CA51FA6FB287BED8D40F49BE58F1;
IL2CPP_EXTERN_C String_t* _stringLiteral5333C95EEF3653ADA7FB3938F954312C6198A976;
IL2CPP_EXTERN_C String_t* _stringLiteral5578D8A7F74274702931BBEDBD2FC483A5E92E4B;
IL2CPP_EXTERN_C String_t* _stringLiteral587F8A95F0C1E3884550985E4830A26302A3BFCF;
IL2CPP_EXTERN_C String_t* _stringLiteral58DB15989CC5229A62FDAD47E614D05B051584E7;
IL2CPP_EXTERN_C String_t* _stringLiteral59BD0A3FF43B32849B319E645D4798D8A5D1E889;
IL2CPP_EXTERN_C String_t* _stringLiteral5AB326B7D63281F2A5AF4CE86B94441661DA24E8;
IL2CPP_EXTERN_C String_t* _stringLiteral5BAB61EB53176449E25C2C82F172B82CB13FFB9D;
IL2CPP_EXTERN_C String_t* _stringLiteral5CFB387F58D99E3322C5AF64AC12951CCEB68B00;
IL2CPP_EXTERN_C String_t* _stringLiteral5E582BBCB7C3EEF516ECF2B6FE525CF94E83D018;
IL2CPP_EXTERN_C String_t* _stringLiteral62836465B297BA5E6273FE13E6F591F548238688;
IL2CPP_EXTERN_C String_t* _stringLiteral63592CD10F546568A06AF3B6CC9D1156A52DACE5;
IL2CPP_EXTERN_C String_t* _stringLiteral66023E7A5B189C6C1C5EA722520C1072C9242ACD;
IL2CPP_EXTERN_C String_t* _stringLiteral6A95BAFF5E18ABC1DDB687C6380A1673A59B072F;
IL2CPP_EXTERN_C String_t* _stringLiteral74EBCD92BCF0C393F47C1A4EEA9851BB06BCEF0C;
IL2CPP_EXTERN_C String_t* _stringLiteral757F441946A7036BA1BAA4B622FCDD632D09B0E5;
IL2CPP_EXTERN_C String_t* _stringLiteral76A91D6CE24FCC03EC2ECBB19E3012B5D5D40E2B;
IL2CPP_EXTERN_C String_t* _stringLiteral775325E8E3D43CA0A75ECC4B8F141DBA50659A93;
IL2CPP_EXTERN_C String_t* _stringLiteral785987648F85190CFDE9EADC69FC7C46FE8A7433;
IL2CPP_EXTERN_C String_t* _stringLiteral787D1014DDC9B67D8157D7974127B8858C74A1EC;
IL2CPP_EXTERN_C String_t* _stringLiteral78D43FCD0BE7330E253C74120B80646111D6B9EE;
IL2CPP_EXTERN_C String_t* _stringLiteral7ACCA304FE963539CFDDCF6B8196F086F19C0105;
IL2CPP_EXTERN_C String_t* _stringLiteral7C919B509EED4EF0BA0127F8EC8FE088356687B3;
IL2CPP_EXTERN_C String_t* _stringLiteral7CB1F56D3FBE09E809244FC8E13671CD876E3860;
IL2CPP_EXTERN_C String_t* _stringLiteral7CEE422D4A55A986BA38DEF6BF4F5978013FD582;
IL2CPP_EXTERN_C String_t* _stringLiteral803BC706433955BEFB65FFB4F485FE82A19FAD95;
IL2CPP_EXTERN_C String_t* _stringLiteral867AD8C2544ED5D38EC2B4986A28AA22B284F710;
IL2CPP_EXTERN_C String_t* _stringLiteral876176D7E90558A72F1CF2358EA1AC4C58845926;
IL2CPP_EXTERN_C String_t* _stringLiteral8972561214BDFD4779823E480036EAF0853E3C56;
IL2CPP_EXTERN_C String_t* _stringLiteral8A241C968A2685AEB603CE6F4A5CC4DC9097CA13;
IL2CPP_EXTERN_C String_t* _stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA;
IL2CPP_EXTERN_C String_t* _stringLiteral91B5C0A6D4701FE02DC3B4EB37DF29C5719A9EC6;
IL2CPP_EXTERN_C String_t* _stringLiteral92D0CE77948C91E565CEE35102CC532CE1D21A6F;
IL2CPP_EXTERN_C String_t* _stringLiteral9426F59FD8300D3D352341F3919A203E22AB9915;
IL2CPP_EXTERN_C String_t* _stringLiteral98826DAD5AB0C67046AE6B485440620CBBED7CAA;
IL2CPP_EXTERN_C String_t* _stringLiteral99DD65011324D0DDDAE2BC2BE40CEFC52DC334BE;
IL2CPP_EXTERN_C String_t* _stringLiteral9B5C0B859FABA061DD60FD8070FCE74FCEE29D0B;
IL2CPP_EXTERN_C String_t* _stringLiteral9C69ED46DDEDE4A71CFA1D52A9CD28D7430F6E50;
IL2CPP_EXTERN_C String_t* _stringLiteral9DBFE0068B99B1F80D4D19F33A3428AC56F51C1A;
IL2CPP_EXTERN_C String_t* _stringLiteral9E90614EF6993D80DCEAC568C486CC6672F4CA07;
IL2CPP_EXTERN_C String_t* _stringLiteral9F792B61D0EC544D91E7AFF34E2E99EE3CF2B313;
IL2CPP_EXTERN_C String_t* _stringLiteralA01DFAA538E95225DAC97E697E012232DD8791A6;
IL2CPP_EXTERN_C String_t* _stringLiteralA0D3EF0EBD76BE50BFA0338604860AC9D82E6789;
IL2CPP_EXTERN_C String_t* _stringLiteralA0F1490A20D0211C997B44BC357E1972DEAB8AE3;
IL2CPP_EXTERN_C String_t* _stringLiteralA312766BFB2DE609B56DA005A8AC1274644F2CC9;
IL2CPP_EXTERN_C String_t* _stringLiteralA6738FE7E06CA51E1F969D48582951374F467129;
IL2CPP_EXTERN_C String_t* _stringLiteralA68739B8146CBEEFB78C59E616CD7CAE3AAB0FD0;
IL2CPP_EXTERN_C String_t* _stringLiteralA81A69522BC51531298956C7ABB3DB48E62C16E2;
IL2CPP_EXTERN_C String_t* _stringLiteralA980EEDA49322EB9BE88B6480B2BE63B70186B1E;
IL2CPP_EXTERN_C String_t* _stringLiteralA9FB4E9CDFDDA8973EE329DE4396AF8172A25428;
IL2CPP_EXTERN_C String_t* _stringLiteralAA446C31061E98A887E43DF65EBA2E37EDA483E8;
IL2CPP_EXTERN_C String_t* _stringLiteralAB1A79FB2CBABAF9BE681B601509BD40528C11D8;
IL2CPP_EXTERN_C String_t* _stringLiteralAC7EE53D255CCAA9C142D834D50D914FB2AF12D7;
IL2CPP_EXTERN_C String_t* _stringLiteralAC9231DA4082430AFE8F4D40127814C613648D8E;
IL2CPP_EXTERN_C String_t* _stringLiteralAF2C7B4CA07AE6C74D261BC745E174DF8AB3FFEF;
IL2CPP_EXTERN_C String_t* _stringLiteralB0F0917F282BE2B990029398FE6CFE349F5CB5BC;
IL2CPP_EXTERN_C String_t* _stringLiteralB3B9137B4F1F0982964916EA57B8ACA87A7E4284;
IL2CPP_EXTERN_C String_t* _stringLiteralB44944E84F7E39F8E5F2BF429CDE253C80A0C5C5;
IL2CPP_EXTERN_C String_t* _stringLiteralB45CC055589AB275C804327AFE30E301E7882B22;
IL2CPP_EXTERN_C String_t* _stringLiteralB6CE7B15183720AAC274771B6CD7214E241A3BFB;
IL2CPP_EXTERN_C String_t* _stringLiteralB798D5ED9F6178D7BD39C0CC2EEBE6889DD57698;
IL2CPP_EXTERN_C String_t* _stringLiteralB858CB282617FB0956D960215C8E84D1CCF909C6;
IL2CPP_EXTERN_C String_t* _stringLiteralB863A975819F3FEC6A60E378417FAFD94AD4935A;
IL2CPP_EXTERN_C String_t* _stringLiteralB92BB037F637B193034E7C85B31D5A17CCE2C2D7;
IL2CPP_EXTERN_C String_t* _stringLiteralB95EFA8990E2BB5BCCEF52DF47A31FC66F723D4B;
IL2CPP_EXTERN_C String_t* _stringLiteralBA324CA7B1C77FC20BB970D5AFF6EEA9377918A5;
IL2CPP_EXTERN_C String_t* _stringLiteralBAB8760F6CF09B28595E71F6D936D7009C0C073C;
IL2CPP_EXTERN_C String_t* _stringLiteralC16F239F05BFEF8B527BABF85A79069CE7036D69;
IL2CPP_EXTERN_C String_t* _stringLiteralC94AEC48B21CADC5BB8B140753EE1FF89E29C7BC;
IL2CPP_EXTERN_C String_t* _stringLiteralC9B08AB49A91B1E8B22BDF58F1089D18D3B4B43B;
IL2CPP_EXTERN_C String_t* _stringLiteralC9E6E7DE9703383E07A53813E0B0CEAC3F74E9D8;
IL2CPP_EXTERN_C String_t* _stringLiteralCA96269491D1B54BAE78372F8D395C9208E1C361;
IL2CPP_EXTERN_C String_t* _stringLiteralCAEEAB05C2A175307D7167265BB744072B8D72BE;
IL2CPP_EXTERN_C String_t* _stringLiteralCCF15D90534EF306CC485DF0BB7E5C6AB6214C2A;
IL2CPP_EXTERN_C String_t* _stringLiteralCDDB8772CED7B8ED1FE0EAA7D513FF405474F6A0;
IL2CPP_EXTERN_C String_t* _stringLiteralD2561964F0D8225BFD9FFD19F2EDF87C49E94DCF;
IL2CPP_EXTERN_C String_t* _stringLiteralD2F0257C42607F2773F4B8AAB0C017A3B8949322;
IL2CPP_EXTERN_C String_t* _stringLiteralD347B33BFB9D03B433FB72FD513D1CD388D10678;
IL2CPP_EXTERN_C String_t* _stringLiteralD4705645F35332D972A6E70EF167CD075AD82BCC;
IL2CPP_EXTERN_C String_t* _stringLiteralD72E5435917F6F46D498A64D5E536D56DC28C0FC;
IL2CPP_EXTERN_C String_t* _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709;
IL2CPP_EXTERN_C String_t* _stringLiteralDAF529A73101C2BE626B99FC6938163E7A27620B;
IL2CPP_EXTERN_C String_t* _stringLiteralDCB40626091C3234CCD76DD6C57003824DA5B71E;
IL2CPP_EXTERN_C String_t* _stringLiteralDDAEDD97AB3AA9648C164027570374EE027A98F2;
IL2CPP_EXTERN_C String_t* _stringLiteralE2E28A8EB171E8219151A13B9466DAFC7AF786C2;
IL2CPP_EXTERN_C String_t* _stringLiteralE53C2EA1FE4BD2B78BF4723C7C155A578E020A25;
IL2CPP_EXTERN_C String_t* _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346;
IL2CPP_EXTERN_C String_t* _stringLiteralE7C5CD57248F4E07626424CDD3264DE81ED7158F;
IL2CPP_EXTERN_C String_t* _stringLiteralE99EEC4083A5DD346B0151B330B85D916127AFD2;
IL2CPP_EXTERN_C String_t* _stringLiteralE9AB123A1B061C01E4DECF3CA5FDDFDE90CC3502;
IL2CPP_EXTERN_C String_t* _stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556;
IL2CPP_EXTERN_C String_t* _stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5;
IL2CPP_EXTERN_C String_t* _stringLiteralF5B1C6DBB589A6CFBD4698F1E5B4B27DB5735D40;
IL2CPP_EXTERN_C String_t* _stringLiteralF7623357202A0F46697BF67CA5E89239746A567B;
IL2CPP_EXTERN_C String_t* _stringLiteralFB89F8D393DA096100BFDC1D5649D094EFF15377;
IL2CPP_EXTERN_C String_t* _stringLiteralFE33A7567702B746D875A97C59E45B51214D3B20;
IL2CPP_EXTERN_C const RuntimeMethod* ASCIIEncoding_GetByteCount_m0EBF48239C83BCE7F55A487C91F8920E3CE35172_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ASCIIEncoding_GetByteCount_m2CF471788E518B359D80A15ABE6DB588BE7A6DC2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ASCIIEncoding_GetByteCount_mA03F9C5663D28CBAAE58E400075A8B5E6A36AB2E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ASCIIEncoding_GetByteCount_mF02988E1FF13778A0944D3DEB99624C4DDF2AA94_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ASCIIEncoding_GetBytes_m3FB919272A2EB423271380898B8722DB838C2E9F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ASCIIEncoding_GetBytes_m643A7F0333C3A7FD043E55BDC2FDBEF45C70E5BC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ASCIIEncoding_GetBytes_mAF2946450CA684818B24CF83EA281D6897174B2C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ASCIIEncoding_GetBytes_mE712EF78C9190829051F38DEEDAF0EAFA5EACAEF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ASCIIEncoding_GetCharCount_m5DB65EF0AEBBC846017E148137D8891EE48EE8AA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ASCIIEncoding_GetCharCount_mB774D2B6BB467C3BF43F854C3F8D242DD3C10C2E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ASCIIEncoding_GetChars_m43F8992D9915D6A35CFD22CDE2256F5F32975EB3_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ASCIIEncoding_GetChars_mAB7F53CB636A467D19340EFDA64F634CA7258B0B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ASCIIEncoding_GetMaxByteCount_m3E3C11035D964A46F26D24DB47893A731FE72598_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ASCIIEncoding_GetMaxCharCount_m828DD0F81FA2A3F84D9105199D12D30D04C0E3D3_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ASCIIEncoding_GetString_m5EDDED54D91906259EC8CFABF0450194427EC01B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* DecoderExceptionFallbackBuffer_Throw_m2BCDB8F40B14EE1BFD9EA52D428586D55AC38462_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* DecoderFallbackBuffer_InternalFallback_m53D020473CB1701FDFDDBCC042AAED2473A39869_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* DecoderFallbackBuffer_InternalFallback_mDDF4B0A298A13A463E53ABEEF76C02C0406FA414_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* DecoderFallbackBuffer_ThrowLastBytesRecursive_mC2C38567BFC28253161CE100AC68FB8325AE753C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* DecoderNLS_GetCharCount_m3C0DAE26FA13646A53CE6F9FD084361E68EB61CA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* DecoderNLS_GetCharCount_m6DC2F90BD86F62E37617DE12F658DB14D3DC7848_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* DecoderNLS_GetChars_m31A09AA57B8581993774E6829C4108CD7405E835_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* DecoderNLS_GetChars_m39499B8C3394B70BF6BBDEC1B140D364E29C31CC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* DecoderNLS__ctor_mEAB8ADBF0F5D28F34EC3CD08F91BBFA39622CB04_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* DecoderReplacementFallback__ctor_m9D82FC93423AD9B954F28E30B20BF14DAFB01A5B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Decoder_GetCharCount_m659CAE5416F76D73505156C24769C51221CECBC8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Decoder_GetChars_m6FDAB407BC990656BCB7C8B21420C8BE461112E1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* DefaultDecoder_System_Runtime_Serialization_ISerializable_GetObjectData_m475E596E4F8ED1E26FAF132314A9BAB579102081_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* DefaultDecoder__ctor_m0601A370615BC4C401EDA86A50BDA20F94EC1F85_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* DefaultEncoder_System_Runtime_Serialization_ISerializable_GetObjectData_mF747E1AEF49CC8DEA43BAD82E86618930CBCC4F9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* DefaultEncoder__ctor_m0574B449E426AF58A6F20012DD76FCBDFA8D69A6_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EncoderExceptionFallbackBuffer_Fallback_m6CD1D726ACAD39EFEC45431ADB4FA492429EE8D2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EncoderExceptionFallbackBuffer_Fallback_mA5EDA3694AFA39CBDB602B7574209B017694FD7F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EncoderFallbackBuffer_ThrowLastCharRecursive_m35D9DB23D34C93BDFF7670C5DA045C6FBA6A2458_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EncoderFallbackException__ctor_m0F427A6A094417A4E62FA3339B2E4691930F7AFE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EncoderNLS_GetByteCount_m2464505CF85702A832284F73173B97443D4D9420_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EncoderNLS_GetByteCount_mB053525E9EECAAEE5527D00E8AE85600C899E8E8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EncoderNLS_GetBytes_m3DC2B38BFAF58F46EBA7CC719C81D116A441B1EC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EncoderNLS_GetBytes_m65DADC849D5DE481268079495F2155E43002D863_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EncoderNLS__ctor_mE2590720A5C5F377BA69269772C1C05E70417DD4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EncoderReplacementFallbackBuffer_Fallback_m8CB0F63F9FF142B4AA016E5453EEDF57920202E3_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EncoderReplacementFallback__ctor_mAE97C6B5EF9A81A90315A21E68271FAE87A738FD_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Encoder_GetByteCount_m5CF6335B7CA0EB1560269C361210BA5BB4F84AFE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Encoder_GetBytes_m57ED373361E669E240C4B0ECB2F6D6E6EC232EC1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EncodingByteBuffer__ctor_m175BDD0E694443C10680E724F64BC8A249AAA11D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EncodingNLS_GetByteCount_m14E7B2206D4191AF9A3DB447F41C16D20FDF3B52_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EncodingNLS_GetByteCount_m2C40854638120514BDE434F02FD3F8A8424DBB6C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EncodingNLS_GetByteCount_m3F4C3DB58C5879011230889556AEB83DC238827D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EncodingNLS_GetBytes_m86EE2D6786300F29FA1E9D2CE15C842D9ACD8C6E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EncodingNLS_GetBytes_mD31039E4E15BB0A59DE9FD784856BC9045170D6C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EncodingNLS_GetBytes_mD8770C7A9DF45CD8269D00180D93B86047DF79C9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EncodingNLS_GetCharCount_m60638984A90F04119296B224F269424D1114DDCD_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EncodingNLS_GetCharCount_mBFD4D1CF13235898AE19B2DBD93D025055DF3F90_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EncodingNLS_GetChars_m1292F0F6D2B3EEA2B3A1EA7A5C3BF171B3D6BAAE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EncodingNLS_GetChars_mF2857104EEF373BE111A6B2AA48DD15EA7DCBF31_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EncodingNLS_GetString_mDE9B50606FAB77B88125469A7FCDA5E2065A120F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Encoding_DeserializeEncoding_m69F4C52BF07039A20AA9E72F9CB7803862D10B44_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Encoding_GetByteCount_m1815AFD8D6BC8253FF5A3D9FEE46C071BB9D2E94_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Encoding_GetByteCount_m39F2BA22070EF89779F9EAD4ABA3412711E3DEEA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Encoding_GetBytes_m03BE03725820163E29B3A766D800BAA950A4D406_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Encoding_GetBytes_m290C357E78642FE0B527444BD7D8053AA32F4BB8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Encoding_GetCharCount_m99707D5F60A81F16F3921417B851C2AB37AC8F3E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Encoding_GetChars_m656D0EFC1B4FB40CF53BF38B34320A5EFD242D7F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Encoding_GetEncoding_m0F51F30DFDD74D989E27C58C53FC82718CC51F68_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Encoding_GetString_m93E37199E4612FD0A2FB0D70386EC0A061BAB783_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Encoding_SerializeEncoding_m5F127574AC8568AAE4E93246ECA908E7D384131D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Encoding_ThrowBytesOverflow_mF003819DBA1215AF2B34F8B4C39A64C6A88B4BBC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Encoding_ThrowCharsOverflow_m6F80534CD46B3C99549206A763F8785DFFF03F4F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Encoding__ctor_m25E853E4AF252CA29A3295065E83BA2C7B1416D5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Encoding_set_DecoderFallback_mB321EB8D6C34B8935A169C0E4FAC7A4E0A99FACC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Encoding_set_EncoderFallback_m24306F093457AE12D59A36AB84F1E03C840BD10A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalEncoderBestFitFallbackBuffer_Fallback_mE0AEEE10F3131D945B3CDF7F111E58B684807282_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Latin1Encoding_GetMaxByteCount_m0CE8B6F601EA1FA86CE39AE75B5A526DDAC2A870_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Latin1Encoding_GetMaxCharCount_m3B568FB23C68F84F106572AA3CC052EE9B6E1D48_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* StringBuilder_AppendFormatHelper_m3A655B006797788D89C813CEE20A1D32B95AF273_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* StringBuilder_AppendFormat_m23742FE1E3C60341F37C243EB6BEE06AE444C774_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* StringBuilder_Append_m353B571BF530B0BD74B61E499EAF6536F1B93E84_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* StringBuilder_Append_m549C532422286A982F7956C9BAE197D00B30DCA8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* StringBuilder_Append_m9702CA108F81CBF2B174826C1DFC5F7552C36C45_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* StringBuilder_Append_m9EB954E99DC99B8CC712ABB70EAA07616B841D46_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* StringBuilder_ExpandByABlock_m855E07A0ECE12C6C4151B72BD80DE5311CE9B42C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* StringBuilder_FormatError_m636599CB61540585B74FFC956ED91DC57F66C17B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* StringBuilder_Insert_m25234968C27EB1BEB242AFE1C7DE6BACAD903E33_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* StringBuilder_Insert_m38829D9C9FE52ACD6541ED735D4435FB2A831A2C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* StringBuilder_Insert_mC4C722CFB7E8BA17F47DF230DD69F6E0E46C7D05_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* StringBuilder_MakeRoom_mC8A37E0A3FCACABC5B1BF99BCEF32C086F03B9FF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* StringBuilder_Remove_m5DA9C1C4D056FA61B8923BE85E6BFF44B14A24F9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* StringBuilder_Replace_m10672EAD6812FE1E8C58EF1435709D212F6347C4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* StringBuilder_System_Runtime_Serialization_ISerializable_GetObjectData_m960812B3C6399B43D2C888B0A766F74164F671E9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* StringBuilder_ThreadSafeCopy_mCCD244D9AD13306F3D3866A3B9415A5249EB8E5D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* StringBuilder_ThreadSafeCopy_mF35929E10961A91520C9DE919B013977B2DFCF84_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* StringBuilder_ToString_mB91781E31C1CF168F780733E67EA40A5386693C6_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* StringBuilder_ToString_mC93526603BBE053CAD68863D7ED464354598E7EF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* StringBuilder__ctor_m105DFD306CF1352C62553EED8AC7ABAAC62B7245_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* StringBuilder__ctor_m50F68196A42EEEC82EC4A482CDDC33D1A4527CE0_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* StringBuilder_get_Chars_mC069533DCA4FB798DFA069469EBABA85DCC183C6_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* StringBuilder_set_Chars_m71B2B761D6D287A666302FD85E320E1E60F388EA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* StringBuilder_set_Length_m84AF318230AE5C3D0D48F1CE7C2170F6F5C19F5B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* StringComparer_Compare_mF6C220BCB2FF779530CC3B9E724CAC82738E6EE7_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* StringComparer_GetHashCode_mD70D6D3EFB36ED208E77AD17BDD7E809B593500F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TermInfoDriver_Init_mAA7BB4F7D9EDADAC2AE0A864410D4F062FA8E569_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TermInfoDriver_SetCursorPosition_mDBD339CD6F48B285AF40411BB572D4565F7118ED_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TermInfoReader_ReadHeader_m6809956ED26CFF90923FF7E3B4DB6733828FB124_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TermInfoReader__ctor_mB414A3E5B0CA1C42E830F8221DCC6DAD579055A6_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* TermInfoReader__ctor_mDC681850346716B16DF3EC44DCF1DA6F2A754B7D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeType* Boolean_tB53F6830F670160873277339AA58F15CAED4399C_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* DecoderFallback_t128445EB7676870485230893338EF044F6B72F60_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* DefaultDecoder_t3872BD77BDC12EB0F34D0DEE8E34D7A1FE49F91C_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* DefaultEncoder_t71EA10E1235BA46A6CC88E06EF73C2BAC1673225_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* ICustomFormatter_tDAB6E1F893DB2D4F44572E9B6ED6E82BC9D26D1E_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* Int32_t585191389E07734F19F3156FF88FB3EF4800D102_0_0_0_var;
IL2CPP_EXTERN_C const uint32_t ASCIIEncoding_GetByteCount_m0EBF48239C83BCE7F55A487C91F8920E3CE35172_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ASCIIEncoding_GetByteCount_m2CF471788E518B359D80A15ABE6DB588BE7A6DC2_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ASCIIEncoding_GetByteCount_mA03F9C5663D28CBAAE58E400075A8B5E6A36AB2E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ASCIIEncoding_GetByteCount_mF02988E1FF13778A0944D3DEB99624C4DDF2AA94_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ASCIIEncoding_GetBytes_m3FB919272A2EB423271380898B8722DB838C2E9F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ASCIIEncoding_GetBytes_m643A7F0333C3A7FD043E55BDC2FDBEF45C70E5BC_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ASCIIEncoding_GetBytes_mAF2946450CA684818B24CF83EA281D6897174B2C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ASCIIEncoding_GetBytes_mE712EF78C9190829051F38DEEDAF0EAFA5EACAEF_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ASCIIEncoding_GetCharCount_m5DB65EF0AEBBC846017E148137D8891EE48EE8AA_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ASCIIEncoding_GetCharCount_mB774D2B6BB467C3BF43F854C3F8D242DD3C10C2E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ASCIIEncoding_GetCharCount_mED75ADEB6196257F57CFC35A1FAADEE163E0BCBA_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ASCIIEncoding_GetChars_m43F8992D9915D6A35CFD22CDE2256F5F32975EB3_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ASCIIEncoding_GetChars_mAB7F53CB636A467D19340EFDA64F634CA7258B0B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ASCIIEncoding_GetChars_mEA0193EB61743E9975F884599BF36E6C257B27BE_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ASCIIEncoding_GetDecoder_mA934F385E4E41AF1ECFAA91CC04F1587FF87878B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ASCIIEncoding_GetEncoder_mDE0D289734DC7259779BBEC3267084DF3FFA87E8_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ASCIIEncoding_GetMaxByteCount_m3E3C11035D964A46F26D24DB47893A731FE72598_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ASCIIEncoding_GetMaxCharCount_m828DD0F81FA2A3F84D9105199D12D30D04C0E3D3_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ASCIIEncoding_GetString_m5EDDED54D91906259EC8CFABF0450194427EC01B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Console_get_InputEncoding_m60EAA2E167A0C8C681997B998E851D8CD6C954FEmscorlib12_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Console_get_OutputEncoding_mA23798B6CE69F59EAA00C8206EF8552196120647mscorlib12_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DecoderExceptionFallbackBuffer_Throw_m2BCDB8F40B14EE1BFD9EA52D428586D55AC38462_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DecoderExceptionFallback_CreateFallbackBuffer_mE3BE00683390C7D05D5983DBA429DAAC4574B3DC_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DecoderExceptionFallback_Equals_m15BE9998BC3E5F04585744BD138062F1CA65B830_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DecoderFallbackBuffer_InternalFallback_m53D020473CB1701FDFDDBCC042AAED2473A39869_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DecoderFallbackBuffer_InternalFallback_mDDF4B0A298A13A463E53ABEEF76C02C0406FA414_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DecoderFallbackBuffer_ThrowLastBytesRecursive_mC2C38567BFC28253161CE100AC68FB8325AE753C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DecoderFallbackException__ctor_m3E5F0BA9CF3234B979CE2F3D55A406E8275B2142_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DecoderFallback_get_ExceptionFallback_mAE7F326600DFAA0FAAD6D9053C771FF8EE99B40B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DecoderFallback_get_InternalSyncObject_m18A79E25704EB01D64E1651DB4E97F1FB80EFEFE_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DecoderFallback_get_ReplacementFallback_m25F035A7268BAE39E55F606D2735A386DCB3D8EA_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DecoderNLS_GetCharCount_m3C0DAE26FA13646A53CE6F9FD084361E68EB61CA_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DecoderNLS_GetCharCount_m6DC2F90BD86F62E37617DE12F658DB14D3DC7848_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DecoderNLS_GetChars_m31A09AA57B8581993774E6829C4108CD7405E835_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DecoderNLS_GetChars_m39499B8C3394B70BF6BBDEC1B140D364E29C31CC_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DecoderNLS_System_Runtime_Serialization_ISerializable_GetObjectData_m04F06981D68559C6FC26C8CFD4E3B34BE4DC45EF_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DecoderNLS__ctor_mEAB8ADBF0F5D28F34EC3CD08F91BBFA39622CB04_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DecoderReplacementFallback_CreateFallbackBuffer_m58EBE4EC55BFA7AD53FCD9EBAD57C3711D397BB9_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DecoderReplacementFallback_Equals_m43C71FC374F022BFBCE93CDDBC11D133D3024E9A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DecoderReplacementFallback__ctor_m078EB13AB10F7A933588BFADECA3C81C058ED231_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DecoderReplacementFallback__ctor_m9D82FC93423AD9B954F28E30B20BF14DAFB01A5B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Decoder_GetCharCount_m659CAE5416F76D73505156C24769C51221CECBC8_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Decoder_GetChars_m6FDAB407BC990656BCB7C8B21420C8BE461112E1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Decoder_Reset_m51BD73696D6661DD77D15393D545739011F67C9F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Decoder_SerializeDecoder_m9581A0FC542BF413F536FEE49E8973E88D3B840E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DefaultDecoder_System_Runtime_Serialization_ISerializable_GetObjectData_m475E596E4F8ED1E26FAF132314A9BAB579102081_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DefaultDecoder__ctor_m0601A370615BC4C401EDA86A50BDA20F94EC1F85_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DefaultEncoder_GetRealObject_mFC0E30A007FEB23FCB1120D24BFEADEFEAAF28A4_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DefaultEncoder_System_Runtime_Serialization_ISerializable_GetObjectData_mF747E1AEF49CC8DEA43BAD82E86618930CBCC4F9_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t DefaultEncoder__ctor_m0574B449E426AF58A6F20012DD76FCBDFA8D69A6_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EncoderExceptionFallbackBuffer_Fallback_m6CD1D726ACAD39EFEC45431ADB4FA492429EE8D2_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EncoderExceptionFallbackBuffer_Fallback_mA5EDA3694AFA39CBDB602B7574209B017694FD7F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EncoderExceptionFallback_CreateFallbackBuffer_m66DF08AB1D188B42DFF054236E89C5A3CC365DA1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EncoderExceptionFallback_Equals_m503A69B17276C0195B01103EFBC15AF9B43FAC66_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EncoderFallbackBuffer_InternalFallback_m70F3D08525132DEF574F144179AB434FFE69AAC1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EncoderFallbackBuffer_ThrowLastCharRecursive_m35D9DB23D34C93BDFF7670C5DA045C6FBA6A2458_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EncoderFallbackException__ctor_m0F427A6A094417A4E62FA3339B2E4691930F7AFE_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EncoderFallbackException__ctor_m1468C9E711D30C951DF59F194D1421975A3BA3D5_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EncoderFallback_get_ExceptionFallback_mAE77B30FFF4171C2C6861BE4F90529A873EC79B8_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EncoderFallback_get_InternalSyncObject_mD870CEF1A48707E4884575C7D84AE7141072EF87_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EncoderFallback_get_ReplacementFallback_m3FF44931084C980CD4AC9773A73D74302EB37139_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EncoderNLS_GetByteCount_m2464505CF85702A832284F73173B97443D4D9420_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EncoderNLS_GetByteCount_mB053525E9EECAAEE5527D00E8AE85600C899E8E8_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EncoderNLS_GetBytes_m3DC2B38BFAF58F46EBA7CC719C81D116A441B1EC_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EncoderNLS_GetBytes_m65DADC849D5DE481268079495F2155E43002D863_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EncoderNLS_System_Runtime_Serialization_ISerializable_GetObjectData_m566F1B89E8969DA385039F405B963C630E9A251D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EncoderNLS__ctor_mE2590720A5C5F377BA69269772C1C05E70417DD4_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EncoderReplacementFallbackBuffer_Fallback_m8CB0F63F9FF142B4AA016E5453EEDF57920202E3_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EncoderReplacementFallbackBuffer_Fallback_mE5AF63C1276344255C17B117359253A553F0F5B7_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EncoderReplacementFallback_CreateFallbackBuffer_mFFF8A98D618365EFE337A954FC1B630D0C1833F4_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EncoderReplacementFallback_Equals_m2B6448E4B76B3F9CA1F888F9D6EBBD78A817504D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EncoderReplacementFallback__ctor_mAB909581BDACE020217C9A308321E41802705D1E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EncoderReplacementFallback__ctor_mAE97C6B5EF9A81A90315A21E68271FAE87A738FD_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Encoder_GetByteCount_m5CF6335B7CA0EB1560269C361210BA5BB4F84AFE_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Encoder_GetBytes_m57ED373361E669E240C4B0ECB2F6D6E6EC232EC1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Encoder_Reset_mF9B38AA1D0D1B26E6C4C2E335B8A4293B4B06B4B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Encoder_SerializeEncoder_mACD65E50C4E5C9C6646AA44B5FB63CEDE0931079_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EncodingByteBuffer__ctor_m175BDD0E694443C10680E724F64BC8A249AAA11D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EncodingCharBuffer_Fallback_mCB8B75AEF197D3BD39FD0EBD36A5BDD207851C69_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EncodingHelper_GetDefaultEncoding_m11A46F8629633F14B5C9787094E4A50862D6B5C1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EncodingHelper_InvokeI18N_m638F0C7660999BE0390DD7E26CBC9603D139D2D6_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EncodingHelper__cctor_m3A7B50759A632B7B6EF4F4B20E83B989249EEA9B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EncodingHelper_get_UTF8Unmarked_mDC45343C3BA5B14AD998D36344DDFD0B7068E335_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EncodingNLS_GetByteCount_m14E7B2206D4191AF9A3DB447F41C16D20FDF3B52_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EncodingNLS_GetByteCount_m2C40854638120514BDE434F02FD3F8A8424DBB6C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EncodingNLS_GetByteCount_m3F4C3DB58C5879011230889556AEB83DC238827D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EncodingNLS_GetBytes_m86EE2D6786300F29FA1E9D2CE15C842D9ACD8C6E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EncodingNLS_GetBytes_mD31039E4E15BB0A59DE9FD784856BC9045170D6C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EncodingNLS_GetBytes_mD8770C7A9DF45CD8269D00180D93B86047DF79C9_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EncodingNLS_GetCharCount_m60638984A90F04119296B224F269424D1114DDCD_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EncodingNLS_GetCharCount_mBFD4D1CF13235898AE19B2DBD93D025055DF3F90_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EncodingNLS_GetChars_m1292F0F6D2B3EEA2B3A1EA7A5C3BF171B3D6BAAE_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EncodingNLS_GetChars_mF2857104EEF373BE111A6B2AA48DD15EA7DCBF31_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EncodingNLS_GetDecoder_m22925AF3BB308D18DA59AECF827167560F330440_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EncodingNLS_GetEncoder_m5A728D551A7FB15FD6672152D10C764E4391389C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EncodingNLS_GetString_mDE9B50606FAB77B88125469A7FCDA5E2065A120F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EncodingProvider_GetEncodingFromProvider_m6B4B2550725947939A8DEF0B26D335D7957017A7_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EncodingProvider_GetEncodingFromProvider_mA0F1D2A29AF8309112363BA3AEAD24F4F84F8A6F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t EncodingProvider__cctor_mFF0BD781A7712C88D2ACAFCE51E43352446EF041_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Encoding_Clone_m9EC175C49D6B898E2560FFF1A790685DBC3A20B5_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Encoding_CreateDefaultEncoding_mB5BD9528BFE643F1852752B28EA8426C195E73A5_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Encoding_DeserializeEncoding_m69F4C52BF07039A20AA9E72F9CB7803862D10B44_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Encoding_Equals_m6C089BFFAFA374F1EE085C7992F3138B105A9A5F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Encoding_GetBestFitBytesToUnicodeData_m2F61B0EA9A8D41E502ABAB0C9E8D305DA2BF32E6_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Encoding_GetBestFitUnicodeToBytesData_m36711A36F8890CADE431F69044F6F1B8E4C34E94_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Encoding_GetByteCount_m1815AFD8D6BC8253FF5A3D9FEE46C071BB9D2E94_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Encoding_GetByteCount_m39F2BA22070EF89779F9EAD4ABA3412711E3DEEA_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Encoding_GetBytes_m03BE03725820163E29B3A766D800BAA950A4D406_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Encoding_GetBytes_m290C357E78642FE0B527444BD7D8053AA32F4BB8_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Encoding_GetBytes_m96117DE55598CA75EA00280F6ED0E27857E7F988_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Encoding_GetCharCount_m99707D5F60A81F16F3921417B851C2AB37AC8F3E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Encoding_GetChars_m32B53FEFE17AD33BA97069CF0006E62AE50504A8_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Encoding_GetChars_m656D0EFC1B4FB40CF53BF38B34320A5EFD242D7F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Encoding_GetDecoder_mFC20C2D17E2FF39A41E1BB92B680477B9F2F1379_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Encoding_GetEncoder_mC660F77C18265A7C32355E2F08DC13EE9C4BA4D8_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Encoding_GetEncoding_m0F51F30DFDD74D989E27C58C53FC82718CC51F68_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Encoding_GetEncoding_mA19D07F2E88F8FF58D42B73AFF5E22241607D54E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Encoding_GetPreamble_mF296992828EE92546FB29DD3014C0F10E253D421_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Encoding_GetString_m93E37199E4612FD0A2FB0D70386EC0A061BAB783_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Encoding_SerializeEncoding_m5F127574AC8568AAE4E93246ECA908E7D384131D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Encoding_SetDefaultFallbacks_m50957843AEDBDF1A16CB170D84F67B6801F83B7C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Encoding_ThrowBytesOverflow_mF003819DBA1215AF2B34F8B4C39A64C6A88B4BBC_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Encoding_ThrowCharsOverflow_m6F80534CD46B3C99549206A763F8785DFFF03F4F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Encoding__ctor_m25E853E4AF252CA29A3295065E83BA2C7B1416D5_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Encoding_get_ASCII_m9B673AE3152AB04D07CADE6E5E142C785B5BC94E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Encoding_get_BigEndianUnicode_m6CC17642A36943FE038F54729446D7E30D582BDD_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Encoding_get_Default_m625C78C2A9A8504B8BA4141994412513DC470CE2_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Encoding_get_InternalSyncObject_m83E4529829B8FCFB1CE706425804440F6BAD073E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Encoding_get_Latin1_m3CC61D40BEE46C311295920FC97B0EBF8AE620F3_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Encoding_get_UTF32_m64CB5BB9DA39B0628F70276EDB13DE03A270DE15_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Encoding_get_UTF7_mE709E3E74B727CFCC6675F07BC0AF19C7B4D0F1C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Encoding_get_UTF8_m67C8652936B681E7BC7505E459E88790E0FF16D9_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Encoding_get_Unicode_m86CC470F70F9BB52DDB26721F0C0D6EDAFC318AA_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Encoding_set_DecoderFallback_mB321EB8D6C34B8935A169C0E4FAC7A4E0A99FACC_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Encoding_set_EncoderFallback_m24306F093457AE12D59A36AB84F1E03C840BD10A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalDecoderBestFitFallbackBuffer_get_InternalSyncObject_m882032FDCD9281FC5145B8AA0F2C604EB806915A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalDecoderBestFitFallback_CreateFallbackBuffer_mAB113BA8D99815EA9F69A4E6AB7E07C7463AC05D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalDecoderBestFitFallback_Equals_m5D263B30BFF1BF1350E9D6C455ACF80609B9EE6E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEncoderBestFitFallbackBuffer_Fallback_mE0AEEE10F3131D945B3CDF7F111E58B684807282_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEncoderBestFitFallbackBuffer_get_InternalSyncObject_m07257512FD952E191F4C1A480BB8F2B43D3CEA21_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEncoderBestFitFallback_CreateFallbackBuffer_mCBD6DBF828C05ECBC79FF3FD17D4A77296A48079_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t InternalEncoderBestFitFallback_Equals_m2EB7A90447CFF5F07B9C30156893557CD89C6E93_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Latin1Encoding_GetBestFitUnicodeToBytesData_m7849A960639E0F878D616C5E582D8D6A7A841CFD_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Latin1Encoding_GetByteCount_m74213E435664F3679804DD58FDC0416AE9EEFAC9_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Latin1Encoding_GetBytes_m28F54ACA866F4892816A78841E4E01E6EFACF46A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Latin1Encoding_GetMaxByteCount_m0CE8B6F601EA1FA86CE39AE75B5A526DDAC2A870_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Latin1Encoding_GetMaxCharCount_m3B568FB23C68F84F106572AA3CC052EE9B6E1D48_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Latin1Encoding_System_Runtime_Serialization_ISerializable_GetObjectData_m10ED95D4268DCB8DA51492C630A9FA00F13AD61C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Latin1Encoding__cctor_m5B1BF7E520244F62262D7E8849AC9B7BBB7781C4_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Normalization_CharMapIdx_mD7FF7B9511E1108A8718E0AA1C81EB65BDCE6BA9_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Normalization_CombineHangul_m6ACCCB03BD7578B68D7EBF7A57EA5D3589CE089B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Normalization_Combine_m13CF31C439C3C1676F35199640FAF86EAF0BB33A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Normalization_Combine_mF29961DF76E25EDF17A7173DCE1F82B3A2457702_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Normalization_Compose_mEB36830839D05AAA1579B2500EAF0AF0611910AA_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Normalization_DecomposeChar_mFCD460869F56DD899498A1A3F70025C1C1B84A6C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Normalization_Decompose_m72A6B276D99DEA8A6060E5060342D44BE739E030_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Normalization_Decompose_mC120D0C06838074BAE44D314E2E39FF3909935BE_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Normalization_GetCanonical_m9BE2B7D000EACEBFEDD8CFB4BAA9F9A04ACB53E1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Normalization_GetCombiningClass_mE4FE7AF1CC77468229ED3E949CB73C0C9D2E7779_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Normalization_GetPrimaryCompositeFromMapIndex_mC882AED4638E77E976BC56DDA2F6DA2448EFA022_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Normalization_GetPrimaryCompositeHelperIndex_mBF42ECA25605228B344D469251274E6E0C0102B2_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Normalization_Normalize_mE05051BD0A486B68CA43E9AB82EECFFF1F952DEF_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Normalization_Normalize_mF3A284956561BA6BACEBCA2D28419DF54BBE279E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Normalization_PropValue_m74F5DC4C2FF35022E0473B8B6EBC83609E0D5511_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Normalization_QuickCheck_m41D4FF8E0DC13D1D0CE7BDB35607FDA313DCB86B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Normalization_ReorderCanonical_mC647AA0BB997910E2FC0ED33CF89DCE413362C4C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Normalization_TryComposeWithPreviousStarter_mC6EE7E98390E0FDA79259873D8CF514EBCFBC162_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Normalization_TryCompose_m5879D248041F211393CD46EA75FB4654253A2BD7_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Normalization__cctor_m44035F20D7FD40CD6C7A11C4994FD5DC11D69A0A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t StringBuilder_AppendFormatHelper_m3A655B006797788D89C813CEE20A1D32B95AF273_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t StringBuilder_AppendFormat_m23742FE1E3C60341F37C243EB6BEE06AE444C774_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t StringBuilder_Append_m353B571BF530B0BD74B61E499EAF6536F1B93E84_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t StringBuilder_Append_m549C532422286A982F7956C9BAE197D00B30DCA8_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t StringBuilder_Append_m85874CFF9E4B152DB2A91936C6F2CA3E9B1EFF84_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t StringBuilder_Append_m9702CA108F81CBF2B174826C1DFC5F7552C36C45_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t StringBuilder_Append_m9EB954E99DC99B8CC712ABB70EAA07616B841D46_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t StringBuilder_Append_mB2B8807F92F9A75140DC4E431FC1B054FC5C0AA9_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t StringBuilder_ExpandByABlock_m855E07A0ECE12C6C4151B72BD80DE5311CE9B42C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t StringBuilder_FormatError_m636599CB61540585B74FFC956ED91DC57F66C17B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t StringBuilder_Insert_m25234968C27EB1BEB242AFE1C7DE6BACAD903E33_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t StringBuilder_Insert_m38829D9C9FE52ACD6541ED735D4435FB2A831A2C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t StringBuilder_Insert_mC4C722CFB7E8BA17F47DF230DD69F6E0E46C7D05_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t StringBuilder_MakeRoom_mC8A37E0A3FCACABC5B1BF99BCEF32C086F03B9FF_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t StringBuilder_Remove_m5DA9C1C4D056FA61B8923BE85E6BFF44B14A24F9_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t StringBuilder_ReplaceInPlaceAtChunk_mA3A70E8FD6B9F52D4D62700D5E706E851BA1D773_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t StringBuilder_Replace_m10672EAD6812FE1E8C58EF1435709D212F6347C4_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t StringBuilder_System_Runtime_Serialization_ISerializable_GetObjectData_m960812B3C6399B43D2C888B0A766F74164F671E9_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t StringBuilder_ThreadSafeCopy_mCCD244D9AD13306F3D3866A3B9415A5249EB8E5D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t StringBuilder_ThreadSafeCopy_mF35929E10961A91520C9DE919B013977B2DFCF84_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t StringBuilder_ToString_mB91781E31C1CF168F780733E67EA40A5386693C6_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t StringBuilder_ToString_mC93526603BBE053CAD68863D7ED464354598E7EF_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t StringBuilder__ctor_m105DFD306CF1352C62553EED8AC7ABAAC62B7245_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t StringBuilder__ctor_m1C0F2D97B838537A2D0F64033AE4EF02D150A956_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t StringBuilder__ctor_m50F68196A42EEEC82EC4A482CDDC33D1A4527CE0_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t StringBuilder__ctor_mAC298BE4C79DFA111AA5AA4063F79F47744959FD_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t StringBuilder_get_Chars_mC069533DCA4FB798DFA069469EBABA85DCC183C6_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t StringBuilder_set_Chars_m71B2B761D6D287A666302FD85E320E1E60F388EA_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t StringBuilder_set_Length_m84AF318230AE5C3D0D48F1CE7C2170F6F5C19F5B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t StringComparer_Compare_mF6C220BCB2FF779530CC3B9E724CAC82738E6EE7_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t StringComparer_Equals_mEDC0D576089BB102F6DDA35963406B5C3B9AD97D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t StringComparer_GetHashCode_mD70D6D3EFB36ED208E77AD17BDD7E809B593500F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t StringComparer__cctor_m5F31EE210A599E85AE825C7E0A9231D7FD21AD65_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t StringComparer_get_CurrentCultureIgnoreCase_m1900DE3D696056A54A108E11FE8991A677305F60_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t StringComparer_get_InvariantCultureIgnoreCase_mC6DA70EBD0C00B02EC4BB5C24882F99984028DFC_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t StringComparer_get_OrdinalIgnoreCase_m3F2527D9A11521E8B51F0AC8F70DB272DA8334C9_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t StringComparer_get_Ordinal_m1F38FBAB170DF80D33FE2A849D30FF2E314D9FDB_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t SystemException__ctor_mA18D2EA5642C066F35CB8C965398F9A542C33B0A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t SystemException__ctor_mB0550111A1A8D18B697B618F811A5B20C160D949_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t SystemException__ctor_mEB9049B75DE1D23B0515DD294BEF0AAC7792F465_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t SystemException__ctor_mF67B7FA639B457BDFB2103D7C21C8059E806175A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TermInfoDriver_AddToBuffer_mBFD0A5D22191513A7B1739ED80455D642110C49B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TermInfoDriver_CheckWindowDimensions_mA57D80C0BDCF89FBE6616495887AF3B3F3D3D35B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TermInfoDriver_CreateKeyMap_mC802A816F3EAEA7343B627FA9DCC0A69E54F491A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TermInfoDriver_GetCursorPosition_mC6D63B8C54851DE5CCE4294A0386AA69BEDD55AF_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TermInfoDriver_GetKeyFromBuffer_m27FF9AA28768AEE2B2AFFF6E959EF3F67FED092E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TermInfoDriver_InitKeys_m3C4D9CA6DE9CEA5F50BDBCB72BF7975F4F1758CB_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TermInfoDriver_Init_mAA7BB4F7D9EDADAC2AE0A864410D4F062FA8E569_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TermInfoDriver_QueueEcho_m0E4C2A73AFF680E59B7C572BD6361A1A024A4F9A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TermInfoDriver_ReadKeyInternal_mE2B30F995CCA46F324E112B530324C63AF5A6C7D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TermInfoDriver_ReadUntilConditionInternal_m872444B3E39D297C33CB5A615FCE3775CE7D2CDB_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TermInfoDriver_Read_mA572BAC79A02463FDDF358F11155C02BE16D17A1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TermInfoDriver_SearchTerminfo_m7D2A02B1FBA3D8F66256E53D28264D4A0B7550A3_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TermInfoDriver_SetCursorPosition_mDBD339CD6F48B285AF40411BB572D4565F7118ED_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TermInfoDriver_TryTermInfoDir_mB77251F46AC79569CE18F4AE20F130453912A47F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TermInfoDriver_WriteSpecialKey_m76A0A1AD8A1280927C8A75DA4AEEC8B85B5210E3_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TermInfoDriver__cctor_mF220800F6331B2ACF39830BF3DFF392B3E774D5B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TermInfoDriver__ctor_mDBF60028AEDAE114F1EC4FA8538F29B49AB11EF2_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TermInfoReader_GetStringBytes_m05CD4F9BF52C817DCAB7EFD34FC74D62D7C6118F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TermInfoReader_ReadHeader_m6809956ED26CFF90923FF7E3B4DB6733828FB124_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TermInfoReader__ctor_mB414A3E5B0CA1C42E830F8221DCC6DAD579055A6_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t TermInfoReader__ctor_mDC681850346716B16DF3EC44DCF1DA6F2A754B7D_MetadataUsageId;
struct CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD_marshaled_com;
struct CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD_marshaled_pinvoke;
struct CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_marshaled_com;
struct CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_marshaled_pinvoke;
struct Exception_t_marshaled_com;
struct Exception_t_marshaled_pinvoke;
struct ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821;
struct CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2;
struct Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83;
struct ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A;
struct FormatParamU5BU5D_t2F95A3C5AF726E75A42BC28843BAD579B62199B5;
struct ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA;
struct StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E;
struct TermInfoStringsU5BU5D_t734604FFAFCF8B18CFD63C5901E11EA6C13F23F2;
struct EncodingProviderU5BU5D_tC6F023570A13EC5DEAC72E9403D9C8B84DCF4E49;
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_tA70DBD5101E826E30EEF124C2EEE1019B539DB4A : public RuntimeObject
{
public:
// Mono.Globalization.Unicode.CodePointIndexer_TableRange[] Mono.Globalization.Unicode.CodePointIndexer::ranges
TableRangeU5BU5D_t6948DE52FB348848EC96FB928C2FCFEFB250C23A* ___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_tA70DBD5101E826E30EEF124C2EEE1019B539DB4A, ___ranges_0)); }
inline TableRangeU5BU5D_t6948DE52FB348848EC96FB928C2FCFEFB250C23A* get_ranges_0() const { return ___ranges_0; }
inline TableRangeU5BU5D_t6948DE52FB348848EC96FB928C2FCFEFB250C23A** get_address_of_ranges_0() { return &___ranges_0; }
inline void set_ranges_0(TableRangeU5BU5D_t6948DE52FB348848EC96FB928C2FCFEFB250C23A* 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_tA70DBD5101E826E30EEF124C2EEE1019B539DB4A, ___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_tA70DBD5101E826E30EEF124C2EEE1019B539DB4A, ___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_tA70DBD5101E826E30EEF124C2EEE1019B539DB4A, ___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.NormalizationTableUtil
struct NormalizationTableUtil_t03190D7C1B6FF779D40EBEB0A5929DE24585DAA5 : public RuntimeObject
{
public:
public:
};
struct NormalizationTableUtil_t03190D7C1B6FF779D40EBEB0A5929DE24585DAA5_StaticFields
{
public:
// Mono.Globalization.Unicode.CodePointIndexer Mono.Globalization.Unicode.NormalizationTableUtil::Prop
CodePointIndexer_tA70DBD5101E826E30EEF124C2EEE1019B539DB4A * ___Prop_0;
// Mono.Globalization.Unicode.CodePointIndexer Mono.Globalization.Unicode.NormalizationTableUtil::Map
CodePointIndexer_tA70DBD5101E826E30EEF124C2EEE1019B539DB4A * ___Map_1;
// Mono.Globalization.Unicode.CodePointIndexer Mono.Globalization.Unicode.NormalizationTableUtil::Combining
CodePointIndexer_tA70DBD5101E826E30EEF124C2EEE1019B539DB4A * ___Combining_2;
// Mono.Globalization.Unicode.CodePointIndexer Mono.Globalization.Unicode.NormalizationTableUtil::Composite
CodePointIndexer_tA70DBD5101E826E30EEF124C2EEE1019B539DB4A * ___Composite_3;
// Mono.Globalization.Unicode.CodePointIndexer Mono.Globalization.Unicode.NormalizationTableUtil::Helper
CodePointIndexer_tA70DBD5101E826E30EEF124C2EEE1019B539DB4A * ___Helper_4;
public:
inline static int32_t get_offset_of_Prop_0() { return static_cast<int32_t>(offsetof(NormalizationTableUtil_t03190D7C1B6FF779D40EBEB0A5929DE24585DAA5_StaticFields, ___Prop_0)); }
inline CodePointIndexer_tA70DBD5101E826E30EEF124C2EEE1019B539DB4A * get_Prop_0() const { return ___Prop_0; }
inline CodePointIndexer_tA70DBD5101E826E30EEF124C2EEE1019B539DB4A ** get_address_of_Prop_0() { return &___Prop_0; }
inline void set_Prop_0(CodePointIndexer_tA70DBD5101E826E30EEF124C2EEE1019B539DB4A * value)
{
___Prop_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Prop_0), (void*)value);
}
inline static int32_t get_offset_of_Map_1() { return static_cast<int32_t>(offsetof(NormalizationTableUtil_t03190D7C1B6FF779D40EBEB0A5929DE24585DAA5_StaticFields, ___Map_1)); }
inline CodePointIndexer_tA70DBD5101E826E30EEF124C2EEE1019B539DB4A * get_Map_1() const { return ___Map_1; }
inline CodePointIndexer_tA70DBD5101E826E30EEF124C2EEE1019B539DB4A ** get_address_of_Map_1() { return &___Map_1; }
inline void set_Map_1(CodePointIndexer_tA70DBD5101E826E30EEF124C2EEE1019B539DB4A * value)
{
___Map_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Map_1), (void*)value);
}
inline static int32_t get_offset_of_Combining_2() { return static_cast<int32_t>(offsetof(NormalizationTableUtil_t03190D7C1B6FF779D40EBEB0A5929DE24585DAA5_StaticFields, ___Combining_2)); }
inline CodePointIndexer_tA70DBD5101E826E30EEF124C2EEE1019B539DB4A * get_Combining_2() const { return ___Combining_2; }
inline CodePointIndexer_tA70DBD5101E826E30EEF124C2EEE1019B539DB4A ** get_address_of_Combining_2() { return &___Combining_2; }
inline void set_Combining_2(CodePointIndexer_tA70DBD5101E826E30EEF124C2EEE1019B539DB4A * value)
{
___Combining_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Combining_2), (void*)value);
}
inline static int32_t get_offset_of_Composite_3() { return static_cast<int32_t>(offsetof(NormalizationTableUtil_t03190D7C1B6FF779D40EBEB0A5929DE24585DAA5_StaticFields, ___Composite_3)); }
inline CodePointIndexer_tA70DBD5101E826E30EEF124C2EEE1019B539DB4A * get_Composite_3() const { return ___Composite_3; }
inline CodePointIndexer_tA70DBD5101E826E30EEF124C2EEE1019B539DB4A ** get_address_of_Composite_3() { return &___Composite_3; }
inline void set_Composite_3(CodePointIndexer_tA70DBD5101E826E30EEF124C2EEE1019B539DB4A * value)
{
___Composite_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Composite_3), (void*)value);
}
inline static int32_t get_offset_of_Helper_4() { return static_cast<int32_t>(offsetof(NormalizationTableUtil_t03190D7C1B6FF779D40EBEB0A5929DE24585DAA5_StaticFields, ___Helper_4)); }
inline CodePointIndexer_tA70DBD5101E826E30EEF124C2EEE1019B539DB4A * get_Helper_4() const { return ___Helper_4; }
inline CodePointIndexer_tA70DBD5101E826E30EEF124C2EEE1019B539DB4A ** get_address_of_Helper_4() { return &___Helper_4; }
inline void set_Helper_4(CodePointIndexer_tA70DBD5101E826E30EEF124C2EEE1019B539DB4A * value)
{
___Helper_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Helper_4), (void*)value);
}
};
struct Il2CppArrayBounds;
// System.Array
// System.ByteMatcher
struct ByteMatcher_tB199BDD35E2575B84D9FDED34954705653D241DC : public RuntimeObject
{
public:
// System.Collections.Hashtable System.ByteMatcher::map
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * ___map_0;
// System.Collections.Hashtable System.ByteMatcher::starts
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * ___starts_1;
public:
inline static int32_t get_offset_of_map_0() { return static_cast<int32_t>(offsetof(ByteMatcher_tB199BDD35E2575B84D9FDED34954705653D241DC, ___map_0)); }
inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * get_map_0() const { return ___map_0; }
inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 ** get_address_of_map_0() { return &___map_0; }
inline void set_map_0(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * 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_tB199BDD35E2575B84D9FDED34954705653D241DC, ___starts_1)); }
inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * get_starts_1() const { return ___starts_1; }
inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 ** get_address_of_starts_1() { return &___starts_1; }
inline void set_starts_1(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * value)
{
___starts_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___starts_1), (void*)value);
}
};
// System.CompatibilitySwitches
struct CompatibilitySwitches_tC541F9F5404925C97741A0628E9B6D26C40CFA91 : public RuntimeObject
{
public:
public:
};
struct CompatibilitySwitches_tC541F9F5404925C97741A0628E9B6D26C40CFA91_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_tC541F9F5404925C97741A0628E9B6D26C40CFA91_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_tC541F9F5404925C97741A0628E9B6D26C40CFA91_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.Console
struct Console_t5C8E87BA271B0DECA837A3BF9093AC3560DB3D5D : public RuntimeObject
{
public:
public:
};
struct Console_t5C8E87BA271B0DECA837A3BF9093AC3560DB3D5D_StaticFields
{
public:
// System.IO.TextWriter System.Console::stdout
TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * ___stdout_0;
// System.IO.TextWriter System.Console::stderr
TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * ___stderr_1;
// System.IO.TextReader System.Console::stdin
TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * ___stdin_2;
// System.Text.Encoding System.Console::inputEncoding
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___inputEncoding_3;
// System.Text.Encoding System.Console::outputEncoding
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___outputEncoding_4;
// System.ConsoleCancelEventHandler System.Console::cancel_event
ConsoleCancelEventHandler_t6F3B5D9C55C25FF6B53EFEDA9150EFE807311EB4 * ___cancel_event_5;
// System.Console_InternalCancelHandler System.Console::cancel_handler
InternalCancelHandler_t2DD134D8150B67E2F9FAD1BC2E6BE92EED57968A * ___cancel_handler_6;
public:
inline static int32_t get_offset_of_stdout_0() { return static_cast<int32_t>(offsetof(Console_t5C8E87BA271B0DECA837A3BF9093AC3560DB3D5D_StaticFields, ___stdout_0)); }
inline TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * get_stdout_0() const { return ___stdout_0; }
inline TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 ** get_address_of_stdout_0() { return &___stdout_0; }
inline void set_stdout_0(TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * value)
{
___stdout_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___stdout_0), (void*)value);
}
inline static int32_t get_offset_of_stderr_1() { return static_cast<int32_t>(offsetof(Console_t5C8E87BA271B0DECA837A3BF9093AC3560DB3D5D_StaticFields, ___stderr_1)); }
inline TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * get_stderr_1() const { return ___stderr_1; }
inline TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 ** get_address_of_stderr_1() { return &___stderr_1; }
inline void set_stderr_1(TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * value)
{
___stderr_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___stderr_1), (void*)value);
}
inline static int32_t get_offset_of_stdin_2() { return static_cast<int32_t>(offsetof(Console_t5C8E87BA271B0DECA837A3BF9093AC3560DB3D5D_StaticFields, ___stdin_2)); }
inline TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * get_stdin_2() const { return ___stdin_2; }
inline TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A ** get_address_of_stdin_2() { return &___stdin_2; }
inline void set_stdin_2(TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * value)
{
___stdin_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___stdin_2), (void*)value);
}
inline static int32_t get_offset_of_inputEncoding_3() { return static_cast<int32_t>(offsetof(Console_t5C8E87BA271B0DECA837A3BF9093AC3560DB3D5D_StaticFields, ___inputEncoding_3)); }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_inputEncoding_3() const { return ___inputEncoding_3; }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_inputEncoding_3() { return &___inputEncoding_3; }
inline void set_inputEncoding_3(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value)
{
___inputEncoding_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___inputEncoding_3), (void*)value);
}
inline static int32_t get_offset_of_outputEncoding_4() { return static_cast<int32_t>(offsetof(Console_t5C8E87BA271B0DECA837A3BF9093AC3560DB3D5D_StaticFields, ___outputEncoding_4)); }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_outputEncoding_4() const { return ___outputEncoding_4; }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_outputEncoding_4() { return &___outputEncoding_4; }
inline void set_outputEncoding_4(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value)
{
___outputEncoding_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___outputEncoding_4), (void*)value);
}
inline static int32_t get_offset_of_cancel_event_5() { return static_cast<int32_t>(offsetof(Console_t5C8E87BA271B0DECA837A3BF9093AC3560DB3D5D_StaticFields, ___cancel_event_5)); }
inline ConsoleCancelEventHandler_t6F3B5D9C55C25FF6B53EFEDA9150EFE807311EB4 * get_cancel_event_5() const { return ___cancel_event_5; }
inline ConsoleCancelEventHandler_t6F3B5D9C55C25FF6B53EFEDA9150EFE807311EB4 ** get_address_of_cancel_event_5() { return &___cancel_event_5; }
inline void set_cancel_event_5(ConsoleCancelEventHandler_t6F3B5D9C55C25FF6B53EFEDA9150EFE807311EB4 * value)
{
___cancel_event_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___cancel_event_5), (void*)value);
}
inline static int32_t get_offset_of_cancel_handler_6() { return static_cast<int32_t>(offsetof(Console_t5C8E87BA271B0DECA837A3BF9093AC3560DB3D5D_StaticFields, ___cancel_handler_6)); }
inline InternalCancelHandler_t2DD134D8150B67E2F9FAD1BC2E6BE92EED57968A * get_cancel_handler_6() const { return ___cancel_handler_6; }
inline InternalCancelHandler_t2DD134D8150B67E2F9FAD1BC2E6BE92EED57968A ** get_address_of_cancel_handler_6() { return &___cancel_handler_6; }
inline void set_cancel_handler_6(InternalCancelHandler_t2DD134D8150B67E2F9FAD1BC2E6BE92EED57968A * value)
{
___cancel_handler_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___cancel_handler_6), (void*)value);
}
};
// System.EmptyArray`1<System.Byte>
struct EmptyArray_1_t138215D75D34CDCC9D3A3248006BB81FC3F9609C : public RuntimeObject
{
public:
public:
};
struct EmptyArray_1_t138215D75D34CDCC9D3A3248006BB81FC3F9609C_StaticFields
{
public:
// T[] System.EmptyArray`1::Value
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyArray_1_t138215D75D34CDCC9D3A3248006BB81FC3F9609C_StaticFields, ___Value_0)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_Value_0() const { return ___Value_0; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.EmptyArray`1<System.Char>
struct EmptyArray_1_t40AF87279AA6E3AEEABB0CBA1425F6720C40961A : public RuntimeObject
{
public:
public:
};
struct EmptyArray_1_t40AF87279AA6E3AEEABB0CBA1425F6720C40961A_StaticFields
{
public:
// T[] System.EmptyArray`1::Value
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(EmptyArray_1_t40AF87279AA6E3AEEABB0CBA1425F6720C40961A_StaticFields, ___Value_0)); }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_Value_0() const { return ___Value_0; }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Value_0), (void*)value);
}
};
// System.Globalization.CodePageDataItem
struct CodePageDataItem_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB : 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_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB, ___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_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB, ___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_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB, ___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_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB_StaticFields
{
public:
// System.Char[] System.Globalization.CodePageDataItem::sep
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___sep_3;
public:
inline static int32_t get_offset_of_sep_3() { return static_cast<int32_t>(offsetof(CodePageDataItem_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB_StaticFields, ___sep_3)); }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_sep_3() const { return ___sep_3; }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_sep_3() { return &___sep_3; }
inline void set_sep_3(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value)
{
___sep_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___sep_3), (void*)value);
}
};
// System.Globalization.CultureInfo
struct CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F : 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_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___numInfo_10;
// System.Globalization.DateTimeFormatInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::dateTimeInfo
DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dateTimeInfo_11;
// System.Globalization.TextInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::textInfo
TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * ___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_t933FB07893230EA91C40FF900D5400665E87B14E* ___native_calendar_names_20;
// System.Globalization.CompareInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::compareInfo
CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * ___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_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * ___calendar_24;
// System.Globalization.CultureInfo System.Globalization.CultureInfo::parent_culture
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___parent_culture_25;
// System.Boolean System.Globalization.CultureInfo::constructed
bool ___constructed_26;
// System.Byte[] System.Globalization.CultureInfo::cached_serialized_form
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___cached_serialized_form_27;
// System.Globalization.CultureData System.Globalization.CultureInfo::m_cultureData
CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD * ___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_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___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_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___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_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___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_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___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_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___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_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___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_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___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_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___numInfo_10)); }
inline NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * get_numInfo_10() const { return ___numInfo_10; }
inline NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 ** get_address_of_numInfo_10() { return &___numInfo_10; }
inline void set_numInfo_10(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * 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_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___dateTimeInfo_11)); }
inline DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * get_dateTimeInfo_11() const { return ___dateTimeInfo_11; }
inline DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F ** get_address_of_dateTimeInfo_11() { return &___dateTimeInfo_11; }
inline void set_dateTimeInfo_11(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * 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_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___textInfo_12)); }
inline TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * get_textInfo_12() const { return ___textInfo_12; }
inline TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 ** get_address_of_textInfo_12() { return &___textInfo_12; }
inline void set_textInfo_12(TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * 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_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___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_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___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_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___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_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___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_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___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_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___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_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___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_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___native_calendar_names_20)); }
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_native_calendar_names_20() const { return ___native_calendar_names_20; }
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_native_calendar_names_20() { return &___native_calendar_names_20; }
inline void set_native_calendar_names_20(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* 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_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___compareInfo_21)); }
inline CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * get_compareInfo_21() const { return ___compareInfo_21; }
inline CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 ** get_address_of_compareInfo_21() { return &___compareInfo_21; }
inline void set_compareInfo_21(CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * 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_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___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_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___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_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___calendar_24)); }
inline Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * get_calendar_24() const { return ___calendar_24; }
inline Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 ** get_address_of_calendar_24() { return &___calendar_24; }
inline void set_calendar_24(Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * 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_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___parent_culture_25)); }
inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * get_parent_culture_25() const { return ___parent_culture_25; }
inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F ** get_address_of_parent_culture_25() { return &___parent_culture_25; }
inline void set_parent_culture_25(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * 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_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___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_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___cached_serialized_form_27)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_cached_serialized_form_27() const { return ___cached_serialized_form_27; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_cached_serialized_form_27() { return &___cached_serialized_form_27; }
inline void set_cached_serialized_form_27(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* 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_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___m_cultureData_28)); }
inline CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD * get_m_cultureData_28() const { return ___m_cultureData_28; }
inline CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD ** get_address_of_m_cultureData_28() { return &___m_cultureData_28; }
inline void set_m_cultureData_28(CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD * 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_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___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_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields
{
public:
// System.Globalization.CultureInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::invariant_culture_info
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___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_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___default_current_culture_2;
// System.Globalization.CultureInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::s_DefaultThreadCurrentUICulture
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___s_DefaultThreadCurrentUICulture_33;
// System.Globalization.CultureInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::s_DefaultThreadCurrentCulture
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___s_DefaultThreadCurrentCulture_34;
// System.Collections.Generic.Dictionary`2<System.Int32,System.Globalization.CultureInfo> System.Globalization.CultureInfo::shared_by_number
Dictionary_2_tC88A56872F7C79DBB9582D4F3FC22ED5D8E0B98B * ___shared_by_number_35;
// System.Collections.Generic.Dictionary`2<System.String,System.Globalization.CultureInfo> System.Globalization.CultureInfo::shared_by_name
Dictionary_2_tBA5388DBB42BF620266F9A48E8B859BBBB224E25 * ___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_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields, ___invariant_culture_info_0)); }
inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * get_invariant_culture_info_0() const { return ___invariant_culture_info_0; }
inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F ** get_address_of_invariant_culture_info_0() { return &___invariant_culture_info_0; }
inline void set_invariant_culture_info_0(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * 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_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_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_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields, ___default_current_culture_2)); }
inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * get_default_current_culture_2() const { return ___default_current_culture_2; }
inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F ** get_address_of_default_current_culture_2() { return &___default_current_culture_2; }
inline void set_default_current_culture_2(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * 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_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields, ___s_DefaultThreadCurrentUICulture_33)); }
inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * get_s_DefaultThreadCurrentUICulture_33() const { return ___s_DefaultThreadCurrentUICulture_33; }
inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F ** get_address_of_s_DefaultThreadCurrentUICulture_33() { return &___s_DefaultThreadCurrentUICulture_33; }
inline void set_s_DefaultThreadCurrentUICulture_33(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * 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_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields, ___s_DefaultThreadCurrentCulture_34)); }
inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * get_s_DefaultThreadCurrentCulture_34() const { return ___s_DefaultThreadCurrentCulture_34; }
inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F ** get_address_of_s_DefaultThreadCurrentCulture_34() { return &___s_DefaultThreadCurrentCulture_34; }
inline void set_s_DefaultThreadCurrentCulture_34(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * 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_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields, ___shared_by_number_35)); }
inline Dictionary_2_tC88A56872F7C79DBB9582D4F3FC22ED5D8E0B98B * get_shared_by_number_35() const { return ___shared_by_number_35; }
inline Dictionary_2_tC88A56872F7C79DBB9582D4F3FC22ED5D8E0B98B ** get_address_of_shared_by_number_35() { return &___shared_by_number_35; }
inline void set_shared_by_number_35(Dictionary_2_tC88A56872F7C79DBB9582D4F3FC22ED5D8E0B98B * 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_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields, ___shared_by_name_36)); }
inline Dictionary_2_tBA5388DBB42BF620266F9A48E8B859BBBB224E25 * get_shared_by_name_36() const { return ___shared_by_name_36; }
inline Dictionary_2_tBA5388DBB42BF620266F9A48E8B859BBBB224E25 ** get_address_of_shared_by_name_36() { return &___shared_by_name_36; }
inline void set_shared_by_name_36(Dictionary_2_tBA5388DBB42BF620266F9A48E8B859BBBB224E25 * 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_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_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_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_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_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___numInfo_10;
DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dateTimeInfo_11;
TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * ___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_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * ___compareInfo_21;
void* ___textinfo_data_22;
int32_t ___m_dataItem_23;
Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * ___calendar_24;
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_marshaled_pinvoke* ___parent_culture_25;
int32_t ___constructed_26;
Il2CppSafeArray/*NONE*/* ___cached_serialized_form_27;
CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD_marshaled_pinvoke* ___m_cultureData_28;
int32_t ___m_isInherited_29;
};
// Native definition for COM marshalling of System.Globalization.CultureInfo
struct CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_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_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___numInfo_10;
DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dateTimeInfo_11;
TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * ___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_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * ___compareInfo_21;
void* ___textinfo_data_22;
int32_t ___m_dataItem_23;
Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * ___calendar_24;
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_marshaled_com* ___parent_culture_25;
int32_t ___constructed_26;
Il2CppSafeArray/*NONE*/* ___cached_serialized_form_27;
CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD_marshaled_com* ___m_cultureData_28;
int32_t ___m_isInherited_29;
};
// System.MarshalByRefObject
struct MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF : 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_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF, ____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_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_marshaled_pinvoke
{
Il2CppIUnknown* ____identity_0;
};
// Native definition for COM marshalling of System.MarshalByRefObject
struct MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_marshaled_com
{
Il2CppIUnknown* ____identity_0;
};
// System.Reflection.Binder
struct Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 : public RuntimeObject
{
public:
public:
};
// System.Reflection.MemberInfo
struct MemberInfo_t : public RuntimeObject
{
public:
public:
};
// System.Runtime.Serialization.SerializationInfo
struct SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 : public RuntimeObject
{
public:
// System.String[] System.Runtime.Serialization.SerializationInfo::m_members
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___m_members_0;
// System.Object[] System.Runtime.Serialization.SerializationInfo::m_data
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___m_data_1;
// System.Type[] System.Runtime.Serialization.SerializationInfo::m_types
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___m_types_2;
// System.Collections.Generic.Dictionary`2<System.String,System.Int32> System.Runtime.Serialization.SerializationInfo::m_nameToIndex
Dictionary_2_tD6E204872BA9FD506A0287EF68E285BEB9EC0DFB * ___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_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___m_members_0)); }
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_m_members_0() const { return ___m_members_0; }
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_m_members_0() { return &___m_members_0; }
inline void set_m_members_0(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* 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_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___m_data_1)); }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get_m_data_1() const { return ___m_data_1; }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of_m_data_1() { return &___m_data_1; }
inline void set_m_data_1(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* 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_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___m_types_2)); }
inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* get_m_types_2() const { return ___m_types_2; }
inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F** get_address_of_m_types_2() { return &___m_types_2; }
inline void set_m_types_2(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* 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_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___m_nameToIndex_3)); }
inline Dictionary_2_tD6E204872BA9FD506A0287EF68E285BEB9EC0DFB * get_m_nameToIndex_3() const { return ___m_nameToIndex_3; }
inline Dictionary_2_tD6E204872BA9FD506A0287EF68E285BEB9EC0DFB ** get_address_of_m_nameToIndex_3() { return &___m_nameToIndex_3; }
inline void set_m_nameToIndex_3(Dictionary_2_tD6E204872BA9FD506A0287EF68E285BEB9EC0DFB * 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_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___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_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___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_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___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_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___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_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___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_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___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_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___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_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___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_tB72162C419D705A40F34DDFEB18E6ACA347C54E5 : public RuntimeObject
{
public:
// System.String[] System.Runtime.Serialization.SerializationInfoEnumerator::m_members
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___m_members_0;
// System.Object[] System.Runtime.Serialization.SerializationInfoEnumerator::m_data
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___m_data_1;
// System.Type[] System.Runtime.Serialization.SerializationInfoEnumerator::m_types
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___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_tB72162C419D705A40F34DDFEB18E6ACA347C54E5, ___m_members_0)); }
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_m_members_0() const { return ___m_members_0; }
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_m_members_0() { return &___m_members_0; }
inline void set_m_members_0(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* 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_tB72162C419D705A40F34DDFEB18E6ACA347C54E5, ___m_data_1)); }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get_m_data_1() const { return ___m_data_1; }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of_m_data_1() { return &___m_data_1; }
inline void set_m_data_1(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* 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_tB72162C419D705A40F34DDFEB18E6ACA347C54E5, ___m_types_2)); }
inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* get_m_types_2() const { return ___m_types_2; }
inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F** get_address_of_m_types_2() { return &___m_types_2; }
inline void set_m_types_2(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* 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_tB72162C419D705A40F34DDFEB18E6ACA347C54E5, ___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_tB72162C419D705A40F34DDFEB18E6ACA347C54E5, ___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_tB72162C419D705A40F34DDFEB18E6ACA347C54E5, ___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_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE : public RuntimeObject
{
public:
public:
};
struct StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE_StaticFields
{
public:
// System.StringComparer System.StringComparer::_invariantCulture
StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * ____invariantCulture_0;
// System.StringComparer System.StringComparer::_invariantCultureIgnoreCase
StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * ____invariantCultureIgnoreCase_1;
// System.StringComparer System.StringComparer::_ordinal
StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * ____ordinal_2;
// System.StringComparer System.StringComparer::_ordinalIgnoreCase
StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * ____ordinalIgnoreCase_3;
public:
inline static int32_t get_offset_of__invariantCulture_0() { return static_cast<int32_t>(offsetof(StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE_StaticFields, ____invariantCulture_0)); }
inline StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * get__invariantCulture_0() const { return ____invariantCulture_0; }
inline StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE ** get_address_of__invariantCulture_0() { return &____invariantCulture_0; }
inline void set__invariantCulture_0(StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * 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_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE_StaticFields, ____invariantCultureIgnoreCase_1)); }
inline StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * get__invariantCultureIgnoreCase_1() const { return ____invariantCultureIgnoreCase_1; }
inline StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE ** get_address_of__invariantCultureIgnoreCase_1() { return &____invariantCultureIgnoreCase_1; }
inline void set__invariantCultureIgnoreCase_1(StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * 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_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE_StaticFields, ____ordinal_2)); }
inline StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * get__ordinal_2() const { return ____ordinal_2; }
inline StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE ** get_address_of__ordinal_2() { return &____ordinal_2; }
inline void set__ordinal_2(StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * 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_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE_StaticFields, ____ordinalIgnoreCase_3)); }
inline StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * get__ordinalIgnoreCase_3() const { return ____ordinalIgnoreCase_3; }
inline StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE ** get_address_of__ordinalIgnoreCase_3() { return &____ordinalIgnoreCase_3; }
inline void set__ordinalIgnoreCase_3(StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * value)
{
____ordinalIgnoreCase_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____ordinalIgnoreCase_3), (void*)value);
}
};
// System.TermInfoReader
struct TermInfoReader_tCAABF3484E6F0AA298F809766C52CA9DC4E6C55C : public RuntimeObject
{
public:
// System.Int16 System.TermInfoReader::boolSize
int16_t ___boolSize_0;
// System.Int16 System.TermInfoReader::numSize
int16_t ___numSize_1;
// System.Int16 System.TermInfoReader::strOffsets
int16_t ___strOffsets_2;
// System.Byte[] System.TermInfoReader::buffer
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___buffer_3;
// System.Int32 System.TermInfoReader::booleansOffset
int32_t ___booleansOffset_4;
public:
inline static int32_t get_offset_of_boolSize_0() { return static_cast<int32_t>(offsetof(TermInfoReader_tCAABF3484E6F0AA298F809766C52CA9DC4E6C55C, ___boolSize_0)); }
inline int16_t get_boolSize_0() const { return ___boolSize_0; }
inline int16_t* get_address_of_boolSize_0() { return &___boolSize_0; }
inline void set_boolSize_0(int16_t value)
{
___boolSize_0 = value;
}
inline static int32_t get_offset_of_numSize_1() { return static_cast<int32_t>(offsetof(TermInfoReader_tCAABF3484E6F0AA298F809766C52CA9DC4E6C55C, ___numSize_1)); }
inline int16_t get_numSize_1() const { return ___numSize_1; }
inline int16_t* get_address_of_numSize_1() { return &___numSize_1; }
inline void set_numSize_1(int16_t value)
{
___numSize_1 = value;
}
inline static int32_t get_offset_of_strOffsets_2() { return static_cast<int32_t>(offsetof(TermInfoReader_tCAABF3484E6F0AA298F809766C52CA9DC4E6C55C, ___strOffsets_2)); }
inline int16_t get_strOffsets_2() const { return ___strOffsets_2; }
inline int16_t* get_address_of_strOffsets_2() { return &___strOffsets_2; }
inline void set_strOffsets_2(int16_t value)
{
___strOffsets_2 = value;
}
inline static int32_t get_offset_of_buffer_3() { return static_cast<int32_t>(offsetof(TermInfoReader_tCAABF3484E6F0AA298F809766C52CA9DC4E6C55C, ___buffer_3)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_buffer_3() const { return ___buffer_3; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_buffer_3() { return &___buffer_3; }
inline void set_buffer_3(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___buffer_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___buffer_3), (void*)value);
}
inline static int32_t get_offset_of_booleansOffset_4() { return static_cast<int32_t>(offsetof(TermInfoReader_tCAABF3484E6F0AA298F809766C52CA9DC4E6C55C, ___booleansOffset_4)); }
inline int32_t get_booleansOffset_4() const { return ___booleansOffset_4; }
inline int32_t* get_address_of_booleansOffset_4() { return &___booleansOffset_4; }
inline void set_booleansOffset_4(int32_t value)
{
___booleansOffset_4 = value;
}
};
// System.Text.Decoder
struct Decoder_tEEF45EB6F965222036C49E8EC6BA8A0692AA1F26 : public RuntimeObject
{
public:
// System.Text.DecoderFallback System.Text.Decoder::m_fallback
DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * ___m_fallback_0;
// System.Text.DecoderFallbackBuffer System.Text.Decoder::m_fallbackBuffer
DecoderFallbackBuffer_t41EB1B3F5748BEEF5BE883DA09DBDB937441A83C * ___m_fallbackBuffer_1;
public:
inline static int32_t get_offset_of_m_fallback_0() { return static_cast<int32_t>(offsetof(Decoder_tEEF45EB6F965222036C49E8EC6BA8A0692AA1F26, ___m_fallback_0)); }
inline DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * get_m_fallback_0() const { return ___m_fallback_0; }
inline DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 ** get_address_of_m_fallback_0() { return &___m_fallback_0; }
inline void set_m_fallback_0(DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * 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(Decoder_tEEF45EB6F965222036C49E8EC6BA8A0692AA1F26, ___m_fallbackBuffer_1)); }
inline DecoderFallbackBuffer_t41EB1B3F5748BEEF5BE883DA09DBDB937441A83C * get_m_fallbackBuffer_1() const { return ___m_fallbackBuffer_1; }
inline DecoderFallbackBuffer_t41EB1B3F5748BEEF5BE883DA09DBDB937441A83C ** get_address_of_m_fallbackBuffer_1() { return &___m_fallbackBuffer_1; }
inline void set_m_fallbackBuffer_1(DecoderFallbackBuffer_t41EB1B3F5748BEEF5BE883DA09DBDB937441A83C * value)
{
___m_fallbackBuffer_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_fallbackBuffer_1), (void*)value);
}
};
// System.Text.DecoderFallback
struct DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 : public RuntimeObject
{
public:
// System.Boolean System.Text.DecoderFallback::bIsMicrosoftBestFitFallback
bool ___bIsMicrosoftBestFitFallback_0;
public:
inline static int32_t get_offset_of_bIsMicrosoftBestFitFallback_0() { return static_cast<int32_t>(offsetof(DecoderFallback_t128445EB7676870485230893338EF044F6B72F60, ___bIsMicrosoftBestFitFallback_0)); }
inline bool get_bIsMicrosoftBestFitFallback_0() const { return ___bIsMicrosoftBestFitFallback_0; }
inline bool* get_address_of_bIsMicrosoftBestFitFallback_0() { return &___bIsMicrosoftBestFitFallback_0; }
inline void set_bIsMicrosoftBestFitFallback_0(bool value)
{
___bIsMicrosoftBestFitFallback_0 = value;
}
};
struct DecoderFallback_t128445EB7676870485230893338EF044F6B72F60_StaticFields
{
public:
// System.Text.DecoderFallback modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.DecoderFallback::replacementFallback
DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * ___replacementFallback_1;
// System.Text.DecoderFallback modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.DecoderFallback::exceptionFallback
DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * ___exceptionFallback_2;
// System.Object System.Text.DecoderFallback::s_InternalSyncObject
RuntimeObject * ___s_InternalSyncObject_3;
public:
inline static int32_t get_offset_of_replacementFallback_1() { return static_cast<int32_t>(offsetof(DecoderFallback_t128445EB7676870485230893338EF044F6B72F60_StaticFields, ___replacementFallback_1)); }
inline DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * get_replacementFallback_1() const { return ___replacementFallback_1; }
inline DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 ** get_address_of_replacementFallback_1() { return &___replacementFallback_1; }
inline void set_replacementFallback_1(DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * value)
{
___replacementFallback_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___replacementFallback_1), (void*)value);
}
inline static int32_t get_offset_of_exceptionFallback_2() { return static_cast<int32_t>(offsetof(DecoderFallback_t128445EB7676870485230893338EF044F6B72F60_StaticFields, ___exceptionFallback_2)); }
inline DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * get_exceptionFallback_2() const { return ___exceptionFallback_2; }
inline DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 ** get_address_of_exceptionFallback_2() { return &___exceptionFallback_2; }
inline void set_exceptionFallback_2(DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * value)
{
___exceptionFallback_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___exceptionFallback_2), (void*)value);
}
inline static int32_t get_offset_of_s_InternalSyncObject_3() { return static_cast<int32_t>(offsetof(DecoderFallback_t128445EB7676870485230893338EF044F6B72F60_StaticFields, ___s_InternalSyncObject_3)); }
inline RuntimeObject * get_s_InternalSyncObject_3() const { return ___s_InternalSyncObject_3; }
inline RuntimeObject ** get_address_of_s_InternalSyncObject_3() { return &___s_InternalSyncObject_3; }
inline void set_s_InternalSyncObject_3(RuntimeObject * value)
{
___s_InternalSyncObject_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_InternalSyncObject_3), (void*)value);
}
};
// System.Text.DecoderFallbackBuffer
struct DecoderFallbackBuffer_t41EB1B3F5748BEEF5BE883DA09DBDB937441A83C : public RuntimeObject
{
public:
// System.Byte* System.Text.DecoderFallbackBuffer::byteStart
uint8_t* ___byteStart_0;
// System.Char* System.Text.DecoderFallbackBuffer::charEnd
Il2CppChar* ___charEnd_1;
public:
inline static int32_t get_offset_of_byteStart_0() { return static_cast<int32_t>(offsetof(DecoderFallbackBuffer_t41EB1B3F5748BEEF5BE883DA09DBDB937441A83C, ___byteStart_0)); }
inline uint8_t* get_byteStart_0() const { return ___byteStart_0; }
inline uint8_t** get_address_of_byteStart_0() { return &___byteStart_0; }
inline void set_byteStart_0(uint8_t* value)
{
___byteStart_0 = value;
}
inline static int32_t get_offset_of_charEnd_1() { return static_cast<int32_t>(offsetof(DecoderFallbackBuffer_t41EB1B3F5748BEEF5BE883DA09DBDB937441A83C, ___charEnd_1)); }
inline Il2CppChar* get_charEnd_1() const { return ___charEnd_1; }
inline Il2CppChar** get_address_of_charEnd_1() { return &___charEnd_1; }
inline void set_charEnd_1(Il2CppChar* value)
{
___charEnd_1 = value;
}
};
// System.Text.Encoder
struct Encoder_t29B2697B0B775EABC52EBFB914F327BE9B1A3464 : public RuntimeObject
{
public:
// System.Text.EncoderFallback System.Text.Encoder::m_fallback
EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * ___m_fallback_0;
// System.Text.EncoderFallbackBuffer System.Text.Encoder::m_fallbackBuffer
EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * ___m_fallbackBuffer_1;
public:
inline static int32_t get_offset_of_m_fallback_0() { return static_cast<int32_t>(offsetof(Encoder_t29B2697B0B775EABC52EBFB914F327BE9B1A3464, ___m_fallback_0)); }
inline EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * get_m_fallback_0() const { return ___m_fallback_0; }
inline EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 ** get_address_of_m_fallback_0() { return &___m_fallback_0; }
inline void set_m_fallback_0(EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * 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_t29B2697B0B775EABC52EBFB914F327BE9B1A3464, ___m_fallbackBuffer_1)); }
inline EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * get_m_fallbackBuffer_1() const { return ___m_fallbackBuffer_1; }
inline EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C ** get_address_of_m_fallbackBuffer_1() { return &___m_fallbackBuffer_1; }
inline void set_m_fallbackBuffer_1(EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * value)
{
___m_fallbackBuffer_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_fallbackBuffer_1), (void*)value);
}
};
// System.Text.EncoderFallback
struct EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 : public RuntimeObject
{
public:
// System.Boolean System.Text.EncoderFallback::bIsMicrosoftBestFitFallback
bool ___bIsMicrosoftBestFitFallback_0;
public:
inline static int32_t get_offset_of_bIsMicrosoftBestFitFallback_0() { return static_cast<int32_t>(offsetof(EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63, ___bIsMicrosoftBestFitFallback_0)); }
inline bool get_bIsMicrosoftBestFitFallback_0() const { return ___bIsMicrosoftBestFitFallback_0; }
inline bool* get_address_of_bIsMicrosoftBestFitFallback_0() { return &___bIsMicrosoftBestFitFallback_0; }
inline void set_bIsMicrosoftBestFitFallback_0(bool value)
{
___bIsMicrosoftBestFitFallback_0 = value;
}
};
struct EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63_StaticFields
{
public:
// System.Text.EncoderFallback modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.EncoderFallback::replacementFallback
EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * ___replacementFallback_1;
// System.Text.EncoderFallback modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.EncoderFallback::exceptionFallback
EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * ___exceptionFallback_2;
// System.Object System.Text.EncoderFallback::s_InternalSyncObject
RuntimeObject * ___s_InternalSyncObject_3;
public:
inline static int32_t get_offset_of_replacementFallback_1() { return static_cast<int32_t>(offsetof(EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63_StaticFields, ___replacementFallback_1)); }
inline EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * get_replacementFallback_1() const { return ___replacementFallback_1; }
inline EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 ** get_address_of_replacementFallback_1() { return &___replacementFallback_1; }
inline void set_replacementFallback_1(EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * value)
{
___replacementFallback_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___replacementFallback_1), (void*)value);
}
inline static int32_t get_offset_of_exceptionFallback_2() { return static_cast<int32_t>(offsetof(EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63_StaticFields, ___exceptionFallback_2)); }
inline EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * get_exceptionFallback_2() const { return ___exceptionFallback_2; }
inline EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 ** get_address_of_exceptionFallback_2() { return &___exceptionFallback_2; }
inline void set_exceptionFallback_2(EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * value)
{
___exceptionFallback_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___exceptionFallback_2), (void*)value);
}
inline static int32_t get_offset_of_s_InternalSyncObject_3() { return static_cast<int32_t>(offsetof(EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63_StaticFields, ___s_InternalSyncObject_3)); }
inline RuntimeObject * get_s_InternalSyncObject_3() const { return ___s_InternalSyncObject_3; }
inline RuntimeObject ** get_address_of_s_InternalSyncObject_3() { return &___s_InternalSyncObject_3; }
inline void set_s_InternalSyncObject_3(RuntimeObject * value)
{
___s_InternalSyncObject_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_InternalSyncObject_3), (void*)value);
}
};
// System.Text.EncoderFallbackBuffer
struct EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C : public RuntimeObject
{
public:
// System.Char* System.Text.EncoderFallbackBuffer::charStart
Il2CppChar* ___charStart_0;
// System.Char* System.Text.EncoderFallbackBuffer::charEnd
Il2CppChar* ___charEnd_1;
// System.Text.EncoderNLS System.Text.EncoderFallbackBuffer::encoder
EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * ___encoder_2;
// System.Boolean System.Text.EncoderFallbackBuffer::setEncoder
bool ___setEncoder_3;
// System.Boolean System.Text.EncoderFallbackBuffer::bUsedEncoder
bool ___bUsedEncoder_4;
// System.Boolean System.Text.EncoderFallbackBuffer::bFallingBack
bool ___bFallingBack_5;
// System.Int32 System.Text.EncoderFallbackBuffer::iRecursionCount
int32_t ___iRecursionCount_6;
public:
inline static int32_t get_offset_of_charStart_0() { return static_cast<int32_t>(offsetof(EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C, ___charStart_0)); }
inline Il2CppChar* get_charStart_0() const { return ___charStart_0; }
inline Il2CppChar** get_address_of_charStart_0() { return &___charStart_0; }
inline void set_charStart_0(Il2CppChar* value)
{
___charStart_0 = value;
}
inline static int32_t get_offset_of_charEnd_1() { return static_cast<int32_t>(offsetof(EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C, ___charEnd_1)); }
inline Il2CppChar* get_charEnd_1() const { return ___charEnd_1; }
inline Il2CppChar** get_address_of_charEnd_1() { return &___charEnd_1; }
inline void set_charEnd_1(Il2CppChar* value)
{
___charEnd_1 = value;
}
inline static int32_t get_offset_of_encoder_2() { return static_cast<int32_t>(offsetof(EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C, ___encoder_2)); }
inline EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * get_encoder_2() const { return ___encoder_2; }
inline EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 ** get_address_of_encoder_2() { return &___encoder_2; }
inline void set_encoder_2(EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * value)
{
___encoder_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___encoder_2), (void*)value);
}
inline static int32_t get_offset_of_setEncoder_3() { return static_cast<int32_t>(offsetof(EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C, ___setEncoder_3)); }
inline bool get_setEncoder_3() const { return ___setEncoder_3; }
inline bool* get_address_of_setEncoder_3() { return &___setEncoder_3; }
inline void set_setEncoder_3(bool value)
{
___setEncoder_3 = value;
}
inline static int32_t get_offset_of_bUsedEncoder_4() { return static_cast<int32_t>(offsetof(EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C, ___bUsedEncoder_4)); }
inline bool get_bUsedEncoder_4() const { return ___bUsedEncoder_4; }
inline bool* get_address_of_bUsedEncoder_4() { return &___bUsedEncoder_4; }
inline void set_bUsedEncoder_4(bool value)
{
___bUsedEncoder_4 = value;
}
inline static int32_t get_offset_of_bFallingBack_5() { return static_cast<int32_t>(offsetof(EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C, ___bFallingBack_5)); }
inline bool get_bFallingBack_5() const { return ___bFallingBack_5; }
inline bool* get_address_of_bFallingBack_5() { return &___bFallingBack_5; }
inline void set_bFallingBack_5(bool value)
{
___bFallingBack_5 = value;
}
inline static int32_t get_offset_of_iRecursionCount_6() { return static_cast<int32_t>(offsetof(EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C, ___iRecursionCount_6)); }
inline int32_t get_iRecursionCount_6() const { return ___iRecursionCount_6; }
inline int32_t* get_address_of_iRecursionCount_6() { return &___iRecursionCount_6; }
inline void set_iRecursionCount_6(int32_t value)
{
___iRecursionCount_6 = value;
}
};
// System.Text.Encoding
struct Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 : public RuntimeObject
{
public:
// System.Int32 System.Text.Encoding::m_codePage
int32_t ___m_codePage_9;
// System.Globalization.CodePageDataItem System.Text.Encoding::dataItem
CodePageDataItem_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB * ___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_tDE342346D01608628F1BCEBB652D31009852CF63 * ___encoderFallback_13;
// System.Text.DecoderFallback System.Text.Encoding::decoderFallback
DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * ___decoderFallback_14;
public:
inline static int32_t get_offset_of_m_codePage_9() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4, ___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_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4, ___dataItem_10)); }
inline CodePageDataItem_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB * get_dataItem_10() const { return ___dataItem_10; }
inline CodePageDataItem_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB ** get_address_of_dataItem_10() { return &___dataItem_10; }
inline void set_dataItem_10(CodePageDataItem_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB * 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_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4, ___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_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4, ___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_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4, ___encoderFallback_13)); }
inline EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * get_encoderFallback_13() const { return ___encoderFallback_13; }
inline EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 ** get_address_of_encoderFallback_13() { return &___encoderFallback_13; }
inline void set_encoderFallback_13(EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * 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_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4, ___decoderFallback_14)); }
inline DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * get_decoderFallback_14() const { return ___decoderFallback_14; }
inline DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 ** get_address_of_decoderFallback_14() { return &___decoderFallback_14; }
inline void set_decoderFallback_14(DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * value)
{
___decoderFallback_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&___decoderFallback_14), (void*)value);
}
};
struct Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields
{
public:
// System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::defaultEncoding
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___defaultEncoding_0;
// System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::unicodeEncoding
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___unicodeEncoding_1;
// System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::bigEndianUnicode
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___bigEndianUnicode_2;
// System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::utf7Encoding
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___utf7Encoding_3;
// System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::utf8Encoding
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___utf8Encoding_4;
// System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::utf32Encoding
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___utf32Encoding_5;
// System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::asciiEncoding
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___asciiEncoding_6;
// System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::latin1Encoding
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___latin1Encoding_7;
// System.Collections.Hashtable modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::encodings
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * ___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_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___defaultEncoding_0)); }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_defaultEncoding_0() const { return ___defaultEncoding_0; }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_defaultEncoding_0() { return &___defaultEncoding_0; }
inline void set_defaultEncoding_0(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * 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_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___unicodeEncoding_1)); }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_unicodeEncoding_1() const { return ___unicodeEncoding_1; }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_unicodeEncoding_1() { return &___unicodeEncoding_1; }
inline void set_unicodeEncoding_1(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * 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_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___bigEndianUnicode_2)); }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_bigEndianUnicode_2() const { return ___bigEndianUnicode_2; }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_bigEndianUnicode_2() { return &___bigEndianUnicode_2; }
inline void set_bigEndianUnicode_2(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * 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_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___utf7Encoding_3)); }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_utf7Encoding_3() const { return ___utf7Encoding_3; }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_utf7Encoding_3() { return &___utf7Encoding_3; }
inline void set_utf7Encoding_3(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * 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_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___utf8Encoding_4)); }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_utf8Encoding_4() const { return ___utf8Encoding_4; }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_utf8Encoding_4() { return &___utf8Encoding_4; }
inline void set_utf8Encoding_4(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * 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_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___utf32Encoding_5)); }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_utf32Encoding_5() const { return ___utf32Encoding_5; }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_utf32Encoding_5() { return &___utf32Encoding_5; }
inline void set_utf32Encoding_5(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * 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_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___asciiEncoding_6)); }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_asciiEncoding_6() const { return ___asciiEncoding_6; }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_asciiEncoding_6() { return &___asciiEncoding_6; }
inline void set_asciiEncoding_6(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * 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_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___latin1Encoding_7)); }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_latin1Encoding_7() const { return ___latin1Encoding_7; }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_latin1Encoding_7() { return &___latin1Encoding_7; }
inline void set_latin1Encoding_7(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * 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_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___encodings_8)); }
inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * get_encodings_8() const { return ___encodings_8; }
inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 ** get_address_of_encodings_8() { return &___encodings_8; }
inline void set_encodings_8(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * 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_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_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.Encoding_EncodingByteBuffer
struct EncodingByteBuffer_t3F87DF1BC4355EFCA2E26FFAE6D239ABCFBF3AD5 : public RuntimeObject
{
public:
// System.Byte* System.Text.Encoding_EncodingByteBuffer::bytes
uint8_t* ___bytes_0;
// System.Byte* System.Text.Encoding_EncodingByteBuffer::byteStart
uint8_t* ___byteStart_1;
// System.Byte* System.Text.Encoding_EncodingByteBuffer::byteEnd
uint8_t* ___byteEnd_2;
// System.Char* System.Text.Encoding_EncodingByteBuffer::chars
Il2CppChar* ___chars_3;
// System.Char* System.Text.Encoding_EncodingByteBuffer::charStart
Il2CppChar* ___charStart_4;
// System.Char* System.Text.Encoding_EncodingByteBuffer::charEnd
Il2CppChar* ___charEnd_5;
// System.Int32 System.Text.Encoding_EncodingByteBuffer::byteCountResult
int32_t ___byteCountResult_6;
// System.Text.Encoding System.Text.Encoding_EncodingByteBuffer::enc
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___enc_7;
// System.Text.EncoderNLS System.Text.Encoding_EncodingByteBuffer::encoder
EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * ___encoder_8;
// System.Text.EncoderFallbackBuffer System.Text.Encoding_EncodingByteBuffer::fallbackBuffer
EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * ___fallbackBuffer_9;
public:
inline static int32_t get_offset_of_bytes_0() { return static_cast<int32_t>(offsetof(EncodingByteBuffer_t3F87DF1BC4355EFCA2E26FFAE6D239ABCFBF3AD5, ___bytes_0)); }
inline uint8_t* get_bytes_0() const { return ___bytes_0; }
inline uint8_t** get_address_of_bytes_0() { return &___bytes_0; }
inline void set_bytes_0(uint8_t* value)
{
___bytes_0 = value;
}
inline static int32_t get_offset_of_byteStart_1() { return static_cast<int32_t>(offsetof(EncodingByteBuffer_t3F87DF1BC4355EFCA2E26FFAE6D239ABCFBF3AD5, ___byteStart_1)); }
inline uint8_t* get_byteStart_1() const { return ___byteStart_1; }
inline uint8_t** get_address_of_byteStart_1() { return &___byteStart_1; }
inline void set_byteStart_1(uint8_t* value)
{
___byteStart_1 = value;
}
inline static int32_t get_offset_of_byteEnd_2() { return static_cast<int32_t>(offsetof(EncodingByteBuffer_t3F87DF1BC4355EFCA2E26FFAE6D239ABCFBF3AD5, ___byteEnd_2)); }
inline uint8_t* get_byteEnd_2() const { return ___byteEnd_2; }
inline uint8_t** get_address_of_byteEnd_2() { return &___byteEnd_2; }
inline void set_byteEnd_2(uint8_t* value)
{
___byteEnd_2 = value;
}
inline static int32_t get_offset_of_chars_3() { return static_cast<int32_t>(offsetof(EncodingByteBuffer_t3F87DF1BC4355EFCA2E26FFAE6D239ABCFBF3AD5, ___chars_3)); }
inline Il2CppChar* get_chars_3() const { return ___chars_3; }
inline Il2CppChar** get_address_of_chars_3() { return &___chars_3; }
inline void set_chars_3(Il2CppChar* value)
{
___chars_3 = value;
}
inline static int32_t get_offset_of_charStart_4() { return static_cast<int32_t>(offsetof(EncodingByteBuffer_t3F87DF1BC4355EFCA2E26FFAE6D239ABCFBF3AD5, ___charStart_4)); }
inline Il2CppChar* get_charStart_4() const { return ___charStart_4; }
inline Il2CppChar** get_address_of_charStart_4() { return &___charStart_4; }
inline void set_charStart_4(Il2CppChar* value)
{
___charStart_4 = value;
}
inline static int32_t get_offset_of_charEnd_5() { return static_cast<int32_t>(offsetof(EncodingByteBuffer_t3F87DF1BC4355EFCA2E26FFAE6D239ABCFBF3AD5, ___charEnd_5)); }
inline Il2CppChar* get_charEnd_5() const { return ___charEnd_5; }
inline Il2CppChar** get_address_of_charEnd_5() { return &___charEnd_5; }
inline void set_charEnd_5(Il2CppChar* value)
{
___charEnd_5 = value;
}
inline static int32_t get_offset_of_byteCountResult_6() { return static_cast<int32_t>(offsetof(EncodingByteBuffer_t3F87DF1BC4355EFCA2E26FFAE6D239ABCFBF3AD5, ___byteCountResult_6)); }
inline int32_t get_byteCountResult_6() const { return ___byteCountResult_6; }
inline int32_t* get_address_of_byteCountResult_6() { return &___byteCountResult_6; }
inline void set_byteCountResult_6(int32_t value)
{
___byteCountResult_6 = value;
}
inline static int32_t get_offset_of_enc_7() { return static_cast<int32_t>(offsetof(EncodingByteBuffer_t3F87DF1BC4355EFCA2E26FFAE6D239ABCFBF3AD5, ___enc_7)); }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_enc_7() const { return ___enc_7; }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_enc_7() { return &___enc_7; }
inline void set_enc_7(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value)
{
___enc_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___enc_7), (void*)value);
}
inline static int32_t get_offset_of_encoder_8() { return static_cast<int32_t>(offsetof(EncodingByteBuffer_t3F87DF1BC4355EFCA2E26FFAE6D239ABCFBF3AD5, ___encoder_8)); }
inline EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * get_encoder_8() const { return ___encoder_8; }
inline EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 ** get_address_of_encoder_8() { return &___encoder_8; }
inline void set_encoder_8(EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * value)
{
___encoder_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___encoder_8), (void*)value);
}
inline static int32_t get_offset_of_fallbackBuffer_9() { return static_cast<int32_t>(offsetof(EncodingByteBuffer_t3F87DF1BC4355EFCA2E26FFAE6D239ABCFBF3AD5, ___fallbackBuffer_9)); }
inline EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * get_fallbackBuffer_9() const { return ___fallbackBuffer_9; }
inline EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C ** get_address_of_fallbackBuffer_9() { return &___fallbackBuffer_9; }
inline void set_fallbackBuffer_9(EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * value)
{
___fallbackBuffer_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___fallbackBuffer_9), (void*)value);
}
};
// System.Text.Encoding_EncodingCharBuffer
struct EncodingCharBuffer_t57DF2C468BB65F56788A37E2DDF56AA6BE536BD0 : public RuntimeObject
{
public:
// System.Char* System.Text.Encoding_EncodingCharBuffer::chars
Il2CppChar* ___chars_0;
// System.Char* System.Text.Encoding_EncodingCharBuffer::charStart
Il2CppChar* ___charStart_1;
// System.Char* System.Text.Encoding_EncodingCharBuffer::charEnd
Il2CppChar* ___charEnd_2;
// System.Int32 System.Text.Encoding_EncodingCharBuffer::charCountResult
int32_t ___charCountResult_3;
// System.Text.Encoding System.Text.Encoding_EncodingCharBuffer::enc
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___enc_4;
// System.Text.DecoderNLS System.Text.Encoding_EncodingCharBuffer::decoder
DecoderNLS_tCDF0A810A2E2B738728A98BBB49F792E66BDF6CD * ___decoder_5;
// System.Byte* System.Text.Encoding_EncodingCharBuffer::byteStart
uint8_t* ___byteStart_6;
// System.Byte* System.Text.Encoding_EncodingCharBuffer::byteEnd
uint8_t* ___byteEnd_7;
// System.Byte* System.Text.Encoding_EncodingCharBuffer::bytes
uint8_t* ___bytes_8;
// System.Text.DecoderFallbackBuffer System.Text.Encoding_EncodingCharBuffer::fallbackBuffer
DecoderFallbackBuffer_t41EB1B3F5748BEEF5BE883DA09DBDB937441A83C * ___fallbackBuffer_9;
public:
inline static int32_t get_offset_of_chars_0() { return static_cast<int32_t>(offsetof(EncodingCharBuffer_t57DF2C468BB65F56788A37E2DDF56AA6BE536BD0, ___chars_0)); }
inline Il2CppChar* get_chars_0() const { return ___chars_0; }
inline Il2CppChar** get_address_of_chars_0() { return &___chars_0; }
inline void set_chars_0(Il2CppChar* value)
{
___chars_0 = value;
}
inline static int32_t get_offset_of_charStart_1() { return static_cast<int32_t>(offsetof(EncodingCharBuffer_t57DF2C468BB65F56788A37E2DDF56AA6BE536BD0, ___charStart_1)); }
inline Il2CppChar* get_charStart_1() const { return ___charStart_1; }
inline Il2CppChar** get_address_of_charStart_1() { return &___charStart_1; }
inline void set_charStart_1(Il2CppChar* value)
{
___charStart_1 = value;
}
inline static int32_t get_offset_of_charEnd_2() { return static_cast<int32_t>(offsetof(EncodingCharBuffer_t57DF2C468BB65F56788A37E2DDF56AA6BE536BD0, ___charEnd_2)); }
inline Il2CppChar* get_charEnd_2() const { return ___charEnd_2; }
inline Il2CppChar** get_address_of_charEnd_2() { return &___charEnd_2; }
inline void set_charEnd_2(Il2CppChar* value)
{
___charEnd_2 = value;
}
inline static int32_t get_offset_of_charCountResult_3() { return static_cast<int32_t>(offsetof(EncodingCharBuffer_t57DF2C468BB65F56788A37E2DDF56AA6BE536BD0, ___charCountResult_3)); }
inline int32_t get_charCountResult_3() const { return ___charCountResult_3; }
inline int32_t* get_address_of_charCountResult_3() { return &___charCountResult_3; }
inline void set_charCountResult_3(int32_t value)
{
___charCountResult_3 = value;
}
inline static int32_t get_offset_of_enc_4() { return static_cast<int32_t>(offsetof(EncodingCharBuffer_t57DF2C468BB65F56788A37E2DDF56AA6BE536BD0, ___enc_4)); }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_enc_4() const { return ___enc_4; }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_enc_4() { return &___enc_4; }
inline void set_enc_4(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value)
{
___enc_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___enc_4), (void*)value);
}
inline static int32_t get_offset_of_decoder_5() { return static_cast<int32_t>(offsetof(EncodingCharBuffer_t57DF2C468BB65F56788A37E2DDF56AA6BE536BD0, ___decoder_5)); }
inline DecoderNLS_tCDF0A810A2E2B738728A98BBB49F792E66BDF6CD * get_decoder_5() const { return ___decoder_5; }
inline DecoderNLS_tCDF0A810A2E2B738728A98BBB49F792E66BDF6CD ** get_address_of_decoder_5() { return &___decoder_5; }
inline void set_decoder_5(DecoderNLS_tCDF0A810A2E2B738728A98BBB49F792E66BDF6CD * value)
{
___decoder_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___decoder_5), (void*)value);
}
inline static int32_t get_offset_of_byteStart_6() { return static_cast<int32_t>(offsetof(EncodingCharBuffer_t57DF2C468BB65F56788A37E2DDF56AA6BE536BD0, ___byteStart_6)); }
inline uint8_t* get_byteStart_6() const { return ___byteStart_6; }
inline uint8_t** get_address_of_byteStart_6() { return &___byteStart_6; }
inline void set_byteStart_6(uint8_t* value)
{
___byteStart_6 = value;
}
inline static int32_t get_offset_of_byteEnd_7() { return static_cast<int32_t>(offsetof(EncodingCharBuffer_t57DF2C468BB65F56788A37E2DDF56AA6BE536BD0, ___byteEnd_7)); }
inline uint8_t* get_byteEnd_7() const { return ___byteEnd_7; }
inline uint8_t** get_address_of_byteEnd_7() { return &___byteEnd_7; }
inline void set_byteEnd_7(uint8_t* value)
{
___byteEnd_7 = value;
}
inline static int32_t get_offset_of_bytes_8() { return static_cast<int32_t>(offsetof(EncodingCharBuffer_t57DF2C468BB65F56788A37E2DDF56AA6BE536BD0, ___bytes_8)); }
inline uint8_t* get_bytes_8() const { return ___bytes_8; }
inline uint8_t** get_address_of_bytes_8() { return &___bytes_8; }
inline void set_bytes_8(uint8_t* value)
{
___bytes_8 = value;
}
inline static int32_t get_offset_of_fallbackBuffer_9() { return static_cast<int32_t>(offsetof(EncodingCharBuffer_t57DF2C468BB65F56788A37E2DDF56AA6BE536BD0, ___fallbackBuffer_9)); }
inline DecoderFallbackBuffer_t41EB1B3F5748BEEF5BE883DA09DBDB937441A83C * get_fallbackBuffer_9() const { return ___fallbackBuffer_9; }
inline DecoderFallbackBuffer_t41EB1B3F5748BEEF5BE883DA09DBDB937441A83C ** get_address_of_fallbackBuffer_9() { return &___fallbackBuffer_9; }
inline void set_fallbackBuffer_9(DecoderFallbackBuffer_t41EB1B3F5748BEEF5BE883DA09DBDB937441A83C * value)
{
___fallbackBuffer_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___fallbackBuffer_9), (void*)value);
}
};
// System.Text.EncodingHelper
struct EncodingHelper_t1A078DCE9CF2B3578DA8CAFE03FB9FFABD00EBB3 : public RuntimeObject
{
public:
public:
};
struct EncodingHelper_t1A078DCE9CF2B3578DA8CAFE03FB9FFABD00EBB3_StaticFields
{
public:
// System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.EncodingHelper::utf8EncodingWithoutMarkers
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___utf8EncodingWithoutMarkers_0;
// System.Object System.Text.EncodingHelper::lockobj
RuntimeObject * ___lockobj_1;
// System.Reflection.Assembly System.Text.EncodingHelper::i18nAssembly
Assembly_t * ___i18nAssembly_2;
// System.Boolean System.Text.EncodingHelper::i18nDisabled
bool ___i18nDisabled_3;
public:
inline static int32_t get_offset_of_utf8EncodingWithoutMarkers_0() { return static_cast<int32_t>(offsetof(EncodingHelper_t1A078DCE9CF2B3578DA8CAFE03FB9FFABD00EBB3_StaticFields, ___utf8EncodingWithoutMarkers_0)); }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_utf8EncodingWithoutMarkers_0() const { return ___utf8EncodingWithoutMarkers_0; }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_utf8EncodingWithoutMarkers_0() { return &___utf8EncodingWithoutMarkers_0; }
inline void set_utf8EncodingWithoutMarkers_0(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value)
{
___utf8EncodingWithoutMarkers_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___utf8EncodingWithoutMarkers_0), (void*)value);
}
inline static int32_t get_offset_of_lockobj_1() { return static_cast<int32_t>(offsetof(EncodingHelper_t1A078DCE9CF2B3578DA8CAFE03FB9FFABD00EBB3_StaticFields, ___lockobj_1)); }
inline RuntimeObject * get_lockobj_1() const { return ___lockobj_1; }
inline RuntimeObject ** get_address_of_lockobj_1() { return &___lockobj_1; }
inline void set_lockobj_1(RuntimeObject * value)
{
___lockobj_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___lockobj_1), (void*)value);
}
inline static int32_t get_offset_of_i18nAssembly_2() { return static_cast<int32_t>(offsetof(EncodingHelper_t1A078DCE9CF2B3578DA8CAFE03FB9FFABD00EBB3_StaticFields, ___i18nAssembly_2)); }
inline Assembly_t * get_i18nAssembly_2() const { return ___i18nAssembly_2; }
inline Assembly_t ** get_address_of_i18nAssembly_2() { return &___i18nAssembly_2; }
inline void set_i18nAssembly_2(Assembly_t * value)
{
___i18nAssembly_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___i18nAssembly_2), (void*)value);
}
inline static int32_t get_offset_of_i18nDisabled_3() { return static_cast<int32_t>(offsetof(EncodingHelper_t1A078DCE9CF2B3578DA8CAFE03FB9FFABD00EBB3_StaticFields, ___i18nDisabled_3)); }
inline bool get_i18nDisabled_3() const { return ___i18nDisabled_3; }
inline bool* get_address_of_i18nDisabled_3() { return &___i18nDisabled_3; }
inline void set_i18nDisabled_3(bool value)
{
___i18nDisabled_3 = value;
}
};
// System.Text.EncodingProvider
struct EncodingProvider_t75FB9C8A37AAC86251A690CAB8D5D718B9DCB480 : public RuntimeObject
{
public:
public:
};
struct EncodingProvider_t75FB9C8A37AAC86251A690CAB8D5D718B9DCB480_StaticFields
{
public:
// System.Object System.Text.EncodingProvider::s_InternalSyncObject
RuntimeObject * ___s_InternalSyncObject_0;
// System.Text.EncodingProvider[] modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.EncodingProvider::s_providers
EncodingProviderU5BU5D_tC6F023570A13EC5DEAC72E9403D9C8B84DCF4E49* ___s_providers_1;
public:
inline static int32_t get_offset_of_s_InternalSyncObject_0() { return static_cast<int32_t>(offsetof(EncodingProvider_t75FB9C8A37AAC86251A690CAB8D5D718B9DCB480_StaticFields, ___s_InternalSyncObject_0)); }
inline RuntimeObject * get_s_InternalSyncObject_0() const { return ___s_InternalSyncObject_0; }
inline RuntimeObject ** get_address_of_s_InternalSyncObject_0() { return &___s_InternalSyncObject_0; }
inline void set_s_InternalSyncObject_0(RuntimeObject * value)
{
___s_InternalSyncObject_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_InternalSyncObject_0), (void*)value);
}
inline static int32_t get_offset_of_s_providers_1() { return static_cast<int32_t>(offsetof(EncodingProvider_t75FB9C8A37AAC86251A690CAB8D5D718B9DCB480_StaticFields, ___s_providers_1)); }
inline EncodingProviderU5BU5D_tC6F023570A13EC5DEAC72E9403D9C8B84DCF4E49* get_s_providers_1() const { return ___s_providers_1; }
inline EncodingProviderU5BU5D_tC6F023570A13EC5DEAC72E9403D9C8B84DCF4E49** get_address_of_s_providers_1() { return &___s_providers_1; }
inline void set_s_providers_1(EncodingProviderU5BU5D_tC6F023570A13EC5DEAC72E9403D9C8B84DCF4E49* value)
{
___s_providers_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_providers_1), (void*)value);
}
};
// System.Text.Normalization
struct Normalization_t5DC806A630757AD1E908576E8B2EEB2A77BEC22E : public RuntimeObject
{
public:
public:
};
struct Normalization_t5DC806A630757AD1E908576E8B2EEB2A77BEC22E_StaticFields
{
public:
// System.Byte* System.Text.Normalization::props
uint8_t* ___props_0;
// System.Int32* System.Text.Normalization::mappedChars
int32_t* ___mappedChars_1;
// System.Int16* System.Text.Normalization::charMapIndex
int16_t* ___charMapIndex_2;
// System.Int16* System.Text.Normalization::helperIndex
int16_t* ___helperIndex_3;
// System.UInt16* System.Text.Normalization::mapIdxToComposite
uint16_t* ___mapIdxToComposite_4;
// System.Byte* System.Text.Normalization::combiningClass
uint8_t* ___combiningClass_5;
// System.Object System.Text.Normalization::forLock
RuntimeObject * ___forLock_6;
// System.Boolean System.Text.Normalization::isReady
bool ___isReady_7;
public:
inline static int32_t get_offset_of_props_0() { return static_cast<int32_t>(offsetof(Normalization_t5DC806A630757AD1E908576E8B2EEB2A77BEC22E_StaticFields, ___props_0)); }
inline uint8_t* get_props_0() const { return ___props_0; }
inline uint8_t** get_address_of_props_0() { return &___props_0; }
inline void set_props_0(uint8_t* value)
{
___props_0 = value;
}
inline static int32_t get_offset_of_mappedChars_1() { return static_cast<int32_t>(offsetof(Normalization_t5DC806A630757AD1E908576E8B2EEB2A77BEC22E_StaticFields, ___mappedChars_1)); }
inline int32_t* get_mappedChars_1() const { return ___mappedChars_1; }
inline int32_t** get_address_of_mappedChars_1() { return &___mappedChars_1; }
inline void set_mappedChars_1(int32_t* value)
{
___mappedChars_1 = value;
}
inline static int32_t get_offset_of_charMapIndex_2() { return static_cast<int32_t>(offsetof(Normalization_t5DC806A630757AD1E908576E8B2EEB2A77BEC22E_StaticFields, ___charMapIndex_2)); }
inline int16_t* get_charMapIndex_2() const { return ___charMapIndex_2; }
inline int16_t** get_address_of_charMapIndex_2() { return &___charMapIndex_2; }
inline void set_charMapIndex_2(int16_t* value)
{
___charMapIndex_2 = value;
}
inline static int32_t get_offset_of_helperIndex_3() { return static_cast<int32_t>(offsetof(Normalization_t5DC806A630757AD1E908576E8B2EEB2A77BEC22E_StaticFields, ___helperIndex_3)); }
inline int16_t* get_helperIndex_3() const { return ___helperIndex_3; }
inline int16_t** get_address_of_helperIndex_3() { return &___helperIndex_3; }
inline void set_helperIndex_3(int16_t* value)
{
___helperIndex_3 = value;
}
inline static int32_t get_offset_of_mapIdxToComposite_4() { return static_cast<int32_t>(offsetof(Normalization_t5DC806A630757AD1E908576E8B2EEB2A77BEC22E_StaticFields, ___mapIdxToComposite_4)); }
inline uint16_t* get_mapIdxToComposite_4() const { return ___mapIdxToComposite_4; }
inline uint16_t** get_address_of_mapIdxToComposite_4() { return &___mapIdxToComposite_4; }
inline void set_mapIdxToComposite_4(uint16_t* value)
{
___mapIdxToComposite_4 = value;
}
inline static int32_t get_offset_of_combiningClass_5() { return static_cast<int32_t>(offsetof(Normalization_t5DC806A630757AD1E908576E8B2EEB2A77BEC22E_StaticFields, ___combiningClass_5)); }
inline uint8_t* get_combiningClass_5() const { return ___combiningClass_5; }
inline uint8_t** get_address_of_combiningClass_5() { return &___combiningClass_5; }
inline void set_combiningClass_5(uint8_t* value)
{
___combiningClass_5 = value;
}
inline static int32_t get_offset_of_forLock_6() { return static_cast<int32_t>(offsetof(Normalization_t5DC806A630757AD1E908576E8B2EEB2A77BEC22E_StaticFields, ___forLock_6)); }
inline RuntimeObject * get_forLock_6() const { return ___forLock_6; }
inline RuntimeObject ** get_address_of_forLock_6() { return &___forLock_6; }
inline void set_forLock_6(RuntimeObject * value)
{
___forLock_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___forLock_6), (void*)value);
}
inline static int32_t get_offset_of_isReady_7() { return static_cast<int32_t>(offsetof(Normalization_t5DC806A630757AD1E908576E8B2EEB2A77BEC22E_StaticFields, ___isReady_7)); }
inline bool get_isReady_7() const { return ___isReady_7; }
inline bool* get_address_of_isReady_7() { return &___isReady_7; }
inline void set_isReady_7(bool value)
{
___isReady_7 = value;
}
};
// System.Text.StringBuilder
struct StringBuilder_t : public RuntimeObject
{
public:
// System.Char[] System.Text.StringBuilder::m_ChunkChars
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___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_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_m_ChunkChars_0() const { return ___m_ChunkChars_0; }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_m_ChunkChars_0() { return &___m_ChunkChars_0; }
inline void set_m_ChunkChars_0(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* 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.ValueType
struct ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF : public RuntimeObject
{
public:
public:
};
// Native definition for P/Invoke marshalling of System.ValueType
struct ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF_marshaled_pinvoke
{
};
// Native definition for COM marshalling of System.ValueType
struct ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF_marshaled_com
{
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D10
struct __StaticArrayInitTypeSizeU3D10_t39E3D966A21885323F15EB866ABDE668EA1ED52C
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D10_t39E3D966A21885323F15EB866ABDE668EA1ED52C__padding[10];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D1018
struct __StaticArrayInitTypeSizeU3D1018_t7825BE1556EFF874DAFDC230EB69C85A48DBCBC4
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D1018_t7825BE1556EFF874DAFDC230EB69C85A48DBCBC4__padding[1018];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D1080
struct __StaticArrayInitTypeSizeU3D1080_tCE36DA14009C45CFDEA7F63618BE90F8DF89AC84
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D1080_tCE36DA14009C45CFDEA7F63618BE90F8DF89AC84__padding[1080];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D11614
struct __StaticArrayInitTypeSizeU3D11614_tDF34959BE752359A89A4A577B8798D2D66A5E7F5
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D11614_tDF34959BE752359A89A4A577B8798D2D66A5E7F5__padding[11614];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D12
struct __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879__padding[12];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D120
struct __StaticArrayInitTypeSizeU3D120_tBA46FD2E9DA153FD8457EE7F425E8ECC517EA252
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D120_tBA46FD2E9DA153FD8457EE7F425E8ECC517EA252__padding[120];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D1208
struct __StaticArrayInitTypeSizeU3D1208_tC58894ECFE2C4FFD2B8FCDF958800099A737C1DD
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D1208_tC58894ECFE2C4FFD2B8FCDF958800099A737C1DD__padding[1208];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D128
struct __StaticArrayInitTypeSizeU3D128_t1B13688BD6EA82B964734FF8C3181161EF5624B1
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D128_t1B13688BD6EA82B964734FF8C3181161EF5624B1__padding[128];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D130
struct __StaticArrayInitTypeSizeU3D130_t732A6F42953325ADC5746FF1A652A2974473AF4F
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D130_t732A6F42953325ADC5746FF1A652A2974473AF4F__padding[130];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D1450
struct __StaticArrayInitTypeSizeU3D1450_t58DE69DB537BA7DFBFF2C7084FFC6970FB3BAEA4
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D1450_t58DE69DB537BA7DFBFF2C7084FFC6970FB3BAEA4__padding[1450];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D16
struct __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341__padding[16];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D162
struct __StaticArrayInitTypeSizeU3D162_tFFF125F871C6A7DE42BE37AC907E2E2149A861AA
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D162_tFFF125F871C6A7DE42BE37AC907E2E2149A861AA__padding[162];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D1665
struct __StaticArrayInitTypeSizeU3D1665_tCD7752863825B82B07752CCE72A581C169E19C20
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D1665_tCD7752863825B82B07752CCE72A581C169E19C20__padding[1665];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D174
struct __StaticArrayInitTypeSizeU3D174_t58EBFEBC3E6F34CF7C54ED51E8113E34B876351F
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D174_t58EBFEBC3E6F34CF7C54ED51E8113E34B876351F__padding[174];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D2100
struct __StaticArrayInitTypeSizeU3D2100_t75CE52CDAFC7C95EDAB5CF1AF8B2621D502F1FAA
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D2100_t75CE52CDAFC7C95EDAB5CF1AF8B2621D502F1FAA__padding[2100];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D212
struct __StaticArrayInitTypeSizeU3D212_tDFB9BEA11D871D109F9E6502B2F50F7115451AAF
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D212_tDFB9BEA11D871D109F9E6502B2F50F7115451AAF__padding[212];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D21252
struct __StaticArrayInitTypeSizeU3D21252_tCA2B51BDF30FDECEBFCB55CC7530A0A7D6BC4462
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D21252_tCA2B51BDF30FDECEBFCB55CC7530A0A7D6BC4462__padding[21252];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D2350
struct __StaticArrayInitTypeSizeU3D2350_t96984AEF232104302694B7EFDA3F92BC42BF207D
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D2350_t96984AEF232104302694B7EFDA3F92BC42BF207D__padding[2350];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D2382
struct __StaticArrayInitTypeSizeU3D2382_tB4AF2C49C5120B6EB285BA4D247340D8E243A1BA
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D2382_tB4AF2C49C5120B6EB285BA4D247340D8E243A1BA__padding[2382];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D24
struct __StaticArrayInitTypeSizeU3D24_tAB08761D1BC4313A0535E193F4E1A1AFA8B3F123
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D24_tAB08761D1BC4313A0535E193F4E1A1AFA8B3F123__padding[24];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D240
struct __StaticArrayInitTypeSizeU3D240_t5643A77865294845ACC505FE42EA1067CAC04FD8
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D240_t5643A77865294845ACC505FE42EA1067CAC04FD8__padding[240];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D256
struct __StaticArrayInitTypeSizeU3D256_t9003B1E1E8C82BC25ADE7407C58A314C292B326F
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D256_t9003B1E1E8C82BC25ADE7407C58A314C292B326F__padding[256];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D262
struct __StaticArrayInitTypeSizeU3D262_t93124A1A3E9EDF7F1F305BD2FC57372646F3CFD7
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D262_t93124A1A3E9EDF7F1F305BD2FC57372646F3CFD7__padding[262];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D288
struct __StaticArrayInitTypeSizeU3D288_t7B40D7F3A8D262F90A76460FF94E92CE08AFCF55
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D288_t7B40D7F3A8D262F90A76460FF94E92CE08AFCF55__padding[288];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D3
struct __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E__padding[3];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D32
struct __StaticArrayInitTypeSizeU3D32_t06FF35439BDF1A6AAB50820787FA5D7A4FA09472
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D32_t06FF35439BDF1A6AAB50820787FA5D7A4FA09472__padding[32];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D320
struct __StaticArrayInitTypeSizeU3D320_t48B9242FB90DB2A21A723BBAB141500A9641EB49
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D320_t48B9242FB90DB2A21A723BBAB141500A9641EB49__padding[320];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D36
struct __StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17__padding[36];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D360
struct __StaticArrayInitTypeSizeU3D360_tFF8371303424DEBAE608051BAA970E5AFB409DF7
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D360_tFF8371303424DEBAE608051BAA970E5AFB409DF7__padding[360];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D38
struct __StaticArrayInitTypeSizeU3D38_tA52D24A5F9970582D6B55437967C9BD32E03F05D
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D38_tA52D24A5F9970582D6B55437967C9BD32E03F05D__padding[38];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40
struct __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04__padding[40];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D42
struct __StaticArrayInitTypeSizeU3D42_t3D9F6218E615F20CE7E1AE0EF6657DE732EDBFD4
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D42_t3D9F6218E615F20CE7E1AE0EF6657DE732EDBFD4__padding[42];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D44
struct __StaticArrayInitTypeSizeU3D44_t1383A9A990CD22E4246B656157D17C8051BFAD7F
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D44_t1383A9A990CD22E4246B656157D17C8051BFAD7F__padding[44];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D52
struct __StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A__padding[52];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D6
struct __StaticArrayInitTypeSizeU3D6_tC937DCE458F6AE4186120B4DDF95463176C75C78
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D6_tC937DCE458F6AE4186120B4DDF95463176C75C78__padding[6];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D64
struct __StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6__padding[64];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72
struct __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1__padding[72];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D76
struct __StaticArrayInitTypeSizeU3D76_t83BE44A74AC13CD15474DA7726C9C92BD317CFFB
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D76_t83BE44A74AC13CD15474DA7726C9C92BD317CFFB__padding[76];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D84
struct __StaticArrayInitTypeSizeU3D84_tF52293EFB26AA1D2C169389BB83253C5BAE8076A
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D84_tF52293EFB26AA1D2C169389BB83253C5BAE8076A__padding[84];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D94
struct __StaticArrayInitTypeSizeU3D94_t23554D8B96399688002A3BE81C7C15EFB011DEC6
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D94_t23554D8B96399688002A3BE81C7C15EFB011DEC6__padding[94];
};
public:
};
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D998
struct __StaticArrayInitTypeSizeU3D998_t8A5C9782706B510180A1B9C9F7E96F8F48421B8C
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D998_t8A5C9782706B510180A1B9C9F7E96F8F48421B8C__padding[998];
};
public:
};
// System.Boolean
struct Boolean_tB53F6830F670160873277339AA58F15CAED4399C
{
public:
// System.Boolean System.Boolean::m_value
bool ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Boolean_tB53F6830F670160873277339AA58F15CAED4399C, ___m_value_0)); }
inline bool get_m_value_0() const { return ___m_value_0; }
inline bool* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(bool value)
{
___m_value_0 = value;
}
};
struct Boolean_tB53F6830F670160873277339AA58F15CAED4399C_StaticFields
{
public:
// System.String System.Boolean::TrueString
String_t* ___TrueString_5;
// System.String System.Boolean::FalseString
String_t* ___FalseString_6;
public:
inline static int32_t get_offset_of_TrueString_5() { return static_cast<int32_t>(offsetof(Boolean_tB53F6830F670160873277339AA58F15CAED4399C_StaticFields, ___TrueString_5)); }
inline String_t* get_TrueString_5() const { return ___TrueString_5; }
inline String_t** get_address_of_TrueString_5() { return &___TrueString_5; }
inline void set_TrueString_5(String_t* value)
{
___TrueString_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___TrueString_5), (void*)value);
}
inline static int32_t get_offset_of_FalseString_6() { return static_cast<int32_t>(offsetof(Boolean_tB53F6830F670160873277339AA58F15CAED4399C_StaticFields, ___FalseString_6)); }
inline String_t* get_FalseString_6() const { return ___FalseString_6; }
inline String_t** get_address_of_FalseString_6() { return &___FalseString_6; }
inline void set_FalseString_6(String_t* value)
{
___FalseString_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___FalseString_6), (void*)value);
}
};
// System.Byte
struct Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07
{
public:
// System.Byte System.Byte::m_value
uint8_t ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07, ___m_value_0)); }
inline uint8_t get_m_value_0() const { return ___m_value_0; }
inline uint8_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(uint8_t value)
{
___m_value_0 = value;
}
};
// System.Char
struct Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9
{
public:
// System.Char System.Char::m_value
Il2CppChar ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9, ___m_value_0)); }
inline Il2CppChar get_m_value_0() const { return ___m_value_0; }
inline Il2CppChar* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(Il2CppChar value)
{
___m_value_0 = value;
}
};
struct Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_StaticFields
{
public:
// System.Byte[] System.Char::categoryForLatin1
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___categoryForLatin1_3;
public:
inline static int32_t get_offset_of_categoryForLatin1_3() { return static_cast<int32_t>(offsetof(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_StaticFields, ___categoryForLatin1_3)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_categoryForLatin1_3() const { return ___categoryForLatin1_3; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_categoryForLatin1_3() { return &___categoryForLatin1_3; }
inline void set_categoryForLatin1_3(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___categoryForLatin1_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___categoryForLatin1_3), (void*)value);
}
};
// System.Enum
struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521 : public ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF
{
public:
public:
};
struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_StaticFields
{
public:
// System.Char[] System.Enum::enumSeperatorCharArray
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___enumSeperatorCharArray_0;
public:
inline static int32_t get_offset_of_enumSeperatorCharArray_0() { return static_cast<int32_t>(offsetof(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_StaticFields, ___enumSeperatorCharArray_0)); }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_enumSeperatorCharArray_0() const { return ___enumSeperatorCharArray_0; }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_enumSeperatorCharArray_0() { return &___enumSeperatorCharArray_0; }
inline void set_enumSeperatorCharArray_0(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value)
{
___enumSeperatorCharArray_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___enumSeperatorCharArray_0), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Enum
struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_marshaled_pinvoke
{
};
// Native definition for COM marshalling of System.Enum
struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_marshaled_com
{
};
// System.IO.Stream
struct Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 : public MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF
{
public:
// System.IO.Stream_ReadWriteTask System.IO.Stream::_activeReadWriteTask
ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 * ____activeReadWriteTask_2;
// System.Threading.SemaphoreSlim System.IO.Stream::_asyncActiveSemaphore
SemaphoreSlim_t2E2888D1C0C8FAB80823C76F1602E4434B8FA048 * ____asyncActiveSemaphore_3;
public:
inline static int32_t get_offset_of__activeReadWriteTask_2() { return static_cast<int32_t>(offsetof(Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7, ____activeReadWriteTask_2)); }
inline ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 * get__activeReadWriteTask_2() const { return ____activeReadWriteTask_2; }
inline ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 ** get_address_of__activeReadWriteTask_2() { return &____activeReadWriteTask_2; }
inline void set__activeReadWriteTask_2(ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 * 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_tFC50657DD5AAB87770987F9179D934A51D99D5E7, ____asyncActiveSemaphore_3)); }
inline SemaphoreSlim_t2E2888D1C0C8FAB80823C76F1602E4434B8FA048 * get__asyncActiveSemaphore_3() const { return ____asyncActiveSemaphore_3; }
inline SemaphoreSlim_t2E2888D1C0C8FAB80823C76F1602E4434B8FA048 ** get_address_of__asyncActiveSemaphore_3() { return &____asyncActiveSemaphore_3; }
inline void set__asyncActiveSemaphore_3(SemaphoreSlim_t2E2888D1C0C8FAB80823C76F1602E4434B8FA048 * value)
{
____asyncActiveSemaphore_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____asyncActiveSemaphore_3), (void*)value);
}
};
struct Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7_StaticFields
{
public:
// System.IO.Stream System.IO.Stream::Null
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___Null_1;
public:
inline static int32_t get_offset_of_Null_1() { return static_cast<int32_t>(offsetof(Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7_StaticFields, ___Null_1)); }
inline Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * get_Null_1() const { return ___Null_1; }
inline Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 ** get_address_of_Null_1() { return &___Null_1; }
inline void set_Null_1(Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * value)
{
___Null_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Null_1), (void*)value);
}
};
// System.IO.TextReader
struct TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A : public MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF
{
public:
public:
};
struct TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A_StaticFields
{
public:
// System.Func`2<System.Object,System.String> System.IO.TextReader::_ReadLineDelegate
Func_2_t44B347E67E515867D995E8BD5EFD67FA88CE53CF * ____ReadLineDelegate_1;
// System.Func`2<System.Object,System.Int32> System.IO.TextReader::_ReadDelegate
Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6 * ____ReadDelegate_2;
// System.IO.TextReader System.IO.TextReader::Null
TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * ___Null_3;
public:
inline static int32_t get_offset_of__ReadLineDelegate_1() { return static_cast<int32_t>(offsetof(TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A_StaticFields, ____ReadLineDelegate_1)); }
inline Func_2_t44B347E67E515867D995E8BD5EFD67FA88CE53CF * get__ReadLineDelegate_1() const { return ____ReadLineDelegate_1; }
inline Func_2_t44B347E67E515867D995E8BD5EFD67FA88CE53CF ** get_address_of__ReadLineDelegate_1() { return &____ReadLineDelegate_1; }
inline void set__ReadLineDelegate_1(Func_2_t44B347E67E515867D995E8BD5EFD67FA88CE53CF * 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_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A_StaticFields, ____ReadDelegate_2)); }
inline Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6 * get__ReadDelegate_2() const { return ____ReadDelegate_2; }
inline Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6 ** get_address_of__ReadDelegate_2() { return &____ReadDelegate_2; }
inline void set__ReadDelegate_2(Func_2_t8B2DA3FB30280CE3D92F50E9CCAACEE4828789A6 * 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_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A_StaticFields, ___Null_3)); }
inline TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * get_Null_3() const { return ___Null_3; }
inline TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A ** get_address_of_Null_3() { return &___Null_3; }
inline void set_Null_3(TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A * value)
{
___Null_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Null_3), (void*)value);
}
};
// System.IO.TextWriter
struct TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 : public MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF
{
public:
// System.Char[] System.IO.TextWriter::CoreNewLine
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___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_t92451D929322093838C41489883D5B2D7ABAF3F0, ___CoreNewLine_9)); }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_CoreNewLine_9() const { return ___CoreNewLine_9; }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_CoreNewLine_9() { return &___CoreNewLine_9; }
inline void set_CoreNewLine_9(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* 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_t92451D929322093838C41489883D5B2D7ABAF3F0, ___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_t92451D929322093838C41489883D5B2D7ABAF3F0_StaticFields
{
public:
// System.IO.TextWriter System.IO.TextWriter::Null
TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * ___Null_1;
// System.Action`1<System.Object> System.IO.TextWriter::_WriteCharDelegate
Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * ____WriteCharDelegate_2;
// System.Action`1<System.Object> System.IO.TextWriter::_WriteStringDelegate
Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * ____WriteStringDelegate_3;
// System.Action`1<System.Object> System.IO.TextWriter::_WriteCharArrayRangeDelegate
Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * ____WriteCharArrayRangeDelegate_4;
// System.Action`1<System.Object> System.IO.TextWriter::_WriteLineCharDelegate
Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * ____WriteLineCharDelegate_5;
// System.Action`1<System.Object> System.IO.TextWriter::_WriteLineStringDelegate
Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * ____WriteLineStringDelegate_6;
// System.Action`1<System.Object> System.IO.TextWriter::_WriteLineCharArrayRangeDelegate
Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * ____WriteLineCharArrayRangeDelegate_7;
// System.Action`1<System.Object> System.IO.TextWriter::_FlushDelegate
Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * ____FlushDelegate_8;
public:
inline static int32_t get_offset_of_Null_1() { return static_cast<int32_t>(offsetof(TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0_StaticFields, ___Null_1)); }
inline TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * get_Null_1() const { return ___Null_1; }
inline TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 ** get_address_of_Null_1() { return &___Null_1; }
inline void set_Null_1(TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * 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_t92451D929322093838C41489883D5B2D7ABAF3F0_StaticFields, ____WriteCharDelegate_2)); }
inline Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * get__WriteCharDelegate_2() const { return ____WriteCharDelegate_2; }
inline Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 ** get_address_of__WriteCharDelegate_2() { return &____WriteCharDelegate_2; }
inline void set__WriteCharDelegate_2(Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * 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_t92451D929322093838C41489883D5B2D7ABAF3F0_StaticFields, ____WriteStringDelegate_3)); }
inline Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * get__WriteStringDelegate_3() const { return ____WriteStringDelegate_3; }
inline Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 ** get_address_of__WriteStringDelegate_3() { return &____WriteStringDelegate_3; }
inline void set__WriteStringDelegate_3(Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * 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_t92451D929322093838C41489883D5B2D7ABAF3F0_StaticFields, ____WriteCharArrayRangeDelegate_4)); }
inline Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * get__WriteCharArrayRangeDelegate_4() const { return ____WriteCharArrayRangeDelegate_4; }
inline Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 ** get_address_of__WriteCharArrayRangeDelegate_4() { return &____WriteCharArrayRangeDelegate_4; }
inline void set__WriteCharArrayRangeDelegate_4(Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * 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_t92451D929322093838C41489883D5B2D7ABAF3F0_StaticFields, ____WriteLineCharDelegate_5)); }
inline Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * get__WriteLineCharDelegate_5() const { return ____WriteLineCharDelegate_5; }
inline Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 ** get_address_of__WriteLineCharDelegate_5() { return &____WriteLineCharDelegate_5; }
inline void set__WriteLineCharDelegate_5(Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * 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_t92451D929322093838C41489883D5B2D7ABAF3F0_StaticFields, ____WriteLineStringDelegate_6)); }
inline Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * get__WriteLineStringDelegate_6() const { return ____WriteLineStringDelegate_6; }
inline Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 ** get_address_of__WriteLineStringDelegate_6() { return &____WriteLineStringDelegate_6; }
inline void set__WriteLineStringDelegate_6(Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * 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_t92451D929322093838C41489883D5B2D7ABAF3F0_StaticFields, ____WriteLineCharArrayRangeDelegate_7)); }
inline Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * get__WriteLineCharArrayRangeDelegate_7() const { return ____WriteLineCharArrayRangeDelegate_7; }
inline Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 ** get_address_of__WriteLineCharArrayRangeDelegate_7() { return &____WriteLineCharArrayRangeDelegate_7; }
inline void set__WriteLineCharArrayRangeDelegate_7(Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * 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_t92451D929322093838C41489883D5B2D7ABAF3F0_StaticFields, ____FlushDelegate_8)); }
inline Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * get__FlushDelegate_8() const { return ____FlushDelegate_8; }
inline Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 ** get_address_of__FlushDelegate_8() { return &____FlushDelegate_8; }
inline void set__FlushDelegate_8(Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * value)
{
____FlushDelegate_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&____FlushDelegate_8), (void*)value);
}
};
// System.Int16
struct Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D
{
public:
// System.Int16 System.Int16::m_value
int16_t ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D, ___m_value_0)); }
inline int16_t get_m_value_0() const { return ___m_value_0; }
inline int16_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(int16_t value)
{
___m_value_0 = value;
}
};
// System.Int32
struct Int32_t585191389E07734F19F3156FF88FB3EF4800D102
{
public:
// System.Int32 System.Int32::m_value
int32_t ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int32_t585191389E07734F19F3156FF88FB3EF4800D102, ___m_value_0)); }
inline int32_t get_m_value_0() const { return ___m_value_0; }
inline int32_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(int32_t value)
{
___m_value_0 = value;
}
};
// System.Int64
struct Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436
{
public:
// System.Int64 System.Int64::m_value
int64_t ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436, ___m_value_0)); }
inline int64_t get_m_value_0() const { return ___m_value_0; }
inline int64_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(int64_t value)
{
___m_value_0 = value;
}
};
// System.IntPtr
struct IntPtr_t
{
public:
// System.Void* System.IntPtr::m_value
void* ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(IntPtr_t, ___m_value_0)); }
inline void* get_m_value_0() const { return ___m_value_0; }
inline void** get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(void* value)
{
___m_value_0 = value;
}
};
struct IntPtr_t_StaticFields
{
public:
// System.IntPtr System.IntPtr::Zero
intptr_t ___Zero_1;
public:
inline static int32_t get_offset_of_Zero_1() { return static_cast<int32_t>(offsetof(IntPtr_t_StaticFields, ___Zero_1)); }
inline intptr_t get_Zero_1() const { return ___Zero_1; }
inline intptr_t* get_address_of_Zero_1() { return &___Zero_1; }
inline void set_Zero_1(intptr_t value)
{
___Zero_1 = value;
}
};
// System.OrdinalComparer
struct OrdinalComparer_tF6BA53365493F2DF0E4DA7C73C4094D1E35F240A : public StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE
{
public:
// System.Boolean System.OrdinalComparer::_ignoreCase
bool ____ignoreCase_4;
public:
inline static int32_t get_offset_of__ignoreCase_4() { return static_cast<int32_t>(offsetof(OrdinalComparer_tF6BA53365493F2DF0E4DA7C73C4094D1E35F240A, ____ignoreCase_4)); }
inline bool get__ignoreCase_4() const { return ____ignoreCase_4; }
inline bool* get_address_of__ignoreCase_4() { return &____ignoreCase_4; }
inline void set__ignoreCase_4(bool value)
{
____ignoreCase_4 = value;
}
};
// System.ParameterizedStrings_FormatParam
struct FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800
{
public:
// System.Int32 System.ParameterizedStrings_FormatParam::_int32
int32_t ____int32_0;
// System.String System.ParameterizedStrings_FormatParam::_string
String_t* ____string_1;
public:
inline static int32_t get_offset_of__int32_0() { return static_cast<int32_t>(offsetof(FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800, ____int32_0)); }
inline int32_t get__int32_0() const { return ____int32_0; }
inline int32_t* get_address_of__int32_0() { return &____int32_0; }
inline void set__int32_0(int32_t value)
{
____int32_0 = value;
}
inline static int32_t get_offset_of__string_1() { return static_cast<int32_t>(offsetof(FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800, ____string_1)); }
inline String_t* get__string_1() const { return ____string_1; }
inline String_t** get_address_of__string_1() { return &____string_1; }
inline void set__string_1(String_t* value)
{
____string_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____string_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.ParameterizedStrings/FormatParam
struct FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800_marshaled_pinvoke
{
int32_t ____int32_0;
char* ____string_1;
};
// Native definition for COM marshalling of System.ParameterizedStrings/FormatParam
struct FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800_marshaled_com
{
int32_t ____int32_0;
Il2CppChar* ____string_1;
};
// System.ParamsArray
struct ParamsArray_t2DD480A5C806C0920DC218523EF3673332A68023
{
public:
// System.Object System.ParamsArray::arg0
RuntimeObject * ___arg0_3;
// System.Object System.ParamsArray::arg1
RuntimeObject * ___arg1_4;
// System.Object System.ParamsArray::arg2
RuntimeObject * ___arg2_5;
// System.Object[] System.ParamsArray::args
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___args_6;
public:
inline static int32_t get_offset_of_arg0_3() { return static_cast<int32_t>(offsetof(ParamsArray_t2DD480A5C806C0920DC218523EF3673332A68023, ___arg0_3)); }
inline RuntimeObject * get_arg0_3() const { return ___arg0_3; }
inline RuntimeObject ** get_address_of_arg0_3() { return &___arg0_3; }
inline void set_arg0_3(RuntimeObject * value)
{
___arg0_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___arg0_3), (void*)value);
}
inline static int32_t get_offset_of_arg1_4() { return static_cast<int32_t>(offsetof(ParamsArray_t2DD480A5C806C0920DC218523EF3673332A68023, ___arg1_4)); }
inline RuntimeObject * get_arg1_4() const { return ___arg1_4; }
inline RuntimeObject ** get_address_of_arg1_4() { return &___arg1_4; }
inline void set_arg1_4(RuntimeObject * value)
{
___arg1_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___arg1_4), (void*)value);
}
inline static int32_t get_offset_of_arg2_5() { return static_cast<int32_t>(offsetof(ParamsArray_t2DD480A5C806C0920DC218523EF3673332A68023, ___arg2_5)); }
inline RuntimeObject * get_arg2_5() const { return ___arg2_5; }
inline RuntimeObject ** get_address_of_arg2_5() { return &___arg2_5; }
inline void set_arg2_5(RuntimeObject * value)
{
___arg2_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___arg2_5), (void*)value);
}
inline static int32_t get_offset_of_args_6() { return static_cast<int32_t>(offsetof(ParamsArray_t2DD480A5C806C0920DC218523EF3673332A68023, ___args_6)); }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get_args_6() const { return ___args_6; }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of_args_6() { return &___args_6; }
inline void set_args_6(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value)
{
___args_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___args_6), (void*)value);
}
};
struct ParamsArray_t2DD480A5C806C0920DC218523EF3673332A68023_StaticFields
{
public:
// System.Object[] System.ParamsArray::oneArgArray
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___oneArgArray_0;
// System.Object[] System.ParamsArray::twoArgArray
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___twoArgArray_1;
// System.Object[] System.ParamsArray::threeArgArray
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___threeArgArray_2;
public:
inline static int32_t get_offset_of_oneArgArray_0() { return static_cast<int32_t>(offsetof(ParamsArray_t2DD480A5C806C0920DC218523EF3673332A68023_StaticFields, ___oneArgArray_0)); }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get_oneArgArray_0() const { return ___oneArgArray_0; }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of_oneArgArray_0() { return &___oneArgArray_0; }
inline void set_oneArgArray_0(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value)
{
___oneArgArray_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___oneArgArray_0), (void*)value);
}
inline static int32_t get_offset_of_twoArgArray_1() { return static_cast<int32_t>(offsetof(ParamsArray_t2DD480A5C806C0920DC218523EF3673332A68023_StaticFields, ___twoArgArray_1)); }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get_twoArgArray_1() const { return ___twoArgArray_1; }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of_twoArgArray_1() { return &___twoArgArray_1; }
inline void set_twoArgArray_1(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value)
{
___twoArgArray_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___twoArgArray_1), (void*)value);
}
inline static int32_t get_offset_of_threeArgArray_2() { return static_cast<int32_t>(offsetof(ParamsArray_t2DD480A5C806C0920DC218523EF3673332A68023_StaticFields, ___threeArgArray_2)); }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get_threeArgArray_2() const { return ___threeArgArray_2; }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of_threeArgArray_2() { return &___threeArgArray_2; }
inline void set_threeArgArray_2(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value)
{
___threeArgArray_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___threeArgArray_2), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.ParamsArray
struct ParamsArray_t2DD480A5C806C0920DC218523EF3673332A68023_marshaled_pinvoke
{
Il2CppIUnknown* ___arg0_3;
Il2CppIUnknown* ___arg1_4;
Il2CppIUnknown* ___arg2_5;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___args_6;
};
// Native definition for COM marshalling of System.ParamsArray
struct ParamsArray_t2DD480A5C806C0920DC218523EF3673332A68023_marshaled_com
{
Il2CppIUnknown* ___arg0_3;
Il2CppIUnknown* ___arg1_4;
Il2CppIUnknown* ___arg2_5;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___args_6;
};
// System.Reflection.ParameterModifier
struct ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E
{
public:
// System.Boolean[] System.Reflection.ParameterModifier::_byRef
BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* ____byRef_0;
public:
inline static int32_t get_offset_of__byRef_0() { return static_cast<int32_t>(offsetof(ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E, ____byRef_0)); }
inline BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* get__byRef_0() const { return ____byRef_0; }
inline BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040** get_address_of__byRef_0() { return &____byRef_0; }
inline void set__byRef_0(BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* value)
{
____byRef_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____byRef_0), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Reflection.ParameterModifier
struct ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E_marshaled_pinvoke
{
int32_t* ____byRef_0;
};
// Native definition for COM marshalling of System.Reflection.ParameterModifier
struct ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E_marshaled_com
{
int32_t* ____byRef_0;
};
// System.Text.ASCIIEncoding
struct ASCIIEncoding_t3A4744E997A7BE0CEF1D5AE3A35EFC4DFFDDC6B9 : public Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4
{
public:
public:
};
// System.Text.DecoderExceptionFallback
struct DecoderExceptionFallback_tF6CA264320D5F576FED0265DBEC89C1F5759C8C9 : public DecoderFallback_t128445EB7676870485230893338EF044F6B72F60
{
public:
public:
};
// System.Text.DecoderExceptionFallbackBuffer
struct DecoderExceptionFallbackBuffer_t1E27F547826A8F4F4CCDA2CB51E232EFB64000EA : public DecoderFallbackBuffer_t41EB1B3F5748BEEF5BE883DA09DBDB937441A83C
{
public:
public:
};
// System.Text.DecoderNLS
struct DecoderNLS_tCDF0A810A2E2B738728A98BBB49F792E66BDF6CD : public Decoder_tEEF45EB6F965222036C49E8EC6BA8A0692AA1F26
{
public:
// System.Text.Encoding System.Text.DecoderNLS::m_encoding
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___m_encoding_2;
// System.Boolean System.Text.DecoderNLS::m_mustFlush
bool ___m_mustFlush_3;
// System.Boolean System.Text.DecoderNLS::m_throwOnOverflow
bool ___m_throwOnOverflow_4;
// System.Int32 System.Text.DecoderNLS::m_bytesUsed
int32_t ___m_bytesUsed_5;
public:
inline static int32_t get_offset_of_m_encoding_2() { return static_cast<int32_t>(offsetof(DecoderNLS_tCDF0A810A2E2B738728A98BBB49F792E66BDF6CD, ___m_encoding_2)); }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_m_encoding_2() const { return ___m_encoding_2; }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_m_encoding_2() { return &___m_encoding_2; }
inline void set_m_encoding_2(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value)
{
___m_encoding_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_encoding_2), (void*)value);
}
inline static int32_t get_offset_of_m_mustFlush_3() { return static_cast<int32_t>(offsetof(DecoderNLS_tCDF0A810A2E2B738728A98BBB49F792E66BDF6CD, ___m_mustFlush_3)); }
inline bool get_m_mustFlush_3() const { return ___m_mustFlush_3; }
inline bool* get_address_of_m_mustFlush_3() { return &___m_mustFlush_3; }
inline void set_m_mustFlush_3(bool value)
{
___m_mustFlush_3 = value;
}
inline static int32_t get_offset_of_m_throwOnOverflow_4() { return static_cast<int32_t>(offsetof(DecoderNLS_tCDF0A810A2E2B738728A98BBB49F792E66BDF6CD, ___m_throwOnOverflow_4)); }
inline bool get_m_throwOnOverflow_4() const { return ___m_throwOnOverflow_4; }
inline bool* get_address_of_m_throwOnOverflow_4() { return &___m_throwOnOverflow_4; }
inline void set_m_throwOnOverflow_4(bool value)
{
___m_throwOnOverflow_4 = value;
}
inline static int32_t get_offset_of_m_bytesUsed_5() { return static_cast<int32_t>(offsetof(DecoderNLS_tCDF0A810A2E2B738728A98BBB49F792E66BDF6CD, ___m_bytesUsed_5)); }
inline int32_t get_m_bytesUsed_5() const { return ___m_bytesUsed_5; }
inline int32_t* get_address_of_m_bytesUsed_5() { return &___m_bytesUsed_5; }
inline void set_m_bytesUsed_5(int32_t value)
{
___m_bytesUsed_5 = value;
}
};
// System.Text.DecoderReplacementFallback
struct DecoderReplacementFallback_t8CF74B2DAE2A08AEA7DF6366778D2E3EA75FC742 : public DecoderFallback_t128445EB7676870485230893338EF044F6B72F60
{
public:
// System.String System.Text.DecoderReplacementFallback::strDefault
String_t* ___strDefault_4;
public:
inline static int32_t get_offset_of_strDefault_4() { return static_cast<int32_t>(offsetof(DecoderReplacementFallback_t8CF74B2DAE2A08AEA7DF6366778D2E3EA75FC742, ___strDefault_4)); }
inline String_t* get_strDefault_4() const { return ___strDefault_4; }
inline String_t** get_address_of_strDefault_4() { return &___strDefault_4; }
inline void set_strDefault_4(String_t* value)
{
___strDefault_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___strDefault_4), (void*)value);
}
};
// System.Text.DecoderReplacementFallbackBuffer
struct DecoderReplacementFallbackBuffer_t1D90752C8EFF20A65277F02C619E16C373790D23 : public DecoderFallbackBuffer_t41EB1B3F5748BEEF5BE883DA09DBDB937441A83C
{
public:
// System.String System.Text.DecoderReplacementFallbackBuffer::strDefault
String_t* ___strDefault_2;
// System.Int32 System.Text.DecoderReplacementFallbackBuffer::fallbackCount
int32_t ___fallbackCount_3;
// System.Int32 System.Text.DecoderReplacementFallbackBuffer::fallbackIndex
int32_t ___fallbackIndex_4;
public:
inline static int32_t get_offset_of_strDefault_2() { return static_cast<int32_t>(offsetof(DecoderReplacementFallbackBuffer_t1D90752C8EFF20A65277F02C619E16C373790D23, ___strDefault_2)); }
inline String_t* get_strDefault_2() const { return ___strDefault_2; }
inline String_t** get_address_of_strDefault_2() { return &___strDefault_2; }
inline void set_strDefault_2(String_t* value)
{
___strDefault_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___strDefault_2), (void*)value);
}
inline static int32_t get_offset_of_fallbackCount_3() { return static_cast<int32_t>(offsetof(DecoderReplacementFallbackBuffer_t1D90752C8EFF20A65277F02C619E16C373790D23, ___fallbackCount_3)); }
inline int32_t get_fallbackCount_3() const { return ___fallbackCount_3; }
inline int32_t* get_address_of_fallbackCount_3() { return &___fallbackCount_3; }
inline void set_fallbackCount_3(int32_t value)
{
___fallbackCount_3 = value;
}
inline static int32_t get_offset_of_fallbackIndex_4() { return static_cast<int32_t>(offsetof(DecoderReplacementFallbackBuffer_t1D90752C8EFF20A65277F02C619E16C373790D23, ___fallbackIndex_4)); }
inline int32_t get_fallbackIndex_4() const { return ___fallbackIndex_4; }
inline int32_t* get_address_of_fallbackIndex_4() { return &___fallbackIndex_4; }
inline void set_fallbackIndex_4(int32_t value)
{
___fallbackIndex_4 = value;
}
};
// System.Text.EncoderExceptionFallback
struct EncoderExceptionFallback_tF2E778252F491EF902164CC17AB15AD7AF14BE58 : public EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63
{
public:
public:
};
// System.Text.EncoderExceptionFallbackBuffer
struct EncoderExceptionFallbackBuffer_tCCFC3E153251EFA466428A3D364E075DCB5408EB : public EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C
{
public:
public:
};
// System.Text.EncoderNLS
struct EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 : public Encoder_t29B2697B0B775EABC52EBFB914F327BE9B1A3464
{
public:
// System.Char System.Text.EncoderNLS::charLeftOver
Il2CppChar ___charLeftOver_2;
// System.Text.Encoding System.Text.EncoderNLS::m_encoding
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___m_encoding_3;
// System.Boolean System.Text.EncoderNLS::m_mustFlush
bool ___m_mustFlush_4;
// System.Boolean System.Text.EncoderNLS::m_throwOnOverflow
bool ___m_throwOnOverflow_5;
// System.Int32 System.Text.EncoderNLS::m_charsUsed
int32_t ___m_charsUsed_6;
public:
inline static int32_t get_offset_of_charLeftOver_2() { return static_cast<int32_t>(offsetof(EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8, ___charLeftOver_2)); }
inline Il2CppChar get_charLeftOver_2() const { return ___charLeftOver_2; }
inline Il2CppChar* get_address_of_charLeftOver_2() { return &___charLeftOver_2; }
inline void set_charLeftOver_2(Il2CppChar value)
{
___charLeftOver_2 = value;
}
inline static int32_t get_offset_of_m_encoding_3() { return static_cast<int32_t>(offsetof(EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8, ___m_encoding_3)); }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_m_encoding_3() const { return ___m_encoding_3; }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_m_encoding_3() { return &___m_encoding_3; }
inline void set_m_encoding_3(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value)
{
___m_encoding_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_encoding_3), (void*)value);
}
inline static int32_t get_offset_of_m_mustFlush_4() { return static_cast<int32_t>(offsetof(EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8, ___m_mustFlush_4)); }
inline bool get_m_mustFlush_4() const { return ___m_mustFlush_4; }
inline bool* get_address_of_m_mustFlush_4() { return &___m_mustFlush_4; }
inline void set_m_mustFlush_4(bool value)
{
___m_mustFlush_4 = value;
}
inline static int32_t get_offset_of_m_throwOnOverflow_5() { return static_cast<int32_t>(offsetof(EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8, ___m_throwOnOverflow_5)); }
inline bool get_m_throwOnOverflow_5() const { return ___m_throwOnOverflow_5; }
inline bool* get_address_of_m_throwOnOverflow_5() { return &___m_throwOnOverflow_5; }
inline void set_m_throwOnOverflow_5(bool value)
{
___m_throwOnOverflow_5 = value;
}
inline static int32_t get_offset_of_m_charsUsed_6() { return static_cast<int32_t>(offsetof(EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8, ___m_charsUsed_6)); }
inline int32_t get_m_charsUsed_6() const { return ___m_charsUsed_6; }
inline int32_t* get_address_of_m_charsUsed_6() { return &___m_charsUsed_6; }
inline void set_m_charsUsed_6(int32_t value)
{
___m_charsUsed_6 = value;
}
};
// System.Text.EncoderReplacementFallback
struct EncoderReplacementFallback_tC2E8A94C82BBF7A4CFC8E3FDBA8A381DCF29F998 : public EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63
{
public:
// System.String System.Text.EncoderReplacementFallback::strDefault
String_t* ___strDefault_4;
public:
inline static int32_t get_offset_of_strDefault_4() { return static_cast<int32_t>(offsetof(EncoderReplacementFallback_tC2E8A94C82BBF7A4CFC8E3FDBA8A381DCF29F998, ___strDefault_4)); }
inline String_t* get_strDefault_4() const { return ___strDefault_4; }
inline String_t** get_address_of_strDefault_4() { return &___strDefault_4; }
inline void set_strDefault_4(String_t* value)
{
___strDefault_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___strDefault_4), (void*)value);
}
};
// System.Text.EncoderReplacementFallbackBuffer
struct EncoderReplacementFallbackBuffer_t15BBCFD4E3EFF8C907821BB065AA94A58C36959A : public EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C
{
public:
// System.String System.Text.EncoderReplacementFallbackBuffer::strDefault
String_t* ___strDefault_7;
// System.Int32 System.Text.EncoderReplacementFallbackBuffer::fallbackCount
int32_t ___fallbackCount_8;
// System.Int32 System.Text.EncoderReplacementFallbackBuffer::fallbackIndex
int32_t ___fallbackIndex_9;
public:
inline static int32_t get_offset_of_strDefault_7() { return static_cast<int32_t>(offsetof(EncoderReplacementFallbackBuffer_t15BBCFD4E3EFF8C907821BB065AA94A58C36959A, ___strDefault_7)); }
inline String_t* get_strDefault_7() const { return ___strDefault_7; }
inline String_t** get_address_of_strDefault_7() { return &___strDefault_7; }
inline void set_strDefault_7(String_t* value)
{
___strDefault_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___strDefault_7), (void*)value);
}
inline static int32_t get_offset_of_fallbackCount_8() { return static_cast<int32_t>(offsetof(EncoderReplacementFallbackBuffer_t15BBCFD4E3EFF8C907821BB065AA94A58C36959A, ___fallbackCount_8)); }
inline int32_t get_fallbackCount_8() const { return ___fallbackCount_8; }
inline int32_t* get_address_of_fallbackCount_8() { return &___fallbackCount_8; }
inline void set_fallbackCount_8(int32_t value)
{
___fallbackCount_8 = value;
}
inline static int32_t get_offset_of_fallbackIndex_9() { return static_cast<int32_t>(offsetof(EncoderReplacementFallbackBuffer_t15BBCFD4E3EFF8C907821BB065AA94A58C36959A, ___fallbackIndex_9)); }
inline int32_t get_fallbackIndex_9() const { return ___fallbackIndex_9; }
inline int32_t* get_address_of_fallbackIndex_9() { return &___fallbackIndex_9; }
inline void set_fallbackIndex_9(int32_t value)
{
___fallbackIndex_9 = value;
}
};
// System.Text.Encoding_DefaultDecoder
struct DefaultDecoder_t3872BD77BDC12EB0F34D0DEE8E34D7A1FE49F91C : public Decoder_tEEF45EB6F965222036C49E8EC6BA8A0692AA1F26
{
public:
// System.Text.Encoding System.Text.Encoding_DefaultDecoder::m_encoding
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___m_encoding_2;
// System.Boolean System.Text.Encoding_DefaultDecoder::m_hasInitializedEncoding
bool ___m_hasInitializedEncoding_3;
public:
inline static int32_t get_offset_of_m_encoding_2() { return static_cast<int32_t>(offsetof(DefaultDecoder_t3872BD77BDC12EB0F34D0DEE8E34D7A1FE49F91C, ___m_encoding_2)); }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_m_encoding_2() const { return ___m_encoding_2; }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_m_encoding_2() { return &___m_encoding_2; }
inline void set_m_encoding_2(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value)
{
___m_encoding_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_encoding_2), (void*)value);
}
inline static int32_t get_offset_of_m_hasInitializedEncoding_3() { return static_cast<int32_t>(offsetof(DefaultDecoder_t3872BD77BDC12EB0F34D0DEE8E34D7A1FE49F91C, ___m_hasInitializedEncoding_3)); }
inline bool get_m_hasInitializedEncoding_3() const { return ___m_hasInitializedEncoding_3; }
inline bool* get_address_of_m_hasInitializedEncoding_3() { return &___m_hasInitializedEncoding_3; }
inline void set_m_hasInitializedEncoding_3(bool value)
{
___m_hasInitializedEncoding_3 = value;
}
};
// System.Text.Encoding_DefaultEncoder
struct DefaultEncoder_t71EA10E1235BA46A6CC88E06EF73C2BAC1673225 : public Encoder_t29B2697B0B775EABC52EBFB914F327BE9B1A3464
{
public:
// System.Text.Encoding System.Text.Encoding_DefaultEncoder::m_encoding
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___m_encoding_2;
// System.Boolean System.Text.Encoding_DefaultEncoder::m_hasInitializedEncoding
bool ___m_hasInitializedEncoding_3;
// System.Char System.Text.Encoding_DefaultEncoder::charLeftOver
Il2CppChar ___charLeftOver_4;
public:
inline static int32_t get_offset_of_m_encoding_2() { return static_cast<int32_t>(offsetof(DefaultEncoder_t71EA10E1235BA46A6CC88E06EF73C2BAC1673225, ___m_encoding_2)); }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_m_encoding_2() const { return ___m_encoding_2; }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_m_encoding_2() { return &___m_encoding_2; }
inline void set_m_encoding_2(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value)
{
___m_encoding_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_encoding_2), (void*)value);
}
inline static int32_t get_offset_of_m_hasInitializedEncoding_3() { return static_cast<int32_t>(offsetof(DefaultEncoder_t71EA10E1235BA46A6CC88E06EF73C2BAC1673225, ___m_hasInitializedEncoding_3)); }
inline bool get_m_hasInitializedEncoding_3() const { return ___m_hasInitializedEncoding_3; }
inline bool* get_address_of_m_hasInitializedEncoding_3() { return &___m_hasInitializedEncoding_3; }
inline void set_m_hasInitializedEncoding_3(bool value)
{
___m_hasInitializedEncoding_3 = value;
}
inline static int32_t get_offset_of_charLeftOver_4() { return static_cast<int32_t>(offsetof(DefaultEncoder_t71EA10E1235BA46A6CC88E06EF73C2BAC1673225, ___charLeftOver_4)); }
inline Il2CppChar get_charLeftOver_4() const { return ___charLeftOver_4; }
inline Il2CppChar* get_address_of_charLeftOver_4() { return &___charLeftOver_4; }
inline void set_charLeftOver_4(Il2CppChar value)
{
___charLeftOver_4 = value;
}
};
// System.Text.EncodingNLS
struct EncodingNLS_tED4EB523BC03EF4F815875D8A722B294A72F40E7 : public Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4
{
public:
public:
};
// System.Text.InternalDecoderBestFitFallback
struct InternalDecoderBestFitFallback_tEDAD252E54B0CA27A47ABC5681EC6BCACB3C19B4 : public DecoderFallback_t128445EB7676870485230893338EF044F6B72F60
{
public:
// System.Text.Encoding System.Text.InternalDecoderBestFitFallback::encoding
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___encoding_4;
// System.Char[] System.Text.InternalDecoderBestFitFallback::arrayBestFit
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___arrayBestFit_5;
// System.Char System.Text.InternalDecoderBestFitFallback::cReplacement
Il2CppChar ___cReplacement_6;
public:
inline static int32_t get_offset_of_encoding_4() { return static_cast<int32_t>(offsetof(InternalDecoderBestFitFallback_tEDAD252E54B0CA27A47ABC5681EC6BCACB3C19B4, ___encoding_4)); }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_encoding_4() const { return ___encoding_4; }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_encoding_4() { return &___encoding_4; }
inline void set_encoding_4(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value)
{
___encoding_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___encoding_4), (void*)value);
}
inline static int32_t get_offset_of_arrayBestFit_5() { return static_cast<int32_t>(offsetof(InternalDecoderBestFitFallback_tEDAD252E54B0CA27A47ABC5681EC6BCACB3C19B4, ___arrayBestFit_5)); }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_arrayBestFit_5() const { return ___arrayBestFit_5; }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_arrayBestFit_5() { return &___arrayBestFit_5; }
inline void set_arrayBestFit_5(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value)
{
___arrayBestFit_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___arrayBestFit_5), (void*)value);
}
inline static int32_t get_offset_of_cReplacement_6() { return static_cast<int32_t>(offsetof(InternalDecoderBestFitFallback_tEDAD252E54B0CA27A47ABC5681EC6BCACB3C19B4, ___cReplacement_6)); }
inline Il2CppChar get_cReplacement_6() const { return ___cReplacement_6; }
inline Il2CppChar* get_address_of_cReplacement_6() { return &___cReplacement_6; }
inline void set_cReplacement_6(Il2CppChar value)
{
___cReplacement_6 = value;
}
};
// System.Text.InternalDecoderBestFitFallbackBuffer
struct InternalDecoderBestFitFallbackBuffer_t72773560F3EA35774592AA02A71B46D4A46DA25F : public DecoderFallbackBuffer_t41EB1B3F5748BEEF5BE883DA09DBDB937441A83C
{
public:
// System.Char System.Text.InternalDecoderBestFitFallbackBuffer::cBestFit
Il2CppChar ___cBestFit_2;
// System.Int32 System.Text.InternalDecoderBestFitFallbackBuffer::iCount
int32_t ___iCount_3;
// System.Int32 System.Text.InternalDecoderBestFitFallbackBuffer::iSize
int32_t ___iSize_4;
// System.Text.InternalDecoderBestFitFallback System.Text.InternalDecoderBestFitFallbackBuffer::oFallback
InternalDecoderBestFitFallback_tEDAD252E54B0CA27A47ABC5681EC6BCACB3C19B4 * ___oFallback_5;
public:
inline static int32_t get_offset_of_cBestFit_2() { return static_cast<int32_t>(offsetof(InternalDecoderBestFitFallbackBuffer_t72773560F3EA35774592AA02A71B46D4A46DA25F, ___cBestFit_2)); }
inline Il2CppChar get_cBestFit_2() const { return ___cBestFit_2; }
inline Il2CppChar* get_address_of_cBestFit_2() { return &___cBestFit_2; }
inline void set_cBestFit_2(Il2CppChar value)
{
___cBestFit_2 = value;
}
inline static int32_t get_offset_of_iCount_3() { return static_cast<int32_t>(offsetof(InternalDecoderBestFitFallbackBuffer_t72773560F3EA35774592AA02A71B46D4A46DA25F, ___iCount_3)); }
inline int32_t get_iCount_3() const { return ___iCount_3; }
inline int32_t* get_address_of_iCount_3() { return &___iCount_3; }
inline void set_iCount_3(int32_t value)
{
___iCount_3 = value;
}
inline static int32_t get_offset_of_iSize_4() { return static_cast<int32_t>(offsetof(InternalDecoderBestFitFallbackBuffer_t72773560F3EA35774592AA02A71B46D4A46DA25F, ___iSize_4)); }
inline int32_t get_iSize_4() const { return ___iSize_4; }
inline int32_t* get_address_of_iSize_4() { return &___iSize_4; }
inline void set_iSize_4(int32_t value)
{
___iSize_4 = value;
}
inline static int32_t get_offset_of_oFallback_5() { return static_cast<int32_t>(offsetof(InternalDecoderBestFitFallbackBuffer_t72773560F3EA35774592AA02A71B46D4A46DA25F, ___oFallback_5)); }
inline InternalDecoderBestFitFallback_tEDAD252E54B0CA27A47ABC5681EC6BCACB3C19B4 * get_oFallback_5() const { return ___oFallback_5; }
inline InternalDecoderBestFitFallback_tEDAD252E54B0CA27A47ABC5681EC6BCACB3C19B4 ** get_address_of_oFallback_5() { return &___oFallback_5; }
inline void set_oFallback_5(InternalDecoderBestFitFallback_tEDAD252E54B0CA27A47ABC5681EC6BCACB3C19B4 * value)
{
___oFallback_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___oFallback_5), (void*)value);
}
};
struct InternalDecoderBestFitFallbackBuffer_t72773560F3EA35774592AA02A71B46D4A46DA25F_StaticFields
{
public:
// System.Object System.Text.InternalDecoderBestFitFallbackBuffer::s_InternalSyncObject
RuntimeObject * ___s_InternalSyncObject_6;
public:
inline static int32_t get_offset_of_s_InternalSyncObject_6() { return static_cast<int32_t>(offsetof(InternalDecoderBestFitFallbackBuffer_t72773560F3EA35774592AA02A71B46D4A46DA25F_StaticFields, ___s_InternalSyncObject_6)); }
inline RuntimeObject * get_s_InternalSyncObject_6() const { return ___s_InternalSyncObject_6; }
inline RuntimeObject ** get_address_of_s_InternalSyncObject_6() { return &___s_InternalSyncObject_6; }
inline void set_s_InternalSyncObject_6(RuntimeObject * value)
{
___s_InternalSyncObject_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_InternalSyncObject_6), (void*)value);
}
};
// System.Text.InternalEncoderBestFitFallback
struct InternalEncoderBestFitFallback_tE5EF81259A780E6F8990218A8E46D41B5BCE56F3 : public EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63
{
public:
// System.Text.Encoding System.Text.InternalEncoderBestFitFallback::encoding
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___encoding_4;
// System.Char[] System.Text.InternalEncoderBestFitFallback::arrayBestFit
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___arrayBestFit_5;
public:
inline static int32_t get_offset_of_encoding_4() { return static_cast<int32_t>(offsetof(InternalEncoderBestFitFallback_tE5EF81259A780E6F8990218A8E46D41B5BCE56F3, ___encoding_4)); }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_encoding_4() const { return ___encoding_4; }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_encoding_4() { return &___encoding_4; }
inline void set_encoding_4(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value)
{
___encoding_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___encoding_4), (void*)value);
}
inline static int32_t get_offset_of_arrayBestFit_5() { return static_cast<int32_t>(offsetof(InternalEncoderBestFitFallback_tE5EF81259A780E6F8990218A8E46D41B5BCE56F3, ___arrayBestFit_5)); }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_arrayBestFit_5() const { return ___arrayBestFit_5; }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_arrayBestFit_5() { return &___arrayBestFit_5; }
inline void set_arrayBestFit_5(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value)
{
___arrayBestFit_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___arrayBestFit_5), (void*)value);
}
};
// System.Text.InternalEncoderBestFitFallbackBuffer
struct InternalEncoderBestFitFallbackBuffer_t8A9165EBB478F5F06CA6F3D170BC17B3A342EDE3 : public EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C
{
public:
// System.Char System.Text.InternalEncoderBestFitFallbackBuffer::cBestFit
Il2CppChar ___cBestFit_7;
// System.Text.InternalEncoderBestFitFallback System.Text.InternalEncoderBestFitFallbackBuffer::oFallback
InternalEncoderBestFitFallback_tE5EF81259A780E6F8990218A8E46D41B5BCE56F3 * ___oFallback_8;
// System.Int32 System.Text.InternalEncoderBestFitFallbackBuffer::iCount
int32_t ___iCount_9;
// System.Int32 System.Text.InternalEncoderBestFitFallbackBuffer::iSize
int32_t ___iSize_10;
public:
inline static int32_t get_offset_of_cBestFit_7() { return static_cast<int32_t>(offsetof(InternalEncoderBestFitFallbackBuffer_t8A9165EBB478F5F06CA6F3D170BC17B3A342EDE3, ___cBestFit_7)); }
inline Il2CppChar get_cBestFit_7() const { return ___cBestFit_7; }
inline Il2CppChar* get_address_of_cBestFit_7() { return &___cBestFit_7; }
inline void set_cBestFit_7(Il2CppChar value)
{
___cBestFit_7 = value;
}
inline static int32_t get_offset_of_oFallback_8() { return static_cast<int32_t>(offsetof(InternalEncoderBestFitFallbackBuffer_t8A9165EBB478F5F06CA6F3D170BC17B3A342EDE3, ___oFallback_8)); }
inline InternalEncoderBestFitFallback_tE5EF81259A780E6F8990218A8E46D41B5BCE56F3 * get_oFallback_8() const { return ___oFallback_8; }
inline InternalEncoderBestFitFallback_tE5EF81259A780E6F8990218A8E46D41B5BCE56F3 ** get_address_of_oFallback_8() { return &___oFallback_8; }
inline void set_oFallback_8(InternalEncoderBestFitFallback_tE5EF81259A780E6F8990218A8E46D41B5BCE56F3 * value)
{
___oFallback_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___oFallback_8), (void*)value);
}
inline static int32_t get_offset_of_iCount_9() { return static_cast<int32_t>(offsetof(InternalEncoderBestFitFallbackBuffer_t8A9165EBB478F5F06CA6F3D170BC17B3A342EDE3, ___iCount_9)); }
inline int32_t get_iCount_9() const { return ___iCount_9; }
inline int32_t* get_address_of_iCount_9() { return &___iCount_9; }
inline void set_iCount_9(int32_t value)
{
___iCount_9 = value;
}
inline static int32_t get_offset_of_iSize_10() { return static_cast<int32_t>(offsetof(InternalEncoderBestFitFallbackBuffer_t8A9165EBB478F5F06CA6F3D170BC17B3A342EDE3, ___iSize_10)); }
inline int32_t get_iSize_10() const { return ___iSize_10; }
inline int32_t* get_address_of_iSize_10() { return &___iSize_10; }
inline void set_iSize_10(int32_t value)
{
___iSize_10 = value;
}
};
struct InternalEncoderBestFitFallbackBuffer_t8A9165EBB478F5F06CA6F3D170BC17B3A342EDE3_StaticFields
{
public:
// System.Object System.Text.InternalEncoderBestFitFallbackBuffer::s_InternalSyncObject
RuntimeObject * ___s_InternalSyncObject_11;
public:
inline static int32_t get_offset_of_s_InternalSyncObject_11() { return static_cast<int32_t>(offsetof(InternalEncoderBestFitFallbackBuffer_t8A9165EBB478F5F06CA6F3D170BC17B3A342EDE3_StaticFields, ___s_InternalSyncObject_11)); }
inline RuntimeObject * get_s_InternalSyncObject_11() const { return ___s_InternalSyncObject_11; }
inline RuntimeObject ** get_address_of_s_InternalSyncObject_11() { return &___s_InternalSyncObject_11; }
inline void set_s_InternalSyncObject_11(RuntimeObject * value)
{
___s_InternalSyncObject_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_InternalSyncObject_11), (void*)value);
}
};
// System.Text.UTF32Encoding
struct UTF32Encoding_t16A7634FE9BE75EEC897F21F1420783FAA53C30A : public Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4
{
public:
// System.Boolean System.Text.UTF32Encoding::emitUTF32ByteOrderMark
bool ___emitUTF32ByteOrderMark_16;
// System.Boolean System.Text.UTF32Encoding::isThrowException
bool ___isThrowException_17;
// System.Boolean System.Text.UTF32Encoding::bigEndian
bool ___bigEndian_18;
public:
inline static int32_t get_offset_of_emitUTF32ByteOrderMark_16() { return static_cast<int32_t>(offsetof(UTF32Encoding_t16A7634FE9BE75EEC897F21F1420783FAA53C30A, ___emitUTF32ByteOrderMark_16)); }
inline bool get_emitUTF32ByteOrderMark_16() const { return ___emitUTF32ByteOrderMark_16; }
inline bool* get_address_of_emitUTF32ByteOrderMark_16() { return &___emitUTF32ByteOrderMark_16; }
inline void set_emitUTF32ByteOrderMark_16(bool value)
{
___emitUTF32ByteOrderMark_16 = value;
}
inline static int32_t get_offset_of_isThrowException_17() { return static_cast<int32_t>(offsetof(UTF32Encoding_t16A7634FE9BE75EEC897F21F1420783FAA53C30A, ___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;
}
inline static int32_t get_offset_of_bigEndian_18() { return static_cast<int32_t>(offsetof(UTF32Encoding_t16A7634FE9BE75EEC897F21F1420783FAA53C30A, ___bigEndian_18)); }
inline bool get_bigEndian_18() const { return ___bigEndian_18; }
inline bool* get_address_of_bigEndian_18() { return &___bigEndian_18; }
inline void set_bigEndian_18(bool value)
{
___bigEndian_18 = value;
}
};
// System.Text.UTF7Encoding
struct UTF7Encoding_t5733F4C1ABD99AECA11B02CBABEACF7A14545A86 : public Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4
{
public:
// System.Byte[] System.Text.UTF7Encoding::base64Bytes
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___base64Bytes_16;
// System.SByte[] System.Text.UTF7Encoding::base64Values
SByteU5BU5D_t623D1F33C61DEAC564E2B0560E00F1E1364F7889* ___base64Values_17;
// System.Boolean[] System.Text.UTF7Encoding::directEncode
BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* ___directEncode_18;
// System.Boolean System.Text.UTF7Encoding::m_allowOptionals
bool ___m_allowOptionals_19;
public:
inline static int32_t get_offset_of_base64Bytes_16() { return static_cast<int32_t>(offsetof(UTF7Encoding_t5733F4C1ABD99AECA11B02CBABEACF7A14545A86, ___base64Bytes_16)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_base64Bytes_16() const { return ___base64Bytes_16; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_base64Bytes_16() { return &___base64Bytes_16; }
inline void set_base64Bytes_16(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___base64Bytes_16 = value;
Il2CppCodeGenWriteBarrier((void**)(&___base64Bytes_16), (void*)value);
}
inline static int32_t get_offset_of_base64Values_17() { return static_cast<int32_t>(offsetof(UTF7Encoding_t5733F4C1ABD99AECA11B02CBABEACF7A14545A86, ___base64Values_17)); }
inline SByteU5BU5D_t623D1F33C61DEAC564E2B0560E00F1E1364F7889* get_base64Values_17() const { return ___base64Values_17; }
inline SByteU5BU5D_t623D1F33C61DEAC564E2B0560E00F1E1364F7889** get_address_of_base64Values_17() { return &___base64Values_17; }
inline void set_base64Values_17(SByteU5BU5D_t623D1F33C61DEAC564E2B0560E00F1E1364F7889* value)
{
___base64Values_17 = value;
Il2CppCodeGenWriteBarrier((void**)(&___base64Values_17), (void*)value);
}
inline static int32_t get_offset_of_directEncode_18() { return static_cast<int32_t>(offsetof(UTF7Encoding_t5733F4C1ABD99AECA11B02CBABEACF7A14545A86, ___directEncode_18)); }
inline BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* get_directEncode_18() const { return ___directEncode_18; }
inline BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040** get_address_of_directEncode_18() { return &___directEncode_18; }
inline void set_directEncode_18(BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* value)
{
___directEncode_18 = value;
Il2CppCodeGenWriteBarrier((void**)(&___directEncode_18), (void*)value);
}
inline static int32_t get_offset_of_m_allowOptionals_19() { return static_cast<int32_t>(offsetof(UTF7Encoding_t5733F4C1ABD99AECA11B02CBABEACF7A14545A86, ___m_allowOptionals_19)); }
inline bool get_m_allowOptionals_19() const { return ___m_allowOptionals_19; }
inline bool* get_address_of_m_allowOptionals_19() { return &___m_allowOptionals_19; }
inline void set_m_allowOptionals_19(bool value)
{
___m_allowOptionals_19 = value;
}
};
// System.Text.UTF8Encoding
struct UTF8Encoding_t77ED103B749A387EF072C3429F48C91D12CA08DE : public Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4
{
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_t77ED103B749A387EF072C3429F48C91D12CA08DE, ___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_t77ED103B749A387EF072C3429F48C91D12CA08DE, ___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.Text.UnicodeEncoding
struct UnicodeEncoding_t6E0E60A1D7A4BECF9901B00EB286FFC2B57F6356 : public Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4
{
public:
// System.Boolean System.Text.UnicodeEncoding::isThrowException
bool ___isThrowException_16;
// System.Boolean System.Text.UnicodeEncoding::bigEndian
bool ___bigEndian_17;
// System.Boolean System.Text.UnicodeEncoding::byteOrderMark
bool ___byteOrderMark_18;
public:
inline static int32_t get_offset_of_isThrowException_16() { return static_cast<int32_t>(offsetof(UnicodeEncoding_t6E0E60A1D7A4BECF9901B00EB286FFC2B57F6356, ___isThrowException_16)); }
inline bool get_isThrowException_16() const { return ___isThrowException_16; }
inline bool* get_address_of_isThrowException_16() { return &___isThrowException_16; }
inline void set_isThrowException_16(bool value)
{
___isThrowException_16 = value;
}
inline static int32_t get_offset_of_bigEndian_17() { return static_cast<int32_t>(offsetof(UnicodeEncoding_t6E0E60A1D7A4BECF9901B00EB286FFC2B57F6356, ___bigEndian_17)); }
inline bool get_bigEndian_17() const { return ___bigEndian_17; }
inline bool* get_address_of_bigEndian_17() { return &___bigEndian_17; }
inline void set_bigEndian_17(bool value)
{
___bigEndian_17 = value;
}
inline static int32_t get_offset_of_byteOrderMark_18() { return static_cast<int32_t>(offsetof(UnicodeEncoding_t6E0E60A1D7A4BECF9901B00EB286FFC2B57F6356, ___byteOrderMark_18)); }
inline bool get_byteOrderMark_18() const { return ___byteOrderMark_18; }
inline bool* get_address_of_byteOrderMark_18() { return &___byteOrderMark_18; }
inline void set_byteOrderMark_18(bool value)
{
___byteOrderMark_18 = value;
}
};
struct UnicodeEncoding_t6E0E60A1D7A4BECF9901B00EB286FFC2B57F6356_StaticFields
{
public:
// System.UInt64 System.Text.UnicodeEncoding::highLowPatternMask
uint64_t ___highLowPatternMask_19;
public:
inline static int32_t get_offset_of_highLowPatternMask_19() { return static_cast<int32_t>(offsetof(UnicodeEncoding_t6E0E60A1D7A4BECF9901B00EB286FFC2B57F6356_StaticFields, ___highLowPatternMask_19)); }
inline uint64_t get_highLowPatternMask_19() const { return ___highLowPatternMask_19; }
inline uint64_t* get_address_of_highLowPatternMask_19() { return &___highLowPatternMask_19; }
inline void set_highLowPatternMask_19(uint64_t value)
{
___highLowPatternMask_19 = value;
}
};
// System.UInt16
struct UInt16_tAE45CEF73BF720100519F6867F32145D075F928E
{
public:
// System.UInt16 System.UInt16::m_value
uint16_t ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(UInt16_tAE45CEF73BF720100519F6867F32145D075F928E, ___m_value_0)); }
inline uint16_t get_m_value_0() const { return ___m_value_0; }
inline uint16_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(uint16_t value)
{
___m_value_0 = value;
}
};
// System.UInt32
struct UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B
{
public:
// System.UInt32 System.UInt32::m_value
uint32_t ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B, ___m_value_0)); }
inline uint32_t get_m_value_0() const { return ___m_value_0; }
inline uint32_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(uint32_t value)
{
___m_value_0 = value;
}
};
// System.Void
struct Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017
{
public:
union
{
struct
{
};
uint8_t Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017__padding[1];
};
public:
};
// <PrivateImplementationDetails>
struct U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A : public RuntimeObject
{
public:
public:
};
struct U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields
{
public:
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::0588059ACBD52F7EA2835882F977A9CF72EB9775
__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___0588059ACBD52F7EA2835882F977A9CF72EB9775_0;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D84 <PrivateImplementationDetails>::0A1ADB22C1D3E1F4B2448EE3F27DF9DE63329C4C
__StaticArrayInitTypeSizeU3D84_tF52293EFB26AA1D2C169389BB83253C5BAE8076A ___0A1ADB22C1D3E1F4B2448EE3F27DF9DE63329C4C_1;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D240 <PrivateImplementationDetails>::121EC59E23F7559B28D338D562528F6299C2DE22
__StaticArrayInitTypeSizeU3D240_t5643A77865294845ACC505FE42EA1067CAC04FD8 ___121EC59E23F7559B28D338D562528F6299C2DE22_2;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D24 <PrivateImplementationDetails>::1730F09044E91DB8371B849EFF5E6D17BDE4AED0
__StaticArrayInitTypeSizeU3D24_tAB08761D1BC4313A0535E193F4E1A1AFA8B3F123 ___1730F09044E91DB8371B849EFF5E6D17BDE4AED0_3;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D16 <PrivateImplementationDetails>::1FE6CE411858B3D864679DE2139FB081F08BFACD
__StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 ___1FE6CE411858B3D864679DE2139FB081F08BFACD_4;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::25420D0055076FA8D3E4DD96BC53AE24DE6E619F
__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___25420D0055076FA8D3E4DD96BC53AE24DE6E619F_5;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D1208 <PrivateImplementationDetails>::25CF935D2AE9EDF05DD75BCD47FF84D9255D6F6E
__StaticArrayInitTypeSizeU3D1208_tC58894ECFE2C4FFD2B8FCDF958800099A737C1DD ___25CF935D2AE9EDF05DD75BCD47FF84D9255D6F6E_6;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D42 <PrivateImplementationDetails>::29C1A61550F0E3260E1953D4FAD71C256218EF40
__StaticArrayInitTypeSizeU3D42_t3D9F6218E615F20CE7E1AE0EF6657DE732EDBFD4 ___29C1A61550F0E3260E1953D4FAD71C256218EF40_7;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D12 <PrivateImplementationDetails>::2B33BEC8C30DFDC49DAFE20D3BDE19487850D717
__StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 ___2B33BEC8C30DFDC49DAFE20D3BDE19487850D717_8;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D36 <PrivateImplementationDetails>::2BA840FF6020B8FF623DBCB7188248CF853FAF4F
__StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 ___2BA840FF6020B8FF623DBCB7188248CF853FAF4F_9;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::2C840AFA48C27B9C05593E468C1232CA1CC74AFD
__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___2C840AFA48C27B9C05593E468C1232CA1CC74AFD_10;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D16 <PrivateImplementationDetails>::2D1DA5BB407F0C11C3B5116196C0C6374D932B20
__StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 ___2D1DA5BB407F0C11C3B5116196C0C6374D932B20_11;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::2F71D2DA12F3CD0A6A112F5A5A75B4FDC6FE8547
__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___2F71D2DA12F3CD0A6A112F5A5A75B4FDC6FE8547_12;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::34476C29F6F81C989CFCA42F7C06E84C66236834
__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___34476C29F6F81C989CFCA42F7C06E84C66236834_13;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D2382 <PrivateImplementationDetails>::35EED060772F2748D13B745DAEC8CD7BD3B87604
__StaticArrayInitTypeSizeU3D2382_tB4AF2C49C5120B6EB285BA4D247340D8E243A1BA ___35EED060772F2748D13B745DAEC8CD7BD3B87604_14;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D38 <PrivateImplementationDetails>::375F9AE9769A3D1DA789E9ACFE81F3A1BB14F0D3
__StaticArrayInitTypeSizeU3D38_tA52D24A5F9970582D6B55437967C9BD32E03F05D ___375F9AE9769A3D1DA789E9ACFE81F3A1BB14F0D3_15;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D1450 <PrivateImplementationDetails>::379C06C9E702D31469C29033F0DD63931EB349F5
__StaticArrayInitTypeSizeU3D1450_t58DE69DB537BA7DFBFF2C7084FFC6970FB3BAEA4 ___379C06C9E702D31469C29033F0DD63931EB349F5_16;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D10 <PrivateImplementationDetails>::399BD13E240F33F808CA7940293D6EC4E6FD5A00
__StaticArrayInitTypeSizeU3D10_t39E3D966A21885323F15EB866ABDE668EA1ED52C ___399BD13E240F33F808CA7940293D6EC4E6FD5A00_17;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::39C9CE73C7B0619D409EF28344F687C1B5C130FE
__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___39C9CE73C7B0619D409EF28344F687C1B5C130FE_18;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D320 <PrivateImplementationDetails>::3C53AFB51FEC23491684C7BEDBC6D4E0F409F851
__StaticArrayInitTypeSizeU3D320_t48B9242FB90DB2A21A723BBAB141500A9641EB49 ___3C53AFB51FEC23491684C7BEDBC6D4E0F409F851_19;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D12 <PrivateImplementationDetails>::3E823444D2DFECF0F90B436B88F02A533CB376F1
__StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 ___3E823444D2DFECF0F90B436B88F02A533CB376F1_20;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::3FE6C283BCF384FD2C8789880DFF59664E2AB4A1
__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___3FE6C283BCF384FD2C8789880DFF59664E2AB4A1_21;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D1665 <PrivateImplementationDetails>::40981BAA39513E58B28DCF0103CC04DE2A0A0444
__StaticArrayInitTypeSizeU3D1665_tCD7752863825B82B07752CCE72A581C169E19C20 ___40981BAA39513E58B28DCF0103CC04DE2A0A0444_22;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::40E7C49413D261F3F38AD3A870C0AC69C8BDA048
__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___40E7C49413D261F3F38AD3A870C0AC69C8BDA048_23;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::421EC7E82F2967DF6CA8C3605514DC6F29EE5845
__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___421EC7E82F2967DF6CA8C3605514DC6F29EE5845_24;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::4858DB4AA76D3933F1CA9E6712D4FDB16903F628
__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___4858DB4AA76D3933F1CA9E6712D4FDB16903F628_25;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::4F7A8890F332B22B8DE0BD29D36FA7364748D76A
__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___4F7A8890F332B22B8DE0BD29D36FA7364748D76A_26;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::536422B321459B242ADED7240B7447E904E083E3
__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___536422B321459B242ADED7240B7447E904E083E3_27;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D1080 <PrivateImplementationDetails>::5382CEF491F422BFE0D6FC46EFAFF9EF9D4C89F3
__StaticArrayInitTypeSizeU3D1080_tCE36DA14009C45CFDEA7F63618BE90F8DF89AC84 ___5382CEF491F422BFE0D6FC46EFAFF9EF9D4C89F3_28;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D3 <PrivateImplementationDetails>::57218C316B6921E2CD61027A2387EDC31A2D9471
__StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E ___57218C316B6921E2CD61027A2387EDC31A2D9471_29;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::57F320D62696EC99727E0FE2045A05F1289CC0C6
__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___57F320D62696EC99727E0FE2045A05F1289CC0C6_30;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D212 <PrivateImplementationDetails>::594A33A00BC4F785DFD43E3C6C44FBA1242CCAF3
__StaticArrayInitTypeSizeU3D212_tDFB9BEA11D871D109F9E6502B2F50F7115451AAF ___594A33A00BC4F785DFD43E3C6C44FBA1242CCAF3_31;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D36 <PrivateImplementationDetails>::5BBDF8058D4235C33F2E8DCF76004031B6187A2F
__StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 ___5BBDF8058D4235C33F2E8DCF76004031B6187A2F_32;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D288 <PrivateImplementationDetails>::5BCD21C341BE6DDF8FFFAE1A23ABA24DCBB612BF
__StaticArrayInitTypeSizeU3D288_t7B40D7F3A8D262F90A76460FF94E92CE08AFCF55 ___5BCD21C341BE6DDF8FFFAE1A23ABA24DCBB612BF_33;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::5BFE2819B4778217C56416C7585FF0E56EBACD89
__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___5BFE2819B4778217C56416C7585FF0E56EBACD89_34;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D128 <PrivateImplementationDetails>::609C0E8D8DA86A09D6013D301C86BA8782C16B8C
__StaticArrayInitTypeSizeU3D128_t1B13688BD6EA82B964734FF8C3181161EF5624B1 ___609C0E8D8DA86A09D6013D301C86BA8782C16B8C_35;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::65E32B4E150FD8D24B93B0D42A17F1DAD146162B
__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___65E32B4E150FD8D24B93B0D42A17F1DAD146162B_36;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D52 <PrivateImplementationDetails>::6770974FEF1E98B9C1864370E2B5B786EB0EA39E
__StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A ___6770974FEF1E98B9C1864370E2B5B786EB0EA39E_37;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::67EEAD805D708D9AA4E14BF747E44CED801744F3
__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___67EEAD805D708D9AA4E14BF747E44CED801744F3_38;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D120 <PrivateImplementationDetails>::6C71197D228427B2864C69B357FEF73D8C9D59DF
__StaticArrayInitTypeSizeU3D120_tBA46FD2E9DA153FD8457EE7F425E8ECC517EA252 ___6C71197D228427B2864C69B357FEF73D8C9D59DF_39;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D16 <PrivateImplementationDetails>::6CEE45445AFD150B047A5866FFA76AA651CDB7B7
__StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 ___6CEE45445AFD150B047A5866FFA76AA651CDB7B7_40;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D76 <PrivateImplementationDetails>::6FC754859E4EC74E447048364B216D825C6F8FE7
__StaticArrayInitTypeSizeU3D76_t83BE44A74AC13CD15474DA7726C9C92BD317CFFB ___6FC754859E4EC74E447048364B216D825C6F8FE7_41;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::704939CD172085D1295FCE3F1D92431D685D7AA2
__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___704939CD172085D1295FCE3F1D92431D685D7AA2_42;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D24 <PrivateImplementationDetails>::7088AAE49F0627B72729078DE6E3182DDCF8ED99
__StaticArrayInitTypeSizeU3D24_tAB08761D1BC4313A0535E193F4E1A1AFA8B3F123 ___7088AAE49F0627B72729078DE6E3182DDCF8ED99_43;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::7341C933A70EAE383CC50C4B945ADB8E08F06737
__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___7341C933A70EAE383CC50C4B945ADB8E08F06737_44;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::7FE820C9CF0F0B90445A71F1D262D22E4F0C4C68
__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___7FE820C9CF0F0B90445A71F1D262D22E4F0C4C68_45;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D21252 <PrivateImplementationDetails>::811A927B7DADD378BE60BBDE794B9277AA9B50EC
__StaticArrayInitTypeSizeU3D21252_tCA2B51BDF30FDECEBFCB55CC7530A0A7D6BC4462 ___811A927B7DADD378BE60BBDE794B9277AA9B50EC_46;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D36 <PrivateImplementationDetails>::81917F1E21F3C22B9F916994547A614FB03E968E
__StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 ___81917F1E21F3C22B9F916994547A614FB03E968E_47;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::823566DA642D6EA356E15585921F2A4CA23D6760
__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___823566DA642D6EA356E15585921F2A4CA23D6760_48;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D12 <PrivateImplementationDetails>::82C2A59850B2E85BCE1A45A479537A384DF6098D
__StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 ___82C2A59850B2E85BCE1A45A479537A384DF6098D_49;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D44 <PrivateImplementationDetails>::82C383F8E6E4D3D87AEBB986A5D0077E8AD157C4
__StaticArrayInitTypeSizeU3D44_t1383A9A990CD22E4246B656157D17C8051BFAD7F ___82C383F8E6E4D3D87AEBB986A5D0077E8AD157C4_50;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::871B9CF85DB352BAADF12BAE8F19857683E385AC
__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___871B9CF85DB352BAADF12BAE8F19857683E385AC_51;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D16 <PrivateImplementationDetails>::89A040451C8CC5C8FB268BE44BDD74964C104155
__StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 ___89A040451C8CC5C8FB268BE44BDD74964C104155_52;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::8CAA092E783257106251246FF5C97F88D28517A6
__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___8CAA092E783257106251246FF5C97F88D28517A6_53;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D2100 <PrivateImplementationDetails>::8D231DD55FE1AD7631BBD0905A17D5EB616C2154
__StaticArrayInitTypeSizeU3D2100_t75CE52CDAFC7C95EDAB5CF1AF8B2621D502F1FAA ___8D231DD55FE1AD7631BBD0905A17D5EB616C2154_54;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::8E10AC2F34545DFBBF3FCBC06055D797A8C99991
__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___8E10AC2F34545DFBBF3FCBC06055D797A8C99991_55;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D12 <PrivateImplementationDetails>::93A63E90605400F34B49F0EB3361D23C89164BDA
__StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 ___93A63E90605400F34B49F0EB3361D23C89164BDA_56;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::94841DD2F330CCB1089BF413E4FA9B04505152E2
__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___94841DD2F330CCB1089BF413E4FA9B04505152E2_57;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D12 <PrivateImplementationDetails>::95264589E48F94B7857CFF398FB72A537E13EEE2
__StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 ___95264589E48F94B7857CFF398FB72A537E13EEE2_58;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::95C48758CAE1715783472FB073AB158AB8A0AB2A
__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___95C48758CAE1715783472FB073AB158AB8A0AB2A_59;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::973417296623D8DC6961B09664E54039E44CA5D8
__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___973417296623D8DC6961B09664E54039E44CA5D8_60;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::A0074C15377C0C870B055927403EA9FA7A349D12
__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___A0074C15377C0C870B055927403EA9FA7A349D12_61;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D130 <PrivateImplementationDetails>::A1319B706116AB2C6D44483F60A7D0ACEA543396
__StaticArrayInitTypeSizeU3D130_t732A6F42953325ADC5746FF1A652A2974473AF4F ___A1319B706116AB2C6D44483F60A7D0ACEA543396_62;
// System.Int64 <PrivateImplementationDetails>::A13AA52274D951A18029131A8DDECF76B569A15D
int64_t ___A13AA52274D951A18029131A8DDECF76B569A15D_63;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D212 <PrivateImplementationDetails>::A5444763673307F6828C748D4B9708CFC02B0959
__StaticArrayInitTypeSizeU3D212_tDFB9BEA11D871D109F9E6502B2F50F7115451AAF ___A5444763673307F6828C748D4B9708CFC02B0959_64;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::A6732F8E7FC23766AB329B492D6BF82E3B33233F
__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___A6732F8E7FC23766AB329B492D6BF82E3B33233F_65;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D174 <PrivateImplementationDetails>::A705A106D95282BD15E13EEA6B0AF583FF786D83
__StaticArrayInitTypeSizeU3D174_t58EBFEBC3E6F34CF7C54ED51E8113E34B876351F ___A705A106D95282BD15E13EEA6B0AF583FF786D83_66;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D1018 <PrivateImplementationDetails>::A8A491E4CED49AE0027560476C10D933CE70C8DF
__StaticArrayInitTypeSizeU3D1018_t7825BE1556EFF874DAFDC230EB69C85A48DBCBC4 ___A8A491E4CED49AE0027560476C10D933CE70C8DF_67;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::AC791C4F39504D1184B73478943D0636258DA7B1
__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___AC791C4F39504D1184B73478943D0636258DA7B1_68;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D52 <PrivateImplementationDetails>::AFCD4E1211233E99373A3367B23105A3D624B1F2
__StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A ___AFCD4E1211233E99373A3367B23105A3D624B1F2_69;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::B472ED77CB3B2A66D49D179F1EE2081B70A6AB61
__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___B472ED77CB3B2A66D49D179F1EE2081B70A6AB61_70;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D256 <PrivateImplementationDetails>::B53A2C6DF21FC88B17AEFC40EB895B8D63210CDF
__StaticArrayInitTypeSizeU3D256_t9003B1E1E8C82BC25ADE7407C58A314C292B326F ___B53A2C6DF21FC88B17AEFC40EB895B8D63210CDF_71;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D998 <PrivateImplementationDetails>::B881DA88BE0B68D8A6B6B6893822586B8B2CFC45
__StaticArrayInitTypeSizeU3D998_t8A5C9782706B510180A1B9C9F7E96F8F48421B8C ___B881DA88BE0B68D8A6B6B6893822586B8B2CFC45_72;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D162 <PrivateImplementationDetails>::B8864ACB9DD69E3D42151513C840AAE270BF21C8
__StaticArrayInitTypeSizeU3D162_tFFF125F871C6A7DE42BE37AC907E2E2149A861AA ___B8864ACB9DD69E3D42151513C840AAE270BF21C8_73;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D360 <PrivateImplementationDetails>::B8F87834C3597B2EEF22BA6D3A392CC925636401
__StaticArrayInitTypeSizeU3D360_tFF8371303424DEBAE608051BAA970E5AFB409DF7 ___B8F87834C3597B2EEF22BA6D3A392CC925636401_74;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::B9B670F134A59FB1107AF01A9FE8F8E3980B3093
__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___B9B670F134A59FB1107AF01A9FE8F8E3980B3093_75;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::BEBC9ECC660A13EFC359BA3383411F698CFF25DB
__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___BEBC9ECC660A13EFC359BA3383411F698CFF25DB_76;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::BEE1CFE5DFAA408E14CE4AF4DCD824FA2E42DCB7
__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___BEE1CFE5DFAA408E14CE4AF4DCD824FA2E42DCB7_77;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D6 <PrivateImplementationDetails>::BF5EB60806ECB74EE484105DD9D6F463BF994867
__StaticArrayInitTypeSizeU3D6_tC937DCE458F6AE4186120B4DDF95463176C75C78 ___BF5EB60806ECB74EE484105DD9D6F463BF994867_78;
// System.Int64 <PrivateImplementationDetails>::C1A1100642BA9685B30A84D97348484E14AA1865
int64_t ___C1A1100642BA9685B30A84D97348484E14AA1865_79;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D16 <PrivateImplementationDetails>::C6F364A0AD934EFED8909446C215752E565D77C1
__StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 ___C6F364A0AD934EFED8909446C215752E565D77C1_80;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D174 <PrivateImplementationDetails>::CE5835130F5277F63D716FC9115526B0AC68FFAD
__StaticArrayInitTypeSizeU3D174_t58EBFEBC3E6F34CF7C54ED51E8113E34B876351F ___CE5835130F5277F63D716FC9115526B0AC68FFAD_81;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D6 <PrivateImplementationDetails>::CE93C35B755802BC4B3D180716B048FC61701EF7
__StaticArrayInitTypeSizeU3D6_tC937DCE458F6AE4186120B4DDF95463176C75C78 ___CE93C35B755802BC4B3D180716B048FC61701EF7_82;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D32 <PrivateImplementationDetails>::D117188BE8D4609C0D531C51B0BB911A4219DEBE
__StaticArrayInitTypeSizeU3D32_t06FF35439BDF1A6AAB50820787FA5D7A4FA09472 ___D117188BE8D4609C0D531C51B0BB911A4219DEBE_83;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D44 <PrivateImplementationDetails>::D78D08081C7A5AD6FBA7A8DC86BCD6D7A577C636
__StaticArrayInitTypeSizeU3D44_t1383A9A990CD22E4246B656157D17C8051BFAD7F ___D78D08081C7A5AD6FBA7A8DC86BCD6D7A577C636_84;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D76 <PrivateImplementationDetails>::DA19DB47B583EFCF7825D2E39D661D2354F28219
__StaticArrayInitTypeSizeU3D76_t83BE44A74AC13CD15474DA7726C9C92BD317CFFB ___DA19DB47B583EFCF7825D2E39D661D2354F28219_85;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D52 <PrivateImplementationDetails>::DD3AEFEADB1CD615F3017763F1568179FEE640B0
__StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A ___DD3AEFEADB1CD615F3017763F1568179FEE640B0_86;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D36 <PrivateImplementationDetails>::E1827270A5FE1C85F5352A66FD87BA747213D006
__StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 ___E1827270A5FE1C85F5352A66FD87BA747213D006_87;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::E45BAB43F7D5D038672B3E3431F92E34A7AF2571
__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___E45BAB43F7D5D038672B3E3431F92E34A7AF2571_88;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D52 <PrivateImplementationDetails>::E92B39D8233061927D9ACDE54665E68E7535635A
__StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A ___E92B39D8233061927D9ACDE54665E68E7535635A_89;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D12 <PrivateImplementationDetails>::EA9506959484C55CFE0C139C624DF6060E285866
__StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 ___EA9506959484C55CFE0C139C624DF6060E285866_90;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D262 <PrivateImplementationDetails>::EB5E9A80A40096AB74D2E226650C7258D7BC5E9D
__StaticArrayInitTypeSizeU3D262_t93124A1A3E9EDF7F1F305BD2FC57372646F3CFD7 ___EB5E9A80A40096AB74D2E226650C7258D7BC5E9D_91;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D64 <PrivateImplementationDetails>::EBF68F411848D603D059DFDEA2321C5A5EA78044
__StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6 ___EBF68F411848D603D059DFDEA2321C5A5EA78044_92;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::EC89C317EA2BF49A70EFF5E89C691E34733D7C37
__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___EC89C317EA2BF49A70EFF5E89C691E34733D7C37_93;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D40 <PrivateImplementationDetails>::F06E829E62F3AFBC045D064E10A4F5DF7C969612
__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 ___F06E829E62F3AFBC045D064E10A4F5DF7C969612_94;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D11614 <PrivateImplementationDetails>::F073AA332018FDA0D572E99448FFF1D6422BD520
__StaticArrayInitTypeSizeU3D11614_tDF34959BE752359A89A4A577B8798D2D66A5E7F5 ___F073AA332018FDA0D572E99448FFF1D6422BD520_95;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D120 <PrivateImplementationDetails>::F34B0E10653402E8F788F8BC3F7CD7090928A429
__StaticArrayInitTypeSizeU3D120_tBA46FD2E9DA153FD8457EE7F425E8ECC517EA252 ___F34B0E10653402E8F788F8BC3F7CD7090928A429_96;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D72 <PrivateImplementationDetails>::F37E34BEADB04F34FCC31078A59F49856CA83D5B
__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 ___F37E34BEADB04F34FCC31078A59F49856CA83D5B_97;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D94 <PrivateImplementationDetails>::F512A9ABF88066AAEB92684F95CC05D8101B462B
__StaticArrayInitTypeSizeU3D94_t23554D8B96399688002A3BE81C7C15EFB011DEC6 ___F512A9ABF88066AAEB92684F95CC05D8101B462B_98;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D12 <PrivateImplementationDetails>::F8FAABB821300AA500C2CEC6091B3782A7FB44A4
__StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 ___F8FAABB821300AA500C2CEC6091B3782A7FB44A4_99;
// <PrivateImplementationDetails>___StaticArrayInitTypeSizeU3D2350 <PrivateImplementationDetails>::FCBD2781A933F0828ED4AAF88FD8B08D76DDD49B
__StaticArrayInitTypeSizeU3D2350_t96984AEF232104302694B7EFDA3F92BC42BF207D ___FCBD2781A933F0828ED4AAF88FD8B08D76DDD49B_100;
public:
inline static int32_t get_offset_of_U30588059ACBD52F7EA2835882F977A9CF72EB9775_0() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___0588059ACBD52F7EA2835882F977A9CF72EB9775_0)); }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U30588059ACBD52F7EA2835882F977A9CF72EB9775_0() const { return ___0588059ACBD52F7EA2835882F977A9CF72EB9775_0; }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U30588059ACBD52F7EA2835882F977A9CF72EB9775_0() { return &___0588059ACBD52F7EA2835882F977A9CF72EB9775_0; }
inline void set_U30588059ACBD52F7EA2835882F977A9CF72EB9775_0(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value)
{
___0588059ACBD52F7EA2835882F977A9CF72EB9775_0 = value;
}
inline static int32_t get_offset_of_U30A1ADB22C1D3E1F4B2448EE3F27DF9DE63329C4C_1() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___0A1ADB22C1D3E1F4B2448EE3F27DF9DE63329C4C_1)); }
inline __StaticArrayInitTypeSizeU3D84_tF52293EFB26AA1D2C169389BB83253C5BAE8076A get_U30A1ADB22C1D3E1F4B2448EE3F27DF9DE63329C4C_1() const { return ___0A1ADB22C1D3E1F4B2448EE3F27DF9DE63329C4C_1; }
inline __StaticArrayInitTypeSizeU3D84_tF52293EFB26AA1D2C169389BB83253C5BAE8076A * get_address_of_U30A1ADB22C1D3E1F4B2448EE3F27DF9DE63329C4C_1() { return &___0A1ADB22C1D3E1F4B2448EE3F27DF9DE63329C4C_1; }
inline void set_U30A1ADB22C1D3E1F4B2448EE3F27DF9DE63329C4C_1(__StaticArrayInitTypeSizeU3D84_tF52293EFB26AA1D2C169389BB83253C5BAE8076A value)
{
___0A1ADB22C1D3E1F4B2448EE3F27DF9DE63329C4C_1 = value;
}
inline static int32_t get_offset_of_U3121EC59E23F7559B28D338D562528F6299C2DE22_2() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___121EC59E23F7559B28D338D562528F6299C2DE22_2)); }
inline __StaticArrayInitTypeSizeU3D240_t5643A77865294845ACC505FE42EA1067CAC04FD8 get_U3121EC59E23F7559B28D338D562528F6299C2DE22_2() const { return ___121EC59E23F7559B28D338D562528F6299C2DE22_2; }
inline __StaticArrayInitTypeSizeU3D240_t5643A77865294845ACC505FE42EA1067CAC04FD8 * get_address_of_U3121EC59E23F7559B28D338D562528F6299C2DE22_2() { return &___121EC59E23F7559B28D338D562528F6299C2DE22_2; }
inline void set_U3121EC59E23F7559B28D338D562528F6299C2DE22_2(__StaticArrayInitTypeSizeU3D240_t5643A77865294845ACC505FE42EA1067CAC04FD8 value)
{
___121EC59E23F7559B28D338D562528F6299C2DE22_2 = value;
}
inline static int32_t get_offset_of_U31730F09044E91DB8371B849EFF5E6D17BDE4AED0_3() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___1730F09044E91DB8371B849EFF5E6D17BDE4AED0_3)); }
inline __StaticArrayInitTypeSizeU3D24_tAB08761D1BC4313A0535E193F4E1A1AFA8B3F123 get_U31730F09044E91DB8371B849EFF5E6D17BDE4AED0_3() const { return ___1730F09044E91DB8371B849EFF5E6D17BDE4AED0_3; }
inline __StaticArrayInitTypeSizeU3D24_tAB08761D1BC4313A0535E193F4E1A1AFA8B3F123 * get_address_of_U31730F09044E91DB8371B849EFF5E6D17BDE4AED0_3() { return &___1730F09044E91DB8371B849EFF5E6D17BDE4AED0_3; }
inline void set_U31730F09044E91DB8371B849EFF5E6D17BDE4AED0_3(__StaticArrayInitTypeSizeU3D24_tAB08761D1BC4313A0535E193F4E1A1AFA8B3F123 value)
{
___1730F09044E91DB8371B849EFF5E6D17BDE4AED0_3 = value;
}
inline static int32_t get_offset_of_U31FE6CE411858B3D864679DE2139FB081F08BFACD_4() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___1FE6CE411858B3D864679DE2139FB081F08BFACD_4)); }
inline __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 get_U31FE6CE411858B3D864679DE2139FB081F08BFACD_4() const { return ___1FE6CE411858B3D864679DE2139FB081F08BFACD_4; }
inline __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 * get_address_of_U31FE6CE411858B3D864679DE2139FB081F08BFACD_4() { return &___1FE6CE411858B3D864679DE2139FB081F08BFACD_4; }
inline void set_U31FE6CE411858B3D864679DE2139FB081F08BFACD_4(__StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 value)
{
___1FE6CE411858B3D864679DE2139FB081F08BFACD_4 = value;
}
inline static int32_t get_offset_of_U325420D0055076FA8D3E4DD96BC53AE24DE6E619F_5() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___25420D0055076FA8D3E4DD96BC53AE24DE6E619F_5)); }
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_U325420D0055076FA8D3E4DD96BC53AE24DE6E619F_5() const { return ___25420D0055076FA8D3E4DD96BC53AE24DE6E619F_5; }
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_U325420D0055076FA8D3E4DD96BC53AE24DE6E619F_5() { return &___25420D0055076FA8D3E4DD96BC53AE24DE6E619F_5; }
inline void set_U325420D0055076FA8D3E4DD96BC53AE24DE6E619F_5(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value)
{
___25420D0055076FA8D3E4DD96BC53AE24DE6E619F_5 = value;
}
inline static int32_t get_offset_of_U325CF935D2AE9EDF05DD75BCD47FF84D9255D6F6E_6() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___25CF935D2AE9EDF05DD75BCD47FF84D9255D6F6E_6)); }
inline __StaticArrayInitTypeSizeU3D1208_tC58894ECFE2C4FFD2B8FCDF958800099A737C1DD get_U325CF935D2AE9EDF05DD75BCD47FF84D9255D6F6E_6() const { return ___25CF935D2AE9EDF05DD75BCD47FF84D9255D6F6E_6; }
inline __StaticArrayInitTypeSizeU3D1208_tC58894ECFE2C4FFD2B8FCDF958800099A737C1DD * get_address_of_U325CF935D2AE9EDF05DD75BCD47FF84D9255D6F6E_6() { return &___25CF935D2AE9EDF05DD75BCD47FF84D9255D6F6E_6; }
inline void set_U325CF935D2AE9EDF05DD75BCD47FF84D9255D6F6E_6(__StaticArrayInitTypeSizeU3D1208_tC58894ECFE2C4FFD2B8FCDF958800099A737C1DD value)
{
___25CF935D2AE9EDF05DD75BCD47FF84D9255D6F6E_6 = value;
}
inline static int32_t get_offset_of_U329C1A61550F0E3260E1953D4FAD71C256218EF40_7() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___29C1A61550F0E3260E1953D4FAD71C256218EF40_7)); }
inline __StaticArrayInitTypeSizeU3D42_t3D9F6218E615F20CE7E1AE0EF6657DE732EDBFD4 get_U329C1A61550F0E3260E1953D4FAD71C256218EF40_7() const { return ___29C1A61550F0E3260E1953D4FAD71C256218EF40_7; }
inline __StaticArrayInitTypeSizeU3D42_t3D9F6218E615F20CE7E1AE0EF6657DE732EDBFD4 * get_address_of_U329C1A61550F0E3260E1953D4FAD71C256218EF40_7() { return &___29C1A61550F0E3260E1953D4FAD71C256218EF40_7; }
inline void set_U329C1A61550F0E3260E1953D4FAD71C256218EF40_7(__StaticArrayInitTypeSizeU3D42_t3D9F6218E615F20CE7E1AE0EF6657DE732EDBFD4 value)
{
___29C1A61550F0E3260E1953D4FAD71C256218EF40_7 = value;
}
inline static int32_t get_offset_of_U32B33BEC8C30DFDC49DAFE20D3BDE19487850D717_8() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___2B33BEC8C30DFDC49DAFE20D3BDE19487850D717_8)); }
inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 get_U32B33BEC8C30DFDC49DAFE20D3BDE19487850D717_8() const { return ___2B33BEC8C30DFDC49DAFE20D3BDE19487850D717_8; }
inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 * get_address_of_U32B33BEC8C30DFDC49DAFE20D3BDE19487850D717_8() { return &___2B33BEC8C30DFDC49DAFE20D3BDE19487850D717_8; }
inline void set_U32B33BEC8C30DFDC49DAFE20D3BDE19487850D717_8(__StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 value)
{
___2B33BEC8C30DFDC49DAFE20D3BDE19487850D717_8 = value;
}
inline static int32_t get_offset_of_U32BA840FF6020B8FF623DBCB7188248CF853FAF4F_9() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___2BA840FF6020B8FF623DBCB7188248CF853FAF4F_9)); }
inline __StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 get_U32BA840FF6020B8FF623DBCB7188248CF853FAF4F_9() const { return ___2BA840FF6020B8FF623DBCB7188248CF853FAF4F_9; }
inline __StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 * get_address_of_U32BA840FF6020B8FF623DBCB7188248CF853FAF4F_9() { return &___2BA840FF6020B8FF623DBCB7188248CF853FAF4F_9; }
inline void set_U32BA840FF6020B8FF623DBCB7188248CF853FAF4F_9(__StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 value)
{
___2BA840FF6020B8FF623DBCB7188248CF853FAF4F_9 = value;
}
inline static int32_t get_offset_of_U32C840AFA48C27B9C05593E468C1232CA1CC74AFD_10() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___2C840AFA48C27B9C05593E468C1232CA1CC74AFD_10)); }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U32C840AFA48C27B9C05593E468C1232CA1CC74AFD_10() const { return ___2C840AFA48C27B9C05593E468C1232CA1CC74AFD_10; }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U32C840AFA48C27B9C05593E468C1232CA1CC74AFD_10() { return &___2C840AFA48C27B9C05593E468C1232CA1CC74AFD_10; }
inline void set_U32C840AFA48C27B9C05593E468C1232CA1CC74AFD_10(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value)
{
___2C840AFA48C27B9C05593E468C1232CA1CC74AFD_10 = value;
}
inline static int32_t get_offset_of_U32D1DA5BB407F0C11C3B5116196C0C6374D932B20_11() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___2D1DA5BB407F0C11C3B5116196C0C6374D932B20_11)); }
inline __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 get_U32D1DA5BB407F0C11C3B5116196C0C6374D932B20_11() const { return ___2D1DA5BB407F0C11C3B5116196C0C6374D932B20_11; }
inline __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 * get_address_of_U32D1DA5BB407F0C11C3B5116196C0C6374D932B20_11() { return &___2D1DA5BB407F0C11C3B5116196C0C6374D932B20_11; }
inline void set_U32D1DA5BB407F0C11C3B5116196C0C6374D932B20_11(__StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 value)
{
___2D1DA5BB407F0C11C3B5116196C0C6374D932B20_11 = value;
}
inline static int32_t get_offset_of_U32F71D2DA12F3CD0A6A112F5A5A75B4FDC6FE8547_12() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___2F71D2DA12F3CD0A6A112F5A5A75B4FDC6FE8547_12)); }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U32F71D2DA12F3CD0A6A112F5A5A75B4FDC6FE8547_12() const { return ___2F71D2DA12F3CD0A6A112F5A5A75B4FDC6FE8547_12; }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U32F71D2DA12F3CD0A6A112F5A5A75B4FDC6FE8547_12() { return &___2F71D2DA12F3CD0A6A112F5A5A75B4FDC6FE8547_12; }
inline void set_U32F71D2DA12F3CD0A6A112F5A5A75B4FDC6FE8547_12(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value)
{
___2F71D2DA12F3CD0A6A112F5A5A75B4FDC6FE8547_12 = value;
}
inline static int32_t get_offset_of_U334476C29F6F81C989CFCA42F7C06E84C66236834_13() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___34476C29F6F81C989CFCA42F7C06E84C66236834_13)); }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U334476C29F6F81C989CFCA42F7C06E84C66236834_13() const { return ___34476C29F6F81C989CFCA42F7C06E84C66236834_13; }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U334476C29F6F81C989CFCA42F7C06E84C66236834_13() { return &___34476C29F6F81C989CFCA42F7C06E84C66236834_13; }
inline void set_U334476C29F6F81C989CFCA42F7C06E84C66236834_13(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value)
{
___34476C29F6F81C989CFCA42F7C06E84C66236834_13 = value;
}
inline static int32_t get_offset_of_U335EED060772F2748D13B745DAEC8CD7BD3B87604_14() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___35EED060772F2748D13B745DAEC8CD7BD3B87604_14)); }
inline __StaticArrayInitTypeSizeU3D2382_tB4AF2C49C5120B6EB285BA4D247340D8E243A1BA get_U335EED060772F2748D13B745DAEC8CD7BD3B87604_14() const { return ___35EED060772F2748D13B745DAEC8CD7BD3B87604_14; }
inline __StaticArrayInitTypeSizeU3D2382_tB4AF2C49C5120B6EB285BA4D247340D8E243A1BA * get_address_of_U335EED060772F2748D13B745DAEC8CD7BD3B87604_14() { return &___35EED060772F2748D13B745DAEC8CD7BD3B87604_14; }
inline void set_U335EED060772F2748D13B745DAEC8CD7BD3B87604_14(__StaticArrayInitTypeSizeU3D2382_tB4AF2C49C5120B6EB285BA4D247340D8E243A1BA value)
{
___35EED060772F2748D13B745DAEC8CD7BD3B87604_14 = value;
}
inline static int32_t get_offset_of_U3375F9AE9769A3D1DA789E9ACFE81F3A1BB14F0D3_15() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___375F9AE9769A3D1DA789E9ACFE81F3A1BB14F0D3_15)); }
inline __StaticArrayInitTypeSizeU3D38_tA52D24A5F9970582D6B55437967C9BD32E03F05D get_U3375F9AE9769A3D1DA789E9ACFE81F3A1BB14F0D3_15() const { return ___375F9AE9769A3D1DA789E9ACFE81F3A1BB14F0D3_15; }
inline __StaticArrayInitTypeSizeU3D38_tA52D24A5F9970582D6B55437967C9BD32E03F05D * get_address_of_U3375F9AE9769A3D1DA789E9ACFE81F3A1BB14F0D3_15() { return &___375F9AE9769A3D1DA789E9ACFE81F3A1BB14F0D3_15; }
inline void set_U3375F9AE9769A3D1DA789E9ACFE81F3A1BB14F0D3_15(__StaticArrayInitTypeSizeU3D38_tA52D24A5F9970582D6B55437967C9BD32E03F05D value)
{
___375F9AE9769A3D1DA789E9ACFE81F3A1BB14F0D3_15 = value;
}
inline static int32_t get_offset_of_U3379C06C9E702D31469C29033F0DD63931EB349F5_16() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___379C06C9E702D31469C29033F0DD63931EB349F5_16)); }
inline __StaticArrayInitTypeSizeU3D1450_t58DE69DB537BA7DFBFF2C7084FFC6970FB3BAEA4 get_U3379C06C9E702D31469C29033F0DD63931EB349F5_16() const { return ___379C06C9E702D31469C29033F0DD63931EB349F5_16; }
inline __StaticArrayInitTypeSizeU3D1450_t58DE69DB537BA7DFBFF2C7084FFC6970FB3BAEA4 * get_address_of_U3379C06C9E702D31469C29033F0DD63931EB349F5_16() { return &___379C06C9E702D31469C29033F0DD63931EB349F5_16; }
inline void set_U3379C06C9E702D31469C29033F0DD63931EB349F5_16(__StaticArrayInitTypeSizeU3D1450_t58DE69DB537BA7DFBFF2C7084FFC6970FB3BAEA4 value)
{
___379C06C9E702D31469C29033F0DD63931EB349F5_16 = value;
}
inline static int32_t get_offset_of_U3399BD13E240F33F808CA7940293D6EC4E6FD5A00_17() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___399BD13E240F33F808CA7940293D6EC4E6FD5A00_17)); }
inline __StaticArrayInitTypeSizeU3D10_t39E3D966A21885323F15EB866ABDE668EA1ED52C get_U3399BD13E240F33F808CA7940293D6EC4E6FD5A00_17() const { return ___399BD13E240F33F808CA7940293D6EC4E6FD5A00_17; }
inline __StaticArrayInitTypeSizeU3D10_t39E3D966A21885323F15EB866ABDE668EA1ED52C * get_address_of_U3399BD13E240F33F808CA7940293D6EC4E6FD5A00_17() { return &___399BD13E240F33F808CA7940293D6EC4E6FD5A00_17; }
inline void set_U3399BD13E240F33F808CA7940293D6EC4E6FD5A00_17(__StaticArrayInitTypeSizeU3D10_t39E3D966A21885323F15EB866ABDE668EA1ED52C value)
{
___399BD13E240F33F808CA7940293D6EC4E6FD5A00_17 = value;
}
inline static int32_t get_offset_of_U339C9CE73C7B0619D409EF28344F687C1B5C130FE_18() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___39C9CE73C7B0619D409EF28344F687C1B5C130FE_18)); }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U339C9CE73C7B0619D409EF28344F687C1B5C130FE_18() const { return ___39C9CE73C7B0619D409EF28344F687C1B5C130FE_18; }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U339C9CE73C7B0619D409EF28344F687C1B5C130FE_18() { return &___39C9CE73C7B0619D409EF28344F687C1B5C130FE_18; }
inline void set_U339C9CE73C7B0619D409EF28344F687C1B5C130FE_18(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value)
{
___39C9CE73C7B0619D409EF28344F687C1B5C130FE_18 = value;
}
inline static int32_t get_offset_of_U33C53AFB51FEC23491684C7BEDBC6D4E0F409F851_19() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___3C53AFB51FEC23491684C7BEDBC6D4E0F409F851_19)); }
inline __StaticArrayInitTypeSizeU3D320_t48B9242FB90DB2A21A723BBAB141500A9641EB49 get_U33C53AFB51FEC23491684C7BEDBC6D4E0F409F851_19() const { return ___3C53AFB51FEC23491684C7BEDBC6D4E0F409F851_19; }
inline __StaticArrayInitTypeSizeU3D320_t48B9242FB90DB2A21A723BBAB141500A9641EB49 * get_address_of_U33C53AFB51FEC23491684C7BEDBC6D4E0F409F851_19() { return &___3C53AFB51FEC23491684C7BEDBC6D4E0F409F851_19; }
inline void set_U33C53AFB51FEC23491684C7BEDBC6D4E0F409F851_19(__StaticArrayInitTypeSizeU3D320_t48B9242FB90DB2A21A723BBAB141500A9641EB49 value)
{
___3C53AFB51FEC23491684C7BEDBC6D4E0F409F851_19 = value;
}
inline static int32_t get_offset_of_U33E823444D2DFECF0F90B436B88F02A533CB376F1_20() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___3E823444D2DFECF0F90B436B88F02A533CB376F1_20)); }
inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 get_U33E823444D2DFECF0F90B436B88F02A533CB376F1_20() const { return ___3E823444D2DFECF0F90B436B88F02A533CB376F1_20; }
inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 * get_address_of_U33E823444D2DFECF0F90B436B88F02A533CB376F1_20() { return &___3E823444D2DFECF0F90B436B88F02A533CB376F1_20; }
inline void set_U33E823444D2DFECF0F90B436B88F02A533CB376F1_20(__StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 value)
{
___3E823444D2DFECF0F90B436B88F02A533CB376F1_20 = value;
}
inline static int32_t get_offset_of_U33FE6C283BCF384FD2C8789880DFF59664E2AB4A1_21() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___3FE6C283BCF384FD2C8789880DFF59664E2AB4A1_21)); }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U33FE6C283BCF384FD2C8789880DFF59664E2AB4A1_21() const { return ___3FE6C283BCF384FD2C8789880DFF59664E2AB4A1_21; }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U33FE6C283BCF384FD2C8789880DFF59664E2AB4A1_21() { return &___3FE6C283BCF384FD2C8789880DFF59664E2AB4A1_21; }
inline void set_U33FE6C283BCF384FD2C8789880DFF59664E2AB4A1_21(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value)
{
___3FE6C283BCF384FD2C8789880DFF59664E2AB4A1_21 = value;
}
inline static int32_t get_offset_of_U340981BAA39513E58B28DCF0103CC04DE2A0A0444_22() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___40981BAA39513E58B28DCF0103CC04DE2A0A0444_22)); }
inline __StaticArrayInitTypeSizeU3D1665_tCD7752863825B82B07752CCE72A581C169E19C20 get_U340981BAA39513E58B28DCF0103CC04DE2A0A0444_22() const { return ___40981BAA39513E58B28DCF0103CC04DE2A0A0444_22; }
inline __StaticArrayInitTypeSizeU3D1665_tCD7752863825B82B07752CCE72A581C169E19C20 * get_address_of_U340981BAA39513E58B28DCF0103CC04DE2A0A0444_22() { return &___40981BAA39513E58B28DCF0103CC04DE2A0A0444_22; }
inline void set_U340981BAA39513E58B28DCF0103CC04DE2A0A0444_22(__StaticArrayInitTypeSizeU3D1665_tCD7752863825B82B07752CCE72A581C169E19C20 value)
{
___40981BAA39513E58B28DCF0103CC04DE2A0A0444_22 = value;
}
inline static int32_t get_offset_of_U340E7C49413D261F3F38AD3A870C0AC69C8BDA048_23() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___40E7C49413D261F3F38AD3A870C0AC69C8BDA048_23)); }
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_U340E7C49413D261F3F38AD3A870C0AC69C8BDA048_23() const { return ___40E7C49413D261F3F38AD3A870C0AC69C8BDA048_23; }
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_U340E7C49413D261F3F38AD3A870C0AC69C8BDA048_23() { return &___40E7C49413D261F3F38AD3A870C0AC69C8BDA048_23; }
inline void set_U340E7C49413D261F3F38AD3A870C0AC69C8BDA048_23(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value)
{
___40E7C49413D261F3F38AD3A870C0AC69C8BDA048_23 = value;
}
inline static int32_t get_offset_of_U3421EC7E82F2967DF6CA8C3605514DC6F29EE5845_24() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___421EC7E82F2967DF6CA8C3605514DC6F29EE5845_24)); }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U3421EC7E82F2967DF6CA8C3605514DC6F29EE5845_24() const { return ___421EC7E82F2967DF6CA8C3605514DC6F29EE5845_24; }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U3421EC7E82F2967DF6CA8C3605514DC6F29EE5845_24() { return &___421EC7E82F2967DF6CA8C3605514DC6F29EE5845_24; }
inline void set_U3421EC7E82F2967DF6CA8C3605514DC6F29EE5845_24(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value)
{
___421EC7E82F2967DF6CA8C3605514DC6F29EE5845_24 = value;
}
inline static int32_t get_offset_of_U34858DB4AA76D3933F1CA9E6712D4FDB16903F628_25() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___4858DB4AA76D3933F1CA9E6712D4FDB16903F628_25)); }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U34858DB4AA76D3933F1CA9E6712D4FDB16903F628_25() const { return ___4858DB4AA76D3933F1CA9E6712D4FDB16903F628_25; }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U34858DB4AA76D3933F1CA9E6712D4FDB16903F628_25() { return &___4858DB4AA76D3933F1CA9E6712D4FDB16903F628_25; }
inline void set_U34858DB4AA76D3933F1CA9E6712D4FDB16903F628_25(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value)
{
___4858DB4AA76D3933F1CA9E6712D4FDB16903F628_25 = value;
}
inline static int32_t get_offset_of_U34F7A8890F332B22B8DE0BD29D36FA7364748D76A_26() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___4F7A8890F332B22B8DE0BD29D36FA7364748D76A_26)); }
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_U34F7A8890F332B22B8DE0BD29D36FA7364748D76A_26() const { return ___4F7A8890F332B22B8DE0BD29D36FA7364748D76A_26; }
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_U34F7A8890F332B22B8DE0BD29D36FA7364748D76A_26() { return &___4F7A8890F332B22B8DE0BD29D36FA7364748D76A_26; }
inline void set_U34F7A8890F332B22B8DE0BD29D36FA7364748D76A_26(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value)
{
___4F7A8890F332B22B8DE0BD29D36FA7364748D76A_26 = value;
}
inline static int32_t get_offset_of_U3536422B321459B242ADED7240B7447E904E083E3_27() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___536422B321459B242ADED7240B7447E904E083E3_27)); }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U3536422B321459B242ADED7240B7447E904E083E3_27() const { return ___536422B321459B242ADED7240B7447E904E083E3_27; }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U3536422B321459B242ADED7240B7447E904E083E3_27() { return &___536422B321459B242ADED7240B7447E904E083E3_27; }
inline void set_U3536422B321459B242ADED7240B7447E904E083E3_27(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value)
{
___536422B321459B242ADED7240B7447E904E083E3_27 = value;
}
inline static int32_t get_offset_of_U35382CEF491F422BFE0D6FC46EFAFF9EF9D4C89F3_28() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___5382CEF491F422BFE0D6FC46EFAFF9EF9D4C89F3_28)); }
inline __StaticArrayInitTypeSizeU3D1080_tCE36DA14009C45CFDEA7F63618BE90F8DF89AC84 get_U35382CEF491F422BFE0D6FC46EFAFF9EF9D4C89F3_28() const { return ___5382CEF491F422BFE0D6FC46EFAFF9EF9D4C89F3_28; }
inline __StaticArrayInitTypeSizeU3D1080_tCE36DA14009C45CFDEA7F63618BE90F8DF89AC84 * get_address_of_U35382CEF491F422BFE0D6FC46EFAFF9EF9D4C89F3_28() { return &___5382CEF491F422BFE0D6FC46EFAFF9EF9D4C89F3_28; }
inline void set_U35382CEF491F422BFE0D6FC46EFAFF9EF9D4C89F3_28(__StaticArrayInitTypeSizeU3D1080_tCE36DA14009C45CFDEA7F63618BE90F8DF89AC84 value)
{
___5382CEF491F422BFE0D6FC46EFAFF9EF9D4C89F3_28 = value;
}
inline static int32_t get_offset_of_U357218C316B6921E2CD61027A2387EDC31A2D9471_29() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___57218C316B6921E2CD61027A2387EDC31A2D9471_29)); }
inline __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E get_U357218C316B6921E2CD61027A2387EDC31A2D9471_29() const { return ___57218C316B6921E2CD61027A2387EDC31A2D9471_29; }
inline __StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E * get_address_of_U357218C316B6921E2CD61027A2387EDC31A2D9471_29() { return &___57218C316B6921E2CD61027A2387EDC31A2D9471_29; }
inline void set_U357218C316B6921E2CD61027A2387EDC31A2D9471_29(__StaticArrayInitTypeSizeU3D3_t651350E6AC00D0836A5D0539D0D68852BE81E08E value)
{
___57218C316B6921E2CD61027A2387EDC31A2D9471_29 = value;
}
inline static int32_t get_offset_of_U357F320D62696EC99727E0FE2045A05F1289CC0C6_30() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___57F320D62696EC99727E0FE2045A05F1289CC0C6_30)); }
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_U357F320D62696EC99727E0FE2045A05F1289CC0C6_30() const { return ___57F320D62696EC99727E0FE2045A05F1289CC0C6_30; }
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_U357F320D62696EC99727E0FE2045A05F1289CC0C6_30() { return &___57F320D62696EC99727E0FE2045A05F1289CC0C6_30; }
inline void set_U357F320D62696EC99727E0FE2045A05F1289CC0C6_30(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value)
{
___57F320D62696EC99727E0FE2045A05F1289CC0C6_30 = value;
}
inline static int32_t get_offset_of_U3594A33A00BC4F785DFD43E3C6C44FBA1242CCAF3_31() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___594A33A00BC4F785DFD43E3C6C44FBA1242CCAF3_31)); }
inline __StaticArrayInitTypeSizeU3D212_tDFB9BEA11D871D109F9E6502B2F50F7115451AAF get_U3594A33A00BC4F785DFD43E3C6C44FBA1242CCAF3_31() const { return ___594A33A00BC4F785DFD43E3C6C44FBA1242CCAF3_31; }
inline __StaticArrayInitTypeSizeU3D212_tDFB9BEA11D871D109F9E6502B2F50F7115451AAF * get_address_of_U3594A33A00BC4F785DFD43E3C6C44FBA1242CCAF3_31() { return &___594A33A00BC4F785DFD43E3C6C44FBA1242CCAF3_31; }
inline void set_U3594A33A00BC4F785DFD43E3C6C44FBA1242CCAF3_31(__StaticArrayInitTypeSizeU3D212_tDFB9BEA11D871D109F9E6502B2F50F7115451AAF value)
{
___594A33A00BC4F785DFD43E3C6C44FBA1242CCAF3_31 = value;
}
inline static int32_t get_offset_of_U35BBDF8058D4235C33F2E8DCF76004031B6187A2F_32() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___5BBDF8058D4235C33F2E8DCF76004031B6187A2F_32)); }
inline __StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 get_U35BBDF8058D4235C33F2E8DCF76004031B6187A2F_32() const { return ___5BBDF8058D4235C33F2E8DCF76004031B6187A2F_32; }
inline __StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 * get_address_of_U35BBDF8058D4235C33F2E8DCF76004031B6187A2F_32() { return &___5BBDF8058D4235C33F2E8DCF76004031B6187A2F_32; }
inline void set_U35BBDF8058D4235C33F2E8DCF76004031B6187A2F_32(__StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 value)
{
___5BBDF8058D4235C33F2E8DCF76004031B6187A2F_32 = value;
}
inline static int32_t get_offset_of_U35BCD21C341BE6DDF8FFFAE1A23ABA24DCBB612BF_33() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___5BCD21C341BE6DDF8FFFAE1A23ABA24DCBB612BF_33)); }
inline __StaticArrayInitTypeSizeU3D288_t7B40D7F3A8D262F90A76460FF94E92CE08AFCF55 get_U35BCD21C341BE6DDF8FFFAE1A23ABA24DCBB612BF_33() const { return ___5BCD21C341BE6DDF8FFFAE1A23ABA24DCBB612BF_33; }
inline __StaticArrayInitTypeSizeU3D288_t7B40D7F3A8D262F90A76460FF94E92CE08AFCF55 * get_address_of_U35BCD21C341BE6DDF8FFFAE1A23ABA24DCBB612BF_33() { return &___5BCD21C341BE6DDF8FFFAE1A23ABA24DCBB612BF_33; }
inline void set_U35BCD21C341BE6DDF8FFFAE1A23ABA24DCBB612BF_33(__StaticArrayInitTypeSizeU3D288_t7B40D7F3A8D262F90A76460FF94E92CE08AFCF55 value)
{
___5BCD21C341BE6DDF8FFFAE1A23ABA24DCBB612BF_33 = value;
}
inline static int32_t get_offset_of_U35BFE2819B4778217C56416C7585FF0E56EBACD89_34() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___5BFE2819B4778217C56416C7585FF0E56EBACD89_34)); }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U35BFE2819B4778217C56416C7585FF0E56EBACD89_34() const { return ___5BFE2819B4778217C56416C7585FF0E56EBACD89_34; }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U35BFE2819B4778217C56416C7585FF0E56EBACD89_34() { return &___5BFE2819B4778217C56416C7585FF0E56EBACD89_34; }
inline void set_U35BFE2819B4778217C56416C7585FF0E56EBACD89_34(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value)
{
___5BFE2819B4778217C56416C7585FF0E56EBACD89_34 = value;
}
inline static int32_t get_offset_of_U3609C0E8D8DA86A09D6013D301C86BA8782C16B8C_35() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___609C0E8D8DA86A09D6013D301C86BA8782C16B8C_35)); }
inline __StaticArrayInitTypeSizeU3D128_t1B13688BD6EA82B964734FF8C3181161EF5624B1 get_U3609C0E8D8DA86A09D6013D301C86BA8782C16B8C_35() const { return ___609C0E8D8DA86A09D6013D301C86BA8782C16B8C_35; }
inline __StaticArrayInitTypeSizeU3D128_t1B13688BD6EA82B964734FF8C3181161EF5624B1 * get_address_of_U3609C0E8D8DA86A09D6013D301C86BA8782C16B8C_35() { return &___609C0E8D8DA86A09D6013D301C86BA8782C16B8C_35; }
inline void set_U3609C0E8D8DA86A09D6013D301C86BA8782C16B8C_35(__StaticArrayInitTypeSizeU3D128_t1B13688BD6EA82B964734FF8C3181161EF5624B1 value)
{
___609C0E8D8DA86A09D6013D301C86BA8782C16B8C_35 = value;
}
inline static int32_t get_offset_of_U365E32B4E150FD8D24B93B0D42A17F1DAD146162B_36() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___65E32B4E150FD8D24B93B0D42A17F1DAD146162B_36)); }
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_U365E32B4E150FD8D24B93B0D42A17F1DAD146162B_36() const { return ___65E32B4E150FD8D24B93B0D42A17F1DAD146162B_36; }
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_U365E32B4E150FD8D24B93B0D42A17F1DAD146162B_36() { return &___65E32B4E150FD8D24B93B0D42A17F1DAD146162B_36; }
inline void set_U365E32B4E150FD8D24B93B0D42A17F1DAD146162B_36(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value)
{
___65E32B4E150FD8D24B93B0D42A17F1DAD146162B_36 = value;
}
inline static int32_t get_offset_of_U36770974FEF1E98B9C1864370E2B5B786EB0EA39E_37() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___6770974FEF1E98B9C1864370E2B5B786EB0EA39E_37)); }
inline __StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A get_U36770974FEF1E98B9C1864370E2B5B786EB0EA39E_37() const { return ___6770974FEF1E98B9C1864370E2B5B786EB0EA39E_37; }
inline __StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A * get_address_of_U36770974FEF1E98B9C1864370E2B5B786EB0EA39E_37() { return &___6770974FEF1E98B9C1864370E2B5B786EB0EA39E_37; }
inline void set_U36770974FEF1E98B9C1864370E2B5B786EB0EA39E_37(__StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A value)
{
___6770974FEF1E98B9C1864370E2B5B786EB0EA39E_37 = value;
}
inline static int32_t get_offset_of_U367EEAD805D708D9AA4E14BF747E44CED801744F3_38() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___67EEAD805D708D9AA4E14BF747E44CED801744F3_38)); }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U367EEAD805D708D9AA4E14BF747E44CED801744F3_38() const { return ___67EEAD805D708D9AA4E14BF747E44CED801744F3_38; }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U367EEAD805D708D9AA4E14BF747E44CED801744F3_38() { return &___67EEAD805D708D9AA4E14BF747E44CED801744F3_38; }
inline void set_U367EEAD805D708D9AA4E14BF747E44CED801744F3_38(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value)
{
___67EEAD805D708D9AA4E14BF747E44CED801744F3_38 = value;
}
inline static int32_t get_offset_of_U36C71197D228427B2864C69B357FEF73D8C9D59DF_39() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___6C71197D228427B2864C69B357FEF73D8C9D59DF_39)); }
inline __StaticArrayInitTypeSizeU3D120_tBA46FD2E9DA153FD8457EE7F425E8ECC517EA252 get_U36C71197D228427B2864C69B357FEF73D8C9D59DF_39() const { return ___6C71197D228427B2864C69B357FEF73D8C9D59DF_39; }
inline __StaticArrayInitTypeSizeU3D120_tBA46FD2E9DA153FD8457EE7F425E8ECC517EA252 * get_address_of_U36C71197D228427B2864C69B357FEF73D8C9D59DF_39() { return &___6C71197D228427B2864C69B357FEF73D8C9D59DF_39; }
inline void set_U36C71197D228427B2864C69B357FEF73D8C9D59DF_39(__StaticArrayInitTypeSizeU3D120_tBA46FD2E9DA153FD8457EE7F425E8ECC517EA252 value)
{
___6C71197D228427B2864C69B357FEF73D8C9D59DF_39 = value;
}
inline static int32_t get_offset_of_U36CEE45445AFD150B047A5866FFA76AA651CDB7B7_40() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___6CEE45445AFD150B047A5866FFA76AA651CDB7B7_40)); }
inline __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 get_U36CEE45445AFD150B047A5866FFA76AA651CDB7B7_40() const { return ___6CEE45445AFD150B047A5866FFA76AA651CDB7B7_40; }
inline __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 * get_address_of_U36CEE45445AFD150B047A5866FFA76AA651CDB7B7_40() { return &___6CEE45445AFD150B047A5866FFA76AA651CDB7B7_40; }
inline void set_U36CEE45445AFD150B047A5866FFA76AA651CDB7B7_40(__StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 value)
{
___6CEE45445AFD150B047A5866FFA76AA651CDB7B7_40 = value;
}
inline static int32_t get_offset_of_U36FC754859E4EC74E447048364B216D825C6F8FE7_41() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___6FC754859E4EC74E447048364B216D825C6F8FE7_41)); }
inline __StaticArrayInitTypeSizeU3D76_t83BE44A74AC13CD15474DA7726C9C92BD317CFFB get_U36FC754859E4EC74E447048364B216D825C6F8FE7_41() const { return ___6FC754859E4EC74E447048364B216D825C6F8FE7_41; }
inline __StaticArrayInitTypeSizeU3D76_t83BE44A74AC13CD15474DA7726C9C92BD317CFFB * get_address_of_U36FC754859E4EC74E447048364B216D825C6F8FE7_41() { return &___6FC754859E4EC74E447048364B216D825C6F8FE7_41; }
inline void set_U36FC754859E4EC74E447048364B216D825C6F8FE7_41(__StaticArrayInitTypeSizeU3D76_t83BE44A74AC13CD15474DA7726C9C92BD317CFFB value)
{
___6FC754859E4EC74E447048364B216D825C6F8FE7_41 = value;
}
inline static int32_t get_offset_of_U3704939CD172085D1295FCE3F1D92431D685D7AA2_42() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___704939CD172085D1295FCE3F1D92431D685D7AA2_42)); }
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_U3704939CD172085D1295FCE3F1D92431D685D7AA2_42() const { return ___704939CD172085D1295FCE3F1D92431D685D7AA2_42; }
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_U3704939CD172085D1295FCE3F1D92431D685D7AA2_42() { return &___704939CD172085D1295FCE3F1D92431D685D7AA2_42; }
inline void set_U3704939CD172085D1295FCE3F1D92431D685D7AA2_42(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value)
{
___704939CD172085D1295FCE3F1D92431D685D7AA2_42 = value;
}
inline static int32_t get_offset_of_U37088AAE49F0627B72729078DE6E3182DDCF8ED99_43() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___7088AAE49F0627B72729078DE6E3182DDCF8ED99_43)); }
inline __StaticArrayInitTypeSizeU3D24_tAB08761D1BC4313A0535E193F4E1A1AFA8B3F123 get_U37088AAE49F0627B72729078DE6E3182DDCF8ED99_43() const { return ___7088AAE49F0627B72729078DE6E3182DDCF8ED99_43; }
inline __StaticArrayInitTypeSizeU3D24_tAB08761D1BC4313A0535E193F4E1A1AFA8B3F123 * get_address_of_U37088AAE49F0627B72729078DE6E3182DDCF8ED99_43() { return &___7088AAE49F0627B72729078DE6E3182DDCF8ED99_43; }
inline void set_U37088AAE49F0627B72729078DE6E3182DDCF8ED99_43(__StaticArrayInitTypeSizeU3D24_tAB08761D1BC4313A0535E193F4E1A1AFA8B3F123 value)
{
___7088AAE49F0627B72729078DE6E3182DDCF8ED99_43 = value;
}
inline static int32_t get_offset_of_U37341C933A70EAE383CC50C4B945ADB8E08F06737_44() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___7341C933A70EAE383CC50C4B945ADB8E08F06737_44)); }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U37341C933A70EAE383CC50C4B945ADB8E08F06737_44() const { return ___7341C933A70EAE383CC50C4B945ADB8E08F06737_44; }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U37341C933A70EAE383CC50C4B945ADB8E08F06737_44() { return &___7341C933A70EAE383CC50C4B945ADB8E08F06737_44; }
inline void set_U37341C933A70EAE383CC50C4B945ADB8E08F06737_44(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value)
{
___7341C933A70EAE383CC50C4B945ADB8E08F06737_44 = value;
}
inline static int32_t get_offset_of_U37FE820C9CF0F0B90445A71F1D262D22E4F0C4C68_45() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___7FE820C9CF0F0B90445A71F1D262D22E4F0C4C68_45)); }
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_U37FE820C9CF0F0B90445A71F1D262D22E4F0C4C68_45() const { return ___7FE820C9CF0F0B90445A71F1D262D22E4F0C4C68_45; }
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_U37FE820C9CF0F0B90445A71F1D262D22E4F0C4C68_45() { return &___7FE820C9CF0F0B90445A71F1D262D22E4F0C4C68_45; }
inline void set_U37FE820C9CF0F0B90445A71F1D262D22E4F0C4C68_45(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value)
{
___7FE820C9CF0F0B90445A71F1D262D22E4F0C4C68_45 = value;
}
inline static int32_t get_offset_of_U3811A927B7DADD378BE60BBDE794B9277AA9B50EC_46() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___811A927B7DADD378BE60BBDE794B9277AA9B50EC_46)); }
inline __StaticArrayInitTypeSizeU3D21252_tCA2B51BDF30FDECEBFCB55CC7530A0A7D6BC4462 get_U3811A927B7DADD378BE60BBDE794B9277AA9B50EC_46() const { return ___811A927B7DADD378BE60BBDE794B9277AA9B50EC_46; }
inline __StaticArrayInitTypeSizeU3D21252_tCA2B51BDF30FDECEBFCB55CC7530A0A7D6BC4462 * get_address_of_U3811A927B7DADD378BE60BBDE794B9277AA9B50EC_46() { return &___811A927B7DADD378BE60BBDE794B9277AA9B50EC_46; }
inline void set_U3811A927B7DADD378BE60BBDE794B9277AA9B50EC_46(__StaticArrayInitTypeSizeU3D21252_tCA2B51BDF30FDECEBFCB55CC7530A0A7D6BC4462 value)
{
___811A927B7DADD378BE60BBDE794B9277AA9B50EC_46 = value;
}
inline static int32_t get_offset_of_U381917F1E21F3C22B9F916994547A614FB03E968E_47() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___81917F1E21F3C22B9F916994547A614FB03E968E_47)); }
inline __StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 get_U381917F1E21F3C22B9F916994547A614FB03E968E_47() const { return ___81917F1E21F3C22B9F916994547A614FB03E968E_47; }
inline __StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 * get_address_of_U381917F1E21F3C22B9F916994547A614FB03E968E_47() { return &___81917F1E21F3C22B9F916994547A614FB03E968E_47; }
inline void set_U381917F1E21F3C22B9F916994547A614FB03E968E_47(__StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 value)
{
___81917F1E21F3C22B9F916994547A614FB03E968E_47 = value;
}
inline static int32_t get_offset_of_U3823566DA642D6EA356E15585921F2A4CA23D6760_48() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___823566DA642D6EA356E15585921F2A4CA23D6760_48)); }
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_U3823566DA642D6EA356E15585921F2A4CA23D6760_48() const { return ___823566DA642D6EA356E15585921F2A4CA23D6760_48; }
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_U3823566DA642D6EA356E15585921F2A4CA23D6760_48() { return &___823566DA642D6EA356E15585921F2A4CA23D6760_48; }
inline void set_U3823566DA642D6EA356E15585921F2A4CA23D6760_48(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value)
{
___823566DA642D6EA356E15585921F2A4CA23D6760_48 = value;
}
inline static int32_t get_offset_of_U382C2A59850B2E85BCE1A45A479537A384DF6098D_49() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___82C2A59850B2E85BCE1A45A479537A384DF6098D_49)); }
inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 get_U382C2A59850B2E85BCE1A45A479537A384DF6098D_49() const { return ___82C2A59850B2E85BCE1A45A479537A384DF6098D_49; }
inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 * get_address_of_U382C2A59850B2E85BCE1A45A479537A384DF6098D_49() { return &___82C2A59850B2E85BCE1A45A479537A384DF6098D_49; }
inline void set_U382C2A59850B2E85BCE1A45A479537A384DF6098D_49(__StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 value)
{
___82C2A59850B2E85BCE1A45A479537A384DF6098D_49 = value;
}
inline static int32_t get_offset_of_U382C383F8E6E4D3D87AEBB986A5D0077E8AD157C4_50() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___82C383F8E6E4D3D87AEBB986A5D0077E8AD157C4_50)); }
inline __StaticArrayInitTypeSizeU3D44_t1383A9A990CD22E4246B656157D17C8051BFAD7F get_U382C383F8E6E4D3D87AEBB986A5D0077E8AD157C4_50() const { return ___82C383F8E6E4D3D87AEBB986A5D0077E8AD157C4_50; }
inline __StaticArrayInitTypeSizeU3D44_t1383A9A990CD22E4246B656157D17C8051BFAD7F * get_address_of_U382C383F8E6E4D3D87AEBB986A5D0077E8AD157C4_50() { return &___82C383F8E6E4D3D87AEBB986A5D0077E8AD157C4_50; }
inline void set_U382C383F8E6E4D3D87AEBB986A5D0077E8AD157C4_50(__StaticArrayInitTypeSizeU3D44_t1383A9A990CD22E4246B656157D17C8051BFAD7F value)
{
___82C383F8E6E4D3D87AEBB986A5D0077E8AD157C4_50 = value;
}
inline static int32_t get_offset_of_U3871B9CF85DB352BAADF12BAE8F19857683E385AC_51() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___871B9CF85DB352BAADF12BAE8F19857683E385AC_51)); }
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_U3871B9CF85DB352BAADF12BAE8F19857683E385AC_51() const { return ___871B9CF85DB352BAADF12BAE8F19857683E385AC_51; }
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_U3871B9CF85DB352BAADF12BAE8F19857683E385AC_51() { return &___871B9CF85DB352BAADF12BAE8F19857683E385AC_51; }
inline void set_U3871B9CF85DB352BAADF12BAE8F19857683E385AC_51(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value)
{
___871B9CF85DB352BAADF12BAE8F19857683E385AC_51 = value;
}
inline static int32_t get_offset_of_U389A040451C8CC5C8FB268BE44BDD74964C104155_52() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___89A040451C8CC5C8FB268BE44BDD74964C104155_52)); }
inline __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 get_U389A040451C8CC5C8FB268BE44BDD74964C104155_52() const { return ___89A040451C8CC5C8FB268BE44BDD74964C104155_52; }
inline __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 * get_address_of_U389A040451C8CC5C8FB268BE44BDD74964C104155_52() { return &___89A040451C8CC5C8FB268BE44BDD74964C104155_52; }
inline void set_U389A040451C8CC5C8FB268BE44BDD74964C104155_52(__StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 value)
{
___89A040451C8CC5C8FB268BE44BDD74964C104155_52 = value;
}
inline static int32_t get_offset_of_U38CAA092E783257106251246FF5C97F88D28517A6_53() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___8CAA092E783257106251246FF5C97F88D28517A6_53)); }
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_U38CAA092E783257106251246FF5C97F88D28517A6_53() const { return ___8CAA092E783257106251246FF5C97F88D28517A6_53; }
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_U38CAA092E783257106251246FF5C97F88D28517A6_53() { return &___8CAA092E783257106251246FF5C97F88D28517A6_53; }
inline void set_U38CAA092E783257106251246FF5C97F88D28517A6_53(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value)
{
___8CAA092E783257106251246FF5C97F88D28517A6_53 = value;
}
inline static int32_t get_offset_of_U38D231DD55FE1AD7631BBD0905A17D5EB616C2154_54() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___8D231DD55FE1AD7631BBD0905A17D5EB616C2154_54)); }
inline __StaticArrayInitTypeSizeU3D2100_t75CE52CDAFC7C95EDAB5CF1AF8B2621D502F1FAA get_U38D231DD55FE1AD7631BBD0905A17D5EB616C2154_54() const { return ___8D231DD55FE1AD7631BBD0905A17D5EB616C2154_54; }
inline __StaticArrayInitTypeSizeU3D2100_t75CE52CDAFC7C95EDAB5CF1AF8B2621D502F1FAA * get_address_of_U38D231DD55FE1AD7631BBD0905A17D5EB616C2154_54() { return &___8D231DD55FE1AD7631BBD0905A17D5EB616C2154_54; }
inline void set_U38D231DD55FE1AD7631BBD0905A17D5EB616C2154_54(__StaticArrayInitTypeSizeU3D2100_t75CE52CDAFC7C95EDAB5CF1AF8B2621D502F1FAA value)
{
___8D231DD55FE1AD7631BBD0905A17D5EB616C2154_54 = value;
}
inline static int32_t get_offset_of_U38E10AC2F34545DFBBF3FCBC06055D797A8C99991_55() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___8E10AC2F34545DFBBF3FCBC06055D797A8C99991_55)); }
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_U38E10AC2F34545DFBBF3FCBC06055D797A8C99991_55() const { return ___8E10AC2F34545DFBBF3FCBC06055D797A8C99991_55; }
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_U38E10AC2F34545DFBBF3FCBC06055D797A8C99991_55() { return &___8E10AC2F34545DFBBF3FCBC06055D797A8C99991_55; }
inline void set_U38E10AC2F34545DFBBF3FCBC06055D797A8C99991_55(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value)
{
___8E10AC2F34545DFBBF3FCBC06055D797A8C99991_55 = value;
}
inline static int32_t get_offset_of_U393A63E90605400F34B49F0EB3361D23C89164BDA_56() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___93A63E90605400F34B49F0EB3361D23C89164BDA_56)); }
inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 get_U393A63E90605400F34B49F0EB3361D23C89164BDA_56() const { return ___93A63E90605400F34B49F0EB3361D23C89164BDA_56; }
inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 * get_address_of_U393A63E90605400F34B49F0EB3361D23C89164BDA_56() { return &___93A63E90605400F34B49F0EB3361D23C89164BDA_56; }
inline void set_U393A63E90605400F34B49F0EB3361D23C89164BDA_56(__StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 value)
{
___93A63E90605400F34B49F0EB3361D23C89164BDA_56 = value;
}
inline static int32_t get_offset_of_U394841DD2F330CCB1089BF413E4FA9B04505152E2_57() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___94841DD2F330CCB1089BF413E4FA9B04505152E2_57)); }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U394841DD2F330CCB1089BF413E4FA9B04505152E2_57() const { return ___94841DD2F330CCB1089BF413E4FA9B04505152E2_57; }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U394841DD2F330CCB1089BF413E4FA9B04505152E2_57() { return &___94841DD2F330CCB1089BF413E4FA9B04505152E2_57; }
inline void set_U394841DD2F330CCB1089BF413E4FA9B04505152E2_57(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value)
{
___94841DD2F330CCB1089BF413E4FA9B04505152E2_57 = value;
}
inline static int32_t get_offset_of_U395264589E48F94B7857CFF398FB72A537E13EEE2_58() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___95264589E48F94B7857CFF398FB72A537E13EEE2_58)); }
inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 get_U395264589E48F94B7857CFF398FB72A537E13EEE2_58() const { return ___95264589E48F94B7857CFF398FB72A537E13EEE2_58; }
inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 * get_address_of_U395264589E48F94B7857CFF398FB72A537E13EEE2_58() { return &___95264589E48F94B7857CFF398FB72A537E13EEE2_58; }
inline void set_U395264589E48F94B7857CFF398FB72A537E13EEE2_58(__StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 value)
{
___95264589E48F94B7857CFF398FB72A537E13EEE2_58 = value;
}
inline static int32_t get_offset_of_U395C48758CAE1715783472FB073AB158AB8A0AB2A_59() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___95C48758CAE1715783472FB073AB158AB8A0AB2A_59)); }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U395C48758CAE1715783472FB073AB158AB8A0AB2A_59() const { return ___95C48758CAE1715783472FB073AB158AB8A0AB2A_59; }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U395C48758CAE1715783472FB073AB158AB8A0AB2A_59() { return &___95C48758CAE1715783472FB073AB158AB8A0AB2A_59; }
inline void set_U395C48758CAE1715783472FB073AB158AB8A0AB2A_59(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value)
{
___95C48758CAE1715783472FB073AB158AB8A0AB2A_59 = value;
}
inline static int32_t get_offset_of_U3973417296623D8DC6961B09664E54039E44CA5D8_60() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___973417296623D8DC6961B09664E54039E44CA5D8_60)); }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_U3973417296623D8DC6961B09664E54039E44CA5D8_60() const { return ___973417296623D8DC6961B09664E54039E44CA5D8_60; }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_U3973417296623D8DC6961B09664E54039E44CA5D8_60() { return &___973417296623D8DC6961B09664E54039E44CA5D8_60; }
inline void set_U3973417296623D8DC6961B09664E54039E44CA5D8_60(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value)
{
___973417296623D8DC6961B09664E54039E44CA5D8_60 = value;
}
inline static int32_t get_offset_of_A0074C15377C0C870B055927403EA9FA7A349D12_61() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___A0074C15377C0C870B055927403EA9FA7A349D12_61)); }
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_A0074C15377C0C870B055927403EA9FA7A349D12_61() const { return ___A0074C15377C0C870B055927403EA9FA7A349D12_61; }
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_A0074C15377C0C870B055927403EA9FA7A349D12_61() { return &___A0074C15377C0C870B055927403EA9FA7A349D12_61; }
inline void set_A0074C15377C0C870B055927403EA9FA7A349D12_61(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value)
{
___A0074C15377C0C870B055927403EA9FA7A349D12_61 = value;
}
inline static int32_t get_offset_of_A1319B706116AB2C6D44483F60A7D0ACEA543396_62() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___A1319B706116AB2C6D44483F60A7D0ACEA543396_62)); }
inline __StaticArrayInitTypeSizeU3D130_t732A6F42953325ADC5746FF1A652A2974473AF4F get_A1319B706116AB2C6D44483F60A7D0ACEA543396_62() const { return ___A1319B706116AB2C6D44483F60A7D0ACEA543396_62; }
inline __StaticArrayInitTypeSizeU3D130_t732A6F42953325ADC5746FF1A652A2974473AF4F * get_address_of_A1319B706116AB2C6D44483F60A7D0ACEA543396_62() { return &___A1319B706116AB2C6D44483F60A7D0ACEA543396_62; }
inline void set_A1319B706116AB2C6D44483F60A7D0ACEA543396_62(__StaticArrayInitTypeSizeU3D130_t732A6F42953325ADC5746FF1A652A2974473AF4F value)
{
___A1319B706116AB2C6D44483F60A7D0ACEA543396_62 = value;
}
inline static int32_t get_offset_of_A13AA52274D951A18029131A8DDECF76B569A15D_63() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_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_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___A5444763673307F6828C748D4B9708CFC02B0959_64)); }
inline __StaticArrayInitTypeSizeU3D212_tDFB9BEA11D871D109F9E6502B2F50F7115451AAF get_A5444763673307F6828C748D4B9708CFC02B0959_64() const { return ___A5444763673307F6828C748D4B9708CFC02B0959_64; }
inline __StaticArrayInitTypeSizeU3D212_tDFB9BEA11D871D109F9E6502B2F50F7115451AAF * get_address_of_A5444763673307F6828C748D4B9708CFC02B0959_64() { return &___A5444763673307F6828C748D4B9708CFC02B0959_64; }
inline void set_A5444763673307F6828C748D4B9708CFC02B0959_64(__StaticArrayInitTypeSizeU3D212_tDFB9BEA11D871D109F9E6502B2F50F7115451AAF value)
{
___A5444763673307F6828C748D4B9708CFC02B0959_64 = value;
}
inline static int32_t get_offset_of_A6732F8E7FC23766AB329B492D6BF82E3B33233F_65() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___A6732F8E7FC23766AB329B492D6BF82E3B33233F_65)); }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_A6732F8E7FC23766AB329B492D6BF82E3B33233F_65() const { return ___A6732F8E7FC23766AB329B492D6BF82E3B33233F_65; }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_A6732F8E7FC23766AB329B492D6BF82E3B33233F_65() { return &___A6732F8E7FC23766AB329B492D6BF82E3B33233F_65; }
inline void set_A6732F8E7FC23766AB329B492D6BF82E3B33233F_65(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value)
{
___A6732F8E7FC23766AB329B492D6BF82E3B33233F_65 = value;
}
inline static int32_t get_offset_of_A705A106D95282BD15E13EEA6B0AF583FF786D83_66() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___A705A106D95282BD15E13EEA6B0AF583FF786D83_66)); }
inline __StaticArrayInitTypeSizeU3D174_t58EBFEBC3E6F34CF7C54ED51E8113E34B876351F get_A705A106D95282BD15E13EEA6B0AF583FF786D83_66() const { return ___A705A106D95282BD15E13EEA6B0AF583FF786D83_66; }
inline __StaticArrayInitTypeSizeU3D174_t58EBFEBC3E6F34CF7C54ED51E8113E34B876351F * get_address_of_A705A106D95282BD15E13EEA6B0AF583FF786D83_66() { return &___A705A106D95282BD15E13EEA6B0AF583FF786D83_66; }
inline void set_A705A106D95282BD15E13EEA6B0AF583FF786D83_66(__StaticArrayInitTypeSizeU3D174_t58EBFEBC3E6F34CF7C54ED51E8113E34B876351F value)
{
___A705A106D95282BD15E13EEA6B0AF583FF786D83_66 = value;
}
inline static int32_t get_offset_of_A8A491E4CED49AE0027560476C10D933CE70C8DF_67() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___A8A491E4CED49AE0027560476C10D933CE70C8DF_67)); }
inline __StaticArrayInitTypeSizeU3D1018_t7825BE1556EFF874DAFDC230EB69C85A48DBCBC4 get_A8A491E4CED49AE0027560476C10D933CE70C8DF_67() const { return ___A8A491E4CED49AE0027560476C10D933CE70C8DF_67; }
inline __StaticArrayInitTypeSizeU3D1018_t7825BE1556EFF874DAFDC230EB69C85A48DBCBC4 * get_address_of_A8A491E4CED49AE0027560476C10D933CE70C8DF_67() { return &___A8A491E4CED49AE0027560476C10D933CE70C8DF_67; }
inline void set_A8A491E4CED49AE0027560476C10D933CE70C8DF_67(__StaticArrayInitTypeSizeU3D1018_t7825BE1556EFF874DAFDC230EB69C85A48DBCBC4 value)
{
___A8A491E4CED49AE0027560476C10D933CE70C8DF_67 = value;
}
inline static int32_t get_offset_of_AC791C4F39504D1184B73478943D0636258DA7B1_68() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___AC791C4F39504D1184B73478943D0636258DA7B1_68)); }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_AC791C4F39504D1184B73478943D0636258DA7B1_68() const { return ___AC791C4F39504D1184B73478943D0636258DA7B1_68; }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_AC791C4F39504D1184B73478943D0636258DA7B1_68() { return &___AC791C4F39504D1184B73478943D0636258DA7B1_68; }
inline void set_AC791C4F39504D1184B73478943D0636258DA7B1_68(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value)
{
___AC791C4F39504D1184B73478943D0636258DA7B1_68 = value;
}
inline static int32_t get_offset_of_AFCD4E1211233E99373A3367B23105A3D624B1F2_69() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___AFCD4E1211233E99373A3367B23105A3D624B1F2_69)); }
inline __StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A get_AFCD4E1211233E99373A3367B23105A3D624B1F2_69() const { return ___AFCD4E1211233E99373A3367B23105A3D624B1F2_69; }
inline __StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A * get_address_of_AFCD4E1211233E99373A3367B23105A3D624B1F2_69() { return &___AFCD4E1211233E99373A3367B23105A3D624B1F2_69; }
inline void set_AFCD4E1211233E99373A3367B23105A3D624B1F2_69(__StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A value)
{
___AFCD4E1211233E99373A3367B23105A3D624B1F2_69 = value;
}
inline static int32_t get_offset_of_B472ED77CB3B2A66D49D179F1EE2081B70A6AB61_70() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___B472ED77CB3B2A66D49D179F1EE2081B70A6AB61_70)); }
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_B472ED77CB3B2A66D49D179F1EE2081B70A6AB61_70() const { return ___B472ED77CB3B2A66D49D179F1EE2081B70A6AB61_70; }
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_B472ED77CB3B2A66D49D179F1EE2081B70A6AB61_70() { return &___B472ED77CB3B2A66D49D179F1EE2081B70A6AB61_70; }
inline void set_B472ED77CB3B2A66D49D179F1EE2081B70A6AB61_70(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value)
{
___B472ED77CB3B2A66D49D179F1EE2081B70A6AB61_70 = value;
}
inline static int32_t get_offset_of_B53A2C6DF21FC88B17AEFC40EB895B8D63210CDF_71() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___B53A2C6DF21FC88B17AEFC40EB895B8D63210CDF_71)); }
inline __StaticArrayInitTypeSizeU3D256_t9003B1E1E8C82BC25ADE7407C58A314C292B326F get_B53A2C6DF21FC88B17AEFC40EB895B8D63210CDF_71() const { return ___B53A2C6DF21FC88B17AEFC40EB895B8D63210CDF_71; }
inline __StaticArrayInitTypeSizeU3D256_t9003B1E1E8C82BC25ADE7407C58A314C292B326F * get_address_of_B53A2C6DF21FC88B17AEFC40EB895B8D63210CDF_71() { return &___B53A2C6DF21FC88B17AEFC40EB895B8D63210CDF_71; }
inline void set_B53A2C6DF21FC88B17AEFC40EB895B8D63210CDF_71(__StaticArrayInitTypeSizeU3D256_t9003B1E1E8C82BC25ADE7407C58A314C292B326F value)
{
___B53A2C6DF21FC88B17AEFC40EB895B8D63210CDF_71 = value;
}
inline static int32_t get_offset_of_B881DA88BE0B68D8A6B6B6893822586B8B2CFC45_72() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___B881DA88BE0B68D8A6B6B6893822586B8B2CFC45_72)); }
inline __StaticArrayInitTypeSizeU3D998_t8A5C9782706B510180A1B9C9F7E96F8F48421B8C get_B881DA88BE0B68D8A6B6B6893822586B8B2CFC45_72() const { return ___B881DA88BE0B68D8A6B6B6893822586B8B2CFC45_72; }
inline __StaticArrayInitTypeSizeU3D998_t8A5C9782706B510180A1B9C9F7E96F8F48421B8C * get_address_of_B881DA88BE0B68D8A6B6B6893822586B8B2CFC45_72() { return &___B881DA88BE0B68D8A6B6B6893822586B8B2CFC45_72; }
inline void set_B881DA88BE0B68D8A6B6B6893822586B8B2CFC45_72(__StaticArrayInitTypeSizeU3D998_t8A5C9782706B510180A1B9C9F7E96F8F48421B8C value)
{
___B881DA88BE0B68D8A6B6B6893822586B8B2CFC45_72 = value;
}
inline static int32_t get_offset_of_B8864ACB9DD69E3D42151513C840AAE270BF21C8_73() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___B8864ACB9DD69E3D42151513C840AAE270BF21C8_73)); }
inline __StaticArrayInitTypeSizeU3D162_tFFF125F871C6A7DE42BE37AC907E2E2149A861AA get_B8864ACB9DD69E3D42151513C840AAE270BF21C8_73() const { return ___B8864ACB9DD69E3D42151513C840AAE270BF21C8_73; }
inline __StaticArrayInitTypeSizeU3D162_tFFF125F871C6A7DE42BE37AC907E2E2149A861AA * get_address_of_B8864ACB9DD69E3D42151513C840AAE270BF21C8_73() { return &___B8864ACB9DD69E3D42151513C840AAE270BF21C8_73; }
inline void set_B8864ACB9DD69E3D42151513C840AAE270BF21C8_73(__StaticArrayInitTypeSizeU3D162_tFFF125F871C6A7DE42BE37AC907E2E2149A861AA value)
{
___B8864ACB9DD69E3D42151513C840AAE270BF21C8_73 = value;
}
inline static int32_t get_offset_of_B8F87834C3597B2EEF22BA6D3A392CC925636401_74() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___B8F87834C3597B2EEF22BA6D3A392CC925636401_74)); }
inline __StaticArrayInitTypeSizeU3D360_tFF8371303424DEBAE608051BAA970E5AFB409DF7 get_B8F87834C3597B2EEF22BA6D3A392CC925636401_74() const { return ___B8F87834C3597B2EEF22BA6D3A392CC925636401_74; }
inline __StaticArrayInitTypeSizeU3D360_tFF8371303424DEBAE608051BAA970E5AFB409DF7 * get_address_of_B8F87834C3597B2EEF22BA6D3A392CC925636401_74() { return &___B8F87834C3597B2EEF22BA6D3A392CC925636401_74; }
inline void set_B8F87834C3597B2EEF22BA6D3A392CC925636401_74(__StaticArrayInitTypeSizeU3D360_tFF8371303424DEBAE608051BAA970E5AFB409DF7 value)
{
___B8F87834C3597B2EEF22BA6D3A392CC925636401_74 = value;
}
inline static int32_t get_offset_of_B9B670F134A59FB1107AF01A9FE8F8E3980B3093_75() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___B9B670F134A59FB1107AF01A9FE8F8E3980B3093_75)); }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_B9B670F134A59FB1107AF01A9FE8F8E3980B3093_75() const { return ___B9B670F134A59FB1107AF01A9FE8F8E3980B3093_75; }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_B9B670F134A59FB1107AF01A9FE8F8E3980B3093_75() { return &___B9B670F134A59FB1107AF01A9FE8F8E3980B3093_75; }
inline void set_B9B670F134A59FB1107AF01A9FE8F8E3980B3093_75(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value)
{
___B9B670F134A59FB1107AF01A9FE8F8E3980B3093_75 = value;
}
inline static int32_t get_offset_of_BEBC9ECC660A13EFC359BA3383411F698CFF25DB_76() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___BEBC9ECC660A13EFC359BA3383411F698CFF25DB_76)); }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_BEBC9ECC660A13EFC359BA3383411F698CFF25DB_76() const { return ___BEBC9ECC660A13EFC359BA3383411F698CFF25DB_76; }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_BEBC9ECC660A13EFC359BA3383411F698CFF25DB_76() { return &___BEBC9ECC660A13EFC359BA3383411F698CFF25DB_76; }
inline void set_BEBC9ECC660A13EFC359BA3383411F698CFF25DB_76(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value)
{
___BEBC9ECC660A13EFC359BA3383411F698CFF25DB_76 = value;
}
inline static int32_t get_offset_of_BEE1CFE5DFAA408E14CE4AF4DCD824FA2E42DCB7_77() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___BEE1CFE5DFAA408E14CE4AF4DCD824FA2E42DCB7_77)); }
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_BEE1CFE5DFAA408E14CE4AF4DCD824FA2E42DCB7_77() const { return ___BEE1CFE5DFAA408E14CE4AF4DCD824FA2E42DCB7_77; }
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_BEE1CFE5DFAA408E14CE4AF4DCD824FA2E42DCB7_77() { return &___BEE1CFE5DFAA408E14CE4AF4DCD824FA2E42DCB7_77; }
inline void set_BEE1CFE5DFAA408E14CE4AF4DCD824FA2E42DCB7_77(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value)
{
___BEE1CFE5DFAA408E14CE4AF4DCD824FA2E42DCB7_77 = value;
}
inline static int32_t get_offset_of_BF5EB60806ECB74EE484105DD9D6F463BF994867_78() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___BF5EB60806ECB74EE484105DD9D6F463BF994867_78)); }
inline __StaticArrayInitTypeSizeU3D6_tC937DCE458F6AE4186120B4DDF95463176C75C78 get_BF5EB60806ECB74EE484105DD9D6F463BF994867_78() const { return ___BF5EB60806ECB74EE484105DD9D6F463BF994867_78; }
inline __StaticArrayInitTypeSizeU3D6_tC937DCE458F6AE4186120B4DDF95463176C75C78 * get_address_of_BF5EB60806ECB74EE484105DD9D6F463BF994867_78() { return &___BF5EB60806ECB74EE484105DD9D6F463BF994867_78; }
inline void set_BF5EB60806ECB74EE484105DD9D6F463BF994867_78(__StaticArrayInitTypeSizeU3D6_tC937DCE458F6AE4186120B4DDF95463176C75C78 value)
{
___BF5EB60806ECB74EE484105DD9D6F463BF994867_78 = value;
}
inline static int32_t get_offset_of_C1A1100642BA9685B30A84D97348484E14AA1865_79() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_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_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___C6F364A0AD934EFED8909446C215752E565D77C1_80)); }
inline __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 get_C6F364A0AD934EFED8909446C215752E565D77C1_80() const { return ___C6F364A0AD934EFED8909446C215752E565D77C1_80; }
inline __StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 * get_address_of_C6F364A0AD934EFED8909446C215752E565D77C1_80() { return &___C6F364A0AD934EFED8909446C215752E565D77C1_80; }
inline void set_C6F364A0AD934EFED8909446C215752E565D77C1_80(__StaticArrayInitTypeSizeU3D16_t35B2E1DB11C9D3150BF800DC30A2808C4F1A1341 value)
{
___C6F364A0AD934EFED8909446C215752E565D77C1_80 = value;
}
inline static int32_t get_offset_of_CE5835130F5277F63D716FC9115526B0AC68FFAD_81() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___CE5835130F5277F63D716FC9115526B0AC68FFAD_81)); }
inline __StaticArrayInitTypeSizeU3D174_t58EBFEBC3E6F34CF7C54ED51E8113E34B876351F get_CE5835130F5277F63D716FC9115526B0AC68FFAD_81() const { return ___CE5835130F5277F63D716FC9115526B0AC68FFAD_81; }
inline __StaticArrayInitTypeSizeU3D174_t58EBFEBC3E6F34CF7C54ED51E8113E34B876351F * get_address_of_CE5835130F5277F63D716FC9115526B0AC68FFAD_81() { return &___CE5835130F5277F63D716FC9115526B0AC68FFAD_81; }
inline void set_CE5835130F5277F63D716FC9115526B0AC68FFAD_81(__StaticArrayInitTypeSizeU3D174_t58EBFEBC3E6F34CF7C54ED51E8113E34B876351F value)
{
___CE5835130F5277F63D716FC9115526B0AC68FFAD_81 = value;
}
inline static int32_t get_offset_of_CE93C35B755802BC4B3D180716B048FC61701EF7_82() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___CE93C35B755802BC4B3D180716B048FC61701EF7_82)); }
inline __StaticArrayInitTypeSizeU3D6_tC937DCE458F6AE4186120B4DDF95463176C75C78 get_CE93C35B755802BC4B3D180716B048FC61701EF7_82() const { return ___CE93C35B755802BC4B3D180716B048FC61701EF7_82; }
inline __StaticArrayInitTypeSizeU3D6_tC937DCE458F6AE4186120B4DDF95463176C75C78 * get_address_of_CE93C35B755802BC4B3D180716B048FC61701EF7_82() { return &___CE93C35B755802BC4B3D180716B048FC61701EF7_82; }
inline void set_CE93C35B755802BC4B3D180716B048FC61701EF7_82(__StaticArrayInitTypeSizeU3D6_tC937DCE458F6AE4186120B4DDF95463176C75C78 value)
{
___CE93C35B755802BC4B3D180716B048FC61701EF7_82 = value;
}
inline static int32_t get_offset_of_D117188BE8D4609C0D531C51B0BB911A4219DEBE_83() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___D117188BE8D4609C0D531C51B0BB911A4219DEBE_83)); }
inline __StaticArrayInitTypeSizeU3D32_t06FF35439BDF1A6AAB50820787FA5D7A4FA09472 get_D117188BE8D4609C0D531C51B0BB911A4219DEBE_83() const { return ___D117188BE8D4609C0D531C51B0BB911A4219DEBE_83; }
inline __StaticArrayInitTypeSizeU3D32_t06FF35439BDF1A6AAB50820787FA5D7A4FA09472 * get_address_of_D117188BE8D4609C0D531C51B0BB911A4219DEBE_83() { return &___D117188BE8D4609C0D531C51B0BB911A4219DEBE_83; }
inline void set_D117188BE8D4609C0D531C51B0BB911A4219DEBE_83(__StaticArrayInitTypeSizeU3D32_t06FF35439BDF1A6AAB50820787FA5D7A4FA09472 value)
{
___D117188BE8D4609C0D531C51B0BB911A4219DEBE_83 = value;
}
inline static int32_t get_offset_of_D78D08081C7A5AD6FBA7A8DC86BCD6D7A577C636_84() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___D78D08081C7A5AD6FBA7A8DC86BCD6D7A577C636_84)); }
inline __StaticArrayInitTypeSizeU3D44_t1383A9A990CD22E4246B656157D17C8051BFAD7F get_D78D08081C7A5AD6FBA7A8DC86BCD6D7A577C636_84() const { return ___D78D08081C7A5AD6FBA7A8DC86BCD6D7A577C636_84; }
inline __StaticArrayInitTypeSizeU3D44_t1383A9A990CD22E4246B656157D17C8051BFAD7F * get_address_of_D78D08081C7A5AD6FBA7A8DC86BCD6D7A577C636_84() { return &___D78D08081C7A5AD6FBA7A8DC86BCD6D7A577C636_84; }
inline void set_D78D08081C7A5AD6FBA7A8DC86BCD6D7A577C636_84(__StaticArrayInitTypeSizeU3D44_t1383A9A990CD22E4246B656157D17C8051BFAD7F value)
{
___D78D08081C7A5AD6FBA7A8DC86BCD6D7A577C636_84 = value;
}
inline static int32_t get_offset_of_DA19DB47B583EFCF7825D2E39D661D2354F28219_85() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___DA19DB47B583EFCF7825D2E39D661D2354F28219_85)); }
inline __StaticArrayInitTypeSizeU3D76_t83BE44A74AC13CD15474DA7726C9C92BD317CFFB get_DA19DB47B583EFCF7825D2E39D661D2354F28219_85() const { return ___DA19DB47B583EFCF7825D2E39D661D2354F28219_85; }
inline __StaticArrayInitTypeSizeU3D76_t83BE44A74AC13CD15474DA7726C9C92BD317CFFB * get_address_of_DA19DB47B583EFCF7825D2E39D661D2354F28219_85() { return &___DA19DB47B583EFCF7825D2E39D661D2354F28219_85; }
inline void set_DA19DB47B583EFCF7825D2E39D661D2354F28219_85(__StaticArrayInitTypeSizeU3D76_t83BE44A74AC13CD15474DA7726C9C92BD317CFFB value)
{
___DA19DB47B583EFCF7825D2E39D661D2354F28219_85 = value;
}
inline static int32_t get_offset_of_DD3AEFEADB1CD615F3017763F1568179FEE640B0_86() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___DD3AEFEADB1CD615F3017763F1568179FEE640B0_86)); }
inline __StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A get_DD3AEFEADB1CD615F3017763F1568179FEE640B0_86() const { return ___DD3AEFEADB1CD615F3017763F1568179FEE640B0_86; }
inline __StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A * get_address_of_DD3AEFEADB1CD615F3017763F1568179FEE640B0_86() { return &___DD3AEFEADB1CD615F3017763F1568179FEE640B0_86; }
inline void set_DD3AEFEADB1CD615F3017763F1568179FEE640B0_86(__StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A value)
{
___DD3AEFEADB1CD615F3017763F1568179FEE640B0_86 = value;
}
inline static int32_t get_offset_of_E1827270A5FE1C85F5352A66FD87BA747213D006_87() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___E1827270A5FE1C85F5352A66FD87BA747213D006_87)); }
inline __StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 get_E1827270A5FE1C85F5352A66FD87BA747213D006_87() const { return ___E1827270A5FE1C85F5352A66FD87BA747213D006_87; }
inline __StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 * get_address_of_E1827270A5FE1C85F5352A66FD87BA747213D006_87() { return &___E1827270A5FE1C85F5352A66FD87BA747213D006_87; }
inline void set_E1827270A5FE1C85F5352A66FD87BA747213D006_87(__StaticArrayInitTypeSizeU3D36_t553C250FA8609975E44273C4AD8F28E487272E17 value)
{
___E1827270A5FE1C85F5352A66FD87BA747213D006_87 = value;
}
inline static int32_t get_offset_of_E45BAB43F7D5D038672B3E3431F92E34A7AF2571_88() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___E45BAB43F7D5D038672B3E3431F92E34A7AF2571_88)); }
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_E45BAB43F7D5D038672B3E3431F92E34A7AF2571_88() const { return ___E45BAB43F7D5D038672B3E3431F92E34A7AF2571_88; }
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_E45BAB43F7D5D038672B3E3431F92E34A7AF2571_88() { return &___E45BAB43F7D5D038672B3E3431F92E34A7AF2571_88; }
inline void set_E45BAB43F7D5D038672B3E3431F92E34A7AF2571_88(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value)
{
___E45BAB43F7D5D038672B3E3431F92E34A7AF2571_88 = value;
}
inline static int32_t get_offset_of_E92B39D8233061927D9ACDE54665E68E7535635A_89() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___E92B39D8233061927D9ACDE54665E68E7535635A_89)); }
inline __StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A get_E92B39D8233061927D9ACDE54665E68E7535635A_89() const { return ___E92B39D8233061927D9ACDE54665E68E7535635A_89; }
inline __StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A * get_address_of_E92B39D8233061927D9ACDE54665E68E7535635A_89() { return &___E92B39D8233061927D9ACDE54665E68E7535635A_89; }
inline void set_E92B39D8233061927D9ACDE54665E68E7535635A_89(__StaticArrayInitTypeSizeU3D52_tF7B918A088A367994FBAEB73123296D8929B543A value)
{
___E92B39D8233061927D9ACDE54665E68E7535635A_89 = value;
}
inline static int32_t get_offset_of_EA9506959484C55CFE0C139C624DF6060E285866_90() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___EA9506959484C55CFE0C139C624DF6060E285866_90)); }
inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 get_EA9506959484C55CFE0C139C624DF6060E285866_90() const { return ___EA9506959484C55CFE0C139C624DF6060E285866_90; }
inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 * get_address_of_EA9506959484C55CFE0C139C624DF6060E285866_90() { return &___EA9506959484C55CFE0C139C624DF6060E285866_90; }
inline void set_EA9506959484C55CFE0C139C624DF6060E285866_90(__StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 value)
{
___EA9506959484C55CFE0C139C624DF6060E285866_90 = value;
}
inline static int32_t get_offset_of_EB5E9A80A40096AB74D2E226650C7258D7BC5E9D_91() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___EB5E9A80A40096AB74D2E226650C7258D7BC5E9D_91)); }
inline __StaticArrayInitTypeSizeU3D262_t93124A1A3E9EDF7F1F305BD2FC57372646F3CFD7 get_EB5E9A80A40096AB74D2E226650C7258D7BC5E9D_91() const { return ___EB5E9A80A40096AB74D2E226650C7258D7BC5E9D_91; }
inline __StaticArrayInitTypeSizeU3D262_t93124A1A3E9EDF7F1F305BD2FC57372646F3CFD7 * get_address_of_EB5E9A80A40096AB74D2E226650C7258D7BC5E9D_91() { return &___EB5E9A80A40096AB74D2E226650C7258D7BC5E9D_91; }
inline void set_EB5E9A80A40096AB74D2E226650C7258D7BC5E9D_91(__StaticArrayInitTypeSizeU3D262_t93124A1A3E9EDF7F1F305BD2FC57372646F3CFD7 value)
{
___EB5E9A80A40096AB74D2E226650C7258D7BC5E9D_91 = value;
}
inline static int32_t get_offset_of_EBF68F411848D603D059DFDEA2321C5A5EA78044_92() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___EBF68F411848D603D059DFDEA2321C5A5EA78044_92)); }
inline __StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6 get_EBF68F411848D603D059DFDEA2321C5A5EA78044_92() const { return ___EBF68F411848D603D059DFDEA2321C5A5EA78044_92; }
inline __StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6 * get_address_of_EBF68F411848D603D059DFDEA2321C5A5EA78044_92() { return &___EBF68F411848D603D059DFDEA2321C5A5EA78044_92; }
inline void set_EBF68F411848D603D059DFDEA2321C5A5EA78044_92(__StaticArrayInitTypeSizeU3D64_tC44517F575DC9AEC7589A864FEA072030961DAF6 value)
{
___EBF68F411848D603D059DFDEA2321C5A5EA78044_92 = value;
}
inline static int32_t get_offset_of_EC89C317EA2BF49A70EFF5E89C691E34733D7C37_93() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___EC89C317EA2BF49A70EFF5E89C691E34733D7C37_93)); }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_EC89C317EA2BF49A70EFF5E89C691E34733D7C37_93() const { return ___EC89C317EA2BF49A70EFF5E89C691E34733D7C37_93; }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_EC89C317EA2BF49A70EFF5E89C691E34733D7C37_93() { return &___EC89C317EA2BF49A70EFF5E89C691E34733D7C37_93; }
inline void set_EC89C317EA2BF49A70EFF5E89C691E34733D7C37_93(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value)
{
___EC89C317EA2BF49A70EFF5E89C691E34733D7C37_93 = value;
}
inline static int32_t get_offset_of_F06E829E62F3AFBC045D064E10A4F5DF7C969612_94() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___F06E829E62F3AFBC045D064E10A4F5DF7C969612_94)); }
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 get_F06E829E62F3AFBC045D064E10A4F5DF7C969612_94() const { return ___F06E829E62F3AFBC045D064E10A4F5DF7C969612_94; }
inline __StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 * get_address_of_F06E829E62F3AFBC045D064E10A4F5DF7C969612_94() { return &___F06E829E62F3AFBC045D064E10A4F5DF7C969612_94; }
inline void set_F06E829E62F3AFBC045D064E10A4F5DF7C969612_94(__StaticArrayInitTypeSizeU3D40_t0453B23B081EF301CB1E3167001650AD0C490F04 value)
{
___F06E829E62F3AFBC045D064E10A4F5DF7C969612_94 = value;
}
inline static int32_t get_offset_of_F073AA332018FDA0D572E99448FFF1D6422BD520_95() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___F073AA332018FDA0D572E99448FFF1D6422BD520_95)); }
inline __StaticArrayInitTypeSizeU3D11614_tDF34959BE752359A89A4A577B8798D2D66A5E7F5 get_F073AA332018FDA0D572E99448FFF1D6422BD520_95() const { return ___F073AA332018FDA0D572E99448FFF1D6422BD520_95; }
inline __StaticArrayInitTypeSizeU3D11614_tDF34959BE752359A89A4A577B8798D2D66A5E7F5 * get_address_of_F073AA332018FDA0D572E99448FFF1D6422BD520_95() { return &___F073AA332018FDA0D572E99448FFF1D6422BD520_95; }
inline void set_F073AA332018FDA0D572E99448FFF1D6422BD520_95(__StaticArrayInitTypeSizeU3D11614_tDF34959BE752359A89A4A577B8798D2D66A5E7F5 value)
{
___F073AA332018FDA0D572E99448FFF1D6422BD520_95 = value;
}
inline static int32_t get_offset_of_F34B0E10653402E8F788F8BC3F7CD7090928A429_96() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___F34B0E10653402E8F788F8BC3F7CD7090928A429_96)); }
inline __StaticArrayInitTypeSizeU3D120_tBA46FD2E9DA153FD8457EE7F425E8ECC517EA252 get_F34B0E10653402E8F788F8BC3F7CD7090928A429_96() const { return ___F34B0E10653402E8F788F8BC3F7CD7090928A429_96; }
inline __StaticArrayInitTypeSizeU3D120_tBA46FD2E9DA153FD8457EE7F425E8ECC517EA252 * get_address_of_F34B0E10653402E8F788F8BC3F7CD7090928A429_96() { return &___F34B0E10653402E8F788F8BC3F7CD7090928A429_96; }
inline void set_F34B0E10653402E8F788F8BC3F7CD7090928A429_96(__StaticArrayInitTypeSizeU3D120_tBA46FD2E9DA153FD8457EE7F425E8ECC517EA252 value)
{
___F34B0E10653402E8F788F8BC3F7CD7090928A429_96 = value;
}
inline static int32_t get_offset_of_F37E34BEADB04F34FCC31078A59F49856CA83D5B_97() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___F37E34BEADB04F34FCC31078A59F49856CA83D5B_97)); }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 get_F37E34BEADB04F34FCC31078A59F49856CA83D5B_97() const { return ___F37E34BEADB04F34FCC31078A59F49856CA83D5B_97; }
inline __StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 * get_address_of_F37E34BEADB04F34FCC31078A59F49856CA83D5B_97() { return &___F37E34BEADB04F34FCC31078A59F49856CA83D5B_97; }
inline void set_F37E34BEADB04F34FCC31078A59F49856CA83D5B_97(__StaticArrayInitTypeSizeU3D72_tF9B2DE61B68289FA0233B6E305B08B2FCD612FA1 value)
{
___F37E34BEADB04F34FCC31078A59F49856CA83D5B_97 = value;
}
inline static int32_t get_offset_of_F512A9ABF88066AAEB92684F95CC05D8101B462B_98() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___F512A9ABF88066AAEB92684F95CC05D8101B462B_98)); }
inline __StaticArrayInitTypeSizeU3D94_t23554D8B96399688002A3BE81C7C15EFB011DEC6 get_F512A9ABF88066AAEB92684F95CC05D8101B462B_98() const { return ___F512A9ABF88066AAEB92684F95CC05D8101B462B_98; }
inline __StaticArrayInitTypeSizeU3D94_t23554D8B96399688002A3BE81C7C15EFB011DEC6 * get_address_of_F512A9ABF88066AAEB92684F95CC05D8101B462B_98() { return &___F512A9ABF88066AAEB92684F95CC05D8101B462B_98; }
inline void set_F512A9ABF88066AAEB92684F95CC05D8101B462B_98(__StaticArrayInitTypeSizeU3D94_t23554D8B96399688002A3BE81C7C15EFB011DEC6 value)
{
___F512A9ABF88066AAEB92684F95CC05D8101B462B_98 = value;
}
inline static int32_t get_offset_of_F8FAABB821300AA500C2CEC6091B3782A7FB44A4_99() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___F8FAABB821300AA500C2CEC6091B3782A7FB44A4_99)); }
inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 get_F8FAABB821300AA500C2CEC6091B3782A7FB44A4_99() const { return ___F8FAABB821300AA500C2CEC6091B3782A7FB44A4_99; }
inline __StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 * get_address_of_F8FAABB821300AA500C2CEC6091B3782A7FB44A4_99() { return &___F8FAABB821300AA500C2CEC6091B3782A7FB44A4_99; }
inline void set_F8FAABB821300AA500C2CEC6091B3782A7FB44A4_99(__StaticArrayInitTypeSizeU3D12_tB4B4C95019D88097B57DE7B50445942256BF2879 value)
{
___F8FAABB821300AA500C2CEC6091B3782A7FB44A4_99 = value;
}
inline static int32_t get_offset_of_FCBD2781A933F0828ED4AAF88FD8B08D76DDD49B_100() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A_StaticFields, ___FCBD2781A933F0828ED4AAF88FD8B08D76DDD49B_100)); }
inline __StaticArrayInitTypeSizeU3D2350_t96984AEF232104302694B7EFDA3F92BC42BF207D get_FCBD2781A933F0828ED4AAF88FD8B08D76DDD49B_100() const { return ___FCBD2781A933F0828ED4AAF88FD8B08D76DDD49B_100; }
inline __StaticArrayInitTypeSizeU3D2350_t96984AEF232104302694B7EFDA3F92BC42BF207D * get_address_of_FCBD2781A933F0828ED4AAF88FD8B08D76DDD49B_100() { return &___FCBD2781A933F0828ED4AAF88FD8B08D76DDD49B_100; }
inline void set_FCBD2781A933F0828ED4AAF88FD8B08D76DDD49B_100(__StaticArrayInitTypeSizeU3D2350_t96984AEF232104302694B7EFDA3F92BC42BF207D value)
{
___FCBD2781A933F0828ED4AAF88FD8B08D76DDD49B_100 = value;
}
};
// System.Collections.Hashtable
struct Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 : public RuntimeObject
{
public:
// System.Collections.Hashtable_bucket[] System.Collections.Hashtable::buckets
bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* ___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_t978F65B8006C8F5504B286526AEC6608FF983FC9, ___buckets_0)); }
inline bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* get_buckets_0() const { return ___buckets_0; }
inline bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A** get_address_of_buckets_0() { return &___buckets_0; }
inline void set_buckets_0(bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* 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_t978F65B8006C8F5504B286526AEC6608FF983FC9, ___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_t978F65B8006C8F5504B286526AEC6608FF983FC9, ___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_t978F65B8006C8F5504B286526AEC6608FF983FC9, ___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_t978F65B8006C8F5504B286526AEC6608FF983FC9, ___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_t978F65B8006C8F5504B286526AEC6608FF983FC9, ___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_t978F65B8006C8F5504B286526AEC6608FF983FC9, ___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_t978F65B8006C8F5504B286526AEC6608FF983FC9, ___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_t978F65B8006C8F5504B286526AEC6608FF983FC9, ____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_t978F65B8006C8F5504B286526AEC6608FF983FC9, ____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_t2E01225594844040BE12231E6A14F85FCB78C597
{
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_t2E01225594844040BE12231E6A14F85FCB78C597, ___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_t0196714F06D59B40580F7B85EA2663D81394682C
{
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_t0196714F06D59B40580F7B85EA2663D81394682C, ___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_tCB55098B71E4DCCEE972B1056E64D1B8AB9EAB34
{
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_tCB55098B71E4DCCEE972B1056E64D1B8AB9EAB34, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// System.Exception
struct Exception_t : public RuntimeObject
{
public:
// System.String System.Exception::_className
String_t* ____className_1;
// System.String System.Exception::_message
String_t* ____message_2;
// System.Collections.IDictionary System.Exception::_data
RuntimeObject* ____data_3;
// System.Exception System.Exception::_innerException
Exception_t * ____innerException_4;
// System.String System.Exception::_helpURL
String_t* ____helpURL_5;
// System.Object System.Exception::_stackTrace
RuntimeObject * ____stackTrace_6;
// System.String System.Exception::_stackTraceString
String_t* ____stackTraceString_7;
// System.String System.Exception::_remoteStackTraceString
String_t* ____remoteStackTraceString_8;
// System.Int32 System.Exception::_remoteStackIndex
int32_t ____remoteStackIndex_9;
// System.Object System.Exception::_dynamicMethods
RuntimeObject * ____dynamicMethods_10;
// System.Int32 System.Exception::_HResult
int32_t ____HResult_11;
// System.String System.Exception::_source
String_t* ____source_12;
// System.Runtime.Serialization.SafeSerializationManager System.Exception::_safeSerializationManager
SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * ____safeSerializationManager_13;
// System.Diagnostics.StackTrace[] System.Exception::captured_traces
StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* ___captured_traces_14;
// System.IntPtr[] System.Exception::native_trace_ips
IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD* ___native_trace_ips_15;
public:
inline static int32_t get_offset_of__className_1() { return static_cast<int32_t>(offsetof(Exception_t, ____className_1)); }
inline String_t* get__className_1() const { return ____className_1; }
inline String_t** get_address_of__className_1() { return &____className_1; }
inline void set__className_1(String_t* value)
{
____className_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____className_1), (void*)value);
}
inline static int32_t get_offset_of__message_2() { return static_cast<int32_t>(offsetof(Exception_t, ____message_2)); }
inline String_t* get__message_2() const { return ____message_2; }
inline String_t** get_address_of__message_2() { return &____message_2; }
inline void set__message_2(String_t* value)
{
____message_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____message_2), (void*)value);
}
inline static int32_t get_offset_of__data_3() { return static_cast<int32_t>(offsetof(Exception_t, ____data_3)); }
inline RuntimeObject* get__data_3() const { return ____data_3; }
inline RuntimeObject** get_address_of__data_3() { return &____data_3; }
inline void set__data_3(RuntimeObject* value)
{
____data_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____data_3), (void*)value);
}
inline static int32_t get_offset_of__innerException_4() { return static_cast<int32_t>(offsetof(Exception_t, ____innerException_4)); }
inline Exception_t * get__innerException_4() const { return ____innerException_4; }
inline Exception_t ** get_address_of__innerException_4() { return &____innerException_4; }
inline void set__innerException_4(Exception_t * value)
{
____innerException_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____innerException_4), (void*)value);
}
inline static int32_t get_offset_of__helpURL_5() { return static_cast<int32_t>(offsetof(Exception_t, ____helpURL_5)); }
inline String_t* get__helpURL_5() const { return ____helpURL_5; }
inline String_t** get_address_of__helpURL_5() { return &____helpURL_5; }
inline void set__helpURL_5(String_t* value)
{
____helpURL_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____helpURL_5), (void*)value);
}
inline static int32_t get_offset_of__stackTrace_6() { return static_cast<int32_t>(offsetof(Exception_t, ____stackTrace_6)); }
inline RuntimeObject * get__stackTrace_6() const { return ____stackTrace_6; }
inline RuntimeObject ** get_address_of__stackTrace_6() { return &____stackTrace_6; }
inline void set__stackTrace_6(RuntimeObject * value)
{
____stackTrace_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&____stackTrace_6), (void*)value);
}
inline static int32_t get_offset_of__stackTraceString_7() { return static_cast<int32_t>(offsetof(Exception_t, ____stackTraceString_7)); }
inline String_t* get__stackTraceString_7() const { return ____stackTraceString_7; }
inline String_t** get_address_of__stackTraceString_7() { return &____stackTraceString_7; }
inline void set__stackTraceString_7(String_t* value)
{
____stackTraceString_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&____stackTraceString_7), (void*)value);
}
inline static int32_t get_offset_of__remoteStackTraceString_8() { return static_cast<int32_t>(offsetof(Exception_t, ____remoteStackTraceString_8)); }
inline String_t* get__remoteStackTraceString_8() const { return ____remoteStackTraceString_8; }
inline String_t** get_address_of__remoteStackTraceString_8() { return &____remoteStackTraceString_8; }
inline void set__remoteStackTraceString_8(String_t* value)
{
____remoteStackTraceString_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&____remoteStackTraceString_8), (void*)value);
}
inline static int32_t get_offset_of__remoteStackIndex_9() { return static_cast<int32_t>(offsetof(Exception_t, ____remoteStackIndex_9)); }
inline int32_t get__remoteStackIndex_9() const { return ____remoteStackIndex_9; }
inline int32_t* get_address_of__remoteStackIndex_9() { return &____remoteStackIndex_9; }
inline void set__remoteStackIndex_9(int32_t value)
{
____remoteStackIndex_9 = value;
}
inline static int32_t get_offset_of__dynamicMethods_10() { return static_cast<int32_t>(offsetof(Exception_t, ____dynamicMethods_10)); }
inline RuntimeObject * get__dynamicMethods_10() const { return ____dynamicMethods_10; }
inline RuntimeObject ** get_address_of__dynamicMethods_10() { return &____dynamicMethods_10; }
inline void set__dynamicMethods_10(RuntimeObject * value)
{
____dynamicMethods_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&____dynamicMethods_10), (void*)value);
}
inline static int32_t get_offset_of__HResult_11() { return static_cast<int32_t>(offsetof(Exception_t, ____HResult_11)); }
inline int32_t get__HResult_11() const { return ____HResult_11; }
inline int32_t* get_address_of__HResult_11() { return &____HResult_11; }
inline void set__HResult_11(int32_t value)
{
____HResult_11 = value;
}
inline static int32_t get_offset_of__source_12() { return static_cast<int32_t>(offsetof(Exception_t, ____source_12)); }
inline String_t* get__source_12() const { return ____source_12; }
inline String_t** get_address_of__source_12() { return &____source_12; }
inline void set__source_12(String_t* value)
{
____source_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&____source_12), (void*)value);
}
inline static int32_t get_offset_of__safeSerializationManager_13() { return static_cast<int32_t>(offsetof(Exception_t, ____safeSerializationManager_13)); }
inline SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * get__safeSerializationManager_13() const { return ____safeSerializationManager_13; }
inline SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 ** get_address_of__safeSerializationManager_13() { return &____safeSerializationManager_13; }
inline void set__safeSerializationManager_13(SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * value)
{
____safeSerializationManager_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&____safeSerializationManager_13), (void*)value);
}
inline static int32_t get_offset_of_captured_traces_14() { return static_cast<int32_t>(offsetof(Exception_t, ___captured_traces_14)); }
inline StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* get_captured_traces_14() const { return ___captured_traces_14; }
inline StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196** get_address_of_captured_traces_14() { return &___captured_traces_14; }
inline void set_captured_traces_14(StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* value)
{
___captured_traces_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&___captured_traces_14), (void*)value);
}
inline static int32_t get_offset_of_native_trace_ips_15() { return static_cast<int32_t>(offsetof(Exception_t, ___native_trace_ips_15)); }
inline IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD* get_native_trace_ips_15() const { return ___native_trace_ips_15; }
inline IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD** get_address_of_native_trace_ips_15() { return &___native_trace_ips_15; }
inline void set_native_trace_ips_15(IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD* value)
{
___native_trace_ips_15 = value;
Il2CppCodeGenWriteBarrier((void**)(&___native_trace_ips_15), (void*)value);
}
};
struct Exception_t_StaticFields
{
public:
// System.Object System.Exception::s_EDILock
RuntimeObject * ___s_EDILock_0;
public:
inline static int32_t get_offset_of_s_EDILock_0() { return static_cast<int32_t>(offsetof(Exception_t_StaticFields, ___s_EDILock_0)); }
inline RuntimeObject * get_s_EDILock_0() const { return ___s_EDILock_0; }
inline RuntimeObject ** get_address_of_s_EDILock_0() { return &___s_EDILock_0; }
inline void set_s_EDILock_0(RuntimeObject * value)
{
___s_EDILock_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_EDILock_0), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Exception
struct Exception_t_marshaled_pinvoke
{
char* ____className_1;
char* ____message_2;
RuntimeObject* ____data_3;
Exception_t_marshaled_pinvoke* ____innerException_4;
char* ____helpURL_5;
Il2CppIUnknown* ____stackTrace_6;
char* ____stackTraceString_7;
char* ____remoteStackTraceString_8;
int32_t ____remoteStackIndex_9;
Il2CppIUnknown* ____dynamicMethods_10;
int32_t ____HResult_11;
char* ____source_12;
SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * ____safeSerializationManager_13;
StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* ___captured_traces_14;
Il2CppSafeArray/*NONE*/* ___native_trace_ips_15;
};
// Native definition for COM marshalling of System.Exception
struct Exception_t_marshaled_com
{
Il2CppChar* ____className_1;
Il2CppChar* ____message_2;
RuntimeObject* ____data_3;
Exception_t_marshaled_com* ____innerException_4;
Il2CppChar* ____helpURL_5;
Il2CppIUnknown* ____stackTrace_6;
Il2CppChar* ____stackTraceString_7;
Il2CppChar* ____remoteStackTraceString_8;
int32_t ____remoteStackIndex_9;
Il2CppIUnknown* ____dynamicMethods_10;
int32_t ____HResult_11;
Il2CppChar* ____source_12;
SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * ____safeSerializationManager_13;
StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* ___captured_traces_14;
Il2CppSafeArray/*NONE*/* ___native_trace_ips_15;
};
// System.Globalization.CompareOptions
struct CompareOptions_t163DCEA9A0972750294CC1A8348E5CA69E943939
{
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_t163DCEA9A0972750294CC1A8348E5CA69E943939, ___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.FileAccess
struct FileAccess_t31950F3A853EAE886AC8F13EA7FC03A3EB46E3F6
{
public:
// System.Int32 System.IO.FileAccess::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(FileAccess_t31950F3A853EAE886AC8F13EA7FC03A3EB46E3F6, ___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.StreamReader
struct StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E : public TextReader_t7DF8314B601D202ECFEDF623093A87BFDAB58D0A
{
public:
// System.IO.Stream System.IO.StreamReader::stream
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___stream_5;
// System.Text.Encoding System.IO.StreamReader::encoding
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___encoding_6;
// System.Text.Decoder System.IO.StreamReader::decoder
Decoder_tEEF45EB6F965222036C49E8EC6BA8A0692AA1F26 * ___decoder_7;
// System.Byte[] System.IO.StreamReader::byteBuffer
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___byteBuffer_8;
// System.Char[] System.IO.StreamReader::charBuffer
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___charBuffer_9;
// System.Byte[] System.IO.StreamReader::_preamble
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ____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_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * ____asyncReadTask_20;
public:
inline static int32_t get_offset_of_stream_5() { return static_cast<int32_t>(offsetof(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ___stream_5)); }
inline Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * get_stream_5() const { return ___stream_5; }
inline Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 ** get_address_of_stream_5() { return &___stream_5; }
inline void set_stream_5(Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * 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_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ___encoding_6)); }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_encoding_6() const { return ___encoding_6; }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_encoding_6() { return &___encoding_6; }
inline void set_encoding_6(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * 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_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ___decoder_7)); }
inline Decoder_tEEF45EB6F965222036C49E8EC6BA8A0692AA1F26 * get_decoder_7() const { return ___decoder_7; }
inline Decoder_tEEF45EB6F965222036C49E8EC6BA8A0692AA1F26 ** get_address_of_decoder_7() { return &___decoder_7; }
inline void set_decoder_7(Decoder_tEEF45EB6F965222036C49E8EC6BA8A0692AA1F26 * 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_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ___byteBuffer_8)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_byteBuffer_8() const { return ___byteBuffer_8; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_byteBuffer_8() { return &___byteBuffer_8; }
inline void set_byteBuffer_8(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* 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_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ___charBuffer_9)); }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_charBuffer_9() const { return ___charBuffer_9; }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_charBuffer_9() { return &___charBuffer_9; }
inline void set_charBuffer_9(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* 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_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ____preamble_10)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get__preamble_10() const { return ____preamble_10; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of__preamble_10() { return &____preamble_10; }
inline void set__preamble_10(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* 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_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ___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_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ___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_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ___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_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ___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_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ____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_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ____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_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ____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_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ____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_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ____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_t62E68063760DCD2FC036AE132DE69C24B7ED001E, ____asyncReadTask_20)); }
inline Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * get__asyncReadTask_20() const { return ____asyncReadTask_20; }
inline Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 ** get_address_of__asyncReadTask_20() { return &____asyncReadTask_20; }
inline void set__asyncReadTask_20(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * value)
{
____asyncReadTask_20 = value;
Il2CppCodeGenWriteBarrier((void**)(&____asyncReadTask_20), (void*)value);
}
};
struct StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E_StaticFields
{
public:
// System.IO.StreamReader System.IO.StreamReader::Null
StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * ___Null_4;
public:
inline static int32_t get_offset_of_Null_4() { return static_cast<int32_t>(offsetof(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E_StaticFields, ___Null_4)); }
inline StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * get_Null_4() const { return ___Null_4; }
inline StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E ** get_address_of_Null_4() { return &___Null_4; }
inline void set_Null_4(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * value)
{
___Null_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Null_4), (void*)value);
}
};
// System.IO.StreamWriter
struct StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E : public TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0
{
public:
// System.IO.Stream System.IO.StreamWriter::stream
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___stream_12;
// System.Text.Encoding System.IO.StreamWriter::encoding
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___encoding_13;
// System.Text.Encoder System.IO.StreamWriter::encoder
Encoder_t29B2697B0B775EABC52EBFB914F327BE9B1A3464 * ___encoder_14;
// System.Byte[] System.IO.StreamWriter::byteBuffer
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___byteBuffer_15;
// System.Char[] System.IO.StreamWriter::charBuffer
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___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_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * ____asyncWriteTask_22;
public:
inline static int32_t get_offset_of_stream_12() { return static_cast<int32_t>(offsetof(StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E, ___stream_12)); }
inline Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * get_stream_12() const { return ___stream_12; }
inline Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 ** get_address_of_stream_12() { return &___stream_12; }
inline void set_stream_12(Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * 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_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E, ___encoding_13)); }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_encoding_13() const { return ___encoding_13; }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_encoding_13() { return &___encoding_13; }
inline void set_encoding_13(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * 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_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E, ___encoder_14)); }
inline Encoder_t29B2697B0B775EABC52EBFB914F327BE9B1A3464 * get_encoder_14() const { return ___encoder_14; }
inline Encoder_t29B2697B0B775EABC52EBFB914F327BE9B1A3464 ** get_address_of_encoder_14() { return &___encoder_14; }
inline void set_encoder_14(Encoder_t29B2697B0B775EABC52EBFB914F327BE9B1A3464 * 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_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E, ___byteBuffer_15)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_byteBuffer_15() const { return ___byteBuffer_15; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_byteBuffer_15() { return &___byteBuffer_15; }
inline void set_byteBuffer_15(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* 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_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E, ___charBuffer_16)); }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_charBuffer_16() const { return ___charBuffer_16; }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_charBuffer_16() { return &___charBuffer_16; }
inline void set_charBuffer_16(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* 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_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E, ___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_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E, ___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_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E, ___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_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E, ___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_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E, ___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_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E, ____asyncWriteTask_22)); }
inline Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * get__asyncWriteTask_22() const { return ____asyncWriteTask_22; }
inline Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 ** get_address_of__asyncWriteTask_22() { return &____asyncWriteTask_22; }
inline void set__asyncWriteTask_22(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * value)
{
____asyncWriteTask_22 = value;
Il2CppCodeGenWriteBarrier((void**)(&____asyncWriteTask_22), (void*)value);
}
};
struct StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E_StaticFields
{
public:
// System.IO.StreamWriter System.IO.StreamWriter::Null
StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E * ___Null_11;
// System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.IO.StreamWriter::_UTF8NoBOM
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ____UTF8NoBOM_23;
public:
inline static int32_t get_offset_of_Null_11() { return static_cast<int32_t>(offsetof(StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E_StaticFields, ___Null_11)); }
inline StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E * get_Null_11() const { return ___Null_11; }
inline StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E ** get_address_of_Null_11() { return &___Null_11; }
inline void set_Null_11(StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E * 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_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E_StaticFields, ____UTF8NoBOM_23)); }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get__UTF8NoBOM_23() const { return ____UTF8NoBOM_23; }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of__UTF8NoBOM_23() { return &____UTF8NoBOM_23; }
inline void set__UTF8NoBOM_23(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * 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_t5267893EB7CB9C12F7B9B463FD4C221BEA03326E * ___resolve_event_holder_1;
// System.Object System.Reflection.Assembly::_evidence
RuntimeObject * ____evidence_2;
// System.Object System.Reflection.Assembly::_minimum
RuntimeObject * ____minimum_3;
// System.Object System.Reflection.Assembly::_optional
RuntimeObject * ____optional_4;
// System.Object System.Reflection.Assembly::_refuse
RuntimeObject * ____refuse_5;
// System.Object System.Reflection.Assembly::_granted
RuntimeObject * ____granted_6;
// System.Object System.Reflection.Assembly::_denied
RuntimeObject * ____denied_7;
// System.Boolean System.Reflection.Assembly::fromByteArray
bool ___fromByteArray_8;
// System.String System.Reflection.Assembly::assemblyName
String_t* ___assemblyName_9;
public:
inline static int32_t get_offset_of__mono_assembly_0() { return static_cast<int32_t>(offsetof(Assembly_t, ____mono_assembly_0)); }
inline intptr_t get__mono_assembly_0() const { return ____mono_assembly_0; }
inline intptr_t* get_address_of__mono_assembly_0() { return &____mono_assembly_0; }
inline void set__mono_assembly_0(intptr_t value)
{
____mono_assembly_0 = value;
}
inline static int32_t get_offset_of_resolve_event_holder_1() { return static_cast<int32_t>(offsetof(Assembly_t, ___resolve_event_holder_1)); }
inline ResolveEventHolder_t5267893EB7CB9C12F7B9B463FD4C221BEA03326E * get_resolve_event_holder_1() const { return ___resolve_event_holder_1; }
inline ResolveEventHolder_t5267893EB7CB9C12F7B9B463FD4C221BEA03326E ** get_address_of_resolve_event_holder_1() { return &___resolve_event_holder_1; }
inline void set_resolve_event_holder_1(ResolveEventHolder_t5267893EB7CB9C12F7B9B463FD4C221BEA03326E * value)
{
___resolve_event_holder_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___resolve_event_holder_1), (void*)value);
}
inline static int32_t get_offset_of__evidence_2() { return static_cast<int32_t>(offsetof(Assembly_t, ____evidence_2)); }
inline RuntimeObject * get__evidence_2() const { return ____evidence_2; }
inline RuntimeObject ** get_address_of__evidence_2() { return &____evidence_2; }
inline void set__evidence_2(RuntimeObject * value)
{
____evidence_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____evidence_2), (void*)value);
}
inline static int32_t get_offset_of__minimum_3() { return static_cast<int32_t>(offsetof(Assembly_t, ____minimum_3)); }
inline RuntimeObject * get__minimum_3() const { return ____minimum_3; }
inline RuntimeObject ** get_address_of__minimum_3() { return &____minimum_3; }
inline void set__minimum_3(RuntimeObject * value)
{
____minimum_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____minimum_3), (void*)value);
}
inline static int32_t get_offset_of__optional_4() { return static_cast<int32_t>(offsetof(Assembly_t, ____optional_4)); }
inline RuntimeObject * get__optional_4() const { return ____optional_4; }
inline RuntimeObject ** get_address_of__optional_4() { return &____optional_4; }
inline void set__optional_4(RuntimeObject * value)
{
____optional_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____optional_4), (void*)value);
}
inline static int32_t get_offset_of__refuse_5() { return static_cast<int32_t>(offsetof(Assembly_t, ____refuse_5)); }
inline RuntimeObject * get__refuse_5() const { return ____refuse_5; }
inline RuntimeObject ** get_address_of__refuse_5() { return &____refuse_5; }
inline void set__refuse_5(RuntimeObject * value)
{
____refuse_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____refuse_5), (void*)value);
}
inline static int32_t get_offset_of__granted_6() { return static_cast<int32_t>(offsetof(Assembly_t, ____granted_6)); }
inline RuntimeObject * get__granted_6() const { return ____granted_6; }
inline RuntimeObject ** get_address_of__granted_6() { return &____granted_6; }
inline void set__granted_6(RuntimeObject * value)
{
____granted_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&____granted_6), (void*)value);
}
inline static int32_t get_offset_of__denied_7() { return static_cast<int32_t>(offsetof(Assembly_t, ____denied_7)); }
inline RuntimeObject * get__denied_7() const { return ____denied_7; }
inline RuntimeObject ** get_address_of__denied_7() { return &____denied_7; }
inline void set__denied_7(RuntimeObject * value)
{
____denied_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&____denied_7), (void*)value);
}
inline static int32_t get_offset_of_fromByteArray_8() { return static_cast<int32_t>(offsetof(Assembly_t, ___fromByteArray_8)); }
inline bool get_fromByteArray_8() const { return ___fromByteArray_8; }
inline bool* get_address_of_fromByteArray_8() { return &___fromByteArray_8; }
inline void set_fromByteArray_8(bool value)
{
___fromByteArray_8 = value;
}
inline static int32_t get_offset_of_assemblyName_9() { return static_cast<int32_t>(offsetof(Assembly_t, ___assemblyName_9)); }
inline String_t* get_assemblyName_9() const { return ___assemblyName_9; }
inline String_t** get_address_of_assemblyName_9() { return &___assemblyName_9; }
inline void set_assemblyName_9(String_t* value)
{
___assemblyName_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___assemblyName_9), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Reflection.Assembly
struct Assembly_t_marshaled_pinvoke
{
intptr_t ____mono_assembly_0;
ResolveEventHolder_t5267893EB7CB9C12F7B9B463FD4C221BEA03326E * ___resolve_event_holder_1;
Il2CppIUnknown* ____evidence_2;
Il2CppIUnknown* ____minimum_3;
Il2CppIUnknown* ____optional_4;
Il2CppIUnknown* ____refuse_5;
Il2CppIUnknown* ____granted_6;
Il2CppIUnknown* ____denied_7;
int32_t ___fromByteArray_8;
char* ___assemblyName_9;
};
// Native definition for COM marshalling of System.Reflection.Assembly
struct Assembly_t_marshaled_com
{
intptr_t ____mono_assembly_0;
ResolveEventHolder_t5267893EB7CB9C12F7B9B463FD4C221BEA03326E * ___resolve_event_holder_1;
Il2CppIUnknown* ____evidence_2;
Il2CppIUnknown* ____minimum_3;
Il2CppIUnknown* ____optional_4;
Il2CppIUnknown* ____refuse_5;
Il2CppIUnknown* ____granted_6;
Il2CppIUnknown* ____denied_7;
int32_t ___fromByteArray_8;
Il2CppChar* ___assemblyName_9;
};
// System.Reflection.BindingFlags
struct BindingFlags_tE35C91D046E63A1B92BB9AB909FCF9DA84379ED0
{
public:
// System.Int32 System.Reflection.BindingFlags::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(BindingFlags_tE35C91D046E63A1B92BB9AB909FCF9DA84379ED0, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// System.Runtime.Serialization.StreamingContextStates
struct StreamingContextStates_t6D16CD7BC584A66A29B702F5FD59DF62BB1BDD3F
{
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_t6D16CD7BC584A66A29B702F5FD59DF62BB1BDD3F, ___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_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF
{
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_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF, ___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_t7B542280A22F0EC4EAC2061C29178845847A8B2D
{
public:
// System.IntPtr System.RuntimeTypeHandle::value
intptr_t ___value_0;
public:
inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D, ___value_0)); }
inline intptr_t get_value_0() const { return ___value_0; }
inline intptr_t* get_address_of_value_0() { return &___value_0; }
inline void set_value_0(intptr_t value)
{
___value_0 = value;
}
};
// System.StringComparison
struct StringComparison_t02BAA95468CE9E91115C604577611FDF58FEDCF0
{
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_t02BAA95468CE9E91115C604577611FDF58FEDCF0, ___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.StringSplitOptions
struct StringSplitOptions_t2FA287E15325CC78BF3CA5CDAAA3520BFBD58487
{
public:
// System.Int32 System.StringSplitOptions::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(StringSplitOptions_t2FA287E15325CC78BF3CA5CDAAA3520BFBD58487, ___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.TermInfoNumbers
struct TermInfoNumbers_tE17C1E4A28232B0A786FAB261BD41BA350DF230B
{
public:
// System.Int32 System.TermInfoNumbers::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TermInfoNumbers_tE17C1E4A28232B0A786FAB261BD41BA350DF230B, ___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_tA50FD6AB2B4EFB66E90CD563942E0A664FD6022F
{
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_tA50FD6AB2B4EFB66E90CD563942E0A664FD6022F, ___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.Text.Latin1Encoding
struct Latin1Encoding_tC026E9CCC23C3A25568FF02B75F937DB388DC9E7 : public EncodingNLS_tED4EB523BC03EF4F815875D8A722B294A72F40E7
{
public:
public:
};
struct Latin1Encoding_tC026E9CCC23C3A25568FF02B75F937DB388DC9E7_StaticFields
{
public:
// System.Char[] System.Text.Latin1Encoding::arrayCharBestFit
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___arrayCharBestFit_16;
public:
inline static int32_t get_offset_of_arrayCharBestFit_16() { return static_cast<int32_t>(offsetof(Latin1Encoding_tC026E9CCC23C3A25568FF02B75F937DB388DC9E7_StaticFields, ___arrayCharBestFit_16)); }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_arrayCharBestFit_16() const { return ___arrayCharBestFit_16; }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_arrayCharBestFit_16() { return &___arrayCharBestFit_16; }
inline void set_arrayCharBestFit_16(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value)
{
___arrayCharBestFit_16 = value;
Il2CppCodeGenWriteBarrier((void**)(&___arrayCharBestFit_16), (void*)value);
}
};
// System.Text.NormalizationCheck
struct NormalizationCheck_t5FEED77D9C9C11E3B92C29FC55AA1DAD786244DE
{
public:
// System.Int32 System.Text.NormalizationCheck::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(NormalizationCheck_t5FEED77D9C9C11E3B92C29FC55AA1DAD786244DE, ___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.Text.NormalizationForm
struct NormalizationForm_t37A65F044FE653814E14F5D147919ED0E02A873C
{
public:
// System.Int32 System.Text.NormalizationForm::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(NormalizationForm_t37A65F044FE653814E14F5D147919ED0E02A873C, ___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.ConsoleKeyInfo
struct ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768
{
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_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768, ____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_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768, ____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_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768, ____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_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_marshaled_pinvoke
{
uint8_t ____keyChar_0;
int32_t ____key_1;
int32_t ____mods_2;
};
// Native definition for COM marshalling of System.ConsoleKeyInfo
struct ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_marshaled_com
{
uint8_t ____keyChar_0;
int32_t ____key_1;
int32_t ____mods_2;
};
// System.CultureAwareComparer
struct CultureAwareComparer_tFCEC16B02A638A8DFF49C7C8C507A6A889C8E058 : public StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE
{
public:
// System.Globalization.CompareInfo System.CultureAwareComparer::_compareInfo
CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * ____compareInfo_4;
// System.Boolean System.CultureAwareComparer::_ignoreCase
bool ____ignoreCase_5;
// System.Globalization.CompareOptions System.CultureAwareComparer::_options
int32_t ____options_6;
public:
inline static int32_t get_offset_of__compareInfo_4() { return static_cast<int32_t>(offsetof(CultureAwareComparer_tFCEC16B02A638A8DFF49C7C8C507A6A889C8E058, ____compareInfo_4)); }
inline CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * get__compareInfo_4() const { return ____compareInfo_4; }
inline CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 ** get_address_of__compareInfo_4() { return &____compareInfo_4; }
inline void set__compareInfo_4(CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * value)
{
____compareInfo_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____compareInfo_4), (void*)value);
}
inline static int32_t get_offset_of__ignoreCase_5() { return static_cast<int32_t>(offsetof(CultureAwareComparer_tFCEC16B02A638A8DFF49C7C8C507A6A889C8E058, ____ignoreCase_5)); }
inline bool get__ignoreCase_5() const { return ____ignoreCase_5; }
inline bool* get_address_of__ignoreCase_5() { return &____ignoreCase_5; }
inline void set__ignoreCase_5(bool value)
{
____ignoreCase_5 = value;
}
inline static int32_t get_offset_of__options_6() { return static_cast<int32_t>(offsetof(CultureAwareComparer_tFCEC16B02A638A8DFF49C7C8C507A6A889C8E058, ____options_6)); }
inline int32_t get__options_6() const { return ____options_6; }
inline int32_t* get_address_of__options_6() { return &____options_6; }
inline void set__options_6(int32_t value)
{
____options_6 = value;
}
};
// System.IO.CStreamWriter
struct CStreamWriter_t6B662CA496662AF63D81722DCA99094893C80450 : public StreamWriter_t989B894EF3BFCDF6FF5F5F068402A4F835FC8E8E
{
public:
// System.TermInfoDriver System.IO.CStreamWriter::driver
TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653 * ___driver_24;
public:
inline static int32_t get_offset_of_driver_24() { return static_cast<int32_t>(offsetof(CStreamWriter_t6B662CA496662AF63D81722DCA99094893C80450, ___driver_24)); }
inline TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653 * get_driver_24() const { return ___driver_24; }
inline TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653 ** get_address_of_driver_24() { return &___driver_24; }
inline void set_driver_24(TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653 * value)
{
___driver_24 = value;
Il2CppCodeGenWriteBarrier((void**)(&___driver_24), (void*)value);
}
};
// System.IO.FileStream
struct FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418 : public Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7
{
public:
// System.Byte[] System.IO.FileStream::buf
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___buf_6;
// System.String System.IO.FileStream::name
String_t* ___name_7;
// Microsoft.Win32.SafeHandles.SafeFileHandle System.IO.FileStream::safeHandle
SafeFileHandle_tE1B31BE63CD11BBF2B9B6A205A72735F32EB1BCB * ___safeHandle_8;
// System.Boolean System.IO.FileStream::isExposed
bool ___isExposed_9;
// System.Int64 System.IO.FileStream::append_startpos
int64_t ___append_startpos_10;
// System.IO.FileAccess System.IO.FileStream::access
int32_t ___access_11;
// System.Boolean System.IO.FileStream::owner
bool ___owner_12;
// System.Boolean System.IO.FileStream::async
bool ___async_13;
// System.Boolean System.IO.FileStream::canseek
bool ___canseek_14;
// System.Boolean System.IO.FileStream::anonymous
bool ___anonymous_15;
// System.Boolean System.IO.FileStream::buf_dirty
bool ___buf_dirty_16;
// System.Int32 System.IO.FileStream::buf_size
int32_t ___buf_size_17;
// System.Int32 System.IO.FileStream::buf_length
int32_t ___buf_length_18;
// System.Int32 System.IO.FileStream::buf_offset
int32_t ___buf_offset_19;
// System.Int64 System.IO.FileStream::buf_start
int64_t ___buf_start_20;
public:
inline static int32_t get_offset_of_buf_6() { return static_cast<int32_t>(offsetof(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418, ___buf_6)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_buf_6() const { return ___buf_6; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_buf_6() { return &___buf_6; }
inline void set_buf_6(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___buf_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___buf_6), (void*)value);
}
inline static int32_t get_offset_of_name_7() { return static_cast<int32_t>(offsetof(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418, ___name_7)); }
inline String_t* get_name_7() const { return ___name_7; }
inline String_t** get_address_of_name_7() { return &___name_7; }
inline void set_name_7(String_t* value)
{
___name_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___name_7), (void*)value);
}
inline static int32_t get_offset_of_safeHandle_8() { return static_cast<int32_t>(offsetof(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418, ___safeHandle_8)); }
inline SafeFileHandle_tE1B31BE63CD11BBF2B9B6A205A72735F32EB1BCB * get_safeHandle_8() const { return ___safeHandle_8; }
inline SafeFileHandle_tE1B31BE63CD11BBF2B9B6A205A72735F32EB1BCB ** get_address_of_safeHandle_8() { return &___safeHandle_8; }
inline void set_safeHandle_8(SafeFileHandle_tE1B31BE63CD11BBF2B9B6A205A72735F32EB1BCB * value)
{
___safeHandle_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___safeHandle_8), (void*)value);
}
inline static int32_t get_offset_of_isExposed_9() { return static_cast<int32_t>(offsetof(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418, ___isExposed_9)); }
inline bool get_isExposed_9() const { return ___isExposed_9; }
inline bool* get_address_of_isExposed_9() { return &___isExposed_9; }
inline void set_isExposed_9(bool value)
{
___isExposed_9 = value;
}
inline static int32_t get_offset_of_append_startpos_10() { return static_cast<int32_t>(offsetof(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418, ___append_startpos_10)); }
inline int64_t get_append_startpos_10() const { return ___append_startpos_10; }
inline int64_t* get_address_of_append_startpos_10() { return &___append_startpos_10; }
inline void set_append_startpos_10(int64_t value)
{
___append_startpos_10 = value;
}
inline static int32_t get_offset_of_access_11() { return static_cast<int32_t>(offsetof(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418, ___access_11)); }
inline int32_t get_access_11() const { return ___access_11; }
inline int32_t* get_address_of_access_11() { return &___access_11; }
inline void set_access_11(int32_t value)
{
___access_11 = value;
}
inline static int32_t get_offset_of_owner_12() { return static_cast<int32_t>(offsetof(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418, ___owner_12)); }
inline bool get_owner_12() const { return ___owner_12; }
inline bool* get_address_of_owner_12() { return &___owner_12; }
inline void set_owner_12(bool value)
{
___owner_12 = value;
}
inline static int32_t get_offset_of_async_13() { return static_cast<int32_t>(offsetof(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418, ___async_13)); }
inline bool get_async_13() const { return ___async_13; }
inline bool* get_address_of_async_13() { return &___async_13; }
inline void set_async_13(bool value)
{
___async_13 = value;
}
inline static int32_t get_offset_of_canseek_14() { return static_cast<int32_t>(offsetof(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418, ___canseek_14)); }
inline bool get_canseek_14() const { return ___canseek_14; }
inline bool* get_address_of_canseek_14() { return &___canseek_14; }
inline void set_canseek_14(bool value)
{
___canseek_14 = value;
}
inline static int32_t get_offset_of_anonymous_15() { return static_cast<int32_t>(offsetof(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418, ___anonymous_15)); }
inline bool get_anonymous_15() const { return ___anonymous_15; }
inline bool* get_address_of_anonymous_15() { return &___anonymous_15; }
inline void set_anonymous_15(bool value)
{
___anonymous_15 = value;
}
inline static int32_t get_offset_of_buf_dirty_16() { return static_cast<int32_t>(offsetof(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418, ___buf_dirty_16)); }
inline bool get_buf_dirty_16() const { return ___buf_dirty_16; }
inline bool* get_address_of_buf_dirty_16() { return &___buf_dirty_16; }
inline void set_buf_dirty_16(bool value)
{
___buf_dirty_16 = value;
}
inline static int32_t get_offset_of_buf_size_17() { return static_cast<int32_t>(offsetof(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418, ___buf_size_17)); }
inline int32_t get_buf_size_17() const { return ___buf_size_17; }
inline int32_t* get_address_of_buf_size_17() { return &___buf_size_17; }
inline void set_buf_size_17(int32_t value)
{
___buf_size_17 = value;
}
inline static int32_t get_offset_of_buf_length_18() { return static_cast<int32_t>(offsetof(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418, ___buf_length_18)); }
inline int32_t get_buf_length_18() const { return ___buf_length_18; }
inline int32_t* get_address_of_buf_length_18() { return &___buf_length_18; }
inline void set_buf_length_18(int32_t value)
{
___buf_length_18 = value;
}
inline static int32_t get_offset_of_buf_offset_19() { return static_cast<int32_t>(offsetof(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418, ___buf_offset_19)); }
inline int32_t get_buf_offset_19() const { return ___buf_offset_19; }
inline int32_t* get_address_of_buf_offset_19() { return &___buf_offset_19; }
inline void set_buf_offset_19(int32_t value)
{
___buf_offset_19 = value;
}
inline static int32_t get_offset_of_buf_start_20() { return static_cast<int32_t>(offsetof(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418, ___buf_start_20)); }
inline int64_t get_buf_start_20() const { return ___buf_start_20; }
inline int64_t* get_address_of_buf_start_20() { return &___buf_start_20; }
inline void set_buf_start_20(int64_t value)
{
___buf_start_20 = value;
}
};
struct FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418_StaticFields
{
public:
// System.Byte[] System.IO.FileStream::buf_recycle
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___buf_recycle_4;
// System.Object System.IO.FileStream::buf_recycle_lock
RuntimeObject * ___buf_recycle_lock_5;
public:
inline static int32_t get_offset_of_buf_recycle_4() { return static_cast<int32_t>(offsetof(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418_StaticFields, ___buf_recycle_4)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_buf_recycle_4() const { return ___buf_recycle_4; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_buf_recycle_4() { return &___buf_recycle_4; }
inline void set_buf_recycle_4(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___buf_recycle_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___buf_recycle_4), (void*)value);
}
inline static int32_t get_offset_of_buf_recycle_lock_5() { return static_cast<int32_t>(offsetof(FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418_StaticFields, ___buf_recycle_lock_5)); }
inline RuntimeObject * get_buf_recycle_lock_5() const { return ___buf_recycle_lock_5; }
inline RuntimeObject ** get_address_of_buf_recycle_lock_5() { return &___buf_recycle_lock_5; }
inline void set_buf_recycle_lock_5(RuntimeObject * value)
{
___buf_recycle_lock_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___buf_recycle_lock_5), (void*)value);
}
};
// System.Runtime.Serialization.StreamingContext
struct StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034
{
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_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034, ___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_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034, ___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_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034_marshaled_pinvoke
{
Il2CppIUnknown* ___m_additionalContext_0;
int32_t ___m_state_1;
};
// Native definition for COM marshalling of System.Runtime.Serialization.StreamingContext
struct StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034_marshaled_com
{
Il2CppIUnknown* ___m_additionalContext_0;
int32_t ___m_state_1;
};
// System.SystemException
struct SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 : public Exception_t
{
public:
public:
};
// System.TermInfoDriver
struct TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653 : public RuntimeObject
{
public:
// System.TermInfoReader System.TermInfoDriver::reader
TermInfoReader_tCAABF3484E6F0AA298F809766C52CA9DC4E6C55C * ___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_t62E68063760DCD2FC036AE132DE69C24B7ED001E * ___stdin_14;
// System.IO.CStreamWriter System.TermInfoDriver::stdout
CStreamWriter_t6B662CA496662AF63D81722DCA99094893C80450 * ___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_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___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_t978F65B8006C8F5504B286526AEC6608FF983FC9 * ___keymap_36;
// System.ByteMatcher System.TermInfoDriver::rootmap
ByteMatcher_tB199BDD35E2575B84D9FDED34954705653D241DC * ___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_tD06FDBE8142446525DF1C40351D523A228373821* ___control_characters_40;
// System.Char[] System.TermInfoDriver::echobuf
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___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_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653, ___reader_3)); }
inline TermInfoReader_tCAABF3484E6F0AA298F809766C52CA9DC4E6C55C * get_reader_3() const { return ___reader_3; }
inline TermInfoReader_tCAABF3484E6F0AA298F809766C52CA9DC4E6C55C ** get_address_of_reader_3() { return &___reader_3; }
inline void set_reader_3(TermInfoReader_tCAABF3484E6F0AA298F809766C52CA9DC4E6C55C * 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_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653, ___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_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653, ___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_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653, ___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_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653, ___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_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653, ___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_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653, ___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_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653, ___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_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653, ___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_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653, ___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_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653, ___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_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653, ___stdin_14)); }
inline StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * get_stdin_14() const { return ___stdin_14; }
inline StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E ** get_address_of_stdin_14() { return &___stdin_14; }
inline void set_stdin_14(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * 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_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653, ___stdout_15)); }
inline CStreamWriter_t6B662CA496662AF63D81722DCA99094893C80450 * get_stdout_15() const { return ___stdout_15; }
inline CStreamWriter_t6B662CA496662AF63D81722DCA99094893C80450 ** get_address_of_stdout_15() { return &___stdout_15; }
inline void set_stdout_15(CStreamWriter_t6B662CA496662AF63D81722DCA99094893C80450 * 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_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653, ___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_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653, ___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_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653, ___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_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653, ___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_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653, ___buffer_20)); }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_buffer_20() const { return ___buffer_20; }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_buffer_20() { return &___buffer_20; }
inline void set_buffer_20(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* 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_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653, ___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_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653, ___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_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653, ___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_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653, ___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_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653, ___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_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653, ___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_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653, ___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_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653, ___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_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653, ___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_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653, ___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_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653, ___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_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653, ___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_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653, ___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_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653, ___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_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653, ___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_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653, ___keymap_36)); }
inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * get_keymap_36() const { return ___keymap_36; }
inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 ** get_address_of_keymap_36() { return &___keymap_36; }
inline void set_keymap_36(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * 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_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653, ___rootmap_37)); }
inline ByteMatcher_tB199BDD35E2575B84D9FDED34954705653D241DC * get_rootmap_37() const { return ___rootmap_37; }
inline ByteMatcher_tB199BDD35E2575B84D9FDED34954705653D241DC ** get_address_of_rootmap_37() { return &___rootmap_37; }
inline void set_rootmap_37(ByteMatcher_tB199BDD35E2575B84D9FDED34954705653D241DC * 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_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653, ___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_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653, ___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_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653, ___control_characters_40)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_control_characters_40() const { return ___control_characters_40; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_control_characters_40() { return &___control_characters_40; }
inline void set_control_characters_40(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* 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_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653, ___echobuf_42)); }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_echobuf_42() const { return ___echobuf_42; }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_echobuf_42() { return &___echobuf_42; }
inline void set_echobuf_42(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* 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_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653, ___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_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653_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_t933FB07893230EA91C40FF900D5400665E87B14E* ___locations_2;
// System.Int32[] System.TermInfoDriver::_consoleColorToAnsiCode
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ____consoleColorToAnsiCode_41;
public:
inline static int32_t get_offset_of_native_terminal_size_0() { return static_cast<int32_t>(offsetof(TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653_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_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653_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_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653_StaticFields, ___locations_2)); }
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_locations_2() const { return ___locations_2; }
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_locations_2() { return &___locations_2; }
inline void set_locations_2(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* 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_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653_StaticFields, ____consoleColorToAnsiCode_41)); }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get__consoleColorToAnsiCode_41() const { return ____consoleColorToAnsiCode_41; }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of__consoleColorToAnsiCode_41() { return &____consoleColorToAnsiCode_41; }
inline void set__consoleColorToAnsiCode_41(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value)
{
____consoleColorToAnsiCode_41 = value;
Il2CppCodeGenWriteBarrier((void**)(&____consoleColorToAnsiCode_41), (void*)value);
}
};
// System.Type
struct Type_t : public MemberInfo_t
{
public:
// System.RuntimeTypeHandle System.Type::_impl
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D ____impl_9;
public:
inline static int32_t get_offset_of__impl_9() { return static_cast<int32_t>(offsetof(Type_t, ____impl_9)); }
inline RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D get__impl_9() const { return ____impl_9; }
inline RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D * get_address_of__impl_9() { return &____impl_9; }
inline void set__impl_9(RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D value)
{
____impl_9 = value;
}
};
struct Type_t_StaticFields
{
public:
// System.Reflection.MemberFilter System.Type::FilterAttribute
MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * ___FilterAttribute_0;
// System.Reflection.MemberFilter System.Type::FilterName
MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * ___FilterName_1;
// System.Reflection.MemberFilter System.Type::FilterNameIgnoreCase
MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * ___FilterNameIgnoreCase_2;
// System.Object System.Type::Missing
RuntimeObject * ___Missing_3;
// System.Char System.Type::Delimiter
Il2CppChar ___Delimiter_4;
// System.Type[] System.Type::EmptyTypes
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___EmptyTypes_5;
// System.Reflection.Binder System.Type::defaultBinder
Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 * ___defaultBinder_6;
public:
inline static int32_t get_offset_of_FilterAttribute_0() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterAttribute_0)); }
inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * get_FilterAttribute_0() const { return ___FilterAttribute_0; }
inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 ** get_address_of_FilterAttribute_0() { return &___FilterAttribute_0; }
inline void set_FilterAttribute_0(MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * value)
{
___FilterAttribute_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___FilterAttribute_0), (void*)value);
}
inline static int32_t get_offset_of_FilterName_1() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterName_1)); }
inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * get_FilterName_1() const { return ___FilterName_1; }
inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 ** get_address_of_FilterName_1() { return &___FilterName_1; }
inline void set_FilterName_1(MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * value)
{
___FilterName_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___FilterName_1), (void*)value);
}
inline static int32_t get_offset_of_FilterNameIgnoreCase_2() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterNameIgnoreCase_2)); }
inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * get_FilterNameIgnoreCase_2() const { return ___FilterNameIgnoreCase_2; }
inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 ** get_address_of_FilterNameIgnoreCase_2() { return &___FilterNameIgnoreCase_2; }
inline void set_FilterNameIgnoreCase_2(MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * value)
{
___FilterNameIgnoreCase_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___FilterNameIgnoreCase_2), (void*)value);
}
inline static int32_t get_offset_of_Missing_3() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___Missing_3)); }
inline RuntimeObject * get_Missing_3() const { return ___Missing_3; }
inline RuntimeObject ** get_address_of_Missing_3() { return &___Missing_3; }
inline void set_Missing_3(RuntimeObject * value)
{
___Missing_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Missing_3), (void*)value);
}
inline static int32_t get_offset_of_Delimiter_4() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___Delimiter_4)); }
inline Il2CppChar get_Delimiter_4() const { return ___Delimiter_4; }
inline Il2CppChar* get_address_of_Delimiter_4() { return &___Delimiter_4; }
inline void set_Delimiter_4(Il2CppChar value)
{
___Delimiter_4 = value;
}
inline static int32_t get_offset_of_EmptyTypes_5() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___EmptyTypes_5)); }
inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* get_EmptyTypes_5() const { return ___EmptyTypes_5; }
inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F** get_address_of_EmptyTypes_5() { return &___EmptyTypes_5; }
inline void set_EmptyTypes_5(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* value)
{
___EmptyTypes_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___EmptyTypes_5), (void*)value);
}
inline static int32_t get_offset_of_defaultBinder_6() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___defaultBinder_6)); }
inline Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 * get_defaultBinder_6() const { return ___defaultBinder_6; }
inline Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 ** get_address_of_defaultBinder_6() { return &___defaultBinder_6; }
inline void set_defaultBinder_6(Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 * value)
{
___defaultBinder_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultBinder_6), (void*)value);
}
};
// System.ArgumentException
struct ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
{
public:
// System.String System.ArgumentException::m_paramName
String_t* ___m_paramName_17;
public:
inline static int32_t get_offset_of_m_paramName_17() { return static_cast<int32_t>(offsetof(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1, ___m_paramName_17)); }
inline String_t* get_m_paramName_17() const { return ___m_paramName_17; }
inline String_t** get_address_of_m_paramName_17() { return &___m_paramName_17; }
inline void set_m_paramName_17(String_t* value)
{
___m_paramName_17 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_paramName_17), (void*)value);
}
};
// System.FormatException
struct FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
{
public:
public:
};
// System.IO.IOException
struct IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
{
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_t60E052020EDE4D3075F57A1DCC224FF8864354BA, ____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.IndexOutOfRangeException
struct IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
{
public:
public:
};
// System.InvalidOperationException
struct InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
{
public:
public:
};
// System.MemberAccessException
struct MemberAccessException_tDA869AFFB4FC1EA0EEF3143D85999710AC4774F0 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
{
public:
public:
};
// System.NotImplementedException
struct NotImplementedException_t8AD6EBE5FEDB0AEBECEE0961CF73C35B372EFFA4 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
{
public:
public:
};
// System.NotSupportedException
struct NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
{
public:
public:
};
// System.OutOfMemoryException
struct OutOfMemoryException_t2DF3EAC178583BD1DEFAAECBEDB2AF1EA86FBFC7 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
{
public:
public:
};
// System.Runtime.Serialization.SerializationException
struct SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
{
public:
public:
};
struct SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210_StaticFields
{
public:
// System.String System.Runtime.Serialization.SerializationException::_nullMessage
String_t* ____nullMessage_17;
public:
inline static int32_t get_offset_of__nullMessage_17() { return static_cast<int32_t>(offsetof(SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210_StaticFields, ____nullMessage_17)); }
inline String_t* get__nullMessage_17() const { return ____nullMessage_17; }
inline String_t** get_address_of__nullMessage_17() { return &____nullMessage_17; }
inline void set__nullMessage_17(String_t* value)
{
____nullMessage_17 = value;
Il2CppCodeGenWriteBarrier((void**)(&____nullMessage_17), (void*)value);
}
};
// System.Security.SecurityException
struct SecurityException_tBB116BA16A419AB19A4F7DEEF43A3FC2A638E8D5 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
{
public:
// System.String System.Security.SecurityException::permissionState
String_t* ___permissionState_17;
public:
inline static int32_t get_offset_of_permissionState_17() { return static_cast<int32_t>(offsetof(SecurityException_tBB116BA16A419AB19A4F7DEEF43A3FC2A638E8D5, ___permissionState_17)); }
inline String_t* get_permissionState_17() const { return ___permissionState_17; }
inline String_t** get_address_of_permissionState_17() { return &___permissionState_17; }
inline void set_permissionState_17(String_t* value)
{
___permissionState_17 = value;
Il2CppCodeGenWriteBarrier((void**)(&___permissionState_17), (void*)value);
}
};
// System.ArgumentNullException
struct ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD : public ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1
{
public:
public:
};
// System.ArgumentOutOfRangeException
struct ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA : public ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1
{
public:
// System.Object System.ArgumentOutOfRangeException::m_actualValue
RuntimeObject * ___m_actualValue_19;
public:
inline static int32_t get_offset_of_m_actualValue_19() { return static_cast<int32_t>(offsetof(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA, ___m_actualValue_19)); }
inline RuntimeObject * get_m_actualValue_19() const { return ___m_actualValue_19; }
inline RuntimeObject ** get_address_of_m_actualValue_19() { return &___m_actualValue_19; }
inline void set_m_actualValue_19(RuntimeObject * value)
{
___m_actualValue_19 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_actualValue_19), (void*)value);
}
};
struct ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_StaticFields
{
public:
// System.String modreq(System.Runtime.CompilerServices.IsVolatile) System.ArgumentOutOfRangeException::_rangeMessage
String_t* ____rangeMessage_18;
public:
inline static int32_t get_offset_of__rangeMessage_18() { return static_cast<int32_t>(offsetof(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_StaticFields, ____rangeMessage_18)); }
inline String_t* get__rangeMessage_18() const { return ____rangeMessage_18; }
inline String_t** get_address_of__rangeMessage_18() { return &____rangeMessage_18; }
inline void set__rangeMessage_18(String_t* value)
{
____rangeMessage_18 = value;
Il2CppCodeGenWriteBarrier((void**)(&____rangeMessage_18), (void*)value);
}
};
// System.MissingMemberException
struct MissingMemberException_t165349A7E04FC51DAA5C2251C6DCDD2DD60255DD : public MemberAccessException_tDA869AFFB4FC1EA0EEF3143D85999710AC4774F0
{
public:
// System.String System.MissingMemberException::ClassName
String_t* ___ClassName_17;
// System.String System.MissingMemberException::MemberName
String_t* ___MemberName_18;
// System.Byte[] System.MissingMemberException::Signature
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___Signature_19;
public:
inline static int32_t get_offset_of_ClassName_17() { return static_cast<int32_t>(offsetof(MissingMemberException_t165349A7E04FC51DAA5C2251C6DCDD2DD60255DD, ___ClassName_17)); }
inline String_t* get_ClassName_17() const { return ___ClassName_17; }
inline String_t** get_address_of_ClassName_17() { return &___ClassName_17; }
inline void set_ClassName_17(String_t* value)
{
___ClassName_17 = value;
Il2CppCodeGenWriteBarrier((void**)(&___ClassName_17), (void*)value);
}
inline static int32_t get_offset_of_MemberName_18() { return static_cast<int32_t>(offsetof(MissingMemberException_t165349A7E04FC51DAA5C2251C6DCDD2DD60255DD, ___MemberName_18)); }
inline String_t* get_MemberName_18() const { return ___MemberName_18; }
inline String_t** get_address_of_MemberName_18() { return &___MemberName_18; }
inline void set_MemberName_18(String_t* value)
{
___MemberName_18 = value;
Il2CppCodeGenWriteBarrier((void**)(&___MemberName_18), (void*)value);
}
inline static int32_t get_offset_of_Signature_19() { return static_cast<int32_t>(offsetof(MissingMemberException_t165349A7E04FC51DAA5C2251C6DCDD2DD60255DD, ___Signature_19)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_Signature_19() const { return ___Signature_19; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_Signature_19() { return &___Signature_19; }
inline void set_Signature_19(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___Signature_19 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Signature_19), (void*)value);
}
};
// System.Text.DecoderFallbackException
struct DecoderFallbackException_t600999E267866BD2B6A47BF1E525E779171FD41A : public ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1
{
public:
// System.Byte[] System.Text.DecoderFallbackException::bytesUnknown
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___bytesUnknown_18;
// System.Int32 System.Text.DecoderFallbackException::index
int32_t ___index_19;
public:
inline static int32_t get_offset_of_bytesUnknown_18() { return static_cast<int32_t>(offsetof(DecoderFallbackException_t600999E267866BD2B6A47BF1E525E779171FD41A, ___bytesUnknown_18)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_bytesUnknown_18() const { return ___bytesUnknown_18; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_bytesUnknown_18() { return &___bytesUnknown_18; }
inline void set_bytesUnknown_18(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___bytesUnknown_18 = value;
Il2CppCodeGenWriteBarrier((void**)(&___bytesUnknown_18), (void*)value);
}
inline static int32_t get_offset_of_index_19() { return static_cast<int32_t>(offsetof(DecoderFallbackException_t600999E267866BD2B6A47BF1E525E779171FD41A, ___index_19)); }
inline int32_t get_index_19() const { return ___index_19; }
inline int32_t* get_address_of_index_19() { return &___index_19; }
inline void set_index_19(int32_t value)
{
___index_19 = value;
}
};
// System.Text.EncoderFallbackException
struct EncoderFallbackException_t2577E6366E4064953BFA80B3A71BD75154E15B53 : public ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1
{
public:
// System.Char System.Text.EncoderFallbackException::charUnknown
Il2CppChar ___charUnknown_18;
// System.Char System.Text.EncoderFallbackException::charUnknownHigh
Il2CppChar ___charUnknownHigh_19;
// System.Char System.Text.EncoderFallbackException::charUnknownLow
Il2CppChar ___charUnknownLow_20;
// System.Int32 System.Text.EncoderFallbackException::index
int32_t ___index_21;
public:
inline static int32_t get_offset_of_charUnknown_18() { return static_cast<int32_t>(offsetof(EncoderFallbackException_t2577E6366E4064953BFA80B3A71BD75154E15B53, ___charUnknown_18)); }
inline Il2CppChar get_charUnknown_18() const { return ___charUnknown_18; }
inline Il2CppChar* get_address_of_charUnknown_18() { return &___charUnknown_18; }
inline void set_charUnknown_18(Il2CppChar value)
{
___charUnknown_18 = value;
}
inline static int32_t get_offset_of_charUnknownHigh_19() { return static_cast<int32_t>(offsetof(EncoderFallbackException_t2577E6366E4064953BFA80B3A71BD75154E15B53, ___charUnknownHigh_19)); }
inline Il2CppChar get_charUnknownHigh_19() const { return ___charUnknownHigh_19; }
inline Il2CppChar* get_address_of_charUnknownHigh_19() { return &___charUnknownHigh_19; }
inline void set_charUnknownHigh_19(Il2CppChar value)
{
___charUnknownHigh_19 = value;
}
inline static int32_t get_offset_of_charUnknownLow_20() { return static_cast<int32_t>(offsetof(EncoderFallbackException_t2577E6366E4064953BFA80B3A71BD75154E15B53, ___charUnknownLow_20)); }
inline Il2CppChar get_charUnknownLow_20() const { return ___charUnknownLow_20; }
inline Il2CppChar* get_address_of_charUnknownLow_20() { return &___charUnknownLow_20; }
inline void set_charUnknownLow_20(Il2CppChar value)
{
___charUnknownLow_20 = value;
}
inline static int32_t get_offset_of_index_21() { return static_cast<int32_t>(offsetof(EncoderFallbackException_t2577E6366E4064953BFA80B3A71BD75154E15B53, ___index_21)); }
inline int32_t get_index_21() const { return ___index_21; }
inline int32_t* get_address_of_index_21() { return &___index_21; }
inline void set_index_21(int32_t value)
{
___index_21 = value;
}
};
// System.MissingMethodException
struct MissingMethodException_t7D33DFD3009E4F19BE4DD0967F04D3878F348498 : public MissingMemberException_t165349A7E04FC51DAA5C2251C6DCDD2DD60255DD
{
public:
// System.String System.MissingMethodException::signature
String_t* ___signature_20;
public:
inline static int32_t get_offset_of_signature_20() { return static_cast<int32_t>(offsetof(MissingMethodException_t7D33DFD3009E4F19BE4DD0967F04D3878F348498, ___signature_20)); }
inline String_t* get_signature_20() const { return ___signature_20; }
inline String_t** get_address_of_signature_20() { return &___signature_20; }
inline void set_signature_20(String_t* value)
{
___signature_20 = value;
Il2CppCodeGenWriteBarrier((void**)(&___signature_20), (void*)value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// System.String[]
struct StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E : 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.Byte[]
struct ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821 : public RuntimeArray
{
public:
ALIGN_FIELD (8) uint8_t m_Items[1];
public:
inline uint8_t GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline uint8_t* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, uint8_t value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline uint8_t GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline uint8_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, uint8_t value)
{
m_Items[index] = value;
}
};
// System.Char[]
struct CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Il2CppChar m_Items[1];
public:
inline Il2CppChar GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Il2CppChar* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Il2CppChar value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline Il2CppChar GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Il2CppChar* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Il2CppChar value)
{
m_Items[index] = value;
}
};
// System.ParameterizedStrings_FormatParam[]
struct FormatParamU5BU5D_t2F95A3C5AF726E75A42BC28843BAD579B62199B5 : public RuntimeArray
{
public:
ALIGN_FIELD (8) FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800 m_Items[1];
public:
inline FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800 * 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, FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->____string_1), (void*)NULL);
}
inline FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800 value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->____string_1), (void*)NULL);
}
};
// System.TermInfoStrings[]
struct TermInfoStringsU5BU5D_t734604FFAFCF8B18CFD63C5901E11EA6C13F23F2 : 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.Int32[]
struct Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83 : public RuntimeArray
{
public:
ALIGN_FIELD (8) int32_t m_Items[1];
public:
inline int32_t GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline int32_t* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, int32_t value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline int32_t GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline int32_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, int32_t value)
{
m_Items[index] = value;
}
};
// System.Object[]
struct ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A : public RuntimeArray
{
public:
ALIGN_FIELD (8) RuntimeObject * m_Items[1];
public:
inline RuntimeObject * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline RuntimeObject ** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, RuntimeObject * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline RuntimeObject * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline RuntimeObject ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, RuntimeObject * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Reflection.ParameterModifier[]
struct ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA : public RuntimeArray
{
public:
ALIGN_FIELD (8) ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E m_Items[1];
public:
inline ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E * 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_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E 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_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->____byRef_0), (void*)NULL);
}
};
// System.Text.EncodingProvider[]
struct EncodingProviderU5BU5D_tC6F023570A13EC5DEAC72E9403D9C8B84DCF4E49 : public RuntimeArray
{
public:
ALIGN_FIELD (8) EncodingProvider_t75FB9C8A37AAC86251A690CAB8D5D718B9DCB480 * m_Items[1];
public:
inline EncodingProvider_t75FB9C8A37AAC86251A690CAB8D5D718B9DCB480 * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline EncodingProvider_t75FB9C8A37AAC86251A690CAB8D5D718B9DCB480 ** 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, EncodingProvider_t75FB9C8A37AAC86251A690CAB8D5D718B9DCB480 * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline EncodingProvider_t75FB9C8A37AAC86251A690CAB8D5D718B9DCB480 * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline EncodingProvider_t75FB9C8A37AAC86251A690CAB8D5D718B9DCB480 ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, EncodingProvider_t75FB9C8A37AAC86251A690CAB8D5D718B9DCB480 * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Globalization.CultureInfo System.Globalization.CultureInfo::get_CurrentCulture()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * CultureInfo_get_CurrentCulture_mD86F3D8E5D332FB304F80D9B9CA4DE849C2A6831 (const RuntimeMethod* method);
// System.Void System.CultureAwareComparer::.ctor(System.Globalization.CultureInfo,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CultureAwareComparer__ctor_m932FEC0DC86BAD111BC13357F712B51262F4EB28 (CultureAwareComparer_tFCEC16B02A638A8DFF49C7C8C507A6A889C8E058 * __this, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___culture0, bool ___ignoreCase1, const RuntimeMethod* method);
// System.String System.Environment::GetResourceString(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9 (String_t* ___key0, const RuntimeMethod* method);
// System.Void System.ArgumentException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7 (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * __this, String_t* ___message0, const RuntimeMethod* method);
// System.Void System.ArgumentNullException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * __this, String_t* ___paramName0, const RuntimeMethod* method);
// System.Void System.Object::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0 (RuntimeObject * __this, const RuntimeMethod* method);
// System.Globalization.CultureInfo System.Globalization.CultureInfo::get_InvariantCulture()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72 (const RuntimeMethod* method);
// System.Void System.OrdinalComparer::.ctor(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OrdinalComparer__ctor_m03DBF62ADAE2F1E022590631377D136E44129881 (OrdinalComparer_tF6BA53365493F2DF0E4DA7C73C4094D1E35F240A * __this, bool ___ignoreCase0, const RuntimeMethod* method);
// System.Void System.Exception::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Exception__ctor_m89BADFF36C3B170013878726E07729D51AA9FBE0 (Exception_t * __this, String_t* ___message0, const RuntimeMethod* method);
// System.Void System.Exception::SetErrorCode(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7 (Exception_t * __this, int32_t ___hr0, const RuntimeMethod* method);
// System.Void System.Exception::.ctor(System.String,System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Exception__ctor_m62590BC1925B7B354EBFD852E162CD170FEB861D (Exception_t * __this, String_t* ___message0, Exception_t * ___innerException1, const RuntimeMethod* method);
// System.Void System.Exception::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Exception__ctor_mBFF5996A1B65FCEEE0054A95A652BA3DD6366618 (Exception_t * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method);
// System.Char System.String::get_Chars(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96 (String_t* __this, int32_t ___index0, const RuntimeMethod* method);
// System.String System.String::Format(System.String,System.Object,System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_m26BBF75F9609FAD0B39C2242FEBAAD7D68F14D99 (String_t* ___format0, RuntimeObject * ___arg01, RuntimeObject * ___arg12, RuntimeObject * ___arg23, const RuntimeMethod* method);
// System.Boolean System.IO.File::Exists(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool File_Exists_m6B9BDD8EEB33D744EB0590DD27BC0152FAFBD1FB (String_t* ___path0, const RuntimeMethod* method);
// System.String System.String::Substring(System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Substring_mB593C0A320C683E6E47EFFC0A12B7A465E5E43BB (String_t* __this, int32_t ___startIndex0, int32_t ___length1, const RuntimeMethod* method);
// System.String System.IO.Path::Combine(System.String,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Path_Combine_mAB92AD33FF91D3550E1683D5E732895A08B758DA (String_t* ___path10, String_t* ___path21, String_t* ___path32, const RuntimeMethod* method);
// System.Boolean System.String::op_Equality(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE (String_t* ___a0, String_t* ___b1, const RuntimeMethod* method);
// System.String System.Environment::GetEnvironmentVariable(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_GetEnvironmentVariable_mB94020EE6B0D5BADF024E4BE6FBC54A5954D2185 (String_t* ___variable0, const RuntimeMethod* method);
// System.Boolean System.IO.Directory::Exists(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Directory_Exists_mB77956D89305E16FEFCBDFC55CCC98F03AEE4D84 (String_t* ___path0, const RuntimeMethod* method);
// System.String System.TermInfoDriver::TryTermInfoDir(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TermInfoDriver_TryTermInfoDir_mB77251F46AC79569CE18F4AE20F130453912A47F (String_t* ___dir0, String_t* ___term1, const RuntimeMethod* method);
// System.Void System.IO.CStreamWriter::InternalWriteString(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CStreamWriter_InternalWriteString_mEA79EB02E28ADA9D81053766AD523E4C0CFC6CDA (CStreamWriter_t6B662CA496662AF63D81722DCA99094893C80450 * __this, String_t* ___val0, const RuntimeMethod* method);
// System.String System.TermInfoDriver::SearchTerminfo(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TermInfoDriver_SearchTerminfo_m7D2A02B1FBA3D8F66256E53D28264D4A0B7550A3 (String_t* ___term0, const RuntimeMethod* method);
// System.Void System.TermInfoReader::.ctor(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TermInfoReader__ctor_mDC681850346716B16DF3EC44DCF1DA6F2A754B7D (TermInfoReader_tCAABF3484E6F0AA298F809766C52CA9DC4E6C55C * __this, String_t* ___term0, String_t* ___filename1, const RuntimeMethod* method);
// System.Byte[] System.KnownTerminals::get_xterm()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* KnownTerminals_get_xterm_mA890BFD590F820BBB23B219E1AD1C8BCD3DFA345 (const RuntimeMethod* method);
// System.Void System.TermInfoReader::.ctor(System.String,System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TermInfoReader__ctor_mB414A3E5B0CA1C42E830F8221DCC6DAD579055A6 (TermInfoReader_tCAABF3484E6F0AA298F809766C52CA9DC4E6C55C * __this, String_t* ___term0, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___buffer1, const RuntimeMethod* method);
// System.Byte[] System.KnownTerminals::get_linux()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* KnownTerminals_get_linux_m9A34213D8DB968ED3864B4E321BA4B71DB7E8B95 (const RuntimeMethod* method);
// System.Byte[] System.KnownTerminals::get_ansi()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* KnownTerminals_get_ansi_m2ECEBC902EBB68D9A849ED1B76F8008918BEBB4D (const RuntimeMethod* method);
// System.IO.Stream System.Console::OpenStandardOutput(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * Console_OpenStandardOutput_m9C602CA7C2D5E989D45913987E2E581481EC9823 (int32_t ___bufferSize0, const RuntimeMethod* method);
// System.Text.Encoding System.Console::get_OutputEncoding()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * Console_get_OutputEncoding_mA23798B6CE69F59EAA00C8206EF8552196120647_inline (const RuntimeMethod* method);
// System.Void System.IO.CStreamWriter::.ctor(System.IO.Stream,System.Text.Encoding,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CStreamWriter__ctor_m967462FE0368BE80A448F0082E70B326088E2E95 (CStreamWriter_t6B662CA496662AF63D81722DCA99094893C80450 * __this, Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___stream0, Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___encoding1, bool ___leaveOpen2, const RuntimeMethod* method);
// System.Void System.Threading.Monitor::Enter(System.Object,System.Boolean&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5 (RuntimeObject * ___obj0, bool* ___lockTaken1, const RuntimeMethod* method);
// System.Boolean System.ConsoleDriver::get_IsConsole()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConsoleDriver_get_IsConsole_m0C19F307DCAEDCC678CF0ABA69F8EF083090C731 (const RuntimeMethod* method);
// System.Void System.IO.IOException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IOException__ctor_mB64DEFB376AA8E279A647A3770F913B20EF65175 (IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA * __this, String_t* ___message0, const RuntimeMethod* method);
// System.Boolean System.ConsoleDriver::SetEcho(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConsoleDriver_SetEcho_m7A27E092D9D79ED1033ACA3E033CAAEEA3E2B869 (bool ___wantEcho0, const RuntimeMethod* method);
// System.String System.TermInfoReader::Get(System.TermInfoStrings)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TermInfoReader_Get_m302D06F261F21E95F43DC0D052FFD370B5BC9814 (TermInfoReader_tCAABF3484E6F0AA298F809766C52CA9DC4E6C55C * __this, int32_t ___tstr0, const RuntimeMethod* method);
// System.Void System.TermInfoDriver::WriteConsole(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TermInfoDriver_WriteConsole_mA33045BAA05976FE867CAA78B79B63A1E58FAF38 (TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653 * __this, String_t* ___str0, const RuntimeMethod* method);
// System.String System.String::Concat(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE (String_t* ___str00, String_t* ___str11, const RuntimeMethod* method);
// System.Int32 System.TermInfoReader::Get(System.TermInfoNumbers)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TermInfoReader_Get_mBE8AB84A3B00855DF6CFBEEDAF0B7A9DD35D1DCD (TermInfoReader_tCAABF3484E6F0AA298F809766C52CA9DC4E6C55C * __this, int32_t ___number0, const RuntimeMethod* method);
// System.Int32 System.Math::Min(System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Math_Min_mC950438198519FB2B0260FCB91220847EE4BB525 (int32_t ___val10, int32_t ___val21, const RuntimeMethod* method);
// System.Int32 System.Math::Max(System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Math_Max_mA99E48BB021F2E4B62D4EA9F52EA6928EED618A2 (int32_t ___val10, int32_t ___val21, const RuntimeMethod* method);
// System.Boolean System.ConsoleDriver::TtySetup(System.String,System.String,System.Byte[]&,System.Int32*&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConsoleDriver_TtySetup_m39158C369CFA6D426B61D89621BC077B4BB62A49 (String_t* ___keypadXmit0, String_t* ___teardown1, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** ___control_characters2, int32_t** ___address3, const RuntimeMethod* method);
// System.IO.Stream System.Console::OpenStandardInput(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * Console_OpenStandardInput_m70507BD4CEF7AAFB01030995036454D9D6F4BC98 (int32_t ___bufferSize0, const RuntimeMethod* method);
// System.Text.Encoding System.Console::get_InputEncoding()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * Console_get_InputEncoding_m60EAA2E167A0C8C681997B998E851D8CD6C954FE_inline (const RuntimeMethod* method);
// System.Void System.IO.StreamReader::.ctor(System.IO.Stream,System.Text.Encoding)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StreamReader__ctor_mF319C927A1274118E912D93F2EB2AAE4DA17E3DC (StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * __this, Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___stream0, Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___encoding1, const RuntimeMethod* method);
// System.Boolean System.String::StartsWith(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_StartsWith_m7D468FB7C801D9C2DBEEEEC86F8BA8F4EC3243C1 (String_t* __this, String_t* ___value0, const RuntimeMethod* method);
// System.Void System.TermInfoDriver::GetCursorPosition()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TermInfoDriver_GetCursorPosition_mC6D63B8C54851DE5CCE4294A0386AA69BEDD55AF (TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653 * __this, const RuntimeMethod* method);
// System.Void System.Threading.Monitor::Exit(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2 (RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Int32 System.TermInfoDriver::get_WindowWidth()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TermInfoDriver_get_WindowWidth_m8F6C505545EF0542719721E74D3C065D0C132951 (TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653 * __this, const RuntimeMethod* method);
// System.Int32 System.TermInfoDriver::get_WindowHeight()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TermInfoDriver_get_WindowHeight_m086EBD5BEC3CBFECFD5AA186BE69FCE6FB812A42 (TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653 * __this, const RuntimeMethod* method);
// System.ConsoleKey System.ConsoleKeyInfo::get_Key()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t ConsoleKeyInfo_get_Key_m36CD740D4C51FB4F4277AC7E6CD24D79DF5C8AC5_inline (ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 * __this, const RuntimeMethod* method);
// System.Void System.TermInfoDriver::SetCursorPosition(System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TermInfoDriver_SetCursorPosition_mDBD339CD6F48B285AF40411BB572D4565F7118ED (TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653 * __this, int32_t ___left0, int32_t ___top1, const RuntimeMethod* method);
// System.Void System.TermInfoDriver::IncrementX()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TermInfoDriver_IncrementX_m85DFCF13DC093059F9BE6B74A17D904E768CE4AF (TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653 * __this, const RuntimeMethod* method);
// System.ConsoleKeyInfo System.TermInfoDriver::CreateKeyInfoFromInt(System.Int32,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 TermInfoDriver_CreateKeyInfoFromInt_m2C4CDCCB10F427AC9A4D12FDFD15FADBDD8EEDCE (TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653 * __this, int32_t ___n0, bool ___alt1, const RuntimeMethod* method);
// System.Void System.TermInfoDriver::WriteSpecialKey(System.ConsoleKeyInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TermInfoDriver_WriteSpecialKey_m76A0A1AD8A1280927C8A75DA4AEEC8B85B5210E3 (TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653 * __this, ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 ___key0, const RuntimeMethod* method);
// System.Boolean System.TermInfoDriver::IsSpecialKey(System.ConsoleKeyInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TermInfoDriver_IsSpecialKey_m90029957DF9A323BDF709BE801753EC8589AE955 (TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653 * __this, ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 ___key0, const RuntimeMethod* method);
// System.Int32 System.ConsoleDriver::InternalKeyAvailable(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ConsoleDriver_InternalKeyAvailable_m4A48787A04F55E95C2EFD79A4727132C4B5B3468 (int32_t ___ms_timeout0, const RuntimeMethod* method);
// System.Void System.TermInfoDriver::AddToBuffer(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TermInfoDriver_AddToBuffer_mBFD0A5D22191513A7B1739ED80455D642110C49B (TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653 * __this, int32_t ___b0, const RuntimeMethod* method);
// System.Void System.TermInfoDriver::Init()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TermInfoDriver_Init_mAA7BB4F7D9EDADAC2AE0A864410D4F062FA8E569 (TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653 * __this, const RuntimeMethod* method);
// System.Void System.TermInfoDriver::CheckWindowDimensions()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TermInfoDriver_CheckWindowDimensions_mA57D80C0BDCF89FBE6616495887AF3B3F3D3D35B (TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653 * __this, const RuntimeMethod* method);
// System.Void System.Buffer::BlockCopy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Buffer_BlockCopy_m1F882D595976063718AF6E405664FC761924D353 (RuntimeArray * ___src0, int32_t ___srcOffset1, RuntimeArray * ___dst2, int32_t ___dstOffset3, int32_t ___count4, const RuntimeMethod* method);
// System.Void System.ConsoleKeyInfo::.ctor(System.Char,System.ConsoleKey,System.Boolean,System.Boolean,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConsoleKeyInfo__ctor_mF5F427F75CCD5D4BCAADCE6AE31F61D70BD95B98 (ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 * __this, Il2CppChar ___keyChar0, int32_t ___key1, bool ___shift2, bool ___alt3, bool ___control4, const RuntimeMethod* method);
// System.Boolean System.ByteMatcher::StartsWith(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ByteMatcher_StartsWith_mE7DCC79999EE153E06F1230A98D1D2CA20D1D4A5 (ByteMatcher_tB199BDD35E2575B84D9FDED34954705653D241DC * __this, int32_t ___c0, const RuntimeMethod* method);
// System.Void System.TermInfoDriver::AdjustBuffer()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TermInfoDriver_AdjustBuffer_m6C594DD7010792FC07083EE1F0DFF5FF8DA490F9 (TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653 * __this, const RuntimeMethod* method);
// System.TermInfoStrings System.ByteMatcher::Match(System.Char[],System.Int32,System.Int32,System.Int32&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ByteMatcher_Match_mF9866E6C6F2FEC09034695FBED166744F65BA931 (ByteMatcher_tB199BDD35E2575B84D9FDED34954705653D241DC * __this, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___buffer0, int32_t ___offset1, int32_t ___length2, int32_t* ___used3, const RuntimeMethod* method);
// System.Void System.TermInfoDriver::InitKeys()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TermInfoDriver_InitKeys_m3C4D9CA6DE9CEA5F50BDBCB72BF7975F4F1758CB (TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653 * __this, const RuntimeMethod* method);
// System.Object System.TermInfoDriver::GetKeyFromBuffer(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * TermInfoDriver_GetKeyFromBuffer_m27FF9AA28768AEE2B2AFFF6E959EF3F67FED092E (TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653 * __this, bool ___cooked0, const RuntimeMethod* method);
// System.Boolean System.IO.StreamReader::DataAvailable()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool StreamReader_DataAvailable_m1B8832D71BF98C38A5520CDFFC64684716F87863 (StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * __this, const RuntimeMethod* method);
// System.Boolean System.TermInfoDriver::InputPending()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TermInfoDriver_InputPending_mAA41251F9BE9308ED170869BB1A739676B1B0EAF (TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653 * __this, const RuntimeMethod* method);
// System.Void System.IO.CStreamWriter::InternalWriteChars(System.Char[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CStreamWriter_InternalWriteChars_mBB886C93661A30F21149EA8DE4493C69A7A2D709 (CStreamWriter_t6B662CA496662AF63D81722DCA99094893C80450 * __this, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___buffer0, int32_t ___n1, const RuntimeMethod* method);
// System.Char System.ConsoleKeyInfo::get_KeyChar()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Il2CppChar ConsoleKeyInfo_get_KeyChar_m6B17C3F0DF650E04D7C0C081E063AE31E8C14509_inline (ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 * __this, const RuntimeMethod* method);
// System.Void System.TermInfoDriver::QueueEcho(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TermInfoDriver_QueueEcho_m0E4C2A73AFF680E59B7C572BD6361A1A024A4F9A (TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653 * __this, Il2CppChar ___c0, const RuntimeMethod* method);
// System.Void System.TermInfoDriver::EchoFlush()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TermInfoDriver_EchoFlush_m97CC1A347D6D0BBE86611C997DD629D2688DB022 (TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653 * __this, const RuntimeMethod* method);
// System.Void System.Text.StringBuilder::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder__ctor_mF928376F82E8C8FF3C11842C562DB8CF28B2735E (StringBuilder_t * __this, const RuntimeMethod* method);
// System.Int32 System.Text.StringBuilder::get_Length()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07 (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_m05C12F58ADC2D807613A9301DF438CB3CD09B75A (StringBuilder_t * __this, Il2CppChar ___value0, const RuntimeMethod* method);
// System.Void System.Text.StringBuilder::set_Length(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder_set_Length_m84AF318230AE5C3D0D48F1CE7C2170F6F5C19F5B (StringBuilder_t * __this, int32_t ___value0, const RuntimeMethod* method);
// System.ConsoleKeyInfo System.TermInfoDriver::ReadKeyInternal(System.Boolean&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 TermInfoDriver_ReadKeyInternal_mE2B30F995CCA46F324E112B530324C63AF5A6C7D (TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653 * __this, bool* ___fresh0, const RuntimeMethod* method);
// System.Void System.TermInfoDriver::Echo(System.ConsoleKeyInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TermInfoDriver_Echo_m0BDD3AED410D2EA5EAFBCC68892043A302127551 (TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653 * __this, ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 ___key0, const RuntimeMethod* method);
// System.Char System.Text.StringBuilder::get_Chars(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar StringBuilder_get_Chars_mC069533DCA4FB798DFA069469EBABA85DCC183C6 (StringBuilder_t * __this, int32_t ___index0, const RuntimeMethod* method);
// System.String System.TermInfoDriver::ReadUntilConditionInternal(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TermInfoDriver_ReadUntilConditionInternal_m872444B3E39D297C33CB5A615FCE3775CE7D2CDB (TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653 * __this, bool ___haltOnNewLine0, const RuntimeMethod* method);
// System.Void System.ArgumentOutOfRangeException::.ctor(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * __this, String_t* ___paramName0, String_t* ___message1, const RuntimeMethod* method);
// System.Void System.NotSupportedException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * __this, String_t* ___message0, const RuntimeMethod* method);
// System.ParameterizedStrings/FormatParam System.ParameterizedStrings/FormatParam::op_Implicit(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800 FormatParam_op_Implicit_m3D272BDCB32F2BC451BA599EF1571E6719E97DF0 (int32_t ___value0, const RuntimeMethod* method);
// System.String System.ParameterizedStrings::Evaluate(System.String,System.ParameterizedStrings/FormatParam[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ParameterizedStrings_Evaluate_mF75E575BBEEF102F653314A027E2E9409BE55DAF (String_t* ___format0, FormatParamU5BU5D_t2F95A3C5AF726E75A42BC28843BAD579B62199B5* ___args1, const RuntimeMethod* method);
// System.Void System.Collections.Hashtable::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable__ctor_m72506C0A5B2608721EA285A04F004A229B537A68 (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * __this, const RuntimeMethod* method);
// System.Void System.TermInfoDriver::CreateKeyMap()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TermInfoDriver_CreateKeyMap_mC802A816F3EAEA7343B627FA9DCC0A69E54F491A (TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653 * __this, const RuntimeMethod* method);
// System.Void System.ByteMatcher::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ByteMatcher__ctor_m5F4DEDA840BDF53D47E1A9C3267442295F928144 (ByteMatcher_tB199BDD35E2575B84D9FDED34954705653D241DC * __this, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.RuntimeHelpers::InitializeArray(System.Array,System.RuntimeFieldHandle)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RuntimeHelpers_InitializeArray_m29F50CDFEEE0AB868200291366253DD4737BC76A (RuntimeArray * ___array0, RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF ___fldHandle1, const RuntimeMethod* method);
// System.Void System.TermInfoDriver::AddStringMapping(System.TermInfoStrings)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TermInfoDriver_AddStringMapping_mE7AD22D560E11207EF8025643765C2859CB54BD5 (TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653 * __this, int32_t ___s0, const RuntimeMethod* method);
// System.Void System.ByteMatcher::AddMapping(System.TermInfoStrings,System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ByteMatcher_AddMapping_m6F17EE5B94E56935034142A2847A83F5E099B708 (ByteMatcher_tB199BDD35E2575B84D9FDED34954705653D241DC * __this, int32_t ___key0, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___val1, const RuntimeMethod* method);
// System.Void System.ByteMatcher::Sort()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ByteMatcher_Sort_mCA31E5D0C950F75E86DC00A106D3BB6219D29C4F (ByteMatcher_tB199BDD35E2575B84D9FDED34954705653D241DC * __this, const RuntimeMethod* method);
// System.Byte[] System.TermInfoReader::GetStringBytes(System.TermInfoStrings)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* TermInfoReader_GetStringBytes_mD2FD6A1D2FC6D7F3C3DC6EC8254A13A4C1114B06 (TermInfoReader_tCAABF3484E6F0AA298F809766C52CA9DC4E6C55C * __this, int32_t ___tstr0, const RuntimeMethod* method);
// System.IO.FileStream System.IO.File::OpenRead(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418 * File_OpenRead_m3B2974AB5AA8011E587AC834BE71862BF77C2129 (String_t* ___path0, const RuntimeMethod* method);
// System.Void System.TermInfoReader::ReadHeader(System.Byte[],System.Int32&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TermInfoReader_ReadHeader_m6809956ED26CFF90923FF7E3B4DB6733828FB124 (TermInfoReader_tCAABF3484E6F0AA298F809766C52CA9DC4E6C55C * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___buffer0, int32_t* ___position1, const RuntimeMethod* method);
// System.Void System.TermInfoReader::ReadNames(System.Byte[],System.Int32&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TermInfoReader_ReadNames_m071D18738A2D0CEEE12B76CBF64302062C76E147 (TermInfoReader_tCAABF3484E6F0AA298F809766C52CA9DC4E6C55C * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___buffer0, int32_t* ___position1, const RuntimeMethod* method);
// System.Int16 System.TermInfoReader::GetInt16(System.Byte[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t TermInfoReader_GetInt16_m38F5BB51A12E99E08212EB68C8C717D3C799518A (TermInfoReader_tCAABF3484E6F0AA298F809766C52CA9DC4E6C55C * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___buffer0, int32_t ___offset1, const RuntimeMethod* method);
// System.String System.String::Format(System.String,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_m0ACDD8B34764E4040AED0B3EEB753567E4576BFA (String_t* ___format0, RuntimeObject * ___arg01, const RuntimeMethod* method);
// System.String System.TermInfoReader::GetString(System.Byte[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TermInfoReader_GetString_mD60F86AEAFF20399149D21B28D7911D442E52AA1 (TermInfoReader_tCAABF3484E6F0AA298F809766C52CA9DC4E6C55C * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___buffer0, int32_t ___offset1, const RuntimeMethod* method);
// System.Int32 System.String::get_Length()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline (String_t* __this, const RuntimeMethod* method);
// System.Byte[] System.TermInfoReader::GetStringBytes(System.Byte[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* TermInfoReader_GetStringBytes_m05CD4F9BF52C817DCAB7EFD34FC74D62D7C6118F (TermInfoReader_tCAABF3484E6F0AA298F809766C52CA9DC4E6C55C * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___buffer0, int32_t ___offset1, const RuntimeMethod* method);
// System.Text.Encoding System.Text.Encoding::get_ASCII()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * Encoding_get_ASCII_m9B673AE3152AB04D07CADE6E5E142C785B5BC94E (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_m80AEF70443EFBB84D8CCC36D477B8E17A8814FC2 (RuntimeArray * ___src0, int32_t ___srcOffsetBytes1, RuntimeArray * ___dst2, int32_t ___dstOffsetBytes3, int32_t ___byteCount4, const RuntimeMethod* method);
// System.Void System.Text.Encoding::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Encoding__ctor_m25E853E4AF252CA29A3295065E83BA2C7B1416D5 (Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * __this, int32_t ___codePage0, const RuntimeMethod* method);
// System.Text.EncoderFallback System.Text.EncoderFallback::get_ReplacementFallback()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * EncoderFallback_get_ReplacementFallback_m3FF44931084C980CD4AC9773A73D74302EB37139 (const RuntimeMethod* method);
// System.Text.DecoderFallback System.Text.DecoderFallback::get_ReplacementFallback()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * DecoderFallback_get_ReplacementFallback_m25F035A7268BAE39E55F606D2735A386DCB3D8EA (const RuntimeMethod* method);
// System.Void System.ArgumentNullException::.ctor(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentNullException__ctor_m9EA692D49986AEBAC433CE3381331146109AE20F (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * __this, String_t* ___paramName0, String_t* ___message1, const RuntimeMethod* method);
// System.Int32 System.Runtime.CompilerServices.RuntimeHelpers::get_OffsetToStringData()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RuntimeHelpers_get_OffsetToStringData_mF3B79A906181F1A2734590DA161E2AF183853F8B (const RuntimeMethod* method);
// System.String System.String::CreateStringFromEncoding(System.Byte*,System.Int32,System.Text.Encoding)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_CreateStringFromEncoding_m05572A060148F853D4AD4D275D432DFF261ABF99 (uint8_t* ___bytes0, int32_t ___byteLength1, Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___encoding2, const RuntimeMethod* method);
// System.Text.EncoderFallback System.Text.Encoder::get_Fallback()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * Encoder_get_Fallback_m8DB0FF2836429351EC5645B2B007982CE458632A_inline (Encoder_t29B2697B0B775EABC52EBFB914F327BE9B1A3464 * __this, const RuntimeMethod* method);
// System.Boolean System.Text.Encoder::get_InternalHasFallbackBuffer()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Encoder_get_InternalHasFallbackBuffer_m4064B8A9FEB64FFED4D963FB92E0F31612F63033 (Encoder_t29B2697B0B775EABC52EBFB914F327BE9B1A3464 * __this, const RuntimeMethod* method);
// System.Text.EncoderFallbackBuffer System.Text.Encoder::get_FallbackBuffer()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * Encoder_get_FallbackBuffer_m8E15109A9E24221308BA3C7BFEB622C417696445 (Encoder_t29B2697B0B775EABC52EBFB914F327BE9B1A3464 * __this, const RuntimeMethod* method);
// System.Type System.Object::GetType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60 (RuntimeObject * __this, const RuntimeMethod* method);
// System.String System.Environment::GetResourceString(System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB (String_t* ___key0, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___values1, const RuntimeMethod* method);
// System.Void System.Text.EncoderFallbackBuffer::InternalInitialize(System.Char*,System.Char*,System.Text.EncoderNLS,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EncoderFallbackBuffer_InternalInitialize_m177C2BFBE6958ABCC948A279D30E398911C18E66 (EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * __this, Il2CppChar* ___charStart0, Il2CppChar* ___charEnd1, EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * ___encoder2, bool ___setEncoder3, const RuntimeMethod* method);
// System.Text.EncoderFallback System.Text.Encoding::get_EncoderFallback()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * Encoding_get_EncoderFallback_m56A241904105944473545473FA20E07BF52B1885_inline (Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * __this, const RuntimeMethod* method);
// System.Char System.Text.EncoderFallbackBuffer::InternalGetNextChar()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar EncoderFallbackBuffer_InternalGetNextChar_mC1D11F50B25566F6B87974A3BCF1066C025A8CAF (EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * __this, const RuntimeMethod* method);
// System.String System.Text.EncoderReplacementFallback::get_DefaultString()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* EncoderReplacementFallback_get_DefaultString_m309F22B8DC7DFCFA07DB9B21498454B935B2BBB0_inline (EncoderReplacementFallback_tC2E8A94C82BBF7A4CFC8E3FDBA8A381DCF29F998 * __this, const RuntimeMethod* method);
// System.Void System.Text.Encoding::ThrowBytesOverflow(System.Text.EncoderNLS,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Encoding_ThrowBytesOverflow_m5682F2E9AE50908018D6991C8764D4DB065092C2 (Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * __this, EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * ___encoder0, bool ___nothingEncoded1, const RuntimeMethod* method);
// System.Text.DecoderFallback System.Text.Encoding::get_DecoderFallback()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * Encoding_get_DecoderFallback_m237581892E1C081234AFD800FCBC321C911EB657_inline (Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * __this, const RuntimeMethod* method);
// System.Text.DecoderFallback System.Text.Decoder::get_Fallback()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * Decoder_get_Fallback_m9F1A02991ED3FD31BEAC0499EC7978CE386D03AE_inline (Decoder_tEEF45EB6F965222036C49E8EC6BA8A0692AA1F26 * __this, const RuntimeMethod* method);
// System.Text.DecoderFallbackBuffer System.Text.Decoder::get_FallbackBuffer()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DecoderFallbackBuffer_t41EB1B3F5748BEEF5BE883DA09DBDB937441A83C * Decoder_get_FallbackBuffer_m2DBBD556551E9AE334B288AE83F72E69A7C4DA20 (Decoder_tEEF45EB6F965222036C49E8EC6BA8A0692AA1F26 * __this, const RuntimeMethod* method);
// System.Void System.Text.DecoderFallbackBuffer::InternalInitialize(System.Byte*,System.Char*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecoderFallbackBuffer_InternalInitialize_m251EB4670E9C98584BA6CB032F9109C1956DE0D7 (DecoderFallbackBuffer_t41EB1B3F5748BEEF5BE883DA09DBDB937441A83C * __this, uint8_t* ___byteStart0, Il2CppChar* ___charEnd1, const RuntimeMethod* method);
// System.String System.Text.DecoderReplacementFallback::get_DefaultString()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* DecoderReplacementFallback_get_DefaultString_m7ED43521155BA25273CD47953D2AB0E0033066D3_inline (DecoderReplacementFallback_t8CF74B2DAE2A08AEA7DF6366778D2E3EA75FC742 * __this, const RuntimeMethod* method);
// System.Void System.Text.Encoding::ThrowCharsOverflow(System.Text.DecoderNLS,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Encoding_ThrowCharsOverflow_m1D3B8B6DE4989398B02A75269278927A0A219CAC (Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * __this, DecoderNLS_tCDF0A810A2E2B738728A98BBB49F792E66BDF6CD * ___decoder0, bool ___nothingDecoded1, const RuntimeMethod* method);
// System.Void System.Text.DecoderFallbackBuffer::InternalReset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecoderFallbackBuffer_InternalReset_mAA3A04B329865E28A746D984381B9A45C4123B33 (DecoderFallbackBuffer_t41EB1B3F5748BEEF5BE883DA09DBDB937441A83C * __this, const RuntimeMethod* method);
// System.Void System.Text.DecoderNLS::.ctor(System.Text.Encoding)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecoderNLS__ctor_m7909804265A4B50D45020D604E0802C278297E67 (DecoderNLS_tCDF0A810A2E2B738728A98BBB49F792E66BDF6CD * __this, Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___encoding0, const RuntimeMethod* method);
// System.Void System.Text.EncoderNLS::.ctor(System.Text.Encoding)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EncoderNLS__ctor_m3F11286A48DC8DEB96AB6B98EC9A1C0F79A11051 (EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * __this, Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___encoding0, const RuntimeMethod* method);
// System.Void System.Runtime.Serialization.SerializationInfo::AddValue(System.String,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationInfo_AddValue_mC9D1E16476E24E1AFE7C59368D3BC0B35F64FBC6 (SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * __this, String_t* ___name0, RuntimeObject * ___value1, const RuntimeMethod* method);
// System.Void System.Text.DecoderFallback::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecoderFallback__ctor_m54A9DF12218E6A07D4316D7FDE75FDFA216C9437 (DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * __this, const RuntimeMethod* method);
// System.Void System.Text.DecoderExceptionFallbackBuffer::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecoderExceptionFallbackBuffer__ctor_m1D8FAD2C79007A64085B660CEB39712370BF16A0 (DecoderExceptionFallbackBuffer_t1E27F547826A8F4F4CCDA2CB51E232EFB64000EA * __this, const RuntimeMethod* method);
// System.Void System.Text.DecoderExceptionFallbackBuffer::Throw(System.Byte[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecoderExceptionFallbackBuffer_Throw_m2BCDB8F40B14EE1BFD9EA52D428586D55AC38462 (DecoderExceptionFallbackBuffer_t1E27F547826A8F4F4CCDA2CB51E232EFB64000EA * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___bytesUnknown0, int32_t ___index1, const RuntimeMethod* method);
// System.Void System.Text.StringBuilder::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder__ctor_m1C0F2D97B838537A2D0F64033AE4EF02D150A956 (StringBuilder_t * __this, int32_t ___capacity0, const RuntimeMethod* method);
// System.Text.StringBuilder System.Text.StringBuilder::Append(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260 (StringBuilder_t * __this, String_t* ___value0, const RuntimeMethod* method);
// System.String System.Byte::ToString(System.String,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Byte_ToString_m731FDB27391432D7F14B6769B5D0A3E248803D25 (uint8_t* __this, String_t* ___format0, RuntimeObject* ___provider1, const RuntimeMethod* method);
// System.Void System.Text.DecoderFallbackException::.ctor(System.String,System.Byte[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecoderFallbackException__ctor_m6F2DB8FEA829AF4ECF009AC7800207B9CA520CD2 (DecoderFallbackException_t600999E267866BD2B6A47BF1E525E779171FD41A * __this, String_t* ___message0, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___bytesUnknown1, int32_t ___index2, const RuntimeMethod* method);
// System.Void System.Text.DecoderFallbackBuffer::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecoderFallbackBuffer__ctor_mD3BD448C945CFCFD5ECB5D3F774D156A340F1046 (DecoderFallbackBuffer_t41EB1B3F5748BEEF5BE883DA09DBDB937441A83C * __this, const RuntimeMethod* method);
// System.Object System.Text.DecoderFallback::get_InternalSyncObject()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * DecoderFallback_get_InternalSyncObject_m18A79E25704EB01D64E1651DB4E97F1FB80EFEFE (const RuntimeMethod* method);
// System.Void System.Text.DecoderReplacementFallback::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecoderReplacementFallback__ctor_m078EB13AB10F7A933588BFADECA3C81C058ED231 (DecoderReplacementFallback_t8CF74B2DAE2A08AEA7DF6366778D2E3EA75FC742 * __this, const RuntimeMethod* method);
// System.Void System.Text.DecoderExceptionFallback::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecoderExceptionFallback__ctor_mB1650642BDE4E7B6AEE8A5652723DAEEC6214DC2 (DecoderExceptionFallback_tF6CA264320D5F576FED0265DBEC89C1F5759C8C9 * __this, const RuntimeMethod* method);
// System.Boolean System.Char::IsSurrogate(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsSurrogate_m464F9F75070ACD88165EE4734D617622A6667CB1 (Il2CppChar ___c0, const RuntimeMethod* method);
// System.Boolean System.Char::IsHighSurrogate(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsHighSurrogate_m64C60C09A8561520E43C8527D3DC38FF97E6274D (Il2CppChar ___c0, const RuntimeMethod* method);
// System.String System.String::Format(System.IFormatProvider,System.String,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_m30892041DA5F50D7B8CFD82FFC0F55B5B97A2B7F (RuntimeObject* ___provider0, String_t* ___format1, RuntimeObject * ___arg02, const RuntimeMethod* method);
// System.Void System.ArgumentException::.ctor(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8 (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * __this, String_t* ___message0, String_t* ___paramName1, const RuntimeMethod* method);
// System.Void System.ArgumentException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m33453ED48103C3A4893FBE06039DF7473FBAD7E6 (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method);
// System.Void System.Text.Decoder::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Decoder__ctor_m45B7A36C197C57ED0DF4F982C280603E2C8CC2A2 (Decoder_tEEF45EB6F965222036C49E8EC6BA8A0692AA1F26 * __this, const RuntimeMethod* method);
// System.Void System.Text.Decoder::SerializeDecoder(System.Runtime.Serialization.SerializationInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Decoder_SerializeDecoder_m9581A0FC542BF413F536FEE49E8973E88D3B840E (Decoder_tEEF45EB6F965222036C49E8EC6BA8A0692AA1F26 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, const RuntimeMethod* method);
// System.Type System.Type::GetTypeFromHandle(System.RuntimeTypeHandle)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6 (RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D ___handle0, const RuntimeMethod* method);
// System.Void System.Runtime.Serialization.SerializationInfo::SetType(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationInfo_SetType_m3F30AFEB3555E20E995D31713C0604E26B2CF784 (SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * __this, Type_t * ___type0, const RuntimeMethod* method);
// System.Void System.Text.DecoderReplacementFallback::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecoderReplacementFallback__ctor_m9D82FC93423AD9B954F28E30B20BF14DAFB01A5B (DecoderReplacementFallback_t8CF74B2DAE2A08AEA7DF6366778D2E3EA75FC742 * __this, String_t* ___replacement0, const RuntimeMethod* method);
// System.Boolean System.Char::IsSurrogate(System.String,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsSurrogate_m43C03392CA71985B36FE7EB29B6ECB2DABA2680F (String_t* ___s0, int32_t ___index1, const RuntimeMethod* method);
// System.Boolean System.Char::IsHighSurrogate(System.String,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsHighSurrogate_m8AB8BB9DEC2443D5799232FDA89C5BD0E5E091DB (String_t* ___s0, int32_t ___index1, const RuntimeMethod* method);
// System.Void System.Text.DecoderReplacementFallbackBuffer::.ctor(System.Text.DecoderReplacementFallback)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecoderReplacementFallbackBuffer__ctor_m9B96FC13DF9DBF34B2C3A5B515F2715989225BEA (DecoderReplacementFallbackBuffer_t1D90752C8EFF20A65277F02C619E16C373790D23 * __this, DecoderReplacementFallback_t8CF74B2DAE2A08AEA7DF6366778D2E3EA75FC742 * ___fallback0, const RuntimeMethod* method);
// System.Void System.Text.DecoderFallbackBuffer::ThrowLastBytesRecursive(System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecoderFallbackBuffer_ThrowLastBytesRecursive_mC2C38567BFC28253161CE100AC68FB8325AE753C (DecoderFallbackBuffer_t41EB1B3F5748BEEF5BE883DA09DBDB937441A83C * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___bytesUnknown0, const RuntimeMethod* method);
// System.Void System.Text.EncoderFallback::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EncoderFallback__ctor_m7EDA0415798986D15DA060414B0839FF158B9227 (EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * __this, const RuntimeMethod* method);
// System.Void System.Text.EncoderExceptionFallbackBuffer::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EncoderExceptionFallbackBuffer__ctor_m7892DE55648C518F5AEB0CF38CCB212D9001D7C4 (EncoderExceptionFallbackBuffer_tCCFC3E153251EFA466428A3D364E075DCB5408EB * __this, const RuntimeMethod* method);
// System.Void System.Text.EncoderFallbackBuffer::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EncoderFallbackBuffer__ctor_mE3698942F859D99529557619E751C18775FD49E9 (EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * __this, const RuntimeMethod* method);
// System.Void System.Text.EncoderFallbackException::.ctor(System.String,System.Char,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EncoderFallbackException__ctor_mB1F5011A315BDAD30C1D990F618AA2985A206E1F (EncoderFallbackException_t2577E6366E4064953BFA80B3A71BD75154E15B53 * __this, String_t* ___message0, Il2CppChar ___charUnknown1, int32_t ___index2, const RuntimeMethod* method);
// System.Boolean System.Char::IsLowSurrogate(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsLowSurrogate_m11EF790BE9683BDF04022FD055104AE7A22A6A9C (Il2CppChar ___c0, const RuntimeMethod* method);
// System.Int32 System.Char::ConvertToUtf32(System.Char,System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Char_ConvertToUtf32_m2AFA8A0A98ECFE3ACF3F74D45F7546ADBBADD601 (Il2CppChar ___highSurrogate0, Il2CppChar ___lowSurrogate1, const RuntimeMethod* method);
// System.Void System.Text.EncoderFallbackException::.ctor(System.String,System.Char,System.Char,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EncoderFallbackException__ctor_m0F427A6A094417A4E62FA3339B2E4691930F7AFE (EncoderFallbackException_t2577E6366E4064953BFA80B3A71BD75154E15B53 * __this, String_t* ___message0, Il2CppChar ___charUnknownHigh1, Il2CppChar ___charUnknownLow2, int32_t ___index3, const RuntimeMethod* method);
// System.Object System.Text.EncoderFallback::get_InternalSyncObject()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EncoderFallback_get_InternalSyncObject_mD870CEF1A48707E4884575C7D84AE7141072EF87 (const RuntimeMethod* method);
// System.Void System.Text.EncoderReplacementFallback::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EncoderReplacementFallback__ctor_mAB909581BDACE020217C9A308321E41802705D1E (EncoderReplacementFallback_tC2E8A94C82BBF7A4CFC8E3FDBA8A381DCF29F998 * __this, const RuntimeMethod* method);
// System.Void System.Text.EncoderExceptionFallback::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EncoderExceptionFallback__ctor_mD0FD9D04900F591426E35973BBF9F75152CA3739 (EncoderExceptionFallback_tF2E778252F491EF902164CC17AB15AD7AF14BE58 * __this, const RuntimeMethod* method);
// System.Boolean System.Text.EncoderNLS::get_MustFlush()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool EncoderNLS_get_MustFlush_mBA7B13F498D63B50EFFA562AC02EC73A2E8597DF_inline (EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * __this, const RuntimeMethod* method);
// System.Void System.Text.EncoderFallbackBuffer::ThrowLastCharRecursive(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EncoderFallbackBuffer_ThrowLastCharRecursive_m35D9DB23D34C93BDFF7670C5DA045C6FBA6A2458 (EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * __this, int32_t ___charRecursive0, const RuntimeMethod* method);
// System.Void System.Text.Encoder::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Encoder__ctor_m2F88A0C4027EC0264E770DF733A761BB589FA541 (Encoder_t29B2697B0B775EABC52EBFB914F327BE9B1A3464 * __this, const RuntimeMethod* method);
// System.Void System.Text.Encoder::SerializeEncoder(System.Runtime.Serialization.SerializationInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Encoder_SerializeEncoder_mACD65E50C4E5C9C6646AA44B5FB63CEDE0931079 (Encoder_t29B2697B0B775EABC52EBFB914F327BE9B1A3464 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, const RuntimeMethod* method);
// System.Void System.Runtime.Serialization.SerializationInfo::AddValue(System.String,System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationInfo_AddValue_mF1E3C85899AFD183897EB81ED87F55C4EDCEA146 (SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * __this, String_t* ___name0, Il2CppChar ___value1, const RuntimeMethod* method);
// System.Void System.Text.EncoderReplacementFallback::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EncoderReplacementFallback__ctor_mAE97C6B5EF9A81A90315A21E68271FAE87A738FD (EncoderReplacementFallback_tC2E8A94C82BBF7A4CFC8E3FDBA8A381DCF29F998 * __this, String_t* ___replacement0, const RuntimeMethod* method);
// System.Void System.Text.EncoderReplacementFallbackBuffer::.ctor(System.Text.EncoderReplacementFallback)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EncoderReplacementFallbackBuffer__ctor_mB08FC9E15D22A19BCA52A1A16FD49F99C7214D80 (EncoderReplacementFallbackBuffer_t15BBCFD4E3EFF8C907821BB065AA94A58C36959A * __this, EncoderReplacementFallback_tC2E8A94C82BBF7A4CFC8E3FDBA8A381DCF29F998 * ___fallback0, const RuntimeMethod* method);
// System.Void System.ArgumentOutOfRangeException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6 (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * __this, String_t* ___paramName0, const RuntimeMethod* method);
// System.Void System.Text.InternalEncoderBestFitFallback::.ctor(System.Text.Encoding)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEncoderBestFitFallback__ctor_m74F421EBA10BBB6CD286DA81A1E26A026227DAE2 (InternalEncoderBestFitFallback_tE5EF81259A780E6F8990218A8E46D41B5BCE56F3 * __this, Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___encoding0, const RuntimeMethod* method);
// System.Void System.Text.InternalDecoderBestFitFallback::.ctor(System.Text.Encoding)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalDecoderBestFitFallback__ctor_m9DC081B41C021834638AA9E36979B35C5172F744 (InternalDecoderBestFitFallback_tEDAD252E54B0CA27A47ABC5681EC6BCACB3C19B4 * __this, Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___encoding0, const RuntimeMethod* method);
// System.Void System.Text.Encoding::OnDeserializing()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Encoding_OnDeserializing_m3099E7D70952FCB1960ABC13D1CE1E70FD9B2AA3 (Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * __this, const RuntimeMethod* method);
// System.Void System.Text.Encoding::OnDeserialized()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Encoding_OnDeserialized_m9F589E77A408BE494602A4EF2C678D7A0FA77EED (Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * __this, const RuntimeMethod* method);
// System.Object System.Runtime.Serialization.SerializationInfo::GetValue(System.String,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * SerializationInfo_GetValue_m7910CE6C68888C1F863D7A35915391FA33463ECF (SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * __this, String_t* ___name0, Type_t * ___type1, const RuntimeMethod* method);
// System.Void System.Runtime.Serialization.SerializationInfo::AddValue(System.String,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationInfo_AddValue_m1229CE68F507974EBA0DA9C7C728A09E611D18B1 (SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * __this, String_t* ___name0, bool ___value1, const RuntimeMethod* method);
// System.Void System.Runtime.Serialization.SerializationInfo::AddValue(System.String,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationInfo_AddValue_m7C73917D9DC4B8FE4AFEF4BA8EBEDAB046A8D0BD (SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * __this, String_t* ___name0, int32_t ___value1, const RuntimeMethod* method);
// System.Text.Encoding System.Text.EncodingProvider::GetEncodingFromProvider(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * EncodingProvider_GetEncodingFromProvider_mA0F1D2A29AF8309112363BA3AEAD24F4F84F8A6F (int32_t ___codepage0, const RuntimeMethod* method);
// System.Object System.Text.Encoding::get_InternalSyncObject()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Encoding_get_InternalSyncObject_m83E4529829B8FCFB1CE706425804440F6BAD073E (const RuntimeMethod* method);
// System.Text.Encoding System.Text.Encoding::get_Default()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * Encoding_get_Default_m625C78C2A9A8504B8BA4141994412513DC470CE2 (const RuntimeMethod* method);
// System.Text.Encoding System.Text.Encoding::get_Unicode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * Encoding_get_Unicode_m86CC470F70F9BB52DDB26721F0C0D6EDAFC318AA (const RuntimeMethod* method);
// System.Text.Encoding System.Text.Encoding::get_BigEndianUnicode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * Encoding_get_BigEndianUnicode_m6CC17642A36943FE038F54729446D7E30D582BDD (const RuntimeMethod* method);
// System.Text.Encoding System.Text.Encoding::get_UTF7()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * Encoding_get_UTF7_mE709E3E74B727CFCC6675F07BC0AF19C7B4D0F1C (const RuntimeMethod* method);
// System.Text.Encoding System.Text.Encoding::get_UTF32()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * Encoding_get_UTF32_m64CB5BB9DA39B0628F70276EDB13DE03A270DE15 (const RuntimeMethod* method);
// System.Void System.Text.UTF32Encoding::.ctor(System.Boolean,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UTF32Encoding__ctor_m29D20C03874A58220973F79277050D62F8CA2475 (UTF32Encoding_t16A7634FE9BE75EEC897F21F1420783FAA53C30A * __this, bool ___bigEndian0, bool ___byteOrderMark1, const RuntimeMethod* method);
// System.Text.Encoding System.Text.Encoding::get_UTF8()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * Encoding_get_UTF8_m67C8652936B681E7BC7505E459E88790E0FF16D9 (const RuntimeMethod* method);
// System.Text.Encoding System.Text.Encoding::get_Latin1()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * Encoding_get_Latin1_m3CC61D40BEE46C311295920FC97B0EBF8AE620F3 (const RuntimeMethod* method);
// System.Globalization.CodePageDataItem System.Globalization.EncodingTable::GetCodePageDataItem(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CodePageDataItem_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB * EncodingTable_GetCodePageDataItem_m33D02AF0C3BB400E895F962DEDD3F8EC3D153953 (int32_t ___codepage0, const RuntimeMethod* method);
// System.Object System.Text.EncodingHelper::InvokeI18N(System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EncodingHelper_InvokeI18N_m638F0C7660999BE0390DD7E26CBC9603D139D2D6 (String_t* ___name0, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___args1, const RuntimeMethod* method);
// System.Text.Encoding System.Text.EncodingProvider::GetEncodingFromProvider(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * EncodingProvider_GetEncodingFromProvider_m6B4B2550725947939A8DEF0B26D335D7957017A7 (String_t* ___encodingName0, const RuntimeMethod* method);
// System.Int32 System.Globalization.EncodingTable::GetCodePageFromName(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EncodingTable_GetCodePageFromName_m7F8D824F555B748FA3232F05A34E4A1E3F546831 (String_t* ___name0, const RuntimeMethod* method);
// System.Text.Encoding System.Text.Encoding::GetEncoding(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * Encoding_GetEncoding_m0F51F30DFDD74D989E27C58C53FC82718CC51F68 (int32_t ___codepage0, const RuntimeMethod* method);
// System.String System.Environment::GetResourceStringEncodingName(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_GetResourceStringEncodingName_mB514D97C814AF47301B938B99C800A2130CB46AA (int32_t ___codePage0, const RuntimeMethod* method);
// System.Boolean System.Text.Encoding::get_IsReadOnly()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool Encoding_get_IsReadOnly_m1118DBF20E11C000BC29C326A2D202122DE37544_inline (Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * __this, const RuntimeMethod* method);
// System.Void System.InvalidOperationException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706 (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * __this, String_t* ___message0, const RuntimeMethod* method);
// System.Object System.Object::MemberwiseClone()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Object_MemberwiseClone_m1DAC4538CD68D4CF4DC5B04E4BBE86D470948B28 (RuntimeObject * __this, const RuntimeMethod* method);
// System.Void System.Text.ASCIIEncoding::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ASCIIEncoding__ctor_mC9D110516677AC1FAA80B3790BDDD1150A1779C4 (ASCIIEncoding_t3A4744E997A7BE0CEF1D5AE3A35EFC4DFFDDC6B9 * __this, const RuntimeMethod* method);
// System.Void System.Text.Latin1Encoding::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Latin1Encoding__ctor_mCA519590D0ED43A343B7D00D546F83AC003E7FC5 (Latin1Encoding_tC026E9CCC23C3A25568FF02B75F937DB388DC9E7 * __this, const RuntimeMethod* method);
// System.Char[] System.String::ToCharArray()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* String_ToCharArray_mFCFF32A5EC698E81075E0C72C874282B9ED197A6 (String_t* __this, const RuntimeMethod* method);
// System.Void System.Text.Encoding/DefaultDecoder::.ctor(System.Text.Encoding)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultDecoder__ctor_m151367754ECD70E58BE520F3B94E23EBCF855A3D (DefaultDecoder_t3872BD77BDC12EB0F34D0DEE8E34D7A1FE49F91C * __this, Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___encoding0, const RuntimeMethod* method);
// System.Text.Encoding System.Text.EncodingHelper::GetDefaultEncoding()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * EncodingHelper_GetDefaultEncoding_m11A46F8629633F14B5C9787094E4A50862D6B5C1 (const RuntimeMethod* method);
// System.Text.Encoding System.Text.Encoding::CreateDefaultEncoding()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * Encoding_CreateDefaultEncoding_mB5BD9528BFE643F1852752B28EA8426C195E73A5 (const RuntimeMethod* method);
// System.Void System.Text.Encoding/DefaultEncoder::.ctor(System.Text.Encoding)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultEncoder__ctor_mE3BC59793DAED9FC44BD4F688D13B6733EA13C65 (DefaultEncoder_t71EA10E1235BA46A6CC88E06EF73C2BAC1673225 * __this, Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___encoding0, const RuntimeMethod* method);
// System.String System.String::CreateString(System.Char[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_CreateString_m394C06654854ADD4C51FF957BE0CC72EF52BAA96 (String_t* __this, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___val0, const RuntimeMethod* method);
// System.Void System.Text.UnicodeEncoding::.ctor(System.Boolean,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnicodeEncoding__ctor_m008B9B92D414A56B533624021525F53B2A73BD10 (UnicodeEncoding_t6E0E60A1D7A4BECF9901B00EB286FFC2B57F6356 * __this, bool ___bigEndian0, bool ___byteOrderMark1, const RuntimeMethod* method);
// System.Void System.Text.UTF7Encoding::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UTF7Encoding__ctor_m5692C45774DF106FBE6B1E5D3C02052E1A71BEAA (UTF7Encoding_t5733F4C1ABD99AECA11B02CBABEACF7A14545A86 * __this, const RuntimeMethod* method);
// System.Void System.Text.UTF8Encoding::.ctor(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UTF8Encoding__ctor_m27389C5A707DE2AA997362ED250BEB946CB6B076 (UTF8Encoding_t77ED103B749A387EF072C3429F48C91D12CA08DE * __this, bool ___encoderShouldEmitUTF8Identifier0, const RuntimeMethod* method);
// System.Void System.Text.EncoderFallbackBuffer::InternalReset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EncoderFallbackBuffer_InternalReset_m9BF666E5A4160B892C3C334BABA75D150DF642E7 (EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * __this, const RuntimeMethod* method);
// System.Void System.Text.Encoding::ThrowBytesOverflow()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Encoding_ThrowBytesOverflow_mF003819DBA1215AF2B34F8B4C39A64C6A88B4BBC (Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * __this, const RuntimeMethod* method);
// System.Void System.Text.EncoderNLS::ClearMustFlush()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EncoderNLS_ClearMustFlush_mECADE44B82A8FED6B5284A5D916C4E2B26E326A3 (EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * __this, const RuntimeMethod* method);
// System.Boolean System.Text.Decoder::get_InternalHasFallbackBuffer()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Decoder_get_InternalHasFallbackBuffer_m02F2ED8893F9E6DFBEDBC299829552C35D627156 (Decoder_tEEF45EB6F965222036C49E8EC6BA8A0692AA1F26 * __this, const RuntimeMethod* method);
// System.Void System.Text.Encoding::ThrowCharsOverflow()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Encoding_ThrowCharsOverflow_m6F80534CD46B3C99549206A763F8785DFFF03F4F (Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * __this, const RuntimeMethod* method);
// System.Void System.Text.DecoderNLS::ClearMustFlush()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecoderNLS_ClearMustFlush_m345839D32E273BAE8CDFCD4EA624AA82C8A474C8 (DecoderNLS_tCDF0A810A2E2B738728A98BBB49F792E66BDF6CD * __this, const RuntimeMethod* method);
// System.Text.Encoding System.Text.EncoderNLS::get_Encoding()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * EncoderNLS_get_Encoding_mCDF2F7C580FCF269BE40BC9BBA55CCD5A8F4C715_inline (EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * __this, const RuntimeMethod* method);
// System.Void System.Text.Encoding/EncodingByteBuffer::MovePrevious(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EncodingByteBuffer_MovePrevious_mCB4BF5A4CA02264F297D98DAA7E9CDEE744156F1 (EncodingByteBuffer_t3F87DF1BC4355EFCA2E26FFAE6D239ABCFBF3AD5 * __this, bool ___bThrow0, const RuntimeMethod* method);
// System.Boolean System.Text.Encoding/EncodingByteBuffer::AddByte(System.Byte,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EncodingByteBuffer_AddByte_mE9CAED19A491A8A78C698033490017F3BC8CFC4A (EncodingByteBuffer_t3F87DF1BC4355EFCA2E26FFAE6D239ABCFBF3AD5 * __this, uint8_t ___b0, int32_t ___moreBytesExpected1, const RuntimeMethod* method);
// System.Boolean System.Text.Encoding/EncodingByteBuffer::AddByte(System.Byte,System.Byte,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EncodingByteBuffer_AddByte_mC0CA34622FA97CA71C4C1150E5829BB9CFD357B2 (EncodingByteBuffer_t3F87DF1BC4355EFCA2E26FFAE6D239ABCFBF3AD5 * __this, uint8_t ___b10, uint8_t ___b21, int32_t ___moreBytesExpected2, const RuntimeMethod* method);
// System.Boolean System.Text.Encoding/EncodingCharBuffer::AddChar(System.Char,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EncodingCharBuffer_AddChar_m2BD7262E87991C2B1A9847FB9F6DED8D6F463E7B (EncodingCharBuffer_t57DF2C468BB65F56788A37E2DDF56AA6BE536BD0 * __this, Il2CppChar ___ch0, int32_t ___numBytes1, const RuntimeMethod* method);
// System.Boolean System.Text.Encoding/EncodingCharBuffer::Fallback(System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EncodingCharBuffer_Fallback_mC0B6F0298F99CC06FA859D3DA69F0E8A3FDACBE7 (EncodingCharBuffer_t57DF2C468BB65F56788A37E2DDF56AA6BE536BD0 * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___byteBuffer0, const RuntimeMethod* method);
// System.Void System.Text.UTF8Encoding::.ctor(System.Boolean,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UTF8Encoding__ctor_m026030C6C39449C25EC6FA364AA0A49FB3ADCD9E (UTF8Encoding_t77ED103B749A387EF072C3429F48C91D12CA08DE * __this, bool ___encoderShouldEmitUTF8Identifier0, bool ___throwOnInvalidBytes1, const RuntimeMethod* method);
// System.Void System.Text.Encoding::setReadOnly(System.Boolean)
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void Encoding_setReadOnly_mEB95513471A530FFD4F84AB63E4F794B5DCF174C_inline (Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * __this, bool ___value0, const RuntimeMethod* method);
// System.String System.Text.EncodingHelper::InternalCodePage(System.Int32&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* EncodingHelper_InternalCodePage_m40D628F42FC6E0B635B21496F0BA71A00B009432 (int32_t* ___code_page0, const RuntimeMethod* method);
// System.Text.Encoding System.Text.Encoding::GetEncoding(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * Encoding_GetEncoding_mA19D07F2E88F8FF58D42B73AFF5E22241607D54E (String_t* ___name0, const RuntimeMethod* method);
// System.Text.Encoding System.Text.EncodingHelper::get_UTF8Unmarked()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * EncodingHelper_get_UTF8Unmarked_mDC45343C3BA5B14AD998D36344DDFD0B7068E335 (const RuntimeMethod* method);
// System.Boolean System.Reflection.Assembly::op_Equality(System.Reflection.Assembly,System.Reflection.Assembly)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Assembly_op_Equality_m4B6A318CE4104781ABF30A2BBBCCCFB0FE342316 (Assembly_t * ___left0, Assembly_t * ___right1, const RuntimeMethod* method);
// System.Reflection.Assembly System.Reflection.Assembly::Load(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Assembly_t * Assembly_Load_m4640304E91781FC3D197CD014B0C2DCEAFCFFF55 (String_t* ___assemblyString0, const RuntimeMethod* method);
// System.Boolean System.Type::op_Equality(System.Type,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8 (Type_t * ___left0, Type_t * ___right1, const RuntimeMethod* method);
// System.Void System.Text.InternalDecoderBestFitFallbackBuffer::.ctor(System.Text.InternalDecoderBestFitFallback)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalDecoderBestFitFallbackBuffer__ctor_m4660895B648DE232827A084937D6E7870F407CAF (InternalDecoderBestFitFallbackBuffer_t72773560F3EA35774592AA02A71B46D4A46DA25F * __this, InternalDecoderBestFitFallback_tEDAD252E54B0CA27A47ABC5681EC6BCACB3C19B4 * ___fallback0, const RuntimeMethod* method);
// System.Object System.Text.InternalDecoderBestFitFallbackBuffer::get_InternalSyncObject()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalDecoderBestFitFallbackBuffer_get_InternalSyncObject_m882032FDCD9281FC5145B8AA0F2C604EB806915A (const RuntimeMethod* method);
// System.Char System.Text.InternalDecoderBestFitFallbackBuffer::TryBestFit(System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar InternalDecoderBestFitFallbackBuffer_TryBestFit_m893FED71FD776004F8B3DDBA0F209ACD819D9B7E (InternalDecoderBestFitFallbackBuffer_t72773560F3EA35774592AA02A71B46D4A46DA25F * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___bytesCheck0, const RuntimeMethod* method);
// System.Void System.Text.InternalEncoderBestFitFallbackBuffer::.ctor(System.Text.InternalEncoderBestFitFallback)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEncoderBestFitFallbackBuffer__ctor_m0446A53228519814A3BC54A1F6756E21EC2729B5 (InternalEncoderBestFitFallbackBuffer_t8A9165EBB478F5F06CA6F3D170BC17B3A342EDE3 * __this, InternalEncoderBestFitFallback_tE5EF81259A780E6F8990218A8E46D41B5BCE56F3 * ___fallback0, const RuntimeMethod* method);
// System.Object System.Text.InternalEncoderBestFitFallbackBuffer::get_InternalSyncObject()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEncoderBestFitFallbackBuffer_get_InternalSyncObject_m07257512FD952E191F4C1A480BB8F2B43D3CEA21 (const RuntimeMethod* method);
// System.Char System.Text.InternalEncoderBestFitFallbackBuffer::TryBestFit(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar InternalEncoderBestFitFallbackBuffer_TryBestFit_m4BC29FFF78F074AB58EBD2247EAA801205C8F5E7 (InternalEncoderBestFitFallbackBuffer_t8A9165EBB478F5F06CA6F3D170BC17B3A342EDE3 * __this, Il2CppChar ___cUnknown0, const RuntimeMethod* method);
// System.Void System.Text.EncodingNLS::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EncodingNLS__ctor_mBB608BD3E5EEC3B10BE1D10B20EF40D4923A52D6 (EncodingNLS_tED4EB523BC03EF4F815875D8A722B294A72F40E7 * __this, int32_t ___codePage0, const RuntimeMethod* method);
// System.Void System.Text.Encoding::DeserializeEncoding(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Encoding_DeserializeEncoding_m69F4C52BF07039A20AA9E72F9CB7803862D10B44 (Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method);
// System.Void System.Text.Encoding::SerializeEncoding(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Encoding_SerializeEncoding_m5F127574AC8568AAE4E93246ECA908E7D384131D (Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method);
// System.Int32 Mono.Globalization.Unicode.NormalizationTableUtil::PropIdx(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NormalizationTableUtil_PropIdx_mF702C2D45497D6AC5D742B7BE831D10FBEF4ADCD (int32_t ___cp0, const RuntimeMethod* method);
// System.Int32 Mono.Globalization.Unicode.NormalizationTableUtil::MapIdx(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NormalizationTableUtil_MapIdx_mE125070C36E28732429CD254EF1966EB3100F461 (int32_t ___cp0, const RuntimeMethod* method);
// System.Int32 Mono.Globalization.Unicode.CodePointIndexer::ToIndex(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CodePointIndexer_ToIndex_m933E52A360D43B57C511C2153A56EC3FA6AAE416 (CodePointIndexer_tA70DBD5101E826E30EEF124C2EEE1019B539DB4A * __this, int32_t ___cp0, const RuntimeMethod* method);
// System.Void System.Text.Normalization::Decompose(System.String,System.Text.StringBuilder&,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Normalization_Decompose_mC120D0C06838074BAE44D314E2E39FF3909935BE (String_t* ___source0, StringBuilder_t ** ___sb1, int32_t ___checkType2, const RuntimeMethod* method);
// System.Text.StringBuilder System.Text.Normalization::Combine(System.String,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * Normalization_Combine_mF29961DF76E25EDF17A7173DCE1F82B3A2457702 (String_t* ___source0, int32_t ___start1, int32_t ___checkType2, const RuntimeMethod* method);
// System.Void System.Text.Normalization::Combine(System.Text.StringBuilder,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Normalization_Combine_m13CF31C439C3C1676F35199640FAF86EAF0BB33A (StringBuilder_t * ___sb0, int32_t ___i1, int32_t ___checkType2, const RuntimeMethod* method);
// System.Text.NormalizationCheck System.Text.Normalization::QuickCheck(System.Char,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Normalization_QuickCheck_m41D4FF8E0DC13D1D0CE7BDB35607FDA313DCB86B (Il2CppChar ___c0, int32_t ___type1, const RuntimeMethod* method);
// System.Int32 System.Text.Normalization::CombineHangul(System.Text.StringBuilder,System.String,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Normalization_CombineHangul_m6ACCCB03BD7578B68D7EBF7A57EA5D3589CE089B (StringBuilder_t * ___sb0, String_t* ___s1, int32_t ___current2, const RuntimeMethod* method);
// System.Int32 System.Text.Normalization::TryComposeWithPreviousStarter(System.Text.StringBuilder,System.String,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Normalization_TryComposeWithPreviousStarter_mC6EE7E98390E0FDA79259873D8CF514EBCFBC162 (StringBuilder_t * ___sb0, String_t* ___s1, int32_t ___current2, const RuntimeMethod* method);
// System.Int32 System.Text.Normalization::Fetch(System.Text.StringBuilder,System.String,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Normalization_Fetch_m63D1D25228B34DF463CA9068F72735A7C1EB5F3E (StringBuilder_t * ___sb0, String_t* ___s1, int32_t ___i2, const RuntimeMethod* method);
// System.Void System.Text.StringBuilder::set_Chars(System.Int32,System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder_set_Chars_m71B2B761D6D287A666302FD85E320E1E60F388EA (StringBuilder_t * __this, int32_t ___index0, Il2CppChar ___value1, const RuntimeMethod* method);
// System.Text.StringBuilder System.Text.StringBuilder::Remove(System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Remove_m5DA9C1C4D056FA61B8923BE85E6BFF44B14A24F9 (StringBuilder_t * __this, int32_t ___startIndex0, int32_t ___length1, const RuntimeMethod* method);
// System.Byte System.Text.Normalization::GetCombiningClass(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Normalization_GetCombiningClass_mE4FE7AF1CC77468229ED3E949CB73C0C9D2E7779 (int32_t ___c0, const RuntimeMethod* method);
// System.Int32 System.Text.Normalization::GetPrimaryCompositeHelperIndex(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Normalization_GetPrimaryCompositeHelperIndex_mBF42ECA25605228B344D469251274E6E0C0102B2 (int32_t ___cp0, const RuntimeMethod* method);
// System.Int32 System.Text.Normalization::TryCompose(System.Int32,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Normalization_TryCompose_m5879D248041F211393CD46EA75FB4654253A2BD7 (int32_t ___i0, int32_t ___starter1, int32_t ___candidate2, const RuntimeMethod* method);
// System.Int32 System.Text.Normalization::GetPrimaryCompositeFromMapIndex(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Normalization_GetPrimaryCompositeFromMapIndex_mC882AED4638E77E976BC56DDA2F6DA2448EFA022 (int32_t ___src0, const RuntimeMethod* method);
// System.UInt32 System.Text.Normalization::PropValue(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Normalization_PropValue_m74F5DC4C2FF35022E0473B8B6EBC83609E0D5511 (int32_t ___cp0, const RuntimeMethod* method);
// System.Void System.Text.Normalization::DecomposeChar(System.Text.StringBuilder&,System.Int32[]&,System.String,System.Int32,System.Int32,System.Int32&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Normalization_DecomposeChar_mFCD460869F56DD899498A1A3F70025C1C1B84A6C (StringBuilder_t ** ___sb0, Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** ___buf1, String_t* ___s2, int32_t ___i3, int32_t ___checkType4, int32_t* ___start5, 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_m9EB954E99DC99B8CC712ABB70EAA07616B841D46 (StringBuilder_t * __this, String_t* ___value0, int32_t ___startIndex1, int32_t ___count2, const RuntimeMethod* method);
// System.Void System.Text.Normalization::ReorderCanonical(System.String,System.Text.StringBuilder&,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Normalization_ReorderCanonical_mC647AA0BB997910E2FC0ED33CF89DCE413362C4C (String_t* ___src0, StringBuilder_t ** ___sb1, int32_t ___start2, const RuntimeMethod* method);
// System.Int32 System.Text.Normalization::GetCanonical(System.Int32,System.Int32[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Normalization_GetCanonical_m9BE2B7D000EACEBFEDD8CFB4BAA9F9A04ACB53E1 (int32_t ___c0, Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___buf1, int32_t ___bufIdx2, int32_t ___checkType3, const RuntimeMethod* method);
// System.Int32 System.Text.Normalization::GetCanonicalHangul(System.Int32,System.Int32[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Normalization_GetCanonicalHangul_mE5E98FB3A1941526B0D69E8086C3650AE85D7982 (int32_t ___s0, Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___buf1, int32_t ___bufIdx2, const RuntimeMethod* method);
// System.Int32 System.Text.Normalization::CharMapIdx(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Normalization_CharMapIdx_mD7FF7B9511E1108A8718E0AA1C81EB65BDCE6BA9 (int32_t ___cp0, const RuntimeMethod* method);
// System.String System.Text.Normalization::Normalize(System.String,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Normalization_Normalize_mE05051BD0A486B68CA43E9AB82EECFFF1F952DEF (String_t* ___source0, int32_t ___type1, const RuntimeMethod* method);
// System.String System.Text.Normalization::Compose(System.String,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Normalization_Compose_mEB36830839D05AAA1579B2500EAF0AF0611910AA (String_t* ___source0, int32_t ___checkType1, const RuntimeMethod* method);
// System.String System.Text.Normalization::Decompose(System.String,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Normalization_Decompose_m72A6B276D99DEA8A6060E5060342D44BE739E030 (String_t* ___source0, int32_t ___checkType1, const RuntimeMethod* method);
// System.Void System.Text.Normalization::load_normalization_resource(System.IntPtr&,System.IntPtr&,System.IntPtr&,System.IntPtr&,System.IntPtr&,System.IntPtr&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Normalization_load_normalization_resource_m189BEDAFFDA3BEBCDCF2FDD71C10E76E6F1DD278 (intptr_t* ___props0, intptr_t* ___mappedChars1, intptr_t* ___charMapIndex2, intptr_t* ___helperIndex3, intptr_t* ___mapIdxToComposite4, intptr_t* ___combiningClass5, const RuntimeMethod* method);
// System.Void* System.IntPtr::op_Explicit(System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void* IntPtr_op_Explicit_mB8A512095BCE1A23B2840310C8A27C928ADAD027 (intptr_t ___value0, const RuntimeMethod* method);
// System.Void System.Text.StringBuilder::.ctor(System.String,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder__ctor_m786CAFE74FE0D479747A0D474BE6EBCFDA5743EA (StringBuilder_t * __this, String_t* ___value0, int32_t ___capacity1, const RuntimeMethod* method);
// System.Void System.Text.StringBuilder::.ctor(System.String,System.Int32,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder__ctor_m105DFD306CF1352C62553EED8AC7ABAAC62B7245 (StringBuilder_t * __this, String_t* ___value0, int32_t ___startIndex1, int32_t ___length2, int32_t ___capacity3, const RuntimeMethod* method);
// System.Void System.Text.StringBuilder::ThreadSafeCopy(System.Char*,System.Char[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder_ThreadSafeCopy_mF35929E10961A91520C9DE919B013977B2DFCF84 (Il2CppChar* ___sourcePtr0, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___destination1, int32_t ___destinationIndex2, int32_t ___count3, const RuntimeMethod* method);
// System.Runtime.Serialization.SerializationInfoEnumerator System.Runtime.Serialization.SerializationInfo::GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SerializationInfoEnumerator_tB72162C419D705A40F34DDFEB18E6ACA347C54E5 * SerializationInfo_GetEnumerator_m9796C5CB43B69B5236D530A547A4FC24ABB0B575 (SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * __this, const RuntimeMethod* method);
// System.String System.Runtime.Serialization.SerializationInfoEnumerator::get_Name()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SerializationInfoEnumerator_get_Name_m925E3C668A70982F88C8EBEEB86BA0D45B71857E (SerializationInfoEnumerator_tB72162C419D705A40F34DDFEB18E6ACA347C54E5 * __this, const RuntimeMethod* method);
// System.Int32 System.Runtime.Serialization.SerializationInfo::GetInt32(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SerializationInfo_GetInt32_mB47BD46A0BDBBAF5B47BB62E6EFF8E092E3F3656 (SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * __this, String_t* ___name0, const RuntimeMethod* method);
// System.String System.Runtime.Serialization.SerializationInfo::GetString(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SerializationInfo_GetString_m06805A4E368E0B98D5FA70A9333B277CBDD84CF4 (SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * __this, String_t* ___name0, const RuntimeMethod* method);
// System.Boolean System.Runtime.Serialization.SerializationInfoEnumerator::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SerializationInfoEnumerator_MoveNext_m74D8DE9528E7DDD141DD45ABF4B54F832DE35701 (SerializationInfoEnumerator_tB72162C419D705A40F34DDFEB18E6ACA347C54E5 * __this, const RuntimeMethod* method);
// System.Void System.Runtime.Serialization.SerializationException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationException__ctor_m88AAD9671030A8A96AA87CB95701938FBD8F16E1 (SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210 * __this, String_t* ___message0, const RuntimeMethod* method);
// System.Void System.String::CopyTo(System.Int32,System.Char[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void String_CopyTo_m054B8FF2ACBBA74F60199D98259E88395EAD3661 (String_t* __this, int32_t ___sourceIndex0, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___destination1, int32_t ___destinationIndex2, int32_t ___count3, const RuntimeMethod* method);
// System.Int32 System.Text.StringBuilder::get_Capacity()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t StringBuilder_get_Capacity_m504D58B139889E471E4627C43EEA0A5DF7F4F4D0 (StringBuilder_t * __this, const RuntimeMethod* method);
// System.String System.String::FastAllocateString(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_FastAllocateString_m41FF9F02E99463841990C6971132D4D9E320914C (int32_t ___length0, const RuntimeMethod* method);
// System.Void System.String::wstrcpy(System.Char*,System.Char*,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void String_wstrcpy_mB7E74A0E59AA0E5901F2A7C9012A11E03FFBA497 (Il2CppChar* ___dmem0, Il2CppChar* ___smem1, int32_t ___charCount2, const RuntimeMethod* method);
// System.Int32 System.Text.StringBuilder::get_MaxCapacity()
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t StringBuilder_get_MaxCapacity_m1367C928745408E67DFF57F501177B4CA978F365_inline (StringBuilder_t * __this, const RuntimeMethod* method);
// System.Text.StringBuilder System.Text.StringBuilder::Append(System.Char,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Append_m9702CA108F81CBF2B174826C1DFC5F7552C36C45 (StringBuilder_t * __this, Il2CppChar ___value0, int32_t ___repeatCount1, const RuntimeMethod* method);
// System.Text.StringBuilder System.Text.StringBuilder::FindChunkForIndex(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_FindChunkForIndex_m9EF595B1D768F788C60CD68778A23DB54F260527 (StringBuilder_t * __this, int32_t ___index0, const RuntimeMethod* method);
// System.Void System.Array::Copy(System.Array,System.Array,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Copy_m2D96731C600DE8A167348CA8BA796344E64F7434 (RuntimeArray * ___sourceArray0, RuntimeArray * ___destinationArray1, int32_t ___length2, const RuntimeMethod* method);
// System.Void System.IndexOutOfRangeException::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IndexOutOfRangeException__ctor_m17448AB4B27BC9D8AEB4605CDB0EA053626ABEC1 (IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF * __this, const RuntimeMethod* method);
// System.Void System.Text.StringBuilder::ExpandByABlock(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder_ExpandByABlock_m855E07A0ECE12C6C4151B72BD80DE5311CE9B42C (StringBuilder_t * __this, int32_t ___minBlockCharCount0, const RuntimeMethod* method);
// System.Text.StringBuilder System.Text.StringBuilder::Append(System.Char*,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Append_m353B571BF530B0BD74B61E499EAF6536F1B93E84 (StringBuilder_t * __this, Il2CppChar* ___value0, int32_t ___valueCount1, const RuntimeMethod* method);
// System.Void System.Text.StringBuilder::AppendHelper(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder_AppendHelper_mEB58C0EF72D659D6BB4342E2943697200F63C80F (StringBuilder_t * __this, String_t* ___value0, const RuntimeMethod* method);
// System.Void System.OutOfMemoryException::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OutOfMemoryException__ctor_m4ED0B5B3F91BAF66BDF69E09EF6DC74777FE8DEB (OutOfMemoryException_t2DF3EAC178583BD1DEFAAECBEDB2AF1EA86FBFC7 * __this, const RuntimeMethod* method);
// System.Void System.Text.StringBuilder::MakeRoom(System.Int32,System.Int32,System.Text.StringBuilder&,System.Int32&,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder_MakeRoom_mC8A37E0A3FCACABC5B1BF99BCEF32C086F03B9FF (StringBuilder_t * __this, int32_t ___index0, int32_t ___count1, StringBuilder_t ** ___chunk2, int32_t* ___indexInChunk3, bool ___doneMoveFollowingChars4, const RuntimeMethod* method);
// System.Void System.Text.StringBuilder::ReplaceInPlaceAtChunk(System.Text.StringBuilder&,System.Int32&,System.Char*,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder_ReplaceInPlaceAtChunk_mA3A70E8FD6B9F52D4D62700D5E706E851BA1D773 (StringBuilder_t * __this, StringBuilder_t ** ___chunk0, int32_t* ___indexInChunk1, Il2CppChar* ___value2, int32_t ___count3, const RuntimeMethod* method);
// System.Void System.Text.StringBuilder::Remove(System.Int32,System.Int32,System.Text.StringBuilder&,System.Int32&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder_Remove_m570DD9A086B94D894FCD1EB011BCB2166A57B4D6 (StringBuilder_t * __this, int32_t ___startIndex0, int32_t ___count1, StringBuilder_t ** ___chunk2, int32_t* ___indexInChunk3, const RuntimeMethod* method);
// System.String System.Int32::ToString(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Int32_ToString_m1D0AF82BDAB5D4710527DD3FEFA6F01246D128A5 (int32_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.String System.Int64::ToString(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Int64_ToString_m25F3F61DC30EAF186B76BD91F83083BDDDE82B2A (int64_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method);
// System.Void System.Text.StringBuilder::Insert(System.Int32,System.Char*,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder_Insert_m25234968C27EB1BEB242AFE1C7DE6BACAD903E33 (StringBuilder_t * __this, int32_t ___index0, Il2CppChar* ___value1, int32_t ___valueCount2, const RuntimeMethod* method);
// System.Void System.ParamsArray::.ctor(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ParamsArray__ctor_m0D8F266A2B3C18237146F56FB97A4E4879394DAC (ParamsArray_t2DD480A5C806C0920DC218523EF3673332A68023 * __this, RuntimeObject * ___arg00, const RuntimeMethod* method);
// System.Text.StringBuilder System.Text.StringBuilder::AppendFormatHelper(System.IFormatProvider,System.String,System.ParamsArray)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_AppendFormatHelper_m3A655B006797788D89C813CEE20A1D32B95AF273 (StringBuilder_t * __this, RuntimeObject* ___provider0, String_t* ___format1, ParamsArray_t2DD480A5C806C0920DC218523EF3673332A68023 ___args2, const RuntimeMethod* method);
// System.Void System.ParamsArray::.ctor(System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ParamsArray__ctor_mD3CEC74447BC27952EBAF3F12C2C71751B7B28ED (ParamsArray_t2DD480A5C806C0920DC218523EF3673332A68023 * __this, RuntimeObject * ___arg00, RuntimeObject * ___arg11, const RuntimeMethod* method);
// System.Void System.ParamsArray::.ctor(System.Object,System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ParamsArray__ctor_m06BE403346707F40BDEA07C60B4BB507B171EAC5 (ParamsArray_t2DD480A5C806C0920DC218523EF3673332A68023 * __this, RuntimeObject * ___arg00, RuntimeObject * ___arg11, RuntimeObject * ___arg22, const RuntimeMethod* method);
// System.Void System.ParamsArray::.ctor(System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ParamsArray__ctor_mB32D7182BA1AC40D1DB522D6F548FA26E0129095 (ParamsArray_t2DD480A5C806C0920DC218523EF3673332A68023 * __this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___args0, const RuntimeMethod* method);
// System.Void System.FormatException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FormatException__ctor_m89167FF9884AE20232190FE9286DC50E146A4F14 (FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC * __this, String_t* ___message0, const RuntimeMethod* method);
// System.Void System.Text.StringBuilder::FormatError()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder_FormatError_m636599CB61540585B74FFC956ED91DC57F66C17B (const RuntimeMethod* method);
// System.Int32 System.ParamsArray::get_Length()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ParamsArray_get_Length_mF99DE09934408DBB8C5CBFA185F71E5E34045240 (ParamsArray_t2DD480A5C806C0920DC218523EF3673332A68023 * __this, const RuntimeMethod* method);
// System.Object System.ParamsArray::get_Item(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * ParamsArray_get_Item_mB78610EF5AA4BF6261665E0536AAB243E915090A (ParamsArray_t2DD480A5C806C0920DC218523EF3673332A68023 * __this, int32_t ___index0, const RuntimeMethod* method);
// System.Text.StringBuilder System.Text.StringBuilder::Replace(System.String,System.String,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Replace_m10672EAD6812FE1E8C58EF1435709D212F6347C4 (StringBuilder_t * __this, String_t* ___oldValue0, String_t* ___newValue1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method);
// System.Boolean System.Text.StringBuilder::StartsWith(System.Text.StringBuilder,System.Int32,System.Int32,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool StringBuilder_StartsWith_m191999C1CF871FC076122689B8ECB798863C4467 (StringBuilder_t * __this, StringBuilder_t * ___chunk0, int32_t ___indexInChunk1, int32_t ___count2, String_t* ___value3, const RuntimeMethod* method);
// System.Void System.Text.StringBuilder::ReplaceAllInChunk(System.Int32[],System.Int32,System.Text.StringBuilder,System.Int32,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder_ReplaceAllInChunk_m40510C5422490D47187136D04AE82FCAF0D43314 (StringBuilder_t * __this, Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___replacements0, int32_t ___replacementsCount1, StringBuilder_t * ___sourceChunk2, int32_t ___removeCount3, String_t* ___value4, const RuntimeMethod* method);
// System.Text.StringBuilder System.Text.StringBuilder::Next(System.Text.StringBuilder)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Next_mF117555541979DEC3146FD3A059F66EBE60B775C (StringBuilder_t * __this, StringBuilder_t * ___chunk0, const RuntimeMethod* method);
// System.Void System.Text.StringBuilder::.ctor(System.Text.StringBuilder)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder__ctor_m319171AD1301C27AA7220D28F2BA96B4A8981F35 (StringBuilder_t * __this, StringBuilder_t * ___from0, const RuntimeMethod* method);
// System.Void System.Text.StringBuilder::.ctor(System.Int32,System.Int32,System.Text.StringBuilder)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder__ctor_mAC298BE4C79DFA111AA5AA4063F79F47744959FD (StringBuilder_t * __this, int32_t ___size0, int32_t ___maxCapacity1, StringBuilder_t * ___previousBlock2, const RuntimeMethod* method);
// System.Void System.Text.StringBuilder::ThreadSafeCopy(System.Char[],System.Int32,System.Char[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder_ThreadSafeCopy_mCCD244D9AD13306F3D3866A3B9415A5249EB8E5D (CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___source0, int32_t ___sourceIndex1, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___destination2, int32_t ___destinationIndex3, int32_t ___count4, const RuntimeMethod* method);
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.StringComparer System.StringComparer::get_InvariantCultureIgnoreCase()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * StringComparer_get_InvariantCultureIgnoreCase_mC6DA70EBD0C00B02EC4BB5C24882F99984028DFC (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StringComparer_get_InvariantCultureIgnoreCase_mC6DA70EBD0C00B02EC4BB5C24882F99984028DFC_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE_il2cpp_TypeInfo_var);
StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * L_0 = ((StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE_StaticFields*)il2cpp_codegen_static_fields_for(StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE_il2cpp_TypeInfo_var))->get__invariantCultureIgnoreCase_1();
return L_0;
}
}
// System.StringComparer System.StringComparer::get_CurrentCultureIgnoreCase()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * StringComparer_get_CurrentCultureIgnoreCase_m1900DE3D696056A54A108E11FE8991A677305F60 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StringComparer_get_CurrentCultureIgnoreCase_m1900DE3D696056A54A108E11FE8991A677305F60_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_0 = CultureInfo_get_CurrentCulture_mD86F3D8E5D332FB304F80D9B9CA4DE849C2A6831(/*hidden argument*/NULL);
CultureAwareComparer_tFCEC16B02A638A8DFF49C7C8C507A6A889C8E058 * L_1 = (CultureAwareComparer_tFCEC16B02A638A8DFF49C7C8C507A6A889C8E058 *)il2cpp_codegen_object_new(CultureAwareComparer_tFCEC16B02A638A8DFF49C7C8C507A6A889C8E058_il2cpp_TypeInfo_var);
CultureAwareComparer__ctor_m932FEC0DC86BAD111BC13357F712B51262F4EB28(L_1, L_0, (bool)1, /*hidden argument*/NULL);
return L_1;
}
}
// System.StringComparer System.StringComparer::get_Ordinal()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * StringComparer_get_Ordinal_m1F38FBAB170DF80D33FE2A849D30FF2E314D9FDB (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StringComparer_get_Ordinal_m1F38FBAB170DF80D33FE2A849D30FF2E314D9FDB_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE_il2cpp_TypeInfo_var);
StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * L_0 = ((StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE_StaticFields*)il2cpp_codegen_static_fields_for(StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE_il2cpp_TypeInfo_var))->get__ordinal_2();
return L_0;
}
}
// System.StringComparer System.StringComparer::get_OrdinalIgnoreCase()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * StringComparer_get_OrdinalIgnoreCase_m3F2527D9A11521E8B51F0AC8F70DB272DA8334C9 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StringComparer_get_OrdinalIgnoreCase_m3F2527D9A11521E8B51F0AC8F70DB272DA8334C9_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE_il2cpp_TypeInfo_var);
StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * L_0 = ((StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE_StaticFields*)il2cpp_codegen_static_fields_for(StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE_il2cpp_TypeInfo_var))->get__ordinalIgnoreCase_3();
return L_0;
}
}
// System.Int32 System.StringComparer::Compare(System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t StringComparer_Compare_mF6C220BCB2FF779530CC3B9E724CAC82738E6EE7 (StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * __this, RuntimeObject * ___x0, RuntimeObject * ___y1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StringComparer_Compare_mF6C220BCB2FF779530CC3B9E724CAC82738E6EE7_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
RuntimeObject* V_1 = NULL;
String_t* V_2 = NULL;
{
RuntimeObject * L_0 = ___x0;
RuntimeObject * L_1 = ___y1;
if ((!(((RuntimeObject*)(RuntimeObject *)L_0) == ((RuntimeObject*)(RuntimeObject *)L_1))))
{
goto IL_0006;
}
}
{
return 0;
}
IL_0006:
{
RuntimeObject * L_2 = ___x0;
if (L_2)
{
goto IL_000b;
}
}
{
return (-1);
}
IL_000b:
{
RuntimeObject * L_3 = ___y1;
if (L_3)
{
goto IL_0010;
}
}
{
return 1;
}
IL_0010:
{
RuntimeObject * L_4 = ___x0;
V_0 = ((String_t*)IsInstSealed((RuntimeObject*)L_4, String_t_il2cpp_TypeInfo_var));
String_t* L_5 = V_0;
if (!L_5)
{
goto IL_002d;
}
}
{
RuntimeObject * L_6 = ___y1;
V_2 = ((String_t*)IsInstSealed((RuntimeObject*)L_6, String_t_il2cpp_TypeInfo_var));
String_t* L_7 = V_2;
if (!L_7)
{
goto IL_002d;
}
}
{
String_t* L_8 = V_0;
String_t* L_9 = V_2;
int32_t L_10 = VirtFuncInvoker2< int32_t, String_t*, String_t* >::Invoke(10 /* System.Int32 System.StringComparer::Compare(System.String,System.String) */, __this, L_8, L_9);
return L_10;
}
IL_002d:
{
RuntimeObject * L_11 = ___x0;
V_1 = ((RuntimeObject*)IsInst((RuntimeObject*)L_11, IComparable_tF58875555EC83AB78FA9E958C48803C6AF9FB5D9_il2cpp_TypeInfo_var));
RuntimeObject* L_12 = V_1;
if (!L_12)
{
goto IL_003f;
}
}
{
RuntimeObject* L_13 = V_1;
RuntimeObject * L_14 = ___y1;
NullCheck(L_13);
int32_t L_15 = InterfaceFuncInvoker1< int32_t, RuntimeObject * >::Invoke(0 /* System.Int32 System.IComparable::CompareTo(System.Object) */, IComparable_tF58875555EC83AB78FA9E958C48803C6AF9FB5D9_il2cpp_TypeInfo_var, L_13, L_14);
return L_15;
}
IL_003f:
{
String_t* L_16 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral463C9ACFFA099CA60B83F74DD23B2E4DE31E298B, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_17 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_17, L_16, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_17, StringComparer_Compare_mF6C220BCB2FF779530CC3B9E724CAC82738E6EE7_RuntimeMethod_var);
}
}
// System.Boolean System.StringComparer::Equals(System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool StringComparer_Equals_mEDC0D576089BB102F6DDA35963406B5C3B9AD97D (StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * __this, RuntimeObject * ___x0, RuntimeObject * ___y1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StringComparer_Equals_mEDC0D576089BB102F6DDA35963406B5C3B9AD97D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
String_t* V_1 = NULL;
{
RuntimeObject * L_0 = ___x0;
RuntimeObject * L_1 = ___y1;
if ((!(((RuntimeObject*)(RuntimeObject *)L_0) == ((RuntimeObject*)(RuntimeObject *)L_1))))
{
goto IL_0006;
}
}
{
return (bool)1;
}
IL_0006:
{
RuntimeObject * L_2 = ___x0;
if (!L_2)
{
goto IL_000c;
}
}
{
RuntimeObject * L_3 = ___y1;
if (L_3)
{
goto IL_000e;
}
}
IL_000c:
{
return (bool)0;
}
IL_000e:
{
RuntimeObject * L_4 = ___x0;
V_0 = ((String_t*)IsInstSealed((RuntimeObject*)L_4, String_t_il2cpp_TypeInfo_var));
String_t* L_5 = V_0;
if (!L_5)
{
goto IL_002b;
}
}
{
RuntimeObject * L_6 = ___y1;
V_1 = ((String_t*)IsInstSealed((RuntimeObject*)L_6, String_t_il2cpp_TypeInfo_var));
String_t* L_7 = V_1;
if (!L_7)
{
goto IL_002b;
}
}
{
String_t* L_8 = V_0;
String_t* L_9 = V_1;
bool L_10 = VirtFuncInvoker2< bool, String_t*, String_t* >::Invoke(11 /* System.Boolean System.StringComparer::Equals(System.String,System.String) */, __this, L_8, L_9);
return L_10;
}
IL_002b:
{
RuntimeObject * L_11 = ___x0;
RuntimeObject * L_12 = ___y1;
NullCheck(L_11);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_11, L_12);
return L_13;
}
}
// System.Int32 System.StringComparer::GetHashCode(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t StringComparer_GetHashCode_mD70D6D3EFB36ED208E77AD17BDD7E809B593500F (StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StringComparer_GetHashCode_mD70D6D3EFB36ED208E77AD17BDD7E809B593500F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
RuntimeObject * L_0 = ___obj0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral9B5C0B859FABA061DD60FD8070FCE74FCEE29D0B, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, StringComparer_GetHashCode_mD70D6D3EFB36ED208E77AD17BDD7E809B593500F_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_0020;
}
}
{
String_t* L_4 = V_0;
int32_t L_5 = VirtFuncInvoker1< int32_t, String_t* >::Invoke(12 /* System.Int32 System.StringComparer::GetHashCode(System.String) */, __this, L_4);
return L_5;
}
IL_0020:
{
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.Void System.StringComparer::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringComparer__ctor_mB32547253FAD35661634154EE51010A1BFA84142 (StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * __this, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.StringComparer::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringComparer__cctor_m5F31EE210A599E85AE825C7E0A9231D7FD21AD65 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StringComparer__cctor_m5F31EE210A599E85AE825C7E0A9231D7FD21AD65_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_0 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
CultureAwareComparer_tFCEC16B02A638A8DFF49C7C8C507A6A889C8E058 * L_1 = (CultureAwareComparer_tFCEC16B02A638A8DFF49C7C8C507A6A889C8E058 *)il2cpp_codegen_object_new(CultureAwareComparer_tFCEC16B02A638A8DFF49C7C8C507A6A889C8E058_il2cpp_TypeInfo_var);
CultureAwareComparer__ctor_m932FEC0DC86BAD111BC13357F712B51262F4EB28(L_1, L_0, (bool)0, /*hidden argument*/NULL);
((StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE_StaticFields*)il2cpp_codegen_static_fields_for(StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE_il2cpp_TypeInfo_var))->set__invariantCulture_0(L_1);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_2 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
CultureAwareComparer_tFCEC16B02A638A8DFF49C7C8C507A6A889C8E058 * L_3 = (CultureAwareComparer_tFCEC16B02A638A8DFF49C7C8C507A6A889C8E058 *)il2cpp_codegen_object_new(CultureAwareComparer_tFCEC16B02A638A8DFF49C7C8C507A6A889C8E058_il2cpp_TypeInfo_var);
CultureAwareComparer__ctor_m932FEC0DC86BAD111BC13357F712B51262F4EB28(L_3, L_2, (bool)1, /*hidden argument*/NULL);
((StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE_StaticFields*)il2cpp_codegen_static_fields_for(StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE_il2cpp_TypeInfo_var))->set__invariantCultureIgnoreCase_1(L_3);
OrdinalComparer_tF6BA53365493F2DF0E4DA7C73C4094D1E35F240A * L_4 = (OrdinalComparer_tF6BA53365493F2DF0E4DA7C73C4094D1E35F240A *)il2cpp_codegen_object_new(OrdinalComparer_tF6BA53365493F2DF0E4DA7C73C4094D1E35F240A_il2cpp_TypeInfo_var);
OrdinalComparer__ctor_m03DBF62ADAE2F1E022590631377D136E44129881(L_4, (bool)0, /*hidden argument*/NULL);
((StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE_StaticFields*)il2cpp_codegen_static_fields_for(StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE_il2cpp_TypeInfo_var))->set__ordinal_2(L_4);
OrdinalComparer_tF6BA53365493F2DF0E4DA7C73C4094D1E35F240A * L_5 = (OrdinalComparer_tF6BA53365493F2DF0E4DA7C73C4094D1E35F240A *)il2cpp_codegen_object_new(OrdinalComparer_tF6BA53365493F2DF0E4DA7C73C4094D1E35F240A_il2cpp_TypeInfo_var);
OrdinalComparer__ctor_m03DBF62ADAE2F1E022590631377D136E44129881(L_5, (bool)1, /*hidden argument*/NULL);
((StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE_StaticFields*)il2cpp_codegen_static_fields_for(StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE_il2cpp_TypeInfo_var))->set__ordinalIgnoreCase_3(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
#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.SystemException::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SystemException__ctor_mEB9049B75DE1D23B0515DD294BEF0AAC7792F465 (SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SystemException__ctor_mEB9049B75DE1D23B0515DD294BEF0AAC7792F465_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral44B87FDC3140E2D8517F78B55C3F2FDA0B683070, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Exception_t_il2cpp_TypeInfo_var);
Exception__ctor_m89BADFF36C3B170013878726E07729D51AA9FBE0(__this, L_0, /*hidden argument*/NULL);
Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2146233087), /*hidden argument*/NULL);
return;
}
}
// System.Void System.SystemException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SystemException__ctor_mF67B7FA639B457BDFB2103D7C21C8059E806175A (SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 * __this, String_t* ___message0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SystemException__ctor_mF67B7FA639B457BDFB2103D7C21C8059E806175A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___message0;
IL2CPP_RUNTIME_CLASS_INIT(Exception_t_il2cpp_TypeInfo_var);
Exception__ctor_m89BADFF36C3B170013878726E07729D51AA9FBE0(__this, L_0, /*hidden argument*/NULL);
Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2146233087), /*hidden argument*/NULL);
return;
}
}
// System.Void System.SystemException::.ctor(System.String,System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SystemException__ctor_mA18D2EA5642C066F35CB8C965398F9A542C33B0A (SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 * __this, String_t* ___message0, Exception_t * ___innerException1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SystemException__ctor_mA18D2EA5642C066F35CB8C965398F9A542C33B0A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___message0;
Exception_t * L_1 = ___innerException1;
IL2CPP_RUNTIME_CLASS_INIT(Exception_t_il2cpp_TypeInfo_var);
Exception__ctor_m62590BC1925B7B354EBFD852E162CD170FEB861D(__this, L_0, L_1, /*hidden argument*/NULL);
Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2146233087), /*hidden argument*/NULL);
return;
}
}
// System.Void System.SystemException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SystemException__ctor_mB0550111A1A8D18B697B618F811A5B20C160D949 (SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SystemException__ctor_mB0550111A1A8D18B697B618F811A5B20C160D949_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0;
StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_1 = ___context1;
IL2CPP_RUNTIME_CLASS_INIT(Exception_t_il2cpp_TypeInfo_var);
Exception__ctor_mBFF5996A1B65FCEEE0054A95A652BA3DD6366618(__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.String System.TermInfoDriver::TryTermInfoDir(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TermInfoDriver_TryTermInfoDir_mB77251F46AC79569CE18F4AE20F130453912A47F (String_t* ___dir0, String_t* ___term1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TermInfoDriver_TryTermInfoDir_mB77251F46AC79569CE18F4AE20F130453912A47F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
String_t* L_0 = ___dir0;
String_t* L_1 = ___term1;
NullCheck(L_1);
Il2CppChar L_2 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_1, 0, /*hidden argument*/NULL);
int32_t L_3 = ((int32_t)L_2);
RuntimeObject * L_4 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_3);
String_t* L_5 = ___term1;
String_t* L_6 = String_Format_m26BBF75F9609FAD0B39C2242FEBAAD7D68F14D99(_stringLiteralCCF15D90534EF306CC485DF0BB7E5C6AB6214C2A, L_0, L_4, L_5, /*hidden argument*/NULL);
V_0 = L_6;
String_t* L_7 = V_0;
bool L_8 = File_Exists_m6B9BDD8EEB33D744EB0590DD27BC0152FAFBD1FB(L_7, /*hidden argument*/NULL);
if (!L_8)
{
goto IL_0023;
}
}
{
String_t* L_9 = V_0;
return L_9;
}
IL_0023:
{
String_t* L_10 = ___dir0;
String_t* L_11 = ___term1;
NullCheck(L_11);
String_t* L_12 = String_Substring_mB593C0A320C683E6E47EFFC0A12B7A465E5E43BB(L_11, 0, 1, /*hidden argument*/NULL);
String_t* L_13 = ___term1;
IL2CPP_RUNTIME_CLASS_INIT(Path_t0B99A4B924A6FDF08814FFA8DD4CD121ED1A0752_il2cpp_TypeInfo_var);
String_t* L_14 = Path_Combine_mAB92AD33FF91D3550E1683D5E732895A08B758DA(L_10, L_12, L_13, /*hidden argument*/NULL);
V_0 = L_14;
String_t* L_15 = V_0;
bool L_16 = File_Exists_m6B9BDD8EEB33D744EB0590DD27BC0152FAFBD1FB(L_15, /*hidden argument*/NULL);
if (!L_16)
{
goto IL_003d;
}
}
{
String_t* L_17 = V_0;
return L_17;
}
IL_003d:
{
return (String_t*)NULL;
}
}
// System.String System.TermInfoDriver::SearchTerminfo(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TermInfoDriver_SearchTerminfo_m7D2A02B1FBA3D8F66256E53D28264D4A0B7550A3 (String_t* ___term0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TermInfoDriver_SearchTerminfo_m7D2A02B1FBA3D8F66256E53D28264D4A0B7550A3_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
String_t* V_1 = NULL;
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* V_2 = NULL;
int32_t V_3 = 0;
String_t* V_4 = NULL;
{
String_t* L_0 = ___term0;
if (!L_0)
{
goto IL_0010;
}
}
{
String_t* L_1 = ___term0;
String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5();
bool L_3 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_1, L_2, /*hidden argument*/NULL);
if (!L_3)
{
goto IL_0012;
}
}
IL_0010:
{
return (String_t*)NULL;
}
IL_0012:
{
String_t* L_4 = Environment_GetEnvironmentVariable_mB94020EE6B0D5BADF024E4BE6FBC54A5954D2185(_stringLiteral5CFB387F58D99E3322C5AF64AC12951CCEB68B00, /*hidden argument*/NULL);
V_1 = L_4;
String_t* L_5 = V_1;
if (!L_5)
{
goto IL_0035;
}
}
{
String_t* L_6 = V_1;
bool L_7 = Directory_Exists_mB77956D89305E16FEFCBDFC55CCC98F03AEE4D84(L_6, /*hidden argument*/NULL);
if (!L_7)
{
goto IL_0035;
}
}
{
String_t* L_8 = V_1;
String_t* L_9 = ___term0;
IL2CPP_RUNTIME_CLASS_INIT(TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653_il2cpp_TypeInfo_var);
String_t* L_10 = TermInfoDriver_TryTermInfoDir_mB77251F46AC79569CE18F4AE20F130453912A47F(L_8, L_9, /*hidden argument*/NULL);
V_0 = L_10;
String_t* L_11 = V_0;
if (!L_11)
{
goto IL_0035;
}
}
{
String_t* L_12 = V_0;
return L_12;
}
IL_0035:
{
IL2CPP_RUNTIME_CLASS_INIT(TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653_il2cpp_TypeInfo_var);
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_13 = ((TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653_StaticFields*)il2cpp_codegen_static_fields_for(TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653_il2cpp_TypeInfo_var))->get_locations_2();
V_2 = L_13;
V_3 = 0;
goto IL_005f;
}
IL_003f:
{
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_14 = V_2;
int32_t L_15 = V_3;
NullCheck(L_14);
int32_t L_16 = L_15;
String_t* L_17 = (L_14)->GetAt(static_cast<il2cpp_array_size_t>(L_16));
V_4 = L_17;
String_t* L_18 = V_4;
bool L_19 = Directory_Exists_mB77956D89305E16FEFCBDFC55CCC98F03AEE4D84(L_18, /*hidden argument*/NULL);
if (!L_19)
{
goto IL_005b;
}
}
{
String_t* L_20 = V_4;
String_t* L_21 = ___term0;
IL2CPP_RUNTIME_CLASS_INIT(TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653_il2cpp_TypeInfo_var);
String_t* L_22 = TermInfoDriver_TryTermInfoDir_mB77251F46AC79569CE18F4AE20F130453912A47F(L_20, L_21, /*hidden argument*/NULL);
V_0 = L_22;
String_t* L_23 = V_0;
if (!L_23)
{
goto IL_005b;
}
}
{
String_t* L_24 = V_0;
return L_24;
}
IL_005b:
{
int32_t L_25 = V_3;
V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_25, (int32_t)1));
}
IL_005f:
{
int32_t L_26 = V_3;
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_27 = V_2;
NullCheck(L_27);
if ((((int32_t)L_26) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_27)->max_length)))))))
{
goto IL_003f;
}
}
{
return (String_t*)NULL;
}
}
// System.Void System.TermInfoDriver::WriteConsole(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TermInfoDriver_WriteConsole_mA33045BAA05976FE867CAA78B79B63A1E58FAF38 (TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653 * __this, String_t* ___str0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___str0;
if (L_0)
{
goto IL_0004;
}
}
{
return;
}
IL_0004:
{
CStreamWriter_t6B662CA496662AF63D81722DCA99094893C80450 * L_1 = __this->get_stdout_15();
String_t* L_2 = ___str0;
NullCheck(L_1);
CStreamWriter_InternalWriteString_mEA79EB02E28ADA9D81053766AD523E4C0CFC6CDA(L_1, L_2, /*hidden argument*/NULL);
return;
}
}
// System.Void System.TermInfoDriver::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TermInfoDriver__ctor_mDBF60028AEDAE114F1EC4FA8538F29B49AB11EF2 (TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653 * __this, String_t* ___term0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TermInfoDriver__ctor_mDBF60028AEDAE114F1EC4FA8538F29B49AB11EF2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
String_t* L_0 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5();
__this->set_title_6(L_0);
String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5();
__this->set_titleFormat_7(L_1);
__this->set_cursorVisible_8((bool)1);
RuntimeObject * L_2 = (RuntimeObject *)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(L_2, /*hidden argument*/NULL);
__this->set_initLock_26(L_2);
__this->set_fgcolor_31(((int32_t)15));
__this->set_rl_startx_38((-1));
__this->set_rl_starty_39((-1));
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
String_t* L_3 = ___term0;
__this->set_term_13(L_3);
String_t* L_4 = ___term0;
IL2CPP_RUNTIME_CLASS_INIT(TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653_il2cpp_TypeInfo_var);
String_t* L_5 = TermInfoDriver_SearchTerminfo_m7D2A02B1FBA3D8F66256E53D28264D4A0B7550A3(L_4, /*hidden argument*/NULL);
V_0 = L_5;
String_t* L_6 = V_0;
if (!L_6)
{
goto IL_0064;
}
}
{
String_t* L_7 = ___term0;
String_t* L_8 = V_0;
TermInfoReader_tCAABF3484E6F0AA298F809766C52CA9DC4E6C55C * L_9 = (TermInfoReader_tCAABF3484E6F0AA298F809766C52CA9DC4E6C55C *)il2cpp_codegen_object_new(TermInfoReader_tCAABF3484E6F0AA298F809766C52CA9DC4E6C55C_il2cpp_TypeInfo_var);
TermInfoReader__ctor_mDC681850346716B16DF3EC44DCF1DA6F2A754B7D(L_9, L_7, L_8, /*hidden argument*/NULL);
__this->set_reader_3(L_9);
goto IL_00a2;
}
IL_0064:
{
String_t* L_10 = ___term0;
bool L_11 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_10, _stringLiteralE2E28A8EB171E8219151A13B9466DAFC7AF786C2, /*hidden argument*/NULL);
if (!L_11)
{
goto IL_0084;
}
}
{
String_t* L_12 = ___term0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_13 = KnownTerminals_get_xterm_mA890BFD590F820BBB23B219E1AD1C8BCD3DFA345(/*hidden argument*/NULL);
TermInfoReader_tCAABF3484E6F0AA298F809766C52CA9DC4E6C55C * L_14 = (TermInfoReader_tCAABF3484E6F0AA298F809766C52CA9DC4E6C55C *)il2cpp_codegen_object_new(TermInfoReader_tCAABF3484E6F0AA298F809766C52CA9DC4E6C55C_il2cpp_TypeInfo_var);
TermInfoReader__ctor_mB414A3E5B0CA1C42E830F8221DCC6DAD579055A6(L_14, L_12, L_13, /*hidden argument*/NULL);
__this->set_reader_3(L_14);
goto IL_00a2;
}
IL_0084:
{
String_t* L_15 = ___term0;
bool L_16 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_15, _stringLiteralBA324CA7B1C77FC20BB970D5AFF6EEA9377918A5, /*hidden argument*/NULL);
if (!L_16)
{
goto IL_00a2;
}
}
{
String_t* L_17 = ___term0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_18 = KnownTerminals_get_linux_m9A34213D8DB968ED3864B4E321BA4B71DB7E8B95(/*hidden argument*/NULL);
TermInfoReader_tCAABF3484E6F0AA298F809766C52CA9DC4E6C55C * L_19 = (TermInfoReader_tCAABF3484E6F0AA298F809766C52CA9DC4E6C55C *)il2cpp_codegen_object_new(TermInfoReader_tCAABF3484E6F0AA298F809766C52CA9DC4E6C55C_il2cpp_TypeInfo_var);
TermInfoReader__ctor_mB414A3E5B0CA1C42E830F8221DCC6DAD579055A6(L_19, L_17, L_18, /*hidden argument*/NULL);
__this->set_reader_3(L_19);
}
IL_00a2:
{
TermInfoReader_tCAABF3484E6F0AA298F809766C52CA9DC4E6C55C * L_20 = __this->get_reader_3();
if (L_20)
{
goto IL_00bb;
}
}
{
String_t* L_21 = ___term0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_22 = KnownTerminals_get_ansi_m2ECEBC902EBB68D9A849ED1B76F8008918BEBB4D(/*hidden argument*/NULL);
TermInfoReader_tCAABF3484E6F0AA298F809766C52CA9DC4E6C55C * L_23 = (TermInfoReader_tCAABF3484E6F0AA298F809766C52CA9DC4E6C55C *)il2cpp_codegen_object_new(TermInfoReader_tCAABF3484E6F0AA298F809766C52CA9DC4E6C55C_il2cpp_TypeInfo_var);
TermInfoReader__ctor_mB414A3E5B0CA1C42E830F8221DCC6DAD579055A6(L_23, L_21, L_22, /*hidden argument*/NULL);
__this->set_reader_3(L_23);
}
IL_00bb:
{
IL2CPP_RUNTIME_CLASS_INIT(Console_t5C8E87BA271B0DECA837A3BF9093AC3560DB3D5D_il2cpp_TypeInfo_var);
TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * L_24 = ((Console_t5C8E87BA271B0DECA837A3BF9093AC3560DB3D5D_StaticFields*)il2cpp_codegen_static_fields_for(Console_t5C8E87BA271B0DECA837A3BF9093AC3560DB3D5D_il2cpp_TypeInfo_var))->get_stdout_0();
if (((CStreamWriter_t6B662CA496662AF63D81722DCA99094893C80450 *)IsInstClass((RuntimeObject*)L_24, CStreamWriter_t6B662CA496662AF63D81722DCA99094893C80450_il2cpp_TypeInfo_var)))
{
goto IL_00eb;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(Console_t5C8E87BA271B0DECA837A3BF9093AC3560DB3D5D_il2cpp_TypeInfo_var);
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_25 = Console_OpenStandardOutput_m9C602CA7C2D5E989D45913987E2E581481EC9823(0, /*hidden argument*/NULL);
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_26 = Console_get_OutputEncoding_mA23798B6CE69F59EAA00C8206EF8552196120647_inline(/*hidden argument*/NULL);
CStreamWriter_t6B662CA496662AF63D81722DCA99094893C80450 * L_27 = (CStreamWriter_t6B662CA496662AF63D81722DCA99094893C80450 *)il2cpp_codegen_object_new(CStreamWriter_t6B662CA496662AF63D81722DCA99094893C80450_il2cpp_TypeInfo_var);
CStreamWriter__ctor_m967462FE0368BE80A448F0082E70B326088E2E95(L_27, L_25, L_26, (bool)0, /*hidden argument*/NULL);
__this->set_stdout_15(L_27);
CStreamWriter_t6B662CA496662AF63D81722DCA99094893C80450 * L_28 = __this->get_stdout_15();
NullCheck(L_28);
VirtActionInvoker1< bool >::Invoke(20 /* System.Void System.IO.StreamWriter::set_AutoFlush(System.Boolean) */, L_28, (bool)1);
return;
}
IL_00eb:
{
IL2CPP_RUNTIME_CLASS_INIT(Console_t5C8E87BA271B0DECA837A3BF9093AC3560DB3D5D_il2cpp_TypeInfo_var);
TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * L_29 = ((Console_t5C8E87BA271B0DECA837A3BF9093AC3560DB3D5D_StaticFields*)il2cpp_codegen_static_fields_for(Console_t5C8E87BA271B0DECA837A3BF9093AC3560DB3D5D_il2cpp_TypeInfo_var))->get_stdout_0();
__this->set_stdout_15(((CStreamWriter_t6B662CA496662AF63D81722DCA99094893C80450 *)CastclassClass((RuntimeObject*)L_29, CStreamWriter_t6B662CA496662AF63D81722DCA99094893C80450_il2cpp_TypeInfo_var)));
return;
}
}
// System.Boolean System.TermInfoDriver::get_Initialized()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TermInfoDriver_get_Initialized_m69E45B090B62E63F7F47592C7613900166BD26DD (TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653 * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_inited_25();
return L_0;
}
}
// System.Void System.TermInfoDriver::Init()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TermInfoDriver_Init_mAA7BB4F7D9EDADAC2AE0A864410D4F062FA8E569 (TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TermInfoDriver_Init_mAA7BB4F7D9EDADAC2AE0A864410D4F062FA8E569_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject * V_0 = NULL;
bool V_1 = false;
String_t* V_2 = NULL;
String_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) * 2);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
String_t* G_B13_0 = NULL;
{
bool L_0 = __this->get_inited_25();
if (!L_0)
{
goto IL_0009;
}
}
{
return;
}
IL_0009:
{
RuntimeObject * L_1 = __this->get_initLock_26();
V_0 = L_1;
V_1 = (bool)0;
}
IL_0012:
try
{ // begin try (depth: 1)
{
RuntimeObject * L_2 = V_0;
Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(L_2, (bool*)(&V_1), /*hidden argument*/NULL);
bool L_3 = __this->get_inited_25();
if (!L_3)
{
goto IL_0027;
}
}
IL_0022:
{
IL2CPP_LEAVE(0x310, FINALLY_0306);
}
IL_0027:
{
__this->set_inited_25((bool)1);
IL2CPP_RUNTIME_CLASS_INIT(ConsoleDriver_t4F24DB42600CA82912181D5D312902B8BEFEE101_il2cpp_TypeInfo_var);
bool L_4 = ConsoleDriver_get_IsConsole_m0C19F307DCAEDCC678CF0ABA69F8EF083090C731(/*hidden argument*/NULL);
if (L_4)
{
goto IL_0040;
}
}
IL_0035:
{
IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA * L_5 = (IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA *)il2cpp_codegen_object_new(IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA_il2cpp_TypeInfo_var);
IOException__ctor_mB64DEFB376AA8E279A647A3770F913B20EF65175(L_5, _stringLiteral78D43FCD0BE7330E253C74120B80646111D6B9EE, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, TermInfoDriver_Init_mAA7BB4F7D9EDADAC2AE0A864410D4F062FA8E569_RuntimeMethod_var);
}
IL_0040:
{
IL2CPP_RUNTIME_CLASS_INIT(ConsoleDriver_t4F24DB42600CA82912181D5D312902B8BEFEE101_il2cpp_TypeInfo_var);
ConsoleDriver_SetEcho_m7A27E092D9D79ED1033ACA3E033CAAEEA3E2B869((bool)0, /*hidden argument*/NULL);
V_2 = (String_t*)NULL;
TermInfoReader_tCAABF3484E6F0AA298F809766C52CA9DC4E6C55C * L_6 = __this->get_reader_3();
NullCheck(L_6);
String_t* L_7 = TermInfoReader_Get_m302D06F261F21E95F43DC0D052FFD370B5BC9814(L_6, ((int32_t)89), /*hidden argument*/NULL);
__this->set_keypadXmit_23(L_7);
TermInfoReader_tCAABF3484E6F0AA298F809766C52CA9DC4E6C55C * L_8 = __this->get_reader_3();
NullCheck(L_8);
String_t* L_9 = TermInfoReader_Get_m302D06F261F21E95F43DC0D052FFD370B5BC9814(L_8, ((int32_t)88), /*hidden argument*/NULL);
__this->set_keypadLocal_24(L_9);
String_t* L_10 = __this->get_keypadXmit_23();
if (!L_10)
{
goto IL_0098;
}
}
IL_0077:
{
String_t* L_11 = __this->get_keypadXmit_23();
TermInfoDriver_WriteConsole_mA33045BAA05976FE867CAA78B79B63A1E58FAF38(__this, L_11, /*hidden argument*/NULL);
String_t* L_12 = __this->get_keypadLocal_24();
if (!L_12)
{
goto IL_0098;
}
}
IL_008b:
{
String_t* L_13 = V_2;
String_t* L_14 = __this->get_keypadLocal_24();
String_t* L_15 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(L_13, L_14, /*hidden argument*/NULL);
V_2 = L_15;
}
IL_0098:
{
TermInfoReader_tCAABF3484E6F0AA298F809766C52CA9DC4E6C55C * L_16 = __this->get_reader_3();
NullCheck(L_16);
String_t* L_17 = TermInfoReader_Get_m302D06F261F21E95F43DC0D052FFD370B5BC9814(L_16, ((int32_t)297), /*hidden argument*/NULL);
__this->set_origPair_28(L_17);
TermInfoReader_tCAABF3484E6F0AA298F809766C52CA9DC4E6C55C * L_18 = __this->get_reader_3();
NullCheck(L_18);
String_t* L_19 = TermInfoReader_Get_m302D06F261F21E95F43DC0D052FFD370B5BC9814(L_18, ((int32_t)298), /*hidden argument*/NULL);
__this->set_origColors_29(L_19);
TermInfoReader_tCAABF3484E6F0AA298F809766C52CA9DC4E6C55C * L_20 = __this->get_reader_3();
NullCheck(L_20);
String_t* L_21 = TermInfoReader_Get_m302D06F261F21E95F43DC0D052FFD370B5BC9814(L_20, ((int32_t)359), /*hidden argument*/NULL);
__this->set_setfgcolor_32(L_21);
TermInfoReader_tCAABF3484E6F0AA298F809766C52CA9DC4E6C55C * L_22 = __this->get_reader_3();
NullCheck(L_22);
String_t* L_23 = TermInfoReader_Get_m302D06F261F21E95F43DC0D052FFD370B5BC9814(L_22, ((int32_t)360), /*hidden argument*/NULL);
__this->set_setbgcolor_33(L_23);
TermInfoReader_tCAABF3484E6F0AA298F809766C52CA9DC4E6C55C * L_24 = __this->get_reader_3();
NullCheck(L_24);
int32_t L_25 = TermInfoReader_Get_mBE8AB84A3B00855DF6CFBEEDAF0B7A9DD35D1DCD(L_24, ((int32_t)13), /*hidden argument*/NULL);
__this->set_maxColors_34(L_25);
int32_t L_26 = __this->get_maxColors_34();
IL2CPP_RUNTIME_CLASS_INIT(Math_tFB388E53C7FDC6FCCF9A19ABF5A4E521FBD52E19_il2cpp_TypeInfo_var);
int32_t L_27 = Math_Min_mC950438198519FB2B0260FCB91220847EE4BB525(L_26, ((int32_t)16), /*hidden argument*/NULL);
int32_t L_28 = Math_Max_mA99E48BB021F2E4B62D4EA9F52EA6928EED618A2(L_27, 1, /*hidden argument*/NULL);
__this->set_maxColors_34(L_28);
String_t* L_29 = __this->get_origColors_29();
if (!L_29)
{
goto IL_012c;
}
}
IL_0124:
{
String_t* L_30 = __this->get_origColors_29();
G_B13_0 = L_30;
goto IL_0132;
}
IL_012c:
{
String_t* L_31 = __this->get_origPair_28();
G_B13_0 = L_31;
}
IL_0132:
{
V_3 = G_B13_0;
String_t* L_32 = V_3;
if (!L_32)
{
goto IL_013e;
}
}
IL_0136:
{
String_t* L_33 = V_2;
String_t* L_34 = V_3;
String_t* L_35 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(L_33, L_34, /*hidden argument*/NULL);
V_2 = L_35;
}
IL_013e:
{
String_t* L_36 = __this->get_keypadXmit_23();
String_t* L_37 = V_2;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** L_38 = __this->get_address_of_control_characters_40();
IL2CPP_RUNTIME_CLASS_INIT(TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653_il2cpp_TypeInfo_var);
IL2CPP_RUNTIME_CLASS_INIT(ConsoleDriver_t4F24DB42600CA82912181D5D312902B8BEFEE101_il2cpp_TypeInfo_var);
bool L_39 = ConsoleDriver_TtySetup_m39158C369CFA6D426B61D89621BC077B4BB62A49(L_36, L_37, (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821**)L_38, (int32_t**)(((TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653_StaticFields*)il2cpp_codegen_static_fields_for(TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653_il2cpp_TypeInfo_var))->get_address_of_native_terminal_size_0()), /*hidden argument*/NULL);
if (L_39)
{
goto IL_016b;
}
}
IL_0157:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_40 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)((int32_t)17));
__this->set_control_characters_40(L_40);
IL2CPP_RUNTIME_CLASS_INIT(TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653_il2cpp_TypeInfo_var);
((TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653_StaticFields*)il2cpp_codegen_static_fields_for(TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653_il2cpp_TypeInfo_var))->set_native_terminal_size_0((int32_t*)(((uintptr_t)0)));
}
IL_016b:
{
IL2CPP_RUNTIME_CLASS_INIT(Console_t5C8E87BA271B0DECA837A3BF9093AC3560DB3D5D_il2cpp_TypeInfo_var);
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_41 = Console_OpenStandardInput_m70507BD4CEF7AAFB01030995036454D9D6F4BC98(0, /*hidden argument*/NULL);
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_42 = Console_get_InputEncoding_m60EAA2E167A0C8C681997B998E851D8CD6C954FE_inline(/*hidden argument*/NULL);
StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * L_43 = (StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E *)il2cpp_codegen_object_new(StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E_il2cpp_TypeInfo_var);
StreamReader__ctor_mF319C927A1274118E912D93F2EB2AAE4DA17E3DC(L_43, L_41, L_42, /*hidden argument*/NULL);
__this->set_stdin_14(L_43);
TermInfoReader_tCAABF3484E6F0AA298F809766C52CA9DC4E6C55C * L_44 = __this->get_reader_3();
NullCheck(L_44);
String_t* L_45 = TermInfoReader_Get_m302D06F261F21E95F43DC0D052FFD370B5BC9814(L_44, 5, /*hidden argument*/NULL);
__this->set_clear_11(L_45);
TermInfoReader_tCAABF3484E6F0AA298F809766C52CA9DC4E6C55C * L_46 = __this->get_reader_3();
NullCheck(L_46);
String_t* L_47 = TermInfoReader_Get_m302D06F261F21E95F43DC0D052FFD370B5BC9814(L_46, 1, /*hidden argument*/NULL);
__this->set_bell_12(L_47);
String_t* L_48 = __this->get_clear_11();
if (L_48)
{
goto IL_01dd;
}
}
IL_01ad:
{
TermInfoReader_tCAABF3484E6F0AA298F809766C52CA9DC4E6C55C * L_49 = __this->get_reader_3();
NullCheck(L_49);
String_t* L_50 = TermInfoReader_Get_m302D06F261F21E95F43DC0D052FFD370B5BC9814(L_49, ((int32_t)12), /*hidden argument*/NULL);
__this->set_clear_11(L_50);
String_t* L_51 = __this->get_clear_11();
TermInfoReader_tCAABF3484E6F0AA298F809766C52CA9DC4E6C55C * L_52 = __this->get_reader_3();
NullCheck(L_52);
String_t* L_53 = TermInfoReader_Get_m302D06F261F21E95F43DC0D052FFD370B5BC9814(L_52, 7, /*hidden argument*/NULL);
String_t* L_54 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(L_51, L_53, /*hidden argument*/NULL);
__this->set_clear_11(L_54);
}
IL_01dd:
{
TermInfoReader_tCAABF3484E6F0AA298F809766C52CA9DC4E6C55C * L_55 = __this->get_reader_3();
NullCheck(L_55);
String_t* L_56 = TermInfoReader_Get_m302D06F261F21E95F43DC0D052FFD370B5BC9814(L_55, ((int32_t)16), /*hidden argument*/NULL);
__this->set_csrVisible_9(L_56);
String_t* L_57 = __this->get_csrVisible_9();
if (L_57)
{
goto IL_020b;
}
}
IL_01f8:
{
TermInfoReader_tCAABF3484E6F0AA298F809766C52CA9DC4E6C55C * L_58 = __this->get_reader_3();
NullCheck(L_58);
String_t* L_59 = TermInfoReader_Get_m302D06F261F21E95F43DC0D052FFD370B5BC9814(L_58, ((int32_t)20), /*hidden argument*/NULL);
__this->set_csrVisible_9(L_59);
}
IL_020b:
{
TermInfoReader_tCAABF3484E6F0AA298F809766C52CA9DC4E6C55C * L_60 = __this->get_reader_3();
NullCheck(L_60);
String_t* L_61 = TermInfoReader_Get_m302D06F261F21E95F43DC0D052FFD370B5BC9814(L_60, ((int32_t)13), /*hidden argument*/NULL);
__this->set_csrInvisible_10(L_61);
String_t* L_62 = __this->get_term_13();
bool L_63 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_62, _stringLiteralB798D5ED9F6178D7BD39C0CC2EEBE6889DD57698, /*hidden argument*/NULL);
if (L_63)
{
goto IL_0280;
}
}
IL_0230:
{
String_t* L_64 = __this->get_term_13();
bool L_65 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_64, _stringLiteralBA324CA7B1C77FC20BB970D5AFF6EEA9377918A5, /*hidden argument*/NULL);
if (L_65)
{
goto IL_0280;
}
}
IL_0242:
{
String_t* L_66 = __this->get_term_13();
if (!L_66)
{
goto IL_025c;
}
}
IL_024a:
{
String_t* L_67 = __this->get_term_13();
NullCheck(L_67);
bool L_68 = String_StartsWith_m7D468FB7C801D9C2DBEEEEC86F8BA8F4EC3243C1(L_67, _stringLiteralE2E28A8EB171E8219151A13B9466DAFC7AF786C2, /*hidden argument*/NULL);
if (L_68)
{
goto IL_0280;
}
}
IL_025c:
{
String_t* L_69 = __this->get_term_13();
bool L_70 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_69, _stringLiteral5AB326B7D63281F2A5AF4CE86B94441661DA24E8, /*hidden argument*/NULL);
if (L_70)
{
goto IL_0280;
}
}
IL_026e:
{
String_t* L_71 = __this->get_term_13();
bool L_72 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_71, _stringLiteral08538A1A7BAEAE9E6D01BC0A536BDD942B56B316, /*hidden argument*/NULL);
if (!L_72)
{
goto IL_028d;
}
}
IL_0280:
{
__this->set_titleFormat_7(_stringLiteral16A2FC77086B1F5E4B5D8B40D2BDA0C400F720EC);
goto IL_02c9;
}
IL_028d:
{
String_t* L_73 = __this->get_term_13();
bool L_74 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_73, _stringLiteral33B5FF620EE9A16D40627E9D0C64AAB763B1328C, /*hidden argument*/NULL);
if (!L_74)
{
goto IL_02ac;
}
}
IL_029f:
{
__this->set_titleFormat_7(_stringLiteralB92BB037F637B193034E7C85B31D5A17CCE2C2D7);
goto IL_02c9;
}
IL_02ac:
{
String_t* L_75 = __this->get_term_13();
bool L_76 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_75, _stringLiteral98826DAD5AB0C67046AE6B485440620CBBED7CAA, /*hidden argument*/NULL);
if (!L_76)
{
goto IL_02c9;
}
}
IL_02be:
{
__this->set_titleFormat_7(_stringLiteralA0D3EF0EBD76BE50BFA0338604860AC9D82E6789);
}
IL_02c9:
{
TermInfoReader_tCAABF3484E6F0AA298F809766C52CA9DC4E6C55C * L_77 = __this->get_reader_3();
NullCheck(L_77);
String_t* L_78 = TermInfoReader_Get_m302D06F261F21E95F43DC0D052FFD370B5BC9814(L_77, ((int32_t)10), /*hidden argument*/NULL);
__this->set_cursorAddress_30(L_78);
TermInfoDriver_GetCursorPosition_mC6D63B8C54851DE5CCE4294A0386AA69BEDD55AF(__this, /*hidden argument*/NULL);
bool L_79 = __this->get_noGetPosition_35();
if (!L_79)
{
goto IL_0304;
}
}
IL_02ea:
{
String_t* L_80 = __this->get_clear_11();
TermInfoDriver_WriteConsole_mA33045BAA05976FE867CAA78B79B63A1E58FAF38(__this, L_80, /*hidden argument*/NULL);
__this->set_cursorLeft_4(0);
__this->set_cursorTop_5(0);
}
IL_0304:
{
IL2CPP_LEAVE(0x310, FINALLY_0306);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0306;
}
FINALLY_0306:
{ // begin finally (depth: 1)
{
bool L_81 = V_1;
if (!L_81)
{
goto IL_030f;
}
}
IL_0309:
{
RuntimeObject * L_82 = V_0;
Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_82, /*hidden argument*/NULL);
}
IL_030f:
{
IL2CPP_END_FINALLY(774)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(774)
{
IL2CPP_JUMP_TBL(0x310, IL_0310)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0310:
{
return;
}
}
// System.Void System.TermInfoDriver::IncrementX()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TermInfoDriver_IncrementX_m85DFCF13DC093059F9BE6B74A17D904E768CE4AF (TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_cursorLeft_4();
__this->set_cursorLeft_4(((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)1)));
int32_t L_1 = __this->get_cursorLeft_4();
int32_t L_2 = TermInfoDriver_get_WindowWidth_m8F6C505545EF0542719721E74D3C065D0C132951(__this, /*hidden argument*/NULL);
if ((((int32_t)L_1) < ((int32_t)L_2)))
{
goto IL_0064;
}
}
{
int32_t L_3 = __this->get_cursorTop_5();
__this->set_cursorTop_5(((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)));
__this->set_cursorLeft_4(0);
int32_t L_4 = __this->get_cursorTop_5();
int32_t L_5 = TermInfoDriver_get_WindowHeight_m086EBD5BEC3CBFECFD5AA186BE69FCE6FB812A42(__this, /*hidden argument*/NULL);
if ((((int32_t)L_4) < ((int32_t)L_5)))
{
goto IL_0064;
}
}
{
int32_t L_6 = __this->get_rl_starty_39();
if ((((int32_t)L_6) == ((int32_t)(-1))))
{
goto IL_0056;
}
}
{
int32_t L_7 = __this->get_rl_starty_39();
__this->set_rl_starty_39(((int32_t)il2cpp_codegen_subtract((int32_t)L_7, (int32_t)1)));
}
IL_0056:
{
int32_t L_8 = __this->get_cursorTop_5();
__this->set_cursorTop_5(((int32_t)il2cpp_codegen_subtract((int32_t)L_8, (int32_t)1)));
}
IL_0064:
{
return;
}
}
// System.Void System.TermInfoDriver::WriteSpecialKey(System.ConsoleKeyInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TermInfoDriver_WriteSpecialKey_m76A0A1AD8A1280927C8A75DA4AEEC8B85B5210E3 (TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653 * __this, ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 ___key0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TermInfoDriver_WriteSpecialKey_m76A0A1AD8A1280927C8A75DA4AEEC8B85B5210E3_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ConsoleKeyInfo_get_Key_m36CD740D4C51FB4F4277AC7E6CD24D79DF5C8AC5_inline((ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 *)(&___key0), /*hidden argument*/NULL);
V_0 = L_0;
int32_t L_1 = V_0;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_1, (int32_t)8)))
{
case 0:
{
goto IL_0029;
}
case 1:
{
goto IL_0092;
}
case 2:
{
goto IL_00d5;
}
case 3:
{
goto IL_00d5;
}
case 4:
{
goto IL_00bb;
}
case 5:
{
goto IL_00d5;
}
}
}
{
return;
}
IL_0029:
{
int32_t L_2 = __this->get_cursorLeft_4();
if ((((int32_t)L_2) <= ((int32_t)0)))
{
goto IL_00d5;
}
}
{
int32_t L_3 = __this->get_cursorLeft_4();
int32_t L_4 = __this->get_rl_startx_38();
if ((((int32_t)L_3) > ((int32_t)L_4)))
{
goto IL_0054;
}
}
{
int32_t L_5 = __this->get_cursorTop_5();
int32_t L_6 = __this->get_rl_starty_39();
if ((((int32_t)L_5) == ((int32_t)L_6)))
{
goto IL_00d5;
}
}
IL_0054:
{
int32_t L_7 = __this->get_cursorLeft_4();
__this->set_cursorLeft_4(((int32_t)il2cpp_codegen_subtract((int32_t)L_7, (int32_t)1)));
int32_t L_8 = __this->get_cursorLeft_4();
int32_t L_9 = __this->get_cursorTop_5();
TermInfoDriver_SetCursorPosition_mDBD339CD6F48B285AF40411BB572D4565F7118ED(__this, L_8, L_9, /*hidden argument*/NULL);
TermInfoDriver_WriteConsole_mA33045BAA05976FE867CAA78B79B63A1E58FAF38(__this, _stringLiteralB858CB282617FB0956D960215C8E84D1CCF909C6, /*hidden argument*/NULL);
int32_t L_10 = __this->get_cursorLeft_4();
int32_t L_11 = __this->get_cursorTop_5();
TermInfoDriver_SetCursorPosition_mDBD339CD6F48B285AF40411BB572D4565F7118ED(__this, L_10, L_11, /*hidden argument*/NULL);
return;
}
IL_0092:
{
int32_t L_12 = __this->get_cursorLeft_4();
V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)8, (int32_t)((int32_t)((int32_t)L_12%(int32_t)8))));
V_2 = 0;
goto IL_00ab;
}
IL_00a1:
{
TermInfoDriver_IncrementX_m85DFCF13DC093059F9BE6B74A17D904E768CE4AF(__this, /*hidden argument*/NULL);
int32_t L_13 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1));
}
IL_00ab:
{
int32_t L_14 = V_2;
int32_t L_15 = V_1;
if ((((int32_t)L_14) < ((int32_t)L_15)))
{
goto IL_00a1;
}
}
{
TermInfoDriver_WriteConsole_mA33045BAA05976FE867CAA78B79B63A1E58FAF38(__this, _stringLiteralAC9231DA4082430AFE8F4D40127814C613648D8E, /*hidden argument*/NULL);
return;
}
IL_00bb:
{
String_t* L_16 = __this->get_clear_11();
TermInfoDriver_WriteConsole_mA33045BAA05976FE867CAA78B79B63A1E58FAF38(__this, L_16, /*hidden argument*/NULL);
__this->set_cursorLeft_4(0);
__this->set_cursorTop_5(0);
}
IL_00d5:
{
return;
}
}
// System.Void System.TermInfoDriver::WriteSpecialKey(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TermInfoDriver_WriteSpecialKey_m8B7DD094550DB4CF53A524EA5CDEE74EB61DE674 (TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653 * __this, Il2CppChar ___c0, const RuntimeMethod* method)
{
{
Il2CppChar L_0 = ___c0;
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_1 = TermInfoDriver_CreateKeyInfoFromInt_m2C4CDCCB10F427AC9A4D12FDFD15FADBDD8EEDCE(__this, L_0, (bool)0, /*hidden argument*/NULL);
TermInfoDriver_WriteSpecialKey_m76A0A1AD8A1280927C8A75DA4AEEC8B85B5210E3(__this, L_1, /*hidden argument*/NULL);
return;
}
}
// System.Boolean System.TermInfoDriver::IsSpecialKey(System.ConsoleKeyInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TermInfoDriver_IsSpecialKey_m90029957DF9A323BDF709BE801753EC8589AE955 (TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653 * __this, ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 ___key0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
bool L_0 = __this->get_inited_25();
if (L_0)
{
goto IL_000a;
}
}
{
return (bool)0;
}
IL_000a:
{
int32_t L_1 = ConsoleKeyInfo_get_Key_m36CD740D4C51FB4F4277AC7E6CD24D79DF5C8AC5_inline((ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 *)(&___key0), /*hidden argument*/NULL);
V_0 = L_1;
int32_t L_2 = V_0;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_2, (int32_t)8)))
{
case 0:
{
goto IL_0034;
}
case 1:
{
goto IL_0036;
}
case 2:
{
goto IL_006d;
}
case 3:
{
goto IL_006d;
}
case 4:
{
goto IL_0038;
}
case 5:
{
goto IL_003a;
}
}
}
{
goto IL_006d;
}
IL_0034:
{
return (bool)1;
}
IL_0036:
{
return (bool)1;
}
IL_0038:
{
return (bool)1;
}
IL_003a:
{
__this->set_cursorLeft_4(0);
int32_t L_3 = __this->get_cursorTop_5();
__this->set_cursorTop_5(((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)));
int32_t L_4 = __this->get_cursorTop_5();
int32_t L_5 = TermInfoDriver_get_WindowHeight_m086EBD5BEC3CBFECFD5AA186BE69FCE6FB812A42(__this, /*hidden argument*/NULL);
if ((((int32_t)L_4) < ((int32_t)L_5)))
{
goto IL_006b;
}
}
{
int32_t L_6 = __this->get_cursorTop_5();
__this->set_cursorTop_5(((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)));
}
IL_006b:
{
return (bool)0;
}
IL_006d:
{
TermInfoDriver_IncrementX_m85DFCF13DC093059F9BE6B74A17D904E768CE4AF(__this, /*hidden argument*/NULL);
return (bool)0;
}
}
// System.Boolean System.TermInfoDriver::IsSpecialKey(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TermInfoDriver_IsSpecialKey_m15DED4CF35F3E44E8B1265350BEF4CD382D9166B (TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653 * __this, Il2CppChar ___c0, const RuntimeMethod* method)
{
{
Il2CppChar L_0 = ___c0;
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_1 = TermInfoDriver_CreateKeyInfoFromInt_m2C4CDCCB10F427AC9A4D12FDFD15FADBDD8EEDCE(__this, L_0, (bool)0, /*hidden argument*/NULL);
bool L_2 = TermInfoDriver_IsSpecialKey_m90029957DF9A323BDF709BE801753EC8589AE955(__this, L_1, /*hidden argument*/NULL);
return L_2;
}
}
// System.Void System.TermInfoDriver::GetCursorPosition()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TermInfoDriver_GetCursorPosition_mC6D63B8C54851DE5CCE4294A0386AA69BEDD55AF (TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TermInfoDriver_GetCursorPosition_mC6D63B8C54851DE5CCE4294A0386AA69BEDD55AF_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
int32_t V_3 = 0;
{
V_0 = 0;
V_1 = 0;
IL2CPP_RUNTIME_CLASS_INIT(ConsoleDriver_t4F24DB42600CA82912181D5D312902B8BEFEE101_il2cpp_TypeInfo_var);
int32_t L_0 = ConsoleDriver_InternalKeyAvailable_m4A48787A04F55E95C2EFD79A4727132C4B5B3468(0, /*hidden argument*/NULL);
V_3 = L_0;
goto IL_0020;
}
IL_000d:
{
StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * L_1 = __this->get_stdin_14();
NullCheck(L_1);
int32_t L_2 = VirtFuncInvoker0< int32_t >::Invoke(9 /* System.Int32 System.IO.TextReader::Read() */, L_1);
V_2 = L_2;
int32_t L_3 = V_2;
TermInfoDriver_AddToBuffer_mBFD0A5D22191513A7B1739ED80455D642110C49B(__this, L_3, /*hidden argument*/NULL);
}
IL_0020:
{
int32_t L_4 = V_3;
int32_t L_5 = L_4;
V_3 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_5, (int32_t)1));
if ((((int32_t)L_5) > ((int32_t)0)))
{
goto IL_000d;
}
}
{
TermInfoDriver_WriteConsole_mA33045BAA05976FE867CAA78B79B63A1E58FAF38(__this, _stringLiteralA68739B8146CBEEFB78C59E616CD7CAE3AAB0FD0, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(ConsoleDriver_t4F24DB42600CA82912181D5D312902B8BEFEE101_il2cpp_TypeInfo_var);
int32_t L_6 = ConsoleDriver_InternalKeyAvailable_m4A48787A04F55E95C2EFD79A4727132C4B5B3468(((int32_t)1000), /*hidden argument*/NULL);
if ((((int32_t)L_6) > ((int32_t)0)))
{
goto IL_0048;
}
}
{
__this->set_noGetPosition_35((bool)1);
return;
}
IL_0048:
{
StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * L_7 = __this->get_stdin_14();
NullCheck(L_7);
int32_t L_8 = VirtFuncInvoker0< int32_t >::Invoke(9 /* System.Int32 System.IO.TextReader::Read() */, L_7);
V_2 = L_8;
goto IL_0074;
}
IL_0056:
{
int32_t L_9 = V_2;
TermInfoDriver_AddToBuffer_mBFD0A5D22191513A7B1739ED80455D642110C49B(__this, L_9, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(ConsoleDriver_t4F24DB42600CA82912181D5D312902B8BEFEE101_il2cpp_TypeInfo_var);
int32_t L_10 = ConsoleDriver_InternalKeyAvailable_m4A48787A04F55E95C2EFD79A4727132C4B5B3468(((int32_t)100), /*hidden argument*/NULL);
if ((((int32_t)L_10) > ((int32_t)0)))
{
goto IL_0068;
}
}
{
return;
}
IL_0068:
{
StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * L_11 = __this->get_stdin_14();
NullCheck(L_11);
int32_t L_12 = VirtFuncInvoker0< int32_t >::Invoke(9 /* System.Int32 System.IO.TextReader::Read() */, L_11);
V_2 = L_12;
}
IL_0074:
{
int32_t L_13 = V_2;
if ((!(((uint32_t)L_13) == ((uint32_t)((int32_t)27)))))
{
goto IL_0056;
}
}
{
StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * L_14 = __this->get_stdin_14();
NullCheck(L_14);
int32_t L_15 = VirtFuncInvoker0< int32_t >::Invoke(9 /* System.Int32 System.IO.TextReader::Read() */, L_14);
V_2 = L_15;
int32_t L_16 = V_2;
if ((((int32_t)L_16) == ((int32_t)((int32_t)91))))
{
goto IL_009a;
}
}
{
TermInfoDriver_AddToBuffer_mBFD0A5D22191513A7B1739ED80455D642110C49B(__this, ((int32_t)27), /*hidden argument*/NULL);
int32_t L_17 = V_2;
TermInfoDriver_AddToBuffer_mBFD0A5D22191513A7B1739ED80455D642110C49B(__this, L_17, /*hidden argument*/NULL);
return;
}
IL_009a:
{
StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * L_18 = __this->get_stdin_14();
NullCheck(L_18);
int32_t L_19 = VirtFuncInvoker0< int32_t >::Invoke(9 /* System.Int32 System.IO.TextReader::Read() */, L_18);
V_2 = L_19;
int32_t L_20 = V_2;
if ((((int32_t)L_20) == ((int32_t)((int32_t)59))))
{
goto IL_00e2;
}
}
{
int32_t L_21 = V_2;
V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_21, (int32_t)((int32_t)48)));
StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * L_22 = __this->get_stdin_14();
NullCheck(L_22);
int32_t L_23 = VirtFuncInvoker0< int32_t >::Invoke(9 /* System.Int32 System.IO.TextReader::Read() */, L_22);
V_2 = L_23;
goto IL_00d4;
}
IL_00be:
{
int32_t L_24 = V_0;
int32_t L_25 = V_2;
V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_24, (int32_t)((int32_t)10))), (int32_t)L_25)), (int32_t)((int32_t)48)));
StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * L_26 = __this->get_stdin_14();
NullCheck(L_26);
int32_t L_27 = VirtFuncInvoker0< int32_t >::Invoke(9 /* System.Int32 System.IO.TextReader::Read() */, L_26);
V_2 = L_27;
}
IL_00d4:
{
int32_t L_28 = V_2;
if ((((int32_t)L_28) < ((int32_t)((int32_t)48))))
{
goto IL_00de;
}
}
{
int32_t L_29 = V_2;
if ((((int32_t)L_29) <= ((int32_t)((int32_t)57))))
{
goto IL_00be;
}
}
IL_00de:
{
int32_t L_30 = V_0;
V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_30, (int32_t)1));
}
IL_00e2:
{
StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * L_31 = __this->get_stdin_14();
NullCheck(L_31);
int32_t L_32 = VirtFuncInvoker0< int32_t >::Invoke(9 /* System.Int32 System.IO.TextReader::Read() */, L_31);
V_2 = L_32;
int32_t L_33 = V_2;
if ((((int32_t)L_33) == ((int32_t)((int32_t)82))))
{
goto IL_012a;
}
}
{
int32_t L_34 = V_2;
V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_34, (int32_t)((int32_t)48)));
StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * L_35 = __this->get_stdin_14();
NullCheck(L_35);
int32_t L_36 = VirtFuncInvoker0< int32_t >::Invoke(9 /* System.Int32 System.IO.TextReader::Read() */, L_35);
V_2 = L_36;
goto IL_011c;
}
IL_0106:
{
int32_t L_37 = V_1;
int32_t L_38 = V_2;
V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_37, (int32_t)((int32_t)10))), (int32_t)L_38)), (int32_t)((int32_t)48)));
StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * L_39 = __this->get_stdin_14();
NullCheck(L_39);
int32_t L_40 = VirtFuncInvoker0< int32_t >::Invoke(9 /* System.Int32 System.IO.TextReader::Read() */, L_39);
V_2 = L_40;
}
IL_011c:
{
int32_t L_41 = V_2;
if ((((int32_t)L_41) < ((int32_t)((int32_t)48))))
{
goto IL_0126;
}
}
{
int32_t L_42 = V_2;
if ((((int32_t)L_42) <= ((int32_t)((int32_t)57))))
{
goto IL_0106;
}
}
IL_0126:
{
int32_t L_43 = V_1;
V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_43, (int32_t)1));
}
IL_012a:
{
int32_t L_44 = V_1;
__this->set_cursorLeft_4(L_44);
int32_t L_45 = V_0;
__this->set_cursorTop_5(L_45);
return;
}
}
// System.Void System.TermInfoDriver::CheckWindowDimensions()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TermInfoDriver_CheckWindowDimensions_mA57D80C0BDCF89FBE6616495887AF3B3F3D3D35B (TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TermInfoDriver_CheckWindowDimensions_mA57D80C0BDCF89FBE6616495887AF3B3F3D3D35B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
IL2CPP_RUNTIME_CLASS_INIT(TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653_il2cpp_TypeInfo_var);
int32_t* L_0 = ((TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653_StaticFields*)il2cpp_codegen_static_fields_for(TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653_il2cpp_TypeInfo_var))->get_native_terminal_size_0();
if ((((intptr_t)L_0) == ((intptr_t)(((uintptr_t)0)))))
{
goto IL_0016;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653_il2cpp_TypeInfo_var);
int32_t L_1 = ((TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653_StaticFields*)il2cpp_codegen_static_fields_for(TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653_il2cpp_TypeInfo_var))->get_terminal_size_1();
int32_t* L_2 = ((TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653_StaticFields*)il2cpp_codegen_static_fields_for(TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653_il2cpp_TypeInfo_var))->get_native_terminal_size_0();
int32_t L_3 = *((int32_t*)L_2);
if ((!(((uint32_t)L_1) == ((uint32_t)L_3))))
{
goto IL_0017;
}
}
IL_0016:
{
return;
}
IL_0017:
{
IL2CPP_RUNTIME_CLASS_INIT(TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653_il2cpp_TypeInfo_var);
int32_t* L_4 = ((TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653_StaticFields*)il2cpp_codegen_static_fields_for(TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653_il2cpp_TypeInfo_var))->get_native_terminal_size_0();
int32_t L_5 = *((int32_t*)L_4);
if ((!(((uint32_t)L_5) == ((uint32_t)(-1)))))
{
goto IL_0050;
}
}
{
TermInfoReader_tCAABF3484E6F0AA298F809766C52CA9DC4E6C55C * L_6 = __this->get_reader_3();
NullCheck(L_6);
int32_t L_7 = TermInfoReader_Get_mBE8AB84A3B00855DF6CFBEEDAF0B7A9DD35D1DCD(L_6, 0, /*hidden argument*/NULL);
V_0 = L_7;
int32_t L_8 = V_0;
if (!L_8)
{
goto IL_0037;
}
}
{
int32_t L_9 = V_0;
__this->set_windowWidth_16(L_9);
}
IL_0037:
{
TermInfoReader_tCAABF3484E6F0AA298F809766C52CA9DC4E6C55C * L_10 = __this->get_reader_3();
NullCheck(L_10);
int32_t L_11 = TermInfoReader_Get_mBE8AB84A3B00855DF6CFBEEDAF0B7A9DD35D1DCD(L_10, 2, /*hidden argument*/NULL);
V_0 = L_11;
int32_t L_12 = V_0;
if (!L_12)
{
goto IL_007a;
}
}
{
int32_t L_13 = V_0;
__this->set_windowHeight_17(L_13);
goto IL_007a;
}
IL_0050:
{
IL2CPP_RUNTIME_CLASS_INIT(TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653_il2cpp_TypeInfo_var);
int32_t* L_14 = ((TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653_StaticFields*)il2cpp_codegen_static_fields_for(TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653_il2cpp_TypeInfo_var))->get_native_terminal_size_0();
int32_t L_15 = *((int32_t*)L_14);
((TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653_StaticFields*)il2cpp_codegen_static_fields_for(TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653_il2cpp_TypeInfo_var))->set_terminal_size_1(L_15);
int32_t L_16 = ((TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653_StaticFields*)il2cpp_codegen_static_fields_for(TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653_il2cpp_TypeInfo_var))->get_terminal_size_1();
__this->set_windowWidth_16(((int32_t)((int32_t)L_16>>(int32_t)((int32_t)16))));
int32_t L_17 = ((TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653_StaticFields*)il2cpp_codegen_static_fields_for(TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653_il2cpp_TypeInfo_var))->get_terminal_size_1();
__this->set_windowHeight_17(((int32_t)((int32_t)L_17&(int32_t)((int32_t)65535))));
}
IL_007a:
{
int32_t L_18 = __this->get_windowHeight_17();
__this->set_bufferHeight_18(L_18);
int32_t L_19 = __this->get_windowWidth_16();
__this->set_bufferWidth_19(L_19);
return;
}
}
// System.Int32 System.TermInfoDriver::get_WindowHeight()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TermInfoDriver_get_WindowHeight_m086EBD5BEC3CBFECFD5AA186BE69FCE6FB812A42 (TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653 * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_inited_25();
if (L_0)
{
goto IL_000e;
}
}
{
TermInfoDriver_Init_mAA7BB4F7D9EDADAC2AE0A864410D4F062FA8E569(__this, /*hidden argument*/NULL);
}
IL_000e:
{
TermInfoDriver_CheckWindowDimensions_mA57D80C0BDCF89FBE6616495887AF3B3F3D3D35B(__this, /*hidden argument*/NULL);
int32_t L_1 = __this->get_windowHeight_17();
return L_1;
}
}
// System.Int32 System.TermInfoDriver::get_WindowWidth()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TermInfoDriver_get_WindowWidth_m8F6C505545EF0542719721E74D3C065D0C132951 (TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653 * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_inited_25();
if (L_0)
{
goto IL_000e;
}
}
{
TermInfoDriver_Init_mAA7BB4F7D9EDADAC2AE0A864410D4F062FA8E569(__this, /*hidden argument*/NULL);
}
IL_000e:
{
TermInfoDriver_CheckWindowDimensions_mA57D80C0BDCF89FBE6616495887AF3B3F3D3D35B(__this, /*hidden argument*/NULL);
int32_t L_1 = __this->get_windowWidth_16();
return L_1;
}
}
// System.Void System.TermInfoDriver::AddToBuffer(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TermInfoDriver_AddToBuffer_mBFD0A5D22191513A7B1739ED80455D642110C49B (TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653 * __this, int32_t ___b0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TermInfoDriver_AddToBuffer_mBFD0A5D22191513A7B1739ED80455D642110C49B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* V_0 = NULL;
int32_t V_1 = 0;
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_0 = __this->get_buffer_20();
if (L_0)
{
goto IL_001a;
}
}
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_1 = (CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)SZArrayNew(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2_il2cpp_TypeInfo_var, (uint32_t)((int32_t)1024));
__this->set_buffer_20(L_1);
goto IL_0057;
}
IL_001a:
{
int32_t L_2 = __this->get_writepos_22();
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_3 = __this->get_buffer_20();
NullCheck(L_3);
if ((((int32_t)L_2) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_3)->max_length)))))))
{
goto IL_0057;
}
}
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_4 = __this->get_buffer_20();
NullCheck(L_4);
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_5 = (CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)SZArrayNew(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_multiply((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))), (int32_t)2)));
V_0 = L_5;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_6 = __this->get_buffer_20();
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_7 = V_0;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_8 = __this->get_buffer_20();
NullCheck(L_8);
Buffer_BlockCopy_m1F882D595976063718AF6E405664FC761924D353((RuntimeArray *)(RuntimeArray *)L_6, 0, (RuntimeArray *)(RuntimeArray *)L_7, 0, (((int32_t)((int32_t)(((RuntimeArray*)L_8)->max_length)))), /*hidden argument*/NULL);
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_9 = V_0;
__this->set_buffer_20(L_9);
}
IL_0057:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_10 = __this->get_buffer_20();
int32_t L_11 = __this->get_writepos_22();
V_1 = L_11;
int32_t L_12 = V_1;
__this->set_writepos_22(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)));
int32_t L_13 = V_1;
int32_t L_14 = ___b0;
NullCheck(L_10);
(L_10)->SetAt(static_cast<il2cpp_array_size_t>(L_13), (Il2CppChar)(((int32_t)((uint16_t)L_14))));
return;
}
}
// System.Void System.TermInfoDriver::AdjustBuffer()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TermInfoDriver_AdjustBuffer_m6C594DD7010792FC07083EE1F0DFF5FF8DA490F9 (TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = __this->get_readpos_21();
int32_t L_1 = __this->get_writepos_22();
if ((((int32_t)L_0) < ((int32_t)L_1)))
{
goto IL_001e;
}
}
{
int32_t L_2 = 0;
V_0 = L_2;
__this->set_writepos_22(L_2);
int32_t L_3 = V_0;
__this->set_readpos_21(L_3);
}
IL_001e:
{
return;
}
}
// System.ConsoleKeyInfo System.TermInfoDriver::CreateKeyInfoFromInt(System.Int32,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 TermInfoDriver_CreateKeyInfoFromInt_m2C4CDCCB10F427AC9A4D12FDFD15FADBDD8EEDCE (TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653 * __this, int32_t ___n0, bool ___alt1, const RuntimeMethod* method)
{
Il2CppChar V_0 = 0x0;
int32_t V_1 = 0;
bool V_2 = false;
bool V_3 = false;
{
int32_t L_0 = ___n0;
V_0 = (((int32_t)((uint16_t)L_0)));
int32_t L_1 = ___n0;
V_1 = L_1;
V_2 = (bool)0;
V_3 = (bool)0;
int32_t L_2 = ___n0;
if ((((int32_t)L_2) > ((int32_t)((int32_t)19))))
{
goto IL_0038;
}
}
{
int32_t L_3 = ___n0;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_3, (int32_t)8)))
{
case 0:
{
goto IL_00c7;
}
case 1:
{
goto IL_00c7;
}
case 2:
{
goto IL_0065;
}
case 3:
{
goto IL_0088;
}
case 4:
{
goto IL_00c7;
}
case 5:
{
goto IL_00c7;
}
}
}
{
int32_t L_4 = ___n0;
if ((((int32_t)L_4) == ((int32_t)((int32_t)19))))
{
goto IL_00c7;
}
}
{
goto IL_0088;
}
IL_0038:
{
int32_t L_5 = ___n0;
if ((((int32_t)L_5) == ((int32_t)((int32_t)27))))
{
goto IL_0083;
}
}
{
int32_t L_6 = ___n0;
if ((((int32_t)L_6) == ((int32_t)((int32_t)32))))
{
goto IL_006a;
}
}
{
int32_t L_7 = ___n0;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_7, (int32_t)((int32_t)42))))
{
case 0:
{
goto IL_007e;
}
case 1:
{
goto IL_0074;
}
case 2:
{
goto IL_0088;
}
case 3:
{
goto IL_006f;
}
case 4:
{
goto IL_0088;
}
case 5:
{
goto IL_0079;
}
}
}
{
goto IL_0088;
}
IL_0065:
{
V_1 = ((int32_t)13);
goto IL_00c7;
}
IL_006a:
{
V_1 = ((int32_t)32);
goto IL_00c7;
}
IL_006f:
{
V_1 = ((int32_t)109);
goto IL_00c7;
}
IL_0074:
{
V_1 = ((int32_t)107);
goto IL_00c7;
}
IL_0079:
{
V_1 = ((int32_t)111);
goto IL_00c7;
}
IL_007e:
{
V_1 = ((int32_t)106);
goto IL_00c7;
}
IL_0083:
{
V_1 = ((int32_t)27);
goto IL_00c7;
}
IL_0088:
{
int32_t L_8 = ___n0;
if ((((int32_t)L_8) < ((int32_t)1)))
{
goto IL_009c;
}
}
{
int32_t L_9 = ___n0;
if ((((int32_t)L_9) > ((int32_t)((int32_t)26))))
{
goto IL_009c;
}
}
{
V_3 = (bool)1;
int32_t L_10 = ___n0;
V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)65), (int32_t)L_10)), (int32_t)1));
goto IL_00c7;
}
IL_009c:
{
int32_t L_11 = ___n0;
if ((((int32_t)L_11) < ((int32_t)((int32_t)97))))
{
goto IL_00ad;
}
}
{
int32_t L_12 = ___n0;
if ((((int32_t)L_12) > ((int32_t)((int32_t)122))))
{
goto IL_00ad;
}
}
{
int32_t L_13 = ___n0;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)-32), (int32_t)L_13));
goto IL_00c7;
}
IL_00ad:
{
int32_t L_14 = ___n0;
if ((((int32_t)L_14) < ((int32_t)((int32_t)65))))
{
goto IL_00bb;
}
}
{
int32_t L_15 = ___n0;
if ((((int32_t)L_15) > ((int32_t)((int32_t)90))))
{
goto IL_00bb;
}
}
{
V_2 = (bool)1;
goto IL_00c7;
}
IL_00bb:
{
int32_t L_16 = ___n0;
if ((((int32_t)L_16) < ((int32_t)((int32_t)48))))
{
goto IL_00c5;
}
}
{
int32_t L_17 = ___n0;
if ((((int32_t)L_17) <= ((int32_t)((int32_t)57))))
{
goto IL_00c7;
}
}
IL_00c5:
{
V_1 = 0;
}
IL_00c7:
{
Il2CppChar L_18 = V_0;
int32_t L_19 = V_1;
bool L_20 = V_2;
bool L_21 = ___alt1;
bool L_22 = V_3;
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_23;
memset((&L_23), 0, sizeof(L_23));
ConsoleKeyInfo__ctor_mF5F427F75CCD5D4BCAADCE6AE31F61D70BD95B98((&L_23), L_18, L_19, L_20, L_21, L_22, /*hidden argument*/NULL);
return L_23;
}
}
// System.Object System.TermInfoDriver::GetKeyFromBuffer(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * TermInfoDriver_GetKeyFromBuffer_m27FF9AA28768AEE2B2AFFF6E959EF3F67FED092E (TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653 * __this, bool ___cooked0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TermInfoDriver_GetKeyFromBuffer_m27FF9AA28768AEE2B2AFFF6E959EF3F67FED092E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 V_3;
memset((&V_3), 0, sizeof(V_3));
{
int32_t L_0 = __this->get_readpos_21();
int32_t L_1 = __this->get_writepos_22();
if ((((int32_t)L_0) < ((int32_t)L_1)))
{
goto IL_0010;
}
}
{
return NULL;
}
IL_0010:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_2 = __this->get_buffer_20();
int32_t L_3 = __this->get_readpos_21();
NullCheck(L_2);
int32_t L_4 = L_3;
uint16_t L_5 = (uint16_t)(L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
V_0 = L_5;
bool L_6 = ___cooked0;
if (!L_6)
{
goto IL_002f;
}
}
{
ByteMatcher_tB199BDD35E2575B84D9FDED34954705653D241DC * L_7 = __this->get_rootmap_37();
int32_t L_8 = V_0;
NullCheck(L_7);
bool L_9 = ByteMatcher_StartsWith_mE7DCC79999EE153E06F1230A98D1D2CA20D1D4A5(L_7, L_8, /*hidden argument*/NULL);
if (L_9)
{
goto IL_0051;
}
}
IL_002f:
{
int32_t L_10 = __this->get_readpos_21();
__this->set_readpos_21(((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1)));
TermInfoDriver_AdjustBuffer_m6C594DD7010792FC07083EE1F0DFF5FF8DA490F9(__this, /*hidden argument*/NULL);
int32_t L_11 = V_0;
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_12 = TermInfoDriver_CreateKeyInfoFromInt_m2C4CDCCB10F427AC9A4D12FDFD15FADBDD8EEDCE(__this, L_11, (bool)0, /*hidden argument*/NULL);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_13 = L_12;
RuntimeObject * L_14 = Box(ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_il2cpp_TypeInfo_var, &L_13);
return L_14;
}
IL_0051:
{
ByteMatcher_tB199BDD35E2575B84D9FDED34954705653D241DC * L_15 = __this->get_rootmap_37();
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_16 = __this->get_buffer_20();
int32_t L_17 = __this->get_readpos_21();
int32_t L_18 = __this->get_writepos_22();
int32_t L_19 = __this->get_readpos_21();
NullCheck(L_15);
int32_t L_20 = ByteMatcher_Match_mF9866E6C6F2FEC09034695FBED166744F65BA931(L_15, L_16, L_17, ((int32_t)il2cpp_codegen_subtract((int32_t)L_18, (int32_t)L_19)), (int32_t*)(&V_1), /*hidden argument*/NULL);
V_2 = L_20;
int32_t L_21 = V_2;
if ((!(((uint32_t)L_21) == ((uint32_t)(-1)))))
{
goto IL_00f2;
}
}
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_22 = __this->get_buffer_20();
int32_t L_23 = __this->get_readpos_21();
NullCheck(L_22);
int32_t L_24 = L_23;
uint16_t L_25 = (uint16_t)(L_22)->GetAt(static_cast<il2cpp_array_size_t>(L_24));
if ((!(((uint32_t)L_25) == ((uint32_t)((int32_t)27)))))
{
goto IL_00f0;
}
}
{
int32_t L_26 = __this->get_writepos_22();
int32_t L_27 = __this->get_readpos_21();
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_26, (int32_t)L_27))) < ((int32_t)2)))
{
goto IL_00f0;
}
}
{
int32_t L_28 = __this->get_readpos_21();
__this->set_readpos_21(((int32_t)il2cpp_codegen_add((int32_t)L_28, (int32_t)2)));
TermInfoDriver_AdjustBuffer_m6C594DD7010792FC07083EE1F0DFF5FF8DA490F9(__this, /*hidden argument*/NULL);
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_29 = __this->get_buffer_20();
int32_t L_30 = __this->get_readpos_21();
NullCheck(L_29);
int32_t L_31 = ((int32_t)il2cpp_codegen_add((int32_t)L_30, (int32_t)1));
uint16_t L_32 = (uint16_t)(L_29)->GetAt(static_cast<il2cpp_array_size_t>(L_31));
if ((!(((uint32_t)L_32) == ((uint32_t)((int32_t)127)))))
{
goto IL_00d4;
}
}
{
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_33;
memset((&L_33), 0, sizeof(L_33));
ConsoleKeyInfo__ctor_mF5F427F75CCD5D4BCAADCE6AE31F61D70BD95B98((&L_33), 8, 8, (bool)0, (bool)1, (bool)0, /*hidden argument*/NULL);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_34 = L_33;
RuntimeObject * L_35 = Box(ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_il2cpp_TypeInfo_var, &L_34);
return L_35;
}
IL_00d4:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_36 = __this->get_buffer_20();
int32_t L_37 = __this->get_readpos_21();
NullCheck(L_36);
int32_t L_38 = ((int32_t)il2cpp_codegen_add((int32_t)L_37, (int32_t)1));
uint16_t L_39 = (uint16_t)(L_36)->GetAt(static_cast<il2cpp_array_size_t>(L_38));
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_40 = TermInfoDriver_CreateKeyInfoFromInt_m2C4CDCCB10F427AC9A4D12FDFD15FADBDD8EEDCE(__this, L_39, (bool)1, /*hidden argument*/NULL);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_41 = L_40;
RuntimeObject * L_42 = Box(ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_il2cpp_TypeInfo_var, &L_41);
return L_42;
}
IL_00f0:
{
return NULL;
}
IL_00f2:
{
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_43 = __this->get_keymap_36();
int32_t L_44 = V_2;
int32_t L_45 = L_44;
RuntimeObject * L_46 = Box(TermInfoStrings_tA50FD6AB2B4EFB66E90CD563942E0A664FD6022F_il2cpp_TypeInfo_var, &L_45);
NullCheck(L_43);
RuntimeObject * L_47 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(20 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_43, L_46);
if (!L_47)
{
goto IL_011e;
}
}
{
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_48 = __this->get_keymap_36();
int32_t L_49 = V_2;
int32_t L_50 = L_49;
RuntimeObject * L_51 = Box(TermInfoStrings_tA50FD6AB2B4EFB66E90CD563942E0A664FD6022F_il2cpp_TypeInfo_var, &L_50);
NullCheck(L_48);
RuntimeObject * L_52 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(20 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_48, L_51);
V_3 = ((*(ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 *)((ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 *)UnBox(L_52, ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_il2cpp_TypeInfo_var))));
goto IL_0140;
}
IL_011e:
{
int32_t L_53 = __this->get_readpos_21();
__this->set_readpos_21(((int32_t)il2cpp_codegen_add((int32_t)L_53, (int32_t)1)));
TermInfoDriver_AdjustBuffer_m6C594DD7010792FC07083EE1F0DFF5FF8DA490F9(__this, /*hidden argument*/NULL);
int32_t L_54 = V_0;
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_55 = TermInfoDriver_CreateKeyInfoFromInt_m2C4CDCCB10F427AC9A4D12FDFD15FADBDD8EEDCE(__this, L_54, (bool)0, /*hidden argument*/NULL);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_56 = L_55;
RuntimeObject * L_57 = Box(ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_il2cpp_TypeInfo_var, &L_56);
return L_57;
}
IL_0140:
{
int32_t L_58 = __this->get_readpos_21();
int32_t L_59 = V_1;
__this->set_readpos_21(((int32_t)il2cpp_codegen_add((int32_t)L_58, (int32_t)L_59)));
TermInfoDriver_AdjustBuffer_m6C594DD7010792FC07083EE1F0DFF5FF8DA490F9(__this, /*hidden argument*/NULL);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_60 = V_3;
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_61 = L_60;
RuntimeObject * L_62 = Box(ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_il2cpp_TypeInfo_var, &L_61);
return L_62;
}
}
// System.ConsoleKeyInfo System.TermInfoDriver::ReadKeyInternal(System.Boolean&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 TermInfoDriver_ReadKeyInternal_mE2B30F995CCA46F324E112B530324C63AF5A6C7D (TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653 * __this, bool* ___fresh0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TermInfoDriver_ReadKeyInternal_mE2B30F995CCA46F324E112B530324C63AF5A6C7D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject * V_0 = NULL;
{
bool L_0 = __this->get_inited_25();
if (L_0)
{
goto IL_000e;
}
}
{
TermInfoDriver_Init_mAA7BB4F7D9EDADAC2AE0A864410D4F062FA8E569(__this, /*hidden argument*/NULL);
}
IL_000e:
{
TermInfoDriver_InitKeys_m3C4D9CA6DE9CEA5F50BDBCB72BF7975F4F1758CB(__this, /*hidden argument*/NULL);
RuntimeObject * L_1 = TermInfoDriver_GetKeyFromBuffer_m27FF9AA28768AEE2B2AFFF6E959EF3F67FED092E(__this, (bool)1, /*hidden argument*/NULL);
RuntimeObject * L_2 = L_1;
V_0 = L_2;
if (L_2)
{
goto IL_00a4;
}
}
IL_0022:
{
IL2CPP_RUNTIME_CLASS_INIT(ConsoleDriver_t4F24DB42600CA82912181D5D312902B8BEFEE101_il2cpp_TypeInfo_var);
int32_t L_3 = ConsoleDriver_InternalKeyAvailable_m4A48787A04F55E95C2EFD79A4727132C4B5B3468(((int32_t)150), /*hidden argument*/NULL);
if ((((int32_t)L_3) <= ((int32_t)0)))
{
goto IL_004b;
}
}
IL_002f:
{
StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * L_4 = __this->get_stdin_14();
NullCheck(L_4);
int32_t L_5 = VirtFuncInvoker0< int32_t >::Invoke(9 /* System.Int32 System.IO.TextReader::Read() */, L_4);
TermInfoDriver_AddToBuffer_mBFD0A5D22191513A7B1739ED80455D642110C49B(__this, L_5, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(ConsoleDriver_t4F24DB42600CA82912181D5D312902B8BEFEE101_il2cpp_TypeInfo_var);
int32_t L_6 = ConsoleDriver_InternalKeyAvailable_m4A48787A04F55E95C2EFD79A4727132C4B5B3468(0, /*hidden argument*/NULL);
if ((((int32_t)L_6) > ((int32_t)0)))
{
goto IL_002f;
}
}
{
goto IL_0094;
}
IL_004b:
{
StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * L_7 = __this->get_stdin_14();
NullCheck(L_7);
bool L_8 = StreamReader_DataAvailable_m1B8832D71BF98C38A5520CDFFC64684716F87863(L_7, /*hidden argument*/NULL);
if (!L_8)
{
goto IL_0078;
}
}
IL_0058:
{
StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * L_9 = __this->get_stdin_14();
NullCheck(L_9);
int32_t L_10 = VirtFuncInvoker0< int32_t >::Invoke(9 /* System.Int32 System.IO.TextReader::Read() */, L_9);
TermInfoDriver_AddToBuffer_mBFD0A5D22191513A7B1739ED80455D642110C49B(__this, L_10, /*hidden argument*/NULL);
StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * L_11 = __this->get_stdin_14();
NullCheck(L_11);
bool L_12 = StreamReader_DataAvailable_m1B8832D71BF98C38A5520CDFFC64684716F87863(L_11, /*hidden argument*/NULL);
if (L_12)
{
goto IL_0058;
}
}
{
goto IL_0094;
}
IL_0078:
{
RuntimeObject * L_13 = TermInfoDriver_GetKeyFromBuffer_m27FF9AA28768AEE2B2AFFF6E959EF3F67FED092E(__this, (bool)0, /*hidden argument*/NULL);
RuntimeObject * L_14 = L_13;
V_0 = L_14;
if (L_14)
{
goto IL_009f;
}
}
{
StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * L_15 = __this->get_stdin_14();
NullCheck(L_15);
int32_t L_16 = VirtFuncInvoker0< int32_t >::Invoke(9 /* System.Int32 System.IO.TextReader::Read() */, L_15);
TermInfoDriver_AddToBuffer_mBFD0A5D22191513A7B1739ED80455D642110C49B(__this, L_16, /*hidden argument*/NULL);
}
IL_0094:
{
RuntimeObject * L_17 = TermInfoDriver_GetKeyFromBuffer_m27FF9AA28768AEE2B2AFFF6E959EF3F67FED092E(__this, (bool)1, /*hidden argument*/NULL);
V_0 = L_17;
RuntimeObject * L_18 = V_0;
if (!L_18)
{
goto IL_0022;
}
}
IL_009f:
{
bool* L_19 = ___fresh0;
*((int8_t*)L_19) = (int8_t)1;
goto IL_00a7;
}
IL_00a4:
{
bool* L_20 = ___fresh0;
*((int8_t*)L_20) = (int8_t)0;
}
IL_00a7:
{
RuntimeObject * L_21 = V_0;
return ((*(ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 *)((ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 *)UnBox(L_21, ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_il2cpp_TypeInfo_var))));
}
}
// System.Boolean System.TermInfoDriver::InputPending()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TermInfoDriver_InputPending_mAA41251F9BE9308ED170869BB1A739676B1B0EAF (TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_readpos_21();
int32_t L_1 = __this->get_writepos_22();
if ((((int32_t)L_0) < ((int32_t)L_1)))
{
goto IL_001a;
}
}
{
StreamReader_t62E68063760DCD2FC036AE132DE69C24B7ED001E * L_2 = __this->get_stdin_14();
NullCheck(L_2);
bool L_3 = StreamReader_DataAvailable_m1B8832D71BF98C38A5520CDFFC64684716F87863(L_2, /*hidden argument*/NULL);
return L_3;
}
IL_001a:
{
return (bool)1;
}
}
// System.Void System.TermInfoDriver::QueueEcho(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TermInfoDriver_QueueEcho_m0E4C2A73AFF680E59B7C572BD6361A1A024A4F9A (TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653 * __this, Il2CppChar ___c0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TermInfoDriver_QueueEcho_m0E4C2A73AFF680E59B7C572BD6361A1A024A4F9A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_0 = __this->get_echobuf_42();
if (L_0)
{
goto IL_0018;
}
}
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_1 = (CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)SZArrayNew(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2_il2cpp_TypeInfo_var, (uint32_t)((int32_t)1024));
__this->set_echobuf_42(L_1);
}
IL_0018:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_2 = __this->get_echobuf_42();
int32_t L_3 = __this->get_echon_43();
V_0 = L_3;
int32_t L_4 = V_0;
__this->set_echon_43(((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1)));
int32_t L_5 = V_0;
Il2CppChar L_6 = ___c0;
NullCheck(L_2);
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (Il2CppChar)L_6);
int32_t L_7 = __this->get_echon_43();
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_8 = __this->get_echobuf_42();
NullCheck(L_8);
if ((((int32_t)L_7) == ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_8)->max_length)))))))
{
goto IL_0049;
}
}
{
bool L_9 = TermInfoDriver_InputPending_mAA41251F9BE9308ED170869BB1A739676B1B0EAF(__this, /*hidden argument*/NULL);
if (L_9)
{
goto IL_0067;
}
}
IL_0049:
{
CStreamWriter_t6B662CA496662AF63D81722DCA99094893C80450 * L_10 = __this->get_stdout_15();
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_11 = __this->get_echobuf_42();
int32_t L_12 = __this->get_echon_43();
NullCheck(L_10);
CStreamWriter_InternalWriteChars_mBB886C93661A30F21149EA8DE4493C69A7A2D709(L_10, L_11, L_12, /*hidden argument*/NULL);
__this->set_echon_43(0);
}
IL_0067:
{
return;
}
}
// System.Void System.TermInfoDriver::Echo(System.ConsoleKeyInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TermInfoDriver_Echo_m0BDD3AED410D2EA5EAFBCC68892043A302127551 (TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653 * __this, ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 ___key0, const RuntimeMethod* method)
{
{
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_0 = ___key0;
bool L_1 = TermInfoDriver_IsSpecialKey_m90029957DF9A323BDF709BE801753EC8589AE955(__this, L_0, /*hidden argument*/NULL);
if (L_1)
{
goto IL_0017;
}
}
{
Il2CppChar L_2 = ConsoleKeyInfo_get_KeyChar_m6B17C3F0DF650E04D7C0C081E063AE31E8C14509_inline((ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 *)(&___key0), /*hidden argument*/NULL);
TermInfoDriver_QueueEcho_m0E4C2A73AFF680E59B7C572BD6361A1A024A4F9A(__this, L_2, /*hidden argument*/NULL);
return;
}
IL_0017:
{
TermInfoDriver_EchoFlush_m97CC1A347D6D0BBE86611C997DD629D2688DB022(__this, /*hidden argument*/NULL);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_3 = ___key0;
TermInfoDriver_WriteSpecialKey_m76A0A1AD8A1280927C8A75DA4AEEC8B85B5210E3(__this, L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.TermInfoDriver::EchoFlush()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TermInfoDriver_EchoFlush_m97CC1A347D6D0BBE86611C997DD629D2688DB022 (TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_echon_43();
if (L_0)
{
goto IL_0009;
}
}
{
return;
}
IL_0009:
{
CStreamWriter_t6B662CA496662AF63D81722DCA99094893C80450 * L_1 = __this->get_stdout_15();
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_2 = __this->get_echobuf_42();
int32_t L_3 = __this->get_echon_43();
NullCheck(L_1);
CStreamWriter_InternalWriteChars_mBB886C93661A30F21149EA8DE4493C69A7A2D709(L_1, L_2, L_3, /*hidden argument*/NULL);
__this->set_echon_43(0);
return;
}
}
// System.Int32 System.TermInfoDriver::Read(System.Char[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TermInfoDriver_Read_mA572BAC79A02463FDDF358F11155C02BE16D17A1 (TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653 * __this, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___dest0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TermInfoDriver_Read_mA572BAC79A02463FDDF358F11155C02BE16D17A1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
bool V_1 = false;
StringBuilder_t * V_2 = NULL;
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 V_3;
memset((&V_3), 0, sizeof(V_3));
int32_t V_4 = 0;
RuntimeObject * V_5 = NULL;
Il2CppChar V_6 = 0x0;
int32_t V_7 = 0;
int32_t V_8 = 0;
int32_t V_9 = 0;
{
V_1 = (bool)0;
V_4 = 0;
StringBuilder_t * L_0 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
StringBuilder__ctor_mF928376F82E8C8FF3C11842C562DB8CF28B2735E(L_0, /*hidden argument*/NULL);
V_2 = L_0;
}
IL_000b:
{
RuntimeObject * L_1 = TermInfoDriver_GetKeyFromBuffer_m27FF9AA28768AEE2B2AFFF6E959EF3F67FED092E(__this, (bool)1, /*hidden argument*/NULL);
RuntimeObject * L_2 = L_1;
V_5 = L_2;
if (!L_2)
{
goto IL_006e;
}
}
{
RuntimeObject * L_3 = V_5;
V_3 = ((*(ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 *)((ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 *)UnBox(L_3, ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_il2cpp_TypeInfo_var))));
Il2CppChar L_4 = ConsoleKeyInfo_get_KeyChar_m6B17C3F0DF650E04D7C0C081E063AE31E8C14509_inline((ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 *)(&V_3), /*hidden argument*/NULL);
V_6 = L_4;
int32_t L_5 = ConsoleKeyInfo_get_Key_m36CD740D4C51FB4F4277AC7E6CD24D79DF5C8AC5_inline((ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 *)(&V_3), /*hidden argument*/NULL);
if ((((int32_t)L_5) == ((int32_t)8)))
{
goto IL_0050;
}
}
{
int32_t L_6 = ConsoleKeyInfo_get_Key_m36CD740D4C51FB4F4277AC7E6CD24D79DF5C8AC5_inline((ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 *)(&V_3), /*hidden argument*/NULL);
if ((!(((uint32_t)L_6) == ((uint32_t)((int32_t)13)))))
{
goto IL_0045;
}
}
{
StringBuilder_t * L_7 = V_2;
NullCheck(L_7);
int32_t L_8 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_7, /*hidden argument*/NULL);
V_4 = L_8;
}
IL_0045:
{
StringBuilder_t * L_9 = V_2;
Il2CppChar L_10 = V_6;
NullCheck(L_9);
StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A(L_9, L_10, /*hidden argument*/NULL);
goto IL_000b;
}
IL_0050:
{
StringBuilder_t * L_11 = V_2;
NullCheck(L_11);
int32_t L_12 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_11, /*hidden argument*/NULL);
int32_t L_13 = V_4;
if ((((int32_t)L_12) <= ((int32_t)L_13)))
{
goto IL_000b;
}
}
{
StringBuilder_t * L_14 = V_2;
StringBuilder_t * L_15 = L_14;
NullCheck(L_15);
int32_t L_16 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_15, /*hidden argument*/NULL);
V_8 = L_16;
int32_t L_17 = V_8;
NullCheck(L_15);
StringBuilder_set_Length_m84AF318230AE5C3D0D48F1CE7C2170F6F5C19F5B(L_15, ((int32_t)il2cpp_codegen_subtract((int32_t)L_17, (int32_t)1)), /*hidden argument*/NULL);
goto IL_000b;
}
IL_006e:
{
int32_t L_18 = __this->get_cursorLeft_4();
__this->set_rl_startx_38(L_18);
int32_t L_19 = __this->get_cursorTop_5();
__this->set_rl_starty_39(L_19);
}
IL_0086:
{
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_20 = TermInfoDriver_ReadKeyInternal_mE2B30F995CCA46F324E112B530324C63AF5A6C7D(__this, (bool*)(&V_0), /*hidden argument*/NULL);
V_3 = L_20;
bool L_21 = V_1;
bool L_22 = V_0;
V_1 = (bool)((int32_t)((int32_t)L_21|(int32_t)L_22));
Il2CppChar L_23 = ConsoleKeyInfo_get_KeyChar_m6B17C3F0DF650E04D7C0C081E063AE31E8C14509_inline((ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 *)(&V_3), /*hidden argument*/NULL);
V_6 = L_23;
int32_t L_24 = ConsoleKeyInfo_get_Key_m36CD740D4C51FB4F4277AC7E6CD24D79DF5C8AC5_inline((ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 *)(&V_3), /*hidden argument*/NULL);
if ((((int32_t)L_24) == ((int32_t)8)))
{
goto IL_00c4;
}
}
{
int32_t L_25 = ConsoleKeyInfo_get_Key_m36CD740D4C51FB4F4277AC7E6CD24D79DF5C8AC5_inline((ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 *)(&V_3), /*hidden argument*/NULL);
if ((!(((uint32_t)L_25) == ((uint32_t)((int32_t)13)))))
{
goto IL_00b9;
}
}
{
StringBuilder_t * L_26 = V_2;
NullCheck(L_26);
int32_t L_27 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_26, /*hidden argument*/NULL);
V_4 = L_27;
}
IL_00b9:
{
StringBuilder_t * L_28 = V_2;
Il2CppChar L_29 = V_6;
NullCheck(L_28);
StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A(L_28, L_29, /*hidden argument*/NULL);
goto IL_00e0;
}
IL_00c4:
{
StringBuilder_t * L_30 = V_2;
NullCheck(L_30);
int32_t L_31 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_30, /*hidden argument*/NULL);
int32_t L_32 = V_4;
if ((((int32_t)L_31) <= ((int32_t)L_32)))
{
goto IL_00ea;
}
}
{
StringBuilder_t * L_33 = V_2;
StringBuilder_t * L_34 = L_33;
NullCheck(L_34);
int32_t L_35 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_34, /*hidden argument*/NULL);
V_8 = L_35;
int32_t L_36 = V_8;
NullCheck(L_34);
StringBuilder_set_Length_m84AF318230AE5C3D0D48F1CE7C2170F6F5C19F5B(L_34, ((int32_t)il2cpp_codegen_subtract((int32_t)L_36, (int32_t)1)), /*hidden argument*/NULL);
}
IL_00e0:
{
bool L_37 = V_1;
if (!L_37)
{
goto IL_00ea;
}
}
{
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_38 = V_3;
TermInfoDriver_Echo_m0BDD3AED410D2EA5EAFBCC68892043A302127551(__this, L_38, /*hidden argument*/NULL);
}
IL_00ea:
{
int32_t L_39 = ConsoleKeyInfo_get_Key_m36CD740D4C51FB4F4277AC7E6CD24D79DF5C8AC5_inline((ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 *)(&V_3), /*hidden argument*/NULL);
if ((!(((uint32_t)L_39) == ((uint32_t)((int32_t)13)))))
{
goto IL_0086;
}
}
{
TermInfoDriver_EchoFlush_m97CC1A347D6D0BBE86611C997DD629D2688DB022(__this, /*hidden argument*/NULL);
__this->set_rl_startx_38((-1));
__this->set_rl_starty_39((-1));
V_7 = 0;
goto IL_0127;
}
IL_010e:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_40 = ___dest0;
int32_t L_41 = ___index1;
int32_t L_42 = V_7;
StringBuilder_t * L_43 = V_2;
int32_t L_44 = V_7;
NullCheck(L_43);
Il2CppChar L_45 = StringBuilder_get_Chars_mC069533DCA4FB798DFA069469EBABA85DCC183C6(L_43, L_44, /*hidden argument*/NULL);
NullCheck(L_40);
(L_40)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_add((int32_t)L_41, (int32_t)L_42))), (Il2CppChar)L_45);
int32_t L_46 = V_7;
V_7 = ((int32_t)il2cpp_codegen_add((int32_t)L_46, (int32_t)1));
int32_t L_47 = ___count2;
___count2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_47, (int32_t)1));
}
IL_0127:
{
int32_t L_48 = ___count2;
if ((((int32_t)L_48) <= ((int32_t)0)))
{
goto IL_0135;
}
}
{
int32_t L_49 = V_7;
StringBuilder_t * L_50 = V_2;
NullCheck(L_50);
int32_t L_51 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_50, /*hidden argument*/NULL);
if ((((int32_t)L_49) < ((int32_t)L_51)))
{
goto IL_010e;
}
}
IL_0135:
{
int32_t L_52 = V_7;
V_9 = L_52;
goto IL_014f;
}
IL_013b:
{
StringBuilder_t * L_53 = V_2;
int32_t L_54 = V_9;
NullCheck(L_53);
Il2CppChar L_55 = StringBuilder_get_Chars_mC069533DCA4FB798DFA069469EBABA85DCC183C6(L_53, L_54, /*hidden argument*/NULL);
TermInfoDriver_AddToBuffer_mBFD0A5D22191513A7B1739ED80455D642110C49B(__this, L_55, /*hidden argument*/NULL);
int32_t L_56 = V_9;
V_9 = ((int32_t)il2cpp_codegen_add((int32_t)L_56, (int32_t)1));
}
IL_014f:
{
int32_t L_57 = V_9;
StringBuilder_t * L_58 = V_2;
NullCheck(L_58);
int32_t L_59 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_58, /*hidden argument*/NULL);
if ((((int32_t)L_57) < ((int32_t)L_59)))
{
goto IL_013b;
}
}
{
int32_t L_60 = V_7;
return L_60;
}
}
// System.ConsoleKeyInfo System.TermInfoDriver::ReadKey(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 TermInfoDriver_ReadKey_m7C122EF6DD6C7A354E5B1FDC3DBE2D51A33F9785 (TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653 * __this, bool ___intercept0, const RuntimeMethod* method)
{
bool V_0 = false;
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 V_1;
memset((&V_1), 0, sizeof(V_1));
{
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_0 = TermInfoDriver_ReadKeyInternal_mE2B30F995CCA46F324E112B530324C63AF5A6C7D(__this, (bool*)(&V_0), /*hidden argument*/NULL);
V_1 = L_0;
bool L_1 = ___intercept0;
bool L_2 = V_0;
if (!((int32_t)((int32_t)((((int32_t)L_1) == ((int32_t)0))? 1 : 0)&(int32_t)L_2)))
{
goto IL_001e;
}
}
{
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_3 = V_1;
TermInfoDriver_Echo_m0BDD3AED410D2EA5EAFBCC68892043A302127551(__this, L_3, /*hidden argument*/NULL);
TermInfoDriver_EchoFlush_m97CC1A347D6D0BBE86611C997DD629D2688DB022(__this, /*hidden argument*/NULL);
}
IL_001e:
{
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_4 = V_1;
return L_4;
}
}
// System.String System.TermInfoDriver::ReadLine()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TermInfoDriver_ReadLine_m78467BC7110A388B0B3110938EACB1884E14510F (TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = TermInfoDriver_ReadUntilConditionInternal_m872444B3E39D297C33CB5A615FCE3775CE7D2CDB(__this, (bool)1, /*hidden argument*/NULL);
return L_0;
}
}
// System.String System.TermInfoDriver::ReadToEnd()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TermInfoDriver_ReadToEnd_m697572077763E29F1FACE78552838636D7044BBF (TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = TermInfoDriver_ReadUntilConditionInternal_m872444B3E39D297C33CB5A615FCE3775CE7D2CDB(__this, (bool)0, /*hidden argument*/NULL);
return L_0;
}
}
// System.String System.TermInfoDriver::ReadUntilConditionInternal(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TermInfoDriver_ReadUntilConditionInternal_m872444B3E39D297C33CB5A615FCE3775CE7D2CDB (TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653 * __this, bool ___haltOnNewLine0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TermInfoDriver_ReadUntilConditionInternal_m872444B3E39D297C33CB5A615FCE3775CE7D2CDB_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
StringBuilder_t * V_0 = NULL;
bool V_1 = false;
bool V_2 = false;
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 V_3;
memset((&V_3), 0, sizeof(V_3));
Il2CppChar V_4 = 0x0;
Il2CppChar V_5 = 0x0;
int32_t V_6 = 0;
int32_t G_B10_0 = 0;
int32_t G_B15_0 = 0;
int32_t G_B11_0 = 0;
int32_t G_B13_0 = 0;
int32_t G_B12_0 = 0;
int32_t G_B17_0 = 0;
int32_t G_B14_0 = 0;
int32_t G_B16_0 = 0;
{
bool L_0 = __this->get_inited_25();
if (L_0)
{
goto IL_000e;
}
}
{
TermInfoDriver_Init_mAA7BB4F7D9EDADAC2AE0A864410D4F062FA8E569(__this, /*hidden argument*/NULL);
}
IL_000e:
{
TermInfoDriver_GetCursorPosition_mC6D63B8C54851DE5CCE4294A0386AA69BEDD55AF(__this, /*hidden argument*/NULL);
StringBuilder_t * L_1 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
StringBuilder__ctor_mF928376F82E8C8FF3C11842C562DB8CF28B2735E(L_1, /*hidden argument*/NULL);
V_0 = L_1;
V_2 = (bool)0;
int32_t L_2 = __this->get_cursorLeft_4();
__this->set_rl_startx_38(L_2);
int32_t L_3 = __this->get_cursorTop_5();
__this->set_rl_starty_39(L_3);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = __this->get_control_characters_40();
NullCheck(L_4);
int32_t L_5 = 4;
uint8_t L_6 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
V_5 = L_6;
}
IL_003e:
{
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_7 = TermInfoDriver_ReadKeyInternal_mE2B30F995CCA46F324E112B530324C63AF5A6C7D(__this, (bool*)(&V_1), /*hidden argument*/NULL);
V_3 = L_7;
bool L_8 = V_2;
bool L_9 = V_1;
V_2 = (bool)((int32_t)((int32_t)L_8|(int32_t)L_9));
Il2CppChar L_10 = ConsoleKeyInfo_get_KeyChar_m6B17C3F0DF650E04D7C0C081E063AE31E8C14509_inline((ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 *)(&V_3), /*hidden argument*/NULL);
V_4 = L_10;
Il2CppChar L_11 = V_4;
Il2CppChar L_12 = V_5;
if ((!(((uint32_t)L_11) == ((uint32_t)L_12))))
{
goto IL_0068;
}
}
{
Il2CppChar L_13 = V_4;
if (!L_13)
{
goto IL_0068;
}
}
{
StringBuilder_t * L_14 = V_0;
NullCheck(L_14);
int32_t L_15 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_14, /*hidden argument*/NULL);
if (L_15)
{
goto IL_0068;
}
}
{
return (String_t*)NULL;
}
IL_0068:
{
bool L_16 = ___haltOnNewLine0;
if (!L_16)
{
goto IL_0078;
}
}
{
int32_t L_17 = ConsoleKeyInfo_get_Key_m36CD740D4C51FB4F4277AC7E6CD24D79DF5C8AC5_inline((ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 *)(&V_3), /*hidden argument*/NULL);
G_B10_0 = ((((int32_t)L_17) == ((int32_t)((int32_t)13)))? 1 : 0);
goto IL_0079;
}
IL_0078:
{
G_B10_0 = 0;
}
IL_0079:
{
int32_t L_18 = G_B10_0;
G_B11_0 = L_18;
if (L_18)
{
G_B15_0 = L_18;
goto IL_00ac;
}
}
{
int32_t L_19 = ConsoleKeyInfo_get_Key_m36CD740D4C51FB4F4277AC7E6CD24D79DF5C8AC5_inline((ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 *)(&V_3), /*hidden argument*/NULL);
G_B12_0 = G_B11_0;
if ((((int32_t)L_19) == ((int32_t)8)))
{
G_B13_0 = G_B11_0;
goto IL_0091;
}
}
{
StringBuilder_t * L_20 = V_0;
Il2CppChar L_21 = V_4;
NullCheck(L_20);
StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A(L_20, L_21, /*hidden argument*/NULL);
G_B15_0 = G_B12_0;
goto IL_00ac;
}
IL_0091:
{
StringBuilder_t * L_22 = V_0;
NullCheck(L_22);
int32_t L_23 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_22, /*hidden argument*/NULL);
G_B14_0 = G_B13_0;
if ((((int32_t)L_23) <= ((int32_t)0)))
{
G_B17_0 = G_B13_0;
goto IL_00b6;
}
}
{
StringBuilder_t * L_24 = V_0;
StringBuilder_t * L_25 = L_24;
NullCheck(L_25);
int32_t L_26 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_25, /*hidden argument*/NULL);
V_6 = L_26;
int32_t L_27 = V_6;
NullCheck(L_25);
StringBuilder_set_Length_m84AF318230AE5C3D0D48F1CE7C2170F6F5C19F5B(L_25, ((int32_t)il2cpp_codegen_subtract((int32_t)L_27, (int32_t)1)), /*hidden argument*/NULL);
G_B15_0 = G_B14_0;
}
IL_00ac:
{
bool L_28 = V_2;
G_B16_0 = G_B15_0;
if (!L_28)
{
G_B17_0 = G_B15_0;
goto IL_00b6;
}
}
{
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_29 = V_3;
TermInfoDriver_Echo_m0BDD3AED410D2EA5EAFBCC68892043A302127551(__this, L_29, /*hidden argument*/NULL);
G_B17_0 = G_B16_0;
}
IL_00b6:
{
if (!G_B17_0)
{
goto IL_003e;
}
}
{
TermInfoDriver_EchoFlush_m97CC1A347D6D0BBE86611C997DD629D2688DB022(__this, /*hidden argument*/NULL);
__this->set_rl_startx_38((-1));
__this->set_rl_starty_39((-1));
StringBuilder_t * L_30 = V_0;
NullCheck(L_30);
String_t* L_31 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_30);
return L_31;
}
}
// System.Void System.TermInfoDriver::SetCursorPosition(System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TermInfoDriver_SetCursorPosition_mDBD339CD6F48B285AF40411BB572D4565F7118ED (TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653 * __this, int32_t ___left0, int32_t ___top1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TermInfoDriver_SetCursorPosition_mDBD339CD6F48B285AF40411BB572D4565F7118ED_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
bool L_0 = __this->get_inited_25();
if (L_0)
{
goto IL_000e;
}
}
{
TermInfoDriver_Init_mAA7BB4F7D9EDADAC2AE0A864410D4F062FA8E569(__this, /*hidden argument*/NULL);
}
IL_000e:
{
TermInfoDriver_CheckWindowDimensions_mA57D80C0BDCF89FBE6616495887AF3B3F3D3D35B(__this, /*hidden argument*/NULL);
int32_t L_1 = ___left0;
if ((((int32_t)L_1) < ((int32_t)0)))
{
goto IL_0021;
}
}
{
int32_t L_2 = ___left0;
int32_t L_3 = __this->get_bufferWidth_19();
if ((((int32_t)L_2) < ((int32_t)L_3)))
{
goto IL_0031;
}
}
IL_0021:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_4 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_4, _stringLiteral12C0F1FBADC4046B5F2BB9E063B227EF8750D9D6, _stringLiteral4507298CF6128B9A09326DBFCBA2EC4E9985BB1E, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, TermInfoDriver_SetCursorPosition_mDBD339CD6F48B285AF40411BB572D4565F7118ED_RuntimeMethod_var);
}
IL_0031:
{
int32_t L_5 = ___top1;
if ((((int32_t)L_5) < ((int32_t)0)))
{
goto IL_003e;
}
}
{
int32_t L_6 = ___top1;
int32_t L_7 = __this->get_bufferHeight_18();
if ((((int32_t)L_6) < ((int32_t)L_7)))
{
goto IL_004e;
}
}
IL_003e:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_8 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_8, _stringLiteralAF2C7B4CA07AE6C74D261BC745E174DF8AB3FFEF, _stringLiteralDDAEDD97AB3AA9648C164027570374EE027A98F2, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, TermInfoDriver_SetCursorPosition_mDBD339CD6F48B285AF40411BB572D4565F7118ED_RuntimeMethod_var);
}
IL_004e:
{
String_t* L_9 = __this->get_cursorAddress_30();
if (L_9)
{
goto IL_0061;
}
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_10 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_10, _stringLiteralD4705645F35332D972A6E70EF167CD075AD82BCC, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, TermInfoDriver_SetCursorPosition_mDBD339CD6F48B285AF40411BB572D4565F7118ED_RuntimeMethod_var);
}
IL_0061:
{
String_t* L_11 = __this->get_cursorAddress_30();
FormatParamU5BU5D_t2F95A3C5AF726E75A42BC28843BAD579B62199B5* L_12 = (FormatParamU5BU5D_t2F95A3C5AF726E75A42BC28843BAD579B62199B5*)(FormatParamU5BU5D_t2F95A3C5AF726E75A42BC28843BAD579B62199B5*)SZArrayNew(FormatParamU5BU5D_t2F95A3C5AF726E75A42BC28843BAD579B62199B5_il2cpp_TypeInfo_var, (uint32_t)2);
FormatParamU5BU5D_t2F95A3C5AF726E75A42BC28843BAD579B62199B5* L_13 = L_12;
int32_t L_14 = ___top1;
FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800 L_15 = FormatParam_op_Implicit_m3D272BDCB32F2BC451BA599EF1571E6719E97DF0(L_14, /*hidden argument*/NULL);
NullCheck(L_13);
(L_13)->SetAt(static_cast<il2cpp_array_size_t>(0), (FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800 )L_15);
FormatParamU5BU5D_t2F95A3C5AF726E75A42BC28843BAD579B62199B5* L_16 = L_13;
int32_t L_17 = ___left0;
FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800 L_18 = FormatParam_op_Implicit_m3D272BDCB32F2BC451BA599EF1571E6719E97DF0(L_17, /*hidden argument*/NULL);
NullCheck(L_16);
(L_16)->SetAt(static_cast<il2cpp_array_size_t>(1), (FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800 )L_18);
String_t* L_19 = ParameterizedStrings_Evaluate_mF75E575BBEEF102F653314A027E2E9409BE55DAF(L_11, L_16, /*hidden argument*/NULL);
TermInfoDriver_WriteConsole_mA33045BAA05976FE867CAA78B79B63A1E58FAF38(__this, L_19, /*hidden argument*/NULL);
int32_t L_20 = ___left0;
__this->set_cursorLeft_4(L_20);
int32_t L_21 = ___top1;
__this->set_cursorTop_5(L_21);
return;
}
}
// System.Void System.TermInfoDriver::CreateKeyMap()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TermInfoDriver_CreateKeyMap_mC802A816F3EAEA7343B627FA9DCC0A69E54F491A (TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TermInfoDriver_CreateKeyMap_mC802A816F3EAEA7343B627FA9DCC0A69E54F491A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_0 = (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 *)il2cpp_codegen_object_new(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9_il2cpp_TypeInfo_var);
Hashtable__ctor_m72506C0A5B2608721EA285A04F004A229B537A68(L_0, /*hidden argument*/NULL);
__this->set_keymap_36(L_0);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_1 = __this->get_keymap_36();
int32_t L_2 = ((int32_t)((int32_t)55));
RuntimeObject * L_3 = Box(TermInfoStrings_tA50FD6AB2B4EFB66E90CD563942E0A664FD6022F_il2cpp_TypeInfo_var, &L_2);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_4;
memset((&L_4), 0, sizeof(L_4));
ConsoleKeyInfo__ctor_mF5F427F75CCD5D4BCAADCE6AE31F61D70BD95B98((&L_4), 0, 8, (bool)0, (bool)0, (bool)0, /*hidden argument*/NULL);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_5 = L_4;
RuntimeObject * L_6 = Box(ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_il2cpp_TypeInfo_var, &L_5);
NullCheck(L_1);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(21 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_1, L_3, L_6);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_7 = __this->get_keymap_36();
int32_t L_8 = ((int32_t)((int32_t)57));
RuntimeObject * L_9 = Box(TermInfoStrings_tA50FD6AB2B4EFB66E90CD563942E0A664FD6022F_il2cpp_TypeInfo_var, &L_8);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_10;
memset((&L_10), 0, sizeof(L_10));
ConsoleKeyInfo__ctor_mF5F427F75CCD5D4BCAADCE6AE31F61D70BD95B98((&L_10), 0, ((int32_t)12), (bool)0, (bool)0, (bool)0, /*hidden argument*/NULL);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_11 = L_10;
RuntimeObject * L_12 = Box(ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_il2cpp_TypeInfo_var, &L_11);
NullCheck(L_7);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(21 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_7, L_9, L_12);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_13 = __this->get_keymap_36();
int32_t L_14 = ((int32_t)((int32_t)61));
RuntimeObject * L_15 = Box(TermInfoStrings_tA50FD6AB2B4EFB66E90CD563942E0A664FD6022F_il2cpp_TypeInfo_var, &L_14);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_16;
memset((&L_16), 0, sizeof(L_16));
ConsoleKeyInfo__ctor_mF5F427F75CCD5D4BCAADCE6AE31F61D70BD95B98((&L_16), 0, ((int32_t)40), (bool)0, (bool)0, (bool)0, /*hidden argument*/NULL);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_17 = L_16;
RuntimeObject * L_18 = Box(ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_il2cpp_TypeInfo_var, &L_17);
NullCheck(L_13);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(21 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_13, L_15, L_18);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_19 = __this->get_keymap_36();
int32_t L_20 = ((int32_t)((int32_t)66));
RuntimeObject * L_21 = Box(TermInfoStrings_tA50FD6AB2B4EFB66E90CD563942E0A664FD6022F_il2cpp_TypeInfo_var, &L_20);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_22;
memset((&L_22), 0, sizeof(L_22));
ConsoleKeyInfo__ctor_mF5F427F75CCD5D4BCAADCE6AE31F61D70BD95B98((&L_22), 0, ((int32_t)112), (bool)0, (bool)0, (bool)0, /*hidden argument*/NULL);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_23 = L_22;
RuntimeObject * L_24 = Box(ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_il2cpp_TypeInfo_var, &L_23);
NullCheck(L_19);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(21 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_19, L_21, L_24);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_25 = __this->get_keymap_36();
int32_t L_26 = ((int32_t)((int32_t)67));
RuntimeObject * L_27 = Box(TermInfoStrings_tA50FD6AB2B4EFB66E90CD563942E0A664FD6022F_il2cpp_TypeInfo_var, &L_26);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_28;
memset((&L_28), 0, sizeof(L_28));
ConsoleKeyInfo__ctor_mF5F427F75CCD5D4BCAADCE6AE31F61D70BD95B98((&L_28), 0, ((int32_t)121), (bool)0, (bool)0, (bool)0, /*hidden argument*/NULL);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_29 = L_28;
RuntimeObject * L_30 = Box(ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_il2cpp_TypeInfo_var, &L_29);
NullCheck(L_25);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(21 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_25, L_27, L_30);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_31 = __this->get_keymap_36();
int32_t L_32 = ((int32_t)((int32_t)68));
RuntimeObject * L_33 = Box(TermInfoStrings_tA50FD6AB2B4EFB66E90CD563942E0A664FD6022F_il2cpp_TypeInfo_var, &L_32);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_34;
memset((&L_34), 0, sizeof(L_34));
ConsoleKeyInfo__ctor_mF5F427F75CCD5D4BCAADCE6AE31F61D70BD95B98((&L_34), 0, ((int32_t)113), (bool)0, (bool)0, (bool)0, /*hidden argument*/NULL);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_35 = L_34;
RuntimeObject * L_36 = Box(ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_il2cpp_TypeInfo_var, &L_35);
NullCheck(L_31);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(21 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_31, L_33, L_36);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_37 = __this->get_keymap_36();
int32_t L_38 = ((int32_t)((int32_t)69));
RuntimeObject * L_39 = Box(TermInfoStrings_tA50FD6AB2B4EFB66E90CD563942E0A664FD6022F_il2cpp_TypeInfo_var, &L_38);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_40;
memset((&L_40), 0, sizeof(L_40));
ConsoleKeyInfo__ctor_mF5F427F75CCD5D4BCAADCE6AE31F61D70BD95B98((&L_40), 0, ((int32_t)114), (bool)0, (bool)0, (bool)0, /*hidden argument*/NULL);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_41 = L_40;
RuntimeObject * L_42 = Box(ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_il2cpp_TypeInfo_var, &L_41);
NullCheck(L_37);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(21 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_37, L_39, L_42);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_43 = __this->get_keymap_36();
int32_t L_44 = ((int32_t)((int32_t)70));
RuntimeObject * L_45 = Box(TermInfoStrings_tA50FD6AB2B4EFB66E90CD563942E0A664FD6022F_il2cpp_TypeInfo_var, &L_44);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_46;
memset((&L_46), 0, sizeof(L_46));
ConsoleKeyInfo__ctor_mF5F427F75CCD5D4BCAADCE6AE31F61D70BD95B98((&L_46), 0, ((int32_t)115), (bool)0, (bool)0, (bool)0, /*hidden argument*/NULL);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_47 = L_46;
RuntimeObject * L_48 = Box(ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_il2cpp_TypeInfo_var, &L_47);
NullCheck(L_43);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(21 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_43, L_45, L_48);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_49 = __this->get_keymap_36();
int32_t L_50 = ((int32_t)((int32_t)71));
RuntimeObject * L_51 = Box(TermInfoStrings_tA50FD6AB2B4EFB66E90CD563942E0A664FD6022F_il2cpp_TypeInfo_var, &L_50);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_52;
memset((&L_52), 0, sizeof(L_52));
ConsoleKeyInfo__ctor_mF5F427F75CCD5D4BCAADCE6AE31F61D70BD95B98((&L_52), 0, ((int32_t)116), (bool)0, (bool)0, (bool)0, /*hidden argument*/NULL);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_53 = L_52;
RuntimeObject * L_54 = Box(ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_il2cpp_TypeInfo_var, &L_53);
NullCheck(L_49);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(21 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_49, L_51, L_54);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_55 = __this->get_keymap_36();
int32_t L_56 = ((int32_t)((int32_t)72));
RuntimeObject * L_57 = Box(TermInfoStrings_tA50FD6AB2B4EFB66E90CD563942E0A664FD6022F_il2cpp_TypeInfo_var, &L_56);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_58;
memset((&L_58), 0, sizeof(L_58));
ConsoleKeyInfo__ctor_mF5F427F75CCD5D4BCAADCE6AE31F61D70BD95B98((&L_58), 0, ((int32_t)117), (bool)0, (bool)0, (bool)0, /*hidden argument*/NULL);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_59 = L_58;
RuntimeObject * L_60 = Box(ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_il2cpp_TypeInfo_var, &L_59);
NullCheck(L_55);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(21 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_55, L_57, L_60);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_61 = __this->get_keymap_36();
int32_t L_62 = ((int32_t)((int32_t)73));
RuntimeObject * L_63 = Box(TermInfoStrings_tA50FD6AB2B4EFB66E90CD563942E0A664FD6022F_il2cpp_TypeInfo_var, &L_62);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_64;
memset((&L_64), 0, sizeof(L_64));
ConsoleKeyInfo__ctor_mF5F427F75CCD5D4BCAADCE6AE31F61D70BD95B98((&L_64), 0, ((int32_t)118), (bool)0, (bool)0, (bool)0, /*hidden argument*/NULL);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_65 = L_64;
RuntimeObject * L_66 = Box(ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_il2cpp_TypeInfo_var, &L_65);
NullCheck(L_61);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(21 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_61, L_63, L_66);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_67 = __this->get_keymap_36();
int32_t L_68 = ((int32_t)((int32_t)74));
RuntimeObject * L_69 = Box(TermInfoStrings_tA50FD6AB2B4EFB66E90CD563942E0A664FD6022F_il2cpp_TypeInfo_var, &L_68);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_70;
memset((&L_70), 0, sizeof(L_70));
ConsoleKeyInfo__ctor_mF5F427F75CCD5D4BCAADCE6AE31F61D70BD95B98((&L_70), 0, ((int32_t)119), (bool)0, (bool)0, (bool)0, /*hidden argument*/NULL);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_71 = L_70;
RuntimeObject * L_72 = Box(ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_il2cpp_TypeInfo_var, &L_71);
NullCheck(L_67);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(21 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_67, L_69, L_72);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_73 = __this->get_keymap_36();
int32_t L_74 = ((int32_t)((int32_t)75));
RuntimeObject * L_75 = Box(TermInfoStrings_tA50FD6AB2B4EFB66E90CD563942E0A664FD6022F_il2cpp_TypeInfo_var, &L_74);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_76;
memset((&L_76), 0, sizeof(L_76));
ConsoleKeyInfo__ctor_mF5F427F75CCD5D4BCAADCE6AE31F61D70BD95B98((&L_76), 0, ((int32_t)120), (bool)0, (bool)0, (bool)0, /*hidden argument*/NULL);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_77 = L_76;
RuntimeObject * L_78 = Box(ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_il2cpp_TypeInfo_var, &L_77);
NullCheck(L_73);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(21 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_73, L_75, L_78);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_79 = __this->get_keymap_36();
int32_t L_80 = ((int32_t)((int32_t)76));
RuntimeObject * L_81 = Box(TermInfoStrings_tA50FD6AB2B4EFB66E90CD563942E0A664FD6022F_il2cpp_TypeInfo_var, &L_80);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_82;
memset((&L_82), 0, sizeof(L_82));
ConsoleKeyInfo__ctor_mF5F427F75CCD5D4BCAADCE6AE31F61D70BD95B98((&L_82), 0, ((int32_t)36), (bool)0, (bool)0, (bool)0, /*hidden argument*/NULL);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_83 = L_82;
RuntimeObject * L_84 = Box(ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_il2cpp_TypeInfo_var, &L_83);
NullCheck(L_79);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(21 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_79, L_81, L_84);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_85 = __this->get_keymap_36();
int32_t L_86 = ((int32_t)((int32_t)79));
RuntimeObject * L_87 = Box(TermInfoStrings_tA50FD6AB2B4EFB66E90CD563942E0A664FD6022F_il2cpp_TypeInfo_var, &L_86);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_88;
memset((&L_88), 0, sizeof(L_88));
ConsoleKeyInfo__ctor_mF5F427F75CCD5D4BCAADCE6AE31F61D70BD95B98((&L_88), 0, ((int32_t)37), (bool)0, (bool)0, (bool)0, /*hidden argument*/NULL);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_89 = L_88;
RuntimeObject * L_90 = Box(ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_il2cpp_TypeInfo_var, &L_89);
NullCheck(L_85);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(21 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_85, L_87, L_90);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_91 = __this->get_keymap_36();
int32_t L_92 = ((int32_t)((int32_t)80));
RuntimeObject * L_93 = Box(TermInfoStrings_tA50FD6AB2B4EFB66E90CD563942E0A664FD6022F_il2cpp_TypeInfo_var, &L_92);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_94;
memset((&L_94), 0, sizeof(L_94));
ConsoleKeyInfo__ctor_mF5F427F75CCD5D4BCAADCE6AE31F61D70BD95B98((&L_94), 0, ((int32_t)97), (bool)0, (bool)0, (bool)0, /*hidden argument*/NULL);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_95 = L_94;
RuntimeObject * L_96 = Box(ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_il2cpp_TypeInfo_var, &L_95);
NullCheck(L_91);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(21 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_91, L_93, L_96);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_97 = __this->get_keymap_36();
int32_t L_98 = ((int32_t)((int32_t)81));
RuntimeObject * L_99 = Box(TermInfoStrings_tA50FD6AB2B4EFB66E90CD563942E0A664FD6022F_il2cpp_TypeInfo_var, &L_98);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_100;
memset((&L_100), 0, sizeof(L_100));
ConsoleKeyInfo__ctor_mF5F427F75CCD5D4BCAADCE6AE31F61D70BD95B98((&L_100), 0, ((int32_t)34), (bool)0, (bool)0, (bool)0, /*hidden argument*/NULL);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_101 = L_100;
RuntimeObject * L_102 = Box(ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_il2cpp_TypeInfo_var, &L_101);
NullCheck(L_97);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(21 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_97, L_99, L_102);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_103 = __this->get_keymap_36();
int32_t L_104 = ((int32_t)((int32_t)82));
RuntimeObject * L_105 = Box(TermInfoStrings_tA50FD6AB2B4EFB66E90CD563942E0A664FD6022F_il2cpp_TypeInfo_var, &L_104);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_106;
memset((&L_106), 0, sizeof(L_106));
ConsoleKeyInfo__ctor_mF5F427F75CCD5D4BCAADCE6AE31F61D70BD95B98((&L_106), 0, ((int32_t)33), (bool)0, (bool)0, (bool)0, /*hidden argument*/NULL);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_107 = L_106;
RuntimeObject * L_108 = Box(ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_il2cpp_TypeInfo_var, &L_107);
NullCheck(L_103);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(21 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_103, L_105, L_108);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_109 = __this->get_keymap_36();
int32_t L_110 = ((int32_t)((int32_t)83));
RuntimeObject * L_111 = Box(TermInfoStrings_tA50FD6AB2B4EFB66E90CD563942E0A664FD6022F_il2cpp_TypeInfo_var, &L_110);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_112;
memset((&L_112), 0, sizeof(L_112));
ConsoleKeyInfo__ctor_mF5F427F75CCD5D4BCAADCE6AE31F61D70BD95B98((&L_112), 0, ((int32_t)39), (bool)0, (bool)0, (bool)0, /*hidden argument*/NULL);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_113 = L_112;
RuntimeObject * L_114 = Box(ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_il2cpp_TypeInfo_var, &L_113);
NullCheck(L_109);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(21 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_109, L_111, L_114);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_115 = __this->get_keymap_36();
int32_t L_116 = ((int32_t)((int32_t)84));
RuntimeObject * L_117 = Box(TermInfoStrings_tA50FD6AB2B4EFB66E90CD563942E0A664FD6022F_il2cpp_TypeInfo_var, &L_116);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_118;
memset((&L_118), 0, sizeof(L_118));
ConsoleKeyInfo__ctor_mF5F427F75CCD5D4BCAADCE6AE31F61D70BD95B98((&L_118), 0, ((int32_t)34), (bool)0, (bool)0, (bool)0, /*hidden argument*/NULL);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_119 = L_118;
RuntimeObject * L_120 = Box(ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_il2cpp_TypeInfo_var, &L_119);
NullCheck(L_115);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(21 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_115, L_117, L_120);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_121 = __this->get_keymap_36();
int32_t L_122 = ((int32_t)((int32_t)85));
RuntimeObject * L_123 = Box(TermInfoStrings_tA50FD6AB2B4EFB66E90CD563942E0A664FD6022F_il2cpp_TypeInfo_var, &L_122);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_124;
memset((&L_124), 0, sizeof(L_124));
ConsoleKeyInfo__ctor_mF5F427F75CCD5D4BCAADCE6AE31F61D70BD95B98((&L_124), 0, ((int32_t)33), (bool)0, (bool)0, (bool)0, /*hidden argument*/NULL);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_125 = L_124;
RuntimeObject * L_126 = Box(ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_il2cpp_TypeInfo_var, &L_125);
NullCheck(L_121);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(21 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_121, L_123, L_126);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_127 = __this->get_keymap_36();
int32_t L_128 = ((int32_t)((int32_t)87));
RuntimeObject * L_129 = Box(TermInfoStrings_tA50FD6AB2B4EFB66E90CD563942E0A664FD6022F_il2cpp_TypeInfo_var, &L_128);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_130;
memset((&L_130), 0, sizeof(L_130));
ConsoleKeyInfo__ctor_mF5F427F75CCD5D4BCAADCE6AE31F61D70BD95B98((&L_130), 0, ((int32_t)38), (bool)0, (bool)0, (bool)0, /*hidden argument*/NULL);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_131 = L_130;
RuntimeObject * L_132 = Box(ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_il2cpp_TypeInfo_var, &L_131);
NullCheck(L_127);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(21 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_127, L_129, L_132);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_133 = __this->get_keymap_36();
int32_t L_134 = ((int32_t)((int32_t)139));
RuntimeObject * L_135 = Box(TermInfoStrings_tA50FD6AB2B4EFB66E90CD563942E0A664FD6022F_il2cpp_TypeInfo_var, &L_134);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_136;
memset((&L_136), 0, sizeof(L_136));
ConsoleKeyInfo__ctor_mF5F427F75CCD5D4BCAADCE6AE31F61D70BD95B98((&L_136), 0, ((int32_t)103), (bool)0, (bool)0, (bool)0, /*hidden argument*/NULL);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_137 = L_136;
RuntimeObject * L_138 = Box(ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_il2cpp_TypeInfo_var, &L_137);
NullCheck(L_133);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(21 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_133, L_135, L_138);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_139 = __this->get_keymap_36();
int32_t L_140 = ((int32_t)((int32_t)140));
RuntimeObject * L_141 = Box(TermInfoStrings_tA50FD6AB2B4EFB66E90CD563942E0A664FD6022F_il2cpp_TypeInfo_var, &L_140);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_142;
memset((&L_142), 0, sizeof(L_142));
ConsoleKeyInfo__ctor_mF5F427F75CCD5D4BCAADCE6AE31F61D70BD95B98((&L_142), 0, ((int32_t)105), (bool)0, (bool)0, (bool)0, /*hidden argument*/NULL);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_143 = L_142;
RuntimeObject * L_144 = Box(ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_il2cpp_TypeInfo_var, &L_143);
NullCheck(L_139);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(21 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_139, L_141, L_144);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_145 = __this->get_keymap_36();
int32_t L_146 = ((int32_t)((int32_t)141));
RuntimeObject * L_147 = Box(TermInfoStrings_tA50FD6AB2B4EFB66E90CD563942E0A664FD6022F_il2cpp_TypeInfo_var, &L_146);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_148;
memset((&L_148), 0, sizeof(L_148));
ConsoleKeyInfo__ctor_mF5F427F75CCD5D4BCAADCE6AE31F61D70BD95B98((&L_148), 0, ((int32_t)101), (bool)0, (bool)0, (bool)0, /*hidden argument*/NULL);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_149 = L_148;
RuntimeObject * L_150 = Box(ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_il2cpp_TypeInfo_var, &L_149);
NullCheck(L_145);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(21 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_145, L_147, L_150);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_151 = __this->get_keymap_36();
int32_t L_152 = ((int32_t)((int32_t)142));
RuntimeObject * L_153 = Box(TermInfoStrings_tA50FD6AB2B4EFB66E90CD563942E0A664FD6022F_il2cpp_TypeInfo_var, &L_152);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_154;
memset((&L_154), 0, sizeof(L_154));
ConsoleKeyInfo__ctor_mF5F427F75CCD5D4BCAADCE6AE31F61D70BD95B98((&L_154), 0, ((int32_t)97), (bool)0, (bool)0, (bool)0, /*hidden argument*/NULL);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_155 = L_154;
RuntimeObject * L_156 = Box(ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_il2cpp_TypeInfo_var, &L_155);
NullCheck(L_151);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(21 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_151, L_153, L_156);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_157 = __this->get_keymap_36();
int32_t L_158 = ((int32_t)((int32_t)143));
RuntimeObject * L_159 = Box(TermInfoStrings_tA50FD6AB2B4EFB66E90CD563942E0A664FD6022F_il2cpp_TypeInfo_var, &L_158);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_160;
memset((&L_160), 0, sizeof(L_160));
ConsoleKeyInfo__ctor_mF5F427F75CCD5D4BCAADCE6AE31F61D70BD95B98((&L_160), 0, ((int32_t)99), (bool)0, (bool)0, (bool)0, /*hidden argument*/NULL);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_161 = L_160;
RuntimeObject * L_162 = Box(ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_il2cpp_TypeInfo_var, &L_161);
NullCheck(L_157);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(21 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_157, L_159, L_162);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_163 = __this->get_keymap_36();
int32_t L_164 = ((int32_t)((int32_t)148));
RuntimeObject * L_165 = Box(TermInfoStrings_tA50FD6AB2B4EFB66E90CD563942E0A664FD6022F_il2cpp_TypeInfo_var, &L_164);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_166;
memset((&L_166), 0, sizeof(L_166));
ConsoleKeyInfo__ctor_mF5F427F75CCD5D4BCAADCE6AE31F61D70BD95B98((&L_166), 0, ((int32_t)9), (bool)1, (bool)0, (bool)0, /*hidden argument*/NULL);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_167 = L_166;
RuntimeObject * L_168 = Box(ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_il2cpp_TypeInfo_var, &L_167);
NullCheck(L_163);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(21 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_163, L_165, L_168);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_169 = __this->get_keymap_36();
int32_t L_170 = ((int32_t)((int32_t)158));
RuntimeObject * L_171 = Box(TermInfoStrings_tA50FD6AB2B4EFB66E90CD563942E0A664FD6022F_il2cpp_TypeInfo_var, &L_170);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_172;
memset((&L_172), 0, sizeof(L_172));
ConsoleKeyInfo__ctor_mF5F427F75CCD5D4BCAADCE6AE31F61D70BD95B98((&L_172), 0, ((int32_t)36), (bool)0, (bool)0, (bool)0, /*hidden argument*/NULL);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_173 = L_172;
RuntimeObject * L_174 = Box(ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_il2cpp_TypeInfo_var, &L_173);
NullCheck(L_169);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(21 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_169, L_171, L_174);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_175 = __this->get_keymap_36();
int32_t L_176 = ((int32_t)((int32_t)162));
RuntimeObject * L_177 = Box(TermInfoStrings_tA50FD6AB2B4EFB66E90CD563942E0A664FD6022F_il2cpp_TypeInfo_var, &L_176);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_178;
memset((&L_178), 0, sizeof(L_178));
ConsoleKeyInfo__ctor_mF5F427F75CCD5D4BCAADCE6AE31F61D70BD95B98((&L_178), ((int32_t)67), ((int32_t)67), (bool)0, (bool)1, (bool)0, /*hidden argument*/NULL);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_179 = L_178;
RuntimeObject * L_180 = Box(ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_il2cpp_TypeInfo_var, &L_179);
NullCheck(L_175);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(21 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_175, L_177, L_180);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_181 = __this->get_keymap_36();
int32_t L_182 = ((int32_t)((int32_t)164));
RuntimeObject * L_183 = Box(TermInfoStrings_tA50FD6AB2B4EFB66E90CD563942E0A664FD6022F_il2cpp_TypeInfo_var, &L_182);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_184;
memset((&L_184), 0, sizeof(L_184));
ConsoleKeyInfo__ctor_mF5F427F75CCD5D4BCAADCE6AE31F61D70BD95B98((&L_184), 0, ((int32_t)35), (bool)0, (bool)0, (bool)0, /*hidden argument*/NULL);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_185 = L_184;
RuntimeObject * L_186 = Box(ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_il2cpp_TypeInfo_var, &L_185);
NullCheck(L_181);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(21 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_181, L_183, L_186);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_187 = __this->get_keymap_36();
int32_t L_188 = ((int32_t)((int32_t)165));
RuntimeObject * L_189 = Box(TermInfoStrings_tA50FD6AB2B4EFB66E90CD563942E0A664FD6022F_il2cpp_TypeInfo_var, &L_188);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_190;
memset((&L_190), 0, sizeof(L_190));
ConsoleKeyInfo__ctor_mF5F427F75CCD5D4BCAADCE6AE31F61D70BD95B98((&L_190), ((int32_t)10), ((int32_t)13), (bool)0, (bool)0, (bool)0, /*hidden argument*/NULL);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_191 = L_190;
RuntimeObject * L_192 = Box(ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_il2cpp_TypeInfo_var, &L_191);
NullCheck(L_187);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(21 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_187, L_189, L_192);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_193 = __this->get_keymap_36();
int32_t L_194 = ((int32_t)((int32_t)168));
RuntimeObject * L_195 = Box(TermInfoStrings_tA50FD6AB2B4EFB66E90CD563942E0A664FD6022F_il2cpp_TypeInfo_var, &L_194);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_196;
memset((&L_196), 0, sizeof(L_196));
ConsoleKeyInfo__ctor_mF5F427F75CCD5D4BCAADCE6AE31F61D70BD95B98((&L_196), 0, ((int32_t)47), (bool)0, (bool)0, (bool)0, /*hidden argument*/NULL);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_197 = L_196;
RuntimeObject * L_198 = Box(ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_il2cpp_TypeInfo_var, &L_197);
NullCheck(L_193);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(21 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_193, L_195, L_198);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_199 = __this->get_keymap_36();
int32_t L_200 = ((int32_t)((int32_t)176));
RuntimeObject * L_201 = Box(TermInfoStrings_tA50FD6AB2B4EFB66E90CD563942E0A664FD6022F_il2cpp_TypeInfo_var, &L_200);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_202;
memset((&L_202), 0, sizeof(L_202));
ConsoleKeyInfo__ctor_mF5F427F75CCD5D4BCAADCE6AE31F61D70BD95B98((&L_202), 0, ((int32_t)42), (bool)0, (bool)0, (bool)0, /*hidden argument*/NULL);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_203 = L_202;
RuntimeObject * L_204 = Box(ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_il2cpp_TypeInfo_var, &L_203);
NullCheck(L_199);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(21 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_199, L_201, L_204);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_205 = __this->get_keymap_36();
int32_t L_206 = ((int32_t)((int32_t)185));
RuntimeObject * L_207 = Box(TermInfoStrings_tA50FD6AB2B4EFB66E90CD563942E0A664FD6022F_il2cpp_TypeInfo_var, &L_206);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_208;
memset((&L_208), 0, sizeof(L_208));
ConsoleKeyInfo__ctor_mF5F427F75CCD5D4BCAADCE6AE31F61D70BD95B98((&L_208), ((int32_t)90), ((int32_t)90), (bool)0, (bool)1, (bool)0, /*hidden argument*/NULL);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_209 = L_208;
RuntimeObject * L_210 = Box(ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_il2cpp_TypeInfo_var, &L_209);
NullCheck(L_205);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(21 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_205, L_207, L_210);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_211 = __this->get_keymap_36();
int32_t L_212 = ((int32_t)((int32_t)186));
RuntimeObject * L_213 = Box(TermInfoStrings_tA50FD6AB2B4EFB66E90CD563942E0A664FD6022F_il2cpp_TypeInfo_var, &L_212);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_214;
memset((&L_214), 0, sizeof(L_214));
ConsoleKeyInfo__ctor_mF5F427F75CCD5D4BCAADCE6AE31F61D70BD95B98((&L_214), 0, ((int32_t)36), (bool)1, (bool)0, (bool)0, /*hidden argument*/NULL);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_215 = L_214;
RuntimeObject * L_216 = Box(ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_il2cpp_TypeInfo_var, &L_215);
NullCheck(L_211);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(21 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_211, L_213, L_216);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_217 = __this->get_keymap_36();
int32_t L_218 = ((int32_t)((int32_t)189));
RuntimeObject * L_219 = Box(TermInfoStrings_tA50FD6AB2B4EFB66E90CD563942E0A664FD6022F_il2cpp_TypeInfo_var, &L_218);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_220;
memset((&L_220), 0, sizeof(L_220));
ConsoleKeyInfo__ctor_mF5F427F75CCD5D4BCAADCE6AE31F61D70BD95B98((&L_220), ((int32_t)67), ((int32_t)67), (bool)1, (bool)1, (bool)0, /*hidden argument*/NULL);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_221 = L_220;
RuntimeObject * L_222 = Box(ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_il2cpp_TypeInfo_var, &L_221);
NullCheck(L_217);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(21 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_217, L_219, L_222);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_223 = __this->get_keymap_36();
int32_t L_224 = ((int32_t)((int32_t)191));
RuntimeObject * L_225 = Box(TermInfoStrings_tA50FD6AB2B4EFB66E90CD563942E0A664FD6022F_il2cpp_TypeInfo_var, &L_224);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_226;
memset((&L_226), 0, sizeof(L_226));
ConsoleKeyInfo__ctor_mF5F427F75CCD5D4BCAADCE6AE31F61D70BD95B98((&L_226), ((int32_t)9), ((int32_t)46), (bool)1, (bool)0, (bool)0, /*hidden argument*/NULL);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_227 = L_226;
RuntimeObject * L_228 = Box(ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_il2cpp_TypeInfo_var, &L_227);
NullCheck(L_223);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(21 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_223, L_225, L_228);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_229 = __this->get_keymap_36();
int32_t L_230 = ((int32_t)((int32_t)198));
RuntimeObject * L_231 = Box(TermInfoStrings_tA50FD6AB2B4EFB66E90CD563942E0A664FD6022F_il2cpp_TypeInfo_var, &L_230);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_232;
memset((&L_232), 0, sizeof(L_232));
ConsoleKeyInfo__ctor_mF5F427F75CCD5D4BCAADCE6AE31F61D70BD95B98((&L_232), 0, ((int32_t)47), (bool)1, (bool)0, (bool)0, /*hidden argument*/NULL);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_233 = L_232;
RuntimeObject * L_234 = Box(ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_il2cpp_TypeInfo_var, &L_233);
NullCheck(L_229);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(21 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_229, L_231, L_234);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_235 = __this->get_keymap_36();
int32_t L_236 = ((int32_t)((int32_t)199));
RuntimeObject * L_237 = Box(TermInfoStrings_tA50FD6AB2B4EFB66E90CD563942E0A664FD6022F_il2cpp_TypeInfo_var, &L_236);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_238;
memset((&L_238), 0, sizeof(L_238));
ConsoleKeyInfo__ctor_mF5F427F75CCD5D4BCAADCE6AE31F61D70BD95B98((&L_238), 0, ((int32_t)36), (bool)1, (bool)0, (bool)0, /*hidden argument*/NULL);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_239 = L_238;
RuntimeObject * L_240 = Box(ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_il2cpp_TypeInfo_var, &L_239);
NullCheck(L_235);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(21 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_235, L_237, L_240);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_241 = __this->get_keymap_36();
int32_t L_242 = ((int32_t)((int32_t)201));
RuntimeObject * L_243 = Box(TermInfoStrings_tA50FD6AB2B4EFB66E90CD563942E0A664FD6022F_il2cpp_TypeInfo_var, &L_242);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_244;
memset((&L_244), 0, sizeof(L_244));
ConsoleKeyInfo__ctor_mF5F427F75CCD5D4BCAADCE6AE31F61D70BD95B98((&L_244), 0, ((int32_t)37), (bool)1, (bool)0, (bool)0, /*hidden argument*/NULL);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_245 = L_244;
RuntimeObject * L_246 = Box(ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_il2cpp_TypeInfo_var, &L_245);
NullCheck(L_241);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(21 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_241, L_243, L_246);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_247 = __this->get_keymap_36();
int32_t L_248 = ((int32_t)((int32_t)207));
RuntimeObject * L_249 = Box(TermInfoStrings_tA50FD6AB2B4EFB66E90CD563942E0A664FD6022F_il2cpp_TypeInfo_var, &L_248);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_250;
memset((&L_250), 0, sizeof(L_250));
ConsoleKeyInfo__ctor_mF5F427F75CCD5D4BCAADCE6AE31F61D70BD95B98((&L_250), 0, ((int32_t)42), (bool)1, (bool)0, (bool)0, /*hidden argument*/NULL);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_251 = L_250;
RuntimeObject * L_252 = Box(ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_il2cpp_TypeInfo_var, &L_251);
NullCheck(L_247);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(21 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_247, L_249, L_252);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_253 = __this->get_keymap_36();
int32_t L_254 = ((int32_t)((int32_t)210));
RuntimeObject * L_255 = Box(TermInfoStrings_tA50FD6AB2B4EFB66E90CD563942E0A664FD6022F_il2cpp_TypeInfo_var, &L_254);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_256;
memset((&L_256), 0, sizeof(L_256));
ConsoleKeyInfo__ctor_mF5F427F75CCD5D4BCAADCE6AE31F61D70BD95B98((&L_256), 0, ((int32_t)39), (bool)1, (bool)0, (bool)0, /*hidden argument*/NULL);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_257 = L_256;
RuntimeObject * L_258 = Box(ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_il2cpp_TypeInfo_var, &L_257);
NullCheck(L_253);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(21 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_253, L_255, L_258);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_259 = __this->get_keymap_36();
int32_t L_260 = ((int32_t)((int32_t)214));
RuntimeObject * L_261 = Box(TermInfoStrings_tA50FD6AB2B4EFB66E90CD563942E0A664FD6022F_il2cpp_TypeInfo_var, &L_260);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_262;
memset((&L_262), 0, sizeof(L_262));
ConsoleKeyInfo__ctor_mF5F427F75CCD5D4BCAADCE6AE31F61D70BD95B98((&L_262), ((int32_t)90), ((int32_t)90), (bool)1, (bool)0, (bool)0, /*hidden argument*/NULL);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_263 = L_262;
RuntimeObject * L_264 = Box(ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_il2cpp_TypeInfo_var, &L_263);
NullCheck(L_259);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(21 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_259, L_261, L_264);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_265 = __this->get_keymap_36();
int32_t L_266 = ((int32_t)((int32_t)216));
RuntimeObject * L_267 = Box(TermInfoStrings_tA50FD6AB2B4EFB66E90CD563942E0A664FD6022F_il2cpp_TypeInfo_var, &L_266);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_268;
memset((&L_268), 0, sizeof(L_268));
ConsoleKeyInfo__ctor_mF5F427F75CCD5D4BCAADCE6AE31F61D70BD95B98((&L_268), 0, ((int32_t)122), (bool)0, (bool)0, (bool)0, /*hidden argument*/NULL);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_269 = L_268;
RuntimeObject * L_270 = Box(ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_il2cpp_TypeInfo_var, &L_269);
NullCheck(L_265);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(21 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_265, L_267, L_270);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_271 = __this->get_keymap_36();
int32_t L_272 = ((int32_t)((int32_t)217));
RuntimeObject * L_273 = Box(TermInfoStrings_tA50FD6AB2B4EFB66E90CD563942E0A664FD6022F_il2cpp_TypeInfo_var, &L_272);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_274;
memset((&L_274), 0, sizeof(L_274));
ConsoleKeyInfo__ctor_mF5F427F75CCD5D4BCAADCE6AE31F61D70BD95B98((&L_274), 0, ((int32_t)123), (bool)0, (bool)0, (bool)0, /*hidden argument*/NULL);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_275 = L_274;
RuntimeObject * L_276 = Box(ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_il2cpp_TypeInfo_var, &L_275);
NullCheck(L_271);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(21 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_271, L_273, L_276);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_277 = __this->get_keymap_36();
int32_t L_278 = ((int32_t)((int32_t)218));
RuntimeObject * L_279 = Box(TermInfoStrings_tA50FD6AB2B4EFB66E90CD563942E0A664FD6022F_il2cpp_TypeInfo_var, &L_278);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_280;
memset((&L_280), 0, sizeof(L_280));
ConsoleKeyInfo__ctor_mF5F427F75CCD5D4BCAADCE6AE31F61D70BD95B98((&L_280), 0, ((int32_t)124), (bool)0, (bool)0, (bool)0, /*hidden argument*/NULL);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_281 = L_280;
RuntimeObject * L_282 = Box(ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_il2cpp_TypeInfo_var, &L_281);
NullCheck(L_277);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(21 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_277, L_279, L_282);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_283 = __this->get_keymap_36();
int32_t L_284 = ((int32_t)((int32_t)219));
RuntimeObject * L_285 = Box(TermInfoStrings_tA50FD6AB2B4EFB66E90CD563942E0A664FD6022F_il2cpp_TypeInfo_var, &L_284);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_286;
memset((&L_286), 0, sizeof(L_286));
ConsoleKeyInfo__ctor_mF5F427F75CCD5D4BCAADCE6AE31F61D70BD95B98((&L_286), 0, ((int32_t)125), (bool)0, (bool)0, (bool)0, /*hidden argument*/NULL);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_287 = L_286;
RuntimeObject * L_288 = Box(ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_il2cpp_TypeInfo_var, &L_287);
NullCheck(L_283);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(21 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_283, L_285, L_288);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_289 = __this->get_keymap_36();
int32_t L_290 = ((int32_t)((int32_t)220));
RuntimeObject * L_291 = Box(TermInfoStrings_tA50FD6AB2B4EFB66E90CD563942E0A664FD6022F_il2cpp_TypeInfo_var, &L_290);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_292;
memset((&L_292), 0, sizeof(L_292));
ConsoleKeyInfo__ctor_mF5F427F75CCD5D4BCAADCE6AE31F61D70BD95B98((&L_292), 0, ((int32_t)126), (bool)0, (bool)0, (bool)0, /*hidden argument*/NULL);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_293 = L_292;
RuntimeObject * L_294 = Box(ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_il2cpp_TypeInfo_var, &L_293);
NullCheck(L_289);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(21 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_289, L_291, L_294);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_295 = __this->get_keymap_36();
int32_t L_296 = ((int32_t)((int32_t)221));
RuntimeObject * L_297 = Box(TermInfoStrings_tA50FD6AB2B4EFB66E90CD563942E0A664FD6022F_il2cpp_TypeInfo_var, &L_296);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_298;
memset((&L_298), 0, sizeof(L_298));
ConsoleKeyInfo__ctor_mF5F427F75CCD5D4BCAADCE6AE31F61D70BD95B98((&L_298), 0, ((int32_t)127), (bool)0, (bool)0, (bool)0, /*hidden argument*/NULL);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_299 = L_298;
RuntimeObject * L_300 = Box(ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_il2cpp_TypeInfo_var, &L_299);
NullCheck(L_295);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(21 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_295, L_297, L_300);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_301 = __this->get_keymap_36();
int32_t L_302 = ((int32_t)((int32_t)222));
RuntimeObject * L_303 = Box(TermInfoStrings_tA50FD6AB2B4EFB66E90CD563942E0A664FD6022F_il2cpp_TypeInfo_var, &L_302);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_304;
memset((&L_304), 0, sizeof(L_304));
ConsoleKeyInfo__ctor_mF5F427F75CCD5D4BCAADCE6AE31F61D70BD95B98((&L_304), 0, ((int32_t)128), (bool)0, (bool)0, (bool)0, /*hidden argument*/NULL);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_305 = L_304;
RuntimeObject * L_306 = Box(ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_il2cpp_TypeInfo_var, &L_305);
NullCheck(L_301);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(21 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_301, L_303, L_306);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_307 = __this->get_keymap_36();
int32_t L_308 = ((int32_t)((int32_t)223));
RuntimeObject * L_309 = Box(TermInfoStrings_tA50FD6AB2B4EFB66E90CD563942E0A664FD6022F_il2cpp_TypeInfo_var, &L_308);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_310;
memset((&L_310), 0, sizeof(L_310));
ConsoleKeyInfo__ctor_mF5F427F75CCD5D4BCAADCE6AE31F61D70BD95B98((&L_310), 0, ((int32_t)129), (bool)0, (bool)0, (bool)0, /*hidden argument*/NULL);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_311 = L_310;
RuntimeObject * L_312 = Box(ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_il2cpp_TypeInfo_var, &L_311);
NullCheck(L_307);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(21 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_307, L_309, L_312);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_313 = __this->get_keymap_36();
int32_t L_314 = ((int32_t)((int32_t)224));
RuntimeObject * L_315 = Box(TermInfoStrings_tA50FD6AB2B4EFB66E90CD563942E0A664FD6022F_il2cpp_TypeInfo_var, &L_314);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_316;
memset((&L_316), 0, sizeof(L_316));
ConsoleKeyInfo__ctor_mF5F427F75CCD5D4BCAADCE6AE31F61D70BD95B98((&L_316), 0, ((int32_t)130), (bool)0, (bool)0, (bool)0, /*hidden argument*/NULL);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_317 = L_316;
RuntimeObject * L_318 = Box(ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_il2cpp_TypeInfo_var, &L_317);
NullCheck(L_313);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(21 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_313, L_315, L_318);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_319 = __this->get_keymap_36();
int32_t L_320 = ((int32_t)((int32_t)225));
RuntimeObject * L_321 = Box(TermInfoStrings_tA50FD6AB2B4EFB66E90CD563942E0A664FD6022F_il2cpp_TypeInfo_var, &L_320);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_322;
memset((&L_322), 0, sizeof(L_322));
ConsoleKeyInfo__ctor_mF5F427F75CCD5D4BCAADCE6AE31F61D70BD95B98((&L_322), 0, ((int32_t)131), (bool)0, (bool)0, (bool)0, /*hidden argument*/NULL);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_323 = L_322;
RuntimeObject * L_324 = Box(ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_il2cpp_TypeInfo_var, &L_323);
NullCheck(L_319);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(21 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_319, L_321, L_324);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_325 = __this->get_keymap_36();
int32_t L_326 = ((int32_t)((int32_t)226));
RuntimeObject * L_327 = Box(TermInfoStrings_tA50FD6AB2B4EFB66E90CD563942E0A664FD6022F_il2cpp_TypeInfo_var, &L_326);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_328;
memset((&L_328), 0, sizeof(L_328));
ConsoleKeyInfo__ctor_mF5F427F75CCD5D4BCAADCE6AE31F61D70BD95B98((&L_328), 0, ((int32_t)132), (bool)0, (bool)0, (bool)0, /*hidden argument*/NULL);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_329 = L_328;
RuntimeObject * L_330 = Box(ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_il2cpp_TypeInfo_var, &L_329);
NullCheck(L_325);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(21 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_325, L_327, L_330);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_331 = __this->get_keymap_36();
int32_t L_332 = ((int32_t)((int32_t)227));
RuntimeObject * L_333 = Box(TermInfoStrings_tA50FD6AB2B4EFB66E90CD563942E0A664FD6022F_il2cpp_TypeInfo_var, &L_332);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_334;
memset((&L_334), 0, sizeof(L_334));
ConsoleKeyInfo__ctor_mF5F427F75CCD5D4BCAADCE6AE31F61D70BD95B98((&L_334), 0, ((int32_t)133), (bool)0, (bool)0, (bool)0, /*hidden argument*/NULL);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_335 = L_334;
RuntimeObject * L_336 = Box(ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_il2cpp_TypeInfo_var, &L_335);
NullCheck(L_331);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(21 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_331, L_333, L_336);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_337 = __this->get_keymap_36();
int32_t L_338 = ((int32_t)((int32_t)228));
RuntimeObject * L_339 = Box(TermInfoStrings_tA50FD6AB2B4EFB66E90CD563942E0A664FD6022F_il2cpp_TypeInfo_var, &L_338);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_340;
memset((&L_340), 0, sizeof(L_340));
ConsoleKeyInfo__ctor_mF5F427F75CCD5D4BCAADCE6AE31F61D70BD95B98((&L_340), 0, ((int32_t)134), (bool)0, (bool)0, (bool)0, /*hidden argument*/NULL);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_341 = L_340;
RuntimeObject * L_342 = Box(ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_il2cpp_TypeInfo_var, &L_341);
NullCheck(L_337);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(21 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_337, L_339, L_342);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_343 = __this->get_keymap_36();
int32_t L_344 = ((int32_t)((int32_t)229));
RuntimeObject * L_345 = Box(TermInfoStrings_tA50FD6AB2B4EFB66E90CD563942E0A664FD6022F_il2cpp_TypeInfo_var, &L_344);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_346;
memset((&L_346), 0, sizeof(L_346));
ConsoleKeyInfo__ctor_mF5F427F75CCD5D4BCAADCE6AE31F61D70BD95B98((&L_346), 0, ((int32_t)135), (bool)0, (bool)0, (bool)0, /*hidden argument*/NULL);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_347 = L_346;
RuntimeObject * L_348 = Box(ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_il2cpp_TypeInfo_var, &L_347);
NullCheck(L_343);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(21 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_343, L_345, L_348);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_349 = __this->get_keymap_36();
int32_t L_350 = ((int32_t)((int32_t)59));
RuntimeObject * L_351 = Box(TermInfoStrings_tA50FD6AB2B4EFB66E90CD563942E0A664FD6022F_il2cpp_TypeInfo_var, &L_350);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_352;
memset((&L_352), 0, sizeof(L_352));
ConsoleKeyInfo__ctor_mF5F427F75CCD5D4BCAADCE6AE31F61D70BD95B98((&L_352), 0, ((int32_t)46), (bool)0, (bool)0, (bool)0, /*hidden argument*/NULL);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_353 = L_352;
RuntimeObject * L_354 = Box(ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_il2cpp_TypeInfo_var, &L_353);
NullCheck(L_349);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(21 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_349, L_351, L_354);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_355 = __this->get_keymap_36();
int32_t L_356 = ((int32_t)((int32_t)77));
RuntimeObject * L_357 = Box(TermInfoStrings_tA50FD6AB2B4EFB66E90CD563942E0A664FD6022F_il2cpp_TypeInfo_var, &L_356);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_358;
memset((&L_358), 0, sizeof(L_358));
ConsoleKeyInfo__ctor_mF5F427F75CCD5D4BCAADCE6AE31F61D70BD95B98((&L_358), 0, ((int32_t)45), (bool)0, (bool)0, (bool)0, /*hidden argument*/NULL);
ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 L_359 = L_358;
RuntimeObject * L_360 = Box(ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768_il2cpp_TypeInfo_var, &L_359);
NullCheck(L_355);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(21 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_355, L_357, L_360);
return;
}
}
// System.Void System.TermInfoDriver::InitKeys()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TermInfoDriver_InitKeys_m3C4D9CA6DE9CEA5F50BDBCB72BF7975F4F1758CB (TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TermInfoDriver_InitKeys_m3C4D9CA6DE9CEA5F50BDBCB72BF7975F4F1758CB_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
TermInfoStringsU5BU5D_t734604FFAFCF8B18CFD63C5901E11EA6C13F23F2* V_0 = NULL;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
bool L_0 = __this->get_initKeys_27();
if (!L_0)
{
goto IL_0009;
}
}
{
return;
}
IL_0009:
{
TermInfoDriver_CreateKeyMap_mC802A816F3EAEA7343B627FA9DCC0A69E54F491A(__this, /*hidden argument*/NULL);
ByteMatcher_tB199BDD35E2575B84D9FDED34954705653D241DC * L_1 = (ByteMatcher_tB199BDD35E2575B84D9FDED34954705653D241DC *)il2cpp_codegen_object_new(ByteMatcher_tB199BDD35E2575B84D9FDED34954705653D241DC_il2cpp_TypeInfo_var);
ByteMatcher__ctor_m5F4DEDA840BDF53D47E1A9C3267442295F928144(L_1, /*hidden argument*/NULL);
__this->set_rootmap_37(L_1);
TermInfoStringsU5BU5D_t734604FFAFCF8B18CFD63C5901E11EA6C13F23F2* L_2 = (TermInfoStringsU5BU5D_t734604FFAFCF8B18CFD63C5901E11EA6C13F23F2*)(TermInfoStringsU5BU5D_t734604FFAFCF8B18CFD63C5901E11EA6C13F23F2*)SZArrayNew(TermInfoStringsU5BU5D_t734604FFAFCF8B18CFD63C5901E11EA6C13F23F2_il2cpp_TypeInfo_var, (uint32_t)((int32_t)60));
TermInfoStringsU5BU5D_t734604FFAFCF8B18CFD63C5901E11EA6C13F23F2* L_3 = L_2;
RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF L_4 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____121EC59E23F7559B28D338D562528F6299C2DE22_2_FieldInfo_var) };
RuntimeHelpers_InitializeArray_m29F50CDFEEE0AB868200291366253DD4737BC76A((RuntimeArray *)(RuntimeArray *)L_3, L_4, /*hidden argument*/NULL);
V_0 = L_3;
V_1 = 0;
goto IL_0040;
}
IL_0031:
{
TermInfoStringsU5BU5D_t734604FFAFCF8B18CFD63C5901E11EA6C13F23F2* L_5 = V_0;
int32_t L_6 = V_1;
NullCheck(L_5);
int32_t L_7 = L_6;
int32_t L_8 = (int32_t)(L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7));
V_2 = L_8;
int32_t L_9 = V_2;
TermInfoDriver_AddStringMapping_mE7AD22D560E11207EF8025643765C2859CB54BD5(__this, L_9, /*hidden argument*/NULL);
int32_t L_10 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1));
}
IL_0040:
{
int32_t L_11 = V_1;
TermInfoStringsU5BU5D_t734604FFAFCF8B18CFD63C5901E11EA6C13F23F2* L_12 = V_0;
NullCheck(L_12);
if ((((int32_t)L_11) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_12)->max_length)))))))
{
goto IL_0031;
}
}
{
ByteMatcher_tB199BDD35E2575B84D9FDED34954705653D241DC * L_13 = __this->get_rootmap_37();
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_14 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)1);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_15 = L_14;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_16 = __this->get_control_characters_40();
NullCheck(L_16);
int32_t L_17 = 2;
uint8_t L_18 = (L_16)->GetAt(static_cast<il2cpp_array_size_t>(L_17));
NullCheck(L_15);
(L_15)->SetAt(static_cast<il2cpp_array_size_t>(0), (uint8_t)L_18);
NullCheck(L_13);
ByteMatcher_AddMapping_m6F17EE5B94E56935034142A2847A83F5E099B708(L_13, ((int32_t)55), L_15, /*hidden argument*/NULL);
ByteMatcher_tB199BDD35E2575B84D9FDED34954705653D241DC * L_19 = __this->get_rootmap_37();
NullCheck(L_19);
ByteMatcher_Sort_mCA31E5D0C950F75E86DC00A106D3BB6219D29C4F(L_19, /*hidden argument*/NULL);
__this->set_initKeys_27((bool)1);
return;
}
}
// System.Void System.TermInfoDriver::AddStringMapping(System.TermInfoStrings)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TermInfoDriver_AddStringMapping_mE7AD22D560E11207EF8025643765C2859CB54BD5 (TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653 * __this, int32_t ___s0, const RuntimeMethod* method)
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_0 = NULL;
{
TermInfoReader_tCAABF3484E6F0AA298F809766C52CA9DC4E6C55C * L_0 = __this->get_reader_3();
int32_t L_1 = ___s0;
NullCheck(L_0);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = TermInfoReader_GetStringBytes_mD2FD6A1D2FC6D7F3C3DC6EC8254A13A4C1114B06(L_0, L_1, /*hidden argument*/NULL);
V_0 = L_2;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_3 = V_0;
if (L_3)
{
goto IL_0011;
}
}
{
return;
}
IL_0011:
{
ByteMatcher_tB199BDD35E2575B84D9FDED34954705653D241DC * L_4 = __this->get_rootmap_37();
int32_t L_5 = ___s0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_6 = V_0;
NullCheck(L_4);
ByteMatcher_AddMapping_m6F17EE5B94E56935034142A2847A83F5E099B708(L_4, L_5, L_6, /*hidden argument*/NULL);
return;
}
}
// System.Void System.TermInfoDriver::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TermInfoDriver__cctor_mF220800F6331B2ACF39830BF3DFF392B3E774D5B (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TermInfoDriver__cctor_mF220800F6331B2ACF39830BF3DFF392B3E774D5B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_0 = (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)SZArrayNew(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var, (uint32_t)4);
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_1 = L_0;
NullCheck(L_1);
ArrayElementTypeCheck (L_1, _stringLiteral757F441946A7036BA1BAA4B622FCDD632D09B0E5);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral757F441946A7036BA1BAA4B622FCDD632D09B0E5);
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_2 = L_1;
NullCheck(L_2);
ArrayElementTypeCheck (L_2, _stringLiteralB45CC055589AB275C804327AFE30E301E7882B22);
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)_stringLiteralB45CC055589AB275C804327AFE30E301E7882B22);
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_3 = L_2;
NullCheck(L_3);
ArrayElementTypeCheck (L_3, _stringLiteralB0F0917F282BE2B990029398FE6CFE349F5CB5BC);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)_stringLiteralB0F0917F282BE2B990029398FE6CFE349F5CB5BC);
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_4 = L_3;
NullCheck(L_4);
ArrayElementTypeCheck (L_4, _stringLiteral9426F59FD8300D3D352341F3919A203E22AB9915);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)_stringLiteral9426F59FD8300D3D352341F3919A203E22AB9915);
((TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653_StaticFields*)il2cpp_codegen_static_fields_for(TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653_il2cpp_TypeInfo_var))->set_locations_2(L_4);
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_5 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)SZArrayNew(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83_il2cpp_TypeInfo_var, (uint32_t)((int32_t)16));
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_6 = L_5;
RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF L_7 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____EBF68F411848D603D059DFDEA2321C5A5EA78044_92_FieldInfo_var) };
RuntimeHelpers_InitializeArray_m29F50CDFEEE0AB868200291366253DD4737BC76A((RuntimeArray *)(RuntimeArray *)L_6, L_7, /*hidden argument*/NULL);
((TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653_StaticFields*)il2cpp_codegen_static_fields_for(TermInfoDriver_t9D1F8B74E923C24C63FBE861B6DDCE7CF05A3653_il2cpp_TypeInfo_var))->set__consoleColorToAnsiCode_41(L_6);
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.TermInfoReader::.ctor(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TermInfoReader__ctor_mDC681850346716B16DF3EC44DCF1DA6F2A754B7D (TermInfoReader_tCAABF3484E6F0AA298F809766C52CA9DC4E6C55C * __this, String_t* ___term0, String_t* ___filename1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TermInfoReader__ctor_mDC681850346716B16DF3EC44DCF1DA6F2A754B7D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418 * V_0 = NULL;
int64_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) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
String_t* L_0 = ___filename1;
FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418 * L_1 = File_OpenRead_m3B2974AB5AA8011E587AC834BE71862BF77C2129(L_0, /*hidden argument*/NULL);
V_0 = L_1;
}
IL_000d:
try
{ // begin try (depth: 1)
{
FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418 * L_2 = V_0;
NullCheck(L_2);
int64_t L_3 = VirtFuncInvoker0< int64_t >::Invoke(10 /* System.Int64 System.IO.Stream::get_Length() */, L_2);
V_1 = L_3;
int64_t L_4 = V_1;
if ((((int64_t)L_4) <= ((int64_t)(((int64_t)((int64_t)((int32_t)4096)))))))
{
goto IL_0028;
}
}
IL_001d:
{
Exception_t * L_5 = (Exception_t *)il2cpp_codegen_object_new(Exception_t_il2cpp_TypeInfo_var);
Exception__ctor_m89BADFF36C3B170013878726E07729D51AA9FBE0(L_5, _stringLiteral3F1A0D1D0F6B2DF6299555699EA20A335495FD6A, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, TermInfoReader__ctor_mDC681850346716B16DF3EC44DCF1DA6F2A754B7D_RuntimeMethod_var);
}
IL_0028:
{
int64_t L_6 = V_1;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_7 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)(((int32_t)((int32_t)L_6))));
__this->set_buffer_3(L_7);
FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418 * L_8 = V_0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_9 = __this->get_buffer_3();
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_10 = __this->get_buffer_3();
NullCheck(L_10);
NullCheck(L_8);
int32_t L_11 = VirtFuncInvoker3< int32_t, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t >::Invoke(21 /* System.Int32 System.IO.Stream::Read(System.Byte[],System.Int32,System.Int32) */, L_8, L_9, 0, (((int32_t)((int32_t)(((RuntimeArray*)L_10)->max_length)))));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_12 = __this->get_buffer_3();
NullCheck(L_12);
if ((((int32_t)L_11) == ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_12)->max_length)))))))
{
goto IL_005f;
}
}
IL_0054:
{
Exception_t * L_13 = (Exception_t *)il2cpp_codegen_object_new(Exception_t_il2cpp_TypeInfo_var);
Exception__ctor_m89BADFF36C3B170013878726E07729D51AA9FBE0(L_13, _stringLiteral048251B7F14BEBC4F04C6E75383D0CCE50A9CC5A, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, TermInfoReader__ctor_mDC681850346716B16DF3EC44DCF1DA6F2A754B7D_RuntimeMethod_var);
}
IL_005f:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_14 = __this->get_buffer_3();
int32_t* L_15 = __this->get_address_of_booleansOffset_4();
TermInfoReader_ReadHeader_m6809956ED26CFF90923FF7E3B4DB6733828FB124(__this, L_14, (int32_t*)L_15, /*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_16 = __this->get_buffer_3();
int32_t* L_17 = __this->get_address_of_booleansOffset_4();
TermInfoReader_ReadNames_m071D18738A2D0CEEE12B76CBF64302062C76E147(__this, L_16, (int32_t*)L_17, /*hidden argument*/NULL);
IL2CPP_LEAVE(0x8F, FINALLY_0085);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0085;
}
FINALLY_0085:
{ // begin finally (depth: 1)
{
FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418 * L_18 = V_0;
if (!L_18)
{
goto IL_008e;
}
}
IL_0088:
{
FileStream_tA770BF9AF0906644D43C81B962C7DBC3BC79A418 * L_19 = V_0;
NullCheck(L_19);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_19);
}
IL_008e:
{
IL2CPP_END_FINALLY(133)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(133)
{
IL2CPP_JUMP_TBL(0x8F, IL_008f)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_008f:
{
return;
}
}
// System.Void System.TermInfoReader::.ctor(System.String,System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TermInfoReader__ctor_mB414A3E5B0CA1C42E830F8221DCC6DAD579055A6 (TermInfoReader_tCAABF3484E6F0AA298F809766C52CA9DC4E6C55C * __this, String_t* ___term0, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___buffer1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TermInfoReader__ctor_mB414A3E5B0CA1C42E830F8221DCC6DAD579055A6_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___buffer1;
if (L_0)
{
goto IL_0014;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteralE53C2EA1FE4BD2B78BF4723C7C155A578E020A25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, TermInfoReader__ctor_mB414A3E5B0CA1C42E830F8221DCC6DAD579055A6_RuntimeMethod_var);
}
IL_0014:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = ___buffer1;
__this->set_buffer_3(L_2);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_3 = ___buffer1;
int32_t* L_4 = __this->get_address_of_booleansOffset_4();
TermInfoReader_ReadHeader_m6809956ED26CFF90923FF7E3B4DB6733828FB124(__this, L_3, (int32_t*)L_4, /*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_5 = ___buffer1;
int32_t* L_6 = __this->get_address_of_booleansOffset_4();
TermInfoReader_ReadNames_m071D18738A2D0CEEE12B76CBF64302062C76E147(__this, L_5, (int32_t*)L_6, /*hidden argument*/NULL);
return;
}
}
// System.Void System.TermInfoReader::ReadHeader(System.Byte[],System.Int32&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TermInfoReader_ReadHeader_m6809956ED26CFF90923FF7E3B4DB6733828FB124 (TermInfoReader_tCAABF3484E6F0AA298F809766C52CA9DC4E6C55C * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___buffer0, int32_t* ___position1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TermInfoReader_ReadHeader_m6809956ED26CFF90923FF7E3B4DB6733828FB124_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int16_t V_0 = 0;
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___buffer0;
int32_t* L_1 = ___position1;
int32_t L_2 = *((int32_t*)L_1);
int16_t L_3 = TermInfoReader_GetInt16_m38F5BB51A12E99E08212EB68C8C717D3C799518A(__this, L_0, L_2, /*hidden argument*/NULL);
V_0 = L_3;
int32_t* L_4 = ___position1;
int32_t* L_5 = ___position1;
int32_t L_6 = *((int32_t*)L_5);
*((int32_t*)L_4) = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)2));
int16_t L_7 = V_0;
if ((((int32_t)L_7) == ((int32_t)((int32_t)282))))
{
goto IL_002e;
}
}
{
int16_t L_8 = V_0;
int16_t L_9 = L_8;
RuntimeObject * L_10 = Box(Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_il2cpp_TypeInfo_var, &L_9);
String_t* L_11 = String_Format_m0ACDD8B34764E4040AED0B3EEB753567E4576BFA(_stringLiteral23C470084C11AED675C34B4BA1F2522082975AF1, L_10, /*hidden argument*/NULL);
Exception_t * L_12 = (Exception_t *)il2cpp_codegen_object_new(Exception_t_il2cpp_TypeInfo_var);
Exception__ctor_m89BADFF36C3B170013878726E07729D51AA9FBE0(L_12, L_11, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, TermInfoReader_ReadHeader_m6809956ED26CFF90923FF7E3B4DB6733828FB124_RuntimeMethod_var);
}
IL_002e:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_13 = ___buffer0;
int32_t* L_14 = ___position1;
int32_t L_15 = *((int32_t*)L_14);
TermInfoReader_GetInt16_m38F5BB51A12E99E08212EB68C8C717D3C799518A(__this, L_13, L_15, /*hidden argument*/NULL);
int32_t* L_16 = ___position1;
int32_t* L_17 = ___position1;
int32_t L_18 = *((int32_t*)L_17);
*((int32_t*)L_16) = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)2));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_19 = ___buffer0;
int32_t* L_20 = ___position1;
int32_t L_21 = *((int32_t*)L_20);
int16_t L_22 = TermInfoReader_GetInt16_m38F5BB51A12E99E08212EB68C8C717D3C799518A(__this, L_19, L_21, /*hidden argument*/NULL);
__this->set_boolSize_0(L_22);
int32_t* L_23 = ___position1;
int32_t* L_24 = ___position1;
int32_t L_25 = *((int32_t*)L_24);
*((int32_t*)L_23) = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_25, (int32_t)2));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_26 = ___buffer0;
int32_t* L_27 = ___position1;
int32_t L_28 = *((int32_t*)L_27);
int16_t L_29 = TermInfoReader_GetInt16_m38F5BB51A12E99E08212EB68C8C717D3C799518A(__this, L_26, L_28, /*hidden argument*/NULL);
__this->set_numSize_1(L_29);
int32_t* L_30 = ___position1;
int32_t* L_31 = ___position1;
int32_t L_32 = *((int32_t*)L_31);
*((int32_t*)L_30) = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_32, (int32_t)2));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_33 = ___buffer0;
int32_t* L_34 = ___position1;
int32_t L_35 = *((int32_t*)L_34);
int16_t L_36 = TermInfoReader_GetInt16_m38F5BB51A12E99E08212EB68C8C717D3C799518A(__this, L_33, L_35, /*hidden argument*/NULL);
__this->set_strOffsets_2(L_36);
int32_t* L_37 = ___position1;
int32_t* L_38 = ___position1;
int32_t L_39 = *((int32_t*)L_38);
*((int32_t*)L_37) = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_39, (int32_t)2));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_40 = ___buffer0;
int32_t* L_41 = ___position1;
int32_t L_42 = *((int32_t*)L_41);
TermInfoReader_GetInt16_m38F5BB51A12E99E08212EB68C8C717D3C799518A(__this, L_40, L_42, /*hidden argument*/NULL);
int32_t* L_43 = ___position1;
int32_t* L_44 = ___position1;
int32_t L_45 = *((int32_t*)L_44);
*((int32_t*)L_43) = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_45, (int32_t)2));
return;
}
}
// System.Void System.TermInfoReader::ReadNames(System.Byte[],System.Int32&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TermInfoReader_ReadNames_m071D18738A2D0CEEE12B76CBF64302062C76E147 (TermInfoReader_tCAABF3484E6F0AA298F809766C52CA9DC4E6C55C * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___buffer0, int32_t* ___position1, const RuntimeMethod* method)
{
String_t* V_0 = NULL;
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___buffer0;
int32_t* L_1 = ___position1;
int32_t L_2 = *((int32_t*)L_1);
String_t* L_3 = TermInfoReader_GetString_mD60F86AEAFF20399149D21B28D7911D442E52AA1(__this, L_0, L_2, /*hidden argument*/NULL);
V_0 = L_3;
int32_t* L_4 = ___position1;
int32_t* L_5 = ___position1;
int32_t L_6 = *((int32_t*)L_5);
String_t* L_7 = V_0;
NullCheck(L_7);
int32_t L_8 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_7, /*hidden argument*/NULL);
*((int32_t*)L_4) = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1))));
return;
}
}
// System.Int32 System.TermInfoReader::Get(System.TermInfoNumbers)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TermInfoReader_Get_mBE8AB84A3B00855DF6CFBEEDAF0B7A9DD35D1DCD (TermInfoReader_tCAABF3484E6F0AA298F809766C52CA9DC4E6C55C * __this, int32_t ___number0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
{
int32_t L_0 = ___number0;
V_0 = L_0;
int32_t L_1 = V_0;
if ((((int32_t)L_1) < ((int32_t)0)))
{
goto IL_0014;
}
}
{
int32_t L_2 = ___number0;
if ((((int32_t)L_2) >= ((int32_t)((int32_t)33))))
{
goto IL_0014;
}
}
{
int32_t L_3 = V_0;
int16_t L_4 = __this->get_numSize_1();
if ((((int32_t)L_3) <= ((int32_t)L_4)))
{
goto IL_0016;
}
}
IL_0014:
{
return (-1);
}
IL_0016:
{
int32_t L_5 = __this->get_booleansOffset_4();
int16_t L_6 = __this->get_boolSize_0();
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)L_6));
int32_t L_7 = V_1;
if ((!(((uint32_t)((int32_t)((int32_t)L_7%(int32_t)2))) == ((uint32_t)1))))
{
goto IL_002e;
}
}
{
int32_t L_8 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1));
}
IL_002e:
{
int32_t L_9 = V_1;
int32_t L_10 = ___number0;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_10, (int32_t)2))));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_11 = __this->get_buffer_3();
int32_t L_12 = V_1;
int16_t L_13 = TermInfoReader_GetInt16_m38F5BB51A12E99E08212EB68C8C717D3C799518A(__this, L_11, L_12, /*hidden argument*/NULL);
return L_13;
}
}
// System.String System.TermInfoReader::Get(System.TermInfoStrings)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TermInfoReader_Get_m302D06F261F21E95F43DC0D052FFD370B5BC9814 (TermInfoReader_tCAABF3484E6F0AA298F809766C52CA9DC4E6C55C * __this, int32_t ___tstr0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___tstr0;
V_0 = L_0;
int32_t L_1 = V_0;
if ((((int32_t)L_1) < ((int32_t)0)))
{
goto IL_0017;
}
}
{
int32_t L_2 = ___tstr0;
if ((((int32_t)L_2) >= ((int32_t)((int32_t)394))))
{
goto IL_0017;
}
}
{
int32_t L_3 = V_0;
int16_t L_4 = __this->get_strOffsets_2();
if ((((int32_t)L_3) <= ((int32_t)L_4)))
{
goto IL_0019;
}
}
IL_0017:
{
return (String_t*)NULL;
}
IL_0019:
{
int32_t L_5 = __this->get_booleansOffset_4();
int16_t L_6 = __this->get_boolSize_0();
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)L_6));
int32_t L_7 = V_1;
if ((!(((uint32_t)((int32_t)((int32_t)L_7%(int32_t)2))) == ((uint32_t)1))))
{
goto IL_0031;
}
}
{
int32_t L_8 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1));
}
IL_0031:
{
int32_t L_9 = V_1;
int16_t L_10 = __this->get_numSize_1();
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_10, (int32_t)2))));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_11 = __this->get_buffer_3();
int32_t L_12 = V_1;
int32_t L_13 = ___tstr0;
int16_t L_14 = TermInfoReader_GetInt16_m38F5BB51A12E99E08212EB68C8C717D3C799518A(__this, L_11, ((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_13, (int32_t)2)))), /*hidden argument*/NULL);
V_2 = L_14;
int32_t L_15 = V_2;
if ((!(((uint32_t)L_15) == ((uint32_t)(-1)))))
{
goto IL_0054;
}
}
{
return (String_t*)NULL;
}
IL_0054:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_16 = __this->get_buffer_3();
int32_t L_17 = V_1;
int16_t L_18 = __this->get_strOffsets_2();
int32_t L_19 = V_2;
String_t* L_20 = TermInfoReader_GetString_mD60F86AEAFF20399149D21B28D7911D442E52AA1(__this, L_16, ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_18, (int32_t)2)))), (int32_t)L_19)), /*hidden argument*/NULL);
return L_20;
}
}
// System.Byte[] System.TermInfoReader::GetStringBytes(System.TermInfoStrings)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* TermInfoReader_GetStringBytes_mD2FD6A1D2FC6D7F3C3DC6EC8254A13A4C1114B06 (TermInfoReader_tCAABF3484E6F0AA298F809766C52CA9DC4E6C55C * __this, int32_t ___tstr0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___tstr0;
V_0 = L_0;
int32_t L_1 = V_0;
if ((((int32_t)L_1) < ((int32_t)0)))
{
goto IL_0017;
}
}
{
int32_t L_2 = ___tstr0;
if ((((int32_t)L_2) >= ((int32_t)((int32_t)394))))
{
goto IL_0017;
}
}
{
int32_t L_3 = V_0;
int16_t L_4 = __this->get_strOffsets_2();
if ((((int32_t)L_3) <= ((int32_t)L_4)))
{
goto IL_0019;
}
}
IL_0017:
{
return (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)NULL;
}
IL_0019:
{
int32_t L_5 = __this->get_booleansOffset_4();
int16_t L_6 = __this->get_boolSize_0();
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)L_6));
int32_t L_7 = V_1;
if ((!(((uint32_t)((int32_t)((int32_t)L_7%(int32_t)2))) == ((uint32_t)1))))
{
goto IL_0031;
}
}
{
int32_t L_8 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1));
}
IL_0031:
{
int32_t L_9 = V_1;
int16_t L_10 = __this->get_numSize_1();
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_10, (int32_t)2))));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_11 = __this->get_buffer_3();
int32_t L_12 = V_1;
int32_t L_13 = ___tstr0;
int16_t L_14 = TermInfoReader_GetInt16_m38F5BB51A12E99E08212EB68C8C717D3C799518A(__this, L_11, ((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_13, (int32_t)2)))), /*hidden argument*/NULL);
V_2 = L_14;
int32_t L_15 = V_2;
if ((!(((uint32_t)L_15) == ((uint32_t)(-1)))))
{
goto IL_0054;
}
}
{
return (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)NULL;
}
IL_0054:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_16 = __this->get_buffer_3();
int32_t L_17 = V_1;
int16_t L_18 = __this->get_strOffsets_2();
int32_t L_19 = V_2;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_20 = TermInfoReader_GetStringBytes_m05CD4F9BF52C817DCAB7EFD34FC74D62D7C6118F(__this, L_16, ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_18, (int32_t)2)))), (int32_t)L_19)), /*hidden argument*/NULL);
return L_20;
}
}
// System.Int16 System.TermInfoReader::GetInt16(System.Byte[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t TermInfoReader_GetInt16_m38F5BB51A12E99E08212EB68C8C717D3C799518A (TermInfoReader_tCAABF3484E6F0AA298F809766C52CA9DC4E6C55C * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___buffer0, int32_t ___offset1, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___buffer0;
int32_t L_1 = ___offset1;
NullCheck(L_0);
int32_t L_2 = L_1;
uint8_t L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
V_0 = L_3;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = ___buffer0;
int32_t L_5 = ___offset1;
NullCheck(L_4);
int32_t L_6 = ((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)1));
uint8_t L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
V_1 = L_7;
int32_t L_8 = V_0;
if ((!(((uint32_t)L_8) == ((uint32_t)((int32_t)255)))))
{
goto IL_001c;
}
}
{
int32_t L_9 = V_1;
if ((!(((uint32_t)L_9) == ((uint32_t)((int32_t)255)))))
{
goto IL_001c;
}
}
{
return (int16_t)(-1);
}
IL_001c:
{
int32_t L_10 = V_0;
int32_t L_11 = V_1;
return (((int16_t)((int16_t)((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_11, (int32_t)((int32_t)256))))))));
}
}
// System.String System.TermInfoReader::GetString(System.Byte[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TermInfoReader_GetString_mD60F86AEAFF20399149D21B28D7911D442E52AA1 (TermInfoReader_tCAABF3484E6F0AA298F809766C52CA9DC4E6C55C * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___buffer0, int32_t ___offset1, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
{
V_0 = 0;
int32_t L_0 = ___offset1;
V_1 = L_0;
goto IL_000a;
}
IL_0006:
{
int32_t L_1 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_1, (int32_t)1));
}
IL_000a:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = ___buffer0;
int32_t L_3 = V_1;
int32_t L_4 = L_3;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1));
NullCheck(L_2);
int32_t L_5 = L_4;
uint8_t L_6 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
if (L_6)
{
goto IL_0006;
}
}
{
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_7 = Encoding_get_ASCII_m9B673AE3152AB04D07CADE6E5E142C785B5BC94E(/*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_8 = ___buffer0;
int32_t L_9 = ___offset1;
int32_t L_10 = V_0;
NullCheck(L_7);
String_t* L_11 = VirtFuncInvoker3< String_t*, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t >::Invoke(31 /* System.String System.Text.Encoding::GetString(System.Byte[],System.Int32,System.Int32) */, L_7, L_8, L_9, L_10);
return L_11;
}
}
// System.Byte[] System.TermInfoReader::GetStringBytes(System.Byte[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* TermInfoReader_GetStringBytes_m05CD4F9BF52C817DCAB7EFD34FC74D62D7C6118F (TermInfoReader_tCAABF3484E6F0AA298F809766C52CA9DC4E6C55C * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___buffer0, int32_t ___offset1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TermInfoReader_GetStringBytes_m05CD4F9BF52C817DCAB7EFD34FC74D62D7C6118F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_2 = NULL;
{
V_0 = 0;
int32_t L_0 = ___offset1;
V_1 = L_0;
goto IL_000a;
}
IL_0006:
{
int32_t L_1 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_1, (int32_t)1));
}
IL_000a:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = ___buffer0;
int32_t L_3 = V_1;
int32_t L_4 = L_3;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1));
NullCheck(L_2);
int32_t L_5 = L_4;
uint8_t L_6 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
if (L_6)
{
goto IL_0006;
}
}
{
int32_t L_7 = V_0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_8 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)L_7);
V_2 = L_8;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_9 = ___buffer0;
int32_t L_10 = ___offset1;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_11 = V_2;
int32_t L_12 = V_0;
Buffer_InternalBlockCopy_m80AEF70443EFBB84D8CCC36D477B8E17A8814FC2((RuntimeArray *)(RuntimeArray *)L_9, L_10, (RuntimeArray *)(RuntimeArray *)L_11, 0, L_12, /*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_13 = V_2;
return L_13;
}
}
#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.Text.ASCIIEncoding::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ASCIIEncoding__ctor_mC9D110516677AC1FAA80B3790BDDD1150A1779C4 (ASCIIEncoding_t3A4744E997A7BE0CEF1D5AE3A35EFC4DFFDDC6B9 * __this, const RuntimeMethod* method)
{
{
Encoding__ctor_m25E853E4AF252CA29A3295065E83BA2C7B1416D5(__this, ((int32_t)20127), /*hidden argument*/NULL);
return;
}
}
// System.Void System.Text.ASCIIEncoding::SetDefaultFallbacks()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ASCIIEncoding_SetDefaultFallbacks_m09B0AB1D08BFB07480F213DE80F77343DB07931B (ASCIIEncoding_t3A4744E997A7BE0CEF1D5AE3A35EFC4DFFDDC6B9 * __this, const RuntimeMethod* method)
{
{
EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * L_0 = EncoderFallback_get_ReplacementFallback_m3FF44931084C980CD4AC9773A73D74302EB37139(/*hidden argument*/NULL);
((Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 *)__this)->set_encoderFallback_13(L_0);
DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * L_1 = DecoderFallback_get_ReplacementFallback_m25F035A7268BAE39E55F606D2735A386DCB3D8EA(/*hidden argument*/NULL);
((Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 *)__this)->set_decoderFallback_14(L_1);
return;
}
}
// System.Int32 System.Text.ASCIIEncoding::GetByteCount(System.Char[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ASCIIEncoding_GetByteCount_mF02988E1FF13778A0944D3DEB99624C4DDF2AA94 (ASCIIEncoding_t3A4744E997A7BE0CEF1D5AE3A35EFC4DFFDDC6B9 * __this, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___chars0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ASCIIEncoding_GetByteCount_mF02988E1FF13778A0944D3DEB99624C4DDF2AA94_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Il2CppChar* V_0 = NULL;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* V_1 = NULL;
String_t* G_B7_0 = NULL;
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_0 = ___chars0;
if (L_0)
{
goto IL_0018;
}
}
{
String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral867AD8C2544ED5D38EC2B4986A28AA22B284F710, /*hidden argument*/NULL);
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m9EA692D49986AEBAC433CE3381331146109AE20F(L_2, _stringLiteral76A91D6CE24FCC03EC2ECBB19E3012B5D5D40E2B, L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ASCIIEncoding_GetByteCount_mF02988E1FF13778A0944D3DEB99624C4DDF2AA94_RuntimeMethod_var);
}
IL_0018:
{
int32_t L_3 = ___index1;
if ((((int32_t)L_3) < ((int32_t)0)))
{
goto IL_0020;
}
}
{
int32_t L_4 = ___count2;
if ((((int32_t)L_4) >= ((int32_t)0)))
{
goto IL_0040;
}
}
IL_0020:
{
int32_t L_5 = ___index1;
if ((((int32_t)L_5) < ((int32_t)0)))
{
goto IL_002b;
}
}
{
G_B7_0 = _stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556;
goto IL_0030;
}
IL_002b:
{
G_B7_0 = _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346;
}
IL_0030:
{
String_t* L_6 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_7 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_7, G_B7_0, L_6, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, ASCIIEncoding_GetByteCount_mF02988E1FF13778A0944D3DEB99624C4DDF2AA94_RuntimeMethod_var);
}
IL_0040:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_8 = ___chars0;
NullCheck(L_8);
int32_t L_9 = ___index1;
int32_t L_10 = ___count2;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_8)->max_length)))), (int32_t)L_9))) >= ((int32_t)L_10)))
{
goto IL_005d;
}
}
{
String_t* L_11 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral58DB15989CC5229A62FDAD47E614D05B051584E7, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_12 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_12, _stringLiteral76A91D6CE24FCC03EC2ECBB19E3012B5D5D40E2B, L_11, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, ASCIIEncoding_GetByteCount_mF02988E1FF13778A0944D3DEB99624C4DDF2AA94_RuntimeMethod_var);
}
IL_005d:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_13 = ___chars0;
NullCheck(L_13);
if ((((RuntimeArray*)L_13)->max_length))
{
goto IL_0063;
}
}
{
return 0;
}
IL_0063:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_14 = ___chars0;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_15 = L_14;
V_1 = L_15;
if (!L_15)
{
goto IL_006d;
}
}
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_16 = V_1;
NullCheck(L_16);
if ((((int32_t)((int32_t)(((RuntimeArray*)L_16)->max_length)))))
{
goto IL_0072;
}
}
IL_006d:
{
V_0 = (Il2CppChar*)(((uintptr_t)0));
goto IL_007b;
}
IL_0072:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_17 = V_1;
NullCheck(L_17);
V_0 = (Il2CppChar*)(((uintptr_t)((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(0)))));
}
IL_007b:
{
Il2CppChar* L_18 = V_0;
int32_t L_19 = ___index1;
int32_t L_20 = ___count2;
int32_t L_21 = VirtFuncInvoker3< int32_t, Il2CppChar*, int32_t, EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * >::Invoke(12 /* System.Int32 System.Text.Encoding::GetByteCount(System.Char*,System.Int32,System.Text.EncoderNLS) */, __this, (Il2CppChar*)(Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_18, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_19)), (int32_t)2)))), L_20, (EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 *)NULL);
return L_21;
}
}
// System.Int32 System.Text.ASCIIEncoding::GetByteCount(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ASCIIEncoding_GetByteCount_mA03F9C5663D28CBAAE58E400075A8B5E6A36AB2E (ASCIIEncoding_t3A4744E997A7BE0CEF1D5AE3A35EFC4DFFDDC6B9 * __this, String_t* ___chars0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ASCIIEncoding_GetByteCount_mA03F9C5663D28CBAAE58E400075A8B5E6A36AB2E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Il2CppChar* V_0 = NULL;
String_t* V_1 = NULL;
{
String_t* L_0 = ___chars0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral76A91D6CE24FCC03EC2ECBB19E3012B5D5D40E2B, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ASCIIEncoding_GetByteCount_mA03F9C5663D28CBAAE58E400075A8B5E6A36AB2E_RuntimeMethod_var);
}
IL_000e:
{
String_t* L_2 = ___chars0;
V_1 = L_2;
String_t* L_3 = V_1;
V_0 = (Il2CppChar*)(((uintptr_t)L_3));
Il2CppChar* L_4 = V_0;
if (!L_4)
{
goto IL_001e;
}
}
{
Il2CppChar* L_5 = V_0;
int32_t L_6 = RuntimeHelpers_get_OffsetToStringData_mF3B79A906181F1A2734590DA161E2AF183853F8B(/*hidden argument*/NULL);
V_0 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_5, (int32_t)L_6));
}
IL_001e:
{
Il2CppChar* L_7 = V_0;
String_t* L_8 = ___chars0;
NullCheck(L_8);
int32_t L_9 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_8, /*hidden argument*/NULL);
int32_t L_10 = VirtFuncInvoker3< int32_t, Il2CppChar*, int32_t, EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * >::Invoke(12 /* System.Int32 System.Text.Encoding::GetByteCount(System.Char*,System.Int32,System.Text.EncoderNLS) */, __this, (Il2CppChar*)(Il2CppChar*)L_7, L_9, (EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 *)NULL);
return L_10;
}
}
// System.Int32 System.Text.ASCIIEncoding::GetByteCount(System.Char*,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ASCIIEncoding_GetByteCount_m0EBF48239C83BCE7F55A487C91F8920E3CE35172 (ASCIIEncoding_t3A4744E997A7BE0CEF1D5AE3A35EFC4DFFDDC6B9 * __this, Il2CppChar* ___chars0, int32_t ___count1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ASCIIEncoding_GetByteCount_m0EBF48239C83BCE7F55A487C91F8920E3CE35172_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Il2CppChar* L_0 = ___chars0;
if ((!(((uintptr_t)L_0) == ((uintptr_t)(((uintptr_t)0))))))
{
goto IL_001a;
}
}
{
String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral867AD8C2544ED5D38EC2B4986A28AA22B284F710, /*hidden argument*/NULL);
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m9EA692D49986AEBAC433CE3381331146109AE20F(L_2, _stringLiteral76A91D6CE24FCC03EC2ECBB19E3012B5D5D40E2B, L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ASCIIEncoding_GetByteCount_m0EBF48239C83BCE7F55A487C91F8920E3CE35172_RuntimeMethod_var);
}
IL_001a:
{
int32_t L_3 = ___count1;
if ((((int32_t)L_3) >= ((int32_t)0)))
{
goto IL_0033;
}
}
{
String_t* L_4 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, _stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556, L_4, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ASCIIEncoding_GetByteCount_m0EBF48239C83BCE7F55A487C91F8920E3CE35172_RuntimeMethod_var);
}
IL_0033:
{
Il2CppChar* L_6 = ___chars0;
int32_t L_7 = ___count1;
int32_t L_8 = VirtFuncInvoker3< int32_t, Il2CppChar*, int32_t, EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * >::Invoke(12 /* System.Int32 System.Text.Encoding::GetByteCount(System.Char*,System.Int32,System.Text.EncoderNLS) */, __this, (Il2CppChar*)(Il2CppChar*)L_6, L_7, (EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 *)NULL);
return L_8;
}
}
// System.Int32 System.Text.ASCIIEncoding::GetBytes(System.String,System.Int32,System.Int32,System.Byte[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ASCIIEncoding_GetBytes_m3FB919272A2EB423271380898B8722DB838C2E9F (ASCIIEncoding_t3A4744E997A7BE0CEF1D5AE3A35EFC4DFFDDC6B9 * __this, String_t* ___chars0, int32_t ___charIndex1, int32_t ___charCount2, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___bytes3, int32_t ___byteIndex4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ASCIIEncoding_GetBytes_m3FB919272A2EB423271380898B8722DB838C2E9F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
Il2CppChar* V_1 = NULL;
String_t* V_2 = NULL;
uint8_t* V_3 = NULL;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_4 = NULL;
String_t* G_B5_0 = NULL;
String_t* G_B11_0 = NULL;
{
String_t* L_0 = ___chars0;
if (!L_0)
{
goto IL_0007;
}
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = ___bytes3;
if (L_1)
{
goto IL_0026;
}
}
IL_0007:
{
String_t* L_2 = ___chars0;
if (!L_2)
{
goto IL_0011;
}
}
{
G_B5_0 = _stringLiteralDAF529A73101C2BE626B99FC6938163E7A27620B;
goto IL_0016;
}
IL_0011:
{
G_B5_0 = _stringLiteral76A91D6CE24FCC03EC2ECBB19E3012B5D5D40E2B;
}
IL_0016:
{
String_t* L_3 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral867AD8C2544ED5D38EC2B4986A28AA22B284F710, /*hidden argument*/NULL);
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_4 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m9EA692D49986AEBAC433CE3381331146109AE20F(L_4, G_B5_0, L_3, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ASCIIEncoding_GetBytes_m3FB919272A2EB423271380898B8722DB838C2E9F_RuntimeMethod_var);
}
IL_0026:
{
int32_t L_5 = ___charIndex1;
if ((((int32_t)L_5) < ((int32_t)0)))
{
goto IL_002e;
}
}
{
int32_t L_6 = ___charCount2;
if ((((int32_t)L_6) >= ((int32_t)0)))
{
goto IL_004e;
}
}
IL_002e:
{
int32_t L_7 = ___charIndex1;
if ((((int32_t)L_7) < ((int32_t)0)))
{
goto IL_0039;
}
}
{
G_B11_0 = _stringLiteralAB1A79FB2CBABAF9BE681B601509BD40528C11D8;
goto IL_003e;
}
IL_0039:
{
G_B11_0 = _stringLiteral74EBCD92BCF0C393F47C1A4EEA9851BB06BCEF0C;
}
IL_003e:
{
String_t* L_8 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_9 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_9, G_B11_0, L_8, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ASCIIEncoding_GetBytes_m3FB919272A2EB423271380898B8722DB838C2E9F_RuntimeMethod_var);
}
IL_004e:
{
String_t* L_10 = ___chars0;
NullCheck(L_10);
int32_t L_11 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_10, /*hidden argument*/NULL);
int32_t L_12 = ___charIndex1;
int32_t L_13 = ___charCount2;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_11, (int32_t)L_12))) >= ((int32_t)L_13)))
{
goto IL_006e;
}
}
{
String_t* L_14 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral62836465B297BA5E6273FE13E6F591F548238688, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_15 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_15, _stringLiteral76A91D6CE24FCC03EC2ECBB19E3012B5D5D40E2B, L_14, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, ASCIIEncoding_GetBytes_m3FB919272A2EB423271380898B8722DB838C2E9F_RuntimeMethod_var);
}
IL_006e:
{
int32_t L_16 = ___byteIndex4;
if ((((int32_t)L_16) < ((int32_t)0)))
{
goto IL_007b;
}
}
{
int32_t L_17 = ___byteIndex4;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_18 = ___bytes3;
NullCheck(L_18);
if ((((int32_t)L_17) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_18)->max_length)))))))
{
goto IL_0090;
}
}
IL_007b:
{
String_t* L_19 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_20 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_20, _stringLiteralB95EFA8990E2BB5BCCEF52DF47A31FC66F723D4B, L_19, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_20, ASCIIEncoding_GetBytes_m3FB919272A2EB423271380898B8722DB838C2E9F_RuntimeMethod_var);
}
IL_0090:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_21 = ___bytes3;
NullCheck(L_21);
int32_t L_22 = ___byteIndex4;
V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_21)->max_length)))), (int32_t)L_22));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_23 = ___bytes3;
NullCheck(L_23);
if ((((RuntimeArray*)L_23)->max_length))
{
goto IL_00a5;
}
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_24 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)1);
___bytes3 = L_24;
}
IL_00a5:
{
String_t* L_25 = ___chars0;
V_2 = L_25;
String_t* L_26 = V_2;
V_1 = (Il2CppChar*)(((uintptr_t)L_26));
Il2CppChar* L_27 = V_1;
if (!L_27)
{
goto IL_00b5;
}
}
{
Il2CppChar* L_28 = V_1;
int32_t L_29 = RuntimeHelpers_get_OffsetToStringData_mF3B79A906181F1A2734590DA161E2AF183853F8B(/*hidden argument*/NULL);
V_1 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_28, (int32_t)L_29));
}
IL_00b5:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_30 = ___bytes3;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_31 = L_30;
V_4 = L_31;
if (!L_31)
{
goto IL_00c2;
}
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_32 = V_4;
NullCheck(L_32);
if ((((int32_t)((int32_t)(((RuntimeArray*)L_32)->max_length)))))
{
goto IL_00c7;
}
}
IL_00c2:
{
V_3 = (uint8_t*)(((uintptr_t)0));
goto IL_00d1;
}
IL_00c7:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_33 = V_4;
NullCheck(L_33);
V_3 = (uint8_t*)(((uintptr_t)((L_33)->GetAddressAt(static_cast<il2cpp_array_size_t>(0)))));
}
IL_00d1:
{
Il2CppChar* L_34 = V_1;
int32_t L_35 = ___charIndex1;
int32_t L_36 = ___charCount2;
uint8_t* L_37 = V_3;
int32_t L_38 = ___byteIndex4;
int32_t L_39 = V_0;
int32_t L_40 = VirtFuncInvoker5< int32_t, Il2CppChar*, int32_t, uint8_t*, int32_t, EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * >::Invoke(16 /* System.Int32 System.Text.Encoding::GetBytes(System.Char*,System.Int32,System.Byte*,System.Int32,System.Text.EncoderNLS) */, __this, (Il2CppChar*)(Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_34, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_35)), (int32_t)2)))), L_36, (uint8_t*)(uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_37, (int32_t)L_38)), L_39, (EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 *)NULL);
return L_40;
}
}
// System.Int32 System.Text.ASCIIEncoding::GetBytes(System.Char[],System.Int32,System.Int32,System.Byte[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ASCIIEncoding_GetBytes_m643A7F0333C3A7FD043E55BDC2FDBEF45C70E5BC (ASCIIEncoding_t3A4744E997A7BE0CEF1D5AE3A35EFC4DFFDDC6B9 * __this, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___chars0, int32_t ___charIndex1, int32_t ___charCount2, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___bytes3, int32_t ___byteIndex4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ASCIIEncoding_GetBytes_m643A7F0333C3A7FD043E55BDC2FDBEF45C70E5BC_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
Il2CppChar* V_1 = NULL;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* V_2 = NULL;
uint8_t* V_3 = NULL;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_4 = NULL;
String_t* G_B5_0 = NULL;
String_t* G_B11_0 = NULL;
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_0 = ___chars0;
if (!L_0)
{
goto IL_0007;
}
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = ___bytes3;
if (L_1)
{
goto IL_0026;
}
}
IL_0007:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_2 = ___chars0;
if (!L_2)
{
goto IL_0011;
}
}
{
G_B5_0 = _stringLiteralDAF529A73101C2BE626B99FC6938163E7A27620B;
goto IL_0016;
}
IL_0011:
{
G_B5_0 = _stringLiteral76A91D6CE24FCC03EC2ECBB19E3012B5D5D40E2B;
}
IL_0016:
{
String_t* L_3 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral867AD8C2544ED5D38EC2B4986A28AA22B284F710, /*hidden argument*/NULL);
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_4 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m9EA692D49986AEBAC433CE3381331146109AE20F(L_4, G_B5_0, L_3, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ASCIIEncoding_GetBytes_m643A7F0333C3A7FD043E55BDC2FDBEF45C70E5BC_RuntimeMethod_var);
}
IL_0026:
{
int32_t L_5 = ___charIndex1;
if ((((int32_t)L_5) < ((int32_t)0)))
{
goto IL_002e;
}
}
{
int32_t L_6 = ___charCount2;
if ((((int32_t)L_6) >= ((int32_t)0)))
{
goto IL_004e;
}
}
IL_002e:
{
int32_t L_7 = ___charIndex1;
if ((((int32_t)L_7) < ((int32_t)0)))
{
goto IL_0039;
}
}
{
G_B11_0 = _stringLiteralAB1A79FB2CBABAF9BE681B601509BD40528C11D8;
goto IL_003e;
}
IL_0039:
{
G_B11_0 = _stringLiteral74EBCD92BCF0C393F47C1A4EEA9851BB06BCEF0C;
}
IL_003e:
{
String_t* L_8 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_9 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_9, G_B11_0, L_8, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ASCIIEncoding_GetBytes_m643A7F0333C3A7FD043E55BDC2FDBEF45C70E5BC_RuntimeMethod_var);
}
IL_004e:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_10 = ___chars0;
NullCheck(L_10);
int32_t L_11 = ___charIndex1;
int32_t L_12 = ___charCount2;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_10)->max_length)))), (int32_t)L_11))) >= ((int32_t)L_12)))
{
goto IL_006b;
}
}
{
String_t* L_13 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral58DB15989CC5229A62FDAD47E614D05B051584E7, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_14 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_14, _stringLiteral76A91D6CE24FCC03EC2ECBB19E3012B5D5D40E2B, L_13, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_14, ASCIIEncoding_GetBytes_m643A7F0333C3A7FD043E55BDC2FDBEF45C70E5BC_RuntimeMethod_var);
}
IL_006b:
{
int32_t L_15 = ___byteIndex4;
if ((((int32_t)L_15) < ((int32_t)0)))
{
goto IL_0078;
}
}
{
int32_t L_16 = ___byteIndex4;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_17 = ___bytes3;
NullCheck(L_17);
if ((((int32_t)L_16) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_17)->max_length)))))))
{
goto IL_008d;
}
}
IL_0078:
{
String_t* L_18 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_19 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_19, _stringLiteralB95EFA8990E2BB5BCCEF52DF47A31FC66F723D4B, L_18, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_19, ASCIIEncoding_GetBytes_m643A7F0333C3A7FD043E55BDC2FDBEF45C70E5BC_RuntimeMethod_var);
}
IL_008d:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_20 = ___chars0;
NullCheck(L_20);
if ((((RuntimeArray*)L_20)->max_length))
{
goto IL_0093;
}
}
{
return 0;
}
IL_0093:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_21 = ___bytes3;
NullCheck(L_21);
int32_t L_22 = ___byteIndex4;
V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_21)->max_length)))), (int32_t)L_22));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_23 = ___bytes3;
NullCheck(L_23);
if ((((RuntimeArray*)L_23)->max_length))
{
goto IL_00a8;
}
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_24 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)1);
___bytes3 = L_24;
}
IL_00a8:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_25 = ___chars0;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_26 = L_25;
V_2 = L_26;
if (!L_26)
{
goto IL_00b2;
}
}
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_27 = V_2;
NullCheck(L_27);
if ((((int32_t)((int32_t)(((RuntimeArray*)L_27)->max_length)))))
{
goto IL_00b7;
}
}
IL_00b2:
{
V_1 = (Il2CppChar*)(((uintptr_t)0));
goto IL_00c0;
}
IL_00b7:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_28 = V_2;
NullCheck(L_28);
V_1 = (Il2CppChar*)(((uintptr_t)((L_28)->GetAddressAt(static_cast<il2cpp_array_size_t>(0)))));
}
IL_00c0:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_29 = ___bytes3;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_30 = L_29;
V_4 = L_30;
if (!L_30)
{
goto IL_00cd;
}
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_31 = V_4;
NullCheck(L_31);
if ((((int32_t)((int32_t)(((RuntimeArray*)L_31)->max_length)))))
{
goto IL_00d2;
}
}
IL_00cd:
{
V_3 = (uint8_t*)(((uintptr_t)0));
goto IL_00dc;
}
IL_00d2:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_32 = V_4;
NullCheck(L_32);
V_3 = (uint8_t*)(((uintptr_t)((L_32)->GetAddressAt(static_cast<il2cpp_array_size_t>(0)))));
}
IL_00dc:
{
Il2CppChar* L_33 = V_1;
int32_t L_34 = ___charIndex1;
int32_t L_35 = ___charCount2;
uint8_t* L_36 = V_3;
int32_t L_37 = ___byteIndex4;
int32_t L_38 = V_0;
int32_t L_39 = VirtFuncInvoker5< int32_t, Il2CppChar*, int32_t, uint8_t*, int32_t, EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * >::Invoke(16 /* System.Int32 System.Text.Encoding::GetBytes(System.Char*,System.Int32,System.Byte*,System.Int32,System.Text.EncoderNLS) */, __this, (Il2CppChar*)(Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_33, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_34)), (int32_t)2)))), L_35, (uint8_t*)(uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_36, (int32_t)L_37)), L_38, (EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 *)NULL);
return L_39;
}
}
// System.Int32 System.Text.ASCIIEncoding::GetBytes(System.Char*,System.Int32,System.Byte*,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ASCIIEncoding_GetBytes_mAF2946450CA684818B24CF83EA281D6897174B2C (ASCIIEncoding_t3A4744E997A7BE0CEF1D5AE3A35EFC4DFFDDC6B9 * __this, Il2CppChar* ___chars0, int32_t ___charCount1, uint8_t* ___bytes2, int32_t ___byteCount3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ASCIIEncoding_GetBytes_mAF2946450CA684818B24CF83EA281D6897174B2C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* G_B5_0 = NULL;
String_t* G_B11_0 = NULL;
{
uint8_t* L_0 = ___bytes2;
if ((((intptr_t)L_0) == ((intptr_t)(((uintptr_t)0)))))
{
goto IL_000a;
}
}
{
Il2CppChar* L_1 = ___chars0;
if ((!(((uintptr_t)L_1) == ((uintptr_t)(((uintptr_t)0))))))
{
goto IL_002b;
}
}
IL_000a:
{
uint8_t* L_2 = ___bytes2;
if ((((intptr_t)L_2) == ((intptr_t)(((uintptr_t)0)))))
{
goto IL_0016;
}
}
{
G_B5_0 = _stringLiteral76A91D6CE24FCC03EC2ECBB19E3012B5D5D40E2B;
goto IL_001b;
}
IL_0016:
{
G_B5_0 = _stringLiteralDAF529A73101C2BE626B99FC6938163E7A27620B;
}
IL_001b:
{
String_t* L_3 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral867AD8C2544ED5D38EC2B4986A28AA22B284F710, /*hidden argument*/NULL);
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_4 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m9EA692D49986AEBAC433CE3381331146109AE20F(L_4, G_B5_0, L_3, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ASCIIEncoding_GetBytes_mAF2946450CA684818B24CF83EA281D6897174B2C_RuntimeMethod_var);
}
IL_002b:
{
int32_t L_5 = ___charCount1;
if ((((int32_t)L_5) < ((int32_t)0)))
{
goto IL_0034;
}
}
{
int32_t L_6 = ___byteCount3;
if ((((int32_t)L_6) >= ((int32_t)0)))
{
goto IL_0054;
}
}
IL_0034:
{
int32_t L_7 = ___charCount1;
if ((((int32_t)L_7) < ((int32_t)0)))
{
goto IL_003f;
}
}
{
G_B11_0 = _stringLiteral278316CA5ED0FC3A0A92ED4DC8DA6CA9FB56DEBA;
goto IL_0044;
}
IL_003f:
{
G_B11_0 = _stringLiteralAB1A79FB2CBABAF9BE681B601509BD40528C11D8;
}
IL_0044:
{
String_t* L_8 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_9 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_9, G_B11_0, L_8, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ASCIIEncoding_GetBytes_mAF2946450CA684818B24CF83EA281D6897174B2C_RuntimeMethod_var);
}
IL_0054:
{
Il2CppChar* L_10 = ___chars0;
int32_t L_11 = ___charCount1;
uint8_t* L_12 = ___bytes2;
int32_t L_13 = ___byteCount3;
int32_t L_14 = VirtFuncInvoker5< int32_t, Il2CppChar*, int32_t, uint8_t*, int32_t, EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * >::Invoke(16 /* System.Int32 System.Text.Encoding::GetBytes(System.Char*,System.Int32,System.Byte*,System.Int32,System.Text.EncoderNLS) */, __this, (Il2CppChar*)(Il2CppChar*)L_10, L_11, (uint8_t*)(uint8_t*)L_12, L_13, (EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 *)NULL);
return L_14;
}
}
// System.Int32 System.Text.ASCIIEncoding::GetCharCount(System.Byte[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ASCIIEncoding_GetCharCount_mB774D2B6BB467C3BF43F854C3F8D242DD3C10C2E (ASCIIEncoding_t3A4744E997A7BE0CEF1D5AE3A35EFC4DFFDDC6B9 * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___bytes0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ASCIIEncoding_GetCharCount_mB774D2B6BB467C3BF43F854C3F8D242DD3C10C2E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
uint8_t* V_0 = NULL;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_1 = NULL;
String_t* G_B7_0 = NULL;
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___bytes0;
if (L_0)
{
goto IL_0018;
}
}
{
String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral867AD8C2544ED5D38EC2B4986A28AA22B284F710, /*hidden argument*/NULL);
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m9EA692D49986AEBAC433CE3381331146109AE20F(L_2, _stringLiteralDAF529A73101C2BE626B99FC6938163E7A27620B, L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ASCIIEncoding_GetCharCount_mB774D2B6BB467C3BF43F854C3F8D242DD3C10C2E_RuntimeMethod_var);
}
IL_0018:
{
int32_t L_3 = ___index1;
if ((((int32_t)L_3) < ((int32_t)0)))
{
goto IL_0020;
}
}
{
int32_t L_4 = ___count2;
if ((((int32_t)L_4) >= ((int32_t)0)))
{
goto IL_0040;
}
}
IL_0020:
{
int32_t L_5 = ___index1;
if ((((int32_t)L_5) < ((int32_t)0)))
{
goto IL_002b;
}
}
{
G_B7_0 = _stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556;
goto IL_0030;
}
IL_002b:
{
G_B7_0 = _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346;
}
IL_0030:
{
String_t* L_6 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_7 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_7, G_B7_0, L_6, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, ASCIIEncoding_GetCharCount_mB774D2B6BB467C3BF43F854C3F8D242DD3C10C2E_RuntimeMethod_var);
}
IL_0040:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_8 = ___bytes0;
NullCheck(L_8);
int32_t L_9 = ___index1;
int32_t L_10 = ___count2;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_8)->max_length)))), (int32_t)L_9))) >= ((int32_t)L_10)))
{
goto IL_005d;
}
}
{
String_t* L_11 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral58DB15989CC5229A62FDAD47E614D05B051584E7, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_12 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_12, _stringLiteralDAF529A73101C2BE626B99FC6938163E7A27620B, L_11, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, ASCIIEncoding_GetCharCount_mB774D2B6BB467C3BF43F854C3F8D242DD3C10C2E_RuntimeMethod_var);
}
IL_005d:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_13 = ___bytes0;
NullCheck(L_13);
if ((((RuntimeArray*)L_13)->max_length))
{
goto IL_0063;
}
}
{
return 0;
}
IL_0063:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_14 = ___bytes0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_15 = L_14;
V_1 = L_15;
if (!L_15)
{
goto IL_006d;
}
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_16 = V_1;
NullCheck(L_16);
if ((((int32_t)((int32_t)(((RuntimeArray*)L_16)->max_length)))))
{
goto IL_0072;
}
}
IL_006d:
{
V_0 = (uint8_t*)(((uintptr_t)0));
goto IL_007b;
}
IL_0072:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_17 = V_1;
NullCheck(L_17);
V_0 = (uint8_t*)(((uintptr_t)((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(0)))));
}
IL_007b:
{
uint8_t* L_18 = V_0;
int32_t L_19 = ___index1;
int32_t L_20 = ___count2;
int32_t L_21 = VirtFuncInvoker3< int32_t, uint8_t*, int32_t, DecoderNLS_tCDF0A810A2E2B738728A98BBB49F792E66BDF6CD * >::Invoke(20 /* System.Int32 System.Text.Encoding::GetCharCount(System.Byte*,System.Int32,System.Text.DecoderNLS) */, __this, (uint8_t*)(uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_18, (int32_t)L_19)), L_20, (DecoderNLS_tCDF0A810A2E2B738728A98BBB49F792E66BDF6CD *)NULL);
return L_21;
}
}
// System.Int32 System.Text.ASCIIEncoding::GetCharCount(System.Byte*,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ASCIIEncoding_GetCharCount_m5DB65EF0AEBBC846017E148137D8891EE48EE8AA (ASCIIEncoding_t3A4744E997A7BE0CEF1D5AE3A35EFC4DFFDDC6B9 * __this, uint8_t* ___bytes0, int32_t ___count1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ASCIIEncoding_GetCharCount_m5DB65EF0AEBBC846017E148137D8891EE48EE8AA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
uint8_t* L_0 = ___bytes0;
if ((!(((uintptr_t)L_0) == ((uintptr_t)(((uintptr_t)0))))))
{
goto IL_001a;
}
}
{
String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral867AD8C2544ED5D38EC2B4986A28AA22B284F710, /*hidden argument*/NULL);
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m9EA692D49986AEBAC433CE3381331146109AE20F(L_2, _stringLiteralDAF529A73101C2BE626B99FC6938163E7A27620B, L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ASCIIEncoding_GetCharCount_m5DB65EF0AEBBC846017E148137D8891EE48EE8AA_RuntimeMethod_var);
}
IL_001a:
{
int32_t L_3 = ___count1;
if ((((int32_t)L_3) >= ((int32_t)0)))
{
goto IL_0033;
}
}
{
String_t* L_4 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, _stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556, L_4, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ASCIIEncoding_GetCharCount_m5DB65EF0AEBBC846017E148137D8891EE48EE8AA_RuntimeMethod_var);
}
IL_0033:
{
uint8_t* L_6 = ___bytes0;
int32_t L_7 = ___count1;
int32_t L_8 = VirtFuncInvoker3< int32_t, uint8_t*, int32_t, DecoderNLS_tCDF0A810A2E2B738728A98BBB49F792E66BDF6CD * >::Invoke(20 /* System.Int32 System.Text.Encoding::GetCharCount(System.Byte*,System.Int32,System.Text.DecoderNLS) */, __this, (uint8_t*)(uint8_t*)L_6, L_7, (DecoderNLS_tCDF0A810A2E2B738728A98BBB49F792E66BDF6CD *)NULL);
return L_8;
}
}
// System.Int32 System.Text.ASCIIEncoding::GetChars(System.Byte[],System.Int32,System.Int32,System.Char[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ASCIIEncoding_GetChars_mAB7F53CB636A467D19340EFDA64F634CA7258B0B (ASCIIEncoding_t3A4744E997A7BE0CEF1D5AE3A35EFC4DFFDDC6B9 * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___bytes0, int32_t ___byteIndex1, int32_t ___byteCount2, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___chars3, int32_t ___charIndex4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ASCIIEncoding_GetChars_mAB7F53CB636A467D19340EFDA64F634CA7258B0B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
uint8_t* V_1 = NULL;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_2 = NULL;
Il2CppChar* V_3 = NULL;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* V_4 = NULL;
String_t* G_B5_0 = NULL;
String_t* G_B11_0 = NULL;
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___bytes0;
if (!L_0)
{
goto IL_0007;
}
}
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_1 = ___chars3;
if (L_1)
{
goto IL_0026;
}
}
IL_0007:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = ___bytes0;
if (!L_2)
{
goto IL_0011;
}
}
{
G_B5_0 = _stringLiteral76A91D6CE24FCC03EC2ECBB19E3012B5D5D40E2B;
goto IL_0016;
}
IL_0011:
{
G_B5_0 = _stringLiteralDAF529A73101C2BE626B99FC6938163E7A27620B;
}
IL_0016:
{
String_t* L_3 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral867AD8C2544ED5D38EC2B4986A28AA22B284F710, /*hidden argument*/NULL);
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_4 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m9EA692D49986AEBAC433CE3381331146109AE20F(L_4, G_B5_0, L_3, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ASCIIEncoding_GetChars_mAB7F53CB636A467D19340EFDA64F634CA7258B0B_RuntimeMethod_var);
}
IL_0026:
{
int32_t L_5 = ___byteIndex1;
if ((((int32_t)L_5) < ((int32_t)0)))
{
goto IL_002e;
}
}
{
int32_t L_6 = ___byteCount2;
if ((((int32_t)L_6) >= ((int32_t)0)))
{
goto IL_004e;
}
}
IL_002e:
{
int32_t L_7 = ___byteIndex1;
if ((((int32_t)L_7) < ((int32_t)0)))
{
goto IL_0039;
}
}
{
G_B11_0 = _stringLiteral278316CA5ED0FC3A0A92ED4DC8DA6CA9FB56DEBA;
goto IL_003e;
}
IL_0039:
{
G_B11_0 = _stringLiteralB95EFA8990E2BB5BCCEF52DF47A31FC66F723D4B;
}
IL_003e:
{
String_t* L_8 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_9 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_9, G_B11_0, L_8, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ASCIIEncoding_GetChars_mAB7F53CB636A467D19340EFDA64F634CA7258B0B_RuntimeMethod_var);
}
IL_004e:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_10 = ___bytes0;
NullCheck(L_10);
int32_t L_11 = ___byteIndex1;
int32_t L_12 = ___byteCount2;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_10)->max_length)))), (int32_t)L_11))) >= ((int32_t)L_12)))
{
goto IL_006b;
}
}
{
String_t* L_13 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral58DB15989CC5229A62FDAD47E614D05B051584E7, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_14 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_14, _stringLiteralDAF529A73101C2BE626B99FC6938163E7A27620B, L_13, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_14, ASCIIEncoding_GetChars_mAB7F53CB636A467D19340EFDA64F634CA7258B0B_RuntimeMethod_var);
}
IL_006b:
{
int32_t L_15 = ___charIndex4;
if ((((int32_t)L_15) < ((int32_t)0)))
{
goto IL_0078;
}
}
{
int32_t L_16 = ___charIndex4;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_17 = ___chars3;
NullCheck(L_17);
if ((((int32_t)L_16) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_17)->max_length)))))))
{
goto IL_008d;
}
}
IL_0078:
{
String_t* L_18 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_19 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_19, _stringLiteral74EBCD92BCF0C393F47C1A4EEA9851BB06BCEF0C, L_18, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_19, ASCIIEncoding_GetChars_mAB7F53CB636A467D19340EFDA64F634CA7258B0B_RuntimeMethod_var);
}
IL_008d:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_20 = ___bytes0;
NullCheck(L_20);
if ((((RuntimeArray*)L_20)->max_length))
{
goto IL_0093;
}
}
{
return 0;
}
IL_0093:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_21 = ___chars3;
NullCheck(L_21);
int32_t L_22 = ___charIndex4;
V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_21)->max_length)))), (int32_t)L_22));
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_23 = ___chars3;
NullCheck(L_23);
if ((((RuntimeArray*)L_23)->max_length))
{
goto IL_00a8;
}
}
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_24 = (CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)SZArrayNew(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2_il2cpp_TypeInfo_var, (uint32_t)1);
___chars3 = L_24;
}
IL_00a8:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_25 = ___bytes0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_26 = L_25;
V_2 = L_26;
if (!L_26)
{
goto IL_00b2;
}
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_27 = V_2;
NullCheck(L_27);
if ((((int32_t)((int32_t)(((RuntimeArray*)L_27)->max_length)))))
{
goto IL_00b7;
}
}
IL_00b2:
{
V_1 = (uint8_t*)(((uintptr_t)0));
goto IL_00c0;
}
IL_00b7:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_28 = V_2;
NullCheck(L_28);
V_1 = (uint8_t*)(((uintptr_t)((L_28)->GetAddressAt(static_cast<il2cpp_array_size_t>(0)))));
}
IL_00c0:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_29 = ___chars3;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_30 = L_29;
V_4 = L_30;
if (!L_30)
{
goto IL_00cd;
}
}
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_31 = V_4;
NullCheck(L_31);
if ((((int32_t)((int32_t)(((RuntimeArray*)L_31)->max_length)))))
{
goto IL_00d2;
}
}
IL_00cd:
{
V_3 = (Il2CppChar*)(((uintptr_t)0));
goto IL_00dc;
}
IL_00d2:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_32 = V_4;
NullCheck(L_32);
V_3 = (Il2CppChar*)(((uintptr_t)((L_32)->GetAddressAt(static_cast<il2cpp_array_size_t>(0)))));
}
IL_00dc:
{
uint8_t* L_33 = V_1;
int32_t L_34 = ___byteIndex1;
int32_t L_35 = ___byteCount2;
Il2CppChar* L_36 = V_3;
int32_t L_37 = ___charIndex4;
int32_t L_38 = V_0;
int32_t L_39 = VirtFuncInvoker5< int32_t, uint8_t*, int32_t, Il2CppChar*, int32_t, DecoderNLS_tCDF0A810A2E2B738728A98BBB49F792E66BDF6CD * >::Invoke(24 /* System.Int32 System.Text.Encoding::GetChars(System.Byte*,System.Int32,System.Char*,System.Int32,System.Text.DecoderNLS) */, __this, (uint8_t*)(uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_33, (int32_t)L_34)), L_35, (Il2CppChar*)(Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_36, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_37)), (int32_t)2)))), L_38, (DecoderNLS_tCDF0A810A2E2B738728A98BBB49F792E66BDF6CD *)NULL);
return L_39;
}
}
// System.Int32 System.Text.ASCIIEncoding::GetChars(System.Byte*,System.Int32,System.Char*,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ASCIIEncoding_GetChars_m43F8992D9915D6A35CFD22CDE2256F5F32975EB3 (ASCIIEncoding_t3A4744E997A7BE0CEF1D5AE3A35EFC4DFFDDC6B9 * __this, uint8_t* ___bytes0, int32_t ___byteCount1, Il2CppChar* ___chars2, int32_t ___charCount3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ASCIIEncoding_GetChars_m43F8992D9915D6A35CFD22CDE2256F5F32975EB3_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* G_B5_0 = NULL;
String_t* G_B11_0 = NULL;
{
uint8_t* L_0 = ___bytes0;
if ((((intptr_t)L_0) == ((intptr_t)(((uintptr_t)0)))))
{
goto IL_000a;
}
}
{
Il2CppChar* L_1 = ___chars2;
if ((!(((uintptr_t)L_1) == ((uintptr_t)(((uintptr_t)0))))))
{
goto IL_002b;
}
}
IL_000a:
{
uint8_t* L_2 = ___bytes0;
if ((((intptr_t)L_2) == ((intptr_t)(((uintptr_t)0)))))
{
goto IL_0016;
}
}
{
G_B5_0 = _stringLiteral76A91D6CE24FCC03EC2ECBB19E3012B5D5D40E2B;
goto IL_001b;
}
IL_0016:
{
G_B5_0 = _stringLiteralDAF529A73101C2BE626B99FC6938163E7A27620B;
}
IL_001b:
{
String_t* L_3 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral867AD8C2544ED5D38EC2B4986A28AA22B284F710, /*hidden argument*/NULL);
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_4 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m9EA692D49986AEBAC433CE3381331146109AE20F(L_4, G_B5_0, L_3, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ASCIIEncoding_GetChars_m43F8992D9915D6A35CFD22CDE2256F5F32975EB3_RuntimeMethod_var);
}
IL_002b:
{
int32_t L_5 = ___charCount3;
if ((((int32_t)L_5) < ((int32_t)0)))
{
goto IL_0034;
}
}
{
int32_t L_6 = ___byteCount1;
if ((((int32_t)L_6) >= ((int32_t)0)))
{
goto IL_0055;
}
}
IL_0034:
{
int32_t L_7 = ___charCount3;
if ((((int32_t)L_7) < ((int32_t)0)))
{
goto IL_0040;
}
}
{
G_B11_0 = _stringLiteral278316CA5ED0FC3A0A92ED4DC8DA6CA9FB56DEBA;
goto IL_0045;
}
IL_0040:
{
G_B11_0 = _stringLiteralAB1A79FB2CBABAF9BE681B601509BD40528C11D8;
}
IL_0045:
{
String_t* L_8 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_9 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_9, G_B11_0, L_8, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ASCIIEncoding_GetChars_m43F8992D9915D6A35CFD22CDE2256F5F32975EB3_RuntimeMethod_var);
}
IL_0055:
{
uint8_t* L_10 = ___bytes0;
int32_t L_11 = ___byteCount1;
Il2CppChar* L_12 = ___chars2;
int32_t L_13 = ___charCount3;
int32_t L_14 = VirtFuncInvoker5< int32_t, uint8_t*, int32_t, Il2CppChar*, int32_t, DecoderNLS_tCDF0A810A2E2B738728A98BBB49F792E66BDF6CD * >::Invoke(24 /* System.Int32 System.Text.Encoding::GetChars(System.Byte*,System.Int32,System.Char*,System.Int32,System.Text.DecoderNLS) */, __this, (uint8_t*)(uint8_t*)L_10, L_11, (Il2CppChar*)(Il2CppChar*)L_12, L_13, (DecoderNLS_tCDF0A810A2E2B738728A98BBB49F792E66BDF6CD *)NULL);
return L_14;
}
}
// System.String System.Text.ASCIIEncoding::GetString(System.Byte[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ASCIIEncoding_GetString_m5EDDED54D91906259EC8CFABF0450194427EC01B (ASCIIEncoding_t3A4744E997A7BE0CEF1D5AE3A35EFC4DFFDDC6B9 * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___bytes0, int32_t ___byteIndex1, int32_t ___byteCount2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ASCIIEncoding_GetString_m5EDDED54D91906259EC8CFABF0450194427EC01B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
uint8_t* V_0 = NULL;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_1 = NULL;
String_t* G_B7_0 = NULL;
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___bytes0;
if (L_0)
{
goto IL_0018;
}
}
{
String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral867AD8C2544ED5D38EC2B4986A28AA22B284F710, /*hidden argument*/NULL);
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m9EA692D49986AEBAC433CE3381331146109AE20F(L_2, _stringLiteralDAF529A73101C2BE626B99FC6938163E7A27620B, L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ASCIIEncoding_GetString_m5EDDED54D91906259EC8CFABF0450194427EC01B_RuntimeMethod_var);
}
IL_0018:
{
int32_t L_3 = ___byteIndex1;
if ((((int32_t)L_3) < ((int32_t)0)))
{
goto IL_0020;
}
}
{
int32_t L_4 = ___byteCount2;
if ((((int32_t)L_4) >= ((int32_t)0)))
{
goto IL_0040;
}
}
IL_0020:
{
int32_t L_5 = ___byteIndex1;
if ((((int32_t)L_5) < ((int32_t)0)))
{
goto IL_002b;
}
}
{
G_B7_0 = _stringLiteral278316CA5ED0FC3A0A92ED4DC8DA6CA9FB56DEBA;
goto IL_0030;
}
IL_002b:
{
G_B7_0 = _stringLiteralB95EFA8990E2BB5BCCEF52DF47A31FC66F723D4B;
}
IL_0030:
{
String_t* L_6 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_7 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_7, G_B7_0, L_6, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, ASCIIEncoding_GetString_m5EDDED54D91906259EC8CFABF0450194427EC01B_RuntimeMethod_var);
}
IL_0040:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_8 = ___bytes0;
NullCheck(L_8);
int32_t L_9 = ___byteIndex1;
int32_t L_10 = ___byteCount2;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_8)->max_length)))), (int32_t)L_9))) >= ((int32_t)L_10)))
{
goto IL_005d;
}
}
{
String_t* L_11 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral58DB15989CC5229A62FDAD47E614D05B051584E7, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_12 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_12, _stringLiteralDAF529A73101C2BE626B99FC6938163E7A27620B, L_11, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, ASCIIEncoding_GetString_m5EDDED54D91906259EC8CFABF0450194427EC01B_RuntimeMethod_var);
}
IL_005d:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_13 = ___bytes0;
NullCheck(L_13);
if ((((RuntimeArray*)L_13)->max_length))
{
goto IL_0067;
}
}
{
String_t* L_14 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5();
return L_14;
}
IL_0067:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_15 = ___bytes0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_16 = L_15;
V_1 = L_16;
if (!L_16)
{
goto IL_0071;
}
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_17 = V_1;
NullCheck(L_17);
if ((((int32_t)((int32_t)(((RuntimeArray*)L_17)->max_length)))))
{
goto IL_0076;
}
}
IL_0071:
{
V_0 = (uint8_t*)(((uintptr_t)0));
goto IL_007f;
}
IL_0076:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_18 = V_1;
NullCheck(L_18);
V_0 = (uint8_t*)(((uintptr_t)((L_18)->GetAddressAt(static_cast<il2cpp_array_size_t>(0)))));
}
IL_007f:
{
uint8_t* L_19 = V_0;
int32_t L_20 = ___byteIndex1;
int32_t L_21 = ___byteCount2;
String_t* L_22 = String_CreateStringFromEncoding_m05572A060148F853D4AD4D275D432DFF261ABF99((uint8_t*)(uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_19, (int32_t)L_20)), L_21, __this, /*hidden argument*/NULL);
return L_22;
}
}
// System.Int32 System.Text.ASCIIEncoding::GetByteCount(System.Char*,System.Int32,System.Text.EncoderNLS)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ASCIIEncoding_GetByteCount_m2CF471788E518B359D80A15ABE6DB588BE7A6DC2 (ASCIIEncoding_t3A4744E997A7BE0CEF1D5AE3A35EFC4DFFDDC6B9 * __this, Il2CppChar* ___chars0, int32_t ___charCount1, EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * ___encoder2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ASCIIEncoding_GetByteCount_m2CF471788E518B359D80A15ABE6DB588BE7A6DC2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Il2CppChar V_0 = 0x0;
EncoderReplacementFallback_tC2E8A94C82BBF7A4CFC8E3FDBA8A381DCF29F998 * V_1 = NULL;
Il2CppChar* V_2 = NULL;
EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * V_3 = NULL;
int32_t V_4 = 0;
Il2CppChar V_5 = 0x0;
int32_t G_B27_0 = 0;
{
V_0 = 0;
V_1 = (EncoderReplacementFallback_tC2E8A94C82BBF7A4CFC8E3FDBA8A381DCF29F998 *)NULL;
Il2CppChar* L_0 = ___chars0;
int32_t L_1 = ___charCount1;
V_2 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_0, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_1)), (int32_t)2))));
V_3 = (EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C *)NULL;
EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * L_2 = ___encoder2;
if (!L_2)
{
goto IL_007c;
}
}
{
EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * L_3 = ___encoder2;
NullCheck(L_3);
Il2CppChar L_4 = L_3->get_charLeftOver_2();
V_0 = L_4;
EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * L_5 = ___encoder2;
NullCheck(L_5);
EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * L_6 = Encoder_get_Fallback_m8DB0FF2836429351EC5645B2B007982CE458632A_inline(L_5, /*hidden argument*/NULL);
V_1 = ((EncoderReplacementFallback_tC2E8A94C82BBF7A4CFC8E3FDBA8A381DCF29F998 *)IsInstSealed((RuntimeObject*)L_6, EncoderReplacementFallback_tC2E8A94C82BBF7A4CFC8E3FDBA8A381DCF29F998_il2cpp_TypeInfo_var));
EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * L_7 = ___encoder2;
NullCheck(L_7);
bool L_8 = Encoder_get_InternalHasFallbackBuffer_m4064B8A9FEB64FFED4D963FB92E0F31612F63033(L_7, /*hidden argument*/NULL);
if (!L_8)
{
goto IL_0088;
}
}
{
EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * L_9 = ___encoder2;
NullCheck(L_9);
EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * L_10 = Encoder_get_FallbackBuffer_m8E15109A9E24221308BA3C7BFEB622C417696445(L_9, /*hidden argument*/NULL);
V_3 = L_10;
EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * L_11 = V_3;
NullCheck(L_11);
int32_t L_12 = VirtFuncInvoker0< int32_t >::Invoke(8 /* System.Int32 System.Text.EncoderFallbackBuffer::get_Remaining() */, L_11);
if ((((int32_t)L_12) <= ((int32_t)0)))
{
goto IL_0070;
}
}
{
EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * L_13 = ___encoder2;
NullCheck(L_13);
bool L_14 = L_13->get_m_throwOnOverflow_5();
if (!L_14)
{
goto IL_0070;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_15 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)2);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_16 = L_15;
String_t* L_17 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Text.Encoding::get_EncodingName() */, __this);
NullCheck(L_16);
ArrayElementTypeCheck (L_16, L_17);
(L_16)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_17);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_18 = L_16;
EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * L_19 = ___encoder2;
NullCheck(L_19);
EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * L_20 = Encoder_get_Fallback_m8DB0FF2836429351EC5645B2B007982CE458632A_inline(L_19, /*hidden argument*/NULL);
NullCheck(L_20);
Type_t * L_21 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_20, /*hidden argument*/NULL);
NullCheck(L_18);
ArrayElementTypeCheck (L_18, L_21);
(L_18)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_21);
String_t* L_22 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteral5E582BBCB7C3EEF516ECF2B6FE525CF94E83D018, L_18, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_23 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_23, L_22, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_23, ASCIIEncoding_GetByteCount_m2CF471788E518B359D80A15ABE6DB588BE7A6DC2_RuntimeMethod_var);
}
IL_0070:
{
EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * L_24 = V_3;
Il2CppChar* L_25 = ___chars0;
Il2CppChar* L_26 = V_2;
EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * L_27 = ___encoder2;
NullCheck(L_24);
EncoderFallbackBuffer_InternalInitialize_m177C2BFBE6958ABCC948A279D30E398911C18E66(L_24, (Il2CppChar*)(Il2CppChar*)L_25, (Il2CppChar*)(Il2CppChar*)L_26, L_27, (bool)0, /*hidden argument*/NULL);
goto IL_0088;
}
IL_007c:
{
EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * L_28 = Encoding_get_EncoderFallback_m56A241904105944473545473FA20E07BF52B1885_inline(__this, /*hidden argument*/NULL);
V_1 = ((EncoderReplacementFallback_tC2E8A94C82BBF7A4CFC8E3FDBA8A381DCF29F998 *)IsInstSealed((RuntimeObject*)L_28, EncoderReplacementFallback_tC2E8A94C82BBF7A4CFC8E3FDBA8A381DCF29F998_il2cpp_TypeInfo_var));
}
IL_0088:
{
EncoderReplacementFallback_tC2E8A94C82BBF7A4CFC8E3FDBA8A381DCF29F998 * L_29 = V_1;
if (!L_29)
{
goto IL_009f;
}
}
{
EncoderReplacementFallback_tC2E8A94C82BBF7A4CFC8E3FDBA8A381DCF29F998 * L_30 = V_1;
NullCheck(L_30);
int32_t L_31 = VirtFuncInvoker0< int32_t >::Invoke(5 /* System.Int32 System.Text.EncoderFallback::get_MaxCharCount() */, L_30);
if ((!(((uint32_t)L_31) == ((uint32_t)1))))
{
goto IL_009f;
}
}
{
Il2CppChar L_32 = V_0;
if ((((int32_t)L_32) <= ((int32_t)0)))
{
goto IL_009d;
}
}
{
int32_t L_33 = ___charCount1;
___charCount1 = ((int32_t)il2cpp_codegen_add((int32_t)L_33, (int32_t)1));
}
IL_009d:
{
int32_t L_34 = ___charCount1;
return L_34;
}
IL_009f:
{
V_4 = 0;
Il2CppChar L_35 = V_0;
if ((((int32_t)L_35) <= ((int32_t)0)))
{
goto IL_0113;
}
}
{
EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * L_36 = ___encoder2;
NullCheck(L_36);
EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * L_37 = Encoder_get_FallbackBuffer_m8E15109A9E24221308BA3C7BFEB622C417696445(L_36, /*hidden argument*/NULL);
V_3 = L_37;
EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * L_38 = V_3;
Il2CppChar* L_39 = ___chars0;
Il2CppChar* L_40 = V_2;
EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * L_41 = ___encoder2;
NullCheck(L_38);
EncoderFallbackBuffer_InternalInitialize_m177C2BFBE6958ABCC948A279D30E398911C18E66(L_38, (Il2CppChar*)(Il2CppChar*)L_39, (Il2CppChar*)(Il2CppChar*)L_40, L_41, (bool)0, /*hidden argument*/NULL);
EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * L_42 = V_3;
Il2CppChar L_43 = V_0;
NullCheck(L_42);
VirtFuncInvoker2< bool, Il2CppChar, Il2CppChar** >::Invoke(10 /* System.Boolean System.Text.EncoderFallbackBuffer::InternalFallback(System.Char,System.Char*&) */, L_42, L_43, (Il2CppChar**)(&___chars0));
goto IL_0113;
}
IL_00c3:
{
Il2CppChar L_44 = V_5;
if (L_44)
{
goto IL_00d0;
}
}
{
Il2CppChar* L_45 = ___chars0;
int32_t L_46 = *((uint16_t*)L_45);
V_5 = L_46;
Il2CppChar* L_47 = ___chars0;
___chars0 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_47, (int32_t)2));
}
IL_00d0:
{
Il2CppChar L_48 = V_5;
if ((((int32_t)L_48) <= ((int32_t)((int32_t)127))))
{
goto IL_010d;
}
}
{
EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * L_49 = V_3;
if (L_49)
{
goto IL_0100;
}
}
{
EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * L_50 = ___encoder2;
if (L_50)
{
goto IL_00ea;
}
}
{
EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * L_51 = ((Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 *)__this)->get_encoderFallback_13();
NullCheck(L_51);
EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * L_52 = VirtFuncInvoker0< EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * >::Invoke(4 /* System.Text.EncoderFallbackBuffer System.Text.EncoderFallback::CreateFallbackBuffer() */, L_51);
V_3 = L_52;
goto IL_00f1;
}
IL_00ea:
{
EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * L_53 = ___encoder2;
NullCheck(L_53);
EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * L_54 = Encoder_get_FallbackBuffer_m8E15109A9E24221308BA3C7BFEB622C417696445(L_53, /*hidden argument*/NULL);
V_3 = L_54;
}
IL_00f1:
{
EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * L_55 = V_3;
Il2CppChar* L_56 = V_2;
int32_t L_57 = ___charCount1;
Il2CppChar* L_58 = V_2;
EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * L_59 = ___encoder2;
NullCheck(L_55);
EncoderFallbackBuffer_InternalInitialize_m177C2BFBE6958ABCC948A279D30E398911C18E66(L_55, (Il2CppChar*)(Il2CppChar*)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_56, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_57)), (int32_t)2)))), (Il2CppChar*)(Il2CppChar*)L_58, L_59, (bool)0, /*hidden argument*/NULL);
}
IL_0100:
{
EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * L_60 = V_3;
Il2CppChar L_61 = V_5;
NullCheck(L_60);
VirtFuncInvoker2< bool, Il2CppChar, Il2CppChar** >::Invoke(10 /* System.Boolean System.Text.EncoderFallbackBuffer::InternalFallback(System.Char,System.Char*&) */, L_60, L_61, (Il2CppChar**)(&___chars0));
goto IL_0113;
}
IL_010d:
{
int32_t L_62 = V_4;
V_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_62, (int32_t)1));
}
IL_0113:
{
EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * L_63 = V_3;
if (!L_63)
{
goto IL_011e;
}
}
{
EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * L_64 = V_3;
NullCheck(L_64);
Il2CppChar L_65 = EncoderFallbackBuffer_InternalGetNextChar_mC1D11F50B25566F6B87974A3BCF1066C025A8CAF(L_64, /*hidden argument*/NULL);
G_B27_0 = ((int32_t)(L_65));
goto IL_011f;
}
IL_011e:
{
G_B27_0 = 0;
}
IL_011f:
{
int32_t L_66 = G_B27_0;
V_5 = L_66;
if (L_66)
{
goto IL_00c3;
}
}
{
Il2CppChar* L_67 = ___chars0;
Il2CppChar* L_68 = V_2;
if ((!(((uintptr_t)L_67) >= ((uintptr_t)L_68))))
{
goto IL_00c3;
}
}
{
int32_t L_69 = V_4;
return L_69;
}
}
// System.Int32 System.Text.ASCIIEncoding::GetBytes(System.Char*,System.Int32,System.Byte*,System.Int32,System.Text.EncoderNLS)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ASCIIEncoding_GetBytes_mE712EF78C9190829051F38DEEDAF0EAFA5EACAEF (ASCIIEncoding_t3A4744E997A7BE0CEF1D5AE3A35EFC4DFFDDC6B9 * __this, Il2CppChar* ___chars0, int32_t ___charCount1, uint8_t* ___bytes2, int32_t ___byteCount3, EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * ___encoder4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ASCIIEncoding_GetBytes_mE712EF78C9190829051F38DEEDAF0EAFA5EACAEF_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Il2CppChar V_0 = 0x0;
EncoderReplacementFallback_tC2E8A94C82BBF7A4CFC8E3FDBA8A381DCF29F998 * V_1 = NULL;
EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * V_2 = NULL;
Il2CppChar* V_3 = NULL;
uint8_t* V_4 = NULL;
Il2CppChar* V_5 = NULL;
uint8_t* V_6 = NULL;
Il2CppChar V_7 = 0x0;
Il2CppChar V_8 = 0x0;
Il2CppChar V_9 = 0x0;
int32_t G_B44_0 = 0;
{
V_0 = 0;
V_1 = (EncoderReplacementFallback_tC2E8A94C82BBF7A4CFC8E3FDBA8A381DCF29F998 *)NULL;
V_2 = (EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C *)NULL;
Il2CppChar* L_0 = ___chars0;
int32_t L_1 = ___charCount1;
V_3 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_0, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_1)), (int32_t)2))));
uint8_t* L_2 = ___bytes2;
V_4 = (uint8_t*)L_2;
Il2CppChar* L_3 = ___chars0;
V_5 = (Il2CppChar*)L_3;
EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * L_4 = ___encoder4;
if (!L_4)
{
goto IL_008b;
}
}
{
EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * L_5 = ___encoder4;
NullCheck(L_5);
Il2CppChar L_6 = L_5->get_charLeftOver_2();
V_0 = L_6;
EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * L_7 = ___encoder4;
NullCheck(L_7);
EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * L_8 = Encoder_get_Fallback_m8DB0FF2836429351EC5645B2B007982CE458632A_inline(L_7, /*hidden argument*/NULL);
V_1 = ((EncoderReplacementFallback_tC2E8A94C82BBF7A4CFC8E3FDBA8A381DCF29F998 *)IsInstSealed((RuntimeObject*)L_8, EncoderReplacementFallback_tC2E8A94C82BBF7A4CFC8E3FDBA8A381DCF29F998_il2cpp_TypeInfo_var));
EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * L_9 = ___encoder4;
NullCheck(L_9);
bool L_10 = Encoder_get_InternalHasFallbackBuffer_m4064B8A9FEB64FFED4D963FB92E0F31612F63033(L_9, /*hidden argument*/NULL);
if (!L_10)
{
goto IL_0097;
}
}
{
EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * L_11 = ___encoder4;
NullCheck(L_11);
EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * L_12 = Encoder_get_FallbackBuffer_m8E15109A9E24221308BA3C7BFEB622C417696445(L_11, /*hidden argument*/NULL);
V_2 = L_12;
EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * L_13 = V_2;
NullCheck(L_13);
int32_t L_14 = VirtFuncInvoker0< int32_t >::Invoke(8 /* System.Int32 System.Text.EncoderFallbackBuffer::get_Remaining() */, L_13);
if ((((int32_t)L_14) <= ((int32_t)0)))
{
goto IL_007d;
}
}
{
EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * L_15 = ___encoder4;
NullCheck(L_15);
bool L_16 = L_15->get_m_throwOnOverflow_5();
if (!L_16)
{
goto IL_007d;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_17 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)2);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_18 = L_17;
String_t* L_19 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Text.Encoding::get_EncodingName() */, __this);
NullCheck(L_18);
ArrayElementTypeCheck (L_18, L_19);
(L_18)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_19);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_20 = L_18;
EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * L_21 = ___encoder4;
NullCheck(L_21);
EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * L_22 = Encoder_get_Fallback_m8DB0FF2836429351EC5645B2B007982CE458632A_inline(L_21, /*hidden argument*/NULL);
NullCheck(L_22);
Type_t * L_23 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_22, /*hidden argument*/NULL);
NullCheck(L_20);
ArrayElementTypeCheck (L_20, L_23);
(L_20)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_23);
String_t* L_24 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteral5E582BBCB7C3EEF516ECF2B6FE525CF94E83D018, L_20, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_25 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_25, L_24, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_25, ASCIIEncoding_GetBytes_mE712EF78C9190829051F38DEEDAF0EAFA5EACAEF_RuntimeMethod_var);
}
IL_007d:
{
EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * L_26 = V_2;
Il2CppChar* L_27 = V_5;
Il2CppChar* L_28 = V_3;
EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * L_29 = ___encoder4;
NullCheck(L_26);
EncoderFallbackBuffer_InternalInitialize_m177C2BFBE6958ABCC948A279D30E398911C18E66(L_26, (Il2CppChar*)(Il2CppChar*)L_27, (Il2CppChar*)(Il2CppChar*)L_28, L_29, (bool)1, /*hidden argument*/NULL);
goto IL_0097;
}
IL_008b:
{
EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * L_30 = Encoding_get_EncoderFallback_m56A241904105944473545473FA20E07BF52B1885_inline(__this, /*hidden argument*/NULL);
V_1 = ((EncoderReplacementFallback_tC2E8A94C82BBF7A4CFC8E3FDBA8A381DCF29F998 *)IsInstSealed((RuntimeObject*)L_30, EncoderReplacementFallback_tC2E8A94C82BBF7A4CFC8E3FDBA8A381DCF29F998_il2cpp_TypeInfo_var));
}
IL_0097:
{
EncoderReplacementFallback_tC2E8A94C82BBF7A4CFC8E3FDBA8A381DCF29F998 * L_31 = V_1;
if (!L_31)
{
goto IL_014d;
}
}
{
EncoderReplacementFallback_tC2E8A94C82BBF7A4CFC8E3FDBA8A381DCF29F998 * L_32 = V_1;
NullCheck(L_32);
int32_t L_33 = VirtFuncInvoker0< int32_t >::Invoke(5 /* System.Int32 System.Text.EncoderFallback::get_MaxCharCount() */, L_32);
if ((!(((uint32_t)L_33) == ((uint32_t)1))))
{
goto IL_014d;
}
}
{
EncoderReplacementFallback_tC2E8A94C82BBF7A4CFC8E3FDBA8A381DCF29F998 * L_34 = V_1;
NullCheck(L_34);
String_t* L_35 = EncoderReplacementFallback_get_DefaultString_m309F22B8DC7DFCFA07DB9B21498454B935B2BBB0_inline(L_34, /*hidden argument*/NULL);
NullCheck(L_35);
Il2CppChar L_36 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_35, 0, /*hidden argument*/NULL);
V_8 = L_36;
Il2CppChar L_37 = V_8;
if ((((int32_t)L_37) > ((int32_t)((int32_t)127))))
{
goto IL_014d;
}
}
{
Il2CppChar L_38 = V_0;
if ((((int32_t)L_38) <= ((int32_t)0)))
{
goto IL_00e1;
}
}
{
int32_t L_39 = ___byteCount3;
if (L_39)
{
goto IL_00d1;
}
}
{
EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * L_40 = ___encoder4;
Encoding_ThrowBytesOverflow_m5682F2E9AE50908018D6991C8764D4DB065092C2(__this, L_40, (bool)1, /*hidden argument*/NULL);
}
IL_00d1:
{
uint8_t* L_41 = ___bytes2;
uint8_t* L_42 = (uint8_t*)L_41;
___bytes2 = (uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_42, (int32_t)1));
Il2CppChar L_43 = V_8;
*((int8_t*)L_42) = (int8_t)(((int32_t)((uint8_t)L_43)));
int32_t L_44 = ___byteCount3;
___byteCount3 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_44, (int32_t)1));
}
IL_00e1:
{
int32_t L_45 = ___byteCount3;
int32_t L_46 = ___charCount1;
if ((((int32_t)L_45) >= ((int32_t)L_46)))
{
goto IL_0125;
}
}
{
EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * L_47 = ___encoder4;
int32_t L_48 = ___byteCount3;
Encoding_ThrowBytesOverflow_m5682F2E9AE50908018D6991C8764D4DB065092C2(__this, L_47, (bool)((((int32_t)L_48) < ((int32_t)1))? 1 : 0), /*hidden argument*/NULL);
Il2CppChar* L_49 = ___chars0;
int32_t L_50 = ___byteCount3;
V_3 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_49, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_50)), (int32_t)2))));
goto IL_0125;
}
IL_00fd:
{
Il2CppChar* L_51 = ___chars0;
Il2CppChar* L_52 = (Il2CppChar*)L_51;
___chars0 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_52, (int32_t)2));
int32_t L_53 = *((uint16_t*)L_52);
V_9 = L_53;
Il2CppChar L_54 = V_9;
if ((((int32_t)L_54) < ((int32_t)((int32_t)128))))
{
goto IL_011b;
}
}
{
uint8_t* L_55 = ___bytes2;
uint8_t* L_56 = (uint8_t*)L_55;
___bytes2 = (uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_56, (int32_t)1));
Il2CppChar L_57 = V_8;
*((int8_t*)L_56) = (int8_t)(((int32_t)((uint8_t)L_57)));
goto IL_0125;
}
IL_011b:
{
uint8_t* L_58 = ___bytes2;
uint8_t* L_59 = (uint8_t*)L_58;
___bytes2 = (uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_59, (int32_t)1));
Il2CppChar L_60 = V_9;
*((int8_t*)L_59) = (int8_t)(((int32_t)((uint8_t)L_60)));
}
IL_0125:
{
Il2CppChar* L_61 = ___chars0;
Il2CppChar* L_62 = V_3;
if ((!(((uintptr_t)L_61) >= ((uintptr_t)L_62))))
{
goto IL_00fd;
}
}
{
EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * L_63 = ___encoder4;
if (!L_63)
{
goto IL_0144;
}
}
{
EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * L_64 = ___encoder4;
NullCheck(L_64);
L_64->set_charLeftOver_2(0);
EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * L_65 = ___encoder4;
Il2CppChar* L_66 = ___chars0;
Il2CppChar* L_67 = V_5;
NullCheck(L_65);
L_65->set_m_charsUsed_6((((int32_t)((int32_t)(((int64_t)((int64_t)(intptr_t)((Il2CppChar*)((intptr_t)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_66, (intptr_t)L_67))/(int32_t)2)))))))));
}
IL_0144:
{
uint8_t* L_68 = ___bytes2;
uint8_t* L_69 = V_4;
return (((int32_t)((int32_t)(((int64_t)((int64_t)(intptr_t)((uint8_t*)((intptr_t)((uint8_t*)il2cpp_codegen_subtract((intptr_t)L_68, (intptr_t)L_69))/(int32_t)1))))))));
}
IL_014d:
{
uint8_t* L_70 = ___bytes2;
int32_t L_71 = ___byteCount3;
V_6 = (uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_70, (int32_t)L_71));
Il2CppChar L_72 = V_0;
if ((((int32_t)L_72) <= ((int32_t)0)))
{
goto IL_0200;
}
}
{
EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * L_73 = ___encoder4;
NullCheck(L_73);
EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * L_74 = Encoder_get_FallbackBuffer_m8E15109A9E24221308BA3C7BFEB622C417696445(L_73, /*hidden argument*/NULL);
V_2 = L_74;
EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * L_75 = V_2;
Il2CppChar* L_76 = ___chars0;
Il2CppChar* L_77 = V_3;
EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * L_78 = ___encoder4;
NullCheck(L_75);
EncoderFallbackBuffer_InternalInitialize_m177C2BFBE6958ABCC948A279D30E398911C18E66(L_75, (Il2CppChar*)(Il2CppChar*)L_76, (Il2CppChar*)(Il2CppChar*)L_77, L_78, (bool)1, /*hidden argument*/NULL);
EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * L_79 = V_2;
Il2CppChar L_80 = V_0;
NullCheck(L_79);
VirtFuncInvoker2< bool, Il2CppChar, Il2CppChar** >::Invoke(10 /* System.Boolean System.Text.EncoderFallbackBuffer::InternalFallback(System.Char,System.Char*&) */, L_79, L_80, (Il2CppChar**)(&___chars0));
goto IL_0200;
}
IL_017c:
{
Il2CppChar L_81 = V_7;
if (L_81)
{
goto IL_0189;
}
}
{
Il2CppChar* L_82 = ___chars0;
int32_t L_83 = *((uint16_t*)L_82);
V_7 = L_83;
Il2CppChar* L_84 = ___chars0;
___chars0 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_84, (int32_t)2));
}
IL_0189:
{
Il2CppChar L_85 = V_7;
if ((((int32_t)L_85) <= ((int32_t)((int32_t)127))))
{
goto IL_01c9;
}
}
{
EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * L_86 = V_2;
if (L_86)
{
goto IL_01bc;
}
}
{
EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * L_87 = ___encoder4;
if (L_87)
{
goto IL_01a4;
}
}
{
EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * L_88 = ((Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 *)__this)->get_encoderFallback_13();
NullCheck(L_88);
EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * L_89 = VirtFuncInvoker0< EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * >::Invoke(4 /* System.Text.EncoderFallbackBuffer System.Text.EncoderFallback::CreateFallbackBuffer() */, L_88);
V_2 = L_89;
goto IL_01ac;
}
IL_01a4:
{
EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * L_90 = ___encoder4;
NullCheck(L_90);
EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * L_91 = Encoder_get_FallbackBuffer_m8E15109A9E24221308BA3C7BFEB622C417696445(L_90, /*hidden argument*/NULL);
V_2 = L_91;
}
IL_01ac:
{
EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * L_92 = V_2;
Il2CppChar* L_93 = V_3;
int32_t L_94 = ___charCount1;
Il2CppChar* L_95 = V_3;
EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * L_96 = ___encoder4;
NullCheck(L_92);
EncoderFallbackBuffer_InternalInitialize_m177C2BFBE6958ABCC948A279D30E398911C18E66(L_92, (Il2CppChar*)(Il2CppChar*)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_93, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_94)), (int32_t)2)))), (Il2CppChar*)(Il2CppChar*)L_95, L_96, (bool)1, /*hidden argument*/NULL);
}
IL_01bc:
{
EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * L_97 = V_2;
Il2CppChar L_98 = V_7;
NullCheck(L_97);
VirtFuncInvoker2< bool, Il2CppChar, Il2CppChar** >::Invoke(10 /* System.Boolean System.Text.EncoderFallbackBuffer::InternalFallback(System.Char,System.Char*&) */, L_97, L_98, (Il2CppChar**)(&___chars0));
goto IL_0200;
}
IL_01c9:
{
uint8_t* L_99 = ___bytes2;
uint8_t* L_100 = V_6;
if ((!(((uintptr_t)L_99) >= ((uintptr_t)L_100))))
{
goto IL_01f6;
}
}
{
EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * L_101 = V_2;
if (!L_101)
{
goto IL_01d9;
}
}
{
EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * L_102 = V_2;
NullCheck(L_102);
bool L_103 = L_102->get_bFallingBack_5();
if (L_103)
{
goto IL_01e0;
}
}
IL_01d9:
{
Il2CppChar* L_104 = ___chars0;
___chars0 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_104, (int32_t)2));
goto IL_01e7;
}
IL_01e0:
{
EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * L_105 = V_2;
NullCheck(L_105);
VirtFuncInvoker0< bool >::Invoke(7 /* System.Boolean System.Text.EncoderFallbackBuffer::MovePrevious() */, L_105);
}
IL_01e7:
{
EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * L_106 = ___encoder4;
uint8_t* L_107 = ___bytes2;
uint8_t* L_108 = V_4;
Encoding_ThrowBytesOverflow_m5682F2E9AE50908018D6991C8764D4DB065092C2(__this, L_106, (bool)((((intptr_t)L_107) == ((intptr_t)L_108))? 1 : 0), /*hidden argument*/NULL);
goto IL_021b;
}
IL_01f6:
{
uint8_t* L_109 = ___bytes2;
Il2CppChar L_110 = V_7;
*((int8_t*)L_109) = (int8_t)(((int32_t)((uint8_t)L_110)));
uint8_t* L_111 = ___bytes2;
___bytes2 = (uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_111, (int32_t)1));
}
IL_0200:
{
EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * L_112 = V_2;
if (!L_112)
{
goto IL_020b;
}
}
{
EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * L_113 = V_2;
NullCheck(L_113);
Il2CppChar L_114 = EncoderFallbackBuffer_InternalGetNextChar_mC1D11F50B25566F6B87974A3BCF1066C025A8CAF(L_113, /*hidden argument*/NULL);
G_B44_0 = ((int32_t)(L_114));
goto IL_020c;
}
IL_020b:
{
G_B44_0 = 0;
}
IL_020c:
{
int32_t L_115 = G_B44_0;
V_7 = L_115;
if (L_115)
{
goto IL_017c;
}
}
{
Il2CppChar* L_116 = ___chars0;
Il2CppChar* L_117 = V_3;
if ((!(((uintptr_t)L_116) >= ((uintptr_t)L_117))))
{
goto IL_017c;
}
}
IL_021b:
{
EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * L_118 = ___encoder4;
if (!L_118)
{
goto IL_0241;
}
}
{
EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * L_119 = V_2;
if (!L_119)
{
goto IL_0232;
}
}
{
EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * L_120 = V_2;
NullCheck(L_120);
bool L_121 = L_120->get_bUsedEncoder_4();
if (L_121)
{
goto IL_0232;
}
}
{
EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * L_122 = ___encoder4;
NullCheck(L_122);
L_122->set_charLeftOver_2(0);
}
IL_0232:
{
EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * L_123 = ___encoder4;
Il2CppChar* L_124 = ___chars0;
Il2CppChar* L_125 = V_5;
NullCheck(L_123);
L_123->set_m_charsUsed_6((((int32_t)((int32_t)(((int64_t)((int64_t)(intptr_t)((Il2CppChar*)((intptr_t)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_124, (intptr_t)L_125))/(int32_t)2)))))))));
}
IL_0241:
{
uint8_t* L_126 = ___bytes2;
uint8_t* L_127 = V_4;
return (((int32_t)((int32_t)(((int64_t)((int64_t)(intptr_t)((uint8_t*)((intptr_t)((uint8_t*)il2cpp_codegen_subtract((intptr_t)L_126, (intptr_t)L_127))/(int32_t)1))))))));
}
}
// System.Int32 System.Text.ASCIIEncoding::GetCharCount(System.Byte*,System.Int32,System.Text.DecoderNLS)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ASCIIEncoding_GetCharCount_mED75ADEB6196257F57CFC35A1FAADEE163E0BCBA (ASCIIEncoding_t3A4744E997A7BE0CEF1D5AE3A35EFC4DFFDDC6B9 * __this, uint8_t* ___bytes0, int32_t ___count1, DecoderNLS_tCDF0A810A2E2B738728A98BBB49F792E66BDF6CD * ___decoder2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ASCIIEncoding_GetCharCount_mED75ADEB6196257F57CFC35A1FAADEE163E0BCBA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
DecoderReplacementFallback_t8CF74B2DAE2A08AEA7DF6366778D2E3EA75FC742 * V_0 = NULL;
DecoderFallbackBuffer_t41EB1B3F5748BEEF5BE883DA09DBDB937441A83C * V_1 = NULL;
int32_t V_2 = 0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_3 = NULL;
uint8_t* V_4 = NULL;
uint8_t V_5 = 0x0;
{
V_0 = (DecoderReplacementFallback_t8CF74B2DAE2A08AEA7DF6366778D2E3EA75FC742 *)NULL;
DecoderNLS_tCDF0A810A2E2B738728A98BBB49F792E66BDF6CD * L_0 = ___decoder2;
if (L_0)
{
goto IL_0013;
}
}
{
DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * L_1 = Encoding_get_DecoderFallback_m237581892E1C081234AFD800FCBC321C911EB657_inline(__this, /*hidden argument*/NULL);
V_0 = ((DecoderReplacementFallback_t8CF74B2DAE2A08AEA7DF6366778D2E3EA75FC742 *)IsInstSealed((RuntimeObject*)L_1, DecoderReplacementFallback_t8CF74B2DAE2A08AEA7DF6366778D2E3EA75FC742_il2cpp_TypeInfo_var));
goto IL_001f;
}
IL_0013:
{
DecoderNLS_tCDF0A810A2E2B738728A98BBB49F792E66BDF6CD * L_2 = ___decoder2;
NullCheck(L_2);
DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * L_3 = Decoder_get_Fallback_m9F1A02991ED3FD31BEAC0499EC7978CE386D03AE_inline(L_2, /*hidden argument*/NULL);
V_0 = ((DecoderReplacementFallback_t8CF74B2DAE2A08AEA7DF6366778D2E3EA75FC742 *)IsInstSealed((RuntimeObject*)L_3, DecoderReplacementFallback_t8CF74B2DAE2A08AEA7DF6366778D2E3EA75FC742_il2cpp_TypeInfo_var));
}
IL_001f:
{
DecoderReplacementFallback_t8CF74B2DAE2A08AEA7DF6366778D2E3EA75FC742 * L_4 = V_0;
if (!L_4)
{
goto IL_002d;
}
}
{
DecoderReplacementFallback_t8CF74B2DAE2A08AEA7DF6366778D2E3EA75FC742 * L_5 = V_0;
NullCheck(L_5);
int32_t L_6 = VirtFuncInvoker0< int32_t >::Invoke(5 /* System.Int32 System.Text.DecoderFallback::get_MaxCharCount() */, L_5);
if ((!(((uint32_t)L_6) == ((uint32_t)1))))
{
goto IL_002d;
}
}
{
int32_t L_7 = ___count1;
return L_7;
}
IL_002d:
{
V_1 = (DecoderFallbackBuffer_t41EB1B3F5748BEEF5BE883DA09DBDB937441A83C *)NULL;
int32_t L_8 = ___count1;
V_2 = L_8;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_9 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)1);
V_3 = L_9;
uint8_t* L_10 = ___bytes0;
int32_t L_11 = ___count1;
V_4 = (uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_10, (int32_t)L_11));
goto IL_008c;
}
IL_003f:
{
uint8_t* L_12 = ___bytes0;
int32_t L_13 = *((uint8_t*)L_12);
V_5 = (uint8_t)L_13;
uint8_t* L_14 = ___bytes0;
___bytes0 = (uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_14, (int32_t)1));
uint8_t L_15 = V_5;
if ((((int32_t)L_15) < ((int32_t)((int32_t)128))))
{
goto IL_008c;
}
}
{
DecoderFallbackBuffer_t41EB1B3F5748BEEF5BE883DA09DBDB937441A83C * L_16 = V_1;
if (L_16)
{
goto IL_0078;
}
}
{
DecoderNLS_tCDF0A810A2E2B738728A98BBB49F792E66BDF6CD * L_17 = ___decoder2;
if (L_17)
{
goto IL_0065;
}
}
{
DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * L_18 = Encoding_get_DecoderFallback_m237581892E1C081234AFD800FCBC321C911EB657_inline(__this, /*hidden argument*/NULL);
NullCheck(L_18);
DecoderFallbackBuffer_t41EB1B3F5748BEEF5BE883DA09DBDB937441A83C * L_19 = VirtFuncInvoker0< DecoderFallbackBuffer_t41EB1B3F5748BEEF5BE883DA09DBDB937441A83C * >::Invoke(4 /* System.Text.DecoderFallbackBuffer System.Text.DecoderFallback::CreateFallbackBuffer() */, L_18);
V_1 = L_19;
goto IL_006c;
}
IL_0065:
{
DecoderNLS_tCDF0A810A2E2B738728A98BBB49F792E66BDF6CD * L_20 = ___decoder2;
NullCheck(L_20);
DecoderFallbackBuffer_t41EB1B3F5748BEEF5BE883DA09DBDB937441A83C * L_21 = Decoder_get_FallbackBuffer_m2DBBD556551E9AE334B288AE83F72E69A7C4DA20(L_20, /*hidden argument*/NULL);
V_1 = L_21;
}
IL_006c:
{
DecoderFallbackBuffer_t41EB1B3F5748BEEF5BE883DA09DBDB937441A83C * L_22 = V_1;
uint8_t* L_23 = V_4;
int32_t L_24 = ___count1;
NullCheck(L_22);
DecoderFallbackBuffer_InternalInitialize_m251EB4670E9C98584BA6CB032F9109C1956DE0D7(L_22, (uint8_t*)(uint8_t*)((uint8_t*)il2cpp_codegen_subtract((intptr_t)L_23, (int32_t)L_24)), (Il2CppChar*)(Il2CppChar*)(((uintptr_t)0)), /*hidden argument*/NULL);
}
IL_0078:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_25 = V_3;
uint8_t L_26 = V_5;
NullCheck(L_25);
(L_25)->SetAt(static_cast<il2cpp_array_size_t>(0), (uint8_t)L_26);
int32_t L_27 = V_2;
V_2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_27, (int32_t)1));
int32_t L_28 = V_2;
DecoderFallbackBuffer_t41EB1B3F5748BEEF5BE883DA09DBDB937441A83C * L_29 = V_1;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_30 = V_3;
uint8_t* L_31 = ___bytes0;
NullCheck(L_29);
int32_t L_32 = VirtFuncInvoker2< int32_t, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, uint8_t* >::Invoke(8 /* System.Int32 System.Text.DecoderFallbackBuffer::InternalFallback(System.Byte[],System.Byte*) */, L_29, L_30, (uint8_t*)(uint8_t*)L_31);
V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_28, (int32_t)L_32));
}
IL_008c:
{
uint8_t* L_33 = ___bytes0;
uint8_t* L_34 = V_4;
if ((!(((uintptr_t)L_33) >= ((uintptr_t)L_34))))
{
goto IL_003f;
}
}
{
int32_t L_35 = V_2;
return L_35;
}
}
// System.Int32 System.Text.ASCIIEncoding::GetChars(System.Byte*,System.Int32,System.Char*,System.Int32,System.Text.DecoderNLS)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ASCIIEncoding_GetChars_mEA0193EB61743E9975F884599BF36E6C257B27BE (ASCIIEncoding_t3A4744E997A7BE0CEF1D5AE3A35EFC4DFFDDC6B9 * __this, uint8_t* ___bytes0, int32_t ___byteCount1, Il2CppChar* ___chars2, int32_t ___charCount3, DecoderNLS_tCDF0A810A2E2B738728A98BBB49F792E66BDF6CD * ___decoder4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ASCIIEncoding_GetChars_mEA0193EB61743E9975F884599BF36E6C257B27BE_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
uint8_t* V_0 = NULL;
uint8_t* V_1 = NULL;
Il2CppChar* V_2 = NULL;
DecoderReplacementFallback_t8CF74B2DAE2A08AEA7DF6366778D2E3EA75FC742 * V_3 = NULL;
DecoderFallbackBuffer_t41EB1B3F5748BEEF5BE883DA09DBDB937441A83C * V_4 = NULL;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_5 = NULL;
Il2CppChar* V_6 = NULL;
Il2CppChar V_7 = 0x0;
uint8_t V_8 = 0x0;
uint8_t V_9 = 0x0;
{
uint8_t* L_0 = ___bytes0;
int32_t L_1 = ___byteCount1;
V_0 = (uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_0, (int32_t)L_1));
uint8_t* L_2 = ___bytes0;
V_1 = (uint8_t*)L_2;
Il2CppChar* L_3 = ___chars2;
V_2 = (Il2CppChar*)L_3;
V_3 = (DecoderReplacementFallback_t8CF74B2DAE2A08AEA7DF6366778D2E3EA75FC742 *)NULL;
DecoderNLS_tCDF0A810A2E2B738728A98BBB49F792E66BDF6CD * L_4 = ___decoder4;
if (L_4)
{
goto IL_001c;
}
}
{
DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * L_5 = Encoding_get_DecoderFallback_m237581892E1C081234AFD800FCBC321C911EB657_inline(__this, /*hidden argument*/NULL);
V_3 = ((DecoderReplacementFallback_t8CF74B2DAE2A08AEA7DF6366778D2E3EA75FC742 *)IsInstSealed((RuntimeObject*)L_5, DecoderReplacementFallback_t8CF74B2DAE2A08AEA7DF6366778D2E3EA75FC742_il2cpp_TypeInfo_var));
goto IL_0029;
}
IL_001c:
{
DecoderNLS_tCDF0A810A2E2B738728A98BBB49F792E66BDF6CD * L_6 = ___decoder4;
NullCheck(L_6);
DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * L_7 = Decoder_get_Fallback_m9F1A02991ED3FD31BEAC0499EC7978CE386D03AE_inline(L_6, /*hidden argument*/NULL);
V_3 = ((DecoderReplacementFallback_t8CF74B2DAE2A08AEA7DF6366778D2E3EA75FC742 *)IsInstSealed((RuntimeObject*)L_7, DecoderReplacementFallback_t8CF74B2DAE2A08AEA7DF6366778D2E3EA75FC742_il2cpp_TypeInfo_var));
}
IL_0029:
{
DecoderReplacementFallback_t8CF74B2DAE2A08AEA7DF6366778D2E3EA75FC742 * L_8 = V_3;
if (!L_8)
{
goto IL_00a0;
}
}
{
DecoderReplacementFallback_t8CF74B2DAE2A08AEA7DF6366778D2E3EA75FC742 * L_9 = V_3;
NullCheck(L_9);
int32_t L_10 = VirtFuncInvoker0< int32_t >::Invoke(5 /* System.Int32 System.Text.DecoderFallback::get_MaxCharCount() */, L_9);
if ((!(((uint32_t)L_10) == ((uint32_t)1))))
{
goto IL_00a0;
}
}
{
DecoderReplacementFallback_t8CF74B2DAE2A08AEA7DF6366778D2E3EA75FC742 * L_11 = V_3;
NullCheck(L_11);
String_t* L_12 = DecoderReplacementFallback_get_DefaultString_m7ED43521155BA25273CD47953D2AB0E0033066D3_inline(L_11, /*hidden argument*/NULL);
NullCheck(L_12);
Il2CppChar L_13 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_12, 0, /*hidden argument*/NULL);
V_7 = L_13;
int32_t L_14 = ___charCount3;
int32_t L_15 = ___byteCount1;
if ((((int32_t)L_14) >= ((int32_t)L_15)))
{
goto IL_0082;
}
}
{
DecoderNLS_tCDF0A810A2E2B738728A98BBB49F792E66BDF6CD * L_16 = ___decoder4;
int32_t L_17 = ___charCount3;
Encoding_ThrowCharsOverflow_m1D3B8B6DE4989398B02A75269278927A0A219CAC(__this, L_16, (bool)((((int32_t)L_17) < ((int32_t)1))? 1 : 0), /*hidden argument*/NULL);
uint8_t* L_18 = ___bytes0;
int32_t L_19 = ___charCount3;
V_0 = (uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_18, (int32_t)L_19));
goto IL_0082;
}
IL_005c:
{
uint8_t* L_20 = ___bytes0;
uint8_t* L_21 = (uint8_t*)L_20;
___bytes0 = (uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_21, (int32_t)1));
int32_t L_22 = *((uint8_t*)L_21);
V_8 = (uint8_t)L_22;
uint8_t L_23 = V_8;
if ((((int32_t)L_23) < ((int32_t)((int32_t)128))))
{
goto IL_0079;
}
}
{
Il2CppChar* L_24 = ___chars2;
Il2CppChar* L_25 = (Il2CppChar*)L_24;
___chars2 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_25, (int32_t)2));
Il2CppChar L_26 = V_7;
*((int16_t*)L_25) = (int16_t)L_26;
goto IL_0082;
}
IL_0079:
{
Il2CppChar* L_27 = ___chars2;
Il2CppChar* L_28 = (Il2CppChar*)L_27;
___chars2 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_28, (int32_t)2));
uint8_t L_29 = V_8;
*((int16_t*)L_28) = (int16_t)L_29;
}
IL_0082:
{
uint8_t* L_30 = ___bytes0;
uint8_t* L_31 = V_0;
if ((!(((uintptr_t)L_30) >= ((uintptr_t)L_31))))
{
goto IL_005c;
}
}
{
DecoderNLS_tCDF0A810A2E2B738728A98BBB49F792E66BDF6CD * L_32 = ___decoder4;
if (!L_32)
{
goto IL_0098;
}
}
{
DecoderNLS_tCDF0A810A2E2B738728A98BBB49F792E66BDF6CD * L_33 = ___decoder4;
uint8_t* L_34 = ___bytes0;
uint8_t* L_35 = V_1;
NullCheck(L_33);
L_33->set_m_bytesUsed_5((((int32_t)((int32_t)(((int64_t)((int64_t)(intptr_t)((uint8_t*)((intptr_t)((uint8_t*)il2cpp_codegen_subtract((intptr_t)L_34, (intptr_t)L_35))/(int32_t)1)))))))));
}
IL_0098:
{
Il2CppChar* L_36 = ___chars2;
Il2CppChar* L_37 = V_2;
return (((int32_t)((int32_t)(((int64_t)((int64_t)(intptr_t)((Il2CppChar*)((intptr_t)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_36, (intptr_t)L_37))/(int32_t)2))))))));
}
IL_00a0:
{
V_4 = (DecoderFallbackBuffer_t41EB1B3F5748BEEF5BE883DA09DBDB937441A83C *)NULL;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_38 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)1);
V_5 = L_38;
Il2CppChar* L_39 = ___chars2;
int32_t L_40 = ___charCount3;
V_6 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_39, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_40)), (int32_t)2))));
goto IL_0146;
}
IL_00b9:
{
uint8_t* L_41 = ___bytes0;
int32_t L_42 = *((uint8_t*)L_41);
V_9 = (uint8_t)L_42;
uint8_t* L_43 = ___bytes0;
___bytes0 = (uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_43, (int32_t)1));
uint8_t L_44 = V_9;
if ((((int32_t)L_44) < ((int32_t)((int32_t)128))))
{
goto IL_0125;
}
}
{
DecoderFallbackBuffer_t41EB1B3F5748BEEF5BE883DA09DBDB937441A83C * L_45 = V_4;
if (L_45)
{
goto IL_00f7;
}
}
{
DecoderNLS_tCDF0A810A2E2B738728A98BBB49F792E66BDF6CD * L_46 = ___decoder4;
if (L_46)
{
goto IL_00e2;
}
}
{
DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * L_47 = Encoding_get_DecoderFallback_m237581892E1C081234AFD800FCBC321C911EB657_inline(__this, /*hidden argument*/NULL);
NullCheck(L_47);
DecoderFallbackBuffer_t41EB1B3F5748BEEF5BE883DA09DBDB937441A83C * L_48 = VirtFuncInvoker0< DecoderFallbackBuffer_t41EB1B3F5748BEEF5BE883DA09DBDB937441A83C * >::Invoke(4 /* System.Text.DecoderFallbackBuffer System.Text.DecoderFallback::CreateFallbackBuffer() */, L_47);
V_4 = L_48;
goto IL_00eb;
}
IL_00e2:
{
DecoderNLS_tCDF0A810A2E2B738728A98BBB49F792E66BDF6CD * L_49 = ___decoder4;
NullCheck(L_49);
DecoderFallbackBuffer_t41EB1B3F5748BEEF5BE883DA09DBDB937441A83C * L_50 = Decoder_get_FallbackBuffer_m2DBBD556551E9AE334B288AE83F72E69A7C4DA20(L_49, /*hidden argument*/NULL);
V_4 = L_50;
}
IL_00eb:
{
DecoderFallbackBuffer_t41EB1B3F5748BEEF5BE883DA09DBDB937441A83C * L_51 = V_4;
uint8_t* L_52 = V_0;
int32_t L_53 = ___byteCount1;
Il2CppChar* L_54 = V_6;
NullCheck(L_51);
DecoderFallbackBuffer_InternalInitialize_m251EB4670E9C98584BA6CB032F9109C1956DE0D7(L_51, (uint8_t*)(uint8_t*)((uint8_t*)il2cpp_codegen_subtract((intptr_t)L_52, (int32_t)L_53)), (Il2CppChar*)(Il2CppChar*)L_54, /*hidden argument*/NULL);
}
IL_00f7:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_55 = V_5;
uint8_t L_56 = V_9;
NullCheck(L_55);
(L_55)->SetAt(static_cast<il2cpp_array_size_t>(0), (uint8_t)L_56);
DecoderFallbackBuffer_t41EB1B3F5748BEEF5BE883DA09DBDB937441A83C * L_57 = V_4;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_58 = V_5;
uint8_t* L_59 = ___bytes0;
NullCheck(L_57);
bool L_60 = VirtFuncInvoker3< bool, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, uint8_t*, Il2CppChar** >::Invoke(7 /* System.Boolean System.Text.DecoderFallbackBuffer::InternalFallback(System.Byte[],System.Byte*,System.Char*&) */, L_57, L_58, (uint8_t*)(uint8_t*)L_59, (Il2CppChar**)(&___chars2));
if (L_60)
{
goto IL_0146;
}
}
{
uint8_t* L_61 = ___bytes0;
___bytes0 = (uint8_t*)((uint8_t*)il2cpp_codegen_subtract((intptr_t)L_61, (int32_t)1));
DecoderFallbackBuffer_t41EB1B3F5748BEEF5BE883DA09DBDB937441A83C * L_62 = V_4;
NullCheck(L_62);
DecoderFallbackBuffer_InternalReset_mAA3A04B329865E28A746D984381B9A45C4123B33(L_62, /*hidden argument*/NULL);
DecoderNLS_tCDF0A810A2E2B738728A98BBB49F792E66BDF6CD * L_63 = ___decoder4;
Il2CppChar* L_64 = ___chars2;
Il2CppChar* L_65 = V_2;
Encoding_ThrowCharsOverflow_m1D3B8B6DE4989398B02A75269278927A0A219CAC(__this, L_63, (bool)((((intptr_t)L_64) == ((intptr_t)L_65))? 1 : 0), /*hidden argument*/NULL);
goto IL_014d;
}
IL_0125:
{
Il2CppChar* L_66 = ___chars2;
Il2CppChar* L_67 = V_6;
if ((!(((uintptr_t)L_66) >= ((uintptr_t)L_67))))
{
goto IL_013d;
}
}
{
uint8_t* L_68 = ___bytes0;
___bytes0 = (uint8_t*)((uint8_t*)il2cpp_codegen_subtract((intptr_t)L_68, (int32_t)1));
DecoderNLS_tCDF0A810A2E2B738728A98BBB49F792E66BDF6CD * L_69 = ___decoder4;
Il2CppChar* L_70 = ___chars2;
Il2CppChar* L_71 = V_2;
Encoding_ThrowCharsOverflow_m1D3B8B6DE4989398B02A75269278927A0A219CAC(__this, L_69, (bool)((((intptr_t)L_70) == ((intptr_t)L_71))? 1 : 0), /*hidden argument*/NULL);
goto IL_014d;
}
IL_013d:
{
Il2CppChar* L_72 = ___chars2;
uint8_t L_73 = V_9;
*((int16_t*)L_72) = (int16_t)L_73;
Il2CppChar* L_74 = ___chars2;
___chars2 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_74, (int32_t)2));
}
IL_0146:
{
uint8_t* L_75 = ___bytes0;
uint8_t* L_76 = V_0;
if ((!(((uintptr_t)L_75) >= ((uintptr_t)L_76))))
{
goto IL_00b9;
}
}
IL_014d:
{
DecoderNLS_tCDF0A810A2E2B738728A98BBB49F792E66BDF6CD * L_77 = ___decoder4;
if (!L_77)
{
goto IL_015f;
}
}
{
DecoderNLS_tCDF0A810A2E2B738728A98BBB49F792E66BDF6CD * L_78 = ___decoder4;
uint8_t* L_79 = ___bytes0;
uint8_t* L_80 = V_1;
NullCheck(L_78);
L_78->set_m_bytesUsed_5((((int32_t)((int32_t)(((int64_t)((int64_t)(intptr_t)((uint8_t*)((intptr_t)((uint8_t*)il2cpp_codegen_subtract((intptr_t)L_79, (intptr_t)L_80))/(int32_t)1)))))))));
}
IL_015f:
{
Il2CppChar* L_81 = ___chars2;
Il2CppChar* L_82 = V_2;
return (((int32_t)((int32_t)(((int64_t)((int64_t)(intptr_t)((Il2CppChar*)((intptr_t)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_81, (intptr_t)L_82))/(int32_t)2))))))));
}
}
// System.Int32 System.Text.ASCIIEncoding::GetMaxByteCount(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ASCIIEncoding_GetMaxByteCount_m3E3C11035D964A46F26D24DB47893A731FE72598 (ASCIIEncoding_t3A4744E997A7BE0CEF1D5AE3A35EFC4DFFDDC6B9 * __this, int32_t ___charCount0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ASCIIEncoding_GetMaxByteCount_m3E3C11035D964A46F26D24DB47893A731FE72598_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int64_t V_0 = 0;
{
int32_t L_0 = ___charCount0;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_2, _stringLiteralAB1A79FB2CBABAF9BE681B601509BD40528C11D8, L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ASCIIEncoding_GetMaxByteCount_m3E3C11035D964A46F26D24DB47893A731FE72598_RuntimeMethod_var);
}
IL_0019:
{
int32_t L_3 = ___charCount0;
V_0 = ((int64_t)il2cpp_codegen_add((int64_t)(((int64_t)((int64_t)L_3))), (int64_t)(((int64_t)((int64_t)1)))));
EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * L_4 = Encoding_get_EncoderFallback_m56A241904105944473545473FA20E07BF52B1885_inline(__this, /*hidden argument*/NULL);
NullCheck(L_4);
int32_t L_5 = VirtFuncInvoker0< int32_t >::Invoke(5 /* System.Int32 System.Text.EncoderFallback::get_MaxCharCount() */, L_4);
if ((((int32_t)L_5) <= ((int32_t)1)))
{
goto IL_003c;
}
}
{
int64_t L_6 = V_0;
EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * L_7 = Encoding_get_EncoderFallback_m56A241904105944473545473FA20E07BF52B1885_inline(__this, /*hidden argument*/NULL);
NullCheck(L_7);
int32_t L_8 = VirtFuncInvoker0< int32_t >::Invoke(5 /* System.Int32 System.Text.EncoderFallback::get_MaxCharCount() */, L_7);
V_0 = ((int64_t)il2cpp_codegen_multiply((int64_t)L_6, (int64_t)(((int64_t)((int64_t)L_8)))));
}
IL_003c:
{
int64_t L_9 = V_0;
if ((((int64_t)L_9) <= ((int64_t)(((int64_t)((int64_t)((int32_t)2147483647LL)))))))
{
goto IL_005a;
}
}
{
String_t* L_10 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral7C919B509EED4EF0BA0127F8EC8FE088356687B3, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_11 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_11, _stringLiteralAB1A79FB2CBABAF9BE681B601509BD40528C11D8, L_10, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, ASCIIEncoding_GetMaxByteCount_m3E3C11035D964A46F26D24DB47893A731FE72598_RuntimeMethod_var);
}
IL_005a:
{
int64_t L_12 = V_0;
return (((int32_t)((int32_t)L_12)));
}
}
// System.Int32 System.Text.ASCIIEncoding::GetMaxCharCount(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ASCIIEncoding_GetMaxCharCount_m828DD0F81FA2A3F84D9105199D12D30D04C0E3D3 (ASCIIEncoding_t3A4744E997A7BE0CEF1D5AE3A35EFC4DFFDDC6B9 * __this, int32_t ___byteCount0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ASCIIEncoding_GetMaxCharCount_m828DD0F81FA2A3F84D9105199D12D30D04C0E3D3_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int64_t V_0 = 0;
{
int32_t L_0 = ___byteCount0;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_2, _stringLiteral278316CA5ED0FC3A0A92ED4DC8DA6CA9FB56DEBA, L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ASCIIEncoding_GetMaxCharCount_m828DD0F81FA2A3F84D9105199D12D30D04C0E3D3_RuntimeMethod_var);
}
IL_0019:
{
int32_t L_3 = ___byteCount0;
V_0 = (((int64_t)((int64_t)L_3)));
DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * L_4 = Encoding_get_DecoderFallback_m237581892E1C081234AFD800FCBC321C911EB657_inline(__this, /*hidden argument*/NULL);
NullCheck(L_4);
int32_t L_5 = VirtFuncInvoker0< int32_t >::Invoke(5 /* System.Int32 System.Text.DecoderFallback::get_MaxCharCount() */, L_4);
if ((((int32_t)L_5) <= ((int32_t)1)))
{
goto IL_0039;
}
}
{
int64_t L_6 = V_0;
DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * L_7 = Encoding_get_DecoderFallback_m237581892E1C081234AFD800FCBC321C911EB657_inline(__this, /*hidden argument*/NULL);
NullCheck(L_7);
int32_t L_8 = VirtFuncInvoker0< int32_t >::Invoke(5 /* System.Int32 System.Text.DecoderFallback::get_MaxCharCount() */, L_7);
V_0 = ((int64_t)il2cpp_codegen_multiply((int64_t)L_6, (int64_t)(((int64_t)((int64_t)L_8)))));
}
IL_0039:
{
int64_t L_9 = V_0;
if ((((int64_t)L_9) <= ((int64_t)(((int64_t)((int64_t)((int32_t)2147483647LL)))))))
{
goto IL_0057;
}
}
{
String_t* L_10 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralC94AEC48B21CADC5BB8B140753EE1FF89E29C7BC, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_11 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_11, _stringLiteral278316CA5ED0FC3A0A92ED4DC8DA6CA9FB56DEBA, L_10, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, ASCIIEncoding_GetMaxCharCount_m828DD0F81FA2A3F84D9105199D12D30D04C0E3D3_RuntimeMethod_var);
}
IL_0057:
{
int64_t L_12 = V_0;
return (((int32_t)((int32_t)L_12)));
}
}
// System.Text.Decoder System.Text.ASCIIEncoding::GetDecoder()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decoder_tEEF45EB6F965222036C49E8EC6BA8A0692AA1F26 * ASCIIEncoding_GetDecoder_mA934F385E4E41AF1ECFAA91CC04F1587FF87878B (ASCIIEncoding_t3A4744E997A7BE0CEF1D5AE3A35EFC4DFFDDC6B9 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ASCIIEncoding_GetDecoder_mA934F385E4E41AF1ECFAA91CC04F1587FF87878B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
DecoderNLS_tCDF0A810A2E2B738728A98BBB49F792E66BDF6CD * L_0 = (DecoderNLS_tCDF0A810A2E2B738728A98BBB49F792E66BDF6CD *)il2cpp_codegen_object_new(DecoderNLS_tCDF0A810A2E2B738728A98BBB49F792E66BDF6CD_il2cpp_TypeInfo_var);
DecoderNLS__ctor_m7909804265A4B50D45020D604E0802C278297E67(L_0, __this, /*hidden argument*/NULL);
return L_0;
}
}
// System.Text.Encoder System.Text.ASCIIEncoding::GetEncoder()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoder_t29B2697B0B775EABC52EBFB914F327BE9B1A3464 * ASCIIEncoding_GetEncoder_mDE0D289734DC7259779BBEC3267084DF3FFA87E8 (ASCIIEncoding_t3A4744E997A7BE0CEF1D5AE3A35EFC4DFFDDC6B9 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ASCIIEncoding_GetEncoder_mDE0D289734DC7259779BBEC3267084DF3FFA87E8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * L_0 = (EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 *)il2cpp_codegen_object_new(EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8_il2cpp_TypeInfo_var);
EncoderNLS__ctor_m3F11286A48DC8DEB96AB6B98EC9A1C0F79A11051(L_0, __this, /*hidden argument*/NULL);
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.Text.Decoder::SerializeDecoder(System.Runtime.Serialization.SerializationInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Decoder_SerializeDecoder_m9581A0FC542BF413F536FEE49E8973E88D3B840E (Decoder_tEEF45EB6F965222036C49E8EC6BA8A0692AA1F26 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Decoder_SerializeDecoder_m9581A0FC542BF413F536FEE49E8973E88D3B840E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0;
DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * L_1 = __this->get_m_fallback_0();
NullCheck(L_0);
SerializationInfo_AddValue_mC9D1E16476E24E1AFE7C59368D3BC0B35F64FBC6(L_0, _stringLiteralD72E5435917F6F46D498A64D5E536D56DC28C0FC, L_1, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Text.Decoder::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Decoder__ctor_m45B7A36C197C57ED0DF4F982C280603E2C8CC2A2 (Decoder_tEEF45EB6F965222036C49E8EC6BA8A0692AA1F26 * __this, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
return;
}
}
// System.Text.DecoderFallback System.Text.Decoder::get_Fallback()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * Decoder_get_Fallback_m9F1A02991ED3FD31BEAC0499EC7978CE386D03AE (Decoder_tEEF45EB6F965222036C49E8EC6BA8A0692AA1F26 * __this, const RuntimeMethod* method)
{
{
DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * L_0 = __this->get_m_fallback_0();
return L_0;
}
}
// System.Text.DecoderFallbackBuffer System.Text.Decoder::get_FallbackBuffer()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DecoderFallbackBuffer_t41EB1B3F5748BEEF5BE883DA09DBDB937441A83C * Decoder_get_FallbackBuffer_m2DBBD556551E9AE334B288AE83F72E69A7C4DA20 (Decoder_tEEF45EB6F965222036C49E8EC6BA8A0692AA1F26 * __this, const RuntimeMethod* method)
{
{
DecoderFallbackBuffer_t41EB1B3F5748BEEF5BE883DA09DBDB937441A83C * L_0 = __this->get_m_fallbackBuffer_1();
if (L_0)
{
goto IL_0033;
}
}
{
DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * L_1 = __this->get_m_fallback_0();
if (!L_1)
{
goto IL_0023;
}
}
{
DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * L_2 = __this->get_m_fallback_0();
NullCheck(L_2);
DecoderFallbackBuffer_t41EB1B3F5748BEEF5BE883DA09DBDB937441A83C * L_3 = VirtFuncInvoker0< DecoderFallbackBuffer_t41EB1B3F5748BEEF5BE883DA09DBDB937441A83C * >::Invoke(4 /* System.Text.DecoderFallbackBuffer System.Text.DecoderFallback::CreateFallbackBuffer() */, L_2);
__this->set_m_fallbackBuffer_1(L_3);
goto IL_0033;
}
IL_0023:
{
DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * L_4 = DecoderFallback_get_ReplacementFallback_m25F035A7268BAE39E55F606D2735A386DCB3D8EA(/*hidden argument*/NULL);
NullCheck(L_4);
DecoderFallbackBuffer_t41EB1B3F5748BEEF5BE883DA09DBDB937441A83C * L_5 = VirtFuncInvoker0< DecoderFallbackBuffer_t41EB1B3F5748BEEF5BE883DA09DBDB937441A83C * >::Invoke(4 /* System.Text.DecoderFallbackBuffer System.Text.DecoderFallback::CreateFallbackBuffer() */, L_4);
__this->set_m_fallbackBuffer_1(L_5);
}
IL_0033:
{
DecoderFallbackBuffer_t41EB1B3F5748BEEF5BE883DA09DBDB937441A83C * L_6 = __this->get_m_fallbackBuffer_1();
return L_6;
}
}
// System.Boolean System.Text.Decoder::get_InternalHasFallbackBuffer()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Decoder_get_InternalHasFallbackBuffer_m02F2ED8893F9E6DFBEDBC299829552C35D627156 (Decoder_tEEF45EB6F965222036C49E8EC6BA8A0692AA1F26 * __this, const RuntimeMethod* method)
{
{
DecoderFallbackBuffer_t41EB1B3F5748BEEF5BE883DA09DBDB937441A83C * L_0 = __this->get_m_fallbackBuffer_1();
return (bool)((!(((RuntimeObject*)(DecoderFallbackBuffer_t41EB1B3F5748BEEF5BE883DA09DBDB937441A83C *)L_0) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
}
// System.Void System.Text.Decoder::Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Decoder_Reset_m51BD73696D6661DD77D15393D545739011F67C9F (Decoder_tEEF45EB6F965222036C49E8EC6BA8A0692AA1F26 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Decoder_Reset_m51BD73696D6661DD77D15393D545739011F67C9F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_0 = NULL;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* V_1 = NULL;
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)0);
V_0 = L_0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = V_0;
int32_t L_2 = VirtFuncInvoker4< int32_t, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t, bool >::Invoke(6 /* System.Int32 System.Text.Decoder::GetCharCount(System.Byte[],System.Int32,System.Int32,System.Boolean) */, __this, L_1, 0, 0, (bool)1);
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_3 = (CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)SZArrayNew(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2_il2cpp_TypeInfo_var, (uint32_t)L_2);
V_1 = L_3;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = V_0;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_5 = V_1;
VirtFuncInvoker6< int32_t, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*, int32_t, bool >::Invoke(9 /* System.Int32 System.Text.Decoder::GetChars(System.Byte[],System.Int32,System.Int32,System.Char[],System.Int32,System.Boolean) */, __this, L_4, 0, 0, L_5, 0, (bool)1);
DecoderFallbackBuffer_t41EB1B3F5748BEEF5BE883DA09DBDB937441A83C * L_6 = __this->get_m_fallbackBuffer_1();
if (!L_6)
{
goto IL_0037;
}
}
{
DecoderFallbackBuffer_t41EB1B3F5748BEEF5BE883DA09DBDB937441A83C * L_7 = __this->get_m_fallbackBuffer_1();
NullCheck(L_7);
VirtActionInvoker0::Invoke(6 /* System.Void System.Text.DecoderFallbackBuffer::Reset() */, L_7);
}
IL_0037:
{
return;
}
}
// System.Int32 System.Text.Decoder::GetCharCount(System.Byte[],System.Int32,System.Int32,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Decoder_GetCharCount_mEA2849F389B9E57690FEC2FB84662C38CA6532F7 (Decoder_tEEF45EB6F965222036C49E8EC6BA8A0692AA1F26 * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___bytes0, int32_t ___index1, int32_t ___count2, bool ___flush3, const RuntimeMethod* method)
{
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___bytes0;
int32_t L_1 = ___index1;
int32_t L_2 = ___count2;
int32_t L_3 = VirtFuncInvoker3< int32_t, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t >::Invoke(5 /* System.Int32 System.Text.Decoder::GetCharCount(System.Byte[],System.Int32,System.Int32) */, __this, L_0, L_1, L_2);
return L_3;
}
}
// System.Int32 System.Text.Decoder::GetCharCount(System.Byte*,System.Int32,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Decoder_GetCharCount_m659CAE5416F76D73505156C24769C51221CECBC8 (Decoder_tEEF45EB6F965222036C49E8EC6BA8A0692AA1F26 * __this, uint8_t* ___bytes0, int32_t ___count1, bool ___flush2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Decoder_GetCharCount_m659CAE5416F76D73505156C24769C51221CECBC8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_0 = NULL;
int32_t V_1 = 0;
{
uint8_t* L_0 = ___bytes0;
if ((!(((uintptr_t)L_0) == ((uintptr_t)(((uintptr_t)0))))))
{
goto IL_001a;
}
}
{
String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral867AD8C2544ED5D38EC2B4986A28AA22B284F710, /*hidden argument*/NULL);
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m9EA692D49986AEBAC433CE3381331146109AE20F(L_2, _stringLiteralDAF529A73101C2BE626B99FC6938163E7A27620B, L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Decoder_GetCharCount_m659CAE5416F76D73505156C24769C51221CECBC8_RuntimeMethod_var);
}
IL_001a:
{
int32_t L_3 = ___count1;
if ((((int32_t)L_3) >= ((int32_t)0)))
{
goto IL_0033;
}
}
{
String_t* L_4 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, _stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556, L_4, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, Decoder_GetCharCount_m659CAE5416F76D73505156C24769C51221CECBC8_RuntimeMethod_var);
}
IL_0033:
{
int32_t L_6 = ___count1;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_7 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)L_6);
V_0 = L_7;
V_1 = 0;
goto IL_0049;
}
IL_003e:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_8 = V_0;
int32_t L_9 = V_1;
uint8_t* L_10 = ___bytes0;
int32_t L_11 = V_1;
int32_t L_12 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_10, (int32_t)L_11)));
NullCheck(L_8);
(L_8)->SetAt(static_cast<il2cpp_array_size_t>(L_9), (uint8_t)L_12);
int32_t L_13 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1));
}
IL_0049:
{
int32_t L_14 = V_1;
int32_t L_15 = ___count1;
if ((((int32_t)L_14) < ((int32_t)L_15)))
{
goto IL_003e;
}
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_16 = V_0;
int32_t L_17 = ___count1;
int32_t L_18 = VirtFuncInvoker3< int32_t, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t >::Invoke(5 /* System.Int32 System.Text.Decoder::GetCharCount(System.Byte[],System.Int32,System.Int32) */, __this, L_16, 0, L_17);
return L_18;
}
}
// System.Int32 System.Text.Decoder::GetChars(System.Byte[],System.Int32,System.Int32,System.Char[],System.Int32,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Decoder_GetChars_mEFDD1B24B4B4A0D6D86E848FBF26B6EFBF96B082 (Decoder_tEEF45EB6F965222036C49E8EC6BA8A0692AA1F26 * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___bytes0, int32_t ___byteIndex1, int32_t ___byteCount2, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___chars3, int32_t ___charIndex4, bool ___flush5, const RuntimeMethod* method)
{
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___bytes0;
int32_t L_1 = ___byteIndex1;
int32_t L_2 = ___byteCount2;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_3 = ___chars3;
int32_t L_4 = ___charIndex4;
int32_t L_5 = VirtFuncInvoker5< int32_t, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*, int32_t >::Invoke(8 /* System.Int32 System.Text.Decoder::GetChars(System.Byte[],System.Int32,System.Int32,System.Char[],System.Int32) */, __this, L_0, L_1, L_2, L_3, L_4);
return L_5;
}
}
// System.Int32 System.Text.Decoder::GetChars(System.Byte*,System.Int32,System.Char*,System.Int32,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Decoder_GetChars_m6FDAB407BC990656BCB7C8B21420C8BE461112E1 (Decoder_tEEF45EB6F965222036C49E8EC6BA8A0692AA1F26 * __this, uint8_t* ___bytes0, int32_t ___byteCount1, Il2CppChar* ___chars2, int32_t ___charCount3, bool ___flush4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Decoder_GetChars_m6FDAB407BC990656BCB7C8B21420C8BE461112E1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_0 = NULL;
int32_t V_1 = 0;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* V_2 = NULL;
int32_t V_3 = 0;
String_t* G_B5_0 = NULL;
String_t* G_B11_0 = NULL;
{
Il2CppChar* L_0 = ___chars2;
if ((((intptr_t)L_0) == ((intptr_t)(((uintptr_t)0)))))
{
goto IL_000a;
}
}
{
uint8_t* L_1 = ___bytes0;
if ((!(((uintptr_t)L_1) == ((uintptr_t)(((uintptr_t)0))))))
{
goto IL_002b;
}
}
IL_000a:
{
Il2CppChar* L_2 = ___chars2;
if ((((intptr_t)L_2) == ((intptr_t)(((uintptr_t)0)))))
{
goto IL_0016;
}
}
{
G_B5_0 = _stringLiteralDAF529A73101C2BE626B99FC6938163E7A27620B;
goto IL_001b;
}
IL_0016:
{
G_B5_0 = _stringLiteral76A91D6CE24FCC03EC2ECBB19E3012B5D5D40E2B;
}
IL_001b:
{
String_t* L_3 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral867AD8C2544ED5D38EC2B4986A28AA22B284F710, /*hidden argument*/NULL);
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_4 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m9EA692D49986AEBAC433CE3381331146109AE20F(L_4, G_B5_0, L_3, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, Decoder_GetChars_m6FDAB407BC990656BCB7C8B21420C8BE461112E1_RuntimeMethod_var);
}
IL_002b:
{
int32_t L_5 = ___byteCount1;
if ((((int32_t)L_5) < ((int32_t)0)))
{
goto IL_0034;
}
}
{
int32_t L_6 = ___charCount3;
if ((((int32_t)L_6) >= ((int32_t)0)))
{
goto IL_0054;
}
}
IL_0034:
{
int32_t L_7 = ___byteCount1;
if ((((int32_t)L_7) < ((int32_t)0)))
{
goto IL_003f;
}
}
{
G_B11_0 = _stringLiteralAB1A79FB2CBABAF9BE681B601509BD40528C11D8;
goto IL_0044;
}
IL_003f:
{
G_B11_0 = _stringLiteral278316CA5ED0FC3A0A92ED4DC8DA6CA9FB56DEBA;
}
IL_0044:
{
String_t* L_8 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_9 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_9, G_B11_0, L_8, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, Decoder_GetChars_m6FDAB407BC990656BCB7C8B21420C8BE461112E1_RuntimeMethod_var);
}
IL_0054:
{
int32_t L_10 = ___byteCount1;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_11 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)L_10);
V_0 = L_11;
V_1 = 0;
goto IL_006a;
}
IL_005f:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_12 = V_0;
int32_t L_13 = V_1;
uint8_t* L_14 = ___bytes0;
int32_t L_15 = V_1;
int32_t L_16 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_14, (int32_t)L_15)));
NullCheck(L_12);
(L_12)->SetAt(static_cast<il2cpp_array_size_t>(L_13), (uint8_t)L_16);
int32_t L_17 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1));
}
IL_006a:
{
int32_t L_18 = V_1;
int32_t L_19 = ___byteCount1;
if ((((int32_t)L_18) < ((int32_t)L_19)))
{
goto IL_005f;
}
}
{
int32_t L_20 = ___charCount3;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_21 = (CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)SZArrayNew(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2_il2cpp_TypeInfo_var, (uint32_t)L_20);
V_2 = L_21;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_22 = V_0;
int32_t L_23 = ___byteCount1;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_24 = V_2;
bool L_25 = ___flush4;
int32_t L_26 = VirtFuncInvoker6< int32_t, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*, int32_t, bool >::Invoke(9 /* System.Int32 System.Text.Decoder::GetChars(System.Byte[],System.Int32,System.Int32,System.Char[],System.Int32,System.Boolean) */, __this, L_22, 0, L_23, L_24, 0, L_25);
V_3 = L_26;
int32_t L_27 = V_3;
int32_t L_28 = ___charCount3;
if ((((int32_t)L_27) >= ((int32_t)L_28)))
{
goto IL_008c;
}
}
{
int32_t L_29 = V_3;
___charCount3 = L_29;
}
IL_008c:
{
V_1 = 0;
goto IL_009e;
}
IL_0090:
{
Il2CppChar* L_30 = ___chars2;
int32_t L_31 = V_1;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_32 = V_2;
int32_t L_33 = V_1;
NullCheck(L_32);
int32_t L_34 = L_33;
uint16_t L_35 = (uint16_t)(L_32)->GetAt(static_cast<il2cpp_array_size_t>(L_34));
*((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_30, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_31)), (int32_t)2))))) = (int16_t)L_35;
int32_t L_36 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_36, (int32_t)1));
}
IL_009e:
{
int32_t L_37 = V_1;
int32_t L_38 = ___charCount3;
if ((((int32_t)L_37) < ((int32_t)L_38)))
{
goto IL_0090;
}
}
{
int32_t L_39 = ___charCount3;
return L_39;
}
}
#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.Text.DecoderExceptionFallback::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecoderExceptionFallback__ctor_mB1650642BDE4E7B6AEE8A5652723DAEEC6214DC2 (DecoderExceptionFallback_tF6CA264320D5F576FED0265DBEC89C1F5759C8C9 * __this, const RuntimeMethod* method)
{
{
DecoderFallback__ctor_m54A9DF12218E6A07D4316D7FDE75FDFA216C9437(__this, /*hidden argument*/NULL);
return;
}
}
// System.Text.DecoderFallbackBuffer System.Text.DecoderExceptionFallback::CreateFallbackBuffer()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DecoderFallbackBuffer_t41EB1B3F5748BEEF5BE883DA09DBDB937441A83C * DecoderExceptionFallback_CreateFallbackBuffer_mE3BE00683390C7D05D5983DBA429DAAC4574B3DC (DecoderExceptionFallback_tF6CA264320D5F576FED0265DBEC89C1F5759C8C9 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DecoderExceptionFallback_CreateFallbackBuffer_mE3BE00683390C7D05D5983DBA429DAAC4574B3DC_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
DecoderExceptionFallbackBuffer_t1E27F547826A8F4F4CCDA2CB51E232EFB64000EA * L_0 = (DecoderExceptionFallbackBuffer_t1E27F547826A8F4F4CCDA2CB51E232EFB64000EA *)il2cpp_codegen_object_new(DecoderExceptionFallbackBuffer_t1E27F547826A8F4F4CCDA2CB51E232EFB64000EA_il2cpp_TypeInfo_var);
DecoderExceptionFallbackBuffer__ctor_m1D8FAD2C79007A64085B660CEB39712370BF16A0(L_0, /*hidden argument*/NULL);
return L_0;
}
}
// System.Int32 System.Text.DecoderExceptionFallback::get_MaxCharCount()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DecoderExceptionFallback_get_MaxCharCount_mB92053E6895BC4263A1F89B49A4B0D06C29195F8 (DecoderExceptionFallback_tF6CA264320D5F576FED0265DBEC89C1F5759C8C9 * __this, const RuntimeMethod* method)
{
{
return 0;
}
}
// System.Boolean System.Text.DecoderExceptionFallback::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DecoderExceptionFallback_Equals_m15BE9998BC3E5F04585744BD138062F1CA65B830 (DecoderExceptionFallback_tF6CA264320D5F576FED0265DBEC89C1F5759C8C9 * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DecoderExceptionFallback_Equals_m15BE9998BC3E5F04585744BD138062F1CA65B830_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___value0;
if (!((DecoderExceptionFallback_tF6CA264320D5F576FED0265DBEC89C1F5759C8C9 *)IsInstSealed((RuntimeObject*)L_0, DecoderExceptionFallback_tF6CA264320D5F576FED0265DBEC89C1F5759C8C9_il2cpp_TypeInfo_var)))
{
goto IL_000a;
}
}
{
return (bool)1;
}
IL_000a:
{
return (bool)0;
}
}
// System.Int32 System.Text.DecoderExceptionFallback::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DecoderExceptionFallback_GetHashCode_m97EDF543DC06F137CC26D0F300F7311630743951 (DecoderExceptionFallback_tF6CA264320D5F576FED0265DBEC89C1F5759C8C9 * __this, const RuntimeMethod* method)
{
{
return ((int32_t)879);
}
}
#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.Text.DecoderExceptionFallbackBuffer::Fallback(System.Byte[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DecoderExceptionFallbackBuffer_Fallback_m623223D482C6878D0A51BE99CAA3755065162AD0 (DecoderExceptionFallbackBuffer_t1E27F547826A8F4F4CCDA2CB51E232EFB64000EA * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___bytesUnknown0, int32_t ___index1, const RuntimeMethod* method)
{
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___bytesUnknown0;
int32_t L_1 = ___index1;
DecoderExceptionFallbackBuffer_Throw_m2BCDB8F40B14EE1BFD9EA52D428586D55AC38462(__this, L_0, L_1, /*hidden argument*/NULL);
return (bool)1;
}
}
// System.Char System.Text.DecoderExceptionFallbackBuffer::GetNextChar()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar DecoderExceptionFallbackBuffer_GetNextChar_mFFA3B8806E52A68969B874B61AE25E6BBB8447A1 (DecoderExceptionFallbackBuffer_t1E27F547826A8F4F4CCDA2CB51E232EFB64000EA * __this, const RuntimeMethod* method)
{
{
return 0;
}
}
// System.Void System.Text.DecoderExceptionFallbackBuffer::Throw(System.Byte[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecoderExceptionFallbackBuffer_Throw_m2BCDB8F40B14EE1BFD9EA52D428586D55AC38462 (DecoderExceptionFallbackBuffer_t1E27F547826A8F4F4CCDA2CB51E232EFB64000EA * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___bytesUnknown0, int32_t ___index1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DecoderExceptionFallbackBuffer_Throw_m2BCDB8F40B14EE1BFD9EA52D428586D55AC38462_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
StringBuilder_t * V_0 = NULL;
int32_t V_1 = 0;
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___bytesUnknown0;
NullCheck(L_0);
StringBuilder_t * L_1 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
StringBuilder__ctor_m1C0F2D97B838537A2D0F64033AE4EF02D150A956(L_1, ((int32_t)il2cpp_codegen_multiply((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_0)->max_length)))), (int32_t)3)), /*hidden argument*/NULL);
V_0 = L_1;
V_1 = 0;
goto IL_0048;
}
IL_000f:
{
StringBuilder_t * L_2 = V_0;
NullCheck(L_2);
StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_2, _stringLiteral1E5C2F367F02E47A8C160CDA1CD9D91DECBAC441, /*hidden argument*/NULL);
StringBuilder_t * L_3 = V_0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = ___bytesUnknown0;
int32_t L_5 = V_1;
NullCheck(L_4);
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_6 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
String_t* L_7 = Byte_ToString_m731FDB27391432D7F14B6769B5D0A3E248803D25((uint8_t*)((L_4)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_5))), _stringLiteral9F792B61D0EC544D91E7AFF34E2E99EE3CF2B313, L_6, /*hidden argument*/NULL);
NullCheck(L_3);
StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_3, L_7, /*hidden argument*/NULL);
StringBuilder_t * L_8 = V_0;
NullCheck(L_8);
StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_8, _stringLiteral4FF447B8EF42CA51FA6FB287BED8D40F49BE58F1, /*hidden argument*/NULL);
int32_t L_9 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1));
}
IL_0048:
{
int32_t L_10 = V_1;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_11 = ___bytesUnknown0;
NullCheck(L_11);
if ((((int32_t)L_10) >= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_11)->max_length)))))))
{
goto IL_0053;
}
}
{
int32_t L_12 = V_1;
if ((((int32_t)L_12) < ((int32_t)((int32_t)20))))
{
goto IL_000f;
}
}
IL_0053:
{
int32_t L_13 = V_1;
if ((!(((uint32_t)L_13) == ((uint32_t)((int32_t)20)))))
{
goto IL_0064;
}
}
{
StringBuilder_t * L_14 = V_0;
NullCheck(L_14);
StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_14, _stringLiteral41ACFBBE0BF9743D4D3DB3BED46D472A616254EF, /*hidden argument*/NULL);
}
IL_0064:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_15 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)2);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_16 = L_15;
StringBuilder_t * L_17 = V_0;
NullCheck(L_16);
ArrayElementTypeCheck (L_16, L_17);
(L_16)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_17);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_18 = L_16;
int32_t L_19 = ___index1;
int32_t L_20 = L_19;
RuntimeObject * L_21 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_20);
NullCheck(L_18);
ArrayElementTypeCheck (L_18, L_21);
(L_18)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_21);
String_t* L_22 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteralFE33A7567702B746D875A97C59E45B51214D3B20, L_18, /*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_23 = ___bytesUnknown0;
int32_t L_24 = ___index1;
DecoderFallbackException_t600999E267866BD2B6A47BF1E525E779171FD41A * L_25 = (DecoderFallbackException_t600999E267866BD2B6A47BF1E525E779171FD41A *)il2cpp_codegen_object_new(DecoderFallbackException_t600999E267866BD2B6A47BF1E525E779171FD41A_il2cpp_TypeInfo_var);
DecoderFallbackException__ctor_m6F2DB8FEA829AF4ECF009AC7800207B9CA520CD2(L_25, L_22, L_23, L_24, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_25, DecoderExceptionFallbackBuffer_Throw_m2BCDB8F40B14EE1BFD9EA52D428586D55AC38462_RuntimeMethod_var);
}
}
// System.Void System.Text.DecoderExceptionFallbackBuffer::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecoderExceptionFallbackBuffer__ctor_m1D8FAD2C79007A64085B660CEB39712370BF16A0 (DecoderExceptionFallbackBuffer_t1E27F547826A8F4F4CCDA2CB51E232EFB64000EA * __this, const RuntimeMethod* method)
{
{
DecoderFallbackBuffer__ctor_mD3BD448C945CFCFD5ECB5D3F774D156A340F1046(__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.Object System.Text.DecoderFallback::get_InternalSyncObject()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * DecoderFallback_get_InternalSyncObject_m18A79E25704EB01D64E1651DB4E97F1FB80EFEFE (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DecoderFallback_get_InternalSyncObject_m18A79E25704EB01D64E1651DB4E97F1FB80EFEFE_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject * V_0 = NULL;
{
RuntimeObject * L_0 = ((DecoderFallback_t128445EB7676870485230893338EF044F6B72F60_StaticFields*)il2cpp_codegen_static_fields_for(DecoderFallback_t128445EB7676870485230893338EF044F6B72F60_il2cpp_TypeInfo_var))->get_s_InternalSyncObject_3();
if (L_0)
{
goto IL_001a;
}
}
{
RuntimeObject * L_1 = (RuntimeObject *)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(L_1, /*hidden argument*/NULL);
V_0 = L_1;
RuntimeObject * L_2 = V_0;
InterlockedCompareExchangeImpl<RuntimeObject *>((RuntimeObject **)(((DecoderFallback_t128445EB7676870485230893338EF044F6B72F60_StaticFields*)il2cpp_codegen_static_fields_for(DecoderFallback_t128445EB7676870485230893338EF044F6B72F60_il2cpp_TypeInfo_var))->get_address_of_s_InternalSyncObject_3()), L_2, NULL);
}
IL_001a:
{
RuntimeObject * L_3 = ((DecoderFallback_t128445EB7676870485230893338EF044F6B72F60_StaticFields*)il2cpp_codegen_static_fields_for(DecoderFallback_t128445EB7676870485230893338EF044F6B72F60_il2cpp_TypeInfo_var))->get_s_InternalSyncObject_3();
return L_3;
}
}
// System.Text.DecoderFallback System.Text.DecoderFallback::get_ReplacementFallback()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * DecoderFallback_get_ReplacementFallback_m25F035A7268BAE39E55F606D2735A386DCB3D8EA (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DecoderFallback_get_ReplacementFallback_m25F035A7268BAE39E55F606D2735A386DCB3D8EA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject * 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);
{
DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * L_0 = ((DecoderFallback_t128445EB7676870485230893338EF044F6B72F60_StaticFields*)il2cpp_codegen_static_fields_for(DecoderFallback_t128445EB7676870485230893338EF044F6B72F60_il2cpp_TypeInfo_var))->get_replacementFallback_1();
il2cpp_codegen_memory_barrier();
if (L_0)
{
goto IL_003a;
}
}
{
RuntimeObject * L_1 = DecoderFallback_get_InternalSyncObject_m18A79E25704EB01D64E1651DB4E97F1FB80EFEFE(/*hidden argument*/NULL);
V_0 = L_1;
V_1 = (bool)0;
}
IL_0011:
try
{ // begin try (depth: 1)
{
RuntimeObject * L_2 = V_0;
Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(L_2, (bool*)(&V_1), /*hidden argument*/NULL);
DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * L_3 = ((DecoderFallback_t128445EB7676870485230893338EF044F6B72F60_StaticFields*)il2cpp_codegen_static_fields_for(DecoderFallback_t128445EB7676870485230893338EF044F6B72F60_il2cpp_TypeInfo_var))->get_replacementFallback_1();
il2cpp_codegen_memory_barrier();
if (L_3)
{
goto IL_002e;
}
}
IL_0022:
{
DecoderReplacementFallback_t8CF74B2DAE2A08AEA7DF6366778D2E3EA75FC742 * L_4 = (DecoderReplacementFallback_t8CF74B2DAE2A08AEA7DF6366778D2E3EA75FC742 *)il2cpp_codegen_object_new(DecoderReplacementFallback_t8CF74B2DAE2A08AEA7DF6366778D2E3EA75FC742_il2cpp_TypeInfo_var);
DecoderReplacementFallback__ctor_m078EB13AB10F7A933588BFADECA3C81C058ED231(L_4, /*hidden argument*/NULL);
il2cpp_codegen_memory_barrier();
((DecoderFallback_t128445EB7676870485230893338EF044F6B72F60_StaticFields*)il2cpp_codegen_static_fields_for(DecoderFallback_t128445EB7676870485230893338EF044F6B72F60_il2cpp_TypeInfo_var))->set_replacementFallback_1(L_4);
}
IL_002e:
{
IL2CPP_LEAVE(0x3A, FINALLY_0030);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0030;
}
FINALLY_0030:
{ // begin finally (depth: 1)
{
bool L_5 = V_1;
if (!L_5)
{
goto IL_0039;
}
}
IL_0033:
{
RuntimeObject * L_6 = V_0;
Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_6, /*hidden argument*/NULL);
}
IL_0039:
{
IL2CPP_END_FINALLY(48)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(48)
{
IL2CPP_JUMP_TBL(0x3A, IL_003a)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_003a:
{
DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * L_7 = ((DecoderFallback_t128445EB7676870485230893338EF044F6B72F60_StaticFields*)il2cpp_codegen_static_fields_for(DecoderFallback_t128445EB7676870485230893338EF044F6B72F60_il2cpp_TypeInfo_var))->get_replacementFallback_1();
il2cpp_codegen_memory_barrier();
return L_7;
}
}
// System.Text.DecoderFallback System.Text.DecoderFallback::get_ExceptionFallback()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * DecoderFallback_get_ExceptionFallback_mAE7F326600DFAA0FAAD6D9053C771FF8EE99B40B (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DecoderFallback_get_ExceptionFallback_mAE7F326600DFAA0FAAD6D9053C771FF8EE99B40B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject * 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);
{
DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * L_0 = ((DecoderFallback_t128445EB7676870485230893338EF044F6B72F60_StaticFields*)il2cpp_codegen_static_fields_for(DecoderFallback_t128445EB7676870485230893338EF044F6B72F60_il2cpp_TypeInfo_var))->get_exceptionFallback_2();
il2cpp_codegen_memory_barrier();
if (L_0)
{
goto IL_003a;
}
}
{
RuntimeObject * L_1 = DecoderFallback_get_InternalSyncObject_m18A79E25704EB01D64E1651DB4E97F1FB80EFEFE(/*hidden argument*/NULL);
V_0 = L_1;
V_1 = (bool)0;
}
IL_0011:
try
{ // begin try (depth: 1)
{
RuntimeObject * L_2 = V_0;
Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(L_2, (bool*)(&V_1), /*hidden argument*/NULL);
DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * L_3 = ((DecoderFallback_t128445EB7676870485230893338EF044F6B72F60_StaticFields*)il2cpp_codegen_static_fields_for(DecoderFallback_t128445EB7676870485230893338EF044F6B72F60_il2cpp_TypeInfo_var))->get_exceptionFallback_2();
il2cpp_codegen_memory_barrier();
if (L_3)
{
goto IL_002e;
}
}
IL_0022:
{
DecoderExceptionFallback_tF6CA264320D5F576FED0265DBEC89C1F5759C8C9 * L_4 = (DecoderExceptionFallback_tF6CA264320D5F576FED0265DBEC89C1F5759C8C9 *)il2cpp_codegen_object_new(DecoderExceptionFallback_tF6CA264320D5F576FED0265DBEC89C1F5759C8C9_il2cpp_TypeInfo_var);
DecoderExceptionFallback__ctor_mB1650642BDE4E7B6AEE8A5652723DAEEC6214DC2(L_4, /*hidden argument*/NULL);
il2cpp_codegen_memory_barrier();
((DecoderFallback_t128445EB7676870485230893338EF044F6B72F60_StaticFields*)il2cpp_codegen_static_fields_for(DecoderFallback_t128445EB7676870485230893338EF044F6B72F60_il2cpp_TypeInfo_var))->set_exceptionFallback_2(L_4);
}
IL_002e:
{
IL2CPP_LEAVE(0x3A, FINALLY_0030);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0030;
}
FINALLY_0030:
{ // begin finally (depth: 1)
{
bool L_5 = V_1;
if (!L_5)
{
goto IL_0039;
}
}
IL_0033:
{
RuntimeObject * L_6 = V_0;
Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_6, /*hidden argument*/NULL);
}
IL_0039:
{
IL2CPP_END_FINALLY(48)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(48)
{
IL2CPP_JUMP_TBL(0x3A, IL_003a)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_003a:
{
DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * L_7 = ((DecoderFallback_t128445EB7676870485230893338EF044F6B72F60_StaticFields*)il2cpp_codegen_static_fields_for(DecoderFallback_t128445EB7676870485230893338EF044F6B72F60_il2cpp_TypeInfo_var))->get_exceptionFallback_2();
il2cpp_codegen_memory_barrier();
return L_7;
}
}
// System.Void System.Text.DecoderFallback::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecoderFallback__ctor_m54A9DF12218E6A07D4316D7FDE75FDFA216C9437 (DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * __this, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__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.Text.DecoderFallbackBuffer::Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecoderFallbackBuffer_Reset_mCBF61F49CB9FB877D640A0C8541DA09C7561AABE (DecoderFallbackBuffer_t41EB1B3F5748BEEF5BE883DA09DBDB937441A83C * __this, const RuntimeMethod* method)
{
IL_0000:
{
Il2CppChar L_0 = VirtFuncInvoker0< Il2CppChar >::Invoke(5 /* System.Char System.Text.DecoderFallbackBuffer::GetNextChar() */, __this);
if (L_0)
{
goto IL_0000;
}
}
{
return;
}
}
// System.Void System.Text.DecoderFallbackBuffer::InternalReset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecoderFallbackBuffer_InternalReset_mAA3A04B329865E28A746D984381B9A45C4123B33 (DecoderFallbackBuffer_t41EB1B3F5748BEEF5BE883DA09DBDB937441A83C * __this, const RuntimeMethod* method)
{
{
__this->set_byteStart_0((uint8_t*)(((uintptr_t)0)));
VirtActionInvoker0::Invoke(6 /* System.Void System.Text.DecoderFallbackBuffer::Reset() */, __this);
return;
}
}
// System.Void System.Text.DecoderFallbackBuffer::InternalInitialize(System.Byte*,System.Char*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecoderFallbackBuffer_InternalInitialize_m251EB4670E9C98584BA6CB032F9109C1956DE0D7 (DecoderFallbackBuffer_t41EB1B3F5748BEEF5BE883DA09DBDB937441A83C * __this, uint8_t* ___byteStart0, Il2CppChar* ___charEnd1, const RuntimeMethod* method)
{
{
uint8_t* L_0 = ___byteStart0;
__this->set_byteStart_0((uint8_t*)L_0);
Il2CppChar* L_1 = ___charEnd1;
__this->set_charEnd_1((Il2CppChar*)L_1);
return;
}
}
// System.Boolean System.Text.DecoderFallbackBuffer::InternalFallback(System.Byte[],System.Byte*,System.Char*&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DecoderFallbackBuffer_InternalFallback_m53D020473CB1701FDFDDBCC042AAED2473A39869 (DecoderFallbackBuffer_t41EB1B3F5748BEEF5BE883DA09DBDB937441A83C * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___bytes0, uint8_t* ___pBytes1, Il2CppChar** ___chars2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DecoderFallbackBuffer_InternalFallback_m53D020473CB1701FDFDDBCC042AAED2473A39869_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Il2CppChar V_0 = 0x0;
Il2CppChar* V_1 = NULL;
bool V_2 = false;
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___bytes0;
uint8_t* L_1 = ___pBytes1;
uint8_t* L_2 = __this->get_byteStart_0();
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_3 = ___bytes0;
NullCheck(L_3);
bool L_4 = VirtFuncInvoker2< bool, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t >::Invoke(4 /* System.Boolean System.Text.DecoderFallbackBuffer::Fallback(System.Byte[],System.Int32) */, __this, L_0, (((int32_t)((int32_t)((int64_t)il2cpp_codegen_subtract((int64_t)(((int64_t)((int64_t)(intptr_t)((uint8_t*)((intptr_t)((uint8_t*)il2cpp_codegen_subtract((intptr_t)L_1, (intptr_t)L_2))/(int32_t)1))))), (int64_t)(((int64_t)((int64_t)(((int32_t)((int32_t)(((RuntimeArray*)L_3)->max_length)))))))))))));
if (!L_4)
{
goto IL_008f;
}
}
{
Il2CppChar** L_5 = ___chars2;
V_1 = (Il2CppChar*)(*((intptr_t*)L_5));
V_2 = (bool)0;
goto IL_006f;
}
IL_0021:
{
Il2CppChar L_6 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var);
bool L_7 = Char_IsSurrogate_m464F9F75070ACD88165EE4734D617622A6667CB1(L_6, /*hidden argument*/NULL);
if (!L_7)
{
goto IL_005d;
}
}
{
Il2CppChar L_8 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var);
bool L_9 = Char_IsHighSurrogate_m64C60C09A8561520E43C8527D3DC38FF97E6274D(L_8, /*hidden argument*/NULL);
if (!L_9)
{
goto IL_0048;
}
}
{
bool L_10 = V_2;
if (!L_10)
{
goto IL_0044;
}
}
{
String_t* L_11 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral27461778DEE27391FA6989DD3BF8A0988F190F59, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_12 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_12, L_11, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, DecoderFallbackBuffer_InternalFallback_m53D020473CB1701FDFDDBCC042AAED2473A39869_RuntimeMethod_var);
}
IL_0044:
{
V_2 = (bool)1;
goto IL_005d;
}
IL_0048:
{
bool L_13 = V_2;
if (L_13)
{
goto IL_005b;
}
}
{
String_t* L_14 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral27461778DEE27391FA6989DD3BF8A0988F190F59, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_15 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_15, L_14, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, DecoderFallbackBuffer_InternalFallback_m53D020473CB1701FDFDDBCC042AAED2473A39869_RuntimeMethod_var);
}
IL_005b:
{
V_2 = (bool)0;
}
IL_005d:
{
Il2CppChar* L_16 = V_1;
Il2CppChar* L_17 = __this->get_charEnd_1();
if ((!(((uintptr_t)L_16) >= ((uintptr_t)L_17))))
{
goto IL_0068;
}
}
{
return (bool)0;
}
IL_0068:
{
Il2CppChar* L_18 = V_1;
Il2CppChar* L_19 = (Il2CppChar*)L_18;
V_1 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_19, (int32_t)2));
Il2CppChar L_20 = V_0;
*((int16_t*)L_19) = (int16_t)L_20;
}
IL_006f:
{
Il2CppChar L_21 = VirtFuncInvoker0< Il2CppChar >::Invoke(5 /* System.Char System.Text.DecoderFallbackBuffer::GetNextChar() */, __this);
Il2CppChar L_22 = L_21;
V_0 = L_22;
if (L_22)
{
goto IL_0021;
}
}
{
bool L_23 = V_2;
if (!L_23)
{
goto IL_008c;
}
}
{
String_t* L_24 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral27461778DEE27391FA6989DD3BF8A0988F190F59, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_25 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_25, L_24, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_25, DecoderFallbackBuffer_InternalFallback_m53D020473CB1701FDFDDBCC042AAED2473A39869_RuntimeMethod_var);
}
IL_008c:
{
Il2CppChar** L_26 = ___chars2;
Il2CppChar* L_27 = V_1;
*((intptr_t*)L_26) = (intptr_t)L_27;
}
IL_008f:
{
return (bool)1;
}
}
// System.Int32 System.Text.DecoderFallbackBuffer::InternalFallback(System.Byte[],System.Byte*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DecoderFallbackBuffer_InternalFallback_mDDF4B0A298A13A463E53ABEEF76C02C0406FA414 (DecoderFallbackBuffer_t41EB1B3F5748BEEF5BE883DA09DBDB937441A83C * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___bytes0, uint8_t* ___pBytes1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DecoderFallbackBuffer_InternalFallback_mDDF4B0A298A13A463E53ABEEF76C02C0406FA414_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
Il2CppChar V_1 = 0x0;
bool V_2 = false;
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___bytes0;
uint8_t* L_1 = ___pBytes1;
uint8_t* L_2 = __this->get_byteStart_0();
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_3 = ___bytes0;
NullCheck(L_3);
bool L_4 = VirtFuncInvoker2< bool, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t >::Invoke(4 /* System.Boolean System.Text.DecoderFallbackBuffer::Fallback(System.Byte[],System.Int32) */, __this, L_0, (((int32_t)((int32_t)((int64_t)il2cpp_codegen_subtract((int64_t)(((int64_t)((int64_t)(intptr_t)((uint8_t*)((intptr_t)((uint8_t*)il2cpp_codegen_subtract((intptr_t)L_1, (intptr_t)L_2))/(int32_t)1))))), (int64_t)(((int64_t)((int64_t)(((int32_t)((int32_t)(((RuntimeArray*)L_3)->max_length)))))))))))));
if (!L_4)
{
goto IL_007f;
}
}
{
V_0 = 0;
V_2 = (bool)0;
goto IL_0060;
}
IL_0020:
{
Il2CppChar L_5 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var);
bool L_6 = Char_IsSurrogate_m464F9F75070ACD88165EE4734D617622A6667CB1(L_5, /*hidden argument*/NULL);
if (!L_6)
{
goto IL_005c;
}
}
{
Il2CppChar L_7 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var);
bool L_8 = Char_IsHighSurrogate_m64C60C09A8561520E43C8527D3DC38FF97E6274D(L_7, /*hidden argument*/NULL);
if (!L_8)
{
goto IL_0047;
}
}
{
bool L_9 = V_2;
if (!L_9)
{
goto IL_0043;
}
}
{
String_t* L_10 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral27461778DEE27391FA6989DD3BF8A0988F190F59, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_11 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_11, L_10, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, DecoderFallbackBuffer_InternalFallback_mDDF4B0A298A13A463E53ABEEF76C02C0406FA414_RuntimeMethod_var);
}
IL_0043:
{
V_2 = (bool)1;
goto IL_005c;
}
IL_0047:
{
bool L_12 = V_2;
if (L_12)
{
goto IL_005a;
}
}
{
String_t* L_13 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral27461778DEE27391FA6989DD3BF8A0988F190F59, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_14 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_14, L_13, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_14, DecoderFallbackBuffer_InternalFallback_mDDF4B0A298A13A463E53ABEEF76C02C0406FA414_RuntimeMethod_var);
}
IL_005a:
{
V_2 = (bool)0;
}
IL_005c:
{
int32_t L_15 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1));
}
IL_0060:
{
Il2CppChar L_16 = VirtFuncInvoker0< Il2CppChar >::Invoke(5 /* System.Char System.Text.DecoderFallbackBuffer::GetNextChar() */, __this);
Il2CppChar L_17 = L_16;
V_1 = L_17;
if (L_17)
{
goto IL_0020;
}
}
{
bool L_18 = V_2;
if (!L_18)
{
goto IL_007d;
}
}
{
String_t* L_19 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral27461778DEE27391FA6989DD3BF8A0988F190F59, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_20 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_20, L_19, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_20, DecoderFallbackBuffer_InternalFallback_mDDF4B0A298A13A463E53ABEEF76C02C0406FA414_RuntimeMethod_var);
}
IL_007d:
{
int32_t L_21 = V_0;
return L_21;
}
IL_007f:
{
return 0;
}
}
// System.Void System.Text.DecoderFallbackBuffer::ThrowLastBytesRecursive(System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecoderFallbackBuffer_ThrowLastBytesRecursive_mC2C38567BFC28253161CE100AC68FB8325AE753C (DecoderFallbackBuffer_t41EB1B3F5748BEEF5BE883DA09DBDB937441A83C * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___bytesUnknown0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DecoderFallbackBuffer_ThrowLastBytesRecursive_mC2C38567BFC28253161CE100AC68FB8325AE753C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
StringBuilder_t * V_0 = NULL;
int32_t V_1 = 0;
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___bytesUnknown0;
NullCheck(L_0);
StringBuilder_t * L_1 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
StringBuilder__ctor_m1C0F2D97B838537A2D0F64033AE4EF02D150A956(L_1, ((int32_t)il2cpp_codegen_multiply((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_0)->max_length)))), (int32_t)3)), /*hidden argument*/NULL);
V_0 = L_1;
V_1 = 0;
goto IL_0046;
}
IL_000f:
{
StringBuilder_t * L_2 = V_0;
NullCheck(L_2);
int32_t L_3 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_2, /*hidden argument*/NULL);
if ((((int32_t)L_3) <= ((int32_t)0)))
{
goto IL_0024;
}
}
{
StringBuilder_t * L_4 = V_0;
NullCheck(L_4);
StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_4, _stringLiteralB858CB282617FB0956D960215C8E84D1CCF909C6, /*hidden argument*/NULL);
}
IL_0024:
{
StringBuilder_t * L_5 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_6 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_7 = ___bytesUnknown0;
int32_t L_8 = V_1;
NullCheck(L_7);
int32_t L_9 = L_8;
uint8_t L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
uint8_t L_11 = L_10;
RuntimeObject * L_12 = Box(Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_il2cpp_TypeInfo_var, &L_11);
String_t* L_13 = String_Format_m30892041DA5F50D7B8CFD82FFC0F55B5B97A2B7F(L_6, _stringLiteral7ACCA304FE963539CFDDCF6B8196F086F19C0105, L_12, /*hidden argument*/NULL);
NullCheck(L_5);
StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_5, L_13, /*hidden argument*/NULL);
int32_t L_14 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)1));
}
IL_0046:
{
int32_t L_15 = V_1;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_16 = ___bytesUnknown0;
NullCheck(L_16);
if ((((int32_t)L_15) >= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_16)->max_length)))))))
{
goto IL_0051;
}
}
{
int32_t L_17 = V_1;
if ((((int32_t)L_17) < ((int32_t)((int32_t)20))))
{
goto IL_000f;
}
}
IL_0051:
{
int32_t L_18 = V_1;
if ((!(((uint32_t)L_18) == ((uint32_t)((int32_t)20)))))
{
goto IL_0062;
}
}
{
StringBuilder_t * L_19 = V_0;
NullCheck(L_19);
StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_19, _stringLiteral41ACFBBE0BF9743D4D3DB3BED46D472A616254EF, /*hidden argument*/NULL);
}
IL_0062:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_20 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_21 = L_20;
StringBuilder_t * L_22 = V_0;
NullCheck(L_22);
String_t* L_23 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_22);
NullCheck(L_21);
ArrayElementTypeCheck (L_21, L_23);
(L_21)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_23);
String_t* L_24 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteralE7C5CD57248F4E07626424CDD3264DE81ED7158F, L_21, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_25 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_25, L_24, _stringLiteralAA446C31061E98A887E43DF65EBA2E37EDA483E8, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_25, DecoderFallbackBuffer_ThrowLastBytesRecursive_mC2C38567BFC28253161CE100AC68FB8325AE753C_RuntimeMethod_var);
}
}
// System.Void System.Text.DecoderFallbackBuffer::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecoderFallbackBuffer__ctor_mD3BD448C945CFCFD5ECB5D3F774D156A340F1046 (DecoderFallbackBuffer_t41EB1B3F5748BEEF5BE883DA09DBDB937441A83C * __this, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__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.Text.DecoderFallbackException::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecoderFallbackException__ctor_m3E5F0BA9CF3234B979CE2F3D55A406E8275B2142 (DecoderFallbackException_t600999E267866BD2B6A47BF1E525E779171FD41A * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DecoderFallbackException__ctor_m3E5F0BA9CF3234B979CE2F3D55A406E8275B2142_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralF7623357202A0F46697BF67CA5E89239746A567B, /*hidden argument*/NULL);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(__this, L_0, /*hidden argument*/NULL);
Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2147024809), /*hidden argument*/NULL);
return;
}
}
// System.Void System.Text.DecoderFallbackException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecoderFallbackException__ctor_mF3083013935E6ADBB5F0C6C6BF3C38FF34B5AB0D (DecoderFallbackException_t600999E267866BD2B6A47BF1E525E779171FD41A * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method)
{
{
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0;
StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_1 = ___context1;
ArgumentException__ctor_m33453ED48103C3A4893FBE06039DF7473FBAD7E6(__this, L_0, L_1, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Text.DecoderFallbackException::.ctor(System.String,System.Byte[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecoderFallbackException__ctor_m6F2DB8FEA829AF4ECF009AC7800207B9CA520CD2 (DecoderFallbackException_t600999E267866BD2B6A47BF1E525E779171FD41A * __this, String_t* ___message0, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___bytesUnknown1, int32_t ___index2, const RuntimeMethod* method)
{
{
String_t* L_0 = ___message0;
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(__this, L_0, /*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = ___bytesUnknown1;
__this->set_bytesUnknown_18(L_1);
int32_t L_2 = ___index2;
__this->set_index_19(L_2);
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.Text.DecoderNLS::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecoderNLS__ctor_mEAB8ADBF0F5D28F34EC3CD08F91BBFA39622CB04 (DecoderNLS_tCDF0A810A2E2B738728A98BBB49F792E66BDF6CD * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DecoderNLS__ctor_mEAB8ADBF0F5D28F34EC3CD08F91BBFA39622CB04_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Decoder__ctor_m45B7A36C197C57ED0DF4F982C280603E2C8CC2A2(__this, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_0 = CultureInfo_get_CurrentCulture_mD86F3D8E5D332FB304F80D9B9CA4DE849C2A6831(/*hidden argument*/NULL);
String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral12B316FD412591B95637D99714DDDBD3638B2D91, /*hidden argument*/NULL);
Type_t * L_2 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(__this, /*hidden argument*/NULL);
String_t* L_3 = String_Format_m30892041DA5F50D7B8CFD82FFC0F55B5B97A2B7F(L_0, L_1, L_2, /*hidden argument*/NULL);
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_4 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_4, L_3, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, DecoderNLS__ctor_mEAB8ADBF0F5D28F34EC3CD08F91BBFA39622CB04_RuntimeMethod_var);
}
}
// System.Void System.Text.DecoderNLS::System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecoderNLS_System_Runtime_Serialization_ISerializable_GetObjectData_m04F06981D68559C6FC26C8CFD4E3B34BE4DC45EF (DecoderNLS_tCDF0A810A2E2B738728A98BBB49F792E66BDF6CD * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DecoderNLS_System_Runtime_Serialization_ISerializable_GetObjectData_m04F06981D68559C6FC26C8CFD4E3B34BE4DC45EF_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0;
Decoder_SerializeDecoder_m9581A0FC542BF413F536FEE49E8973E88D3B840E(__this, L_0, /*hidden argument*/NULL);
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_1 = ___info0;
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_2 = __this->get_m_encoding_2();
NullCheck(L_1);
SerializationInfo_AddValue_mC9D1E16476E24E1AFE7C59368D3BC0B35F64FBC6(L_1, _stringLiteral14A9DC09E10179B15BEAF94C0AED53904ACE0336, L_2, /*hidden argument*/NULL);
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_3 = ___info0;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_4 = { reinterpret_cast<intptr_t> (DefaultDecoder_t3872BD77BDC12EB0F34D0DEE8E34D7A1FE49F91C_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_5 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_4, /*hidden argument*/NULL);
NullCheck(L_3);
SerializationInfo_SetType_m3F30AFEB3555E20E995D31713C0604E26B2CF784(L_3, L_5, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Text.DecoderNLS::.ctor(System.Text.Encoding)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecoderNLS__ctor_m7909804265A4B50D45020D604E0802C278297E67 (DecoderNLS_tCDF0A810A2E2B738728A98BBB49F792E66BDF6CD * __this, Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___encoding0, const RuntimeMethod* method)
{
{
Decoder__ctor_m45B7A36C197C57ED0DF4F982C280603E2C8CC2A2(__this, /*hidden argument*/NULL);
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_0 = ___encoding0;
__this->set_m_encoding_2(L_0);
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_1 = __this->get_m_encoding_2();
NullCheck(L_1);
DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * L_2 = Encoding_get_DecoderFallback_m237581892E1C081234AFD800FCBC321C911EB657_inline(L_1, /*hidden argument*/NULL);
((Decoder_tEEF45EB6F965222036C49E8EC6BA8A0692AA1F26 *)__this)->set_m_fallback_0(L_2);
VirtActionInvoker0::Invoke(4 /* System.Void System.Text.Decoder::Reset() */, __this);
return;
}
}
// System.Void System.Text.DecoderNLS::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecoderNLS__ctor_mC984F2089D25CDC9625B6DC33CB330337182C4C9 (DecoderNLS_tCDF0A810A2E2B738728A98BBB49F792E66BDF6CD * __this, const RuntimeMethod* method)
{
{
Decoder__ctor_m45B7A36C197C57ED0DF4F982C280603E2C8CC2A2(__this, /*hidden argument*/NULL);
__this->set_m_encoding_2((Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 *)NULL);
VirtActionInvoker0::Invoke(4 /* System.Void System.Text.Decoder::Reset() */, __this);
return;
}
}
// System.Void System.Text.DecoderNLS::Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecoderNLS_Reset_m3BB024B2AC139675FA5A51657F2436174496A9C7 (DecoderNLS_tCDF0A810A2E2B738728A98BBB49F792E66BDF6CD * __this, const RuntimeMethod* method)
{
{
DecoderFallbackBuffer_t41EB1B3F5748BEEF5BE883DA09DBDB937441A83C * L_0 = ((Decoder_tEEF45EB6F965222036C49E8EC6BA8A0692AA1F26 *)__this)->get_m_fallbackBuffer_1();
if (!L_0)
{
goto IL_0013;
}
}
{
DecoderFallbackBuffer_t41EB1B3F5748BEEF5BE883DA09DBDB937441A83C * L_1 = ((Decoder_tEEF45EB6F965222036C49E8EC6BA8A0692AA1F26 *)__this)->get_m_fallbackBuffer_1();
NullCheck(L_1);
VirtActionInvoker0::Invoke(6 /* System.Void System.Text.DecoderFallbackBuffer::Reset() */, L_1);
}
IL_0013:
{
return;
}
}
// System.Int32 System.Text.DecoderNLS::GetCharCount(System.Byte[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DecoderNLS_GetCharCount_mB8945B8AB2836A4A8D56791DC6A8904A1A78E374 (DecoderNLS_tCDF0A810A2E2B738728A98BBB49F792E66BDF6CD * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___bytes0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method)
{
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___bytes0;
int32_t L_1 = ___index1;
int32_t L_2 = ___count2;
int32_t L_3 = VirtFuncInvoker4< int32_t, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t, bool >::Invoke(6 /* System.Int32 System.Text.Decoder::GetCharCount(System.Byte[],System.Int32,System.Int32,System.Boolean) */, __this, L_0, L_1, L_2, (bool)0);
return L_3;
}
}
// System.Int32 System.Text.DecoderNLS::GetCharCount(System.Byte[],System.Int32,System.Int32,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DecoderNLS_GetCharCount_m6DC2F90BD86F62E37617DE12F658DB14D3DC7848 (DecoderNLS_tCDF0A810A2E2B738728A98BBB49F792E66BDF6CD * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___bytes0, int32_t ___index1, int32_t ___count2, bool ___flush3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DecoderNLS_GetCharCount_m6DC2F90BD86F62E37617DE12F658DB14D3DC7848_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
uint8_t* V_0 = NULL;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_1 = NULL;
String_t* G_B7_0 = NULL;
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___bytes0;
if (L_0)
{
goto IL_0018;
}
}
{
String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral867AD8C2544ED5D38EC2B4986A28AA22B284F710, /*hidden argument*/NULL);
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m9EA692D49986AEBAC433CE3381331146109AE20F(L_2, _stringLiteralDAF529A73101C2BE626B99FC6938163E7A27620B, L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, DecoderNLS_GetCharCount_m6DC2F90BD86F62E37617DE12F658DB14D3DC7848_RuntimeMethod_var);
}
IL_0018:
{
int32_t L_3 = ___index1;
if ((((int32_t)L_3) < ((int32_t)0)))
{
goto IL_0020;
}
}
{
int32_t L_4 = ___count2;
if ((((int32_t)L_4) >= ((int32_t)0)))
{
goto IL_0040;
}
}
IL_0020:
{
int32_t L_5 = ___index1;
if ((((int32_t)L_5) < ((int32_t)0)))
{
goto IL_002b;
}
}
{
G_B7_0 = _stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556;
goto IL_0030;
}
IL_002b:
{
G_B7_0 = _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346;
}
IL_0030:
{
String_t* L_6 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_7 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_7, G_B7_0, L_6, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, DecoderNLS_GetCharCount_m6DC2F90BD86F62E37617DE12F658DB14D3DC7848_RuntimeMethod_var);
}
IL_0040:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_8 = ___bytes0;
NullCheck(L_8);
int32_t L_9 = ___index1;
int32_t L_10 = ___count2;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_8)->max_length)))), (int32_t)L_9))) >= ((int32_t)L_10)))
{
goto IL_005d;
}
}
{
String_t* L_11 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral58DB15989CC5229A62FDAD47E614D05B051584E7, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_12 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_12, _stringLiteralDAF529A73101C2BE626B99FC6938163E7A27620B, L_11, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, DecoderNLS_GetCharCount_m6DC2F90BD86F62E37617DE12F658DB14D3DC7848_RuntimeMethod_var);
}
IL_005d:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_13 = ___bytes0;
NullCheck(L_13);
if ((((RuntimeArray*)L_13)->max_length))
{
goto IL_0069;
}
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_14 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)1);
___bytes0 = L_14;
}
IL_0069:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_15 = ___bytes0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_16 = L_15;
V_1 = L_16;
if (!L_16)
{
goto IL_0073;
}
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_17 = V_1;
NullCheck(L_17);
if ((((int32_t)((int32_t)(((RuntimeArray*)L_17)->max_length)))))
{
goto IL_0078;
}
}
IL_0073:
{
V_0 = (uint8_t*)(((uintptr_t)0));
goto IL_0081;
}
IL_0078:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_18 = V_1;
NullCheck(L_18);
V_0 = (uint8_t*)(((uintptr_t)((L_18)->GetAddressAt(static_cast<il2cpp_array_size_t>(0)))));
}
IL_0081:
{
uint8_t* L_19 = V_0;
int32_t L_20 = ___index1;
int32_t L_21 = ___count2;
bool L_22 = ___flush3;
int32_t L_23 = VirtFuncInvoker3< int32_t, uint8_t*, int32_t, bool >::Invoke(7 /* System.Int32 System.Text.Decoder::GetCharCount(System.Byte*,System.Int32,System.Boolean) */, __this, (uint8_t*)(uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_19, (int32_t)L_20)), L_21, L_22);
return L_23;
}
}
// System.Int32 System.Text.DecoderNLS::GetCharCount(System.Byte*,System.Int32,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DecoderNLS_GetCharCount_m3C0DAE26FA13646A53CE6F9FD084361E68EB61CA (DecoderNLS_tCDF0A810A2E2B738728A98BBB49F792E66BDF6CD * __this, uint8_t* ___bytes0, int32_t ___count1, bool ___flush2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DecoderNLS_GetCharCount_m3C0DAE26FA13646A53CE6F9FD084361E68EB61CA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
uint8_t* L_0 = ___bytes0;
if ((!(((uintptr_t)L_0) == ((uintptr_t)(((uintptr_t)0))))))
{
goto IL_001a;
}
}
{
String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral867AD8C2544ED5D38EC2B4986A28AA22B284F710, /*hidden argument*/NULL);
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m9EA692D49986AEBAC433CE3381331146109AE20F(L_2, _stringLiteralDAF529A73101C2BE626B99FC6938163E7A27620B, L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, DecoderNLS_GetCharCount_m3C0DAE26FA13646A53CE6F9FD084361E68EB61CA_RuntimeMethod_var);
}
IL_001a:
{
int32_t L_3 = ___count1;
if ((((int32_t)L_3) >= ((int32_t)0)))
{
goto IL_0033;
}
}
{
String_t* L_4 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, _stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556, L_4, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, DecoderNLS_GetCharCount_m3C0DAE26FA13646A53CE6F9FD084361E68EB61CA_RuntimeMethod_var);
}
IL_0033:
{
bool L_6 = ___flush2;
__this->set_m_mustFlush_3(L_6);
__this->set_m_throwOnOverflow_4((bool)1);
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_7 = __this->get_m_encoding_2();
uint8_t* L_8 = ___bytes0;
int32_t L_9 = ___count1;
NullCheck(L_7);
int32_t L_10 = VirtFuncInvoker3< int32_t, uint8_t*, int32_t, DecoderNLS_tCDF0A810A2E2B738728A98BBB49F792E66BDF6CD * >::Invoke(20 /* System.Int32 System.Text.Encoding::GetCharCount(System.Byte*,System.Int32,System.Text.DecoderNLS) */, L_7, (uint8_t*)(uint8_t*)L_8, L_9, __this);
return L_10;
}
}
// System.Int32 System.Text.DecoderNLS::GetChars(System.Byte[],System.Int32,System.Int32,System.Char[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DecoderNLS_GetChars_mC3FFCF594D6BACE7175F00DC61D0007C2CAEFC93 (DecoderNLS_tCDF0A810A2E2B738728A98BBB49F792E66BDF6CD * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___bytes0, int32_t ___byteIndex1, int32_t ___byteCount2, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___chars3, int32_t ___charIndex4, const RuntimeMethod* method)
{
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___bytes0;
int32_t L_1 = ___byteIndex1;
int32_t L_2 = ___byteCount2;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_3 = ___chars3;
int32_t L_4 = ___charIndex4;
int32_t L_5 = VirtFuncInvoker6< int32_t, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*, int32_t, bool >::Invoke(9 /* System.Int32 System.Text.Decoder::GetChars(System.Byte[],System.Int32,System.Int32,System.Char[],System.Int32,System.Boolean) */, __this, L_0, L_1, L_2, L_3, L_4, (bool)0);
return L_5;
}
}
// System.Int32 System.Text.DecoderNLS::GetChars(System.Byte[],System.Int32,System.Int32,System.Char[],System.Int32,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DecoderNLS_GetChars_m31A09AA57B8581993774E6829C4108CD7405E835 (DecoderNLS_tCDF0A810A2E2B738728A98BBB49F792E66BDF6CD * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___bytes0, int32_t ___byteIndex1, int32_t ___byteCount2, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___chars3, int32_t ___charIndex4, bool ___flush5, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DecoderNLS_GetChars_m31A09AA57B8581993774E6829C4108CD7405E835_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
uint8_t* V_1 = NULL;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_2 = NULL;
Il2CppChar* V_3 = NULL;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* V_4 = NULL;
String_t* G_B5_0 = NULL;
String_t* G_B11_0 = NULL;
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___bytes0;
if (!L_0)
{
goto IL_0007;
}
}
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_1 = ___chars3;
if (L_1)
{
goto IL_0026;
}
}
IL_0007:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = ___bytes0;
if (!L_2)
{
goto IL_0011;
}
}
{
G_B5_0 = _stringLiteral76A91D6CE24FCC03EC2ECBB19E3012B5D5D40E2B;
goto IL_0016;
}
IL_0011:
{
G_B5_0 = _stringLiteralDAF529A73101C2BE626B99FC6938163E7A27620B;
}
IL_0016:
{
String_t* L_3 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral867AD8C2544ED5D38EC2B4986A28AA22B284F710, /*hidden argument*/NULL);
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_4 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m9EA692D49986AEBAC433CE3381331146109AE20F(L_4, G_B5_0, L_3, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, DecoderNLS_GetChars_m31A09AA57B8581993774E6829C4108CD7405E835_RuntimeMethod_var);
}
IL_0026:
{
int32_t L_5 = ___byteIndex1;
if ((((int32_t)L_5) < ((int32_t)0)))
{
goto IL_002e;
}
}
{
int32_t L_6 = ___byteCount2;
if ((((int32_t)L_6) >= ((int32_t)0)))
{
goto IL_004e;
}
}
IL_002e:
{
int32_t L_7 = ___byteIndex1;
if ((((int32_t)L_7) < ((int32_t)0)))
{
goto IL_0039;
}
}
{
G_B11_0 = _stringLiteral278316CA5ED0FC3A0A92ED4DC8DA6CA9FB56DEBA;
goto IL_003e;
}
IL_0039:
{
G_B11_0 = _stringLiteralB95EFA8990E2BB5BCCEF52DF47A31FC66F723D4B;
}
IL_003e:
{
String_t* L_8 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_9 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_9, G_B11_0, L_8, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, DecoderNLS_GetChars_m31A09AA57B8581993774E6829C4108CD7405E835_RuntimeMethod_var);
}
IL_004e:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_10 = ___bytes0;
NullCheck(L_10);
int32_t L_11 = ___byteIndex1;
int32_t L_12 = ___byteCount2;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_10)->max_length)))), (int32_t)L_11))) >= ((int32_t)L_12)))
{
goto IL_006b;
}
}
{
String_t* L_13 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral58DB15989CC5229A62FDAD47E614D05B051584E7, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_14 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_14, _stringLiteralDAF529A73101C2BE626B99FC6938163E7A27620B, L_13, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_14, DecoderNLS_GetChars_m31A09AA57B8581993774E6829C4108CD7405E835_RuntimeMethod_var);
}
IL_006b:
{
int32_t L_15 = ___charIndex4;
if ((((int32_t)L_15) < ((int32_t)0)))
{
goto IL_0078;
}
}
{
int32_t L_16 = ___charIndex4;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_17 = ___chars3;
NullCheck(L_17);
if ((((int32_t)L_16) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_17)->max_length)))))))
{
goto IL_008d;
}
}
IL_0078:
{
String_t* L_18 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_19 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_19, _stringLiteral74EBCD92BCF0C393F47C1A4EEA9851BB06BCEF0C, L_18, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_19, DecoderNLS_GetChars_m31A09AA57B8581993774E6829C4108CD7405E835_RuntimeMethod_var);
}
IL_008d:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_20 = ___bytes0;
NullCheck(L_20);
if ((((RuntimeArray*)L_20)->max_length))
{
goto IL_0099;
}
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_21 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)1);
___bytes0 = L_21;
}
IL_0099:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_22 = ___chars3;
NullCheck(L_22);
int32_t L_23 = ___charIndex4;
V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_22)->max_length)))), (int32_t)L_23));
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_24 = ___chars3;
NullCheck(L_24);
if ((((RuntimeArray*)L_24)->max_length))
{
goto IL_00ae;
}
}
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_25 = (CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)SZArrayNew(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2_il2cpp_TypeInfo_var, (uint32_t)1);
___chars3 = L_25;
}
IL_00ae:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_26 = ___bytes0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_27 = L_26;
V_2 = L_27;
if (!L_27)
{
goto IL_00b8;
}
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_28 = V_2;
NullCheck(L_28);
if ((((int32_t)((int32_t)(((RuntimeArray*)L_28)->max_length)))))
{
goto IL_00bd;
}
}
IL_00b8:
{
V_1 = (uint8_t*)(((uintptr_t)0));
goto IL_00c6;
}
IL_00bd:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_29 = V_2;
NullCheck(L_29);
V_1 = (uint8_t*)(((uintptr_t)((L_29)->GetAddressAt(static_cast<il2cpp_array_size_t>(0)))));
}
IL_00c6:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_30 = ___chars3;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_31 = L_30;
V_4 = L_31;
if (!L_31)
{
goto IL_00d3;
}
}
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_32 = V_4;
NullCheck(L_32);
if ((((int32_t)((int32_t)(((RuntimeArray*)L_32)->max_length)))))
{
goto IL_00d8;
}
}
IL_00d3:
{
V_3 = (Il2CppChar*)(((uintptr_t)0));
goto IL_00e2;
}
IL_00d8:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_33 = V_4;
NullCheck(L_33);
V_3 = (Il2CppChar*)(((uintptr_t)((L_33)->GetAddressAt(static_cast<il2cpp_array_size_t>(0)))));
}
IL_00e2:
{
uint8_t* L_34 = V_1;
int32_t L_35 = ___byteIndex1;
int32_t L_36 = ___byteCount2;
Il2CppChar* L_37 = V_3;
int32_t L_38 = ___charIndex4;
int32_t L_39 = V_0;
bool L_40 = ___flush5;
int32_t L_41 = VirtFuncInvoker5< int32_t, uint8_t*, int32_t, Il2CppChar*, int32_t, bool >::Invoke(10 /* System.Int32 System.Text.Decoder::GetChars(System.Byte*,System.Int32,System.Char*,System.Int32,System.Boolean) */, __this, (uint8_t*)(uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_34, (int32_t)L_35)), L_36, (Il2CppChar*)(Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_37, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_38)), (int32_t)2)))), L_39, L_40);
return L_41;
}
}
// System.Int32 System.Text.DecoderNLS::GetChars(System.Byte*,System.Int32,System.Char*,System.Int32,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DecoderNLS_GetChars_m39499B8C3394B70BF6BBDEC1B140D364E29C31CC (DecoderNLS_tCDF0A810A2E2B738728A98BBB49F792E66BDF6CD * __this, uint8_t* ___bytes0, int32_t ___byteCount1, Il2CppChar* ___chars2, int32_t ___charCount3, bool ___flush4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DecoderNLS_GetChars_m39499B8C3394B70BF6BBDEC1B140D364E29C31CC_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* G_B5_0 = NULL;
String_t* G_B11_0 = NULL;
{
Il2CppChar* L_0 = ___chars2;
if ((((intptr_t)L_0) == ((intptr_t)(((uintptr_t)0)))))
{
goto IL_000a;
}
}
{
uint8_t* L_1 = ___bytes0;
if ((!(((uintptr_t)L_1) == ((uintptr_t)(((uintptr_t)0))))))
{
goto IL_002b;
}
}
IL_000a:
{
Il2CppChar* L_2 = ___chars2;
if ((((intptr_t)L_2) == ((intptr_t)(((uintptr_t)0)))))
{
goto IL_0016;
}
}
{
G_B5_0 = _stringLiteralDAF529A73101C2BE626B99FC6938163E7A27620B;
goto IL_001b;
}
IL_0016:
{
G_B5_0 = _stringLiteral76A91D6CE24FCC03EC2ECBB19E3012B5D5D40E2B;
}
IL_001b:
{
String_t* L_3 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral867AD8C2544ED5D38EC2B4986A28AA22B284F710, /*hidden argument*/NULL);
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_4 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m9EA692D49986AEBAC433CE3381331146109AE20F(L_4, G_B5_0, L_3, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, DecoderNLS_GetChars_m39499B8C3394B70BF6BBDEC1B140D364E29C31CC_RuntimeMethod_var);
}
IL_002b:
{
int32_t L_5 = ___byteCount1;
if ((((int32_t)L_5) < ((int32_t)0)))
{
goto IL_0034;
}
}
{
int32_t L_6 = ___charCount3;
if ((((int32_t)L_6) >= ((int32_t)0)))
{
goto IL_0054;
}
}
IL_0034:
{
int32_t L_7 = ___byteCount1;
if ((((int32_t)L_7) < ((int32_t)0)))
{
goto IL_003f;
}
}
{
G_B11_0 = _stringLiteralAB1A79FB2CBABAF9BE681B601509BD40528C11D8;
goto IL_0044;
}
IL_003f:
{
G_B11_0 = _stringLiteral278316CA5ED0FC3A0A92ED4DC8DA6CA9FB56DEBA;
}
IL_0044:
{
String_t* L_8 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_9 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_9, G_B11_0, L_8, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, DecoderNLS_GetChars_m39499B8C3394B70BF6BBDEC1B140D364E29C31CC_RuntimeMethod_var);
}
IL_0054:
{
bool L_10 = ___flush4;
__this->set_m_mustFlush_3(L_10);
__this->set_m_throwOnOverflow_4((bool)1);
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_11 = __this->get_m_encoding_2();
uint8_t* L_12 = ___bytes0;
int32_t L_13 = ___byteCount1;
Il2CppChar* L_14 = ___chars2;
int32_t L_15 = ___charCount3;
NullCheck(L_11);
int32_t L_16 = VirtFuncInvoker5< int32_t, uint8_t*, int32_t, Il2CppChar*, int32_t, DecoderNLS_tCDF0A810A2E2B738728A98BBB49F792E66BDF6CD * >::Invoke(24 /* System.Int32 System.Text.Encoding::GetChars(System.Byte*,System.Int32,System.Char*,System.Int32,System.Text.DecoderNLS) */, L_11, (uint8_t*)(uint8_t*)L_12, L_13, (Il2CppChar*)(Il2CppChar*)L_14, L_15, __this);
return L_16;
}
}
// System.Boolean System.Text.DecoderNLS::get_MustFlush()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DecoderNLS_get_MustFlush_m0C8DCAF42B8FE1A1C39E68C06A5D681A0DA1C552 (DecoderNLS_tCDF0A810A2E2B738728A98BBB49F792E66BDF6CD * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_m_mustFlush_3();
return L_0;
}
}
// System.Boolean System.Text.DecoderNLS::get_HasState()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DecoderNLS_get_HasState_m4159ABA2BBF62E4D8AA045D8E9B877F7F0ACB4C1 (DecoderNLS_tCDF0A810A2E2B738728A98BBB49F792E66BDF6CD * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// System.Void System.Text.DecoderNLS::ClearMustFlush()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecoderNLS_ClearMustFlush_m345839D32E273BAE8CDFCD4EA624AA82C8A474C8 (DecoderNLS_tCDF0A810A2E2B738728A98BBB49F792E66BDF6CD * __this, const RuntimeMethod* method)
{
{
__this->set_m_mustFlush_3((bool)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.Text.DecoderReplacementFallback::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecoderReplacementFallback__ctor_m078EB13AB10F7A933588BFADECA3C81C058ED231 (DecoderReplacementFallback_t8CF74B2DAE2A08AEA7DF6366778D2E3EA75FC742 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DecoderReplacementFallback__ctor_m078EB13AB10F7A933588BFADECA3C81C058ED231_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
DecoderReplacementFallback__ctor_m9D82FC93423AD9B954F28E30B20BF14DAFB01A5B(__this, _stringLiteral5BAB61EB53176449E25C2C82F172B82CB13FFB9D, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Text.DecoderReplacementFallback::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecoderReplacementFallback__ctor_m9D82FC93423AD9B954F28E30B20BF14DAFB01A5B (DecoderReplacementFallback_t8CF74B2DAE2A08AEA7DF6366778D2E3EA75FC742 * __this, String_t* ___replacement0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DecoderReplacementFallback__ctor_m9D82FC93423AD9B954F28E30B20BF14DAFB01A5B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
int32_t V_1 = 0;
{
DecoderFallback__ctor_m54A9DF12218E6A07D4316D7FDE75FDFA216C9437(__this, /*hidden argument*/NULL);
String_t* L_0 = ___replacement0;
if (L_0)
{
goto IL_0014;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral91B5C0A6D4701FE02DC3B4EB37DF29C5719A9EC6, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, DecoderReplacementFallback__ctor_m9D82FC93423AD9B954F28E30B20BF14DAFB01A5B_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (bool)0;
V_1 = 0;
goto IL_0045;
}
IL_001a:
{
String_t* L_2 = ___replacement0;
int32_t L_3 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var);
bool L_4 = Char_IsSurrogate_m43C03392CA71985B36FE7EB29B6ECB2DABA2680F(L_2, L_3, /*hidden argument*/NULL);
if (!L_4)
{
goto IL_003e;
}
}
{
String_t* L_5 = ___replacement0;
int32_t L_6 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var);
bool L_7 = Char_IsHighSurrogate_m8AB8BB9DEC2443D5799232FDA89C5BD0E5E091DB(L_5, L_6, /*hidden argument*/NULL);
if (!L_7)
{
goto IL_0033;
}
}
{
bool L_8 = V_0;
if (L_8)
{
goto IL_004e;
}
}
{
V_0 = (bool)1;
goto IL_0041;
}
IL_0033:
{
bool L_9 = V_0;
if (L_9)
{
goto IL_003a;
}
}
{
V_0 = (bool)1;
goto IL_004e;
}
IL_003a:
{
V_0 = (bool)0;
goto IL_0041;
}
IL_003e:
{
bool L_10 = V_0;
if (L_10)
{
goto IL_004e;
}
}
IL_0041:
{
int32_t L_11 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)1));
}
IL_0045:
{
int32_t L_12 = V_1;
String_t* L_13 = ___replacement0;
NullCheck(L_13);
int32_t L_14 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_13, /*hidden argument*/NULL);
if ((((int32_t)L_12) < ((int32_t)L_14)))
{
goto IL_001a;
}
}
IL_004e:
{
bool L_15 = V_0;
if (!L_15)
{
goto IL_006f;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_16 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_17 = L_16;
NullCheck(L_17);
ArrayElementTypeCheck (L_17, _stringLiteral91B5C0A6D4701FE02DC3B4EB37DF29C5719A9EC6);
(L_17)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)_stringLiteral91B5C0A6D4701FE02DC3B4EB37DF29C5719A9EC6);
String_t* L_18 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteral27461778DEE27391FA6989DD3BF8A0988F190F59, L_17, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_19 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_19, L_18, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_19, DecoderReplacementFallback__ctor_m9D82FC93423AD9B954F28E30B20BF14DAFB01A5B_RuntimeMethod_var);
}
IL_006f:
{
String_t* L_20 = ___replacement0;
__this->set_strDefault_4(L_20);
return;
}
}
// System.String System.Text.DecoderReplacementFallback::get_DefaultString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DecoderReplacementFallback_get_DefaultString_m7ED43521155BA25273CD47953D2AB0E0033066D3 (DecoderReplacementFallback_t8CF74B2DAE2A08AEA7DF6366778D2E3EA75FC742 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_strDefault_4();
return L_0;
}
}
// System.Text.DecoderFallbackBuffer System.Text.DecoderReplacementFallback::CreateFallbackBuffer()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DecoderFallbackBuffer_t41EB1B3F5748BEEF5BE883DA09DBDB937441A83C * DecoderReplacementFallback_CreateFallbackBuffer_m58EBE4EC55BFA7AD53FCD9EBAD57C3711D397BB9 (DecoderReplacementFallback_t8CF74B2DAE2A08AEA7DF6366778D2E3EA75FC742 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DecoderReplacementFallback_CreateFallbackBuffer_m58EBE4EC55BFA7AD53FCD9EBAD57C3711D397BB9_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
DecoderReplacementFallbackBuffer_t1D90752C8EFF20A65277F02C619E16C373790D23 * L_0 = (DecoderReplacementFallbackBuffer_t1D90752C8EFF20A65277F02C619E16C373790D23 *)il2cpp_codegen_object_new(DecoderReplacementFallbackBuffer_t1D90752C8EFF20A65277F02C619E16C373790D23_il2cpp_TypeInfo_var);
DecoderReplacementFallbackBuffer__ctor_m9B96FC13DF9DBF34B2C3A5B515F2715989225BEA(L_0, __this, /*hidden argument*/NULL);
return L_0;
}
}
// System.Int32 System.Text.DecoderReplacementFallback::get_MaxCharCount()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DecoderReplacementFallback_get_MaxCharCount_mB15049D7DD5F37C0CED7AB0F7CDC73B9239A1889 (DecoderReplacementFallback_t8CF74B2DAE2A08AEA7DF6366778D2E3EA75FC742 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_strDefault_4();
NullCheck(L_0);
int32_t L_1 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_0, /*hidden argument*/NULL);
return L_1;
}
}
// System.Boolean System.Text.DecoderReplacementFallback::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DecoderReplacementFallback_Equals_m43C71FC374F022BFBCE93CDDBC11D133D3024E9A (DecoderReplacementFallback_t8CF74B2DAE2A08AEA7DF6366778D2E3EA75FC742 * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DecoderReplacementFallback_Equals_m43C71FC374F022BFBCE93CDDBC11D133D3024E9A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
DecoderReplacementFallback_t8CF74B2DAE2A08AEA7DF6366778D2E3EA75FC742 * V_0 = NULL;
{
RuntimeObject * L_0 = ___value0;
V_0 = ((DecoderReplacementFallback_t8CF74B2DAE2A08AEA7DF6366778D2E3EA75FC742 *)IsInstSealed((RuntimeObject*)L_0, DecoderReplacementFallback_t8CF74B2DAE2A08AEA7DF6366778D2E3EA75FC742_il2cpp_TypeInfo_var));
DecoderReplacementFallback_t8CF74B2DAE2A08AEA7DF6366778D2E3EA75FC742 * L_1 = V_0;
if (!L_1)
{
goto IL_001c;
}
}
{
String_t* L_2 = __this->get_strDefault_4();
DecoderReplacementFallback_t8CF74B2DAE2A08AEA7DF6366778D2E3EA75FC742 * L_3 = V_0;
NullCheck(L_3);
String_t* L_4 = L_3->get_strDefault_4();
bool L_5 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_2, L_4, /*hidden argument*/NULL);
return L_5;
}
IL_001c:
{
return (bool)0;
}
}
// System.Int32 System.Text.DecoderReplacementFallback::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DecoderReplacementFallback_GetHashCode_mCF9B1463E9A0603FC82211795E3FF5B44564A6A8 (DecoderReplacementFallback_t8CF74B2DAE2A08AEA7DF6366778D2E3EA75FC742 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_strDefault_4();
NullCheck(L_0);
int32_t L_1 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, 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.Text.DecoderReplacementFallbackBuffer::.ctor(System.Text.DecoderReplacementFallback)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecoderReplacementFallbackBuffer__ctor_m9B96FC13DF9DBF34B2C3A5B515F2715989225BEA (DecoderReplacementFallbackBuffer_t1D90752C8EFF20A65277F02C619E16C373790D23 * __this, DecoderReplacementFallback_t8CF74B2DAE2A08AEA7DF6366778D2E3EA75FC742 * ___fallback0, const RuntimeMethod* method)
{
{
__this->set_fallbackCount_3((-1));
__this->set_fallbackIndex_4((-1));
DecoderFallbackBuffer__ctor_mD3BD448C945CFCFD5ECB5D3F774D156A340F1046(__this, /*hidden argument*/NULL);
DecoderReplacementFallback_t8CF74B2DAE2A08AEA7DF6366778D2E3EA75FC742 * L_0 = ___fallback0;
NullCheck(L_0);
String_t* L_1 = DecoderReplacementFallback_get_DefaultString_m7ED43521155BA25273CD47953D2AB0E0033066D3_inline(L_0, /*hidden argument*/NULL);
__this->set_strDefault_2(L_1);
return;
}
}
// System.Boolean System.Text.DecoderReplacementFallbackBuffer::Fallback(System.Byte[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DecoderReplacementFallbackBuffer_Fallback_m4B093FD7398EE72918B5C6AF30E2872AB2804AB8 (DecoderReplacementFallbackBuffer_t1D90752C8EFF20A65277F02C619E16C373790D23 * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___bytesUnknown0, int32_t ___index1, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_fallbackCount_3();
if ((((int32_t)L_0) < ((int32_t)1)))
{
goto IL_0010;
}
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = ___bytesUnknown0;
DecoderFallbackBuffer_ThrowLastBytesRecursive_mC2C38567BFC28253161CE100AC68FB8325AE753C(__this, L_1, /*hidden argument*/NULL);
}
IL_0010:
{
String_t* L_2 = __this->get_strDefault_2();
NullCheck(L_2);
int32_t L_3 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_2, /*hidden argument*/NULL);
if (L_3)
{
goto IL_001f;
}
}
{
return (bool)0;
}
IL_001f:
{
String_t* L_4 = __this->get_strDefault_2();
NullCheck(L_4);
int32_t L_5 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_4, /*hidden argument*/NULL);
__this->set_fallbackCount_3(L_5);
__this->set_fallbackIndex_4((-1));
return (bool)1;
}
}
// System.Char System.Text.DecoderReplacementFallbackBuffer::GetNextChar()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar DecoderReplacementFallbackBuffer_GetNextChar_m1391F4CAA88E8F64AAE99D2C2FB8F78FB736D805 (DecoderReplacementFallbackBuffer_t1D90752C8EFF20A65277F02C619E16C373790D23 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_fallbackCount_3();
__this->set_fallbackCount_3(((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)1)));
int32_t L_1 = __this->get_fallbackIndex_4();
__this->set_fallbackIndex_4(((int32_t)il2cpp_codegen_add((int32_t)L_1, (int32_t)1)));
int32_t L_2 = __this->get_fallbackCount_3();
if ((((int32_t)L_2) >= ((int32_t)0)))
{
goto IL_0027;
}
}
{
return 0;
}
IL_0027:
{
int32_t L_3 = __this->get_fallbackCount_3();
if ((!(((uint32_t)L_3) == ((uint32_t)((int32_t)2147483647LL)))))
{
goto IL_003d;
}
}
{
__this->set_fallbackCount_3((-1));
return 0;
}
IL_003d:
{
String_t* L_4 = __this->get_strDefault_2();
int32_t L_5 = __this->get_fallbackIndex_4();
NullCheck(L_4);
Il2CppChar L_6 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_4, L_5, /*hidden argument*/NULL);
return L_6;
}
}
// System.Void System.Text.DecoderReplacementFallbackBuffer::Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DecoderReplacementFallbackBuffer_Reset_m776F311759D5BBBACE7F2488E58E7FF97FE09838 (DecoderReplacementFallbackBuffer_t1D90752C8EFF20A65277F02C619E16C373790D23 * __this, const RuntimeMethod* method)
{
{
__this->set_fallbackCount_3((-1));
__this->set_fallbackIndex_4((-1));
((DecoderFallbackBuffer_t41EB1B3F5748BEEF5BE883DA09DBDB937441A83C *)__this)->set_byteStart_0((uint8_t*)(((uintptr_t)0)));
return;
}
}
// System.Int32 System.Text.DecoderReplacementFallbackBuffer::InternalFallback(System.Byte[],System.Byte*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DecoderReplacementFallbackBuffer_InternalFallback_mE84868C9CC06F5F7C6BA7D6363697ECE71AF5CF2 (DecoderReplacementFallbackBuffer_t1D90752C8EFF20A65277F02C619E16C373790D23 * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___bytes0, uint8_t* ___pBytes1, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_strDefault_2();
NullCheck(L_0);
int32_t L_1 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_0, /*hidden argument*/NULL);
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.Text.Encoder::SerializeEncoder(System.Runtime.Serialization.SerializationInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Encoder_SerializeEncoder_mACD65E50C4E5C9C6646AA44B5FB63CEDE0931079 (Encoder_t29B2697B0B775EABC52EBFB914F327BE9B1A3464 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Encoder_SerializeEncoder_mACD65E50C4E5C9C6646AA44B5FB63CEDE0931079_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0;
EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * L_1 = __this->get_m_fallback_0();
NullCheck(L_0);
SerializationInfo_AddValue_mC9D1E16476E24E1AFE7C59368D3BC0B35F64FBC6(L_0, _stringLiteralD72E5435917F6F46D498A64D5E536D56DC28C0FC, L_1, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Text.Encoder::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Encoder__ctor_m2F88A0C4027EC0264E770DF733A761BB589FA541 (Encoder_t29B2697B0B775EABC52EBFB914F327BE9B1A3464 * __this, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
return;
}
}
// System.Text.EncoderFallback System.Text.Encoder::get_Fallback()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * Encoder_get_Fallback_m8DB0FF2836429351EC5645B2B007982CE458632A (Encoder_t29B2697B0B775EABC52EBFB914F327BE9B1A3464 * __this, const RuntimeMethod* method)
{
{
EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * L_0 = __this->get_m_fallback_0();
return L_0;
}
}
// System.Text.EncoderFallbackBuffer System.Text.Encoder::get_FallbackBuffer()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * Encoder_get_FallbackBuffer_m8E15109A9E24221308BA3C7BFEB622C417696445 (Encoder_t29B2697B0B775EABC52EBFB914F327BE9B1A3464 * __this, const RuntimeMethod* method)
{
{
EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * L_0 = __this->get_m_fallbackBuffer_1();
if (L_0)
{
goto IL_0033;
}
}
{
EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * L_1 = __this->get_m_fallback_0();
if (!L_1)
{
goto IL_0023;
}
}
{
EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * L_2 = __this->get_m_fallback_0();
NullCheck(L_2);
EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * L_3 = VirtFuncInvoker0< EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * >::Invoke(4 /* System.Text.EncoderFallbackBuffer System.Text.EncoderFallback::CreateFallbackBuffer() */, L_2);
__this->set_m_fallbackBuffer_1(L_3);
goto IL_0033;
}
IL_0023:
{
EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * L_4 = EncoderFallback_get_ReplacementFallback_m3FF44931084C980CD4AC9773A73D74302EB37139(/*hidden argument*/NULL);
NullCheck(L_4);
EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * L_5 = VirtFuncInvoker0< EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * >::Invoke(4 /* System.Text.EncoderFallbackBuffer System.Text.EncoderFallback::CreateFallbackBuffer() */, L_4);
__this->set_m_fallbackBuffer_1(L_5);
}
IL_0033:
{
EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * L_6 = __this->get_m_fallbackBuffer_1();
return L_6;
}
}
// System.Boolean System.Text.Encoder::get_InternalHasFallbackBuffer()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Encoder_get_InternalHasFallbackBuffer_m4064B8A9FEB64FFED4D963FB92E0F31612F63033 (Encoder_t29B2697B0B775EABC52EBFB914F327BE9B1A3464 * __this, const RuntimeMethod* method)
{
{
EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * L_0 = __this->get_m_fallbackBuffer_1();
return (bool)((!(((RuntimeObject*)(EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C *)L_0) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
}
}
// System.Void System.Text.Encoder::Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Encoder_Reset_mF9B38AA1D0D1B26E6C4C2E335B8A4293B4B06B4B (Encoder_t29B2697B0B775EABC52EBFB914F327BE9B1A3464 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Encoder_Reset_mF9B38AA1D0D1B26E6C4C2E335B8A4293B4B06B4B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* V_0 = NULL;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_1 = NULL;
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_0 = (CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)SZArrayNew(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2_il2cpp_TypeInfo_var, (uint32_t)0);
V_0 = L_0;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_1 = V_0;
int32_t L_2 = VirtFuncInvoker4< int32_t, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*, int32_t, int32_t, bool >::Invoke(5 /* System.Int32 System.Text.Encoder::GetByteCount(System.Char[],System.Int32,System.Int32,System.Boolean) */, __this, L_1, 0, 0, (bool)1);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_3 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)L_2);
V_1 = L_3;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_4 = V_0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_5 = V_1;
VirtFuncInvoker6< int32_t, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*, int32_t, int32_t, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, bool >::Invoke(7 /* System.Int32 System.Text.Encoder::GetBytes(System.Char[],System.Int32,System.Int32,System.Byte[],System.Int32,System.Boolean) */, __this, L_4, 0, 0, L_5, 0, (bool)1);
EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * L_6 = __this->get_m_fallbackBuffer_1();
if (!L_6)
{
goto IL_0037;
}
}
{
EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * L_7 = __this->get_m_fallbackBuffer_1();
NullCheck(L_7);
VirtActionInvoker0::Invoke(9 /* System.Void System.Text.EncoderFallbackBuffer::Reset() */, L_7);
}
IL_0037:
{
return;
}
}
// System.Int32 System.Text.Encoder::GetByteCount(System.Char*,System.Int32,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Encoder_GetByteCount_m5CF6335B7CA0EB1560269C361210BA5BB4F84AFE (Encoder_t29B2697B0B775EABC52EBFB914F327BE9B1A3464 * __this, Il2CppChar* ___chars0, int32_t ___count1, bool ___flush2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Encoder_GetByteCount_m5CF6335B7CA0EB1560269C361210BA5BB4F84AFE_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* V_0 = NULL;
int32_t V_1 = 0;
{
Il2CppChar* L_0 = ___chars0;
if ((!(((uintptr_t)L_0) == ((uintptr_t)(((uintptr_t)0))))))
{
goto IL_001a;
}
}
{
String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral867AD8C2544ED5D38EC2B4986A28AA22B284F710, /*hidden argument*/NULL);
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m9EA692D49986AEBAC433CE3381331146109AE20F(L_2, _stringLiteral76A91D6CE24FCC03EC2ECBB19E3012B5D5D40E2B, L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Encoder_GetByteCount_m5CF6335B7CA0EB1560269C361210BA5BB4F84AFE_RuntimeMethod_var);
}
IL_001a:
{
int32_t L_3 = ___count1;
if ((((int32_t)L_3) >= ((int32_t)0)))
{
goto IL_0033;
}
}
{
String_t* L_4 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, _stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556, L_4, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, Encoder_GetByteCount_m5CF6335B7CA0EB1560269C361210BA5BB4F84AFE_RuntimeMethod_var);
}
IL_0033:
{
int32_t L_6 = ___count1;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_7 = (CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)SZArrayNew(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2_il2cpp_TypeInfo_var, (uint32_t)L_6);
V_0 = L_7;
V_1 = 0;
goto IL_004c;
}
IL_003e:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_8 = V_0;
int32_t L_9 = V_1;
Il2CppChar* L_10 = ___chars0;
int32_t L_11 = V_1;
int32_t L_12 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_10, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_11)), (int32_t)2)))));
NullCheck(L_8);
(L_8)->SetAt(static_cast<il2cpp_array_size_t>(L_9), (Il2CppChar)L_12);
int32_t L_13 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1));
}
IL_004c:
{
int32_t L_14 = V_1;
int32_t L_15 = ___count1;
if ((((int32_t)L_14) < ((int32_t)L_15)))
{
goto IL_003e;
}
}
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_16 = V_0;
int32_t L_17 = ___count1;
bool L_18 = ___flush2;
int32_t L_19 = VirtFuncInvoker4< int32_t, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*, int32_t, int32_t, bool >::Invoke(5 /* System.Int32 System.Text.Encoder::GetByteCount(System.Char[],System.Int32,System.Int32,System.Boolean) */, __this, L_16, 0, L_17, L_18);
return L_19;
}
}
// System.Int32 System.Text.Encoder::GetBytes(System.Char*,System.Int32,System.Byte*,System.Int32,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Encoder_GetBytes_m57ED373361E669E240C4B0ECB2F6D6E6EC232EC1 (Encoder_t29B2697B0B775EABC52EBFB914F327BE9B1A3464 * __this, Il2CppChar* ___chars0, int32_t ___charCount1, uint8_t* ___bytes2, int32_t ___byteCount3, bool ___flush4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Encoder_GetBytes_m57ED373361E669E240C4B0ECB2F6D6E6EC232EC1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* V_0 = NULL;
int32_t V_1 = 0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_2 = NULL;
int32_t V_3 = 0;
String_t* G_B5_0 = NULL;
String_t* G_B11_0 = NULL;
{
uint8_t* L_0 = ___bytes2;
if ((((intptr_t)L_0) == ((intptr_t)(((uintptr_t)0)))))
{
goto IL_000a;
}
}
{
Il2CppChar* L_1 = ___chars0;
if ((!(((uintptr_t)L_1) == ((uintptr_t)(((uintptr_t)0))))))
{
goto IL_002b;
}
}
IL_000a:
{
uint8_t* L_2 = ___bytes2;
if ((((intptr_t)L_2) == ((intptr_t)(((uintptr_t)0)))))
{
goto IL_0016;
}
}
{
G_B5_0 = _stringLiteral76A91D6CE24FCC03EC2ECBB19E3012B5D5D40E2B;
goto IL_001b;
}
IL_0016:
{
G_B5_0 = _stringLiteralDAF529A73101C2BE626B99FC6938163E7A27620B;
}
IL_001b:
{
String_t* L_3 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral867AD8C2544ED5D38EC2B4986A28AA22B284F710, /*hidden argument*/NULL);
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_4 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m9EA692D49986AEBAC433CE3381331146109AE20F(L_4, G_B5_0, L_3, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, Encoder_GetBytes_m57ED373361E669E240C4B0ECB2F6D6E6EC232EC1_RuntimeMethod_var);
}
IL_002b:
{
int32_t L_5 = ___charCount1;
if ((((int32_t)L_5) < ((int32_t)0)))
{
goto IL_0034;
}
}
{
int32_t L_6 = ___byteCount3;
if ((((int32_t)L_6) >= ((int32_t)0)))
{
goto IL_0054;
}
}
IL_0034:
{
int32_t L_7 = ___charCount1;
if ((((int32_t)L_7) < ((int32_t)0)))
{
goto IL_003f;
}
}
{
G_B11_0 = _stringLiteral278316CA5ED0FC3A0A92ED4DC8DA6CA9FB56DEBA;
goto IL_0044;
}
IL_003f:
{
G_B11_0 = _stringLiteralAB1A79FB2CBABAF9BE681B601509BD40528C11D8;
}
IL_0044:
{
String_t* L_8 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_9 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_9, G_B11_0, L_8, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, Encoder_GetBytes_m57ED373361E669E240C4B0ECB2F6D6E6EC232EC1_RuntimeMethod_var);
}
IL_0054:
{
int32_t L_10 = ___charCount1;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_11 = (CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)SZArrayNew(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2_il2cpp_TypeInfo_var, (uint32_t)L_10);
V_0 = L_11;
V_1 = 0;
goto IL_006d;
}
IL_005f:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_12 = V_0;
int32_t L_13 = V_1;
Il2CppChar* L_14 = ___chars0;
int32_t L_15 = V_1;
int32_t L_16 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_14, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_15)), (int32_t)2)))));
NullCheck(L_12);
(L_12)->SetAt(static_cast<il2cpp_array_size_t>(L_13), (Il2CppChar)L_16);
int32_t L_17 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1));
}
IL_006d:
{
int32_t L_18 = V_1;
int32_t L_19 = ___charCount1;
if ((((int32_t)L_18) < ((int32_t)L_19)))
{
goto IL_005f;
}
}
{
int32_t L_20 = ___byteCount3;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_21 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)L_20);
V_2 = L_21;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_22 = V_0;
int32_t L_23 = ___charCount1;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_24 = V_2;
bool L_25 = ___flush4;
int32_t L_26 = VirtFuncInvoker6< int32_t, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*, int32_t, int32_t, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, bool >::Invoke(7 /* System.Int32 System.Text.Encoder::GetBytes(System.Char[],System.Int32,System.Int32,System.Byte[],System.Int32,System.Boolean) */, __this, L_22, 0, L_23, L_24, 0, L_25);
V_3 = L_26;
int32_t L_27 = V_3;
int32_t L_28 = ___byteCount3;
if ((((int32_t)L_27) >= ((int32_t)L_28)))
{
goto IL_008f;
}
}
{
int32_t L_29 = V_3;
___byteCount3 = L_29;
}
IL_008f:
{
V_1 = 0;
goto IL_009e;
}
IL_0093:
{
uint8_t* L_30 = ___bytes2;
int32_t L_31 = V_1;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_32 = V_2;
int32_t L_33 = V_1;
NullCheck(L_32);
int32_t L_34 = L_33;
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_30, (int32_t)L_31))) = (int8_t)L_35;
int32_t L_36 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_36, (int32_t)1));
}
IL_009e:
{
int32_t L_37 = V_1;
int32_t L_38 = ___byteCount3;
if ((((int32_t)L_37) < ((int32_t)L_38)))
{
goto IL_0093;
}
}
{
int32_t L_39 = ___byteCount3;
return L_39;
}
}
#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.Text.EncoderExceptionFallback::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EncoderExceptionFallback__ctor_mD0FD9D04900F591426E35973BBF9F75152CA3739 (EncoderExceptionFallback_tF2E778252F491EF902164CC17AB15AD7AF14BE58 * __this, const RuntimeMethod* method)
{
{
EncoderFallback__ctor_m7EDA0415798986D15DA060414B0839FF158B9227(__this, /*hidden argument*/NULL);
return;
}
}
// System.Text.EncoderFallbackBuffer System.Text.EncoderExceptionFallback::CreateFallbackBuffer()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * EncoderExceptionFallback_CreateFallbackBuffer_m66DF08AB1D188B42DFF054236E89C5A3CC365DA1 (EncoderExceptionFallback_tF2E778252F491EF902164CC17AB15AD7AF14BE58 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EncoderExceptionFallback_CreateFallbackBuffer_m66DF08AB1D188B42DFF054236E89C5A3CC365DA1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
EncoderExceptionFallbackBuffer_tCCFC3E153251EFA466428A3D364E075DCB5408EB * L_0 = (EncoderExceptionFallbackBuffer_tCCFC3E153251EFA466428A3D364E075DCB5408EB *)il2cpp_codegen_object_new(EncoderExceptionFallbackBuffer_tCCFC3E153251EFA466428A3D364E075DCB5408EB_il2cpp_TypeInfo_var);
EncoderExceptionFallbackBuffer__ctor_m7892DE55648C518F5AEB0CF38CCB212D9001D7C4(L_0, /*hidden argument*/NULL);
return L_0;
}
}
// System.Int32 System.Text.EncoderExceptionFallback::get_MaxCharCount()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EncoderExceptionFallback_get_MaxCharCount_mCE85F23D0949C17B4CC3AFE223089D9632B26C67 (EncoderExceptionFallback_tF2E778252F491EF902164CC17AB15AD7AF14BE58 * __this, const RuntimeMethod* method)
{
{
return 0;
}
}
// System.Boolean System.Text.EncoderExceptionFallback::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EncoderExceptionFallback_Equals_m503A69B17276C0195B01103EFBC15AF9B43FAC66 (EncoderExceptionFallback_tF2E778252F491EF902164CC17AB15AD7AF14BE58 * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EncoderExceptionFallback_Equals_m503A69B17276C0195B01103EFBC15AF9B43FAC66_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___value0;
if (!((EncoderExceptionFallback_tF2E778252F491EF902164CC17AB15AD7AF14BE58 *)IsInstSealed((RuntimeObject*)L_0, EncoderExceptionFallback_tF2E778252F491EF902164CC17AB15AD7AF14BE58_il2cpp_TypeInfo_var)))
{
goto IL_000a;
}
}
{
return (bool)1;
}
IL_000a:
{
return (bool)0;
}
}
// System.Int32 System.Text.EncoderExceptionFallback::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EncoderExceptionFallback_GetHashCode_mA15E8E131BCB0E24CACEE8C11AFF9B92CDC75C78 (EncoderExceptionFallback_tF2E778252F491EF902164CC17AB15AD7AF14BE58 * __this, const RuntimeMethod* method)
{
{
return ((int32_t)654);
}
}
#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.Text.EncoderExceptionFallbackBuffer::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EncoderExceptionFallbackBuffer__ctor_m7892DE55648C518F5AEB0CF38CCB212D9001D7C4 (EncoderExceptionFallbackBuffer_tCCFC3E153251EFA466428A3D364E075DCB5408EB * __this, const RuntimeMethod* method)
{
{
EncoderFallbackBuffer__ctor_mE3698942F859D99529557619E751C18775FD49E9(__this, /*hidden argument*/NULL);
return;
}
}
// System.Boolean System.Text.EncoderExceptionFallbackBuffer::Fallback(System.Char,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EncoderExceptionFallbackBuffer_Fallback_m6CD1D726ACAD39EFEC45431ADB4FA492429EE8D2 (EncoderExceptionFallbackBuffer_tCCFC3E153251EFA466428A3D364E075DCB5408EB * __this, Il2CppChar ___charUnknown0, int32_t ___index1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EncoderExceptionFallbackBuffer_Fallback_m6CD1D726ACAD39EFEC45431ADB4FA492429EE8D2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)2);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = L_0;
Il2CppChar L_2 = ___charUnknown0;
int32_t L_3 = ((int32_t)L_2);
RuntimeObject * L_4 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_3);
NullCheck(L_1);
ArrayElementTypeCheck (L_1, L_4);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_4);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_5 = L_1;
int32_t L_6 = ___index1;
int32_t L_7 = L_6;
RuntimeObject * L_8 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_7);
NullCheck(L_5);
ArrayElementTypeCheck (L_5, L_8);
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_8);
String_t* L_9 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteral8A241C968A2685AEB603CE6F4A5CC4DC9097CA13, L_5, /*hidden argument*/NULL);
Il2CppChar L_10 = ___charUnknown0;
int32_t L_11 = ___index1;
EncoderFallbackException_t2577E6366E4064953BFA80B3A71BD75154E15B53 * L_12 = (EncoderFallbackException_t2577E6366E4064953BFA80B3A71BD75154E15B53 *)il2cpp_codegen_object_new(EncoderFallbackException_t2577E6366E4064953BFA80B3A71BD75154E15B53_il2cpp_TypeInfo_var);
EncoderFallbackException__ctor_mB1F5011A315BDAD30C1D990F618AA2985A206E1F(L_12, L_9, L_10, L_11, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, EncoderExceptionFallbackBuffer_Fallback_m6CD1D726ACAD39EFEC45431ADB4FA492429EE8D2_RuntimeMethod_var);
}
}
// System.Boolean System.Text.EncoderExceptionFallbackBuffer::Fallback(System.Char,System.Char,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EncoderExceptionFallbackBuffer_Fallback_mA5EDA3694AFA39CBDB602B7574209B017694FD7F (EncoderExceptionFallbackBuffer_tCCFC3E153251EFA466428A3D364E075DCB5408EB * __this, Il2CppChar ___charUnknownHigh0, Il2CppChar ___charUnknownLow1, int32_t ___index2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EncoderExceptionFallbackBuffer_Fallback_mA5EDA3694AFA39CBDB602B7574209B017694FD7F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
Il2CppChar L_0 = ___charUnknownHigh0;
IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var);
bool L_1 = Char_IsHighSurrogate_m64C60C09A8561520E43C8527D3DC38FF97E6274D(L_0, /*hidden argument*/NULL);
if (L_1)
{
goto IL_003d;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)2);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = L_2;
int32_t L_4 = ((int32_t)55296);
RuntimeObject * L_5 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_4);
NullCheck(L_3);
ArrayElementTypeCheck (L_3, L_5);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_5);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_6 = L_3;
int32_t L_7 = ((int32_t)56319);
RuntimeObject * L_8 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_7);
NullCheck(L_6);
ArrayElementTypeCheck (L_6, L_8);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_8);
String_t* L_9 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteralA980EEDA49322EB9BE88B6480B2BE63B70186B1E, L_6, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_10 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_10, _stringLiteralA6738FE7E06CA51E1F969D48582951374F467129, L_9, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, EncoderExceptionFallbackBuffer_Fallback_mA5EDA3694AFA39CBDB602B7574209B017694FD7F_RuntimeMethod_var);
}
IL_003d:
{
Il2CppChar L_11 = ___charUnknownLow1;
IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var);
bool L_12 = Char_IsLowSurrogate_m11EF790BE9683BDF04022FD055104AE7A22A6A9C(L_11, /*hidden argument*/NULL);
if (L_12)
{
goto IL_007a;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_13 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)2);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_14 = L_13;
int32_t L_15 = ((int32_t)56320);
RuntimeObject * L_16 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_15);
NullCheck(L_14);
ArrayElementTypeCheck (L_14, L_16);
(L_14)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_16);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_17 = L_14;
int32_t L_18 = ((int32_t)57343);
RuntimeObject * L_19 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_18);
NullCheck(L_17);
ArrayElementTypeCheck (L_17, L_19);
(L_17)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_19);
String_t* L_20 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteralA980EEDA49322EB9BE88B6480B2BE63B70186B1E, L_17, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_21 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_21, _stringLiteral5578D8A7F74274702931BBEDBD2FC483A5E92E4B, L_20, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_21, EncoderExceptionFallbackBuffer_Fallback_mA5EDA3694AFA39CBDB602B7574209B017694FD7F_RuntimeMethod_var);
}
IL_007a:
{
Il2CppChar L_22 = ___charUnknownHigh0;
Il2CppChar L_23 = ___charUnknownLow1;
IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var);
int32_t L_24 = Char_ConvertToUtf32_m2AFA8A0A98ECFE3ACF3F74D45F7546ADBBADD601(L_22, L_23, /*hidden argument*/NULL);
V_0 = L_24;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_25 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)2);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_26 = L_25;
int32_t L_27 = V_0;
int32_t L_28 = L_27;
RuntimeObject * L_29 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_28);
NullCheck(L_26);
ArrayElementTypeCheck (L_26, L_29);
(L_26)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_29);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_30 = L_26;
int32_t L_31 = ___index2;
int32_t L_32 = L_31;
RuntimeObject * L_33 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_32);
NullCheck(L_30);
ArrayElementTypeCheck (L_30, L_33);
(L_30)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_33);
String_t* L_34 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteral8A241C968A2685AEB603CE6F4A5CC4DC9097CA13, L_30, /*hidden argument*/NULL);
Il2CppChar L_35 = ___charUnknownHigh0;
Il2CppChar L_36 = ___charUnknownLow1;
int32_t L_37 = ___index2;
EncoderFallbackException_t2577E6366E4064953BFA80B3A71BD75154E15B53 * L_38 = (EncoderFallbackException_t2577E6366E4064953BFA80B3A71BD75154E15B53 *)il2cpp_codegen_object_new(EncoderFallbackException_t2577E6366E4064953BFA80B3A71BD75154E15B53_il2cpp_TypeInfo_var);
EncoderFallbackException__ctor_m0F427A6A094417A4E62FA3339B2E4691930F7AFE(L_38, L_34, L_35, L_36, L_37, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_38, EncoderExceptionFallbackBuffer_Fallback_mA5EDA3694AFA39CBDB602B7574209B017694FD7F_RuntimeMethod_var);
}
}
// System.Char System.Text.EncoderExceptionFallbackBuffer::GetNextChar()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar EncoderExceptionFallbackBuffer_GetNextChar_mAF13DE5F2F87C3BC39B575B749B6514FE29FCDE6 (EncoderExceptionFallbackBuffer_tCCFC3E153251EFA466428A3D364E075DCB5408EB * __this, const RuntimeMethod* method)
{
{
return 0;
}
}
// System.Boolean System.Text.EncoderExceptionFallbackBuffer::MovePrevious()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EncoderExceptionFallbackBuffer_MovePrevious_mB7960FDAD6E0CC7E1D171BA4413E039C19DEDD5C (EncoderExceptionFallbackBuffer_tCCFC3E153251EFA466428A3D364E075DCB5408EB * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// System.Int32 System.Text.EncoderExceptionFallbackBuffer::get_Remaining()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EncoderExceptionFallbackBuffer_get_Remaining_mD0D7AAC90C693166EA93E636DADADB2C7B634FB0 (EncoderExceptionFallbackBuffer_tCCFC3E153251EFA466428A3D364E075DCB5408EB * __this, const RuntimeMethod* method)
{
{
return 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.Object System.Text.EncoderFallback::get_InternalSyncObject()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EncoderFallback_get_InternalSyncObject_mD870CEF1A48707E4884575C7D84AE7141072EF87 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EncoderFallback_get_InternalSyncObject_mD870CEF1A48707E4884575C7D84AE7141072EF87_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject * V_0 = NULL;
{
RuntimeObject * L_0 = ((EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63_StaticFields*)il2cpp_codegen_static_fields_for(EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63_il2cpp_TypeInfo_var))->get_s_InternalSyncObject_3();
if (L_0)
{
goto IL_001a;
}
}
{
RuntimeObject * L_1 = (RuntimeObject *)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(L_1, /*hidden argument*/NULL);
V_0 = L_1;
RuntimeObject * L_2 = V_0;
InterlockedCompareExchangeImpl<RuntimeObject *>((RuntimeObject **)(((EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63_StaticFields*)il2cpp_codegen_static_fields_for(EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63_il2cpp_TypeInfo_var))->get_address_of_s_InternalSyncObject_3()), L_2, NULL);
}
IL_001a:
{
RuntimeObject * L_3 = ((EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63_StaticFields*)il2cpp_codegen_static_fields_for(EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63_il2cpp_TypeInfo_var))->get_s_InternalSyncObject_3();
return L_3;
}
}
// System.Text.EncoderFallback System.Text.EncoderFallback::get_ReplacementFallback()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * EncoderFallback_get_ReplacementFallback_m3FF44931084C980CD4AC9773A73D74302EB37139 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EncoderFallback_get_ReplacementFallback_m3FF44931084C980CD4AC9773A73D74302EB37139_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject * 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);
{
EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * L_0 = ((EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63_StaticFields*)il2cpp_codegen_static_fields_for(EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63_il2cpp_TypeInfo_var))->get_replacementFallback_1();
il2cpp_codegen_memory_barrier();
if (L_0)
{
goto IL_003a;
}
}
{
RuntimeObject * L_1 = EncoderFallback_get_InternalSyncObject_mD870CEF1A48707E4884575C7D84AE7141072EF87(/*hidden argument*/NULL);
V_0 = L_1;
V_1 = (bool)0;
}
IL_0011:
try
{ // begin try (depth: 1)
{
RuntimeObject * L_2 = V_0;
Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(L_2, (bool*)(&V_1), /*hidden argument*/NULL);
EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * L_3 = ((EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63_StaticFields*)il2cpp_codegen_static_fields_for(EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63_il2cpp_TypeInfo_var))->get_replacementFallback_1();
il2cpp_codegen_memory_barrier();
if (L_3)
{
goto IL_002e;
}
}
IL_0022:
{
EncoderReplacementFallback_tC2E8A94C82BBF7A4CFC8E3FDBA8A381DCF29F998 * L_4 = (EncoderReplacementFallback_tC2E8A94C82BBF7A4CFC8E3FDBA8A381DCF29F998 *)il2cpp_codegen_object_new(EncoderReplacementFallback_tC2E8A94C82BBF7A4CFC8E3FDBA8A381DCF29F998_il2cpp_TypeInfo_var);
EncoderReplacementFallback__ctor_mAB909581BDACE020217C9A308321E41802705D1E(L_4, /*hidden argument*/NULL);
il2cpp_codegen_memory_barrier();
((EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63_StaticFields*)il2cpp_codegen_static_fields_for(EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63_il2cpp_TypeInfo_var))->set_replacementFallback_1(L_4);
}
IL_002e:
{
IL2CPP_LEAVE(0x3A, FINALLY_0030);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0030;
}
FINALLY_0030:
{ // begin finally (depth: 1)
{
bool L_5 = V_1;
if (!L_5)
{
goto IL_0039;
}
}
IL_0033:
{
RuntimeObject * L_6 = V_0;
Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_6, /*hidden argument*/NULL);
}
IL_0039:
{
IL2CPP_END_FINALLY(48)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(48)
{
IL2CPP_JUMP_TBL(0x3A, IL_003a)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_003a:
{
EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * L_7 = ((EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63_StaticFields*)il2cpp_codegen_static_fields_for(EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63_il2cpp_TypeInfo_var))->get_replacementFallback_1();
il2cpp_codegen_memory_barrier();
return L_7;
}
}
// System.Text.EncoderFallback System.Text.EncoderFallback::get_ExceptionFallback()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * EncoderFallback_get_ExceptionFallback_mAE77B30FFF4171C2C6861BE4F90529A873EC79B8 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EncoderFallback_get_ExceptionFallback_mAE77B30FFF4171C2C6861BE4F90529A873EC79B8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject * 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);
{
EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * L_0 = ((EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63_StaticFields*)il2cpp_codegen_static_fields_for(EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63_il2cpp_TypeInfo_var))->get_exceptionFallback_2();
il2cpp_codegen_memory_barrier();
if (L_0)
{
goto IL_003a;
}
}
{
RuntimeObject * L_1 = EncoderFallback_get_InternalSyncObject_mD870CEF1A48707E4884575C7D84AE7141072EF87(/*hidden argument*/NULL);
V_0 = L_1;
V_1 = (bool)0;
}
IL_0011:
try
{ // begin try (depth: 1)
{
RuntimeObject * L_2 = V_0;
Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(L_2, (bool*)(&V_1), /*hidden argument*/NULL);
EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * L_3 = ((EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63_StaticFields*)il2cpp_codegen_static_fields_for(EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63_il2cpp_TypeInfo_var))->get_exceptionFallback_2();
il2cpp_codegen_memory_barrier();
if (L_3)
{
goto IL_002e;
}
}
IL_0022:
{
EncoderExceptionFallback_tF2E778252F491EF902164CC17AB15AD7AF14BE58 * L_4 = (EncoderExceptionFallback_tF2E778252F491EF902164CC17AB15AD7AF14BE58 *)il2cpp_codegen_object_new(EncoderExceptionFallback_tF2E778252F491EF902164CC17AB15AD7AF14BE58_il2cpp_TypeInfo_var);
EncoderExceptionFallback__ctor_mD0FD9D04900F591426E35973BBF9F75152CA3739(L_4, /*hidden argument*/NULL);
il2cpp_codegen_memory_barrier();
((EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63_StaticFields*)il2cpp_codegen_static_fields_for(EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63_il2cpp_TypeInfo_var))->set_exceptionFallback_2(L_4);
}
IL_002e:
{
IL2CPP_LEAVE(0x3A, FINALLY_0030);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0030;
}
FINALLY_0030:
{ // begin finally (depth: 1)
{
bool L_5 = V_1;
if (!L_5)
{
goto IL_0039;
}
}
IL_0033:
{
RuntimeObject * L_6 = V_0;
Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_6, /*hidden argument*/NULL);
}
IL_0039:
{
IL2CPP_END_FINALLY(48)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(48)
{
IL2CPP_JUMP_TBL(0x3A, IL_003a)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_003a:
{
EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * L_7 = ((EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63_StaticFields*)il2cpp_codegen_static_fields_for(EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63_il2cpp_TypeInfo_var))->get_exceptionFallback_2();
il2cpp_codegen_memory_barrier();
return L_7;
}
}
// System.Void System.Text.EncoderFallback::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EncoderFallback__ctor_m7EDA0415798986D15DA060414B0839FF158B9227 (EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * __this, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__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.Text.EncoderFallbackBuffer::Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EncoderFallbackBuffer_Reset_m9AD21F8412FBBB857E0D1FED9D0050F9F4B60C86 (EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * __this, const RuntimeMethod* method)
{
IL_0000:
{
Il2CppChar L_0 = VirtFuncInvoker0< Il2CppChar >::Invoke(6 /* System.Char System.Text.EncoderFallbackBuffer::GetNextChar() */, __this);
if (L_0)
{
goto IL_0000;
}
}
{
return;
}
}
// System.Void System.Text.EncoderFallbackBuffer::InternalReset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EncoderFallbackBuffer_InternalReset_m9BF666E5A4160B892C3C334BABA75D150DF642E7 (EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * __this, const RuntimeMethod* method)
{
{
__this->set_charStart_0((Il2CppChar*)(((uintptr_t)0)));
__this->set_bFallingBack_5((bool)0);
__this->set_iRecursionCount_6(0);
VirtActionInvoker0::Invoke(9 /* System.Void System.Text.EncoderFallbackBuffer::Reset() */, __this);
return;
}
}
// System.Void System.Text.EncoderFallbackBuffer::InternalInitialize(System.Char*,System.Char*,System.Text.EncoderNLS,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EncoderFallbackBuffer_InternalInitialize_m177C2BFBE6958ABCC948A279D30E398911C18E66 (EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * __this, Il2CppChar* ___charStart0, Il2CppChar* ___charEnd1, EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * ___encoder2, bool ___setEncoder3, const RuntimeMethod* method)
{
{
Il2CppChar* L_0 = ___charStart0;
__this->set_charStart_0((Il2CppChar*)L_0);
Il2CppChar* L_1 = ___charEnd1;
__this->set_charEnd_1((Il2CppChar*)L_1);
EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * L_2 = ___encoder2;
__this->set_encoder_2(L_2);
bool L_3 = ___setEncoder3;
__this->set_setEncoder_3(L_3);
__this->set_bUsedEncoder_4((bool)0);
__this->set_bFallingBack_5((bool)0);
__this->set_iRecursionCount_6(0);
return;
}
}
// System.Char System.Text.EncoderFallbackBuffer::InternalGetNextChar()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar EncoderFallbackBuffer_InternalGetNextChar_mC1D11F50B25566F6B87974A3BCF1066C025A8CAF (EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * __this, const RuntimeMethod* method)
{
Il2CppChar V_0 = 0x0;
{
Il2CppChar L_0 = VirtFuncInvoker0< Il2CppChar >::Invoke(6 /* System.Char System.Text.EncoderFallbackBuffer::GetNextChar() */, __this);
V_0 = L_0;
Il2CppChar L_1 = V_0;
__this->set_bFallingBack_5((bool)((!(((uint32_t)L_1) <= ((uint32_t)0)))? 1 : 0));
Il2CppChar L_2 = V_0;
if (L_2)
{
goto IL_001b;
}
}
{
__this->set_iRecursionCount_6(0);
}
IL_001b:
{
Il2CppChar L_3 = V_0;
return L_3;
}
}
// System.Boolean System.Text.EncoderFallbackBuffer::InternalFallback(System.Char,System.Char*&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EncoderFallbackBuffer_InternalFallback_m70F3D08525132DEF574F144179AB434FFE69AAC1 (EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * __this, Il2CppChar ___ch0, Il2CppChar** ___chars1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EncoderFallbackBuffer_InternalFallback_m70F3D08525132DEF574F144179AB434FFE69AAC1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
Il2CppChar V_1 = 0x0;
int32_t V_2 = 0;
{
Il2CppChar** L_0 = ___chars1;
Il2CppChar* L_1 = __this->get_charStart_0();
V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((int64_t)((int64_t)(intptr_t)((Il2CppChar*)((intptr_t)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)(*((intptr_t*)L_0)), (intptr_t)L_1))/(int32_t)2)))))))), (int32_t)1));
Il2CppChar L_2 = ___ch0;
IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var);
bool L_3 = Char_IsHighSurrogate_m64C60C09A8561520E43C8527D3DC38FF97E6274D(L_2, /*hidden argument*/NULL);
if (!L_3)
{
goto IL_00b6;
}
}
{
Il2CppChar** L_4 = ___chars1;
Il2CppChar* L_5 = __this->get_charEnd_1();
if ((!(((uintptr_t)(*((intptr_t*)L_4))) >= ((uintptr_t)L_5))))
{
goto IL_0061;
}
}
{
EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * L_6 = __this->get_encoder_2();
if (!L_6)
{
goto IL_00b6;
}
}
{
EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * L_7 = __this->get_encoder_2();
NullCheck(L_7);
bool L_8 = EncoderNLS_get_MustFlush_mBA7B13F498D63B50EFFA562AC02EC73A2E8597DF_inline(L_7, /*hidden argument*/NULL);
if (L_8)
{
goto IL_00b6;
}
}
{
bool L_9 = __this->get_setEncoder_3();
if (!L_9)
{
goto IL_0058;
}
}
{
__this->set_bUsedEncoder_4((bool)1);
EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * L_10 = __this->get_encoder_2();
Il2CppChar L_11 = ___ch0;
NullCheck(L_10);
L_10->set_charLeftOver_2(L_11);
}
IL_0058:
{
__this->set_bFallingBack_5((bool)0);
return (bool)0;
}
IL_0061:
{
Il2CppChar** L_12 = ___chars1;
int32_t L_13 = *((uint16_t*)(*((intptr_t*)L_12)));
V_1 = L_13;
Il2CppChar L_14 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var);
bool L_15 = Char_IsLowSurrogate_m11EF790BE9683BDF04022FD055104AE7A22A6A9C(L_14, /*hidden argument*/NULL);
if (!L_15)
{
goto IL_00b6;
}
}
{
bool L_16 = __this->get_bFallingBack_5();
if (!L_16)
{
goto IL_009a;
}
}
{
int32_t L_17 = __this->get_iRecursionCount_6();
V_2 = L_17;
int32_t L_18 = V_2;
__this->set_iRecursionCount_6(((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1)));
int32_t L_19 = V_2;
if ((((int32_t)L_19) <= ((int32_t)((int32_t)250))))
{
goto IL_009a;
}
}
{
Il2CppChar L_20 = ___ch0;
Il2CppChar L_21 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var);
int32_t L_22 = Char_ConvertToUtf32_m2AFA8A0A98ECFE3ACF3F74D45F7546ADBBADD601(L_20, L_21, /*hidden argument*/NULL);
EncoderFallbackBuffer_ThrowLastCharRecursive_m35D9DB23D34C93BDFF7670C5DA045C6FBA6A2458(__this, L_22, /*hidden argument*/NULL);
}
IL_009a:
{
Il2CppChar** L_23 = ___chars1;
Il2CppChar** L_24 = ___chars1;
*((intptr_t*)L_23) = (intptr_t)((intptr_t)il2cpp_codegen_add((intptr_t)(*((intptr_t*)L_24)), (int32_t)2));
Il2CppChar L_25 = ___ch0;
Il2CppChar L_26 = V_1;
int32_t L_27 = V_0;
bool L_28 = VirtFuncInvoker3< bool, Il2CppChar, Il2CppChar, int32_t >::Invoke(5 /* System.Boolean System.Text.EncoderFallbackBuffer::Fallback(System.Char,System.Char,System.Int32) */, __this, L_25, L_26, L_27);
__this->set_bFallingBack_5(L_28);
bool L_29 = __this->get_bFallingBack_5();
return L_29;
}
IL_00b6:
{
bool L_30 = __this->get_bFallingBack_5();
if (!L_30)
{
goto IL_00dd;
}
}
{
int32_t L_31 = __this->get_iRecursionCount_6();
V_2 = L_31;
int32_t L_32 = V_2;
__this->set_iRecursionCount_6(((int32_t)il2cpp_codegen_add((int32_t)L_32, (int32_t)1)));
int32_t L_33 = V_2;
if ((((int32_t)L_33) <= ((int32_t)((int32_t)250))))
{
goto IL_00dd;
}
}
{
Il2CppChar L_34 = ___ch0;
EncoderFallbackBuffer_ThrowLastCharRecursive_m35D9DB23D34C93BDFF7670C5DA045C6FBA6A2458(__this, L_34, /*hidden argument*/NULL);
}
IL_00dd:
{
Il2CppChar L_35 = ___ch0;
int32_t L_36 = V_0;
bool L_37 = VirtFuncInvoker2< bool, Il2CppChar, int32_t >::Invoke(4 /* System.Boolean System.Text.EncoderFallbackBuffer::Fallback(System.Char,System.Int32) */, __this, L_35, L_36);
__this->set_bFallingBack_5(L_37);
bool L_38 = __this->get_bFallingBack_5();
return L_38;
}
}
// System.Void System.Text.EncoderFallbackBuffer::ThrowLastCharRecursive(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EncoderFallbackBuffer_ThrowLastCharRecursive_m35D9DB23D34C93BDFF7670C5DA045C6FBA6A2458 (EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * __this, int32_t ___charRecursive0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EncoderFallbackBuffer_ThrowLastCharRecursive_m35D9DB23D34C93BDFF7670C5DA045C6FBA6A2458_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = L_0;
int32_t L_2 = ___charRecursive0;
int32_t L_3 = L_2;
RuntimeObject * L_4 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_3);
NullCheck(L_1);
ArrayElementTypeCheck (L_1, L_4);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_4);
String_t* L_5 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteral587F8A95F0C1E3884550985E4830A26302A3BFCF, L_1, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_6 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_6, L_5, _stringLiteral76A91D6CE24FCC03EC2ECBB19E3012B5D5D40E2B, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, EncoderFallbackBuffer_ThrowLastCharRecursive_m35D9DB23D34C93BDFF7670C5DA045C6FBA6A2458_RuntimeMethod_var);
}
}
// System.Void System.Text.EncoderFallbackBuffer::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EncoderFallbackBuffer__ctor_mE3698942F859D99529557619E751C18775FD49E9 (EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * __this, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__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.Text.EncoderFallbackException::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EncoderFallbackException__ctor_m1468C9E711D30C951DF59F194D1421975A3BA3D5 (EncoderFallbackException_t2577E6366E4064953BFA80B3A71BD75154E15B53 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EncoderFallbackException__ctor_m1468C9E711D30C951DF59F194D1421975A3BA3D5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralF7623357202A0F46697BF67CA5E89239746A567B, /*hidden argument*/NULL);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(__this, L_0, /*hidden argument*/NULL);
Exception_SetErrorCode_m742C1E687C82E56F445893685007EF4FC017F4A7(__this, ((int32_t)-2147024809), /*hidden argument*/NULL);
return;
}
}
// System.Void System.Text.EncoderFallbackException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EncoderFallbackException__ctor_m00C4E135415881737AE2B9FF8EAE60C496C87AF0 (EncoderFallbackException_t2577E6366E4064953BFA80B3A71BD75154E15B53 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method)
{
{
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0;
StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_1 = ___context1;
ArgumentException__ctor_m33453ED48103C3A4893FBE06039DF7473FBAD7E6(__this, L_0, L_1, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Text.EncoderFallbackException::.ctor(System.String,System.Char,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EncoderFallbackException__ctor_mB1F5011A315BDAD30C1D990F618AA2985A206E1F (EncoderFallbackException_t2577E6366E4064953BFA80B3A71BD75154E15B53 * __this, String_t* ___message0, Il2CppChar ___charUnknown1, int32_t ___index2, const RuntimeMethod* method)
{
{
String_t* L_0 = ___message0;
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(__this, L_0, /*hidden argument*/NULL);
Il2CppChar L_1 = ___charUnknown1;
__this->set_charUnknown_18(L_1);
int32_t L_2 = ___index2;
__this->set_index_21(L_2);
return;
}
}
// System.Void System.Text.EncoderFallbackException::.ctor(System.String,System.Char,System.Char,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EncoderFallbackException__ctor_m0F427A6A094417A4E62FA3339B2E4691930F7AFE (EncoderFallbackException_t2577E6366E4064953BFA80B3A71BD75154E15B53 * __this, String_t* ___message0, Il2CppChar ___charUnknownHigh1, Il2CppChar ___charUnknownLow2, int32_t ___index3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EncoderFallbackException__ctor_m0F427A6A094417A4E62FA3339B2E4691930F7AFE_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___message0;
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(__this, L_0, /*hidden argument*/NULL);
Il2CppChar L_1 = ___charUnknownHigh1;
IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var);
bool L_2 = Char_IsHighSurrogate_m64C60C09A8561520E43C8527D3DC38FF97E6274D(L_1, /*hidden argument*/NULL);
if (L_2)
{
goto IL_0044;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)2);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = L_3;
int32_t L_5 = ((int32_t)55296);
RuntimeObject * L_6 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_5);
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_6);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_6);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_7 = L_4;
int32_t L_8 = ((int32_t)56319);
RuntimeObject * L_9 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_8);
NullCheck(L_7);
ArrayElementTypeCheck (L_7, L_9);
(L_7)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_9);
String_t* L_10 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteralA980EEDA49322EB9BE88B6480B2BE63B70186B1E, L_7, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_11 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_11, _stringLiteralA6738FE7E06CA51E1F969D48582951374F467129, L_10, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, EncoderFallbackException__ctor_m0F427A6A094417A4E62FA3339B2E4691930F7AFE_RuntimeMethod_var);
}
IL_0044:
{
Il2CppChar L_12 = ___charUnknownLow2;
IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var);
bool L_13 = Char_IsLowSurrogate_m11EF790BE9683BDF04022FD055104AE7A22A6A9C(L_12, /*hidden argument*/NULL);
if (L_13)
{
goto IL_0081;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_14 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)2);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_15 = L_14;
int32_t L_16 = ((int32_t)56320);
RuntimeObject * L_17 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_16);
NullCheck(L_15);
ArrayElementTypeCheck (L_15, L_17);
(L_15)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_17);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_18 = L_15;
int32_t L_19 = ((int32_t)57343);
RuntimeObject * L_20 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_19);
NullCheck(L_18);
ArrayElementTypeCheck (L_18, L_20);
(L_18)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_20);
String_t* L_21 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteralA980EEDA49322EB9BE88B6480B2BE63B70186B1E, L_18, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_22 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_22, _stringLiteral5578D8A7F74274702931BBEDBD2FC483A5E92E4B, L_21, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_22, EncoderFallbackException__ctor_m0F427A6A094417A4E62FA3339B2E4691930F7AFE_RuntimeMethod_var);
}
IL_0081:
{
Il2CppChar L_23 = ___charUnknownHigh1;
__this->set_charUnknownHigh_19(L_23);
Il2CppChar L_24 = ___charUnknownLow2;
__this->set_charUnknownLow_20(L_24);
int32_t L_25 = ___index3;
__this->set_index_21(L_25);
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.Text.EncoderNLS::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EncoderNLS__ctor_mE2590720A5C5F377BA69269772C1C05E70417DD4 (EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EncoderNLS__ctor_mE2590720A5C5F377BA69269772C1C05E70417DD4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Encoder__ctor_m2F88A0C4027EC0264E770DF733A761BB589FA541(__this, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_0 = CultureInfo_get_CurrentCulture_mD86F3D8E5D332FB304F80D9B9CA4DE849C2A6831(/*hidden argument*/NULL);
String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral12B316FD412591B95637D99714DDDBD3638B2D91, /*hidden argument*/NULL);
Type_t * L_2 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(__this, /*hidden argument*/NULL);
String_t* L_3 = String_Format_m30892041DA5F50D7B8CFD82FFC0F55B5B97A2B7F(L_0, L_1, L_2, /*hidden argument*/NULL);
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_4 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_4, L_3, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, EncoderNLS__ctor_mE2590720A5C5F377BA69269772C1C05E70417DD4_RuntimeMethod_var);
}
}
// System.Void System.Text.EncoderNLS::System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EncoderNLS_System_Runtime_Serialization_ISerializable_GetObjectData_m566F1B89E8969DA385039F405B963C630E9A251D (EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EncoderNLS_System_Runtime_Serialization_ISerializable_GetObjectData_m566F1B89E8969DA385039F405B963C630E9A251D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0;
Encoder_SerializeEncoder_mACD65E50C4E5C9C6646AA44B5FB63CEDE0931079(__this, L_0, /*hidden argument*/NULL);
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_1 = ___info0;
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_2 = __this->get_m_encoding_3();
NullCheck(L_1);
SerializationInfo_AddValue_mC9D1E16476E24E1AFE7C59368D3BC0B35F64FBC6(L_1, _stringLiteral14A9DC09E10179B15BEAF94C0AED53904ACE0336, L_2, /*hidden argument*/NULL);
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_3 = ___info0;
Il2CppChar L_4 = __this->get_charLeftOver_2();
NullCheck(L_3);
SerializationInfo_AddValue_mF1E3C85899AFD183897EB81ED87F55C4EDCEA146(L_3, _stringLiteral7CEE422D4A55A986BA38DEF6BF4F5978013FD582, L_4, /*hidden argument*/NULL);
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_5 = ___info0;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_6 = { reinterpret_cast<intptr_t> (DefaultEncoder_t71EA10E1235BA46A6CC88E06EF73C2BAC1673225_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_7 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_6, /*hidden argument*/NULL);
NullCheck(L_5);
SerializationInfo_SetType_m3F30AFEB3555E20E995D31713C0604E26B2CF784(L_5, L_7, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Text.EncoderNLS::.ctor(System.Text.Encoding)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EncoderNLS__ctor_m3F11286A48DC8DEB96AB6B98EC9A1C0F79A11051 (EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * __this, Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___encoding0, const RuntimeMethod* method)
{
{
Encoder__ctor_m2F88A0C4027EC0264E770DF733A761BB589FA541(__this, /*hidden argument*/NULL);
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_0 = ___encoding0;
__this->set_m_encoding_3(L_0);
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_1 = __this->get_m_encoding_3();
NullCheck(L_1);
EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * L_2 = Encoding_get_EncoderFallback_m56A241904105944473545473FA20E07BF52B1885_inline(L_1, /*hidden argument*/NULL);
((Encoder_t29B2697B0B775EABC52EBFB914F327BE9B1A3464 *)__this)->set_m_fallback_0(L_2);
VirtActionInvoker0::Invoke(4 /* System.Void System.Text.Encoder::Reset() */, __this);
return;
}
}
// System.Void System.Text.EncoderNLS::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EncoderNLS__ctor_mF834444D5E99CAC122941CE1C07E057FC988651D (EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * __this, const RuntimeMethod* method)
{
{
Encoder__ctor_m2F88A0C4027EC0264E770DF733A761BB589FA541(__this, /*hidden argument*/NULL);
__this->set_m_encoding_3((Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 *)NULL);
VirtActionInvoker0::Invoke(4 /* System.Void System.Text.Encoder::Reset() */, __this);
return;
}
}
// System.Void System.Text.EncoderNLS::Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EncoderNLS_Reset_mB1053D333C0CB823FFDEDBFBBB2B6185DB0B4ADA (EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * __this, const RuntimeMethod* method)
{
{
__this->set_charLeftOver_2(0);
EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * L_0 = ((Encoder_t29B2697B0B775EABC52EBFB914F327BE9B1A3464 *)__this)->get_m_fallbackBuffer_1();
if (!L_0)
{
goto IL_001a;
}
}
{
EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * L_1 = ((Encoder_t29B2697B0B775EABC52EBFB914F327BE9B1A3464 *)__this)->get_m_fallbackBuffer_1();
NullCheck(L_1);
VirtActionInvoker0::Invoke(9 /* System.Void System.Text.EncoderFallbackBuffer::Reset() */, L_1);
}
IL_001a:
{
return;
}
}
// System.Int32 System.Text.EncoderNLS::GetByteCount(System.Char[],System.Int32,System.Int32,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EncoderNLS_GetByteCount_m2464505CF85702A832284F73173B97443D4D9420 (EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * __this, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___chars0, int32_t ___index1, int32_t ___count2, bool ___flush3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EncoderNLS_GetByteCount_m2464505CF85702A832284F73173B97443D4D9420_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Il2CppChar* V_0 = NULL;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* V_1 = NULL;
String_t* G_B7_0 = NULL;
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_0 = ___chars0;
if (L_0)
{
goto IL_0018;
}
}
{
String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral867AD8C2544ED5D38EC2B4986A28AA22B284F710, /*hidden argument*/NULL);
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m9EA692D49986AEBAC433CE3381331146109AE20F(L_2, _stringLiteral76A91D6CE24FCC03EC2ECBB19E3012B5D5D40E2B, L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, EncoderNLS_GetByteCount_m2464505CF85702A832284F73173B97443D4D9420_RuntimeMethod_var);
}
IL_0018:
{
int32_t L_3 = ___index1;
if ((((int32_t)L_3) < ((int32_t)0)))
{
goto IL_0020;
}
}
{
int32_t L_4 = ___count2;
if ((((int32_t)L_4) >= ((int32_t)0)))
{
goto IL_0040;
}
}
IL_0020:
{
int32_t L_5 = ___index1;
if ((((int32_t)L_5) < ((int32_t)0)))
{
goto IL_002b;
}
}
{
G_B7_0 = _stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556;
goto IL_0030;
}
IL_002b:
{
G_B7_0 = _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346;
}
IL_0030:
{
String_t* L_6 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_7 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_7, G_B7_0, L_6, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, EncoderNLS_GetByteCount_m2464505CF85702A832284F73173B97443D4D9420_RuntimeMethod_var);
}
IL_0040:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_8 = ___chars0;
NullCheck(L_8);
int32_t L_9 = ___index1;
int32_t L_10 = ___count2;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_8)->max_length)))), (int32_t)L_9))) >= ((int32_t)L_10)))
{
goto IL_005d;
}
}
{
String_t* L_11 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral58DB15989CC5229A62FDAD47E614D05B051584E7, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_12 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_12, _stringLiteral76A91D6CE24FCC03EC2ECBB19E3012B5D5D40E2B, L_11, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, EncoderNLS_GetByteCount_m2464505CF85702A832284F73173B97443D4D9420_RuntimeMethod_var);
}
IL_005d:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_13 = ___chars0;
NullCheck(L_13);
if ((((RuntimeArray*)L_13)->max_length))
{
goto IL_0069;
}
}
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_14 = (CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)SZArrayNew(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2_il2cpp_TypeInfo_var, (uint32_t)1);
___chars0 = L_14;
}
IL_0069:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_15 = ___chars0;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_16 = L_15;
V_1 = L_16;
if (!L_16)
{
goto IL_0073;
}
}
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_17 = V_1;
NullCheck(L_17);
if ((((int32_t)((int32_t)(((RuntimeArray*)L_17)->max_length)))))
{
goto IL_0078;
}
}
IL_0073:
{
V_0 = (Il2CppChar*)(((uintptr_t)0));
goto IL_0081;
}
IL_0078:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_18 = V_1;
NullCheck(L_18);
V_0 = (Il2CppChar*)(((uintptr_t)((L_18)->GetAddressAt(static_cast<il2cpp_array_size_t>(0)))));
}
IL_0081:
{
Il2CppChar* L_19 = V_0;
int32_t L_20 = ___index1;
int32_t L_21 = ___count2;
bool L_22 = ___flush3;
int32_t L_23 = VirtFuncInvoker3< int32_t, Il2CppChar*, int32_t, bool >::Invoke(6 /* System.Int32 System.Text.Encoder::GetByteCount(System.Char*,System.Int32,System.Boolean) */, __this, (Il2CppChar*)(Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_19, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_20)), (int32_t)2)))), L_21, L_22);
V_1 = (CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)NULL;
return L_23;
}
}
// System.Int32 System.Text.EncoderNLS::GetByteCount(System.Char*,System.Int32,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EncoderNLS_GetByteCount_mB053525E9EECAAEE5527D00E8AE85600C899E8E8 (EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * __this, Il2CppChar* ___chars0, int32_t ___count1, bool ___flush2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EncoderNLS_GetByteCount_mB053525E9EECAAEE5527D00E8AE85600C899E8E8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Il2CppChar* L_0 = ___chars0;
if ((!(((uintptr_t)L_0) == ((uintptr_t)(((uintptr_t)0))))))
{
goto IL_001a;
}
}
{
String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral867AD8C2544ED5D38EC2B4986A28AA22B284F710, /*hidden argument*/NULL);
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m9EA692D49986AEBAC433CE3381331146109AE20F(L_2, _stringLiteral76A91D6CE24FCC03EC2ECBB19E3012B5D5D40E2B, L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, EncoderNLS_GetByteCount_mB053525E9EECAAEE5527D00E8AE85600C899E8E8_RuntimeMethod_var);
}
IL_001a:
{
int32_t L_3 = ___count1;
if ((((int32_t)L_3) >= ((int32_t)0)))
{
goto IL_0033;
}
}
{
String_t* L_4 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, _stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556, L_4, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, EncoderNLS_GetByteCount_mB053525E9EECAAEE5527D00E8AE85600C899E8E8_RuntimeMethod_var);
}
IL_0033:
{
bool L_6 = ___flush2;
__this->set_m_mustFlush_4(L_6);
__this->set_m_throwOnOverflow_5((bool)1);
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_7 = __this->get_m_encoding_3();
Il2CppChar* L_8 = ___chars0;
int32_t L_9 = ___count1;
NullCheck(L_7);
int32_t L_10 = VirtFuncInvoker3< int32_t, Il2CppChar*, int32_t, EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * >::Invoke(12 /* System.Int32 System.Text.Encoding::GetByteCount(System.Char*,System.Int32,System.Text.EncoderNLS) */, L_7, (Il2CppChar*)(Il2CppChar*)L_8, L_9, __this);
return L_10;
}
}
// System.Int32 System.Text.EncoderNLS::GetBytes(System.Char[],System.Int32,System.Int32,System.Byte[],System.Int32,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EncoderNLS_GetBytes_m3DC2B38BFAF58F46EBA7CC719C81D116A441B1EC (EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * __this, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___chars0, int32_t ___charIndex1, int32_t ___charCount2, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___bytes3, int32_t ___byteIndex4, bool ___flush5, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EncoderNLS_GetBytes_m3DC2B38BFAF58F46EBA7CC719C81D116A441B1EC_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
Il2CppChar* V_1 = NULL;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* V_2 = NULL;
uint8_t* V_3 = NULL;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_4 = NULL;
String_t* G_B5_0 = NULL;
String_t* G_B11_0 = NULL;
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_0 = ___chars0;
if (!L_0)
{
goto IL_0007;
}
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = ___bytes3;
if (L_1)
{
goto IL_0026;
}
}
IL_0007:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_2 = ___chars0;
if (!L_2)
{
goto IL_0011;
}
}
{
G_B5_0 = _stringLiteralDAF529A73101C2BE626B99FC6938163E7A27620B;
goto IL_0016;
}
IL_0011:
{
G_B5_0 = _stringLiteral76A91D6CE24FCC03EC2ECBB19E3012B5D5D40E2B;
}
IL_0016:
{
String_t* L_3 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral867AD8C2544ED5D38EC2B4986A28AA22B284F710, /*hidden argument*/NULL);
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_4 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m9EA692D49986AEBAC433CE3381331146109AE20F(L_4, G_B5_0, L_3, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, EncoderNLS_GetBytes_m3DC2B38BFAF58F46EBA7CC719C81D116A441B1EC_RuntimeMethod_var);
}
IL_0026:
{
int32_t L_5 = ___charIndex1;
if ((((int32_t)L_5) < ((int32_t)0)))
{
goto IL_002e;
}
}
{
int32_t L_6 = ___charCount2;
if ((((int32_t)L_6) >= ((int32_t)0)))
{
goto IL_004e;
}
}
IL_002e:
{
int32_t L_7 = ___charIndex1;
if ((((int32_t)L_7) < ((int32_t)0)))
{
goto IL_0039;
}
}
{
G_B11_0 = _stringLiteralAB1A79FB2CBABAF9BE681B601509BD40528C11D8;
goto IL_003e;
}
IL_0039:
{
G_B11_0 = _stringLiteral74EBCD92BCF0C393F47C1A4EEA9851BB06BCEF0C;
}
IL_003e:
{
String_t* L_8 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_9 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_9, G_B11_0, L_8, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, EncoderNLS_GetBytes_m3DC2B38BFAF58F46EBA7CC719C81D116A441B1EC_RuntimeMethod_var);
}
IL_004e:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_10 = ___chars0;
NullCheck(L_10);
int32_t L_11 = ___charIndex1;
int32_t L_12 = ___charCount2;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_10)->max_length)))), (int32_t)L_11))) >= ((int32_t)L_12)))
{
goto IL_006b;
}
}
{
String_t* L_13 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral58DB15989CC5229A62FDAD47E614D05B051584E7, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_14 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_14, _stringLiteral76A91D6CE24FCC03EC2ECBB19E3012B5D5D40E2B, L_13, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_14, EncoderNLS_GetBytes_m3DC2B38BFAF58F46EBA7CC719C81D116A441B1EC_RuntimeMethod_var);
}
IL_006b:
{
int32_t L_15 = ___byteIndex4;
if ((((int32_t)L_15) < ((int32_t)0)))
{
goto IL_0078;
}
}
{
int32_t L_16 = ___byteIndex4;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_17 = ___bytes3;
NullCheck(L_17);
if ((((int32_t)L_16) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_17)->max_length)))))))
{
goto IL_008d;
}
}
IL_0078:
{
String_t* L_18 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_19 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_19, _stringLiteralB95EFA8990E2BB5BCCEF52DF47A31FC66F723D4B, L_18, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_19, EncoderNLS_GetBytes_m3DC2B38BFAF58F46EBA7CC719C81D116A441B1EC_RuntimeMethod_var);
}
IL_008d:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_20 = ___chars0;
NullCheck(L_20);
if ((((RuntimeArray*)L_20)->max_length))
{
goto IL_0099;
}
}
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_21 = (CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)SZArrayNew(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2_il2cpp_TypeInfo_var, (uint32_t)1);
___chars0 = L_21;
}
IL_0099:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_22 = ___bytes3;
NullCheck(L_22);
int32_t L_23 = ___byteIndex4;
V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_22)->max_length)))), (int32_t)L_23));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_24 = ___bytes3;
NullCheck(L_24);
if ((((RuntimeArray*)L_24)->max_length))
{
goto IL_00ae;
}
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_25 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)1);
___bytes3 = L_25;
}
IL_00ae:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_26 = ___chars0;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_27 = L_26;
V_2 = L_27;
if (!L_27)
{
goto IL_00b8;
}
}
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_28 = V_2;
NullCheck(L_28);
if ((((int32_t)((int32_t)(((RuntimeArray*)L_28)->max_length)))))
{
goto IL_00bd;
}
}
IL_00b8:
{
V_1 = (Il2CppChar*)(((uintptr_t)0));
goto IL_00c6;
}
IL_00bd:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_29 = V_2;
NullCheck(L_29);
V_1 = (Il2CppChar*)(((uintptr_t)((L_29)->GetAddressAt(static_cast<il2cpp_array_size_t>(0)))));
}
IL_00c6:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_30 = ___bytes3;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_31 = L_30;
V_4 = L_31;
if (!L_31)
{
goto IL_00d3;
}
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_32 = V_4;
NullCheck(L_32);
if ((((int32_t)((int32_t)(((RuntimeArray*)L_32)->max_length)))))
{
goto IL_00d8;
}
}
IL_00d3:
{
V_3 = (uint8_t*)(((uintptr_t)0));
goto IL_00e2;
}
IL_00d8:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_33 = V_4;
NullCheck(L_33);
V_3 = (uint8_t*)(((uintptr_t)((L_33)->GetAddressAt(static_cast<il2cpp_array_size_t>(0)))));
}
IL_00e2:
{
Il2CppChar* L_34 = V_1;
int32_t L_35 = ___charIndex1;
int32_t L_36 = ___charCount2;
uint8_t* L_37 = V_3;
int32_t L_38 = ___byteIndex4;
int32_t L_39 = V_0;
bool L_40 = ___flush5;
int32_t L_41 = 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) */, __this, (Il2CppChar*)(Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_34, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_35)), (int32_t)2)))), L_36, (uint8_t*)(uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_37, (int32_t)L_38)), L_39, L_40);
return L_41;
}
}
// System.Int32 System.Text.EncoderNLS::GetBytes(System.Char*,System.Int32,System.Byte*,System.Int32,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EncoderNLS_GetBytes_m65DADC849D5DE481268079495F2155E43002D863 (EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * __this, Il2CppChar* ___chars0, int32_t ___charCount1, uint8_t* ___bytes2, int32_t ___byteCount3, bool ___flush4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EncoderNLS_GetBytes_m65DADC849D5DE481268079495F2155E43002D863_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* G_B5_0 = NULL;
String_t* G_B11_0 = NULL;
{
Il2CppChar* L_0 = ___chars0;
if ((((intptr_t)L_0) == ((intptr_t)(((uintptr_t)0)))))
{
goto IL_000a;
}
}
{
uint8_t* L_1 = ___bytes2;
if ((!(((uintptr_t)L_1) == ((uintptr_t)(((uintptr_t)0))))))
{
goto IL_002b;
}
}
IL_000a:
{
Il2CppChar* L_2 = ___chars0;
if ((((intptr_t)L_2) == ((intptr_t)(((uintptr_t)0)))))
{
goto IL_0016;
}
}
{
G_B5_0 = _stringLiteralDAF529A73101C2BE626B99FC6938163E7A27620B;
goto IL_001b;
}
IL_0016:
{
G_B5_0 = _stringLiteral76A91D6CE24FCC03EC2ECBB19E3012B5D5D40E2B;
}
IL_001b:
{
String_t* L_3 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral867AD8C2544ED5D38EC2B4986A28AA22B284F710, /*hidden argument*/NULL);
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_4 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m9EA692D49986AEBAC433CE3381331146109AE20F(L_4, G_B5_0, L_3, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, EncoderNLS_GetBytes_m65DADC849D5DE481268079495F2155E43002D863_RuntimeMethod_var);
}
IL_002b:
{
int32_t L_5 = ___byteCount3;
if ((((int32_t)L_5) < ((int32_t)0)))
{
goto IL_0034;
}
}
{
int32_t L_6 = ___charCount1;
if ((((int32_t)L_6) >= ((int32_t)0)))
{
goto IL_0055;
}
}
IL_0034:
{
int32_t L_7 = ___byteCount3;
if ((((int32_t)L_7) < ((int32_t)0)))
{
goto IL_0040;
}
}
{
G_B11_0 = _stringLiteralAB1A79FB2CBABAF9BE681B601509BD40528C11D8;
goto IL_0045;
}
IL_0040:
{
G_B11_0 = _stringLiteral278316CA5ED0FC3A0A92ED4DC8DA6CA9FB56DEBA;
}
IL_0045:
{
String_t* L_8 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_9 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_9, G_B11_0, L_8, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, EncoderNLS_GetBytes_m65DADC849D5DE481268079495F2155E43002D863_RuntimeMethod_var);
}
IL_0055:
{
bool L_10 = ___flush4;
__this->set_m_mustFlush_4(L_10);
__this->set_m_throwOnOverflow_5((bool)1);
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_11 = __this->get_m_encoding_3();
Il2CppChar* L_12 = ___chars0;
int32_t L_13 = ___charCount1;
uint8_t* L_14 = ___bytes2;
int32_t L_15 = ___byteCount3;
NullCheck(L_11);
int32_t L_16 = VirtFuncInvoker5< int32_t, Il2CppChar*, int32_t, uint8_t*, int32_t, EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * >::Invoke(16 /* System.Int32 System.Text.Encoding::GetBytes(System.Char*,System.Int32,System.Byte*,System.Int32,System.Text.EncoderNLS) */, L_11, (Il2CppChar*)(Il2CppChar*)L_12, L_13, (uint8_t*)(uint8_t*)L_14, L_15, __this);
return L_16;
}
}
// System.Text.Encoding System.Text.EncoderNLS::get_Encoding()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * EncoderNLS_get_Encoding_mCDF2F7C580FCF269BE40BC9BBA55CCD5A8F4C715 (EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * __this, const RuntimeMethod* method)
{
{
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_0 = __this->get_m_encoding_3();
return L_0;
}
}
// System.Boolean System.Text.EncoderNLS::get_MustFlush()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EncoderNLS_get_MustFlush_mBA7B13F498D63B50EFFA562AC02EC73A2E8597DF (EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_m_mustFlush_4();
return L_0;
}
}
// System.Void System.Text.EncoderNLS::ClearMustFlush()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EncoderNLS_ClearMustFlush_mECADE44B82A8FED6B5284A5D916C4E2B26E326A3 (EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * __this, const RuntimeMethod* method)
{
{
__this->set_m_mustFlush_4((bool)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.Text.EncoderReplacementFallback::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EncoderReplacementFallback__ctor_mAB909581BDACE020217C9A308321E41802705D1E (EncoderReplacementFallback_tC2E8A94C82BBF7A4CFC8E3FDBA8A381DCF29F998 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EncoderReplacementFallback__ctor_mAB909581BDACE020217C9A308321E41802705D1E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
EncoderReplacementFallback__ctor_mAE97C6B5EF9A81A90315A21E68271FAE87A738FD(__this, _stringLiteral5BAB61EB53176449E25C2C82F172B82CB13FFB9D, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Text.EncoderReplacementFallback::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EncoderReplacementFallback__ctor_mAE97C6B5EF9A81A90315A21E68271FAE87A738FD (EncoderReplacementFallback_tC2E8A94C82BBF7A4CFC8E3FDBA8A381DCF29F998 * __this, String_t* ___replacement0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EncoderReplacementFallback__ctor_mAE97C6B5EF9A81A90315A21E68271FAE87A738FD_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
int32_t V_1 = 0;
{
EncoderFallback__ctor_m7EDA0415798986D15DA060414B0839FF158B9227(__this, /*hidden argument*/NULL);
String_t* L_0 = ___replacement0;
if (L_0)
{
goto IL_0014;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral91B5C0A6D4701FE02DC3B4EB37DF29C5719A9EC6, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, EncoderReplacementFallback__ctor_mAE97C6B5EF9A81A90315A21E68271FAE87A738FD_RuntimeMethod_var);
}
IL_0014:
{
V_0 = (bool)0;
V_1 = 0;
goto IL_0045;
}
IL_001a:
{
String_t* L_2 = ___replacement0;
int32_t L_3 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var);
bool L_4 = Char_IsSurrogate_m43C03392CA71985B36FE7EB29B6ECB2DABA2680F(L_2, L_3, /*hidden argument*/NULL);
if (!L_4)
{
goto IL_003e;
}
}
{
String_t* L_5 = ___replacement0;
int32_t L_6 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var);
bool L_7 = Char_IsHighSurrogate_m8AB8BB9DEC2443D5799232FDA89C5BD0E5E091DB(L_5, L_6, /*hidden argument*/NULL);
if (!L_7)
{
goto IL_0033;
}
}
{
bool L_8 = V_0;
if (L_8)
{
goto IL_004e;
}
}
{
V_0 = (bool)1;
goto IL_0041;
}
IL_0033:
{
bool L_9 = V_0;
if (L_9)
{
goto IL_003a;
}
}
{
V_0 = (bool)1;
goto IL_004e;
}
IL_003a:
{
V_0 = (bool)0;
goto IL_0041;
}
IL_003e:
{
bool L_10 = V_0;
if (L_10)
{
goto IL_004e;
}
}
IL_0041:
{
int32_t L_11 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)1));
}
IL_0045:
{
int32_t L_12 = V_1;
String_t* L_13 = ___replacement0;
NullCheck(L_13);
int32_t L_14 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_13, /*hidden argument*/NULL);
if ((((int32_t)L_12) < ((int32_t)L_14)))
{
goto IL_001a;
}
}
IL_004e:
{
bool L_15 = V_0;
if (!L_15)
{
goto IL_006f;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_16 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_17 = L_16;
NullCheck(L_17);
ArrayElementTypeCheck (L_17, _stringLiteral91B5C0A6D4701FE02DC3B4EB37DF29C5719A9EC6);
(L_17)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)_stringLiteral91B5C0A6D4701FE02DC3B4EB37DF29C5719A9EC6);
String_t* L_18 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteral27461778DEE27391FA6989DD3BF8A0988F190F59, L_17, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_19 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_19, L_18, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_19, EncoderReplacementFallback__ctor_mAE97C6B5EF9A81A90315A21E68271FAE87A738FD_RuntimeMethod_var);
}
IL_006f:
{
String_t* L_20 = ___replacement0;
__this->set_strDefault_4(L_20);
return;
}
}
// System.String System.Text.EncoderReplacementFallback::get_DefaultString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* EncoderReplacementFallback_get_DefaultString_m309F22B8DC7DFCFA07DB9B21498454B935B2BBB0 (EncoderReplacementFallback_tC2E8A94C82BBF7A4CFC8E3FDBA8A381DCF29F998 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_strDefault_4();
return L_0;
}
}
// System.Text.EncoderFallbackBuffer System.Text.EncoderReplacementFallback::CreateFallbackBuffer()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * EncoderReplacementFallback_CreateFallbackBuffer_mFFF8A98D618365EFE337A954FC1B630D0C1833F4 (EncoderReplacementFallback_tC2E8A94C82BBF7A4CFC8E3FDBA8A381DCF29F998 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EncoderReplacementFallback_CreateFallbackBuffer_mFFF8A98D618365EFE337A954FC1B630D0C1833F4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
EncoderReplacementFallbackBuffer_t15BBCFD4E3EFF8C907821BB065AA94A58C36959A * L_0 = (EncoderReplacementFallbackBuffer_t15BBCFD4E3EFF8C907821BB065AA94A58C36959A *)il2cpp_codegen_object_new(EncoderReplacementFallbackBuffer_t15BBCFD4E3EFF8C907821BB065AA94A58C36959A_il2cpp_TypeInfo_var);
EncoderReplacementFallbackBuffer__ctor_mB08FC9E15D22A19BCA52A1A16FD49F99C7214D80(L_0, __this, /*hidden argument*/NULL);
return L_0;
}
}
// System.Int32 System.Text.EncoderReplacementFallback::get_MaxCharCount()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EncoderReplacementFallback_get_MaxCharCount_m4CE10925471F6FA7A0DE6615C25254A54E356575 (EncoderReplacementFallback_tC2E8A94C82BBF7A4CFC8E3FDBA8A381DCF29F998 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_strDefault_4();
NullCheck(L_0);
int32_t L_1 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_0, /*hidden argument*/NULL);
return L_1;
}
}
// System.Boolean System.Text.EncoderReplacementFallback::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EncoderReplacementFallback_Equals_m2B6448E4B76B3F9CA1F888F9D6EBBD78A817504D (EncoderReplacementFallback_tC2E8A94C82BBF7A4CFC8E3FDBA8A381DCF29F998 * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EncoderReplacementFallback_Equals_m2B6448E4B76B3F9CA1F888F9D6EBBD78A817504D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
EncoderReplacementFallback_tC2E8A94C82BBF7A4CFC8E3FDBA8A381DCF29F998 * V_0 = NULL;
{
RuntimeObject * L_0 = ___value0;
V_0 = ((EncoderReplacementFallback_tC2E8A94C82BBF7A4CFC8E3FDBA8A381DCF29F998 *)IsInstSealed((RuntimeObject*)L_0, EncoderReplacementFallback_tC2E8A94C82BBF7A4CFC8E3FDBA8A381DCF29F998_il2cpp_TypeInfo_var));
EncoderReplacementFallback_tC2E8A94C82BBF7A4CFC8E3FDBA8A381DCF29F998 * L_1 = V_0;
if (!L_1)
{
goto IL_001c;
}
}
{
String_t* L_2 = __this->get_strDefault_4();
EncoderReplacementFallback_tC2E8A94C82BBF7A4CFC8E3FDBA8A381DCF29F998 * L_3 = V_0;
NullCheck(L_3);
String_t* L_4 = L_3->get_strDefault_4();
bool L_5 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_2, L_4, /*hidden argument*/NULL);
return L_5;
}
IL_001c:
{
return (bool)0;
}
}
// System.Int32 System.Text.EncoderReplacementFallback::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EncoderReplacementFallback_GetHashCode_mF8AB20E5F210B75732E67D4E6D763147C67843C7 (EncoderReplacementFallback_tC2E8A94C82BBF7A4CFC8E3FDBA8A381DCF29F998 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_strDefault_4();
NullCheck(L_0);
int32_t L_1 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, 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.Text.EncoderReplacementFallbackBuffer::.ctor(System.Text.EncoderReplacementFallback)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EncoderReplacementFallbackBuffer__ctor_mB08FC9E15D22A19BCA52A1A16FD49F99C7214D80 (EncoderReplacementFallbackBuffer_t15BBCFD4E3EFF8C907821BB065AA94A58C36959A * __this, EncoderReplacementFallback_tC2E8A94C82BBF7A4CFC8E3FDBA8A381DCF29F998 * ___fallback0, const RuntimeMethod* method)
{
{
__this->set_fallbackCount_8((-1));
__this->set_fallbackIndex_9((-1));
EncoderFallbackBuffer__ctor_mE3698942F859D99529557619E751C18775FD49E9(__this, /*hidden argument*/NULL);
EncoderReplacementFallback_tC2E8A94C82BBF7A4CFC8E3FDBA8A381DCF29F998 * L_0 = ___fallback0;
NullCheck(L_0);
String_t* L_1 = EncoderReplacementFallback_get_DefaultString_m309F22B8DC7DFCFA07DB9B21498454B935B2BBB0_inline(L_0, /*hidden argument*/NULL);
EncoderReplacementFallback_tC2E8A94C82BBF7A4CFC8E3FDBA8A381DCF29F998 * L_2 = ___fallback0;
NullCheck(L_2);
String_t* L_3 = EncoderReplacementFallback_get_DefaultString_m309F22B8DC7DFCFA07DB9B21498454B935B2BBB0_inline(L_2, /*hidden argument*/NULL);
String_t* L_4 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(L_1, L_3, /*hidden argument*/NULL);
__this->set_strDefault_7(L_4);
return;
}
}
// System.Boolean System.Text.EncoderReplacementFallbackBuffer::Fallback(System.Char,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EncoderReplacementFallbackBuffer_Fallback_mE5AF63C1276344255C17B117359253A553F0F5B7 (EncoderReplacementFallbackBuffer_t15BBCFD4E3EFF8C907821BB065AA94A58C36959A * __this, Il2CppChar ___charUnknown0, int32_t ___index1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EncoderReplacementFallbackBuffer_Fallback_mE5AF63C1276344255C17B117359253A553F0F5B7_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = __this->get_fallbackCount_8();
if ((((int32_t)L_0) < ((int32_t)1)))
{
goto IL_005a;
}
}
{
Il2CppChar L_1 = ___charUnknown0;
IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var);
bool L_2 = Char_IsHighSurrogate_m64C60C09A8561520E43C8527D3DC38FF97E6274D(L_1, /*hidden argument*/NULL);
if (!L_2)
{
goto IL_0053;
}
}
{
int32_t L_3 = __this->get_fallbackCount_8();
if ((((int32_t)L_3) < ((int32_t)0)))
{
goto IL_0053;
}
}
{
String_t* L_4 = __this->get_strDefault_7();
int32_t L_5 = __this->get_fallbackIndex_9();
NullCheck(L_4);
Il2CppChar L_6 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_4, ((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)1)), /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var);
bool L_7 = Char_IsLowSurrogate_m11EF790BE9683BDF04022FD055104AE7A22A6A9C(L_6, /*hidden argument*/NULL);
if (!L_7)
{
goto IL_0053;
}
}
{
Il2CppChar L_8 = ___charUnknown0;
String_t* L_9 = __this->get_strDefault_7();
int32_t L_10 = __this->get_fallbackIndex_9();
NullCheck(L_9);
Il2CppChar L_11 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_9, ((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1)), /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var);
int32_t L_12 = Char_ConvertToUtf32_m2AFA8A0A98ECFE3ACF3F74D45F7546ADBBADD601(L_8, L_11, /*hidden argument*/NULL);
EncoderFallbackBuffer_ThrowLastCharRecursive_m35D9DB23D34C93BDFF7670C5DA045C6FBA6A2458(__this, L_12, /*hidden argument*/NULL);
}
IL_0053:
{
Il2CppChar L_13 = ___charUnknown0;
EncoderFallbackBuffer_ThrowLastCharRecursive_m35D9DB23D34C93BDFF7670C5DA045C6FBA6A2458(__this, L_13, /*hidden argument*/NULL);
}
IL_005a:
{
String_t* L_14 = __this->get_strDefault_7();
NullCheck(L_14);
int32_t L_15 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_14, /*hidden argument*/NULL);
__this->set_fallbackCount_8(((int32_t)((int32_t)L_15/(int32_t)2)));
__this->set_fallbackIndex_9((-1));
int32_t L_16 = __this->get_fallbackCount_8();
return (bool)((!(((uint32_t)L_16) <= ((uint32_t)0)))? 1 : 0);
}
}
// System.Boolean System.Text.EncoderReplacementFallbackBuffer::Fallback(System.Char,System.Char,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EncoderReplacementFallbackBuffer_Fallback_m8CB0F63F9FF142B4AA016E5453EEDF57920202E3 (EncoderReplacementFallbackBuffer_t15BBCFD4E3EFF8C907821BB065AA94A58C36959A * __this, Il2CppChar ___charUnknownHigh0, Il2CppChar ___charUnknownLow1, int32_t ___index2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EncoderReplacementFallbackBuffer_Fallback_m8CB0F63F9FF142B4AA016E5453EEDF57920202E3_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Il2CppChar L_0 = ___charUnknownHigh0;
IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var);
bool L_1 = Char_IsHighSurrogate_m64C60C09A8561520E43C8527D3DC38FF97E6274D(L_0, /*hidden argument*/NULL);
if (L_1)
{
goto IL_003d;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)2);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = L_2;
int32_t L_4 = ((int32_t)55296);
RuntimeObject * L_5 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_4);
NullCheck(L_3);
ArrayElementTypeCheck (L_3, L_5);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_5);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_6 = L_3;
int32_t L_7 = ((int32_t)56319);
RuntimeObject * L_8 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_7);
NullCheck(L_6);
ArrayElementTypeCheck (L_6, L_8);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_8);
String_t* L_9 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteralA980EEDA49322EB9BE88B6480B2BE63B70186B1E, L_6, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_10 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_10, _stringLiteralA6738FE7E06CA51E1F969D48582951374F467129, L_9, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, EncoderReplacementFallbackBuffer_Fallback_m8CB0F63F9FF142B4AA016E5453EEDF57920202E3_RuntimeMethod_var);
}
IL_003d:
{
Il2CppChar L_11 = ___charUnknownLow1;
IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var);
bool L_12 = Char_IsLowSurrogate_m11EF790BE9683BDF04022FD055104AE7A22A6A9C(L_11, /*hidden argument*/NULL);
if (L_12)
{
goto IL_007a;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_13 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)2);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_14 = L_13;
int32_t L_15 = ((int32_t)56320);
RuntimeObject * L_16 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_15);
NullCheck(L_14);
ArrayElementTypeCheck (L_14, L_16);
(L_14)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_16);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_17 = L_14;
int32_t L_18 = ((int32_t)57343);
RuntimeObject * L_19 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_18);
NullCheck(L_17);
ArrayElementTypeCheck (L_17, L_19);
(L_17)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_19);
String_t* L_20 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteralA980EEDA49322EB9BE88B6480B2BE63B70186B1E, L_17, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_21 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_21, _stringLiteral5578D8A7F74274702931BBEDBD2FC483A5E92E4B, L_20, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_21, EncoderReplacementFallbackBuffer_Fallback_m8CB0F63F9FF142B4AA016E5453EEDF57920202E3_RuntimeMethod_var);
}
IL_007a:
{
int32_t L_22 = __this->get_fallbackCount_8();
if ((((int32_t)L_22) < ((int32_t)1)))
{
goto IL_0090;
}
}
{
Il2CppChar L_23 = ___charUnknownHigh0;
Il2CppChar L_24 = ___charUnknownLow1;
IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var);
int32_t L_25 = Char_ConvertToUtf32_m2AFA8A0A98ECFE3ACF3F74D45F7546ADBBADD601(L_23, L_24, /*hidden argument*/NULL);
EncoderFallbackBuffer_ThrowLastCharRecursive_m35D9DB23D34C93BDFF7670C5DA045C6FBA6A2458(__this, L_25, /*hidden argument*/NULL);
}
IL_0090:
{
String_t* L_26 = __this->get_strDefault_7();
NullCheck(L_26);
int32_t L_27 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_26, /*hidden argument*/NULL);
__this->set_fallbackCount_8(L_27);
__this->set_fallbackIndex_9((-1));
int32_t L_28 = __this->get_fallbackCount_8();
return (bool)((!(((uint32_t)L_28) <= ((uint32_t)0)))? 1 : 0);
}
}
// System.Char System.Text.EncoderReplacementFallbackBuffer::GetNextChar()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar EncoderReplacementFallbackBuffer_GetNextChar_m8DA4FCA47EE214AF7C0F1446DB3FE5EDD50945C2 (EncoderReplacementFallbackBuffer_t15BBCFD4E3EFF8C907821BB065AA94A58C36959A * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_fallbackCount_8();
__this->set_fallbackCount_8(((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)1)));
int32_t L_1 = __this->get_fallbackIndex_9();
__this->set_fallbackIndex_9(((int32_t)il2cpp_codegen_add((int32_t)L_1, (int32_t)1)));
int32_t L_2 = __this->get_fallbackCount_8();
if ((((int32_t)L_2) >= ((int32_t)0)))
{
goto IL_0027;
}
}
{
return 0;
}
IL_0027:
{
int32_t L_3 = __this->get_fallbackCount_8();
if ((!(((uint32_t)L_3) == ((uint32_t)((int32_t)2147483647LL)))))
{
goto IL_003d;
}
}
{
__this->set_fallbackCount_8((-1));
return 0;
}
IL_003d:
{
String_t* L_4 = __this->get_strDefault_7();
int32_t L_5 = __this->get_fallbackIndex_9();
NullCheck(L_4);
Il2CppChar L_6 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_4, L_5, /*hidden argument*/NULL);
return L_6;
}
}
// System.Boolean System.Text.EncoderReplacementFallbackBuffer::MovePrevious()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EncoderReplacementFallbackBuffer_MovePrevious_m216798E0A2C70B378BACFE37510B38E8B397EF07 (EncoderReplacementFallbackBuffer_t15BBCFD4E3EFF8C907821BB065AA94A58C36959A * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_fallbackCount_8();
if ((((int32_t)L_0) < ((int32_t)(-1))))
{
goto IL_0030;
}
}
{
int32_t L_1 = __this->get_fallbackIndex_9();
if ((((int32_t)L_1) < ((int32_t)0)))
{
goto IL_0030;
}
}
{
int32_t L_2 = __this->get_fallbackIndex_9();
__this->set_fallbackIndex_9(((int32_t)il2cpp_codegen_subtract((int32_t)L_2, (int32_t)1)));
int32_t L_3 = __this->get_fallbackCount_8();
__this->set_fallbackCount_8(((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1)));
return (bool)1;
}
IL_0030:
{
return (bool)0;
}
}
// System.Int32 System.Text.EncoderReplacementFallbackBuffer::get_Remaining()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EncoderReplacementFallbackBuffer_get_Remaining_m50A87BF8BF4C8177C34CADBCA223111E74DA8927 (EncoderReplacementFallbackBuffer_t15BBCFD4E3EFF8C907821BB065AA94A58C36959A * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_fallbackCount_8();
if ((((int32_t)L_0) < ((int32_t)0)))
{
goto IL_0010;
}
}
{
int32_t L_1 = __this->get_fallbackCount_8();
return L_1;
}
IL_0010:
{
return 0;
}
}
// System.Void System.Text.EncoderReplacementFallbackBuffer::Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EncoderReplacementFallbackBuffer_Reset_mA4557ABE2C203C20417C3F0BDB48E436B3D9CB7B (EncoderReplacementFallbackBuffer_t15BBCFD4E3EFF8C907821BB065AA94A58C36959A * __this, const RuntimeMethod* method)
{
{
__this->set_fallbackCount_8((-1));
__this->set_fallbackIndex_9(0);
((EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C *)__this)->set_charStart_0((Il2CppChar*)(((uintptr_t)0)));
((EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C *)__this)->set_bFallingBack_5((bool)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.Text.Encoding::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Encoding__ctor_mD471DCEC5836E18498A19E921AC2CAA8C3A3E654 (Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * __this, const RuntimeMethod* method)
{
{
Encoding__ctor_m25E853E4AF252CA29A3295065E83BA2C7B1416D5(__this, 0, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Text.Encoding::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Encoding__ctor_m25E853E4AF252CA29A3295065E83BA2C7B1416D5 (Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * __this, int32_t ___codePage0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Encoding__ctor_m25E853E4AF252CA29A3295065E83BA2C7B1416D5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
__this->set_m_isReadOnly_12((bool)1);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
int32_t L_0 = ___codePage0;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_001c;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_1 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_1, _stringLiteralBAB8760F6CF09B28595E71F6D936D7009C0C073C, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Encoding__ctor_m25E853E4AF252CA29A3295065E83BA2C7B1416D5_RuntimeMethod_var);
}
IL_001c:
{
int32_t L_2 = ___codePage0;
__this->set_m_codePage_9(L_2);
VirtActionInvoker0::Invoke(5 /* System.Void System.Text.Encoding::SetDefaultFallbacks() */, __this);
return;
}
}
// System.Void System.Text.Encoding::SetDefaultFallbacks()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Encoding_SetDefaultFallbacks_m50957843AEDBDF1A16CB170D84F67B6801F83B7C (Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Encoding_SetDefaultFallbacks_m50957843AEDBDF1A16CB170D84F67B6801F83B7C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InternalEncoderBestFitFallback_tE5EF81259A780E6F8990218A8E46D41B5BCE56F3 * L_0 = (InternalEncoderBestFitFallback_tE5EF81259A780E6F8990218A8E46D41B5BCE56F3 *)il2cpp_codegen_object_new(InternalEncoderBestFitFallback_tE5EF81259A780E6F8990218A8E46D41B5BCE56F3_il2cpp_TypeInfo_var);
InternalEncoderBestFitFallback__ctor_m74F421EBA10BBB6CD286DA81A1E26A026227DAE2(L_0, __this, /*hidden argument*/NULL);
__this->set_encoderFallback_13(L_0);
InternalDecoderBestFitFallback_tEDAD252E54B0CA27A47ABC5681EC6BCACB3C19B4 * L_1 = (InternalDecoderBestFitFallback_tEDAD252E54B0CA27A47ABC5681EC6BCACB3C19B4 *)il2cpp_codegen_object_new(InternalDecoderBestFitFallback_tEDAD252E54B0CA27A47ABC5681EC6BCACB3C19B4_il2cpp_TypeInfo_var);
InternalDecoderBestFitFallback__ctor_m9DC081B41C021834638AA9E36979B35C5172F744(L_1, __this, /*hidden argument*/NULL);
__this->set_decoderFallback_14(L_1);
return;
}
}
// System.Void System.Text.Encoding::OnDeserializing()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Encoding_OnDeserializing_m3099E7D70952FCB1960ABC13D1CE1E70FD9B2AA3 (Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * __this, const RuntimeMethod* method)
{
{
__this->set_encoderFallback_13((EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 *)NULL);
__this->set_decoderFallback_14((DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 *)NULL);
__this->set_m_isReadOnly_12((bool)1);
return;
}
}
// System.Void System.Text.Encoding::OnDeserialized()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Encoding_OnDeserialized_m9F589E77A408BE494602A4EF2C678D7A0FA77EED (Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * __this, const RuntimeMethod* method)
{
{
EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * L_0 = __this->get_encoderFallback_13();
if (!L_0)
{
goto IL_0010;
}
}
{
DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * L_1 = __this->get_decoderFallback_14();
if (L_1)
{
goto IL_001d;
}
}
IL_0010:
{
__this->set_m_deserializedFromEverett_11((bool)1);
VirtActionInvoker0::Invoke(5 /* System.Void System.Text.Encoding::SetDefaultFallbacks() */, __this);
}
IL_001d:
{
__this->set_dataItem_10((CodePageDataItem_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB *)NULL);
return;
}
}
// System.Void System.Text.Encoding::OnDeserializing(System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Encoding_OnDeserializing_m053ED79014995B6D89F5223C6A5F39580C676062 (Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * __this, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___ctx0, const RuntimeMethod* method)
{
{
Encoding_OnDeserializing_m3099E7D70952FCB1960ABC13D1CE1E70FD9B2AA3(__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Text.Encoding::OnDeserialized(System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Encoding_OnDeserialized_mD299638A936E9E1C2A4ADF0D6BD0FDBC6781032C (Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * __this, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___ctx0, const RuntimeMethod* method)
{
{
Encoding_OnDeserialized_m9F589E77A408BE494602A4EF2C678D7A0FA77EED(__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Text.Encoding::OnSerializing(System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Encoding_OnSerializing_m3E2984E122F2F7339E72A8DB7E36C63BA0308159 (Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * __this, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___ctx0, const RuntimeMethod* method)
{
{
__this->set_dataItem_10((CodePageDataItem_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB *)NULL);
return;
}
}
// System.Void System.Text.Encoding::DeserializeEncoding(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Encoding_DeserializeEncoding_m69F4C52BF07039A20AA9E72F9CB7803862D10B44 (Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Encoding_DeserializeEncoding_m69F4C52BF07039A20AA9E72F9CB7803862D10B44_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);
{
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral59BD0A3FF43B32849B319E645D4798D8A5D1E889, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Encoding_DeserializeEncoding_m69F4C52BF07039A20AA9E72F9CB7803862D10B44_RuntimeMethod_var);
}
IL_000e:
{
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_2 = ___info0;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_3 = { reinterpret_cast<intptr_t> (Int32_t585191389E07734F19F3156FF88FB3EF4800D102_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_4 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_3, /*hidden argument*/NULL);
NullCheck(L_2);
RuntimeObject * L_5 = SerializationInfo_GetValue_m7910CE6C68888C1F863D7A35915391FA33463ECF(L_2, _stringLiteralAC7EE53D255CCAA9C142D834D50D914FB2AF12D7, L_4, /*hidden argument*/NULL);
__this->set_m_codePage_9(((*(int32_t*)((int32_t*)UnBox(L_5, Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var)))));
__this->set_dataItem_10((CodePageDataItem_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB *)NULL);
}
IL_0035:
try
{ // begin try (depth: 1)
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_6 = ___info0;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_7 = { reinterpret_cast<intptr_t> (Boolean_tB53F6830F670160873277339AA58F15CAED4399C_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_8 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_7, /*hidden argument*/NULL);
NullCheck(L_6);
RuntimeObject * L_9 = SerializationInfo_GetValue_m7910CE6C68888C1F863D7A35915391FA33463ECF(L_6, _stringLiteral37A1B691DA7F35114BD641247FD0D89D439D37B4, L_8, /*hidden argument*/NULL);
__this->set_m_isReadOnly_12(((*(bool*)((bool*)UnBox(L_9, Boolean_tB53F6830F670160873277339AA58F15CAED4399C_il2cpp_TypeInfo_var)))));
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_10 = ___info0;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_11 = { reinterpret_cast<intptr_t> (EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63_0_0_0_var) };
Type_t * L_12 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_11, /*hidden argument*/NULL);
NullCheck(L_10);
RuntimeObject * L_13 = SerializationInfo_GetValue_m7910CE6C68888C1F863D7A35915391FA33463ECF(L_10, _stringLiteral9DBFE0068B99B1F80D4D19F33A3428AC56F51C1A, L_12, /*hidden argument*/NULL);
__this->set_encoderFallback_13(((EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 *)CastclassClass((RuntimeObject*)L_13, EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63_il2cpp_TypeInfo_var)));
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_14 = ___info0;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_15 = { reinterpret_cast<intptr_t> (DecoderFallback_t128445EB7676870485230893338EF044F6B72F60_0_0_0_var) };
Type_t * L_16 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_15, /*hidden argument*/NULL);
NullCheck(L_14);
RuntimeObject * L_17 = SerializationInfo_GetValue_m7910CE6C68888C1F863D7A35915391FA33463ECF(L_14, _stringLiteral2028F29133B2E44BEB124C38745724AC71E7E14C, L_16, /*hidden argument*/NULL);
__this->set_decoderFallback_14(((DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 *)CastclassClass((RuntimeObject*)L_17, DecoderFallback_t128445EB7676870485230893338EF044F6B72F60_il2cpp_TypeInfo_var)));
goto IL_00ae;
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0097;
throw e;
}
CATCH_0097:
{ // begin catch(System.Runtime.Serialization.SerializationException)
__this->set_m_deserializedFromEverett_11((bool)1);
__this->set_m_isReadOnly_12((bool)1);
VirtActionInvoker0::Invoke(5 /* System.Void System.Text.Encoding::SetDefaultFallbacks() */, __this);
goto IL_00ae;
} // end catch (depth: 1)
IL_00ae:
{
return;
}
}
// System.Void System.Text.Encoding::SerializeEncoding(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Encoding_SerializeEncoding_m5F127574AC8568AAE4E93246ECA908E7D384131D (Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Encoding_SerializeEncoding_m5F127574AC8568AAE4E93246ECA908E7D384131D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral59BD0A3FF43B32849B319E645D4798D8A5D1E889, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Encoding_SerializeEncoding_m5F127574AC8568AAE4E93246ECA908E7D384131D_RuntimeMethod_var);
}
IL_000e:
{
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_2 = ___info0;
bool L_3 = __this->get_m_isReadOnly_12();
NullCheck(L_2);
SerializationInfo_AddValue_m1229CE68F507974EBA0DA9C7C728A09E611D18B1(L_2, _stringLiteral37A1B691DA7F35114BD641247FD0D89D439D37B4, L_3, /*hidden argument*/NULL);
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_4 = ___info0;
EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * L_5 = Encoding_get_EncoderFallback_m56A241904105944473545473FA20E07BF52B1885_inline(__this, /*hidden argument*/NULL);
NullCheck(L_4);
SerializationInfo_AddValue_mC9D1E16476E24E1AFE7C59368D3BC0B35F64FBC6(L_4, _stringLiteral9DBFE0068B99B1F80D4D19F33A3428AC56F51C1A, L_5, /*hidden argument*/NULL);
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_6 = ___info0;
DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * L_7 = Encoding_get_DecoderFallback_m237581892E1C081234AFD800FCBC321C911EB657_inline(__this, /*hidden argument*/NULL);
NullCheck(L_6);
SerializationInfo_AddValue_mC9D1E16476E24E1AFE7C59368D3BC0B35F64FBC6(L_6, _stringLiteral2028F29133B2E44BEB124C38745724AC71E7E14C, L_7, /*hidden argument*/NULL);
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_8 = ___info0;
int32_t L_9 = __this->get_m_codePage_9();
NullCheck(L_8);
SerializationInfo_AddValue_m7C73917D9DC4B8FE4AFEF4BA8EBEDAB046A8D0BD(L_8, _stringLiteralAC7EE53D255CCAA9C142D834D50D914FB2AF12D7, L_9, /*hidden argument*/NULL);
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_10 = ___info0;
NullCheck(L_10);
SerializationInfo_AddValue_mC9D1E16476E24E1AFE7C59368D3BC0B35F64FBC6(L_10, _stringLiteral9C69ED46DDEDE4A71CFA1D52A9CD28D7430F6E50, NULL, /*hidden argument*/NULL);
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_11 = ___info0;
int32_t L_12 = __this->get_m_codePage_9();
NullCheck(L_11);
SerializationInfo_AddValue_m7C73917D9DC4B8FE4AFEF4BA8EBEDAB046A8D0BD(L_11, _stringLiteral787D1014DDC9B67D8157D7974127B8858C74A1EC, L_12, /*hidden argument*/NULL);
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_13 = ___info0;
NullCheck(L_13);
SerializationInfo_AddValue_mC9D1E16476E24E1AFE7C59368D3BC0B35F64FBC6(L_13, _stringLiteral9E90614EF6993D80DCEAC568C486CC6672F4CA07, NULL, /*hidden argument*/NULL);
return;
}
}
// System.Object System.Text.Encoding::get_InternalSyncObject()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Encoding_get_InternalSyncObject_m83E4529829B8FCFB1CE706425804440F6BAD073E (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Encoding_get_InternalSyncObject_m83E4529829B8FCFB1CE706425804440F6BAD073E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject * V_0 = NULL;
{
RuntimeObject * L_0 = ((Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields*)il2cpp_codegen_static_fields_for(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_il2cpp_TypeInfo_var))->get_s_InternalSyncObject_15();
if (L_0)
{
goto IL_001a;
}
}
{
RuntimeObject * L_1 = (RuntimeObject *)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(L_1, /*hidden argument*/NULL);
V_0 = L_1;
RuntimeObject * L_2 = V_0;
InterlockedCompareExchangeImpl<RuntimeObject *>((RuntimeObject **)(((Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields*)il2cpp_codegen_static_fields_for(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_il2cpp_TypeInfo_var))->get_address_of_s_InternalSyncObject_15()), L_2, NULL);
}
IL_001a:
{
RuntimeObject * L_3 = ((Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields*)il2cpp_codegen_static_fields_for(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_il2cpp_TypeInfo_var))->get_s_InternalSyncObject_15();
return L_3;
}
}
// System.Text.Encoding System.Text.Encoding::GetEncoding(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * Encoding_GetEncoding_m0F51F30DFDD74D989E27C58C53FC82718CC51F68 (int32_t ___codepage0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Encoding_GetEncoding_m0F51F30DFDD74D989E27C58C53FC82718CC51F68_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * V_0 = NULL;
RuntimeObject * V_1 = NULL;
bool V_2 = false;
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * 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) * 2);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
int32_t L_0 = ___codepage0;
IL2CPP_RUNTIME_CLASS_INIT(EncodingProvider_t75FB9C8A37AAC86251A690CAB8D5D718B9DCB480_il2cpp_TypeInfo_var);
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_1 = EncodingProvider_GetEncodingFromProvider_mA0F1D2A29AF8309112363BA3AEAD24F4F84F8A6F(L_0, /*hidden argument*/NULL);
V_0 = L_1;
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_2 = V_0;
if (!L_2)
{
goto IL_000c;
}
}
{
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_3 = V_0;
return L_3;
}
IL_000c:
{
int32_t L_4 = ___codepage0;
if ((((int32_t)L_4) < ((int32_t)0)))
{
goto IL_0018;
}
}
{
int32_t L_5 = ___codepage0;
if ((((int32_t)L_5) <= ((int32_t)((int32_t)65535))))
{
goto IL_0049;
}
}
IL_0018:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_6 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)2);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_7 = L_6;
int32_t L_8 = 0;
RuntimeObject * L_9 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_8);
NullCheck(L_7);
ArrayElementTypeCheck (L_7, L_9);
(L_7)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_9);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_10 = L_7;
int32_t L_11 = ((int32_t)65535);
RuntimeObject * L_12 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_11);
NullCheck(L_10);
ArrayElementTypeCheck (L_10, L_12);
(L_10)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_12);
String_t* L_13 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteralA980EEDA49322EB9BE88B6480B2BE63B70186B1E, L_10, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_14 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_14, _stringLiteral36D1AAE32206DD665C860BDBE0E1AC6343CE46CC, L_13, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_14, Encoding_GetEncoding_m0F51F30DFDD74D989E27C58C53FC82718CC51F68_RuntimeMethod_var);
}
IL_0049:
{
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_15 = ((Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields*)il2cpp_codegen_static_fields_for(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_il2cpp_TypeInfo_var))->get_encodings_8();
il2cpp_codegen_memory_barrier();
if (!L_15)
{
goto IL_006a;
}
}
{
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_16 = ((Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields*)il2cpp_codegen_static_fields_for(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_il2cpp_TypeInfo_var))->get_encodings_8();
il2cpp_codegen_memory_barrier();
int32_t L_17 = ___codepage0;
int32_t L_18 = L_17;
RuntimeObject * L_19 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_18);
NullCheck(L_16);
RuntimeObject * L_20 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(20 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_16, L_19);
V_0 = ((Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 *)CastclassClass((RuntimeObject*)L_20, Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_il2cpp_TypeInfo_var));
}
IL_006a:
{
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_21 = V_0;
if (L_21)
{
goto IL_0264;
}
}
{
RuntimeObject * L_22 = Encoding_get_InternalSyncObject_m83E4529829B8FCFB1CE706425804440F6BAD073E(/*hidden argument*/NULL);
V_1 = L_22;
V_2 = (bool)0;
}
IL_0078:
try
{ // begin try (depth: 1)
{
RuntimeObject * L_23 = V_1;
Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(L_23, (bool*)(&V_2), /*hidden argument*/NULL);
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_24 = ((Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields*)il2cpp_codegen_static_fields_for(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_il2cpp_TypeInfo_var))->get_encodings_8();
il2cpp_codegen_memory_barrier();
if (L_24)
{
goto IL_0095;
}
}
IL_0089:
{
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_25 = (Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 *)il2cpp_codegen_object_new(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9_il2cpp_TypeInfo_var);
Hashtable__ctor_m72506C0A5B2608721EA285A04F004A229B537A68(L_25, /*hidden argument*/NULL);
il2cpp_codegen_memory_barrier();
((Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields*)il2cpp_codegen_static_fields_for(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_il2cpp_TypeInfo_var))->set_encodings_8(L_25);
}
IL_0095:
{
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_26 = ((Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields*)il2cpp_codegen_static_fields_for(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_il2cpp_TypeInfo_var))->get_encodings_8();
il2cpp_codegen_memory_barrier();
int32_t L_27 = ___codepage0;
int32_t L_28 = L_27;
RuntimeObject * L_29 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_28);
NullCheck(L_26);
RuntimeObject * L_30 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(20 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_26, L_29);
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_31 = ((Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 *)CastclassClass((RuntimeObject*)L_30, Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_il2cpp_TypeInfo_var));
V_0 = L_31;
if (!L_31)
{
goto IL_00b7;
}
}
IL_00b0:
{
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_32 = V_0;
V_3 = L_32;
IL2CPP_LEAVE(0x266, FINALLY_025a);
}
IL_00b7:
{
int32_t L_33 = ___codepage0;
if ((((int32_t)L_33) > ((int32_t)((int32_t)1201))))
{
goto IL_00f1;
}
}
IL_00bf:
{
int32_t L_34 = ___codepage0;
if ((((int32_t)L_34) > ((int32_t)3)))
{
goto IL_00d4;
}
}
IL_00c3:
{
int32_t L_35 = ___codepage0;
if (!L_35)
{
goto IL_0139;
}
}
IL_00c6:
{
int32_t L_36 = ___codepage0;
if ((!(((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_36, (int32_t)1))) > ((uint32_t)2))))
{
goto IL_0188;
}
}
IL_00cf:
{
goto IL_01c2;
}
IL_00d4:
{
int32_t L_37 = ___codepage0;
if ((((int32_t)L_37) == ((int32_t)((int32_t)42))))
{
goto IL_0188;
}
}
IL_00dc:
{
int32_t L_38 = ___codepage0;
if ((((int32_t)L_38) == ((int32_t)((int32_t)1200))))
{
goto IL_0144;
}
}
IL_00e4:
{
int32_t L_39 = ___codepage0;
if ((((int32_t)L_39) == ((int32_t)((int32_t)1201))))
{
goto IL_014f;
}
}
IL_00ec:
{
goto IL_01c2;
}
IL_00f1:
{
int32_t L_40 = ___codepage0;
if ((((int32_t)L_40) > ((int32_t)((int32_t)20127))))
{
goto IL_0119;
}
}
IL_00f9:
{
int32_t L_41 = ___codepage0;
if ((((int32_t)L_41) == ((int32_t)((int32_t)12000))))
{
goto IL_0165;
}
}
IL_0101:
{
int32_t L_42 = ___codepage0;
if ((((int32_t)L_42) == ((int32_t)((int32_t)12001))))
{
goto IL_0170;
}
}
IL_0109:
{
int32_t L_43 = ___codepage0;
if ((((int32_t)L_43) == ((int32_t)((int32_t)20127))))
{
goto IL_01ac;
}
}
IL_0114:
{
goto IL_01c2;
}
IL_0119:
{
int32_t L_44 = ___codepage0;
if ((((int32_t)L_44) == ((int32_t)((int32_t)28591))))
{
goto IL_01b7;
}
}
IL_0124:
{
int32_t L_45 = ___codepage0;
if ((((int32_t)L_45) == ((int32_t)((int32_t)65000))))
{
goto IL_015a;
}
}
IL_012c:
{
int32_t L_46 = ___codepage0;
if ((((int32_t)L_46) == ((int32_t)((int32_t)65001))))
{
goto IL_017d;
}
}
IL_0134:
{
goto IL_01c2;
}
IL_0139:
{
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_47 = Encoding_get_Default_m625C78C2A9A8504B8BA4141994412513DC470CE2(/*hidden argument*/NULL);
V_0 = L_47;
goto IL_0245;
}
IL_0144:
{
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_48 = Encoding_get_Unicode_m86CC470F70F9BB52DDB26721F0C0D6EDAFC318AA(/*hidden argument*/NULL);
V_0 = L_48;
goto IL_0245;
}
IL_014f:
{
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_49 = Encoding_get_BigEndianUnicode_m6CC17642A36943FE038F54729446D7E30D582BDD(/*hidden argument*/NULL);
V_0 = L_49;
goto IL_0245;
}
IL_015a:
{
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_50 = Encoding_get_UTF7_mE709E3E74B727CFCC6675F07BC0AF19C7B4D0F1C(/*hidden argument*/NULL);
V_0 = L_50;
goto IL_0245;
}
IL_0165:
{
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_51 = Encoding_get_UTF32_m64CB5BB9DA39B0628F70276EDB13DE03A270DE15(/*hidden argument*/NULL);
V_0 = L_51;
goto IL_0245;
}
IL_0170:
{
UTF32Encoding_t16A7634FE9BE75EEC897F21F1420783FAA53C30A * L_52 = (UTF32Encoding_t16A7634FE9BE75EEC897F21F1420783FAA53C30A *)il2cpp_codegen_object_new(UTF32Encoding_t16A7634FE9BE75EEC897F21F1420783FAA53C30A_il2cpp_TypeInfo_var);
UTF32Encoding__ctor_m29D20C03874A58220973F79277050D62F8CA2475(L_52, (bool)1, (bool)1, /*hidden argument*/NULL);
V_0 = L_52;
goto IL_0245;
}
IL_017d:
{
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_53 = Encoding_get_UTF8_m67C8652936B681E7BC7505E459E88790E0FF16D9(/*hidden argument*/NULL);
V_0 = L_53;
goto IL_0245;
}
IL_0188:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_54 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_55 = L_54;
int32_t L_56 = ___codepage0;
int32_t L_57 = L_56;
RuntimeObject * L_58 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_57);
NullCheck(L_55);
ArrayElementTypeCheck (L_55, L_58);
(L_55)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_58);
String_t* L_59 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteralE9AB123A1B061C01E4DECF3CA5FDDFDE90CC3502, L_55, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_60 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_60, L_59, _stringLiteral36D1AAE32206DD665C860BDBE0E1AC6343CE46CC, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_60, Encoding_GetEncoding_m0F51F30DFDD74D989E27C58C53FC82718CC51F68_RuntimeMethod_var);
}
IL_01ac:
{
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_61 = Encoding_get_ASCII_m9B673AE3152AB04D07CADE6E5E142C785B5BC94E(/*hidden argument*/NULL);
V_0 = L_61;
goto IL_0245;
}
IL_01b7:
{
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_62 = Encoding_get_Latin1_m3CC61D40BEE46C311295920FC97B0EBF8AE620F3(/*hidden argument*/NULL);
V_0 = L_62;
goto IL_0245;
}
IL_01c2:
{
int32_t L_63 = ___codepage0;
IL2CPP_RUNTIME_CLASS_INIT(EncodingTable_t22A8552898CDE776E92D442768930CF463B8032D_il2cpp_TypeInfo_var);
CodePageDataItem_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB * L_64 = EncodingTable_GetCodePageDataItem_m33D02AF0C3BB400E895F962DEDD3F8EC3D153953(L_63, /*hidden argument*/NULL);
if (L_64)
{
goto IL_01e9;
}
}
IL_01ca:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_65 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_66 = L_65;
int32_t L_67 = ___codepage0;
int32_t L_68 = L_67;
RuntimeObject * L_69 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_68);
NullCheck(L_66);
ArrayElementTypeCheck (L_66, L_69);
(L_66)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_69);
String_t* L_70 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteralA81A69522BC51531298956C7ABB3DB48E62C16E2, L_66, /*hidden argument*/NULL);
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_71 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_71, L_70, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_71, Encoding_GetEncoding_m0F51F30DFDD74D989E27C58C53FC82718CC51F68_RuntimeMethod_var);
}
IL_01e9:
{
int32_t L_72 = ___codepage0;
if ((((int32_t)L_72) == ((int32_t)((int32_t)12000))))
{
goto IL_01fb;
}
}
IL_01f1:
{
int32_t L_73 = ___codepage0;
if ((((int32_t)L_73) == ((int32_t)((int32_t)12001))))
{
goto IL_0203;
}
}
IL_01f9:
{
goto IL_020d;
}
IL_01fb:
{
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_74 = Encoding_get_UTF32_m64CB5BB9DA39B0628F70276EDB13DE03A270DE15(/*hidden argument*/NULL);
V_0 = L_74;
goto IL_0245;
}
IL_0203:
{
UTF32Encoding_t16A7634FE9BE75EEC897F21F1420783FAA53C30A * L_75 = (UTF32Encoding_t16A7634FE9BE75EEC897F21F1420783FAA53C30A *)il2cpp_codegen_object_new(UTF32Encoding_t16A7634FE9BE75EEC897F21F1420783FAA53C30A_il2cpp_TypeInfo_var);
UTF32Encoding__ctor_m29D20C03874A58220973F79277050D62F8CA2475(L_75, (bool)1, (bool)1, /*hidden argument*/NULL);
V_0 = L_75;
goto IL_0245;
}
IL_020d:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_76 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_77 = L_76;
int32_t L_78 = ___codepage0;
int32_t L_79 = L_78;
RuntimeObject * L_80 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_79);
NullCheck(L_77);
ArrayElementTypeCheck (L_77, L_80);
(L_77)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_80);
IL2CPP_RUNTIME_CLASS_INIT(EncodingHelper_t1A078DCE9CF2B3578DA8CAFE03FB9FFABD00EBB3_il2cpp_TypeInfo_var);
RuntimeObject * L_81 = EncodingHelper_InvokeI18N_m638F0C7660999BE0390DD7E26CBC9603D139D2D6(_stringLiteralE99EEC4083A5DD346B0151B330B85D916127AFD2, L_77, /*hidden argument*/NULL);
V_0 = ((Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 *)CastclassClass((RuntimeObject*)L_81, Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_il2cpp_TypeInfo_var));
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_82 = V_0;
if (L_82)
{
goto IL_0245;
}
}
IL_022f:
{
int32_t L_83 = ___codepage0;
int32_t L_84 = L_83;
RuntimeObject * L_85 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_84);
String_t* L_86 = String_Format_m0ACDD8B34764E4040AED0B3EEB753567E4576BFA(_stringLiteralD2561964F0D8225BFD9FFD19F2EDF87C49E94DCF, L_85, /*hidden argument*/NULL);
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_87 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE(L_87, L_86, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_87, Encoding_GetEncoding_m0F51F30DFDD74D989E27C58C53FC82718CC51F68_RuntimeMethod_var);
}
IL_0245:
{
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * L_88 = ((Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields*)il2cpp_codegen_static_fields_for(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_il2cpp_TypeInfo_var))->get_encodings_8();
il2cpp_codegen_memory_barrier();
int32_t L_89 = ___codepage0;
int32_t L_90 = L_89;
RuntimeObject * L_91 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_90);
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_92 = V_0;
NullCheck(L_88);
VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(14 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_88, L_91, L_92);
IL2CPP_LEAVE(0x264, FINALLY_025a);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_025a;
}
FINALLY_025a:
{ // begin finally (depth: 1)
{
bool L_93 = V_2;
if (!L_93)
{
goto IL_0263;
}
}
IL_025d:
{
RuntimeObject * L_94 = V_1;
Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_94, /*hidden argument*/NULL);
}
IL_0263:
{
IL2CPP_END_FINALLY(602)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(602)
{
IL2CPP_JUMP_TBL(0x266, IL_0266)
IL2CPP_JUMP_TBL(0x264, IL_0264)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0264:
{
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_95 = V_0;
return L_95;
}
IL_0266:
{
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_96 = V_3;
return L_96;
}
}
// System.Text.Encoding System.Text.Encoding::GetEncoding(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * Encoding_GetEncoding_mA19D07F2E88F8FF58D42B73AFF5E22241607D54E (String_t* ___name0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Encoding_GetEncoding_mA19D07F2E88F8FF58D42B73AFF5E22241607D54E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * V_0 = NULL;
{
String_t* L_0 = ___name0;
IL2CPP_RUNTIME_CLASS_INIT(EncodingProvider_t75FB9C8A37AAC86251A690CAB8D5D718B9DCB480_il2cpp_TypeInfo_var);
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_1 = EncodingProvider_GetEncodingFromProvider_m6B4B2550725947939A8DEF0B26D335D7957017A7(L_0, /*hidden argument*/NULL);
V_0 = L_1;
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_2 = V_0;
if (!L_2)
{
goto IL_000c;
}
}
{
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_3 = V_0;
return L_3;
}
IL_000c:
{
String_t* L_4 = ___name0;
IL2CPP_RUNTIME_CLASS_INIT(EncodingTable_t22A8552898CDE776E92D442768930CF463B8032D_il2cpp_TypeInfo_var);
int32_t L_5 = EncodingTable_GetCodePageFromName_m7F8D824F555B748FA3232F05A34E4A1E3F546831(L_4, /*hidden argument*/NULL);
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_6 = Encoding_GetEncoding_m0F51F30DFDD74D989E27C58C53FC82718CC51F68(L_5, /*hidden argument*/NULL);
return L_6;
}
}
// System.Byte[] System.Text.Encoding::GetPreamble()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* Encoding_GetPreamble_mF296992828EE92546FB29DD3014C0F10E253D421 (Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Encoding_GetPreamble_mF296992828EE92546FB29DD3014C0F10E253D421_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(EmptyArray_1_t138215D75D34CDCC9D3A3248006BB81FC3F9609C_il2cpp_TypeInfo_var);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ((EmptyArray_1_t138215D75D34CDCC9D3A3248006BB81FC3F9609C_StaticFields*)il2cpp_codegen_static_fields_for(EmptyArray_1_t138215D75D34CDCC9D3A3248006BB81FC3F9609C_il2cpp_TypeInfo_var))->get_Value_0();
return L_0;
}
}
// System.String System.Text.Encoding::get_EncodingName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Encoding_get_EncodingName_m54D5B3EB62FCC8F77843D4EE4326A6B6CE46A2B2 (Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_m_codePage_9();
String_t* L_1 = Environment_GetResourceStringEncodingName_mB514D97C814AF47301B938B99C800A2130CB46AA(L_0, /*hidden argument*/NULL);
return L_1;
}
}
// System.Text.EncoderFallback System.Text.Encoding::get_EncoderFallback()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * Encoding_get_EncoderFallback_m56A241904105944473545473FA20E07BF52B1885 (Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * __this, const RuntimeMethod* method)
{
{
EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * L_0 = __this->get_encoderFallback_13();
return L_0;
}
}
// System.Void System.Text.Encoding::set_EncoderFallback(System.Text.EncoderFallback)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Encoding_set_EncoderFallback_m24306F093457AE12D59A36AB84F1E03C840BD10A (Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * __this, EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Encoding_set_EncoderFallback_m24306F093457AE12D59A36AB84F1E03C840BD10A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
bool L_0 = Encoding_get_IsReadOnly_m1118DBF20E11C000BC29C326A2D202122DE37544_inline(__this, /*hidden argument*/NULL);
if (!L_0)
{
goto IL_0018;
}
}
{
String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralC16F239F05BFEF8B527BABF85A79069CE7036D69, /*hidden argument*/NULL);
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_2 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_2, L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Encoding_set_EncoderFallback_m24306F093457AE12D59A36AB84F1E03C840BD10A_RuntimeMethod_var);
}
IL_0018:
{
EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * L_3 = ___value0;
if (L_3)
{
goto IL_0026;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_4 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_4, _stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, Encoding_set_EncoderFallback_m24306F093457AE12D59A36AB84F1E03C840BD10A_RuntimeMethod_var);
}
IL_0026:
{
EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * L_5 = ___value0;
__this->set_encoderFallback_13(L_5);
return;
}
}
// System.Text.DecoderFallback System.Text.Encoding::get_DecoderFallback()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * Encoding_get_DecoderFallback_m237581892E1C081234AFD800FCBC321C911EB657 (Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * __this, const RuntimeMethod* method)
{
{
DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * L_0 = __this->get_decoderFallback_14();
return L_0;
}
}
// System.Void System.Text.Encoding::set_DecoderFallback(System.Text.DecoderFallback)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Encoding_set_DecoderFallback_mB321EB8D6C34B8935A169C0E4FAC7A4E0A99FACC (Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * __this, DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Encoding_set_DecoderFallback_mB321EB8D6C34B8935A169C0E4FAC7A4E0A99FACC_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
bool L_0 = Encoding_get_IsReadOnly_m1118DBF20E11C000BC29C326A2D202122DE37544_inline(__this, /*hidden argument*/NULL);
if (!L_0)
{
goto IL_0018;
}
}
{
String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralC16F239F05BFEF8B527BABF85A79069CE7036D69, /*hidden argument*/NULL);
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_2 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_2, L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Encoding_set_DecoderFallback_mB321EB8D6C34B8935A169C0E4FAC7A4E0A99FACC_RuntimeMethod_var);
}
IL_0018:
{
DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * L_3 = ___value0;
if (L_3)
{
goto IL_0026;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_4 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_4, _stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, Encoding_set_DecoderFallback_mB321EB8D6C34B8935A169C0E4FAC7A4E0A99FACC_RuntimeMethod_var);
}
IL_0026:
{
DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * L_5 = ___value0;
__this->set_decoderFallback_14(L_5);
return;
}
}
// System.Object System.Text.Encoding::Clone()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Encoding_Clone_m9EC175C49D6B898E2560FFF1A790685DBC3A20B5 (Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Encoding_Clone_m9EC175C49D6B898E2560FFF1A790685DBC3A20B5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = Object_MemberwiseClone_m1DAC4538CD68D4CF4DC5B04E4BBE86D470948B28(__this, /*hidden argument*/NULL);
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_1 = ((Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 *)CastclassClass((RuntimeObject*)L_0, Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_il2cpp_TypeInfo_var));
NullCheck(L_1);
L_1->set_m_isReadOnly_12((bool)0);
return L_1;
}
}
// System.Boolean System.Text.Encoding::get_IsReadOnly()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Encoding_get_IsReadOnly_m1118DBF20E11C000BC29C326A2D202122DE37544 (Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_m_isReadOnly_12();
return L_0;
}
}
// System.Text.Encoding System.Text.Encoding::get_ASCII()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * Encoding_get_ASCII_m9B673AE3152AB04D07CADE6E5E142C785B5BC94E (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Encoding_get_ASCII_m9B673AE3152AB04D07CADE6E5E142C785B5BC94E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_0 = ((Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields*)il2cpp_codegen_static_fields_for(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_il2cpp_TypeInfo_var))->get_asciiEncoding_6();
il2cpp_codegen_memory_barrier();
if (L_0)
{
goto IL_0015;
}
}
{
ASCIIEncoding_t3A4744E997A7BE0CEF1D5AE3A35EFC4DFFDDC6B9 * L_1 = (ASCIIEncoding_t3A4744E997A7BE0CEF1D5AE3A35EFC4DFFDDC6B9 *)il2cpp_codegen_object_new(ASCIIEncoding_t3A4744E997A7BE0CEF1D5AE3A35EFC4DFFDDC6B9_il2cpp_TypeInfo_var);
ASCIIEncoding__ctor_mC9D110516677AC1FAA80B3790BDDD1150A1779C4(L_1, /*hidden argument*/NULL);
il2cpp_codegen_memory_barrier();
((Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields*)il2cpp_codegen_static_fields_for(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_il2cpp_TypeInfo_var))->set_asciiEncoding_6(L_1);
}
IL_0015:
{
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_2 = ((Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields*)il2cpp_codegen_static_fields_for(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_il2cpp_TypeInfo_var))->get_asciiEncoding_6();
il2cpp_codegen_memory_barrier();
return L_2;
}
}
// System.Text.Encoding System.Text.Encoding::get_Latin1()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * Encoding_get_Latin1_m3CC61D40BEE46C311295920FC97B0EBF8AE620F3 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Encoding_get_Latin1_m3CC61D40BEE46C311295920FC97B0EBF8AE620F3_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_0 = ((Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields*)il2cpp_codegen_static_fields_for(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_il2cpp_TypeInfo_var))->get_latin1Encoding_7();
il2cpp_codegen_memory_barrier();
if (L_0)
{
goto IL_0015;
}
}
{
Latin1Encoding_tC026E9CCC23C3A25568FF02B75F937DB388DC9E7 * L_1 = (Latin1Encoding_tC026E9CCC23C3A25568FF02B75F937DB388DC9E7 *)il2cpp_codegen_object_new(Latin1Encoding_tC026E9CCC23C3A25568FF02B75F937DB388DC9E7_il2cpp_TypeInfo_var);
Latin1Encoding__ctor_mCA519590D0ED43A343B7D00D546F83AC003E7FC5(L_1, /*hidden argument*/NULL);
il2cpp_codegen_memory_barrier();
((Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields*)il2cpp_codegen_static_fields_for(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_il2cpp_TypeInfo_var))->set_latin1Encoding_7(L_1);
}
IL_0015:
{
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_2 = ((Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields*)il2cpp_codegen_static_fields_for(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_il2cpp_TypeInfo_var))->get_latin1Encoding_7();
il2cpp_codegen_memory_barrier();
return L_2;
}
}
// System.Int32 System.Text.Encoding::GetByteCount(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Encoding_GetByteCount_m1815AFD8D6BC8253FF5A3D9FEE46C071BB9D2E94 (Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * __this, String_t* ___s0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Encoding_GetByteCount_m1815AFD8D6BC8253FF5A3D9FEE46C071BB9D2E94_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* V_0 = NULL;
{
String_t* L_0 = ___s0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteralA0F1490A20D0211C997B44BC357E1972DEAB8AE3, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Encoding_GetByteCount_m1815AFD8D6BC8253FF5A3D9FEE46C071BB9D2E94_RuntimeMethod_var);
}
IL_000e:
{
String_t* L_2 = ___s0;
NullCheck(L_2);
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_3 = String_ToCharArray_mFCFF32A5EC698E81075E0C72C874282B9ED197A6(L_2, /*hidden argument*/NULL);
V_0 = L_3;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_4 = V_0;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_5 = V_0;
NullCheck(L_5);
int32_t L_6 = VirtFuncInvoker3< int32_t, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*, int32_t, int32_t >::Invoke(10 /* System.Int32 System.Text.Encoding::GetByteCount(System.Char[],System.Int32,System.Int32) */, __this, L_4, 0, (((int32_t)((int32_t)(((RuntimeArray*)L_5)->max_length)))));
return L_6;
}
}
// System.Int32 System.Text.Encoding::GetByteCount(System.Char*,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Encoding_GetByteCount_m39F2BA22070EF89779F9EAD4ABA3412711E3DEEA (Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * __this, Il2CppChar* ___chars0, int32_t ___count1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Encoding_GetByteCount_m39F2BA22070EF89779F9EAD4ABA3412711E3DEEA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* V_0 = NULL;
int32_t V_1 = 0;
{
Il2CppChar* L_0 = ___chars0;
if ((!(((uintptr_t)L_0) == ((uintptr_t)(((uintptr_t)0))))))
{
goto IL_001a;
}
}
{
String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral867AD8C2544ED5D38EC2B4986A28AA22B284F710, /*hidden argument*/NULL);
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m9EA692D49986AEBAC433CE3381331146109AE20F(L_2, _stringLiteral76A91D6CE24FCC03EC2ECBB19E3012B5D5D40E2B, L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Encoding_GetByteCount_m39F2BA22070EF89779F9EAD4ABA3412711E3DEEA_RuntimeMethod_var);
}
IL_001a:
{
int32_t L_3 = ___count1;
if ((((int32_t)L_3) >= ((int32_t)0)))
{
goto IL_0033;
}
}
{
String_t* L_4 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, _stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556, L_4, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, Encoding_GetByteCount_m39F2BA22070EF89779F9EAD4ABA3412711E3DEEA_RuntimeMethod_var);
}
IL_0033:
{
int32_t L_6 = ___count1;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_7 = (CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)SZArrayNew(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2_il2cpp_TypeInfo_var, (uint32_t)L_6);
V_0 = L_7;
V_1 = 0;
goto IL_004c;
}
IL_003e:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_8 = V_0;
int32_t L_9 = V_1;
Il2CppChar* L_10 = ___chars0;
int32_t L_11 = V_1;
int32_t L_12 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_10, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_11)), (int32_t)2)))));
NullCheck(L_8);
(L_8)->SetAt(static_cast<il2cpp_array_size_t>(L_9), (Il2CppChar)L_12);
int32_t L_13 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1));
}
IL_004c:
{
int32_t L_14 = V_1;
int32_t L_15 = ___count1;
if ((((int32_t)L_14) < ((int32_t)L_15)))
{
goto IL_003e;
}
}
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_16 = V_0;
int32_t L_17 = ___count1;
int32_t L_18 = VirtFuncInvoker3< int32_t, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*, int32_t, int32_t >::Invoke(10 /* System.Int32 System.Text.Encoding::GetByteCount(System.Char[],System.Int32,System.Int32) */, __this, L_16, 0, L_17);
return L_18;
}
}
// System.Int32 System.Text.Encoding::GetByteCount(System.Char*,System.Int32,System.Text.EncoderNLS)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Encoding_GetByteCount_m1CCC4AC4CEC2E0AEC58CE17F23C94F39CF577FBA (Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * __this, Il2CppChar* ___chars0, int32_t ___count1, EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * ___encoder2, const RuntimeMethod* method)
{
{
Il2CppChar* L_0 = ___chars0;
int32_t L_1 = ___count1;
int32_t L_2 = VirtFuncInvoker2< int32_t, Il2CppChar*, int32_t >::Invoke(11 /* System.Int32 System.Text.Encoding::GetByteCount(System.Char*,System.Int32) */, __this, (Il2CppChar*)(Il2CppChar*)L_0, L_1);
return L_2;
}
}
// System.Byte[] System.Text.Encoding::GetBytes(System.Char[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* Encoding_GetBytes_m96117DE55598CA75EA00280F6ED0E27857E7F988 (Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * __this, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___chars0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Encoding_GetBytes_m96117DE55598CA75EA00280F6ED0E27857E7F988_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_0 = NULL;
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_0 = ___chars0;
int32_t L_1 = ___index1;
int32_t L_2 = ___count2;
int32_t L_3 = VirtFuncInvoker3< int32_t, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*, int32_t, int32_t >::Invoke(10 /* System.Int32 System.Text.Encoding::GetByteCount(System.Char[],System.Int32,System.Int32) */, __this, L_0, L_1, L_2);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)L_3);
V_0 = L_4;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_5 = ___chars0;
int32_t L_6 = ___index1;
int32_t L_7 = ___count2;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_8 = V_0;
VirtFuncInvoker5< int32_t, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*, int32_t, int32_t, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t >::Invoke(14 /* System.Int32 System.Text.Encoding::GetBytes(System.Char[],System.Int32,System.Int32,System.Byte[],System.Int32) */, __this, L_5, L_6, L_7, L_8, 0);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_9 = V_0;
return L_9;
}
}
// System.Int32 System.Text.Encoding::GetBytes(System.String,System.Int32,System.Int32,System.Byte[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Encoding_GetBytes_m290C357E78642FE0B527444BD7D8053AA32F4BB8 (Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * __this, String_t* ___s0, int32_t ___charIndex1, int32_t ___charCount2, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___bytes3, int32_t ___byteIndex4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Encoding_GetBytes_m290C357E78642FE0B527444BD7D8053AA32F4BB8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___s0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteralA0F1490A20D0211C997B44BC357E1972DEAB8AE3, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Encoding_GetBytes_m290C357E78642FE0B527444BD7D8053AA32F4BB8_RuntimeMethod_var);
}
IL_000e:
{
String_t* L_2 = ___s0;
NullCheck(L_2);
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_3 = String_ToCharArray_mFCFF32A5EC698E81075E0C72C874282B9ED197A6(L_2, /*hidden argument*/NULL);
int32_t L_4 = ___charIndex1;
int32_t L_5 = ___charCount2;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_6 = ___bytes3;
int32_t L_7 = ___byteIndex4;
int32_t L_8 = VirtFuncInvoker5< int32_t, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*, int32_t, int32_t, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t >::Invoke(14 /* System.Int32 System.Text.Encoding::GetBytes(System.Char[],System.Int32,System.Int32,System.Byte[],System.Int32) */, __this, L_3, L_4, L_5, L_6, L_7);
return L_8;
}
}
// System.Int32 System.Text.Encoding::GetBytes(System.Char*,System.Int32,System.Byte*,System.Int32,System.Text.EncoderNLS)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Encoding_GetBytes_m882505449C09BFDB0409C0134DF12DB9E8B7B691 (Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * __this, Il2CppChar* ___chars0, int32_t ___charCount1, uint8_t* ___bytes2, int32_t ___byteCount3, EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * ___encoder4, const RuntimeMethod* method)
{
{
Il2CppChar* L_0 = ___chars0;
int32_t L_1 = ___charCount1;
uint8_t* L_2 = ___bytes2;
int32_t L_3 = ___byteCount3;
int32_t L_4 = VirtFuncInvoker4< int32_t, Il2CppChar*, int32_t, uint8_t*, int32_t >::Invoke(17 /* System.Int32 System.Text.Encoding::GetBytes(System.Char*,System.Int32,System.Byte*,System.Int32) */, __this, (Il2CppChar*)(Il2CppChar*)L_0, L_1, (uint8_t*)(uint8_t*)L_2, L_3);
return L_4;
}
}
// System.Int32 System.Text.Encoding::GetBytes(System.Char*,System.Int32,System.Byte*,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Encoding_GetBytes_m03BE03725820163E29B3A766D800BAA950A4D406 (Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * __this, Il2CppChar* ___chars0, int32_t ___charCount1, uint8_t* ___bytes2, int32_t ___byteCount3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Encoding_GetBytes_m03BE03725820163E29B3A766D800BAA950A4D406_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* V_0 = NULL;
int32_t V_1 = 0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_2 = NULL;
int32_t V_3 = 0;
String_t* G_B5_0 = NULL;
String_t* G_B11_0 = NULL;
{
uint8_t* L_0 = ___bytes2;
if ((((intptr_t)L_0) == ((intptr_t)(((uintptr_t)0)))))
{
goto IL_000a;
}
}
{
Il2CppChar* L_1 = ___chars0;
if ((!(((uintptr_t)L_1) == ((uintptr_t)(((uintptr_t)0))))))
{
goto IL_002b;
}
}
IL_000a:
{
uint8_t* L_2 = ___bytes2;
if ((((intptr_t)L_2) == ((intptr_t)(((uintptr_t)0)))))
{
goto IL_0016;
}
}
{
G_B5_0 = _stringLiteral76A91D6CE24FCC03EC2ECBB19E3012B5D5D40E2B;
goto IL_001b;
}
IL_0016:
{
G_B5_0 = _stringLiteralDAF529A73101C2BE626B99FC6938163E7A27620B;
}
IL_001b:
{
String_t* L_3 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral867AD8C2544ED5D38EC2B4986A28AA22B284F710, /*hidden argument*/NULL);
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_4 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m9EA692D49986AEBAC433CE3381331146109AE20F(L_4, G_B5_0, L_3, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, Encoding_GetBytes_m03BE03725820163E29B3A766D800BAA950A4D406_RuntimeMethod_var);
}
IL_002b:
{
int32_t L_5 = ___charCount1;
if ((((int32_t)L_5) < ((int32_t)0)))
{
goto IL_0034;
}
}
{
int32_t L_6 = ___byteCount3;
if ((((int32_t)L_6) >= ((int32_t)0)))
{
goto IL_0054;
}
}
IL_0034:
{
int32_t L_7 = ___charCount1;
if ((((int32_t)L_7) < ((int32_t)0)))
{
goto IL_003f;
}
}
{
G_B11_0 = _stringLiteral278316CA5ED0FC3A0A92ED4DC8DA6CA9FB56DEBA;
goto IL_0044;
}
IL_003f:
{
G_B11_0 = _stringLiteralAB1A79FB2CBABAF9BE681B601509BD40528C11D8;
}
IL_0044:
{
String_t* L_8 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_9 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_9, G_B11_0, L_8, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, Encoding_GetBytes_m03BE03725820163E29B3A766D800BAA950A4D406_RuntimeMethod_var);
}
IL_0054:
{
int32_t L_10 = ___charCount1;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_11 = (CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)SZArrayNew(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2_il2cpp_TypeInfo_var, (uint32_t)L_10);
V_0 = L_11;
V_1 = 0;
goto IL_006d;
}
IL_005f:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_12 = V_0;
int32_t L_13 = V_1;
Il2CppChar* L_14 = ___chars0;
int32_t L_15 = V_1;
int32_t L_16 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_14, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_15)), (int32_t)2)))));
NullCheck(L_12);
(L_12)->SetAt(static_cast<il2cpp_array_size_t>(L_13), (Il2CppChar)L_16);
int32_t L_17 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1));
}
IL_006d:
{
int32_t L_18 = V_1;
int32_t L_19 = ___charCount1;
if ((((int32_t)L_18) < ((int32_t)L_19)))
{
goto IL_005f;
}
}
{
int32_t L_20 = ___byteCount3;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_21 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)L_20);
V_2 = L_21;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_22 = V_0;
int32_t L_23 = ___charCount1;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_24 = V_2;
int32_t L_25 = VirtFuncInvoker5< int32_t, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*, int32_t, int32_t, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t >::Invoke(14 /* System.Int32 System.Text.Encoding::GetBytes(System.Char[],System.Int32,System.Int32,System.Byte[],System.Int32) */, __this, L_22, 0, L_23, L_24, 0);
V_3 = L_25;
int32_t L_26 = V_3;
int32_t L_27 = ___byteCount3;
if ((((int32_t)L_26) >= ((int32_t)L_27)))
{
goto IL_008d;
}
}
{
int32_t L_28 = V_3;
___byteCount3 = L_28;
}
IL_008d:
{
V_1 = 0;
goto IL_009c;
}
IL_0091:
{
uint8_t* L_29 = ___bytes2;
int32_t L_30 = V_1;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_31 = V_2;
int32_t L_32 = V_1;
NullCheck(L_31);
int32_t L_33 = L_32;
uint8_t L_34 = (L_31)->GetAt(static_cast<il2cpp_array_size_t>(L_33));
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_29, (int32_t)L_30))) = (int8_t)L_34;
int32_t L_35 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_35, (int32_t)1));
}
IL_009c:
{
int32_t L_36 = V_1;
int32_t L_37 = ___byteCount3;
if ((((int32_t)L_36) < ((int32_t)L_37)))
{
goto IL_0091;
}
}
{
int32_t L_38 = ___byteCount3;
return L_38;
}
}
// System.Int32 System.Text.Encoding::GetCharCount(System.Byte*,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Encoding_GetCharCount_m99707D5F60A81F16F3921417B851C2AB37AC8F3E (Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * __this, uint8_t* ___bytes0, int32_t ___count1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Encoding_GetCharCount_m99707D5F60A81F16F3921417B851C2AB37AC8F3E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_0 = NULL;
int32_t V_1 = 0;
{
uint8_t* L_0 = ___bytes0;
if ((!(((uintptr_t)L_0) == ((uintptr_t)(((uintptr_t)0))))))
{
goto IL_001a;
}
}
{
String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral867AD8C2544ED5D38EC2B4986A28AA22B284F710, /*hidden argument*/NULL);
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m9EA692D49986AEBAC433CE3381331146109AE20F(L_2, _stringLiteralDAF529A73101C2BE626B99FC6938163E7A27620B, L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Encoding_GetCharCount_m99707D5F60A81F16F3921417B851C2AB37AC8F3E_RuntimeMethod_var);
}
IL_001a:
{
int32_t L_3 = ___count1;
if ((((int32_t)L_3) >= ((int32_t)0)))
{
goto IL_0033;
}
}
{
String_t* L_4 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, _stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556, L_4, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, Encoding_GetCharCount_m99707D5F60A81F16F3921417B851C2AB37AC8F3E_RuntimeMethod_var);
}
IL_0033:
{
int32_t L_6 = ___count1;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_7 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)L_6);
V_0 = L_7;
V_1 = 0;
goto IL_0049;
}
IL_003e:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_8 = V_0;
int32_t L_9 = V_1;
uint8_t* L_10 = ___bytes0;
int32_t L_11 = V_1;
int32_t L_12 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_10, (int32_t)L_11)));
NullCheck(L_8);
(L_8)->SetAt(static_cast<il2cpp_array_size_t>(L_9), (uint8_t)L_12);
int32_t L_13 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1));
}
IL_0049:
{
int32_t L_14 = V_1;
int32_t L_15 = ___count1;
if ((((int32_t)L_14) < ((int32_t)L_15)))
{
goto IL_003e;
}
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_16 = V_0;
int32_t L_17 = ___count1;
int32_t L_18 = VirtFuncInvoker3< int32_t, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t >::Invoke(18 /* System.Int32 System.Text.Encoding::GetCharCount(System.Byte[],System.Int32,System.Int32) */, __this, L_16, 0, L_17);
return L_18;
}
}
// System.Int32 System.Text.Encoding::GetCharCount(System.Byte*,System.Int32,System.Text.DecoderNLS)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Encoding_GetCharCount_mD802021E7273CF292FAF0361E4E2CF966C38ED2D (Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * __this, uint8_t* ___bytes0, int32_t ___count1, DecoderNLS_tCDF0A810A2E2B738728A98BBB49F792E66BDF6CD * ___decoder2, const RuntimeMethod* method)
{
{
uint8_t* L_0 = ___bytes0;
int32_t L_1 = ___count1;
int32_t L_2 = VirtFuncInvoker2< int32_t, uint8_t*, int32_t >::Invoke(19 /* System.Int32 System.Text.Encoding::GetCharCount(System.Byte*,System.Int32) */, __this, (uint8_t*)(uint8_t*)L_0, L_1);
return L_2;
}
}
// System.Char[] System.Text.Encoding::GetChars(System.Byte[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* Encoding_GetChars_m32B53FEFE17AD33BA97069CF0006E62AE50504A8 (Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___bytes0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Encoding_GetChars_m32B53FEFE17AD33BA97069CF0006E62AE50504A8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* V_0 = NULL;
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___bytes0;
int32_t L_1 = ___index1;
int32_t L_2 = ___count2;
int32_t L_3 = VirtFuncInvoker3< int32_t, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t >::Invoke(18 /* System.Int32 System.Text.Encoding::GetCharCount(System.Byte[],System.Int32,System.Int32) */, __this, L_0, L_1, L_2);
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_4 = (CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)SZArrayNew(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2_il2cpp_TypeInfo_var, (uint32_t)L_3);
V_0 = L_4;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_5 = ___bytes0;
int32_t L_6 = ___index1;
int32_t L_7 = ___count2;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_8 = V_0;
VirtFuncInvoker5< int32_t, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*, int32_t >::Invoke(22 /* System.Int32 System.Text.Encoding::GetChars(System.Byte[],System.Int32,System.Int32,System.Char[],System.Int32) */, __this, L_5, L_6, L_7, L_8, 0);
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_9 = V_0;
return L_9;
}
}
// System.Int32 System.Text.Encoding::GetChars(System.Byte*,System.Int32,System.Char*,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Encoding_GetChars_m656D0EFC1B4FB40CF53BF38B34320A5EFD242D7F (Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * __this, uint8_t* ___bytes0, int32_t ___byteCount1, Il2CppChar* ___chars2, int32_t ___charCount3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Encoding_GetChars_m656D0EFC1B4FB40CF53BF38B34320A5EFD242D7F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_0 = NULL;
int32_t V_1 = 0;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* V_2 = NULL;
int32_t V_3 = 0;
String_t* G_B5_0 = NULL;
String_t* G_B11_0 = NULL;
{
Il2CppChar* L_0 = ___chars2;
if ((((intptr_t)L_0) == ((intptr_t)(((uintptr_t)0)))))
{
goto IL_000a;
}
}
{
uint8_t* L_1 = ___bytes0;
if ((!(((uintptr_t)L_1) == ((uintptr_t)(((uintptr_t)0))))))
{
goto IL_002b;
}
}
IL_000a:
{
Il2CppChar* L_2 = ___chars2;
if ((((intptr_t)L_2) == ((intptr_t)(((uintptr_t)0)))))
{
goto IL_0016;
}
}
{
G_B5_0 = _stringLiteralDAF529A73101C2BE626B99FC6938163E7A27620B;
goto IL_001b;
}
IL_0016:
{
G_B5_0 = _stringLiteral76A91D6CE24FCC03EC2ECBB19E3012B5D5D40E2B;
}
IL_001b:
{
String_t* L_3 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral867AD8C2544ED5D38EC2B4986A28AA22B284F710, /*hidden argument*/NULL);
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_4 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m9EA692D49986AEBAC433CE3381331146109AE20F(L_4, G_B5_0, L_3, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, Encoding_GetChars_m656D0EFC1B4FB40CF53BF38B34320A5EFD242D7F_RuntimeMethod_var);
}
IL_002b:
{
int32_t L_5 = ___byteCount1;
if ((((int32_t)L_5) < ((int32_t)0)))
{
goto IL_0034;
}
}
{
int32_t L_6 = ___charCount3;
if ((((int32_t)L_6) >= ((int32_t)0)))
{
goto IL_0054;
}
}
IL_0034:
{
int32_t L_7 = ___byteCount1;
if ((((int32_t)L_7) < ((int32_t)0)))
{
goto IL_003f;
}
}
{
G_B11_0 = _stringLiteralAB1A79FB2CBABAF9BE681B601509BD40528C11D8;
goto IL_0044;
}
IL_003f:
{
G_B11_0 = _stringLiteral278316CA5ED0FC3A0A92ED4DC8DA6CA9FB56DEBA;
}
IL_0044:
{
String_t* L_8 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_9 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_9, G_B11_0, L_8, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, Encoding_GetChars_m656D0EFC1B4FB40CF53BF38B34320A5EFD242D7F_RuntimeMethod_var);
}
IL_0054:
{
int32_t L_10 = ___byteCount1;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_11 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)L_10);
V_0 = L_11;
V_1 = 0;
goto IL_006a;
}
IL_005f:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_12 = V_0;
int32_t L_13 = V_1;
uint8_t* L_14 = ___bytes0;
int32_t L_15 = V_1;
int32_t L_16 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_14, (int32_t)L_15)));
NullCheck(L_12);
(L_12)->SetAt(static_cast<il2cpp_array_size_t>(L_13), (uint8_t)L_16);
int32_t L_17 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1));
}
IL_006a:
{
int32_t L_18 = V_1;
int32_t L_19 = ___byteCount1;
if ((((int32_t)L_18) < ((int32_t)L_19)))
{
goto IL_005f;
}
}
{
int32_t L_20 = ___charCount3;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_21 = (CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)SZArrayNew(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2_il2cpp_TypeInfo_var, (uint32_t)L_20);
V_2 = L_21;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_22 = V_0;
int32_t L_23 = ___byteCount1;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_24 = V_2;
int32_t L_25 = VirtFuncInvoker5< int32_t, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*, int32_t >::Invoke(22 /* System.Int32 System.Text.Encoding::GetChars(System.Byte[],System.Int32,System.Int32,System.Char[],System.Int32) */, __this, L_22, 0, L_23, L_24, 0);
V_3 = L_25;
int32_t L_26 = V_3;
int32_t L_27 = ___charCount3;
if ((((int32_t)L_26) >= ((int32_t)L_27)))
{
goto IL_008a;
}
}
{
int32_t L_28 = V_3;
___charCount3 = L_28;
}
IL_008a:
{
V_1 = 0;
goto IL_009c;
}
IL_008e:
{
Il2CppChar* L_29 = ___chars2;
int32_t L_30 = V_1;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_31 = V_2;
int32_t L_32 = V_1;
NullCheck(L_31);
int32_t L_33 = L_32;
uint16_t L_34 = (uint16_t)(L_31)->GetAt(static_cast<il2cpp_array_size_t>(L_33));
*((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_29, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_30)), (int32_t)2))))) = (int16_t)L_34;
int32_t L_35 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_35, (int32_t)1));
}
IL_009c:
{
int32_t L_36 = V_1;
int32_t L_37 = ___charCount3;
if ((((int32_t)L_36) < ((int32_t)L_37)))
{
goto IL_008e;
}
}
{
int32_t L_38 = ___charCount3;
return L_38;
}
}
// System.Int32 System.Text.Encoding::GetChars(System.Byte*,System.Int32,System.Char*,System.Int32,System.Text.DecoderNLS)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Encoding_GetChars_m9E8D0DA0481A2C4D7A7DF7C5B09CC0C764728401 (Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * __this, uint8_t* ___bytes0, int32_t ___byteCount1, Il2CppChar* ___chars2, int32_t ___charCount3, DecoderNLS_tCDF0A810A2E2B738728A98BBB49F792E66BDF6CD * ___decoder4, const RuntimeMethod* method)
{
{
uint8_t* L_0 = ___bytes0;
int32_t L_1 = ___byteCount1;
Il2CppChar* L_2 = ___chars2;
int32_t L_3 = ___charCount3;
int32_t L_4 = VirtFuncInvoker4< int32_t, uint8_t*, int32_t, Il2CppChar*, int32_t >::Invoke(23 /* System.Int32 System.Text.Encoding::GetChars(System.Byte*,System.Int32,System.Char*,System.Int32) */, __this, (uint8_t*)(uint8_t*)L_0, L_1, (Il2CppChar*)(Il2CppChar*)L_2, L_3);
return L_4;
}
}
// System.Int32 System.Text.Encoding::get_CodePage()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Encoding_get_CodePage_m0B3D428822FC53B5ECCC3CDEDE9E9084C3439CF6 (Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_m_codePage_9();
return L_0;
}
}
// System.Text.Decoder System.Text.Encoding::GetDecoder()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decoder_tEEF45EB6F965222036C49E8EC6BA8A0692AA1F26 * Encoding_GetDecoder_mFC20C2D17E2FF39A41E1BB92B680477B9F2F1379 (Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Encoding_GetDecoder_mFC20C2D17E2FF39A41E1BB92B680477B9F2F1379_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
DefaultDecoder_t3872BD77BDC12EB0F34D0DEE8E34D7A1FE49F91C * L_0 = (DefaultDecoder_t3872BD77BDC12EB0F34D0DEE8E34D7A1FE49F91C *)il2cpp_codegen_object_new(DefaultDecoder_t3872BD77BDC12EB0F34D0DEE8E34D7A1FE49F91C_il2cpp_TypeInfo_var);
DefaultDecoder__ctor_m151367754ECD70E58BE520F3B94E23EBCF855A3D(L_0, __this, /*hidden argument*/NULL);
return L_0;
}
}
// System.Text.Encoding System.Text.Encoding::CreateDefaultEncoding()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * Encoding_CreateDefaultEncoding_mB5BD9528BFE643F1852752B28EA8426C195E73A5 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Encoding_CreateDefaultEncoding_mB5BD9528BFE643F1852752B28EA8426C195E73A5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(EncodingHelper_t1A078DCE9CF2B3578DA8CAFE03FB9FFABD00EBB3_il2cpp_TypeInfo_var);
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_0 = EncodingHelper_GetDefaultEncoding_m11A46F8629633F14B5C9787094E4A50862D6B5C1(/*hidden argument*/NULL);
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_1 = L_0;
NullCheck(L_1);
L_1->set_m_isReadOnly_12((bool)1);
return L_1;
}
}
// System.Void System.Text.Encoding::setReadOnly(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Encoding_setReadOnly_mEB95513471A530FFD4F84AB63E4F794B5DCF174C (Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->set_m_isReadOnly_12(L_0);
return;
}
}
// System.Text.Encoding System.Text.Encoding::get_Default()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * Encoding_get_Default_m625C78C2A9A8504B8BA4141994412513DC470CE2 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Encoding_get_Default_m625C78C2A9A8504B8BA4141994412513DC470CE2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_0 = ((Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields*)il2cpp_codegen_static_fields_for(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_il2cpp_TypeInfo_var))->get_defaultEncoding_0();
il2cpp_codegen_memory_barrier();
if (L_0)
{
goto IL_0015;
}
}
{
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_1 = Encoding_CreateDefaultEncoding_mB5BD9528BFE643F1852752B28EA8426C195E73A5(/*hidden argument*/NULL);
il2cpp_codegen_memory_barrier();
((Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields*)il2cpp_codegen_static_fields_for(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_il2cpp_TypeInfo_var))->set_defaultEncoding_0(L_1);
}
IL_0015:
{
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_2 = ((Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields*)il2cpp_codegen_static_fields_for(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_il2cpp_TypeInfo_var))->get_defaultEncoding_0();
il2cpp_codegen_memory_barrier();
return L_2;
}
}
// System.Text.Encoder System.Text.Encoding::GetEncoder()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoder_t29B2697B0B775EABC52EBFB914F327BE9B1A3464 * Encoding_GetEncoder_mC660F77C18265A7C32355E2F08DC13EE9C4BA4D8 (Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Encoding_GetEncoder_mC660F77C18265A7C32355E2F08DC13EE9C4BA4D8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
DefaultEncoder_t71EA10E1235BA46A6CC88E06EF73C2BAC1673225 * L_0 = (DefaultEncoder_t71EA10E1235BA46A6CC88E06EF73C2BAC1673225 *)il2cpp_codegen_object_new(DefaultEncoder_t71EA10E1235BA46A6CC88E06EF73C2BAC1673225_il2cpp_TypeInfo_var);
DefaultEncoder__ctor_mE3BC59793DAED9FC44BD4F688D13B6733EA13C65(L_0, __this, /*hidden argument*/NULL);
return L_0;
}
}
// System.String System.Text.Encoding::GetString(System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Encoding_GetString_m93E37199E4612FD0A2FB0D70386EC0A061BAB783 (Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___bytes0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Encoding_GetString_m93E37199E4612FD0A2FB0D70386EC0A061BAB783_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___bytes0;
if (L_0)
{
goto IL_0018;
}
}
{
String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral867AD8C2544ED5D38EC2B4986A28AA22B284F710, /*hidden argument*/NULL);
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m9EA692D49986AEBAC433CE3381331146109AE20F(L_2, _stringLiteralDAF529A73101C2BE626B99FC6938163E7A27620B, L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Encoding_GetString_m93E37199E4612FD0A2FB0D70386EC0A061BAB783_RuntimeMethod_var);
}
IL_0018:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_3 = ___bytes0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = ___bytes0;
NullCheck(L_4);
String_t* L_5 = VirtFuncInvoker3< String_t*, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t >::Invoke(31 /* System.String System.Text.Encoding::GetString(System.Byte[],System.Int32,System.Int32) */, __this, L_3, 0, (((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))));
return L_5;
}
}
// System.String System.Text.Encoding::GetString(System.Byte[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Encoding_GetString_mCCEF7D84D7ADD7A3B9BEB3FA81AE6F9B57B0083A (Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___bytes0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method)
{
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___bytes0;
int32_t L_1 = ___index1;
int32_t L_2 = ___count2;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_3 = VirtFuncInvoker3< CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t >::Invoke(21 /* System.Char[] System.Text.Encoding::GetChars(System.Byte[],System.Int32,System.Int32) */, __this, L_0, L_1, L_2);
String_t* L_4 = String_CreateString_m394C06654854ADD4C51FF957BE0CC72EF52BAA96(NULL, L_3, /*hidden argument*/NULL);
return L_4;
}
}
// System.Text.Encoding System.Text.Encoding::get_Unicode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * Encoding_get_Unicode_m86CC470F70F9BB52DDB26721F0C0D6EDAFC318AA (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Encoding_get_Unicode_m86CC470F70F9BB52DDB26721F0C0D6EDAFC318AA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_0 = ((Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields*)il2cpp_codegen_static_fields_for(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_il2cpp_TypeInfo_var))->get_unicodeEncoding_1();
il2cpp_codegen_memory_barrier();
if (L_0)
{
goto IL_0017;
}
}
{
UnicodeEncoding_t6E0E60A1D7A4BECF9901B00EB286FFC2B57F6356 * L_1 = (UnicodeEncoding_t6E0E60A1D7A4BECF9901B00EB286FFC2B57F6356 *)il2cpp_codegen_object_new(UnicodeEncoding_t6E0E60A1D7A4BECF9901B00EB286FFC2B57F6356_il2cpp_TypeInfo_var);
UnicodeEncoding__ctor_m008B9B92D414A56B533624021525F53B2A73BD10(L_1, (bool)0, (bool)1, /*hidden argument*/NULL);
il2cpp_codegen_memory_barrier();
((Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields*)il2cpp_codegen_static_fields_for(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_il2cpp_TypeInfo_var))->set_unicodeEncoding_1(L_1);
}
IL_0017:
{
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_2 = ((Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields*)il2cpp_codegen_static_fields_for(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_il2cpp_TypeInfo_var))->get_unicodeEncoding_1();
il2cpp_codegen_memory_barrier();
return L_2;
}
}
// System.Text.Encoding System.Text.Encoding::get_BigEndianUnicode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * Encoding_get_BigEndianUnicode_m6CC17642A36943FE038F54729446D7E30D582BDD (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Encoding_get_BigEndianUnicode_m6CC17642A36943FE038F54729446D7E30D582BDD_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_0 = ((Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields*)il2cpp_codegen_static_fields_for(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_il2cpp_TypeInfo_var))->get_bigEndianUnicode_2();
il2cpp_codegen_memory_barrier();
if (L_0)
{
goto IL_0017;
}
}
{
UnicodeEncoding_t6E0E60A1D7A4BECF9901B00EB286FFC2B57F6356 * L_1 = (UnicodeEncoding_t6E0E60A1D7A4BECF9901B00EB286FFC2B57F6356 *)il2cpp_codegen_object_new(UnicodeEncoding_t6E0E60A1D7A4BECF9901B00EB286FFC2B57F6356_il2cpp_TypeInfo_var);
UnicodeEncoding__ctor_m008B9B92D414A56B533624021525F53B2A73BD10(L_1, (bool)1, (bool)1, /*hidden argument*/NULL);
il2cpp_codegen_memory_barrier();
((Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields*)il2cpp_codegen_static_fields_for(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_il2cpp_TypeInfo_var))->set_bigEndianUnicode_2(L_1);
}
IL_0017:
{
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_2 = ((Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields*)il2cpp_codegen_static_fields_for(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_il2cpp_TypeInfo_var))->get_bigEndianUnicode_2();
il2cpp_codegen_memory_barrier();
return L_2;
}
}
// System.Text.Encoding System.Text.Encoding::get_UTF7()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * Encoding_get_UTF7_mE709E3E74B727CFCC6675F07BC0AF19C7B4D0F1C (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Encoding_get_UTF7_mE709E3E74B727CFCC6675F07BC0AF19C7B4D0F1C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_0 = ((Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields*)il2cpp_codegen_static_fields_for(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_il2cpp_TypeInfo_var))->get_utf7Encoding_3();
il2cpp_codegen_memory_barrier();
if (L_0)
{
goto IL_0015;
}
}
{
UTF7Encoding_t5733F4C1ABD99AECA11B02CBABEACF7A14545A86 * L_1 = (UTF7Encoding_t5733F4C1ABD99AECA11B02CBABEACF7A14545A86 *)il2cpp_codegen_object_new(UTF7Encoding_t5733F4C1ABD99AECA11B02CBABEACF7A14545A86_il2cpp_TypeInfo_var);
UTF7Encoding__ctor_m5692C45774DF106FBE6B1E5D3C02052E1A71BEAA(L_1, /*hidden argument*/NULL);
il2cpp_codegen_memory_barrier();
((Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields*)il2cpp_codegen_static_fields_for(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_il2cpp_TypeInfo_var))->set_utf7Encoding_3(L_1);
}
IL_0015:
{
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_2 = ((Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields*)il2cpp_codegen_static_fields_for(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_il2cpp_TypeInfo_var))->get_utf7Encoding_3();
il2cpp_codegen_memory_barrier();
return L_2;
}
}
// System.Text.Encoding System.Text.Encoding::get_UTF8()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * Encoding_get_UTF8_m67C8652936B681E7BC7505E459E88790E0FF16D9 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Encoding_get_UTF8_m67C8652936B681E7BC7505E459E88790E0FF16D9_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_0 = ((Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields*)il2cpp_codegen_static_fields_for(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_il2cpp_TypeInfo_var))->get_utf8Encoding_4();
il2cpp_codegen_memory_barrier();
if (L_0)
{
goto IL_0016;
}
}
{
UTF8Encoding_t77ED103B749A387EF072C3429F48C91D12CA08DE * L_1 = (UTF8Encoding_t77ED103B749A387EF072C3429F48C91D12CA08DE *)il2cpp_codegen_object_new(UTF8Encoding_t77ED103B749A387EF072C3429F48C91D12CA08DE_il2cpp_TypeInfo_var);
UTF8Encoding__ctor_m27389C5A707DE2AA997362ED250BEB946CB6B076(L_1, (bool)1, /*hidden argument*/NULL);
il2cpp_codegen_memory_barrier();
((Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields*)il2cpp_codegen_static_fields_for(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_il2cpp_TypeInfo_var))->set_utf8Encoding_4(L_1);
}
IL_0016:
{
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_2 = ((Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields*)il2cpp_codegen_static_fields_for(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_il2cpp_TypeInfo_var))->get_utf8Encoding_4();
il2cpp_codegen_memory_barrier();
return L_2;
}
}
// System.Text.Encoding System.Text.Encoding::get_UTF32()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * Encoding_get_UTF32_m64CB5BB9DA39B0628F70276EDB13DE03A270DE15 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Encoding_get_UTF32_m64CB5BB9DA39B0628F70276EDB13DE03A270DE15_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_0 = ((Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields*)il2cpp_codegen_static_fields_for(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_il2cpp_TypeInfo_var))->get_utf32Encoding_5();
il2cpp_codegen_memory_barrier();
if (L_0)
{
goto IL_0017;
}
}
{
UTF32Encoding_t16A7634FE9BE75EEC897F21F1420783FAA53C30A * L_1 = (UTF32Encoding_t16A7634FE9BE75EEC897F21F1420783FAA53C30A *)il2cpp_codegen_object_new(UTF32Encoding_t16A7634FE9BE75EEC897F21F1420783FAA53C30A_il2cpp_TypeInfo_var);
UTF32Encoding__ctor_m29D20C03874A58220973F79277050D62F8CA2475(L_1, (bool)0, (bool)1, /*hidden argument*/NULL);
il2cpp_codegen_memory_barrier();
((Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields*)il2cpp_codegen_static_fields_for(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_il2cpp_TypeInfo_var))->set_utf32Encoding_5(L_1);
}
IL_0017:
{
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_2 = ((Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields*)il2cpp_codegen_static_fields_for(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_il2cpp_TypeInfo_var))->get_utf32Encoding_5();
il2cpp_codegen_memory_barrier();
return L_2;
}
}
// System.Boolean System.Text.Encoding::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Encoding_Equals_m6C089BFFAFA374F1EE085C7992F3138B105A9A5F (Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Encoding_Equals_m6C089BFFAFA374F1EE085C7992F3138B105A9A5F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * V_0 = NULL;
{
RuntimeObject * L_0 = ___value0;
V_0 = ((Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 *)IsInstClass((RuntimeObject*)L_0, Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_il2cpp_TypeInfo_var));
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_1 = V_0;
if (!L_1)
{
goto IL_003f;
}
}
{
int32_t L_2 = __this->get_m_codePage_9();
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_3 = V_0;
NullCheck(L_3);
int32_t L_4 = L_3->get_m_codePage_9();
if ((!(((uint32_t)L_2) == ((uint32_t)L_4))))
{
goto IL_003d;
}
}
{
EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * L_5 = Encoding_get_EncoderFallback_m56A241904105944473545473FA20E07BF52B1885_inline(__this, /*hidden argument*/NULL);
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_6 = V_0;
NullCheck(L_6);
EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * L_7 = Encoding_get_EncoderFallback_m56A241904105944473545473FA20E07BF52B1885_inline(L_6, /*hidden argument*/NULL);
NullCheck(L_5);
bool L_8 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_5, L_7);
if (!L_8)
{
goto IL_003d;
}
}
{
DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * L_9 = Encoding_get_DecoderFallback_m237581892E1C081234AFD800FCBC321C911EB657_inline(__this, /*hidden argument*/NULL);
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_10 = V_0;
NullCheck(L_10);
DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * L_11 = Encoding_get_DecoderFallback_m237581892E1C081234AFD800FCBC321C911EB657_inline(L_10, /*hidden argument*/NULL);
NullCheck(L_9);
bool L_12 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_9, L_11);
return L_12;
}
IL_003d:
{
return (bool)0;
}
IL_003f:
{
return (bool)0;
}
}
// System.Int32 System.Text.Encoding::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Encoding_GetHashCode_m674E199F5F6140331F92C3E554B887550EF7F5CE (Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_m_codePage_9();
EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * L_1 = Encoding_get_EncoderFallback_m56A241904105944473545473FA20E07BF52B1885_inline(__this, /*hidden argument*/NULL);
NullCheck(L_1);
int32_t L_2 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, L_1);
DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * L_3 = Encoding_get_DecoderFallback_m237581892E1C081234AFD800FCBC321C911EB657_inline(__this, /*hidden argument*/NULL);
NullCheck(L_3);
int32_t L_4 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, L_3);
return ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)L_2)), (int32_t)L_4));
}
}
// System.Char[] System.Text.Encoding::GetBestFitUnicodeToBytesData()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* Encoding_GetBestFitUnicodeToBytesData_m36711A36F8890CADE431F69044F6F1B8E4C34E94 (Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Encoding_GetBestFitUnicodeToBytesData_m36711A36F8890CADE431F69044F6F1B8E4C34E94_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(EmptyArray_1_t40AF87279AA6E3AEEABB0CBA1425F6720C40961A_il2cpp_TypeInfo_var);
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_0 = ((EmptyArray_1_t40AF87279AA6E3AEEABB0CBA1425F6720C40961A_StaticFields*)il2cpp_codegen_static_fields_for(EmptyArray_1_t40AF87279AA6E3AEEABB0CBA1425F6720C40961A_il2cpp_TypeInfo_var))->get_Value_0();
return L_0;
}
}
// System.Char[] System.Text.Encoding::GetBestFitBytesToUnicodeData()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* Encoding_GetBestFitBytesToUnicodeData_m2F61B0EA9A8D41E502ABAB0C9E8D305DA2BF32E6 (Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Encoding_GetBestFitBytesToUnicodeData_m2F61B0EA9A8D41E502ABAB0C9E8D305DA2BF32E6_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(EmptyArray_1_t40AF87279AA6E3AEEABB0CBA1425F6720C40961A_il2cpp_TypeInfo_var);
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_0 = ((EmptyArray_1_t40AF87279AA6E3AEEABB0CBA1425F6720C40961A_StaticFields*)il2cpp_codegen_static_fields_for(EmptyArray_1_t40AF87279AA6E3AEEABB0CBA1425F6720C40961A_il2cpp_TypeInfo_var))->get_Value_0();
return L_0;
}
}
// System.Void System.Text.Encoding::ThrowBytesOverflow()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Encoding_ThrowBytesOverflow_mF003819DBA1215AF2B34F8B4C39A64C6A88B4BBC (Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Encoding_ThrowBytesOverflow_mF003819DBA1215AF2B34F8B4C39A64C6A88B4BBC_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)2);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = L_0;
String_t* L_2 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Text.Encoding::get_EncodingName() */, __this);
NullCheck(L_1);
ArrayElementTypeCheck (L_1, L_2);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_2);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = L_1;
EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * L_4 = Encoding_get_EncoderFallback_m56A241904105944473545473FA20E07BF52B1885_inline(__this, /*hidden argument*/NULL);
NullCheck(L_4);
Type_t * L_5 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_4, /*hidden argument*/NULL);
NullCheck(L_3);
ArrayElementTypeCheck (L_3, L_5);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_5);
String_t* L_6 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteralB44944E84F7E39F8E5F2BF429CDE253C80A0C5C5, L_3, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_7 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_7, L_6, _stringLiteralDAF529A73101C2BE626B99FC6938163E7A27620B, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, Encoding_ThrowBytesOverflow_mF003819DBA1215AF2B34F8B4C39A64C6A88B4BBC_RuntimeMethod_var);
}
}
// System.Void System.Text.Encoding::ThrowBytesOverflow(System.Text.EncoderNLS,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Encoding_ThrowBytesOverflow_m5682F2E9AE50908018D6991C8764D4DB065092C2 (Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * __this, EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * ___encoder0, bool ___nothingEncoded1, const RuntimeMethod* method)
{
int32_t G_B3_0 = 0;
{
EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * L_0 = ___encoder0;
if (!L_0)
{
goto IL_000b;
}
}
{
EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * L_1 = ___encoder0;
NullCheck(L_1);
bool L_2 = L_1->get_m_throwOnOverflow_5();
G_B3_0 = ((int32_t)(L_2));
goto IL_000c;
}
IL_000b:
{
G_B3_0 = 1;
}
IL_000c:
{
bool L_3 = ___nothingEncoded1;
if (!((int32_t)((int32_t)G_B3_0|(int32_t)L_3)))
{
goto IL_002c;
}
}
{
EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * L_4 = ___encoder0;
if (!L_4)
{
goto IL_0026;
}
}
{
EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * L_5 = ___encoder0;
NullCheck(L_5);
bool L_6 = Encoder_get_InternalHasFallbackBuffer_m4064B8A9FEB64FFED4D963FB92E0F31612F63033(L_5, /*hidden argument*/NULL);
if (!L_6)
{
goto IL_0026;
}
}
{
EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * L_7 = ___encoder0;
NullCheck(L_7);
EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * L_8 = Encoder_get_FallbackBuffer_m8E15109A9E24221308BA3C7BFEB622C417696445(L_7, /*hidden argument*/NULL);
NullCheck(L_8);
EncoderFallbackBuffer_InternalReset_m9BF666E5A4160B892C3C334BABA75D150DF642E7(L_8, /*hidden argument*/NULL);
}
IL_0026:
{
Encoding_ThrowBytesOverflow_mF003819DBA1215AF2B34F8B4C39A64C6A88B4BBC(__this, /*hidden argument*/NULL);
}
IL_002c:
{
EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * L_9 = ___encoder0;
NullCheck(L_9);
EncoderNLS_ClearMustFlush_mECADE44B82A8FED6B5284A5D916C4E2B26E326A3(L_9, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Text.Encoding::ThrowCharsOverflow()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Encoding_ThrowCharsOverflow_m6F80534CD46B3C99549206A763F8785DFFF03F4F (Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Encoding_ThrowCharsOverflow_m6F80534CD46B3C99549206A763F8785DFFF03F4F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)2);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = L_0;
String_t* L_2 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Text.Encoding::get_EncodingName() */, __this);
NullCheck(L_1);
ArrayElementTypeCheck (L_1, L_2);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_2);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = L_1;
DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * L_4 = Encoding_get_DecoderFallback_m237581892E1C081234AFD800FCBC321C911EB657_inline(__this, /*hidden argument*/NULL);
NullCheck(L_4);
Type_t * L_5 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_4, /*hidden argument*/NULL);
NullCheck(L_3);
ArrayElementTypeCheck (L_3, L_5);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_5);
String_t* L_6 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteral92D0CE77948C91E565CEE35102CC532CE1D21A6F, L_3, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_7 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_7, L_6, _stringLiteral76A91D6CE24FCC03EC2ECBB19E3012B5D5D40E2B, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, Encoding_ThrowCharsOverflow_m6F80534CD46B3C99549206A763F8785DFFF03F4F_RuntimeMethod_var);
}
}
// System.Void System.Text.Encoding::ThrowCharsOverflow(System.Text.DecoderNLS,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Encoding_ThrowCharsOverflow_m1D3B8B6DE4989398B02A75269278927A0A219CAC (Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * __this, DecoderNLS_tCDF0A810A2E2B738728A98BBB49F792E66BDF6CD * ___decoder0, bool ___nothingDecoded1, const RuntimeMethod* method)
{
int32_t G_B3_0 = 0;
{
DecoderNLS_tCDF0A810A2E2B738728A98BBB49F792E66BDF6CD * L_0 = ___decoder0;
if (!L_0)
{
goto IL_000b;
}
}
{
DecoderNLS_tCDF0A810A2E2B738728A98BBB49F792E66BDF6CD * L_1 = ___decoder0;
NullCheck(L_1);
bool L_2 = L_1->get_m_throwOnOverflow_4();
G_B3_0 = ((int32_t)(L_2));
goto IL_000c;
}
IL_000b:
{
G_B3_0 = 1;
}
IL_000c:
{
bool L_3 = ___nothingDecoded1;
if (!((int32_t)((int32_t)G_B3_0|(int32_t)L_3)))
{
goto IL_002c;
}
}
{
DecoderNLS_tCDF0A810A2E2B738728A98BBB49F792E66BDF6CD * L_4 = ___decoder0;
if (!L_4)
{
goto IL_0026;
}
}
{
DecoderNLS_tCDF0A810A2E2B738728A98BBB49F792E66BDF6CD * L_5 = ___decoder0;
NullCheck(L_5);
bool L_6 = Decoder_get_InternalHasFallbackBuffer_m02F2ED8893F9E6DFBEDBC299829552C35D627156(L_5, /*hidden argument*/NULL);
if (!L_6)
{
goto IL_0026;
}
}
{
DecoderNLS_tCDF0A810A2E2B738728A98BBB49F792E66BDF6CD * L_7 = ___decoder0;
NullCheck(L_7);
DecoderFallbackBuffer_t41EB1B3F5748BEEF5BE883DA09DBDB937441A83C * L_8 = Decoder_get_FallbackBuffer_m2DBBD556551E9AE334B288AE83F72E69A7C4DA20(L_7, /*hidden argument*/NULL);
NullCheck(L_8);
DecoderFallbackBuffer_InternalReset_mAA3A04B329865E28A746D984381B9A45C4123B33(L_8, /*hidden argument*/NULL);
}
IL_0026:
{
Encoding_ThrowCharsOverflow_m6F80534CD46B3C99549206A763F8785DFFF03F4F(__this, /*hidden argument*/NULL);
}
IL_002c:
{
DecoderNLS_tCDF0A810A2E2B738728A98BBB49F792E66BDF6CD * L_9 = ___decoder0;
NullCheck(L_9);
DecoderNLS_ClearMustFlush_m345839D32E273BAE8CDFCD4EA624AA82C8A474C8(L_9, /*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.Text.Encoding_DefaultDecoder::.ctor(System.Text.Encoding)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultDecoder__ctor_m151367754ECD70E58BE520F3B94E23EBCF855A3D (DefaultDecoder_t3872BD77BDC12EB0F34D0DEE8E34D7A1FE49F91C * __this, Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___encoding0, const RuntimeMethod* method)
{
{
Decoder__ctor_m45B7A36C197C57ED0DF4F982C280603E2C8CC2A2(__this, /*hidden argument*/NULL);
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_0 = ___encoding0;
__this->set_m_encoding_2(L_0);
__this->set_m_hasInitializedEncoding_3((bool)1);
return;
}
}
// System.Void System.Text.Encoding_DefaultDecoder::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultDecoder__ctor_m0601A370615BC4C401EDA86A50BDA20F94EC1F85 (DefaultDecoder_t3872BD77BDC12EB0F34D0DEE8E34D7A1FE49F91C * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DefaultDecoder__ctor_m0601A370615BC4C401EDA86A50BDA20F94EC1F85_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);
{
Decoder__ctor_m45B7A36C197C57ED0DF4F982C280603E2C8CC2A2(__this, /*hidden argument*/NULL);
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0;
if (L_0)
{
goto IL_0014;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral59BD0A3FF43B32849B319E645D4798D8A5D1E889, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, DefaultDecoder__ctor_m0601A370615BC4C401EDA86A50BDA20F94EC1F85_RuntimeMethod_var);
}
IL_0014:
{
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_2 = ___info0;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_3 = { reinterpret_cast<intptr_t> (Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_4 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_3, /*hidden argument*/NULL);
NullCheck(L_2);
RuntimeObject * L_5 = SerializationInfo_GetValue_m7910CE6C68888C1F863D7A35915391FA33463ECF(L_2, _stringLiteral14A9DC09E10179B15BEAF94C0AED53904ACE0336, L_4, /*hidden argument*/NULL);
__this->set_m_encoding_2(((Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 *)CastclassClass((RuntimeObject*)L_5, Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_il2cpp_TypeInfo_var)));
}
IL_0034:
try
{ // begin try (depth: 1)
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_6 = ___info0;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_7 = { reinterpret_cast<intptr_t> (DecoderFallback_t128445EB7676870485230893338EF044F6B72F60_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_8 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_7, /*hidden argument*/NULL);
NullCheck(L_6);
RuntimeObject * L_9 = SerializationInfo_GetValue_m7910CE6C68888C1F863D7A35915391FA33463ECF(L_6, _stringLiteralD72E5435917F6F46D498A64D5E536D56DC28C0FC, L_8, /*hidden argument*/NULL);
((Decoder_tEEF45EB6F965222036C49E8EC6BA8A0692AA1F26 *)__this)->set_m_fallback_0(((DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 *)CastclassClass((RuntimeObject*)L_9, DecoderFallback_t128445EB7676870485230893338EF044F6B72F60_il2cpp_TypeInfo_var)));
goto IL_0060;
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0056;
throw e;
}
CATCH_0056:
{ // begin catch(System.Runtime.Serialization.SerializationException)
((Decoder_tEEF45EB6F965222036C49E8EC6BA8A0692AA1F26 *)__this)->set_m_fallback_0((DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 *)NULL);
goto IL_0060;
} // end catch (depth: 1)
IL_0060:
{
return;
}
}
// System.Object System.Text.Encoding_DefaultDecoder::GetRealObject(System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * DefaultDecoder_GetRealObject_mB8588263C747295A603DB13BD493861418255B9E (DefaultDecoder_t3872BD77BDC12EB0F34D0DEE8E34D7A1FE49F91C * __this, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context0, const RuntimeMethod* method)
{
Decoder_tEEF45EB6F965222036C49E8EC6BA8A0692AA1F26 * V_0 = NULL;
{
bool L_0 = __this->get_m_hasInitializedEncoding_3();
if (!L_0)
{
goto IL_000a;
}
}
{
return __this;
}
IL_000a:
{
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_1 = __this->get_m_encoding_2();
NullCheck(L_1);
Decoder_tEEF45EB6F965222036C49E8EC6BA8A0692AA1F26 * L_2 = VirtFuncInvoker0< Decoder_tEEF45EB6F965222036C49E8EC6BA8A0692AA1F26 * >::Invoke(26 /* System.Text.Decoder System.Text.Encoding::GetDecoder() */, L_1);
V_0 = L_2;
DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * L_3 = ((Decoder_tEEF45EB6F965222036C49E8EC6BA8A0692AA1F26 *)__this)->get_m_fallback_0();
if (!L_3)
{
goto IL_002a;
}
}
{
Decoder_tEEF45EB6F965222036C49E8EC6BA8A0692AA1F26 * L_4 = V_0;
DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * L_5 = ((Decoder_tEEF45EB6F965222036C49E8EC6BA8A0692AA1F26 *)__this)->get_m_fallback_0();
NullCheck(L_4);
L_4->set_m_fallback_0(L_5);
}
IL_002a:
{
Decoder_tEEF45EB6F965222036C49E8EC6BA8A0692AA1F26 * L_6 = V_0;
return L_6;
}
}
// System.Void System.Text.Encoding_DefaultDecoder::System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultDecoder_System_Runtime_Serialization_ISerializable_GetObjectData_m475E596E4F8ED1E26FAF132314A9BAB579102081 (DefaultDecoder_t3872BD77BDC12EB0F34D0DEE8E34D7A1FE49F91C * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DefaultDecoder_System_Runtime_Serialization_ISerializable_GetObjectData_m475E596E4F8ED1E26FAF132314A9BAB579102081_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral59BD0A3FF43B32849B319E645D4798D8A5D1E889, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, DefaultDecoder_System_Runtime_Serialization_ISerializable_GetObjectData_m475E596E4F8ED1E26FAF132314A9BAB579102081_RuntimeMethod_var);
}
IL_000e:
{
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_2 = ___info0;
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_3 = __this->get_m_encoding_2();
NullCheck(L_2);
SerializationInfo_AddValue_mC9D1E16476E24E1AFE7C59368D3BC0B35F64FBC6(L_2, _stringLiteral14A9DC09E10179B15BEAF94C0AED53904ACE0336, L_3, /*hidden argument*/NULL);
return;
}
}
// System.Int32 System.Text.Encoding_DefaultDecoder::GetCharCount(System.Byte[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DefaultDecoder_GetCharCount_mDB74ACC072F78AC6EABAB0E675336C853C8B52A3 (DefaultDecoder_t3872BD77BDC12EB0F34D0DEE8E34D7A1FE49F91C * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___bytes0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method)
{
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___bytes0;
int32_t L_1 = ___index1;
int32_t L_2 = ___count2;
int32_t L_3 = VirtFuncInvoker4< int32_t, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t, bool >::Invoke(6 /* System.Int32 System.Text.Decoder::GetCharCount(System.Byte[],System.Int32,System.Int32,System.Boolean) */, __this, L_0, L_1, L_2, (bool)0);
return L_3;
}
}
// System.Int32 System.Text.Encoding_DefaultDecoder::GetCharCount(System.Byte[],System.Int32,System.Int32,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DefaultDecoder_GetCharCount_mAAFE9DA8755F8B1A21FC89337FD68C2EF6E151FC (DefaultDecoder_t3872BD77BDC12EB0F34D0DEE8E34D7A1FE49F91C * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___bytes0, int32_t ___index1, int32_t ___count2, bool ___flush3, const RuntimeMethod* method)
{
{
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_0 = __this->get_m_encoding_2();
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = ___bytes0;
int32_t L_2 = ___index1;
int32_t L_3 = ___count2;
NullCheck(L_0);
int32_t L_4 = VirtFuncInvoker3< int32_t, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t >::Invoke(18 /* System.Int32 System.Text.Encoding::GetCharCount(System.Byte[],System.Int32,System.Int32) */, L_0, L_1, L_2, L_3);
return L_4;
}
}
// System.Int32 System.Text.Encoding_DefaultDecoder::GetCharCount(System.Byte*,System.Int32,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DefaultDecoder_GetCharCount_m70897140617580EA093AD3F46160EBC254945AB6 (DefaultDecoder_t3872BD77BDC12EB0F34D0DEE8E34D7A1FE49F91C * __this, uint8_t* ___bytes0, int32_t ___count1, bool ___flush2, const RuntimeMethod* method)
{
{
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_0 = __this->get_m_encoding_2();
uint8_t* L_1 = ___bytes0;
int32_t L_2 = ___count1;
NullCheck(L_0);
int32_t L_3 = VirtFuncInvoker2< int32_t, uint8_t*, int32_t >::Invoke(19 /* System.Int32 System.Text.Encoding::GetCharCount(System.Byte*,System.Int32) */, L_0, (uint8_t*)(uint8_t*)L_1, L_2);
return L_3;
}
}
// System.Int32 System.Text.Encoding_DefaultDecoder::GetChars(System.Byte[],System.Int32,System.Int32,System.Char[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DefaultDecoder_GetChars_m74972BE5AED0A450F4A561E163F074F4AB17F2BD (DefaultDecoder_t3872BD77BDC12EB0F34D0DEE8E34D7A1FE49F91C * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___bytes0, int32_t ___byteIndex1, int32_t ___byteCount2, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___chars3, int32_t ___charIndex4, const RuntimeMethod* method)
{
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___bytes0;
int32_t L_1 = ___byteIndex1;
int32_t L_2 = ___byteCount2;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_3 = ___chars3;
int32_t L_4 = ___charIndex4;
int32_t L_5 = VirtFuncInvoker6< int32_t, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*, int32_t, bool >::Invoke(9 /* System.Int32 System.Text.Decoder::GetChars(System.Byte[],System.Int32,System.Int32,System.Char[],System.Int32,System.Boolean) */, __this, L_0, L_1, L_2, L_3, L_4, (bool)0);
return L_5;
}
}
// System.Int32 System.Text.Encoding_DefaultDecoder::GetChars(System.Byte[],System.Int32,System.Int32,System.Char[],System.Int32,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DefaultDecoder_GetChars_mE69A3CD903B3B86CB58671B168020870033CBB6A (DefaultDecoder_t3872BD77BDC12EB0F34D0DEE8E34D7A1FE49F91C * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___bytes0, int32_t ___byteIndex1, int32_t ___byteCount2, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___chars3, int32_t ___charIndex4, bool ___flush5, const RuntimeMethod* method)
{
{
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_0 = __this->get_m_encoding_2();
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = ___bytes0;
int32_t L_2 = ___byteIndex1;
int32_t L_3 = ___byteCount2;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_4 = ___chars3;
int32_t L_5 = ___charIndex4;
NullCheck(L_0);
int32_t L_6 = VirtFuncInvoker5< int32_t, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*, int32_t >::Invoke(22 /* System.Int32 System.Text.Encoding::GetChars(System.Byte[],System.Int32,System.Int32,System.Char[],System.Int32) */, L_0, L_1, L_2, L_3, L_4, L_5);
return L_6;
}
}
// System.Int32 System.Text.Encoding_DefaultDecoder::GetChars(System.Byte*,System.Int32,System.Char*,System.Int32,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DefaultDecoder_GetChars_m5B7A25A9FC229EE9786350BF761B6E2B2343EE08 (DefaultDecoder_t3872BD77BDC12EB0F34D0DEE8E34D7A1FE49F91C * __this, uint8_t* ___bytes0, int32_t ___byteCount1, Il2CppChar* ___chars2, int32_t ___charCount3, bool ___flush4, const RuntimeMethod* method)
{
{
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_0 = __this->get_m_encoding_2();
uint8_t* L_1 = ___bytes0;
int32_t L_2 = ___byteCount1;
Il2CppChar* L_3 = ___chars2;
int32_t L_4 = ___charCount3;
NullCheck(L_0);
int32_t L_5 = VirtFuncInvoker4< int32_t, uint8_t*, int32_t, Il2CppChar*, int32_t >::Invoke(23 /* System.Int32 System.Text.Encoding::GetChars(System.Byte*,System.Int32,System.Char*,System.Int32) */, L_0, (uint8_t*)(uint8_t*)L_1, L_2, (Il2CppChar*)(Il2CppChar*)L_3, L_4);
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.Void System.Text.Encoding_DefaultEncoder::.ctor(System.Text.Encoding)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultEncoder__ctor_mE3BC59793DAED9FC44BD4F688D13B6733EA13C65 (DefaultEncoder_t71EA10E1235BA46A6CC88E06EF73C2BAC1673225 * __this, Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___encoding0, const RuntimeMethod* method)
{
{
Encoder__ctor_m2F88A0C4027EC0264E770DF733A761BB589FA541(__this, /*hidden argument*/NULL);
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_0 = ___encoding0;
__this->set_m_encoding_2(L_0);
__this->set_m_hasInitializedEncoding_3((bool)1);
return;
}
}
// System.Void System.Text.Encoding_DefaultEncoder::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultEncoder__ctor_m0574B449E426AF58A6F20012DD76FCBDFA8D69A6 (DefaultEncoder_t71EA10E1235BA46A6CC88E06EF73C2BAC1673225 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DefaultEncoder__ctor_m0574B449E426AF58A6F20012DD76FCBDFA8D69A6_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);
{
Encoder__ctor_m2F88A0C4027EC0264E770DF733A761BB589FA541(__this, /*hidden argument*/NULL);
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0;
if (L_0)
{
goto IL_0014;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral59BD0A3FF43B32849B319E645D4798D8A5D1E889, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, DefaultEncoder__ctor_m0574B449E426AF58A6F20012DD76FCBDFA8D69A6_RuntimeMethod_var);
}
IL_0014:
{
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_2 = ___info0;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_3 = { reinterpret_cast<intptr_t> (Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_4 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_3, /*hidden argument*/NULL);
NullCheck(L_2);
RuntimeObject * L_5 = SerializationInfo_GetValue_m7910CE6C68888C1F863D7A35915391FA33463ECF(L_2, _stringLiteral14A9DC09E10179B15BEAF94C0AED53904ACE0336, L_4, /*hidden argument*/NULL);
__this->set_m_encoding_2(((Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 *)CastclassClass((RuntimeObject*)L_5, Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_il2cpp_TypeInfo_var)));
}
IL_0034:
try
{ // begin try (depth: 1)
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_6 = ___info0;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_7 = { reinterpret_cast<intptr_t> (EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_8 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_7, /*hidden argument*/NULL);
NullCheck(L_6);
RuntimeObject * L_9 = SerializationInfo_GetValue_m7910CE6C68888C1F863D7A35915391FA33463ECF(L_6, _stringLiteralD72E5435917F6F46D498A64D5E536D56DC28C0FC, L_8, /*hidden argument*/NULL);
((Encoder_t29B2697B0B775EABC52EBFB914F327BE9B1A3464 *)__this)->set_m_fallback_0(((EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 *)CastclassClass((RuntimeObject*)L_9, EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63_il2cpp_TypeInfo_var)));
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_10 = ___info0;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_11 = { reinterpret_cast<intptr_t> (Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_0_0_0_var) };
Type_t * L_12 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_11, /*hidden argument*/NULL);
NullCheck(L_10);
RuntimeObject * L_13 = SerializationInfo_GetValue_m7910CE6C68888C1F863D7A35915391FA33463ECF(L_10, _stringLiteral7CEE422D4A55A986BA38DEF6BF4F5978013FD582, L_12, /*hidden argument*/NULL);
__this->set_charLeftOver_4(((*(Il2CppChar*)((Il2CppChar*)UnBox(L_13, Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var)))));
goto IL_0079;
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0076;
throw e;
}
CATCH_0076:
{ // begin catch(System.Runtime.Serialization.SerializationException)
goto IL_0079;
} // end catch (depth: 1)
IL_0079:
{
return;
}
}
// System.Object System.Text.Encoding_DefaultEncoder::GetRealObject(System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * DefaultEncoder_GetRealObject_mFC0E30A007FEB23FCB1120D24BFEADEFEAAF28A4 (DefaultEncoder_t71EA10E1235BA46A6CC88E06EF73C2BAC1673225 * __this, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DefaultEncoder_GetRealObject_mFC0E30A007FEB23FCB1120D24BFEADEFEAAF28A4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Encoder_t29B2697B0B775EABC52EBFB914F327BE9B1A3464 * V_0 = NULL;
EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * V_1 = NULL;
{
bool L_0 = __this->get_m_hasInitializedEncoding_3();
if (!L_0)
{
goto IL_000a;
}
}
{
return __this;
}
IL_000a:
{
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_1 = __this->get_m_encoding_2();
NullCheck(L_1);
Encoder_t29B2697B0B775EABC52EBFB914F327BE9B1A3464 * L_2 = VirtFuncInvoker0< Encoder_t29B2697B0B775EABC52EBFB914F327BE9B1A3464 * >::Invoke(27 /* System.Text.Encoder System.Text.Encoding::GetEncoder() */, L_1);
V_0 = L_2;
EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * L_3 = ((Encoder_t29B2697B0B775EABC52EBFB914F327BE9B1A3464 *)__this)->get_m_fallback_0();
if (!L_3)
{
goto IL_002a;
}
}
{
Encoder_t29B2697B0B775EABC52EBFB914F327BE9B1A3464 * L_4 = V_0;
EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * L_5 = ((Encoder_t29B2697B0B775EABC52EBFB914F327BE9B1A3464 *)__this)->get_m_fallback_0();
NullCheck(L_4);
L_4->set_m_fallback_0(L_5);
}
IL_002a:
{
Il2CppChar L_6 = __this->get_charLeftOver_4();
if (!L_6)
{
goto IL_0048;
}
}
{
Encoder_t29B2697B0B775EABC52EBFB914F327BE9B1A3464 * L_7 = V_0;
V_1 = ((EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 *)IsInstClass((RuntimeObject*)L_7, EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8_il2cpp_TypeInfo_var));
EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * L_8 = V_1;
if (!L_8)
{
goto IL_0048;
}
}
{
EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * L_9 = V_1;
Il2CppChar L_10 = __this->get_charLeftOver_4();
NullCheck(L_9);
L_9->set_charLeftOver_2(L_10);
}
IL_0048:
{
Encoder_t29B2697B0B775EABC52EBFB914F327BE9B1A3464 * L_11 = V_0;
return L_11;
}
}
// System.Void System.Text.Encoding_DefaultEncoder::System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultEncoder_System_Runtime_Serialization_ISerializable_GetObjectData_mF747E1AEF49CC8DEA43BAD82E86618930CBCC4F9 (DefaultEncoder_t71EA10E1235BA46A6CC88E06EF73C2BAC1673225 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DefaultEncoder_System_Runtime_Serialization_ISerializable_GetObjectData_mF747E1AEF49CC8DEA43BAD82E86618930CBCC4F9_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral59BD0A3FF43B32849B319E645D4798D8A5D1E889, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, DefaultEncoder_System_Runtime_Serialization_ISerializable_GetObjectData_mF747E1AEF49CC8DEA43BAD82E86618930CBCC4F9_RuntimeMethod_var);
}
IL_000e:
{
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_2 = ___info0;
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_3 = __this->get_m_encoding_2();
NullCheck(L_2);
SerializationInfo_AddValue_mC9D1E16476E24E1AFE7C59368D3BC0B35F64FBC6(L_2, _stringLiteral14A9DC09E10179B15BEAF94C0AED53904ACE0336, L_3, /*hidden argument*/NULL);
return;
}
}
// System.Int32 System.Text.Encoding_DefaultEncoder::GetByteCount(System.Char[],System.Int32,System.Int32,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DefaultEncoder_GetByteCount_m243B7BE454338823233D4D946A37F9A96B03C61A (DefaultEncoder_t71EA10E1235BA46A6CC88E06EF73C2BAC1673225 * __this, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___chars0, int32_t ___index1, int32_t ___count2, bool ___flush3, const RuntimeMethod* method)
{
{
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_0 = __this->get_m_encoding_2();
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_1 = ___chars0;
int32_t L_2 = ___index1;
int32_t L_3 = ___count2;
NullCheck(L_0);
int32_t L_4 = VirtFuncInvoker3< int32_t, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*, int32_t, int32_t >::Invoke(10 /* System.Int32 System.Text.Encoding::GetByteCount(System.Char[],System.Int32,System.Int32) */, L_0, L_1, L_2, L_3);
return L_4;
}
}
// System.Int32 System.Text.Encoding_DefaultEncoder::GetByteCount(System.Char*,System.Int32,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DefaultEncoder_GetByteCount_m83677A7CCEF01204C6BA39874D217793E996016F (DefaultEncoder_t71EA10E1235BA46A6CC88E06EF73C2BAC1673225 * __this, Il2CppChar* ___chars0, int32_t ___count1, bool ___flush2, const RuntimeMethod* method)
{
{
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_0 = __this->get_m_encoding_2();
Il2CppChar* L_1 = ___chars0;
int32_t L_2 = ___count1;
NullCheck(L_0);
int32_t L_3 = VirtFuncInvoker2< int32_t, Il2CppChar*, int32_t >::Invoke(11 /* System.Int32 System.Text.Encoding::GetByteCount(System.Char*,System.Int32) */, L_0, (Il2CppChar*)(Il2CppChar*)L_1, L_2);
return L_3;
}
}
// System.Int32 System.Text.Encoding_DefaultEncoder::GetBytes(System.Char[],System.Int32,System.Int32,System.Byte[],System.Int32,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DefaultEncoder_GetBytes_m80D3AF66BE70B09913E88529665AEBBC2AAD430C (DefaultEncoder_t71EA10E1235BA46A6CC88E06EF73C2BAC1673225 * __this, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___chars0, int32_t ___charIndex1, int32_t ___charCount2, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___bytes3, int32_t ___byteIndex4, bool ___flush5, const RuntimeMethod* method)
{
{
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_0 = __this->get_m_encoding_2();
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_1 = ___chars0;
int32_t L_2 = ___charIndex1;
int32_t L_3 = ___charCount2;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = ___bytes3;
int32_t L_5 = ___byteIndex4;
NullCheck(L_0);
int32_t L_6 = VirtFuncInvoker5< int32_t, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*, int32_t, int32_t, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t >::Invoke(14 /* System.Int32 System.Text.Encoding::GetBytes(System.Char[],System.Int32,System.Int32,System.Byte[],System.Int32) */, L_0, L_1, L_2, L_3, L_4, L_5);
return L_6;
}
}
// System.Int32 System.Text.Encoding_DefaultEncoder::GetBytes(System.Char*,System.Int32,System.Byte*,System.Int32,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t DefaultEncoder_GetBytes_m9E2479F6174FDFA4BFB23BA7ED10E20BF1A2E475 (DefaultEncoder_t71EA10E1235BA46A6CC88E06EF73C2BAC1673225 * __this, Il2CppChar* ___chars0, int32_t ___charCount1, uint8_t* ___bytes2, int32_t ___byteCount3, bool ___flush4, const RuntimeMethod* method)
{
{
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_0 = __this->get_m_encoding_2();
Il2CppChar* L_1 = ___chars0;
int32_t L_2 = ___charCount1;
uint8_t* L_3 = ___bytes2;
int32_t L_4 = ___byteCount3;
NullCheck(L_0);
int32_t L_5 = VirtFuncInvoker4< int32_t, Il2CppChar*, int32_t, uint8_t*, int32_t >::Invoke(17 /* System.Int32 System.Text.Encoding::GetBytes(System.Char*,System.Int32,System.Byte*,System.Int32) */, L_0, (Il2CppChar*)(Il2CppChar*)L_1, L_2, (uint8_t*)(uint8_t*)L_3, L_4);
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.Void System.Text.Encoding_EncodingByteBuffer::.ctor(System.Text.Encoding,System.Text.EncoderNLS,System.Byte*,System.Int32,System.Char*,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EncodingByteBuffer__ctor_m175BDD0E694443C10680E724F64BC8A249AAA11D (EncodingByteBuffer_t3F87DF1BC4355EFCA2E26FFAE6D239ABCFBF3AD5 * __this, Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___inEncoding0, EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * ___inEncoder1, uint8_t* ___inByteStart2, int32_t ___inByteCount3, Il2CppChar* ___inCharStart4, int32_t ___inCharCount5, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EncodingByteBuffer__ctor_m175BDD0E694443C10680E724F64BC8A249AAA11D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_0 = ___inEncoding0;
__this->set_enc_7(L_0);
EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * L_1 = ___inEncoder1;
__this->set_encoder_8(L_1);
Il2CppChar* L_2 = ___inCharStart4;
__this->set_charStart_4((Il2CppChar*)L_2);
Il2CppChar* L_3 = ___inCharStart4;
__this->set_chars_3((Il2CppChar*)L_3);
Il2CppChar* L_4 = ___inCharStart4;
int32_t L_5 = ___inCharCount5;
__this->set_charEnd_5((Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_4, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_5)), (int32_t)2)))));
uint8_t* L_6 = ___inByteStart2;
__this->set_bytes_0((uint8_t*)L_6);
uint8_t* L_7 = ___inByteStart2;
__this->set_byteStart_1((uint8_t*)L_7);
uint8_t* L_8 = ___inByteStart2;
int32_t L_9 = ___inByteCount3;
__this->set_byteEnd_2((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_8, (int32_t)L_9)));
EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * L_10 = __this->get_encoder_8();
if (L_10)
{
goto IL_006a;
}
}
{
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_11 = __this->get_enc_7();
NullCheck(L_11);
EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * L_12 = Encoding_get_EncoderFallback_m56A241904105944473545473FA20E07BF52B1885_inline(L_11, /*hidden argument*/NULL);
NullCheck(L_12);
EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * L_13 = VirtFuncInvoker0< EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * >::Invoke(4 /* System.Text.EncoderFallbackBuffer System.Text.EncoderFallback::CreateFallbackBuffer() */, L_12);
__this->set_fallbackBuffer_9(L_13);
goto IL_00df;
}
IL_006a:
{
EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * L_14 = __this->get_encoder_8();
NullCheck(L_14);
EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * L_15 = Encoder_get_FallbackBuffer_m8E15109A9E24221308BA3C7BFEB622C417696445(L_14, /*hidden argument*/NULL);
__this->set_fallbackBuffer_9(L_15);
EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * L_16 = __this->get_encoder_8();
NullCheck(L_16);
bool L_17 = L_16->get_m_throwOnOverflow_5();
if (!L_17)
{
goto IL_00df;
}
}
{
EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * L_18 = __this->get_encoder_8();
NullCheck(L_18);
bool L_19 = Encoder_get_InternalHasFallbackBuffer_m4064B8A9FEB64FFED4D963FB92E0F31612F63033(L_18, /*hidden argument*/NULL);
if (!L_19)
{
goto IL_00df;
}
}
{
EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * L_20 = __this->get_fallbackBuffer_9();
NullCheck(L_20);
int32_t L_21 = VirtFuncInvoker0< int32_t >::Invoke(8 /* System.Int32 System.Text.EncoderFallbackBuffer::get_Remaining() */, L_20);
if ((((int32_t)L_21) <= ((int32_t)0)))
{
goto IL_00df;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_22 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)2);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_23 = L_22;
EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * L_24 = __this->get_encoder_8();
NullCheck(L_24);
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_25 = EncoderNLS_get_Encoding_mCDF2F7C580FCF269BE40BC9BBA55CCD5A8F4C715_inline(L_24, /*hidden argument*/NULL);
NullCheck(L_25);
String_t* L_26 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Text.Encoding::get_EncodingName() */, L_25);
NullCheck(L_23);
ArrayElementTypeCheck (L_23, L_26);
(L_23)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_26);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_27 = L_23;
EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * L_28 = __this->get_encoder_8();
NullCheck(L_28);
EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * L_29 = Encoder_get_Fallback_m8DB0FF2836429351EC5645B2B007982CE458632A_inline(L_28, /*hidden argument*/NULL);
NullCheck(L_29);
Type_t * L_30 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(L_29, /*hidden argument*/NULL);
NullCheck(L_27);
ArrayElementTypeCheck (L_27, L_30);
(L_27)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_30);
String_t* L_31 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteral5E582BBCB7C3EEF516ECF2B6FE525CF94E83D018, L_27, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_32 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_32, L_31, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_32, EncodingByteBuffer__ctor_m175BDD0E694443C10680E724F64BC8A249AAA11D_RuntimeMethod_var);
}
IL_00df:
{
EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * L_33 = __this->get_fallbackBuffer_9();
Il2CppChar* L_34 = __this->get_chars_3();
Il2CppChar* L_35 = __this->get_charEnd_5();
EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * L_36 = __this->get_encoder_8();
uint8_t* L_37 = __this->get_bytes_0();
NullCheck(L_33);
EncoderFallbackBuffer_InternalInitialize_m177C2BFBE6958ABCC948A279D30E398911C18E66(L_33, (Il2CppChar*)(Il2CppChar*)L_34, (Il2CppChar*)(Il2CppChar*)L_35, L_36, (bool)((((int32_t)((((intptr_t)L_37) == ((intptr_t)(((uintptr_t)0))))? 1 : 0)) == ((int32_t)0))? 1 : 0), /*hidden argument*/NULL);
return;
}
}
// System.Boolean System.Text.Encoding_EncodingByteBuffer::AddByte(System.Byte,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EncodingByteBuffer_AddByte_mE9CAED19A491A8A78C698033490017F3BC8CFC4A (EncodingByteBuffer_t3F87DF1BC4355EFCA2E26FFAE6D239ABCFBF3AD5 * __this, uint8_t ___b0, int32_t ___moreBytesExpected1, const RuntimeMethod* method)
{
uint8_t* V_0 = NULL;
{
uint8_t* L_0 = __this->get_bytes_0();
if ((((intptr_t)L_0) == ((intptr_t)(((uintptr_t)0)))))
{
goto IL_0036;
}
}
{
uint8_t* L_1 = __this->get_bytes_0();
uint8_t* L_2 = __this->get_byteEnd_2();
int32_t L_3 = ___moreBytesExpected1;
if ((!(((uintptr_t)L_1) >= ((uintptr_t)((uint8_t*)il2cpp_codegen_subtract((intptr_t)L_2, (int32_t)L_3))))))
{
goto IL_0023;
}
}
{
EncodingByteBuffer_MovePrevious_mCB4BF5A4CA02264F297D98DAA7E9CDEE744156F1(__this, (bool)1, /*hidden argument*/NULL);
return (bool)0;
}
IL_0023:
{
uint8_t* L_4 = __this->get_bytes_0();
V_0 = (uint8_t*)L_4;
uint8_t* L_5 = V_0;
__this->set_bytes_0((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_5, (int32_t)1)));
uint8_t* L_6 = V_0;
uint8_t L_7 = ___b0;
*((int8_t*)L_6) = (int8_t)L_7;
}
IL_0036:
{
int32_t L_8 = __this->get_byteCountResult_6();
__this->set_byteCountResult_6(((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1)));
return (bool)1;
}
}
// System.Boolean System.Text.Encoding_EncodingByteBuffer::AddByte(System.Byte)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EncodingByteBuffer_AddByte_m816C83A923CC8039CEFCD01167E26CF634A7C4F7 (EncodingByteBuffer_t3F87DF1BC4355EFCA2E26FFAE6D239ABCFBF3AD5 * __this, uint8_t ___b10, const RuntimeMethod* method)
{
{
uint8_t L_0 = ___b10;
bool L_1 = EncodingByteBuffer_AddByte_mE9CAED19A491A8A78C698033490017F3BC8CFC4A(__this, L_0, 0, /*hidden argument*/NULL);
return L_1;
}
}
// System.Boolean System.Text.Encoding_EncodingByteBuffer::AddByte(System.Byte,System.Byte)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EncodingByteBuffer_AddByte_mA992E3A8593105B70F1132047D1F9AFEF0B3497A (EncodingByteBuffer_t3F87DF1BC4355EFCA2E26FFAE6D239ABCFBF3AD5 * __this, uint8_t ___b10, uint8_t ___b21, const RuntimeMethod* method)
{
{
uint8_t L_0 = ___b10;
uint8_t L_1 = ___b21;
bool L_2 = EncodingByteBuffer_AddByte_mC0CA34622FA97CA71C4C1150E5829BB9CFD357B2(__this, L_0, L_1, 0, /*hidden argument*/NULL);
return L_2;
}
}
// System.Boolean System.Text.Encoding_EncodingByteBuffer::AddByte(System.Byte,System.Byte,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EncodingByteBuffer_AddByte_mC0CA34622FA97CA71C4C1150E5829BB9CFD357B2 (EncodingByteBuffer_t3F87DF1BC4355EFCA2E26FFAE6D239ABCFBF3AD5 * __this, uint8_t ___b10, uint8_t ___b21, int32_t ___moreBytesExpected2, const RuntimeMethod* method)
{
{
uint8_t L_0 = ___b10;
int32_t L_1 = ___moreBytesExpected2;
bool L_2 = EncodingByteBuffer_AddByte_mE9CAED19A491A8A78C698033490017F3BC8CFC4A(__this, L_0, ((int32_t)il2cpp_codegen_add((int32_t)1, (int32_t)L_1)), /*hidden argument*/NULL);
if (!L_2)
{
goto IL_0015;
}
}
{
uint8_t L_3 = ___b21;
int32_t L_4 = ___moreBytesExpected2;
bool L_5 = EncodingByteBuffer_AddByte_mE9CAED19A491A8A78C698033490017F3BC8CFC4A(__this, L_3, L_4, /*hidden argument*/NULL);
return L_5;
}
IL_0015:
{
return (bool)0;
}
}
// System.Void System.Text.Encoding_EncodingByteBuffer::MovePrevious(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EncodingByteBuffer_MovePrevious_mCB4BF5A4CA02264F297D98DAA7E9CDEE744156F1 (EncodingByteBuffer_t3F87DF1BC4355EFCA2E26FFAE6D239ABCFBF3AD5 * __this, bool ___bThrow0, const RuntimeMethod* method)
{
{
EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * L_0 = __this->get_fallbackBuffer_9();
NullCheck(L_0);
bool L_1 = L_0->get_bFallingBack_5();
if (!L_1)
{
goto IL_001b;
}
}
{
EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * L_2 = __this->get_fallbackBuffer_9();
NullCheck(L_2);
VirtFuncInvoker0< bool >::Invoke(7 /* System.Boolean System.Text.EncoderFallbackBuffer::MovePrevious() */, L_2);
goto IL_0037;
}
IL_001b:
{
Il2CppChar* L_3 = __this->get_chars_3();
Il2CppChar* L_4 = __this->get_charStart_4();
if ((!(((uintptr_t)L_3) > ((uintptr_t)L_4))))
{
goto IL_0037;
}
}
{
Il2CppChar* L_5 = __this->get_chars_3();
__this->set_chars_3((Il2CppChar*)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_5, (int32_t)2)));
}
IL_0037:
{
bool L_6 = ___bThrow0;
if (!L_6)
{
goto IL_0059;
}
}
{
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_7 = __this->get_enc_7();
EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * L_8 = __this->get_encoder_8();
uint8_t* L_9 = __this->get_bytes_0();
uint8_t* L_10 = __this->get_byteStart_1();
NullCheck(L_7);
Encoding_ThrowBytesOverflow_m5682F2E9AE50908018D6991C8764D4DB065092C2(L_7, L_8, (bool)((((intptr_t)L_9) == ((intptr_t)L_10))? 1 : 0), /*hidden argument*/NULL);
}
IL_0059:
{
return;
}
}
// System.Boolean System.Text.Encoding_EncodingByteBuffer::get_MoreData()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EncodingByteBuffer_get_MoreData_mF4441D3225D099D902F7A58F9B96B15FDDBC6F7F (EncodingByteBuffer_t3F87DF1BC4355EFCA2E26FFAE6D239ABCFBF3AD5 * __this, const RuntimeMethod* method)
{
{
EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * L_0 = __this->get_fallbackBuffer_9();
NullCheck(L_0);
int32_t L_1 = VirtFuncInvoker0< int32_t >::Invoke(8 /* System.Int32 System.Text.EncoderFallbackBuffer::get_Remaining() */, L_0);
if ((((int32_t)L_1) > ((int32_t)0)))
{
goto IL_001d;
}
}
{
Il2CppChar* L_2 = __this->get_chars_3();
Il2CppChar* L_3 = __this->get_charEnd_5();
return (bool)((!(((uintptr_t)L_2) >= ((uintptr_t)L_3)))? 1 : 0);
}
IL_001d:
{
return (bool)1;
}
}
// System.Char System.Text.Encoding_EncodingByteBuffer::GetNextChar()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar EncodingByteBuffer_GetNextChar_m47A918B530CE69350D7F9B9B73B2420A4BEB8F39 (EncodingByteBuffer_t3F87DF1BC4355EFCA2E26FFAE6D239ABCFBF3AD5 * __this, const RuntimeMethod* method)
{
Il2CppChar V_0 = 0x0;
Il2CppChar* V_1 = NULL;
{
EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * L_0 = __this->get_fallbackBuffer_9();
NullCheck(L_0);
Il2CppChar L_1 = EncoderFallbackBuffer_InternalGetNextChar_mC1D11F50B25566F6B87974A3BCF1066C025A8CAF(L_0, /*hidden argument*/NULL);
V_0 = L_1;
Il2CppChar L_2 = V_0;
if (L_2)
{
goto IL_0030;
}
}
{
Il2CppChar* L_3 = __this->get_chars_3();
Il2CppChar* L_4 = __this->get_charEnd_5();
if ((!(((uintptr_t)L_3) < ((uintptr_t)L_4))))
{
goto IL_0030;
}
}
{
Il2CppChar* L_5 = __this->get_chars_3();
V_1 = (Il2CppChar*)L_5;
Il2CppChar* L_6 = V_1;
__this->set_chars_3((Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_6, (int32_t)2)));
Il2CppChar* L_7 = V_1;
int32_t L_8 = *((uint16_t*)L_7);
V_0 = L_8;
}
IL_0030:
{
Il2CppChar L_9 = V_0;
return L_9;
}
}
// System.Int32 System.Text.Encoding_EncodingByteBuffer::get_CharsUsed()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EncodingByteBuffer_get_CharsUsed_m18A1705885FC256012EB0060D69D1A457414DC8A (EncodingByteBuffer_t3F87DF1BC4355EFCA2E26FFAE6D239ABCFBF3AD5 * __this, const RuntimeMethod* method)
{
{
Il2CppChar* L_0 = __this->get_chars_3();
Il2CppChar* L_1 = __this->get_charStart_4();
return (((int32_t)((int32_t)(((int64_t)((int64_t)(intptr_t)((Il2CppChar*)((intptr_t)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_0, (intptr_t)L_1))/(int32_t)2))))))));
}
}
// System.Int32 System.Text.Encoding_EncodingByteBuffer::get_Count()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EncodingByteBuffer_get_Count_m747678245D24378CD1943B890821AFADB16CCD63 (EncodingByteBuffer_t3F87DF1BC4355EFCA2E26FFAE6D239ABCFBF3AD5 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_byteCountResult_6();
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.Text.Encoding_EncodingCharBuffer::.ctor(System.Text.Encoding,System.Text.DecoderNLS,System.Char*,System.Int32,System.Byte*,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EncodingCharBuffer__ctor_mCEE3B1892CB65D6DE48F97945A285C3F52768FCC (EncodingCharBuffer_t57DF2C468BB65F56788A37E2DDF56AA6BE536BD0 * __this, Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___enc0, DecoderNLS_tCDF0A810A2E2B738728A98BBB49F792E66BDF6CD * ___decoder1, Il2CppChar* ___charStart2, int32_t ___charCount3, uint8_t* ___byteStart4, int32_t ___byteCount5, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_0 = ___enc0;
__this->set_enc_4(L_0);
DecoderNLS_tCDF0A810A2E2B738728A98BBB49F792E66BDF6CD * L_1 = ___decoder1;
__this->set_decoder_5(L_1);
Il2CppChar* L_2 = ___charStart2;
__this->set_chars_0((Il2CppChar*)L_2);
Il2CppChar* L_3 = ___charStart2;
__this->set_charStart_1((Il2CppChar*)L_3);
Il2CppChar* L_4 = ___charStart2;
int32_t L_5 = ___charCount3;
__this->set_charEnd_2((Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_4, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_5)), (int32_t)2)))));
uint8_t* L_6 = ___byteStart4;
__this->set_byteStart_6((uint8_t*)L_6);
uint8_t* L_7 = ___byteStart4;
__this->set_bytes_8((uint8_t*)L_7);
uint8_t* L_8 = ___byteStart4;
int32_t L_9 = ___byteCount5;
__this->set_byteEnd_7((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_8, (int32_t)L_9)));
DecoderNLS_tCDF0A810A2E2B738728A98BBB49F792E66BDF6CD * L_10 = __this->get_decoder_5();
if (L_10)
{
goto IL_0065;
}
}
{
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_11 = ___enc0;
NullCheck(L_11);
DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * L_12 = Encoding_get_DecoderFallback_m237581892E1C081234AFD800FCBC321C911EB657_inline(L_11, /*hidden argument*/NULL);
NullCheck(L_12);
DecoderFallbackBuffer_t41EB1B3F5748BEEF5BE883DA09DBDB937441A83C * L_13 = VirtFuncInvoker0< DecoderFallbackBuffer_t41EB1B3F5748BEEF5BE883DA09DBDB937441A83C * >::Invoke(4 /* System.Text.DecoderFallbackBuffer System.Text.DecoderFallback::CreateFallbackBuffer() */, L_12);
__this->set_fallbackBuffer_9(L_13);
goto IL_0076;
}
IL_0065:
{
DecoderNLS_tCDF0A810A2E2B738728A98BBB49F792E66BDF6CD * L_14 = __this->get_decoder_5();
NullCheck(L_14);
DecoderFallbackBuffer_t41EB1B3F5748BEEF5BE883DA09DBDB937441A83C * L_15 = Decoder_get_FallbackBuffer_m2DBBD556551E9AE334B288AE83F72E69A7C4DA20(L_14, /*hidden argument*/NULL);
__this->set_fallbackBuffer_9(L_15);
}
IL_0076:
{
DecoderFallbackBuffer_t41EB1B3F5748BEEF5BE883DA09DBDB937441A83C * L_16 = __this->get_fallbackBuffer_9();
uint8_t* L_17 = __this->get_bytes_8();
Il2CppChar* L_18 = __this->get_charEnd_2();
NullCheck(L_16);
DecoderFallbackBuffer_InternalInitialize_m251EB4670E9C98584BA6CB032F9109C1956DE0D7(L_16, (uint8_t*)(uint8_t*)L_17, (Il2CppChar*)(Il2CppChar*)L_18, /*hidden argument*/NULL);
return;
}
}
// System.Boolean System.Text.Encoding_EncodingCharBuffer::AddChar(System.Char,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EncodingCharBuffer_AddChar_m2BD7262E87991C2B1A9847FB9F6DED8D6F463E7B (EncodingCharBuffer_t57DF2C468BB65F56788A37E2DDF56AA6BE536BD0 * __this, Il2CppChar ___ch0, int32_t ___numBytes1, const RuntimeMethod* method)
{
Il2CppChar* V_0 = NULL;
{
Il2CppChar* L_0 = __this->get_chars_0();
if ((((intptr_t)L_0) == ((intptr_t)(((uintptr_t)0)))))
{
goto IL_005d;
}
}
{
Il2CppChar* L_1 = __this->get_chars_0();
Il2CppChar* L_2 = __this->get_charEnd_2();
if ((!(((uintptr_t)L_1) >= ((uintptr_t)L_2))))
{
goto IL_004a;
}
}
{
uint8_t* L_3 = __this->get_bytes_8();
int32_t L_4 = ___numBytes1;
__this->set_bytes_8((uint8_t*)((uint8_t*)il2cpp_codegen_subtract((intptr_t)L_3, (int32_t)L_4)));
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_5 = __this->get_enc_4();
DecoderNLS_tCDF0A810A2E2B738728A98BBB49F792E66BDF6CD * L_6 = __this->get_decoder_5();
uint8_t* L_7 = __this->get_bytes_8();
uint8_t* L_8 = __this->get_byteStart_6();
NullCheck(L_5);
Encoding_ThrowCharsOverflow_m1D3B8B6DE4989398B02A75269278927A0A219CAC(L_5, L_6, (bool)((((int32_t)((!(((uintptr_t)L_7) <= ((uintptr_t)L_8)))? 1 : 0)) == ((int32_t)0))? 1 : 0), /*hidden argument*/NULL);
return (bool)0;
}
IL_004a:
{
Il2CppChar* L_9 = __this->get_chars_0();
V_0 = (Il2CppChar*)L_9;
Il2CppChar* L_10 = V_0;
__this->set_chars_0((Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_10, (int32_t)2)));
Il2CppChar* L_11 = V_0;
Il2CppChar L_12 = ___ch0;
*((int16_t*)L_11) = (int16_t)L_12;
}
IL_005d:
{
int32_t L_13 = __this->get_charCountResult_3();
__this->set_charCountResult_3(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1)));
return (bool)1;
}
}
// System.Boolean System.Text.Encoding_EncodingCharBuffer::AddChar(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EncodingCharBuffer_AddChar_mBCE17490FD6542A3F32574807A3784C40A74AA5C (EncodingCharBuffer_t57DF2C468BB65F56788A37E2DDF56AA6BE536BD0 * __this, Il2CppChar ___ch0, const RuntimeMethod* method)
{
{
Il2CppChar L_0 = ___ch0;
bool L_1 = EncodingCharBuffer_AddChar_m2BD7262E87991C2B1A9847FB9F6DED8D6F463E7B(__this, L_0, 1, /*hidden argument*/NULL);
return L_1;
}
}
// System.Void System.Text.Encoding_EncodingCharBuffer::AdjustBytes(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EncodingCharBuffer_AdjustBytes_m02B5EAAD2B5B404D886CB9AA0F3ADC7ADF3AEE6D (EncodingCharBuffer_t57DF2C468BB65F56788A37E2DDF56AA6BE536BD0 * __this, int32_t ___count0, const RuntimeMethod* method)
{
{
uint8_t* L_0 = __this->get_bytes_8();
int32_t L_1 = ___count0;
__this->set_bytes_8((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_0, (int32_t)L_1)));
return;
}
}
// System.Boolean System.Text.Encoding_EncodingCharBuffer::get_MoreData()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EncodingCharBuffer_get_MoreData_mDA6918FFECBD1F5FEBEDDF2AD002ABB02BAEE2E3 (EncodingCharBuffer_t57DF2C468BB65F56788A37E2DDF56AA6BE536BD0 * __this, const RuntimeMethod* method)
{
{
uint8_t* L_0 = __this->get_bytes_8();
uint8_t* L_1 = __this->get_byteEnd_7();
return (bool)((!(((uintptr_t)L_0) >= ((uintptr_t)L_1)))? 1 : 0);
}
}
// System.Byte System.Text.Encoding_EncodingCharBuffer::GetNextByte()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t EncodingCharBuffer_GetNextByte_m6807DC8FBD56BA7912829550A3C9F25301D9A42D (EncodingCharBuffer_t57DF2C468BB65F56788A37E2DDF56AA6BE536BD0 * __this, const RuntimeMethod* method)
{
uint8_t* V_0 = NULL;
{
uint8_t* L_0 = __this->get_bytes_8();
uint8_t* L_1 = __this->get_byteEnd_7();
if ((!(((uintptr_t)L_0) >= ((uintptr_t)L_1))))
{
goto IL_0010;
}
}
{
return (uint8_t)0;
}
IL_0010:
{
uint8_t* L_2 = __this->get_bytes_8();
V_0 = (uint8_t*)L_2;
uint8_t* L_3 = V_0;
__this->set_bytes_8((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_3, (int32_t)1)));
uint8_t* L_4 = V_0;
int32_t L_5 = *((uint8_t*)L_4);
return (uint8_t)L_5;
}
}
// System.Int32 System.Text.Encoding_EncodingCharBuffer::get_BytesUsed()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EncodingCharBuffer_get_BytesUsed_m1D6ACCF80F894D5118C2B9BB9C56274B4E699EF6 (EncodingCharBuffer_t57DF2C468BB65F56788A37E2DDF56AA6BE536BD0 * __this, const RuntimeMethod* method)
{
{
uint8_t* L_0 = __this->get_bytes_8();
uint8_t* L_1 = __this->get_byteStart_6();
return (((int32_t)((int32_t)(((int64_t)((int64_t)(intptr_t)((uint8_t*)((intptr_t)((uint8_t*)il2cpp_codegen_subtract((intptr_t)L_0, (intptr_t)L_1))/(int32_t)1))))))));
}
}
// System.Boolean System.Text.Encoding_EncodingCharBuffer::Fallback(System.Byte)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EncodingCharBuffer_Fallback_mCB8B75AEF197D3BD39FD0EBD36A5BDD207851C69 (EncodingCharBuffer_t57DF2C468BB65F56788A37E2DDF56AA6BE536BD0 * __this, uint8_t ___fallbackByte0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EncodingCharBuffer_Fallback_mCB8B75AEF197D3BD39FD0EBD36A5BDD207851C69_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_0 = NULL;
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)1);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = L_0;
uint8_t L_2 = ___fallbackByte0;
NullCheck(L_1);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (uint8_t)L_2);
V_0 = L_1;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_3 = V_0;
bool L_4 = EncodingCharBuffer_Fallback_mC0B6F0298F99CC06FA859D3DA69F0E8A3FDACBE7(__this, L_3, /*hidden argument*/NULL);
return L_4;
}
}
// System.Boolean System.Text.Encoding_EncodingCharBuffer::Fallback(System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EncodingCharBuffer_Fallback_mC0B6F0298F99CC06FA859D3DA69F0E8A3FDACBE7 (EncodingCharBuffer_t57DF2C468BB65F56788A37E2DDF56AA6BE536BD0 * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___byteBuffer0, const RuntimeMethod* method)
{
Il2CppChar* V_0 = NULL;
{
Il2CppChar* L_0 = __this->get_chars_0();
if ((((intptr_t)L_0) == ((intptr_t)(((uintptr_t)0)))))
{
goto IL_0082;
}
}
{
Il2CppChar* L_1 = __this->get_chars_0();
V_0 = (Il2CppChar*)L_1;
DecoderFallbackBuffer_t41EB1B3F5748BEEF5BE883DA09DBDB937441A83C * L_2 = __this->get_fallbackBuffer_9();
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_3 = ___byteBuffer0;
uint8_t* L_4 = __this->get_bytes_8();
Il2CppChar** L_5 = __this->get_address_of_chars_0();
NullCheck(L_2);
bool L_6 = VirtFuncInvoker3< bool, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, uint8_t*, Il2CppChar** >::Invoke(7 /* System.Boolean System.Text.DecoderFallbackBuffer::InternalFallback(System.Byte[],System.Byte*,System.Char*&) */, L_2, L_3, (uint8_t*)(uint8_t*)L_4, (Il2CppChar**)L_5);
if (L_6)
{
goto IL_0067;
}
}
{
uint8_t* L_7 = __this->get_bytes_8();
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_8 = ___byteBuffer0;
NullCheck(L_8);
__this->set_bytes_8((uint8_t*)((uint8_t*)il2cpp_codegen_subtract((intptr_t)L_7, (int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_8)->max_length)))))));
DecoderFallbackBuffer_t41EB1B3F5748BEEF5BE883DA09DBDB937441A83C * L_9 = __this->get_fallbackBuffer_9();
NullCheck(L_9);
DecoderFallbackBuffer_InternalReset_mAA3A04B329865E28A746D984381B9A45C4123B33(L_9, /*hidden argument*/NULL);
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_10 = __this->get_enc_4();
DecoderNLS_tCDF0A810A2E2B738728A98BBB49F792E66BDF6CD * L_11 = __this->get_decoder_5();
Il2CppChar* L_12 = __this->get_chars_0();
Il2CppChar* L_13 = __this->get_charStart_1();
NullCheck(L_10);
Encoding_ThrowCharsOverflow_m1D3B8B6DE4989398B02A75269278927A0A219CAC(L_10, L_11, (bool)((((intptr_t)L_12) == ((intptr_t)L_13))? 1 : 0), /*hidden argument*/NULL);
return (bool)0;
}
IL_0067:
{
int32_t L_14 = __this->get_charCountResult_3();
Il2CppChar* L_15 = __this->get_chars_0();
Il2CppChar* L_16 = V_0;
__this->set_charCountResult_3(((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)(((int32_t)((int32_t)(((int64_t)((int64_t)(intptr_t)((Il2CppChar*)((intptr_t)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_15, (intptr_t)L_16))/(int32_t)2)))))))))));
goto IL_00a1;
}
IL_0082:
{
int32_t L_17 = __this->get_charCountResult_3();
DecoderFallbackBuffer_t41EB1B3F5748BEEF5BE883DA09DBDB937441A83C * L_18 = __this->get_fallbackBuffer_9();
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_19 = ___byteBuffer0;
uint8_t* L_20 = __this->get_bytes_8();
NullCheck(L_18);
int32_t L_21 = VirtFuncInvoker2< int32_t, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, uint8_t* >::Invoke(8 /* System.Int32 System.Text.DecoderFallbackBuffer::InternalFallback(System.Byte[],System.Byte*) */, L_18, L_19, (uint8_t*)(uint8_t*)L_20);
__this->set_charCountResult_3(((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)L_21)));
}
IL_00a1:
{
return (bool)1;
}
}
// System.Int32 System.Text.Encoding_EncodingCharBuffer::get_Count()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EncodingCharBuffer_get_Count_mEFAE009306DEEDB4BBF82ECF9031E4C3361ADB4E (EncodingCharBuffer_t57DF2C468BB65F56788A37E2DDF56AA6BE536BD0 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_charCountResult_3();
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.Text.Encoding System.Text.EncodingHelper::get_UTF8Unmarked()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * EncodingHelper_get_UTF8Unmarked_mDC45343C3BA5B14AD998D36344DDFD0B7068E335 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EncodingHelper_get_UTF8Unmarked_mDC45343C3BA5B14AD998D36344DDFD0B7068E335_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject * 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);
{
IL2CPP_RUNTIME_CLASS_INIT(EncodingHelper_t1A078DCE9CF2B3578DA8CAFE03FB9FFABD00EBB3_il2cpp_TypeInfo_var);
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_0 = ((EncodingHelper_t1A078DCE9CF2B3578DA8CAFE03FB9FFABD00EBB3_StaticFields*)il2cpp_codegen_static_fields_for(EncodingHelper_t1A078DCE9CF2B3578DA8CAFE03FB9FFABD00EBB3_il2cpp_TypeInfo_var))->get_utf8EncodingWithoutMarkers_0();
il2cpp_codegen_memory_barrier();
if (L_0)
{
goto IL_0049;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(EncodingHelper_t1A078DCE9CF2B3578DA8CAFE03FB9FFABD00EBB3_il2cpp_TypeInfo_var);
RuntimeObject * L_1 = ((EncodingHelper_t1A078DCE9CF2B3578DA8CAFE03FB9FFABD00EBB3_StaticFields*)il2cpp_codegen_static_fields_for(EncodingHelper_t1A078DCE9CF2B3578DA8CAFE03FB9FFABD00EBB3_il2cpp_TypeInfo_var))->get_lockobj_1();
V_0 = L_1;
V_1 = (bool)0;
}
IL_0011:
try
{ // begin try (depth: 1)
{
RuntimeObject * L_2 = V_0;
Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(L_2, (bool*)(&V_1), /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(EncodingHelper_t1A078DCE9CF2B3578DA8CAFE03FB9FFABD00EBB3_il2cpp_TypeInfo_var);
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_3 = ((EncodingHelper_t1A078DCE9CF2B3578DA8CAFE03FB9FFABD00EBB3_StaticFields*)il2cpp_codegen_static_fields_for(EncodingHelper_t1A078DCE9CF2B3578DA8CAFE03FB9FFABD00EBB3_il2cpp_TypeInfo_var))->get_utf8EncodingWithoutMarkers_0();
il2cpp_codegen_memory_barrier();
if (L_3)
{
goto IL_003d;
}
}
IL_0022:
{
UTF8Encoding_t77ED103B749A387EF072C3429F48C91D12CA08DE * L_4 = (UTF8Encoding_t77ED103B749A387EF072C3429F48C91D12CA08DE *)il2cpp_codegen_object_new(UTF8Encoding_t77ED103B749A387EF072C3429F48C91D12CA08DE_il2cpp_TypeInfo_var);
UTF8Encoding__ctor_m026030C6C39449C25EC6FA364AA0A49FB3ADCD9E(L_4, (bool)0, (bool)0, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(EncodingHelper_t1A078DCE9CF2B3578DA8CAFE03FB9FFABD00EBB3_il2cpp_TypeInfo_var);
il2cpp_codegen_memory_barrier();
((EncodingHelper_t1A078DCE9CF2B3578DA8CAFE03FB9FFABD00EBB3_StaticFields*)il2cpp_codegen_static_fields_for(EncodingHelper_t1A078DCE9CF2B3578DA8CAFE03FB9FFABD00EBB3_il2cpp_TypeInfo_var))->set_utf8EncodingWithoutMarkers_0(L_4);
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_5 = ((EncodingHelper_t1A078DCE9CF2B3578DA8CAFE03FB9FFABD00EBB3_StaticFields*)il2cpp_codegen_static_fields_for(EncodingHelper_t1A078DCE9CF2B3578DA8CAFE03FB9FFABD00EBB3_il2cpp_TypeInfo_var))->get_utf8EncodingWithoutMarkers_0();
il2cpp_codegen_memory_barrier();
NullCheck(L_5);
Encoding_setReadOnly_mEB95513471A530FFD4F84AB63E4F794B5DCF174C_inline(L_5, (bool)1, /*hidden argument*/NULL);
}
IL_003d:
{
IL2CPP_LEAVE(0x49, FINALLY_003f);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_003f;
}
FINALLY_003f:
{ // begin finally (depth: 1)
{
bool L_6 = V_1;
if (!L_6)
{
goto IL_0048;
}
}
IL_0042:
{
RuntimeObject * L_7 = V_0;
Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_7, /*hidden argument*/NULL);
}
IL_0048:
{
IL2CPP_END_FINALLY(63)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(63)
{
IL2CPP_JUMP_TBL(0x49, IL_0049)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0049:
{
IL2CPP_RUNTIME_CLASS_INIT(EncodingHelper_t1A078DCE9CF2B3578DA8CAFE03FB9FFABD00EBB3_il2cpp_TypeInfo_var);
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_8 = ((EncodingHelper_t1A078DCE9CF2B3578DA8CAFE03FB9FFABD00EBB3_StaticFields*)il2cpp_codegen_static_fields_for(EncodingHelper_t1A078DCE9CF2B3578DA8CAFE03FB9FFABD00EBB3_il2cpp_TypeInfo_var))->get_utf8EncodingWithoutMarkers_0();
il2cpp_codegen_memory_barrier();
return L_8;
}
}
// System.String System.Text.EncodingHelper::InternalCodePage(System.Int32&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* EncodingHelper_InternalCodePage_m40D628F42FC6E0B635B21496F0BA71A00B009432 (int32_t* ___code_page0, const RuntimeMethod* method)
{
typedef String_t* (*EncodingHelper_InternalCodePage_m40D628F42FC6E0B635B21496F0BA71A00B009432_ftn) (int32_t*);
using namespace il2cpp::icalls;
return ((EncodingHelper_InternalCodePage_m40D628F42FC6E0B635B21496F0BA71A00B009432_ftn)mscorlib::System::Text::EncodingHelper::InternalCodePage) (___code_page0);
}
// System.Text.Encoding System.Text.EncodingHelper::GetDefaultEncoding()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * EncodingHelper_GetDefaultEncoding_m11A46F8629633F14B5C9787094E4A50862D6B5C1 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EncodingHelper_GetDefaultEncoding_m11A46F8629633F14B5C9787094E4A50862D6B5C1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * V_0 = NULL;
int32_t V_1 = 0;
String_t* V_2 = 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 = (Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 *)NULL;
V_1 = 1;
IL2CPP_RUNTIME_CLASS_INIT(EncodingHelper_t1A078DCE9CF2B3578DA8CAFE03FB9FFABD00EBB3_il2cpp_TypeInfo_var);
String_t* L_0 = EncodingHelper_InternalCodePage_m40D628F42FC6E0B635B21496F0BA71A00B009432((int32_t*)(&V_1), /*hidden argument*/NULL);
V_2 = L_0;
}
IL_000c:
try
{ // begin try (depth: 1)
{
int32_t L_1 = V_1;
if ((!(((uint32_t)L_1) == ((uint32_t)(-1)))))
{
goto IL_0019;
}
}
IL_0010:
{
String_t* L_2 = V_2;
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_3 = Encoding_GetEncoding_mA19D07F2E88F8FF58D42B73AFF5E22241607D54E(L_2, /*hidden argument*/NULL);
V_0 = L_3;
goto IL_0078;
}
IL_0019:
{
int32_t L_4 = V_1;
V_1 = ((int32_t)((int32_t)L_4&(int32_t)((int32_t)268435455)));
int32_t L_5 = V_1;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_5, (int32_t)1)))
{
case 0:
{
goto IL_0043;
}
case 1:
{
goto IL_004b;
}
case 2:
{
goto IL_0053;
}
case 3:
{
goto IL_005b;
}
case 4:
{
goto IL_0063;
}
case 5:
{
goto IL_006b;
}
}
}
IL_0041:
{
goto IL_0071;
}
IL_0043:
{
V_1 = ((int32_t)20127);
goto IL_0071;
}
IL_004b:
{
V_1 = ((int32_t)65007);
goto IL_0071;
}
IL_0053:
{
V_1 = ((int32_t)65001);
goto IL_0071;
}
IL_005b:
{
V_1 = ((int32_t)1200);
goto IL_0071;
}
IL_0063:
{
V_1 = ((int32_t)1201);
goto IL_0071;
}
IL_006b:
{
V_1 = ((int32_t)1252);
}
IL_0071:
{
int32_t L_6 = V_1;
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_7 = Encoding_GetEncoding_m0F51F30DFDD74D989E27C58C53FC82718CC51F68(L_6, /*hidden argument*/NULL);
V_0 = L_7;
}
IL_0078:
{
goto IL_008c;
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_007a;
if(il2cpp_codegen_class_is_assignable_from (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0083;
throw e;
}
CATCH_007a:
{ // begin catch(System.NotSupportedException)
IL2CPP_RUNTIME_CLASS_INIT(EncodingHelper_t1A078DCE9CF2B3578DA8CAFE03FB9FFABD00EBB3_il2cpp_TypeInfo_var);
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_8 = EncodingHelper_get_UTF8Unmarked_mDC45343C3BA5B14AD998D36344DDFD0B7068E335(/*hidden argument*/NULL);
V_0 = L_8;
goto IL_008c;
} // end catch (depth: 1)
CATCH_0083:
{ // begin catch(System.ArgumentException)
IL2CPP_RUNTIME_CLASS_INIT(EncodingHelper_t1A078DCE9CF2B3578DA8CAFE03FB9FFABD00EBB3_il2cpp_TypeInfo_var);
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_9 = EncodingHelper_get_UTF8Unmarked_mDC45343C3BA5B14AD998D36344DDFD0B7068E335(/*hidden argument*/NULL);
V_0 = L_9;
goto IL_008c;
} // end catch (depth: 1)
IL_008c:
{
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_10 = V_0;
return L_10;
}
}
// System.Object System.Text.EncodingHelper::InvokeI18N(System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * EncodingHelper_InvokeI18N_m638F0C7660999BE0390DD7E26CBC9603D139D2D6 (String_t* ___name0, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___args1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EncodingHelper_InvokeI18N_m638F0C7660999BE0390DD7E26CBC9603D139D2D6_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject * V_0 = NULL;
bool V_1 = false;
Type_t * V_2 = NULL;
RuntimeObject * V_3 = NULL;
RuntimeObject * V_4 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 17);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
IL2CPP_RUNTIME_CLASS_INIT(EncodingHelper_t1A078DCE9CF2B3578DA8CAFE03FB9FFABD00EBB3_il2cpp_TypeInfo_var);
RuntimeObject * L_0 = ((EncodingHelper_t1A078DCE9CF2B3578DA8CAFE03FB9FFABD00EBB3_StaticFields*)il2cpp_codegen_static_fields_for(EncodingHelper_t1A078DCE9CF2B3578DA8CAFE03FB9FFABD00EBB3_il2cpp_TypeInfo_var))->get_lockobj_1();
V_0 = L_0;
V_1 = (bool)0;
}
IL_0008:
try
{ // begin try (depth: 1)
{
RuntimeObject * L_1 = V_0;
Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(L_1, (bool*)(&V_1), /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(EncodingHelper_t1A078DCE9CF2B3578DA8CAFE03FB9FFABD00EBB3_il2cpp_TypeInfo_var);
bool L_2 = ((EncodingHelper_t1A078DCE9CF2B3578DA8CAFE03FB9FFABD00EBB3_StaticFields*)il2cpp_codegen_static_fields_for(EncodingHelper_t1A078DCE9CF2B3578DA8CAFE03FB9FFABD00EBB3_il2cpp_TypeInfo_var))->get_i18nDisabled_3();
if (!L_2)
{
goto IL_001f;
}
}
IL_0017:
{
V_4 = NULL;
IL2CPP_LEAVE(0x100, FINALLY_00f6);
}
IL_001f:
{
IL2CPP_RUNTIME_CLASS_INIT(EncodingHelper_t1A078DCE9CF2B3578DA8CAFE03FB9FFABD00EBB3_il2cpp_TypeInfo_var);
Assembly_t * L_3 = ((EncodingHelper_t1A078DCE9CF2B3578DA8CAFE03FB9FFABD00EBB3_StaticFields*)il2cpp_codegen_static_fields_for(EncodingHelper_t1A078DCE9CF2B3578DA8CAFE03FB9FFABD00EBB3_il2cpp_TypeInfo_var))->get_i18nAssembly_2();
bool L_4 = Assembly_op_Equality_m4B6A318CE4104781ABF30A2BBBCCCFB0FE342316(L_3, (Assembly_t *)NULL, /*hidden argument*/NULL);
if (!L_4)
{
goto IL_006c;
}
}
IL_002c:
try
{ // begin try (depth: 2)
try
{ // begin try (depth: 3)
Assembly_t * L_5 = Assembly_Load_m4640304E91781FC3D197CD014B0C2DCEAFCFFF55(_stringLiteralA01DFAA538E95225DAC97E697E012232DD8791A6, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(EncodingHelper_t1A078DCE9CF2B3578DA8CAFE03FB9FFABD00EBB3_il2cpp_TypeInfo_var);
((EncodingHelper_t1A078DCE9CF2B3578DA8CAFE03FB9FFABD00EBB3_StaticFields*)il2cpp_codegen_static_fields_for(EncodingHelper_t1A078DCE9CF2B3578DA8CAFE03FB9FFABD00EBB3_il2cpp_TypeInfo_var))->set_i18nAssembly_2(L_5);
goto IL_004c;
} // end try (depth: 3)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (NotImplementedException_t8AD6EBE5FEDB0AEBECEE0961CF73C35B372EFFA4_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_003d;
throw e;
}
CATCH_003d:
{ // begin catch(System.NotImplementedException)
IL2CPP_RUNTIME_CLASS_INIT(EncodingHelper_t1A078DCE9CF2B3578DA8CAFE03FB9FFABD00EBB3_il2cpp_TypeInfo_var);
((EncodingHelper_t1A078DCE9CF2B3578DA8CAFE03FB9FFABD00EBB3_StaticFields*)il2cpp_codegen_static_fields_for(EncodingHelper_t1A078DCE9CF2B3578DA8CAFE03FB9FFABD00EBB3_il2cpp_TypeInfo_var))->set_i18nDisabled_3((bool)1);
V_4 = NULL;
IL2CPP_LEAVE(0x100, FINALLY_00f6);
} // end catch (depth: 3)
IL_004c:
{
IL2CPP_RUNTIME_CLASS_INIT(EncodingHelper_t1A078DCE9CF2B3578DA8CAFE03FB9FFABD00EBB3_il2cpp_TypeInfo_var);
Assembly_t * L_6 = ((EncodingHelper_t1A078DCE9CF2B3578DA8CAFE03FB9FFABD00EBB3_StaticFields*)il2cpp_codegen_static_fields_for(EncodingHelper_t1A078DCE9CF2B3578DA8CAFE03FB9FFABD00EBB3_il2cpp_TypeInfo_var))->get_i18nAssembly_2();
bool L_7 = Assembly_op_Equality_m4B6A318CE4104781ABF30A2BBBCCCFB0FE342316(L_6, (Assembly_t *)NULL, /*hidden argument*/NULL);
if (!L_7)
{
goto IL_0061;
}
}
IL_0059:
{
V_4 = NULL;
IL2CPP_LEAVE(0x100, FINALLY_00f6);
}
IL_0061:
{
goto IL_006c;
}
} // end try (depth: 2)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0063;
throw e;
}
CATCH_0063:
{ // begin catch(System.SystemException)
V_4 = NULL;
IL2CPP_LEAVE(0x100, FINALLY_00f6);
} // end catch (depth: 2)
IL_006c:
{
}
IL_006d:
try
{ // begin try (depth: 2)
IL2CPP_RUNTIME_CLASS_INIT(EncodingHelper_t1A078DCE9CF2B3578DA8CAFE03FB9FFABD00EBB3_il2cpp_TypeInfo_var);
Assembly_t * L_8 = ((EncodingHelper_t1A078DCE9CF2B3578DA8CAFE03FB9FFABD00EBB3_StaticFields*)il2cpp_codegen_static_fields_for(EncodingHelper_t1A078DCE9CF2B3578DA8CAFE03FB9FFABD00EBB3_il2cpp_TypeInfo_var))->get_i18nAssembly_2();
NullCheck(L_8);
Type_t * L_9 = VirtFuncInvoker1< Type_t *, String_t* >::Invoke(14 /* System.Type System.Reflection.Assembly::GetType(System.String) */, L_8, _stringLiteral876176D7E90558A72F1CF2358EA1AC4C58845926);
V_2 = L_9;
goto IL_008b;
} // end try (depth: 2)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (NotImplementedException_t8AD6EBE5FEDB0AEBECEE0961CF73C35B372EFFA4_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_007f;
throw e;
}
CATCH_007f:
{ // begin catch(System.NotImplementedException)
IL2CPP_RUNTIME_CLASS_INIT(EncodingHelper_t1A078DCE9CF2B3578DA8CAFE03FB9FFABD00EBB3_il2cpp_TypeInfo_var);
((EncodingHelper_t1A078DCE9CF2B3578DA8CAFE03FB9FFABD00EBB3_StaticFields*)il2cpp_codegen_static_fields_for(EncodingHelper_t1A078DCE9CF2B3578DA8CAFE03FB9FFABD00EBB3_il2cpp_TypeInfo_var))->set_i18nDisabled_3((bool)1);
V_4 = NULL;
IL2CPP_LEAVE(0x100, FINALLY_00f6);
} // end catch (depth: 2)
IL_008b:
{
Type_t * L_10 = V_2;
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
bool L_11 = Type_op_Equality_m7040622C9E1037EFC73E1F0EDB1DD241282BE3D8(L_10, (Type_t *)NULL, /*hidden argument*/NULL);
if (!L_11)
{
goto IL_0099;
}
}
IL_0094:
{
V_4 = NULL;
IL2CPP_LEAVE(0x100, FINALLY_00f6);
}
IL_0099:
{
}
IL_009a:
try
{ // begin try (depth: 2)
{
Type_t * L_12 = V_2;
NullCheck(L_12);
RuntimeObject * L_13 = VirtFuncInvoker8< RuntimeObject *, String_t*, int32_t, Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 *, RuntimeObject *, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA*, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F *, StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* >::Invoke(22 /* System.Object System.Type::InvokeMember(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object,System.Object[],System.Reflection.ParameterModifier[],System.Globalization.CultureInfo,System.String[]) */, L_12, _stringLiteralA312766BFB2DE609B56DA005A8AC1274644F2CC9, ((int32_t)4120), (Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 *)NULL, NULL, (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)NULL, (ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA*)(ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA*)NULL, (CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F *)NULL, (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)NULL);
V_3 = L_13;
RuntimeObject * L_14 = V_3;
if (L_14)
{
goto IL_00b9;
}
}
IL_00b4:
{
V_4 = NULL;
IL2CPP_LEAVE(0x100, FINALLY_00f6);
}
IL_00b9:
{
goto IL_00d3;
}
} // end try (depth: 2)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (MissingMethodException_t7D33DFD3009E4F19BE4DD0967F04D3878F348498_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_00bb;
if(il2cpp_codegen_class_is_assignable_from (SecurityException_tBB116BA16A419AB19A4F7DEEF43A3FC2A638E8D5_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_00c1;
if(il2cpp_codegen_class_is_assignable_from (NotImplementedException_t8AD6EBE5FEDB0AEBECEE0961CF73C35B372EFFA4_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_00c7;
throw e;
}
CATCH_00bb:
{ // begin catch(System.MissingMethodException)
V_4 = NULL;
IL2CPP_LEAVE(0x100, FINALLY_00f6);
} // end catch (depth: 2)
CATCH_00c1:
{ // begin catch(System.Security.SecurityException)
V_4 = NULL;
IL2CPP_LEAVE(0x100, FINALLY_00f6);
} // end catch (depth: 2)
CATCH_00c7:
{ // begin catch(System.NotImplementedException)
IL2CPP_RUNTIME_CLASS_INIT(EncodingHelper_t1A078DCE9CF2B3578DA8CAFE03FB9FFABD00EBB3_il2cpp_TypeInfo_var);
((EncodingHelper_t1A078DCE9CF2B3578DA8CAFE03FB9FFABD00EBB3_StaticFields*)il2cpp_codegen_static_fields_for(EncodingHelper_t1A078DCE9CF2B3578DA8CAFE03FB9FFABD00EBB3_il2cpp_TypeInfo_var))->set_i18nDisabled_3((bool)1);
V_4 = NULL;
IL2CPP_LEAVE(0x100, FINALLY_00f6);
} // end catch (depth: 2)
IL_00d3:
{
}
IL_00d4:
try
{ // begin try (depth: 2)
Type_t * L_15 = V_2;
String_t* L_16 = ___name0;
RuntimeObject * L_17 = V_3;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_18 = ___args1;
NullCheck(L_15);
RuntimeObject * L_19 = VirtFuncInvoker8< RuntimeObject *, String_t*, int32_t, Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 *, RuntimeObject *, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA*, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F *, StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* >::Invoke(22 /* System.Object System.Type::InvokeMember(System.String,System.Reflection.BindingFlags,System.Reflection.Binder,System.Object,System.Object[],System.Reflection.ParameterModifier[],System.Globalization.CultureInfo,System.String[]) */, L_15, L_16, ((int32_t)276), (Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 *)NULL, L_17, L_18, (ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA*)(ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA*)NULL, (CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F *)NULL, (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)NULL);
V_4 = L_19;
IL2CPP_LEAVE(0x100, FINALLY_00f6);
} // end try (depth: 2)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (MissingMethodException_t7D33DFD3009E4F19BE4DD0967F04D3878F348498_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_00ea;
if(il2cpp_codegen_class_is_assignable_from (SecurityException_tBB116BA16A419AB19A4F7DEEF43A3FC2A638E8D5_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_00f0;
throw e;
}
CATCH_00ea:
{ // begin catch(System.MissingMethodException)
V_4 = NULL;
IL2CPP_LEAVE(0x100, FINALLY_00f6);
} // end catch (depth: 2)
CATCH_00f0:
{ // begin catch(System.Security.SecurityException)
V_4 = NULL;
IL2CPP_LEAVE(0x100, FINALLY_00f6);
} // end catch (depth: 2)
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_00f6;
}
FINALLY_00f6:
{ // begin finally (depth: 1)
{
bool L_20 = V_1;
if (!L_20)
{
goto IL_00ff;
}
}
IL_00f9:
{
RuntimeObject * L_21 = V_0;
Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_21, /*hidden argument*/NULL);
}
IL_00ff:
{
IL2CPP_END_FINALLY(246)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(246)
{
IL2CPP_JUMP_TBL(0x100, IL_0100)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0100:
{
RuntimeObject * L_22 = V_4;
return L_22;
}
}
// System.Void System.Text.EncodingHelper::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EncodingHelper__cctor_m3A7B50759A632B7B6EF4F4B20E83B989249EEA9B (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EncodingHelper__cctor_m3A7B50759A632B7B6EF4F4B20E83B989249EEA9B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = (RuntimeObject *)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(L_0, /*hidden argument*/NULL);
((EncodingHelper_t1A078DCE9CF2B3578DA8CAFE03FB9FFABD00EBB3_StaticFields*)il2cpp_codegen_static_fields_for(EncodingHelper_t1A078DCE9CF2B3578DA8CAFE03FB9FFABD00EBB3_il2cpp_TypeInfo_var))->set_lockobj_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
// System.Void System.Text.EncodingNLS::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EncodingNLS__ctor_mBB608BD3E5EEC3B10BE1D10B20EF40D4923A52D6 (EncodingNLS_tED4EB523BC03EF4F815875D8A722B294A72F40E7 * __this, int32_t ___codePage0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___codePage0;
Encoding__ctor_m25E853E4AF252CA29A3295065E83BA2C7B1416D5(__this, L_0, /*hidden argument*/NULL);
return;
}
}
// System.Int32 System.Text.EncodingNLS::GetByteCount(System.Char[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EncodingNLS_GetByteCount_m3F4C3DB58C5879011230889556AEB83DC238827D (EncodingNLS_tED4EB523BC03EF4F815875D8A722B294A72F40E7 * __this, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___chars0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EncodingNLS_GetByteCount_m3F4C3DB58C5879011230889556AEB83DC238827D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Il2CppChar* V_0 = NULL;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* V_1 = NULL;
String_t* G_B7_0 = NULL;
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_0 = ___chars0;
if (L_0)
{
goto IL_0018;
}
}
{
String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral867AD8C2544ED5D38EC2B4986A28AA22B284F710, /*hidden argument*/NULL);
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m9EA692D49986AEBAC433CE3381331146109AE20F(L_2, _stringLiteral76A91D6CE24FCC03EC2ECBB19E3012B5D5D40E2B, L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, EncodingNLS_GetByteCount_m3F4C3DB58C5879011230889556AEB83DC238827D_RuntimeMethod_var);
}
IL_0018:
{
int32_t L_3 = ___index1;
if ((((int32_t)L_3) < ((int32_t)0)))
{
goto IL_0020;
}
}
{
int32_t L_4 = ___count2;
if ((((int32_t)L_4) >= ((int32_t)0)))
{
goto IL_0040;
}
}
IL_0020:
{
int32_t L_5 = ___index1;
if ((((int32_t)L_5) < ((int32_t)0)))
{
goto IL_002b;
}
}
{
G_B7_0 = _stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556;
goto IL_0030;
}
IL_002b:
{
G_B7_0 = _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346;
}
IL_0030:
{
String_t* L_6 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_7 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_7, G_B7_0, L_6, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, EncodingNLS_GetByteCount_m3F4C3DB58C5879011230889556AEB83DC238827D_RuntimeMethod_var);
}
IL_0040:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_8 = ___chars0;
NullCheck(L_8);
int32_t L_9 = ___index1;
int32_t L_10 = ___count2;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_8)->max_length)))), (int32_t)L_9))) >= ((int32_t)L_10)))
{
goto IL_005d;
}
}
{
String_t* L_11 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral58DB15989CC5229A62FDAD47E614D05B051584E7, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_12 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_12, _stringLiteral76A91D6CE24FCC03EC2ECBB19E3012B5D5D40E2B, L_11, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, EncodingNLS_GetByteCount_m3F4C3DB58C5879011230889556AEB83DC238827D_RuntimeMethod_var);
}
IL_005d:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_13 = ___chars0;
NullCheck(L_13);
if ((((RuntimeArray*)L_13)->max_length))
{
goto IL_0063;
}
}
{
return 0;
}
IL_0063:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_14 = ___chars0;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_15 = L_14;
V_1 = L_15;
if (!L_15)
{
goto IL_006d;
}
}
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_16 = V_1;
NullCheck(L_16);
if ((((int32_t)((int32_t)(((RuntimeArray*)L_16)->max_length)))))
{
goto IL_0072;
}
}
IL_006d:
{
V_0 = (Il2CppChar*)(((uintptr_t)0));
goto IL_007b;
}
IL_0072:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_17 = V_1;
NullCheck(L_17);
V_0 = (Il2CppChar*)(((uintptr_t)((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(0)))));
}
IL_007b:
{
Il2CppChar* L_18 = V_0;
int32_t L_19 = ___index1;
int32_t L_20 = ___count2;
int32_t L_21 = VirtFuncInvoker3< int32_t, Il2CppChar*, int32_t, EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * >::Invoke(12 /* System.Int32 System.Text.Encoding::GetByteCount(System.Char*,System.Int32,System.Text.EncoderNLS) */, __this, (Il2CppChar*)(Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_18, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_19)), (int32_t)2)))), L_20, (EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 *)NULL);
return L_21;
}
}
// System.Int32 System.Text.EncodingNLS::GetByteCount(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EncodingNLS_GetByteCount_m2C40854638120514BDE434F02FD3F8A8424DBB6C (EncodingNLS_tED4EB523BC03EF4F815875D8A722B294A72F40E7 * __this, String_t* ___s0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EncodingNLS_GetByteCount_m2C40854638120514BDE434F02FD3F8A8424DBB6C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Il2CppChar* V_0 = NULL;
String_t* V_1 = NULL;
{
String_t* L_0 = ___s0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteralA0F1490A20D0211C997B44BC357E1972DEAB8AE3, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, EncodingNLS_GetByteCount_m2C40854638120514BDE434F02FD3F8A8424DBB6C_RuntimeMethod_var);
}
IL_000e:
{
String_t* L_2 = ___s0;
V_1 = L_2;
String_t* L_3 = V_1;
V_0 = (Il2CppChar*)(((uintptr_t)L_3));
Il2CppChar* L_4 = V_0;
if (!L_4)
{
goto IL_001e;
}
}
{
Il2CppChar* L_5 = V_0;
int32_t L_6 = RuntimeHelpers_get_OffsetToStringData_mF3B79A906181F1A2734590DA161E2AF183853F8B(/*hidden argument*/NULL);
V_0 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_5, (int32_t)L_6));
}
IL_001e:
{
Il2CppChar* L_7 = V_0;
String_t* L_8 = ___s0;
NullCheck(L_8);
int32_t L_9 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_8, /*hidden argument*/NULL);
int32_t L_10 = VirtFuncInvoker3< int32_t, Il2CppChar*, int32_t, EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * >::Invoke(12 /* System.Int32 System.Text.Encoding::GetByteCount(System.Char*,System.Int32,System.Text.EncoderNLS) */, __this, (Il2CppChar*)(Il2CppChar*)L_7, L_9, (EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 *)NULL);
return L_10;
}
}
// System.Int32 System.Text.EncodingNLS::GetByteCount(System.Char*,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EncodingNLS_GetByteCount_m14E7B2206D4191AF9A3DB447F41C16D20FDF3B52 (EncodingNLS_tED4EB523BC03EF4F815875D8A722B294A72F40E7 * __this, Il2CppChar* ___chars0, int32_t ___count1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EncodingNLS_GetByteCount_m14E7B2206D4191AF9A3DB447F41C16D20FDF3B52_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Il2CppChar* L_0 = ___chars0;
if ((!(((uintptr_t)L_0) == ((uintptr_t)(((uintptr_t)0))))))
{
goto IL_001a;
}
}
{
String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral867AD8C2544ED5D38EC2B4986A28AA22B284F710, /*hidden argument*/NULL);
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m9EA692D49986AEBAC433CE3381331146109AE20F(L_2, _stringLiteral76A91D6CE24FCC03EC2ECBB19E3012B5D5D40E2B, L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, EncodingNLS_GetByteCount_m14E7B2206D4191AF9A3DB447F41C16D20FDF3B52_RuntimeMethod_var);
}
IL_001a:
{
int32_t L_3 = ___count1;
if ((((int32_t)L_3) >= ((int32_t)0)))
{
goto IL_0033;
}
}
{
String_t* L_4 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, _stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556, L_4, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, EncodingNLS_GetByteCount_m14E7B2206D4191AF9A3DB447F41C16D20FDF3B52_RuntimeMethod_var);
}
IL_0033:
{
Il2CppChar* L_6 = ___chars0;
int32_t L_7 = ___count1;
int32_t L_8 = VirtFuncInvoker3< int32_t, Il2CppChar*, int32_t, EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * >::Invoke(12 /* System.Int32 System.Text.Encoding::GetByteCount(System.Char*,System.Int32,System.Text.EncoderNLS) */, __this, (Il2CppChar*)(Il2CppChar*)L_6, L_7, (EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 *)NULL);
return L_8;
}
}
// System.Int32 System.Text.EncodingNLS::GetBytes(System.String,System.Int32,System.Int32,System.Byte[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EncodingNLS_GetBytes_mD8770C7A9DF45CD8269D00180D93B86047DF79C9 (EncodingNLS_tED4EB523BC03EF4F815875D8A722B294A72F40E7 * __this, String_t* ___s0, int32_t ___charIndex1, int32_t ___charCount2, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___bytes3, int32_t ___byteIndex4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EncodingNLS_GetBytes_mD8770C7A9DF45CD8269D00180D93B86047DF79C9_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
Il2CppChar* V_1 = NULL;
String_t* V_2 = NULL;
uint8_t* V_3 = NULL;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_4 = NULL;
String_t* G_B5_0 = NULL;
String_t* G_B11_0 = NULL;
{
String_t* L_0 = ___s0;
if (!L_0)
{
goto IL_0007;
}
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = ___bytes3;
if (L_1)
{
goto IL_0026;
}
}
IL_0007:
{
String_t* L_2 = ___s0;
if (!L_2)
{
goto IL_0011;
}
}
{
G_B5_0 = _stringLiteralDAF529A73101C2BE626B99FC6938163E7A27620B;
goto IL_0016;
}
IL_0011:
{
G_B5_0 = _stringLiteralA0F1490A20D0211C997B44BC357E1972DEAB8AE3;
}
IL_0016:
{
String_t* L_3 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral867AD8C2544ED5D38EC2B4986A28AA22B284F710, /*hidden argument*/NULL);
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_4 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m9EA692D49986AEBAC433CE3381331146109AE20F(L_4, G_B5_0, L_3, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, EncodingNLS_GetBytes_mD8770C7A9DF45CD8269D00180D93B86047DF79C9_RuntimeMethod_var);
}
IL_0026:
{
int32_t L_5 = ___charIndex1;
if ((((int32_t)L_5) < ((int32_t)0)))
{
goto IL_002e;
}
}
{
int32_t L_6 = ___charCount2;
if ((((int32_t)L_6) >= ((int32_t)0)))
{
goto IL_004e;
}
}
IL_002e:
{
int32_t L_7 = ___charIndex1;
if ((((int32_t)L_7) < ((int32_t)0)))
{
goto IL_0039;
}
}
{
G_B11_0 = _stringLiteralAB1A79FB2CBABAF9BE681B601509BD40528C11D8;
goto IL_003e;
}
IL_0039:
{
G_B11_0 = _stringLiteral74EBCD92BCF0C393F47C1A4EEA9851BB06BCEF0C;
}
IL_003e:
{
String_t* L_8 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_9 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_9, G_B11_0, L_8, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, EncodingNLS_GetBytes_mD8770C7A9DF45CD8269D00180D93B86047DF79C9_RuntimeMethod_var);
}
IL_004e:
{
String_t* L_10 = ___s0;
NullCheck(L_10);
int32_t L_11 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_10, /*hidden argument*/NULL);
int32_t L_12 = ___charIndex1;
int32_t L_13 = ___charCount2;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_11, (int32_t)L_12))) >= ((int32_t)L_13)))
{
goto IL_006e;
}
}
{
String_t* L_14 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral62836465B297BA5E6273FE13E6F591F548238688, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_15 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_15, _stringLiteralA0F1490A20D0211C997B44BC357E1972DEAB8AE3, L_14, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, EncodingNLS_GetBytes_mD8770C7A9DF45CD8269D00180D93B86047DF79C9_RuntimeMethod_var);
}
IL_006e:
{
int32_t L_16 = ___byteIndex4;
if ((((int32_t)L_16) < ((int32_t)0)))
{
goto IL_007b;
}
}
{
int32_t L_17 = ___byteIndex4;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_18 = ___bytes3;
NullCheck(L_18);
if ((((int32_t)L_17) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_18)->max_length)))))))
{
goto IL_0090;
}
}
IL_007b:
{
String_t* L_19 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_20 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_20, _stringLiteralB95EFA8990E2BB5BCCEF52DF47A31FC66F723D4B, L_19, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_20, EncodingNLS_GetBytes_mD8770C7A9DF45CD8269D00180D93B86047DF79C9_RuntimeMethod_var);
}
IL_0090:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_21 = ___bytes3;
NullCheck(L_21);
int32_t L_22 = ___byteIndex4;
V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_21)->max_length)))), (int32_t)L_22));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_23 = ___bytes3;
NullCheck(L_23);
if ((((RuntimeArray*)L_23)->max_length))
{
goto IL_00a5;
}
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_24 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)1);
___bytes3 = L_24;
}
IL_00a5:
{
String_t* L_25 = ___s0;
V_2 = L_25;
String_t* L_26 = V_2;
V_1 = (Il2CppChar*)(((uintptr_t)L_26));
Il2CppChar* L_27 = V_1;
if (!L_27)
{
goto IL_00b5;
}
}
{
Il2CppChar* L_28 = V_1;
int32_t L_29 = RuntimeHelpers_get_OffsetToStringData_mF3B79A906181F1A2734590DA161E2AF183853F8B(/*hidden argument*/NULL);
V_1 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_28, (int32_t)L_29));
}
IL_00b5:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_30 = ___bytes3;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_31 = L_30;
V_4 = L_31;
if (!L_31)
{
goto IL_00c2;
}
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_32 = V_4;
NullCheck(L_32);
if ((((int32_t)((int32_t)(((RuntimeArray*)L_32)->max_length)))))
{
goto IL_00c7;
}
}
IL_00c2:
{
V_3 = (uint8_t*)(((uintptr_t)0));
goto IL_00d1;
}
IL_00c7:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_33 = V_4;
NullCheck(L_33);
V_3 = (uint8_t*)(((uintptr_t)((L_33)->GetAddressAt(static_cast<il2cpp_array_size_t>(0)))));
}
IL_00d1:
{
Il2CppChar* L_34 = V_1;
int32_t L_35 = ___charIndex1;
int32_t L_36 = ___charCount2;
uint8_t* L_37 = V_3;
int32_t L_38 = ___byteIndex4;
int32_t L_39 = V_0;
int32_t L_40 = VirtFuncInvoker5< int32_t, Il2CppChar*, int32_t, uint8_t*, int32_t, EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * >::Invoke(16 /* System.Int32 System.Text.Encoding::GetBytes(System.Char*,System.Int32,System.Byte*,System.Int32,System.Text.EncoderNLS) */, __this, (Il2CppChar*)(Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_34, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_35)), (int32_t)2)))), L_36, (uint8_t*)(uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_37, (int32_t)L_38)), L_39, (EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 *)NULL);
return L_40;
}
}
// System.Int32 System.Text.EncodingNLS::GetBytes(System.Char[],System.Int32,System.Int32,System.Byte[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EncodingNLS_GetBytes_m86EE2D6786300F29FA1E9D2CE15C842D9ACD8C6E (EncodingNLS_tED4EB523BC03EF4F815875D8A722B294A72F40E7 * __this, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___chars0, int32_t ___charIndex1, int32_t ___charCount2, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___bytes3, int32_t ___byteIndex4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EncodingNLS_GetBytes_m86EE2D6786300F29FA1E9D2CE15C842D9ACD8C6E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
Il2CppChar* V_1 = NULL;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* V_2 = NULL;
uint8_t* V_3 = NULL;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_4 = NULL;
String_t* G_B5_0 = NULL;
String_t* G_B11_0 = NULL;
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_0 = ___chars0;
if (!L_0)
{
goto IL_0007;
}
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = ___bytes3;
if (L_1)
{
goto IL_0026;
}
}
IL_0007:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_2 = ___chars0;
if (!L_2)
{
goto IL_0011;
}
}
{
G_B5_0 = _stringLiteralDAF529A73101C2BE626B99FC6938163E7A27620B;
goto IL_0016;
}
IL_0011:
{
G_B5_0 = _stringLiteral76A91D6CE24FCC03EC2ECBB19E3012B5D5D40E2B;
}
IL_0016:
{
String_t* L_3 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral867AD8C2544ED5D38EC2B4986A28AA22B284F710, /*hidden argument*/NULL);
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_4 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m9EA692D49986AEBAC433CE3381331146109AE20F(L_4, G_B5_0, L_3, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, EncodingNLS_GetBytes_m86EE2D6786300F29FA1E9D2CE15C842D9ACD8C6E_RuntimeMethod_var);
}
IL_0026:
{
int32_t L_5 = ___charIndex1;
if ((((int32_t)L_5) < ((int32_t)0)))
{
goto IL_002e;
}
}
{
int32_t L_6 = ___charCount2;
if ((((int32_t)L_6) >= ((int32_t)0)))
{
goto IL_004e;
}
}
IL_002e:
{
int32_t L_7 = ___charIndex1;
if ((((int32_t)L_7) < ((int32_t)0)))
{
goto IL_0039;
}
}
{
G_B11_0 = _stringLiteralAB1A79FB2CBABAF9BE681B601509BD40528C11D8;
goto IL_003e;
}
IL_0039:
{
G_B11_0 = _stringLiteral74EBCD92BCF0C393F47C1A4EEA9851BB06BCEF0C;
}
IL_003e:
{
String_t* L_8 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_9 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_9, G_B11_0, L_8, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, EncodingNLS_GetBytes_m86EE2D6786300F29FA1E9D2CE15C842D9ACD8C6E_RuntimeMethod_var);
}
IL_004e:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_10 = ___chars0;
NullCheck(L_10);
int32_t L_11 = ___charIndex1;
int32_t L_12 = ___charCount2;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_10)->max_length)))), (int32_t)L_11))) >= ((int32_t)L_12)))
{
goto IL_006b;
}
}
{
String_t* L_13 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral58DB15989CC5229A62FDAD47E614D05B051584E7, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_14 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_14, _stringLiteral76A91D6CE24FCC03EC2ECBB19E3012B5D5D40E2B, L_13, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_14, EncodingNLS_GetBytes_m86EE2D6786300F29FA1E9D2CE15C842D9ACD8C6E_RuntimeMethod_var);
}
IL_006b:
{
int32_t L_15 = ___byteIndex4;
if ((((int32_t)L_15) < ((int32_t)0)))
{
goto IL_0078;
}
}
{
int32_t L_16 = ___byteIndex4;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_17 = ___bytes3;
NullCheck(L_17);
if ((((int32_t)L_16) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_17)->max_length)))))))
{
goto IL_008d;
}
}
IL_0078:
{
String_t* L_18 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_19 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_19, _stringLiteralB95EFA8990E2BB5BCCEF52DF47A31FC66F723D4B, L_18, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_19, EncodingNLS_GetBytes_m86EE2D6786300F29FA1E9D2CE15C842D9ACD8C6E_RuntimeMethod_var);
}
IL_008d:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_20 = ___chars0;
NullCheck(L_20);
if ((((RuntimeArray*)L_20)->max_length))
{
goto IL_0093;
}
}
{
return 0;
}
IL_0093:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_21 = ___bytes3;
NullCheck(L_21);
int32_t L_22 = ___byteIndex4;
V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_21)->max_length)))), (int32_t)L_22));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_23 = ___bytes3;
NullCheck(L_23);
if ((((RuntimeArray*)L_23)->max_length))
{
goto IL_00a8;
}
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_24 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)1);
___bytes3 = L_24;
}
IL_00a8:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_25 = ___chars0;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_26 = L_25;
V_2 = L_26;
if (!L_26)
{
goto IL_00b2;
}
}
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_27 = V_2;
NullCheck(L_27);
if ((((int32_t)((int32_t)(((RuntimeArray*)L_27)->max_length)))))
{
goto IL_00b7;
}
}
IL_00b2:
{
V_1 = (Il2CppChar*)(((uintptr_t)0));
goto IL_00c0;
}
IL_00b7:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_28 = V_2;
NullCheck(L_28);
V_1 = (Il2CppChar*)(((uintptr_t)((L_28)->GetAddressAt(static_cast<il2cpp_array_size_t>(0)))));
}
IL_00c0:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_29 = ___bytes3;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_30 = L_29;
V_4 = L_30;
if (!L_30)
{
goto IL_00cd;
}
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_31 = V_4;
NullCheck(L_31);
if ((((int32_t)((int32_t)(((RuntimeArray*)L_31)->max_length)))))
{
goto IL_00d2;
}
}
IL_00cd:
{
V_3 = (uint8_t*)(((uintptr_t)0));
goto IL_00dc;
}
IL_00d2:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_32 = V_4;
NullCheck(L_32);
V_3 = (uint8_t*)(((uintptr_t)((L_32)->GetAddressAt(static_cast<il2cpp_array_size_t>(0)))));
}
IL_00dc:
{
Il2CppChar* L_33 = V_1;
int32_t L_34 = ___charIndex1;
int32_t L_35 = ___charCount2;
uint8_t* L_36 = V_3;
int32_t L_37 = ___byteIndex4;
int32_t L_38 = V_0;
int32_t L_39 = VirtFuncInvoker5< int32_t, Il2CppChar*, int32_t, uint8_t*, int32_t, EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * >::Invoke(16 /* System.Int32 System.Text.Encoding::GetBytes(System.Char*,System.Int32,System.Byte*,System.Int32,System.Text.EncoderNLS) */, __this, (Il2CppChar*)(Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_33, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_34)), (int32_t)2)))), L_35, (uint8_t*)(uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_36, (int32_t)L_37)), L_38, (EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 *)NULL);
return L_39;
}
}
// System.Int32 System.Text.EncodingNLS::GetBytes(System.Char*,System.Int32,System.Byte*,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EncodingNLS_GetBytes_mD31039E4E15BB0A59DE9FD784856BC9045170D6C (EncodingNLS_tED4EB523BC03EF4F815875D8A722B294A72F40E7 * __this, Il2CppChar* ___chars0, int32_t ___charCount1, uint8_t* ___bytes2, int32_t ___byteCount3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EncodingNLS_GetBytes_mD31039E4E15BB0A59DE9FD784856BC9045170D6C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* G_B5_0 = NULL;
String_t* G_B11_0 = NULL;
{
uint8_t* L_0 = ___bytes2;
if ((((intptr_t)L_0) == ((intptr_t)(((uintptr_t)0)))))
{
goto IL_000a;
}
}
{
Il2CppChar* L_1 = ___chars0;
if ((!(((uintptr_t)L_1) == ((uintptr_t)(((uintptr_t)0))))))
{
goto IL_002b;
}
}
IL_000a:
{
uint8_t* L_2 = ___bytes2;
if ((((intptr_t)L_2) == ((intptr_t)(((uintptr_t)0)))))
{
goto IL_0016;
}
}
{
G_B5_0 = _stringLiteral76A91D6CE24FCC03EC2ECBB19E3012B5D5D40E2B;
goto IL_001b;
}
IL_0016:
{
G_B5_0 = _stringLiteralDAF529A73101C2BE626B99FC6938163E7A27620B;
}
IL_001b:
{
String_t* L_3 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral867AD8C2544ED5D38EC2B4986A28AA22B284F710, /*hidden argument*/NULL);
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_4 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m9EA692D49986AEBAC433CE3381331146109AE20F(L_4, G_B5_0, L_3, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, EncodingNLS_GetBytes_mD31039E4E15BB0A59DE9FD784856BC9045170D6C_RuntimeMethod_var);
}
IL_002b:
{
int32_t L_5 = ___charCount1;
if ((((int32_t)L_5) < ((int32_t)0)))
{
goto IL_0034;
}
}
{
int32_t L_6 = ___byteCount3;
if ((((int32_t)L_6) >= ((int32_t)0)))
{
goto IL_0054;
}
}
IL_0034:
{
int32_t L_7 = ___charCount1;
if ((((int32_t)L_7) < ((int32_t)0)))
{
goto IL_003f;
}
}
{
G_B11_0 = _stringLiteral278316CA5ED0FC3A0A92ED4DC8DA6CA9FB56DEBA;
goto IL_0044;
}
IL_003f:
{
G_B11_0 = _stringLiteralAB1A79FB2CBABAF9BE681B601509BD40528C11D8;
}
IL_0044:
{
String_t* L_8 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_9 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_9, G_B11_0, L_8, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, EncodingNLS_GetBytes_mD31039E4E15BB0A59DE9FD784856BC9045170D6C_RuntimeMethod_var);
}
IL_0054:
{
Il2CppChar* L_10 = ___chars0;
int32_t L_11 = ___charCount1;
uint8_t* L_12 = ___bytes2;
int32_t L_13 = ___byteCount3;
int32_t L_14 = VirtFuncInvoker5< int32_t, Il2CppChar*, int32_t, uint8_t*, int32_t, EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * >::Invoke(16 /* System.Int32 System.Text.Encoding::GetBytes(System.Char*,System.Int32,System.Byte*,System.Int32,System.Text.EncoderNLS) */, __this, (Il2CppChar*)(Il2CppChar*)L_10, L_11, (uint8_t*)(uint8_t*)L_12, L_13, (EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 *)NULL);
return L_14;
}
}
// System.Int32 System.Text.EncodingNLS::GetCharCount(System.Byte[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EncodingNLS_GetCharCount_m60638984A90F04119296B224F269424D1114DDCD (EncodingNLS_tED4EB523BC03EF4F815875D8A722B294A72F40E7 * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___bytes0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EncodingNLS_GetCharCount_m60638984A90F04119296B224F269424D1114DDCD_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
uint8_t* V_0 = NULL;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_1 = NULL;
String_t* G_B7_0 = NULL;
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___bytes0;
if (L_0)
{
goto IL_0018;
}
}
{
String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral867AD8C2544ED5D38EC2B4986A28AA22B284F710, /*hidden argument*/NULL);
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m9EA692D49986AEBAC433CE3381331146109AE20F(L_2, _stringLiteralDAF529A73101C2BE626B99FC6938163E7A27620B, L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, EncodingNLS_GetCharCount_m60638984A90F04119296B224F269424D1114DDCD_RuntimeMethod_var);
}
IL_0018:
{
int32_t L_3 = ___index1;
if ((((int32_t)L_3) < ((int32_t)0)))
{
goto IL_0020;
}
}
{
int32_t L_4 = ___count2;
if ((((int32_t)L_4) >= ((int32_t)0)))
{
goto IL_0040;
}
}
IL_0020:
{
int32_t L_5 = ___index1;
if ((((int32_t)L_5) < ((int32_t)0)))
{
goto IL_002b;
}
}
{
G_B7_0 = _stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556;
goto IL_0030;
}
IL_002b:
{
G_B7_0 = _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346;
}
IL_0030:
{
String_t* L_6 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_7 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_7, G_B7_0, L_6, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, EncodingNLS_GetCharCount_m60638984A90F04119296B224F269424D1114DDCD_RuntimeMethod_var);
}
IL_0040:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_8 = ___bytes0;
NullCheck(L_8);
int32_t L_9 = ___index1;
int32_t L_10 = ___count2;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_8)->max_length)))), (int32_t)L_9))) >= ((int32_t)L_10)))
{
goto IL_005d;
}
}
{
String_t* L_11 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral58DB15989CC5229A62FDAD47E614D05B051584E7, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_12 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_12, _stringLiteralDAF529A73101C2BE626B99FC6938163E7A27620B, L_11, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, EncodingNLS_GetCharCount_m60638984A90F04119296B224F269424D1114DDCD_RuntimeMethod_var);
}
IL_005d:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_13 = ___bytes0;
NullCheck(L_13);
if ((((RuntimeArray*)L_13)->max_length))
{
goto IL_0063;
}
}
{
return 0;
}
IL_0063:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_14 = ___bytes0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_15 = L_14;
V_1 = L_15;
if (!L_15)
{
goto IL_006d;
}
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_16 = V_1;
NullCheck(L_16);
if ((((int32_t)((int32_t)(((RuntimeArray*)L_16)->max_length)))))
{
goto IL_0072;
}
}
IL_006d:
{
V_0 = (uint8_t*)(((uintptr_t)0));
goto IL_007b;
}
IL_0072:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_17 = V_1;
NullCheck(L_17);
V_0 = (uint8_t*)(((uintptr_t)((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(0)))));
}
IL_007b:
{
uint8_t* L_18 = V_0;
int32_t L_19 = ___index1;
int32_t L_20 = ___count2;
int32_t L_21 = VirtFuncInvoker3< int32_t, uint8_t*, int32_t, DecoderNLS_tCDF0A810A2E2B738728A98BBB49F792E66BDF6CD * >::Invoke(20 /* System.Int32 System.Text.Encoding::GetCharCount(System.Byte*,System.Int32,System.Text.DecoderNLS) */, __this, (uint8_t*)(uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_18, (int32_t)L_19)), L_20, (DecoderNLS_tCDF0A810A2E2B738728A98BBB49F792E66BDF6CD *)NULL);
return L_21;
}
}
// System.Int32 System.Text.EncodingNLS::GetCharCount(System.Byte*,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EncodingNLS_GetCharCount_mBFD4D1CF13235898AE19B2DBD93D025055DF3F90 (EncodingNLS_tED4EB523BC03EF4F815875D8A722B294A72F40E7 * __this, uint8_t* ___bytes0, int32_t ___count1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EncodingNLS_GetCharCount_mBFD4D1CF13235898AE19B2DBD93D025055DF3F90_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
uint8_t* L_0 = ___bytes0;
if ((!(((uintptr_t)L_0) == ((uintptr_t)(((uintptr_t)0))))))
{
goto IL_001a;
}
}
{
String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral867AD8C2544ED5D38EC2B4986A28AA22B284F710, /*hidden argument*/NULL);
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m9EA692D49986AEBAC433CE3381331146109AE20F(L_2, _stringLiteralDAF529A73101C2BE626B99FC6938163E7A27620B, L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, EncodingNLS_GetCharCount_mBFD4D1CF13235898AE19B2DBD93D025055DF3F90_RuntimeMethod_var);
}
IL_001a:
{
int32_t L_3 = ___count1;
if ((((int32_t)L_3) >= ((int32_t)0)))
{
goto IL_0033;
}
}
{
String_t* L_4 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, _stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556, L_4, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, EncodingNLS_GetCharCount_mBFD4D1CF13235898AE19B2DBD93D025055DF3F90_RuntimeMethod_var);
}
IL_0033:
{
uint8_t* L_6 = ___bytes0;
int32_t L_7 = ___count1;
int32_t L_8 = VirtFuncInvoker3< int32_t, uint8_t*, int32_t, DecoderNLS_tCDF0A810A2E2B738728A98BBB49F792E66BDF6CD * >::Invoke(20 /* System.Int32 System.Text.Encoding::GetCharCount(System.Byte*,System.Int32,System.Text.DecoderNLS) */, __this, (uint8_t*)(uint8_t*)L_6, L_7, (DecoderNLS_tCDF0A810A2E2B738728A98BBB49F792E66BDF6CD *)NULL);
return L_8;
}
}
// System.Int32 System.Text.EncodingNLS::GetChars(System.Byte[],System.Int32,System.Int32,System.Char[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EncodingNLS_GetChars_mF2857104EEF373BE111A6B2AA48DD15EA7DCBF31 (EncodingNLS_tED4EB523BC03EF4F815875D8A722B294A72F40E7 * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___bytes0, int32_t ___byteIndex1, int32_t ___byteCount2, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___chars3, int32_t ___charIndex4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EncodingNLS_GetChars_mF2857104EEF373BE111A6B2AA48DD15EA7DCBF31_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
uint8_t* V_1 = NULL;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_2 = NULL;
Il2CppChar* V_3 = NULL;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* V_4 = NULL;
String_t* G_B5_0 = NULL;
String_t* G_B11_0 = NULL;
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___bytes0;
if (!L_0)
{
goto IL_0007;
}
}
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_1 = ___chars3;
if (L_1)
{
goto IL_0026;
}
}
IL_0007:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = ___bytes0;
if (!L_2)
{
goto IL_0011;
}
}
{
G_B5_0 = _stringLiteral76A91D6CE24FCC03EC2ECBB19E3012B5D5D40E2B;
goto IL_0016;
}
IL_0011:
{
G_B5_0 = _stringLiteralDAF529A73101C2BE626B99FC6938163E7A27620B;
}
IL_0016:
{
String_t* L_3 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral867AD8C2544ED5D38EC2B4986A28AA22B284F710, /*hidden argument*/NULL);
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_4 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m9EA692D49986AEBAC433CE3381331146109AE20F(L_4, G_B5_0, L_3, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, EncodingNLS_GetChars_mF2857104EEF373BE111A6B2AA48DD15EA7DCBF31_RuntimeMethod_var);
}
IL_0026:
{
int32_t L_5 = ___byteIndex1;
if ((((int32_t)L_5) < ((int32_t)0)))
{
goto IL_002e;
}
}
{
int32_t L_6 = ___byteCount2;
if ((((int32_t)L_6) >= ((int32_t)0)))
{
goto IL_004e;
}
}
IL_002e:
{
int32_t L_7 = ___byteIndex1;
if ((((int32_t)L_7) < ((int32_t)0)))
{
goto IL_0039;
}
}
{
G_B11_0 = _stringLiteral278316CA5ED0FC3A0A92ED4DC8DA6CA9FB56DEBA;
goto IL_003e;
}
IL_0039:
{
G_B11_0 = _stringLiteralB95EFA8990E2BB5BCCEF52DF47A31FC66F723D4B;
}
IL_003e:
{
String_t* L_8 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_9 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_9, G_B11_0, L_8, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, EncodingNLS_GetChars_mF2857104EEF373BE111A6B2AA48DD15EA7DCBF31_RuntimeMethod_var);
}
IL_004e:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_10 = ___bytes0;
NullCheck(L_10);
int32_t L_11 = ___byteIndex1;
int32_t L_12 = ___byteCount2;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_10)->max_length)))), (int32_t)L_11))) >= ((int32_t)L_12)))
{
goto IL_006b;
}
}
{
String_t* L_13 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral58DB15989CC5229A62FDAD47E614D05B051584E7, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_14 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_14, _stringLiteralDAF529A73101C2BE626B99FC6938163E7A27620B, L_13, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_14, EncodingNLS_GetChars_mF2857104EEF373BE111A6B2AA48DD15EA7DCBF31_RuntimeMethod_var);
}
IL_006b:
{
int32_t L_15 = ___charIndex4;
if ((((int32_t)L_15) < ((int32_t)0)))
{
goto IL_0078;
}
}
{
int32_t L_16 = ___charIndex4;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_17 = ___chars3;
NullCheck(L_17);
if ((((int32_t)L_16) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_17)->max_length)))))))
{
goto IL_008d;
}
}
IL_0078:
{
String_t* L_18 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_19 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_19, _stringLiteral74EBCD92BCF0C393F47C1A4EEA9851BB06BCEF0C, L_18, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_19, EncodingNLS_GetChars_mF2857104EEF373BE111A6B2AA48DD15EA7DCBF31_RuntimeMethod_var);
}
IL_008d:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_20 = ___bytes0;
NullCheck(L_20);
if ((((RuntimeArray*)L_20)->max_length))
{
goto IL_0093;
}
}
{
return 0;
}
IL_0093:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_21 = ___chars3;
NullCheck(L_21);
int32_t L_22 = ___charIndex4;
V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_21)->max_length)))), (int32_t)L_22));
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_23 = ___chars3;
NullCheck(L_23);
if ((((RuntimeArray*)L_23)->max_length))
{
goto IL_00a8;
}
}
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_24 = (CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)SZArrayNew(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2_il2cpp_TypeInfo_var, (uint32_t)1);
___chars3 = L_24;
}
IL_00a8:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_25 = ___bytes0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_26 = L_25;
V_2 = L_26;
if (!L_26)
{
goto IL_00b2;
}
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_27 = V_2;
NullCheck(L_27);
if ((((int32_t)((int32_t)(((RuntimeArray*)L_27)->max_length)))))
{
goto IL_00b7;
}
}
IL_00b2:
{
V_1 = (uint8_t*)(((uintptr_t)0));
goto IL_00c0;
}
IL_00b7:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_28 = V_2;
NullCheck(L_28);
V_1 = (uint8_t*)(((uintptr_t)((L_28)->GetAddressAt(static_cast<il2cpp_array_size_t>(0)))));
}
IL_00c0:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_29 = ___chars3;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_30 = L_29;
V_4 = L_30;
if (!L_30)
{
goto IL_00cd;
}
}
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_31 = V_4;
NullCheck(L_31);
if ((((int32_t)((int32_t)(((RuntimeArray*)L_31)->max_length)))))
{
goto IL_00d2;
}
}
IL_00cd:
{
V_3 = (Il2CppChar*)(((uintptr_t)0));
goto IL_00dc;
}
IL_00d2:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_32 = V_4;
NullCheck(L_32);
V_3 = (Il2CppChar*)(((uintptr_t)((L_32)->GetAddressAt(static_cast<il2cpp_array_size_t>(0)))));
}
IL_00dc:
{
uint8_t* L_33 = V_1;
int32_t L_34 = ___byteIndex1;
int32_t L_35 = ___byteCount2;
Il2CppChar* L_36 = V_3;
int32_t L_37 = ___charIndex4;
int32_t L_38 = V_0;
int32_t L_39 = VirtFuncInvoker5< int32_t, uint8_t*, int32_t, Il2CppChar*, int32_t, DecoderNLS_tCDF0A810A2E2B738728A98BBB49F792E66BDF6CD * >::Invoke(24 /* System.Int32 System.Text.Encoding::GetChars(System.Byte*,System.Int32,System.Char*,System.Int32,System.Text.DecoderNLS) */, __this, (uint8_t*)(uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_33, (int32_t)L_34)), L_35, (Il2CppChar*)(Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_36, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_37)), (int32_t)2)))), L_38, (DecoderNLS_tCDF0A810A2E2B738728A98BBB49F792E66BDF6CD *)NULL);
return L_39;
}
}
// System.Int32 System.Text.EncodingNLS::GetChars(System.Byte*,System.Int32,System.Char*,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EncodingNLS_GetChars_m1292F0F6D2B3EEA2B3A1EA7A5C3BF171B3D6BAAE (EncodingNLS_tED4EB523BC03EF4F815875D8A722B294A72F40E7 * __this, uint8_t* ___bytes0, int32_t ___byteCount1, Il2CppChar* ___chars2, int32_t ___charCount3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EncodingNLS_GetChars_m1292F0F6D2B3EEA2B3A1EA7A5C3BF171B3D6BAAE_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* G_B5_0 = NULL;
String_t* G_B11_0 = NULL;
{
uint8_t* L_0 = ___bytes0;
if ((((intptr_t)L_0) == ((intptr_t)(((uintptr_t)0)))))
{
goto IL_000a;
}
}
{
Il2CppChar* L_1 = ___chars2;
if ((!(((uintptr_t)L_1) == ((uintptr_t)(((uintptr_t)0))))))
{
goto IL_002b;
}
}
IL_000a:
{
uint8_t* L_2 = ___bytes0;
if ((((intptr_t)L_2) == ((intptr_t)(((uintptr_t)0)))))
{
goto IL_0016;
}
}
{
G_B5_0 = _stringLiteral76A91D6CE24FCC03EC2ECBB19E3012B5D5D40E2B;
goto IL_001b;
}
IL_0016:
{
G_B5_0 = _stringLiteralDAF529A73101C2BE626B99FC6938163E7A27620B;
}
IL_001b:
{
String_t* L_3 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral867AD8C2544ED5D38EC2B4986A28AA22B284F710, /*hidden argument*/NULL);
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_4 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m9EA692D49986AEBAC433CE3381331146109AE20F(L_4, G_B5_0, L_3, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, EncodingNLS_GetChars_m1292F0F6D2B3EEA2B3A1EA7A5C3BF171B3D6BAAE_RuntimeMethod_var);
}
IL_002b:
{
int32_t L_5 = ___charCount3;
if ((((int32_t)L_5) < ((int32_t)0)))
{
goto IL_0034;
}
}
{
int32_t L_6 = ___byteCount1;
if ((((int32_t)L_6) >= ((int32_t)0)))
{
goto IL_0055;
}
}
IL_0034:
{
int32_t L_7 = ___charCount3;
if ((((int32_t)L_7) < ((int32_t)0)))
{
goto IL_0040;
}
}
{
G_B11_0 = _stringLiteral278316CA5ED0FC3A0A92ED4DC8DA6CA9FB56DEBA;
goto IL_0045;
}
IL_0040:
{
G_B11_0 = _stringLiteralAB1A79FB2CBABAF9BE681B601509BD40528C11D8;
}
IL_0045:
{
String_t* L_8 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_9 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_9, G_B11_0, L_8, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, EncodingNLS_GetChars_m1292F0F6D2B3EEA2B3A1EA7A5C3BF171B3D6BAAE_RuntimeMethod_var);
}
IL_0055:
{
uint8_t* L_10 = ___bytes0;
int32_t L_11 = ___byteCount1;
Il2CppChar* L_12 = ___chars2;
int32_t L_13 = ___charCount3;
int32_t L_14 = VirtFuncInvoker5< int32_t, uint8_t*, int32_t, Il2CppChar*, int32_t, DecoderNLS_tCDF0A810A2E2B738728A98BBB49F792E66BDF6CD * >::Invoke(24 /* System.Int32 System.Text.Encoding::GetChars(System.Byte*,System.Int32,System.Char*,System.Int32,System.Text.DecoderNLS) */, __this, (uint8_t*)(uint8_t*)L_10, L_11, (Il2CppChar*)(Il2CppChar*)L_12, L_13, (DecoderNLS_tCDF0A810A2E2B738728A98BBB49F792E66BDF6CD *)NULL);
return L_14;
}
}
// System.String System.Text.EncodingNLS::GetString(System.Byte[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* EncodingNLS_GetString_mDE9B50606FAB77B88125469A7FCDA5E2065A120F (EncodingNLS_tED4EB523BC03EF4F815875D8A722B294A72F40E7 * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___bytes0, int32_t ___index1, int32_t ___count2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EncodingNLS_GetString_mDE9B50606FAB77B88125469A7FCDA5E2065A120F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
uint8_t* V_0 = NULL;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_1 = NULL;
String_t* G_B7_0 = NULL;
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___bytes0;
if (L_0)
{
goto IL_0018;
}
}
{
String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral867AD8C2544ED5D38EC2B4986A28AA22B284F710, /*hidden argument*/NULL);
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m9EA692D49986AEBAC433CE3381331146109AE20F(L_2, _stringLiteralDAF529A73101C2BE626B99FC6938163E7A27620B, L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, EncodingNLS_GetString_mDE9B50606FAB77B88125469A7FCDA5E2065A120F_RuntimeMethod_var);
}
IL_0018:
{
int32_t L_3 = ___index1;
if ((((int32_t)L_3) < ((int32_t)0)))
{
goto IL_0020;
}
}
{
int32_t L_4 = ___count2;
if ((((int32_t)L_4) >= ((int32_t)0)))
{
goto IL_0040;
}
}
IL_0020:
{
int32_t L_5 = ___index1;
if ((((int32_t)L_5) < ((int32_t)0)))
{
goto IL_002b;
}
}
{
G_B7_0 = _stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556;
goto IL_0030;
}
IL_002b:
{
G_B7_0 = _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346;
}
IL_0030:
{
String_t* L_6 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_7 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_7, G_B7_0, L_6, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, EncodingNLS_GetString_mDE9B50606FAB77B88125469A7FCDA5E2065A120F_RuntimeMethod_var);
}
IL_0040:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_8 = ___bytes0;
NullCheck(L_8);
int32_t L_9 = ___index1;
int32_t L_10 = ___count2;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_8)->max_length)))), (int32_t)L_9))) >= ((int32_t)L_10)))
{
goto IL_005d;
}
}
{
String_t* L_11 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral58DB15989CC5229A62FDAD47E614D05B051584E7, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_12 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_12, _stringLiteralDAF529A73101C2BE626B99FC6938163E7A27620B, L_11, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, EncodingNLS_GetString_mDE9B50606FAB77B88125469A7FCDA5E2065A120F_RuntimeMethod_var);
}
IL_005d:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_13 = ___bytes0;
NullCheck(L_13);
if ((((RuntimeArray*)L_13)->max_length))
{
goto IL_0067;
}
}
{
String_t* L_14 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5();
return L_14;
}
IL_0067:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_15 = ___bytes0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_16 = L_15;
V_1 = L_16;
if (!L_16)
{
goto IL_0071;
}
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_17 = V_1;
NullCheck(L_17);
if ((((int32_t)((int32_t)(((RuntimeArray*)L_17)->max_length)))))
{
goto IL_0076;
}
}
IL_0071:
{
V_0 = (uint8_t*)(((uintptr_t)0));
goto IL_007f;
}
IL_0076:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_18 = V_1;
NullCheck(L_18);
V_0 = (uint8_t*)(((uintptr_t)((L_18)->GetAddressAt(static_cast<il2cpp_array_size_t>(0)))));
}
IL_007f:
{
uint8_t* L_19 = V_0;
int32_t L_20 = ___index1;
int32_t L_21 = ___count2;
String_t* L_22 = String_CreateStringFromEncoding_m05572A060148F853D4AD4D275D432DFF261ABF99((uint8_t*)(uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_19, (int32_t)L_20)), L_21, __this, /*hidden argument*/NULL);
return L_22;
}
}
// System.Text.Decoder System.Text.EncodingNLS::GetDecoder()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decoder_tEEF45EB6F965222036C49E8EC6BA8A0692AA1F26 * EncodingNLS_GetDecoder_m22925AF3BB308D18DA59AECF827167560F330440 (EncodingNLS_tED4EB523BC03EF4F815875D8A722B294A72F40E7 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EncodingNLS_GetDecoder_m22925AF3BB308D18DA59AECF827167560F330440_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
DecoderNLS_tCDF0A810A2E2B738728A98BBB49F792E66BDF6CD * L_0 = (DecoderNLS_tCDF0A810A2E2B738728A98BBB49F792E66BDF6CD *)il2cpp_codegen_object_new(DecoderNLS_tCDF0A810A2E2B738728A98BBB49F792E66BDF6CD_il2cpp_TypeInfo_var);
DecoderNLS__ctor_m7909804265A4B50D45020D604E0802C278297E67(L_0, __this, /*hidden argument*/NULL);
return L_0;
}
}
// System.Text.Encoder System.Text.EncodingNLS::GetEncoder()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoder_t29B2697B0B775EABC52EBFB914F327BE9B1A3464 * EncodingNLS_GetEncoder_m5A728D551A7FB15FD6672152D10C764E4391389C (EncodingNLS_tED4EB523BC03EF4F815875D8A722B294A72F40E7 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EncodingNLS_GetEncoder_m5A728D551A7FB15FD6672152D10C764E4391389C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * L_0 = (EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 *)il2cpp_codegen_object_new(EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8_il2cpp_TypeInfo_var);
EncoderNLS__ctor_m3F11286A48DC8DEB96AB6B98EC9A1C0F79A11051(L_0, __this, /*hidden argument*/NULL);
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.Text.Encoding System.Text.EncodingProvider::GetEncodingFromProvider(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * EncodingProvider_GetEncodingFromProvider_mA0F1D2A29AF8309112363BA3AEAD24F4F84F8A6F (int32_t ___codepage0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EncodingProvider_GetEncodingFromProvider_mA0F1D2A29AF8309112363BA3AEAD24F4F84F8A6F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
EncodingProviderU5BU5D_tC6F023570A13EC5DEAC72E9403D9C8B84DCF4E49* V_0 = NULL;
int32_t V_1 = 0;
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * V_2 = NULL;
{
IL2CPP_RUNTIME_CLASS_INIT(EncodingProvider_t75FB9C8A37AAC86251A690CAB8D5D718B9DCB480_il2cpp_TypeInfo_var);
EncodingProviderU5BU5D_tC6F023570A13EC5DEAC72E9403D9C8B84DCF4E49* L_0 = ((EncodingProvider_t75FB9C8A37AAC86251A690CAB8D5D718B9DCB480_StaticFields*)il2cpp_codegen_static_fields_for(EncodingProvider_t75FB9C8A37AAC86251A690CAB8D5D718B9DCB480_il2cpp_TypeInfo_var))->get_s_providers_1();
il2cpp_codegen_memory_barrier();
if (L_0)
{
goto IL_000b;
}
}
{
return (Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 *)NULL;
}
IL_000b:
{
IL2CPP_RUNTIME_CLASS_INIT(EncodingProvider_t75FB9C8A37AAC86251A690CAB8D5D718B9DCB480_il2cpp_TypeInfo_var);
EncodingProviderU5BU5D_tC6F023570A13EC5DEAC72E9403D9C8B84DCF4E49* L_1 = ((EncodingProvider_t75FB9C8A37AAC86251A690CAB8D5D718B9DCB480_StaticFields*)il2cpp_codegen_static_fields_for(EncodingProvider_t75FB9C8A37AAC86251A690CAB8D5D718B9DCB480_il2cpp_TypeInfo_var))->get_s_providers_1();
il2cpp_codegen_memory_barrier();
V_0 = L_1;
V_1 = 0;
goto IL_002a;
}
IL_0017:
{
EncodingProviderU5BU5D_tC6F023570A13EC5DEAC72E9403D9C8B84DCF4E49* L_2 = V_0;
int32_t L_3 = V_1;
NullCheck(L_2);
int32_t L_4 = L_3;
EncodingProvider_t75FB9C8A37AAC86251A690CAB8D5D718B9DCB480 * L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
int32_t L_6 = ___codepage0;
NullCheck(L_5);
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_7 = VirtFuncInvoker1< Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 *, int32_t >::Invoke(5 /* System.Text.Encoding System.Text.EncodingProvider::GetEncoding(System.Int32) */, L_5, L_6);
V_2 = L_7;
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_8 = V_2;
if (!L_8)
{
goto IL_0026;
}
}
{
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_9 = V_2;
return L_9;
}
IL_0026:
{
int32_t L_10 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1));
}
IL_002a:
{
int32_t L_11 = V_1;
EncodingProviderU5BU5D_tC6F023570A13EC5DEAC72E9403D9C8B84DCF4E49* L_12 = V_0;
NullCheck(L_12);
if ((((int32_t)L_11) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_12)->max_length)))))))
{
goto IL_0017;
}
}
{
return (Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 *)NULL;
}
}
// System.Text.Encoding System.Text.EncodingProvider::GetEncodingFromProvider(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * EncodingProvider_GetEncodingFromProvider_m6B4B2550725947939A8DEF0B26D335D7957017A7 (String_t* ___encodingName0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EncodingProvider_GetEncodingFromProvider_m6B4B2550725947939A8DEF0B26D335D7957017A7_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
EncodingProviderU5BU5D_tC6F023570A13EC5DEAC72E9403D9C8B84DCF4E49* V_0 = NULL;
int32_t V_1 = 0;
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * V_2 = NULL;
{
IL2CPP_RUNTIME_CLASS_INIT(EncodingProvider_t75FB9C8A37AAC86251A690CAB8D5D718B9DCB480_il2cpp_TypeInfo_var);
EncodingProviderU5BU5D_tC6F023570A13EC5DEAC72E9403D9C8B84DCF4E49* L_0 = ((EncodingProvider_t75FB9C8A37AAC86251A690CAB8D5D718B9DCB480_StaticFields*)il2cpp_codegen_static_fields_for(EncodingProvider_t75FB9C8A37AAC86251A690CAB8D5D718B9DCB480_il2cpp_TypeInfo_var))->get_s_providers_1();
il2cpp_codegen_memory_barrier();
if (L_0)
{
goto IL_000b;
}
}
{
return (Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 *)NULL;
}
IL_000b:
{
IL2CPP_RUNTIME_CLASS_INIT(EncodingProvider_t75FB9C8A37AAC86251A690CAB8D5D718B9DCB480_il2cpp_TypeInfo_var);
EncodingProviderU5BU5D_tC6F023570A13EC5DEAC72E9403D9C8B84DCF4E49* L_1 = ((EncodingProvider_t75FB9C8A37AAC86251A690CAB8D5D718B9DCB480_StaticFields*)il2cpp_codegen_static_fields_for(EncodingProvider_t75FB9C8A37AAC86251A690CAB8D5D718B9DCB480_il2cpp_TypeInfo_var))->get_s_providers_1();
il2cpp_codegen_memory_barrier();
V_0 = L_1;
V_1 = 0;
goto IL_002a;
}
IL_0017:
{
EncodingProviderU5BU5D_tC6F023570A13EC5DEAC72E9403D9C8B84DCF4E49* L_2 = V_0;
int32_t L_3 = V_1;
NullCheck(L_2);
int32_t L_4 = L_3;
EncodingProvider_t75FB9C8A37AAC86251A690CAB8D5D718B9DCB480 * L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
String_t* L_6 = ___encodingName0;
NullCheck(L_5);
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_7 = VirtFuncInvoker1< Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 *, String_t* >::Invoke(4 /* System.Text.Encoding System.Text.EncodingProvider::GetEncoding(System.String) */, L_5, L_6);
V_2 = L_7;
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_8 = V_2;
if (!L_8)
{
goto IL_0026;
}
}
{
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_9 = V_2;
return L_9;
}
IL_0026:
{
int32_t L_10 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1));
}
IL_002a:
{
int32_t L_11 = V_1;
EncodingProviderU5BU5D_tC6F023570A13EC5DEAC72E9403D9C8B84DCF4E49* L_12 = V_0;
NullCheck(L_12);
if ((((int32_t)L_11) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_12)->max_length)))))))
{
goto IL_0017;
}
}
{
return (Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 *)NULL;
}
}
// System.Void System.Text.EncodingProvider::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EncodingProvider__cctor_mFF0BD781A7712C88D2ACAFCE51E43352446EF041 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EncodingProvider__cctor_mFF0BD781A7712C88D2ACAFCE51E43352446EF041_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = (RuntimeObject *)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(L_0, /*hidden argument*/NULL);
((EncodingProvider_t75FB9C8A37AAC86251A690CAB8D5D718B9DCB480_StaticFields*)il2cpp_codegen_static_fields_for(EncodingProvider_t75FB9C8A37AAC86251A690CAB8D5D718B9DCB480_il2cpp_TypeInfo_var))->set_s_InternalSyncObject_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.Text.InternalDecoderBestFitFallback::.ctor(System.Text.Encoding)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalDecoderBestFitFallback__ctor_m9DC081B41C021834638AA9E36979B35C5172F744 (InternalDecoderBestFitFallback_tEDAD252E54B0CA27A47ABC5681EC6BCACB3C19B4 * __this, Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___encoding0, const RuntimeMethod* method)
{
{
__this->set_cReplacement_6(((int32_t)63));
DecoderFallback__ctor_m54A9DF12218E6A07D4316D7FDE75FDFA216C9437(__this, /*hidden argument*/NULL);
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_0 = ___encoding0;
__this->set_encoding_4(L_0);
((DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 *)__this)->set_bIsMicrosoftBestFitFallback_0((bool)1);
return;
}
}
// System.Text.DecoderFallbackBuffer System.Text.InternalDecoderBestFitFallback::CreateFallbackBuffer()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DecoderFallbackBuffer_t41EB1B3F5748BEEF5BE883DA09DBDB937441A83C * InternalDecoderBestFitFallback_CreateFallbackBuffer_mAB113BA8D99815EA9F69A4E6AB7E07C7463AC05D (InternalDecoderBestFitFallback_tEDAD252E54B0CA27A47ABC5681EC6BCACB3C19B4 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalDecoderBestFitFallback_CreateFallbackBuffer_mAB113BA8D99815EA9F69A4E6AB7E07C7463AC05D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InternalDecoderBestFitFallbackBuffer_t72773560F3EA35774592AA02A71B46D4A46DA25F * L_0 = (InternalDecoderBestFitFallbackBuffer_t72773560F3EA35774592AA02A71B46D4A46DA25F *)il2cpp_codegen_object_new(InternalDecoderBestFitFallbackBuffer_t72773560F3EA35774592AA02A71B46D4A46DA25F_il2cpp_TypeInfo_var);
InternalDecoderBestFitFallbackBuffer__ctor_m4660895B648DE232827A084937D6E7870F407CAF(L_0, __this, /*hidden argument*/NULL);
return L_0;
}
}
// System.Int32 System.Text.InternalDecoderBestFitFallback::get_MaxCharCount()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InternalDecoderBestFitFallback_get_MaxCharCount_m35D3A943387A6E16C5AD493A4E9DF3F869D0E7D3 (InternalDecoderBestFitFallback_tEDAD252E54B0CA27A47ABC5681EC6BCACB3C19B4 * __this, const RuntimeMethod* method)
{
{
return 1;
}
}
// System.Boolean System.Text.InternalDecoderBestFitFallback::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalDecoderBestFitFallback_Equals_m5D263B30BFF1BF1350E9D6C455ACF80609B9EE6E (InternalDecoderBestFitFallback_tEDAD252E54B0CA27A47ABC5681EC6BCACB3C19B4 * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalDecoderBestFitFallback_Equals_m5D263B30BFF1BF1350E9D6C455ACF80609B9EE6E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
InternalDecoderBestFitFallback_tEDAD252E54B0CA27A47ABC5681EC6BCACB3C19B4 * V_0 = NULL;
{
RuntimeObject * L_0 = ___value0;
V_0 = ((InternalDecoderBestFitFallback_tEDAD252E54B0CA27A47ABC5681EC6BCACB3C19B4 *)IsInstSealed((RuntimeObject*)L_0, InternalDecoderBestFitFallback_tEDAD252E54B0CA27A47ABC5681EC6BCACB3C19B4_il2cpp_TypeInfo_var));
InternalDecoderBestFitFallback_tEDAD252E54B0CA27A47ABC5681EC6BCACB3C19B4 * L_1 = V_0;
if (!L_1)
{
goto IL_0023;
}
}
{
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_2 = __this->get_encoding_4();
NullCheck(L_2);
int32_t L_3 = VirtFuncInvoker0< int32_t >::Invoke(25 /* System.Int32 System.Text.Encoding::get_CodePage() */, L_2);
InternalDecoderBestFitFallback_tEDAD252E54B0CA27A47ABC5681EC6BCACB3C19B4 * L_4 = V_0;
NullCheck(L_4);
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_5 = L_4->get_encoding_4();
NullCheck(L_5);
int32_t L_6 = VirtFuncInvoker0< int32_t >::Invoke(25 /* System.Int32 System.Text.Encoding::get_CodePage() */, L_5);
return (bool)((((int32_t)L_3) == ((int32_t)L_6))? 1 : 0);
}
IL_0023:
{
return (bool)0;
}
}
// System.Int32 System.Text.InternalDecoderBestFitFallback::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InternalDecoderBestFitFallback_GetHashCode_m0B724EF16C41A9E43087BEBDFDE4014439C08981 (InternalDecoderBestFitFallback_tEDAD252E54B0CA27A47ABC5681EC6BCACB3C19B4 * __this, const RuntimeMethod* method)
{
{
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_0 = __this->get_encoding_4();
NullCheck(L_0);
int32_t L_1 = VirtFuncInvoker0< int32_t >::Invoke(25 /* System.Int32 System.Text.Encoding::get_CodePage() */, 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.Object System.Text.InternalDecoderBestFitFallbackBuffer::get_InternalSyncObject()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalDecoderBestFitFallbackBuffer_get_InternalSyncObject_m882032FDCD9281FC5145B8AA0F2C604EB806915A (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalDecoderBestFitFallbackBuffer_get_InternalSyncObject_m882032FDCD9281FC5145B8AA0F2C604EB806915A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject * V_0 = NULL;
{
RuntimeObject * L_0 = ((InternalDecoderBestFitFallbackBuffer_t72773560F3EA35774592AA02A71B46D4A46DA25F_StaticFields*)il2cpp_codegen_static_fields_for(InternalDecoderBestFitFallbackBuffer_t72773560F3EA35774592AA02A71B46D4A46DA25F_il2cpp_TypeInfo_var))->get_s_InternalSyncObject_6();
if (L_0)
{
goto IL_001a;
}
}
{
RuntimeObject * L_1 = (RuntimeObject *)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(L_1, /*hidden argument*/NULL);
V_0 = L_1;
RuntimeObject * L_2 = V_0;
InterlockedCompareExchangeImpl<RuntimeObject *>((RuntimeObject **)(((InternalDecoderBestFitFallbackBuffer_t72773560F3EA35774592AA02A71B46D4A46DA25F_StaticFields*)il2cpp_codegen_static_fields_for(InternalDecoderBestFitFallbackBuffer_t72773560F3EA35774592AA02A71B46D4A46DA25F_il2cpp_TypeInfo_var))->get_address_of_s_InternalSyncObject_6()), L_2, NULL);
}
IL_001a:
{
RuntimeObject * L_3 = ((InternalDecoderBestFitFallbackBuffer_t72773560F3EA35774592AA02A71B46D4A46DA25F_StaticFields*)il2cpp_codegen_static_fields_for(InternalDecoderBestFitFallbackBuffer_t72773560F3EA35774592AA02A71B46D4A46DA25F_il2cpp_TypeInfo_var))->get_s_InternalSyncObject_6();
return L_3;
}
}
// System.Void System.Text.InternalDecoderBestFitFallbackBuffer::.ctor(System.Text.InternalDecoderBestFitFallback)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalDecoderBestFitFallbackBuffer__ctor_m4660895B648DE232827A084937D6E7870F407CAF (InternalDecoderBestFitFallbackBuffer_t72773560F3EA35774592AA02A71B46D4A46DA25F * __this, InternalDecoderBestFitFallback_tEDAD252E54B0CA27A47ABC5681EC6BCACB3C19B4 * ___fallback0, const RuntimeMethod* method)
{
RuntimeObject * 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);
{
__this->set_iCount_3((-1));
DecoderFallbackBuffer__ctor_mD3BD448C945CFCFD5ECB5D3F774D156A340F1046(__this, /*hidden argument*/NULL);
InternalDecoderBestFitFallback_tEDAD252E54B0CA27A47ABC5681EC6BCACB3C19B4 * L_0 = ___fallback0;
__this->set_oFallback_5(L_0);
InternalDecoderBestFitFallback_tEDAD252E54B0CA27A47ABC5681EC6BCACB3C19B4 * L_1 = __this->get_oFallback_5();
NullCheck(L_1);
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_2 = L_1->get_arrayBestFit_5();
if (L_2)
{
goto IL_0060;
}
}
{
RuntimeObject * L_3 = InternalDecoderBestFitFallbackBuffer_get_InternalSyncObject_m882032FDCD9281FC5145B8AA0F2C604EB806915A(/*hidden argument*/NULL);
V_0 = L_3;
V_1 = (bool)0;
}
IL_0029:
try
{ // begin try (depth: 1)
{
RuntimeObject * L_4 = V_0;
Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(L_4, (bool*)(&V_1), /*hidden argument*/NULL);
InternalDecoderBestFitFallback_tEDAD252E54B0CA27A47ABC5681EC6BCACB3C19B4 * L_5 = __this->get_oFallback_5();
NullCheck(L_5);
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_6 = L_5->get_arrayBestFit_5();
if (L_6)
{
goto IL_0054;
}
}
IL_003e:
{
InternalDecoderBestFitFallback_tEDAD252E54B0CA27A47ABC5681EC6BCACB3C19B4 * L_7 = __this->get_oFallback_5();
InternalDecoderBestFitFallback_tEDAD252E54B0CA27A47ABC5681EC6BCACB3C19B4 * L_8 = ___fallback0;
NullCheck(L_8);
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_9 = L_8->get_encoding_4();
NullCheck(L_9);
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_10 = VirtFuncInvoker0< CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* >::Invoke(33 /* System.Char[] System.Text.Encoding::GetBestFitBytesToUnicodeData() */, L_9);
NullCheck(L_7);
L_7->set_arrayBestFit_5(L_10);
}
IL_0054:
{
IL2CPP_LEAVE(0x60, FINALLY_0056);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0056;
}
FINALLY_0056:
{ // begin finally (depth: 1)
{
bool L_11 = V_1;
if (!L_11)
{
goto IL_005f;
}
}
IL_0059:
{
RuntimeObject * L_12 = V_0;
Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_12, /*hidden argument*/NULL);
}
IL_005f:
{
IL2CPP_END_FINALLY(86)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(86)
{
IL2CPP_JUMP_TBL(0x60, IL_0060)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0060:
{
return;
}
}
// System.Boolean System.Text.InternalDecoderBestFitFallbackBuffer::Fallback(System.Byte[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalDecoderBestFitFallbackBuffer_Fallback_m7571CD9E98552310954105CB061A454CCC39ABC7 (InternalDecoderBestFitFallbackBuffer_t72773560F3EA35774592AA02A71B46D4A46DA25F * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___bytesUnknown0, int32_t ___index1, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___bytesUnknown0;
Il2CppChar L_1 = InternalDecoderBestFitFallbackBuffer_TryBestFit_m893FED71FD776004F8B3DDBA0F209ACD819D9B7E(__this, L_0, /*hidden argument*/NULL);
__this->set_cBestFit_2(L_1);
Il2CppChar L_2 = __this->get_cBestFit_2();
if (L_2)
{
goto IL_0026;
}
}
{
InternalDecoderBestFitFallback_tEDAD252E54B0CA27A47ABC5681EC6BCACB3C19B4 * L_3 = __this->get_oFallback_5();
NullCheck(L_3);
Il2CppChar L_4 = L_3->get_cReplacement_6();
__this->set_cBestFit_2(L_4);
}
IL_0026:
{
int32_t L_5 = 1;
V_0 = L_5;
__this->set_iSize_4(L_5);
int32_t L_6 = V_0;
__this->set_iCount_3(L_6);
return (bool)1;
}
}
// System.Char System.Text.InternalDecoderBestFitFallbackBuffer::GetNextChar()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar InternalDecoderBestFitFallbackBuffer_GetNextChar_m9878FA9B746286F628A71728D205F4E7CB2E7221 (InternalDecoderBestFitFallbackBuffer_t72773560F3EA35774592AA02A71B46D4A46DA25F * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_iCount_3();
__this->set_iCount_3(((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)1)));
int32_t L_1 = __this->get_iCount_3();
if ((((int32_t)L_1) >= ((int32_t)0)))
{
goto IL_0019;
}
}
{
return 0;
}
IL_0019:
{
int32_t L_2 = __this->get_iCount_3();
if ((!(((uint32_t)L_2) == ((uint32_t)((int32_t)2147483647LL)))))
{
goto IL_002f;
}
}
{
__this->set_iCount_3((-1));
return 0;
}
IL_002f:
{
Il2CppChar L_3 = __this->get_cBestFit_2();
return L_3;
}
}
// System.Void System.Text.InternalDecoderBestFitFallbackBuffer::Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalDecoderBestFitFallbackBuffer_Reset_m63493B5D1844ABA54389D95B64C5E78B85679D43 (InternalDecoderBestFitFallbackBuffer_t72773560F3EA35774592AA02A71B46D4A46DA25F * __this, const RuntimeMethod* method)
{
{
__this->set_iCount_3((-1));
((DecoderFallbackBuffer_t41EB1B3F5748BEEF5BE883DA09DBDB937441A83C *)__this)->set_byteStart_0((uint8_t*)(((uintptr_t)0)));
return;
}
}
// System.Int32 System.Text.InternalDecoderBestFitFallbackBuffer::InternalFallback(System.Byte[],System.Byte*)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InternalDecoderBestFitFallbackBuffer_InternalFallback_mA10E0696CFCEDE7C28038A5CB59A246C46F11502 (InternalDecoderBestFitFallbackBuffer_t72773560F3EA35774592AA02A71B46D4A46DA25F * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___bytes0, uint8_t* ___pBytes1, const RuntimeMethod* method)
{
{
return 1;
}
}
// System.Char System.Text.InternalDecoderBestFitFallbackBuffer::TryBestFit(System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar InternalDecoderBestFitFallbackBuffer_TryBestFit_m893FED71FD776004F8B3DDBA0F209ACD819D9B7E (InternalDecoderBestFitFallbackBuffer_t72773560F3EA35774592AA02A71B46D4A46DA25F * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___bytesCheck0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
Il2CppChar V_3 = 0x0;
int32_t V_4 = 0;
Il2CppChar V_5 = 0x0;
{
V_0 = 0;
InternalDecoderBestFitFallback_tEDAD252E54B0CA27A47ABC5681EC6BCACB3C19B4 * L_0 = __this->get_oFallback_5();
NullCheck(L_0);
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_1 = L_0->get_arrayBestFit_5();
NullCheck(L_1);
V_1 = (((int32_t)((int32_t)(((RuntimeArray*)L_1)->max_length))));
int32_t L_2 = V_1;
if (L_2)
{
goto IL_0015;
}
}
{
return 0;
}
IL_0015:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_3 = ___bytesCheck0;
NullCheck(L_3);
if (!(((RuntimeArray*)L_3)->max_length))
{
goto IL_001f;
}
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = ___bytesCheck0;
NullCheck(L_4);
if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))))) <= ((int32_t)2)))
{
goto IL_0021;
}
}
IL_001f:
{
return 0;
}
IL_0021:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_5 = ___bytesCheck0;
NullCheck(L_5);
if ((!(((uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_5)->max_length))))) == ((uint32_t)1))))
{
goto IL_002d;
}
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_6 = ___bytesCheck0;
NullCheck(L_6);
int32_t L_7 = 0;
uint8_t L_8 = (L_6)->GetAt(static_cast<il2cpp_array_size_t>(L_7));
V_3 = L_8;
goto IL_0038;
}
IL_002d:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_9 = ___bytesCheck0;
NullCheck(L_9);
int32_t L_10 = 0;
uint8_t L_11 = (L_9)->GetAt(static_cast<il2cpp_array_size_t>(L_10));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_12 = ___bytesCheck0;
NullCheck(L_12);
int32_t L_13 = 1;
uint8_t L_14 = (L_12)->GetAt(static_cast<il2cpp_array_size_t>(L_13));
V_3 = (((int32_t)((uint16_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)((int32_t)L_11<<(int32_t)8)), (int32_t)L_14)))));
}
IL_0038:
{
Il2CppChar L_15 = V_3;
InternalDecoderBestFitFallback_tEDAD252E54B0CA27A47ABC5681EC6BCACB3C19B4 * L_16 = __this->get_oFallback_5();
NullCheck(L_16);
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_17 = L_16->get_arrayBestFit_5();
NullCheck(L_17);
int32_t L_18 = 0;
uint16_t L_19 = (uint16_t)(L_17)->GetAt(static_cast<il2cpp_array_size_t>(L_18));
if ((((int32_t)L_15) < ((int32_t)L_19)))
{
goto IL_005a;
}
}
{
Il2CppChar L_20 = V_3;
InternalDecoderBestFitFallback_tEDAD252E54B0CA27A47ABC5681EC6BCACB3C19B4 * L_21 = __this->get_oFallback_5();
NullCheck(L_21);
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_22 = L_21->get_arrayBestFit_5();
int32_t L_23 = V_1;
NullCheck(L_22);
int32_t L_24 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_23, (int32_t)2));
uint16_t L_25 = (uint16_t)(L_22)->GetAt(static_cast<il2cpp_array_size_t>(L_24));
if ((((int32_t)L_20) <= ((int32_t)L_25)))
{
goto IL_0098;
}
}
IL_005a:
{
return 0;
}
IL_005c:
{
int32_t L_26 = V_4;
int32_t L_27 = V_0;
V_2 = ((int32_t)((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)((int32_t)L_26/(int32_t)2)), (int32_t)L_27))&(int32_t)((int32_t)65534)));
InternalDecoderBestFitFallback_tEDAD252E54B0CA27A47ABC5681EC6BCACB3C19B4 * L_28 = __this->get_oFallback_5();
NullCheck(L_28);
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_29 = L_28->get_arrayBestFit_5();
int32_t L_30 = V_2;
NullCheck(L_29);
int32_t L_31 = L_30;
uint16_t L_32 = (uint16_t)(L_29)->GetAt(static_cast<il2cpp_array_size_t>(L_31));
V_5 = L_32;
Il2CppChar L_33 = V_5;
Il2CppChar L_34 = V_3;
if ((!(((uint32_t)L_33) == ((uint32_t)L_34))))
{
goto IL_008d;
}
}
{
InternalDecoderBestFitFallback_tEDAD252E54B0CA27A47ABC5681EC6BCACB3C19B4 * L_35 = __this->get_oFallback_5();
NullCheck(L_35);
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_36 = L_35->get_arrayBestFit_5();
int32_t L_37 = V_2;
NullCheck(L_36);
int32_t L_38 = ((int32_t)il2cpp_codegen_add((int32_t)L_37, (int32_t)1));
uint16_t L_39 = (uint16_t)(L_36)->GetAt(static_cast<il2cpp_array_size_t>(L_38));
return L_39;
}
IL_008d:
{
Il2CppChar L_40 = V_5;
Il2CppChar L_41 = V_3;
if ((((int32_t)L_40) >= ((int32_t)L_41)))
{
goto IL_0096;
}
}
{
int32_t L_42 = V_2;
V_0 = L_42;
goto IL_0098;
}
IL_0096:
{
int32_t L_43 = V_2;
V_1 = L_43;
}
IL_0098:
{
int32_t L_44 = V_1;
int32_t L_45 = V_0;
int32_t L_46 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_44, (int32_t)L_45));
V_4 = L_46;
if ((((int32_t)L_46) > ((int32_t)6)))
{
goto IL_005c;
}
}
{
int32_t L_47 = V_0;
V_2 = L_47;
goto IL_00c9;
}
IL_00a5:
{
InternalDecoderBestFitFallback_tEDAD252E54B0CA27A47ABC5681EC6BCACB3C19B4 * L_48 = __this->get_oFallback_5();
NullCheck(L_48);
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_49 = L_48->get_arrayBestFit_5();
int32_t L_50 = V_2;
NullCheck(L_49);
int32_t L_51 = L_50;
uint16_t L_52 = (uint16_t)(L_49)->GetAt(static_cast<il2cpp_array_size_t>(L_51));
Il2CppChar L_53 = V_3;
if ((!(((uint32_t)L_52) == ((uint32_t)L_53))))
{
goto IL_00c5;
}
}
{
InternalDecoderBestFitFallback_tEDAD252E54B0CA27A47ABC5681EC6BCACB3C19B4 * L_54 = __this->get_oFallback_5();
NullCheck(L_54);
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_55 = L_54->get_arrayBestFit_5();
int32_t L_56 = V_2;
NullCheck(L_55);
int32_t L_57 = ((int32_t)il2cpp_codegen_add((int32_t)L_56, (int32_t)1));
uint16_t L_58 = (uint16_t)(L_55)->GetAt(static_cast<il2cpp_array_size_t>(L_57));
return L_58;
}
IL_00c5:
{
int32_t L_59 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_59, (int32_t)2));
}
IL_00c9:
{
int32_t L_60 = V_2;
int32_t L_61 = V_1;
if ((((int32_t)L_60) < ((int32_t)L_61)))
{
goto IL_00a5;
}
}
{
return 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.Text.InternalEncoderBestFitFallback::.ctor(System.Text.Encoding)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEncoderBestFitFallback__ctor_m74F421EBA10BBB6CD286DA81A1E26A026227DAE2 (InternalEncoderBestFitFallback_tE5EF81259A780E6F8990218A8E46D41B5BCE56F3 * __this, Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___encoding0, const RuntimeMethod* method)
{
{
EncoderFallback__ctor_m7EDA0415798986D15DA060414B0839FF158B9227(__this, /*hidden argument*/NULL);
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_0 = ___encoding0;
__this->set_encoding_4(L_0);
((EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 *)__this)->set_bIsMicrosoftBestFitFallback_0((bool)1);
return;
}
}
// System.Text.EncoderFallbackBuffer System.Text.InternalEncoderBestFitFallback::CreateFallbackBuffer()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * InternalEncoderBestFitFallback_CreateFallbackBuffer_mCBD6DBF828C05ECBC79FF3FD17D4A77296A48079 (InternalEncoderBestFitFallback_tE5EF81259A780E6F8990218A8E46D41B5BCE56F3 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEncoderBestFitFallback_CreateFallbackBuffer_mCBD6DBF828C05ECBC79FF3FD17D4A77296A48079_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
InternalEncoderBestFitFallbackBuffer_t8A9165EBB478F5F06CA6F3D170BC17B3A342EDE3 * L_0 = (InternalEncoderBestFitFallbackBuffer_t8A9165EBB478F5F06CA6F3D170BC17B3A342EDE3 *)il2cpp_codegen_object_new(InternalEncoderBestFitFallbackBuffer_t8A9165EBB478F5F06CA6F3D170BC17B3A342EDE3_il2cpp_TypeInfo_var);
InternalEncoderBestFitFallbackBuffer__ctor_m0446A53228519814A3BC54A1F6756E21EC2729B5(L_0, __this, /*hidden argument*/NULL);
return L_0;
}
}
// System.Int32 System.Text.InternalEncoderBestFitFallback::get_MaxCharCount()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InternalEncoderBestFitFallback_get_MaxCharCount_m35660F56F97B278545EF7CC527AA3C63274BA2C1 (InternalEncoderBestFitFallback_tE5EF81259A780E6F8990218A8E46D41B5BCE56F3 * __this, const RuntimeMethod* method)
{
{
return 1;
}
}
// System.Boolean System.Text.InternalEncoderBestFitFallback::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEncoderBestFitFallback_Equals_m2EB7A90447CFF5F07B9C30156893557CD89C6E93 (InternalEncoderBestFitFallback_tE5EF81259A780E6F8990218A8E46D41B5BCE56F3 * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEncoderBestFitFallback_Equals_m2EB7A90447CFF5F07B9C30156893557CD89C6E93_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
InternalEncoderBestFitFallback_tE5EF81259A780E6F8990218A8E46D41B5BCE56F3 * V_0 = NULL;
{
RuntimeObject * L_0 = ___value0;
V_0 = ((InternalEncoderBestFitFallback_tE5EF81259A780E6F8990218A8E46D41B5BCE56F3 *)IsInstClass((RuntimeObject*)L_0, InternalEncoderBestFitFallback_tE5EF81259A780E6F8990218A8E46D41B5BCE56F3_il2cpp_TypeInfo_var));
InternalEncoderBestFitFallback_tE5EF81259A780E6F8990218A8E46D41B5BCE56F3 * L_1 = V_0;
if (!L_1)
{
goto IL_0023;
}
}
{
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_2 = __this->get_encoding_4();
NullCheck(L_2);
int32_t L_3 = VirtFuncInvoker0< int32_t >::Invoke(25 /* System.Int32 System.Text.Encoding::get_CodePage() */, L_2);
InternalEncoderBestFitFallback_tE5EF81259A780E6F8990218A8E46D41B5BCE56F3 * L_4 = V_0;
NullCheck(L_4);
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_5 = L_4->get_encoding_4();
NullCheck(L_5);
int32_t L_6 = VirtFuncInvoker0< int32_t >::Invoke(25 /* System.Int32 System.Text.Encoding::get_CodePage() */, L_5);
return (bool)((((int32_t)L_3) == ((int32_t)L_6))? 1 : 0);
}
IL_0023:
{
return (bool)0;
}
}
// System.Int32 System.Text.InternalEncoderBestFitFallback::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InternalEncoderBestFitFallback_GetHashCode_mC080FE9867202BE07CD16D6CA31C732B45375759 (InternalEncoderBestFitFallback_tE5EF81259A780E6F8990218A8E46D41B5BCE56F3 * __this, const RuntimeMethod* method)
{
{
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_0 = __this->get_encoding_4();
NullCheck(L_0);
int32_t L_1 = VirtFuncInvoker0< int32_t >::Invoke(25 /* System.Int32 System.Text.Encoding::get_CodePage() */, 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.Object System.Text.InternalEncoderBestFitFallbackBuffer::get_InternalSyncObject()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * InternalEncoderBestFitFallbackBuffer_get_InternalSyncObject_m07257512FD952E191F4C1A480BB8F2B43D3CEA21 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEncoderBestFitFallbackBuffer_get_InternalSyncObject_m07257512FD952E191F4C1A480BB8F2B43D3CEA21_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject * V_0 = NULL;
{
RuntimeObject * L_0 = ((InternalEncoderBestFitFallbackBuffer_t8A9165EBB478F5F06CA6F3D170BC17B3A342EDE3_StaticFields*)il2cpp_codegen_static_fields_for(InternalEncoderBestFitFallbackBuffer_t8A9165EBB478F5F06CA6F3D170BC17B3A342EDE3_il2cpp_TypeInfo_var))->get_s_InternalSyncObject_11();
if (L_0)
{
goto IL_001a;
}
}
{
RuntimeObject * L_1 = (RuntimeObject *)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(L_1, /*hidden argument*/NULL);
V_0 = L_1;
RuntimeObject * L_2 = V_0;
InterlockedCompareExchangeImpl<RuntimeObject *>((RuntimeObject **)(((InternalEncoderBestFitFallbackBuffer_t8A9165EBB478F5F06CA6F3D170BC17B3A342EDE3_StaticFields*)il2cpp_codegen_static_fields_for(InternalEncoderBestFitFallbackBuffer_t8A9165EBB478F5F06CA6F3D170BC17B3A342EDE3_il2cpp_TypeInfo_var))->get_address_of_s_InternalSyncObject_11()), L_2, NULL);
}
IL_001a:
{
RuntimeObject * L_3 = ((InternalEncoderBestFitFallbackBuffer_t8A9165EBB478F5F06CA6F3D170BC17B3A342EDE3_StaticFields*)il2cpp_codegen_static_fields_for(InternalEncoderBestFitFallbackBuffer_t8A9165EBB478F5F06CA6F3D170BC17B3A342EDE3_il2cpp_TypeInfo_var))->get_s_InternalSyncObject_11();
return L_3;
}
}
// System.Void System.Text.InternalEncoderBestFitFallbackBuffer::.ctor(System.Text.InternalEncoderBestFitFallback)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEncoderBestFitFallbackBuffer__ctor_m0446A53228519814A3BC54A1F6756E21EC2729B5 (InternalEncoderBestFitFallbackBuffer_t8A9165EBB478F5F06CA6F3D170BC17B3A342EDE3 * __this, InternalEncoderBestFitFallback_tE5EF81259A780E6F8990218A8E46D41B5BCE56F3 * ___fallback0, const RuntimeMethod* method)
{
RuntimeObject * 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);
{
__this->set_iCount_9((-1));
EncoderFallbackBuffer__ctor_mE3698942F859D99529557619E751C18775FD49E9(__this, /*hidden argument*/NULL);
InternalEncoderBestFitFallback_tE5EF81259A780E6F8990218A8E46D41B5BCE56F3 * L_0 = ___fallback0;
__this->set_oFallback_8(L_0);
InternalEncoderBestFitFallback_tE5EF81259A780E6F8990218A8E46D41B5BCE56F3 * L_1 = __this->get_oFallback_8();
NullCheck(L_1);
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_2 = L_1->get_arrayBestFit_5();
if (L_2)
{
goto IL_0060;
}
}
{
RuntimeObject * L_3 = InternalEncoderBestFitFallbackBuffer_get_InternalSyncObject_m07257512FD952E191F4C1A480BB8F2B43D3CEA21(/*hidden argument*/NULL);
V_0 = L_3;
V_1 = (bool)0;
}
IL_0029:
try
{ // begin try (depth: 1)
{
RuntimeObject * L_4 = V_0;
Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(L_4, (bool*)(&V_1), /*hidden argument*/NULL);
InternalEncoderBestFitFallback_tE5EF81259A780E6F8990218A8E46D41B5BCE56F3 * L_5 = __this->get_oFallback_8();
NullCheck(L_5);
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_6 = L_5->get_arrayBestFit_5();
if (L_6)
{
goto IL_0054;
}
}
IL_003e:
{
InternalEncoderBestFitFallback_tE5EF81259A780E6F8990218A8E46D41B5BCE56F3 * L_7 = __this->get_oFallback_8();
InternalEncoderBestFitFallback_tE5EF81259A780E6F8990218A8E46D41B5BCE56F3 * L_8 = ___fallback0;
NullCheck(L_8);
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_9 = L_8->get_encoding_4();
NullCheck(L_9);
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_10 = VirtFuncInvoker0< CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* >::Invoke(32 /* System.Char[] System.Text.Encoding::GetBestFitUnicodeToBytesData() */, L_9);
NullCheck(L_7);
L_7->set_arrayBestFit_5(L_10);
}
IL_0054:
{
IL2CPP_LEAVE(0x60, FINALLY_0056);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0056;
}
FINALLY_0056:
{ // begin finally (depth: 1)
{
bool L_11 = V_1;
if (!L_11)
{
goto IL_005f;
}
}
IL_0059:
{
RuntimeObject * L_12 = V_0;
Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_12, /*hidden argument*/NULL);
}
IL_005f:
{
IL2CPP_END_FINALLY(86)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(86)
{
IL2CPP_JUMP_TBL(0x60, IL_0060)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0060:
{
return;
}
}
// System.Boolean System.Text.InternalEncoderBestFitFallbackBuffer::Fallback(System.Char,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEncoderBestFitFallbackBuffer_Fallback_m663125CD8F395CCB5C12C7F293FEB8795837E450 (InternalEncoderBestFitFallbackBuffer_t8A9165EBB478F5F06CA6F3D170BC17B3A342EDE3 * __this, Il2CppChar ___charUnknown0, int32_t ___index1, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = 1;
V_0 = L_0;
__this->set_iSize_10(L_0);
int32_t L_1 = V_0;
__this->set_iCount_9(L_1);
Il2CppChar L_2 = ___charUnknown0;
Il2CppChar L_3 = InternalEncoderBestFitFallbackBuffer_TryBestFit_m4BC29FFF78F074AB58EBD2247EAA801205C8F5E7(__this, L_2, /*hidden argument*/NULL);
__this->set_cBestFit_7(L_3);
Il2CppChar L_4 = __this->get_cBestFit_7();
if (L_4)
{
goto IL_002d;
}
}
{
__this->set_cBestFit_7(((int32_t)63));
}
IL_002d:
{
return (bool)1;
}
}
// System.Boolean System.Text.InternalEncoderBestFitFallbackBuffer::Fallback(System.Char,System.Char,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEncoderBestFitFallbackBuffer_Fallback_mE0AEEE10F3131D945B3CDF7F111E58B684807282 (InternalEncoderBestFitFallbackBuffer_t8A9165EBB478F5F06CA6F3D170BC17B3A342EDE3 * __this, Il2CppChar ___charUnknownHigh0, Il2CppChar ___charUnknownLow1, int32_t ___index2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (InternalEncoderBestFitFallbackBuffer_Fallback_mE0AEEE10F3131D945B3CDF7F111E58B684807282_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
Il2CppChar L_0 = ___charUnknownHigh0;
IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var);
bool L_1 = Char_IsHighSurrogate_m64C60C09A8561520E43C8527D3DC38FF97E6274D(L_0, /*hidden argument*/NULL);
if (L_1)
{
goto IL_003d;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)2);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = L_2;
int32_t L_4 = ((int32_t)55296);
RuntimeObject * L_5 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_4);
NullCheck(L_3);
ArrayElementTypeCheck (L_3, L_5);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_5);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_6 = L_3;
int32_t L_7 = ((int32_t)56319);
RuntimeObject * L_8 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_7);
NullCheck(L_6);
ArrayElementTypeCheck (L_6, L_8);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_8);
String_t* L_9 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteralA980EEDA49322EB9BE88B6480B2BE63B70186B1E, L_6, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_10 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_10, _stringLiteralA6738FE7E06CA51E1F969D48582951374F467129, L_9, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, InternalEncoderBestFitFallbackBuffer_Fallback_mE0AEEE10F3131D945B3CDF7F111E58B684807282_RuntimeMethod_var);
}
IL_003d:
{
Il2CppChar L_11 = ___charUnknownLow1;
IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var);
bool L_12 = Char_IsLowSurrogate_m11EF790BE9683BDF04022FD055104AE7A22A6A9C(L_11, /*hidden argument*/NULL);
if (L_12)
{
goto IL_007a;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_13 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)2);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_14 = L_13;
int32_t L_15 = ((int32_t)56320);
RuntimeObject * L_16 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_15);
NullCheck(L_14);
ArrayElementTypeCheck (L_14, L_16);
(L_14)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_16);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_17 = L_14;
int32_t L_18 = ((int32_t)57343);
RuntimeObject * L_19 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_18);
NullCheck(L_17);
ArrayElementTypeCheck (L_17, L_19);
(L_17)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_19);
String_t* L_20 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteralA980EEDA49322EB9BE88B6480B2BE63B70186B1E, L_17, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_21 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_21, _stringLiteral5578D8A7F74274702931BBEDBD2FC483A5E92E4B, L_20, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_21, InternalEncoderBestFitFallbackBuffer_Fallback_mE0AEEE10F3131D945B3CDF7F111E58B684807282_RuntimeMethod_var);
}
IL_007a:
{
__this->set_cBestFit_7(((int32_t)63));
int32_t L_22 = 2;
V_0 = L_22;
__this->set_iSize_10(L_22);
int32_t L_23 = V_0;
__this->set_iCount_9(L_23);
return (bool)1;
}
}
// System.Char System.Text.InternalEncoderBestFitFallbackBuffer::GetNextChar()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar InternalEncoderBestFitFallbackBuffer_GetNextChar_m7F2814EF4110563B0D2862FA0F90FB54049E8D84 (InternalEncoderBestFitFallbackBuffer_t8A9165EBB478F5F06CA6F3D170BC17B3A342EDE3 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_iCount_9();
__this->set_iCount_9(((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)1)));
int32_t L_1 = __this->get_iCount_9();
if ((((int32_t)L_1) >= ((int32_t)0)))
{
goto IL_0019;
}
}
{
return 0;
}
IL_0019:
{
int32_t L_2 = __this->get_iCount_9();
if ((!(((uint32_t)L_2) == ((uint32_t)((int32_t)2147483647LL)))))
{
goto IL_002f;
}
}
{
__this->set_iCount_9((-1));
return 0;
}
IL_002f:
{
Il2CppChar L_3 = __this->get_cBestFit_7();
return L_3;
}
}
// System.Boolean System.Text.InternalEncoderBestFitFallbackBuffer::MovePrevious()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalEncoderBestFitFallbackBuffer_MovePrevious_m01F1272790435CEB01EDDBBBBFC64B13B0DE93B1 (InternalEncoderBestFitFallbackBuffer_t8A9165EBB478F5F06CA6F3D170BC17B3A342EDE3 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_iCount_9();
if ((((int32_t)L_0) < ((int32_t)0)))
{
goto IL_0017;
}
}
{
int32_t L_1 = __this->get_iCount_9();
__this->set_iCount_9(((int32_t)il2cpp_codegen_add((int32_t)L_1, (int32_t)1)));
}
IL_0017:
{
int32_t L_2 = __this->get_iCount_9();
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0032;
}
}
{
int32_t L_3 = __this->get_iCount_9();
int32_t L_4 = __this->get_iSize_10();
return (bool)((((int32_t)((((int32_t)L_3) > ((int32_t)L_4))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_0032:
{
return (bool)0;
}
}
// System.Int32 System.Text.InternalEncoderBestFitFallbackBuffer::get_Remaining()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InternalEncoderBestFitFallbackBuffer_get_Remaining_m3DBB432A8EDEF798636117F8E57704228BCCEA0A (InternalEncoderBestFitFallbackBuffer_t8A9165EBB478F5F06CA6F3D170BC17B3A342EDE3 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_iCount_9();
if ((((int32_t)L_0) > ((int32_t)0)))
{
goto IL_000b;
}
}
{
return 0;
}
IL_000b:
{
int32_t L_1 = __this->get_iCount_9();
return L_1;
}
}
// System.Void System.Text.InternalEncoderBestFitFallbackBuffer::Reset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalEncoderBestFitFallbackBuffer_Reset_m9B1D3171D86E82454CB082451FD5C709FCDEFC2A (InternalEncoderBestFitFallbackBuffer_t8A9165EBB478F5F06CA6F3D170BC17B3A342EDE3 * __this, const RuntimeMethod* method)
{
{
__this->set_iCount_9((-1));
((EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C *)__this)->set_charStart_0((Il2CppChar*)(((uintptr_t)0)));
((EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C *)__this)->set_bFallingBack_5((bool)0);
return;
}
}
// System.Char System.Text.InternalEncoderBestFitFallbackBuffer::TryBestFit(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar InternalEncoderBestFitFallbackBuffer_TryBestFit_m4BC29FFF78F074AB58EBD2247EAA801205C8F5E7 (InternalEncoderBestFitFallbackBuffer_t8A9165EBB478F5F06CA6F3D170BC17B3A342EDE3 * __this, Il2CppChar ___cUnknown0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
int32_t V_3 = 0;
Il2CppChar V_4 = 0x0;
{
V_0 = 0;
InternalEncoderBestFitFallback_tE5EF81259A780E6F8990218A8E46D41B5BCE56F3 * L_0 = __this->get_oFallback_8();
NullCheck(L_0);
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_1 = L_0->get_arrayBestFit_5();
NullCheck(L_1);
V_1 = (((int32_t)((int32_t)(((RuntimeArray*)L_1)->max_length))));
goto IL_004d;
}
IL_0012:
{
int32_t L_2 = V_3;
int32_t L_3 = V_0;
V_2 = ((int32_t)((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)((int32_t)L_2/(int32_t)2)), (int32_t)L_3))&(int32_t)((int32_t)65534)));
InternalEncoderBestFitFallback_tE5EF81259A780E6F8990218A8E46D41B5BCE56F3 * L_4 = __this->get_oFallback_8();
NullCheck(L_4);
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_5 = L_4->get_arrayBestFit_5();
int32_t L_6 = V_2;
NullCheck(L_5);
int32_t L_7 = L_6;
uint16_t L_8 = (uint16_t)(L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7));
V_4 = L_8;
Il2CppChar L_9 = V_4;
Il2CppChar L_10 = ___cUnknown0;
if ((!(((uint32_t)L_9) == ((uint32_t)L_10))))
{
goto IL_0042;
}
}
{
InternalEncoderBestFitFallback_tE5EF81259A780E6F8990218A8E46D41B5BCE56F3 * L_11 = __this->get_oFallback_8();
NullCheck(L_11);
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_12 = L_11->get_arrayBestFit_5();
int32_t L_13 = V_2;
NullCheck(L_12);
int32_t L_14 = ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1));
uint16_t L_15 = (uint16_t)(L_12)->GetAt(static_cast<il2cpp_array_size_t>(L_14));
return L_15;
}
IL_0042:
{
Il2CppChar L_16 = V_4;
Il2CppChar L_17 = ___cUnknown0;
if ((((int32_t)L_16) >= ((int32_t)L_17)))
{
goto IL_004b;
}
}
{
int32_t L_18 = V_2;
V_0 = L_18;
goto IL_004d;
}
IL_004b:
{
int32_t L_19 = V_2;
V_1 = L_19;
}
IL_004d:
{
int32_t L_20 = V_1;
int32_t L_21 = V_0;
int32_t L_22 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_20, (int32_t)L_21));
V_3 = L_22;
if ((((int32_t)L_22) > ((int32_t)6)))
{
goto IL_0012;
}
}
{
int32_t L_23 = V_0;
V_2 = L_23;
goto IL_007d;
}
IL_0059:
{
InternalEncoderBestFitFallback_tE5EF81259A780E6F8990218A8E46D41B5BCE56F3 * L_24 = __this->get_oFallback_8();
NullCheck(L_24);
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_25 = L_24->get_arrayBestFit_5();
int32_t L_26 = V_2;
NullCheck(L_25);
int32_t L_27 = L_26;
uint16_t L_28 = (uint16_t)(L_25)->GetAt(static_cast<il2cpp_array_size_t>(L_27));
Il2CppChar L_29 = ___cUnknown0;
if ((!(((uint32_t)L_28) == ((uint32_t)L_29))))
{
goto IL_0079;
}
}
{
InternalEncoderBestFitFallback_tE5EF81259A780E6F8990218A8E46D41B5BCE56F3 * L_30 = __this->get_oFallback_8();
NullCheck(L_30);
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_31 = L_30->get_arrayBestFit_5();
int32_t L_32 = V_2;
NullCheck(L_31);
int32_t L_33 = ((int32_t)il2cpp_codegen_add((int32_t)L_32, (int32_t)1));
uint16_t L_34 = (uint16_t)(L_31)->GetAt(static_cast<il2cpp_array_size_t>(L_33));
return L_34;
}
IL_0079:
{
int32_t L_35 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_35, (int32_t)2));
}
IL_007d:
{
int32_t L_36 = V_2;
int32_t L_37 = V_1;
if ((((int32_t)L_36) < ((int32_t)L_37)))
{
goto IL_0059;
}
}
{
return 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.Text.Latin1Encoding::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Latin1Encoding__ctor_mCA519590D0ED43A343B7D00D546F83AC003E7FC5 (Latin1Encoding_tC026E9CCC23C3A25568FF02B75F937DB388DC9E7 * __this, const RuntimeMethod* method)
{
{
EncodingNLS__ctor_mBB608BD3E5EEC3B10BE1D10B20EF40D4923A52D6(__this, ((int32_t)28591), /*hidden argument*/NULL);
return;
}
}
// System.Void System.Text.Latin1Encoding::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Latin1Encoding__ctor_m536FB276C9962D1A8FC8A29503D1841557FF6A7D (Latin1Encoding_tC026E9CCC23C3A25568FF02B75F937DB388DC9E7 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method)
{
{
EncodingNLS__ctor_mBB608BD3E5EEC3B10BE1D10B20EF40D4923A52D6(__this, ((int32_t)28591), /*hidden argument*/NULL);
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0;
StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_1 = ___context1;
Encoding_DeserializeEncoding_m69F4C52BF07039A20AA9E72F9CB7803862D10B44(__this, L_0, L_1, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Text.Latin1Encoding::System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Latin1Encoding_System_Runtime_Serialization_ISerializable_GetObjectData_m10ED95D4268DCB8DA51492C630A9FA00F13AD61C (Latin1Encoding_tC026E9CCC23C3A25568FF02B75F937DB388DC9E7 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Latin1Encoding_System_Runtime_Serialization_ISerializable_GetObjectData_m10ED95D4268DCB8DA51492C630A9FA00F13AD61C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0;
StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_1 = ___context1;
Encoding_SerializeEncoding_m5F127574AC8568AAE4E93246ECA908E7D384131D(__this, L_0, L_1, /*hidden argument*/NULL);
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_2 = ___info0;
NullCheck(L_2);
SerializationInfo_AddValue_m7C73917D9DC4B8FE4AFEF4BA8EBEDAB046A8D0BD(L_2, _stringLiteral803BC706433955BEFB65FFB4F485FE82A19FAD95, 1, /*hidden argument*/NULL);
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_3 = ___info0;
int32_t L_4 = VirtFuncInvoker0< int32_t >::Invoke(25 /* System.Int32 System.Text.Encoding::get_CodePage() */, __this);
NullCheck(L_3);
SerializationInfo_AddValue_m7C73917D9DC4B8FE4AFEF4BA8EBEDAB046A8D0BD(L_3, _stringLiteralB3B9137B4F1F0982964916EA57B8ACA87A7E4284, L_4, /*hidden argument*/NULL);
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_5 = ___info0;
NullCheck(L_5);
SerializationInfo_AddValue_mC9D1E16476E24E1AFE7C59368D3BC0B35F64FBC6(L_5, _stringLiteralC9B08AB49A91B1E8B22BDF58F1089D18D3B4B43B, NULL, /*hidden argument*/NULL);
return;
}
}
// System.Int32 System.Text.Latin1Encoding::GetByteCount(System.Char*,System.Int32,System.Text.EncoderNLS)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Latin1Encoding_GetByteCount_m74213E435664F3679804DD58FDC0416AE9EEFAC9 (Latin1Encoding_tC026E9CCC23C3A25568FF02B75F937DB388DC9E7 * __this, Il2CppChar* ___chars0, int32_t ___charCount1, EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * ___encoder2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Latin1Encoding_GetByteCount_m74213E435664F3679804DD58FDC0416AE9EEFAC9_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Il2CppChar V_0 = 0x0;
EncoderReplacementFallback_tC2E8A94C82BBF7A4CFC8E3FDBA8A381DCF29F998 * V_1 = NULL;
int32_t V_2 = 0;
Il2CppChar* V_3 = NULL;
EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * V_4 = NULL;
Il2CppChar V_5 = 0x0;
int32_t G_B23_0 = 0;
{
V_0 = 0;
EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * L_0 = ___encoder2;
if (!L_0)
{
goto IL_001a;
}
}
{
EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * L_1 = ___encoder2;
NullCheck(L_1);
Il2CppChar L_2 = L_1->get_charLeftOver_2();
V_0 = L_2;
EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * L_3 = ___encoder2;
NullCheck(L_3);
EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * L_4 = Encoder_get_Fallback_m8DB0FF2836429351EC5645B2B007982CE458632A_inline(L_3, /*hidden argument*/NULL);
V_1 = ((EncoderReplacementFallback_tC2E8A94C82BBF7A4CFC8E3FDBA8A381DCF29F998 *)IsInstSealed((RuntimeObject*)L_4, EncoderReplacementFallback_tC2E8A94C82BBF7A4CFC8E3FDBA8A381DCF29F998_il2cpp_TypeInfo_var));
goto IL_0026;
}
IL_001a:
{
EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * L_5 = Encoding_get_EncoderFallback_m56A241904105944473545473FA20E07BF52B1885_inline(__this, /*hidden argument*/NULL);
V_1 = ((EncoderReplacementFallback_tC2E8A94C82BBF7A4CFC8E3FDBA8A381DCF29F998 *)IsInstSealed((RuntimeObject*)L_5, EncoderReplacementFallback_tC2E8A94C82BBF7A4CFC8E3FDBA8A381DCF29F998_il2cpp_TypeInfo_var));
}
IL_0026:
{
EncoderReplacementFallback_tC2E8A94C82BBF7A4CFC8E3FDBA8A381DCF29F998 * L_6 = V_1;
if (!L_6)
{
goto IL_003d;
}
}
{
EncoderReplacementFallback_tC2E8A94C82BBF7A4CFC8E3FDBA8A381DCF29F998 * L_7 = V_1;
NullCheck(L_7);
int32_t L_8 = VirtFuncInvoker0< int32_t >::Invoke(5 /* System.Int32 System.Text.EncoderFallback::get_MaxCharCount() */, L_7);
if ((!(((uint32_t)L_8) == ((uint32_t)1))))
{
goto IL_003d;
}
}
{
Il2CppChar L_9 = V_0;
if ((((int32_t)L_9) <= ((int32_t)0)))
{
goto IL_003b;
}
}
{
int32_t L_10 = ___charCount1;
___charCount1 = ((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1));
}
IL_003b:
{
int32_t L_11 = ___charCount1;
return L_11;
}
IL_003d:
{
V_2 = 0;
Il2CppChar* L_12 = ___chars0;
int32_t L_13 = ___charCount1;
V_3 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_12, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_13)), (int32_t)2))));
V_4 = (EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C *)NULL;
Il2CppChar L_14 = V_0;
if ((((int32_t)L_14) <= ((int32_t)0)))
{
goto IL_00c3;
}
}
{
EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * L_15 = ___encoder2;
NullCheck(L_15);
EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * L_16 = Encoder_get_FallbackBuffer_m8E15109A9E24221308BA3C7BFEB622C417696445(L_15, /*hidden argument*/NULL);
V_4 = L_16;
EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * L_17 = V_4;
Il2CppChar* L_18 = ___chars0;
Il2CppChar* L_19 = V_3;
EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * L_20 = ___encoder2;
NullCheck(L_17);
EncoderFallbackBuffer_InternalInitialize_m177C2BFBE6958ABCC948A279D30E398911C18E66(L_17, (Il2CppChar*)(Il2CppChar*)L_18, (Il2CppChar*)(Il2CppChar*)L_19, L_20, (bool)0, /*hidden argument*/NULL);
EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * L_21 = V_4;
Il2CppChar L_22 = V_0;
NullCheck(L_21);
VirtFuncInvoker2< bool, Il2CppChar, Il2CppChar** >::Invoke(10 /* System.Boolean System.Text.EncoderFallbackBuffer::InternalFallback(System.Char,System.Char*&) */, L_21, L_22, (Il2CppChar**)(&___chars0));
goto IL_00c3;
}
IL_006d:
{
Il2CppChar L_23 = V_5;
if (L_23)
{
goto IL_007a;
}
}
{
Il2CppChar* L_24 = ___chars0;
int32_t L_25 = *((uint16_t*)L_24);
V_5 = L_25;
Il2CppChar* L_26 = ___chars0;
___chars0 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_26, (int32_t)2));
}
IL_007a:
{
Il2CppChar L_27 = V_5;
if ((((int32_t)L_27) <= ((int32_t)((int32_t)255))))
{
goto IL_00bf;
}
}
{
EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * L_28 = V_4;
if (L_28)
{
goto IL_00b1;
}
}
{
EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * L_29 = ___encoder2;
if (L_29)
{
goto IL_0099;
}
}
{
EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * L_30 = ((Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 *)__this)->get_encoderFallback_13();
NullCheck(L_30);
EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * L_31 = VirtFuncInvoker0< EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * >::Invoke(4 /* System.Text.EncoderFallbackBuffer System.Text.EncoderFallback::CreateFallbackBuffer() */, L_30);
V_4 = L_31;
goto IL_00a1;
}
IL_0099:
{
EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * L_32 = ___encoder2;
NullCheck(L_32);
EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * L_33 = Encoder_get_FallbackBuffer_m8E15109A9E24221308BA3C7BFEB622C417696445(L_32, /*hidden argument*/NULL);
V_4 = L_33;
}
IL_00a1:
{
EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * L_34 = V_4;
Il2CppChar* L_35 = V_3;
int32_t L_36 = ___charCount1;
Il2CppChar* L_37 = V_3;
EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * L_38 = ___encoder2;
NullCheck(L_34);
EncoderFallbackBuffer_InternalInitialize_m177C2BFBE6958ABCC948A279D30E398911C18E66(L_34, (Il2CppChar*)(Il2CppChar*)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_35, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_36)), (int32_t)2)))), (Il2CppChar*)(Il2CppChar*)L_37, L_38, (bool)0, /*hidden argument*/NULL);
}
IL_00b1:
{
EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * L_39 = V_4;
Il2CppChar L_40 = V_5;
NullCheck(L_39);
VirtFuncInvoker2< bool, Il2CppChar, Il2CppChar** >::Invoke(10 /* System.Boolean System.Text.EncoderFallbackBuffer::InternalFallback(System.Char,System.Char*&) */, L_39, L_40, (Il2CppChar**)(&___chars0));
goto IL_00c3;
}
IL_00bf:
{
int32_t L_41 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_41, (int32_t)1));
}
IL_00c3:
{
EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * L_42 = V_4;
if (!L_42)
{
goto IL_00d0;
}
}
{
EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * L_43 = V_4;
NullCheck(L_43);
Il2CppChar L_44 = EncoderFallbackBuffer_InternalGetNextChar_mC1D11F50B25566F6B87974A3BCF1066C025A8CAF(L_43, /*hidden argument*/NULL);
G_B23_0 = ((int32_t)(L_44));
goto IL_00d1;
}
IL_00d0:
{
G_B23_0 = 0;
}
IL_00d1:
{
int32_t L_45 = G_B23_0;
V_5 = L_45;
if (L_45)
{
goto IL_006d;
}
}
{
Il2CppChar* L_46 = ___chars0;
Il2CppChar* L_47 = V_3;
if ((!(((uintptr_t)L_46) >= ((uintptr_t)L_47))))
{
goto IL_006d;
}
}
{
int32_t L_48 = V_2;
return L_48;
}
}
// System.Int32 System.Text.Latin1Encoding::GetBytes(System.Char*,System.Int32,System.Byte*,System.Int32,System.Text.EncoderNLS)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Latin1Encoding_GetBytes_m28F54ACA866F4892816A78841E4E01E6EFACF46A (Latin1Encoding_tC026E9CCC23C3A25568FF02B75F937DB388DC9E7 * __this, Il2CppChar* ___chars0, int32_t ___charCount1, uint8_t* ___bytes2, int32_t ___byteCount3, EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * ___encoder4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Latin1Encoding_GetBytes_m28F54ACA866F4892816A78841E4E01E6EFACF46A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Il2CppChar V_0 = 0x0;
EncoderReplacementFallback_tC2E8A94C82BBF7A4CFC8E3FDBA8A381DCF29F998 * V_1 = NULL;
Il2CppChar* V_2 = NULL;
uint8_t* V_3 = NULL;
Il2CppChar* V_4 = NULL;
uint8_t* V_5 = NULL;
EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * V_6 = NULL;
Il2CppChar V_7 = 0x0;
Il2CppChar V_8 = 0x0;
Il2CppChar V_9 = 0x0;
int32_t G_B41_0 = 0;
{
V_0 = 0;
V_1 = (EncoderReplacementFallback_tC2E8A94C82BBF7A4CFC8E3FDBA8A381DCF29F998 *)NULL;
EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * L_0 = ___encoder4;
if (!L_0)
{
goto IL_001f;
}
}
{
EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * L_1 = ___encoder4;
NullCheck(L_1);
Il2CppChar L_2 = L_1->get_charLeftOver_2();
V_0 = L_2;
EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * L_3 = ___encoder4;
NullCheck(L_3);
EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * L_4 = Encoder_get_Fallback_m8DB0FF2836429351EC5645B2B007982CE458632A_inline(L_3, /*hidden argument*/NULL);
V_1 = ((EncoderReplacementFallback_tC2E8A94C82BBF7A4CFC8E3FDBA8A381DCF29F998 *)IsInstSealed((RuntimeObject*)L_4, EncoderReplacementFallback_tC2E8A94C82BBF7A4CFC8E3FDBA8A381DCF29F998_il2cpp_TypeInfo_var));
goto IL_002b;
}
IL_001f:
{
EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * L_5 = Encoding_get_EncoderFallback_m56A241904105944473545473FA20E07BF52B1885_inline(__this, /*hidden argument*/NULL);
V_1 = ((EncoderReplacementFallback_tC2E8A94C82BBF7A4CFC8E3FDBA8A381DCF29F998 *)IsInstSealed((RuntimeObject*)L_5, EncoderReplacementFallback_tC2E8A94C82BBF7A4CFC8E3FDBA8A381DCF29F998_il2cpp_TypeInfo_var));
}
IL_002b:
{
Il2CppChar* L_6 = ___chars0;
int32_t L_7 = ___charCount1;
V_2 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_6, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_7)), (int32_t)2))));
uint8_t* L_8 = ___bytes2;
V_3 = (uint8_t*)L_8;
Il2CppChar* L_9 = ___chars0;
V_4 = (Il2CppChar*)L_9;
EncoderReplacementFallback_tC2E8A94C82BBF7A4CFC8E3FDBA8A381DCF29F998 * L_10 = V_1;
if (!L_10)
{
goto IL_00ef;
}
}
{
EncoderReplacementFallback_tC2E8A94C82BBF7A4CFC8E3FDBA8A381DCF29F998 * L_11 = V_1;
NullCheck(L_11);
int32_t L_12 = VirtFuncInvoker0< int32_t >::Invoke(5 /* System.Int32 System.Text.EncoderFallback::get_MaxCharCount() */, L_11);
if ((!(((uint32_t)L_12) == ((uint32_t)1))))
{
goto IL_00ef;
}
}
{
EncoderReplacementFallback_tC2E8A94C82BBF7A4CFC8E3FDBA8A381DCF29F998 * L_13 = V_1;
NullCheck(L_13);
String_t* L_14 = EncoderReplacementFallback_get_DefaultString_m309F22B8DC7DFCFA07DB9B21498454B935B2BBB0_inline(L_13, /*hidden argument*/NULL);
NullCheck(L_14);
Il2CppChar L_15 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_14, 0, /*hidden argument*/NULL);
V_8 = L_15;
Il2CppChar L_16 = V_8;
if ((((int32_t)L_16) > ((int32_t)((int32_t)255))))
{
goto IL_00ef;
}
}
{
Il2CppChar L_17 = V_0;
if ((((int32_t)L_17) <= ((int32_t)0)))
{
goto IL_0084;
}
}
{
int32_t L_18 = ___byteCount3;
if (L_18)
{
goto IL_0074;
}
}
{
EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * L_19 = ___encoder4;
Encoding_ThrowBytesOverflow_m5682F2E9AE50908018D6991C8764D4DB065092C2(__this, L_19, (bool)1, /*hidden argument*/NULL);
}
IL_0074:
{
uint8_t* L_20 = ___bytes2;
uint8_t* L_21 = (uint8_t*)L_20;
___bytes2 = (uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_21, (int32_t)1));
Il2CppChar L_22 = V_8;
*((int8_t*)L_21) = (int8_t)(((int32_t)((uint8_t)L_22)));
int32_t L_23 = ___byteCount3;
___byteCount3 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_23, (int32_t)1));
}
IL_0084:
{
int32_t L_24 = ___byteCount3;
int32_t L_25 = ___charCount1;
if ((((int32_t)L_24) >= ((int32_t)L_25)))
{
goto IL_00c8;
}
}
{
EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * L_26 = ___encoder4;
int32_t L_27 = ___byteCount3;
Encoding_ThrowBytesOverflow_m5682F2E9AE50908018D6991C8764D4DB065092C2(__this, L_26, (bool)((((int32_t)L_27) < ((int32_t)1))? 1 : 0), /*hidden argument*/NULL);
Il2CppChar* L_28 = ___chars0;
int32_t L_29 = ___byteCount3;
V_2 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_28, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_29)), (int32_t)2))));
goto IL_00c8;
}
IL_00a0:
{
Il2CppChar* L_30 = ___chars0;
Il2CppChar* L_31 = (Il2CppChar*)L_30;
___chars0 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_31, (int32_t)2));
int32_t L_32 = *((uint16_t*)L_31);
V_9 = L_32;
Il2CppChar L_33 = V_9;
if ((((int32_t)L_33) <= ((int32_t)((int32_t)255))))
{
goto IL_00be;
}
}
{
uint8_t* L_34 = ___bytes2;
uint8_t* L_35 = (uint8_t*)L_34;
___bytes2 = (uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_35, (int32_t)1));
Il2CppChar L_36 = V_8;
*((int8_t*)L_35) = (int8_t)(((int32_t)((uint8_t)L_36)));
goto IL_00c8;
}
IL_00be:
{
uint8_t* L_37 = ___bytes2;
uint8_t* L_38 = (uint8_t*)L_37;
___bytes2 = (uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_38, (int32_t)1));
Il2CppChar L_39 = V_9;
*((int8_t*)L_38) = (int8_t)(((int32_t)((uint8_t)L_39)));
}
IL_00c8:
{
Il2CppChar* L_40 = ___chars0;
Il2CppChar* L_41 = V_2;
if ((!(((uintptr_t)L_40) >= ((uintptr_t)L_41))))
{
goto IL_00a0;
}
}
{
EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * L_42 = ___encoder4;
if (!L_42)
{
goto IL_00e7;
}
}
{
EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * L_43 = ___encoder4;
NullCheck(L_43);
L_43->set_charLeftOver_2(0);
EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * L_44 = ___encoder4;
Il2CppChar* L_45 = ___chars0;
Il2CppChar* L_46 = V_4;
NullCheck(L_44);
L_44->set_m_charsUsed_6((((int32_t)((int32_t)(((int64_t)((int64_t)(intptr_t)((Il2CppChar*)((intptr_t)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_45, (intptr_t)L_46))/(int32_t)2)))))))));
}
IL_00e7:
{
uint8_t* L_47 = ___bytes2;
uint8_t* L_48 = V_3;
return (((int32_t)((int32_t)(((int64_t)((int64_t)(intptr_t)((uint8_t*)((intptr_t)((uint8_t*)il2cpp_codegen_subtract((intptr_t)L_47, (intptr_t)L_48))/(int32_t)1))))))));
}
IL_00ef:
{
uint8_t* L_49 = ___bytes2;
int32_t L_50 = ___byteCount3;
V_5 = (uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_49, (int32_t)L_50));
V_6 = (EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C *)NULL;
Il2CppChar L_51 = V_0;
if ((((int32_t)L_51) <= ((int32_t)0)))
{
goto IL_01f0;
}
}
{
EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * L_52 = ___encoder4;
NullCheck(L_52);
EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * L_53 = Encoder_get_FallbackBuffer_m8E15109A9E24221308BA3C7BFEB622C417696445(L_52, /*hidden argument*/NULL);
V_6 = L_53;
EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * L_54 = V_6;
Il2CppChar* L_55 = ___chars0;
Il2CppChar* L_56 = V_2;
EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * L_57 = ___encoder4;
NullCheck(L_54);
EncoderFallbackBuffer_InternalInitialize_m177C2BFBE6958ABCC948A279D30E398911C18E66(L_54, (Il2CppChar*)(Il2CppChar*)L_55, (Il2CppChar*)(Il2CppChar*)L_56, L_57, (bool)1, /*hidden argument*/NULL);
EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * L_58 = V_6;
Il2CppChar L_59 = V_0;
NullCheck(L_58);
VirtFuncInvoker2< bool, Il2CppChar, Il2CppChar** >::Invoke(10 /* System.Boolean System.Text.EncoderFallbackBuffer::InternalFallback(System.Char,System.Char*&) */, L_58, L_59, (Il2CppChar**)(&___chars0));
EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * L_60 = V_6;
NullCheck(L_60);
int32_t L_61 = VirtFuncInvoker0< int32_t >::Invoke(8 /* System.Int32 System.Text.EncoderFallbackBuffer::get_Remaining() */, L_60);
uint8_t* L_62 = V_5;
uint8_t* L_63 = ___bytes2;
if ((((int64_t)(((int64_t)((int64_t)L_61)))) <= ((int64_t)(((int64_t)((int64_t)(intptr_t)((uint8_t*)((intptr_t)((uint8_t*)il2cpp_codegen_subtract((intptr_t)L_62, (intptr_t)L_63))/(int32_t)1))))))))
{
goto IL_01f0;
}
}
{
EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * L_64 = ___encoder4;
Encoding_ThrowBytesOverflow_m5682F2E9AE50908018D6991C8764D4DB065092C2(__this, L_64, (bool)1, /*hidden argument*/NULL);
goto IL_01f0;
}
IL_0141:
{
Il2CppChar L_65 = V_7;
if (L_65)
{
goto IL_014e;
}
}
{
Il2CppChar* L_66 = ___chars0;
int32_t L_67 = *((uint16_t*)L_66);
V_7 = L_67;
Il2CppChar* L_68 = ___chars0;
___chars0 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_68, (int32_t)2));
}
IL_014e:
{
Il2CppChar L_69 = V_7;
if ((((int32_t)L_69) <= ((int32_t)((int32_t)255))))
{
goto IL_01c0;
}
}
{
EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * L_70 = V_6;
if (L_70)
{
goto IL_0188;
}
}
{
EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * L_71 = ___encoder4;
if (L_71)
{
goto IL_016e;
}
}
{
EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * L_72 = ((Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 *)__this)->get_encoderFallback_13();
NullCheck(L_72);
EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * L_73 = VirtFuncInvoker0< EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * >::Invoke(4 /* System.Text.EncoderFallbackBuffer System.Text.EncoderFallback::CreateFallbackBuffer() */, L_72);
V_6 = L_73;
goto IL_0177;
}
IL_016e:
{
EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * L_74 = ___encoder4;
NullCheck(L_74);
EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * L_75 = Encoder_get_FallbackBuffer_m8E15109A9E24221308BA3C7BFEB622C417696445(L_74, /*hidden argument*/NULL);
V_6 = L_75;
}
IL_0177:
{
EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * L_76 = V_6;
Il2CppChar* L_77 = V_2;
int32_t L_78 = ___charCount1;
Il2CppChar* L_79 = V_2;
EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * L_80 = ___encoder4;
NullCheck(L_76);
EncoderFallbackBuffer_InternalInitialize_m177C2BFBE6958ABCC948A279D30E398911C18E66(L_76, (Il2CppChar*)(Il2CppChar*)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_77, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_78)), (int32_t)2)))), (Il2CppChar*)(Il2CppChar*)L_79, L_80, (bool)1, /*hidden argument*/NULL);
}
IL_0188:
{
EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * L_81 = V_6;
Il2CppChar L_82 = V_7;
NullCheck(L_81);
VirtFuncInvoker2< bool, Il2CppChar, Il2CppChar** >::Invoke(10 /* System.Boolean System.Text.EncoderFallbackBuffer::InternalFallback(System.Char,System.Char*&) */, L_81, L_82, (Il2CppChar**)(&___chars0));
EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * L_83 = V_6;
NullCheck(L_83);
int32_t L_84 = VirtFuncInvoker0< int32_t >::Invoke(8 /* System.Int32 System.Text.EncoderFallbackBuffer::get_Remaining() */, L_83);
uint8_t* L_85 = V_5;
uint8_t* L_86 = ___bytes2;
if ((((int64_t)(((int64_t)((int64_t)L_84)))) <= ((int64_t)(((int64_t)((int64_t)(intptr_t)((uint8_t*)((intptr_t)((uint8_t*)il2cpp_codegen_subtract((intptr_t)L_85, (intptr_t)L_86))/(int32_t)1))))))))
{
goto IL_01f0;
}
}
{
Il2CppChar* L_87 = ___chars0;
___chars0 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_87, (int32_t)2));
EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * L_88 = V_6;
NullCheck(L_88);
EncoderFallbackBuffer_InternalReset_m9BF666E5A4160B892C3C334BABA75D150DF642E7(L_88, /*hidden argument*/NULL);
EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * L_89 = ___encoder4;
Il2CppChar* L_90 = ___chars0;
Il2CppChar* L_91 = V_4;
Encoding_ThrowBytesOverflow_m5682F2E9AE50908018D6991C8764D4DB065092C2(__this, L_89, (bool)((((intptr_t)L_90) == ((intptr_t)L_91))? 1 : 0), /*hidden argument*/NULL);
goto IL_020d;
}
IL_01c0:
{
uint8_t* L_92 = ___bytes2;
uint8_t* L_93 = V_5;
if ((!(((uintptr_t)L_92) >= ((uintptr_t)L_93))))
{
goto IL_01e6;
}
}
{
EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * L_94 = V_6;
if (!L_94)
{
goto IL_01d2;
}
}
{
EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * L_95 = V_6;
NullCheck(L_95);
bool L_96 = L_95->get_bFallingBack_5();
if (L_96)
{
goto IL_01d7;
}
}
IL_01d2:
{
Il2CppChar* L_97 = ___chars0;
___chars0 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_97, (int32_t)2));
}
IL_01d7:
{
EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * L_98 = ___encoder4;
Il2CppChar* L_99 = ___chars0;
Il2CppChar* L_100 = V_4;
Encoding_ThrowBytesOverflow_m5682F2E9AE50908018D6991C8764D4DB065092C2(__this, L_98, (bool)((((intptr_t)L_99) == ((intptr_t)L_100))? 1 : 0), /*hidden argument*/NULL);
goto IL_020d;
}
IL_01e6:
{
uint8_t* L_101 = ___bytes2;
Il2CppChar L_102 = V_7;
*((int8_t*)L_101) = (int8_t)(((int32_t)((uint8_t)L_102)));
uint8_t* L_103 = ___bytes2;
___bytes2 = (uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_103, (int32_t)1));
}
IL_01f0:
{
EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * L_104 = V_6;
if (!L_104)
{
goto IL_01fd;
}
}
{
EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * L_105 = V_6;
NullCheck(L_105);
Il2CppChar L_106 = EncoderFallbackBuffer_InternalGetNextChar_mC1D11F50B25566F6B87974A3BCF1066C025A8CAF(L_105, /*hidden argument*/NULL);
G_B41_0 = ((int32_t)(L_106));
goto IL_01fe;
}
IL_01fd:
{
G_B41_0 = 0;
}
IL_01fe:
{
int32_t L_107 = G_B41_0;
V_7 = L_107;
if (L_107)
{
goto IL_0141;
}
}
{
Il2CppChar* L_108 = ___chars0;
Il2CppChar* L_109 = V_2;
if ((!(((uintptr_t)L_108) >= ((uintptr_t)L_109))))
{
goto IL_0141;
}
}
IL_020d:
{
EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * L_110 = ___encoder4;
if (!L_110)
{
goto IL_0235;
}
}
{
EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * L_111 = V_6;
if (!L_111)
{
goto IL_0226;
}
}
{
EncoderFallbackBuffer_tE878BFB956A0F4A1D630C08CA42B170534A3FD5C * L_112 = V_6;
NullCheck(L_112);
bool L_113 = L_112->get_bUsedEncoder_4();
if (L_113)
{
goto IL_0226;
}
}
{
EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * L_114 = ___encoder4;
NullCheck(L_114);
L_114->set_charLeftOver_2(0);
}
IL_0226:
{
EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * L_115 = ___encoder4;
Il2CppChar* L_116 = ___chars0;
Il2CppChar* L_117 = V_4;
NullCheck(L_115);
L_115->set_m_charsUsed_6((((int32_t)((int32_t)(((int64_t)((int64_t)(intptr_t)((Il2CppChar*)((intptr_t)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_116, (intptr_t)L_117))/(int32_t)2)))))))));
}
IL_0235:
{
uint8_t* L_118 = ___bytes2;
uint8_t* L_119 = V_3;
return (((int32_t)((int32_t)(((int64_t)((int64_t)(intptr_t)((uint8_t*)((intptr_t)((uint8_t*)il2cpp_codegen_subtract((intptr_t)L_118, (intptr_t)L_119))/(int32_t)1))))))));
}
}
// System.Int32 System.Text.Latin1Encoding::GetCharCount(System.Byte*,System.Int32,System.Text.DecoderNLS)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Latin1Encoding_GetCharCount_mF6BAE8A706D8F0F9DF3038A8618777EF2FC54B1C (Latin1Encoding_tC026E9CCC23C3A25568FF02B75F937DB388DC9E7 * __this, uint8_t* ___bytes0, int32_t ___count1, DecoderNLS_tCDF0A810A2E2B738728A98BBB49F792E66BDF6CD * ___decoder2, const RuntimeMethod* method)
{
{
int32_t L_0 = ___count1;
return L_0;
}
}
// System.Int32 System.Text.Latin1Encoding::GetChars(System.Byte*,System.Int32,System.Char*,System.Int32,System.Text.DecoderNLS)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Latin1Encoding_GetChars_m58E0918802B1809662B123BA364693B82CE5A20C (Latin1Encoding_tC026E9CCC23C3A25568FF02B75F937DB388DC9E7 * __this, uint8_t* ___bytes0, int32_t ___byteCount1, Il2CppChar* ___chars2, int32_t ___charCount3, DecoderNLS_tCDF0A810A2E2B738728A98BBB49F792E66BDF6CD * ___decoder4, const RuntimeMethod* method)
{
uint8_t* V_0 = NULL;
{
int32_t L_0 = ___charCount3;
int32_t L_1 = ___byteCount1;
if ((((int32_t)L_0) >= ((int32_t)L_1)))
{
goto IL_0016;
}
}
{
DecoderNLS_tCDF0A810A2E2B738728A98BBB49F792E66BDF6CD * L_2 = ___decoder4;
int32_t L_3 = ___charCount3;
Encoding_ThrowCharsOverflow_m1D3B8B6DE4989398B02A75269278927A0A219CAC(__this, L_2, (bool)((((int32_t)L_3) < ((int32_t)1))? 1 : 0), /*hidden argument*/NULL);
int32_t L_4 = ___charCount3;
___byteCount1 = L_4;
}
IL_0016:
{
uint8_t* L_5 = ___bytes0;
int32_t L_6 = ___byteCount1;
V_0 = (uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_5, (int32_t)L_6));
goto IL_002a;
}
IL_001c:
{
Il2CppChar* L_7 = ___chars2;
uint8_t* L_8 = ___bytes0;
int32_t L_9 = *((uint8_t*)L_8);
*((int16_t*)L_7) = (int16_t)L_9;
Il2CppChar* L_10 = ___chars2;
___chars2 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_10, (int32_t)2));
uint8_t* L_11 = ___bytes0;
___bytes0 = (uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_11, (int32_t)1));
}
IL_002a:
{
uint8_t* L_12 = ___bytes0;
uint8_t* L_13 = V_0;
if ((!(((uintptr_t)L_12) >= ((uintptr_t)L_13))))
{
goto IL_001c;
}
}
{
DecoderNLS_tCDF0A810A2E2B738728A98BBB49F792E66BDF6CD * L_14 = ___decoder4;
if (!L_14)
{
goto IL_003a;
}
}
{
DecoderNLS_tCDF0A810A2E2B738728A98BBB49F792E66BDF6CD * L_15 = ___decoder4;
int32_t L_16 = ___byteCount1;
NullCheck(L_15);
L_15->set_m_bytesUsed_5(L_16);
}
IL_003a:
{
int32_t L_17 = ___byteCount1;
return L_17;
}
}
// System.Int32 System.Text.Latin1Encoding::GetMaxByteCount(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Latin1Encoding_GetMaxByteCount_m0CE8B6F601EA1FA86CE39AE75B5A526DDAC2A870 (Latin1Encoding_tC026E9CCC23C3A25568FF02B75F937DB388DC9E7 * __this, int32_t ___charCount0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Latin1Encoding_GetMaxByteCount_m0CE8B6F601EA1FA86CE39AE75B5A526DDAC2A870_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int64_t V_0 = 0;
{
int32_t L_0 = ___charCount0;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_2, _stringLiteralAB1A79FB2CBABAF9BE681B601509BD40528C11D8, L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Latin1Encoding_GetMaxByteCount_m0CE8B6F601EA1FA86CE39AE75B5A526DDAC2A870_RuntimeMethod_var);
}
IL_0019:
{
int32_t L_3 = ___charCount0;
V_0 = ((int64_t)il2cpp_codegen_add((int64_t)(((int64_t)((int64_t)L_3))), (int64_t)(((int64_t)((int64_t)1)))));
EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * L_4 = Encoding_get_EncoderFallback_m56A241904105944473545473FA20E07BF52B1885_inline(__this, /*hidden argument*/NULL);
NullCheck(L_4);
int32_t L_5 = VirtFuncInvoker0< int32_t >::Invoke(5 /* System.Int32 System.Text.EncoderFallback::get_MaxCharCount() */, L_4);
if ((((int32_t)L_5) <= ((int32_t)1)))
{
goto IL_003c;
}
}
{
int64_t L_6 = V_0;
EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * L_7 = Encoding_get_EncoderFallback_m56A241904105944473545473FA20E07BF52B1885_inline(__this, /*hidden argument*/NULL);
NullCheck(L_7);
int32_t L_8 = VirtFuncInvoker0< int32_t >::Invoke(5 /* System.Int32 System.Text.EncoderFallback::get_MaxCharCount() */, L_7);
V_0 = ((int64_t)il2cpp_codegen_multiply((int64_t)L_6, (int64_t)(((int64_t)((int64_t)L_8)))));
}
IL_003c:
{
int64_t L_9 = V_0;
if ((((int64_t)L_9) <= ((int64_t)(((int64_t)((int64_t)((int32_t)2147483647LL)))))))
{
goto IL_005a;
}
}
{
String_t* L_10 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral7C919B509EED4EF0BA0127F8EC8FE088356687B3, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_11 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_11, _stringLiteralAB1A79FB2CBABAF9BE681B601509BD40528C11D8, L_10, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, Latin1Encoding_GetMaxByteCount_m0CE8B6F601EA1FA86CE39AE75B5A526DDAC2A870_RuntimeMethod_var);
}
IL_005a:
{
int64_t L_12 = V_0;
return (((int32_t)((int32_t)L_12)));
}
}
// System.Int32 System.Text.Latin1Encoding::GetMaxCharCount(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Latin1Encoding_GetMaxCharCount_m3B568FB23C68F84F106572AA3CC052EE9B6E1D48 (Latin1Encoding_tC026E9CCC23C3A25568FF02B75F937DB388DC9E7 * __this, int32_t ___byteCount0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Latin1Encoding_GetMaxCharCount_m3B568FB23C68F84F106572AA3CC052EE9B6E1D48_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int64_t V_0 = 0;
{
int32_t L_0 = ___byteCount0;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_2, _stringLiteral278316CA5ED0FC3A0A92ED4DC8DA6CA9FB56DEBA, L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Latin1Encoding_GetMaxCharCount_m3B568FB23C68F84F106572AA3CC052EE9B6E1D48_RuntimeMethod_var);
}
IL_0019:
{
int32_t L_3 = ___byteCount0;
V_0 = (((int64_t)((int64_t)L_3)));
DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * L_4 = Encoding_get_DecoderFallback_m237581892E1C081234AFD800FCBC321C911EB657_inline(__this, /*hidden argument*/NULL);
NullCheck(L_4);
int32_t L_5 = VirtFuncInvoker0< int32_t >::Invoke(5 /* System.Int32 System.Text.DecoderFallback::get_MaxCharCount() */, L_4);
if ((((int32_t)L_5) <= ((int32_t)1)))
{
goto IL_0039;
}
}
{
int64_t L_6 = V_0;
DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * L_7 = Encoding_get_DecoderFallback_m237581892E1C081234AFD800FCBC321C911EB657_inline(__this, /*hidden argument*/NULL);
NullCheck(L_7);
int32_t L_8 = VirtFuncInvoker0< int32_t >::Invoke(5 /* System.Int32 System.Text.DecoderFallback::get_MaxCharCount() */, L_7);
V_0 = ((int64_t)il2cpp_codegen_multiply((int64_t)L_6, (int64_t)(((int64_t)((int64_t)L_8)))));
}
IL_0039:
{
int64_t L_9 = V_0;
if ((((int64_t)L_9) <= ((int64_t)(((int64_t)((int64_t)((int32_t)2147483647LL)))))))
{
goto IL_0057;
}
}
{
String_t* L_10 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralC94AEC48B21CADC5BB8B140753EE1FF89E29C7BC, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_11 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_11, _stringLiteral278316CA5ED0FC3A0A92ED4DC8DA6CA9FB56DEBA, L_10, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, Latin1Encoding_GetMaxCharCount_m3B568FB23C68F84F106572AA3CC052EE9B6E1D48_RuntimeMethod_var);
}
IL_0057:
{
int64_t L_12 = V_0;
return (((int32_t)((int32_t)L_12)));
}
}
// System.Char[] System.Text.Latin1Encoding::GetBestFitUnicodeToBytesData()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* Latin1Encoding_GetBestFitUnicodeToBytesData_m7849A960639E0F878D616C5E582D8D6A7A841CFD (Latin1Encoding_tC026E9CCC23C3A25568FF02B75F937DB388DC9E7 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Latin1Encoding_GetBestFitUnicodeToBytesData_m7849A960639E0F878D616C5E582D8D6A7A841CFD_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Latin1Encoding_tC026E9CCC23C3A25568FF02B75F937DB388DC9E7_il2cpp_TypeInfo_var);
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_0 = ((Latin1Encoding_tC026E9CCC23C3A25568FF02B75F937DB388DC9E7_StaticFields*)il2cpp_codegen_static_fields_for(Latin1Encoding_tC026E9CCC23C3A25568FF02B75F937DB388DC9E7_il2cpp_TypeInfo_var))->get_arrayCharBestFit_16();
return L_0;
}
}
// System.Void System.Text.Latin1Encoding::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Latin1Encoding__cctor_m5B1BF7E520244F62262D7E8849AC9B7BBB7781C4 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Latin1Encoding__cctor_m5B1BF7E520244F62262D7E8849AC9B7BBB7781C4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_0 = (CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)SZArrayNew(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2_il2cpp_TypeInfo_var, (uint32_t)((int32_t)604));
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_1 = L_0;
RuntimeFieldHandle_t844BDF00E8E6FE69D9AEAA7657F09018B864F4EF L_2 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t5BA0C21499B7A4F7CBCB87805E61EF52DF22771A____25CF935D2AE9EDF05DD75BCD47FF84D9255D6F6E_6_FieldInfo_var) };
RuntimeHelpers_InitializeArray_m29F50CDFEEE0AB868200291366253DD4737BC76A((RuntimeArray *)(RuntimeArray *)L_1, L_2, /*hidden argument*/NULL);
((Latin1Encoding_tC026E9CCC23C3A25568FF02B75F937DB388DC9E7_StaticFields*)il2cpp_codegen_static_fields_for(Latin1Encoding_tC026E9CCC23C3A25568FF02B75F937DB388DC9E7_il2cpp_TypeInfo_var))->set_arrayCharBestFit_16(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.UInt32 System.Text.Normalization::PropValue(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Normalization_PropValue_m74F5DC4C2FF35022E0473B8B6EBC83609E0D5511 (int32_t ___cp0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Normalization_PropValue_m74F5DC4C2FF35022E0473B8B6EBC83609E0D5511_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Normalization_t5DC806A630757AD1E908576E8B2EEB2A77BEC22E_il2cpp_TypeInfo_var);
uint8_t* L_0 = ((Normalization_t5DC806A630757AD1E908576E8B2EEB2A77BEC22E_StaticFields*)il2cpp_codegen_static_fields_for(Normalization_t5DC806A630757AD1E908576E8B2EEB2A77BEC22E_il2cpp_TypeInfo_var))->get_props_0();
int32_t L_1 = ___cp0;
IL2CPP_RUNTIME_CLASS_INIT(NormalizationTableUtil_t03190D7C1B6FF779D40EBEB0A5929DE24585DAA5_il2cpp_TypeInfo_var);
int32_t L_2 = NormalizationTableUtil_PropIdx_mF702C2D45497D6AC5D742B7BE831D10FBEF4ADCD(L_1, /*hidden argument*/NULL);
int32_t L_3 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_0, (int32_t)L_2)));
return L_3;
}
}
// System.Int32 System.Text.Normalization::CharMapIdx(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Normalization_CharMapIdx_mD7FF7B9511E1108A8718E0AA1C81EB65BDCE6BA9 (int32_t ___cp0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Normalization_CharMapIdx_mD7FF7B9511E1108A8718E0AA1C81EB65BDCE6BA9_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Normalization_t5DC806A630757AD1E908576E8B2EEB2A77BEC22E_il2cpp_TypeInfo_var);
int16_t* L_0 = ((Normalization_t5DC806A630757AD1E908576E8B2EEB2A77BEC22E_StaticFields*)il2cpp_codegen_static_fields_for(Normalization_t5DC806A630757AD1E908576E8B2EEB2A77BEC22E_il2cpp_TypeInfo_var))->get_charMapIndex_2();
int32_t L_1 = ___cp0;
IL2CPP_RUNTIME_CLASS_INIT(NormalizationTableUtil_t03190D7C1B6FF779D40EBEB0A5929DE24585DAA5_il2cpp_TypeInfo_var);
int32_t L_2 = NormalizationTableUtil_MapIdx_mE125070C36E28732429CD254EF1966EB3100F461(L_1, /*hidden argument*/NULL);
int32_t L_3 = *((int16_t*)((int16_t*)il2cpp_codegen_add((intptr_t)L_0, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_2)), (int32_t)2)))));
return L_3;
}
}
// System.Byte System.Text.Normalization::GetCombiningClass(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t Normalization_GetCombiningClass_mE4FE7AF1CC77468229ED3E949CB73C0C9D2E7779 (int32_t ___c0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Normalization_GetCombiningClass_mE4FE7AF1CC77468229ED3E949CB73C0C9D2E7779_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Normalization_t5DC806A630757AD1E908576E8B2EEB2A77BEC22E_il2cpp_TypeInfo_var);
uint8_t* L_0 = ((Normalization_t5DC806A630757AD1E908576E8B2EEB2A77BEC22E_StaticFields*)il2cpp_codegen_static_fields_for(Normalization_t5DC806A630757AD1E908576E8B2EEB2A77BEC22E_il2cpp_TypeInfo_var))->get_combiningClass_5();
IL2CPP_RUNTIME_CLASS_INIT(NormalizationTableUtil_t03190D7C1B6FF779D40EBEB0A5929DE24585DAA5_il2cpp_TypeInfo_var);
CodePointIndexer_tA70DBD5101E826E30EEF124C2EEE1019B539DB4A * L_1 = ((NormalizationTableUtil_t03190D7C1B6FF779D40EBEB0A5929DE24585DAA5_StaticFields*)il2cpp_codegen_static_fields_for(NormalizationTableUtil_t03190D7C1B6FF779D40EBEB0A5929DE24585DAA5_il2cpp_TypeInfo_var))->get_Combining_2();
int32_t L_2 = ___c0;
NullCheck(L_1);
int32_t L_3 = CodePointIndexer_ToIndex_m933E52A360D43B57C511C2153A56EC3FA6AAE416(L_1, L_2, /*hidden argument*/NULL);
int32_t L_4 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_0, (int32_t)L_3)));
return (uint8_t)L_4;
}
}
// System.Int32 System.Text.Normalization::GetPrimaryCompositeFromMapIndex(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Normalization_GetPrimaryCompositeFromMapIndex_mC882AED4638E77E976BC56DDA2F6DA2448EFA022 (int32_t ___src0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Normalization_GetPrimaryCompositeFromMapIndex_mC882AED4638E77E976BC56DDA2F6DA2448EFA022_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Normalization_t5DC806A630757AD1E908576E8B2EEB2A77BEC22E_il2cpp_TypeInfo_var);
uint16_t* L_0 = ((Normalization_t5DC806A630757AD1E908576E8B2EEB2A77BEC22E_StaticFields*)il2cpp_codegen_static_fields_for(Normalization_t5DC806A630757AD1E908576E8B2EEB2A77BEC22E_il2cpp_TypeInfo_var))->get_mapIdxToComposite_4();
IL2CPP_RUNTIME_CLASS_INIT(NormalizationTableUtil_t03190D7C1B6FF779D40EBEB0A5929DE24585DAA5_il2cpp_TypeInfo_var);
CodePointIndexer_tA70DBD5101E826E30EEF124C2EEE1019B539DB4A * L_1 = ((NormalizationTableUtil_t03190D7C1B6FF779D40EBEB0A5929DE24585DAA5_StaticFields*)il2cpp_codegen_static_fields_for(NormalizationTableUtil_t03190D7C1B6FF779D40EBEB0A5929DE24585DAA5_il2cpp_TypeInfo_var))->get_Composite_3();
int32_t L_2 = ___src0;
NullCheck(L_1);
int32_t L_3 = CodePointIndexer_ToIndex_m933E52A360D43B57C511C2153A56EC3FA6AAE416(L_1, L_2, /*hidden argument*/NULL);
int32_t L_4 = *((uint16_t*)((uint16_t*)il2cpp_codegen_add((intptr_t)L_0, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_3)), (int32_t)2)))));
return L_4;
}
}
// System.Int32 System.Text.Normalization::GetPrimaryCompositeHelperIndex(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Normalization_GetPrimaryCompositeHelperIndex_mBF42ECA25605228B344D469251274E6E0C0102B2 (int32_t ___cp0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Normalization_GetPrimaryCompositeHelperIndex_mBF42ECA25605228B344D469251274E6E0C0102B2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Normalization_t5DC806A630757AD1E908576E8B2EEB2A77BEC22E_il2cpp_TypeInfo_var);
int16_t* L_0 = ((Normalization_t5DC806A630757AD1E908576E8B2EEB2A77BEC22E_StaticFields*)il2cpp_codegen_static_fields_for(Normalization_t5DC806A630757AD1E908576E8B2EEB2A77BEC22E_il2cpp_TypeInfo_var))->get_helperIndex_3();
IL2CPP_RUNTIME_CLASS_INIT(NormalizationTableUtil_t03190D7C1B6FF779D40EBEB0A5929DE24585DAA5_il2cpp_TypeInfo_var);
CodePointIndexer_tA70DBD5101E826E30EEF124C2EEE1019B539DB4A * L_1 = ((NormalizationTableUtil_t03190D7C1B6FF779D40EBEB0A5929DE24585DAA5_StaticFields*)il2cpp_codegen_static_fields_for(NormalizationTableUtil_t03190D7C1B6FF779D40EBEB0A5929DE24585DAA5_il2cpp_TypeInfo_var))->get_Helper_4();
int32_t L_2 = ___cp0;
NullCheck(L_1);
int32_t L_3 = CodePointIndexer_ToIndex_m933E52A360D43B57C511C2153A56EC3FA6AAE416(L_1, L_2, /*hidden argument*/NULL);
int32_t L_4 = *((int16_t*)((int16_t*)il2cpp_codegen_add((intptr_t)L_0, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_3)), (int32_t)2)))));
return L_4;
}
}
// System.String System.Text.Normalization::Compose(System.String,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Normalization_Compose_mEB36830839D05AAA1579B2500EAF0AF0611910AA (String_t* ___source0, int32_t ___checkType1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Normalization_Compose_mEB36830839D05AAA1579B2500EAF0AF0611910AA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
StringBuilder_t * V_0 = NULL;
StringBuilder_t ** G_B2_0 = NULL;
String_t* G_B2_1 = NULL;
StringBuilder_t ** G_B1_0 = NULL;
String_t* G_B1_1 = NULL;
int32_t G_B3_0 = 0;
StringBuilder_t ** G_B3_1 = NULL;
String_t* G_B3_2 = NULL;
{
V_0 = (StringBuilder_t *)NULL;
String_t* L_0 = ___source0;
int32_t L_1 = ___checkType1;
G_B1_0 = (&V_0);
G_B1_1 = L_0;
if ((((int32_t)L_1) == ((int32_t)2)))
{
G_B2_0 = (&V_0);
G_B2_1 = L_0;
goto IL_000c;
}
}
{
G_B3_0 = 1;
G_B3_1 = G_B1_0;
G_B3_2 = G_B1_1;
goto IL_000d;
}
IL_000c:
{
G_B3_0 = 3;
G_B3_1 = G_B2_0;
G_B3_2 = G_B2_1;
}
IL_000d:
{
IL2CPP_RUNTIME_CLASS_INIT(Normalization_t5DC806A630757AD1E908576E8B2EEB2A77BEC22E_il2cpp_TypeInfo_var);
Normalization_Decompose_mC120D0C06838074BAE44D314E2E39FF3909935BE(G_B3_2, (StringBuilder_t **)G_B3_1, G_B3_0, /*hidden argument*/NULL);
StringBuilder_t * L_2 = V_0;
if (L_2)
{
goto IL_0020;
}
}
{
String_t* L_3 = ___source0;
int32_t L_4 = ___checkType1;
IL2CPP_RUNTIME_CLASS_INIT(Normalization_t5DC806A630757AD1E908576E8B2EEB2A77BEC22E_il2cpp_TypeInfo_var);
StringBuilder_t * L_5 = Normalization_Combine_mF29961DF76E25EDF17A7173DCE1F82B3A2457702(L_3, 0, L_4, /*hidden argument*/NULL);
V_0 = L_5;
goto IL_0028;
}
IL_0020:
{
StringBuilder_t * L_6 = V_0;
int32_t L_7 = ___checkType1;
IL2CPP_RUNTIME_CLASS_INIT(Normalization_t5DC806A630757AD1E908576E8B2EEB2A77BEC22E_il2cpp_TypeInfo_var);
Normalization_Combine_m13CF31C439C3C1676F35199640FAF86EAF0BB33A(L_6, 0, L_7, /*hidden argument*/NULL);
}
IL_0028:
{
StringBuilder_t * L_8 = V_0;
if (L_8)
{
goto IL_002d;
}
}
{
String_t* L_9 = ___source0;
return L_9;
}
IL_002d:
{
StringBuilder_t * L_10 = V_0;
NullCheck(L_10);
String_t* L_11 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_10);
return L_11;
}
}
// System.Text.StringBuilder System.Text.Normalization::Combine(System.String,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * Normalization_Combine_mF29961DF76E25EDF17A7173DCE1F82B3A2457702 (String_t* ___source0, int32_t ___start1, int32_t ___checkType2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Normalization_Combine_mF29961DF76E25EDF17A7173DCE1F82B3A2457702_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
V_0 = 0;
goto IL_003d;
}
IL_0004:
{
String_t* L_0 = ___source0;
int32_t L_1 = V_0;
NullCheck(L_0);
Il2CppChar L_2 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_0, L_1, /*hidden argument*/NULL);
int32_t L_3 = ___checkType2;
IL2CPP_RUNTIME_CLASS_INIT(Normalization_t5DC806A630757AD1E908576E8B2EEB2A77BEC22E_il2cpp_TypeInfo_var);
int32_t L_4 = Normalization_QuickCheck_m41D4FF8E0DC13D1D0CE7BDB35607FDA313DCB86B(L_2, L_3, /*hidden argument*/NULL);
if (!L_4)
{
goto IL_0039;
}
}
{
String_t* L_5 = ___source0;
NullCheck(L_5);
int32_t L_6 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_5, /*hidden argument*/NULL);
String_t* L_7 = ___source0;
NullCheck(L_7);
int32_t L_8 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_7, /*hidden argument*/NULL);
StringBuilder_t * L_9 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
StringBuilder__ctor_m1C0F2D97B838537A2D0F64033AE4EF02D150A956(L_9, ((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)((int32_t)((int32_t)L_8/(int32_t)((int32_t)10))))), /*hidden argument*/NULL);
StringBuilder_t * L_10 = L_9;
String_t* L_11 = ___source0;
NullCheck(L_10);
StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_10, L_11, /*hidden argument*/NULL);
StringBuilder_t * L_12 = L_10;
int32_t L_13 = V_0;
int32_t L_14 = ___checkType2;
IL2CPP_RUNTIME_CLASS_INIT(Normalization_t5DC806A630757AD1E908576E8B2EEB2A77BEC22E_il2cpp_TypeInfo_var);
Normalization_Combine_m13CF31C439C3C1676F35199640FAF86EAF0BB33A(L_12, L_13, L_14, /*hidden argument*/NULL);
return L_12;
}
IL_0039:
{
int32_t L_15 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1));
}
IL_003d:
{
int32_t L_16 = V_0;
String_t* L_17 = ___source0;
NullCheck(L_17);
int32_t L_18 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_17, /*hidden argument*/NULL);
if ((((int32_t)L_16) < ((int32_t)L_18)))
{
goto IL_0004;
}
}
{
return (StringBuilder_t *)NULL;
}
}
// System.Void System.Text.Normalization::Combine(System.Text.StringBuilder,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Normalization_Combine_m13CF31C439C3C1676F35199640FAF86EAF0BB33A (StringBuilder_t * ___sb0, int32_t ___i1, int32_t ___checkType2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Normalization_Combine_m13CF31C439C3C1676F35199640FAF86EAF0BB33A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject * G_B2_0 = NULL;
StringBuilder_t * G_B2_1 = NULL;
RuntimeObject * G_B1_0 = NULL;
StringBuilder_t * G_B1_1 = NULL;
int32_t G_B3_0 = 0;
RuntimeObject * G_B3_1 = NULL;
StringBuilder_t * G_B3_2 = NULL;
{
StringBuilder_t * L_0 = ___sb0;
int32_t L_1 = ___i1;
G_B1_0 = NULL;
G_B1_1 = L_0;
if ((((int32_t)L_1) > ((int32_t)0)))
{
G_B2_0 = NULL;
G_B2_1 = L_0;
goto IL_0009;
}
}
{
int32_t L_2 = ___i1;
G_B3_0 = L_2;
G_B3_1 = G_B1_0;
G_B3_2 = G_B1_1;
goto IL_000c;
}
IL_0009:
{
int32_t L_3 = ___i1;
G_B3_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_3, (int32_t)1));
G_B3_1 = G_B2_0;
G_B3_2 = G_B2_1;
}
IL_000c:
{
IL2CPP_RUNTIME_CLASS_INIT(Normalization_t5DC806A630757AD1E908576E8B2EEB2A77BEC22E_il2cpp_TypeInfo_var);
Normalization_CombineHangul_m6ACCCB03BD7578B68D7EBF7A57EA5D3589CE089B(G_B3_2, (String_t*)G_B3_1, G_B3_0, /*hidden argument*/NULL);
goto IL_0034;
}
IL_0014:
{
StringBuilder_t * L_4 = ___sb0;
int32_t L_5 = ___i1;
NullCheck(L_4);
Il2CppChar L_6 = StringBuilder_get_Chars_mC069533DCA4FB798DFA069469EBABA85DCC183C6(L_4, L_5, /*hidden argument*/NULL);
int32_t L_7 = ___checkType2;
IL2CPP_RUNTIME_CLASS_INIT(Normalization_t5DC806A630757AD1E908576E8B2EEB2A77BEC22E_il2cpp_TypeInfo_var);
int32_t L_8 = Normalization_QuickCheck_m41D4FF8E0DC13D1D0CE7BDB35607FDA313DCB86B(L_6, L_7, /*hidden argument*/NULL);
if (L_8)
{
goto IL_002a;
}
}
{
int32_t L_9 = ___i1;
___i1 = ((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1));
goto IL_0034;
}
IL_002a:
{
StringBuilder_t * L_10 = ___sb0;
int32_t L_11 = ___i1;
IL2CPP_RUNTIME_CLASS_INIT(Normalization_t5DC806A630757AD1E908576E8B2EEB2A77BEC22E_il2cpp_TypeInfo_var);
int32_t L_12 = Normalization_TryComposeWithPreviousStarter_mC6EE7E98390E0FDA79259873D8CF514EBCFBC162(L_10, (String_t*)NULL, L_11, /*hidden argument*/NULL);
___i1 = L_12;
}
IL_0034:
{
int32_t L_13 = ___i1;
StringBuilder_t * L_14 = ___sb0;
NullCheck(L_14);
int32_t L_15 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_14, /*hidden argument*/NULL);
if ((((int32_t)L_13) < ((int32_t)L_15)))
{
goto IL_0014;
}
}
{
return;
}
}
// System.Int32 System.Text.Normalization::CombineHangul(System.Text.StringBuilder,System.String,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Normalization_CombineHangul_m6ACCCB03BD7578B68D7EBF7A57EA5D3589CE089B (StringBuilder_t * ___sb0, String_t* ___s1, int32_t ___current2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Normalization_CombineHangul_m6ACCCB03BD7578B68D7EBF7A57EA5D3589CE089B_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;
int32_t V_5 = 0;
int32_t V_6 = 0;
int32_t V_7 = 0;
int32_t G_B3_0 = 0;
{
StringBuilder_t * L_0 = ___sb0;
if (L_0)
{
goto IL_000b;
}
}
{
String_t* L_1 = ___s1;
NullCheck(L_1);
int32_t L_2 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_1, /*hidden argument*/NULL);
G_B3_0 = L_2;
goto IL_0011;
}
IL_000b:
{
StringBuilder_t * L_3 = ___sb0;
NullCheck(L_3);
int32_t L_4 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_3, /*hidden argument*/NULL);
G_B3_0 = L_4;
}
IL_0011:
{
V_0 = G_B3_0;
StringBuilder_t * L_5 = ___sb0;
String_t* L_6 = ___s1;
int32_t L_7 = ___current2;
IL2CPP_RUNTIME_CLASS_INIT(Normalization_t5DC806A630757AD1E908576E8B2EEB2A77BEC22E_il2cpp_TypeInfo_var);
int32_t L_8 = Normalization_Fetch_m63D1D25228B34DF463CA9068F72735A7C1EB5F3E(L_5, L_6, L_7, /*hidden argument*/NULL);
V_1 = L_8;
int32_t L_9 = ___current2;
V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1));
goto IL_00ea;
}
IL_0024:
{
StringBuilder_t * L_10 = ___sb0;
String_t* L_11 = ___s1;
int32_t L_12 = V_2;
IL2CPP_RUNTIME_CLASS_INIT(Normalization_t5DC806A630757AD1E908576E8B2EEB2A77BEC22E_il2cpp_TypeInfo_var);
int32_t L_13 = Normalization_Fetch_m63D1D25228B34DF463CA9068F72735A7C1EB5F3E(L_10, L_11, L_12, /*hidden argument*/NULL);
V_3 = L_13;
int32_t L_14 = V_1;
V_4 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_14, (int32_t)((int32_t)4352)));
int32_t L_15 = V_4;
if ((((int32_t)0) > ((int32_t)L_15)))
{
goto IL_008a;
}
}
{
int32_t L_16 = V_4;
if ((((int32_t)L_16) >= ((int32_t)((int32_t)19))))
{
goto IL_008a;
}
}
{
int32_t L_17 = V_3;
V_6 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_17, (int32_t)((int32_t)4449)));
int32_t L_18 = V_6;
if ((((int32_t)0) > ((int32_t)L_18)))
{
goto IL_008a;
}
}
{
int32_t L_19 = V_6;
if ((((int32_t)L_19) >= ((int32_t)((int32_t)21))))
{
goto IL_008a;
}
}
{
StringBuilder_t * L_20 = ___sb0;
if (L_20)
{
goto IL_005a;
}
}
{
return (-1);
}
IL_005a:
{
int32_t L_21 = V_4;
int32_t L_22 = V_6;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)44032), (int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_21, (int32_t)((int32_t)21))), (int32_t)L_22)), (int32_t)((int32_t)28)))));
StringBuilder_t * L_23 = ___sb0;
int32_t L_24 = V_2;
int32_t L_25 = V_1;
NullCheck(L_23);
StringBuilder_set_Chars_m71B2B761D6D287A666302FD85E320E1E60F388EA(L_23, ((int32_t)il2cpp_codegen_subtract((int32_t)L_24, (int32_t)1)), (((int32_t)((uint16_t)L_25))), /*hidden argument*/NULL);
StringBuilder_t * L_26 = ___sb0;
int32_t L_27 = V_2;
NullCheck(L_26);
StringBuilder_Remove_m5DA9C1C4D056FA61B8923BE85E6BFF44B14A24F9(L_26, L_27, 1, /*hidden argument*/NULL);
int32_t L_28 = V_2;
V_2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_28, (int32_t)1));
int32_t L_29 = V_0;
V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_29, (int32_t)1));
goto IL_00e6;
}
IL_008a:
{
int32_t L_30 = V_1;
V_5 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_30, (int32_t)((int32_t)44032)));
int32_t L_31 = V_5;
if ((((int32_t)0) > ((int32_t)L_31)))
{
goto IL_00e4;
}
}
{
int32_t L_32 = V_5;
if ((((int32_t)L_32) >= ((int32_t)((int32_t)11172))))
{
goto IL_00e4;
}
}
{
int32_t L_33 = V_5;
if (((int32_t)((int32_t)L_33%(int32_t)((int32_t)28))))
{
goto IL_00e4;
}
}
{
int32_t L_34 = V_3;
V_7 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_34, (int32_t)((int32_t)4519)));
int32_t L_35 = V_7;
if ((((int32_t)0) >= ((int32_t)L_35)))
{
goto IL_00e4;
}
}
{
int32_t L_36 = V_7;
if ((((int32_t)L_36) >= ((int32_t)((int32_t)28))))
{
goto IL_00e4;
}
}
{
StringBuilder_t * L_37 = ___sb0;
if (L_37)
{
goto IL_00c1;
}
}
{
return (-1);
}
IL_00c1:
{
int32_t L_38 = V_1;
int32_t L_39 = V_7;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_38, (int32_t)L_39));
StringBuilder_t * L_40 = ___sb0;
int32_t L_41 = V_2;
int32_t L_42 = V_1;
NullCheck(L_40);
StringBuilder_set_Chars_m71B2B761D6D287A666302FD85E320E1E60F388EA(L_40, ((int32_t)il2cpp_codegen_subtract((int32_t)L_41, (int32_t)1)), (((int32_t)((uint16_t)L_42))), /*hidden argument*/NULL);
StringBuilder_t * L_43 = ___sb0;
int32_t L_44 = V_2;
NullCheck(L_43);
StringBuilder_Remove_m5DA9C1C4D056FA61B8923BE85E6BFF44B14A24F9(L_43, L_44, 1, /*hidden argument*/NULL);
int32_t L_45 = V_2;
V_2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_45, (int32_t)1));
int32_t L_46 = V_0;
V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_46, (int32_t)1));
goto IL_00e6;
}
IL_00e4:
{
int32_t L_47 = V_3;
V_1 = L_47;
}
IL_00e6:
{
int32_t L_48 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_48, (int32_t)1));
}
IL_00ea:
{
int32_t L_49 = V_2;
int32_t L_50 = V_0;
if ((((int32_t)L_49) < ((int32_t)L_50)))
{
goto IL_0024;
}
}
{
int32_t L_51 = V_0;
return L_51;
}
}
// System.Int32 System.Text.Normalization::Fetch(System.Text.StringBuilder,System.String,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Normalization_Fetch_m63D1D25228B34DF463CA9068F72735A7C1EB5F3E (StringBuilder_t * ___sb0, String_t* ___s1, int32_t ___i2, const RuntimeMethod* method)
{
{
StringBuilder_t * L_0 = ___sb0;
if (L_0)
{
goto IL_000b;
}
}
{
String_t* L_1 = ___s1;
int32_t L_2 = ___i2;
NullCheck(L_1);
Il2CppChar L_3 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_1, L_2, /*hidden argument*/NULL);
return L_3;
}
IL_000b:
{
StringBuilder_t * L_4 = ___sb0;
int32_t L_5 = ___i2;
NullCheck(L_4);
Il2CppChar L_6 = StringBuilder_get_Chars_mC069533DCA4FB798DFA069469EBABA85DCC183C6(L_4, L_5, /*hidden argument*/NULL);
return L_6;
}
}
// System.Int32 System.Text.Normalization::TryComposeWithPreviousStarter(System.Text.StringBuilder,System.String,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Normalization_TryComposeWithPreviousStarter_mC6EE7E98390E0FDA79259873D8CF514EBCFBC162 (StringBuilder_t * ___sb0, String_t* ___s1, int32_t ___current2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Normalization_TryComposeWithPreviousStarter_mC6EE7E98390E0FDA79259873D8CF514EBCFBC162_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;
int32_t V_5 = 0;
int32_t V_6 = 0;
int32_t V_7 = 0;
int32_t V_8 = 0;
int32_t G_B14_0 = 0;
{
int32_t L_0 = ___current2;
V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)1));
StringBuilder_t * L_1 = ___sb0;
String_t* L_2 = ___s1;
int32_t L_3 = ___current2;
IL2CPP_RUNTIME_CLASS_INIT(Normalization_t5DC806A630757AD1E908576E8B2EEB2A77BEC22E_il2cpp_TypeInfo_var);
int32_t L_4 = Normalization_Fetch_m63D1D25228B34DF463CA9068F72735A7C1EB5F3E(L_1, L_2, L_3, /*hidden argument*/NULL);
uint8_t L_5 = Normalization_GetCombiningClass_mE4FE7AF1CC77468229ED3E949CB73C0C9D2E7779(L_4, /*hidden argument*/NULL);
if (L_5)
{
goto IL_002e;
}
}
{
int32_t L_6 = V_0;
if ((((int32_t)L_6) < ((int32_t)0)))
{
goto IL_0026;
}
}
{
StringBuilder_t * L_7 = ___sb0;
String_t* L_8 = ___s1;
int32_t L_9 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(Normalization_t5DC806A630757AD1E908576E8B2EEB2A77BEC22E_il2cpp_TypeInfo_var);
int32_t L_10 = Normalization_Fetch_m63D1D25228B34DF463CA9068F72735A7C1EB5F3E(L_7, L_8, L_9, /*hidden argument*/NULL);
uint8_t L_11 = Normalization_GetCombiningClass_mE4FE7AF1CC77468229ED3E949CB73C0C9D2E7779(L_10, /*hidden argument*/NULL);
if (!L_11)
{
goto IL_0049;
}
}
IL_0026:
{
int32_t L_12 = ___current2;
return ((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1));
}
IL_002a:
{
int32_t L_13 = V_0;
V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_13, (int32_t)1));
}
IL_002e:
{
int32_t L_14 = V_0;
if ((((int32_t)L_14) < ((int32_t)0)))
{
goto IL_0041;
}
}
{
StringBuilder_t * L_15 = ___sb0;
String_t* L_16 = ___s1;
int32_t L_17 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(Normalization_t5DC806A630757AD1E908576E8B2EEB2A77BEC22E_il2cpp_TypeInfo_var);
int32_t L_18 = Normalization_Fetch_m63D1D25228B34DF463CA9068F72735A7C1EB5F3E(L_15, L_16, L_17, /*hidden argument*/NULL);
uint8_t L_19 = Normalization_GetCombiningClass_mE4FE7AF1CC77468229ED3E949CB73C0C9D2E7779(L_18, /*hidden argument*/NULL);
if (L_19)
{
goto IL_002a;
}
}
IL_0041:
{
int32_t L_20 = V_0;
if ((((int32_t)L_20) >= ((int32_t)0)))
{
goto IL_0049;
}
}
{
int32_t L_21 = ___current2;
return ((int32_t)il2cpp_codegen_add((int32_t)L_21, (int32_t)1));
}
IL_0049:
{
StringBuilder_t * L_22 = ___sb0;
String_t* L_23 = ___s1;
int32_t L_24 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(Normalization_t5DC806A630757AD1E908576E8B2EEB2A77BEC22E_il2cpp_TypeInfo_var);
int32_t L_25 = Normalization_Fetch_m63D1D25228B34DF463CA9068F72735A7C1EB5F3E(L_22, L_23, L_24, /*hidden argument*/NULL);
V_1 = L_25;
int32_t L_26 = V_1;
int32_t L_27 = Normalization_GetPrimaryCompositeHelperIndex_mBF42ECA25605228B344D469251274E6E0C0102B2(L_26, /*hidden argument*/NULL);
V_2 = L_27;
int32_t L_28 = V_2;
if (L_28)
{
goto IL_0060;
}
}
{
int32_t L_29 = ___current2;
return ((int32_t)il2cpp_codegen_add((int32_t)L_29, (int32_t)1));
}
IL_0060:
{
StringBuilder_t * L_30 = ___sb0;
if (L_30)
{
goto IL_006b;
}
}
{
String_t* L_31 = ___s1;
NullCheck(L_31);
int32_t L_32 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_31, /*hidden argument*/NULL);
G_B14_0 = L_32;
goto IL_0071;
}
IL_006b:
{
StringBuilder_t * L_33 = ___sb0;
NullCheck(L_33);
int32_t L_34 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_33, /*hidden argument*/NULL);
G_B14_0 = L_34;
}
IL_0071:
{
V_3 = G_B14_0;
V_4 = (-1);
int32_t L_35 = V_0;
V_5 = ((int32_t)il2cpp_codegen_add((int32_t)L_35, (int32_t)1));
goto IL_00d3;
}
IL_007c:
{
StringBuilder_t * L_36 = ___sb0;
String_t* L_37 = ___s1;
int32_t L_38 = V_5;
IL2CPP_RUNTIME_CLASS_INIT(Normalization_t5DC806A630757AD1E908576E8B2EEB2A77BEC22E_il2cpp_TypeInfo_var);
int32_t L_39 = Normalization_Fetch_m63D1D25228B34DF463CA9068F72735A7C1EB5F3E(L_36, L_37, L_38, /*hidden argument*/NULL);
V_6 = L_39;
int32_t L_40 = V_6;
uint8_t L_41 = Normalization_GetCombiningClass_mE4FE7AF1CC77468229ED3E949CB73C0C9D2E7779(L_40, /*hidden argument*/NULL);
V_7 = L_41;
int32_t L_42 = V_7;
int32_t L_43 = V_4;
if ((((int32_t)L_42) == ((int32_t)L_43)))
{
goto IL_00cd;
}
}
{
int32_t L_44 = V_2;
int32_t L_45 = V_1;
int32_t L_46 = V_6;
IL2CPP_RUNTIME_CLASS_INIT(Normalization_t5DC806A630757AD1E908576E8B2EEB2A77BEC22E_il2cpp_TypeInfo_var);
int32_t L_47 = Normalization_TryCompose_m5879D248041F211393CD46EA75FB4654253A2BD7(L_44, L_45, L_46, /*hidden argument*/NULL);
V_8 = L_47;
int32_t L_48 = V_8;
if (!L_48)
{
goto IL_00c0;
}
}
{
StringBuilder_t * L_49 = ___sb0;
if (L_49)
{
goto IL_00aa;
}
}
{
return (-1);
}
IL_00aa:
{
StringBuilder_t * L_50 = ___sb0;
int32_t L_51 = V_0;
int32_t L_52 = V_8;
NullCheck(L_50);
StringBuilder_set_Chars_m71B2B761D6D287A666302FD85E320E1E60F388EA(L_50, L_51, (((int32_t)((uint16_t)L_52))), /*hidden argument*/NULL);
StringBuilder_t * L_53 = ___sb0;
int32_t L_54 = V_5;
NullCheck(L_53);
StringBuilder_Remove_m5DA9C1C4D056FA61B8923BE85E6BFF44B14A24F9(L_53, L_54, 1, /*hidden argument*/NULL);
int32_t L_55 = ___current2;
return L_55;
}
IL_00c0:
{
int32_t L_56 = V_7;
if (L_56)
{
goto IL_00c9;
}
}
{
int32_t L_57 = V_5;
return ((int32_t)il2cpp_codegen_add((int32_t)L_57, (int32_t)1));
}
IL_00c9:
{
int32_t L_58 = V_7;
V_4 = L_58;
}
IL_00cd:
{
int32_t L_59 = V_5;
V_5 = ((int32_t)il2cpp_codegen_add((int32_t)L_59, (int32_t)1));
}
IL_00d3:
{
int32_t L_60 = V_5;
int32_t L_61 = V_3;
if ((((int32_t)L_60) < ((int32_t)L_61)))
{
goto IL_007c;
}
}
{
int32_t L_62 = V_3;
return L_62;
}
}
// System.Int32 System.Text.Normalization::TryCompose(System.Int32,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Normalization_TryCompose_m5879D248041F211393CD46EA75FB4654253A2BD7 (int32_t ___i0, int32_t ___starter1, int32_t ___candidate2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Normalization_TryCompose_m5879D248041F211393CD46EA75FB4654253A2BD7_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
goto IL_004c;
}
IL_0002:
{
IL2CPP_RUNTIME_CLASS_INIT(Normalization_t5DC806A630757AD1E908576E8B2EEB2A77BEC22E_il2cpp_TypeInfo_var);
int32_t* L_0 = ((Normalization_t5DC806A630757AD1E908576E8B2EEB2A77BEC22E_StaticFields*)il2cpp_codegen_static_fields_for(Normalization_t5DC806A630757AD1E908576E8B2EEB2A77BEC22E_il2cpp_TypeInfo_var))->get_mappedChars_1();
int32_t L_1 = ___i0;
int32_t L_2 = *((int32_t*)((int32_t*)il2cpp_codegen_add((intptr_t)L_0, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)((int32_t)il2cpp_codegen_add((int32_t)L_1, (int32_t)1)))), (int32_t)4)))));
int32_t L_3 = ___candidate2;
if ((!(((uint32_t)L_2) == ((uint32_t)L_3))))
{
goto IL_003a;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(Normalization_t5DC806A630757AD1E908576E8B2EEB2A77BEC22E_il2cpp_TypeInfo_var);
int32_t* L_4 = ((Normalization_t5DC806A630757AD1E908576E8B2EEB2A77BEC22E_StaticFields*)il2cpp_codegen_static_fields_for(Normalization_t5DC806A630757AD1E908576E8B2EEB2A77BEC22E_il2cpp_TypeInfo_var))->get_mappedChars_1();
int32_t L_5 = ___i0;
int32_t L_6 = *((int32_t*)((int32_t*)il2cpp_codegen_add((intptr_t)L_4, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)2)))), (int32_t)4)))));
if (L_6)
{
goto IL_003a;
}
}
{
int32_t L_7 = ___i0;
IL2CPP_RUNTIME_CLASS_INIT(Normalization_t5DC806A630757AD1E908576E8B2EEB2A77BEC22E_il2cpp_TypeInfo_var);
int32_t L_8 = Normalization_GetPrimaryCompositeFromMapIndex_mC882AED4638E77E976BC56DDA2F6DA2448EFA022(L_7, /*hidden argument*/NULL);
V_0 = L_8;
int32_t L_9 = V_0;
uint32_t L_10 = Normalization_PropValue_m74F5DC4C2FF35022E0473B8B6EBC83609E0D5511(L_9, /*hidden argument*/NULL);
if (((int32_t)((int32_t)L_10&(int32_t)((int32_t)64))))
{
goto IL_003a;
}
}
{
int32_t L_11 = V_0;
return L_11;
}
IL_0035:
{
int32_t L_12 = ___i0;
___i0 = ((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1));
}
IL_003a:
{
IL2CPP_RUNTIME_CLASS_INIT(Normalization_t5DC806A630757AD1E908576E8B2EEB2A77BEC22E_il2cpp_TypeInfo_var);
int32_t* L_13 = ((Normalization_t5DC806A630757AD1E908576E8B2EEB2A77BEC22E_StaticFields*)il2cpp_codegen_static_fields_for(Normalization_t5DC806A630757AD1E908576E8B2EEB2A77BEC22E_il2cpp_TypeInfo_var))->get_mappedChars_1();
int32_t L_14 = ___i0;
int32_t L_15 = *((int32_t*)((int32_t*)il2cpp_codegen_add((intptr_t)L_13, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_14)), (int32_t)4)))));
if (L_15)
{
goto IL_0035;
}
}
{
int32_t L_16 = ___i0;
___i0 = ((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_004c:
{
IL2CPP_RUNTIME_CLASS_INIT(Normalization_t5DC806A630757AD1E908576E8B2EEB2A77BEC22E_il2cpp_TypeInfo_var);
int32_t* L_17 = ((Normalization_t5DC806A630757AD1E908576E8B2EEB2A77BEC22E_StaticFields*)il2cpp_codegen_static_fields_for(Normalization_t5DC806A630757AD1E908576E8B2EEB2A77BEC22E_il2cpp_TypeInfo_var))->get_mappedChars_1();
int32_t L_18 = ___i0;
int32_t L_19 = *((int32_t*)((int32_t*)il2cpp_codegen_add((intptr_t)L_17, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_18)), (int32_t)4)))));
int32_t L_20 = ___starter1;
if ((((int32_t)L_19) == ((int32_t)L_20)))
{
goto IL_0002;
}
}
{
return 0;
}
}
// System.String System.Text.Normalization::Decompose(System.String,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Normalization_Decompose_m72A6B276D99DEA8A6060E5060342D44BE739E030 (String_t* ___source0, int32_t ___checkType1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Normalization_Decompose_m72A6B276D99DEA8A6060E5060342D44BE739E030_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
StringBuilder_t * V_0 = NULL;
{
V_0 = (StringBuilder_t *)NULL;
String_t* L_0 = ___source0;
int32_t L_1 = ___checkType1;
IL2CPP_RUNTIME_CLASS_INIT(Normalization_t5DC806A630757AD1E908576E8B2EEB2A77BEC22E_il2cpp_TypeInfo_var);
Normalization_Decompose_mC120D0C06838074BAE44D314E2E39FF3909935BE(L_0, (StringBuilder_t **)(&V_0), L_1, /*hidden argument*/NULL);
StringBuilder_t * L_2 = V_0;
if (L_2)
{
goto IL_0010;
}
}
{
String_t* L_3 = ___source0;
return L_3;
}
IL_0010:
{
StringBuilder_t * L_4 = V_0;
NullCheck(L_4);
String_t* L_5 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_4);
return L_5;
}
}
// System.Void System.Text.Normalization::Decompose(System.String,System.Text.StringBuilder&,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Normalization_Decompose_mC120D0C06838074BAE44D314E2E39FF3909935BE (String_t* ___source0, StringBuilder_t ** ___sb1, int32_t ___checkType2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Normalization_Decompose_mC120D0C06838074BAE44D314E2E39FF3909935BE_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* V_0 = NULL;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
V_0 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)NULL;
V_1 = 0;
V_2 = 0;
goto IL_0029;
}
IL_0008:
{
String_t* L_0 = ___source0;
int32_t L_1 = V_2;
NullCheck(L_0);
Il2CppChar L_2 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_0, L_1, /*hidden argument*/NULL);
int32_t L_3 = ___checkType2;
IL2CPP_RUNTIME_CLASS_INIT(Normalization_t5DC806A630757AD1E908576E8B2EEB2A77BEC22E_il2cpp_TypeInfo_var);
int32_t L_4 = Normalization_QuickCheck_m41D4FF8E0DC13D1D0CE7BDB35607FDA313DCB86B(L_2, L_3, /*hidden argument*/NULL);
if ((!(((uint32_t)L_4) == ((uint32_t)1))))
{
goto IL_0025;
}
}
{
StringBuilder_t ** L_5 = ___sb1;
String_t* L_6 = ___source0;
int32_t L_7 = V_2;
int32_t L_8 = ___checkType2;
IL2CPP_RUNTIME_CLASS_INIT(Normalization_t5DC806A630757AD1E908576E8B2EEB2A77BEC22E_il2cpp_TypeInfo_var);
Normalization_DecomposeChar_mFCD460869F56DD899498A1A3F70025C1C1B84A6C((StringBuilder_t **)L_5, (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83**)(&V_0), L_6, L_7, L_8, (int32_t*)(&V_1), /*hidden argument*/NULL);
}
IL_0025:
{
int32_t L_9 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1));
}
IL_0029:
{
int32_t L_10 = V_2;
String_t* L_11 = ___source0;
NullCheck(L_11);
int32_t L_12 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_11, /*hidden argument*/NULL);
if ((((int32_t)L_10) < ((int32_t)L_12)))
{
goto IL_0008;
}
}
{
StringBuilder_t ** L_13 = ___sb1;
StringBuilder_t * L_14 = *((StringBuilder_t **)L_13);
if (!L_14)
{
goto IL_0048;
}
}
{
StringBuilder_t ** L_15 = ___sb1;
StringBuilder_t * L_16 = *((StringBuilder_t **)L_15);
String_t* L_17 = ___source0;
int32_t L_18 = V_1;
String_t* L_19 = ___source0;
NullCheck(L_19);
int32_t L_20 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_19, /*hidden argument*/NULL);
int32_t L_21 = V_1;
NullCheck(L_16);
StringBuilder_Append_m9EB954E99DC99B8CC712ABB70EAA07616B841D46(L_16, L_17, L_18, ((int32_t)il2cpp_codegen_subtract((int32_t)L_20, (int32_t)L_21)), /*hidden argument*/NULL);
}
IL_0048:
{
String_t* L_22 = ___source0;
StringBuilder_t ** L_23 = ___sb1;
IL2CPP_RUNTIME_CLASS_INIT(Normalization_t5DC806A630757AD1E908576E8B2EEB2A77BEC22E_il2cpp_TypeInfo_var);
Normalization_ReorderCanonical_mC647AA0BB997910E2FC0ED33CF89DCE413362C4C(L_22, (StringBuilder_t **)L_23, 1, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Text.Normalization::ReorderCanonical(System.String,System.Text.StringBuilder&,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Normalization_ReorderCanonical_mC647AA0BB997910E2FC0ED33CF89DCE413362C4C (String_t* ___src0, StringBuilder_t ** ___sb1, int32_t ___start2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Normalization_ReorderCanonical_mC647AA0BB997910E2FC0ED33CF89DCE413362C4C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
int32_t V_3 = 0;
Il2CppChar V_4 = 0x0;
{
StringBuilder_t ** L_0 = ___sb1;
StringBuilder_t * L_1 = *((StringBuilder_t **)L_0);
if (L_1)
{
goto IL_005d;
}
}
{
V_0 = 1;
goto IL_0053;
}
IL_0008:
{
String_t* L_2 = ___src0;
int32_t L_3 = V_0;
NullCheck(L_2);
Il2CppChar L_4 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_2, L_3, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Normalization_t5DC806A630757AD1E908576E8B2EEB2A77BEC22E_il2cpp_TypeInfo_var);
uint8_t L_5 = Normalization_GetCombiningClass_mE4FE7AF1CC77468229ED3E949CB73C0C9D2E7779(L_4, /*hidden argument*/NULL);
V_1 = L_5;
int32_t L_6 = V_1;
if (!L_6)
{
goto IL_004f;
}
}
{
String_t* L_7 = ___src0;
int32_t L_8 = V_0;
NullCheck(L_7);
Il2CppChar L_9 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_7, ((int32_t)il2cpp_codegen_subtract((int32_t)L_8, (int32_t)1)), /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Normalization_t5DC806A630757AD1E908576E8B2EEB2A77BEC22E_il2cpp_TypeInfo_var);
uint8_t L_10 = Normalization_GetCombiningClass_mE4FE7AF1CC77468229ED3E949CB73C0C9D2E7779(L_9, /*hidden argument*/NULL);
int32_t L_11 = V_1;
if ((((int32_t)L_10) <= ((int32_t)L_11)))
{
goto IL_004f;
}
}
{
StringBuilder_t ** L_12 = ___sb1;
String_t* L_13 = ___src0;
NullCheck(L_13);
int32_t L_14 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_13, /*hidden argument*/NULL);
StringBuilder_t * L_15 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
StringBuilder__ctor_m1C0F2D97B838537A2D0F64033AE4EF02D150A956(L_15, L_14, /*hidden argument*/NULL);
*((RuntimeObject **)L_12) = (RuntimeObject *)L_15;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_12, (void*)(RuntimeObject *)L_15);
StringBuilder_t ** L_16 = ___sb1;
StringBuilder_t * L_17 = *((StringBuilder_t **)L_16);
String_t* L_18 = ___src0;
String_t* L_19 = ___src0;
NullCheck(L_19);
int32_t L_20 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_19, /*hidden argument*/NULL);
NullCheck(L_17);
StringBuilder_Append_m9EB954E99DC99B8CC712ABB70EAA07616B841D46(L_17, L_18, 0, L_20, /*hidden argument*/NULL);
String_t* L_21 = ___src0;
StringBuilder_t ** L_22 = ___sb1;
int32_t L_23 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(Normalization_t5DC806A630757AD1E908576E8B2EEB2A77BEC22E_il2cpp_TypeInfo_var);
Normalization_ReorderCanonical_mC647AA0BB997910E2FC0ED33CF89DCE413362C4C(L_21, (StringBuilder_t **)L_22, L_23, /*hidden argument*/NULL);
return;
}
IL_004f:
{
int32_t L_24 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_24, (int32_t)1));
}
IL_0053:
{
int32_t L_25 = V_0;
String_t* L_26 = ___src0;
NullCheck(L_26);
int32_t L_27 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_26, /*hidden argument*/NULL);
if ((((int32_t)L_25) < ((int32_t)L_27)))
{
goto IL_0008;
}
}
{
return;
}
IL_005d:
{
int32_t L_28 = ___start2;
V_2 = L_28;
goto IL_00ba;
}
IL_0061:
{
StringBuilder_t ** L_29 = ___sb1;
StringBuilder_t * L_30 = *((StringBuilder_t **)L_29);
int32_t L_31 = V_2;
NullCheck(L_30);
Il2CppChar L_32 = StringBuilder_get_Chars_mC069533DCA4FB798DFA069469EBABA85DCC183C6(L_30, L_31, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Normalization_t5DC806A630757AD1E908576E8B2EEB2A77BEC22E_il2cpp_TypeInfo_var);
uint8_t L_33 = Normalization_GetCombiningClass_mE4FE7AF1CC77468229ED3E949CB73C0C9D2E7779(L_32, /*hidden argument*/NULL);
V_3 = L_33;
int32_t L_34 = V_3;
if (!L_34)
{
goto IL_0084;
}
}
{
StringBuilder_t ** L_35 = ___sb1;
StringBuilder_t * L_36 = *((StringBuilder_t **)L_35);
int32_t L_37 = V_2;
NullCheck(L_36);
Il2CppChar L_38 = StringBuilder_get_Chars_mC069533DCA4FB798DFA069469EBABA85DCC183C6(L_36, ((int32_t)il2cpp_codegen_subtract((int32_t)L_37, (int32_t)1)), /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Normalization_t5DC806A630757AD1E908576E8B2EEB2A77BEC22E_il2cpp_TypeInfo_var);
uint8_t L_39 = Normalization_GetCombiningClass_mE4FE7AF1CC77468229ED3E949CB73C0C9D2E7779(L_38, /*hidden argument*/NULL);
int32_t L_40 = V_3;
if ((((int32_t)L_39) > ((int32_t)L_40)))
{
goto IL_008a;
}
}
IL_0084:
{
int32_t L_41 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_41, (int32_t)1));
goto IL_00ba;
}
IL_008a:
{
StringBuilder_t ** L_42 = ___sb1;
StringBuilder_t * L_43 = *((StringBuilder_t **)L_42);
int32_t L_44 = V_2;
NullCheck(L_43);
Il2CppChar L_45 = StringBuilder_get_Chars_mC069533DCA4FB798DFA069469EBABA85DCC183C6(L_43, ((int32_t)il2cpp_codegen_subtract((int32_t)L_44, (int32_t)1)), /*hidden argument*/NULL);
V_4 = L_45;
StringBuilder_t ** L_46 = ___sb1;
StringBuilder_t * L_47 = *((StringBuilder_t **)L_46);
int32_t L_48 = V_2;
StringBuilder_t ** L_49 = ___sb1;
StringBuilder_t * L_50 = *((StringBuilder_t **)L_49);
int32_t L_51 = V_2;
NullCheck(L_50);
Il2CppChar L_52 = StringBuilder_get_Chars_mC069533DCA4FB798DFA069469EBABA85DCC183C6(L_50, L_51, /*hidden argument*/NULL);
NullCheck(L_47);
StringBuilder_set_Chars_m71B2B761D6D287A666302FD85E320E1E60F388EA(L_47, ((int32_t)il2cpp_codegen_subtract((int32_t)L_48, (int32_t)1)), L_52, /*hidden argument*/NULL);
StringBuilder_t ** L_53 = ___sb1;
StringBuilder_t * L_54 = *((StringBuilder_t **)L_53);
int32_t L_55 = V_2;
Il2CppChar L_56 = V_4;
NullCheck(L_54);
StringBuilder_set_Chars_m71B2B761D6D287A666302FD85E320E1E60F388EA(L_54, L_55, L_56, /*hidden argument*/NULL);
int32_t L_57 = V_2;
if ((((int32_t)L_57) <= ((int32_t)1)))
{
goto IL_00ba;
}
}
{
int32_t L_58 = V_2;
V_2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_58, (int32_t)1));
}
IL_00ba:
{
int32_t L_59 = V_2;
StringBuilder_t ** L_60 = ___sb1;
StringBuilder_t * L_61 = *((StringBuilder_t **)L_60);
NullCheck(L_61);
int32_t L_62 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(L_61, /*hidden argument*/NULL);
if ((((int32_t)L_59) < ((int32_t)L_62)))
{
goto IL_0061;
}
}
{
return;
}
}
// System.Void System.Text.Normalization::DecomposeChar(System.Text.StringBuilder&,System.Int32[]&,System.String,System.Int32,System.Int32,System.Int32&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Normalization_DecomposeChar_mFCD460869F56DD899498A1A3F70025C1C1B84A6C (StringBuilder_t ** ___sb0, Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** ___buf1, String_t* ___s2, int32_t ___i3, int32_t ___checkType4, int32_t* ___start5, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Normalization_DecomposeChar_mFCD460869F56DD899498A1A3F70025C1C1B84A6C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
{
StringBuilder_t ** L_0 = ___sb0;
StringBuilder_t * L_1 = *((StringBuilder_t **)L_0);
if (L_1)
{
goto IL_0014;
}
}
{
StringBuilder_t ** L_2 = ___sb0;
String_t* L_3 = ___s2;
NullCheck(L_3);
int32_t L_4 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_3, /*hidden argument*/NULL);
StringBuilder_t * L_5 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
StringBuilder__ctor_m1C0F2D97B838537A2D0F64033AE4EF02D150A956(L_5, ((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)((int32_t)100))), /*hidden argument*/NULL);
*((RuntimeObject **)L_2) = (RuntimeObject *)L_5;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_2, (void*)(RuntimeObject *)L_5);
}
IL_0014:
{
StringBuilder_t ** L_6 = ___sb0;
StringBuilder_t * L_7 = *((StringBuilder_t **)L_6);
String_t* L_8 = ___s2;
int32_t* L_9 = ___start5;
int32_t L_10 = *((int32_t*)L_9);
int32_t L_11 = ___i3;
int32_t* L_12 = ___start5;
int32_t L_13 = *((int32_t*)L_12);
NullCheck(L_7);
StringBuilder_Append_m9EB954E99DC99B8CC712ABB70EAA07616B841D46(L_7, L_8, L_10, ((int32_t)il2cpp_codegen_subtract((int32_t)L_11, (int32_t)L_13)), /*hidden argument*/NULL);
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** L_14 = ___buf1;
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_15 = *((Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83**)L_14);
if (L_15)
{
goto IL_0032;
}
}
{
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** L_16 = ___buf1;
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_17 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)SZArrayNew(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83_il2cpp_TypeInfo_var, (uint32_t)((int32_t)19));
*((RuntimeObject **)L_16) = (RuntimeObject *)L_17;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_16, (void*)(RuntimeObject *)L_17);
}
IL_0032:
{
String_t* L_18 = ___s2;
int32_t L_19 = ___i3;
NullCheck(L_18);
Il2CppChar L_20 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_18, L_19, /*hidden argument*/NULL);
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** L_21 = ___buf1;
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_22 = *((Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83**)L_21);
int32_t L_23 = ___checkType4;
IL2CPP_RUNTIME_CLASS_INIT(Normalization_t5DC806A630757AD1E908576E8B2EEB2A77BEC22E_il2cpp_TypeInfo_var);
int32_t L_24 = Normalization_GetCanonical_m9BE2B7D000EACEBFEDD8CFB4BAA9F9A04ACB53E1(L_20, L_22, 0, L_23, /*hidden argument*/NULL);
V_0 = L_24;
V_1 = 0;
goto IL_008f;
}
IL_0048:
{
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** L_25 = ___buf1;
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_26 = *((Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83**)L_25);
int32_t L_27 = V_1;
NullCheck(L_26);
int32_t L_28 = L_27;
int32_t L_29 = (L_26)->GetAt(static_cast<il2cpp_array_size_t>(L_28));
if ((((int32_t)L_29) >= ((int32_t)((int32_t)65535))))
{
goto IL_0062;
}
}
{
StringBuilder_t ** L_30 = ___sb0;
StringBuilder_t * L_31 = *((StringBuilder_t **)L_30);
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** L_32 = ___buf1;
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_33 = *((Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83**)L_32);
int32_t L_34 = V_1;
NullCheck(L_33);
int32_t L_35 = L_34;
int32_t L_36 = (L_33)->GetAt(static_cast<il2cpp_array_size_t>(L_35));
NullCheck(L_31);
StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A(L_31, (((int32_t)((uint16_t)L_36))), /*hidden argument*/NULL);
goto IL_008b;
}
IL_0062:
{
StringBuilder_t ** L_37 = ___sb0;
StringBuilder_t * L_38 = *((StringBuilder_t **)L_37);
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** L_39 = ___buf1;
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_40 = *((Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83**)L_39);
int32_t L_41 = V_1;
NullCheck(L_40);
int32_t L_42 = L_41;
int32_t L_43 = (L_40)->GetAt(static_cast<il2cpp_array_size_t>(L_42));
NullCheck(L_38);
StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A(L_38, (((int32_t)((uint16_t)((int32_t)((int32_t)L_43>>(int32_t)((int32_t)10)))))), /*hidden argument*/NULL);
StringBuilder_t ** L_44 = ___sb0;
StringBuilder_t * L_45 = *((StringBuilder_t **)L_44);
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** L_46 = ___buf1;
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_47 = *((Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83**)L_46);
int32_t L_48 = V_1;
NullCheck(L_47);
int32_t L_49 = L_48;
int32_t L_50 = (L_47)->GetAt(static_cast<il2cpp_array_size_t>(L_49));
NullCheck(L_45);
StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A(L_45, (((int32_t)((uint16_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)((int32_t)L_50&(int32_t)((int32_t)4095))), (int32_t)((int32_t)56320)))))), /*hidden argument*/NULL);
}
IL_008b:
{
int32_t L_51 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_51, (int32_t)1));
}
IL_008f:
{
int32_t L_52 = V_1;
int32_t L_53 = V_0;
if ((((int32_t)L_52) < ((int32_t)L_53)))
{
goto IL_0048;
}
}
{
int32_t* L_54 = ___start5;
int32_t L_55 = ___i3;
*((int32_t*)L_54) = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_55, (int32_t)1));
return;
}
}
// System.Text.NormalizationCheck System.Text.Normalization::QuickCheck(System.Char,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Normalization_QuickCheck_m41D4FF8E0DC13D1D0CE7BDB35607FDA313DCB86B (Il2CppChar ___c0, int32_t ___type1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Normalization_QuickCheck_m41D4FF8E0DC13D1D0CE7BDB35607FDA313DCB86B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
uint32_t V_0 = 0;
{
int32_t L_0 = ___type1;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)1)))
{
case 0:
{
goto IL_002b;
}
case 1:
{
goto IL_004b;
}
case 2:
{
goto IL_0064;
}
}
}
{
Il2CppChar L_1 = ___c0;
IL2CPP_RUNTIME_CLASS_INIT(Normalization_t5DC806A630757AD1E908576E8B2EEB2A77BEC22E_il2cpp_TypeInfo_var);
uint32_t L_2 = Normalization_PropValue_m74F5DC4C2FF35022E0473B8B6EBC83609E0D5511(L_1, /*hidden argument*/NULL);
V_0 = L_2;
uint32_t L_3 = V_0;
if (!((int32_t)((int32_t)L_3&(int32_t)4)))
{
goto IL_0022;
}
}
{
return (int32_t)(1);
}
IL_0022:
{
uint32_t L_4 = V_0;
if (!((int32_t)((int32_t)L_4&(int32_t)8)))
{
goto IL_0029;
}
}
{
return (int32_t)(2);
}
IL_0029:
{
return (int32_t)(0);
}
IL_002b:
{
Il2CppChar L_5 = ___c0;
if ((((int32_t)((int32_t)44032)) > ((int32_t)L_5)))
{
goto IL_003d;
}
}
{
Il2CppChar L_6 = ___c0;
if ((((int32_t)L_6) > ((int32_t)((int32_t)55203))))
{
goto IL_003d;
}
}
{
return (int32_t)(1);
}
IL_003d:
{
Il2CppChar L_7 = ___c0;
IL2CPP_RUNTIME_CLASS_INIT(Normalization_t5DC806A630757AD1E908576E8B2EEB2A77BEC22E_il2cpp_TypeInfo_var);
uint32_t L_8 = Normalization_PropValue_m74F5DC4C2FF35022E0473B8B6EBC83609E0D5511(L_7, /*hidden argument*/NULL);
if (((int32_t)((int32_t)L_8&(int32_t)1)))
{
goto IL_0049;
}
}
{
return (int32_t)(0);
}
IL_0049:
{
return (int32_t)(1);
}
IL_004b:
{
Il2CppChar L_9 = ___c0;
IL2CPP_RUNTIME_CLASS_INIT(Normalization_t5DC806A630757AD1E908576E8B2EEB2A77BEC22E_il2cpp_TypeInfo_var);
uint32_t L_10 = Normalization_PropValue_m74F5DC4C2FF35022E0473B8B6EBC83609E0D5511(L_9, /*hidden argument*/NULL);
V_0 = L_10;
uint32_t L_11 = V_0;
if (((int32_t)((int32_t)L_11&(int32_t)((int32_t)16))))
{
goto IL_0062;
}
}
{
uint32_t L_12 = V_0;
if (((int32_t)((int32_t)L_12&(int32_t)((int32_t)32))))
{
goto IL_0060;
}
}
{
return (int32_t)(0);
}
IL_0060:
{
return (int32_t)(2);
}
IL_0062:
{
return (int32_t)(1);
}
IL_0064:
{
Il2CppChar L_13 = ___c0;
if ((((int32_t)((int32_t)44032)) > ((int32_t)L_13)))
{
goto IL_0076;
}
}
{
Il2CppChar L_14 = ___c0;
if ((((int32_t)L_14) > ((int32_t)((int32_t)55203))))
{
goto IL_0076;
}
}
{
return (int32_t)(1);
}
IL_0076:
{
Il2CppChar L_15 = ___c0;
IL2CPP_RUNTIME_CLASS_INIT(Normalization_t5DC806A630757AD1E908576E8B2EEB2A77BEC22E_il2cpp_TypeInfo_var);
uint32_t L_16 = Normalization_PropValue_m74F5DC4C2FF35022E0473B8B6EBC83609E0D5511(L_15, /*hidden argument*/NULL);
if (((int32_t)((int32_t)L_16&(int32_t)2)))
{
goto IL_0082;
}
}
{
return (int32_t)(0);
}
IL_0082:
{
return (int32_t)(1);
}
}
// System.Int32 System.Text.Normalization::GetCanonicalHangul(System.Int32,System.Int32[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Normalization_GetCanonicalHangul_mE5E98FB3A1941526B0D69E8086C3650AE85D7982 (int32_t ___s0, Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___buf1, int32_t ___bufIdx2, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
int32_t V_3 = 0;
{
int32_t L_0 = ___s0;
V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)((int32_t)44032)));
int32_t L_1 = V_0;
if ((((int32_t)L_1) < ((int32_t)0)))
{
goto IL_0014;
}
}
{
int32_t L_2 = V_0;
if ((((int32_t)L_2) < ((int32_t)((int32_t)11172))))
{
goto IL_0016;
}
}
IL_0014:
{
int32_t L_3 = ___bufIdx2;
return L_3;
}
IL_0016:
{
int32_t L_4 = V_0;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)4352), (int32_t)((int32_t)((int32_t)L_4/(int32_t)((int32_t)588)))));
int32_t L_5 = V_0;
V_2 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)4449), (int32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_5%(int32_t)((int32_t)588)))/(int32_t)((int32_t)28)))));
int32_t L_6 = V_0;
V_3 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)4519), (int32_t)((int32_t)((int32_t)L_6%(int32_t)((int32_t)28)))));
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_7 = ___buf1;
int32_t L_8 = ___bufIdx2;
int32_t L_9 = L_8;
___bufIdx2 = ((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1));
int32_t L_10 = V_1;
NullCheck(L_7);
(L_7)->SetAt(static_cast<il2cpp_array_size_t>(L_9), (int32_t)L_10);
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_11 = ___buf1;
int32_t L_12 = ___bufIdx2;
int32_t L_13 = L_12;
___bufIdx2 = ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1));
int32_t L_14 = V_2;
NullCheck(L_11);
(L_11)->SetAt(static_cast<il2cpp_array_size_t>(L_13), (int32_t)L_14);
int32_t L_15 = V_3;
if ((((int32_t)L_15) == ((int32_t)((int32_t)4519))))
{
goto IL_0063;
}
}
{
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_16 = ___buf1;
int32_t L_17 = ___bufIdx2;
int32_t L_18 = L_17;
___bufIdx2 = ((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1));
int32_t L_19 = V_3;
NullCheck(L_16);
(L_16)->SetAt(static_cast<il2cpp_array_size_t>(L_18), (int32_t)L_19);
}
IL_0063:
{
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_20 = ___buf1;
int32_t L_21 = ___bufIdx2;
NullCheck(L_20);
(L_20)->SetAt(static_cast<il2cpp_array_size_t>(L_21), (int32_t)0);
int32_t L_22 = ___bufIdx2;
return L_22;
}
}
// System.Int32 System.Text.Normalization::GetCanonical(System.Int32,System.Int32[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Normalization_GetCanonical_m9BE2B7D000EACEBFEDD8CFB4BAA9F9A04ACB53E1 (int32_t ___c0, Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___buf1, int32_t ___bufIdx2, int32_t ___checkType3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Normalization_GetCanonical_m9BE2B7D000EACEBFEDD8CFB4BAA9F9A04ACB53E1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___c0;
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_1 = ___buf1;
int32_t L_2 = ___bufIdx2;
IL2CPP_RUNTIME_CLASS_INIT(Normalization_t5DC806A630757AD1E908576E8B2EEB2A77BEC22E_il2cpp_TypeInfo_var);
int32_t L_3 = Normalization_GetCanonicalHangul_mE5E98FB3A1941526B0D69E8086C3650AE85D7982(L_0, L_1, L_2, /*hidden argument*/NULL);
V_0 = L_3;
int32_t L_4 = V_0;
int32_t L_5 = ___bufIdx2;
if ((((int32_t)L_4) <= ((int32_t)L_5)))
{
goto IL_000f;
}
}
{
int32_t L_6 = V_0;
return L_6;
}
IL_000f:
{
int32_t L_7 = ___c0;
IL2CPP_RUNTIME_CLASS_INIT(Normalization_t5DC806A630757AD1E908576E8B2EEB2A77BEC22E_il2cpp_TypeInfo_var);
int32_t L_8 = Normalization_CharMapIdx_mD7FF7B9511E1108A8718E0AA1C81EB65BDCE6BA9(L_7, /*hidden argument*/NULL);
V_1 = L_8;
int32_t L_9 = V_1;
if (!L_9)
{
goto IL_0027;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(Normalization_t5DC806A630757AD1E908576E8B2EEB2A77BEC22E_il2cpp_TypeInfo_var);
int32_t* L_10 = ((Normalization_t5DC806A630757AD1E908576E8B2EEB2A77BEC22E_StaticFields*)il2cpp_codegen_static_fields_for(Normalization_t5DC806A630757AD1E908576E8B2EEB2A77BEC22E_il2cpp_TypeInfo_var))->get_mappedChars_1();
int32_t L_11 = V_1;
int32_t L_12 = *((int32_t*)((int32_t*)il2cpp_codegen_add((intptr_t)L_10, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_11)), (int32_t)4)))));
int32_t L_13 = ___c0;
if ((!(((uint32_t)L_12) == ((uint32_t)L_13))))
{
goto IL_006a;
}
}
IL_0027:
{
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_14 = ___buf1;
int32_t L_15 = ___bufIdx2;
int32_t L_16 = L_15;
___bufIdx2 = ((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
int32_t L_17 = ___c0;
NullCheck(L_14);
(L_14)->SetAt(static_cast<il2cpp_array_size_t>(L_16), (int32_t)L_17);
goto IL_0077;
}
IL_0032:
{
IL2CPP_RUNTIME_CLASS_INIT(Normalization_t5DC806A630757AD1E908576E8B2EEB2A77BEC22E_il2cpp_TypeInfo_var);
int32_t* L_18 = ((Normalization_t5DC806A630757AD1E908576E8B2EEB2A77BEC22E_StaticFields*)il2cpp_codegen_static_fields_for(Normalization_t5DC806A630757AD1E908576E8B2EEB2A77BEC22E_il2cpp_TypeInfo_var))->get_mappedChars_1();
int32_t L_19 = V_1;
int32_t L_20 = *((int32_t*)((int32_t*)il2cpp_codegen_add((intptr_t)L_18, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_19)), (int32_t)4)))));
V_2 = L_20;
int32_t L_21 = V_2;
if ((((int32_t)L_21) > ((int32_t)((int32_t)65535))))
{
goto IL_005b;
}
}
{
int32_t L_22 = V_2;
int32_t L_23 = ___checkType3;
IL2CPP_RUNTIME_CLASS_INIT(Normalization_t5DC806A630757AD1E908576E8B2EEB2A77BEC22E_il2cpp_TypeInfo_var);
int32_t L_24 = Normalization_QuickCheck_m41D4FF8E0DC13D1D0CE7BDB35607FDA313DCB86B((((int32_t)((uint16_t)L_22))), L_23, /*hidden argument*/NULL);
if (L_24)
{
goto IL_005b;
}
}
{
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_25 = ___buf1;
int32_t L_26 = ___bufIdx2;
int32_t L_27 = L_26;
___bufIdx2 = ((int32_t)il2cpp_codegen_add((int32_t)L_27, (int32_t)1));
int32_t L_28 = V_2;
NullCheck(L_25);
(L_25)->SetAt(static_cast<il2cpp_array_size_t>(L_27), (int32_t)L_28);
goto IL_0066;
}
IL_005b:
{
int32_t L_29 = V_2;
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_30 = ___buf1;
int32_t L_31 = ___bufIdx2;
int32_t L_32 = ___checkType3;
IL2CPP_RUNTIME_CLASS_INIT(Normalization_t5DC806A630757AD1E908576E8B2EEB2A77BEC22E_il2cpp_TypeInfo_var);
int32_t L_33 = Normalization_GetCanonical_m9BE2B7D000EACEBFEDD8CFB4BAA9F9A04ACB53E1(L_29, L_30, L_31, L_32, /*hidden argument*/NULL);
___bufIdx2 = L_33;
}
IL_0066:
{
int32_t L_34 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_34, (int32_t)1));
}
IL_006a:
{
IL2CPP_RUNTIME_CLASS_INIT(Normalization_t5DC806A630757AD1E908576E8B2EEB2A77BEC22E_il2cpp_TypeInfo_var);
int32_t* L_35 = ((Normalization_t5DC806A630757AD1E908576E8B2EEB2A77BEC22E_StaticFields*)il2cpp_codegen_static_fields_for(Normalization_t5DC806A630757AD1E908576E8B2EEB2A77BEC22E_il2cpp_TypeInfo_var))->get_mappedChars_1();
int32_t L_36 = V_1;
int32_t L_37 = *((int32_t*)((int32_t*)il2cpp_codegen_add((intptr_t)L_35, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_36)), (int32_t)4)))));
if (L_37)
{
goto IL_0032;
}
}
IL_0077:
{
int32_t L_38 = ___bufIdx2;
return L_38;
}
}
// System.String System.Text.Normalization::Normalize(System.String,System.Text.NormalizationForm)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Normalization_Normalize_mF3A284956561BA6BACEBCA2D28419DF54BBE279E (String_t* ___source0, int32_t ___normalizationForm1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Normalization_Normalize_mF3A284956561BA6BACEBCA2D28419DF54BBE279E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___normalizationForm1;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)2)))
{
case 0:
{
goto IL_0024;
}
case 1:
{
goto IL_001c;
}
case 2:
{
goto IL_001c;
}
case 3:
{
goto IL_002c;
}
case 4:
{
goto IL_0034;
}
}
}
IL_001c:
{
String_t* L_1 = ___source0;
IL2CPP_RUNTIME_CLASS_INIT(Normalization_t5DC806A630757AD1E908576E8B2EEB2A77BEC22E_il2cpp_TypeInfo_var);
String_t* L_2 = Normalization_Normalize_mE05051BD0A486B68CA43E9AB82EECFFF1F952DEF(L_1, 0, /*hidden argument*/NULL);
return L_2;
}
IL_0024:
{
String_t* L_3 = ___source0;
IL2CPP_RUNTIME_CLASS_INIT(Normalization_t5DC806A630757AD1E908576E8B2EEB2A77BEC22E_il2cpp_TypeInfo_var);
String_t* L_4 = Normalization_Normalize_mE05051BD0A486B68CA43E9AB82EECFFF1F952DEF(L_3, 1, /*hidden argument*/NULL);
return L_4;
}
IL_002c:
{
String_t* L_5 = ___source0;
IL2CPP_RUNTIME_CLASS_INIT(Normalization_t5DC806A630757AD1E908576E8B2EEB2A77BEC22E_il2cpp_TypeInfo_var);
String_t* L_6 = Normalization_Normalize_mE05051BD0A486B68CA43E9AB82EECFFF1F952DEF(L_5, 2, /*hidden argument*/NULL);
return L_6;
}
IL_0034:
{
String_t* L_7 = ___source0;
IL2CPP_RUNTIME_CLASS_INIT(Normalization_t5DC806A630757AD1E908576E8B2EEB2A77BEC22E_il2cpp_TypeInfo_var);
String_t* L_8 = Normalization_Normalize_mE05051BD0A486B68CA43E9AB82EECFFF1F952DEF(L_7, 3, /*hidden argument*/NULL);
return L_8;
}
}
// System.String System.Text.Normalization::Normalize(System.String,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Normalization_Normalize_mE05051BD0A486B68CA43E9AB82EECFFF1F952DEF (String_t* ___source0, int32_t ___type1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Normalization_Normalize_mE05051BD0A486B68CA43E9AB82EECFFF1F952DEF_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___type1;
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)1)))
{
case 0:
{
goto IL_001c;
}
case 1:
{
goto IL_0014;
}
case 2:
{
goto IL_001c;
}
}
}
IL_0014:
{
String_t* L_1 = ___source0;
int32_t L_2 = ___type1;
IL2CPP_RUNTIME_CLASS_INIT(Normalization_t5DC806A630757AD1E908576E8B2EEB2A77BEC22E_il2cpp_TypeInfo_var);
String_t* L_3 = Normalization_Compose_mEB36830839D05AAA1579B2500EAF0AF0611910AA(L_1, L_2, /*hidden argument*/NULL);
return L_3;
}
IL_001c:
{
String_t* L_4 = ___source0;
int32_t L_5 = ___type1;
IL2CPP_RUNTIME_CLASS_INIT(Normalization_t5DC806A630757AD1E908576E8B2EEB2A77BEC22E_il2cpp_TypeInfo_var);
String_t* L_6 = Normalization_Decompose_m72A6B276D99DEA8A6060E5060342D44BE739E030(L_4, L_5, /*hidden argument*/NULL);
return L_6;
}
}
// System.Void System.Text.Normalization::load_normalization_resource(System.IntPtr&,System.IntPtr&,System.IntPtr&,System.IntPtr&,System.IntPtr&,System.IntPtr&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Normalization_load_normalization_resource_m189BEDAFFDA3BEBCDCF2FDD71C10E76E6F1DD278 (intptr_t* ___props0, intptr_t* ___mappedChars1, intptr_t* ___charMapIndex2, intptr_t* ___helperIndex3, intptr_t* ___mapIdxToComposite4, intptr_t* ___combiningClass5, const RuntimeMethod* method)
{
typedef void (*Normalization_load_normalization_resource_m189BEDAFFDA3BEBCDCF2FDD71C10E76E6F1DD278_ftn) (intptr_t*, intptr_t*, intptr_t*, intptr_t*, intptr_t*, intptr_t*);
using namespace il2cpp::icalls;
((Normalization_load_normalization_resource_m189BEDAFFDA3BEBCDCF2FDD71C10E76E6F1DD278_ftn)mscorlib::System::Text::Normalization::load_normalization_resource) (___props0, ___mappedChars1, ___charMapIndex2, ___helperIndex3, ___mapIdxToComposite4, ___combiningClass5);
}
// System.Void System.Text.Normalization::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Normalization__cctor_m44035F20D7FD40CD6C7A11C4994FD5DC11D69A0A (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Normalization__cctor_m44035F20D7FD40CD6C7A11C4994FD5DC11D69A0A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
intptr_t V_0;
memset((&V_0), 0, sizeof(V_0));
intptr_t V_1;
memset((&V_1), 0, sizeof(V_1));
intptr_t V_2;
memset((&V_2), 0, sizeof(V_2));
intptr_t V_3;
memset((&V_3), 0, sizeof(V_3));
intptr_t V_4;
memset((&V_4), 0, sizeof(V_4));
intptr_t V_5;
memset((&V_5), 0, sizeof(V_5));
RuntimeObject * V_6 = NULL;
bool V_7 = 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);
{
RuntimeObject * L_0 = (RuntimeObject *)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(L_0, /*hidden argument*/NULL);
((Normalization_t5DC806A630757AD1E908576E8B2EEB2A77BEC22E_StaticFields*)il2cpp_codegen_static_fields_for(Normalization_t5DC806A630757AD1E908576E8B2EEB2A77BEC22E_il2cpp_TypeInfo_var))->set_forLock_6(L_0);
RuntimeObject * L_1 = ((Normalization_t5DC806A630757AD1E908576E8B2EEB2A77BEC22E_StaticFields*)il2cpp_codegen_static_fields_for(Normalization_t5DC806A630757AD1E908576E8B2EEB2A77BEC22E_il2cpp_TypeInfo_var))->get_forLock_6();
V_6 = L_1;
V_7 = (bool)0;
}
IL_0014:
try
{ // begin try (depth: 1)
RuntimeObject * L_2 = V_6;
Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(L_2, (bool*)(&V_7), /*hidden argument*/NULL);
Normalization_load_normalization_resource_m189BEDAFFDA3BEBCDCF2FDD71C10E76E6F1DD278((intptr_t*)(&V_0), (intptr_t*)(&V_1), (intptr_t*)(&V_2), (intptr_t*)(&V_3), (intptr_t*)(&V_4), (intptr_t*)(&V_5), /*hidden argument*/NULL);
intptr_t L_3 = V_0;
void* L_4 = IntPtr_op_Explicit_mB8A512095BCE1A23B2840310C8A27C928ADAD027((intptr_t)L_3, /*hidden argument*/NULL);
((Normalization_t5DC806A630757AD1E908576E8B2EEB2A77BEC22E_StaticFields*)il2cpp_codegen_static_fields_for(Normalization_t5DC806A630757AD1E908576E8B2EEB2A77BEC22E_il2cpp_TypeInfo_var))->set_props_0((uint8_t*)L_4);
intptr_t L_5 = V_1;
void* L_6 = IntPtr_op_Explicit_mB8A512095BCE1A23B2840310C8A27C928ADAD027((intptr_t)L_5, /*hidden argument*/NULL);
((Normalization_t5DC806A630757AD1E908576E8B2EEB2A77BEC22E_StaticFields*)il2cpp_codegen_static_fields_for(Normalization_t5DC806A630757AD1E908576E8B2EEB2A77BEC22E_il2cpp_TypeInfo_var))->set_mappedChars_1((int32_t*)L_6);
intptr_t L_7 = V_2;
void* L_8 = IntPtr_op_Explicit_mB8A512095BCE1A23B2840310C8A27C928ADAD027((intptr_t)L_7, /*hidden argument*/NULL);
((Normalization_t5DC806A630757AD1E908576E8B2EEB2A77BEC22E_StaticFields*)il2cpp_codegen_static_fields_for(Normalization_t5DC806A630757AD1E908576E8B2EEB2A77BEC22E_il2cpp_TypeInfo_var))->set_charMapIndex_2((int16_t*)L_8);
intptr_t L_9 = V_3;
void* L_10 = IntPtr_op_Explicit_mB8A512095BCE1A23B2840310C8A27C928ADAD027((intptr_t)L_9, /*hidden argument*/NULL);
((Normalization_t5DC806A630757AD1E908576E8B2EEB2A77BEC22E_StaticFields*)il2cpp_codegen_static_fields_for(Normalization_t5DC806A630757AD1E908576E8B2EEB2A77BEC22E_il2cpp_TypeInfo_var))->set_helperIndex_3((int16_t*)L_10);
intptr_t L_11 = V_4;
void* L_12 = IntPtr_op_Explicit_mB8A512095BCE1A23B2840310C8A27C928ADAD027((intptr_t)L_11, /*hidden argument*/NULL);
((Normalization_t5DC806A630757AD1E908576E8B2EEB2A77BEC22E_StaticFields*)il2cpp_codegen_static_fields_for(Normalization_t5DC806A630757AD1E908576E8B2EEB2A77BEC22E_il2cpp_TypeInfo_var))->set_mapIdxToComposite_4((uint16_t*)L_12);
intptr_t L_13 = V_5;
void* L_14 = IntPtr_op_Explicit_mB8A512095BCE1A23B2840310C8A27C928ADAD027((intptr_t)L_13, /*hidden argument*/NULL);
((Normalization_t5DC806A630757AD1E908576E8B2EEB2A77BEC22E_StaticFields*)il2cpp_codegen_static_fields_for(Normalization_t5DC806A630757AD1E908576E8B2EEB2A77BEC22E_il2cpp_TypeInfo_var))->set_combiningClass_5((uint8_t*)L_14);
IL2CPP_LEAVE(0x80, FINALLY_0074);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0074;
}
FINALLY_0074:
{ // begin finally (depth: 1)
{
bool L_15 = V_7;
if (!L_15)
{
goto IL_007f;
}
}
IL_0078:
{
RuntimeObject * L_16 = V_6;
Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_16, /*hidden argument*/NULL);
}
IL_007f:
{
IL2CPP_END_FINALLY(116)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(116)
{
IL2CPP_JUMP_TBL(0x80, IL_0080)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0080:
{
((Normalization_t5DC806A630757AD1E908576E8B2EEB2A77BEC22E_StaticFields*)il2cpp_codegen_static_fields_for(Normalization_t5DC806A630757AD1E908576E8B2EEB2A77BEC22E_il2cpp_TypeInfo_var))->set_isReady_7((bool)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
#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.Text.StringBuilder::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder__ctor_mF928376F82E8C8FF3C11842C562DB8CF28B2735E (StringBuilder_t * __this, const RuntimeMethod* method)
{
{
StringBuilder__ctor_m1C0F2D97B838537A2D0F64033AE4EF02D150A956(__this, ((int32_t)16), /*hidden argument*/NULL);
return;
}
}
// System.Void System.Text.StringBuilder::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder__ctor_m1C0F2D97B838537A2D0F64033AE4EF02D150A956 (StringBuilder_t * __this, int32_t ___capacity0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StringBuilder__ctor_m1C0F2D97B838537A2D0F64033AE4EF02D150A956_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5();
int32_t L_1 = ___capacity0;
StringBuilder__ctor_m786CAFE74FE0D479747A0D474BE6EBCFDA5743EA(__this, L_0, L_1, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Text.StringBuilder::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder__ctor_m53E278FB62B3EAEFAF82890C97219B9B5E2A56C3 (StringBuilder_t * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
StringBuilder__ctor_m786CAFE74FE0D479747A0D474BE6EBCFDA5743EA(__this, L_0, ((int32_t)16), /*hidden argument*/NULL);
return;
}
}
// System.Void System.Text.StringBuilder::.ctor(System.String,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder__ctor_m786CAFE74FE0D479747A0D474BE6EBCFDA5743EA (StringBuilder_t * __this, String_t* ___value0, int32_t ___capacity1, const RuntimeMethod* method)
{
int32_t G_B2_0 = 0;
String_t* G_B2_1 = NULL;
StringBuilder_t * G_B2_2 = NULL;
int32_t G_B1_0 = 0;
String_t* G_B1_1 = NULL;
StringBuilder_t * G_B1_2 = NULL;
int32_t G_B3_0 = 0;
int32_t G_B3_1 = 0;
String_t* G_B3_2 = NULL;
StringBuilder_t * G_B3_3 = NULL;
{
String_t* L_0 = ___value0;
String_t* L_1 = ___value0;
G_B1_0 = 0;
G_B1_1 = L_0;
G_B1_2 = __this;
if (L_1)
{
G_B2_0 = 0;
G_B2_1 = L_0;
G_B2_2 = __this;
goto IL_0009;
}
}
{
G_B3_0 = 0;
G_B3_1 = G_B1_0;
G_B3_2 = G_B1_1;
G_B3_3 = G_B1_2;
goto IL_000f;
}
IL_0009:
{
String_t* L_2 = ___value0;
NullCheck(L_2);
int32_t L_3 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_2, /*hidden argument*/NULL);
G_B3_0 = L_3;
G_B3_1 = G_B2_0;
G_B3_2 = G_B2_1;
G_B3_3 = G_B2_2;
}
IL_000f:
{
int32_t L_4 = ___capacity1;
NullCheck(G_B3_3);
StringBuilder__ctor_m105DFD306CF1352C62553EED8AC7ABAAC62B7245(G_B3_3, G_B3_2, G_B3_1, G_B3_0, L_4, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Text.StringBuilder::.ctor(System.String,System.Int32,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder__ctor_m105DFD306CF1352C62553EED8AC7ABAAC62B7245 (StringBuilder_t * __this, String_t* ___value0, int32_t ___startIndex1, int32_t ___length2, int32_t ___capacity3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StringBuilder__ctor_m105DFD306CF1352C62553EED8AC7ABAAC62B7245_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Il2CppChar* V_0 = NULL;
String_t* V_1 = NULL;
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
int32_t L_0 = ___capacity3;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_002e;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = L_1;
NullCheck(L_2);
ArrayElementTypeCheck (L_2, _stringLiteral7CB1F56D3FBE09E809244FC8E13671CD876E3860);
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)_stringLiteral7CB1F56D3FBE09E809244FC8E13671CD876E3860);
String_t* L_3 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteralC9E6E7DE9703383E07A53813E0B0CEAC3F74E9D8, L_2, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_4 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_4, _stringLiteral7CB1F56D3FBE09E809244FC8E13671CD876E3860, L_3, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, StringBuilder__ctor_m105DFD306CF1352C62553EED8AC7ABAAC62B7245_RuntimeMethod_var);
}
IL_002e:
{
int32_t L_5 = ___length2;
if ((((int32_t)L_5) >= ((int32_t)0)))
{
goto IL_0055;
}
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_6 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_7 = L_6;
NullCheck(L_7);
ArrayElementTypeCheck (L_7, _stringLiteral3D54973F528B01019A58A52D34D518405A01B891);
(L_7)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)_stringLiteral3D54973F528B01019A58A52D34D518405A01B891);
String_t* L_8 = Environment_GetResourceString_m7389941B4C0688D875CC647D99A739DA2F907ADB(_stringLiteral30604394791BC9E659A2233492C5416B09AC67D5, L_7, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_9 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_9, _stringLiteral3D54973F528B01019A58A52D34D518405A01B891, L_8, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, StringBuilder__ctor_m105DFD306CF1352C62553EED8AC7ABAAC62B7245_RuntimeMethod_var);
}
IL_0055:
{
int32_t L_10 = ___startIndex1;
if ((((int32_t)L_10) >= ((int32_t)0)))
{
goto IL_006e;
}
}
{
String_t* L_11 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral99DD65011324D0DDDAE2BC2BE40CEFC52DC334BE, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_12 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_12, _stringLiteral8972561214BDFD4779823E480036EAF0853E3C56, L_11, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, StringBuilder__ctor_m105DFD306CF1352C62553EED8AC7ABAAC62B7245_RuntimeMethod_var);
}
IL_006e:
{
String_t* L_13 = ___value0;
if (L_13)
{
goto IL_0078;
}
}
{
String_t* L_14 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5();
___value0 = L_14;
}
IL_0078:
{
int32_t L_15 = ___startIndex1;
String_t* L_16 = ___value0;
NullCheck(L_16);
int32_t L_17 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_16, /*hidden argument*/NULL);
int32_t L_18 = ___length2;
if ((((int32_t)L_15) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_17, (int32_t)L_18)))))
{
goto IL_0098;
}
}
{
String_t* L_19 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral046490AF8515A05693281DF74BD30B0BD06C83E0, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_20 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_20, _stringLiteral3D54973F528B01019A58A52D34D518405A01B891, L_19, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_20, StringBuilder__ctor_m105DFD306CF1352C62553EED8AC7ABAAC62B7245_RuntimeMethod_var);
}
IL_0098:
{
__this->set_m_MaxCapacity_4(((int32_t)2147483647LL));
int32_t L_21 = ___capacity3;
if (L_21)
{
goto IL_00ab;
}
}
{
___capacity3 = ((int32_t)16);
}
IL_00ab:
{
int32_t L_22 = ___capacity3;
int32_t L_23 = ___length2;
if ((((int32_t)L_22) >= ((int32_t)L_23)))
{
goto IL_00b3;
}
}
{
int32_t L_24 = ___length2;
___capacity3 = L_24;
}
IL_00b3:
{
int32_t L_25 = ___capacity3;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_26 = (CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)SZArrayNew(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2_il2cpp_TypeInfo_var, (uint32_t)L_25);
__this->set_m_ChunkChars_0(L_26);
int32_t L_27 = ___length2;
__this->set_m_ChunkLength_2(L_27);
String_t* L_28 = ___value0;
V_1 = L_28;
String_t* L_29 = V_1;
V_0 = (Il2CppChar*)(((uintptr_t)L_29));
Il2CppChar* L_30 = V_0;
if (!L_30)
{
goto IL_00d7;
}
}
{
Il2CppChar* L_31 = V_0;
int32_t L_32 = RuntimeHelpers_get_OffsetToStringData_mF3B79A906181F1A2734590DA161E2AF183853F8B(/*hidden argument*/NULL);
V_0 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_31, (int32_t)L_32));
}
IL_00d7:
{
Il2CppChar* L_33 = V_0;
int32_t L_34 = ___startIndex1;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_35 = __this->get_m_ChunkChars_0();
int32_t L_36 = ___length2;
StringBuilder_ThreadSafeCopy_mF35929E10961A91520C9DE919B013977B2DFCF84((Il2CppChar*)(Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_33, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_34)), (int32_t)2)))), L_35, 0, L_36, /*hidden argument*/NULL);
V_1 = (String_t*)NULL;
return;
}
}
// System.Void System.Text.StringBuilder::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder__ctor_m50F68196A42EEEC82EC4A482CDDC33D1A4527CE0 (StringBuilder_t * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StringBuilder__ctor_m50F68196A42EEEC82EC4A482CDDC33D1A4527CE0_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
String_t* V_1 = NULL;
int32_t V_2 = 0;
bool V_3 = false;
SerializationInfoEnumerator_tB72162C419D705A40F34DDFEB18E6ACA347C54E5 * V_4 = NULL;
String_t* V_5 = NULL;
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0;
if (L_0)
{
goto IL_0014;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral59BD0A3FF43B32849B319E645D4798D8A5D1E889, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, StringBuilder__ctor_m50F68196A42EEEC82EC4A482CDDC33D1A4527CE0_RuntimeMethod_var);
}
IL_0014:
{
V_0 = 0;
V_1 = (String_t*)NULL;
V_2 = ((int32_t)2147483647LL);
V_3 = (bool)0;
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_2 = ___info0;
NullCheck(L_2);
SerializationInfoEnumerator_tB72162C419D705A40F34DDFEB18E6ACA347C54E5 * L_3 = SerializationInfo_GetEnumerator_m9796C5CB43B69B5236D530A547A4FC24ABB0B575(L_2, /*hidden argument*/NULL);
V_4 = L_3;
goto IL_0089;
}
IL_002a:
{
SerializationInfoEnumerator_tB72162C419D705A40F34DDFEB18E6ACA347C54E5 * L_4 = V_4;
NullCheck(L_4);
String_t* L_5 = SerializationInfoEnumerator_get_Name_m925E3C668A70982F88C8EBEEB86BA0D45B71857E(L_4, /*hidden argument*/NULL);
V_5 = L_5;
String_t* L_6 = V_5;
bool L_7 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_6, _stringLiteral3ECE74215FB2793907E8EFA463AA7FFD96E196C1, /*hidden argument*/NULL);
if (L_7)
{
goto IL_005f;
}
}
{
String_t* L_8 = V_5;
bool L_9 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_8, _stringLiteralF5B1C6DBB589A6CFBD4698F1E5B4B27DB5735D40, /*hidden argument*/NULL);
if (L_9)
{
goto IL_006d;
}
}
{
String_t* L_10 = V_5;
bool L_11 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_10, _stringLiteral45BD908DF490EDD79694BA0DAFF82FC092970B55, /*hidden argument*/NULL);
if (L_11)
{
goto IL_007b;
}
}
{
goto IL_0089;
}
IL_005f:
{
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_12 = ___info0;
NullCheck(L_12);
int32_t L_13 = SerializationInfo_GetInt32_mB47BD46A0BDBBAF5B47BB62E6EFF8E092E3F3656(L_12, _stringLiteral3ECE74215FB2793907E8EFA463AA7FFD96E196C1, /*hidden argument*/NULL);
V_2 = L_13;
goto IL_0089;
}
IL_006d:
{
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_14 = ___info0;
NullCheck(L_14);
String_t* L_15 = SerializationInfo_GetString_m06805A4E368E0B98D5FA70A9333B277CBDD84CF4(L_14, _stringLiteralF5B1C6DBB589A6CFBD4698F1E5B4B27DB5735D40, /*hidden argument*/NULL);
V_1 = L_15;
goto IL_0089;
}
IL_007b:
{
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_16 = ___info0;
NullCheck(L_16);
int32_t L_17 = SerializationInfo_GetInt32_mB47BD46A0BDBBAF5B47BB62E6EFF8E092E3F3656(L_16, _stringLiteral45BD908DF490EDD79694BA0DAFF82FC092970B55, /*hidden argument*/NULL);
V_0 = L_17;
V_3 = (bool)1;
}
IL_0089:
{
SerializationInfoEnumerator_tB72162C419D705A40F34DDFEB18E6ACA347C54E5 * L_18 = V_4;
NullCheck(L_18);
bool L_19 = SerializationInfoEnumerator_MoveNext_m74D8DE9528E7DDD141DD45ABF4B54F832DE35701(L_18, /*hidden argument*/NULL);
if (L_19)
{
goto IL_002a;
}
}
{
String_t* L_20 = V_1;
if (L_20)
{
goto IL_009b;
}
}
{
String_t* L_21 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5();
V_1 = L_21;
}
IL_009b:
{
int32_t L_22 = V_2;
if ((((int32_t)L_22) < ((int32_t)1)))
{
goto IL_00a8;
}
}
{
String_t* L_23 = V_1;
NullCheck(L_23);
int32_t L_24 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_23, /*hidden argument*/NULL);
int32_t L_25 = V_2;
if ((((int32_t)L_24) <= ((int32_t)L_25)))
{
goto IL_00b8;
}
}
IL_00a8:
{
String_t* L_26 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralCDDB8772CED7B8ED1FE0EAA7D513FF405474F6A0, /*hidden argument*/NULL);
SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210 * L_27 = (SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210 *)il2cpp_codegen_object_new(SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210_il2cpp_TypeInfo_var);
SerializationException__ctor_m88AAD9671030A8A96AA87CB95701938FBD8F16E1(L_27, L_26, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_27, StringBuilder__ctor_m50F68196A42EEEC82EC4A482CDDC33D1A4527CE0_RuntimeMethod_var);
}
IL_00b8:
{
bool L_28 = V_3;
if (L_28)
{
goto IL_00d4;
}
}
{
V_0 = ((int32_t)16);
int32_t L_29 = V_0;
String_t* L_30 = V_1;
NullCheck(L_30);
int32_t L_31 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_30, /*hidden argument*/NULL);
if ((((int32_t)L_29) >= ((int32_t)L_31)))
{
goto IL_00ce;
}
}
{
String_t* L_32 = V_1;
NullCheck(L_32);
int32_t L_33 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_32, /*hidden argument*/NULL);
V_0 = L_33;
}
IL_00ce:
{
int32_t L_34 = V_0;
int32_t L_35 = V_2;
if ((((int32_t)L_34) <= ((int32_t)L_35)))
{
goto IL_00d4;
}
}
{
int32_t L_36 = V_2;
V_0 = L_36;
}
IL_00d4:
{
int32_t L_37 = V_0;
if ((((int32_t)L_37) < ((int32_t)0)))
{
goto IL_00e5;
}
}
{
int32_t L_38 = V_0;
String_t* L_39 = V_1;
NullCheck(L_39);
int32_t L_40 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_39, /*hidden argument*/NULL);
if ((((int32_t)L_38) < ((int32_t)L_40)))
{
goto IL_00e5;
}
}
{
int32_t L_41 = V_0;
int32_t L_42 = V_2;
if ((((int32_t)L_41) <= ((int32_t)L_42)))
{
goto IL_00f5;
}
}
IL_00e5:
{
String_t* L_43 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralA9FB4E9CDFDDA8973EE329DE4396AF8172A25428, /*hidden argument*/NULL);
SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210 * L_44 = (SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210 *)il2cpp_codegen_object_new(SerializationException_tA1FDFF6779406E688C2192E71C38DBFD7A4A2210_il2cpp_TypeInfo_var);
SerializationException__ctor_m88AAD9671030A8A96AA87CB95701938FBD8F16E1(L_44, L_43, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_44, StringBuilder__ctor_m50F68196A42EEEC82EC4A482CDDC33D1A4527CE0_RuntimeMethod_var);
}
IL_00f5:
{
int32_t L_45 = V_2;
__this->set_m_MaxCapacity_4(L_45);
int32_t L_46 = V_0;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_47 = (CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)SZArrayNew(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2_il2cpp_TypeInfo_var, (uint32_t)L_46);
__this->set_m_ChunkChars_0(L_47);
String_t* L_48 = V_1;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_49 = __this->get_m_ChunkChars_0();
String_t* L_50 = V_1;
NullCheck(L_50);
int32_t L_51 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_50, /*hidden argument*/NULL);
NullCheck(L_48);
String_CopyTo_m054B8FF2ACBBA74F60199D98259E88395EAD3661(L_48, 0, L_49, 0, L_51, /*hidden argument*/NULL);
String_t* L_52 = V_1;
NullCheck(L_52);
int32_t L_53 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_52, /*hidden argument*/NULL);
__this->set_m_ChunkLength_2(L_53);
__this->set_m_ChunkPrevious_1((StringBuilder_t *)NULL);
return;
}
}
// System.Void System.Text.StringBuilder::System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder_System_Runtime_Serialization_ISerializable_GetObjectData_m960812B3C6399B43D2C888B0A766F74164F671E9 (StringBuilder_t * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StringBuilder_System_Runtime_Serialization_ISerializable_GetObjectData_m960812B3C6399B43D2C888B0A766F74164F671E9_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral59BD0A3FF43B32849B319E645D4798D8A5D1E889, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, StringBuilder_System_Runtime_Serialization_ISerializable_GetObjectData_m960812B3C6399B43D2C888B0A766F74164F671E9_RuntimeMethod_var);
}
IL_000e:
{
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_2 = ___info0;
int32_t L_3 = __this->get_m_MaxCapacity_4();
NullCheck(L_2);
SerializationInfo_AddValue_m7C73917D9DC4B8FE4AFEF4BA8EBEDAB046A8D0BD(L_2, _stringLiteral3ECE74215FB2793907E8EFA463AA7FFD96E196C1, L_3, /*hidden argument*/NULL);
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_4 = ___info0;
int32_t L_5 = StringBuilder_get_Capacity_m504D58B139889E471E4627C43EEA0A5DF7F4F4D0(__this, /*hidden argument*/NULL);
NullCheck(L_4);
SerializationInfo_AddValue_m7C73917D9DC4B8FE4AFEF4BA8EBEDAB046A8D0BD(L_4, _stringLiteral45BD908DF490EDD79694BA0DAFF82FC092970B55, L_5, /*hidden argument*/NULL);
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_6 = ___info0;
String_t* L_7 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, __this);
NullCheck(L_6);
SerializationInfo_AddValue_mC9D1E16476E24E1AFE7C59368D3BC0B35F64FBC6(L_6, _stringLiteralF5B1C6DBB589A6CFBD4698F1E5B4B27DB5735D40, L_7, /*hidden argument*/NULL);
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_8 = ___info0;
NullCheck(L_8);
SerializationInfo_AddValue_m7C73917D9DC4B8FE4AFEF4BA8EBEDAB046A8D0BD(L_8, _stringLiteral66023E7A5B189C6C1C5EA722520C1072C9242ACD, 0, /*hidden argument*/NULL);
return;
}
}
// System.Int32 System.Text.StringBuilder::get_Capacity()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t StringBuilder_get_Capacity_m504D58B139889E471E4627C43EEA0A5DF7F4F4D0 (StringBuilder_t * __this, const RuntimeMethod* method)
{
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_0 = __this->get_m_ChunkChars_0();
NullCheck(L_0);
int32_t L_1 = __this->get_m_ChunkOffset_3();
return ((int32_t)il2cpp_codegen_add((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_0)->max_length)))), (int32_t)L_1));
}
}
// System.Int32 System.Text.StringBuilder::get_MaxCapacity()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t StringBuilder_get_MaxCapacity_m1367C928745408E67DFF57F501177B4CA978F365 (StringBuilder_t * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_m_MaxCapacity_4();
return L_0;
}
}
// System.String System.Text.StringBuilder::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* StringBuilder_ToString_mC93526603BBE053CAD68863D7ED464354598E7EF (StringBuilder_t * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StringBuilder_ToString_mC93526603BBE053CAD68863D7ED464354598E7EF_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
StringBuilder_t * V_1 = NULL;
Il2CppChar* V_2 = NULL;
String_t* V_3 = NULL;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* V_4 = NULL;
int32_t V_5 = 0;
int32_t V_6 = 0;
Il2CppChar* V_7 = NULL;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* V_8 = NULL;
{
int32_t L_0 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(__this, /*hidden argument*/NULL);
if (L_0)
{
goto IL_000e;
}
}
{
String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5();
return L_1;
}
IL_000e:
{
int32_t L_2 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(__this, /*hidden argument*/NULL);
String_t* L_3 = String_FastAllocateString_m41FF9F02E99463841990C6971132D4D9E320914C(L_2, /*hidden argument*/NULL);
V_0 = L_3;
V_1 = __this;
String_t* L_4 = V_0;
V_3 = L_4;
String_t* L_5 = V_3;
V_2 = (Il2CppChar*)(((uintptr_t)L_5));
Il2CppChar* L_6 = V_2;
if (!L_6)
{
goto IL_002c;
}
}
{
Il2CppChar* L_7 = V_2;
int32_t L_8 = RuntimeHelpers_get_OffsetToStringData_mF3B79A906181F1A2734590DA161E2AF183853F8B(/*hidden argument*/NULL);
V_2 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_7, (int32_t)L_8));
}
IL_002c:
{
StringBuilder_t * L_9 = V_1;
NullCheck(L_9);
int32_t L_10 = L_9->get_m_ChunkLength_2();
if ((((int32_t)L_10) <= ((int32_t)0)))
{
goto IL_00ac;
}
}
{
StringBuilder_t * L_11 = V_1;
NullCheck(L_11);
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_12 = L_11->get_m_ChunkChars_0();
V_4 = L_12;
StringBuilder_t * L_13 = V_1;
NullCheck(L_13);
int32_t L_14 = L_13->get_m_ChunkOffset_3();
V_5 = L_14;
StringBuilder_t * L_15 = V_1;
NullCheck(L_15);
int32_t L_16 = L_15->get_m_ChunkLength_2();
V_6 = L_16;
int32_t L_17 = V_6;
int32_t L_18 = V_5;
String_t* L_19 = V_0;
NullCheck(L_19);
int32_t L_20 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_19, /*hidden argument*/NULL);
if ((((int64_t)(((int64_t)((uint64_t)(((uint32_t)((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)L_18))))))))) > ((int64_t)(((int64_t)((int64_t)L_20))))))
{
goto IL_0097;
}
}
{
int32_t L_21 = V_6;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_22 = V_4;
NullCheck(L_22);
if ((!(((uint32_t)L_21) <= ((uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_22)->max_length))))))))
{
goto IL_0097;
}
}
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_23 = V_4;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_24 = L_23;
V_8 = L_24;
if (!L_24)
{
goto IL_0071;
}
}
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_25 = V_8;
NullCheck(L_25);
if ((((int32_t)((int32_t)(((RuntimeArray*)L_25)->max_length)))))
{
goto IL_0077;
}
}
IL_0071:
{
V_7 = (Il2CppChar*)(((uintptr_t)0));
goto IL_0082;
}
IL_0077:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_26 = V_8;
NullCheck(L_26);
V_7 = (Il2CppChar*)(((uintptr_t)((L_26)->GetAddressAt(static_cast<il2cpp_array_size_t>(0)))));
}
IL_0082:
{
Il2CppChar* L_27 = V_2;
int32_t L_28 = V_5;
Il2CppChar* L_29 = V_7;
int32_t L_30 = V_6;
String_wstrcpy_mB7E74A0E59AA0E5901F2A7C9012A11E03FFBA497((Il2CppChar*)(Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_27, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_28)), (int32_t)2)))), (Il2CppChar*)(Il2CppChar*)L_29, L_30, /*hidden argument*/NULL);
V_8 = (CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)NULL;
goto IL_00ac;
}
IL_0097:
{
String_t* L_31 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_32 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_32, _stringLiteral1A75B798F31CCE27B38AA9AE88BDD80B52DCD158, L_31, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_32, StringBuilder_ToString_mC93526603BBE053CAD68863D7ED464354598E7EF_RuntimeMethod_var);
}
IL_00ac:
{
StringBuilder_t * L_33 = V_1;
NullCheck(L_33);
StringBuilder_t * L_34 = L_33->get_m_ChunkPrevious_1();
V_1 = L_34;
StringBuilder_t * L_35 = V_1;
if (L_35)
{
goto IL_002c;
}
}
{
V_3 = (String_t*)NULL;
String_t* L_36 = V_0;
return L_36;
}
}
// System.String System.Text.StringBuilder::ToString(System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* StringBuilder_ToString_mB91781E31C1CF168F780733E67EA40A5386693C6 (StringBuilder_t * __this, int32_t ___startIndex0, int32_t ___length1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StringBuilder_ToString_mB91781E31C1CF168F780733E67EA40A5386693C6_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
StringBuilder_t * V_1 = NULL;
int32_t V_2 = 0;
String_t* V_3 = NULL;
int32_t V_4 = 0;
Il2CppChar* V_5 = NULL;
String_t* V_6 = NULL;
int32_t V_7 = 0;
int32_t V_8 = 0;
int32_t V_9 = 0;
int32_t V_10 = 0;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* V_11 = NULL;
Il2CppChar* V_12 = NULL;
Il2CppChar* V_13 = NULL;
{
int32_t L_0 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(__this, /*hidden argument*/NULL);
V_0 = L_0;
int32_t L_1 = ___startIndex0;
if ((((int32_t)L_1) >= ((int32_t)0)))
{
goto IL_0020;
}
}
{
String_t* L_2 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral99DD65011324D0DDDAE2BC2BE40CEFC52DC334BE, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_3 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_3, _stringLiteral8972561214BDFD4779823E480036EAF0853E3C56, L_2, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, StringBuilder_ToString_mB91781E31C1CF168F780733E67EA40A5386693C6_RuntimeMethod_var);
}
IL_0020:
{
int32_t L_4 = ___startIndex0;
int32_t L_5 = V_0;
if ((((int32_t)L_4) <= ((int32_t)L_5)))
{
goto IL_0039;
}
}
{
String_t* L_6 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral0498E94C4956DFAA08F19AE2A65E26A19A16C9A9, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_7 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_7, _stringLiteral8972561214BDFD4779823E480036EAF0853E3C56, L_6, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, StringBuilder_ToString_mB91781E31C1CF168F780733E67EA40A5386693C6_RuntimeMethod_var);
}
IL_0039:
{
int32_t L_8 = ___length1;
if ((((int32_t)L_8) >= ((int32_t)0)))
{
goto IL_0052;
}
}
{
String_t* L_9 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral63592CD10F546568A06AF3B6CC9D1156A52DACE5, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_10 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_10, _stringLiteral3D54973F528B01019A58A52D34D518405A01B891, L_9, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, StringBuilder_ToString_mB91781E31C1CF168F780733E67EA40A5386693C6_RuntimeMethod_var);
}
IL_0052:
{
int32_t L_11 = ___startIndex0;
int32_t L_12 = V_0;
int32_t L_13 = ___length1;
if ((((int32_t)L_11) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_12, (int32_t)L_13)))))
{
goto IL_006d;
}
}
{
String_t* L_14 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral046490AF8515A05693281DF74BD30B0BD06C83E0, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_15 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_15, _stringLiteral3D54973F528B01019A58A52D34D518405A01B891, L_14, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, StringBuilder_ToString_mB91781E31C1CF168F780733E67EA40A5386693C6_RuntimeMethod_var);
}
IL_006d:
{
V_1 = __this;
int32_t L_16 = ___startIndex0;
int32_t L_17 = ___length1;
V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)L_17));
int32_t L_18 = ___length1;
String_t* L_19 = String_FastAllocateString_m41FF9F02E99463841990C6971132D4D9E320914C(L_18, /*hidden argument*/NULL);
V_3 = L_19;
int32_t L_20 = ___length1;
V_4 = L_20;
String_t* L_21 = V_3;
V_6 = L_21;
String_t* L_22 = V_6;
V_5 = (Il2CppChar*)(((uintptr_t)L_22));
Il2CppChar* L_23 = V_5;
if (!L_23)
{
goto IL_0149;
}
}
{
Il2CppChar* L_24 = V_5;
int32_t L_25 = RuntimeHelpers_get_OffsetToStringData_mF3B79A906181F1A2734590DA161E2AF183853F8B(/*hidden argument*/NULL);
V_5 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_24, (int32_t)L_25));
goto IL_0149;
}
IL_009b:
{
int32_t L_26 = V_2;
StringBuilder_t * L_27 = V_1;
NullCheck(L_27);
int32_t L_28 = L_27->get_m_ChunkOffset_3();
V_7 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_26, (int32_t)L_28));
int32_t L_29 = V_7;
if ((((int32_t)L_29) < ((int32_t)0)))
{
goto IL_0142;
}
}
{
int32_t L_30 = V_7;
StringBuilder_t * L_31 = V_1;
NullCheck(L_31);
int32_t L_32 = L_31->get_m_ChunkLength_2();
if ((((int32_t)L_30) <= ((int32_t)L_32)))
{
goto IL_00bf;
}
}
{
StringBuilder_t * L_33 = V_1;
NullCheck(L_33);
int32_t L_34 = L_33->get_m_ChunkLength_2();
V_7 = L_34;
}
IL_00bf:
{
int32_t L_35 = V_4;
V_8 = L_35;
int32_t L_36 = V_8;
V_9 = L_36;
int32_t L_37 = V_7;
int32_t L_38 = V_8;
V_10 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_37, (int32_t)L_38));
int32_t L_39 = V_10;
if ((((int32_t)L_39) >= ((int32_t)0)))
{
goto IL_00dd;
}
}
{
int32_t L_40 = V_9;
int32_t L_41 = V_10;
V_9 = ((int32_t)il2cpp_codegen_add((int32_t)L_40, (int32_t)L_41));
V_10 = 0;
}
IL_00dd:
{
int32_t L_42 = V_4;
int32_t L_43 = V_9;
V_4 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_42, (int32_t)L_43));
int32_t L_44 = V_9;
if ((((int32_t)L_44) <= ((int32_t)0)))
{
goto IL_0142;
}
}
{
StringBuilder_t * L_45 = V_1;
NullCheck(L_45);
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_46 = L_45->get_m_ChunkChars_0();
V_11 = L_46;
int32_t L_47 = V_9;
int32_t L_48 = V_4;
int32_t L_49 = ___length1;
if ((((int64_t)(((int64_t)((uint64_t)(((uint32_t)((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_47, (int32_t)L_48))))))))) > ((int64_t)(((int64_t)((int64_t)L_49))))))
{
goto IL_012d;
}
}
{
int32_t L_50 = V_9;
int32_t L_51 = V_10;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_52 = V_11;
NullCheck(L_52);
if ((!(((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_50, (int32_t)L_51))) <= ((uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_52)->max_length))))))))
{
goto IL_012d;
}
}
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_53 = V_11;
int32_t L_54 = V_10;
NullCheck(L_53);
V_13 = (Il2CppChar*)((L_53)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_54)));
Il2CppChar* L_55 = V_13;
V_12 = (Il2CppChar*)(((uintptr_t)L_55));
Il2CppChar* L_56 = V_5;
int32_t L_57 = V_4;
Il2CppChar* L_58 = V_12;
int32_t L_59 = V_9;
String_wstrcpy_mB7E74A0E59AA0E5901F2A7C9012A11E03FFBA497((Il2CppChar*)(Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_56, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_57)), (int32_t)2)))), (Il2CppChar*)(Il2CppChar*)L_58, L_59, /*hidden argument*/NULL);
V_13 = (Il2CppChar*)(((uintptr_t)0));
goto IL_0142;
}
IL_012d:
{
String_t* L_60 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_61 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_61, _stringLiteralDCB40626091C3234CCD76DD6C57003824DA5B71E, L_60, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_61, StringBuilder_ToString_mB91781E31C1CF168F780733E67EA40A5386693C6_RuntimeMethod_var);
}
IL_0142:
{
StringBuilder_t * L_62 = V_1;
NullCheck(L_62);
StringBuilder_t * L_63 = L_62->get_m_ChunkPrevious_1();
V_1 = L_63;
}
IL_0149:
{
int32_t L_64 = V_4;
if ((((int32_t)L_64) > ((int32_t)0)))
{
goto IL_009b;
}
}
{
V_6 = (String_t*)NULL;
String_t* L_65 = V_3;
return L_65;
}
}
// System.Text.StringBuilder System.Text.StringBuilder::Clear()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Clear_mE7A125669AB3330DA2B2777C07C19C989CC436BB (StringBuilder_t * __this, const RuntimeMethod* method)
{
{
StringBuilder_set_Length_m84AF318230AE5C3D0D48F1CE7C2170F6F5C19F5B(__this, 0, /*hidden argument*/NULL);
return __this;
}
}
// System.Int32 System.Text.StringBuilder::get_Length()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07 (StringBuilder_t * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_m_ChunkOffset_3();
int32_t L_1 = __this->get_m_ChunkLength_2();
return ((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)L_1));
}
}
// System.Void System.Text.StringBuilder::set_Length(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder_set_Length_m84AF318230AE5C3D0D48F1CE7C2170F6F5C19F5B (StringBuilder_t * __this, int32_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StringBuilder_set_Length_m84AF318230AE5C3D0D48F1CE7C2170F6F5C19F5B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
StringBuilder_t * V_2 = NULL;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* V_3 = NULL;
{
int32_t L_0 = ___value0;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral63592CD10F546568A06AF3B6CC9D1156A52DACE5, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_2, _stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5, L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, StringBuilder_set_Length_m84AF318230AE5C3D0D48F1CE7C2170F6F5C19F5B_RuntimeMethod_var);
}
IL_0019:
{
int32_t L_3 = ___value0;
int32_t L_4 = StringBuilder_get_MaxCapacity_m1367C928745408E67DFF57F501177B4CA978F365_inline(__this, /*hidden argument*/NULL);
if ((((int32_t)L_3) <= ((int32_t)L_4)))
{
goto IL_0037;
}
}
{
String_t* L_5 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralFB89F8D393DA096100BFDC1D5649D094EFF15377, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_6 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_6, _stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5, L_5, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, StringBuilder_set_Length_m84AF318230AE5C3D0D48F1CE7C2170F6F5C19F5B_RuntimeMethod_var);
}
IL_0037:
{
int32_t L_7 = StringBuilder_get_Capacity_m504D58B139889E471E4627C43EEA0A5DF7F4F4D0(__this, /*hidden argument*/NULL);
V_0 = L_7;
int32_t L_8 = ___value0;
if (L_8)
{
goto IL_0058;
}
}
{
StringBuilder_t * L_9 = __this->get_m_ChunkPrevious_1();
if (L_9)
{
goto IL_0058;
}
}
{
__this->set_m_ChunkLength_2(0);
__this->set_m_ChunkOffset_3(0);
return;
}
IL_0058:
{
int32_t L_10 = ___value0;
int32_t L_11 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(__this, /*hidden argument*/NULL);
V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_10, (int32_t)L_11));
int32_t L_12 = V_1;
if ((((int32_t)L_12) <= ((int32_t)0)))
{
goto IL_006f;
}
}
{
int32_t L_13 = V_1;
StringBuilder_Append_m9702CA108F81CBF2B174826C1DFC5F7552C36C45(__this, 0, L_13, /*hidden argument*/NULL);
return;
}
IL_006f:
{
int32_t L_14 = ___value0;
StringBuilder_t * L_15 = StringBuilder_FindChunkForIndex_m9EF595B1D768F788C60CD68778A23DB54F260527(__this, L_14, /*hidden argument*/NULL);
V_2 = L_15;
StringBuilder_t * L_16 = V_2;
if ((((RuntimeObject*)(StringBuilder_t *)L_16) == ((RuntimeObject*)(StringBuilder_t *)__this)))
{
goto IL_00ba;
}
}
{
int32_t L_17 = V_0;
StringBuilder_t * L_18 = V_2;
NullCheck(L_18);
int32_t L_19 = L_18->get_m_ChunkOffset_3();
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_20 = (CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)SZArrayNew(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_17, (int32_t)L_19)));
V_3 = L_20;
StringBuilder_t * L_21 = V_2;
NullCheck(L_21);
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_22 = L_21->get_m_ChunkChars_0();
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_23 = V_3;
StringBuilder_t * L_24 = V_2;
NullCheck(L_24);
int32_t L_25 = L_24->get_m_ChunkLength_2();
Array_Copy_m2D96731C600DE8A167348CA8BA796344E64F7434((RuntimeArray *)(RuntimeArray *)L_22, (RuntimeArray *)(RuntimeArray *)L_23, L_25, /*hidden argument*/NULL);
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_26 = V_3;
__this->set_m_ChunkChars_0(L_26);
StringBuilder_t * L_27 = V_2;
NullCheck(L_27);
StringBuilder_t * L_28 = L_27->get_m_ChunkPrevious_1();
__this->set_m_ChunkPrevious_1(L_28);
StringBuilder_t * L_29 = V_2;
NullCheck(L_29);
int32_t L_30 = L_29->get_m_ChunkOffset_3();
__this->set_m_ChunkOffset_3(L_30);
}
IL_00ba:
{
int32_t L_31 = ___value0;
StringBuilder_t * L_32 = V_2;
NullCheck(L_32);
int32_t L_33 = L_32->get_m_ChunkOffset_3();
__this->set_m_ChunkLength_2(((int32_t)il2cpp_codegen_subtract((int32_t)L_31, (int32_t)L_33)));
return;
}
}
// System.Char System.Text.StringBuilder::get_Chars(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar StringBuilder_get_Chars_mC069533DCA4FB798DFA069469EBABA85DCC183C6 (StringBuilder_t * __this, int32_t ___index0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StringBuilder_get_Chars_mC069533DCA4FB798DFA069469EBABA85DCC183C6_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
StringBuilder_t * V_0 = NULL;
int32_t V_1 = 0;
{
V_0 = __this;
}
IL_0002:
{
int32_t L_0 = ___index0;
StringBuilder_t * L_1 = V_0;
NullCheck(L_1);
int32_t L_2 = L_1->get_m_ChunkOffset_3();
V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_2));
int32_t L_3 = V_1;
if ((((int32_t)L_3) < ((int32_t)0)))
{
goto IL_0027;
}
}
{
int32_t L_4 = V_1;
StringBuilder_t * L_5 = V_0;
NullCheck(L_5);
int32_t L_6 = L_5->get_m_ChunkLength_2();
if ((((int32_t)L_4) < ((int32_t)L_6)))
{
goto IL_001e;
}
}
{
IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF * L_7 = (IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF *)il2cpp_codegen_object_new(IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF_il2cpp_TypeInfo_var);
IndexOutOfRangeException__ctor_m17448AB4B27BC9D8AEB4605CDB0EA053626ABEC1(L_7, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, StringBuilder_get_Chars_mC069533DCA4FB798DFA069469EBABA85DCC183C6_RuntimeMethod_var);
}
IL_001e:
{
StringBuilder_t * L_8 = V_0;
NullCheck(L_8);
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_9 = L_8->get_m_ChunkChars_0();
int32_t L_10 = V_1;
NullCheck(L_9);
int32_t L_11 = L_10;
uint16_t L_12 = (uint16_t)(L_9)->GetAt(static_cast<il2cpp_array_size_t>(L_11));
return L_12;
}
IL_0027:
{
StringBuilder_t * L_13 = V_0;
NullCheck(L_13);
StringBuilder_t * L_14 = L_13->get_m_ChunkPrevious_1();
V_0 = L_14;
StringBuilder_t * L_15 = V_0;
if (L_15)
{
goto IL_0002;
}
}
{
IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF * L_16 = (IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF *)il2cpp_codegen_object_new(IndexOutOfRangeException_tEC7665FC66525AB6A6916A7EB505E5591683F0CF_il2cpp_TypeInfo_var);
IndexOutOfRangeException__ctor_m17448AB4B27BC9D8AEB4605CDB0EA053626ABEC1(L_16, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_16, StringBuilder_get_Chars_mC069533DCA4FB798DFA069469EBABA85DCC183C6_RuntimeMethod_var);
}
}
// System.Void System.Text.StringBuilder::set_Chars(System.Int32,System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder_set_Chars_m71B2B761D6D287A666302FD85E320E1E60F388EA (StringBuilder_t * __this, int32_t ___index0, Il2CppChar ___value1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StringBuilder_set_Chars_m71B2B761D6D287A666302FD85E320E1E60F388EA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
StringBuilder_t * V_0 = NULL;
int32_t V_1 = 0;
{
V_0 = __this;
}
IL_0002:
{
int32_t L_0 = ___index0;
StringBuilder_t * L_1 = V_0;
NullCheck(L_1);
int32_t L_2 = L_1->get_m_ChunkOffset_3();
V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_2));
int32_t L_3 = V_1;
if ((((int32_t)L_3) < ((int32_t)0)))
{
goto IL_0037;
}
}
{
int32_t L_4 = V_1;
StringBuilder_t * L_5 = V_0;
NullCheck(L_5);
int32_t L_6 = L_5->get_m_ChunkLength_2();
if ((((int32_t)L_4) < ((int32_t)L_6)))
{
goto IL_002d;
}
}
{
String_t* L_7 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_8 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_8, _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, L_7, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, StringBuilder_set_Chars_m71B2B761D6D287A666302FD85E320E1E60F388EA_RuntimeMethod_var);
}
IL_002d:
{
StringBuilder_t * L_9 = V_0;
NullCheck(L_9);
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_10 = L_9->get_m_ChunkChars_0();
int32_t L_11 = V_1;
Il2CppChar L_12 = ___value1;
NullCheck(L_10);
(L_10)->SetAt(static_cast<il2cpp_array_size_t>(L_11), (Il2CppChar)L_12);
return;
}
IL_0037:
{
StringBuilder_t * L_13 = V_0;
NullCheck(L_13);
StringBuilder_t * L_14 = L_13->get_m_ChunkPrevious_1();
V_0 = L_14;
StringBuilder_t * L_15 = V_0;
if (L_15)
{
goto IL_0002;
}
}
{
String_t* L_16 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_17 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_17, _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, L_16, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_17, StringBuilder_set_Chars_m71B2B761D6D287A666302FD85E320E1E60F388EA_RuntimeMethod_var);
}
}
// System.Text.StringBuilder System.Text.StringBuilder::Append(System.Char,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Append_m9702CA108F81CBF2B174826C1DFC5F7552C36C45 (StringBuilder_t * __this, Il2CppChar ___value0, int32_t ___repeatCount1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StringBuilder_Append_m9702CA108F81CBF2B174826C1DFC5F7552C36C45_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
int32_t L_0 = ___repeatCount1;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralB6CE7B15183720AAC274771B6CD7214E241A3BFB, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_2, _stringLiteral1423A24195F33B29B91882563FADE351CF5AD3AB, L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, StringBuilder_Append_m9702CA108F81CBF2B174826C1DFC5F7552C36C45_RuntimeMethod_var);
}
IL_0019:
{
int32_t L_3 = ___repeatCount1;
if (L_3)
{
goto IL_001e;
}
}
{
return __this;
}
IL_001e:
{
int32_t L_4 = __this->get_m_ChunkLength_2();
V_0 = L_4;
goto IL_0056;
}
IL_0027:
{
int32_t L_5 = V_0;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_6 = __this->get_m_ChunkChars_0();
NullCheck(L_6);
if ((((int32_t)L_5) >= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length)))))))
{
goto IL_0046;
}
}
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_7 = __this->get_m_ChunkChars_0();
int32_t L_8 = V_0;
int32_t L_9 = L_8;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1));
Il2CppChar L_10 = ___value0;
NullCheck(L_7);
(L_7)->SetAt(static_cast<il2cpp_array_size_t>(L_9), (Il2CppChar)L_10);
int32_t L_11 = ___repeatCount1;
___repeatCount1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_11, (int32_t)1));
goto IL_0056;
}
IL_0046:
{
int32_t L_12 = V_0;
__this->set_m_ChunkLength_2(L_12);
int32_t L_13 = ___repeatCount1;
StringBuilder_ExpandByABlock_m855E07A0ECE12C6C4151B72BD80DE5311CE9B42C(__this, L_13, /*hidden argument*/NULL);
V_0 = 0;
}
IL_0056:
{
int32_t L_14 = ___repeatCount1;
if ((((int32_t)L_14) > ((int32_t)0)))
{
goto IL_0027;
}
}
{
int32_t L_15 = V_0;
__this->set_m_ChunkLength_2(L_15);
return __this;
}
}
// System.Text.StringBuilder System.Text.StringBuilder::Append(System.Char[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Append_m549C532422286A982F7956C9BAE197D00B30DCA8 (StringBuilder_t * __this, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___value0, int32_t ___startIndex1, int32_t ___charCount2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StringBuilder_Append_m549C532422286A982F7956C9BAE197D00B30DCA8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Il2CppChar* V_0 = NULL;
Il2CppChar* V_1 = NULL;
{
int32_t L_0 = ___startIndex1;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral044F779DD78DC457C66C3F03FB54E04EE4013F70, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_2, _stringLiteral8972561214BDFD4779823E480036EAF0853E3C56, L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, StringBuilder_Append_m549C532422286A982F7956C9BAE197D00B30DCA8_RuntimeMethod_var);
}
IL_0019:
{
int32_t L_3 = ___charCount2;
if ((((int32_t)L_3) >= ((int32_t)0)))
{
goto IL_0032;
}
}
{
String_t* L_4 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral044F779DD78DC457C66C3F03FB54E04EE4013F70, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, _stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556, L_4, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, StringBuilder_Append_m549C532422286A982F7956C9BAE197D00B30DCA8_RuntimeMethod_var);
}
IL_0032:
{
bool L_6 = ((CompatibilitySwitches_tC541F9F5404925C97741A0628E9B6D26C40CFA91_StaticFields*)il2cpp_codegen_static_fields_for(CompatibilitySwitches_tC541F9F5404925C97741A0628E9B6D26C40CFA91_il2cpp_TypeInfo_var))->get_IsAppEarlierThanWindowsPhone8_1();
if (!L_6)
{
goto IL_003e;
}
}
{
int32_t L_7 = ___charCount2;
if (L_7)
{
goto IL_003e;
}
}
{
return __this;
}
IL_003e:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_8 = ___value0;
if (L_8)
{
goto IL_0054;
}
}
{
int32_t L_9 = ___startIndex1;
if (L_9)
{
goto IL_0049;
}
}
{
int32_t L_10 = ___charCount2;
if (L_10)
{
goto IL_0049;
}
}
{
return __this;
}
IL_0049:
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_11 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_11, _stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, StringBuilder_Append_m549C532422286A982F7956C9BAE197D00B30DCA8_RuntimeMethod_var);
}
IL_0054:
{
int32_t L_12 = ___charCount2;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_13 = ___value0;
NullCheck(L_13);
int32_t L_14 = ___startIndex1;
if ((((int32_t)L_12) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_13)->max_length)))), (int32_t)L_14)))))
{
goto IL_0071;
}
}
{
String_t* L_15 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_16 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_16, _stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556, L_15, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_16, StringBuilder_Append_m549C532422286A982F7956C9BAE197D00B30DCA8_RuntimeMethod_var);
}
IL_0071:
{
int32_t L_17 = ___charCount2;
if (L_17)
{
goto IL_0076;
}
}
{
return __this;
}
IL_0076:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_18 = ___value0;
int32_t L_19 = ___startIndex1;
NullCheck(L_18);
V_1 = (Il2CppChar*)((L_18)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_19)));
Il2CppChar* L_20 = V_1;
V_0 = (Il2CppChar*)(((uintptr_t)L_20));
Il2CppChar* L_21 = V_0;
int32_t L_22 = ___charCount2;
StringBuilder_Append_m353B571BF530B0BD74B61E499EAF6536F1B93E84(__this, (Il2CppChar*)(Il2CppChar*)L_21, L_22, /*hidden argument*/NULL);
V_1 = (Il2CppChar*)(((uintptr_t)0));
return __this;
}
}
// System.Text.StringBuilder System.Text.StringBuilder::Append(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260 (StringBuilder_t * __this, String_t* ___value0, const RuntimeMethod* method)
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* V_0 = NULL;
int32_t V_1 = 0;
int32_t V_2 = 0;
int32_t V_3 = 0;
Il2CppChar* V_4 = NULL;
String_t* V_5 = NULL;
Il2CppChar* V_6 = NULL;
{
String_t* L_0 = ___value0;
if (!L_0)
{
goto IL_008a;
}
}
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_1 = __this->get_m_ChunkChars_0();
V_0 = L_1;
int32_t L_2 = __this->get_m_ChunkLength_2();
V_1 = L_2;
String_t* L_3 = ___value0;
NullCheck(L_3);
int32_t L_4 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_3, /*hidden argument*/NULL);
V_2 = L_4;
int32_t L_5 = V_1;
int32_t L_6 = V_2;
V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)L_6));
int32_t L_7 = V_3;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_8 = V_0;
NullCheck(L_8);
if ((((int32_t)L_7) >= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_8)->max_length)))))))
{
goto IL_0083;
}
}
{
int32_t L_9 = V_2;
if ((((int32_t)L_9) > ((int32_t)2)))
{
goto IL_0049;
}
}
{
int32_t L_10 = V_2;
if ((((int32_t)L_10) <= ((int32_t)0)))
{
goto IL_0037;
}
}
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_11 = V_0;
int32_t L_12 = V_1;
String_t* L_13 = ___value0;
NullCheck(L_13);
Il2CppChar L_14 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_13, 0, /*hidden argument*/NULL);
NullCheck(L_11);
(L_11)->SetAt(static_cast<il2cpp_array_size_t>(L_12), (Il2CppChar)L_14);
}
IL_0037:
{
int32_t L_15 = V_2;
if ((((int32_t)L_15) <= ((int32_t)1)))
{
goto IL_007a;
}
}
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_16 = V_0;
int32_t L_17 = V_1;
String_t* L_18 = ___value0;
NullCheck(L_18);
Il2CppChar L_19 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_18, 1, /*hidden argument*/NULL);
NullCheck(L_16);
(L_16)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1))), (Il2CppChar)L_19);
goto IL_007a;
}
IL_0049:
{
String_t* L_20 = ___value0;
V_5 = L_20;
String_t* L_21 = V_5;
V_4 = (Il2CppChar*)(((uintptr_t)L_21));
Il2CppChar* L_22 = V_4;
if (!L_22)
{
goto IL_005f;
}
}
{
Il2CppChar* L_23 = V_4;
int32_t L_24 = RuntimeHelpers_get_OffsetToStringData_mF3B79A906181F1A2734590DA161E2AF183853F8B(/*hidden argument*/NULL);
V_4 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_23, (int32_t)L_24));
}
IL_005f:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_25 = V_0;
int32_t L_26 = V_1;
NullCheck(L_25);
V_6 = (Il2CppChar*)((L_25)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_26)));
Il2CppChar* L_27 = V_6;
Il2CppChar* L_28 = V_4;
int32_t L_29 = V_2;
String_wstrcpy_mB7E74A0E59AA0E5901F2A7C9012A11E03FFBA497((Il2CppChar*)(Il2CppChar*)(((uintptr_t)L_27)), (Il2CppChar*)(Il2CppChar*)L_28, L_29, /*hidden argument*/NULL);
V_6 = (Il2CppChar*)(((uintptr_t)0));
V_5 = (String_t*)NULL;
}
IL_007a:
{
int32_t L_30 = V_3;
__this->set_m_ChunkLength_2(L_30);
goto IL_008a;
}
IL_0083:
{
String_t* L_31 = ___value0;
StringBuilder_AppendHelper_mEB58C0EF72D659D6BB4342E2943697200F63C80F(__this, L_31, /*hidden argument*/NULL);
}
IL_008a:
{
return __this;
}
}
// System.Void System.Text.StringBuilder::AppendHelper(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder_AppendHelper_mEB58C0EF72D659D6BB4342E2943697200F63C80F (StringBuilder_t * __this, String_t* ___value0, const RuntimeMethod* method)
{
Il2CppChar* V_0 = NULL;
String_t* V_1 = NULL;
{
String_t* L_0 = ___value0;
V_1 = L_0;
String_t* L_1 = V_1;
V_0 = (Il2CppChar*)(((uintptr_t)L_1));
Il2CppChar* L_2 = V_0;
if (!L_2)
{
goto IL_0010;
}
}
{
Il2CppChar* L_3 = V_0;
int32_t L_4 = RuntimeHelpers_get_OffsetToStringData_mF3B79A906181F1A2734590DA161E2AF183853F8B(/*hidden argument*/NULL);
V_0 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_3, (int32_t)L_4));
}
IL_0010:
{
Il2CppChar* L_5 = V_0;
String_t* L_6 = ___value0;
NullCheck(L_6);
int32_t L_7 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_6, /*hidden argument*/NULL);
StringBuilder_Append_m353B571BF530B0BD74B61E499EAF6536F1B93E84(__this, (Il2CppChar*)(Il2CppChar*)L_5, L_7, /*hidden argument*/NULL);
V_1 = (String_t*)NULL;
return;
}
}
// System.Text.StringBuilder System.Text.StringBuilder::Append(System.String,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Append_m9EB954E99DC99B8CC712ABB70EAA07616B841D46 (StringBuilder_t * __this, String_t* ___value0, int32_t ___startIndex1, int32_t ___count2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StringBuilder_Append_m9EB954E99DC99B8CC712ABB70EAA07616B841D46_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Il2CppChar* V_0 = NULL;
String_t* V_1 = NULL;
{
int32_t L_0 = ___startIndex1;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_2, _stringLiteral8972561214BDFD4779823E480036EAF0853E3C56, L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, StringBuilder_Append_m9EB954E99DC99B8CC712ABB70EAA07616B841D46_RuntimeMethod_var);
}
IL_0019:
{
int32_t L_3 = ___count2;
if ((((int32_t)L_3) >= ((int32_t)0)))
{
goto IL_0032;
}
}
{
String_t* L_4 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral044F779DD78DC457C66C3F03FB54E04EE4013F70, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, _stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556, L_4, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, StringBuilder_Append_m9EB954E99DC99B8CC712ABB70EAA07616B841D46_RuntimeMethod_var);
}
IL_0032:
{
bool L_6 = ((CompatibilitySwitches_tC541F9F5404925C97741A0628E9B6D26C40CFA91_StaticFields*)il2cpp_codegen_static_fields_for(CompatibilitySwitches_tC541F9F5404925C97741A0628E9B6D26C40CFA91_il2cpp_TypeInfo_var))->get_IsAppEarlierThanWindowsPhone8_1();
if (!L_6)
{
goto IL_003e;
}
}
{
int32_t L_7 = ___count2;
if (L_7)
{
goto IL_003e;
}
}
{
return __this;
}
IL_003e:
{
String_t* L_8 = ___value0;
if (L_8)
{
goto IL_0054;
}
}
{
int32_t L_9 = ___startIndex1;
if (L_9)
{
goto IL_0049;
}
}
{
int32_t L_10 = ___count2;
if (L_10)
{
goto IL_0049;
}
}
{
return __this;
}
IL_0049:
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_11 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_11, _stringLiteralF32B67C7E26342AF42EFABC674D441DCA0A281C5, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, StringBuilder_Append_m9EB954E99DC99B8CC712ABB70EAA07616B841D46_RuntimeMethod_var);
}
IL_0054:
{
int32_t L_12 = ___count2;
if (L_12)
{
goto IL_0059;
}
}
{
return __this;
}
IL_0059:
{
int32_t L_13 = ___startIndex1;
String_t* L_14 = ___value0;
NullCheck(L_14);
int32_t L_15 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_14, /*hidden argument*/NULL);
int32_t L_16 = ___count2;
if ((((int32_t)L_13) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_15, (int32_t)L_16)))))
{
goto IL_0079;
}
}
{
String_t* L_17 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_18 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_18, _stringLiteral8972561214BDFD4779823E480036EAF0853E3C56, L_17, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_18, StringBuilder_Append_m9EB954E99DC99B8CC712ABB70EAA07616B841D46_RuntimeMethod_var);
}
IL_0079:
{
String_t* L_19 = ___value0;
V_1 = L_19;
String_t* L_20 = V_1;
V_0 = (Il2CppChar*)(((uintptr_t)L_20));
Il2CppChar* L_21 = V_0;
if (!L_21)
{
goto IL_0089;
}
}
{
Il2CppChar* L_22 = V_0;
int32_t L_23 = RuntimeHelpers_get_OffsetToStringData_mF3B79A906181F1A2734590DA161E2AF183853F8B(/*hidden argument*/NULL);
V_0 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_22, (int32_t)L_23));
}
IL_0089:
{
Il2CppChar* L_24 = V_0;
int32_t L_25 = ___startIndex1;
int32_t L_26 = ___count2;
StringBuilder_Append_m353B571BF530B0BD74B61E499EAF6536F1B93E84(__this, (Il2CppChar*)(Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_24, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_25)), (int32_t)2)))), L_26, /*hidden argument*/NULL);
V_1 = (String_t*)NULL;
return __this;
}
}
// System.Text.StringBuilder System.Text.StringBuilder::Insert(System.Int32,System.String,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Insert_mC4C722CFB7E8BA17F47DF230DD69F6E0E46C7D05 (StringBuilder_t * __this, int32_t ___index0, String_t* ___value1, int32_t ___count2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StringBuilder_Insert_mC4C722CFB7E8BA17F47DF230DD69F6E0E46C7D05_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int64_t V_1 = 0;
StringBuilder_t * V_2 = NULL;
int32_t V_3 = 0;
Il2CppChar* V_4 = NULL;
String_t* V_5 = NULL;
{
int32_t L_0 = ___count2;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral314A883D61C1D386E61BE443EB9D3B50BA3FF07D, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_2, _stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556, L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, StringBuilder_Insert_mC4C722CFB7E8BA17F47DF230DD69F6E0E46C7D05_RuntimeMethod_var);
}
IL_0019:
{
int32_t L_3 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(__this, /*hidden argument*/NULL);
V_0 = L_3;
int32_t L_4 = ___index0;
int32_t L_5 = V_0;
if ((!(((uint32_t)L_4) > ((uint32_t)L_5))))
{
goto IL_0039;
}
}
{
String_t* L_6 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_7 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_7, _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, L_6, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, StringBuilder_Insert_mC4C722CFB7E8BA17F47DF230DD69F6E0E46C7D05_RuntimeMethod_var);
}
IL_0039:
{
String_t* L_8 = ___value1;
if (!L_8)
{
goto IL_0047;
}
}
{
String_t* L_9 = ___value1;
NullCheck(L_9);
int32_t L_10 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_9, /*hidden argument*/NULL);
if (!L_10)
{
goto IL_0047;
}
}
{
int32_t L_11 = ___count2;
if (L_11)
{
goto IL_0049;
}
}
IL_0047:
{
return __this;
}
IL_0049:
{
String_t* L_12 = ___value1;
NullCheck(L_12);
int32_t L_13 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_12, /*hidden argument*/NULL);
int32_t L_14 = ___count2;
V_1 = ((int64_t)il2cpp_codegen_multiply((int64_t)(((int64_t)((int64_t)L_13))), (int64_t)(((int64_t)((int64_t)L_14)))));
int64_t L_15 = V_1;
int32_t L_16 = StringBuilder_get_MaxCapacity_m1367C928745408E67DFF57F501177B4CA978F365_inline(__this, /*hidden argument*/NULL);
int32_t L_17 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(__this, /*hidden argument*/NULL);
if ((((int64_t)L_15) <= ((int64_t)(((int64_t)((int64_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_16, (int32_t)L_17))))))))
{
goto IL_006b;
}
}
{
OutOfMemoryException_t2DF3EAC178583BD1DEFAAECBEDB2AF1EA86FBFC7 * L_18 = (OutOfMemoryException_t2DF3EAC178583BD1DEFAAECBEDB2AF1EA86FBFC7 *)il2cpp_codegen_object_new(OutOfMemoryException_t2DF3EAC178583BD1DEFAAECBEDB2AF1EA86FBFC7_il2cpp_TypeInfo_var);
OutOfMemoryException__ctor_m4ED0B5B3F91BAF66BDF69E09EF6DC74777FE8DEB(L_18, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_18, StringBuilder_Insert_mC4C722CFB7E8BA17F47DF230DD69F6E0E46C7D05_RuntimeMethod_var);
}
IL_006b:
{
int32_t L_19 = ___index0;
int64_t L_20 = V_1;
StringBuilder_MakeRoom_mC8A37E0A3FCACABC5B1BF99BCEF32C086F03B9FF(__this, L_19, (((int32_t)((int32_t)L_20))), (StringBuilder_t **)(&V_2), (int32_t*)(&V_3), (bool)0, /*hidden argument*/NULL);
String_t* L_21 = ___value1;
V_5 = L_21;
String_t* L_22 = V_5;
V_4 = (Il2CppChar*)(((uintptr_t)L_22));
Il2CppChar* L_23 = V_4;
if (!L_23)
{
goto IL_00a8;
}
}
{
Il2CppChar* L_24 = V_4;
int32_t L_25 = RuntimeHelpers_get_OffsetToStringData_mF3B79A906181F1A2734590DA161E2AF183853F8B(/*hidden argument*/NULL);
V_4 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_24, (int32_t)L_25));
goto IL_00a8;
}
IL_0091:
{
Il2CppChar* L_26 = V_4;
String_t* L_27 = ___value1;
NullCheck(L_27);
int32_t L_28 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_27, /*hidden argument*/NULL);
StringBuilder_ReplaceInPlaceAtChunk_mA3A70E8FD6B9F52D4D62700D5E706E851BA1D773(__this, (StringBuilder_t **)(&V_2), (int32_t*)(&V_3), (Il2CppChar*)(Il2CppChar*)L_26, L_28, /*hidden argument*/NULL);
int32_t L_29 = ___count2;
___count2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_29, (int32_t)1));
}
IL_00a8:
{
int32_t L_30 = ___count2;
if ((((int32_t)L_30) > ((int32_t)0)))
{
goto IL_0091;
}
}
{
V_5 = (String_t*)NULL;
return __this;
}
}
// System.Text.StringBuilder System.Text.StringBuilder::Remove(System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Remove_m5DA9C1C4D056FA61B8923BE85E6BFF44B14A24F9 (StringBuilder_t * __this, int32_t ___startIndex0, int32_t ___length1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StringBuilder_Remove_m5DA9C1C4D056FA61B8923BE85E6BFF44B14A24F9_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
StringBuilder_t * V_0 = NULL;
int32_t V_1 = 0;
{
int32_t L_0 = ___length1;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral63592CD10F546568A06AF3B6CC9D1156A52DACE5, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_2, _stringLiteral3D54973F528B01019A58A52D34D518405A01B891, L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, StringBuilder_Remove_m5DA9C1C4D056FA61B8923BE85E6BFF44B14A24F9_RuntimeMethod_var);
}
IL_0019:
{
int32_t L_3 = ___startIndex0;
if ((((int32_t)L_3) >= ((int32_t)0)))
{
goto IL_0032;
}
}
{
String_t* L_4 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral99DD65011324D0DDDAE2BC2BE40CEFC52DC334BE, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, _stringLiteral8972561214BDFD4779823E480036EAF0853E3C56, L_4, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, StringBuilder_Remove_m5DA9C1C4D056FA61B8923BE85E6BFF44B14A24F9_RuntimeMethod_var);
}
IL_0032:
{
int32_t L_6 = ___length1;
int32_t L_7 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(__this, /*hidden argument*/NULL);
int32_t L_8 = ___startIndex0;
if ((((int32_t)L_6) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_7, (int32_t)L_8)))))
{
goto IL_0052;
}
}
{
String_t* L_9 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_10 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_10, _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, L_9, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, StringBuilder_Remove_m5DA9C1C4D056FA61B8923BE85E6BFF44B14A24F9_RuntimeMethod_var);
}
IL_0052:
{
int32_t L_11 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(__this, /*hidden argument*/NULL);
int32_t L_12 = ___length1;
if ((!(((uint32_t)L_11) == ((uint32_t)L_12))))
{
goto IL_0067;
}
}
{
int32_t L_13 = ___startIndex0;
if (L_13)
{
goto IL_0067;
}
}
{
StringBuilder_set_Length_m84AF318230AE5C3D0D48F1CE7C2170F6F5C19F5B(__this, 0, /*hidden argument*/NULL);
return __this;
}
IL_0067:
{
int32_t L_14 = ___length1;
if ((((int32_t)L_14) <= ((int32_t)0)))
{
goto IL_0077;
}
}
{
int32_t L_15 = ___startIndex0;
int32_t L_16 = ___length1;
StringBuilder_Remove_m570DD9A086B94D894FCD1EB011BCB2166A57B4D6(__this, L_15, L_16, (StringBuilder_t **)(&V_0), (int32_t*)(&V_1), /*hidden argument*/NULL);
}
IL_0077:
{
return __this;
}
}
// System.Text.StringBuilder System.Text.StringBuilder::Append(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A (StringBuilder_t * __this, Il2CppChar ___value0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = __this->get_m_ChunkLength_2();
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_1 = __this->get_m_ChunkChars_0();
NullCheck(L_1);
if ((((int32_t)L_0) >= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_1)->max_length)))))))
{
goto IL_002b;
}
}
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_2 = __this->get_m_ChunkChars_0();
int32_t L_3 = __this->get_m_ChunkLength_2();
V_0 = L_3;
int32_t L_4 = V_0;
__this->set_m_ChunkLength_2(((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1)));
int32_t L_5 = V_0;
Il2CppChar L_6 = ___value0;
NullCheck(L_2);
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (Il2CppChar)L_6);
goto IL_0034;
}
IL_002b:
{
Il2CppChar L_7 = ___value0;
StringBuilder_Append_m9702CA108F81CBF2B174826C1DFC5F7552C36C45(__this, L_7, 1, /*hidden argument*/NULL);
}
IL_0034:
{
return __this;
}
}
// System.Text.StringBuilder System.Text.StringBuilder::Append(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Append_m85874CFF9E4B152DB2A91936C6F2CA3E9B1EFF84 (StringBuilder_t * __this, int32_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StringBuilder_Append_m85874CFF9E4B152DB2A91936C6F2CA3E9B1EFF84_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_0 = CultureInfo_get_CurrentCulture_mD86F3D8E5D332FB304F80D9B9CA4DE849C2A6831(/*hidden argument*/NULL);
String_t* L_1 = Int32_ToString_m1D0AF82BDAB5D4710527DD3FEFA6F01246D128A5((int32_t*)(&___value0), L_0, /*hidden argument*/NULL);
StringBuilder_t * L_2 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(__this, L_1, /*hidden argument*/NULL);
return L_2;
}
}
// System.Text.StringBuilder System.Text.StringBuilder::Append(System.Int64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Append_mB2B8807F92F9A75140DC4E431FC1B054FC5C0AA9 (StringBuilder_t * __this, int64_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StringBuilder_Append_mB2B8807F92F9A75140DC4E431FC1B054FC5C0AA9_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_0 = CultureInfo_get_CurrentCulture_mD86F3D8E5D332FB304F80D9B9CA4DE849C2A6831(/*hidden argument*/NULL);
String_t* L_1 = Int64_ToString_m25F3F61DC30EAF186B76BD91F83083BDDDE82B2A((int64_t*)(&___value0), L_0, /*hidden argument*/NULL);
StringBuilder_t * L_2 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(__this, L_1, /*hidden argument*/NULL);
return L_2;
}
}
// System.Text.StringBuilder System.Text.StringBuilder::Append(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Append_mA1A063A1388A21C8EA011DBA7FC98C24C3EE3D65 (StringBuilder_t * __this, RuntimeObject * ___value0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___value0;
if (L_0)
{
goto IL_0005;
}
}
{
return __this;
}
IL_0005:
{
RuntimeObject * L_1 = ___value0;
NullCheck(L_1);
String_t* L_2 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_1);
StringBuilder_t * L_3 = StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(__this, L_2, /*hidden argument*/NULL);
return L_3;
}
}
// System.Text.StringBuilder System.Text.StringBuilder::Insert(System.Int32,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Insert_m38829D9C9FE52ACD6541ED735D4435FB2A831A2C (StringBuilder_t * __this, int32_t ___index0, String_t* ___value1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StringBuilder_Insert_m38829D9C9FE52ACD6541ED735D4435FB2A831A2C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Il2CppChar* V_0 = NULL;
String_t* V_1 = NULL;
{
int32_t L_0 = ___index0;
int32_t L_1 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) > ((uint32_t)L_1))))
{
goto IL_001e;
}
}
{
String_t* L_2 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_3 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_3, _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, L_2, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, StringBuilder_Insert_m38829D9C9FE52ACD6541ED735D4435FB2A831A2C_RuntimeMethod_var);
}
IL_001e:
{
String_t* L_4 = ___value1;
if (!L_4)
{
goto IL_0041;
}
}
{
String_t* L_5 = ___value1;
V_1 = L_5;
String_t* L_6 = V_1;
V_0 = (Il2CppChar*)(((uintptr_t)L_6));
Il2CppChar* L_7 = V_0;
if (!L_7)
{
goto IL_0031;
}
}
{
Il2CppChar* L_8 = V_0;
int32_t L_9 = RuntimeHelpers_get_OffsetToStringData_mF3B79A906181F1A2734590DA161E2AF183853F8B(/*hidden argument*/NULL);
V_0 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_8, (int32_t)L_9));
}
IL_0031:
{
int32_t L_10 = ___index0;
Il2CppChar* L_11 = V_0;
String_t* L_12 = ___value1;
NullCheck(L_12);
int32_t L_13 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_12, /*hidden argument*/NULL);
StringBuilder_Insert_m25234968C27EB1BEB242AFE1C7DE6BACAD903E33(__this, L_10, (Il2CppChar*)(Il2CppChar*)L_11, L_13, /*hidden argument*/NULL);
V_1 = (String_t*)NULL;
}
IL_0041:
{
return __this;
}
}
// System.Text.StringBuilder System.Text.StringBuilder::Insert(System.Int32,System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Insert_m5A00CEB69C56B823E3766C84114D8B8ACCFC67A1 (StringBuilder_t * __this, int32_t ___index0, Il2CppChar ___value1, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
StringBuilder_Insert_m25234968C27EB1BEB242AFE1C7DE6BACAD903E33(__this, L_0, (Il2CppChar*)(Il2CppChar*)(((uintptr_t)(&___value1))), 1, /*hidden argument*/NULL);
return __this;
}
}
// System.Text.StringBuilder System.Text.StringBuilder::AppendFormat(System.String,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_AppendFormat_mFFABDE5D2413C5657E6411FC60C8C38E1674E09D (StringBuilder_t * __this, String_t* ___format0, RuntimeObject * ___arg01, const RuntimeMethod* method)
{
{
String_t* L_0 = ___format0;
RuntimeObject * L_1 = ___arg01;
ParamsArray_t2DD480A5C806C0920DC218523EF3673332A68023 L_2;
memset((&L_2), 0, sizeof(L_2));
ParamsArray__ctor_m0D8F266A2B3C18237146F56FB97A4E4879394DAC((&L_2), L_1, /*hidden argument*/NULL);
StringBuilder_t * L_3 = StringBuilder_AppendFormatHelper_m3A655B006797788D89C813CEE20A1D32B95AF273(__this, (RuntimeObject*)NULL, L_0, L_2, /*hidden argument*/NULL);
return L_3;
}
}
// System.Text.StringBuilder System.Text.StringBuilder::AppendFormat(System.String,System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_AppendFormat_m9DBA7709F546159ABC85BA341965305AB044D1B7 (StringBuilder_t * __this, String_t* ___format0, RuntimeObject * ___arg01, RuntimeObject * ___arg12, const RuntimeMethod* method)
{
{
String_t* L_0 = ___format0;
RuntimeObject * L_1 = ___arg01;
RuntimeObject * L_2 = ___arg12;
ParamsArray_t2DD480A5C806C0920DC218523EF3673332A68023 L_3;
memset((&L_3), 0, sizeof(L_3));
ParamsArray__ctor_mD3CEC74447BC27952EBAF3F12C2C71751B7B28ED((&L_3), L_1, L_2, /*hidden argument*/NULL);
StringBuilder_t * L_4 = StringBuilder_AppendFormatHelper_m3A655B006797788D89C813CEE20A1D32B95AF273(__this, (RuntimeObject*)NULL, L_0, L_3, /*hidden argument*/NULL);
return L_4;
}
}
// System.Text.StringBuilder System.Text.StringBuilder::AppendFormat(System.String,System.Object,System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_AppendFormat_m3CEA3DC2882754882D9177BCF19A3BFD52AB7D7E (StringBuilder_t * __this, String_t* ___format0, RuntimeObject * ___arg01, RuntimeObject * ___arg12, RuntimeObject * ___arg23, const RuntimeMethod* method)
{
{
String_t* L_0 = ___format0;
RuntimeObject * L_1 = ___arg01;
RuntimeObject * L_2 = ___arg12;
RuntimeObject * L_3 = ___arg23;
ParamsArray_t2DD480A5C806C0920DC218523EF3673332A68023 L_4;
memset((&L_4), 0, sizeof(L_4));
ParamsArray__ctor_m06BE403346707F40BDEA07C60B4BB507B171EAC5((&L_4), L_1, L_2, L_3, /*hidden argument*/NULL);
StringBuilder_t * L_5 = StringBuilder_AppendFormatHelper_m3A655B006797788D89C813CEE20A1D32B95AF273(__this, (RuntimeObject*)NULL, L_0, L_4, /*hidden argument*/NULL);
return L_5;
}
}
// System.Text.StringBuilder System.Text.StringBuilder::AppendFormat(System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_AppendFormat_m23742FE1E3C60341F37C243EB6BEE06AE444C774 (StringBuilder_t * __this, String_t* ___format0, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___args1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StringBuilder_AppendFormat_m23742FE1E3C60341F37C243EB6BEE06AE444C774_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* G_B4_0 = NULL;
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_0 = ___args1;
if (L_0)
{
goto IL_0018;
}
}
{
String_t* L_1 = ___format0;
if (!L_1)
{
goto IL_000d;
}
}
{
G_B4_0 = _stringLiteral3030E728F154BF51419109EFB93B6B8AEEC9A976;
goto IL_0012;
}
IL_000d:
{
G_B4_0 = _stringLiteral785987648F85190CFDE9EADC69FC7C46FE8A7433;
}
IL_0012:
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_2, G_B4_0, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, StringBuilder_AppendFormat_m23742FE1E3C60341F37C243EB6BEE06AE444C774_RuntimeMethod_var);
}
IL_0018:
{
String_t* L_3 = ___format0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = ___args1;
ParamsArray_t2DD480A5C806C0920DC218523EF3673332A68023 L_5;
memset((&L_5), 0, sizeof(L_5));
ParamsArray__ctor_mB32D7182BA1AC40D1DB522D6F548FA26E0129095((&L_5), L_4, /*hidden argument*/NULL);
StringBuilder_t * L_6 = StringBuilder_AppendFormatHelper_m3A655B006797788D89C813CEE20A1D32B95AF273(__this, (RuntimeObject*)NULL, L_3, L_5, /*hidden argument*/NULL);
return L_6;
}
}
// System.Text.StringBuilder System.Text.StringBuilder::AppendFormat(System.IFormatProvider,System.String,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_AppendFormat_m0097821BD0E9086D37BEE314239983EBD980B636 (StringBuilder_t * __this, RuntimeObject* ___provider0, String_t* ___format1, RuntimeObject * ___arg02, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___provider0;
String_t* L_1 = ___format1;
RuntimeObject * L_2 = ___arg02;
ParamsArray_t2DD480A5C806C0920DC218523EF3673332A68023 L_3;
memset((&L_3), 0, sizeof(L_3));
ParamsArray__ctor_m0D8F266A2B3C18237146F56FB97A4E4879394DAC((&L_3), L_2, /*hidden argument*/NULL);
StringBuilder_t * L_4 = StringBuilder_AppendFormatHelper_m3A655B006797788D89C813CEE20A1D32B95AF273(__this, L_0, L_1, L_3, /*hidden argument*/NULL);
return L_4;
}
}
// System.Text.StringBuilder System.Text.StringBuilder::AppendFormat(System.IFormatProvider,System.String,System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_AppendFormat_m6253057BEFDE3B0EDC63B8C725CD573486720D4C (StringBuilder_t * __this, RuntimeObject* ___provider0, String_t* ___format1, RuntimeObject * ___arg02, RuntimeObject * ___arg13, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___provider0;
String_t* L_1 = ___format1;
RuntimeObject * L_2 = ___arg02;
RuntimeObject * L_3 = ___arg13;
ParamsArray_t2DD480A5C806C0920DC218523EF3673332A68023 L_4;
memset((&L_4), 0, sizeof(L_4));
ParamsArray__ctor_mD3CEC74447BC27952EBAF3F12C2C71751B7B28ED((&L_4), L_2, L_3, /*hidden argument*/NULL);
StringBuilder_t * L_5 = StringBuilder_AppendFormatHelper_m3A655B006797788D89C813CEE20A1D32B95AF273(__this, L_0, L_1, L_4, /*hidden argument*/NULL);
return L_5;
}
}
// System.Void System.Text.StringBuilder::FormatError()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder_FormatError_m636599CB61540585B74FFC956ED91DC57F66C17B (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StringBuilder_FormatError_m636599CB61540585B74FFC956ED91DC57F66C17B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralD2F0257C42607F2773F4B8AAB0C017A3B8949322, /*hidden argument*/NULL);
FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC * L_1 = (FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC *)il2cpp_codegen_object_new(FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC_il2cpp_TypeInfo_var);
FormatException__ctor_m89167FF9884AE20232190FE9286DC50E146A4F14(L_1, L_0, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, StringBuilder_FormatError_m636599CB61540585B74FFC956ED91DC57F66C17B_RuntimeMethod_var);
}
}
// System.Text.StringBuilder System.Text.StringBuilder::AppendFormatHelper(System.IFormatProvider,System.String,System.ParamsArray)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_AppendFormatHelper_m3A655B006797788D89C813CEE20A1D32B95AF273 (StringBuilder_t * __this, RuntimeObject* ___provider0, String_t* ___format1, ParamsArray_t2DD480A5C806C0920DC218523EF3673332A68023 ___args2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StringBuilder_AppendFormatHelper_m3A655B006797788D89C813CEE20A1D32B95AF273_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
Il2CppChar V_2 = 0x0;
RuntimeObject* V_3 = NULL;
int32_t V_4 = 0;
bool V_5 = false;
int32_t V_6 = 0;
RuntimeObject * V_7 = NULL;
StringBuilder_t * V_8 = NULL;
String_t* V_9 = NULL;
String_t* V_10 = NULL;
int32_t V_11 = 0;
RuntimeObject* V_12 = NULL;
{
String_t* L_0 = ___format1;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral785987648F85190CFDE9EADC69FC7C46FE8A7433, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, StringBuilder_AppendFormatHelper_m3A655B006797788D89C813CEE20A1D32B95AF273_RuntimeMethod_var);
}
IL_000e:
{
V_0 = 0;
String_t* L_2 = ___format1;
NullCheck(L_2);
int32_t L_3 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_2, /*hidden argument*/NULL);
V_1 = L_3;
V_2 = 0;
V_3 = (RuntimeObject*)NULL;
RuntimeObject* L_4 = ___provider0;
if (!L_4)
{
goto IL_0089;
}
}
{
RuntimeObject* L_5 = ___provider0;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_6 = { reinterpret_cast<intptr_t> (ICustomFormatter_tDAB6E1F893DB2D4F44572E9B6ED6E82BC9D26D1E_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_7 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6(L_6, /*hidden argument*/NULL);
NullCheck(L_5);
RuntimeObject * L_8 = InterfaceFuncInvoker1< RuntimeObject *, Type_t * >::Invoke(0 /* System.Object System.IFormatProvider::GetFormat(System.Type) */, IFormatProvider_t4247E13AE2D97A079B88D594B7ABABF313259901_il2cpp_TypeInfo_var, L_5, L_7);
V_3 = ((RuntimeObject*)Castclass((RuntimeObject*)L_8, ICustomFormatter_tDAB6E1F893DB2D4F44572E9B6ED6E82BC9D26D1E_il2cpp_TypeInfo_var));
goto IL_0089;
}
IL_0036:
{
String_t* L_9 = ___format1;
int32_t L_10 = V_0;
NullCheck(L_9);
Il2CppChar L_11 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_9, L_10, /*hidden argument*/NULL);
V_2 = L_11;
int32_t L_12 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1));
Il2CppChar L_13 = V_2;
if ((!(((uint32_t)L_13) == ((uint32_t)((int32_t)125)))))
{
goto IL_0061;
}
}
{
int32_t L_14 = V_0;
int32_t L_15 = V_1;
if ((((int32_t)L_14) >= ((int32_t)L_15)))
{
goto IL_005c;
}
}
{
String_t* L_16 = ___format1;
int32_t L_17 = V_0;
NullCheck(L_16);
Il2CppChar L_18 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_16, L_17, /*hidden argument*/NULL);
if ((!(((uint32_t)L_18) == ((uint32_t)((int32_t)125)))))
{
goto IL_005c;
}
}
{
int32_t L_19 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_19, (int32_t)1));
goto IL_0061;
}
IL_005c:
{
StringBuilder_FormatError_m636599CB61540585B74FFC956ED91DC57F66C17B(/*hidden argument*/NULL);
}
IL_0061:
{
Il2CppChar L_20 = V_2;
if ((!(((uint32_t)L_20) == ((uint32_t)((int32_t)123)))))
{
goto IL_0081;
}
}
{
int32_t L_21 = V_0;
int32_t L_22 = V_1;
if ((((int32_t)L_21) >= ((int32_t)L_22)))
{
goto IL_007b;
}
}
{
String_t* L_23 = ___format1;
int32_t L_24 = V_0;
NullCheck(L_23);
Il2CppChar L_25 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_23, L_24, /*hidden argument*/NULL);
if ((!(((uint32_t)L_25) == ((uint32_t)((int32_t)123)))))
{
goto IL_007b;
}
}
{
int32_t L_26 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_26, (int32_t)1));
goto IL_0081;
}
IL_007b:
{
int32_t L_27 = V_0;
V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_27, (int32_t)1));
goto IL_008d;
}
IL_0081:
{
Il2CppChar L_28 = V_2;
StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A(__this, L_28, /*hidden argument*/NULL);
}
IL_0089:
{
int32_t L_29 = V_0;
int32_t L_30 = V_1;
if ((((int32_t)L_29) < ((int32_t)L_30)))
{
goto IL_0036;
}
}
IL_008d:
{
int32_t L_31 = V_0;
int32_t L_32 = V_1;
if ((((int32_t)L_31) == ((int32_t)L_32)))
{
goto IL_030d;
}
}
{
int32_t L_33 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_33, (int32_t)1));
int32_t L_34 = V_0;
int32_t L_35 = V_1;
if ((((int32_t)L_34) == ((int32_t)L_35)))
{
goto IL_00ae;
}
}
{
String_t* L_36 = ___format1;
int32_t L_37 = V_0;
NullCheck(L_36);
Il2CppChar L_38 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_36, L_37, /*hidden argument*/NULL);
Il2CppChar L_39 = L_38;
V_2 = L_39;
if ((((int32_t)L_39) < ((int32_t)((int32_t)48))))
{
goto IL_00ae;
}
}
{
Il2CppChar L_40 = V_2;
if ((((int32_t)L_40) <= ((int32_t)((int32_t)57))))
{
goto IL_00b3;
}
}
IL_00ae:
{
StringBuilder_FormatError_m636599CB61540585B74FFC956ED91DC57F66C17B(/*hidden argument*/NULL);
}
IL_00b3:
{
V_4 = 0;
}
IL_00b6:
{
int32_t L_41 = V_4;
Il2CppChar L_42 = V_2;
V_4 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_41, (int32_t)((int32_t)10))), (int32_t)L_42)), (int32_t)((int32_t)48)));
int32_t L_43 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_43, (int32_t)1));
int32_t L_44 = V_0;
int32_t L_45 = V_1;
if ((!(((uint32_t)L_44) == ((uint32_t)L_45))))
{
goto IL_00cf;
}
}
{
StringBuilder_FormatError_m636599CB61540585B74FFC956ED91DC57F66C17B(/*hidden argument*/NULL);
}
IL_00cf:
{
String_t* L_46 = ___format1;
int32_t L_47 = V_0;
NullCheck(L_46);
Il2CppChar L_48 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_46, L_47, /*hidden argument*/NULL);
V_2 = L_48;
Il2CppChar L_49 = V_2;
if ((((int32_t)L_49) < ((int32_t)((int32_t)48))))
{
goto IL_00ea;
}
}
{
Il2CppChar L_50 = V_2;
if ((((int32_t)L_50) > ((int32_t)((int32_t)57))))
{
goto IL_00ea;
}
}
{
int32_t L_51 = V_4;
if ((((int32_t)L_51) < ((int32_t)((int32_t)1000000))))
{
goto IL_00b6;
}
}
IL_00ea:
{
int32_t L_52 = V_4;
int32_t L_53 = ParamsArray_get_Length_mF99DE09934408DBB8C5CBFA185F71E5E34045240((ParamsArray_t2DD480A5C806C0920DC218523EF3673332A68023 *)(&___args2), /*hidden argument*/NULL);
if ((((int32_t)L_52) < ((int32_t)L_53)))
{
goto IL_0109;
}
}
{
String_t* L_54 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralD347B33BFB9D03B433FB72FD513D1CD388D10678, /*hidden argument*/NULL);
FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC * L_55 = (FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC *)il2cpp_codegen_object_new(FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC_il2cpp_TypeInfo_var);
FormatException__ctor_m89167FF9884AE20232190FE9286DC50E146A4F14(L_55, L_54, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_55, StringBuilder_AppendFormatHelper_m3A655B006797788D89C813CEE20A1D32B95AF273_RuntimeMethod_var);
}
IL_0105:
{
int32_t L_56 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_56, (int32_t)1));
}
IL_0109:
{
int32_t L_57 = V_0;
int32_t L_58 = V_1;
if ((((int32_t)L_57) >= ((int32_t)L_58)))
{
goto IL_011a;
}
}
{
String_t* L_59 = ___format1;
int32_t L_60 = V_0;
NullCheck(L_59);
Il2CppChar L_61 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_59, L_60, /*hidden argument*/NULL);
Il2CppChar L_62 = L_61;
V_2 = L_62;
if ((((int32_t)L_62) == ((int32_t)((int32_t)32))))
{
goto IL_0105;
}
}
IL_011a:
{
V_5 = (bool)0;
V_6 = 0;
Il2CppChar L_63 = V_2;
if ((!(((uint32_t)L_63) == ((uint32_t)((int32_t)44)))))
{
goto IL_01b8;
}
}
{
int32_t L_64 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_64, (int32_t)1));
goto IL_0132;
}
IL_012e:
{
int32_t L_65 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_65, (int32_t)1));
}
IL_0132:
{
int32_t L_66 = V_0;
int32_t L_67 = V_1;
if ((((int32_t)L_66) >= ((int32_t)L_67)))
{
goto IL_0141;
}
}
{
String_t* L_68 = ___format1;
int32_t L_69 = V_0;
NullCheck(L_68);
Il2CppChar L_70 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_68, L_69, /*hidden argument*/NULL);
if ((((int32_t)L_70) == ((int32_t)((int32_t)32))))
{
goto IL_012e;
}
}
IL_0141:
{
int32_t L_71 = V_0;
int32_t L_72 = V_1;
if ((!(((uint32_t)L_71) == ((uint32_t)L_72))))
{
goto IL_014a;
}
}
{
StringBuilder_FormatError_m636599CB61540585B74FFC956ED91DC57F66C17B(/*hidden argument*/NULL);
}
IL_014a:
{
String_t* L_73 = ___format1;
int32_t L_74 = V_0;
NullCheck(L_73);
Il2CppChar L_75 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_73, L_74, /*hidden argument*/NULL);
V_2 = L_75;
Il2CppChar L_76 = V_2;
if ((!(((uint32_t)L_76) == ((uint32_t)((int32_t)45)))))
{
goto IL_016f;
}
}
{
V_5 = (bool)1;
int32_t L_77 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_77, (int32_t)1));
int32_t L_78 = V_0;
int32_t L_79 = V_1;
if ((!(((uint32_t)L_78) == ((uint32_t)L_79))))
{
goto IL_0167;
}
}
{
StringBuilder_FormatError_m636599CB61540585B74FFC956ED91DC57F66C17B(/*hidden argument*/NULL);
}
IL_0167:
{
String_t* L_80 = ___format1;
int32_t L_81 = V_0;
NullCheck(L_80);
Il2CppChar L_82 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_80, L_81, /*hidden argument*/NULL);
V_2 = L_82;
}
IL_016f:
{
Il2CppChar L_83 = V_2;
if ((((int32_t)L_83) < ((int32_t)((int32_t)48))))
{
goto IL_0179;
}
}
{
Il2CppChar L_84 = V_2;
if ((((int32_t)L_84) <= ((int32_t)((int32_t)57))))
{
goto IL_017e;
}
}
IL_0179:
{
StringBuilder_FormatError_m636599CB61540585B74FFC956ED91DC57F66C17B(/*hidden argument*/NULL);
}
IL_017e:
{
int32_t L_85 = V_6;
Il2CppChar L_86 = V_2;
V_6 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_85, (int32_t)((int32_t)10))), (int32_t)L_86)), (int32_t)((int32_t)48)));
int32_t L_87 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_87, (int32_t)1));
int32_t L_88 = V_0;
int32_t L_89 = V_1;
if ((!(((uint32_t)L_88) == ((uint32_t)L_89))))
{
goto IL_0197;
}
}
{
StringBuilder_FormatError_m636599CB61540585B74FFC956ED91DC57F66C17B(/*hidden argument*/NULL);
}
IL_0197:
{
String_t* L_90 = ___format1;
int32_t L_91 = V_0;
NullCheck(L_90);
Il2CppChar L_92 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_90, L_91, /*hidden argument*/NULL);
V_2 = L_92;
Il2CppChar L_93 = V_2;
if ((((int32_t)L_93) < ((int32_t)((int32_t)48))))
{
goto IL_01b8;
}
}
{
Il2CppChar L_94 = V_2;
if ((((int32_t)L_94) > ((int32_t)((int32_t)57))))
{
goto IL_01b8;
}
}
{
int32_t L_95 = V_6;
if ((((int32_t)L_95) < ((int32_t)((int32_t)1000000))))
{
goto IL_017e;
}
}
{
goto IL_01b8;
}
IL_01b4:
{
int32_t L_96 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_96, (int32_t)1));
}
IL_01b8:
{
int32_t L_97 = V_0;
int32_t L_98 = V_1;
if ((((int32_t)L_97) >= ((int32_t)L_98)))
{
goto IL_01c9;
}
}
{
String_t* L_99 = ___format1;
int32_t L_100 = V_0;
NullCheck(L_99);
Il2CppChar L_101 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_99, L_100, /*hidden argument*/NULL);
Il2CppChar L_102 = L_101;
V_2 = L_102;
if ((((int32_t)L_102) == ((int32_t)((int32_t)32))))
{
goto IL_01b4;
}
}
IL_01c9:
{
int32_t L_103 = V_4;
RuntimeObject * L_104 = ParamsArray_get_Item_mB78610EF5AA4BF6261665E0536AAB243E915090A((ParamsArray_t2DD480A5C806C0920DC218523EF3673332A68023 *)(&___args2), L_103, /*hidden argument*/NULL);
V_7 = L_104;
V_8 = (StringBuilder_t *)NULL;
Il2CppChar L_105 = V_2;
if ((!(((uint32_t)L_105) == ((uint32_t)((int32_t)58)))))
{
goto IL_024c;
}
}
{
int32_t L_106 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_106, (int32_t)1));
}
IL_01e0:
{
int32_t L_107 = V_0;
int32_t L_108 = V_1;
if ((!(((uint32_t)L_107) == ((uint32_t)L_108))))
{
goto IL_01e9;
}
}
{
StringBuilder_FormatError_m636599CB61540585B74FFC956ED91DC57F66C17B(/*hidden argument*/NULL);
}
IL_01e9:
{
String_t* L_109 = ___format1;
int32_t L_110 = V_0;
NullCheck(L_109);
Il2CppChar L_111 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_109, L_110, /*hidden argument*/NULL);
V_2 = L_111;
int32_t L_112 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_112, (int32_t)1));
Il2CppChar L_113 = V_2;
if ((!(((uint32_t)L_113) == ((uint32_t)((int32_t)123)))))
{
goto IL_0216;
}
}
{
int32_t L_114 = V_0;
int32_t L_115 = V_1;
if ((((int32_t)L_114) >= ((int32_t)L_115)))
{
goto IL_020f;
}
}
{
String_t* L_116 = ___format1;
int32_t L_117 = V_0;
NullCheck(L_116);
Il2CppChar L_118 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_116, L_117, /*hidden argument*/NULL);
if ((!(((uint32_t)L_118) == ((uint32_t)((int32_t)123)))))
{
goto IL_020f;
}
}
{
int32_t L_119 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_119, (int32_t)1));
goto IL_0236;
}
IL_020f:
{
StringBuilder_FormatError_m636599CB61540585B74FFC956ED91DC57F66C17B(/*hidden argument*/NULL);
goto IL_0236;
}
IL_0216:
{
Il2CppChar L_120 = V_2;
if ((!(((uint32_t)L_120) == ((uint32_t)((int32_t)125)))))
{
goto IL_0236;
}
}
{
int32_t L_121 = V_0;
int32_t L_122 = V_1;
if ((((int32_t)L_121) >= ((int32_t)L_122)))
{
goto IL_0230;
}
}
{
String_t* L_123 = ___format1;
int32_t L_124 = V_0;
NullCheck(L_123);
Il2CppChar L_125 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_123, L_124, /*hidden argument*/NULL);
if ((!(((uint32_t)L_125) == ((uint32_t)((int32_t)125)))))
{
goto IL_0230;
}
}
{
int32_t L_126 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_126, (int32_t)1));
goto IL_0236;
}
IL_0230:
{
int32_t L_127 = V_0;
V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_127, (int32_t)1));
goto IL_024c;
}
IL_0236:
{
StringBuilder_t * L_128 = V_8;
if (L_128)
{
goto IL_0241;
}
}
{
StringBuilder_t * L_129 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
StringBuilder__ctor_mF928376F82E8C8FF3C11842C562DB8CF28B2735E(L_129, /*hidden argument*/NULL);
V_8 = L_129;
}
IL_0241:
{
StringBuilder_t * L_130 = V_8;
Il2CppChar L_131 = V_2;
NullCheck(L_130);
StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A(L_130, L_131, /*hidden argument*/NULL);
goto IL_01e0;
}
IL_024c:
{
Il2CppChar L_132 = V_2;
if ((((int32_t)L_132) == ((int32_t)((int32_t)125))))
{
goto IL_0256;
}
}
{
StringBuilder_FormatError_m636599CB61540585B74FFC956ED91DC57F66C17B(/*hidden argument*/NULL);
}
IL_0256:
{
int32_t L_133 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_133, (int32_t)1));
V_9 = (String_t*)NULL;
V_10 = (String_t*)NULL;
RuntimeObject* L_134 = V_3;
if (!L_134)
{
goto IL_027d;
}
}
{
StringBuilder_t * L_135 = V_8;
if (!L_135)
{
goto IL_0270;
}
}
{
StringBuilder_t * L_136 = V_8;
NullCheck(L_136);
String_t* L_137 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_136);
V_9 = L_137;
}
IL_0270:
{
RuntimeObject* L_138 = V_3;
String_t* L_139 = V_9;
RuntimeObject * L_140 = V_7;
RuntimeObject* L_141 = ___provider0;
NullCheck(L_138);
String_t* L_142 = InterfaceFuncInvoker3< String_t*, String_t*, RuntimeObject *, RuntimeObject* >::Invoke(0 /* System.String System.ICustomFormatter::Format(System.String,System.Object,System.IFormatProvider) */, ICustomFormatter_tDAB6E1F893DB2D4F44572E9B6ED6E82BC9D26D1E_il2cpp_TypeInfo_var, L_138, L_139, L_140, L_141);
V_10 = L_142;
}
IL_027d:
{
String_t* L_143 = V_10;
if (L_143)
{
goto IL_02ba;
}
}
{
RuntimeObject * L_144 = V_7;
V_12 = ((RuntimeObject*)IsInst((RuntimeObject*)L_144, IFormattable_t58E0883927AD7B9E881837942BD4FA2E7D8330C0_il2cpp_TypeInfo_var));
RuntimeObject* L_145 = V_12;
if (!L_145)
{
goto IL_02ad;
}
}
{
String_t* L_146 = V_9;
if (L_146)
{
goto IL_029f;
}
}
{
StringBuilder_t * L_147 = V_8;
if (!L_147)
{
goto IL_029f;
}
}
{
StringBuilder_t * L_148 = V_8;
NullCheck(L_148);
String_t* L_149 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_148);
V_9 = L_149;
}
IL_029f:
{
RuntimeObject* L_150 = V_12;
String_t* L_151 = V_9;
RuntimeObject* L_152 = ___provider0;
NullCheck(L_150);
String_t* L_153 = InterfaceFuncInvoker2< String_t*, String_t*, RuntimeObject* >::Invoke(0 /* System.String System.IFormattable::ToString(System.String,System.IFormatProvider) */, IFormattable_t58E0883927AD7B9E881837942BD4FA2E7D8330C0_il2cpp_TypeInfo_var, L_150, L_151, L_152);
V_10 = L_153;
goto IL_02ba;
}
IL_02ad:
{
RuntimeObject * L_154 = V_7;
if (!L_154)
{
goto IL_02ba;
}
}
{
RuntimeObject * L_155 = V_7;
NullCheck(L_155);
String_t* L_156 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_155);
V_10 = L_156;
}
IL_02ba:
{
String_t* L_157 = V_10;
if (L_157)
{
goto IL_02c5;
}
}
{
String_t* L_158 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5();
V_10 = L_158;
}
IL_02c5:
{
int32_t L_159 = V_6;
String_t* L_160 = V_10;
NullCheck(L_160);
int32_t L_161 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_160, /*hidden argument*/NULL);
V_11 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_159, (int32_t)L_161));
bool L_162 = V_5;
if (L_162)
{
goto IL_02e5;
}
}
{
int32_t L_163 = V_11;
if ((((int32_t)L_163) <= ((int32_t)0)))
{
goto IL_02e5;
}
}
{
int32_t L_164 = V_11;
StringBuilder_Append_m9702CA108F81CBF2B174826C1DFC5F7552C36C45(__this, ((int32_t)32), L_164, /*hidden argument*/NULL);
}
IL_02e5:
{
String_t* L_165 = V_10;
StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(__this, L_165, /*hidden argument*/NULL);
bool L_166 = V_5;
if (!L_166)
{
goto IL_0089;
}
}
{
int32_t L_167 = V_11;
if ((((int32_t)L_167) <= ((int32_t)0)))
{
goto IL_0089;
}
}
{
int32_t L_168 = V_11;
StringBuilder_Append_m9702CA108F81CBF2B174826C1DFC5F7552C36C45(__this, ((int32_t)32), L_168, /*hidden argument*/NULL);
goto IL_0089;
}
IL_030d:
{
return __this;
}
}
// System.Text.StringBuilder System.Text.StringBuilder::Replace(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Replace_m8A5E9D9860AB7D0D4E4FFFE729469DB1A0DD0113 (StringBuilder_t * __this, String_t* ___oldValue0, String_t* ___newValue1, const RuntimeMethod* method)
{
{
String_t* L_0 = ___oldValue0;
String_t* L_1 = ___newValue1;
int32_t L_2 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(__this, /*hidden argument*/NULL);
StringBuilder_t * L_3 = StringBuilder_Replace_m10672EAD6812FE1E8C58EF1435709D212F6347C4(__this, L_0, L_1, 0, L_2, /*hidden argument*/NULL);
return L_3;
}
}
// System.Text.StringBuilder System.Text.StringBuilder::Replace(System.String,System.String,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Replace_m10672EAD6812FE1E8C58EF1435709D212F6347C4 (StringBuilder_t * __this, String_t* ___oldValue0, String_t* ___newValue1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StringBuilder_Replace_m10672EAD6812FE1E8C58EF1435709D212F6347C4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* V_1 = NULL;
int32_t V_2 = 0;
StringBuilder_t * V_3 = NULL;
int32_t V_4 = 0;
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* V_5 = NULL;
int32_t V_6 = 0;
{
int32_t L_0 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(__this, /*hidden argument*/NULL);
V_0 = L_0;
int32_t L_1 = ___startIndex2;
int32_t L_2 = V_0;
if ((!(((uint32_t)L_1) > ((uint32_t)L_2))))
{
goto IL_0020;
}
}
{
String_t* L_3 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_4 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_4, _stringLiteral8972561214BDFD4779823E480036EAF0853E3C56, L_3, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, StringBuilder_Replace_m10672EAD6812FE1E8C58EF1435709D212F6347C4_RuntimeMethod_var);
}
IL_0020:
{
int32_t L_5 = ___count3;
if ((((int32_t)L_5) < ((int32_t)0)))
{
goto IL_002c;
}
}
{
int32_t L_6 = ___startIndex2;
int32_t L_7 = V_0;
int32_t L_8 = ___count3;
if ((((int32_t)L_6) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_7, (int32_t)L_8)))))
{
goto IL_0041;
}
}
IL_002c:
{
String_t* L_9 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_10 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_10, _stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556, L_9, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, StringBuilder_Replace_m10672EAD6812FE1E8C58EF1435709D212F6347C4_RuntimeMethod_var);
}
IL_0041:
{
String_t* L_11 = ___oldValue0;
if (L_11)
{
goto IL_004f;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_12 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_12, _stringLiteral5333C95EEF3653ADA7FB3938F954312C6198A976, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, StringBuilder_Replace_m10672EAD6812FE1E8C58EF1435709D212F6347C4_RuntimeMethod_var);
}
IL_004f:
{
String_t* L_13 = ___oldValue0;
NullCheck(L_13);
int32_t L_14 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_13, /*hidden argument*/NULL);
if (L_14)
{
goto IL_006c;
}
}
{
String_t* L_15 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralB863A975819F3FEC6A60E378417FAFD94AD4935A, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_16 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_16, L_15, _stringLiteral5333C95EEF3653ADA7FB3938F954312C6198A976, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_16, StringBuilder_Replace_m10672EAD6812FE1E8C58EF1435709D212F6347C4_RuntimeMethod_var);
}
IL_006c:
{
String_t* L_17 = ___newValue1;
if (L_17)
{
goto IL_0076;
}
}
{
___newValue1 = _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709;
}
IL_0076:
{
V_1 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)NULL;
V_2 = 0;
int32_t L_18 = ___startIndex2;
StringBuilder_t * L_19 = StringBuilder_FindChunkForIndex_m9EF595B1D768F788C60CD68778A23DB54F260527(__this, L_18, /*hidden argument*/NULL);
V_3 = L_19;
int32_t L_20 = ___startIndex2;
StringBuilder_t * L_21 = V_3;
NullCheck(L_21);
int32_t L_22 = L_21->get_m_ChunkOffset_3();
V_4 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_20, (int32_t)L_22));
goto IL_014f;
}
IL_0091:
{
StringBuilder_t * L_23 = V_3;
int32_t L_24 = V_4;
int32_t L_25 = ___count3;
String_t* L_26 = ___oldValue0;
bool L_27 = StringBuilder_StartsWith_m191999C1CF871FC076122689B8ECB798863C4467(__this, L_23, L_24, L_25, L_26, /*hidden argument*/NULL);
if (!L_27)
{
goto IL_00f0;
}
}
{
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_28 = V_1;
if (L_28)
{
goto IL_00ab;
}
}
{
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_29 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)SZArrayNew(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83_il2cpp_TypeInfo_var, (uint32_t)5);
V_1 = L_29;
goto IL_00cf;
}
IL_00ab:
{
int32_t L_30 = V_2;
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_31 = V_1;
NullCheck(L_31);
if ((((int32_t)L_30) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_31)->max_length)))))))
{
goto IL_00cf;
}
}
{
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_32 = V_1;
NullCheck(L_32);
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_33 = (Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83*)SZArrayNew(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_32)->max_length)))), (int32_t)3))/(int32_t)2)), (int32_t)4)));
V_5 = L_33;
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_34 = V_1;
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_35 = V_5;
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_36 = V_1;
NullCheck(L_36);
Array_Copy_m2D96731C600DE8A167348CA8BA796344E64F7434((RuntimeArray *)(RuntimeArray *)L_34, (RuntimeArray *)(RuntimeArray *)L_35, (((int32_t)((int32_t)(((RuntimeArray*)L_36)->max_length)))), /*hidden argument*/NULL);
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_37 = V_5;
V_1 = L_37;
}
IL_00cf:
{
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_38 = V_1;
int32_t L_39 = V_2;
int32_t L_40 = L_39;
V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_40, (int32_t)1));
int32_t L_41 = V_4;
NullCheck(L_38);
(L_38)->SetAt(static_cast<il2cpp_array_size_t>(L_40), (int32_t)L_41);
int32_t L_42 = V_4;
String_t* L_43 = ___oldValue0;
NullCheck(L_43);
int32_t L_44 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_43, /*hidden argument*/NULL);
V_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_42, (int32_t)L_44));
int32_t L_45 = ___count3;
String_t* L_46 = ___oldValue0;
NullCheck(L_46);
int32_t L_47 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_46, /*hidden argument*/NULL);
___count3 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_45, (int32_t)L_47));
goto IL_00fc;
}
IL_00f0:
{
int32_t L_48 = V_4;
V_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_48, (int32_t)1));
int32_t L_49 = ___count3;
___count3 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_49, (int32_t)1));
}
IL_00fc:
{
int32_t L_50 = V_4;
StringBuilder_t * L_51 = V_3;
NullCheck(L_51);
int32_t L_52 = L_51->get_m_ChunkLength_2();
if ((((int32_t)L_50) >= ((int32_t)L_52)))
{
goto IL_010a;
}
}
{
int32_t L_53 = ___count3;
if (L_53)
{
goto IL_014f;
}
}
IL_010a:
{
int32_t L_54 = V_4;
StringBuilder_t * L_55 = V_3;
NullCheck(L_55);
int32_t L_56 = L_55->get_m_ChunkOffset_3();
V_6 = ((int32_t)il2cpp_codegen_add((int32_t)L_54, (int32_t)L_56));
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_57 = V_1;
int32_t L_58 = V_2;
StringBuilder_t * L_59 = V_3;
String_t* L_60 = ___oldValue0;
NullCheck(L_60);
int32_t L_61 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_60, /*hidden argument*/NULL);
String_t* L_62 = ___newValue1;
StringBuilder_ReplaceAllInChunk_m40510C5422490D47187136D04AE82FCAF0D43314(__this, L_57, L_58, L_59, L_61, L_62, /*hidden argument*/NULL);
int32_t L_63 = V_6;
String_t* L_64 = ___newValue1;
NullCheck(L_64);
int32_t L_65 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_64, /*hidden argument*/NULL);
String_t* L_66 = ___oldValue0;
NullCheck(L_66);
int32_t L_67 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_66, /*hidden argument*/NULL);
int32_t L_68 = V_2;
V_6 = ((int32_t)il2cpp_codegen_add((int32_t)L_63, (int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_65, (int32_t)L_67)), (int32_t)L_68))));
V_2 = 0;
int32_t L_69 = V_6;
StringBuilder_t * L_70 = StringBuilder_FindChunkForIndex_m9EF595B1D768F788C60CD68778A23DB54F260527(__this, L_69, /*hidden argument*/NULL);
V_3 = L_70;
int32_t L_71 = V_6;
StringBuilder_t * L_72 = V_3;
NullCheck(L_72);
int32_t L_73 = L_72->get_m_ChunkOffset_3();
V_4 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_71, (int32_t)L_73));
}
IL_014f:
{
int32_t L_74 = ___count3;
if ((((int32_t)L_74) > ((int32_t)0)))
{
goto IL_0091;
}
}
{
return __this;
}
}
// System.Text.StringBuilder System.Text.StringBuilder::Append(System.Char*,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Append_m353B571BF530B0BD74B61E499EAF6536F1B93E84 (StringBuilder_t * __this, Il2CppChar* ___value0, int32_t ___valueCount1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StringBuilder_Append_m353B571BF530B0BD74B61E499EAF6536F1B93E84_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
int32_t L_0 = ___valueCount1;
if ((((int32_t)L_0) >= ((int32_t)0)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralB6CE7B15183720AAC274771B6CD7214E241A3BFB, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_2 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_2, _stringLiteral6A95BAFF5E18ABC1DDB687C6380A1673A59B072F, L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, StringBuilder_Append_m353B571BF530B0BD74B61E499EAF6536F1B93E84_RuntimeMethod_var);
}
IL_0019:
{
int32_t L_3 = ___valueCount1;
int32_t L_4 = __this->get_m_ChunkLength_2();
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)L_4));
int32_t L_5 = V_0;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_6 = __this->get_m_ChunkChars_0();
NullCheck(L_6);
if ((((int32_t)L_5) > ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length)))))))
{
goto IL_0049;
}
}
{
Il2CppChar* L_7 = ___value0;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_8 = __this->get_m_ChunkChars_0();
int32_t L_9 = __this->get_m_ChunkLength_2();
int32_t L_10 = ___valueCount1;
StringBuilder_ThreadSafeCopy_mF35929E10961A91520C9DE919B013977B2DFCF84((Il2CppChar*)(Il2CppChar*)L_7, L_8, L_9, L_10, /*hidden argument*/NULL);
int32_t L_11 = V_0;
__this->set_m_ChunkLength_2(L_11);
goto IL_00a3;
}
IL_0049:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_12 = __this->get_m_ChunkChars_0();
NullCheck(L_12);
int32_t L_13 = __this->get_m_ChunkLength_2();
V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_12)->max_length)))), (int32_t)L_13));
int32_t L_14 = V_1;
if ((((int32_t)L_14) <= ((int32_t)0)))
{
goto IL_007e;
}
}
{
Il2CppChar* L_15 = ___value0;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_16 = __this->get_m_ChunkChars_0();
int32_t L_17 = __this->get_m_ChunkLength_2();
int32_t L_18 = V_1;
StringBuilder_ThreadSafeCopy_mF35929E10961A91520C9DE919B013977B2DFCF84((Il2CppChar*)(Il2CppChar*)L_15, L_16, L_17, L_18, /*hidden argument*/NULL);
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_19 = __this->get_m_ChunkChars_0();
NullCheck(L_19);
__this->set_m_ChunkLength_2((((int32_t)((int32_t)(((RuntimeArray*)L_19)->max_length)))));
}
IL_007e:
{
int32_t L_20 = ___valueCount1;
int32_t L_21 = V_1;
V_2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_20, (int32_t)L_21));
int32_t L_22 = V_2;
StringBuilder_ExpandByABlock_m855E07A0ECE12C6C4151B72BD80DE5311CE9B42C(__this, L_22, /*hidden argument*/NULL);
Il2CppChar* L_23 = ___value0;
int32_t L_24 = V_1;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_25 = __this->get_m_ChunkChars_0();
int32_t L_26 = V_2;
StringBuilder_ThreadSafeCopy_mF35929E10961A91520C9DE919B013977B2DFCF84((Il2CppChar*)(Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_23, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_24)), (int32_t)2)))), L_25, 0, L_26, /*hidden argument*/NULL);
int32_t L_27 = V_2;
__this->set_m_ChunkLength_2(L_27);
}
IL_00a3:
{
return __this;
}
}
// System.Void System.Text.StringBuilder::Insert(System.Int32,System.Char*,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder_Insert_m25234968C27EB1BEB242AFE1C7DE6BACAD903E33 (StringBuilder_t * __this, int32_t ___index0, Il2CppChar* ___value1, int32_t ___valueCount2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StringBuilder_Insert_m25234968C27EB1BEB242AFE1C7DE6BACAD903E33_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
StringBuilder_t * V_0 = NULL;
int32_t V_1 = 0;
{
int32_t L_0 = ___index0;
int32_t L_1 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(__this, /*hidden argument*/NULL);
if ((!(((uint32_t)L_0) > ((uint32_t)L_1))))
{
goto IL_001e;
}
}
{
String_t* L_2 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_3 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_3, _stringLiteralE540CDD1328B2B21E29A95405C301B9313B7C346, L_2, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, StringBuilder_Insert_m25234968C27EB1BEB242AFE1C7DE6BACAD903E33_RuntimeMethod_var);
}
IL_001e:
{
int32_t L_4 = ___valueCount2;
if ((((int32_t)L_4) <= ((int32_t)0)))
{
goto IL_003b;
}
}
{
int32_t L_5 = ___index0;
int32_t L_6 = ___valueCount2;
StringBuilder_MakeRoom_mC8A37E0A3FCACABC5B1BF99BCEF32C086F03B9FF(__this, L_5, L_6, (StringBuilder_t **)(&V_0), (int32_t*)(&V_1), (bool)0, /*hidden argument*/NULL);
Il2CppChar* L_7 = ___value1;
int32_t L_8 = ___valueCount2;
StringBuilder_ReplaceInPlaceAtChunk_mA3A70E8FD6B9F52D4D62700D5E706E851BA1D773(__this, (StringBuilder_t **)(&V_0), (int32_t*)(&V_1), (Il2CppChar*)(Il2CppChar*)L_7, L_8, /*hidden argument*/NULL);
}
IL_003b:
{
return;
}
}
// System.Void System.Text.StringBuilder::ReplaceAllInChunk(System.Int32[],System.Int32,System.Text.StringBuilder,System.Int32,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder_ReplaceAllInChunk_m40510C5422490D47187136D04AE82FCAF0D43314 (StringBuilder_t * __this, Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___replacements0, int32_t ___replacementsCount1, StringBuilder_t * ___sourceChunk2, int32_t ___removeCount3, String_t* ___value4, const RuntimeMethod* method)
{
Il2CppChar* V_0 = NULL;
String_t* V_1 = NULL;
int32_t V_2 = 0;
StringBuilder_t * V_3 = NULL;
int32_t V_4 = 0;
int32_t V_5 = 0;
int32_t V_6 = 0;
int32_t V_7 = 0;
Il2CppChar* V_8 = NULL;
Il2CppChar* V_9 = NULL;
{
int32_t L_0 = ___replacementsCount1;
if ((((int32_t)L_0) > ((int32_t)0)))
{
goto IL_0005;
}
}
{
return;
}
IL_0005:
{
String_t* L_1 = ___value4;
V_1 = L_1;
String_t* L_2 = V_1;
V_0 = (Il2CppChar*)(((uintptr_t)L_2));
Il2CppChar* L_3 = V_0;
if (!L_3)
{
goto IL_0016;
}
}
{
Il2CppChar* L_4 = V_0;
int32_t L_5 = RuntimeHelpers_get_OffsetToStringData_mF3B79A906181F1A2734590DA161E2AF183853F8B(/*hidden argument*/NULL);
V_0 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_4, (int32_t)L_5));
}
IL_0016:
{
String_t* L_6 = ___value4;
NullCheck(L_6);
int32_t L_7 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_6, /*hidden argument*/NULL);
int32_t L_8 = ___removeCount3;
int32_t L_9 = ___replacementsCount1;
V_2 = ((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_7, (int32_t)L_8)), (int32_t)L_9));
StringBuilder_t * L_10 = ___sourceChunk2;
V_3 = L_10;
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_11 = ___replacements0;
NullCheck(L_11);
int32_t L_12 = 0;
int32_t L_13 = (L_11)->GetAt(static_cast<il2cpp_array_size_t>(L_12));
V_4 = L_13;
int32_t L_14 = V_2;
if ((((int32_t)L_14) <= ((int32_t)0)))
{
goto IL_0043;
}
}
{
StringBuilder_t * L_15 = V_3;
NullCheck(L_15);
int32_t L_16 = L_15->get_m_ChunkOffset_3();
int32_t L_17 = V_4;
int32_t L_18 = V_2;
StringBuilder_MakeRoom_mC8A37E0A3FCACABC5B1BF99BCEF32C086F03B9FF(__this, ((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)L_17)), L_18, (StringBuilder_t **)(&V_3), (int32_t*)(&V_4), (bool)1, /*hidden argument*/NULL);
}
IL_0043:
{
V_5 = 0;
}
IL_0046:
{
Il2CppChar* L_19 = V_0;
String_t* L_20 = ___value4;
NullCheck(L_20);
int32_t L_21 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_20, /*hidden argument*/NULL);
StringBuilder_ReplaceInPlaceAtChunk_mA3A70E8FD6B9F52D4D62700D5E706E851BA1D773(__this, (StringBuilder_t **)(&V_3), (int32_t*)(&V_4), (Il2CppChar*)(Il2CppChar*)L_19, L_21, /*hidden argument*/NULL);
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_22 = ___replacements0;
int32_t L_23 = V_5;
NullCheck(L_22);
int32_t L_24 = L_23;
int32_t L_25 = (L_22)->GetAt(static_cast<il2cpp_array_size_t>(L_24));
int32_t L_26 = ___removeCount3;
V_6 = ((int32_t)il2cpp_codegen_add((int32_t)L_25, (int32_t)L_26));
int32_t L_27 = V_5;
V_5 = ((int32_t)il2cpp_codegen_add((int32_t)L_27, (int32_t)1));
int32_t L_28 = V_5;
int32_t L_29 = ___replacementsCount1;
if ((((int32_t)L_28) >= ((int32_t)L_29)))
{
goto IL_00ac;
}
}
{
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_30 = ___replacements0;
int32_t L_31 = V_5;
NullCheck(L_30);
int32_t L_32 = L_31;
int32_t L_33 = (L_30)->GetAt(static_cast<il2cpp_array_size_t>(L_32));
V_7 = L_33;
int32_t L_34 = V_2;
if (!L_34)
{
goto IL_00a0;
}
}
{
StringBuilder_t * L_35 = ___sourceChunk2;
NullCheck(L_35);
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_36 = L_35->get_m_ChunkChars_0();
int32_t L_37 = V_6;
NullCheck(L_36);
V_9 = (Il2CppChar*)((L_36)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_37)));
Il2CppChar* L_38 = V_9;
V_8 = (Il2CppChar*)(((uintptr_t)L_38));
Il2CppChar* L_39 = V_8;
int32_t L_40 = V_7;
int32_t L_41 = V_6;
StringBuilder_ReplaceInPlaceAtChunk_mA3A70E8FD6B9F52D4D62700D5E706E851BA1D773(__this, (StringBuilder_t **)(&V_3), (int32_t*)(&V_4), (Il2CppChar*)(Il2CppChar*)L_39, ((int32_t)il2cpp_codegen_subtract((int32_t)L_40, (int32_t)L_41)), /*hidden argument*/NULL);
V_9 = (Il2CppChar*)(((uintptr_t)0));
goto IL_0046;
}
IL_00a0:
{
int32_t L_42 = V_4;
int32_t L_43 = V_7;
int32_t L_44 = V_6;
V_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_42, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_43, (int32_t)L_44))));
goto IL_0046;
}
IL_00ac:
{
int32_t L_45 = V_2;
if ((((int32_t)L_45) >= ((int32_t)0)))
{
goto IL_00c5;
}
}
{
StringBuilder_t * L_46 = V_3;
NullCheck(L_46);
int32_t L_47 = L_46->get_m_ChunkOffset_3();
int32_t L_48 = V_4;
int32_t L_49 = V_2;
StringBuilder_Remove_m570DD9A086B94D894FCD1EB011BCB2166A57B4D6(__this, ((int32_t)il2cpp_codegen_add((int32_t)L_47, (int32_t)L_48)), ((-L_49)), (StringBuilder_t **)(&V_3), (int32_t*)(&V_4), /*hidden argument*/NULL);
}
IL_00c5:
{
V_1 = (String_t*)NULL;
return;
}
}
// System.Boolean System.Text.StringBuilder::StartsWith(System.Text.StringBuilder,System.Int32,System.Int32,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool StringBuilder_StartsWith_m191999C1CF871FC076122689B8ECB798863C4467 (StringBuilder_t * __this, StringBuilder_t * ___chunk0, int32_t ___indexInChunk1, int32_t ___count2, String_t* ___value3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
V_0 = 0;
goto IL_0045;
}
IL_0004:
{
int32_t L_0 = ___count2;
if (L_0)
{
goto IL_0009;
}
}
{
return (bool)0;
}
IL_0009:
{
int32_t L_1 = ___indexInChunk1;
StringBuilder_t * L_2 = ___chunk0;
NullCheck(L_2);
int32_t L_3 = L_2->get_m_ChunkLength_2();
if ((((int32_t)L_1) < ((int32_t)L_3)))
{
goto IL_0023;
}
}
{
StringBuilder_t * L_4 = ___chunk0;
StringBuilder_t * L_5 = StringBuilder_Next_mF117555541979DEC3146FD3A059F66EBE60B775C(__this, L_4, /*hidden argument*/NULL);
___chunk0 = L_5;
StringBuilder_t * L_6 = ___chunk0;
if (L_6)
{
goto IL_0020;
}
}
{
return (bool)0;
}
IL_0020:
{
___indexInChunk1 = 0;
}
IL_0023:
{
String_t* L_7 = ___value3;
int32_t L_8 = V_0;
NullCheck(L_7);
Il2CppChar L_9 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_7, L_8, /*hidden argument*/NULL);
StringBuilder_t * L_10 = ___chunk0;
NullCheck(L_10);
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_11 = L_10->get_m_ChunkChars_0();
int32_t L_12 = ___indexInChunk1;
NullCheck(L_11);
int32_t L_13 = L_12;
uint16_t L_14 = (uint16_t)(L_11)->GetAt(static_cast<il2cpp_array_size_t>(L_13));
if ((((int32_t)L_9) == ((int32_t)L_14)))
{
goto IL_0037;
}
}
{
return (bool)0;
}
IL_0037:
{
int32_t L_15 = ___indexInChunk1;
___indexInChunk1 = ((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1));
int32_t L_16 = ___count2;
___count2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_16, (int32_t)1));
int32_t L_17 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1));
}
IL_0045:
{
int32_t L_18 = V_0;
String_t* L_19 = ___value3;
NullCheck(L_19);
int32_t L_20 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline(L_19, /*hidden argument*/NULL);
if ((((int32_t)L_18) < ((int32_t)L_20)))
{
goto IL_0004;
}
}
{
return (bool)1;
}
}
// System.Void System.Text.StringBuilder::ReplaceInPlaceAtChunk(System.Text.StringBuilder&,System.Int32&,System.Char*,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder_ReplaceInPlaceAtChunk_mA3A70E8FD6B9F52D4D62700D5E706E851BA1D773 (StringBuilder_t * __this, StringBuilder_t ** ___chunk0, int32_t* ___indexInChunk1, Il2CppChar* ___value2, int32_t ___count3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StringBuilder_ReplaceInPlaceAtChunk_mA3A70E8FD6B9F52D4D62700D5E706E851BA1D773_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
int32_t L_0 = ___count3;
if (!L_0)
{
goto IL_0058;
}
}
IL_0004:
{
StringBuilder_t ** L_1 = ___chunk0;
StringBuilder_t * L_2 = *((StringBuilder_t **)L_1);
NullCheck(L_2);
int32_t L_3 = L_2->get_m_ChunkLength_2();
int32_t* L_4 = ___indexInChunk1;
int32_t L_5 = *((int32_t*)L_4);
int32_t L_6 = ___count3;
IL2CPP_RUNTIME_CLASS_INIT(Math_tFB388E53C7FDC6FCCF9A19ABF5A4E521FBD52E19_il2cpp_TypeInfo_var);
int32_t L_7 = Math_Min_mC950438198519FB2B0260FCB91220847EE4BB525(((int32_t)il2cpp_codegen_subtract((int32_t)L_3, (int32_t)L_5)), L_6, /*hidden argument*/NULL);
V_0 = L_7;
Il2CppChar* L_8 = ___value2;
StringBuilder_t ** L_9 = ___chunk0;
StringBuilder_t * L_10 = *((StringBuilder_t **)L_9);
NullCheck(L_10);
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_11 = L_10->get_m_ChunkChars_0();
int32_t* L_12 = ___indexInChunk1;
int32_t L_13 = *((int32_t*)L_12);
int32_t L_14 = V_0;
StringBuilder_ThreadSafeCopy_mF35929E10961A91520C9DE919B013977B2DFCF84((Il2CppChar*)(Il2CppChar*)L_8, L_11, L_13, L_14, /*hidden argument*/NULL);
int32_t* L_15 = ___indexInChunk1;
int32_t* L_16 = ___indexInChunk1;
int32_t L_17 = *((int32_t*)L_16);
int32_t L_18 = V_0;
*((int32_t*)L_15) = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)L_18));
int32_t* L_19 = ___indexInChunk1;
int32_t L_20 = *((int32_t*)L_19);
StringBuilder_t ** L_21 = ___chunk0;
StringBuilder_t * L_22 = *((StringBuilder_t **)L_21);
NullCheck(L_22);
int32_t L_23 = L_22->get_m_ChunkLength_2();
if ((((int32_t)L_20) < ((int32_t)L_23)))
{
goto IL_0044;
}
}
{
StringBuilder_t ** L_24 = ___chunk0;
StringBuilder_t ** L_25 = ___chunk0;
StringBuilder_t * L_26 = *((StringBuilder_t **)L_25);
StringBuilder_t * L_27 = StringBuilder_Next_mF117555541979DEC3146FD3A059F66EBE60B775C(__this, L_26, /*hidden argument*/NULL);
*((RuntimeObject **)L_24) = (RuntimeObject *)L_27;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_24, (void*)(RuntimeObject *)L_27);
int32_t* L_28 = ___indexInChunk1;
*((int32_t*)L_28) = (int32_t)0;
}
IL_0044:
{
int32_t L_29 = ___count3;
int32_t L_30 = V_0;
___count3 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_29, (int32_t)L_30));
int32_t L_31 = ___count3;
if (!L_31)
{
goto IL_0058;
}
}
{
Il2CppChar* L_32 = ___value2;
int32_t L_33 = V_0;
___value2 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_32, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_33)), (int32_t)2))));
goto IL_0004;
}
IL_0058:
{
return;
}
}
// System.Void System.Text.StringBuilder::ThreadSafeCopy(System.Char*,System.Char[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder_ThreadSafeCopy_mF35929E10961A91520C9DE919B013977B2DFCF84 (Il2CppChar* ___sourcePtr0, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___destination1, int32_t ___destinationIndex2, int32_t ___count3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StringBuilder_ThreadSafeCopy_mF35929E10961A91520C9DE919B013977B2DFCF84_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Il2CppChar* V_0 = NULL;
{
int32_t L_0 = ___count3;
if ((((int32_t)L_0) <= ((int32_t)0)))
{
goto IL_003c;
}
}
{
int32_t L_1 = ___destinationIndex2;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_2 = ___destination1;
NullCheck(L_2);
if ((!(((uint32_t)L_1) <= ((uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length))))))))
{
goto IL_0027;
}
}
{
int32_t L_3 = ___destinationIndex2;
int32_t L_4 = ___count3;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_5 = ___destination1;
NullCheck(L_5);
if ((((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)L_4))) > ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_5)->max_length)))))))
{
goto IL_0027;
}
}
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_6 = ___destination1;
int32_t L_7 = ___destinationIndex2;
NullCheck(L_6);
V_0 = (Il2CppChar*)((L_6)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_7)));
Il2CppChar* L_8 = V_0;
Il2CppChar* L_9 = ___sourcePtr0;
int32_t L_10 = ___count3;
String_wstrcpy_mB7E74A0E59AA0E5901F2A7C9012A11E03FFBA497((Il2CppChar*)(Il2CppChar*)(((uintptr_t)L_8)), (Il2CppChar*)(Il2CppChar*)L_9, L_10, /*hidden argument*/NULL);
V_0 = (Il2CppChar*)(((uintptr_t)0));
return;
}
IL_0027:
{
String_t* L_11 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_12 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_12, _stringLiteralCA96269491D1B54BAE78372F8D395C9208E1C361, L_11, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, StringBuilder_ThreadSafeCopy_mF35929E10961A91520C9DE919B013977B2DFCF84_RuntimeMethod_var);
}
IL_003c:
{
return;
}
}
// System.Void System.Text.StringBuilder::ThreadSafeCopy(System.Char[],System.Int32,System.Char[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder_ThreadSafeCopy_mCCD244D9AD13306F3D3866A3B9415A5249EB8E5D (CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___source0, int32_t ___sourceIndex1, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___destination2, int32_t ___destinationIndex3, int32_t ___count4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StringBuilder_ThreadSafeCopy_mCCD244D9AD13306F3D3866A3B9415A5249EB8E5D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Il2CppChar* V_0 = NULL;
{
int32_t L_0 = ___count4;
if ((((int32_t)L_0) <= ((int32_t)0)))
{
goto IL_0040;
}
}
{
int32_t L_1 = ___sourceIndex1;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_2 = ___source0;
NullCheck(L_2);
if ((!(((uint32_t)L_1) <= ((uint32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length))))))))
{
goto IL_002b;
}
}
{
int32_t L_3 = ___sourceIndex1;
int32_t L_4 = ___count4;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_5 = ___source0;
NullCheck(L_5);
if ((((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)L_4))) > ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_5)->max_length)))))))
{
goto IL_002b;
}
}
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_6 = ___source0;
int32_t L_7 = ___sourceIndex1;
NullCheck(L_6);
V_0 = (Il2CppChar*)((L_6)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_7)));
Il2CppChar* L_8 = V_0;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_9 = ___destination2;
int32_t L_10 = ___destinationIndex3;
int32_t L_11 = ___count4;
StringBuilder_ThreadSafeCopy_mF35929E10961A91520C9DE919B013977B2DFCF84((Il2CppChar*)(Il2CppChar*)(((uintptr_t)L_8)), L_9, L_10, L_11, /*hidden argument*/NULL);
V_0 = (Il2CppChar*)(((uintptr_t)0));
return;
}
IL_002b:
{
String_t* L_12 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_13 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_13, _stringLiteralCAEEAB05C2A175307D7167265BB744072B8D72BE, L_12, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, StringBuilder_ThreadSafeCopy_mCCD244D9AD13306F3D3866A3B9415A5249EB8E5D_RuntimeMethod_var);
}
IL_0040:
{
return;
}
}
// System.Text.StringBuilder System.Text.StringBuilder::FindChunkForIndex(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_FindChunkForIndex_m9EF595B1D768F788C60CD68778A23DB54F260527 (StringBuilder_t * __this, int32_t ___index0, const RuntimeMethod* method)
{
StringBuilder_t * V_0 = NULL;
{
V_0 = __this;
goto IL_000b;
}
IL_0004:
{
StringBuilder_t * L_0 = V_0;
NullCheck(L_0);
StringBuilder_t * L_1 = L_0->get_m_ChunkPrevious_1();
V_0 = L_1;
}
IL_000b:
{
StringBuilder_t * L_2 = V_0;
NullCheck(L_2);
int32_t L_3 = L_2->get_m_ChunkOffset_3();
int32_t L_4 = ___index0;
if ((((int32_t)L_3) > ((int32_t)L_4)))
{
goto IL_0004;
}
}
{
StringBuilder_t * L_5 = V_0;
return L_5;
}
}
// System.Text.StringBuilder System.Text.StringBuilder::Next(System.Text.StringBuilder)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Next_mF117555541979DEC3146FD3A059F66EBE60B775C (StringBuilder_t * __this, StringBuilder_t * ___chunk0, const RuntimeMethod* method)
{
{
StringBuilder_t * L_0 = ___chunk0;
if ((!(((RuntimeObject*)(StringBuilder_t *)L_0) == ((RuntimeObject*)(StringBuilder_t *)__this))))
{
goto IL_0006;
}
}
{
return (StringBuilder_t *)NULL;
}
IL_0006:
{
StringBuilder_t * L_1 = ___chunk0;
NullCheck(L_1);
int32_t L_2 = L_1->get_m_ChunkOffset_3();
StringBuilder_t * L_3 = ___chunk0;
NullCheck(L_3);
int32_t L_4 = L_3->get_m_ChunkLength_2();
StringBuilder_t * L_5 = StringBuilder_FindChunkForIndex_m9EF595B1D768F788C60CD68778A23DB54F260527(__this, ((int32_t)il2cpp_codegen_add((int32_t)L_2, (int32_t)L_4)), /*hidden argument*/NULL);
return L_5;
}
}
// System.Void System.Text.StringBuilder::ExpandByABlock(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder_ExpandByABlock_m855E07A0ECE12C6C4151B72BD80DE5311CE9B42C (StringBuilder_t * __this, int32_t ___minBlockCharCount0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StringBuilder_ExpandByABlock_m855E07A0ECE12C6C4151B72BD80DE5311CE9B42C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
int32_t L_0 = ___minBlockCharCount0;
int32_t L_1 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(__this, /*hidden argument*/NULL);
int32_t L_2 = ___minBlockCharCount0;
if ((((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)L_1))) < ((int32_t)L_2)))
{
goto IL_001b;
}
}
{
int32_t L_3 = ___minBlockCharCount0;
int32_t L_4 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(__this, /*hidden argument*/NULL);
int32_t L_5 = __this->get_m_MaxCapacity_4();
if ((((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)L_4))) <= ((int32_t)L_5)))
{
goto IL_0030;
}
}
IL_001b:
{
String_t* L_6 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralFB89F8D393DA096100BFDC1D5649D094EFF15377, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_7 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_7, _stringLiteral775325E8E3D43CA0A75ECC4B8F141DBA50659A93, L_6, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, StringBuilder_ExpandByABlock_m855E07A0ECE12C6C4151B72BD80DE5311CE9B42C_RuntimeMethod_var);
}
IL_0030:
{
int32_t L_8 = ___minBlockCharCount0;
int32_t L_9 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(__this, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Math_tFB388E53C7FDC6FCCF9A19ABF5A4E521FBD52E19_il2cpp_TypeInfo_var);
int32_t L_10 = Math_Min_mC950438198519FB2B0260FCB91220847EE4BB525(L_9, ((int32_t)8000), /*hidden argument*/NULL);
int32_t L_11 = Math_Max_mA99E48BB021F2E4B62D4EA9F52EA6928EED618A2(L_8, L_10, /*hidden argument*/NULL);
V_0 = L_11;
StringBuilder_t * L_12 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
StringBuilder__ctor_m319171AD1301C27AA7220D28F2BA96B4A8981F35(L_12, __this, /*hidden argument*/NULL);
__this->set_m_ChunkPrevious_1(L_12);
int32_t L_13 = __this->get_m_ChunkOffset_3();
int32_t L_14 = __this->get_m_ChunkLength_2();
__this->set_m_ChunkOffset_3(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)L_14)));
__this->set_m_ChunkLength_2(0);
int32_t L_15 = __this->get_m_ChunkOffset_3();
int32_t L_16 = V_0;
int32_t L_17 = V_0;
if ((((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)L_16))) >= ((int32_t)L_17)))
{
goto IL_0085;
}
}
{
__this->set_m_ChunkChars_0((CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)NULL);
OutOfMemoryException_t2DF3EAC178583BD1DEFAAECBEDB2AF1EA86FBFC7 * L_18 = (OutOfMemoryException_t2DF3EAC178583BD1DEFAAECBEDB2AF1EA86FBFC7 *)il2cpp_codegen_object_new(OutOfMemoryException_t2DF3EAC178583BD1DEFAAECBEDB2AF1EA86FBFC7_il2cpp_TypeInfo_var);
OutOfMemoryException__ctor_m4ED0B5B3F91BAF66BDF69E09EF6DC74777FE8DEB(L_18, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_18, StringBuilder_ExpandByABlock_m855E07A0ECE12C6C4151B72BD80DE5311CE9B42C_RuntimeMethod_var);
}
IL_0085:
{
int32_t L_19 = V_0;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_20 = (CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)SZArrayNew(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2_il2cpp_TypeInfo_var, (uint32_t)L_19);
__this->set_m_ChunkChars_0(L_20);
return;
}
}
// System.Void System.Text.StringBuilder::.ctor(System.Text.StringBuilder)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder__ctor_m319171AD1301C27AA7220D28F2BA96B4A8981F35 (StringBuilder_t * __this, StringBuilder_t * ___from0, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
StringBuilder_t * L_0 = ___from0;
NullCheck(L_0);
int32_t L_1 = L_0->get_m_ChunkLength_2();
__this->set_m_ChunkLength_2(L_1);
StringBuilder_t * L_2 = ___from0;
NullCheck(L_2);
int32_t L_3 = L_2->get_m_ChunkOffset_3();
__this->set_m_ChunkOffset_3(L_3);
StringBuilder_t * L_4 = ___from0;
NullCheck(L_4);
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_5 = L_4->get_m_ChunkChars_0();
__this->set_m_ChunkChars_0(L_5);
StringBuilder_t * L_6 = ___from0;
NullCheck(L_6);
StringBuilder_t * L_7 = L_6->get_m_ChunkPrevious_1();
__this->set_m_ChunkPrevious_1(L_7);
StringBuilder_t * L_8 = ___from0;
NullCheck(L_8);
int32_t L_9 = L_8->get_m_MaxCapacity_4();
__this->set_m_MaxCapacity_4(L_9);
return;
}
}
// System.Void System.Text.StringBuilder::MakeRoom(System.Int32,System.Int32,System.Text.StringBuilder&,System.Int32&,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder_MakeRoom_mC8A37E0A3FCACABC5B1BF99BCEF32C086F03B9FF (StringBuilder_t * __this, int32_t ___index0, int32_t ___count1, StringBuilder_t ** ___chunk2, int32_t* ___indexInChunk3, bool ___doneMoveFollowingChars4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StringBuilder_MakeRoom_mC8A37E0A3FCACABC5B1BF99BCEF32C086F03B9FF_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
StringBuilder_t * V_0 = NULL;
int32_t V_1 = 0;
int32_t V_2 = 0;
Il2CppChar* V_3 = NULL;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* V_4 = NULL;
int32_t V_5 = 0;
{
int32_t L_0 = ___count1;
int32_t L_1 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(__this, /*hidden argument*/NULL);
int32_t L_2 = ___count1;
if ((((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)L_1))) < ((int32_t)L_2)))
{
goto IL_001b;
}
}
{
int32_t L_3 = ___count1;
int32_t L_4 = StringBuilder_get_Length_m44BCD2BF32D45E9376761FF33AA429BFBD902F07(__this, /*hidden argument*/NULL);
int32_t L_5 = __this->get_m_MaxCapacity_4();
if ((((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)L_4))) <= ((int32_t)L_5)))
{
goto IL_0030;
}
}
IL_001b:
{
String_t* L_6 = Environment_GetResourceString_m2C75C2AF268F01E2BF34AD1C2E1352CF4BA51AD9(_stringLiteralFB89F8D393DA096100BFDC1D5649D094EFF15377, /*hidden argument*/NULL);
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_7 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_7, _stringLiteral775325E8E3D43CA0A75ECC4B8F141DBA50659A93, L_6, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, StringBuilder_MakeRoom_mC8A37E0A3FCACABC5B1BF99BCEF32C086F03B9FF_RuntimeMethod_var);
}
IL_0030:
{
StringBuilder_t ** L_8 = ___chunk2;
*((RuntimeObject **)L_8) = (RuntimeObject *)__this;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_8, (void*)(RuntimeObject *)__this);
goto IL_004d;
}
IL_0035:
{
StringBuilder_t ** L_9 = ___chunk2;
StringBuilder_t * L_10 = *((StringBuilder_t **)L_9);
StringBuilder_t * L_11 = L_10;
NullCheck(L_11);
int32_t L_12 = L_11->get_m_ChunkOffset_3();
int32_t L_13 = ___count1;
NullCheck(L_11);
L_11->set_m_ChunkOffset_3(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)L_13)));
StringBuilder_t ** L_14 = ___chunk2;
StringBuilder_t ** L_15 = ___chunk2;
StringBuilder_t * L_16 = *((StringBuilder_t **)L_15);
NullCheck(L_16);
StringBuilder_t * L_17 = L_16->get_m_ChunkPrevious_1();
*((RuntimeObject **)L_14) = (RuntimeObject *)L_17;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_14, (void*)(RuntimeObject *)L_17);
}
IL_004d:
{
StringBuilder_t ** L_18 = ___chunk2;
StringBuilder_t * L_19 = *((StringBuilder_t **)L_18);
NullCheck(L_19);
int32_t L_20 = L_19->get_m_ChunkOffset_3();
int32_t L_21 = ___index0;
if ((((int32_t)L_20) > ((int32_t)L_21)))
{
goto IL_0035;
}
}
{
int32_t* L_22 = ___indexInChunk3;
int32_t L_23 = ___index0;
StringBuilder_t ** L_24 = ___chunk2;
StringBuilder_t * L_25 = *((StringBuilder_t **)L_24);
NullCheck(L_25);
int32_t L_26 = L_25->get_m_ChunkOffset_3();
*((int32_t*)L_22) = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_23, (int32_t)L_26));
bool L_27 = ___doneMoveFollowingChars4;
if (L_27)
{
goto IL_00be;
}
}
{
StringBuilder_t ** L_28 = ___chunk2;
StringBuilder_t * L_29 = *((StringBuilder_t **)L_28);
NullCheck(L_29);
int32_t L_30 = L_29->get_m_ChunkLength_2();
if ((((int32_t)L_30) > ((int32_t)((int32_t)32))))
{
goto IL_00be;
}
}
{
StringBuilder_t ** L_31 = ___chunk2;
StringBuilder_t * L_32 = *((StringBuilder_t **)L_31);
NullCheck(L_32);
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_33 = L_32->get_m_ChunkChars_0();
NullCheck(L_33);
StringBuilder_t ** L_34 = ___chunk2;
StringBuilder_t * L_35 = *((StringBuilder_t **)L_34);
NullCheck(L_35);
int32_t L_36 = L_35->get_m_ChunkLength_2();
int32_t L_37 = ___count1;
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_33)->max_length)))), (int32_t)L_36))) < ((int32_t)L_37)))
{
goto IL_00be;
}
}
{
StringBuilder_t ** L_38 = ___chunk2;
StringBuilder_t * L_39 = *((StringBuilder_t **)L_38);
NullCheck(L_39);
int32_t L_40 = L_39->get_m_ChunkLength_2();
V_2 = L_40;
goto IL_00a8;
}
IL_0090:
{
int32_t L_41 = V_2;
V_2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_41, (int32_t)1));
StringBuilder_t ** L_42 = ___chunk2;
StringBuilder_t * L_43 = *((StringBuilder_t **)L_42);
NullCheck(L_43);
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_44 = L_43->get_m_ChunkChars_0();
int32_t L_45 = V_2;
int32_t L_46 = ___count1;
StringBuilder_t ** L_47 = ___chunk2;
StringBuilder_t * L_48 = *((StringBuilder_t **)L_47);
NullCheck(L_48);
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_49 = L_48->get_m_ChunkChars_0();
int32_t L_50 = V_2;
NullCheck(L_49);
int32_t L_51 = L_50;
uint16_t L_52 = (uint16_t)(L_49)->GetAt(static_cast<il2cpp_array_size_t>(L_51));
NullCheck(L_44);
(L_44)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_add((int32_t)L_45, (int32_t)L_46))), (Il2CppChar)L_52);
}
IL_00a8:
{
int32_t L_53 = V_2;
int32_t* L_54 = ___indexInChunk3;
int32_t L_55 = *((int32_t*)L_54);
if ((((int32_t)L_53) > ((int32_t)L_55)))
{
goto IL_0090;
}
}
{
StringBuilder_t ** L_56 = ___chunk2;
StringBuilder_t * L_57 = *((StringBuilder_t **)L_56);
StringBuilder_t * L_58 = L_57;
NullCheck(L_58);
int32_t L_59 = L_58->get_m_ChunkLength_2();
int32_t L_60 = ___count1;
NullCheck(L_58);
L_58->set_m_ChunkLength_2(((int32_t)il2cpp_codegen_add((int32_t)L_59, (int32_t)L_60)));
return;
}
IL_00be:
{
int32_t L_61 = ___count1;
IL2CPP_RUNTIME_CLASS_INIT(Math_tFB388E53C7FDC6FCCF9A19ABF5A4E521FBD52E19_il2cpp_TypeInfo_var);
int32_t L_62 = Math_Max_mA99E48BB021F2E4B62D4EA9F52EA6928EED618A2(L_61, ((int32_t)16), /*hidden argument*/NULL);
StringBuilder_t ** L_63 = ___chunk2;
StringBuilder_t * L_64 = *((StringBuilder_t **)L_63);
NullCheck(L_64);
int32_t L_65 = L_64->get_m_MaxCapacity_4();
StringBuilder_t ** L_66 = ___chunk2;
StringBuilder_t * L_67 = *((StringBuilder_t **)L_66);
NullCheck(L_67);
StringBuilder_t * L_68 = L_67->get_m_ChunkPrevious_1();
StringBuilder_t * L_69 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
StringBuilder__ctor_mAC298BE4C79DFA111AA5AA4063F79F47744959FD(L_69, L_62, L_65, L_68, /*hidden argument*/NULL);
V_0 = L_69;
StringBuilder_t * L_70 = V_0;
int32_t L_71 = ___count1;
NullCheck(L_70);
L_70->set_m_ChunkLength_2(L_71);
int32_t L_72 = ___count1;
int32_t* L_73 = ___indexInChunk3;
int32_t L_74 = *((int32_t*)L_73);
int32_t L_75 = Math_Min_mC950438198519FB2B0260FCB91220847EE4BB525(L_72, L_74, /*hidden argument*/NULL);
V_1 = L_75;
int32_t L_76 = V_1;
if ((((int32_t)L_76) <= ((int32_t)0)))
{
goto IL_0147;
}
}
{
StringBuilder_t ** L_77 = ___chunk2;
StringBuilder_t * L_78 = *((StringBuilder_t **)L_77);
NullCheck(L_78);
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_79 = L_78->get_m_ChunkChars_0();
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_80 = L_79;
V_4 = L_80;
if (!L_80)
{
goto IL_0101;
}
}
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_81 = V_4;
NullCheck(L_81);
if ((((int32_t)((int32_t)(((RuntimeArray*)L_81)->max_length)))))
{
goto IL_0106;
}
}
IL_0101:
{
V_3 = (Il2CppChar*)(((uintptr_t)0));
goto IL_0110;
}
IL_0106:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_82 = V_4;
NullCheck(L_82);
V_3 = (Il2CppChar*)(((uintptr_t)((L_82)->GetAddressAt(static_cast<il2cpp_array_size_t>(0)))));
}
IL_0110:
{
Il2CppChar* L_83 = V_3;
StringBuilder_t * L_84 = V_0;
NullCheck(L_84);
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_85 = L_84->get_m_ChunkChars_0();
int32_t L_86 = V_1;
StringBuilder_ThreadSafeCopy_mF35929E10961A91520C9DE919B013977B2DFCF84((Il2CppChar*)(Il2CppChar*)L_83, L_85, 0, L_86, /*hidden argument*/NULL);
int32_t* L_87 = ___indexInChunk3;
int32_t L_88 = *((int32_t*)L_87);
int32_t L_89 = V_1;
V_5 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_88, (int32_t)L_89));
int32_t L_90 = V_5;
if ((((int32_t)L_90) < ((int32_t)0)))
{
goto IL_0144;
}
}
{
Il2CppChar* L_91 = V_3;
int32_t L_92 = V_1;
StringBuilder_t ** L_93 = ___chunk2;
StringBuilder_t * L_94 = *((StringBuilder_t **)L_93);
NullCheck(L_94);
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_95 = L_94->get_m_ChunkChars_0();
int32_t L_96 = V_5;
StringBuilder_ThreadSafeCopy_mF35929E10961A91520C9DE919B013977B2DFCF84((Il2CppChar*)(Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_91, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_92)), (int32_t)2)))), L_95, 0, L_96, /*hidden argument*/NULL);
int32_t* L_97 = ___indexInChunk3;
int32_t L_98 = V_5;
*((int32_t*)L_97) = (int32_t)L_98;
}
IL_0144:
{
V_4 = (CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)NULL;
}
IL_0147:
{
StringBuilder_t ** L_99 = ___chunk2;
StringBuilder_t * L_100 = *((StringBuilder_t **)L_99);
StringBuilder_t * L_101 = V_0;
NullCheck(L_100);
L_100->set_m_ChunkPrevious_1(L_101);
StringBuilder_t ** L_102 = ___chunk2;
StringBuilder_t * L_103 = *((StringBuilder_t **)L_102);
StringBuilder_t * L_104 = L_103;
NullCheck(L_104);
int32_t L_105 = L_104->get_m_ChunkOffset_3();
int32_t L_106 = ___count1;
NullCheck(L_104);
L_104->set_m_ChunkOffset_3(((int32_t)il2cpp_codegen_add((int32_t)L_105, (int32_t)L_106)));
int32_t L_107 = V_1;
int32_t L_108 = ___count1;
if ((((int32_t)L_107) >= ((int32_t)L_108)))
{
goto IL_0169;
}
}
{
StringBuilder_t ** L_109 = ___chunk2;
StringBuilder_t * L_110 = V_0;
*((RuntimeObject **)L_109) = (RuntimeObject *)L_110;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_109, (void*)(RuntimeObject *)L_110);
int32_t* L_111 = ___indexInChunk3;
int32_t L_112 = V_1;
*((int32_t*)L_111) = (int32_t)L_112;
}
IL_0169:
{
return;
}
}
// System.Void System.Text.StringBuilder::.ctor(System.Int32,System.Int32,System.Text.StringBuilder)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder__ctor_mAC298BE4C79DFA111AA5AA4063F79F47744959FD (StringBuilder_t * __this, int32_t ___size0, int32_t ___maxCapacity1, StringBuilder_t * ___previousBlock2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StringBuilder__ctor_mAC298BE4C79DFA111AA5AA4063F79F47744959FD_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
int32_t L_0 = ___size0;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_1 = (CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)SZArrayNew(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2_il2cpp_TypeInfo_var, (uint32_t)L_0);
__this->set_m_ChunkChars_0(L_1);
int32_t L_2 = ___maxCapacity1;
__this->set_m_MaxCapacity_4(L_2);
StringBuilder_t * L_3 = ___previousBlock2;
__this->set_m_ChunkPrevious_1(L_3);
StringBuilder_t * L_4 = ___previousBlock2;
if (!L_4)
{
goto IL_0036;
}
}
{
StringBuilder_t * L_5 = ___previousBlock2;
NullCheck(L_5);
int32_t L_6 = L_5->get_m_ChunkOffset_3();
StringBuilder_t * L_7 = ___previousBlock2;
NullCheck(L_7);
int32_t L_8 = L_7->get_m_ChunkLength_2();
__this->set_m_ChunkOffset_3(((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)L_8)));
}
IL_0036:
{
return;
}
}
// System.Void System.Text.StringBuilder::Remove(System.Int32,System.Int32,System.Text.StringBuilder&,System.Int32&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder_Remove_m570DD9A086B94D894FCD1EB011BCB2166A57B4D6 (StringBuilder_t * __this, int32_t ___startIndex0, int32_t ___count1, StringBuilder_t ** ___chunk2, int32_t* ___indexInChunk3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
StringBuilder_t * V_1 = NULL;
int32_t V_2 = 0;
int32_t V_3 = 0;
int32_t V_4 = 0;
{
int32_t L_0 = ___startIndex0;
int32_t L_1 = ___count1;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)L_1));
StringBuilder_t ** L_2 = ___chunk2;
*((RuntimeObject **)L_2) = (RuntimeObject *)__this;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_2, (void*)(RuntimeObject *)__this);
V_1 = (StringBuilder_t *)NULL;
V_2 = 0;
}
IL_000b:
{
int32_t L_3 = V_0;
StringBuilder_t ** L_4 = ___chunk2;
StringBuilder_t * L_5 = *((StringBuilder_t **)L_4);
NullCheck(L_5);
int32_t L_6 = L_5->get_m_ChunkOffset_3();
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_3, (int32_t)L_6))) < ((int32_t)0)))
{
goto IL_0040;
}
}
{
StringBuilder_t * L_7 = V_1;
if (L_7)
{
goto IL_0026;
}
}
{
StringBuilder_t ** L_8 = ___chunk2;
StringBuilder_t * L_9 = *((StringBuilder_t **)L_8);
V_1 = L_9;
int32_t L_10 = V_0;
StringBuilder_t * L_11 = V_1;
NullCheck(L_11);
int32_t L_12 = L_11->get_m_ChunkOffset_3();
V_2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_10, (int32_t)L_12));
}
IL_0026:
{
int32_t L_13 = ___startIndex0;
StringBuilder_t ** L_14 = ___chunk2;
StringBuilder_t * L_15 = *((StringBuilder_t **)L_14);
NullCheck(L_15);
int32_t L_16 = L_15->get_m_ChunkOffset_3();
if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_13, (int32_t)L_16))) < ((int32_t)0)))
{
goto IL_004f;
}
}
{
int32_t* L_17 = ___indexInChunk3;
int32_t L_18 = ___startIndex0;
StringBuilder_t ** L_19 = ___chunk2;
StringBuilder_t * L_20 = *((StringBuilder_t **)L_19);
NullCheck(L_20);
int32_t L_21 = L_20->get_m_ChunkOffset_3();
*((int32_t*)L_17) = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_18, (int32_t)L_21));
goto IL_005a;
}
IL_0040:
{
StringBuilder_t ** L_22 = ___chunk2;
StringBuilder_t * L_23 = *((StringBuilder_t **)L_22);
StringBuilder_t * L_24 = L_23;
NullCheck(L_24);
int32_t L_25 = L_24->get_m_ChunkOffset_3();
int32_t L_26 = ___count1;
NullCheck(L_24);
L_24->set_m_ChunkOffset_3(((int32_t)il2cpp_codegen_subtract((int32_t)L_25, (int32_t)L_26)));
}
IL_004f:
{
StringBuilder_t ** L_27 = ___chunk2;
StringBuilder_t ** L_28 = ___chunk2;
StringBuilder_t * L_29 = *((StringBuilder_t **)L_28);
NullCheck(L_29);
StringBuilder_t * L_30 = L_29->get_m_ChunkPrevious_1();
*((RuntimeObject **)L_27) = (RuntimeObject *)L_30;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_27, (void*)(RuntimeObject *)L_30);
goto IL_000b;
}
IL_005a:
{
int32_t* L_31 = ___indexInChunk3;
int32_t L_32 = *((int32_t*)L_31);
V_3 = L_32;
StringBuilder_t * L_33 = V_1;
NullCheck(L_33);
int32_t L_34 = L_33->get_m_ChunkLength_2();
int32_t L_35 = V_2;
V_4 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_34, (int32_t)L_35));
StringBuilder_t * L_36 = V_1;
StringBuilder_t ** L_37 = ___chunk2;
StringBuilder_t * L_38 = *((StringBuilder_t **)L_37);
if ((((RuntimeObject*)(StringBuilder_t *)L_36) == ((RuntimeObject*)(StringBuilder_t *)L_38)))
{
goto IL_00ab;
}
}
{
V_3 = 0;
StringBuilder_t ** L_39 = ___chunk2;
StringBuilder_t * L_40 = *((StringBuilder_t **)L_39);
int32_t* L_41 = ___indexInChunk3;
int32_t L_42 = *((int32_t*)L_41);
NullCheck(L_40);
L_40->set_m_ChunkLength_2(L_42);
StringBuilder_t * L_43 = V_1;
StringBuilder_t ** L_44 = ___chunk2;
StringBuilder_t * L_45 = *((StringBuilder_t **)L_44);
NullCheck(L_43);
L_43->set_m_ChunkPrevious_1(L_45);
StringBuilder_t * L_46 = V_1;
StringBuilder_t ** L_47 = ___chunk2;
StringBuilder_t * L_48 = *((StringBuilder_t **)L_47);
NullCheck(L_48);
int32_t L_49 = L_48->get_m_ChunkOffset_3();
StringBuilder_t ** L_50 = ___chunk2;
StringBuilder_t * L_51 = *((StringBuilder_t **)L_50);
NullCheck(L_51);
int32_t L_52 = L_51->get_m_ChunkLength_2();
NullCheck(L_46);
L_46->set_m_ChunkOffset_3(((int32_t)il2cpp_codegen_add((int32_t)L_49, (int32_t)L_52)));
int32_t* L_53 = ___indexInChunk3;
int32_t L_54 = *((int32_t*)L_53);
if (L_54)
{
goto IL_00ab;
}
}
{
StringBuilder_t * L_55 = V_1;
StringBuilder_t ** L_56 = ___chunk2;
StringBuilder_t * L_57 = *((StringBuilder_t **)L_56);
NullCheck(L_57);
StringBuilder_t * L_58 = L_57->get_m_ChunkPrevious_1();
NullCheck(L_55);
L_55->set_m_ChunkPrevious_1(L_58);
StringBuilder_t ** L_59 = ___chunk2;
StringBuilder_t * L_60 = V_1;
*((RuntimeObject **)L_59) = (RuntimeObject *)L_60;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_59, (void*)(RuntimeObject *)L_60);
}
IL_00ab:
{
StringBuilder_t * L_61 = V_1;
StringBuilder_t * L_62 = L_61;
NullCheck(L_62);
int32_t L_63 = L_62->get_m_ChunkLength_2();
int32_t L_64 = V_2;
int32_t L_65 = V_3;
NullCheck(L_62);
L_62->set_m_ChunkLength_2(((int32_t)il2cpp_codegen_subtract((int32_t)L_63, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_64, (int32_t)L_65)))));
int32_t L_66 = V_3;
int32_t L_67 = V_2;
if ((((int32_t)L_66) == ((int32_t)L_67)))
{
goto IL_00d4;
}
}
{
StringBuilder_t * L_68 = V_1;
NullCheck(L_68);
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_69 = L_68->get_m_ChunkChars_0();
int32_t L_70 = V_2;
StringBuilder_t * L_71 = V_1;
NullCheck(L_71);
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_72 = L_71->get_m_ChunkChars_0();
int32_t L_73 = V_3;
int32_t L_74 = V_4;
StringBuilder_ThreadSafeCopy_mCCD244D9AD13306F3D3866A3B9415A5249EB8E5D(L_69, L_70, L_72, L_73, L_74, /*hidden argument*/NULL);
}
IL_00d4:
{
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * Console_get_OutputEncoding_mA23798B6CE69F59EAA00C8206EF8552196120647_inline (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Console_get_OutputEncoding_mA23798B6CE69F59EAA00C8206EF8552196120647mscorlib12_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Console_t5C8E87BA271B0DECA837A3BF9093AC3560DB3D5D_il2cpp_TypeInfo_var);
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_0 = ((Console_t5C8E87BA271B0DECA837A3BF9093AC3560DB3D5D_StaticFields*)il2cpp_codegen_static_fields_for(Console_t5C8E87BA271B0DECA837A3BF9093AC3560DB3D5D_il2cpp_TypeInfo_var))->get_outputEncoding_4();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * Console_get_InputEncoding_m60EAA2E167A0C8C681997B998E851D8CD6C954FE_inline (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Console_get_InputEncoding_m60EAA2E167A0C8C681997B998E851D8CD6C954FEmscorlib12_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Console_t5C8E87BA271B0DECA837A3BF9093AC3560DB3D5D_il2cpp_TypeInfo_var);
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_0 = ((Console_t5C8E87BA271B0DECA837A3BF9093AC3560DB3D5D_StaticFields*)il2cpp_codegen_static_fields_for(Console_t5C8E87BA271B0DECA837A3BF9093AC3560DB3D5D_il2cpp_TypeInfo_var))->get_inputEncoding_3();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t ConsoleKeyInfo_get_Key_m36CD740D4C51FB4F4277AC7E6CD24D79DF5C8AC5_inline (ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get__key_1();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Il2CppChar ConsoleKeyInfo_get_KeyChar_m6B17C3F0DF650E04D7C0C081E063AE31E8C14509_inline (ConsoleKeyInfo_t5BE3CE05E8258CDB5404256E96AF7C22BC5DE768 * __this, const RuntimeMethod* method)
{
{
Il2CppChar L_0 = __this->get__keyChar_0();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018_inline (String_t* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_m_stringLength_0();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * Encoder_get_Fallback_m8DB0FF2836429351EC5645B2B007982CE458632A_inline (Encoder_t29B2697B0B775EABC52EBFB914F327BE9B1A3464 * __this, const RuntimeMethod* method)
{
{
EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * L_0 = __this->get_m_fallback_0();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * Encoding_get_EncoderFallback_m56A241904105944473545473FA20E07BF52B1885_inline (Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * __this, const RuntimeMethod* method)
{
{
EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * L_0 = __this->get_encoderFallback_13();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* EncoderReplacementFallback_get_DefaultString_m309F22B8DC7DFCFA07DB9B21498454B935B2BBB0_inline (EncoderReplacementFallback_tC2E8A94C82BBF7A4CFC8E3FDBA8A381DCF29F998 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_strDefault_4();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * Encoding_get_DecoderFallback_m237581892E1C081234AFD800FCBC321C911EB657_inline (Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * __this, const RuntimeMethod* method)
{
{
DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * L_0 = __this->get_decoderFallback_14();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * Decoder_get_Fallback_m9F1A02991ED3FD31BEAC0499EC7978CE386D03AE_inline (Decoder_tEEF45EB6F965222036C49E8EC6BA8A0692AA1F26 * __this, const RuntimeMethod* method)
{
{
DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * L_0 = __this->get_m_fallback_0();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR String_t* DecoderReplacementFallback_get_DefaultString_m7ED43521155BA25273CD47953D2AB0E0033066D3_inline (DecoderReplacementFallback_t8CF74B2DAE2A08AEA7DF6366778D2E3EA75FC742 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_strDefault_4();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool EncoderNLS_get_MustFlush_mBA7B13F498D63B50EFFA562AC02EC73A2E8597DF_inline (EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_m_mustFlush_4();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR bool Encoding_get_IsReadOnly_m1118DBF20E11C000BC29C326A2D202122DE37544_inline (Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_m_isReadOnly_12();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * EncoderNLS_get_Encoding_mCDF2F7C580FCF269BE40BC9BBA55CCD5A8F4C715_inline (EncoderNLS_t47EFB0F5A59F41C429930063F966A68F8D394DF8 * __this, const RuntimeMethod* method)
{
{
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_0 = __this->get_m_encoding_3();
return L_0;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR void Encoding_setReadOnly_mEB95513471A530FFD4F84AB63E4F794B5DCF174C_inline (Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->set_m_isReadOnly_12(L_0);
return;
}
}
IL2CPP_EXTERN_C inline IL2CPP_METHOD_ATTR int32_t StringBuilder_get_MaxCapacity_m1367C928745408E67DFF57F501177B4CA978F365_inline (StringBuilder_t * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_m_MaxCapacity_4();
return L_0;
}
}
| [
"yukawallstudio@gmail.com"
] | yukawallstudio@gmail.com |
95b846fbb7c58a007708edb86e7818586d43a6ea | b5a9d42f7ea5e26cd82b3be2b26c324d5da79ba1 | /tensorflow/lite/delegates/gpu/gl/kernels/lstm.cc | 79362e8aad3975e325c2941f06175c6217b17995 | [
"Apache-2.0"
] | permissive | uve/tensorflow | e48cb29f39ed24ee27e81afd1687960682e1fbef | e08079463bf43e5963acc41da1f57e95603f8080 | refs/heads/master | 2020-11-29T11:30:40.391232 | 2020-01-11T13:43:10 | 2020-01-11T13:43:10 | 230,088,347 | 0 | 0 | Apache-2.0 | 2019-12-25T10:49:15 | 2019-12-25T10:49:14 | null | UTF-8 | C++ | false | false | 3,174 | cc | /* Copyright 2019 The TensorFlow Authors. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
==============================================================================*/
#include "tensorflow/lite/delegates/gpu/gl/kernels/lstm.h"
#include <memory>
#include <string>
#include "absl/memory/memory.h"
#include "tensorflow/lite/delegates/gpu/common/status.h"
#include "tensorflow/lite/delegates/gpu/common/types.h"
#include "tensorflow/lite/delegates/gpu/gl/node_shader.h"
namespace tflite {
namespace gpu {
namespace gl {
namespace {
// Basic LSTMCell gates.
//
// inputs: 0 1
// activ_temp prev_state
// \ /
// [[LSTM gates]]
// / \
// new_state activation
// outputs: 0 1
//
// The size of activ_temp should be 4x size of new_state.
// The size of prev_state == new_state == activation.
//
class LstmNodeShader : public NodeShader {
public:
Status GenerateCode(const GenerationContext& ctx,
GeneratedCode* generated_code) const final {
std::string code = R"(
vec4 prev_state = $input_data_1[gid.x, gid.y, gid.z]$;
int c0 = 0 * $workload_z$;
int c1 = 1 * $workload_z$;
int c2 = 2 * $workload_z$;
int c3 = 3 * $workload_z$;
// input, new, forget, output
vec4 gate_0 = $input_data_0[gid.x, gid.y, gid.z + c0]$;
vec4 gate_1 = $input_data_0[gid.x, gid.y, gid.z + c1]$;
vec4 gate_2 = $input_data_0[gid.x, gid.y, gid.z + c2]$;
vec4 gate_3 = $input_data_0[gid.x, gid.y, gid.z + c3]$;
vec4 input_gate = 1.0f / (1.0f + exp(-1.0 * gate_0)); // sig(x)
vec4 new_input = tanh(gate_1); // tanh(x)
vec4 forget_gate = 1.0f / (1.0f + exp(-1.0 * gate_2)); // sig(x)
vec4 output_gate = 1.0f / (1.0f + exp(-1.0 * gate_3)); // sig(x)
vec4 new_state = input_gate * new_input + forget_gate * prev_state;
vec4 activation = output_gate * tanh(new_state);
value_0 = new_state;
value_1 = activation;
)";
*generated_code = {
/*parameters=*/{},
/*objects=*/{},
/*shared_variables=*/{},
/*workload=*/uint3(),
/*workgroup=*/uint3(),
/*source_code=*/std::move(code),
/*input=*/IOStructure::ONLY_DEFINITIONS,
/*output=*/IOStructure::AUTO,
};
return OkStatus();
}
};
} // namespace
std::unique_ptr<NodeShader> NewLstmNodeShader() {
return absl::make_unique<LstmNodeShader>();
}
} // namespace gl
} // namespace gpu
} // namespace tflite
| [
"v-grniki@microsoft.com"
] | v-grniki@microsoft.com |
d9b0e98610454fc75230476416263fdf240bc903 | 282f567373766261ef56e3b8824b58e107584f94 | /OJ/Jzxx/jsxxoi/2002/2002D.cpp | 98131b612a7d46e188b18d67e969cbf0a5e5b030 | [] | no_license | yhzhm/Practice | 27aff56652122d64d7879f15aa41e2550240bb06 | 9114447ed3346614a7c633f51917069da6aa17f7 | refs/heads/master | 2022-10-19T01:15:10.517149 | 2022-09-29T09:04:38 | 2022-09-29T09:04:38 | 121,328,943 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,826 | cpp | /*1275: 【基础】圆环上求素数III
时间限制 : 1 Sec内存限制 : 16 Mb提交 : 230解决 : 98
题目描述
将 1,2,…… n 个数(n <= 7)按顺时针方向排成一圈,然后从任意位置开始按顺时针方向连续取 k个数字组成一个k位数。(k< n) 例如:n=3 k=2 按顺时针方向排成如下一圈:
此时,可组成:12,23,31。 其中素数有:23 ,31两个。 问题一:当给出n、k后,求出在n个k位数中有多少个素数? 问题二:将这n个数重新排列,找出能产生k位数中的素数最多的一种排列,并统计出可能产生的素数个数。 输入:n k 输出:X1 ‘问题一的解 X2 ‘问题二的解(仅需个数,不用输出排列)
输入
n k
输出
X1 X2
样例输入 [复制]
3 2
样例输出 [复制]
2
2
提示[+]
*** 提示已隐藏,点击上方 [+] 可显示 ***
来源
2002江苏省青少年信息学奥林匹克小学组竞赛复赛*/
//
// Created by Hz Yang on 2017/6/12.
//
#include <cstdio>
#include <iostream>
#include <algorithm>
using namespace std;
bool isp(int n) {
if (n < 2) return false;
for (int i = 2; i * i <= n; ++i) {
if (n % i == 0) return false;
}
return true;
}
int main() {
int n, k, a[10], cnt, first = 1, maxn = 0;
cin >> n >> k;
for (int i = 0; i < n; ++i) {
a[i] = i + 1;
}
do {
int s = 0;
cnt = 0;
for (int i = 0; i < n; ++i) {
for (int j = 0; j < k; ++j) {
s = s * 10 + a[(i + j) % n];
}
if (isp(s)) cnt++;
s = 0;
}
if (first) {
cout << cnt << endl;
first = 0;
} else maxn = max(cnt, maxn);
} while (next_permutation(a, a + n));
cout << maxn;
return 0;
}
| [
"yhzhm@qq.com"
] | yhzhm@qq.com |
0e9b111783ddf537e1798c26d71400fde5d5f2de | 0060767c484839f15350a51619e6da415f759f23 | /src/binarySearchTree/countRangeSum.cpp | 58efc7146b1d68f95961a9a9811bdada74a38874 | [] | no_license | algebra84/leetcode | 46929797a435d1c0b629fa9344ed1896d6d38b67 | 19ca007f89a252f64b92782006ac70add0e4d9fd | refs/heads/master | 2021-01-22T23:53:02.999627 | 2018-11-08T09:03:40 | 2018-11-08T09:03:40 | 85,675,752 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,085 | cpp | /* 327. Count of Range Sum
Given an integer array nums, return the number of range sums that lie in [lower, upper] inclusive.
Range sum S(i, j) is defined as the sum of the elements in nums between indices i and j (i ≤ j), inclusive.
Note:
A naive algorithm of O(n2) is trivial. You MUST do better than that.
Example:
Given nums = [-2, 5, -1], lower = -2, upper = 2,
Return 3.
The three ranges are : [0, 0], [2, 2], [0, 2] and their respective sums are: -2, -1, 2.
*/
#include<vector>
#include<set>
#include<iostream>
#include <iterator>
using namespace std;
int countRangeSum(vector<int>& nums, int lower, int upper){
multiset<long long> mymultiset;
long long sum = 0;
int res = 0;
mymultiset.insert(0);
for(int i = 0; i != nums.size(); i++){
sum += (long long)nums[i];
res += distance(mymultiset.lower_bound(sum - upper),
mymultiset.upper_bound(sum - lower));
mymultiset.insert(sum);
}
return res;
}
int main()
{
int a[] = {-2,5,-1};
vector<int> nums(a,a+3);
cout<<countRangeSum(nums,-2,2)<<endl;
}
| [
"crazylht@126.com"
] | crazylht@126.com |
b6e90ef91e48b23e355ccdd833ffc2ba49045aa6 | 29b998f2edb85f12ec958bba78165a855abdce00 | /extrans/Main.cpp | 7468b577a7975ae525042a156c41dff5fa2c08a3 | [] | no_license | marcussacana/SamplePlugin | 4a38f70aeeae536d00610fda413858c19c5c2874 | d94e312065f7298a970b58bfe73de48e52aef9ee | refs/heads/master | 2022-11-10T16:08:45.993513 | 2017-12-24T16:50:37 | 2017-12-24T16:50:37 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,411 | cpp | //---------------------------------------------------------------------------
#include <windows.h>
#include "tp_stub.h"
// tp_stub.h と tp_stub.cpp は必ずプロジェクトに追加する
#include "wave.h"
#include "mosaic.h"
#include "turn.h"
#include "rotatetrans.h"
#include "ripple.h"
//---------------------------------------------------------------------------
#pragma argsused
int WINAPI DllEntryPoint(HINSTANCE hinst, unsigned long reason, void* lpReserved)
{
// DLL エントリポイント
return 1;
}
//---------------------------------------------------------------------------
// V2Link は DLL がリンクされるときに実行される
extern "C" __declspec(dllexport) HRESULT _stdcall V2Link(iTVPFunctionExporter *exporter)
{
// スタブの初期化
TVPInitImportStub(exporter); // 必ずこれは記述
/*
TVPInitImpotStub を実行した後は吉里吉里内部の各関数や tTJSVariant 等の
基本的な型が使用可能になる。
*/
// トランジションハンドラプロバイダの登録
RegisterWaveTransHandlerProvider();
RegisterMosaicTransHandlerProvider();
RegisterTurnTransHandlerProvider();
RegisterRotateTransHandlerProvider();
RegisterRippleTransHandlerProvider();
return S_OK;
}
//---------------------------------------------------------------------------
// V2Unlink は DLL がアンリンクされるときに実行される
extern "C" __declspec(dllexport) HRESULT _stdcall V2Unlink()
{
// トランジションハンドラプロバイダの登録削除
UnregisterWaveTransHandlerProvider();
UnregisterMosaicTransHandlerProvider();
UnregisterTurnTransHandlerProvider();
UnregisterRotateTransHandlerProvider();
UnregisterRippleTransHandlerProvider();
// スタブの使用終了
TVPUninitImportStub(); // 必ずこれは記述
/*
TVPUninitImpotStub は TVPInitImportStub で確保したメモリを解放する
ので必ず記述する。
*/
return S_OK;
}
//---------------------------------------------------------------------------
/*
V2Link と V2Unlink は DLL からエクスポートされている必要がある。
従って、.def ファイルを作成し
EXPORTS
V2Link
V2Unlink
と記述してプロジェクトに追加する必要がある。
*/
//---------------------------------------------------------------------------
| [
"info@kaede-software.com"
] | info@kaede-software.com |
61914e6697ed8c71ff1ea2d1be1867af0ec6a939 | 07cda1295da0370c630697701df0fc5e3e45ca28 | /content/browser/tracing/file_tracing_provider_impl.cc | 21fcf07b5d908df74fb5ebc301caf035904cd97f | [
"BSD-3-Clause"
] | permissive | anawhj/chromium-crosswalk | 8221f9510bfb9df29dab12e6cdc57030380eb3f5 | 97959a5c98a1e18513f3ea21697323634d2fd696 | refs/heads/master | 2021-01-24T17:23:55.447032 | 2015-08-11T23:14:52 | 2015-08-11T23:14:52 | 40,750,463 | 0 | 1 | null | 2015-08-15T07:18:53 | 2015-08-15T07:18:52 | null | UTF-8 | C++ | false | false | 1,870 | 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/browser/tracing/file_tracing_provider_impl.h"
#include "base/files/file_path.h"
#include "base/trace_event/trace_event.h"
namespace content {
const char kFileTracingEventCategoryGroup[] = TRACE_DISABLED_BY_DEFAULT("file");
FileTracingProviderImpl::FileTracingProviderImpl() {}
FileTracingProviderImpl::~FileTracingProviderImpl() {}
bool FileTracingProviderImpl::FileTracingCategoryIsEnabled() const {
bool enabled;
TRACE_EVENT_CATEGORY_GROUP_ENABLED(kFileTracingEventCategoryGroup, &enabled);
return enabled;
}
void FileTracingProviderImpl::FileTracingEnable(void* id) {
TRACE_EVENT_NESTABLE_ASYNC_BEGIN0(
kFileTracingEventCategoryGroup, FILE_TRACING_PREFIX, id);
}
void FileTracingProviderImpl::FileTracingDisable(void* id) {
TRACE_EVENT_NESTABLE_ASYNC_END0(
kFileTracingEventCategoryGroup, FILE_TRACING_PREFIX, id);
}
void FileTracingProviderImpl::FileTracingEventBegin(
const char* name, void* id, const base::FilePath& path, int64 size) {
if (size) {
TRACE_EVENT_NESTABLE_ASYNC_BEGIN2(kFileTracingEventCategoryGroup, name, id,
"path", path.AsUTF8Unsafe(), "size", size);
} else {
TRACE_EVENT_NESTABLE_ASYNC_BEGIN1(kFileTracingEventCategoryGroup, name, id,
"path", path.AsUTF8Unsafe());
}
}
void FileTracingProviderImpl::FileTracingEventEnd(
const char* name, void* id, const base::FilePath& path, int64 size) {
if (size) {
TRACE_EVENT_NESTABLE_ASYNC_END2(kFileTracingEventCategoryGroup, name, id,
"path", path.AsUTF8Unsafe(), "size", size);
} else {
TRACE_EVENT_NESTABLE_ASYNC_END1(kFileTracingEventCategoryGroup, name, id,
"path", path.AsUTF8Unsafe());
}
}
} // namespace content
| [
"commit-bot@chromium.org"
] | commit-bot@chromium.org |
a7cdadbbbf5ab82e662f40d6bfb871669b7cacac | d0fb46aecc3b69983e7f6244331a81dff42d9595 | /cloudwf/include/alibabacloud/cloudwf/model/ShopGroupShowListResult.h | ef9eb2b8636613be891c7d8bd202916ff39fe938 | [
"Apache-2.0"
] | permissive | aliyun/aliyun-openapi-cpp-sdk | 3d8d051d44ad00753a429817dd03957614c0c66a | e862bd03c844bcb7ccaa90571bceaa2802c7f135 | refs/heads/master | 2023-08-29T11:54:00.525102 | 2023-08-29T03:32:48 | 2023-08-29T03:32:48 | 115,379,460 | 104 | 82 | NOASSERTION | 2023-09-14T06:13:33 | 2017-12-26T02:53:27 | C++ | UTF-8 | C++ | false | false | 1,567 | h | /*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef ALIBABACLOUD_CLOUDWF_MODEL_SHOPGROUPSHOWLISTRESULT_H_
#define ALIBABACLOUD_CLOUDWF_MODEL_SHOPGROUPSHOWLISTRESULT_H_
#include <string>
#include <vector>
#include <utility>
#include <alibabacloud/core/ServiceResult.h>
#include <alibabacloud/cloudwf/CloudwfExport.h>
namespace AlibabaCloud
{
namespace Cloudwf
{
namespace Model
{
class ALIBABACLOUD_CLOUDWF_EXPORT ShopGroupShowListResult : public ServiceResult
{
public:
ShopGroupShowListResult();
explicit ShopGroupShowListResult(const std::string &payload);
~ShopGroupShowListResult();
std::string getErrorMsg()const;
std::string getData()const;
int getErrorCode()const;
bool getSuccess()const;
protected:
void parse(const std::string &payload);
private:
std::string errorMsg_;
std::string data_;
int errorCode_;
bool success_;
};
}
}
}
#endif // !ALIBABACLOUD_CLOUDWF_MODEL_SHOPGROUPSHOWLISTRESULT_H_ | [
"haowei.yao@alibaba-inc.com"
] | haowei.yao@alibaba-inc.com |
16ab92e68bc2b6483d7b5d444c9e4b2a60623cb1 | 615a8bb951c9f8a6c125548730e00b01566eb384 | /Sandbox/src/CSandbox.cpp | 4e0e40a87c0ce4b0dfb2e62d9baf242e3f529b46 | [
"Apache-2.0"
] | permissive | Krais1989/KraisEngine | c176c8e52baddaf3a318a437af3ba46746f99cd1 | b7f79a4cd38cd83c3f9c762fd4d93ebd713ca3cd | refs/heads/master | 2023-08-31T10:15:31.913994 | 2021-03-06T19:37:47 | 2021-03-06T19:37:47 | 283,689,588 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,014 | cpp | #include <KraisEngine.h>
#include <KraisEngine/EntryPoint.h>
#include "Layers/CTestOpenGLLayer.h"
#include "Layers/CImguiLayer.h"
class CSandbox : public KE::CApplication
{
public:
CSandbox() : KE::CApplication() {
PushLayer(new CTestOpenGLLayer());
//PushOverlay(new CImguiLayer())
GetAudioManager().LoadMusic("Assets/Music/loop1.mp3");
GetAudioManager().LoadMusic("Assets/Music/Distortion melody.mp3");
GetAudioManager().PlayMusic(0);
}
~CSandbox() override {
}
virtual void OnEvent(KE::CEvent& ev)
{
if (ev.GetEventType() == KE::EEventType::KeyPressed) {
auto& keyEv = reinterpret_cast<KE::CKeyPressedEvent&>(ev);
if (keyEv.GetKey() == KE::Key::ESCAPE)
StopApplication();
}
KE::CApplication::OnEvent(ev);
}
protected:
virtual void Update(float dt_sec) override
{
KE::CApplication::Update(dt_sec);
}
virtual void UpdateEachFrame() override
{
KE::CApplication::UpdateEachFrame();
}
};
KE::CApplication* KE::CreateApplication() {
return new CSandbox();
} | [
"krais1989@gmail.com"
] | krais1989@gmail.com |
12cbefb08cc4952af610a6787aa68d509faf9d20 | 546d00dd96099d7ad669373f5771b9b200938f6e | /Sources/MultiServer/ClientClone/StdAfx.cpp | d73eb75a2193da8783e5a2597c8faa9032a46f5d | [] | no_license | lubing521/mmo-resourse | 74f6bcbd78aba61de0e8a681c4c6850f564e08d8 | 94fc594acba9bba9a9c3d0a5ecbca7a6363b42a5 | refs/heads/master | 2021-01-22T01:43:29.825927 | 2015-03-17T02:24:16 | 2015-03-17T02:24:16 | 36,480,084 | 2 | 1 | null | 2015-05-29T03:16:18 | 2015-05-29T03:16:18 | null | UTF-8 | C++ | false | false | 298 | cpp | // stdafx.cpp : source file that includes just the standard includes
// ClientClone.pch will be the pre-compiled header
// stdafx.obj will contain the pre-compiled type information
#include "stdafx.h"
// TODO: reference any additional headers you need in STDAFX.H
// and not in this file
| [
"ichenq@gmail.com@6f215214-8c51-1d4b-a490-e1557286002c"
] | ichenq@gmail.com@6f215214-8c51-1d4b-a490-e1557286002c |
3f449c1a730f15f00ba7201a274cde0b93ee91aa | 01616478af14e8215b2c9bbfe995e8662c7956e2 | /libs/handlers/pl.cpp | b7071f9020e7ae4f6811530cb9485067b60c38ab | [] | no_license | nathanstitt/spinny | 11e22edf6f3def66c9552e453d95577ea360835f | 5b4987a9cfe7366c19c09ba58e79c5fc048a08af | refs/heads/master | 2021-01-21T23:23:22.565910 | 2017-06-23T15:54:38 | 2017-06-23T15:54:38 | 95,234,267 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,002 | cpp | /* @(#)pl.cpp
*/
#include "handlers/pl.hpp"
#include "sqlite/comma.hpp"
#include "spinny/playlist.hpp"
#include "spinny/song.hpp"
#include "spinny/artist.hpp"
#include "spinny/album.hpp"
#include "boost/algorithm/string/predicate.hpp"
#include "boost/algorithm/string/classification.hpp"
#include "boost/filesystem/path.hpp"
#include "boost/filesystem/exception.hpp"
#include "boost/filesystem/fstream.hpp"
using namespace handlers;
void
insert( Spinny::PlayList::ptr pl,sqlite::commas &comma, ews::reply &rep ){
rep.content << comma << "\n " << "{"
<< "\"id\":" << pl->db_id()
<< ",\"name\":\"" << json_q( pl->name() ) << "\""
<< ",\"description\":\"" << json_q( pl->description() ) << "\"}";
}
PL::PL() : ews::request_handler( "Playlists", Middle ) {}
template< typename T >
void
test_loaded( T obj ){
if ( ! obj ){
throw ews::error("Failed to load!");
}
}
void
add_something( Spinny::PlayList::ptr pl, const std::string &type, sqlite::id_t id, sqlite::id_t pos ){
if ( type == "song" ){
Spinny::Song::ptr song = Spinny::Song::load( id );
test_loaded( song );
pl->insert( song, pos );
} else if ( type == "dir" ){
Spinny::MusicDir::ptr md = Spinny::MusicDir::load( id );
test_loaded( md );
pl->insert( md, pos );
} else if ( type == "artist" ){
Spinny::Artist::ptr artist = Spinny::Artist::load( id );
test_loaded( artist );
pl->insert( artist, pos );
} else if ( type == "pl" ){
Spinny::PlayList::ptr pl = Spinny::PlayList::load( id );
test_loaded( pl );
pl->insert( pl, pos );
}
}
ews::request_handler::RequestStatus
PL::handle( const ews::request& req, ews::reply& rep ) const {
// BOOST_LOGL( www, info ) << name() << " examine " << req.url << " req.u1: " << req.u1;
if ( req.u1 != "pl"){
return Continue;
}
sqlite::commas comma;
if ( req.u2 == "songs" ){
BOOST_LOGL(www,debug) << "Listing Songs for pl id: " << req.svalue( "pl_id" );
Spinny::PlayList::ptr pl = Spinny::PlayList::load( req.single_value<sqlite::id_t>( "pl_id" ) );
if ( req.u3 == "list" ){
if ( req.varibles.count("sort") ) {
pl->set_order( req.svalue("sort"), ( req.svalue("dir") == "DESC" ) );
}
Spinny::Song::result_set songs = pl->songs( req.single_value<sqlite::id_t>("start"),
req.single_value<sqlite::id_t>("limit") );
rep.content << "{ Songs: [ \n";
for ( Spinny::Song::result_set::iterator song = songs.begin(); song != songs.end(); ++song ){
rep.content << comma << "{ 'id':" << song->db_id()
<< ",'tr':" << song->track()
<< ",'tt':'" << json_q( song->title() ) << "', "
<< "'at':'" << json_q( song->artist_name() ) << "', "
<< "'al':'" << json_q( song->album_name() ) << "',"
<< "'ln':" << song->length() << "}\n";
}
rep.content << "], Size: " << pl->size() << " }\n";
} else if ( req.u3 == "reorder" ) {
for ( ews::request::varibles_t::const_iterator var=req.varibles.begin();
req.varibles.end() != var; ++var ){
if ( boost::all( var->first, boost::is_digit() ) ) {
BOOST_LOGL( www,debug ) << "Song id: " << var->first << " == " << var->second.front();
pl->set_song_order( boost::lexical_cast<sqlite::id_t>(var->first),
boost::lexical_cast<int>( var->second.front() ) );
}
}
pl->set_order( "playlist_songs" );
} else if ( req.u3 == "addsongs" ){
ews::request::varibles_t::const_iterator song_ids=req.varibles.find( "song_id" );
if ( song_ids != req.varibles.end() ){
sqlite::id_t pos = req.single_value<sqlite::id_t>( "pos" );
for ( ews::request::varible_t::const_iterator song_id = song_ids->second.begin();
song_ids->second.end() != song_id; ++song_id ){
Spinny::Song::ptr song = pl->load_song( boost::lexical_cast<sqlite::id_t>( *song_id ) );
test_loaded( song );
pl->insert( song, pos++ );
}
}
} else if ( req.u3 == "add" ){
add_something( pl, req.u4, req.single_value<sqlite::id_t>( "id" ), req.single_value<sqlite::id_t>( "pos" ) );
} else if ( req.u3 == "rm" ){
pl->remove( req.single_value<sqlite::id_t>( "song_id" ) );
} else if ( req.u3 == "addpl" ){
ews::request::varibles_t::const_iterator ids = req.varibles.find("pl_id");
if ( ids != req.varibles.end() ){
for ( ews::request::varible_t::const_iterator pl_id = ids->second.begin();
ids->second.end() != pl_id; ++pl_id ){
BOOST_LOGL( www,debug ) << "Adding Playlist id's " << *pl_id << " songs to playlist";
Spinny::PlayList::ptr p = Spinny::PlayList::load( boost::lexical_cast<sqlite::id_t>( *pl_id ) );
pl->insert( p, req.single_value<sqlite::id_t>( "position" ) );
}
}
}
} else if ( req.u2 == "list" ){
BOOST_LOGL(www,debug) << "Loading PL";
rep.content << "{Playlists: [";
Spinny::PlayList::result_set rs = Spinny::PlayList::all();
BOOST_LOGL(www,debug) << "Loading PL all()";
for ( Spinny::PlayList::result_set::iterator pl = rs.begin(); rs.end() != pl; ++pl ){
BOOST_LOGL(www,debug) << "Loading PL id: " << pl->db_id();
insert( pl.shared_ptr(), comma, rep );
}
rep.content << "]}";
} else if ( req.u2 == "update" ){
Spinny::PlayList::ptr pl;
if ( req.svalue("pl_id" ) == "0" ){
pl = Spinny::PlayList::create();
} else {
pl = Spinny::PlayList::load( req.single_value<sqlite::id_t>("pl_id" ) );
}
if ( req.u3 == "name" ){
pl->set_name( req.svalue("text") );
} else {
pl->set_description( req.svalue("text") );
}
pl->save();
} else if ( req.u2 == "reorder" ) {
for ( ews::request::varibles_t::const_iterator var=req.varibles.begin();
req.varibles.end() != var; ++var ){
if ( boost::all( var->first, boost::is_digit() ) ) {
BOOST_LOGL( www,debug ) << var->first << " == " << var->second.front();
Spinny::PlayList::set_order( boost::lexical_cast<sqlite::id_t>(var->first), boost::lexical_cast<int>( var->second.front() ) );
}
}
}
rep.set_header( "X-HANDLED-BY", name() );
rep.set_basic_headers( "json" );
return Stop;
}
| [
"nas@9787d06c-1a0a-0410-a88a-902e1a4f81df"
] | nas@9787d06c-1a0a-0410-a88a-902e1a4f81df |
cbcc5ed3e50c1a07f2b953a381f981e9765072e2 | 0271b7f67d29e0aaedb60f7d917c083515ccd0fe | /Trees/inorder-succ-bst-search.cpp | 74821e5a2d6be06bfb02699b237fd6aca5e781c4 | [
"MIT"
] | permissive | Pradyuman7/AwesomeDataStructuresAndAlgorithms | bfe1f335487f3f9ed94bb68073c0f29766738ea8 | 6d995c7a3ce2a227733b12b1749de647c5172e8e | refs/heads/master | 2020-04-06T17:33:05.673731 | 2019-10-07T10:46:36 | 2019-10-07T10:46:36 | 157,664,451 | 7 | 0 | MIT | 2019-07-19T06:40:45 | 2018-11-15T06:39:53 | Java | UTF-8 | C++ | false | false | 772 | cpp |
Node * inOrderSuccessor(Node *root, Node *x)
{
Node *rroot=root;
while(rroot->data!=x->data)
{
if(x->data<rroot->data)
{
rroot=rroot->left;
}
else
rroot=rroot->right;
}
if(rroot->right!=NULL)
{
rroot=rroot->right;
while(rroot->left!=NULL)
rroot=rroot->left;
return rroot;
}
struct Node *ans=NULL;
while(root!=NULL)
{
if(x->data<root->data)
{
ans=root;
root=root->left;
}
else if(root->data<x->data)
root=root->right;
else
break;
}
return ans;
}
| [
"herestobeingawesome@gmail.com"
] | herestobeingawesome@gmail.com |
84b4d2fb61b45d46f4117785107cc1fdf9e2f11d | 164b8519bda27cc095a7895c1e73ec8ed98d0449 | /poj/2081.cpp | a631ee338d7cbb6a2bd5bbd104e839a1217f0b7f | [] | no_license | StringsStar/sing | 173056d39f8840d82f706d1c105d1e92b0800116 | 18653992ac64d32fd1c41094ba542040e44716d2 | refs/heads/master | 2020-05-30T16:44:44.141729 | 2014-06-03T09:38:58 | 2014-06-03T09:38:58 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 560 | cpp | #include <iostream>
#include <cstdio>
#include <string>
#include <string.h>
const int N=500010;
int ch[N];
bool vis[N*10];
void init()
{
int i,j;
memset(vis,false,sizeof(vis));
memset(ch,0,sizeof(ch));
vis[0]=vis[1]=vis[3]=true;
ch[0]=0;ch[1]=1;
for(i=2;i<N;i++)
{
ch[i]=ch[i-1]-i;
if(ch[i]<1||vis[ch[i]])
ch[i]=ch[i-1]+i;
vis[ch[i]]=true;
}
return ;
}
int main()
{
int i,j,k;
init();
while(scanf("%d",&k),k!=-1)
printf("%d\n",ch[k]);
return 0;
}
| [
"1925217719@qq.com"
] | 1925217719@qq.com |
10cfca01ce61dd4b2dc1f3725323ac6bd717cc37 | 413109362ba19ebfecad49b1a46a0fc620ea4494 | /include/randomnormaldisplacer.h | 6006c33461296d2ec31f01865ff767742a8868a4 | [] | no_license | daniel-lundin/raytrace | 65c76e64adf9b2f42114eda8ee0b7e4e270932de | 8db2cae2350a85ff02b50309f3b5cead6f544a80 | refs/heads/master | 2020-04-25T17:49:43.800678 | 2011-05-16T19:16:29 | 2011-05-16T19:16:29 | 1,235,764 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 509 | h | #ifndef RANDOMNORMALDISPLACER_H
#define RANDOMNORMALDISPLACER_H
#include "rayobject.h"
class Perlin;
class RandomNormalDisplacer : public RayObject
{
public:
RandomNormalDisplacer(RayObject* obj, double amount);
~RandomNormalDisplacer();
bool intersects(const Vector3D& start,
const Vector3D& direction,
std::vector<Intersection>&);
enum RandomType { BASIC };
private:
RayObject* m_object;
Perlin* m_perlin;
double m_amount;
};
#endif
| [
"daniel@d-dog.se"
] | daniel@d-dog.se |
22cd6bb80352465067bab52c379a84ad800666b7 | 02a10a5244d2214e932e54399e4b56b68fe5974b | /headers/ContainerModel.h | 77aab74c13cfb921069d02dad23b7564f06e74ba | [] | no_license | inxomnyaa/symbols-auto | 839381c1e83f434b76b2faccadee5e413ac5f376 | 439a1399473cc765badc1b5c438fbf83d9eadf1d | refs/heads/master | 2023-06-21T23:17:07.389321 | 2019-11-16T19:13:05 | 2019-11-16T19:13:05 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 984 | h | #pragma once
class ContainerModel : ContainerContentChangeListener {
virtual void containerContentChanged(int);
virtual ~ContainerModel();
virtual ~ContainerModel();
virtual void postInit(void);
virtual void releaseResources(void);
virtual void getContainerSize(void)const;
virtual void getFilteredContainerSize(void)const;
virtual void tick(int);
virtual void getItem(int)const;
virtual void getItems(void)const;
virtual void getItemInstances(void);
virtual void setItem(int, ContainerItemStack const&);
virtual void isValid(void);
virtual void isItemFiltered(ContainerItemStack const&)const;
virtual void isExpanableItemFiltered(int)const;
virtual void getItemExpandStatus(int)const;
virtual void _ZNK14ContainerModel16getItemGroupNameB5cxx11Ei;
virtual void switchItemExpando(int);
virtual void _getContainerOffset(void)const;
virtual void _onItemChanged(int, ItemStack const&, ItemStack const&);
}
| [
"6178101+SupremeMortal@users.noreply.github.com"
] | 6178101+SupremeMortal@users.noreply.github.com |
c47f865c4c16ed98727a23c7be3d88de25fbc8f1 | a7764174fb0351ea666faa9f3b5dfe304390a011 | /drv/Graphic3d/Graphic3d_MapIteratorOfMapOfStructure_0.cxx | ab8f758dc7f72ae38a5ad3436a19f762456c6e2e | [] | no_license | uel-dataexchange/Opencascade_uel | f7123943e9d8124f4fa67579e3cd3f85cfe52d91 | 06ec93d238d3e3ea2881ff44ba8c21cf870435cd | refs/heads/master | 2022-11-16T07:40:30.837854 | 2020-07-08T01:56:37 | 2020-07-08T01:56:37 | 276,290,778 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,589 | cxx | // This file is generated by WOK (CPPExt).
// Please do not edit this file; modify original file instead.
// The copyright and license terms as defined for the original file apply to
// this header file considered to be the "object code" form of the original source.
#include <Graphic3d_MapIteratorOfMapOfStructure.hxx>
#ifndef _Standard_NoSuchObject_HeaderFile
#include <Standard_NoSuchObject.hxx>
#endif
#ifndef _Graphic3d_Structure_HeaderFile
#include <Graphic3d_Structure.hxx>
#endif
#ifndef _TColStd_MapTransientHasher_HeaderFile
#include <TColStd_MapTransientHasher.hxx>
#endif
#ifndef _Graphic3d_MapOfStructure_HeaderFile
#include <Graphic3d_MapOfStructure.hxx>
#endif
#ifndef _Graphic3d_StdMapNodeOfMapOfStructure_HeaderFile
#include <Graphic3d_StdMapNodeOfMapOfStructure.hxx>
#endif
#define TheKey Handle_Graphic3d_Structure
#define TheKey_hxx <Graphic3d_Structure.hxx>
#define Hasher TColStd_MapTransientHasher
#define Hasher_hxx <TColStd_MapTransientHasher.hxx>
#define TCollection_StdMapNode Graphic3d_StdMapNodeOfMapOfStructure
#define TCollection_StdMapNode_hxx <Graphic3d_StdMapNodeOfMapOfStructure.hxx>
#define TCollection_MapIterator Graphic3d_MapIteratorOfMapOfStructure
#define TCollection_MapIterator_hxx <Graphic3d_MapIteratorOfMapOfStructure.hxx>
#define Handle_TCollection_StdMapNode Handle_Graphic3d_StdMapNodeOfMapOfStructure
#define TCollection_StdMapNode_Type_() Graphic3d_StdMapNodeOfMapOfStructure_Type_()
#define TCollection_Map Graphic3d_MapOfStructure
#define TCollection_Map_hxx <Graphic3d_MapOfStructure.hxx>
#include <TCollection_MapIterator.gxx>
| [
"shoka.sho2@excel.co.jp"
] | shoka.sho2@excel.co.jp |
5c58c1558d49e09e532b80a79bddb888f1a22e12 | fe97abc8d6f1bfe71d78a55eb798a306a85317a4 | /dev/attestation_server/include/CkCrypt2W.h | e1b9e5ddc3832f3854af3f956276b1d345bc2111 | [
"BSD-2-Clause"
] | permissive | aanciaes/secure-redis-container | e30d791cb848b00d96b261e1f2cc02b1e6a70016 | 405a34a3a6ab493dbbb21e2ea6d70837b27facbf | refs/heads/master | 2023-02-25T17:15:56.262137 | 2021-02-08T22:45:31 | 2021-02-08T22:45:31 | 297,782,153 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 163,516 | h | // CkCrypt2W.h: interface for the CkCrypt2W class.
//
//////////////////////////////////////////////////////////////////////
// This header is generated for Chilkat 9.5.0.83
#ifndef _CkCrypt2W_H
#define _CkCrypt2W_H
#include "chilkatDefs.h"
#include "CkString.h"
#include "CkClassWithCallbacksW.h"
class CkByteData;
class CkCertW;
class CkTaskW;
class CkBinDataW;
class CkStringBuilderW;
class CkSecureStringW;
class CkStreamW;
class CkCertChainW;
class CkJsonObjectW;
class CkPrivateKeyW;
class CkHttpW;
class CkXmlCertVaultW;
class CkBaseProgressW;
#if !defined(__sun__) && !defined(__sun)
#pragma pack (push, 8)
#endif
// CLASS: CkCrypt2W
class CK_VISIBLE_PUBLIC CkCrypt2W : public CkClassWithCallbacksW
{
private:
bool m_cbOwned;
private:
// Don't allow assignment or copying these objects.
CkCrypt2W(const CkCrypt2W &);
CkCrypt2W &operator=(const CkCrypt2W &);
public:
CkCrypt2W(void);
virtual ~CkCrypt2W(void);
static CkCrypt2W *createNew(void);
CkCrypt2W(bool bCallbackOwned);
static CkCrypt2W *createNew(bool bCallbackOwned);
void CK_VISIBLE_PRIVATE inject(void *impl);
// May be called when finished with the object to free/dispose of any
// internal resources held by the object.
void dispose(void);
CkBaseProgressW *get_EventCallbackObject(void) const;
void put_EventCallbackObject(CkBaseProgressW *progress);
// BEGIN PUBLIC INTERFACE
// ----------------------
// Properties
// ----------------------
// When set to true, causes the currently running method to abort. Methods that
// always finish quickly (i.e.have no length file operations or network
// communications) are not affected. If no method is running, then this property is
// automatically reset to false when the next method is called. When the abort
// occurs, this property is reset to false. Both synchronous and asynchronous
// method calls can be aborted. (A synchronous method call could be aborted by
// setting this property from a separate thread.)
bool get_AbortCurrent(void);
// When set to true, causes the currently running method to abort. Methods that
// always finish quickly (i.e.have no length file operations or network
// communications) are not affected. If no method is running, then this property is
// automatically reset to false when the next method is called. When the abort
// occurs, this property is reset to false. Both synchronous and asynchronous
// method calls can be aborted. (A synchronous method call could be aborted by
// setting this property from a separate thread.)
void put_AbortCurrent(bool newVal);
// The BCrypt work factor to be used for the BCryptHash and BCryptVerify. This is
// the log2 of the number of rounds of hashing to apply. For example, if the work
// (cost) factor is 12, then 2^12 rounds of hashing are applied. The purpose of
// this cost factor is to make the BCrypt computation expensive enought to prevent
// brute-force attacks. (Any complaints about BCrypt "not being fast enough" will
// be ignored.)
//
// This property must have a value ranging from 4 to 31 inclusive.
//
// The default value is 10.
//
int get_BCryptWorkFactor(void);
// The BCrypt work factor to be used for the BCryptHash and BCryptVerify. This is
// the log2 of the number of rounds of hashing to apply. For example, if the work
// (cost) factor is 12, then 2^12 rounds of hashing are applied. The purpose of
// this cost factor is to make the BCrypt computation expensive enought to prevent
// brute-force attacks. (Any complaints about BCrypt "not being fast enough" will
// be ignored.)
//
// This property must have a value ranging from 4 to 31 inclusive.
//
// The default value is 10.
//
void put_BCryptWorkFactor(int newVal);
// The block-size (in bytes) of the selected encryption algorithm. For example, if
// the CryptAlgorithm property is set to "aes", the BlockSize property is
// automatically set to 16. The block-size for the ARC4 streaming encryption
// algorithm is 1.
int get_BlockSize(void);
// Applies to all methods that create PKCS7 signatures. To create a CAdES-BES
// signature, set this property equal to true. The default value of this property
// is false.
bool get_CadesEnabled(void);
// Applies to all methods that create PKCS7 signatures. To create a CAdES-BES
// signature, set this property equal to true. The default value of this property
// is false.
void put_CadesEnabled(bool newVal);
// This is the base64 hash of the policy document located at the CadesSigPolicyUri.
// You can use either the SHA256 or SHA1 hash. You may use this online tool to
// compute the base64 hash:Compute Base64 Hash for CaDES Signature Policy URL
// <http://tools.chilkat.io/hashFileAtUrl.cshtml>
//
// Note: This property applies to all methods that create PKCS7 signatures. To
// create a CAdES-EPES signature, set the CadesEnabled property = true, and also
// provide values for each of the following properties: CadesSigPolicyHash,
// CadesSigPolicyId, and CadesSigPolicyUri. For example (in pseudo-code):
// cryptObj.CadesSigPolicyId = "2.16.76.1.7.1.1.1"
// cryptObj.CadesSigPolicyUri = "http://politicas.icpbrasil.gov.br/PA_AD_RB.der"
// cryptObj.CadesSigPolicyHash = "rySugyKaMhiMR8Y/o5yuU2A2bF0="
// Note: Do NOT use the values above. They are only provided as an example to show
// valid values. For example, the Policy ID is an OID. The Policy URI is a
// typically a URL to a DER encoded policy file, and the Policy Hash is a base64
// encoded hash.
//
void get_CadesSigPolicyHash(CkString &str);
// This is the base64 hash of the policy document located at the CadesSigPolicyUri.
// You can use either the SHA256 or SHA1 hash. You may use this online tool to
// compute the base64 hash:Compute Base64 Hash for CaDES Signature Policy URL
// <http://tools.chilkat.io/hashFileAtUrl.cshtml>
//
// Note: This property applies to all methods that create PKCS7 signatures. To
// create a CAdES-EPES signature, set the CadesEnabled property = true, and also
// provide values for each of the following properties: CadesSigPolicyHash,
// CadesSigPolicyId, and CadesSigPolicyUri. For example (in pseudo-code):
// cryptObj.CadesSigPolicyId = "2.16.76.1.7.1.1.1"
// cryptObj.CadesSigPolicyUri = "http://politicas.icpbrasil.gov.br/PA_AD_RB.der"
// cryptObj.CadesSigPolicyHash = "rySugyKaMhiMR8Y/o5yuU2A2bF0="
// Note: Do NOT use the values above. They are only provided as an example to show
// valid values. For example, the Policy ID is an OID. The Policy URI is a
// typically a URL to a DER encoded policy file, and the Policy Hash is a base64
// encoded hash.
//
const wchar_t *cadesSigPolicyHash(void);
// This is the base64 hash of the policy document located at the CadesSigPolicyUri.
// You can use either the SHA256 or SHA1 hash. You may use this online tool to
// compute the base64 hash:Compute Base64 Hash for CaDES Signature Policy URL
// <http://tools.chilkat.io/hashFileAtUrl.cshtml>
//
// Note: This property applies to all methods that create PKCS7 signatures. To
// create a CAdES-EPES signature, set the CadesEnabled property = true, and also
// provide values for each of the following properties: CadesSigPolicyHash,
// CadesSigPolicyId, and CadesSigPolicyUri. For example (in pseudo-code):
// cryptObj.CadesSigPolicyId = "2.16.76.1.7.1.1.1"
// cryptObj.CadesSigPolicyUri = "http://politicas.icpbrasil.gov.br/PA_AD_RB.der"
// cryptObj.CadesSigPolicyHash = "rySugyKaMhiMR8Y/o5yuU2A2bF0="
// Note: Do NOT use the values above. They are only provided as an example to show
// valid values. For example, the Policy ID is an OID. The Policy URI is a
// typically a URL to a DER encoded policy file, and the Policy Hash is a base64
// encoded hash.
//
void put_CadesSigPolicyHash(const wchar_t *newVal);
// See the description for the CadesSigPolicyHash property above.
void get_CadesSigPolicyId(CkString &str);
// See the description for the CadesSigPolicyHash property above.
const wchar_t *cadesSigPolicyId(void);
// See the description for the CadesSigPolicyHash property above.
void put_CadesSigPolicyId(const wchar_t *newVal);
// See the description for the CadesSigPolicyHash property above.
void get_CadesSigPolicyUri(CkString &str);
// See the description for the CadesSigPolicyHash property above.
const wchar_t *cadesSigPolicyUri(void);
// See the description for the CadesSigPolicyHash property above.
void put_CadesSigPolicyUri(const wchar_t *newVal);
// Controls the character encoding of the text encrypted, signed, hashed or
// compressed. This property is relevant wherever strings are used as inputs or
// outputs.
//
// This property defaults to the ANSI charset of the computer. For example, the
// default ANSI code page on Windows computers in the USA and Western Europe would
// be "windows-1252".
//
// When working with strings, it is important to know the exact bytes that are
// being encrypted/hashed/signed/compressed. This is critical when interoperating
// with other systems. If your application is sending an encrypted string to
// another system that will decrypt it, you will need to know the encoding of the
// string that is expected on the receiving end (after decryption). If you pass
// Unicode data (2 byte per character) to the encryptor, subsequent decryption will
// reproduce the original Unicode. However, it may be that your program works with
// Unicode strings, but the recipient of the encrypted data works with iso-8859-1
// strings. In such a case, setting the Charset property to "iso-8859-1" causes the
// character data to be automatically converted to the Charset before being
// encrypted (or compressed, or hashed, or signed). The set of valid charsets is
// listed below:
// hex
// base64
// * "hex" and "base64" are special values that allow for binary (non-text) encoded data to be passed to any method where the input data is a string.
// Rather than converting to an actual charset (such as utf-8, iso-8859-1), the binary data is decoded, and the decoded bytes are passed
// to the underlying encryptor, hashing, signing, etc.
// ANSI
// us-ascii
// unicode
// unicodefffe
// iso-8859-1
// iso-8859-2
// iso-8859-3
// iso-8859-4
// iso-8859-5
// iso-8859-6
// iso-8859-7
// iso-8859-8
// iso-8859-9
// iso-8859-13
// iso-8859-15
// windows-874
// windows-1250
// windows-1251
// windows-1252
// windows-1253
// windows-1254
// windows-1255
// windows-1256
// windows-1257
// windows-1258
// utf-7
// utf-8
// utf-32
// utf-32be
// shift_jis
// gb2312
// ks_c_5601-1987
// big5
// iso-2022-jp
// iso-2022-kr
// euc-jp
// euc-kr
// macintosh
// x-mac-japanese
// x-mac-chinesetrad
// x-mac-korean
// x-mac-arabic
// x-mac-hebrew
// x-mac-greek
// x-mac-cyrillic
// x-mac-chinesesimp
// x-mac-romanian
// x-mac-ukrainian
// x-mac-thai
// x-mac-ce
// x-mac-icelandic
// x-mac-turkish
// x-mac-croatian
// asmo-708
// dos-720
// dos-862
// ibm037
// ibm437
// ibm500
// ibm737
// ibm775
// ibm850
// ibm852
// ibm855
// ibm857
// ibm00858
// ibm860
// ibm861
// ibm863
// ibm864
// ibm865
// cp866
// ibm869
// ibm870
// cp875
// koi8-r
// koi8-u
//
void get_Charset(CkString &str);
// Controls the character encoding of the text encrypted, signed, hashed or
// compressed. This property is relevant wherever strings are used as inputs or
// outputs.
//
// This property defaults to the ANSI charset of the computer. For example, the
// default ANSI code page on Windows computers in the USA and Western Europe would
// be "windows-1252".
//
// When working with strings, it is important to know the exact bytes that are
// being encrypted/hashed/signed/compressed. This is critical when interoperating
// with other systems. If your application is sending an encrypted string to
// another system that will decrypt it, you will need to know the encoding of the
// string that is expected on the receiving end (after decryption). If you pass
// Unicode data (2 byte per character) to the encryptor, subsequent decryption will
// reproduce the original Unicode. However, it may be that your program works with
// Unicode strings, but the recipient of the encrypted data works with iso-8859-1
// strings. In such a case, setting the Charset property to "iso-8859-1" causes the
// character data to be automatically converted to the Charset before being
// encrypted (or compressed, or hashed, or signed). The set of valid charsets is
// listed below:
// hex
// base64
// * "hex" and "base64" are special values that allow for binary (non-text) encoded data to be passed to any method where the input data is a string.
// Rather than converting to an actual charset (such as utf-8, iso-8859-1), the binary data is decoded, and the decoded bytes are passed
// to the underlying encryptor, hashing, signing, etc.
// ANSI
// us-ascii
// unicode
// unicodefffe
// iso-8859-1
// iso-8859-2
// iso-8859-3
// iso-8859-4
// iso-8859-5
// iso-8859-6
// iso-8859-7
// iso-8859-8
// iso-8859-9
// iso-8859-13
// iso-8859-15
// windows-874
// windows-1250
// windows-1251
// windows-1252
// windows-1253
// windows-1254
// windows-1255
// windows-1256
// windows-1257
// windows-1258
// utf-7
// utf-8
// utf-32
// utf-32be
// shift_jis
// gb2312
// ks_c_5601-1987
// big5
// iso-2022-jp
// iso-2022-kr
// euc-jp
// euc-kr
// macintosh
// x-mac-japanese
// x-mac-chinesetrad
// x-mac-korean
// x-mac-arabic
// x-mac-hebrew
// x-mac-greek
// x-mac-cyrillic
// x-mac-chinesesimp
// x-mac-romanian
// x-mac-ukrainian
// x-mac-thai
// x-mac-ce
// x-mac-icelandic
// x-mac-turkish
// x-mac-croatian
// asmo-708
// dos-720
// dos-862
// ibm037
// ibm437
// ibm500
// ibm737
// ibm775
// ibm850
// ibm852
// ibm855
// ibm857
// ibm00858
// ibm860
// ibm861
// ibm863
// ibm864
// ibm865
// cp866
// ibm869
// ibm870
// cp875
// koi8-r
// koi8-u
//
const wchar_t *charset(void);
// Controls the character encoding of the text encrypted, signed, hashed or
// compressed. This property is relevant wherever strings are used as inputs or
// outputs.
//
// This property defaults to the ANSI charset of the computer. For example, the
// default ANSI code page on Windows computers in the USA and Western Europe would
// be "windows-1252".
//
// When working with strings, it is important to know the exact bytes that are
// being encrypted/hashed/signed/compressed. This is critical when interoperating
// with other systems. If your application is sending an encrypted string to
// another system that will decrypt it, you will need to know the encoding of the
// string that is expected on the receiving end (after decryption). If you pass
// Unicode data (2 byte per character) to the encryptor, subsequent decryption will
// reproduce the original Unicode. However, it may be that your program works with
// Unicode strings, but the recipient of the encrypted data works with iso-8859-1
// strings. In such a case, setting the Charset property to "iso-8859-1" causes the
// character data to be automatically converted to the Charset before being
// encrypted (or compressed, or hashed, or signed). The set of valid charsets is
// listed below:
// hex
// base64
// * "hex" and "base64" are special values that allow for binary (non-text) encoded data to be passed to any method where the input data is a string.
// Rather than converting to an actual charset (such as utf-8, iso-8859-1), the binary data is decoded, and the decoded bytes are passed
// to the underlying encryptor, hashing, signing, etc.
// ANSI
// us-ascii
// unicode
// unicodefffe
// iso-8859-1
// iso-8859-2
// iso-8859-3
// iso-8859-4
// iso-8859-5
// iso-8859-6
// iso-8859-7
// iso-8859-8
// iso-8859-9
// iso-8859-13
// iso-8859-15
// windows-874
// windows-1250
// windows-1251
// windows-1252
// windows-1253
// windows-1254
// windows-1255
// windows-1256
// windows-1257
// windows-1258
// utf-7
// utf-8
// utf-32
// utf-32be
// shift_jis
// gb2312
// ks_c_5601-1987
// big5
// iso-2022-jp
// iso-2022-kr
// euc-jp
// euc-kr
// macintosh
// x-mac-japanese
// x-mac-chinesetrad
// x-mac-korean
// x-mac-arabic
// x-mac-hebrew
// x-mac-greek
// x-mac-cyrillic
// x-mac-chinesesimp
// x-mac-romanian
// x-mac-ukrainian
// x-mac-thai
// x-mac-ce
// x-mac-icelandic
// x-mac-turkish
// x-mac-croatian
// asmo-708
// dos-720
// dos-862
// ibm037
// ibm437
// ibm500
// ibm737
// ibm775
// ibm850
// ibm852
// ibm855
// ibm857
// ibm00858
// ibm860
// ibm861
// ibm863
// ibm864
// ibm865
// cp866
// ibm869
// ibm870
// cp875
// koi8-r
// koi8-u
//
void put_Charset(const wchar_t *newVal);
// Controls the cipher mode for block encryption algorithms (AES, Blowfish,TwoFish,
// DES, 3DES, RC2). Possible values are "CBC" (the default) , "ECB", "CTR", "OFB",
// "GCM", and "CFB". These acronyms have the following meanings:
//
// CBC: Cipher Block Chaining,
// ECB: Electronic CookBook
// CTR: Counter Mode
// CFB: Cipher Feedback
// OFB: Output Feedback
// GCM: Galois/Counter Mode
//
// (see http://en.wikipedia.org/wiki/Block_cipher_modes_of_operation )
//
// Note: Prior to Chilkat v9.5.0.55, the CFB mode is only implemented for AES,
// Blowfish, and DES/3DES, and the CTR mode is only implemented for AES.
//
// Starting in v9.5.0.55 CFB and OFB modes are useable with all encryption
// algorithms, and GCM (Galois/Counter Mode) is available with any cipher having a
// 16-byte block size, such as AES and Twofish. CFB, OFB, CTR, and GCM modes
// convert block ciphers into stream ciphers. In these modes of operation, the
// PaddingScheme property is unused because no padding occurs.
//
void get_CipherMode(CkString &str);
// Controls the cipher mode for block encryption algorithms (AES, Blowfish,TwoFish,
// DES, 3DES, RC2). Possible values are "CBC" (the default) , "ECB", "CTR", "OFB",
// "GCM", and "CFB". These acronyms have the following meanings:
//
// CBC: Cipher Block Chaining,
// ECB: Electronic CookBook
// CTR: Counter Mode
// CFB: Cipher Feedback
// OFB: Output Feedback
// GCM: Galois/Counter Mode
//
// (see http://en.wikipedia.org/wiki/Block_cipher_modes_of_operation )
//
// Note: Prior to Chilkat v9.5.0.55, the CFB mode is only implemented for AES,
// Blowfish, and DES/3DES, and the CTR mode is only implemented for AES.
//
// Starting in v9.5.0.55 CFB and OFB modes are useable with all encryption
// algorithms, and GCM (Galois/Counter Mode) is available with any cipher having a
// 16-byte block size, such as AES and Twofish. CFB, OFB, CTR, and GCM modes
// convert block ciphers into stream ciphers. In these modes of operation, the
// PaddingScheme property is unused because no padding occurs.
//
const wchar_t *cipherMode(void);
// Controls the cipher mode for block encryption algorithms (AES, Blowfish,TwoFish,
// DES, 3DES, RC2). Possible values are "CBC" (the default) , "ECB", "CTR", "OFB",
// "GCM", and "CFB". These acronyms have the following meanings:
//
// CBC: Cipher Block Chaining,
// ECB: Electronic CookBook
// CTR: Counter Mode
// CFB: Cipher Feedback
// OFB: Output Feedback
// GCM: Galois/Counter Mode
//
// (see http://en.wikipedia.org/wiki/Block_cipher_modes_of_operation )
//
// Note: Prior to Chilkat v9.5.0.55, the CFB mode is only implemented for AES,
// Blowfish, and DES/3DES, and the CTR mode is only implemented for AES.
//
// Starting in v9.5.0.55 CFB and OFB modes are useable with all encryption
// algorithms, and GCM (Galois/Counter Mode) is available with any cipher having a
// 16-byte block size, such as AES and Twofish. CFB, OFB, CTR, and GCM modes
// convert block ciphers into stream ciphers. In these modes of operation, the
// PaddingScheme property is unused because no padding occurs.
//
void put_CipherMode(const wchar_t *newVal);
// A JSON string for controlling extra CMS (PKCS7) signature and validation
// options.
void get_CmsOptions(CkString &str);
// A JSON string for controlling extra CMS (PKCS7) signature and validation
// options.
const wchar_t *cmsOptions(void);
// A JSON string for controlling extra CMS (PKCS7) signature and validation
// options.
void put_CmsOptions(const wchar_t *newVal);
// This property is deprecated. The only possible value is "BZIP2". The compression
// functionality in Crypt2 is legacy and existed long before the general
// compression functionality that is currently offered in Chilkat.Compression. The
// Chilkat.Compression API should be used instead.
void get_CompressionAlgorithm(CkString &str);
// This property is deprecated. The only possible value is "BZIP2". The compression
// functionality in Crypt2 is legacy and existed long before the general
// compression functionality that is currently offered in Chilkat.Compression. The
// Chilkat.Compression API should be used instead.
const wchar_t *compressionAlgorithm(void);
// This property is deprecated. The only possible value is "BZIP2". The compression
// functionality in Crypt2 is legacy and existed long before the general
// compression functionality that is currently offered in Chilkat.Compression. The
// Chilkat.Compression API should be used instead.
void put_CompressionAlgorithm(const wchar_t *newVal);
// Selects the encryption algorithm for encrypting and decrypting. Possible values
// are: "chacha20", "pki", "aes", "blowfish2", "des", "3des", "rc2", "arc4",
// "twofish", "pbes1" and "pbes2". The "pki" encryption algorithm isn't a specific
// algorithm, but instead tells the component to encrypt/decrypt using public-key
// encryption with digital certificates. The other choices are symmetric encryption
// algorithms that do not involve digital certificates and public/private keys.
//
// The default value is "aes"
//
// The original Chilkat implementation of Blowfish (in 2004) has a 4321
// byte-swapping issue (the results are 4321 byte-swapped). The newer
// implementation (in 2006 and named "blowfish2") does not byte swap. This should
// be used for compatibility with other Blowfish software. If an application needs
// to decrypt something encrypted with the old 4321 byte-swapped blowfish, set the
// property to "blowfish_old".
//
// Password-based encryption (PBE) is selected by setting this property to "pbes1"
// or "pbes2". Password-based encryption is defined in the PKCS5 Password-Based
// Cryptography Standard at https://tools.ietf.org/html/rfc2898. If PBE is used,
// the underlying encryption algorithm is specified by the PbesAlgorithm property.
// The underlying encryption (PbesAlgorithm) for PBES1 is limited to 56-bit DES or
// 64-bit RC2.
//
// Note:The chacha20 algorithm is introduced in Chilkat v9.5.0.55.
//
void get_CryptAlgorithm(CkString &str);
// Selects the encryption algorithm for encrypting and decrypting. Possible values
// are: "chacha20", "pki", "aes", "blowfish2", "des", "3des", "rc2", "arc4",
// "twofish", "pbes1" and "pbes2". The "pki" encryption algorithm isn't a specific
// algorithm, but instead tells the component to encrypt/decrypt using public-key
// encryption with digital certificates. The other choices are symmetric encryption
// algorithms that do not involve digital certificates and public/private keys.
//
// The default value is "aes"
//
// The original Chilkat implementation of Blowfish (in 2004) has a 4321
// byte-swapping issue (the results are 4321 byte-swapped). The newer
// implementation (in 2006 and named "blowfish2") does not byte swap. This should
// be used for compatibility with other Blowfish software. If an application needs
// to decrypt something encrypted with the old 4321 byte-swapped blowfish, set the
// property to "blowfish_old".
//
// Password-based encryption (PBE) is selected by setting this property to "pbes1"
// or "pbes2". Password-based encryption is defined in the PKCS5 Password-Based
// Cryptography Standard at https://tools.ietf.org/html/rfc2898. If PBE is used,
// the underlying encryption algorithm is specified by the PbesAlgorithm property.
// The underlying encryption (PbesAlgorithm) for PBES1 is limited to 56-bit DES or
// 64-bit RC2.
//
// Note:The chacha20 algorithm is introduced in Chilkat v9.5.0.55.
//
const wchar_t *cryptAlgorithm(void);
// Selects the encryption algorithm for encrypting and decrypting. Possible values
// are: "chacha20", "pki", "aes", "blowfish2", "des", "3des", "rc2", "arc4",
// "twofish", "pbes1" and "pbes2". The "pki" encryption algorithm isn't a specific
// algorithm, but instead tells the component to encrypt/decrypt using public-key
// encryption with digital certificates. The other choices are symmetric encryption
// algorithms that do not involve digital certificates and public/private keys.
//
// The default value is "aes"
//
// The original Chilkat implementation of Blowfish (in 2004) has a 4321
// byte-swapping issue (the results are 4321 byte-swapped). The newer
// implementation (in 2006 and named "blowfish2") does not byte swap. This should
// be used for compatibility with other Blowfish software. If an application needs
// to decrypt something encrypted with the old 4321 byte-swapped blowfish, set the
// property to "blowfish_old".
//
// Password-based encryption (PBE) is selected by setting this property to "pbes1"
// or "pbes2". Password-based encryption is defined in the PKCS5 Password-Based
// Cryptography Standard at https://tools.ietf.org/html/rfc2898. If PBE is used,
// the underlying encryption algorithm is specified by the PbesAlgorithm property.
// The underlying encryption (PbesAlgorithm) for PBES1 is limited to 56-bit DES or
// 64-bit RC2.
//
// Note:The chacha20 algorithm is introduced in Chilkat v9.5.0.55.
//
void put_CryptAlgorithm(const wchar_t *newVal);
// Controls the encoding of binary data to a printable string for many methods. The
// valid modes are "Base64", "modBase64", "base64url", "Base32", "Base58", "UU",
// "QP" (for quoted-printable), "URL" (for url-encoding), "Hex", "Q", "B",
// "url_oauth", "url_rfc1738", "url_rfc2396", "url_rfc3986", "fingerprint", or
// "decimal".
//
// The default value is "base64"
//
// The "fingerprint" and"decimal" encodings are introduced in Chilkat v9.5.0.55.
//
// The "fingerprint" encoding is a lowercase hex encoding where each hex digit is
// separated by a colon character. For example:
// 6a:de:e0:af:56:f8:0c:04:11:5b:ef:4d:49:ad:09:23
//
// The "decimal" encoding is for converting large decimal integers to/from a
// big-endian binary representation. For example, the decimal string
// "72623859790382856" converts to the bytes 0x01 0x02 0x03 0x04 0x05 0x06 0x07
// 0x08.
//
void get_EncodingMode(CkString &str);
// Controls the encoding of binary data to a printable string for many methods. The
// valid modes are "Base64", "modBase64", "base64url", "Base32", "Base58", "UU",
// "QP" (for quoted-printable), "URL" (for url-encoding), "Hex", "Q", "B",
// "url_oauth", "url_rfc1738", "url_rfc2396", "url_rfc3986", "fingerprint", or
// "decimal".
//
// The default value is "base64"
//
// The "fingerprint" and"decimal" encodings are introduced in Chilkat v9.5.0.55.
//
// The "fingerprint" encoding is a lowercase hex encoding where each hex digit is
// separated by a colon character. For example:
// 6a:de:e0:af:56:f8:0c:04:11:5b:ef:4d:49:ad:09:23
//
// The "decimal" encoding is for converting large decimal integers to/from a
// big-endian binary representation. For example, the decimal string
// "72623859790382856" converts to the bytes 0x01 0x02 0x03 0x04 0x05 0x06 0x07
// 0x08.
//
const wchar_t *encodingMode(void);
// Controls the encoding of binary data to a printable string for many methods. The
// valid modes are "Base64", "modBase64", "base64url", "Base32", "Base58", "UU",
// "QP" (for quoted-printable), "URL" (for url-encoding), "Hex", "Q", "B",
// "url_oauth", "url_rfc1738", "url_rfc2396", "url_rfc3986", "fingerprint", or
// "decimal".
//
// The default value is "base64"
//
// The "fingerprint" and"decimal" encodings are introduced in Chilkat v9.5.0.55.
//
// The "fingerprint" encoding is a lowercase hex encoding where each hex digit is
// separated by a colon character. For example:
// 6a:de:e0:af:56:f8:0c:04:11:5b:ef:4d:49:ad:09:23
//
// The "decimal" encoding is for converting large decimal integers to/from a
// big-endian binary representation. For example, the decimal string
// "72623859790382856" converts to the bytes 0x01 0x02 0x03 0x04 0x05 0x06 0x07
// 0x08.
//
void put_EncodingMode(const wchar_t *newVal);
// Chilkat Crypt2 provides the ability to feed the encryption/decryption methods
// with chunks of data. This allows a large amount of data, or a data stream, to be
// fed piecemeal for encrypting or decrypting. It applies to all symmetric
// algorithms currently supported (AES, Blowfish, Twofish, 3DES, RC2, DES, ARC4),
// and all algorithms supported in the future.
//
// The default value for both FirstChunk and LastChunk is true. This means when
// an Encrypt* or Decrypt* method is called, it is both the first and last chunk
// (i.e. it's the entire amount of data to be encrypted or decrypted).
//
// If you wish to feed the data piecemeal, do this:
//
// Set FirstChunk = true, LastChunk = false for the first chunk of data.
// For all "middle" chunks (i.e. all chunks except for the final chunk) set
// FirstChunk = false and LastChunk = false.
// For the final chunk, set FirstChunk = false and LastChunk = true
//
// There is no need to worry about feeding data according to the block size of the
// encryption algorithm. For example, AES has a block size of 16 bytes. Data may be
// fed in chunks of any size. The Chilkat Crypt2 component will buffer the data.
// When the final chunk is passed, the output is padded to the algorithm's block
// size according to the PaddingScheme.
//
bool get_FirstChunk(void);
// Chilkat Crypt2 provides the ability to feed the encryption/decryption methods
// with chunks of data. This allows a large amount of data, or a data stream, to be
// fed piecemeal for encrypting or decrypting. It applies to all symmetric
// algorithms currently supported (AES, Blowfish, Twofish, 3DES, RC2, DES, ARC4),
// and all algorithms supported in the future.
//
// The default value for both FirstChunk and LastChunk is true. This means when
// an Encrypt* or Decrypt* method is called, it is both the first and last chunk
// (i.e. it's the entire amount of data to be encrypted or decrypted).
//
// If you wish to feed the data piecemeal, do this:
//
// Set FirstChunk = true, LastChunk = false for the first chunk of data.
// For all "middle" chunks (i.e. all chunks except for the final chunk) set
// FirstChunk = false and LastChunk = false.
// For the final chunk, set FirstChunk = false and LastChunk = true
//
// There is no need to worry about feeding data according to the block size of the
// encryption algorithm. For example, AES has a block size of 16 bytes. Data may be
// fed in chunks of any size. The Chilkat Crypt2 component will buffer the data.
// When the final chunk is passed, the output is padded to the algorithm's block
// size according to the PaddingScheme.
//
void put_FirstChunk(bool newVal);
// Selects the hash algorithm used by methods that create hashes. The valid choices
// are "sha1", "sha256", "sha384", "sha512", "sha3-224", "sha3-256", "sha3-384",
// "sha3-512", "md2", "md5", "haval", "ripemd128", "ripemd160","ripemd256", or
// "ripemd320".
//
// Note: SHA-2 designates a set of cryptographic hash functions that includes
// SHA-256, SHA-384, and SHA-512. Chilkat by definition supports "SHA-2" because it
// supports these algorithms.
//
// The default value is "sha1".
//
// Note: The HAVAL hash algorithm is affected by two other properties: HavalRounds
// and KeyLength.
//
// The HavalRounds may have values of 3, 4, or 5.
// The KeyLength may have values of 128, 160, 192, 224, or 256.
//
// Note: The "sha3-224", "sha3-256", "sha3-384", "sha3-512" algorithms are added in
// Chilkat v9.5.0.83.
//
void get_HashAlgorithm(CkString &str);
// Selects the hash algorithm used by methods that create hashes. The valid choices
// are "sha1", "sha256", "sha384", "sha512", "sha3-224", "sha3-256", "sha3-384",
// "sha3-512", "md2", "md5", "haval", "ripemd128", "ripemd160","ripemd256", or
// "ripemd320".
//
// Note: SHA-2 designates a set of cryptographic hash functions that includes
// SHA-256, SHA-384, and SHA-512. Chilkat by definition supports "SHA-2" because it
// supports these algorithms.
//
// The default value is "sha1".
//
// Note: The HAVAL hash algorithm is affected by two other properties: HavalRounds
// and KeyLength.
//
// The HavalRounds may have values of 3, 4, or 5.
// The KeyLength may have values of 128, 160, 192, 224, or 256.
//
// Note: The "sha3-224", "sha3-256", "sha3-384", "sha3-512" algorithms are added in
// Chilkat v9.5.0.83.
//
const wchar_t *hashAlgorithm(void);
// Selects the hash algorithm used by methods that create hashes. The valid choices
// are "sha1", "sha256", "sha384", "sha512", "sha3-224", "sha3-256", "sha3-384",
// "sha3-512", "md2", "md5", "haval", "ripemd128", "ripemd160","ripemd256", or
// "ripemd320".
//
// Note: SHA-2 designates a set of cryptographic hash functions that includes
// SHA-256, SHA-384, and SHA-512. Chilkat by definition supports "SHA-2" because it
// supports these algorithms.
//
// The default value is "sha1".
//
// Note: The HAVAL hash algorithm is affected by two other properties: HavalRounds
// and KeyLength.
//
// The HavalRounds may have values of 3, 4, or 5.
// The KeyLength may have values of 128, 160, 192, 224, or 256.
//
// Note: The "sha3-224", "sha3-256", "sha3-384", "sha3-512" algorithms are added in
// Chilkat v9.5.0.83.
//
void put_HashAlgorithm(const wchar_t *newVal);
// Applies to the HAVAL hash algorithm only and must be set to the integer value 3,
// 4, or 5. The default value is 3.
int get_HavalRounds(void);
// Applies to the HAVAL hash algorithm only and must be set to the integer value 3,
// 4, or 5. The default value is 3.
void put_HavalRounds(int newVal);
// The number of milliseconds between each AbortCheck event callback. The
// AbortCheck callback allows an application to abort some methods call prior to
// completion. If HeartbeatMs is 0 (the default), no AbortCheck event callbacks
// will fire.
//
// The methods with event callbacks are: CkDecryptFile, CkEncryptFile, HashFile,
// and HashFileENC.
//
int get_HeartbeatMs(void);
// The number of milliseconds between each AbortCheck event callback. The
// AbortCheck callback allows an application to abort some methods call prior to
// completion. If HeartbeatMs is 0 (the default), no AbortCheck event callbacks
// will fire.
//
// The methods with event callbacks are: CkDecryptFile, CkEncryptFile, HashFile,
// and HashFileENC.
//
void put_HeartbeatMs(int newVal);
// Only applies when creating digital signatures. If true (the default), then
// additional certificates (if any) in the chain of authentication are included in
// the PKCS7 digital signature.
bool get_IncludeCertChain(void);
// Only applies when creating digital signatures. If true (the default), then
// additional certificates (if any) in the chain of authentication are included in
// the PKCS7 digital signature.
void put_IncludeCertChain(bool newVal);
// The initial counter for the ChaCha20 encryption algorithm. The default value is
// 0.
int get_InitialCount(void);
// The initial counter for the ChaCha20 encryption algorithm. The default value is
// 0.
void put_InitialCount(int newVal);
// Iteration count to be used with password-based encryption (PBE). Password-based
// encryption is defined in the PKCS5 Password-Based Cryptography Standard at
// http://www.rsa.com/rsalabs/node.asp?id=2127
//
// The purpose of the iteration count is to increase the computation required to
// encrypt and decrypt. A larger iteration count makes cracking via exhaustive
// search more difficult. The default value is 1024.
//
int get_IterationCount(void);
// Iteration count to be used with password-based encryption (PBE). Password-based
// encryption is defined in the PKCS5 Password-Based Cryptography Standard at
// http://www.rsa.com/rsalabs/node.asp?id=2127
//
// The purpose of the iteration count is to increase the computation required to
// encrypt and decrypt. A larger iteration count makes cracking via exhaustive
// search more difficult. The default value is 1024.
//
void put_IterationCount(int newVal);
// The initialization vector to be used with symmetric encryption algorithms (AES,
// Blowfish, Twofish, etc.). If left unset, no initialization vector is used.
void get_IV(CkByteData &outBytes);
// The initialization vector to be used with symmetric encryption algorithms (AES,
// Blowfish, Twofish, etc.). If left unset, no initialization vector is used.
void put_IV(const CkByteData &inBytes);
// The key length in bits for symmetric encryption algorithms. The default value is
// 256.
int get_KeyLength(void);
// The key length in bits for symmetric encryption algorithms. The default value is
// 256.
void put_KeyLength(int newVal);
// (See the description for the FirstChunk property.)
bool get_LastChunk(void);
// (See the description for the FirstChunk property.)
void put_LastChunk(bool newVal);
// Selects the MAC algorithm to be used for any of the Mac methods, such as
// MacStringENC, MacBytes, etc. The default value is "hmac". Possible values are
// "hmac" and "poly1305".
void get_MacAlgorithm(CkString &str);
// Selects the MAC algorithm to be used for any of the Mac methods, such as
// MacStringENC, MacBytes, etc. The default value is "hmac". Possible values are
// "hmac" and "poly1305".
const wchar_t *macAlgorithm(void);
// Selects the MAC algorithm to be used for any of the Mac methods, such as
// MacStringENC, MacBytes, etc. The default value is "hmac". Possible values are
// "hmac" and "poly1305".
void put_MacAlgorithm(const wchar_t *newVal);
// This property is set when a digital signature is verified. It contains the
// number of signer certificates. Each signing certificate can be retrieved by
// calling the GetSignerCert method, passing an index from 0 to NumSignerCerts-1.
int get_NumSignerCerts(void);
// Selects the hash algorithm for use within OAEP padding when encrypting using
// "pki" with RSAES-OAEP. The valid choices are "sha1", "sha256", "sha384",
// "sha512",
//
// The default value is "sha256"
//
void get_OaepHash(CkString &str);
// Selects the hash algorithm for use within OAEP padding when encrypting using
// "pki" with RSAES-OAEP. The valid choices are "sha1", "sha256", "sha384",
// "sha512",
//
// The default value is "sha256"
//
const wchar_t *oaepHash(void);
// Selects the hash algorithm for use within OAEP padding when encrypting using
// "pki" with RSAES-OAEP. The valid choices are "sha1", "sha256", "sha384",
// "sha512",
//
// The default value is "sha256"
//
void put_OaepHash(const wchar_t *newVal);
// Selects the MGF hash algorithm for use within OAEP padding when encrypting using
// "pki" with RSAES-OAEP. The valid choices are "sha1", "sha256", "sha384",
// "sha512", The default is "sha1".
void get_OaepMgfHash(CkString &str);
// Selects the MGF hash algorithm for use within OAEP padding when encrypting using
// "pki" with RSAES-OAEP. The valid choices are "sha1", "sha256", "sha384",
// "sha512", The default is "sha1".
const wchar_t *oaepMgfHash(void);
// Selects the MGF hash algorithm for use within OAEP padding when encrypting using
// "pki" with RSAES-OAEP. The valid choices are "sha1", "sha256", "sha384",
// "sha512", The default is "sha1".
void put_OaepMgfHash(const wchar_t *newVal);
// Selects the RSA encryption scheme when encrypting using "pki" (with a
// certificate and private key). The default value is false, which selects
// RSAES_PKCS1-V1_5. If set to true, then RSAES_OAEP is used.
bool get_OaepPadding(void);
// Selects the RSA encryption scheme when encrypting using "pki" (with a
// certificate and private key). The default value is false, which selects
// RSAES_PKCS1-V1_5. If set to true, then RSAES_OAEP is used.
void put_OaepPadding(bool newVal);
// The padding scheme used by block encryption algorithms such as AES (Rijndael),
// Blowfish, Twofish, RC2, DES, 3DES, etc. Block encryption algorithms pad
// encrypted data to a multiple of algorithm's block size. The default value of
// this property is 0.
//
// Possible values are:
//
// 0 = RFC 1423 padding scheme: Each padding byte is set to the number of padding
// bytes. If the data is already a multiple of algorithm's block size bytes, an
// extra block is appended each having a value equal to the block size. (for
// example, if the algorithm's block size is 16, then 16 bytes having the value
// 0x10 are added.). (This is also known as PKCS5 padding: PKCS #5 padding string
// consists of a sequence of bytes, each of which is equal to the total number of
// padding bytes added. )
//
// 1 = FIPS81 (Federal Information Processing Standards 81) where the last byte
// contains the number of padding bytes, including itself, and the other padding
// bytes are set to random values.
//
// 2 = Each padding byte is set to a random value. The decryptor must know how many
// bytes are in the original unencrypted data.
//
// 3 = Pad with NULLs. (If already a multiple of the algorithm's block size, no
// padding is added).
//
// 4 = Pad with SPACE chars(0x20). (If already a multiple of algorithm's block
// size, no padding is added).
//
int get_PaddingScheme(void);
// The padding scheme used by block encryption algorithms such as AES (Rijndael),
// Blowfish, Twofish, RC2, DES, 3DES, etc. Block encryption algorithms pad
// encrypted data to a multiple of algorithm's block size. The default value of
// this property is 0.
//
// Possible values are:
//
// 0 = RFC 1423 padding scheme: Each padding byte is set to the number of padding
// bytes. If the data is already a multiple of algorithm's block size bytes, an
// extra block is appended each having a value equal to the block size. (for
// example, if the algorithm's block size is 16, then 16 bytes having the value
// 0x10 are added.). (This is also known as PKCS5 padding: PKCS #5 padding string
// consists of a sequence of bytes, each of which is equal to the total number of
// padding bytes added. )
//
// 1 = FIPS81 (Federal Information Processing Standards 81) where the last byte
// contains the number of padding bytes, including itself, and the other padding
// bytes are set to random values.
//
// 2 = Each padding byte is set to a random value. The decryptor must know how many
// bytes are in the original unencrypted data.
//
// 3 = Pad with NULLs. (If already a multiple of the algorithm's block size, no
// padding is added).
//
// 4 = Pad with SPACE chars(0x20). (If already a multiple of algorithm's block
// size, no padding is added).
//
void put_PaddingScheme(int newVal);
// If the CryptAlgorithm property is set to "pbes1" or "pbes2", this property
// specifies the underlying encryption algorithm to be used with password-based
// encryption (PBE). Password-based encryption is defined in the PKCS5
// Password-Based Cryptography Standard at
// http://www.rsa.com/rsalabs/node.asp?id=2127
void get_PbesAlgorithm(CkString &str);
// If the CryptAlgorithm property is set to "pbes1" or "pbes2", this property
// specifies the underlying encryption algorithm to be used with password-based
// encryption (PBE). Password-based encryption is defined in the PKCS5
// Password-Based Cryptography Standard at
// http://www.rsa.com/rsalabs/node.asp?id=2127
const wchar_t *pbesAlgorithm(void);
// If the CryptAlgorithm property is set to "pbes1" or "pbes2", this property
// specifies the underlying encryption algorithm to be used with password-based
// encryption (PBE). Password-based encryption is defined in the PKCS5
// Password-Based Cryptography Standard at
// http://www.rsa.com/rsalabs/node.asp?id=2127
void put_PbesAlgorithm(const wchar_t *newVal);
// The password to be used with password-based encryption (PBE). Password-based
// encryption is defined in the PKCS5 Password-Based Cryptography Standard at
// http://www.rsa.com/rsalabs/node.asp?id=2127
void get_PbesPassword(CkString &str);
// The password to be used with password-based encryption (PBE). Password-based
// encryption is defined in the PKCS5 Password-Based Cryptography Standard at
// http://www.rsa.com/rsalabs/node.asp?id=2127
const wchar_t *pbesPassword(void);
// The password to be used with password-based encryption (PBE). Password-based
// encryption is defined in the PKCS5 Password-Based Cryptography Standard at
// http://www.rsa.com/rsalabs/node.asp?id=2127
void put_PbesPassword(const wchar_t *newVal);
// When the CryptAlgorithm property is "PKI" to select PKCS7 public-key encryption,
// this selects the underlying symmetric encryption algorithm. Possible values are:
// "aes", "des", "3des", and "rc2". The default value is "aes".
void get_Pkcs7CryptAlg(CkString &str);
// When the CryptAlgorithm property is "PKI" to select PKCS7 public-key encryption,
// this selects the underlying symmetric encryption algorithm. Possible values are:
// "aes", "des", "3des", and "rc2". The default value is "aes".
const wchar_t *pkcs7CryptAlg(void);
// When the CryptAlgorithm property is "PKI" to select PKCS7 public-key encryption,
// this selects the underlying symmetric encryption algorithm. Possible values are:
// "aes", "des", "3des", and "rc2". The default value is "aes".
void put_Pkcs7CryptAlg(const wchar_t *newVal);
// The effective key length (in bits) for the RC2 encryption algorithm. When RC2 is
// used, both the KeyLength and Rc2EffectiveKeyLength properties should be set. For
// RC2, both should be between 8 and 1024 (inclusive).
//
// The default value is 128
//
int get_Rc2EffectiveKeyLength(void);
// The effective key length (in bits) for the RC2 encryption algorithm. When RC2 is
// used, both the KeyLength and Rc2EffectiveKeyLength properties should be set. For
// RC2, both should be between 8 and 1024 (inclusive).
//
// The default value is 128
//
void put_Rc2EffectiveKeyLength(int newVal);
// The salt to be used with password-based encryption (PBE). Password-based
// encryption is defined in the PKCS5 Password-Based Cryptography Standard at
// http://www.rsa.com/rsalabs/node.asp?id=2127
//
// To clarify: This property is used in encryption when the CryptAlgorithm is set
// to "pbes1" or "pbes2". Also note that it is not used by the Pbkdf1 or Pbkdf2
// methods, as the salt is passed in an argument to those methods.
//
void get_Salt(CkByteData &outBytes);
// The salt to be used with password-based encryption (PBE). Password-based
// encryption is defined in the PKCS5 Password-Based Cryptography Standard at
// http://www.rsa.com/rsalabs/node.asp?id=2127
//
// To clarify: This property is used in encryption when the CryptAlgorithm is set
// to "pbes1" or "pbes2". Also note that it is not used by the Pbkdf1 or Pbkdf2
// methods, as the salt is passed in an argument to those methods.
//
void put_Salt(const CkByteData &inBytes);
// The binary secret key used for symmetric encryption (Aes, Blowfish, Twofish,
// ChaCha20, ARC4, 3DES, RC2, etc.). The secret key must be identical for
// decryption to succeed. The length in bytes of the SecretKey must equal the
// KeyLength/8.
void get_SecretKey(CkByteData &outBytes);
// The binary secret key used for symmetric encryption (Aes, Blowfish, Twofish,
// ChaCha20, ARC4, 3DES, RC2, etc.). The secret key must be identical for
// decryption to succeed. The length in bytes of the SecretKey must equal the
// KeyLength/8.
void put_SecretKey(const CkByteData &inBytes);
// This property selects the signature algorithm for the OpaqueSign*, Sign*, and
// CreateDetachedSignature, CreateP7M, and CreateP7S methods. The default value is
// "PKCS1-v1_5". This can be set to "RSASSA-PSS" (or simply "pss") to use the
// RSASSA-PSS signature scheme.
//
// Note: This property only applies when the private key is an RSA private key. It
// does not apply for ECC or DSA private keys.
//
void get_SigningAlg(CkString &str);
// This property selects the signature algorithm for the OpaqueSign*, Sign*, and
// CreateDetachedSignature, CreateP7M, and CreateP7S methods. The default value is
// "PKCS1-v1_5". This can be set to "RSASSA-PSS" (or simply "pss") to use the
// RSASSA-PSS signature scheme.
//
// Note: This property only applies when the private key is an RSA private key. It
// does not apply for ECC or DSA private keys.
//
const wchar_t *signingAlg(void);
// This property selects the signature algorithm for the OpaqueSign*, Sign*, and
// CreateDetachedSignature, CreateP7M, and CreateP7S methods. The default value is
// "PKCS1-v1_5". This can be set to "RSASSA-PSS" (or simply "pss") to use the
// RSASSA-PSS signature scheme.
//
// Note: This property only applies when the private key is an RSA private key. It
// does not apply for ECC or DSA private keys.
//
void put_SigningAlg(const wchar_t *newVal);
// Contains JSON to specify the authenticated (signed) attributes or
// unauthenticated (unsigned) attributes that are to be included in CMS signatures.
// The default value is:
// {
// "contentType": 1,
// "signingTime": 1,
// "messageDigest": 1
// }
//
// Other possible values that can be added are:
// signingCertificateV2
// signingCertificate
// sMIMECapabilities
// microsoftRecipientInfo
// encrypKeyPref
// Contact Chilkat (support@chilkatsoft.com) about other signed/unsigned attributes
// that may be needed for CAdES signatures.
//
void get_SigningAttributes(CkString &str);
// Contains JSON to specify the authenticated (signed) attributes or
// unauthenticated (unsigned) attributes that are to be included in CMS signatures.
// The default value is:
// {
// "contentType": 1,
// "signingTime": 1,
// "messageDigest": 1
// }
//
// Other possible values that can be added are:
// signingCertificateV2
// signingCertificate
// sMIMECapabilities
// microsoftRecipientInfo
// encrypKeyPref
// Contact Chilkat (support@chilkatsoft.com) about other signed/unsigned attributes
// that may be needed for CAdES signatures.
//
const wchar_t *signingAttributes(void);
// Contains JSON to specify the authenticated (signed) attributes or
// unauthenticated (unsigned) attributes that are to be included in CMS signatures.
// The default value is:
// {
// "contentType": 1,
// "signingTime": 1,
// "messageDigest": 1
// }
//
// Other possible values that can be added are:
// signingCertificateV2
// signingCertificate
// sMIMECapabilities
// microsoftRecipientInfo
// encrypKeyPref
// Contact Chilkat (support@chilkatsoft.com) about other signed/unsigned attributes
// that may be needed for CAdES signatures.
//
void put_SigningAttributes(const wchar_t *newVal);
// This is a catch-all property to be used for uncommon needs. This property
// defaults to the empty string and should typically remain empty.
//
// Can be set to a list of the following comma separated keywords:
// "UseConstructedOctets" - Introduced in v9.5.0.83. When creating opaque CMS
// signatures (signatures that embed the data being signed), will use the
// "constructed octets" form of the ASN.1 that holds the data. This is to satify
// some validators that are brittle/fragile/picky and require a particular format,
// such as for the ICP-Brazil Digital Signature Standard.
//
void get_UncommonOptions(CkString &str);
// This is a catch-all property to be used for uncommon needs. This property
// defaults to the empty string and should typically remain empty.
//
// Can be set to a list of the following comma separated keywords:
// "UseConstructedOctets" - Introduced in v9.5.0.83. When creating opaque CMS
// signatures (signatures that embed the data being signed), will use the
// "constructed octets" form of the ASN.1 that holds the data. This is to satify
// some validators that are brittle/fragile/picky and require a particular format,
// such as for the ICP-Brazil Digital Signature Standard.
//
const wchar_t *uncommonOptions(void);
// This is a catch-all property to be used for uncommon needs. This property
// defaults to the empty string and should typically remain empty.
//
// Can be set to a list of the following comma separated keywords:
// "UseConstructedOctets" - Introduced in v9.5.0.83. When creating opaque CMS
// signatures (signatures that embed the data being signed), will use the
// "constructed octets" form of the ASN.1 that holds the data. This is to satify
// some validators that are brittle/fragile/picky and require a particular format,
// such as for the ICP-Brazil Digital Signature Standard.
//
void put_UncommonOptions(const wchar_t *newVal);
// When UU encoding, this is the filename to be embedded in UU encoded output. The
// default is "file.dat". When UU decoding, this is the filename found in the UU
// encoded input.
void get_UuFilename(CkString &str);
// When UU encoding, this is the filename to be embedded in UU encoded output. The
// default is "file.dat". When UU decoding, this is the filename found in the UU
// encoded input.
const wchar_t *uuFilename(void);
// When UU encoding, this is the filename to be embedded in UU encoded output. The
// default is "file.dat". When UU decoding, this is the filename found in the UU
// encoded input.
void put_UuFilename(const wchar_t *newVal);
// When UU encoding, this is the file permissions mode to be embedded in UU encoded
// output. The default is "644". When UU decoding, this property is set to the mode
// found in the UU encoded input.
void get_UuMode(CkString &str);
// When UU encoding, this is the file permissions mode to be embedded in UU encoded
// output. The default is "644". When UU decoding, this property is set to the mode
// found in the UU encoded input.
const wchar_t *uuMode(void);
// When UU encoding, this is the file permissions mode to be embedded in UU encoded
// output. The default is "644". When UU decoding, this property is set to the mode
// found in the UU encoded input.
void put_UuMode(const wchar_t *newVal);
// ----------------------
// Methods
// ----------------------
// Adds a certificate to be used for public-key encryption. (To use public-key
// encryption with digital certificates, set the CryptAlgorithm property = "pki".)
// To encrypt with more than one certificate , call AddEncryptCert once per
// certificate.
void AddEncryptCert(CkCertW &cert);
// Adds a PFX to the object's internal list of sources to be searched for
// certificates and private keys when decrypting. Multiple PFX sources can be added
// by calling this method once for each. (On the Windows operating system, the
// registry-based certificate stores are also automatically searched, so it is
// commonly not required to explicitly add PFX sources.)
//
// The pfxBytes contains the bytes of a PFX file (also known as PKCS12 or .p12).
//
bool AddPfxSourceData(CkByteData &pfxBytes, const wchar_t *pfxPassword);
// Adds a PFX file to the object's internal list of sources to be searched for
// certificates and private keys when decrypting. Multiple PFX files can be added
// by calling this method once for each. (On the Windows operating system, the
// registry-based certificate stores are also automatically searched, so it is
// commonly not required to explicitly add PFX sources.)
//
// The pfxFilePath contains the bytes of a PFX file (also known as PKCS12 or .p12).
//
bool AddPfxSourceFile(const wchar_t *pfxFilePath, const wchar_t *pfxPassword);
// Adds a certificate to be used for signing. To sign with more than one
// certificate, call AddSigningCert once per certificate.
//
// Note: This method was added in v9.5.0.83. The SetSigningCert and SetSigningCert2
// methods are used to set the signing certificate for signatures with one signer.
//
bool AddSigningCert(CkCertW &cert);
// Implements the AES Key Wrap Algorithm (RFC 3394) for unwrapping. The kek is the
// Key Encryption Key (the AES key used to unwrap the wrappedKeyData). The arguments and
// return value are binary encoded strings using the encoding specified by encoding
// (which can be "base64", "hex", "base64url", etc.) The full list of supported
// encodings is available at the link below.
//
// The kek should be an AES key of 16 bytes, 24 bytes, or 32 bytes (i.e. 128-bits,
// 192- bits, or 256-bits). For example, if passed as a hex string, then the kek
// should be 32 chars in length, 48 chars, or 64 chars (because each byte is
// represented as 2 chars in hex).
//
// The wrappedKeyData contains the data to be unwrapped. The result, if decoded, is 8 bytes
// less than the wrapped key data. For example, if a 256-bit AES key (32 bytes) is
// wrapped, the size of the wrapped key data is 40 bytes. Unwrapping restores it to
// the original 32 bytes.
//
bool AesKeyUnwrap(const wchar_t *kek, const wchar_t *wrappedKeyData, const wchar_t *encoding, CkString &outStr);
// Implements the AES Key Wrap Algorithm (RFC 3394) for unwrapping. The kek is the
// Key Encryption Key (the AES key used to unwrap the wrappedKeyData). The arguments and
// return value are binary encoded strings using the encoding specified by encoding
// (which can be "base64", "hex", "base64url", etc.) The full list of supported
// encodings is available at the link below.
//
// The kek should be an AES key of 16 bytes, 24 bytes, or 32 bytes (i.e. 128-bits,
// 192- bits, or 256-bits). For example, if passed as a hex string, then the kek
// should be 32 chars in length, 48 chars, or 64 chars (because each byte is
// represented as 2 chars in hex).
//
// The wrappedKeyData contains the data to be unwrapped. The result, if decoded, is 8 bytes
// less than the wrapped key data. For example, if a 256-bit AES key (32 bytes) is
// wrapped, the size of the wrapped key data is 40 bytes. Unwrapping restores it to
// the original 32 bytes.
//
const wchar_t *aesKeyUnwrap(const wchar_t *kek, const wchar_t *wrappedKeyData, const wchar_t *encoding);
// Implements the AES Key Wrap Algorithm (RFC 3394). The kek is the Key Encryption
// Key (the AES key used to encrypt the keyData). The arguments and return value are
// binary encoded strings using the encoding specified by encoding (which can be
// "base64", "hex", "base64url", etc.) The full list of supported encodings is
// available at the link below.
//
// The kek should be an AES key of 16 bytes, 24 bytes, or 32 bytes (i.e. 128-bits,
// 192- bits, or 256-bits). For example, if passed as a hex string, then the kek
// should be 32 chars in length, 48 chars, or 64 chars (because each byte is
// represented as 2 chars in hex).
//
// The keyData contains the data to be key wrapped. It must be a multiple of 64-bits
// in length. In other words, if the keyData is decoded to binary, it should be a
// number of bytes that is a multiple of 8.
//
// The return string, if decoded to binary bytes, is equal to the size of the key
// data + 8 additional bytes.
//
bool AesKeyWrap(const wchar_t *kek, const wchar_t *keyData, const wchar_t *encoding, CkString &outStr);
// Implements the AES Key Wrap Algorithm (RFC 3394). The kek is the Key Encryption
// Key (the AES key used to encrypt the keyData). The arguments and return value are
// binary encoded strings using the encoding specified by encoding (which can be
// "base64", "hex", "base64url", etc.) The full list of supported encodings is
// available at the link below.
//
// The kek should be an AES key of 16 bytes, 24 bytes, or 32 bytes (i.e. 128-bits,
// 192- bits, or 256-bits). For example, if passed as a hex string, then the kek
// should be 32 chars in length, 48 chars, or 64 chars (because each byte is
// represented as 2 chars in hex).
//
// The keyData contains the data to be key wrapped. It must be a multiple of 64-bits
// in length. In other words, if the keyData is decoded to binary, it should be a
// number of bytes that is a multiple of 8.
//
// The return string, if decoded to binary bytes, is equal to the size of the key
// data + 8 additional bytes.
//
const wchar_t *aesKeyWrap(const wchar_t *kek, const wchar_t *keyData, const wchar_t *encoding);
// Computes and returns a bcrypt hash of the password. The number of rounds of hashing
// is determined by the BCryptWorkFactor property.
//
// Starting in v9.5.0.76, if the password is prefixed with "$2b$" then the output will
// use the $2b version of bcrypt. For example, to create a "$2b$" bcrypt has for
// the password "secret", pass in the string "$2b$secret" for password.
//
bool BCryptHash(const wchar_t *password, CkString &outStr);
// Computes and returns a bcrypt hash of the password. The number of rounds of hashing
// is determined by the BCryptWorkFactor property.
//
// Starting in v9.5.0.76, if the password is prefixed with "$2b$" then the output will
// use the $2b version of bcrypt. For example, to create a "$2b$" bcrypt has for
// the password "secret", pass in the string "$2b$secret" for password.
//
const wchar_t *bCryptHash(const wchar_t *password);
// Verifies the password against a previously computed BCrypt hash. Returns true if
// the password matches the bcryptHash. Returns false if the password does not match.
bool BCryptVerify(const wchar_t *password, const wchar_t *bcryptHash);
// Utility method to convert bytes to a string -- interpreting the bytes according
// to the charset specified.
bool BytesToString(CkByteData &inData, const wchar_t *charset, CkString &outStr);
// Utility method to convert bytes to a string -- interpreting the bytes according
// to the charset specified.
const wchar_t *bytesToString(CkByteData &inData, const wchar_t *charset);
// Convenience method for byte swapping between little-endian byte ordering and
// big-endian byte ordering.
bool ByteSwap4321(CkByteData &data, CkByteData &outBytes);
// File-to-file decryption. There is no limit to the size of the file that can be
// decrypted because the component will operate in streaming mode internally.
bool CkDecryptFile(const wchar_t *srcFile, const wchar_t *destFile);
// Creates an asynchronous task to call the CkDecryptFile method with the arguments
// provided. (Async methods are available starting in Chilkat v9.5.0.52.)
// The caller is responsible for deleting the object returned by this method.
CkTaskW *CkDecryptFileAsync(const wchar_t *srcFile, const wchar_t *destFile);
// File-to-file encryption. There is no limit to the size of the file that can be
// encrypted because the component will operate in streaming mode internally.
bool CkEncryptFile(const wchar_t *srcFile, const wchar_t *destFile);
// Creates an asynchronous task to call the CkEncryptFile method with the arguments
// provided. (Async methods are available starting in Chilkat v9.5.0.52.)
// The caller is responsible for deleting the object returned by this method.
CkTaskW *CkEncryptFileAsync(const wchar_t *srcFile, const wchar_t *destFile);
// Clears the internal list of digital certificates to be used for public-key
// encryption.
void ClearEncryptCerts(void);
// Clears the set of certificates to be used in signing.
void ClearSigningCerts(void);
// Bzip2 compresses a byte array and returns the compressed bytes.
//
// This is a legacy method that should not be used in new development. It will not
// be marked as deprecated or removed from future APIs because existing
// applications may have data already compressed using this method.
//
// The output of this method includes an 8-byte header composed of a 4-byte magic
// number (0xB394A7E1) and the 4-byte length of the uncompressed data.
//
bool CompressBytes(CkByteData &data, CkByteData &outData);
// Same as CompressBytes, except an encoded string is returned. The output encoding
// is specified by the EncodingMode property.
bool CompressBytesENC(CkByteData &data, CkString &outStr);
// Same as CompressBytes, except an encoded string is returned. The output encoding
// is specified by the EncodingMode property.
const wchar_t *compressBytesENC(CkByteData &data);
// Compresses a string and returns the compressed bytes. Prior to compressing, the
// string is converted to a byte representation such as utf-8, utf-16, etc. as
// determined by the Charset property. Otherwise, this method is the same as the
// CompressBytes method.
bool CompressString(const wchar_t *str, CkByteData &outData);
// Compresses a string and returns the encoded compressed bytes. Prior to
// compressing, the string is converted to a byte representation such as utf-8,
// utf-16, etc. as determined by the Charset property. The output encoding is
// specified by the EncodingMode property. Otherwise, this method is the same as
// the CompressBytes method.
bool CompressStringENC(const wchar_t *str, CkString &outStr);
// Compresses a string and returns the encoded compressed bytes. Prior to
// compressing, the string is converted to a byte representation such as utf-8,
// utf-16, etc. as determined by the Charset property. The output encoding is
// specified by the EncodingMode property. Otherwise, this method is the same as
// the CompressBytes method.
const wchar_t *compressStringENC(const wchar_t *str);
// Calculates a CRC for in-memory byte data. To compute the CRC used in the Zip
// file format, pass "CRC-32" for the crcAlg. (The crcAlg argument provides the
// flexibility to add additional CRC algorithms on an as-needed basis in the
// future.)
unsigned long CrcBytes(const wchar_t *crcAlg, CkByteData &byteData);
// Calculates a CRC for the contents of a file. To compute the CRC used in the Zip
// file format, pass "CRC-32" for the crcAlg. (The crcAlg argument provides the
// flexibility to add additional CRC algorithms on an as-needed basis in the
// future.) A value of 0 is returned if the file is unable to be read. Given that
// there is a 1 in 4 billion chance of having an actual CRC of 0, an application
// might choose to react to a 0 return value by testing to see if the file can be
// opened and read.
unsigned long CrcFile(const wchar_t *crcAlg, const wchar_t *path);
// Creates an asynchronous task to call the CrcFile method with the arguments
// provided. (Async methods are available starting in Chilkat v9.5.0.52.)
// The caller is responsible for deleting the object returned by this method.
CkTaskW *CrcFileAsync(const wchar_t *crcAlg, const wchar_t *path);
// Digitally signs a file and writes the digital signature to a separate output
// file (a PKCS#7 signature file). The input file (inFilePath) is unmodified. A
// certificate for signing must be specified by calling SetSigningCert or
// SetSigningCert2 prior to calling this method.
//
// This method is equivalent to CreateP7S. The CreateP7S method was added to
// clarify the format of the signature file that is created.
//
bool CreateDetachedSignature(const wchar_t *inFilePath, const wchar_t *sigFilePath);
// Digitally signs a file and creates a .p7m (PKCS #7 Message) file that contains
// both the signature and original file content. The input file (inFilename) is
// unmodified. A certificate for signing must be specified by calling
// SetSigningCert or SetSigningCert2 prior to calling this method.
//
// To sign with a particular hash algorithm, set the HashAlgorithm property. Valid
// hash algorithms for signing are "sha256", "sha1", "sha384", "sha512", "md5", and
// "md2".
//
// Note: The CreateP7M method creates an opaque signature. To do the same thing
// entirely in memory, your application would call any of the OpaqueSign* methods,
// such as OpaqueSignBd, OpaqueSignString, OpaqueSignStringENC, etc.
//
bool CreateP7M(const wchar_t *inFilename, const wchar_t *p7mPath);
// Creates an asynchronous task to call the CreateP7M method with the arguments
// provided. (Async methods are available starting in Chilkat v9.5.0.52.)
// The caller is responsible for deleting the object returned by this method.
CkTaskW *CreateP7MAsync(const wchar_t *inFilename, const wchar_t *p7mPath);
// Digitally signs a file and creates a .p7s (PKCS #7 Signature) signature file.
// The input file (inFilename) is unmodified. The output file (p7sPath) contains only the
// signature and not the original data. A certificate for signing must be specified
// by calling SetSigningCert or SetSigningCert2 prior to calling this method.
//
// To sign with a particular hash algorithm, set the HashAlgorithm property. Valid
// hash algorithms for signing are "sha256", "sha1", "sha384", "sha512", "md5", and
// "md2".
//
// Note: The CreateP7S method creates a detached signature. To do the same thing
// entirely in memory, your application would call any of the Sign* methods, such
// as SignBdENC, SignString, SignStringENC, SignSbENC, etc.
//
bool CreateP7S(const wchar_t *inFilename, const wchar_t *p7sPath);
// Creates an asynchronous task to call the CreateP7S method with the arguments
// provided. (Async methods are available starting in Chilkat v9.5.0.52.)
// The caller is responsible for deleting the object returned by this method.
CkTaskW *CreateP7SAsync(const wchar_t *inFilename, const wchar_t *p7sPath);
// Decode binary data from an encoded string. The encoding can be set to any of the
// following strings: "base64", "hex", "quoted-printable", "url", "base32", "Q",
// "B", "url_rc1738", "url_rfc2396", "url_rfc3986", "url_oauth", "uu", "modBase64",
// or "html" (for HTML entity encoding).
bool Decode(const wchar_t *str, const wchar_t *encoding, CkByteData &outData);
// Decodes from an encoding back to the original string. The encoding can be set to any
// of the following strings: "base64", "hex", "quoted-printable", "url", "base32",
// "Q", "B", "url_rc1738", "url_rfc2396", "url_rfc3986", "url_oauth", "uu",
// "modBase64", or "html" (for HTML entity encoding).
bool DecodeString(const wchar_t *inStr, const wchar_t *charset, const wchar_t *encoding, CkString &outStr);
// Decodes from an encoding back to the original string. The encoding can be set to any
// of the following strings: "base64", "hex", "quoted-printable", "url", "base32",
// "Q", "B", "url_rc1738", "url_rfc2396", "url_rfc3986", "url_oauth", "uu",
// "modBase64", or "html" (for HTML entity encoding).
const wchar_t *decodeString(const wchar_t *inStr, const wchar_t *charset, const wchar_t *encoding);
// In-place decrypts the contents of bd. The minimal set of properties that
// should be set before decrypting are: CryptAlgorithm, SecretKey. Other properties
// that control encryption are: CipherMode, PaddingScheme, KeyLength, IV.
bool DecryptBd(CkBinDataW &bd);
// Decrypts a byte array and returns the unencrypted byte array. The property
// settings used when encrypting the data must match the settings when decrypting.
// Specifically, the CryptAlgorithm, CipherMode, PaddingScheme, KeyLength, IV, and
// SecretKey properties must match.
bool DecryptBytes(CkByteData &data, CkByteData &outData);
// The same as DecryptBytes except the binary data is passed via a pointer and
// length.
bool DecryptBytes2(const void *pByteData, unsigned long szByteData, CkByteData &outBytes);
// Decrypts string-encoded encrypted data and returns the unencrypted byte array.
// Data encrypted with EncryptBytesENC can be decrypted with this method. The
// property settings used when encrypting the data must match the settings when
// decrypting. Specifically, the EncodingMode, CryptAlgorithm, CipherMode,
// PaddingScheme, KeyLength, IV, and SecretKey properties must match.
bool DecryptBytesENC(const wchar_t *str, CkByteData &outData);
// Encrypted data is passed to this method as an encoded string (base64, hex,
// etc.). This method first decodes the input data according to the EncodingMode
// property setting. It then decrypts and re-encodes using the EncodingMode
// setting, and returns the decrypted data in encoded string form.
bool DecryptEncoded(const wchar_t *encodedEncryptedData, CkString &outStr);
// Encrypted data is passed to this method as an encoded string (base64, hex,
// etc.). This method first decodes the input data according to the EncodingMode
// property setting. It then decrypts and re-encodes using the EncodingMode
// setting, and returns the decrypted data in encoded string form.
const wchar_t *decryptEncoded(const wchar_t *encodedEncryptedData);
// Decrypts the contents of bdIn to sbOut. The decrypted string is appended to sbOut.
// The minimal set of properties that should be set before ecrypting are:
// CryptAlgorithm, SecretKey. Other properties that control encryption are:
// CipherMode, PaddingScheme, KeyLength, IV.
bool DecryptSb(CkBinDataW &bdIn, CkStringBuilderW &sbOut);
// Identical to DecryptStringENC, except the decrypts the cipherText and appends the
// decrypted string to the secureStr.
bool DecryptSecureENC(const wchar_t *cipherText, CkSecureStringW &secureStr);
// Decrypts a stream. Internally, the strm's source is read, decrypted, and the
// decrypted data written to the strm's sink. It does this in streaming fashion.
// Extremely large or even infinite streams can be decrypted with stable ungrowing
// memory usage.
bool DecryptStream(CkStreamW &strm);
// Creates an asynchronous task to call the DecryptStream method with the arguments
// provided. (Async methods are available starting in Chilkat v9.5.0.52.)
// The caller is responsible for deleting the object returned by this method.
CkTaskW *DecryptStreamAsync(CkStreamW &strm);
// The reverse of EncryptString.
//
// Decrypts encrypted byte data and returns the original string. The property
// settings used when encrypting the string must match the settings when
// decrypting. Specifically, the Charset, CryptAlgorithm, CipherMode,
// PaddingScheme, KeyLength, IV, and SecretKey properties must match.
//
bool DecryptString(CkByteData &data, CkString &outStr);
// The reverse of EncryptString.
//
// Decrypts encrypted byte data and returns the original string. The property
// settings used when encrypting the string must match the settings when
// decrypting. Specifically, the Charset, CryptAlgorithm, CipherMode,
// PaddingScheme, KeyLength, IV, and SecretKey properties must match.
//
const wchar_t *decryptString(CkByteData &data);
// The reverse of EncryptStringENC.
//
// Decrypts string-encoded encrypted data and returns the original string. The
// property settings used when encrypting the string must match the settings when
// decrypting. Specifically, the Charset, EncodingMode, CryptAlgorithm, CipherMode,
// PaddingScheme, KeyLength, IV, and SecretKey properties must match.
//
bool DecryptStringENC(const wchar_t *str, CkString &outStr);
// The reverse of EncryptStringENC.
//
// Decrypts string-encoded encrypted data and returns the original string. The
// property settings used when encrypting the string must match the settings when
// decrypting. Specifically, the Charset, EncodingMode, CryptAlgorithm, CipherMode,
// PaddingScheme, KeyLength, IV, and SecretKey properties must match.
//
const wchar_t *decryptStringENC(const wchar_t *str);
// Encode binary data to base64, hex, quoted-printable, or URL-encoding. The encoding
// can be set to any of the following strings: "base64", "hex", "quoted-printable"
// (or "qp"), "url", "base32", "Q", "B", "url_rc1738", "url_rfc2396",
// "url_rfc3986", "url_oauth", "uu", "modBase64", or "html" (for HTML entity
// encoding).
bool Encode(CkByteData &byteData, const wchar_t *encoding, CkString &outStr);
// Encode binary data to base64, hex, quoted-printable, or URL-encoding. The encoding
// can be set to any of the following strings: "base64", "hex", "quoted-printable"
// (or "qp"), "url", "base32", "Q", "B", "url_rc1738", "url_rfc2396",
// "url_rfc3986", "url_oauth", "uu", "modBase64", or "html" (for HTML entity
// encoding).
const wchar_t *encode(CkByteData &byteData, const wchar_t *encoding);
// Encode binary data to base64, hex, quoted-printable, or URL-encoding. The encoding
// can be set to any of the following strings: "base64", "hex", "quoted-printable",
// "url", "base32", "Q", "B", "url_rc1738", "url_rfc2396", "url_rfc3986",
// "url_oauth", "uu", "modBase64", or "html" (for HTML entity encoding).
//
// The pByteData points to the bytes to be encoded. The szByteData specifies the number of
// bytes to encode.
//
bool EncodeBytes(const void *pByteData, unsigned long szByteData, const wchar_t *encoding, CkString &outStr);
// Encode binary data to base64, hex, quoted-printable, or URL-encoding. The encoding
// can be set to any of the following strings: "base64", "hex", "quoted-printable",
// "url", "base32", "Q", "B", "url_rc1738", "url_rfc2396", "url_rfc3986",
// "url_oauth", "uu", "modBase64", or "html" (for HTML entity encoding).
//
// The pByteData points to the bytes to be encoded. The szByteData specifies the number of
// bytes to encode.
//
const wchar_t *encodeBytes(const void *pByteData, unsigned long szByteData, const wchar_t *encoding);
// Encodes an integer to N bytes and returns in the specified encoding. If littleEndian is
// true, then little endian byte ordering is used. Otherwise big-endian byte
// order is used.
bool EncodeInt(int value, int numBytes, bool littleEndian, const wchar_t *encoding, CkString &outStr);
// Encodes an integer to N bytes and returns in the specified encoding. If littleEndian is
// true, then little endian byte ordering is used. Otherwise big-endian byte
// order is used.
const wchar_t *encodeInt(int value, int numBytes, bool littleEndian, const wchar_t *encoding);
// Encodes a string. The toEncodingName can be set to any of the following strings: "base64",
// "hex", "quoted-printable", "url", "base32", "Q", "B", "url_rc1738",
// "url_rfc2396", "url_rfc3986", "url_oauth", "uu", "modBase64", or "html" (for
// HTML entity encoding). The charsetName is important, and usually you'll want to specify
// "ansi". For example, if the string "ABC" is to be encoded to "hex" using ANSI,
// the result will be "414243". However, if "unicode" is used, the result is
// "410042004300".
bool EncodeString(const wchar_t *strToEncode, const wchar_t *charsetName, const wchar_t *toEncodingName, CkString &outStr);
// Encodes a string. The toEncodingName can be set to any of the following strings: "base64",
// "hex", "quoted-printable", "url", "base32", "Q", "B", "url_rc1738",
// "url_rfc2396", "url_rfc3986", "url_oauth", "uu", "modBase64", or "html" (for
// HTML entity encoding). The charsetName is important, and usually you'll want to specify
// "ansi". For example, if the string "ABC" is to be encoded to "hex" using ANSI,
// the result will be "414243". However, if "unicode" is used, the result is
// "410042004300".
const wchar_t *encodeString(const wchar_t *strToEncode, const wchar_t *charsetName, const wchar_t *toEncodingName);
// In-place encrypts the contents of bd. The minimal set of properties that
// should be set before encrypting are: CryptAlgorithm, SecretKey. Other properties
// that control encryption are: CipherMode, PaddingScheme, KeyLength, IV. When
// decrypting, all property settings must match otherwise the result is garbled
// data.
bool EncryptBd(CkBinDataW &bd);
// Encrypts a byte array. The minimal set of properties that should be set before
// encrypting are: CryptAlgorithm, SecretKey. Other properties that control
// encryption are: CipherMode, PaddingScheme, KeyLength, IV. When decrypting, all
// property settings must match otherwise garbled data is returned.
bool EncryptBytes(CkByteData &data, CkByteData &outData);
// The same as EncryptBytes except the binary data is passed via a pointer and
// length.
bool EncryptBytes2(const void *pByteData, unsigned long szByteData, CkByteData &outBytes);
// Encrypts a byte array and returns the encrypted data as an encoded (printable)
// string. The minimal set of properties that should be set before encrypting are:
// CryptAlgorithm, SecretKey, EncodingMode. Other properties that control
// encryption are: CipherMode, PaddingScheme, KeyLength, IV. When decrypting, all
// property settings must match otherwise garbled data is returned. The encoding of
// the string that is returned is controlled by the EncodingMode property, which
// can be set to "Base64", "QP", or "Hex".
bool EncryptBytesENC(CkByteData &data, CkString &outStr);
// Encrypts a byte array and returns the encrypted data as an encoded (printable)
// string. The minimal set of properties that should be set before encrypting are:
// CryptAlgorithm, SecretKey, EncodingMode. Other properties that control
// encryption are: CipherMode, PaddingScheme, KeyLength, IV. When decrypting, all
// property settings must match otherwise garbled data is returned. The encoding of
// the string that is returned is controlled by the EncodingMode property, which
// can be set to "Base64", "QP", or "Hex".
const wchar_t *encryptBytesENC(CkByteData &data);
// The input string is first decoded according to the encoding algorithm specified
// by the EncodingMode property (such as base64, hex, etc.) It is then encrypted
// according to the encryption algorithm specified by CryptAlgorithm. The resulting
// encrypted data is encoded (using EncodingMode) and returned.
bool EncryptEncoded(const wchar_t *str, CkString &outStr);
// The input string is first decoded according to the encoding algorithm specified
// by the EncodingMode property (such as base64, hex, etc.) It is then encrypted
// according to the encryption algorithm specified by CryptAlgorithm. The resulting
// encrypted data is encoded (using EncodingMode) and returned.
const wchar_t *encryptEncoded(const wchar_t *str);
// Encrypts the contents of sbIn to bdOut. The minimal set of properties that should
// be set before ecrypting are: CryptAlgorithm, SecretKey. Other properties that
// control encryption are: CipherMode, PaddingScheme, KeyLength, IV.
bool EncryptSb(CkStringBuilderW &sbIn, CkBinDataW &bdOut);
// Identical to EncryptStringENC, except the clear-text contained within the secureStr
// is encrypted and returned.
bool EncryptSecureENC(CkSecureStringW &secureStr, CkString &outStr);
// Identical to EncryptStringENC, except the clear-text contained within the secureStr
// is encrypted and returned.
const wchar_t *encryptSecureENC(CkSecureStringW &secureStr);
// Encrypts a stream. Internally, the strm's source is read, encrypted, and the
// encrypted data written to the strm's sink. It does this in streaming fashion.
// Extremely large or even infinite streams can be encrypted with stable ungrowing
// memory usage.
bool EncryptStream(CkStreamW &strm);
// Creates an asynchronous task to call the EncryptStream method with the arguments
// provided. (Async methods are available starting in Chilkat v9.5.0.52.)
// The caller is responsible for deleting the object returned by this method.
CkTaskW *EncryptStreamAsync(CkStreamW &strm);
// Encrypts a string and returns the encrypted data as a byte array. The minimal
// set of properties that should be set before encrypting are: CryptAlgorithm,
// SecretKey, Charset. Other properties that control encryption are: CipherMode,
// PaddingScheme, KeyLength, IV. When decrypting, all property settings must match
// otherwise garbled data is returned. The Charset property controls the exact
// bytes that get encrypted. Languages such as VB.NET, C#, and Visual Basic work
// with Unicode strings, thus the input string is Unicode. If Unicode is to be
// encrypted (i.e. 2 bytes per character) then set the Charset property to
// "Unicode". To implicitly convert the string to another charset before the
// encryption is applied, set the Charset property to something else, such as
// "iso-8859-1", "Shift_JIS", "big5", "windows-1252", etc. The complete list of
// possible charsets is listed here:
// us-ascii
// unicode
// unicodefffe
// iso-8859-1
// iso-8859-2
// iso-8859-3
// iso-8859-4
// iso-8859-5
// iso-8859-6
// iso-8859-7
// iso-8859-8
// iso-8859-9
// iso-8859-13
// iso-8859-15
// windows-874
// windows-1250
// windows-1251
// windows-1252
// windows-1253
// windows-1254
// windows-1255
// windows-1256
// windows-1257
// windows-1258
// utf-7
// utf-8
// utf-32
// utf-32be
// shift_jis
// gb2312
// ks_c_5601-1987
// big5
// iso-2022-jp
// iso-2022-kr
// euc-jp
// euc-kr
// macintosh
// x-mac-japanese
// x-mac-chinesetrad
// x-mac-korean
// x-mac-arabic
// x-mac-hebrew
// x-mac-greek
// x-mac-cyrillic
// x-mac-chinesesimp
// x-mac-romanian
// x-mac-ukrainian
// x-mac-thai
// x-mac-ce
// x-mac-icelandic
// x-mac-turkish
// x-mac-croatian
// asmo-708
// dos-720
// dos-862
// ibm037
// ibm437
// ibm500
// ibm737
// ibm775
// ibm850
// ibm852
// ibm855
// ibm857
// ibm00858
// ibm860
// ibm861
// ibm863
// ibm864
// ibm865
// cp866
// ibm869
// ibm870
// cp875
// koi8-r
// koi8-u
bool EncryptString(const wchar_t *str, CkByteData &outData);
// Encrypts a string and returns the encrypted data as an encoded (printable)
// string. The minimal set of properties that should be set before encrypting are:
// CryptAlgorithm, SecretKey, Charset, and EncodingMode. Other properties that
// control encryption are: CipherMode, PaddingScheme, KeyLength, IV. When
// decrypting (with DecryptStringENC), all property settings must match otherwise
// garbled data is returned. The Charset property controls the exact bytes that get
// encrypted. Languages such as VB.NET, C#, and Visual Basic work with Unicode
// strings, thus the input string is Unicode. If Unicode is to be encrypted (i.e. 2
// bytes per character) then set the Charset property to "Unicode". To implicitly
// convert the string to another charset before the encryption is applied, set the
// Charset property to something else, such as "iso-8859-1", "Shift_JIS", "big5",
// "windows-1252", etc. (Refer to EncryptString for the complete list of charsets.)
//
// The EncodingMode property controls the encoding of the string that is returned.
// It can be set to "Base64", "QP", or "Hex".
//
bool EncryptStringENC(const wchar_t *str, CkString &outStr);
// Encrypts a string and returns the encrypted data as an encoded (printable)
// string. The minimal set of properties that should be set before encrypting are:
// CryptAlgorithm, SecretKey, Charset, and EncodingMode. Other properties that
// control encryption are: CipherMode, PaddingScheme, KeyLength, IV. When
// decrypting (with DecryptStringENC), all property settings must match otherwise
// garbled data is returned. The Charset property controls the exact bytes that get
// encrypted. Languages such as VB.NET, C#, and Visual Basic work with Unicode
// strings, thus the input string is Unicode. If Unicode is to be encrypted (i.e. 2
// bytes per character) then set the Charset property to "Unicode". To implicitly
// convert the string to another charset before the encryption is applied, set the
// Charset property to something else, such as "iso-8859-1", "Shift_JIS", "big5",
// "windows-1252", etc. (Refer to EncryptString for the complete list of charsets.)
//
// The EncodingMode property controls the encoding of the string that is returned.
// It can be set to "Base64", "QP", or "Hex".
//
const wchar_t *encryptStringENC(const wchar_t *str);
// Important: In the v9.5.0.49 release, a bug involving this method was introduced:
// The encoding is ignored and instead the encoding used is the current value of the
// EncodingMode property. The workaround is to make sure the EncodingMode property
// is set to the value of the desired output encoding. This problem will be fixed
// in v9.5.0.50.
//
// Identical to the GenerateSecretKey method, except it returns the binary secret
// key as a string encoded according to encoding, which may be "base64", "hex", "url",
// etc. Please see the documentation for GenerateSecretKey for more information.
//
bool GenEncodedSecretKey(const wchar_t *password, const wchar_t *encoding, CkString &outStr);
// Important: In the v9.5.0.49 release, a bug involving this method was introduced:
// The encoding is ignored and instead the encoding used is the current value of the
// EncodingMode property. The workaround is to make sure the EncodingMode property
// is set to the value of the desired output encoding. This problem will be fixed
// in v9.5.0.50.
//
// Identical to the GenerateSecretKey method, except it returns the binary secret
// key as a string encoded according to encoding, which may be "base64", "hex", "url",
// etc. Please see the documentation for GenerateSecretKey for more information.
//
const wchar_t *genEncodedSecretKey(const wchar_t *password, const wchar_t *encoding);
// Hashes a string to a byte array that has the same number of bits as the current
// value of the KeyLength property. For example, if KeyLength is equal to 128 bits,
// then a 16-byte array is returned. This can be used to set the SecretKey
// property. In order to decrypt, the SecretKey must match exactly. To use
// "password-based" encryption, the password is passed to this method to generate a
// binary secret key that can then be assigned to the SecretKey property.
//
// IMPORTANT: If you are trying to decrypt something encrypted by another party
// such that the other party provided you with the secret key, DO NOT use this
// method. This method is for transforming an arbitrary-length password into a
// binary secret key of the proper length. Please see this Chilkat blog
// post:Getting Started with AES Decryption
// <http://www.cknotes.com/?p=290>
//
bool GenerateSecretKey(const wchar_t *password, CkByteData &outData);
// Generates a random UUID string having standard UUID format, such as
// "de305d54-75b4-431b-adb2-eb6b9e546014".
//
// Note: This generates a "version 4 UUID" using random byte values. See RFC 4122.
//
bool GenerateUuid(CkString &outStr);
// Generates a random UUID string having standard UUID format, such as
// "de305d54-75b4-431b-adb2-eb6b9e546014".
//
// Note: This generates a "version 4 UUID" using random byte values. See RFC 4122.
//
const wchar_t *generateUuid(void);
// Generates numBytes random bytes and returns them as an encoded string. The encoding,
// such as base64, hex, etc. is controlled by the EncodingMode property.
bool GenRandomBytesENC(int numBytes, CkString &outStr);
// Generates numBytes random bytes and returns them as an encoded string. The encoding,
// such as base64, hex, etc. is controlled by the EncodingMode property.
const wchar_t *genRandomBytesENC(int numBytes);
// Returns the last certificate used for public-key decryption.
// The caller is responsible for deleting the object returned by this method.
CkCertW *GetDecryptCert(void);
// Returns the authenticated additional data as an encoded string. The encoding
// argument can be set to any of the following strings: "base64", "hex",
// "quoted-printable", or "url".
//
// The Aad is used when the CipherMode is "gcm" (Galois/Counter Mode), which is a
// mode valid for symmetric ciphers that have a block size of 16 bytes, such as AES
// or Twofish.
//
bool GetEncodedAad(const wchar_t *encoding, CkString &outStr);
// Returns the authenticated additional data as an encoded string. The encoding
// argument can be set to any of the following strings: "base64", "hex",
// "quoted-printable", or "url".
//
// The Aad is used when the CipherMode is "gcm" (Galois/Counter Mode), which is a
// mode valid for symmetric ciphers that have a block size of 16 bytes, such as AES
// or Twofish.
//
const wchar_t *getEncodedAad(const wchar_t *encoding);
// Returns the authenticated additional data as an encoded string. The encoding
// argument can be set to any of the following strings: "base64", "hex",
// "quoted-printable", or "url".
//
// The Aad is used when the CipherMode is "gcm" (Galois/Counter Mode), which is a
// mode valid for symmetric ciphers that have a block size of 16 bytes, such as AES
// or Twofish.
//
const wchar_t *encodedAad(const wchar_t *encoding);
// Returns the authentication tag as an encoded string. The encoding argument may be
// set to any of the following strings: "base64", "hex", "quoted-printable", or
// "url". The authentication tag is an output of authenticated encryption modes
// such as GCM when encrypting. When GCM mode decrypting, the authenticate tag is
// set by the application and is the expected result.
//
// The authenticated tag plays a role when the CipherMode is "gcm" (Galois/Counter
// Mode), which is a mode valid for symmetric block ciphers that have a block size
// of 16 bytes, such as AES or Twofish.
//
bool GetEncodedAuthTag(const wchar_t *encoding, CkString &outStr);
// Returns the authentication tag as an encoded string. The encoding argument may be
// set to any of the following strings: "base64", "hex", "quoted-printable", or
// "url". The authentication tag is an output of authenticated encryption modes
// such as GCM when encrypting. When GCM mode decrypting, the authenticate tag is
// set by the application and is the expected result.
//
// The authenticated tag plays a role when the CipherMode is "gcm" (Galois/Counter
// Mode), which is a mode valid for symmetric block ciphers that have a block size
// of 16 bytes, such as AES or Twofish.
//
const wchar_t *getEncodedAuthTag(const wchar_t *encoding);
// Returns the authentication tag as an encoded string. The encoding argument may be
// set to any of the following strings: "base64", "hex", "quoted-printable", or
// "url". The authentication tag is an output of authenticated encryption modes
// such as GCM when encrypting. When GCM mode decrypting, the authenticate tag is
// set by the application and is the expected result.
//
// The authenticated tag plays a role when the CipherMode is "gcm" (Galois/Counter
// Mode), which is a mode valid for symmetric block ciphers that have a block size
// of 16 bytes, such as AES or Twofish.
//
const wchar_t *encodedAuthTag(const wchar_t *encoding);
// Returns the initialization vector as an encoded string. The encoding argument
// can be set to any of the following strings: "base64", "hex", "quoted-printable",
// or "url".
bool GetEncodedIV(const wchar_t *encoding, CkString &outIV);
// Returns the initialization vector as an encoded string. The encoding argument
// can be set to any of the following strings: "base64", "hex", "quoted-printable",
// or "url".
const wchar_t *getEncodedIV(const wchar_t *encoding);
// Returns the initialization vector as an encoded string. The encoding argument
// can be set to any of the following strings: "base64", "hex", "quoted-printable",
// or "url".
const wchar_t *encodedIV(const wchar_t *encoding);
// Returns the secret key as an encoded string. The encoding argument can be set to
// any of the following strings: "base64", "hex", "quoted-printable", or "url".
bool GetEncodedKey(const wchar_t *encoding, CkString &outKey);
// Returns the secret key as an encoded string. The encoding argument can be set to
// any of the following strings: "base64", "hex", "quoted-printable", or "url".
const wchar_t *getEncodedKey(const wchar_t *encoding);
// Returns the secret key as an encoded string. The encoding argument can be set to
// any of the following strings: "base64", "hex", "quoted-printable", or "url".
const wchar_t *encodedKey(const wchar_t *encoding);
// Returns the password-based encryption (PBE) salt bytes as an encoded string. The
// encoding argument can be set to any of the following strings: "base64", "hex",
// "quoted-printable", or "url".
bool GetEncodedSalt(const wchar_t *encoding, CkString &outStr);
// Returns the password-based encryption (PBE) salt bytes as an encoded string. The
// encoding argument can be set to any of the following strings: "base64", "hex",
// "quoted-printable", or "url".
const wchar_t *getEncodedSalt(const wchar_t *encoding);
// Returns the password-based encryption (PBE) salt bytes as an encoded string. The
// encoding argument can be set to any of the following strings: "base64", "hex",
// "quoted-printable", or "url".
const wchar_t *encodedSalt(const wchar_t *encoding);
// Returns the last certificate used when verifying a signature. This method is
// deprecated. Applications should instead call GetSignerCert with an index of 0.
// The caller is responsible for deleting the object returned by this method.
CkCertW *GetLastCert(void);
// This method can be called after a digital signature is verified to retrieve the
// signing time of the Nth certificate used for signing. The 1st
// certificate/signing time is at index 0. The NumSignerCerts property contains the
// total number of signing certificates. (Typically, a single certificate is used
// in creating a digital signature.)
//
// Note: An application should first check to see if a signing date/time is
// available for the Nth certificate by calling the HasSignatureSigningTime method.
// The indices for which there is no signing time available should be skipped.
//
bool GetSignatureSigningTime(int index, SYSTEMTIME &outSysTime);
// The same as GetSignatureSigningTime, except the date/time is returned in RFC822
// string format.
bool GetSignatureSigningTimeStr(int index, CkString &outStr);
// The same as GetSignatureSigningTime, except the date/time is returned in RFC822
// string format.
const wchar_t *getSignatureSigningTimeStr(int index);
// The same as GetSignatureSigningTime, except the date/time is returned in RFC822
// string format.
const wchar_t *signatureSigningTimeStr(int index);
// Extracts the signed (authenticated) attributes for the Nth signer. In most
// cases, a signature has only one signer, and the signerIndex should equal 0 to specify
// the 1st (and only) signer.
//
// The binary PKCS7 is passed in pkcs7Der. On success, the sbJson will contain the signed
// attributes in JSON format.
//
// Sample JSON output:
// {
// "signedAttributes": [
// {
// "oid": "1.2.840.113549.1.9.3",
// "name": "Content Type"
// },
// {
// "oid": "1.2.840.113549.1.9.5",
// "name": "Signing Time"
// },
// {
// "oid": "1.2.840.113549.1.9.4",
// "name": "Message Digest"
// },
// {
// "oid": "1.2.840.113549.1.9.16.2.47",
// "name": "Signing Certificate V2"
// }
// ]
// }
//
bool GetSignedAttributes(int signerIndex, CkBinDataW &pkcs7Der, CkStringBuilderW &sbJson);
// Gets the Nth certificate used for signing. This method can be called after
// verifying a digital signature to get the signer certs. The 1st certificate is at
// index 0. The NumSignerCerts property contains the total number of signing
// certificates. (Typically, a single certificate is used in creating a digital
// signature.)
// The caller is responsible for deleting the object returned by this method.
CkCertW *GetSignerCert(int index);
// Returns the full certificate chain for the Nth certificate used to for signing.
// Indexing begins at 0.
// The caller is responsible for deleting the object returned by this method.
CkCertChainW *GetSignerCertChain(int index);
// Hashes the the bytes contained in bd and returns the hash as an encoded
// string.
//
// The hash algorithm is specified by the HashAlgorithm property, The encoding is
// controlled by the EncodingMode property, which can be set to "base64", "hex",
// "base64url", or any of the encodings listed at the link below.
//
bool HashBdENC(CkBinDataW &bd, CkString &outStr);
// Hashes the the bytes contained in bd and returns the hash as an encoded
// string.
//
// The hash algorithm is specified by the HashAlgorithm property, The encoding is
// controlled by the EncodingMode property, which can be set to "base64", "hex",
// "base64url", or any of the encodings listed at the link below.
//
const wchar_t *hashBdENC(CkBinDataW &bd);
// Begin hashing a byte stream. Call this method to hash the 1st chunk. Additional
// chunks are hashed by calling HashMoreBytes 0 or more times followed by a final
// call to HashFinal (or HashFinalENC) to retrieve the result. The hash algorithm
// is selected by the HashAlgorithm property setting.
bool HashBeginBytes(CkByteData &data);
// The same as HashBeginBytes except the binary data is passed via a pointer and
// length.
bool HashBeginBytes2(const void *pByteData, unsigned long szByteData);
// Begin hashing a text stream. Call this method to hash the 1st chunk. Additional
// chunks are hashed by calling HashMoreString 0 or more times followed by a final
// call to HashFinal (or HashFinalENC) to retrieve the result. The hash algorithm
// is selected by the HashAlgorithm property setting.
bool HashBeginString(const wchar_t *strData);
// Hashes a byte array.
//
// The hash algorithm is specified by the HashAlgorithm property, The encoding is
// controlled by the EncodingMode property, which can be set to "base64", "hex",
// "base64url", or any of the encodings listed at the link below.
//
bool HashBytes(CkByteData &data, CkByteData &outData);
// The same as HashBytes except the binary data is passed via a pointer and length.
bool HashBytes2(const void *pByteData, unsigned long szByteData, CkByteData &outBytes);
// Hashes a byte array and returns the hash as an encoded string.
//
// The hash algorithm is specified by the HashAlgorithm property, The encoding is
// controlled by the EncodingMode property, which can be set to "base64", "hex",
// "base64url", or any of the encodings listed at the link below.
//
bool HashBytesENC(CkByteData &data, CkString &outStr);
// Hashes a byte array and returns the hash as an encoded string.
//
// The hash algorithm is specified by the HashAlgorithm property, The encoding is
// controlled by the EncodingMode property, which can be set to "base64", "hex",
// "base64url", or any of the encodings listed at the link below.
//
const wchar_t *hashBytesENC(CkByteData &data);
// Hashes a file and returns the hash bytes.
//
// The hash algorithm is specified by the HashAlgorithm property,
//
// Any size file may be hashed because the file is hashed internally in streaming
// mode (keeping memory usage low and constant).
//
bool HashFile(const wchar_t *path, CkByteData &outBytes);
// Creates an asynchronous task to call the HashFile method with the arguments
// provided. (Async methods are available starting in Chilkat v9.5.0.52.)
// The caller is responsible for deleting the object returned by this method.
CkTaskW *HashFileAsync(const wchar_t *path);
// Hashes a file and returns the hash as an encoded string.
//
// The hash algorithm is specified by the HashAlgorithm property, The encoding is
// controlled by the EncodingMode property, which can be set to "base64", "hex",
// "base64url", or any of the encodings listed at the link below.
//
// Any size file is supported because the file is hashed internally in streaming
// mode (keeping memory usage low and constant).
//
bool HashFileENC(const wchar_t *path, CkString &outStr);
// Hashes a file and returns the hash as an encoded string.
//
// The hash algorithm is specified by the HashAlgorithm property, The encoding is
// controlled by the EncodingMode property, which can be set to "base64", "hex",
// "base64url", or any of the encodings listed at the link below.
//
// Any size file is supported because the file is hashed internally in streaming
// mode (keeping memory usage low and constant).
//
const wchar_t *hashFileENC(const wchar_t *path);
// Creates an asynchronous task to call the HashFileENC method with the arguments
// provided. (Async methods are available starting in Chilkat v9.5.0.52.)
// The caller is responsible for deleting the object returned by this method.
CkTaskW *HashFileENCAsync(const wchar_t *path);
// Finalizes a multi-step hash computation and returns the hash bytes.
bool HashFinal(CkByteData &outBytes);
// Finalizes a multi-step hash computation and returns the hash bytes encoded
// according to the EncodingMode property setting.
bool HashFinalENC(CkString &outStr);
// Finalizes a multi-step hash computation and returns the hash bytes encoded
// according to the EncodingMode property setting.
const wchar_t *hashFinalENC(void);
// Adds more bytes to the hash currently under computation. (See HashBeginBytes)
bool HashMoreBytes(CkByteData &data);
// The same as HashMoreBytes except the binary data is passed via a pointer and
// length.
bool HashMoreBytes2(const void *pByteData, unsigned long szByteData);
// Adds more text to the hash currently under computation. (See HashBeginString)
bool HashMoreString(const wchar_t *strData);
// Hashes a string and returns a binary hash. The hash algorithm is specified by
// the HashAlgorithm property,
//
// The Charset property controls the character encoding of the string that is
// hashed. Languages such as VB.NET, C#, and Visual Basic work with Unicode
// strings. If it is desired to hash Unicode directly (2 bytes/char) then set the
// Charset property to "Unicode". To implicitly convert to another charset before
// hashing, set the Charset property to the desired charset. For example, if
// Charset is set to "iso-8859-1", the input string is first implicitly converted
// to iso-8859-1 (1 byte per character) before hashing. The full list fo supported
// charsets is listed in the EncryptString method description.
//
// IMPORTANT: Hash algorithms hash bytes. Changing the bytes passed to a hash
// algorithm changes the result. A character (i.e. a visible glyph) can have
// different byte representations. The byte representation is defined by the
// Charset. For example, 'A' in us-ascii is a single byte 0x41, whereas in utf-16
// it is 2 bytes (0x41 0x00). The byte representation should be explicitly
// specified, otherwise unexpected results may occur.
//
bool HashString(const wchar_t *str, CkByteData &outData);
// Hashes a string and returns the hash bytes as an encoded string.
//
// The hash algorithm is specified by the HashAlgorithm property, The encoding is
// controlled by the EncodingMode property, which can be set to "base64", "hex",
// "base64url", or any of the encodings listed at the link below.
//
// The Charset property controls the character encoding of the string that is
// hashed. Languages such as VB.NET, C#, and Visual Basic work with Unicode
// strings. If it is desired to hash Unicode directly (2 bytes/char) then set the
// Charset property to "Unicode". To implicitly convert to another charset before
// hashing, set the Charset property to the desired charset. For example, if
// Charset is set to "iso-8859-1", the input string is first implicitly converted
// to iso-8859-1 (1 byte per character) before hashing. The full list of supported
// charsets is listed in the EncryptString method description.
//
bool HashStringENC(const wchar_t *str, CkString &outStr);
// Hashes a string and returns the hash bytes as an encoded string.
//
// The hash algorithm is specified by the HashAlgorithm property, The encoding is
// controlled by the EncodingMode property, which can be set to "base64", "hex",
// "base64url", or any of the encodings listed at the link below.
//
// The Charset property controls the character encoding of the string that is
// hashed. Languages such as VB.NET, C#, and Visual Basic work with Unicode
// strings. If it is desired to hash Unicode directly (2 bytes/char) then set the
// Charset property to "Unicode". To implicitly convert to another charset before
// hashing, set the Charset property to the desired charset. For example, if
// Charset is set to "iso-8859-1", the input string is first implicitly converted
// to iso-8859-1 (1 byte per character) before hashing. The full list of supported
// charsets is listed in the EncryptString method description.
//
const wchar_t *hashStringENC(const wchar_t *str);
// This method can be called after a digital signature has been verified by one of
// the Verify* methods. Returns true if a signing time for the Nth certificate is
// available and can be retrieved by either the GetSignatureSigningTime or
// GetSignatureSigningTimeStr methods.
bool HasSignatureSigningTime(int index);
// Computes a keyed-Hash Message Authentication Code (HMAC or KHMAC), which is a
// type of message authentication code (MAC) calculated using a specific algorithm
// involving a cryptographic hash function in combination with a secret key. As
// with any MAC, it may be used to simultaneously verify both the data integrity
// and the authenticity of a message. Any iterative cryptographic hash function,
// such as MD5, SHA-1, SHA256, or any of the hash algorithms listed in the
// HashAlgorithm property, may be used in the calculation of an HMAC; the resulting
// MAC algorithm is termed HMAC-MD5, HMAC-SHA-1, etc. accordingly. The
// cryptographic strength of the HMAC depends upon the cryptographic strength of
// the underlying hash function, on the size and quality of the key and the size of
// the hash output length in bits.
//
// The secret key is set by calling one of the following methods prior to calling
// this method: SetHmacKeyBytes, SetHmacKeyEncoded, or SetHmacKeyString.
//
// The hash algorithm is specified by the HashAlgorithm property.
//
// Note: If using Chilkat v9.5.0.55 or later, update your programs to use MacBytes
// instead (with the MacAlgorithm property set to "hmac").
//
bool HmacBytes(CkByteData &inBytes, CkByteData &outHmac);
// Computes an HMAC using a secret key and hash algorithm. The result is encoded to
// a string using the encoding (base64, hex, etc.) specified by the EncodingMode
// property.
//
// The secret key is set by calling one of the following methods prior to calling
// this method: SetHmacKeyBytes, SetHmacKeyEncoded, or SetHmacKeyString.
//
// The hash algorithm is specified by the HashAlgorithm property.
//
// Note: If using Chilkat v9.5.0.55 or later, update your programs to use
// MacBytesEnc instead (with the MacAlgorithm property set to "hmac").
//
bool HmacBytesENC(CkByteData &inBytes, CkString &outEncodedHmac);
// Computes an HMAC using a secret key and hash algorithm. The result is encoded to
// a string using the encoding (base64, hex, etc.) specified by the EncodingMode
// property.
//
// The secret key is set by calling one of the following methods prior to calling
// this method: SetHmacKeyBytes, SetHmacKeyEncoded, or SetHmacKeyString.
//
// The hash algorithm is specified by the HashAlgorithm property.
//
// Note: If using Chilkat v9.5.0.55 or later, update your programs to use
// MacBytesEnc instead (with the MacAlgorithm property set to "hmac").
//
const wchar_t *hmacBytesENC(CkByteData &inBytes);
// Computes an HMAC using a secret key and hash algorithm.
//
// The secret key is set by calling one of the following methods prior to calling
// this method: SetHmacKeyBytes, SetHmacKeyEncoded, or SetHmacKeyString.
//
// The hash algorithm is specified by the HashAlgorithm property.
//
// Note: If using Chilkat v9.5.0.55 or later, update your programs to use MacString
// instead (with the MacAlgorithm property set to "hmac").
//
bool HmacString(const wchar_t *inText, CkByteData &outHmac);
// Computes an HMAC using a secret key and hash algorithm. The result is encoded to
// a string using the encoding (base64, hex, etc.) specified by the EncodingMode
// property.
//
// The secret key is set by calling one of the following methods prior to calling
// this method: SetHmacKeyBytes, SetHmacKeyEncoded, or SetHmacKeyString.
//
// The hash algorithm is specified by the HashAlgorithm property.
//
// Note: If using Chilkat v9.5.0.55 or later, update your programs to use
// MacStringENC instead (with the MacAlgorithm property set to "hmac").
//
bool HmacStringENC(const wchar_t *inText, CkString &outEncodedHmac);
// Computes an HMAC using a secret key and hash algorithm. The result is encoded to
// a string using the encoding (base64, hex, etc.) specified by the EncodingMode
// property.
//
// The secret key is set by calling one of the following methods prior to calling
// this method: SetHmacKeyBytes, SetHmacKeyEncoded, or SetHmacKeyString.
//
// The hash algorithm is specified by the HashAlgorithm property.
//
// Note: If using Chilkat v9.5.0.55 or later, update your programs to use
// MacStringENC instead (with the MacAlgorithm property set to "hmac").
//
const wchar_t *hmacStringENC(const wchar_t *inText);
// Implements RFC 4226: HOTP: An HMAC-Based One-Time Password Algorithm. The
// arguments to this method are:
// secret: The shared secret in an enocded representation such as base64, hex,
// ascii, etc.
// secretEnc: The encoding of the shared secret, such as "base64"
// counterHex: The 8-byte counter in hexidecimal format.
// numDigits: The number of decimal digits to return.
// truncOffset: Normally set this to -1 for dynamic truncation. Otherwise can be set
// in the range 0..15.
// hashAlg: Normally set to "sha1". Can be set to other hash algorithms such as
// "sha256", "sha512", etc.
bool Hotp(const wchar_t *secret, const wchar_t *secretEnc, const wchar_t *counterHex, int numDigits, int truncOffset, const wchar_t *hashAlg, CkString &outStr);
// Implements RFC 4226: HOTP: An HMAC-Based One-Time Password Algorithm. The
// arguments to this method are:
// secret: The shared secret in an enocded representation such as base64, hex,
// ascii, etc.
// secretEnc: The encoding of the shared secret, such as "base64"
// counterHex: The 8-byte counter in hexidecimal format.
// numDigits: The number of decimal digits to return.
// truncOffset: Normally set this to -1 for dynamic truncation. Otherwise can be set
// in the range 0..15.
// hashAlg: Normally set to "sha1". Can be set to other hash algorithms such as
// "sha256", "sha512", etc.
const wchar_t *hotp(const wchar_t *secret, const wchar_t *secretEnc, const wchar_t *counterHex, int numDigits, int truncOffset, const wchar_t *hashAlg);
// Decompresses data that was compressed with CompressBytes.
//
// This is a legacy method that should not be used in new development. It will not
// be marked as deprecated or removed from future APIs because existing
// applications may have data already compressed using CompressBytes.
//
// This method expects the input to begin with an 8-byte header composed of a
// 4-byte magic number (0xB394A7E1) and the 4-byte length of the uncompressed data.
//
bool InflateBytes(CkByteData &data, CkByteData &outData);
// The opposite of CompressBytesENC. The EncodingMode and CompressionAlgorithm
// properties should match what was used when compressing.
bool InflateBytesENC(const wchar_t *str, CkByteData &outData);
// The opposite of CompressString. The Charset and CompressionAlgorithm properties
// should match what was used when compressing.
bool InflateString(CkByteData &data, CkString &outStr);
// The opposite of CompressString. The Charset and CompressionAlgorithm properties
// should match what was used when compressing.
const wchar_t *inflateString(CkByteData &data);
// The opposite of CompressStringENC. The Charset, EncodingMode, and
// CompressionAlgorithm properties should match what was used when compressing.
bool InflateStringENC(const wchar_t *str, CkString &outStr);
// The opposite of CompressStringENC. The Charset, EncodingMode, and
// CompressionAlgorithm properties should match what was used when compressing.
const wchar_t *inflateStringENC(const wchar_t *str);
// Returns true if the component is unlocked.
bool IsUnlocked(void);
// Provides information about what transpired in the last method called. For many
// methods, there is no information. For some methods, details about what
// transpired can be obtained via LastJsonData. For example, after calling a method
// to verify a signature, the LastJsonData will return JSON with details about the
// algorithms used for signature verification.
// The caller is responsible for deleting the object returned by this method.
CkJsonObjectW *LastJsonData(void);
// Loads the caller of the task's async method.
bool LoadTaskCaller(CkTaskW &task);
// Computes a Message Authentication Code on the bytes contained in bd, using the
// MAC algorithm specified in the MacAlgorithm property. The result is encoded to a
// string using the encoding (base64, hex, etc.) specified by the EncodingMode
// property.
bool MacBdENC(CkBinDataW &bd, CkString &outStr);
// Computes a Message Authentication Code on the bytes contained in bd, using the
// MAC algorithm specified in the MacAlgorithm property. The result is encoded to a
// string using the encoding (base64, hex, etc.) specified by the EncodingMode
// property.
const wchar_t *macBdENC(CkBinDataW &bd);
// Computes a Message Authentication Code using the MAC algorithm specified in the
// MacAlgorithm property.
bool MacBytes(CkByteData &inBytes, CkByteData &outBytes);
// The same as MacBytes except the binary data is passed via a pointer and length.
bool MacBytes2(const void *pByteData, unsigned long szByteData, CkByteData &outBytes);
// Computes a Message Authentication Code using the MAC algorithm specified in the
// MacAlgorithm property. The result is encoded to a string using the encoding
// (base64, hex, etc.) specified by the EncodingMode property.
bool MacBytesENC(CkByteData &inBytes, CkString &outStr);
// Computes a Message Authentication Code using the MAC algorithm specified in the
// MacAlgorithm property. The result is encoded to a string using the encoding
// (base64, hex, etc.) specified by the EncodingMode property.
const wchar_t *macBytesENC(CkByteData &inBytes);
// Computes a Message Authentication Code using the MAC algorithm specified in the
// MacAlgorithm property.
bool MacString(const wchar_t *inText, CkByteData &outBytes);
// Computes a Message Authentication Code using the MAC algorithm specified in the
// MacAlgorithm property. The result is encoded to a string using the encoding
// (base64, hex, etc.) specified by the EncodingMode property.
bool MacStringENC(const wchar_t *inText, CkString &outStr);
// Computes a Message Authentication Code using the MAC algorithm specified in the
// MacAlgorithm property. The result is encoded to a string using the encoding
// (base64, hex, etc.) specified by the EncodingMode property.
const wchar_t *macStringENC(const wchar_t *inText);
// Matches MySQL's AES_DECRYPT function. strEncryptedHex is a hex-encoded string of the AES
// encrypted data. The return value is the original unencrypted string.
bool MySqlAesDecrypt(const wchar_t *strEncryptedHex, const wchar_t *strPassword, CkString &outStr);
// Matches MySQL's AES_DECRYPT function. strEncryptedHex is a hex-encoded string of the AES
// encrypted data. The return value is the original unencrypted string.
const wchar_t *mySqlAesDecrypt(const wchar_t *strEncryptedHex, const wchar_t *strPassword);
// Matches MySQL's AES_ENCRYPT function. The return value is a hex-encoded string
// of the encrypted data. The equivalent call in MySQL would look like this:
// HEX(AES_ENCRYPT('The quick brown fox jumps over the lazy dog','password'))
bool MySqlAesEncrypt(const wchar_t *strData, const wchar_t *strPassword, CkString &outStr);
// Matches MySQL's AES_ENCRYPT function. The return value is a hex-encoded string
// of the encrypted data. The equivalent call in MySQL would look like this:
// HEX(AES_ENCRYPT('The quick brown fox jumps over the lazy dog','password'))
const wchar_t *mySqlAesEncrypt(const wchar_t *strData, const wchar_t *strPassword);
// In-place signs the contents of bd. The contents of bd is replaced with the
// PKCS7/CMS format signature that embeds the data that was signed.
bool OpaqueSignBd(CkBinDataW &bd);
// Creates an asynchronous task to call the OpaqueSignBd method with the arguments
// provided. (Async methods are available starting in Chilkat v9.5.0.52.)
// The caller is responsible for deleting the object returned by this method.
CkTaskW *OpaqueSignBdAsync(CkBinDataW &bd);
// Digitally signs a byte array and returns a PKCS7/CMS format signature. This is a
// signature that contains both the original data as well as the signature. A
// certificate must be set by calling SetSigningCert prior to calling this method.
bool OpaqueSignBytes(CkByteData &data, CkByteData &outData);
// Creates an asynchronous task to call the OpaqueSignBytes method with the
// arguments provided. (Async methods are available starting in Chilkat v9.5.0.52.)
// The caller is responsible for deleting the object returned by this method.
CkTaskW *OpaqueSignBytesAsync(CkByteData &data);
// The same as OpaqueSignBytes except the binary data is passed via a pointer and
// length.
bool OpaqueSignBytes2(const void *pByteData, unsigned long szByteData, CkByteData &outBytes);
// Digitally signs a byte array and returns a PKCS7/CMS format signature in encoded
// string format (such as Base64 or hex). This is a signature that contains both
// the original data as well as the signature. A certificate must be set by calling
// SetSigningCert prior to calling this method. The EncodingMode property controls
// the output encoding, which can be "Base64", "QP","Hex", etc. (See the
// EncodingMode property.)
bool OpaqueSignBytesENC(CkByteData &data, CkString &outStr);
// Digitally signs a byte array and returns a PKCS7/CMS format signature in encoded
// string format (such as Base64 or hex). This is a signature that contains both
// the original data as well as the signature. A certificate must be set by calling
// SetSigningCert prior to calling this method. The EncodingMode property controls
// the output encoding, which can be "Base64", "QP","Hex", etc. (See the
// EncodingMode property.)
const wchar_t *opaqueSignBytesENC(CkByteData &data);
// Creates an asynchronous task to call the OpaqueSignBytesENC method with the
// arguments provided. (Async methods are available starting in Chilkat v9.5.0.52.)
// The caller is responsible for deleting the object returned by this method.
CkTaskW *OpaqueSignBytesENCAsync(CkByteData &data);
// Digitally signs a string and returns a PKCS7/CMS format signature. This is a
// signature that contains both the original data as well as the signature. A
// certificate must be set by calling SetSigningCert prior to calling this method.
// The Charset property controls the character encoding of the string that is
// signed. (Languages such as VB.NET, C#, and Visual Basic work with Unicode
// strings.) To sign Unicode data (2 bytes per char), set the Charset property to
// "Unicode". To implicitly convert the string to a mutlibyte charset such as
// "iso-8859-1", "Shift_JIS", "utf-8", or something else, then set the Charset
// property to the name of the charset before signing. The complete list of
// charsets is listed in the EncryptString method description.
bool OpaqueSignString(const wchar_t *str, CkByteData &outData);
// Creates an asynchronous task to call the OpaqueSignString method with the
// arguments provided. (Async methods are available starting in Chilkat v9.5.0.52.)
// The caller is responsible for deleting the object returned by this method.
CkTaskW *OpaqueSignStringAsync(const wchar_t *str);
// Digitally signs a string and returns a PKCS7/CMS format signature in encoded
// string format (such as base64 or hex). This is a signature that contains both
// the original data as well as the signature. A certificate must be set by calling
// SetSigningCert prior to calling this method. The Charset property controls the
// character encoding of the string that is signed. (Languages such as VB.NET, C#,
// and Visual Basic work with Unicode strings.) To sign Unicode data (2 bytes per
// char), set the Charset property to "Unicode". To implicitly convert the string
// to a mutlibyte charset such as "iso-8859-1", "Shift_JIS", "utf-8", or something
// else, then set the Charset property to the name of the charset before signing.
// The complete list of charsets is listed in the EncryptString method description.
//
// The EncodingMode property controls the output encoding, which can be "Base64",
// "QP","Hex", etc. (See the EncodingMode property.)
//
bool OpaqueSignStringENC(const wchar_t *str, CkString &outStr);
// Digitally signs a string and returns a PKCS7/CMS format signature in encoded
// string format (such as base64 or hex). This is a signature that contains both
// the original data as well as the signature. A certificate must be set by calling
// SetSigningCert prior to calling this method. The Charset property controls the
// character encoding of the string that is signed. (Languages such as VB.NET, C#,
// and Visual Basic work with Unicode strings.) To sign Unicode data (2 bytes per
// char), set the Charset property to "Unicode". To implicitly convert the string
// to a mutlibyte charset such as "iso-8859-1", "Shift_JIS", "utf-8", or something
// else, then set the Charset property to the name of the charset before signing.
// The complete list of charsets is listed in the EncryptString method description.
//
// The EncodingMode property controls the output encoding, which can be "Base64",
// "QP","Hex", etc. (See the EncodingMode property.)
//
const wchar_t *opaqueSignStringENC(const wchar_t *str);
// Creates an asynchronous task to call the OpaqueSignStringENC method with the
// arguments provided. (Async methods are available starting in Chilkat v9.5.0.52.)
// The caller is responsible for deleting the object returned by this method.
CkTaskW *OpaqueSignStringENCAsync(const wchar_t *str);
// In-place verifies and unwraps the PKCS7/CMS contents of bd. If the signature
// is verified, the contents of bd will be replaced with the original data, and
// the method returns true. If the signature is not verified, then the contents
// of bd remain unchanged and the method returns false.
//
// Note: The signer certificates can be retrieved after any Verify* method call by
// using the NumSignerCerts property and the GetSignerCert method.
//
bool OpaqueVerifyBd(CkBinDataW &bd);
// Verifies an opaque signature and returns the original data. If the signature
// verification fails, the returned data will be 0 bytes in length.
//
// Note: The signer certificates can be retrieved after any Verify* method call by
// using the NumSignerCerts property and the GetSignerCert method.
//
bool OpaqueVerifyBytes(CkByteData &p7s, CkByteData &outOriginal);
// The same as OpaqueVerifyBytes except the binary data is passed via a pointer and
// length.
bool OpaqueVerifyBytes2(const void *pByteData, unsigned long szByteData, CkByteData &outBytes);
// Verifies an opaque signature (encoded in string form) and returns the original
// data. If the signature verification fails, the returned data will be 0 bytes in
// length.
//
// Note: The signer certificates can be retrieved after any Verify* method call by
// using the NumSignerCerts property and the GetSignerCert method.
//
bool OpaqueVerifyBytesENC(const wchar_t *p7s, CkByteData &outOriginal);
// Verifies an opaque signature and returns the original string. If the signature
// verification fails, the returned string will be 0 characters in length.
//
// Note: The signer certificates can be retrieved after any Verify* method call by
// using the NumSignerCerts property and the GetSignerCert method.
//
bool OpaqueVerifyString(CkByteData &p7s, CkString &outOriginal);
// Verifies an opaque signature and returns the original string. If the signature
// verification fails, the returned string will be 0 characters in length.
//
// Note: The signer certificates can be retrieved after any Verify* method call by
// using the NumSignerCerts property and the GetSignerCert method.
//
const wchar_t *opaqueVerifyString(CkByteData &p7s);
// Verifies an opaque signature (encoded in string form) and returns the original
// data string. If the signature verification fails, the returned string will be 0
// characters in length.
//
// Note: The signer certificates can be retrieved after any Verify* method call by
// using the NumSignerCerts property and the GetSignerCert method.
//
bool OpaqueVerifyStringENC(const wchar_t *p7s, CkString &outOriginal);
// Verifies an opaque signature (encoded in string form) and returns the original
// data string. If the signature verification fails, the returned string will be 0
// characters in length.
//
// Note: The signer certificates can be retrieved after any Verify* method call by
// using the NumSignerCerts property and the GetSignerCert method.
//
const wchar_t *opaqueVerifyStringENC(const wchar_t *p7s);
// Implements the PBKDF1 algorithm (Password Based Key Derivation Function #1). The
// password is converted to the character encoding represented by charset before being
// passed (internally) to the key derivation function. The hashAlg may be "md5",
// "sha1", "md2", etc. The salt should be random data at least 8 bytes (64 bits) in
// length. (The GenRandomBytesENC method is good for generating a random salt
// value.) The iterationCount should be no less than 1000. The length (in bits) of the
// derived key output by this method is controlled by outputKeyBitLen. The encoding argument may
// be "base64", "hex", etc. It controls the encoding of the output, and the
// expected encoding of the salt. The derived key is returned.
//
// Note: Starting in version 9.5.0.47, if the charset is set to one of the keywords
// "hex" or "base64", then the password will be considered binary data that is hex
// or base64 encoded. The bytes will be decoded and used directly as a binary
// password.
//
bool Pbkdf1(const wchar_t *password, const wchar_t *charset, const wchar_t *hashAlg, const wchar_t *salt, int iterationCount, int outputKeyBitLen, const wchar_t *encoding, CkString &outStr);
// Implements the PBKDF1 algorithm (Password Based Key Derivation Function #1). The
// password is converted to the character encoding represented by charset before being
// passed (internally) to the key derivation function. The hashAlg may be "md5",
// "sha1", "md2", etc. The salt should be random data at least 8 bytes (64 bits) in
// length. (The GenRandomBytesENC method is good for generating a random salt
// value.) The iterationCount should be no less than 1000. The length (in bits) of the
// derived key output by this method is controlled by outputKeyBitLen. The encoding argument may
// be "base64", "hex", etc. It controls the encoding of the output, and the
// expected encoding of the salt. The derived key is returned.
//
// Note: Starting in version 9.5.0.47, if the charset is set to one of the keywords
// "hex" or "base64", then the password will be considered binary data that is hex
// or base64 encoded. The bytes will be decoded and used directly as a binary
// password.
//
const wchar_t *pbkdf1(const wchar_t *password, const wchar_t *charset, const wchar_t *hashAlg, const wchar_t *salt, int iterationCount, int outputKeyBitLen, const wchar_t *encoding);
// Implements the PBKDF2 algorithm (Password Based Key Derivation Function #2). The
// password is converted to the character encoding represented by charset before being
// passed (internally) to the key derivation function. The hashAlg may be "sha256",
// "sha384", "sha512", "md5", "sha1", "md2", or any hash algorithm listed in the
// HashAlgorithm property. The salt should be random data at least 8 bytes (64
// bits) in length. (The GenRandomBytesENC method is good for generating a random
// salt value.) The iterationCount should be no less than 1000. The length (in bits) of the
// derived key output by this method is controlled by outputKeyBitLen. The encoding argument may
// be "base64", "hex", etc. It controls the encoding of the output, and the
// expected encoding of the salt. The derived key is returned.
//
// Note: The PBKDF2 function (internally) utilizes a PRF that is a pseudorandom
// function that is a keyed HMAC. The hash algorithm specified by hashAlg determines
// this PRF. If hashAlg is "SHA256", then HMAC-SHA256 is used for the PRF. Likewise,
// if the hash function is "SHA1", then HMAC-SHA1 is used. HMAC can be used with
// any hash algorithm.
//
// Note: Starting in version 9.5.0.47, if the charset is set to one of the keywords
// "hex" or "base64", then the password will be considered binary data that is hex
// or base64 encoded. The bytes will be decoded and used directly as a binary
// password.
//
bool Pbkdf2(const wchar_t *password, const wchar_t *charset, const wchar_t *hashAlg, const wchar_t *salt, int iterationCount, int outputKeyBitLen, const wchar_t *encoding, CkString &outStr);
// Implements the PBKDF2 algorithm (Password Based Key Derivation Function #2). The
// password is converted to the character encoding represented by charset before being
// passed (internally) to the key derivation function. The hashAlg may be "sha256",
// "sha384", "sha512", "md5", "sha1", "md2", or any hash algorithm listed in the
// HashAlgorithm property. The salt should be random data at least 8 bytes (64
// bits) in length. (The GenRandomBytesENC method is good for generating a random
// salt value.) The iterationCount should be no less than 1000. The length (in bits) of the
// derived key output by this method is controlled by outputKeyBitLen. The encoding argument may
// be "base64", "hex", etc. It controls the encoding of the output, and the
// expected encoding of the salt. The derived key is returned.
//
// Note: The PBKDF2 function (internally) utilizes a PRF that is a pseudorandom
// function that is a keyed HMAC. The hash algorithm specified by hashAlg determines
// this PRF. If hashAlg is "SHA256", then HMAC-SHA256 is used for the PRF. Likewise,
// if the hash function is "SHA1", then HMAC-SHA1 is used. HMAC can be used with
// any hash algorithm.
//
// Note: Starting in version 9.5.0.47, if the charset is set to one of the keywords
// "hex" or "base64", then the password will be considered binary data that is hex
// or base64 encoded. The bytes will be decoded and used directly as a binary
// password.
//
const wchar_t *pbkdf2(const wchar_t *password, const wchar_t *charset, const wchar_t *hashAlg, const wchar_t *salt, int iterationCount, int outputKeyBitLen, const wchar_t *encoding);
// Extracts the signature digest contained within a PKCS7 signature. The PKCS7 is
// passed in the encoding determined by the EncodingMode property (such as base64,
// hex, etc.) an the signature digest is returned in the same encoding.
bool Pkcs7ExtractDigest(int signerIndex, const wchar_t *pkcs7, CkString &outStr);
// Extracts the signature digest contained within a PKCS7 signature. The PKCS7 is
// passed in the encoding determined by the EncodingMode property (such as base64,
// hex, etc.) an the signature digest is returned in the same encoding.
const wchar_t *pkcs7ExtractDigest(int signerIndex, const wchar_t *pkcs7);
// Sets the initialization vector to a random value.
void RandomizeIV(void);
// Sets the secret key to a random value.
void RandomizeKey(void);
// Convenience method to read an entire file and return as a byte array.
bool ReadFile(const wchar_t *filename, CkByteData &outBytes);
// Provides a means for converting from one encoding to another (such as base64 to
// hex). This is helpful for programming environments where byte arrays are a real
// pain-in-the-***. The fromEncoding and toEncoding may be (case-insensitive) "Base64",
// "modBase64", "Base32", "Base58", "UU", "QP" (for quoted-printable), "URL" (for
// url-encoding), "Hex", "Q", "B", "url_oauth", "url_rfc1738", "url_rfc2396", and
// "url_rfc3986".
bool ReEncode(const wchar_t *encodedData, const wchar_t *fromEncoding, const wchar_t *toEncoding, CkString &outStr);
// Provides a means for converting from one encoding to another (such as base64 to
// hex). This is helpful for programming environments where byte arrays are a real
// pain-in-the-***. The fromEncoding and toEncoding may be (case-insensitive) "Base64",
// "modBase64", "Base32", "Base58", "UU", "QP" (for quoted-printable), "URL" (for
// url-encoding), "Hex", "Q", "B", "url_oauth", "url_rfc1738", "url_rfc2396", and
// "url_rfc3986".
const wchar_t *reEncode(const wchar_t *encodedData, const wchar_t *fromEncoding, const wchar_t *toEncoding);
// Sets the digital certificate to be used for decryption when the CryptAlgorithm
// property is set to "PKI". A private key is required for decryption. Because this
// method only specifies the certificate, a prerequisite is that the certificate w/
// private key must have been pre-installed on the computer. Private keys are
// stored in the Windows Protected Store (either a user account specific store, or
// the system-wide store). The Chilkat component will automatically locate and find
// the certificate's corresponding private key from the protected store when
// decrypting.
bool SetDecryptCert(CkCertW &cert);
// Sets the digital certificate to be used for decryption when the CryptAlgorithm
// property is set to "PKI". The private key is supplied in the 2nd argument to
// this method, so there is no requirement that the certificate be pre-installed on
// a computer before decrypting (if this method is called).
bool SetDecryptCert2(CkCertW &cert, CkPrivateKeyW &key);
// Sets the authenticated additional data from an encoded string. The authenticated
// additional data (AAD), if any, is used in authenticated encryption modes such as
// GCM. The aadStr argument can be set to any of the following strings: "base64",
// "hex", "quoted-printable", "ascii", or "url".
//
// The Aad is used when the CipherMode is "gcm" (Galois/Counter Mode), which is a
// mode valid for symmetric ciphers that have a block size of 16 bytes, such as AES
// or Twofish.
//
bool SetEncodedAad(const wchar_t *aadStr, const wchar_t *encoding);
// Sets the expected authenticated tag from an encoded string. The authenticated
// tag is used in authenticated encryption modes such as GCM. An application would
// set the expected authenticated tag prior to decrypting. The authTagStr argument can be
// set to any of the following strings: "base64", "hex", "quoted-printable",
// "ascii", or "url".
//
// The authenticated tag plays a role when the CipherMode is "gcm" (Galois/Counter
// Mode), which is a mode valid for symmetric block ciphers that have a block size
// of 16 bytes, such as AES or Twofish.
//
bool SetEncodedAuthTag(const wchar_t *authTagStr, const wchar_t *encoding);
// Sets the initialization vector from an encoded string. The encoding argument can
// be set to any of the following strings: "base64", "hex", "quoted-printable",
// "ascii", or "url".
void SetEncodedIV(const wchar_t *ivStr, const wchar_t *encoding);
// Sets the secret key from an encoded string. The encoding argument can be set to
// any of the following strings: "base64", "hex", "quoted-printable", "ascii", or
// "url".
void SetEncodedKey(const wchar_t *keyStr, const wchar_t *encoding);
// Sets the password-based encryption (PBE) salt bytes from an encoded string. The
// encoding argument can be set to any of the following strings: "base64", "hex",
// "quoted-printable", "ascii", or "url".
void SetEncodedSalt(const wchar_t *saltStr, const wchar_t *encoding);
// Tells the encryption library to use a specific digital certificate for
// public-key encryption. To encrypt with multiple certificates, call
// AddEncryptCert once for each certificate. (Calling this method is the equivalent
// of calling ClearEncryptCerts followed by AddEncryptCert.)
bool SetEncryptCert(CkCertW &cert);
// Sets the HMAC key to be used for one of the HMAC methods.
//
// Note: If using Chilkat v9.5.0.55 or later, update your programs to use
// SetMacKeyBytes instead.
//
void SetHmacKeyBytes(CkByteData &keyBytes);
// Sets the secret key to be used for one of the HMAC methods. The encoding can be set
// to any of the following strings: "base64", "hex", "quoted-printable", or "url".
//
// Note: If using Chilkat v9.5.0.55 or later, update your programs to use
// SetMacKeyEncoded instead.
//
void SetHmacKeyEncoded(const wchar_t *key, const wchar_t *encoding);
// Sets the MAC key to be used for one of the HMAC methods.
//
// Note: If using Chilkat v9.5.0.55 or later, update your programs to use
// SetMacKeyString instead.
//
void SetHmacKeyString(const wchar_t *key);
// Sets the initialization vector for a symmetric encryption algorithm (such as
// AES, BlowFish, TwoFish, DES, etc.). IV's are used in CBC mode
// (Cipher-Block-Chaining), but are not used in ECB mode (Electronic Cookbook). The
// length of the IV should equal the block size of the algorithm. (It is not equal
// to the key length). For AES and TwoFish, the block size (and thus IV size) is
// always 16 bytes. For Blowfish it's 8 bytes. For DES and 3DES it's 8 bytes.
void SetIV(const void *pByteData, unsigned long szByteData);
// Sets the MAC key to be used for one of the Mac methods.
bool SetMacKeyBytes(CkByteData &keyBytes);
// Sets the MAC key to be used for one of the Mac methods. The encoding can be set to
// any of the following strings: "base64", "hex", "quoted-printable", or "url".
bool SetMacKeyEncoded(const wchar_t *key, const wchar_t *encoding);
// Sets the MAC key to be used for one of the Mac methods.
bool SetMacKeyString(const wchar_t *key);
// Sets the value of the SecretKey property.
void SetSecretKey(const void *pByteData, unsigned long szByteData);
// Accepts a password string and (internally) generates a binary secret key of the
// appropriate bit length and sets the SecretKey property. This method should only
// be used if you are using Chilkat for both encryption and decryption because the
// password-to-secret-key algorithm would need to be identical for the decryption
// to match the encryption.
//
// There is no minimum or maximum password length. The password string is
// transformed to a binary secret key by computing the MD5 digest (of the utf-8
// password) to obtain 16 bytes. If the KeyLength is greater than 16 bytes, then
// the MD5 digest of the Base64 encoding of the utf-8 password is added. A max of
// 32 bytes of key material is generated, and this is truncated to the actual
// KeyLength required. The example below shows how to manually duplicate the
// computation.
//
void SetSecretKeyViaPassword(const wchar_t *password);
// Specifies a certificate to be used when creating PKCS7 digital signatures.
// Signing requires both a certificate and private key. In this case, the private
// key is implicitly specified if the certificate originated from a PFX that
// contains the corresponding private key, or if on a Windows-based computer where
// the certificate and corresponding private key are pre-installed. (If a PFX file
// is used, it is provided via the AddPfxSourceFile or AddPfxSourceData methods.)
bool SetSigningCert(CkCertW &cert);
// Specifies a digital certificate and private key to be used for creating PKCS7
// digital signatures.
bool SetSigningCert2(CkCertW &cert, CkPrivateKeyW &privateKey);
// Sets the timestamp authority (TSA) options for cases where a CAdES-T signature
// is to be created. The http is used to send the requests, and it allows for
// connection related settings and timeouts to be set. For example, if HTTP or
// SOCKS proxies are required, these features can be specified on the http.
void SetTsaHttpObj(CkHttpW &http);
// Sets the digital certificate to be used in verifying a signature.
bool SetVerifyCert(CkCertW &cert);
// Digitally signs the contents of dataToSign and returns the detached digital signature
// in an encoded string (according to the EncodingMode property setting).
bool SignBdENC(CkBinDataW &dataToSign, CkString &outStr);
// Digitally signs the contents of dataToSign and returns the detached digital signature
// in an encoded string (according to the EncodingMode property setting).
const wchar_t *signBdENC(CkBinDataW &dataToSign);
// Creates an asynchronous task to call the SignBdENC method with the arguments
// provided. (Async methods are available starting in Chilkat v9.5.0.52.)
// The caller is responsible for deleting the object returned by this method.
CkTaskW *SignBdENCAsync(CkBinDataW &dataToSign);
// Digitally signs a byte array and returns the detached digital signature. A
// certificate must be set by calling SetSigningCert prior to calling this method.
bool SignBytes(CkByteData &data, CkByteData &outData);
// Creates an asynchronous task to call the SignBytes method with the arguments
// provided. (Async methods are available starting in Chilkat v9.5.0.52.)
// The caller is responsible for deleting the object returned by this method.
CkTaskW *SignBytesAsync(CkByteData &data);
// The same as SignBytes except the binary data is passed via a pointer and length.
bool SignBytes2(const void *pByteData, unsigned long szByteData, CkByteData &outBytes);
// Digitally signs a byte array and returns the detached digital signature encoded
// as a printable string. A certificate must be set by calling SetSigningCert prior
// to calling this method. The EncodingMode property controls the output encoding,
// which can be "Base64", "QP", or "Hex".
bool SignBytesENC(CkByteData &data, CkString &outStr);
// Digitally signs a byte array and returns the detached digital signature encoded
// as a printable string. A certificate must be set by calling SetSigningCert prior
// to calling this method. The EncodingMode property controls the output encoding,
// which can be "Base64", "QP", or "Hex".
const wchar_t *signBytesENC(CkByteData &data);
// Creates an asynchronous task to call the SignBytesENC method with the arguments
// provided. (Async methods are available starting in Chilkat v9.5.0.52.)
// The caller is responsible for deleting the object returned by this method.
CkTaskW *SignBytesENCAsync(CkByteData &data);
// Digitally signs a the contents of sb and returns the PKCS7 detached digital
// signature as an encoded string according to the EncodingMode property setting.
bool SignSbENC(CkStringBuilderW &sb, CkString &outStr);
// Digitally signs a the contents of sb and returns the PKCS7 detached digital
// signature as an encoded string according to the EncodingMode property setting.
const wchar_t *signSbENC(CkStringBuilderW &sb);
// Creates an asynchronous task to call the SignSbENC method with the arguments
// provided. (Async methods are available starting in Chilkat v9.5.0.52.)
// The caller is responsible for deleting the object returned by this method.
CkTaskW *SignSbENCAsync(CkStringBuilderW &sb);
// Digitally signs a string and returns the detached digital signature. A
// certificate must be set by calling SetSigningCert prior to calling this method.
// The Charset property controls the character encoding of the string that is
// signed. (Languages such as VB.NET, C#, and Visual Basic work with Unicode
// strings.) To sign Unicode data (2 bytes per char), set the Charset property to
// "Unicode". To implicitly convert the string to a mutlibyte charset such as
// "iso-8859-1", "Shift_JIS", "utf-8", or something else, then set the Charset
// property to the name of the charset before signing. The complete list of
// charsets is listed in the EncryptString method description.
bool SignString(const wchar_t *str, CkByteData &outData);
// Creates an asynchronous task to call the SignString method with the arguments
// provided. (Async methods are available starting in Chilkat v9.5.0.52.)
// The caller is responsible for deleting the object returned by this method.
CkTaskW *SignStringAsync(const wchar_t *str);
// Digitally signs a string and returns the PKCS7 detached digital signature as an
// encoded string. A certificate must be set by calling SetSigningCert prior to
// calling this method. The Charset property controls the character encoding of the
// string that is signed. (Languages such as VB.NET, C#, and Visual Basic work with
// Unicode strings.) To sign Unicode data (2 bytes per char), set the Charset
// property to "Unicode". To implicitly convert the string to a mutlibyte charset
// such as "iso-8859-1", "Shift_JIS", "utf-8", or something else, then set the
// Charset property to the name of the charset before signing. The complete list of
// charsets is listed in the EncryptString method description.
//
// The encoding of the output string is controlled by the EncodingMode property,
// which can be set to "Base64", "QP", or "Hex".
//
bool SignStringENC(const wchar_t *str, CkString &outStr);
// Digitally signs a string and returns the PKCS7 detached digital signature as an
// encoded string. A certificate must be set by calling SetSigningCert prior to
// calling this method. The Charset property controls the character encoding of the
// string that is signed. (Languages such as VB.NET, C#, and Visual Basic work with
// Unicode strings.) To sign Unicode data (2 bytes per char), set the Charset
// property to "Unicode". To implicitly convert the string to a mutlibyte charset
// such as "iso-8859-1", "Shift_JIS", "utf-8", or something else, then set the
// Charset property to the name of the charset before signing. The complete list of
// charsets is listed in the EncryptString method description.
//
// The encoding of the output string is controlled by the EncodingMode property,
// which can be set to "Base64", "QP", or "Hex".
//
const wchar_t *signStringENC(const wchar_t *str);
// Creates an asynchronous task to call the SignStringENC method with the arguments
// provided. (Async methods are available starting in Chilkat v9.5.0.52.)
// The caller is responsible for deleting the object returned by this method.
CkTaskW *SignStringENCAsync(const wchar_t *str);
// Convert a string to a byte array where the characters are encoded according to
// the charset specified.
bool StringToBytes(const wchar_t *inStr, const wchar_t *charset, CkByteData &outBytes);
// Implements RFC 6238: TOTP: Time-Based One-Time Password Algorithm. The arguments
// to this method are:
// secret: The shared secret in an enocded representation such as base64, hex,
// ascii, etc.
// secretEnc: The encoding of the shared secret, such as "base64"
// t0: The Unix time to start counting time steps. It is a number in decimal
// string form. A Unix time is the number of seconds elapsed since midnight UTC of
// January 1, 1970. "0" is a typical value used for this argument.
// tNow: The current Unix time in decimal string form. To use the current
// system date/time, pass an empty string for this argument.
// tStep: The time step in seconds. A typical value is 30. Note: Both client and
// server must pre-agree on the secret, the t0, and the tStep.
// numDigits: The number of decimal digits to return.
// truncOffset: Normally set this to -1 for dynamic truncation. Otherwise can be set
// in the range 0..15.
// hashAlg: Normally set to "sha1". Can be set to other hash algorithms such as
// "sha256", "sha512", etc.
bool Totp(const wchar_t *secret, const wchar_t *secretEnc, const wchar_t *t0, const wchar_t *tNow, int tStep, int numDigits, int truncOffset, const wchar_t *hashAlg, CkString &outStr);
// Implements RFC 6238: TOTP: Time-Based One-Time Password Algorithm. The arguments
// to this method are:
// secret: The shared secret in an enocded representation such as base64, hex,
// ascii, etc.
// secretEnc: The encoding of the shared secret, such as "base64"
// t0: The Unix time to start counting time steps. It is a number in decimal
// string form. A Unix time is the number of seconds elapsed since midnight UTC of
// January 1, 1970. "0" is a typical value used for this argument.
// tNow: The current Unix time in decimal string form. To use the current
// system date/time, pass an empty string for this argument.
// tStep: The time step in seconds. A typical value is 30. Note: Both client and
// server must pre-agree on the secret, the t0, and the tStep.
// numDigits: The number of decimal digits to return.
// truncOffset: Normally set this to -1 for dynamic truncation. Otherwise can be set
// in the range 0..15.
// hashAlg: Normally set to "sha1". Can be set to other hash algorithms such as
// "sha256", "sha512", etc.
const wchar_t *totp(const wchar_t *secret, const wchar_t *secretEnc, const wchar_t *t0, const wchar_t *tNow, int tStep, int numDigits, int truncOffset, const wchar_t *hashAlg);
// Trim a string ending with a specific substring until the string no longer ends
// with that substring.
bool TrimEndingWith(const wchar_t *inStr, const wchar_t *ending, CkString &outStr);
// Trim a string ending with a specific substring until the string no longer ends
// with that substring.
const wchar_t *trimEndingWith(const wchar_t *inStr, const wchar_t *ending);
// Unlocks the component. This must be called once prior to calling any other
// method.
bool UnlockComponent(const wchar_t *unlockCode);
// Adds an XML certificate vault to the object's internal list of sources to be
// searched for certificates and private keys when encrypting/decrypting or
// signing/verifying. Unlike the AddPfxSourceData and AddPfxSourceFile methods,
// only a single XML certificate vault can be used. If UseCertVault is called
// multiple times, only the last certificate vault will be used, as each call to
// UseCertVault will replace the certificate vault provided in previous calls.
bool UseCertVault(CkXmlCertVaultW &vault);
// Verifies a digital signature against the original data contained in data.
// Returns true if the signature is verified.
//
// Note: The signer certificates can be retrieved after any Verify* method call by
// using the NumSignerCerts property and the GetSignerCert method.
//
bool VerifyBdENC(CkBinDataW &data, const wchar_t *encodedSig);
// Verifies a byte array against a digital signature and returns true if the byte
// array is unaltered.
//
// Note: The signer certificates can be retrieved after any Verify* method call by
// using the NumSignerCerts property and the GetSignerCert method.
//
bool VerifyBytes(CkByteData &data, CkByteData &sig);
// Verifies a byte array against a string-encoded digital signature and returns
// true if the byte array is unaltered. This method can be used to verify a
// signature produced by SignBytesENC. The EncodingMode property must be set prior
// to calling to match the encoding of the digital signature string ("Base64",
// "QP", or "Hex").
//
// Note: The signer certificates can be retrieved after any Verify* method call by
// using the NumSignerCerts property and the GetSignerCert method.
//
bool VerifyBytesENC(CkByteData &data, const wchar_t *encodedSig);
// Verifies a .p7s (PKCS #7 Signature) against the original file (or exact copy of
// it). If the inFilename has not been modified, the return value is true, otherwise it
// is false. This method is equivalent to VerifyP7S.
//
// Note: The signer certificates can be retrieved after any Verify* method call by
// using the NumSignerCerts property and the GetSignerCert method.
//
bool VerifyDetachedSignature(const wchar_t *inFilename, const wchar_t *p7sFilename);
// Verifies a .p7m file and extracts the original file from the .p7m. Returns
// true if the signature is valid and the contents are unchanged. Otherwise
// returns false.
//
// Note: The signer certificates can be retrieved after any Verify* method call by
// using the NumSignerCerts property and the GetSignerCert method.
//
bool VerifyP7M(const wchar_t *p7mPath, const wchar_t *destPath);
// Verifies a .p7s (PKCS #7 Signature) against the original file (or exact copy of
// it). If the inFilename has not been modified, the return value is true, otherwise it
// is false.
//
// Note: The signer certificates can be retrieved after any Verify* method call by
// using the NumSignerCerts property and the GetSignerCert method.
//
bool VerifyP7S(const wchar_t *inFilename, const wchar_t *p7sFilename);
// Verifies a digital signature against the original data contained in sb.
// Returns true if the signature is verified.
//
// Note: The signer certificates can be retrieved after any Verify* method call by
// using the NumSignerCerts property and the GetSignerCert method.
//
bool VerifySbENC(CkStringBuilderW &sb, const wchar_t *encodedSig);
// Verifies a string against a binary digital signature and returns true if the
// string is unaltered. This method can be used to verify a signature produced by
// SignString. The Charset property must be set to the charset that was used when
// creating the signature.
//
// Note: The signer certificates can be retrieved after any Verify* method call by
// using the NumSignerCerts property and the GetSignerCert method.
//
bool VerifyString(const wchar_t *str, CkByteData &sig);
// Verifies a string against a string-encoded digital signature and returns true if
// the string is unaltered. This method can be used to verify a signature produced
// by SignStringENC. The Charset and EncodingMode properties must be set to the
// same values that were used when creating the signature.
//
// Note: The signer certificates can be retrieved after any Verify* method call by
// using the NumSignerCerts property and the GetSignerCert method.
//
bool VerifyStringENC(const wchar_t *str, const wchar_t *encodedSig);
// Convenience method to write an entire byte array to a file.
bool WriteFile(const wchar_t *filename, CkByteData &fileData);
// END PUBLIC INTERFACE
};
#if !defined(__sun__) && !defined(__sun)
#pragma pack (pop)
#endif
#endif
| [
"aanciaes.miguel@gmail.com"
] | aanciaes.miguel@gmail.com |
254ff1eb1670180291b095936f8fd2599078e278 | e777ab24866ee8749f83392af5bd296699126aa7 | /gObject.cpp | 660016e2d07956bce0b3568a5b7c2b53cd6cfb25 | [] | no_license | trigrass2/giveda_gobject_ansi_cpp | 08a67d7ad1cde2859da9152e46bef636228c6f8c | fb7b7a47927dcc7bb0d214ced4d72218e213598e | refs/heads/master | 2020-04-16T14:29:09.282545 | 2019-01-04T05:21:03 | 2019-01-04T05:21:03 | 165,668,478 | 2 | 1 | null | 2019-02-12T04:28:10 | 2019-01-14T13:42:40 | C++ | UTF-8 | C++ | false | false | 5,612 | cpp | /*
* Copyright (C) 2019 明心 <imleizhang@qq.com>
* All rights reserved.
*
* This program is an open-source software; and it 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.
* This program is not a free software; so you can not redistribute it and/or
* modify it without my authorization. If you only need use it for personal
* study purpose(no redistribution, and without any commercial behavior),
* you should accept and follow the GNU AGPL v3 license, otherwise there
* will be your's credit and legal risks. And if you need use it for any
* commercial purpose, you should first get commercial authorization from
* me, otherwise there will be your's credit and legal risks.
*
*/
#include <gObject.h>
#include <string>
#include <algorithm>
#include <stdio.h>
struct SenderPair
{
SenderPair(GObject* _sender, SIGNAL_POINTER(void*) _signal )
:sender(_sender), signal(_signal)
{ }
bool operator==(const SenderPair &r ) const
{
return r.sender == sender && r.signal == signal;
}
GObject* sender;
SIGNAL_POINTER(void*) signal;
};
class GObjectPrivate
{
public:
GObjectPrivate ( GObject *p, const char* nm ) :m_parent ( p ), strName ( nm )
{
spLstInReceiver.clear();
receiverLstInSender.clear();
}
~GObjectPrivate()
{
spLstInReceiver.clear();
receiverLstInSender.clear();
}
GObject *m_parent;
string strName;
list<SenderPair> spLstInReceiver;
list<GObject*> receiverLstInSender;
};
#define WARNING printf
GObject::GObject ( GObject *p, const char *n )
:m_priv ( new GObjectPrivate ( p, NULL==n?"":n ) )
{
}
GObject::~GObject()
{
destructAsSender();
destructAsReceiver();
delete m_priv;
}
void GObject::saveSenderPair(GObject* sender, SIGNAL_POINTER(void*) signal)
{
SenderPair sp(sender, signal);
m_priv->spLstInReceiver.push_back(sp);
}
void GObject::deleteSenderPair(GObject* sender, SIGNAL_POINTER(void*) signal)
{
m_priv->spLstInReceiver.remove( SenderPair(sender, signal) );
}
class Receiver_Is
{
public:
GObject* receiver;
bool operator( ) ( Slot<void*> &obj1 )
{
return obj1.m_receiver == this->receiver;
}
bool operator( ) ( GObject* receiver )
{
return this->receiver == receiver;
}
Receiver_Is(GObject* r)
:receiver(r)
{
}
};
int GObject::privConnect(GObject* sender, SIGNAL_POINTER(void*) signal, GObject* receiver, void* slot)
{
if ( sender == 0 || receiver == 0 || signal == 0 || slot == 0 )
{
WARNING ( "can not connect %s::%p to %s::%p\n",
sender ? sender->name() : "(null)",
signal,
receiver ? receiver->name() : "(null)",
slot );
return -1;
}
Slot<void*> vslot(receiver, (void*)slot);
SIGNAL_TYPE_ITERATOR(void*) it = std::find(signal->begin(), signal->end(), vslot );
if(it != signal->end() )
{
return 0;
}
signal->push_back( vslot );
sender->saveReceiver(receiver);
receiver->saveSenderPair( sender, signal );
return 0;
}
void GObject::destructAsReceiver()
{
list<SenderPair >::iterator it = m_priv->spLstInReceiver.begin();
while(it != m_priv->spLstInReceiver.end() )
{
it->signal->remove_if( Receiver_Is(this) );
it->sender->m_priv->receiverLstInSender.remove_if( Receiver_Is(this) );
++it;
}
}
class Sender_Is
{
public:
GObject* sender;
bool operator( ) ( SenderPair &obj1 )
{
return obj1.sender == sender;
}
Sender_Is(GObject* s)
:sender(s)
{
}
};
void GObject::destructAsSender()
{
list<GObject*>::iterator it = m_priv->receiverLstInSender.begin();
while(it != m_priv->receiverLstInSender.end() )
{
GObject* receiver = *it;
receiver->m_priv->spLstInReceiver.remove_if( Sender_Is(this) );
++it;
}
}
void GObject::saveReceiver(GObject *receiver)
{
m_priv->receiverLstInSender.push_back( receiver );
}
void GObject::deleteReceiver(GObject *receiver)
{
list<GObject*>::iterator it = std::find(m_priv->receiverLstInSender.begin(), m_priv->receiverLstInSender.end(), receiver );
if(it == m_priv->receiverLstInSender.end() )
{
return ;
}
m_priv->receiverLstInSender.erase(it);
}
int GObject::privDisconnect(GObject* sender, SIGNAL_POINTER(void*) signal, GObject* receiver, void* slot)
{
if ( sender == 0 || receiver == 0 || signal == 0 || slot == 0 )
{
WARNING ( "can not disconnect sender %s::%p from receiver %s::%p\n",
sender ? sender->name() : "(null)",
signal,
receiver ? receiver->name() : "(null)",
slot );
return -1;
}
Slot<void*> vslot(receiver, (void*)slot);
SIGNAL_TYPE_ITERATOR(void*) it = std::find(signal->begin(), signal->end(), vslot );
if(it == signal->end() )
{
return 0;
}
signal->remove( vslot );
sender->deleteReceiver(receiver);
receiver->deleteSenderPair( sender, signal );
return 0;
}
const char* GObject::name() const
{
return m_priv->strName.c_str();
}
GObject* GObject::parent() const
{
return m_priv->m_parent;
}
GObject& GObject::operator= ( const GObject& /*src*/ )
{
return *this;
}
GObject::GObject ( const GObject& /*src*/ )
:m_priv ( new GObjectPrivate ( NULL, "" ) )
{
}
| [
"692463260@qq.com"
] | 692463260@qq.com |
0e34f945fc3d6c51a2d4fafb99da93c988e99185 | 1f327d487841a724a49463c2a784bfb25d4c4c13 | /src/test/test_miracle_hash.cpp | fa006497add5fd3914234aca9592ee0bd7e94fc1 | [
"MIT"
] | permissive | MiracleCity/MiracleCity | d00dad5c575c2e8c893609c74f92c706505fe2db | 7520173d387085b0b3e4d24ac4791d7179ee2c58 | refs/heads/master | 2023-07-12T16:57:40.211074 | 2021-08-20T09:58:02 | 2021-08-20T09:58:02 | 377,951,373 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 750 | cpp | // Copyright (c) 2009-2016 The Bitcoin Core developers
// Copyright (c) 2017-2019 The Raven Core developers
// Copyright (c) 2020 The Miracle Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include <arith_uint256.h>
#include <hash.h>
#include <stdio.h>
#include <string.h>
#include <utilstrencodings.h>
int main(int argc, char **argv)
{
if (argc == 2)
{
std::vector<unsigned char> rawHeader = ParseHex(argv[1]);
std::cout << groestlhash(rawHeader.data(), rawHeader.data() + 80).GetHex();
} else
{
std::cerr << "Usage: test_miracle_hash blockHex" << std::endl;
return 1;
}
return 0;
} | [
"dev@miraclecity.io"
] | dev@miraclecity.io |
214a0ccf951e0998b46983dbc0e4b65a88b74891 | 407c96d904cf46a5f95217e44071f999783698a3 | /tests/chains/Filecoin/TWCoinTypeTests.cpp | 6292d0be1e5c419a681e6af5ee95ba1e01af904c | [
"BSD-3-Clause",
"LicenseRef-scancode-protobuf",
"LGPL-2.1-only",
"Swift-exception",
"MIT",
"BSL-1.0",
"Apache-2.0"
] | permissive | trustwallet/wallet-core | dfeb276ddf1e3faf46c82f0a0cda2551e9c873f6 | 0c8e2e58aa8eb1360e4a6b03df91fb2de97e3caa | refs/heads/master | 2023-08-21T11:58:43.983035 | 2023-08-18T10:51:13 | 2023-08-18T10:51:13 | 170,738,310 | 2,311 | 1,283 | Apache-2.0 | 2023-09-08T11:26:39 | 2019-02-14T18:25:54 | C++ | UTF-8 | C++ | false | false | 1,795 | cpp | // Copyright © 2017-2023 Trust Wallet.
//
// This file is part of Trust. The full Trust copyright notice, including
// terms governing use, modification, and redistribution, is contained in the
// file LICENSE at the root of the source code distribution tree.
//
// This is a GENERATED FILE, changes made here MAY BE LOST.
// Generated one-time (codegen/bin/cointests)
//
#include "TestUtilities.h"
#include <TrustWalletCore/TWCoinTypeConfiguration.h>
#include <gtest/gtest.h>
TEST(TWFilecoinCoinType, TWCoinType) {
auto symbol = WRAPS(TWCoinTypeConfigurationGetSymbol(TWCoinTypeFilecoin));
auto txId = WRAPS(TWStringCreateWithUTF8Bytes("bafy2bzacedsgjcd6xfhrrymmfrqubb44otlyhvgqkgsh533d5j5hwniiqespm"));
auto txUrl = WRAPS(TWCoinTypeConfigurationGetTransactionURL(TWCoinTypeFilecoin, txId.get()));
auto accId = WRAPS(TWStringCreateWithUTF8Bytes("f1abjxfbp274xpdqcpuaykwkfb43omjotacm2p3za"));
auto accUrl = WRAPS(TWCoinTypeConfigurationGetAccountURL(TWCoinTypeFilecoin, accId.get()));
auto id = WRAPS(TWCoinTypeConfigurationGetID(TWCoinTypeFilecoin));
auto name = WRAPS(TWCoinTypeConfigurationGetName(TWCoinTypeFilecoin));
ASSERT_EQ(TWCoinTypeConfigurationGetDecimals(TWCoinTypeFilecoin), 18);
ASSERT_EQ(TWBlockchainFilecoin, TWCoinTypeBlockchain(TWCoinTypeFilecoin));
ASSERT_EQ(0x0, TWCoinTypeP2shPrefix(TWCoinTypeFilecoin));
ASSERT_EQ(0x0, TWCoinTypeStaticPrefix(TWCoinTypeFilecoin));
assertStringsEqual(symbol, "FIL");
assertStringsEqual(txUrl, "https://filfox.info/en/message/bafy2bzacedsgjcd6xfhrrymmfrqubb44otlyhvgqkgsh533d5j5hwniiqespm");
assertStringsEqual(accUrl, "https://filfox.info/en/address/f1abjxfbp274xpdqcpuaykwkfb43omjotacm2p3za");
assertStringsEqual(id, "filecoin");
assertStringsEqual(name, "Filecoin");
}
| [
"noreply@github.com"
] | noreply@github.com |
19e3bc6311d6320f20d2a3f67f74b62e55e919de | bb5abc6d748f77fbcefa6d22b217038218fa6635 | /C++ University Projects/Semester 4 Space shooter Game SFML/Bullet.h | 9398e23734cf493e998390329a4b5a742d753dd7 | [] | no_license | MDziubinski/University | b0fa3fb6c00d79350f1eda7deabe1ca86a934103 | 22ff84f94f2750d4572f1da1bb5d0c595f3bf398 | refs/heads/main | 2023-08-11T09:23:38.940224 | 2021-09-24T11:19:43 | 2021-09-24T11:19:43 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 481 | h | #pragma once
#include<SFML/Graphics/Sprite.hpp>
#include<SFML/Graphics/Texture.hpp>
#include<SFML/Graphics/Drawable.hpp>
#include<SFML/Graphics/RenderTarget.hpp>
#include<SFML/Graphics/RenderStates.hpp>
class Bullet : public sf::Drawable
{
public:
sf::Sprite shape;
Bullet();
~Bullet();
void Initialize(const sf::Texture& texture, sf::Vector2f pos);
void Move(const sf::Vector2f& direction);
void draw(sf::RenderTarget& target, sf::RenderStates states) const override;
}; | [
"mikolaj.dziubinski@interia.pl"
] | mikolaj.dziubinski@interia.pl |
4cfad15cd758dc112644e23edd6ddb9861d4f3d1 | ca7e94eb918c080fe256f0120613f1251709229f | /HK3/Data structures and algorithms/code/theory/Tuan_06/1712358/Cau_08/linkedlist.h | 427f769e246f204896b8584c1398c9fdab7b9bf7 | [] | no_license | minhduc2803/School | 8965d49a0994cf1cf4a44d7268a513a92fceeb62 | e636cdc9869312472b2ad508d0abc9f4c12892c4 | refs/heads/master | 2022-12-26T04:41:28.511045 | 2021-01-23T05:36:11 | 2021-01-23T05:36:11 | 245,672,910 | 0 | 0 | null | 2022-12-11T20:53:27 | 2020-03-07T17:07:39 | C++ | UTF-8 | C++ | false | false | 348 | h | #ifndef _LINKEDLIST_H_
#define _LINKEDLIST_H_
#include <iostream>
using namespace std;
struct node {
int key;
node* next;
};
struct linkedlist {
node *head;
node *tail;
};
void initialize(linkedlist &L);
void addtail(linkedlist &L, int value);
void output(linkedlist L);
bool HaiDanhSachGiongNhauKhong(linkedlist L, linkedlist L1);
#endif | [
"minduc97@gmail.com"
] | minduc97@gmail.com |
f303c382be68264fa9012aa4b321f7aefb4846a5 | 4cc285b0c585241ff4404087e6fbb901195639be | /NeuralNetworkNumbers/venv/Lib/site-packages/tensorflow/include/external/mkl_dnn_v1/src/cpu/x64/lrn/jit_uni_lrn_kernel.hpp | 7a6d594b2de397c082f9ba28150534eb99bf7e92 | [] | no_license | strazhg/NeuralNetworksPython | 815542f4ddbb86e918e657f783158f8c078de514 | 15038e44a5a6c342336c119cdd2abdeffd84b5b1 | refs/heads/main | 2023-04-16T18:51:29.602644 | 2021-04-27T14:46:55 | 2021-04-27T14:46:55 | 361,944,482 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 129 | hpp | version https://git-lfs.github.com/spec/v1
oid sha256:0e8b0d02fe6fa2e10001648197de3810128a07f1cbb189e22a50a1e0291f5d1f
size 9716
| [
"golubstrazh@gmail.com"
] | golubstrazh@gmail.com |
85deaead24c3e0633e7aa934b63861551d90d5ff | cba750832879e5dc64d9c9d10b57941a4125ccf8 | /P4++/p4pp.cpp | c8b4c368415e6a11f6b645fd2d98b0a0191ffe54 | [] | no_license | timchapelle/ARCADE | 88f86b1c38f04df3c4cacde3693f80106630f1ca | 0c5396e62adaaa07510a97ce14795c0552db5894 | refs/heads/master | 2021-01-10T02:36:23.403717 | 2016-02-02T12:35:12 | 2016-02-02T12:35:12 | 49,871,979 | 4 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 5,678 | cpp | /* ______ _____
* | _ ) / _ | _ _
* | |_) / / /_| |_____| |_____| |_____
* | _/ /____ _____ _____ _____|
* | | | | |_| |_|
* |_ | |__|
*
* Auteur : Tim Chapelle
* Release alpha: 24/01/2016
*
* Jeu de Puissance 4 en C++.
* */
#include <iostream>
#include <array>
using namespace std;
enum Couleur { vide, rouge, vert };
typedef array<array<Couleur, 7>, 6> Grille;
// Fonction d'initialisation de la grille
void initialise(Grille& grille) // on pourrait aussi imaginer Grille grille(initialise())
{
for(auto &ligne : grille) { //on itère sur chaque ligne puis sur chaque case
for(auto &kase : ligne) { // kase et pas case (mot réservé) &kase : si pas de & le contenu ne sera pas modifié
kase = vide;
}
}
}
// Fonction d'affichage de la grille
// Affiche O pour une case rouge, X pour une vert et ' ' pour une vide
void affiche(const Grille& grille) // protège l'affichage de la grille d'une modification intempestive de son contenu
{
for(auto ligne : grille) { // ici pas de & car on ne fait que consulter le contenu, on ne le modifie pas
cout << "\e[1;34m" << " |" << "\e[0m";
for(auto kase : ligne) {
if (kase == vide) {
cout << ' ';
} else if (kase == rouge) {
cout << "\e[41m" << 'O' << "\e[0m";
} else {
cout << "\e[42m" << 'X' << "\e[0m";
}
cout << "\e[1;34m" << '|' << "\e[0m";
}
cout << endl;
} // Maintenant on affiche les numéros de colonnes en dessous de la grille, précédés du symbole ' = '
cout << "\e[1;34m" << '=' << "\e[0m";
for(size_t i(1);i <= grille[0].size(); ++i) {
cout << "\e[1;34m" << '=' << "\e[1;33m" << i;
}
cout << "\e[1;34m" << "==" << "\e[0m";
cout << endl << endl;
}
// Fonction "Joue"
bool joue(Grille& grille, size_t colonne, Couleur couleur) // size_t : TOUJOURS entier positif
{
// si le numéro de colonne n'est pas valide, le coup n'est pas valide :
if (colonne >= grille[0].size()) {
return false;
}
// on parcourt la colonne en partant du bas ...
size_t ligne(grille.size() -1);
// ...jusqu'à trouver une case vide...
// ...ou jusqu'en haut de la colonne si la colonne est pleine :
bool pleine(false);
while ((not pleine) and grille[ligne][colonne] != vide) { // tant que la grille à la position [ligne][colonne] n'est pas vide
if (ligne == 0 ) {
pleine = true;
} else {
--ligne;
}
}
if (not pleine) {
grille[ligne][colonne] = couleur;
return true;
} else {
return false;
}
}
// Fonction demande_et_joue(grille, couleur_joueur) :
void demande_et_joue(Grille& grille, Couleur couleur_joueur)
{ size_t colonne;
bool valide( joue(grille, colonne, couleur_joueur) );
cout << "Joueur ";
if (couleur_joueur == vert) {
cout << "\e[42m" << 'X' << "\e[0m";
} else {
cout << "\e[41m" << 'O' << "\e[0m";
}
cout << " : entrez un numéro de colonne " << endl;
do {
cin >> colonne;
--colonne; // les indices des tableaux commencent par 0 en C++ !!!
valide = joue(grille, colonne, couleur_joueur);
if (not valide) {
cout << " > Ce coup n'est pas valide !" << endl;
}
} while(not valide);
}
//Fonction compte :
// if (compte(grille, ligne, colonne, -1, +1) >= 4 ...
unsigned int compte(const Grille& grille,
size_t ligne_depart, size_t colonne_depart,
int dir_ligne, int dir_colonne)
{
unsigned int compteur(0);
size_t ligne(ligne_depart);
size_t colonne(colonne_depart);
while (ligne < grille.size() and
colonne < grille[ligne].size() and
grille[ligne][colonne] == grille[ligne_depart][colonne_depart]) {
++ compteur;
ligne = ligne + dir_ligne;
colonne = colonne + dir_colonne;
}
return compteur;
}
// Fonction pour vérifier si un joueur a gagné :
bool est_ce_gagne(const Grille& grille, Couleur couleur_joueur)
{
for(size_t ligne(0); ligne < grille.size(); ++ligne) {
for(size_t colonne(0); colonne < grille[ligne].size(); ++ colonne) {
Couleur couleur_case(grille[ligne][colonne]);
if (couleur_case == couleur_joueur) {
const size_t ligne_max(grille.size() - 4);
const size_t colonne_max(grille[ligne].size() - 4);
if (// en diagonale, vers le haut et la droite :
(ligne >= 3 and colonne <= colonne_max and
compte(grille, ligne, colonne, -1,+1) >= 4) or
// horizontalement, vers la droite :
(colonne <= colonne_max and
compte(grille, ligne, colonne, 0, +1) >= 4) or
//en diagonale, vers le bas et la droite :
(ligne <= ligne_max and colonne <= colonne_max and
compte(grille, ligne, colonne, +1, +1) >= 4) or
// verticalement, vers le bas :
(ligne <= ligne_max and
compte(grille, ligne, colonne, +1, 0) >= 4)) {
return true;
}
}
}
}
return false;
}
// Fonction "plein"
bool plein(const Grille& grille) {
//Si on trouve une case vide sur la premiere ligne, la grille n'est pas pleine
for(auto kase : grille[0]) {
if (kase == vide) {
return false;
}
}
// Sinon, la grille est pleine :
return true;
}
int main()
{
Grille grille;
initialise(grille);
affiche(grille);
Couleur couleur_joueur(vert);
bool gagne;
do {
demande_et_joue(grille, couleur_joueur);
affiche(grille);
gagne = est_ce_gagne(grille, couleur_joueur);
// on change la couleur pour la couleur de l'autre joueur :
if (couleur_joueur == vert) {
couleur_joueur = rouge;
} else {
couleur_joueur = vert;
}
} while (not gagne and not plein(grille));
if (gagne) {
if (couleur_joueur == vert) {
cout << "Le joueur O a gagné!" << endl;
} else {
cout << "Le joueur X a gagné!" << endl;
}
} else {
cout << "Match nul !" << endl;
}
return 0;
}
| [
"horace22@gmail.com"
] | horace22@gmail.com |
0e9d094033a5a64016d4ecd9cd3ada6286572263 | 267581e678ee2ff284613594b2bdc187e1a159ba | /1020.h | 2ccb96b03d3e4a175cd4668347807556309f4e23 | [] | no_license | IgorXVI/problemas-uri-online-judge | a4b505b98b10d8fb42245e2902b79ca6aa4b0135 | ae266cbe335d27053aadcc71e2ad1034cdaa1522 | refs/heads/master | 2020-03-17T02:12:38.452257 | 2018-05-28T23:59:14 | 2018-05-28T23:59:14 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 323 | h | #include <bits/stdc++.h>
using namespace std;
int ano(int n1)
{
return n1/365;
}
int mes(int n1)
{
return (n1%365)/30;
}
int dia(int n1)
{
return (n1%365)%30;
}
int main()
{
int x;
cin>>x;
cout<<ano(x)<<" ano(s)\n";
cout<<mes(x)<<" mes(es)\n";
cout<<dia(x)<<" dia(s)\n";
return 0;
} | [
"30632869+IgorXVI@users.noreply.github.com"
] | 30632869+IgorXVI@users.noreply.github.com |
5fd66fbd46cb459bf36fc1be0bb2ca41f86a2ec7 | bf1be0fb81a7515494af42847d4dc635c985b60d | /Markup.cpp | ea2b0ccc8c4cfb5b2b829e890a9384b57567370d | [
"MIT"
] | permissive | instead-hub/plainstead | 15c343f686c78bd9111fa907516e9125db8376b6 | 2fdba08da0bfeeddd7c4b4a248dc83c54fbd2765 | refs/heads/master | 2023-07-08T01:58:10.768053 | 2023-05-15T22:55:10 | 2023-05-15T22:55:10 | 77,037,681 | 7 | 2 | MIT | 2023-01-19T07:15:34 | 2016-12-21T09:31:32 | Lua | UTF-8 | C++ | false | false | 28,574 | cpp | // Markup.cpp: implementation of the CMarkup class.
//
// CMarkup Release 6.5 Lite
// Copyright (C) 1999-2003 First Objective Software, Inc. All rights reserved
// This entire notice must be retained in this source code
// Redistributing this source code requires written permission
// This software is provided "as is", with no warranty.
// Latest fixes enhancements and documentation at www.firstobject.com
#include "stdafx.h"
#include "afxconv.h"
#include "Markup.h"
#ifdef _DEBUG
#undef THIS_FILE
static char THIS_FILE[]=__FILE__;
#define new DEBUG_NEW
#endif
#ifdef _MBCS
#pragma message( "Note: MBCS build (not UTF-8)" )
// For UTF-8, remove _MBCS from project settings C/C++ preprocessor definitions
#endif
// Defines for Windows CE
#ifdef _WIN32_WCE
#define _tclen(p) 1
#define _tccpy(p1,p2) *(p1)=*(p2)
#endif
void CMarkup::operator=( const CMarkup& markup )
{
m_iPosParent = markup.m_iPosParent;
m_iPos = markup.m_iPos;
m_iPosChild = markup.m_iPosChild;
m_iPosFree = markup.m_iPosFree;
m_nNodeType = markup.m_nNodeType;
m_aPos.RemoveAll();
m_aPos.Append( markup.m_aPos );
m_csDoc = markup.m_csDoc;
MARKUP_SETDEBUGSTATE;
}
bool CMarkup::SetDoc( LPCTSTR szDoc )
{
// Reset indexes
m_iPosFree = 1;
ResetPos();
// Set document text
if ( szDoc )
m_csDoc = szDoc;
else
m_csDoc.Empty();
// Starting size of position array: 1 element per 64 bytes of document
// Tight fit when parsing small doc, only 0 to 2 reallocs when parsing large doc
// Start at 8 when creating new document
int nStartSize = m_csDoc.GetLength() / 64 + 8;
if ( m_aPos.GetSize() < nStartSize )
m_aPos.SetSize( nStartSize );
// Parse document
bool bWellFormed = false;
if ( m_csDoc.GetLength() )
{
m_aPos[0].Clear();
int iPos = x_ParseElem( 0 );
if ( iPos > 0 )
{
m_aPos[0].iElemChild = iPos;
bWellFormed = true;
}
}
// Clear indexes if parse failed or empty document
if ( ! bWellFormed )
{
m_aPos[0].Clear();
m_iPosFree = 1;
}
ResetPos();
return bWellFormed;
};
bool CMarkup::IsWellFormed()
{
if ( m_aPos.GetSize() && m_aPos[0].iElemChild )
return true;
return false;
}
bool CMarkup::FindElem( LPCTSTR szName )
{
// Change current position only if found
//
if ( m_aPos.GetSize() )
{
int iPos = x_FindElem( m_iPosParent, m_iPos, szName );
if ( iPos )
{
// Assign new position
x_SetPos( m_aPos[iPos].iElemParent, iPos, 0 );
return true;
}
}
return false;
}
bool CMarkup::FindChildElem( LPCTSTR szName )
{
// Change current child position only if found
//
// Shorthand: call this with no current main position
// means find child under root element
if ( ! m_iPos )
FindElem();
int iPosChild = x_FindElem( m_iPos, m_iPosChild, szName );
if ( iPosChild )
{
// Assign new position
int iPos = m_aPos[iPosChild].iElemParent;
x_SetPos( m_aPos[iPos].iElemParent, iPos, iPosChild );
return true;
}
return false;
}
CString CMarkup::GetTagName() const
{
// Return the tag name at the current main position
CString csTagName;
if ( m_iPos )
csTagName = x_GetTagName( m_iPos );
return csTagName;
}
bool CMarkup::IntoElem()
{
// If there is no child position and IntoElem is called it will succeed in release 6.3
// (A subsequent call to FindElem will find the first element)
// The following short-hand behavior was never part of EDOM and was misleading
// It would find a child element if there was no current child element position and go into it
// It is removed in release 6.3, this change is NOT backwards compatible!
// if ( ! m_iPosChild )
// FindChildElem();
if ( m_iPos && m_nNodeType == MNT_ELEMENT )
{
x_SetPos( m_iPos, m_iPosChild, 0 );
return true;
}
return false;
}
bool CMarkup::OutOfElem()
{
// Go to parent element
if ( m_iPosParent )
{
x_SetPos( m_aPos[m_iPosParent].iElemParent, m_iPosParent, m_iPos );
return true;
}
return false;
}
//////////////////////////////////////////////////////////////////////
// Private Methods
//////////////////////////////////////////////////////////////////////
int CMarkup::x_GetFreePos()
{
//
// This returns the index of the next unused ElemPos in the array
//
if ( m_iPosFree == m_aPos.GetSize() )
m_aPos.SetSize( m_iPosFree + m_iPosFree / 2 );
++m_iPosFree;
return m_iPosFree - 1;
}
int CMarkup::x_ReleasePos()
{
//
// This decrements the index of the next unused ElemPos in the array
// allowing the element index returned by GetFreePos() to be reused
//
--m_iPosFree;
return 0;
}
int CMarkup::x_ParseError( LPCTSTR szError, LPCTSTR szName )
{
if ( szName )
m_csError.Format( szError, szName );
else
m_csError = szError;
x_ReleasePos();
return -1;
}
int CMarkup::x_ParseElem( int iPosParent )
{
// This is either called by SetDoc, x_AddSubDoc, or itself recursively
// m_aPos[iPosParent].nEndL is where to start parsing for the child element
// This returns the new position if a tag is found, otherwise zero
// In all cases we need to get a new ElemPos, but release it if unused
//
int iPos = x_GetFreePos();
m_aPos[iPos].nStartL = m_aPos[iPosParent].nEndL;
m_aPos[iPos].iElemParent = iPosParent;
m_aPos[iPos].iElemChild = 0;
m_aPos[iPos].iElemNext = 0;
// Start Tag
// A loop is used to ignore all remarks tags and special tags
// i.e. <?xml version="1.0"?>, and <!-- comment here -->
// So any tag beginning with ? or ! is ignored
// Loop past ignored tags
TokenPos token( m_csDoc );
token.nNext = m_aPos[iPosParent].nEndL;
CString csName;
while ( csName.IsEmpty() )
{
// Look for left angle bracket of start tag
m_aPos[iPos].nStartL = token.nNext;
if ( ! x_FindChar( token.szDoc, m_aPos[iPos].nStartL, _T('<') ) )
return x_ParseError( _T("Element tag not found") );
// Set parent's End tag to start looking from here (or later)
m_aPos[iPosParent].nEndL = m_aPos[iPos].nStartL;
// Determine whether this is an element, or bypass other type of node
token.nNext = m_aPos[iPos].nStartL + 1;
if ( x_FindToken( token ) )
{
if ( token.bIsString )
return x_ParseError( _T("Tag starts with quote") );
_TCHAR cFirstChar = m_csDoc[token.nL];
if ( cFirstChar == _T('?') || cFirstChar == _T('!') )
{
token.nNext = m_aPos[iPos].nStartL;
if ( ! x_ParseNode(token) )
return x_ParseError( _T("Invalid node") );
}
else if ( cFirstChar != _T('/') )
{
csName = x_GetToken( token );
// Look for end of tag
if ( ! x_FindChar(token.szDoc, token.nNext, _T('>')) )
return x_ParseError( _T("End of tag not found") );
}
else
return x_ReleasePos(); // probably end tag of parent
}
else
return x_ParseError( _T("Abrupt end within tag") );
}
m_aPos[iPos].nStartR = token.nNext;
// Is ending mark within start tag, i.e. empty element?
if ( m_csDoc[m_aPos[iPos].nStartR-1] == _T('/') )
{
// Empty element
// Close tag left is set to ending mark, and right to open tag right
m_aPos[iPos].nEndL = m_aPos[iPos].nStartR-1;
m_aPos[iPos].nEndR = m_aPos[iPos].nStartR;
}
else // look for end tag
{
// Element probably has contents
// Determine where to start looking for left angle bracket of end tag
// This is done by recursively parsing the contents of this element
int iInner, iInnerPrev = 0;
m_aPos[iPos].nEndL = m_aPos[iPos].nStartR + 1;
while ( (iInner = x_ParseElem( iPos )) > 0 )
{
// Set links to iInner
if ( iInnerPrev )
m_aPos[iInnerPrev].iElemNext = iInner;
else
m_aPos[iPos].iElemChild = iInner;
iInnerPrev = iInner;
// Set offset to reflect child
m_aPos[iPos].nEndL = m_aPos[iInner].nEndR + 1;
}
if ( iInner == -1 )
return -1;
// Look for left angle bracket of end tag
if ( ! x_FindChar( token.szDoc, m_aPos[iPos].nEndL, _T('<') ) )
return x_ParseError( _T("End tag of %s element not found"), csName );
// Look through tokens of end tag
token.nNext = m_aPos[iPos].nEndL + 1;
int nTokenCount = 0;
while ( x_FindToken( token ) )
{
++nTokenCount;
if ( ! token.bIsString )
{
// Is first token not an end slash mark?
if ( nTokenCount == 1 && m_csDoc[token.nL] != _T('/') )
return x_ParseError( _T("Expecting end tag of element %s"), csName );
else if ( nTokenCount == 2 && ! token.Match(csName) )
return x_ParseError( _T("End tag does not correspond to %s"), csName );
// Else is it a right angle bracket?
else if ( m_csDoc[token.nL] == _T('>') )
break;
}
}
// Was a right angle bracket not found?
if ( ! token.szDoc[token.nL] || nTokenCount < 2 )
return x_ParseError( _T("End tag not completed for element %s"), csName );
m_aPos[iPos].nEndR = token.nL;
}
// Successfully parsed element (and contained elements)
return iPos;
}
bool CMarkup::x_FindChar( LPCTSTR szDoc, int& nChar, _TCHAR c )
{
// static function
LPCTSTR pChar = &szDoc[nChar];
while ( *pChar && *pChar != c )
pChar += _tclen( pChar );
nChar = pChar - szDoc;
if ( ! *pChar )
return false;
/*
while ( szDoc[nChar] && szDoc[nChar] != c )
nChar += _tclen( &szDoc[nChar] );
if ( ! szDoc[nChar] )
return false;
*/
return true;
}
bool CMarkup::x_FindAny( LPCTSTR szDoc, int& nChar )
{
// Starting at nChar, find a non-whitespace char
// return false if no non-whitespace before end of document, nChar points to end
// otherwise return true and nChar points to non-whitespace char
while ( szDoc[nChar] && _tcschr(_T(" \t\n\r"),szDoc[nChar]) )
++nChar;
return szDoc[nChar] != '\0';
}
bool CMarkup::x_FindToken( CMarkup::TokenPos& token )
{
// Starting at token.nNext, bypass whitespace and find the next token
// returns true on success, members of token point to token
// returns false on end of document, members point to end of document
LPCTSTR szDoc = token.szDoc;
int nChar = token.nNext;
token.bIsString = false;
// By-pass leading whitespace
if ( ! x_FindAny(szDoc,nChar) )
{
// No token was found before end of document
token.nL = nChar;
token.nR = nChar;
token.nNext = nChar;
return false;
}
// Is it an opening quote?
_TCHAR cFirstChar = szDoc[nChar];
if ( cFirstChar == _T('\"') || cFirstChar == _T('\'') )
{
token.bIsString = true;
// Move past opening quote
++nChar;
token.nL = nChar;
// Look for closing quote
x_FindChar( token.szDoc, nChar, cFirstChar );
// Set right to before closing quote
token.nR = nChar - 1;
// Set nChar past closing quote unless at end of document
if ( szDoc[nChar] )
++nChar;
}
else
{
// Go until special char or whitespace
token.nL = nChar;
while ( szDoc[nChar] && ! _tcschr(_T(" \t\n\r<>=\\/?!"),szDoc[nChar]) )
nChar += _tclen(&szDoc[nChar]);
// Adjust end position if it is one special char
if ( nChar == token.nL )
++nChar; // it is a special char
token.nR = nChar - 1;
}
// nNext points to one past last char of token
token.nNext = nChar;
return true;
}
CString CMarkup::x_GetToken( const CMarkup::TokenPos& token ) const
{
// The token contains indexes into the document identifying a small substring
// Build the substring from those indexes and return it
if ( token.nL > token.nR )
return _T("");
return m_csDoc.Mid( token.nL,
token.nR - token.nL + ((token.nR<m_csDoc.GetLength())? 1:0) );
}
int CMarkup::x_FindElem( int iPosParent, int iPos, LPCTSTR szPath )
{
// If szPath is NULL or empty, go to next sibling element
// Otherwise go to next sibling element with matching path
//
if ( iPos )
iPos = m_aPos[iPos].iElemNext;
else
iPos = m_aPos[iPosParent].iElemChild;
// Finished here if szPath not specified
if ( szPath == NULL || !szPath[0] )
return iPos;
// Search
TokenPos token( m_csDoc );
while ( iPos )
{
// Compare tag name
token.nNext = m_aPos[iPos].nStartL + 1;
x_FindToken( token ); // Locate tag name
if ( token.Match(szPath) )
return iPos;
iPos = m_aPos[iPos].iElemNext;
}
return 0;
}
int CMarkup::x_ParseNode( CMarkup::TokenPos& token )
{
// Call this with token.nNext set to the start of the node
// This returns the node type and token.nNext set to the char after the node
// If the node is not found or an element, token.nR is not determined
int nTypeFound = 0;
LPCTSTR szDoc = token.szDoc;
token.nL = token.nNext;
if ( szDoc[token.nL] == '<' )
{
// Started with <, could be:
// <!--...--> comment
// <!DOCTYPE ...> dtd
// <?target ...?> processing instruction
// <![CDATA[...]]> cdata section
// <NAME ...> element
//
if ( ! szDoc[token.nL+1] || ! szDoc[token.nL+2] )
return 0;
_TCHAR cFirstChar = szDoc[token.nL+1];
LPCTSTR szEndOfNode = NULL;
if ( cFirstChar == _T('?') )
{
nTypeFound = MNT_PROCESSING_INSTRUCTION;
szEndOfNode = _T("?>");
}
else if ( cFirstChar == _T('!') )
{
_TCHAR cSecondChar = szDoc[token.nL+2];
if ( cSecondChar == _T('[') )
{
nTypeFound = MNT_CDATA_SECTION;
szEndOfNode = _T("]]>");
}
else if ( cSecondChar == _T('-') )
{
nTypeFound = MNT_COMMENT;
szEndOfNode = _T("-->");
}
else
{
// Document type requires tokenizing because of strings and brackets
nTypeFound = 0;
int nBrackets = 0;
while ( x_FindToken(token) )
{
if ( ! token.bIsString )
{
_TCHAR cChar = szDoc[token.nL];
if ( cChar == _T('[') )
++nBrackets;
else if ( cChar == _T(']') )
--nBrackets;
else if ( nBrackets == 0 && cChar == _T('>') )
{
nTypeFound = MNT_DOCUMENT_TYPE;
break;
}
}
}
if ( ! nTypeFound )
return 0;
}
}
else if ( cFirstChar == _T('/') )
{
// End tag means no node found within parent element
return 0;
}
else
{
nTypeFound = MNT_ELEMENT;
}
// Search for end of node if not found yet
if ( szEndOfNode )
{
LPCTSTR pEnd = _tcsstr( &szDoc[token.nNext], szEndOfNode );
if ( ! pEnd )
return 0; // not well-formed
token.nNext = (pEnd - szDoc) + _tcslen(szEndOfNode);
}
}
else if ( szDoc[token.nL] )
{
// It is text or whitespace because it did not start with <
nTypeFound = MNT_WHITESPACE;
token.nNext = token.nL;
if ( x_FindAny(szDoc,token.nNext) )
{
if ( szDoc[token.nNext] != _T('<') )
{
nTypeFound = MNT_TEXT;
x_FindChar( szDoc, token.nNext, _T('<') );
}
}
}
return nTypeFound;
}
CString CMarkup::x_GetTagName( int iPos ) const
{
// Return the tag name at specified element
TokenPos token( m_csDoc );
token.nNext = m_aPos[iPos].nStartL + 1;
if ( ! iPos || ! x_FindToken( token ) )
return _T("");
// Return substring of document
return x_GetToken( token );
}
bool CMarkup::x_FindAttrib( CMarkup::TokenPos& token, LPCTSTR szAttrib ) const
{
// If szAttrib is NULL find next attrib, otherwise find named attrib
// Return true if found
int nAttrib = 0;
for ( int nCount = 0; x_FindToken(token); ++nCount )
{
if ( ! token.bIsString )
{
// Is it the right angle bracket?
_TCHAR cChar = m_csDoc[token.nL];
if ( cChar == _T('>') || cChar == _T('/') || cChar == _T('?') )
break; // attrib not found
// Equal sign
if ( cChar == _T('=') )
continue;
// Potential attribute
if ( ! nAttrib && nCount )
{
// Attribute name search?
if ( ! szAttrib || ! szAttrib[0] )
return true; // return with token at attrib name
// Compare szAttrib
if ( token.Match(szAttrib) )
nAttrib = nCount;
}
}
else if ( nAttrib && nCount == nAttrib + 2 )
{
return true;
}
}
// Not found
return false;
}
CString CMarkup::x_GetAttrib( int iPos, LPCTSTR szAttrib ) const
{
// Return the value of the attrib
TokenPos token( m_csDoc );
if ( iPos && m_nNodeType == MNT_ELEMENT )
token.nNext = m_aPos[iPos].nStartL + 1;
else
return _T("");
if ( szAttrib && x_FindAttrib( token, szAttrib ) )
return x_TextFromDoc( token.nL, token.nR - ((token.nR<m_csDoc.GetLength())?0:1) );
return _T("");
}
bool CMarkup::x_SetAttrib( int iPos, LPCTSTR szAttrib, LPCTSTR szValue )
{
// Set attribute in iPos element
TokenPos token( m_csDoc );
int nInsertAt;
if ( iPos && m_nNodeType == MNT_ELEMENT )
{
token.nNext = m_aPos[iPos].nStartL + 1;
nInsertAt = m_aPos[iPos].nStartR - (m_aPos[iPos].IsEmptyElement()?1:0);
}
else
return false;
// Create insertion text depending on whether attribute already exists
int nReplace = 0;
CString csInsert;
if ( x_FindAttrib( token, szAttrib ) )
{
// Replace value only
// Decision: for empty value leaving attrib="" instead of removing attrib
csInsert = x_TextToDoc( szValue, true );
nInsertAt = token.nL;
nReplace = token.nR-token.nL+1;
}
else
{
// Insert string name value pair
CString csFormat;
csFormat = _T(" ");
csFormat += szAttrib;
csFormat += _T("=\"");
csFormat += x_TextToDoc( szValue, true );
csFormat += _T("\"");
csInsert = csFormat;
}
x_DocChange( nInsertAt, nReplace, csInsert );
int nAdjust = csInsert.GetLength() - nReplace;
m_aPos[iPos].nStartR += nAdjust;
m_aPos[iPos].AdjustEnd( nAdjust );
x_Adjust( iPos, nAdjust );
MARKUP_SETDEBUGSTATE;
return true;
}
CString CMarkup::x_GetData( int iPos ) const
{
// Return a string representing data between start and end tag
// Return empty string if there are any children elements
if ( ! m_aPos[iPos].iElemChild && ! m_aPos[iPos].IsEmptyElement() )
{
// See if it is a CDATA section
LPCTSTR szDoc = (LPCTSTR)m_csDoc;
int nChar = m_aPos[iPos].nStartR + 1;
if ( x_FindAny( szDoc, nChar ) && szDoc[nChar] == _T('<')
&& nChar + 11 < m_aPos[iPos].nEndL
&& _tcsncmp( &szDoc[nChar], _T("<![CDATA["), 9 ) == 0 )
{
nChar += 9;
int nEndCDATA = m_csDoc.Find( _T("]]>"), nChar );
if ( nEndCDATA != -1 && nEndCDATA < m_aPos[iPos].nEndL )
{
return m_csDoc.Mid( nChar, nEndCDATA - nChar );
}
}
return x_TextFromDoc( m_aPos[iPos].nStartR+1, m_aPos[iPos].nEndL-1 );
}
return _T("");
}
CString CMarkup::x_TextToDoc( LPCTSTR szText, bool bAttrib ) const
{
// Convert text as seen outside XML document to XML friendly
// replacing special characters with ampersand escape codes
// E.g. convert "6>7" to "6>7"
//
// < less than
// & ampersand
// > greater than
//
// and for attributes:
//
// ' apostrophe or single quote
// " double quote
//
static _TCHAR* szaReplace[] = { _T("<"),_T("&"),_T(">"),_T("'"),_T(""") };
_TCHAR* pFind = bAttrib?_T("<&>\'\""):_T("<&>");
CString csText;
const _TCHAR* pSource = szText;
int nDestSize = _tcslen(pSource);
nDestSize += nDestSize / 10 + 7;
_TCHAR* pDest = csText.GetBuffer(nDestSize);
int nLen = 0;
_TCHAR cSource = *pSource;
_TCHAR* pFound;
while ( cSource )
{
if ( nLen > nDestSize - 6 )
{
csText.ReleaseBuffer(nLen);
nDestSize *= 2;
pDest = csText.GetBuffer(nDestSize);
}
if ( (pFound=_tcschr(pFind,cSource)) != NULL )
{
pFound = szaReplace[pFound-pFind];
_tcscpy(&pDest[nLen],pFound);
nLen += _tcslen(pFound);
}
else
{
_tccpy( &pDest[nLen], pSource );
nLen += _tclen( pSource );
}
pSource += _tclen( pSource );
cSource = *pSource;
}
csText.ReleaseBuffer(nLen);
return csText;
}
CString CMarkup::x_TextFromDoc( int nLeft, int nRight ) const
{
// Convert XML friendly text to text as seen outside XML document
// ampersand escape codes replaced with special characters e.g. convert "6>7" to "6>7"
// Conveniently the result is always the same or shorter in byte length
//
static _TCHAR* szaCode[] = { _T("lt;"),_T("amp;"),_T("gt;"),_T("apos;"),_T("quot;") };
static int anCodeLen[] = { 3,4,3,5,5 };
static _TCHAR* szSymbol = _T("<&>\'\"");
CString csText;
const _TCHAR* pSource = m_csDoc;
int nDestSize = nRight - nLeft + 1;
_TCHAR* pDest = csText.GetBuffer(nDestSize);
int nLen = 0;
int nCharLen;
int nChar = nLeft;
while ( nChar <= nRight )
{
if ( pSource[nChar] == _T('&') )
{
// Look for matching &code;
BOOL bCodeConverted = false;
for ( int nMatch = 0; nMatch < 5; ++nMatch )
{
if ( nChar <= nRight - anCodeLen[nMatch]
&& _tcsncmp(szaCode[nMatch],&pSource[nChar+1],anCodeLen[nMatch]) == 0 )
{
// Insert symbol and increment index past ampersand semi-colon
pDest[nLen++] = szSymbol[nMatch];
nChar += anCodeLen[nMatch] + 1;
bCodeConverted = true;
break;
}
}
// If the code is not converted, leave it as is
if ( ! bCodeConverted )
{
pDest[nLen++] = _T('&');
++nChar;
}
}
else // not &
{
nCharLen = _tclen(&pSource[nChar]);
_tccpy( &pDest[nLen], &pSource[nChar] );
nLen += nCharLen;
nChar += nCharLen;
}
}
csText.ReleaseBuffer(nLen);
return csText;
}
void CMarkup::x_DocChange( int nLeft, int nReplace, const CString& csInsert )
{
// Insert csInsert int m_csDoc at nLeft replacing nReplace chars
// Do this with only one buffer reallocation if it grows
//
int nDocLength = m_csDoc.GetLength();
int nInsLength = csInsert.GetLength();
// Make sure nLeft and nReplace are within bounds
nLeft = max( 0, min( nLeft, nDocLength ) );
nReplace = max( 0, min( nReplace, nDocLength-nLeft ) );
// Get pointer to buffer with enough room
int nNewLength = nInsLength + nDocLength - nReplace;
int nBufferLen = nNewLength;
_TCHAR* pDoc = m_csDoc.GetBuffer( nBufferLen );
// Move part of old doc that goes after insert
if ( nLeft+nReplace < nDocLength )
memmove( &pDoc[nLeft+nInsLength], &pDoc[nLeft+nReplace], (nDocLength-nLeft-nReplace)*sizeof(_TCHAR) );
// Copy insert
memcpy( &pDoc[nLeft], csInsert, nInsLength*sizeof(_TCHAR) );
// Release
m_csDoc.ReleaseBuffer( nNewLength );
}
void CMarkup::x_Adjust( int iPos, int nShift, bool bAfterPos )
{
// Loop through affected elements and adjust indexes
// Algorithm:
// 1. update children unless bAfterPos
// (if no children or bAfterPos is true, end tag of iPos not affected)
// 2. update next siblings and their children
// 3. go up until there is a next sibling of a parent and update end tags
// 4. step 2
int iPosTop = m_aPos[iPos].iElemParent;
bool bPosFirst = bAfterPos; // mark as first to skip its children
while ( iPos )
{
// Were we at containing parent of affected position?
bool bPosTop = false;
if ( iPos == iPosTop )
{
// Move iPosTop up one towards root
iPosTop = m_aPos[iPos].iElemParent;
bPosTop = true;
}
// Traverse to the next update position
if ( ! bPosTop && ! bPosFirst && m_aPos[iPos].iElemChild )
{
// Depth first
iPos = m_aPos[iPos].iElemChild;
}
else if ( m_aPos[iPos].iElemNext )
{
iPos = m_aPos[iPos].iElemNext;
}
else
{
// Look for next sibling of a parent of iPos
// When going back up, parents have already been done except iPosTop
while ( (iPos=m_aPos[iPos].iElemParent) != 0 && iPos != iPosTop )
if ( m_aPos[iPos].iElemNext )
{
iPos = m_aPos[iPos].iElemNext;
break;
}
}
bPosFirst = false;
// Shift indexes at iPos
if ( iPos != iPosTop )
m_aPos[iPos].AdjustStart( nShift );
m_aPos[iPos].AdjustEnd( nShift );
}
}
void CMarkup::x_LocateNew( int iPosParent, int& iPosRel, int& nOffset, int nLength, int nFlags )
{
// Determine where to insert new element or node
//
bool bInsert = (nFlags&1)?true:false;
bool bHonorWhitespace = (nFlags&2)?true:false;
int nStartL;
if ( nLength )
{
// Located at a non-element node
if ( bInsert )
nStartL = nOffset;
else
nStartL = nOffset + nLength;
}
else if ( iPosRel )
{
// Located at an element
if ( bInsert ) // precede iPosRel
nStartL = m_aPos[iPosRel].nStartL;
else // follow iPosRel
nStartL = m_aPos[iPosRel].nEndR + 1;
}
else if ( ! iPosParent )
{
// Outside of all elements
if ( bInsert )
nStartL = 0;
else
nStartL = m_csDoc.GetLength();
}
else if ( m_aPos[iPosParent].IsEmptyElement() )
{
// Parent has no separate end tag, so split empty element
nStartL = m_aPos[iPosParent].nStartR;
}
else
{
if ( bInsert ) // after start tag
nStartL = m_aPos[iPosParent].nStartR + 1;
else // before end tag
nStartL = m_aPos[iPosParent].nEndL;
}
// Go up to start of next node, unless its splitting an empty element
if ( ! bHonorWhitespace && ! m_aPos[iPosParent].IsEmptyElement() )
{
LPCTSTR szDoc = (LPCTSTR)m_csDoc;
int nChar = nStartL;
if ( ! x_FindAny(szDoc,nChar) || szDoc[nChar] == _T('<') )
nStartL = nChar;
}
// Determine iPosBefore
int iPosBefore = 0;
if ( iPosRel )
{
if ( bInsert )
{
// Is iPosRel past first sibling?
int iPosPrev = m_aPos[iPosParent].iElemChild;
if ( iPosPrev != iPosRel )
{
// Find previous sibling of iPosRel
while ( m_aPos[iPosPrev].iElemNext != iPosRel )
iPosPrev = m_aPos[iPosPrev].iElemNext;
iPosBefore = iPosPrev;
}
}
else
{
iPosBefore = iPosRel;
}
}
else if ( m_aPos[iPosParent].iElemChild )
{
if ( ! bInsert )
{
// Find last element under iPosParent
int iPosLast = m_aPos[iPosParent].iElemChild;
int iPosNext = iPosLast;
while ( iPosNext )
{
iPosLast = iPosNext;
iPosNext = m_aPos[iPosNext].iElemNext;
}
iPosBefore = iPosLast;
}
}
nOffset = nStartL;
iPosRel = iPosBefore;
}
bool CMarkup::x_AddElem( LPCTSTR szName, LPCTSTR szValue, bool bInsert, bool bAddChild )
{
if ( bAddChild )
{
// Adding a child element under main position
if ( ! m_iPos )
return false;
}
else if ( m_iPosParent == 0 )
{
// Adding root element
if ( IsWellFormed() )
return false;
// Locate after any version and DTD
m_aPos[0].nEndL = m_csDoc.GetLength();
}
// Locate where to add element relative to current node
int iPosParent, iPosBefore, nOffset = 0, nLength = 0;
if ( bAddChild )
{
iPosParent = m_iPos;
iPosBefore = m_iPosChild;
}
else
{
iPosParent = m_iPosParent;
iPosBefore = m_iPos;
}
int nFlags = bInsert?1:0;
x_LocateNew( iPosParent, iPosBefore, nOffset, nLength, nFlags );
bool bEmptyParent = m_aPos[iPosParent].IsEmptyElement();
if ( bEmptyParent || m_aPos[iPosParent].nStartR + 1 == m_aPos[iPosParent].nEndL )
nOffset += 2;
// Create element and modify positions of affected elements
// If no szValue is specified, an empty element is created
// i.e. either <NAME>value</NAME> or <NAME/>
//
int iPos = x_GetFreePos();
m_aPos[iPos].nStartL = nOffset;
// Set links
m_aPos[iPos].iElemParent = iPosParent;
m_aPos[iPos].iElemChild = 0;
m_aPos[iPos].iElemNext = 0;
if ( iPosBefore )
{
// Link in after iPosBefore
m_aPos[iPos].iElemNext = m_aPos[iPosBefore].iElemNext;
m_aPos[iPosBefore].iElemNext = iPos;
}
else
{
// First child
m_aPos[iPos].iElemNext = m_aPos[iPosParent].iElemChild;
m_aPos[iPosParent].iElemChild = iPos;
}
// Create string for insert
CString csInsert;
int nLenName = _tcslen(szName);
int nLenValue = szValue? _tcslen(szValue) : 0;
if ( ! nLenValue )
{
// <NAME/> empty element
csInsert = _T("<");
csInsert += szName;
csInsert += _T("/>\r\n");
m_aPos[iPos].nStartR = m_aPos[iPos].nStartL + nLenName + 2;
m_aPos[iPos].nEndL = m_aPos[iPos].nStartR - 1;
m_aPos[iPos].nEndR = m_aPos[iPos].nEndL + 1;
}
else
{
// <NAME>value</NAME>
CString csValue = x_TextToDoc( szValue );
nLenValue = csValue.GetLength();
csInsert = _T("<");
csInsert += szName;
csInsert += _T(">");
csInsert += csValue;
csInsert += _T("</");
csInsert += szName;
csInsert += _T(">\r\n");
m_aPos[iPos].nStartR = m_aPos[iPos].nStartL + nLenName + 1;
m_aPos[iPos].nEndL = m_aPos[iPos].nStartR + nLenValue + 1;
m_aPos[iPos].nEndR = m_aPos[iPos].nEndL + nLenName + 2;
}
// Insert
int nReplace = 0, nLeft = m_aPos[iPos].nStartL;
if ( bEmptyParent )
{
CString csParentTagName = x_GetTagName(iPosParent);
CString csFormat;
csFormat = _T(">\r\n");
csFormat += csInsert;
csFormat += _T("</");
csFormat += csParentTagName;
csInsert = csFormat;
nLeft = m_aPos[iPosParent].nStartR - 1;
nReplace = 1;
// x_Adjust is going to update all affected indexes by one amount
// This will satisfy all except the empty parent
// Here we pre-adjust for the empty parent
// The empty tag slash is removed
m_aPos[iPosParent].nStartR -= 1;
// For the newly created end tag, see the following example:
// <A/> (len 4) becomes <A><B/></A> (len 11)
// In x_Adjust everything will be adjusted 11 - 4 = 7
// But the nEndL of element A should only be adjusted 5
m_aPos[iPosParent].nEndL -= (csParentTagName.GetLength() + 1);
}
else if ( m_aPos[iPosParent].nStartR + 1 == m_aPos[iPosParent].nEndL )
{
csInsert = _T("\r\n") + csInsert;
nLeft = m_aPos[iPosParent].nStartR + 1;
}
x_DocChange( nLeft, nReplace, csInsert );
x_Adjust( iPos, csInsert.GetLength() - nReplace );
if ( bAddChild )
x_SetPos( m_iPosParent, iPosParent, iPos );
else
x_SetPos( iPosParent, iPos, 0 );
return true;
}
| [
"antlas@int.kronshtadt.ru"
] | antlas@int.kronshtadt.ru |
eb472e7997f9cd1be36487e09631dd27a2d96a68 | b8abaaf2f7a1f94efe3bbc0d14ca49228471b43f | /MomokoMain/include/Vector2.h | 8f39414721e521757a9c98cf5b015fe2ef804dc0 | [] | no_license | julsam/Momoko-Engine | e8cf8a2ad4de6b3925c8c85dc66272e7602e7e73 | 7503a2a81d53bf569eb760c890158d4f38d9baf9 | refs/heads/master | 2021-01-22T12:08:41.642354 | 2011-04-12T11:12:21 | 2011-04-12T11:12:21 | 1,494,202 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 270 | h | #ifndef _VECTOR2_H
#define _VECTOR2_H
class Vector2
{
public:
Vector2();
Vector2(float _x, float _y);
Vector2(int _x, int _y);
float operator[](int i);
Vector2 operator=(const Vector2 &_vector2);
public:
float x, y;
};
#endif // _VECTOR2_H
| [
"bender@bender-labs.org"
] | bender@bender-labs.org |
44c6d84cfba21c30dd60b20accfec50b17e70f03 | 6abb7d2d8518ec38ea81c934b68274c5e889f46f | /include/gpu/histogram.hh | e5178a6b67c7c41826d741770d037d153afc61c7 | [
"CC-BY-4.0"
] | permissive | Rhaestar/GraphCutSeg | 15e1ce6a5e0ce68353c09f61b2a1593490ea88fd | 7dc4d2f5879c51b979029f9d75fa62958a310057 | refs/heads/master | 2022-11-06T08:37:37.685822 | 2020-06-14T21:31:45 | 2020-06-14T21:32:24 | 266,333,877 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 569 | hh | #pragma once
#include <cstdint>
#define BUCKET_SIZE 32
#define ARRAY_SIZE (256 / 32)
namespace GPU
{
class Histogram
{
public:
Histogram()
: size_(0)
{
for (int i = 0; i < ARRAY_SIZE * ARRAY_SIZE * ARRAY_SIZE; ++i)
hist_[i] = 0;
}
~Histogram()
{}
void AddElement(uint8_t r, uint8_t g, uint8_t b);
float GetProba(uint8_t r, uint8_t g, uint8_t b);
private:
unsigned size_;
unsigned hist_[ARRAY_SIZE * ARRAY_SIZE * ARRAY_SIZE];
};
}
| [
"simon.regourd@epita.fr"
] | simon.regourd@epita.fr |
40fa5febc599c96bae03b091a1a9ed28708975f2 | a3cb7bcf1c1bb1faa41b85b90227833dadc95600 | /Base/System/CrashReport.h | f4dd5c321343efc56c9a8ebb5d7e7061cf64c33a | [] | no_license | aldafor/TapEngine | 174ff9d62a9575cc266f9c60f0db7e54a0bbd0f3 | 802e5efb964a17c505f0cee9000b2346b3de309b | refs/heads/master | 2020-06-04T03:30:26.929431 | 2013-09-29T20:12:57 | 2013-09-29T20:12:57 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 787 | h | #ifndef CRASHREPORT_H
#define CRASHREPORT_H
#include <iostream>
#include <time.h>
#include <stdarg.h>
//#include <string>
//#include <cstring>
class CrashReport
{
public:
enum ErrorCode
{
NoError = 0,
Unknown,
NotEnoughtMemory,
DeviceSystemError,
GraphicDriverError,
EngineError,
GameError
};
public:
CrashReport(const char* filename = DEFAULT_FILENAME, bool enabled = true);
virtual ~CrashReport();
void SetError(ErrorCode code, const char* errorMessage, ...);
const ErrorCode GetErrorCode();
const char* GetErrorMessage();
void ShowErrorMessage();
protected:
private:
public:
protected:
private:
char m_filename[256];
char m_errorMessage[2048];
ErrorCode m_error;
bool m_enabled;
const static char* DEFAULT_FILENAME;
};
#endif //CRASHREPORT_H | [
"aldafor@msn.com"
] | aldafor@msn.com |
0e6f1163846e5d8df8d3c59b81611cb6b905e5af | 76b7e459b143c8481b044c60a68c768a0848b8f6 | /Codeforces/Codefest19/c.cpp | 401ce900207b2249f94b996cd00174e05ddd9190 | [] | no_license | hsnavarro/imepp | f3b195e5ed4e453eac9b73d5a77b39f44917435f | eb90580caea91b48e7d541db92531ba3fd2b82c1 | refs/heads/master | 2021-11-28T07:25:05.778476 | 2021-09-10T02:20:32 | 2021-09-10T02:20:32 | 145,646,296 | 0 | 1 | null | 2021-09-10T02:20:33 | 2018-08-22T02:40:54 | C++ | UTF-8 | C++ | false | false | 1,183 | cpp | #include <bits/stdc++.h>
using namespace std;
#define int long long
#define st first
#define nd second
#define mp make_pair
#define pb push_back
#define cl(x, v) memset((x), (v), sizeof(x))
#define db(x) cerr << #x << " == " << x << endl
#define dbs(x) cerr << x << endl
#define _ << ", " <<
typedef long long ll;
typedef long double ld;
typedef pair<int, int> pii;
typedef pair<int, pii> piii;
typedef pair<ll, ll> pll;
typedef vector<int> vi;
typedef vector<vi> vii;
const ld EPS = 1e-9, PI = acos(-1.);
const ll LINF = 0x3f3f3f3f3f3f3f3f, LMOD = 1011112131415161719ll;
const int INF = 0x3f3f3f3f, MOD = 1e9+7;
const int N = 1e5+5;
int n, A[N][4][4];
vector<vector<int>> base(4, vector<int> (4, 0));
int32_t main(){
ios_base::sync_with_stdio(0), cin.tie(0);
cin >> n;
base[0] = { 8, 9, 1, 13 };
base[1] = {3, 12, 7, 5 };
base[2] = {0, 2, 4, 11 };
base[3] = {6, 10, 15, 14};
for(int k = 0; k < (n/4)*(n/4); k++)
for(int i = 0; i < 4; i++)
for(int j = 0; j < 4; j++) A[k][i][j] = base[i][j] + 1ll*16*k;
for(int i = 0; i < n; i++){
for(int j = 0; j < n; j++){
cout << A[j/4 + (n/4)*(i/4)][i%4][j%4] << " ";
}
cout << endl;
}
}
| [
"ricksnavarro@gmail.com"
] | ricksnavarro@gmail.com |
8fe5f9c3a5e28424facea78ace07a2fc342b5a9e | 91a882547e393d4c4946a6c2c99186b5f72122dd | /Source/XPSP1/NT/inetcore/digest/cache.cxx | ad87033ad2e8dc96cfc2ce463bee14863ce4a843 | [] | no_license | IAmAnubhavSaini/cryptoAlgorithm-nt5src | 94f9b46f101b983954ac6e453d0cf8d02aa76fc7 | d9e1cdeec650b9d6d3ce63f9f0abe50dabfaf9e2 | refs/heads/master | 2023-09-02T10:14:14.795579 | 2021-11-20T13:47:06 | 2021-11-20T13:47:06 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 26,961 | cxx | /*++
Copyright (c) 1998 Microsoft Corporation
Module Name:
cache.cxx
Abstract:
Credential cache object for digest sspi package.
Author:
Adriaan Canter (adriaanc) 01-Aug-1998
--*/
#include "include.hxx"
//-----------------CCredCache Private Functions --------------------------------
//--------------------------------------------------------------------
// CCredCache::Lock
//--------------------------------------------------------------------
BOOL CCredCache::Lock()
{
BOOL bRet;
DWORD dwError;
dwError = WaitForSingleObject(_hMutex, INFINITE);
switch (dwError)
{
// Mutex is signalled. We own the mutex. Fall through.
case WAIT_OBJECT_0:
// The thread owning the mutex failed to release it
// before terminating. We still own the mutex.
case WAIT_ABANDONED:
bRet = TRUE;
break;
// Fall through.
case WAIT_FAILED:
// Fail.
default:
bRet = FALSE;
}
return bRet;
}
//--------------------------------------------------------------------
// CCredCache::Unlock
//--------------------------------------------------------------------
BOOL CCredCache::Unlock()
{
BOOL bRet;
bRet = ReleaseMutex(_hMutex);
return bRet;
}
//--------------------------------------------------------------------
// CCredCache::GetPtrToObject
//--------------------------------------------------------------------
LPDWORD CCredCache::GetPtrToObject(DWORD dwObject)
{
return _pMMFile->GetHeaderData(dwObject);
}
//--------------------------------------------------------------------
// CCredCache::SearchCredList
//--------------------------------------------------------------------
CCred* CCredCache::SearchCredList(CSess *pSess, LPSTR szHost,
LPSTR szRealm, LPSTR szUser, BOOL fMatchHost)
{
CList CredList;
CCred *pMatch = NULL;
if (!pSess->dwCred)
goto exit;
CredList.Init(&pSess->dwCred);
while (pMatch = (CCred*) CredList.GetNext())
{
if ((!szRealm || !lstrcmpi(szRealm, CCred::GetRealm(pMatch)))
&& (!szUser || !lstrcmpi(szUser, CCred::GetUser(pMatch))))
{
if (!fMatchHost)
break;
CNonce *pNonce;
CList NonceList;
NonceList.Init(&pMatch->dwNonce);
while (pNonce = (CNonce*) NonceList.GetNext())
{
if (CNonce::IsHostMatch(pNonce, szHost))
goto exit;
}
pMatch = NULL;
break;
}
}
exit:
return pMatch;
}
//--------------------------------------------------------------------
// CCredCache::UpdateInfoList
//--------------------------------------------------------------------
CCredInfo* CCredCache::UpdateInfoList(CCredInfo *pInfo, CCredInfo *pHead)
{
CCredInfo *pList, *pCur;
BOOL fUpdate = TRUE;
if (!pHead)
return (pInfo);
pList = pCur = pHead;
while (pCur)
{
// Do entry usernames match ?
if (!strcmp(pInfo->szUser, pCur->szUser))
{
// Is the new entry timestamp greater?
if (pInfo->tStamp > pCur->tStamp)
{
// De-link existing entry.
if (pCur->pPrev)
pCur->pPrev->pNext = pCur->pNext;
else
pList = pCur->pNext;
if (pCur->pNext)
pCur->pNext->pPrev = pCur->pPrev;
// Delete existing entry.
delete pCur;
}
else
{
// Found a match but time stamp
// of existing entry was greater.
fUpdate = FALSE;
}
break;
}
pCur = pCur->pNext;
}
// If we superceded an existing matching entry
// or found no matching entries, prepend to list.
if (fUpdate)
{
pInfo->pNext = pList;
if (pList)
pList->pPrev = pInfo;
pList = pInfo;
}
return pList;
}
//-----------------CCredCache Public Functions --------------------------------
//--------------------------------------------------------------------
// CCredCache::GetHeapPtr
//--------------------------------------------------------------------
DWORD_PTR CCredCache::GetHeapPtr()
{
return _pMMFile->GetMapPtr();
}
//--------------------------------------------------------------------
// CCredCache::IsTrustedHost
// BUGBUG - no limits on szCtx
//--------------------------------------------------------------------
BOOL CCredCache::IsTrustedHost(LPSTR szCtx, LPSTR szHost)
{
CHAR szBuf[MAX_PATH];
CHAR szRegPath[MAX_PATH];
DWORD dwType, dwError, cbBuf = MAX_PATH;
BOOL fRet = FALSE;
HKEY hHosts = (HKEY) INVALID_HANDLE_VALUE;
memcpy(szRegPath, DIGEST_HOSTS_REG_KEY, sizeof(DIGEST_HOSTS_REG_KEY) - 1);
memcpy(szRegPath + sizeof(DIGEST_HOSTS_REG_KEY) - 1, szCtx, strlen(szCtx) + 1);
if ((dwError = RegCreateKey(HKEY_CURRENT_USER, szRegPath, &hHosts)) == ERROR_SUCCESS)
{
if ((dwError = RegQueryValueEx(hHosts, szHost, NULL, &dwType, (LPBYTE) szBuf, &cbBuf)) == ERROR_SUCCESS)
{
fRet = TRUE;
}
}
if (hHosts != INVALID_HANDLE_VALUE)
RegCloseKey(hHosts);
return fRet;
}
//--------------------------------------------------------------------
// CCredCache::SetTrustedHostInfo
//--------------------------------------------------------------------
BOOL CCredCache::SetTrustedHostInfo(LPSTR szCtx, CParams *pParams)
{
CHAR szRegPath[MAX_PATH], *szUrlBuf = NULL, *szHostBuf = NULL;
DWORD dwZero = 0, dwError = ERROR_SUCCESS, cbUrlBuf, cbHostBuf;
BOOL fRet = FALSE;
HKEY hHosts = (HKEY) INVALID_HANDLE_VALUE;
// Form path to trusted host reg key.
memcpy(szRegPath, DIGEST_HOSTS_REG_KEY, sizeof(DIGEST_HOSTS_REG_KEY) - 1);
memcpy(szRegPath + sizeof(DIGEST_HOSTS_REG_KEY) - 1, szCtx, strlen(szCtx) + 1);
// Open top-level reg key.
if ((dwError = RegCreateKey(HKEY_CURRENT_USER, szRegPath, &hHosts)) != ERROR_SUCCESS)
goto exit;
// First set authenticating host in registry.
LPSTR szHost;
szHost = pParams->GetParam(CParams::HOST);
DIGEST_ASSERT(szHost);
if ((dwError = RegSetValueEx(hHosts, szHost, NULL, REG_DWORD,
(LPBYTE) &dwZero, sizeof(DWORD))) != ERROR_SUCCESS)
goto exit;
// Now check the domain header for any additional trusted hosts.
LPSTR szDomain, pszUrl;
DWORD cbDomain, cbUrl;
pszUrl = NULL;
pParams->GetParam(CParams::DOMAIN, &szDomain, &cbDomain);
if (!szDomain)
{
fRet = TRUE;
goto exit;
}
// Parse the domain header for urls. Crack each url to get the
// host and set the host value in the registry.
// First attempt to load shlwapi. If this fails then we simply do not have
// domain header support.
if (!g_hShlwapi)
{
g_hShlwapi = LoadLibrary(SHLWAPI_DLL_SZ);
if (!g_hShlwapi)
{
dwError = ERROR_DLL_INIT_FAILED;
goto exit;
}
}
// Attempt to get addresses of UrlUnescape and UrlGetPart
PFNURLUNESCAPE pfnUrlUnescape;
PFNURLGETPART pfnUrlGetPart;
pfnUrlUnescape = (PFNURLUNESCAPE) GetProcAddress(g_hShlwapi, "UrlUnescapeA");
pfnUrlGetPart = (PFNURLGETPART) GetProcAddress(g_hShlwapi, "UrlGetPartA");
if (!(pfnUrlUnescape && pfnUrlGetPart))
{
dwError = ERROR_INVALID_FUNCTION;
goto exit;
}
// Strtok through string to get each url (ws and tab delimiters)
pszUrl = NULL;
while (pszUrl = strtok((pszUrl ? NULL : szDomain), " \t"))
{
// Allocate a buffer for the url since we will first unescape it.
// Also allocate buffer for host which will be returned from
// call to shlwapi. Unescaped url and host buffer sizes are
// bounded by length of original url.
cbUrl = strlen(pszUrl) + 1;
cbUrlBuf = cbHostBuf = cbUrl;
szUrlBuf = new CHAR[cbUrlBuf];
szHostBuf = new CHAR[cbHostBuf];
if (!(szUrlBuf && szHostBuf))
{
dwError = ERROR_NOT_ENOUGH_MEMORY;
goto exit;
}
// Copy strtoked url to buffer.
memcpy(szUrlBuf, pszUrl, cbUrl);
// Unescape the url
if (S_OK == pfnUrlUnescape(szUrlBuf, NULL, NULL, URL_UNESCAPE_INPLACE))
{
// If unescape is successful, parse host from url.
if (S_OK == pfnUrlGetPart(szUrlBuf, szHostBuf, &cbHostBuf, URL_PART_HOSTNAME, 0))
{
// If parse is successful, set host in registry.
if ((dwError = RegSetValueEx(hHosts, szHostBuf, NULL, REG_DWORD,
(LPBYTE) &dwZero, sizeof(DWORD))) != ERROR_SUCCESS)
goto exit;
}
}
delete [] szUrlBuf;
delete [] szHostBuf;
szUrlBuf = szHostBuf = NULL;
}
fRet = TRUE;
// Cleanup.
exit:
DIGEST_ASSERT(dwError == ERROR_SUCCESS);
if (hHosts != INVALID_HANDLE_VALUE)
RegCloseKey(hHosts);
if (szUrlBuf)
delete [] szUrlBuf;
if (szHostBuf)
delete [] szHostBuf;
return fRet;
}
//--------------------------------------------------------------------
// CCredCache::MapHandleToSession
//--------------------------------------------------------------------
// BUGBUG - don't walk the sessionlist, just obfuscate the ptr in handle.
CSess *CCredCache::MapHandleToSession(DWORD_PTR dwSess)
{
// BUGBUG - if locking fails, return error directly,
// no last error.
CSess *pSess = NULL;
if (!Lock())
{
DIGEST_ASSERT(FALSE);
_dwStatus = GetLastError();
goto exit;
}
_pSessList->Seek();
while (pSess = (CSess*) _pSessList->GetNext())
{
if ((CSess*) (dwSess + (DWORD_PTR) _pMMFile->GetMapPtr()) == pSess)
break;
}
Unlock();
exit:
return pSess;
}
//--------------------------------------------------------------------
// CCredCache::MapSessionToHandle
//--------------------------------------------------------------------
DWORD CCredCache::MapSessionToHandle(CSess* pSess)
{
DWORD dwSess = 0;
if (!Lock())
{
DIGEST_ASSERT(FALSE);
_dwStatus = GetLastError();
goto exit;
}
dwSess = (DWORD) ((DWORD_PTR) pSess - _pMMFile->GetMapPtr());
Unlock();
exit:
return dwSess;
}
// BUGBUG - init mutex issues.
//--------------------------------------------------------------------
// CCredCache::CCredCache
//--------------------------------------------------------------------
CCredCache::CCredCache()
{
Init();
}
//--------------------------------------------------------------------
// CCredCache::~CCredCache
//--------------------------------------------------------------------
CCredCache::~CCredCache()
{
DeInit();
}
//--------------------------------------------------------------------
// CCredCache::Init
//--------------------------------------------------------------------
DWORD CCredCache::Init()
{
BOOL fFirstProc;
CHAR szMutexName[MAX_PATH];
DWORD cbMutexName = MAX_PATH;
_dwSig = SIG_CACH;
// IE5# 89288
// Get mutex name based on user
if ((_dwStatus = CMMFile::MakeUserObjectName(szMutexName,
&cbMutexName, MAKE_MUTEX_NAME)) != ERROR_SUCCESS)
return _dwStatus;
// Create/Open mutex.
_hMutex = CreateMutex(NULL, FALSE, szMutexName);
// BUGBUG - this goes at a higher level.
// BUGBUG - also watch out for failure to create mutex
// and then unlocking it.
if (_hMutex)
{
// Created/opened mutex. Flag if we're first process.
fFirstProc = (GetLastError() != ERROR_ALREADY_EXISTS);
}
else
{
// Failed to create/open mutex.
DIGEST_ASSERT(FALSE);
_dwStatus = GetLastError();
goto exit;
}
// Acquire mutex.
if (!Lock())
{
DIGEST_ASSERT(FALSE);
_dwStatus = GetLastError();
return _dwStatus;
}
// Open or create memory map.
_pMMFile = new CMMFile(CRED_CACHE_HEAP_SIZE,
CRED_CACHE_ENTRY_SIZE);
if (!_pMMFile)
{
DIGEST_ASSERT(FALSE);
_dwStatus = ERROR_NOT_ENOUGH_MEMORY;
goto exit;
}
_dwStatus = _pMMFile->Init();
if (_dwStatus != ERROR_SUCCESS)
{
DIGEST_ASSERT(FALSE);
goto exit;
}
g_pHeap = GetHeapPtr();
// Initialize session list.
// BUGBUG - check return codes on failure.
_pSessList = new CList();
DIGEST_ASSERT(_pSessList);
_pSessList->Init(GetPtrToObject(CRED_CACHE_SESSION_LIST));
exit:
// Relase mutex.
Unlock();
return _dwStatus;
}
//--------------------------------------------------------------------
// CCredCache::DeInit
//--------------------------------------------------------------------
DWORD CCredCache::DeInit()
{
// bugbug - assert session list is null and destroy.
// bugbug - release lock before closing handle.
if (!Lock())
{
DIGEST_ASSERT(FALSE);
_dwStatus = GetLastError();
goto exit;
}
delete _pMMFile;
_dwStatus = CloseHandle(_hMutex);
Unlock();
exit:
return _dwStatus;
}
//--------------------------------------------------------------------
// CCredCache::LogOnToCache
//--------------------------------------------------------------------
CSess *CCredCache::LogOnToCache(LPSTR szAppCtx, LPSTR szUserCtx, BOOL fHTTP)
{
CSess *pSessNew = NULL;
BOOL fLocked = FALSE;
// Obtain mutex.
if (!Lock())
{
DIGEST_ASSERT(FALSE);
_dwStatus = GetLastError();
goto exit;
}
fLocked = TRUE;
// For non-http clients, find or create the single
// global session which all non-http clients use.
if (!fHTTP)
{
CSess * pSess;
pSess = NULL;
_pSessList->Seek();
while (pSess = (CSess*) _pSessList->GetNext())
{
if (!pSess->fHTTP)
{
// Found the session.
pSessNew = pSess;
_dwStatus = ERROR_SUCCESS;
goto exit;
}
}
if (!pSessNew)
{
// Create the non-http gobal session.
pSessNew = CSess::Create(_pMMFile, NULL, NULL, FALSE);
}
}
else
{
// Create a session context; add to list.
pSessNew = CSess::Create(_pMMFile, szAppCtx, szUserCtx, TRUE);
}
if (!pSessNew)
{
// This reflects running out of space in the memmap
// file. Shouldn't happen in practice.
DIGEST_ASSERT(FALSE);
_dwStatus = ERROR_NOT_ENOUGH_MEMORY;
goto exit;
}
// Push this session on to the session list.
_pSessList->Insert(pSessNew);
_dwStatus = ERROR_SUCCESS;
exit:
// Release mutex.
if(fLocked)
Unlock();
return pSessNew;
}
//--------------------------------------------------------------------
// CCredCache::LogOffFromCache
//--------------------------------------------------------------------
DWORD CCredCache::LogOffFromCache(CSess *pSess)
{
CList CredList;
CCred *pCred;
// Obtain mutex.
if (!Lock())
{
DIGEST_ASSERT(FALSE);
_dwStatus = GetLastError();
goto exit;
}
if (pSess->fHTTP)
{
// Purge all credentials for this session.
// BUGBUG - not needed.
// CredList.Init((CEntry **) &pSess->pCred);
// Flush all credentials for this session
// This will also delete nonces.
FlushCreds(pSess, NULL);
// Finally, free the session.
_pSessList->DeLink(pSess);
CEntry::Free(_pMMFile, pSess);
}
_dwStatus = ERROR_SUCCESS;
// Release mutex.
Unlock();
exit:
return _dwStatus;
}
//--------------------------------------------------------------------
// CCredCache::CreateCred
//--------------------------------------------------------------------
CCred* CCredCache::CreateCred(CSess *pSess, CCredInfo *pInfo)
{
CCred* pCred = NULL, *pCredList;
CList CredList;
// Obtain mutex.
if (!Lock())
{
_dwStatus = GetLastError();
goto exit;
}
// First check to see if any credential in this session matches realm.
pCred = SearchCredList(pSess, NULL, pInfo->szRealm, NULL, FALSE);
if (pCred)
{
CredList.Init(&pSess->dwCred);
CredList.DeLink(pCred);
CCred::Free(_pMMFile, pSess, pCred);
}
// Create a credential.
// BUGBUG - this could fail, transact any cred update.
pCred = CCred::Create(_pMMFile, pInfo->szHost, pInfo->szRealm,
pInfo->szUser, pInfo->szPass, pInfo->szNonce, pInfo->szCNonce);
DIGEST_ASSERT(pCred);
// Insert into head of session's credential list.
if (!CSess::GetCred(pSess))
CSess::SetCred(pSess, pCred);
else
{
CredList.Init(&pSess->dwCred);
CredList.Insert(pCred);
}
_dwStatus = ERROR_SUCCESS;
// Relase mutex.
Unlock();
exit:
return pCred;
}
//--------------------------------------------------------------------
// CCredCache::FindCred
//--------------------------------------------------------------------
CCredInfo* CCredCache::FindCred(CSess *pSessIn, LPSTR szHost,
LPSTR szRealm, LPSTR szUser, LPSTR szNonce,
LPSTR szCNonce, DWORD dwFlags)
{
CCred *pCred;
CCredInfo *pInfo = NULL;
BOOL fLocked = FALSE;
// Obtain mutex.
if (!Lock())
{
DIGEST_ASSERT(FALSE);
_dwStatus = GetLastError();
goto exit;
}
fLocked = TRUE;
// If finding a credential for preauthentication.
if (dwFlags & FIND_CRED_PREAUTH)
{
// First search this session's credential list for a match,
// filtering on the host field in available nonces.
pCred = SearchCredList(pSessIn, szHost, szRealm, szUser, TRUE);
// If a credential is found the nonce is also required.
// We do not attempt to search other sessions for a nonce
// because nonce counts must remain in sync. See note below.
if (pCred)
{
// Increment this credential's nonce count.
CNonce *pNonce;
pNonce = CCred::GetNonce(pCred, szHost, SERVER_NONCE);
if (pNonce)
{
pNonce->cCount++;
pInfo = new CCredInfo(pCred, szHost);
if (!pInfo || pInfo->dwStatus != ERROR_SUCCESS)
{
DIGEST_ASSERT(FALSE);
_dwStatus = ERROR_NOT_ENOUGH_MEMORY;
goto exit;
}
}
}
}
// Otherwise if finding a credential for response to challenge.
else if (dwFlags & FIND_CRED_AUTH)
{
// First search this session's credential list for a match,
// ignoring the host field in available nonces.
pCred = SearchCredList(pSessIn, NULL, szRealm, szUser, FALSE);
// If a credential was found.
if (pCred)
{
// Update the credential's nonce value if extant.
// SetNonce will update any existing nonce entry
// or create a new one if necessary.
CCred::SetNonce(_pMMFile, pCred, szHost, szNonce, SERVER_NONCE);
// BUGBUG - if credential contains a client nonce for a host,
// (for MD5-sess) and is challenged for MD5, we don't revert
// the credential's client nonce to null, so that on subsequent
// auths we will default to MD5. Fix is to delete client nonce
// in this case. Not serious problem though since we don't expect this.
if (szCNonce)
CCred::SetNonce(_pMMFile, pCred, szHost, szCNonce, CLIENT_NONCE);
// Increment this credential's nonce count.
CNonce *pNonce;
pNonce = CCred::GetNonce(pCred, szHost, SERVER_NONCE);
pNonce->cCount++;
// Create and return the found credential.
pInfo = new CCredInfo(pCred, szHost);
if (!pInfo || pInfo->dwStatus != ERROR_SUCCESS)
{
DIGEST_ASSERT(FALSE);
_dwStatus = ERROR_NOT_ENOUGH_MEMORY;
goto exit;
}
}
// If no credential was found and the username has been specified
// also search other sessions for the latest matching credential.
else if (szUser)
{
CSess* pSessCur;
_pSessList->Seek();
CCred* pMatch;
while (pSessCur = (CSess*) _pSessList->GetNext())
{
// We've already searched the session passed in.
if (pSessIn == pSessCur)
continue;
// Are this session's credentials shareable?
if (CSess::CtxMatch(pSessIn, pSessCur))
{
// Find latest credential based on time stamp.
CCred *pCredList;
pMatch = SearchCredList(pSessCur, NULL, szRealm, szUser, FALSE);
if (pMatch && ((!pCred || (pMatch->tStamp > pCred->tStamp))))
{
pCred = pMatch;
}
}
}
// If we found a credential in another session, duplicate it
// and add it to the passed in session's credential list.
// NOTE : WHEN CREATING THE CREDENTIAL DO NOT DUPLICATE
// THE NONCE, OTHERWISE NONCE COUNTS WILL BE INCORRECT.
// USE THE NONCE SUPPLIED IN THE CHALLENGE.
if (pCred)
{
// Create a cred info from the found credential
// and the nonce received from the challenge.
pInfo = new CCredInfo(szHost, CCred::GetRealm(pCred),
CCred::GetUser(pCred), CCred::GetPass(pCred),
szNonce, szCNonce);
if (!pInfo || pInfo->dwStatus != ERROR_SUCCESS)
{
DIGEST_ASSERT(FALSE);
_dwStatus = ERROR_NOT_ENOUGH_MEMORY;
goto exit;
}
// Create the credential in the session list.
pCred = CreateCred(pSessIn, pInfo);
// Increment this credential's nonce count
CNonce *pNonce;
pNonce = CCred::GetNonce(pCred, szHost, SERVER_NONCE);
pNonce->cCount++;
}
}
}
// Otherwise we are prompting for UI.
else if (dwFlags & FIND_CRED_UI)
{
// First search this session's credential list for a match,
// ignoring the host field in available nonces.
pCred = SearchCredList(pSessIn, NULL, szRealm, szUser, FALSE);
if (pCred)
{
// Create and return the found credential.
pInfo = new CCredInfo(szHost, CCred::GetRealm(pCred),
CCred::GetUser(pCred), CCred::GetPass(pCred),
szNonce, szCNonce);
if (!pInfo || pInfo->dwStatus != ERROR_SUCCESS)
{
DIGEST_ASSERT(FALSE);
_dwStatus = ERROR_NOT_ENOUGH_MEMORY;
goto exit;
}
}
else
{
// No credential found in this session's list. Search
// the credentials in other sessions and assemble a list
// of available credentials. If multiple credentials
// are found for a user, select the latest based on
// time stamp.
CSess* pSessCur;
_pSessList->Seek();
while (pSessCur = (CSess*) _pSessList->GetNext())
{
// We've already searched the session passed in.
if (pSessIn == pSessCur)
continue;
// Are this session's credentials shareable?
if (CSess::CtxMatch(pSessIn, pSessCur))
{
pCred = SearchCredList(pSessCur, NULL, szRealm, szUser, FALSE);
if (pCred)
{
// Found a valid credential.
CCredInfo *pNew;
pNew = new CCredInfo(szHost, CCred::GetRealm(pCred),
CCred::GetUser(pCred), CCred::GetPass(pCred),
szNonce, szCNonce);
if (!pNew || pNew->dwStatus != ERROR_SUCCESS)
{
DIGEST_ASSERT(FALSE);
_dwStatus = ERROR_NOT_ENOUGH_MEMORY;
goto exit;
}
// Update list based on timestamps.
pInfo = UpdateInfoList(pNew, pInfo);
}
}
}
}
}
_dwStatus = ERROR_SUCCESS;
exit:
// Clean up allocated cred infos if
// we failed for some reason.
// bugbug - clean this up.
if (_dwStatus != ERROR_SUCCESS)
{
CCredInfo *pNext;
while (pInfo)
{
pNext = pInfo->pNext;
delete pInfo;
pInfo = pNext;
}
pInfo = NULL;
}
// Relase mutex.
if(fLocked)
Unlock();
// Return any CCredInfo found, possibly a list or NULL.
return pInfo;
}
//--------------------------------------------------------------------
// CCredCache::FlushCreds
//--------------------------------------------------------------------
VOID CCredCache::FlushCreds(CSess *pSess, LPSTR szRealm)
{
CSess *pSessCur;
CCred *pCred;
CList CredList;
// Obtain mutex.
if (!Lock())
{
DIGEST_ASSERT(FALSE);
_dwStatus = GetLastError();
return;
}
// BUGBUG - don't scan through all sessions.
// BUGBUG - abstract cred deletion.
// Flush all credentials if no session specified
// or only the credentials of the indicated session.
_pSessList->Seek();
while (pSessCur = (CSess*) _pSessList->GetNext())
{
if (pSess && (pSessCur != pSess))
continue;
CredList.Init(&pSessCur->dwCred);
while (pCred = (CCred*) CredList.GetNext())
{
// If a realm is specified, only delete
// credentials with that realm.
if (!szRealm || (!strcmp(szRealm, CCred::GetRealm(pCred))))
CCred::Free(_pMMFile, pSessCur, pCred);
}
}
// Release mutex.
Unlock();
}
//--------------------------------------------------------------------
// CCredCache::GetStatus
//--------------------------------------------------------------------
DWORD CCredCache::GetStatus()
{
return _dwStatus;
}
| [
"support@cryptoalgo.cf"
] | support@cryptoalgo.cf |
51c76d90c16cb3370c97f476e1649c782a64906a | ceeddddcf3e99e909c4af5ff2b9fad4a8ecaeb2a | /tags/release-1.2/examples/10.Shaders/main.cpp | 8828e12b9771af3b9c787315ccd78d64cf0476e9 | [
"LicenseRef-scancode-other-permissive",
"LicenseRef-scancode-unknown-license-reference",
"Zlib"
] | permissive | jivibounty/irrlicht | d9d6993bd0aee00dce2397a887b7f547ade74fbb | c5c80cde40b6d14fe5661440638d36a16b41d7ab | refs/heads/master | 2021-01-18T02:56:08.844268 | 2015-07-21T08:02:25 | 2015-07-21T08:02:25 | 39,405,895 | 0 | 0 | null | 2015-07-20T20:07:06 | 2015-07-20T20:07:06 | null | UTF-8 | C++ | false | false | 14,109 | cpp | /*
This tutorial shows how to use shaders for D3D8, D3D9 and OpenGL
with the engine and how to create new material types with them. It also
shows how to disable the generation of mipmaps at texture loading, and
how to use text scene nodes.
This tutorial does not explain how shaders work. I would recommend to read the D3D
or OpenGL documentation, to search a tutorial, or to read a book about this.
At first, we need to include all headers and do the stuff we always do, like
in nearly all other tutorials:
*/
#include <irrlicht.h>
#include <iostream>
using namespace irr;
#pragma comment(lib, "Irrlicht.lib")
/*
Because we want to use some interesting shaders in this tutorials, we
need to set some data for them to make them able to compute nice
colors. In this example, we'll use a simple vertex shader which will
calculate the color of the vertex based on the position of the camera.
For this, the shader needs the following data: The inverted world matrix
for transforming the normal, the clip matrix for transforming the position,
the camera position and the world position of the object for the calculation
of the angle of light, and the color of the light. To be able to tell the
shader all this data every frame, we have to derive a class from the
IShaderConstantSetCallBack interface and override its only method,
namely OnSetConstants(). This method will be called every time the material
is set.
The method setVertexShaderConstant() of the IMaterialRendererServices interface
is used to set the data the shader needs. If the user chose to use a High Level shader
language like HLSL instead of Assembler in this example, you have to set the
variable name as parameter instead of the register index.
*/
IrrlichtDevice* device = 0;
bool UseHighLevelShaders = false;
class MyShaderCallBack : public video::IShaderConstantSetCallBack
{
public:
virtual void OnSetConstants(video::IMaterialRendererServices* services, s32 userData)
{
video::IVideoDriver* driver = services->getVideoDriver();
// set inverted world matrix
// if we are using highlevel shaders (the user can select this when
// starting the program), we must set the constants by name.
core::matrix4 invWorld = driver->getTransform(video::ETS_WORLD);
invWorld.makeInverse();
if (UseHighLevelShaders)
services->setVertexShaderConstant("mInvWorld", &invWorld.M[0], 16);
else
services->setVertexShaderConstant(&invWorld.M[0], 0, 4);
// set clip matrix
core::matrix4 worldViewProj;
worldViewProj = driver->getTransform(video::ETS_PROJECTION);
worldViewProj *= driver->getTransform(video::ETS_VIEW);
worldViewProj *= driver->getTransform(video::ETS_WORLD);
if (UseHighLevelShaders)
services->setVertexShaderConstant("mWorldViewProj", &worldViewProj.M[0], 16);
else
services->setVertexShaderConstant(&worldViewProj.M[0], 4, 4);
// set camera position
core::vector3df pos = device->getSceneManager()->
getActiveCamera()->getAbsolutePosition();
if (UseHighLevelShaders)
services->setVertexShaderConstant("mLightPos", reinterpret_cast<f32*>(&pos), 3);
else
services->setVertexShaderConstant(reinterpret_cast<f32*>(&pos), 8, 1);
// set light color
video::SColorf col(0.0f,1.0f,1.0f,0.0f);
if (UseHighLevelShaders)
services->setVertexShaderConstant("mLightColor", reinterpret_cast<f32*>(&col), 4);
else
services->setVertexShaderConstant(reinterpret_cast<f32*>(&col), 9, 1);
// set transposed world matrix
core::matrix4 world = driver->getTransform(video::ETS_WORLD);
world = world.getTransposed();
if (UseHighLevelShaders)
services->setVertexShaderConstant("mTransWorld", &world.M[0], 16);
else
services->setVertexShaderConstant(&world.M[0], 10, 4);
}
};
/*
The next few lines start up the engine. Just like in most other tutorials
before. But in addition, we ask the user if he wants this example to use
high level shaders if he selected a driver which is capable of doing so.
*/
int main()
{
// let user select driver type
video::E_DRIVER_TYPE driverType = video::EDT_DIRECT3D9;
printf("Please select the driver you want for this example:\n"\
" (a) Direct3D 9.0c\n (b) Direct3D 8.1\n (c) OpenGL 1.5\n"\
" (d) Software Renderer\n (e) Burning's Software Renderer\n"\
" (f) NullDevice\n (otherKey) exit\n\n");
char i;
std::cin >> i;
switch(i)
{
case 'a': driverType = video::EDT_DIRECT3D9;break;
case 'b': driverType = video::EDT_DIRECT3D8;break;
case 'c': driverType = video::EDT_OPENGL; break;
case 'd': driverType = video::EDT_SOFTWARE; break;
case 'e': driverType = video::EDT_SOFTWARE2;break;
case 'f': driverType = video::EDT_NULL; break;
default: return 1;
}
// ask the user if we should use high level shaders for this example
if (driverType == video::EDT_DIRECT3D9 ||
driverType == video::EDT_OPENGL)
{
printf("Please press 'y' if you want to use high level shaders.\n");
std::cin >> i;
if (i == 'y')
UseHighLevelShaders = true;
}
// create device
device = createDevice(driverType, core::dimension2d<s32>(640, 480));
if (device == 0)
return 1; // could not create selected driver.
video::IVideoDriver* driver = device->getVideoDriver();
scene::ISceneManager* smgr = device->getSceneManager();
gui::IGUIEnvironment* gui = device->getGUIEnvironment();
/*
Now for the more interesting parts.
If we are using Direct3D, we want to load vertex and pixel shader programs, if we have
OpenGL, we want to use ARB fragment and vertex programs. I wrote the
corresponding programs down into the files d3d8.ps, d3d8.vs, d3d9.ps, d3d9.vs,
opengl.ps and opengl.vs. We only need the right filenames now. This is done in the
following switch. Note, that it is not necessary to write the shaders into text
files, like in this example. You can even write the shaders directly as strings
into the cpp source file, and use later addShaderMaterial() instead of
addShaderMaterialFromFiles().
*/
c8* vsFileName = 0; // filename for the vertex shader
c8* psFileName = 0; // filename for the pixel shader
switch(driverType)
{
case video::EDT_DIRECT3D8:
psFileName = "../../media/d3d8.psh";
vsFileName = "../../media/d3d8.vsh";
break;
case video::EDT_DIRECT3D9:
if (UseHighLevelShaders)
{
psFileName = "../../media/d3d9.hlsl";
vsFileName = psFileName; // both shaders are in the same file
}
else
{
psFileName = "../../media/d3d9.psh";
vsFileName = "../../media/d3d9.vsh";
}
break;
case video::EDT_OPENGL:
if (UseHighLevelShaders)
{
psFileName = "../../media/opengl.frag";
vsFileName = "../../media/opengl.vert";
}
else
{
psFileName = "../../media/opengl.psh";
vsFileName = "../../media/opengl.vsh";
}
break;
}
/*
In addition, we check if the hardware and the selected renderer is capable
of executing the shaders we want. If not, we simply set the filename string
to 0. This is not necessary, but useful in this example: For example, if
the hardware is able to execute vertex shaders but not pixel shaders, we create
a new material which only uses the vertex shader, and no pixel shader.
Otherwise, if we would tell the engine to create this material and the engine
sees that the hardware wouldn't be able to fullfill the request completely,
it would not create any new material at all. So in this example you would see
at least the vertex shader in action, without the pixel shader.
*/
if (!driver->queryFeature(video::EVDF_PIXEL_SHADER_1_1) &&
!driver->queryFeature(video::EVDF_ARB_FRAGMENT_PROGRAM_1))
{
device->getLogger()->log("WARNING: Pixel shaders disabled "\
"because of missing driver/hardware support.");
psFileName = 0;
}
if (!driver->queryFeature(video::EVDF_VERTEX_SHADER_1_1) &&
!driver->queryFeature(video::EVDF_ARB_VERTEX_PROGRAM_1))
{
device->getLogger()->log("WARNING: Vertex shaders disabled "\
"because of missing driver/hardware support.");
vsFileName = 0;
}
/*
Now lets create the new materials.
As you maybe know from previous examples, a material type in the Irrlicht engine
is set by simply changing the MaterialType value in the SMaterial struct. And this
value is just a simple 32 bit value, like video::EMT_SOLID. So we only need the
engine to create a new value for us which we can set there.
To do this, we get a pointer to the IGPUProgrammingServices and call
addShaderMaterialFromFiles(), which returns such a new 32 bit value. That's all.
The parameters to this method are the following:
First, the names of the files containing the code of the vertex and the pixel shader.
If you would use addShaderMaterial() instead, you would not need file names, then you
could write the code of the shader directly as string.
The following parameter is a pointer to the IShaderConstantSetCallBack class we wrote
at the beginning of this tutorial. If you don't want to set constants, set this to 0.
The last paramter tells the engine which material it should use as base material.
To demonstrate this, we create two materials with a different base material, one
with EMT_SOLID and one with EMT_TRANSPARENT_ADD_COLOR.
*/
// create materials
video::IGPUProgrammingServices* gpu = driver->getGPUProgrammingServices();
s32 newMaterialType1 = 0;
s32 newMaterialType2 = 0;
if (gpu)
{
MyShaderCallBack* mc = new MyShaderCallBack();
// create the shaders depending on if the user wanted high level
// or low level shaders:
if (UseHighLevelShaders)
{
// create material from high level shaders (hlsl or glsl)
newMaterialType1 = gpu->addHighLevelShaderMaterialFromFiles(
vsFileName, "vertexMain", video::EVST_VS_1_1,
psFileName, "pixelMain", video::EPST_PS_1_1,
mc, video::EMT_SOLID);
newMaterialType2 = gpu->addHighLevelShaderMaterialFromFiles(
vsFileName, "vertexMain", video::EVST_VS_1_1,
psFileName, "pixelMain", video::EPST_PS_1_1,
mc, video::EMT_TRANSPARENT_ADD_COLOR);
}
else
{
// create material from low level shaders (asm or arb_asm)
newMaterialType1 = gpu->addShaderMaterialFromFiles(vsFileName,
psFileName, mc, video::EMT_SOLID);
newMaterialType2 = gpu->addShaderMaterialFromFiles(vsFileName,
psFileName, mc, video::EMT_TRANSPARENT_ADD_COLOR);
}
mc->drop();
}
/*
Now time for testing out the materials. We create a test cube
and set the material we created. In addition, we add a text scene node to
the cube and a rotation animator to make it look more interesting and
important.
*/
// create test scene node 1, with the new created material type 1
scene::ISceneNode* node = smgr->addCubeSceneNode(50);
node->setPosition(core::vector3df(0,0,0));
node->setMaterialTexture(0, driver->getTexture("../../media/wall.bmp"));
node->setMaterialFlag(video::EMF_LIGHTING, false);
node->setMaterialType((video::E_MATERIAL_TYPE)newMaterialType1);
smgr->addTextSceneNode(gui->getBuiltInFont(),
L"PS & VS & EMT_SOLID",
video::SColor(255,255,255,255), node);
scene::ISceneNodeAnimator* anim = smgr->createRotationAnimator(
core::vector3df(0,0.3f,0));
node->addAnimator(anim);
anim->drop();
/*
Same for the second cube, but with the second material we created.
*/
// create test scene node 2, with the new created material type 2
node = smgr->addCubeSceneNode(50);
node->setPosition(core::vector3df(0,-10,50));
node->setMaterialTexture(0, driver->getTexture("../../media/wall.bmp"));
node->setMaterialFlag(video::EMF_LIGHTING, false);
node->setMaterialType((video::E_MATERIAL_TYPE)newMaterialType2);
smgr->addTextSceneNode(gui->getBuiltInFont(),
L"PS & VS & EMT_TRANSPARENT",
video::SColor(255,255,255,255), node);
anim = smgr->createRotationAnimator(core::vector3df(0,0.3f,0));
node->addAnimator(anim);
anim->drop();
/*
Then we add a third cube without a shader on it, to be able to compare the
cubes.
*/
// add a scene node with no shader
node = smgr->addCubeSceneNode(50);
node->setPosition(core::vector3df(0,50,25));
node->setMaterialTexture(0, driver->getTexture("../../media/wall.bmp"));
node->setMaterialFlag(video::EMF_LIGHTING, false);
smgr->addTextSceneNode(gui->getBuiltInFont(), L"NO SHADER",
video::SColor(255,255,255,255), node);
/*
And last, we add a skybox and a user controlled camera to the scene.
For the skybox textures, we disable mipmap generation, because we don't
need mipmaps on it.
*/
// add a nice skybox
driver->setTextureCreationFlag(video::ETCF_CREATE_MIP_MAPS, false);
smgr->addSkyBoxSceneNode(
driver->getTexture("../../media/irrlicht2_up.jpg"),
driver->getTexture("../../media/irrlicht2_dn.jpg"),
driver->getTexture("../../media/irrlicht2_lf.jpg"),
driver->getTexture("../../media/irrlicht2_rt.jpg"),
driver->getTexture("../../media/irrlicht2_ft.jpg"),
driver->getTexture("../../media/irrlicht2_bk.jpg"));
driver->setTextureCreationFlag(video::ETCF_CREATE_MIP_MAPS, true);
// add a camera and disable the mouse cursor
scene::ICameraSceneNode* cam = smgr->addCameraSceneNodeFPS(0, 100.0f, 100.0f);
cam->setPosition(core::vector3df(-100,50,100));
cam->setTarget(core::vector3df(0,0,0));
device->getCursorControl()->setVisible(false);
/*
Now draw everything. That's all.
*/
int lastFPS = -1;
while(device->run())
if (device->isWindowActive())
{
driver->beginScene(true, true, video::SColor(255,0,0,0));
smgr->drawAll();
driver->endScene();
int fps = driver->getFPS();
if (lastFPS != fps)
{
core::stringw str = L"Irrlicht Engine - Vertex and pixel shader example [";
str += driver->getName();
str += "] FPS:";
str += fps;
device->setWindowCaption(str.c_str());
lastFPS = fps;
}
}
device->drop();
return 0;
}
| [
"hybrid@dfc29bdd-3216-0410-991c-e03cc46cb475"
] | hybrid@dfc29bdd-3216-0410-991c-e03cc46cb475 |
632767c33050d1b0b31d514c4bac302c0928639a | 8bfc16ebeaa42d73da4f961b82f50de799c367df | /include/multibeep/arm/arm.hpp | 17cd31c77349812ea7e4d07cc4e55b12b3c21d9d | [] | no_license | automl/multibeep | 1ff0a619aacd164c7e83ca7f9b717ada120c2feb | 6b58df2df2af080e2f2d7ac0a08813d8b0d7482d | refs/heads/master | 2023-08-30T02:10:28.874095 | 2016-12-22T14:27:07 | 2016-12-22T14:27:07 | 68,289,624 | 8 | 6 | null | null | null | null | UTF-8 | C++ | false | false | 1,177 | hpp | #ifndef MULTIBEEP_ARM
#define MULTIBEEP_ARM
#include <stdexcept>
#include <string>
#include <memory>
#include <multibeep/util/posteriors.hpp>
#include <multibeep/util/reward_predictor.hpp>
namespace multibeep{ namespace arms{
template <typename num_t = double, typename rng_t = std::default_random_engine>
class base{
public:
/*\brief pulls arm and returns reward */
virtual num_t pull() = 0;
/*\brief known real mean of the arm to compute regrets*/
virtual num_t real_mean() const = 0;
/*\brief known variance of the arm; not really necessary*/
virtual num_t real_variance() const = 0;
/*\brief every arm type has a unique id; for storage */
virtual std::string get_ident() const = 0;
virtual bool provides_posterior() const { return(false);}
virtual std::shared_ptr<multibeep::util::posteriors::base<num_t, rng_t> > posterior() const {
//TODO: insert ident into the string for better error messages
throw std::runtime_error("Arm does not provide a posterior!");
}
/* \brief function allowing some tear-down when the arm is deactivated*/
virtual void deactivate () {}
virtual ~base() {}
};
}}
#endif
| [
"sfalkner@cs.uni-freiburg.de"
] | sfalkner@cs.uni-freiburg.de |
0332c8547426cbc9a0831bceac1dd3bf3856a5f4 | 3b4ce6c289f5f258e99e0093d9c7fdaa416c2801 | /K_Means/Main.cpp | 37390dfe4cd8c2a6881fd1a316ed4107af27b9e4 | [] | no_license | tairhassid/K_Means | 01c51aacfd75ae29ac934efb9a8ec97f2b21a4f9 | 0243c39a0cb3aa1e47f99214a07b29ff4f6ee516 | refs/heads/master | 2020-07-29T22:18:00.564906 | 2019-09-21T13:30:04 | 2019-09-21T13:30:04 | 209,982,431 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 16,033 | cpp | #include "Header.h"
MPI_Datatype PointsMPI;
MPI_Datatype ClustersMPI;
MPI_Datatype PositionMPI;
int main(int argc, char *argv[])
{
int n, k;
double limit, qm, t, dt, currentTime = 0, quality = 0;
double startTime, endTime, totalRunningTime;
point_t* points;
cluster_t* clusters;
//MPI variables
int numprocs, rank, lengthToSend = 0, jobLen = 0;
MPI_Status status;
char buffer[BUFFER_SIZE];
int position = 0;
MPI_Init(&argc, &argv);
MPI_Comm_size(MPI_COMM_WORLD, &numprocs);
MPI_Comm_rank(MPI_COMM_WORLD, &rank);
if (numprocs < 3) {
printf("Please run at least three MPI proceeses\n");
fflush(stdout);
MPI_Abort(MPI_COMM_WORLD, 0);
}
if (rank == MASTER)
{
startTime = MPI_Wtime();
readAllFile(&points, &n, &k, &t, &dt, &limit, &qm);
packFirstLine(&position, &n, &k, &t, &dt, &limit, &qm, buffer);
}
MPI_Bcast(&position, 1, MPI_INT, 0, MPI_COMM_WORLD);
MPI_Bcast(buffer, position, MPI_PACKED, 0, MPI_COMM_WORLD);
unpackFirstLine(&position, &n, &k, &t, &dt, &limit, &qm, buffer);
clusters = (cluster_t*)calloc(k, sizeof(cluster_t));
createNewMPITypes(&PointsMPI, &ClustersMPI, &PositionMPI);
if (rank == MASTER)
{
createInitialCenters(points, n, clusters, k);
initializeClustersID(clusters, k, n);
sendJobsToSlaves(points, n, numprocs);
defineLength(&jobLen, n, rank, numprocs);
}
else
recieveJobFromMaster(&points, rank, n, numprocs, &jobLen, &status);
MPI_Bcast(clusters, k, ClustersMPI, 0, MPI_COMM_WORLD);
clusters[0].numOfPoints = jobLen;
KMeans(¤tTime, t, dt, limit, qm, &quality, points, n, clusters, k, jobLen, rank, numprocs, &status);
if (rank == MASTER)
{
if (quality >= qm)
currentTime -= dt; //because after the last iteration dt is added once more and not entering the loop
writeToFile(OUTPUT_FILE, currentTime, quality, clusters, k);
endTime = MPI_Wtime();
totalRunningTime = endTime - startTime;
printf("total running time = %f\n", totalRunningTime);
fflush(stdout);
}
free(clusters);
free(points);
printf("proc %d finished\n", rank);
fflush(stdout);
MPI_Finalize();
return 0;
}
FILE* openFileToRead(const char* filePath)
{
FILE* file = fopen(filePath, "r");
if (file == NULL)
{
printf("Couldn't find the file\n");
fflush(stdout);
MPI_Abort(MPI_COMM_WORLD, 1);
}
return file;
}
void readAllFile(point_t** points, int* n, int* k, double* t, double* dt, double* limit, double* qm)
{
FILE* file;
file = openFileToRead(INPUT_FILE);
readFirstLine(file, n, k, t, dt, limit, qm);
*points = (point_t*)calloc(*n, sizeof(point_t));
readPoints(file, *n, *points);
}
void readFirstLine(FILE* file, int* n, int* k, double* t, double* dt, double* limit, double* qm)
{
fscanf(file, "%d %d %lf %lf %lf %lf", n, k, t, dt, limit, qm);
if (*n < MIN_NUM_OF_POINTS || *n > MAX_NUM_OF_POINTS)
{
printf("The number of points has to be between %d and %d", MIN_NUM_OF_POINTS, MAX_NUM_OF_POINTS);
MPI_Abort(MPI_COMM_WORLD, 1);
}
}
void readPoints(FILE* file, int n, point_t* points)
{
int i;
for (i = 0; i < n; i++)
{
fscanf(file, "%lf %lf %lf %lf %lf %lf", &points[i].pos.x, &points[i].pos.y, &points[i].pos.z,
&points[i].v.vx, &points[i].v.vy, &points[i].v.vz);
points[i].initialPos.x = points[i].pos.x;
points[i].initialPos.y = points[i].pos.y;
points[i].initialPos.z = points[i].pos.z;
}
fclose(file);
}
void writeToFile(const char* filePath, double t, double quality, cluster_t* clusters, int k)
{
int i;
FILE* file = fopen(filePath, "w");
if (file == NULL)
{
printf("Failed opening the file. Exiting!\n");
fflush(stdout);
MPI_Abort(MPI_COMM_WORLD, 1);
}
fprintf(file, "First occurrence t = %lf with q = %lf\n", t, quality);
fprintf(file, "Centers of the clusters:\n");
for (i = 0; i < k; i++)
{
fprintf(file, "%lf %lf %lf\n", clusters[i].center.x, clusters[i].center.y, clusters[i].center.z);
}
printf("IN WRITE\n");
fflush(stdout);
fclose(file);
}
void KMeans(double* currentTime, double t, double dt, double limit, double qm, double* quality, point_t* points, int n, cluster_t* clusters,
int k, int jobLen, int rank, int numprocs, MPI_Status* status)
{
/*termination- indicates if there was at least one point that moved from one cluster to another*/
int termination;
int numOfIteration, i;
for (*currentTime = 0; *currentTime <= t; *currentTime += dt)
{
updatePointsInTimeWithCuda(points, jobLen, *currentTime);
termination = 0;
numOfIteration = 0;
while (!termination && numOfIteration < limit)
{
numOfIteration++;
termination = 1;
defineCentersWithCuda(points, jobLen, clusters, k, &termination);
recalcNumOfPoints(points, jobLen, clusters, k, rank, numOfIteration);
gatherSumsFromSlaves(points, jobLen, clusters, k, rank, numprocs, n);
calcTotalTermination(&termination, numprocs, rank);
}
if (rank == MASTER)
{
int add = 0;
for (i = 1; i < numprocs; i++)
{
int slaveJobLen;
defineLength(&slaveJobLen, n, i, numprocs);
MPI_Recv(&points[jobLen*i + add], slaveJobLen, PointsMPI, i, 0, MPI_COMM_WORLD, status);
add = slaveJobLen - jobLen;
}
*quality = evaluateQuality(points, n, clusters, k);
}
else
{
MPI_Send(points, jobLen, PointsMPI, MASTER, 0, MPI_COMM_WORLD);
}
MPI_Bcast(quality, 1, MPI_DOUBLE, MASTER, MPI_COMM_WORLD);
if (*quality < qm)
break;
}
}
void calcTotalTermination(int* termination, int numprocs, int rank)
{
int i;
int* terminationFromAllProcs = (int*)calloc(numprocs, sizeof(int));
MPI_Gather(termination, 1, MPI_INT, terminationFromAllProcs, 1, MPI_INT, MASTER, MPI_COMM_WORLD);
if (rank == MASTER)
for (i = 0; i < numprocs; i++)
if (terminationFromAllProcs[i] == 0)
*termination = 0;
MPI_Bcast(termination, 1, MPI_INT, MASTER, MPI_COMM_WORLD);
free(terminationFromAllProcs);
}
/*update all the points*/
void updatePointsInTime(point_t* points, int n, double time)
{
int i;
#pragma omp parallel for private(i)
for (i = 0; i < n; i++)
{
posAtGivenTime(&points[i], time);
}
}
/*changes the position of a given point according to the time. x(t) = x(t-1) + t*v */
void posAtGivenTime(point_t* p, double time)
{
position_t pos;
pos.x = (p->pos.x) + time * (p->v.vx);
pos.y = (p->pos.y) + time * (p->v.vy);
pos.z = (p->pos.z) + time * (p->v.vz);
p->pos = pos;
//return pos;
}
/*first k points are the initial centers*/
void createInitialCenters(point_t* points, int n, cluster_t* clusters, int k)
{
int i;
#pragma omp parallel for private(i)
for (i = 0; i < k; i++)
{
clusters[i].center.x = points[i].pos.x;
clusters[i].center.y = points[i].pos.y;
clusters[i].center.z = points[i].pos.z;
}
}
/*each cluster gets id equals to its location in the array*/
void initializeClustersID(cluster_t* clusters, int k, int n)
{
int i;
#pragma omp parallel for private(i)
for (i = 0; i < k; i++)
{
clusters[i].id = i;
}
}
/*Counts the points for every cluster*/
void recalcNumOfPoints(point_t* points, int n, cluster_t* clusters, int k, int rank, int numOfIteration)
{
int i;
resetNumOfPoints(clusters, k);
for (i = 0; i < n; i++)
clusters[points[i].clusterID].numOfPoints++;
}
/*initialize numOfPoints for each cluster to 0*/
void resetNumOfPoints(cluster_t* clusters, int k)
{
int i;
#pragma omp parallel private(i)
{
#pragma omp for
for (i = 0; i < k; i++)
clusters[i].numOfPoints = 0;
}
}
/*calculate distance between two points*/
double distance(position_t pointPos, position_t otherPointPos)
{
return sqrt(pow((pointPos.x - otherPointPos.x), 2) +
pow((pointPos.y - otherPointPos.y), 2) + pow((pointPos.z - otherPointPos.z), 2));
}
/*Gets a point and returns the cluster it belongs*/
cluster_t* findCluster(point_t point, cluster_t* clusters, int k)
{
int i;
for (i = 0; i < k; i++)
if (point.clusterID == clusters[i].id)
return &(clusters[i]);
return &(clusters[0]);
}
/*Gather sums of all points and num of points from each slave. Calculates new clusters (average of all points in each)*/
void gatherSumsFromSlaves(point_t* points, int jobLen, cluster_t* clusters, int k, int rank, int numprocs, int totalNumOfPoints)
{
int i, *numOfPointsFromAllSlaves;
int numOfPointsInCluster;
position_t sum = { 0, 0, 0 };
position_t* sumFromAllSlaves;
position_t average;
numOfPointsFromAllSlaves = (int*)malloc(numprocs * sizeof(int));
sumFromAllSlaves = (position_t*)malloc(numprocs * sizeof(position_t));
for (i = 0; i < k; i++)
{
numOfPointsInCluster = 0;
MPI_Gather(&(clusters[i].numOfPoints), 1, MPI_INT, numOfPointsFromAllSlaves, 1, MPI_INT, MASTER, MPI_COMM_WORLD);
if (rank == MASTER)
calcNumOfPointsInCluster(numOfPointsFromAllSlaves, &numOfPointsInCluster, numprocs);
MPI_Bcast(&numOfPointsInCluster, 1, MPI_INT, MASTER, MPI_COMM_WORLD);
if (numOfPointsInCluster > 0)
{
sumAllPointsInCluster(points, jobLen, clusters[i], &sum);
MPI_Gather(&sum, 1, PositionMPI, sumFromAllSlaves, 1, PositionMPI, MASTER, MPI_COMM_WORLD);
if (rank == MASTER)
{
average = calcAverage(points, jobLen, clusters[i], sumFromAllSlaves, numOfPointsInCluster, numprocs, totalNumOfPoints);
}
MPI_Bcast(&average, 1, PositionMPI, MASTER, MPI_COMM_WORLD);
clusters[i].center = average;
}
}
free(sumFromAllSlaves);
free(numOfPointsFromAllSlaves);
}
/*Gets an array in which every item is numOfPoints in a specific cluster, that the master got from the slaves*/
void calcNumOfPointsInCluster(int* numOfPointsFromAllSlaves, int* numOfPoints, int numprocs)
{
int i;
for (i = 0; i < numprocs; i++)
*numOfPoints += numOfPointsFromAllSlaves[i];
}
/*Sums x, y, z for all points in given cluster*/
void sumAllPointsInCluster(point_t* points, int n, cluster_t cluster, position_t* sum)
{
int i;
sum->x = sum->y = sum->z = 0;
for (i = 0; i < n; i++)
if (cluster.id == points[i].clusterID)
{
sum->x += points[i].pos.x;
sum->y += points[i].pos.y;
sum->z += points[i].pos.z;
}
}
/*Calculates the average of a given cluster*/
position_t calcAverage(point_t* points, int n, cluster_t cluster, position_t* sumOfPoints, int numOfPoints, int numprocs, int totalNumOfPoints)
{
int i;
position_t totalSumForCluster = { 0, 0, 0 };
position_t average = { 0, 0, 0 };
for (i = 0; i < numprocs; i++)
{
totalSumForCluster.x += sumOfPoints[i].x;
totalSumForCluster.y += sumOfPoints[i].y;
totalSumForCluster.z += sumOfPoints[i].z;
}
if (numOfPoints > 0)
{
average.x = totalSumForCluster.x / numOfPoints;
average.y = totalSumForCluster.y / numOfPoints;
average.z = totalSumForCluster.z / numOfPoints;
}
return average;
}
double evaluateQuality(point_t* points, int n, cluster_t* clusters, int k)
{
int i, j;
double q = 0.0;
double diameter, distanceBewteenClusters;
#pragma omp parallel for private(i, j, distanceBewteenClusters) reduction(+:q)
for (i = 0; i < k; i++)
{
diameter = findDiameter(points, n, &(clusters[i]));
for (j = 0; j < k; j++)
{
if (j != i)
{
distanceBewteenClusters = distance(clusters[i].center, clusters[j].center);
q += diameter / distanceBewteenClusters;
}
}
}
return q / (k*(k - 1));
}
double findDiameter(point_t* points, int n, cluster_t* cluster)
{
int i, j;
double maxDist = 0.0;
double currentDist;
#pragma omp parallel for private(i, j, currentDist)
for (i = 0; i < n; i++)
if (points[i].clusterID == cluster->id)
{
for (j = i+1; j < n; j++)
{
if (points[j].clusterID == cluster->id)
{
currentDist = distance(points[i].pos, points[j].pos);
if (currentDist > maxDist)
maxDist = currentDist;
}
}
}
return maxDist;
}
/*packs the first line read from the file in order to send it to the other processes.
position - how long the whole package is*/
void packFirstLine(int* position, int* n, int* k, double* t, double* dt, double* limit, double* qm, char* buffer)
{
MPI_Pack(n, 1, MPI_INT, buffer, BUFFER_SIZE, position, MPI_COMM_WORLD);
MPI_Pack(k, 1, MPI_INT, buffer, BUFFER_SIZE, position, MPI_COMM_WORLD);
MPI_Pack(t, 1, MPI_DOUBLE, buffer, BUFFER_SIZE, position, MPI_COMM_WORLD);
MPI_Pack(dt, 1, MPI_DOUBLE, buffer, BUFFER_SIZE, position, MPI_COMM_WORLD);
MPI_Pack(limit, 1, MPI_DOUBLE, buffer, BUFFER_SIZE, position, MPI_COMM_WORLD);
MPI_Pack(qm, 1, MPI_DOUBLE, buffer, BUFFER_SIZE, position, MPI_COMM_WORLD);
}
/*unpacks the package sent from the master*/
void unpackFirstLine(int* packSize, int* n, int* k, double* t, double* dt, double* limit, double* qm, char* buffer)
{
int position = 0;
MPI_Unpack(buffer, *packSize, &position, n, 1, MPI_INT, MPI_COMM_WORLD);
MPI_Unpack(buffer, *packSize, &position, k, 1, MPI_INT, MPI_COMM_WORLD);
MPI_Unpack(buffer, *packSize, &position, t, 1, MPI_DOUBLE, MPI_COMM_WORLD);
MPI_Unpack(buffer, *packSize, &position, dt, 1, MPI_DOUBLE, MPI_COMM_WORLD);
MPI_Unpack(buffer, *packSize, &position, limit, 1, MPI_DOUBLE, MPI_COMM_WORLD);
MPI_Unpack(buffer, *packSize, &position, qm, 1, MPI_DOUBLE, MPI_COMM_WORLD);
}
void createNewMPITypes(MPI_Datatype* PointsMPI, MPI_Datatype* ClustersMPI, MPI_Datatype* PositionMPI)
{
position_t position;
MPI_Datatype posType[3] = { MPI_DOUBLE, MPI_DOUBLE, MPI_DOUBLE };
int posBlockLen[3] = { 1, 1, 1 };
MPI_Aint posDisp[3];
velocity_t velocity;
MPI_Datatype VelocityMPI;
MPI_Datatype velocityType[3] = { MPI_DOUBLE, MPI_DOUBLE, MPI_DOUBLE };
int velocityBlockLen[3] = { 1, 1, 1 };
MPI_Aint velocityDisp[3];
posDisp[0] = (char*)&position.x - (char*)&position;
posDisp[1] = (char*)&position.y - (char*)&position;
posDisp[2] = (char*)&position.z - (char*)&position;
MPI_Type_create_struct(3, posBlockLen, posDisp, posType, PositionMPI);
MPI_Type_commit(PositionMPI);
velocityDisp[0] = (char*)&velocity.vx - (char*)&velocity;
velocityDisp[1] = (char*)&velocity.vy - (char*)&velocity;
velocityDisp[2] = (char*)&velocity.vz - (char*)&velocity;
MPI_Type_create_struct(3, velocityBlockLen, velocityDisp, velocityType, &VelocityMPI);
MPI_Type_commit(&VelocityMPI);
point_t point;
MPI_Datatype pointsType[4] = { *PositionMPI, *PositionMPI, VelocityMPI, MPI_INT };
int pointsBlockLen[4] = { 1, 1, 1, 1 };
MPI_Aint pointsDisp[4];
pointsDisp[0] = (char*)&point.pos - (char*)&point;
pointsDisp[1] = (char*)&point.initialPos - (char*)&point;
pointsDisp[2] = (char*)&point.v - (char*)&point;
pointsDisp[3] = (char*)&point.clusterID - (char*)&point;
MPI_Type_create_struct(4, pointsBlockLen, pointsDisp, pointsType, PointsMPI);
MPI_Type_commit(PointsMPI);
cluster_t cluster;
MPI_Datatype clustersType[3] = { MPI_INT, *PositionMPI, MPI_INT };
int clustersBlockLen[3] = { 1, 1, 1 };
MPI_Aint clustersDisp[3];
clustersDisp[0] = (char*)&cluster.id - (char*)&cluster;
clustersDisp[1] = (char*)&cluster.center - (char*)&cluster;
clustersDisp[2] = (char*)&cluster.numOfPoints - (char*)&cluster;
MPI_Type_create_struct(3, clustersBlockLen, clustersDisp, clustersType, ClustersMPI);
MPI_Type_commit(ClustersMPI);
}
/*Sends the relevant part of the points-array to each process to work on*/
void sendJobsToSlaves(point_t* points, int n, int numprocs)
{
point_t* p = points;
int i, lengthToSend = 0;
for (i = 0; i < numprocs; i++)
{
defineLength(&lengthToSend, n, i, numprocs);
if (i != 0)
MPI_Send(p, lengthToSend, PointsMPI, i, 0, MPI_COMM_WORLD);
p += lengthToSend;
}
}
void recieveJobFromMaster(point_t** points, int rank, int n, int numprocs, int* recievedLen, MPI_Status* status)
{
defineLength(recievedLen, n, rank, numprocs);
*points = (point_t*)calloc(*recievedLen, sizeof(point_t));
MPI_Recv(*points, *recievedLen, PointsMPI, MASTER, 0, MPI_COMM_WORLD, status);
}
/*Divides the number of points to the processes, if n does not devide by numprocs equaly, each process gets one
extra point of the remainder*/
void defineLength(int* len, int n, int rank, int numprocs)
{
if (rank < n%numprocs)
*len = n / numprocs + 1;
else
*len = n / numprocs;
}
void gatherFinalPoints(point_t* finalPoints, int n, point_t* pointsFromSlave, int jobLen)
{
MPI_Gather(pointsFromSlave, jobLen, PointsMPI, pointsFromSlave, jobLen, PointsMPI, MASTER, MPI_COMM_WORLD);
}
| [
"tairhassid@gmail.com"
] | tairhassid@gmail.com |
c07bdb2ea9441a52a8179cb508cea918e5ec3ee4 | ae35b61516a9ffb47b3aac8e0c3f357c1d28ac49 | /src/daisharin.hpp | 4ac6c8a71ed3d7f8e75cb0e1ef71aabd3930c5e6 | [
"MIT"
] | permissive | ushitora-anqou/cables | d6472ca837093b0a68b4196b2d55d8619a3c8e77 | edafc749bfd010e367838c193183b80953f60000 | refs/heads/master | 2020-03-18T13:53:44.321644 | 2018-05-25T06:55:16 | 2018-05-25T06:55:16 | 134,815,939 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,322 | hpp | #pragma once
#ifndef ___DAISHA_HPP___
#define ___DAISHA_HPP___
// thanks to http://codezine.jp/article/detail/315
#include "pcmwave.hpp"
#include <vector>
#include <random>
class Daisharin
{
private:
struct DelayPoint
{
int offset;
double pan;
double feedback;
double tremoloPhase;
double lpfVal;
};
std::mt19937 random_;
std::uniform_real_distribution<double> dist_;
int nowBufferIndex_;
std::vector<PCMWave::Sample> delayBuffer_;
std::vector<DelayPoint> delayPoints_;
bool feedPhase_;
double reverbTime_;
double tremoloSpeed_;
const int bufferSize_;
const double lpfHighDump_;
private:
// ランダムな数を作る関係でメンバにせざるをえない
// These 'calc' functions are obliged
// to belong to this class because of the random-number generator
double createNoise();
int calcOffset();
double calcPan();
double calcFeedback(int offset);
double calcTremolo(double phase);
PCMWave::Sample procReverb(const PCMWave::Sample& sample);
public:
struct Config
{
int delayBufferSize, delayPointsSize;
double reverbTime, tremoloSpeed, lpfHighDump;
};
public:
Daisharin(const Config& config);
PCMWave update(const PCMWave& input);
};
#endif
| [
"zaru_of_iron@yahoo.co.jp"
] | zaru_of_iron@yahoo.co.jp |
84db4501549d4fcc38b5820656a60fc7637d5e89 | d8d837f62c08585620659b92362755cf83af0197 | /final/pointers/struct-example1_full.cpp | be8d8505cb5d2066f709d5afd7a8a689141a1b07 | [
"MIT"
] | permissive | coderica/effective_cpp | 5034c2c77c8ee0f35ee060e4e4c682d0659d4205 | 456d30cf42c6c71dc7187d88e362651dd79ac3fe | refs/heads/master | 2020-04-15T06:51:23.219731 | 2017-01-20T17:21:10 | 2017-01-20T17:21:10 | 68,049,505 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,527 | cpp | #include <iostream>
#include <string>
using namespace std;
enum genderType { male, female };
struct user
{
string name;
genderType gender;
int age;
string friends[2];
bool hasfriends;
};
void displayUser(const user &);
void updateUserName(user &, string);
void addUserFriends(user &, string , string = "");
int main()
{
user jim = { "Jim", male, 12 , {"", ""}, false};
user jane;
jane.name = "Janey";
jane.gender = female;
jane.age = 14;
jane.hasfriends = false;
// displayUser(jim);
updateUserName(jim, "james");
// displayUser(jim);
addUserFriends(jim, "sammy");
// displayUser(jim);
const int numUsers = 4;
user allUsers[numUsers] = { jim, jane,
{"anita", female, 11 , {"", ""}, false},
{"bob", male, 12, { "Jim", "" }, true}
};
allUsers[2].friends[1] = "Sally";
allUsers[2].hasfriends = true;
for (int i = 0; i < numUsers; i++)
displayUser(allUsers[i]);
return 0;
}
void displayUser(const user &user1)
{
cout << "Name: " << user1.name << endl;
cout << "Gender: " << (user1.gender == male ? "male" : "female") << endl;
cout << "Age: " << user1.age << endl;
if (user1.hasfriends)
cout << "Friends: " << user1.friends[0] << " " << user1.friends[1] << endl;
cout << endl;
}
void updateUserName(user &user1, string name)
{
user1.name = name;
}
void addUserFriends(user & user1, string friend1, string friend2)
{
user1.friends[0] = friend1;
user1.friends[1] = friend2;
user1.hasfriends = true;
}
| [
"esm1018@gmail.com"
] | esm1018@gmail.com |
bfada22814dc10fde8b5993f65a192a23c575073 | ff2fc1236b16ab1b360c519d3a71094931abc079 | /actor-framework-0.15.0a1/libcaf_core/caf/policy/work_stealing.hpp | 0e336219889e88aee5b2b7ff9fdd57033011c626 | [
"BSL-1.0"
] | permissive | yxd886/http_decoder | 56800bd75f9a474ba832e583c8a3e433ffce918e | b9b5450232112069d20098dcfa58a885a99d061e | refs/heads/master | 2021-01-09T20:20:05.504361 | 2016-08-10T09:21:38 | 2016-08-10T09:21:38 | 64,052,076 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,861 | hpp | /******************************************************************************
* ____ _ _____ *
* / ___| / \ | ___| C++ *
* | | / _ \ | |_ Actor *
* | |___ / ___ \| _| Framework *
* \____/_/ \_|_| *
* *
* Copyright (C) 2011 - 2015 *
* Dominik Charousset <dominik.charousset (at) haw-hamburg.de> *
* *
* Distributed under the terms and conditions of the BSD 3-Clause License or *
* (at your option) under the terms and conditions of the Boost Software *
* License 1.0. See accompanying files LICENSE and LICENSE_ALTERNATIVE. *
* *
* If you did not receive a copy of the license files, see *
* http://opensource.org/licenses/BSD-3-Clause and *
* http://www.boost.org/LICENSE_1_0.txt. *
******************************************************************************/
#ifndef CAF_POLICY_WORK_STEALING_HPP
#define CAF_POLICY_WORK_STEALING_HPP
#include <deque>
#include <chrono>
#include <thread>
#include <random>
#include <cstddef>
#include "caf/resumable.hpp"
#include "caf/actor_system_config.hpp"
#include "caf/policy/unprofiled.hpp"
#include "caf/detail/double_ended_queue.hpp"
namespace caf {
namespace policy {
/// Implements scheduling of actors via work stealing.
/// @extends scheduler_policy
class work_stealing : public unprofiled {
public:
~work_stealing();
// A thread-safe queue implementation.
using queue_type = detail::double_ended_queue<resumable>;
using usec = std::chrono::microseconds;
// configuration for aggressive/moderate/relaxed poll strategies.
struct poll_strategy {
size_t attempts;
size_t step_size;
size_t steal_interval;
usec sleep_duration;
};
// The coordinator has only a counter for round-robin enqueue to its workers.
struct coordinator_data {
inline explicit coordinator_data(scheduler::abstract_coordinator*)
: next_worker(0) {
// nop
}
std::atomic<size_t> next_worker;
};
// Holds job job queue of a worker and a random number generator.
struct worker_data {
inline explicit worker_data(scheduler::abstract_coordinator* p)
: rengine(std::random_device{}()),
// no need to worry about wrap-around; if `p->num_workers() < 2`,
// `uniform` will not be used anyway
uniform(0, p->num_workers() - 2),
strategies{
{p->system().config().work_stealing_aggressive_poll_attempts, 1,
p->system().config().work_stealing_aggressive_steal_interval,
usec{0}},
{p->system().config().work_stealing_moderate_poll_attempts, 1,
p->system().config().work_stealing_moderate_steal_interval,
usec{p->system().config().work_stealing_moderate_sleep_duration_us}},
{1, 0, p->system().config().work_stealing_relaxed_steal_interval,
usec{p->system().config().work_stealing_relaxed_sleep_duration_us}}
} {
// nop
}
// This queue is exposed to other workers that may attempt to steal jobs
// from it and the central scheduling unit can push new jobs to the queue.
queue_type queue;
// needed to generate pseudo random numbers
std::default_random_engine rengine;
std::uniform_int_distribution<size_t> uniform;
poll_strategy strategies[3];
};
// Goes on a raid in quest for a shiny new job.
template <class Worker>
resumable* try_steal(Worker* self) {
auto p = self->parent();
if (p->num_workers() < 2) {
// you can't steal from yourself, can you?
return nullptr;
}
// roll the dice to pick a victim other than ourselves
auto victim = d(self).uniform(d(self).rengine);
if (victim == self->id())
victim = p->num_workers() - 1;
// steal oldest element from the victim's queue
return d(p->worker_by_id(victim)).queue.take_tail();
}
template <class Coordinator>
void central_enqueue(Coordinator* self, resumable* job) {
auto w = self->worker_by_id(d(self).next_worker++ % self->num_workers());
w->external_enqueue(job);
}
template <class Worker>
void external_enqueue(Worker* self, resumable* job) {
d(self).queue.append(job);
}
template <class Worker>
void internal_enqueue(Worker* self, resumable* job) {
d(self).queue.prepend(job);
}
template <class Worker>
void resume_job_later(Worker* self, resumable* job) {
// job has voluntarily released the CPU to let others run instead
// this means we are going to put this job to the very end of our queue
d(self).queue.append(job);
}
template <class Worker>
resumable* dequeue(Worker* self) {
// we wait for new jobs by polling our external queue: first, we
// assume an active work load on the machine and perform aggresive
// polling, then we relax our polling a bit and wait 50 us between
// dequeue attempts, finally we assume pretty much nothing is going
// on and poll every 10 ms; this strategy strives to minimize the
// downside of "busy waiting", which still performs much better than a
// "signalizing" implementation based on mutexes and conition variables
auto& strategies = d(self).strategies;
resumable* job = nullptr;
for (auto& strat : strategies) {
for (size_t i = 0; i < strat.attempts; i += strat.step_size) {
job = d(self).queue.take_head();
if (job)
return job;
// try to steal every X poll attempts
if ((i % strat.steal_interval) == 0) {
job = try_steal(self);
if (job)
return job;
}
if (strat.sleep_duration.count() > 0)
std::this_thread::sleep_for(strat.sleep_duration);
}
}
// unreachable, because the last strategy loops
// until a job has been dequeued
return nullptr;
}
template <class Worker, class UnaryFunction>
void foreach_resumable(Worker* self, UnaryFunction f) {
auto next = [&] { return d(self).queue.take_head(); };
for (auto job = next(); job != nullptr; job = next()) {
f(job);
}
}
template <class Coordinator, class UnaryFunction>
void foreach_central_resumable(Coordinator*, UnaryFunction) {
// nop
}
};
} // namespace policy
} // namespace caf
#endif // CAF_POLICY_WORK_STEALING_HPP
| [
"duanjp8617@gmail.com"
] | duanjp8617@gmail.com |
3072293db68b19d77ee486d127251068aa0e1cce | 2a45507fff25c42cad05b52d83d011fea0909be5 | /Leetcode/C++/Find the longest substring containing vowels at even positions.cpp | fe4898d3cd7840417f7c95eb1b872b562a13b9c0 | [
"MIT"
] | permissive | Sharayu1071/Daily-Coding-DS-ALGO-Practice | dc8256e76d43952f679236df904f597908fbda13 | 2c424b33a1385085f97b98d6379d6cd9cc71b1bd | refs/heads/main | 2023-08-30T17:49:44.312613 | 2021-10-03T04:21:21 | 2021-10-03T04:21:21 | 412,973,714 | 3 | 0 | MIT | 2021-10-03T04:18:20 | 2021-10-03T04:18:19 | null | UTF-8 | C++ | false | false | 1,445 | cpp | /* LINK TO THE QUESTION: https://leetcode.com/problems/find-the-longest-substring-containing-vowels-in-even-counts/*/
//GIVEN:Given the string S.
//AIM: return the size of the longest substring containing each vowel an even number of times. That is, 'a', 'e', 'i', 'o', and 'u' must appear an even number of times.
//EXAMPLE:
/*
Input: s = "eleetminicoworoep"
Output: 13
Explanation: The longest substring is "leetminicowor" which contains two each of the vowels: e, i and o and zero of the vowels: a and u.
*/
//SOLUTION:
#include<iostream>
using namespace std;
int findTheLongestSubstring(string s) {
unordered_map<bitset<5>,int>mp;
bitset<5>b;
mp[b]=-1;
// Pos map stores indices for flipping certain vowel bits
map<char,int>pos;
pos.insert({'a',0});
pos.insert({'e',1});
pos.insert({'i',2});
pos.insert({'o',3});
pos.insert({'u',4});
int ans=0;
for(int i=0;i<s.size();i++)
{
// Our character should be a vowel
if(pos.find(s[i])!=pos.end())
b.flip(pos[s[i]]);
if(mp.find(b)!=mp.end())
{
ans=max(ans,i-mp[b]);
}
else{
mp[b]=i;
}
}
return ans;
}
int main()
{
string s;
cin>>s;
int ans=findTheLongestSubstring(s);
cout<<ans;
return 0;
}
| [
"snehaagarwalbly361@gmail.com"
] | snehaagarwalbly361@gmail.com |
25ad4149bac4cd5485245b6114f2f59a719bbe3a | 786d74f7a59c2ded394bc653f559238e35414ef5 | /src/crypto_old/src/hmac.cpp | 2f91f1137936593026405b79bd6ba4d998edd5a3 | [] | no_license | akumrao/mediaserver | 77f71c46e69cbcef9969bcf70867d140fdd0a806 | 046aad2106a859562cf9b6d56a1e56c589843fc2 | refs/heads/master | 2023-04-16T13:51:12.166666 | 2022-06-27T07:01:48 | 2022-06-27T07:01:48 | 214,117,984 | 15 | 12 | null | null | null | null | UTF-8 | C++ | false | false | 1,010 | cpp | ///
#include "crypto/hmac.h"
#include "base/util.h"
#include <assert.h>
#ifdef base_WIN
// hack for name collision of OCSP_RESPONSE and wincrypto.h in openssl release
// 0.9.8h
// http://www.google.com/search?q=OCSP%5fRESPONSE+wincrypt%2eh
// continue to watch this issue for a real fix.
#undef OCSP_RESPONSE
#endif
#include <openssl/hmac.h>
namespace base {
namespace crypto {
std::string computeHMAC(const std::string& input, const std::string& key)
{
// SDebug << "Compute HMAC: input='" << util::dumpbin(input.c_str(), input.length())
// << "', inputLength=" << input.length() << ", key='" << key << "',
// keyLength=" << key.length() << std::endl;
unsigned int len = 0;
char buf[20];
HMAC(EVP_sha1(), key.c_str(), key.length(),
reinterpret_cast<const unsigned char*>(input.c_str()), input.length(),
reinterpret_cast<unsigned char*>(&buf), &len);
assert(len == 20);
return std::string(buf, len);
}
} // namespace crypto
} // namespace base
| [
"arvind.umrao@sococo.com"
] | arvind.umrao@sococo.com |
b66fb7c3fb83a30f935870ebc1eec50c0a4330b2 | 3657bb42387d76fd041d37bf2d69bad7f916f16a | /Boost/The Boost C++ Libraries/src/11.3.2/main.cpp | 7de8476066be11593964fc982a06e008913c7250 | [
"MIT"
] | permissive | goodspeed24e/Programming | 61d8652482b3246f1c65f2051f812b2c6d2d40ce | ae73fad022396ea03105aad83293facaeea561ae | refs/heads/master | 2016-08-04T02:58:01.477832 | 2015-03-16T15:12:27 | 2015-03-16T15:13:33 | 32,333,164 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 874 | cpp | #include <boost/archive/text_oarchive.hpp>
#include <boost/archive/text_iarchive.hpp>
#include <boost/serialization/scoped_ptr.hpp>
#include <boost/scoped_ptr.hpp>
#include <iostream>
#include <sstream>
std::stringstream ss;
class person
{
public:
person()
{
}
person(int age)
: age_(age)
{
}
int age() const
{
return age_;
}
private:
friend class boost::serialization::access;
template <typename Archive>
void serialize(Archive &ar, const unsigned int version)
{
ar & age_;
}
int age_;
};
void save()
{
boost::archive::text_oarchive oa(ss);
boost::scoped_ptr<person> p(new person(31));
oa << p;
}
void load()
{
boost::archive::text_iarchive ia(ss);
boost::scoped_ptr<person> p;
ia >> p;
std::cout << p->age() << std::endl;
}
int main()
{
save();
load();
} | [
"lin.yongyuanone@gmail.com"
] | lin.yongyuanone@gmail.com |
941c798fde66a7e4ee5f7b78266fadace2d05ba0 | b45b27637c8e28e82e95111d3dbf455aa772d7b3 | /bin/Reapr_1.0.18/third_party/cmake/Source/CursesDialog/cmCursesLongMessageForm.h | 341f9c6c692fc1a1824b139aac2f3ea1bb8ee238 | [
"BSD-3-Clause",
"GPL-3.0-only"
] | permissive | Fu-Yilei/VALET | caa5e1cad5188cbb94418ad843ea32791e50974b | 8741d984056d499af2fd3585467067d1729c73c4 | refs/heads/master | 2020-08-09T12:17:34.989915 | 2019-10-10T05:10:12 | 2019-10-10T05:10:12 | 214,085,217 | 1 | 0 | MIT | 2019-10-10T04:18:34 | 2019-10-10T04:18:34 | null | UTF-8 | C++ | false | false | 1,772 | h | /*============================================================================
CMake - Cross Platform Makefile Generator
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
Distributed under the OSI-approved BSD License (the "License");
see accompanying file Copyright.txt for details.
This software is distributed WITHOUT ANY WARRANTY; without even the
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
See the License for more information.
============================================================================*/
#ifndef __cmCursesLongMessageForm_h
#define __cmCursesLongMessageForm_h
#include "../cmStandardIncludes.h"
#include "cmCursesForm.h"
#include "cmCursesStandardIncludes.h"
class cmCursesCacheEntryComposite;
class cmCursesLongMessageForm : public cmCursesForm
{
public:
cmCursesLongMessageForm(std::vector<std::string> const& messages,
const char* title);
virtual ~cmCursesLongMessageForm();
// Description:
// Handle user input.
virtual void HandleInput();
// Description:
// Display form. Use a window of size width x height, starting
// at top, left.
virtual void Render(int left, int top, int width, int height);
// Description:
// This method should normally called only by the form.
// The only exception is during a resize.
void PrintKeys();
// Description:
// This method should normally called only by the form.
// The only exception is during a resize.
virtual void UpdateStatusBar();
protected:
cmCursesLongMessageForm(const cmCursesLongMessageForm& from);
void operator=(const cmCursesLongMessageForm&);
std::string Messages;
std::string Title;
FIELD* Fields[2];
};
#endif // __cmCursesLongMessageForm_h
| [
"yf20@gho.cs.rice.edu"
] | yf20@gho.cs.rice.edu |
ff9d6e9a5339796d1a0a64916cc5a7262c6317fa | 1305908d475b10fd79ef9e99e858ffb4af683866 | /week 2/problem3.cpp | c366961fd3f01832197b04664fe75fd93d24358d | [] | no_license | Nishant1430/DAA-LAB_2014752 | 03e02c76138ccf83dd01e729c3576d2922c331f6 | 935233f1dc4e6e62933bbd29e57399bbb1da6f5d | refs/heads/main | 2023-08-28T05:00:05.931905 | 2021-11-10T12:10:06 | 2021-11-10T12:10:06 | 388,673,177 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 465 | cpp |
#include<bits/stdc++.h>
using namespace std;
void output(int a[],int n,int k)
{
int i,j,diff,cnt=0;
for(i=0;i<n-1;i++)
{
for(j=i+1;j<n;j++)
{
if(a[i]<a[j])
{
diff=a[j]-a[i];
if(k==diff)
cnt++;
}
else
{
diff=a[i]-a[j];
if(k==diff)
cnt++;
}
}
}
cout<<cnt<<endl;
}
int main()
{
int t,n,i,k,j;
cin>>t;
for(j=1;j<=t;j++)
{
cin>>n;
int a[n];
for(i=0;i<n;i++)
cin>>a[i];
cin>>k;
output(a,n,k);
}
}
| [
"noreply@github.com"
] | noreply@github.com |
fea60cc446b182f1f10c4d20355e856d7ec72405 | b62605339f03e6688db9c5f6f7c1834a51508efe | /base_station.ino | 778396ad12756f8559cd473eefcb2149569131ae | [] | no_license | mhspes/Secure_XBee_network | c4c7097e5fcbd685fa9bfa84d29893162fddce41 | f2e25324d9d8543064a6164c2b5a09b7771f9de3 | refs/heads/master | 2020-04-08T09:26:48.598740 | 2019-02-02T14:19:55 | 2019-02-02T14:19:55 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,247 | ino | #include <XBee.h>
XBee xbee = XBee();
XBeeResponse response = XBeeResponse();
Rx16Response rx16 = Rx16Response();
uint8_t sensor_data[8];
uint16_t addr16;
uint16_t addr_list[] = {4097,4098,4099}; // List of allowed addresses
void setup() {
Serial.begin(9600);
xbee.setSerial(Serial);
}
void loop() {
xbee.readPacket(); // Read packet
if (xbee.getResponse().isAvailable()){ // Packet is available?
if (xbee.getResponse().getApiId() == RX_16_RESPONSE){ // 16-bit addess?
// Fetch the address
xbee.getResponse().getRx16Response(rx16);
addr16 = rx16.getRemoteAddress16();
// Test if address is in allowed-list
if(addr16 == addr_list[0] || addr16 == addr_list[1] || addr16 == addr_list[2]){
Serial.print("Packet received from ");
switch(addr16){
case 4097:
Serial.print(addr16);
Serial.println(" - Node 1.");
break;
case 4098:
Serial.print(addr16);
Serial.println(" - Node 2.");
break;
case 4099:
Serial.print(addr16);
Serial.println(" - Node 3.");
break;
default:
Serial.println("unknown address.");
break;
}
//Fetch the temperature data
for (int i =rx16.getDataLength()-1; i >= 0;i--){
sensor_data[i] = rx16.getData(i);
}
print_data(sensor_data);
//Print measurements
} else {
Serial.println("Unknown address - ignoring packet.");
}
} else {
Serial.println("Wrong addressing format - 16bit expected.");
}
delay(1000);
} else if (xbee.getResponse().isError()) {
Serial.println("Error reading packet.");
}
}
// Routine for printing data from
// temperature & humidity sensor
void print_sensordata(uint8_t data){
Serial.print("Temperature: ");
for (int i = sizeof(data)-1; i >= 0; i-- ){
Serial.print(data[i]);
if (i==4){
Serial.print(" C Humidity: ");
}
if (i==0){
Serial.print(" %");
}
if (i==6 || i==2){
Serial.print(".");
}
}
Serial.println();
}
| [
"noreply@github.com"
] | noreply@github.com |
79f200030b63132edf3d144190edd454b341e893 | 8dc84558f0058d90dfc4955e905dab1b22d12c08 | /third_party/unrar/src/rar.hpp | 99b3ee7b6c5410ded2e748b8101c180ffad50d15 | [
"LGPL-2.0-or-later",
"GPL-1.0-or-later",
"MIT",
"Apache-2.0",
"LicenseRef-scancode-unrar",
"LicenseRef-scancode-unknown-license-reference",
"BSD-3-Clause"
] | permissive | meniossin/src | 42a95cc6c4a9c71d43d62bc4311224ca1fd61e03 | 44f73f7e76119e5ab415d4593ac66485e65d700a | refs/heads/master | 2022-12-16T20:17:03.747113 | 2020-09-03T10:43:12 | 2020-09-03T10:43:12 | 263,710,168 | 1 | 0 | BSD-3-Clause | 2020-05-13T18:20:09 | 2020-05-13T18:20:08 | null | UTF-8 | C++ | false | false | 1,569 | hpp | #ifndef _RAR_RARCOMMON_
#define _RAR_RARCOMMON_
#include "raros.hpp"
#include "rartypes.hpp"
#include "os.hpp"
#ifdef RARDLL
#include "dll.hpp"
#endif
#include "version.hpp"
#include "rardefs.hpp"
#include "rarlang.hpp"
#include "unicode.hpp"
#include "errhnd.hpp"
#include "secpassword.hpp"
#include "array.hpp"
#include "timefn.hpp"
#include "sha1.hpp"
#include "sha256.hpp"
#include "blake2s.hpp"
#include "hash.hpp"
#include "options.hpp"
#include "rijndael.hpp"
#include "crypt.hpp"
#include "headers5.hpp"
#include "headers.hpp"
#include "pathfn.hpp"
#include "strfn.hpp"
#include "strlist.hpp"
#ifdef _WIN_ALL
#include "isnt.hpp"
#endif
#include "file.hpp"
#include "crc.hpp"
#include "ui.hpp"
#include "filefn.hpp"
#include "filestr.hpp"
#include "find.hpp"
#include "scantree.hpp"
#include "savepos.hpp"
#include "getbits.hpp"
#include "rdwrfn.hpp"
#ifdef USE_QOPEN
#include "qopen.hpp"
#endif
#ifdef USE_ARCMEM
#include "arcmem.hpp"
#endif
#include "archive.hpp"
#include "match.hpp"
#include "cmddata.hpp"
#include "filcreat.hpp"
#include "consio.hpp"
#include "system.hpp"
#include "log.hpp"
#include "rawint.hpp"
#include "rawread.hpp"
#include "encname.hpp"
#include "resource.hpp"
#include "compress.hpp"
#include "rarvm.hpp"
#include "model.hpp"
#include "threadpool.hpp"
#include "unpack.hpp"
#include "extinfo.hpp"
#include "extract.hpp"
#include "list.hpp"
#include "rs.hpp"
#include "rs16.hpp"
#include "recvol.hpp"
#include "volume.hpp"
#include "smallfn.hpp"
#include "global.hpp"
#if 0
#include "benchmark.hpp"
#endif
#endif
| [
"arnaud@geometry.ee"
] | arnaud@geometry.ee |
f5a6b6d2bb51e51482b6fe9e585de3081bbfa426 | ebe213f948bd01a18291b8b955ef9fdda6570cb2 | /CPPPrimerPlus/Chapter 8/8.6 strc_ref.cpp | 3baa6b0ebaffbd8274b6f7640d19f3ec394d7d6c | [] | no_license | RonDingDing/CPP-Primer-Plus | 4b6eb808b72e6ec36d5b399782689298ebebbc65 | ac796e8c1e64db2c6a412b85441c6fd3ae9fc2a8 | refs/heads/master | 2021-05-01T14:31:24.988553 | 2018-12-07T06:42:50 | 2018-12-07T06:42:50 | 112,147,473 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,939 | cpp | //strc_ref.cpp -- using structure references
#include <iostream>
#include <string>
struct free_throws
{
std::string name;
int made;
int attempts;
float percent;
};
void display(const free_throws & ft);
void set_pc(free_throws & ft);
free_throws & accumulate(free_throws & target, const free_throws & source);
int main()
{
// partial initializations – remaining members set to 0
free_throws one = {"Ifelsa Branch", 13, 14};
free_throws two = {"Andor Knott", 10, 16};
free_throws three = {"Minnie Max", 7, 9};
free_throws four = {"Whily Looper", 5, 9};
free_throws five = {"Long Long", 6, 14};
free_throws team = {"Throwgoods", 0, 0};
// no initialization
free_throws dup;
set_pc(one);
display(one);
accumulate(team, one);
display(team);
// use return value as argument
display(accumulate(team, two));
accumulate(accumulate(team, three), four);
display(team);
// use return value in assignment
dup = accumulate(team, five);
std::cout << "Displaying team:\n";
display(team);
std::cout << "Displaying dup after assignment:\n";
display(dup);
set_pc(four);
accumulate(dup, five) = four;
std::cout << "Displaying dup after ill-advised assignment:\n";
display(dup);
return 0;
}
void display(const free_throws & ft)
{
using std::cout;
cout << "Name: " << ft.name << '\t';
cout << " Made: " << ft.made << '\t';
cout << "Attempts: " << ft.attempts << '\t';
cout << "Percent: " << ft.percent << '\n';
}
void set_pc(free_throws & ft)
{
if (ft.attempts != 0)
{
ft.percent = 100.0f * float(ft.made) / float(ft.attempts);
}
else
{
ft.percent = 0;
}
}
free_throws & accumulate(free_throws & target, const free_throws & source)
{
target.attempts += source.attempts;
target.made += source.made;
set_pc(target);
return target;
}
| [
"411312915@qq.com"
] | 411312915@qq.com |
8ada63824727fcf30c588d973faae8f89ab637a4 | a05f3e3bcc9f1161f5890f98eaf1a4a7129846ce | /c++/Kunitori/Error.hpp | 5d19ba950d78025e2ed7786591f870adbdc4f7e5 | [] | no_license | sosflyyi/laboratory | 17d3d0e13a62674c244a3bcd7bdca8803fe89f32 | 9a3f47c99279e328d2719d21dfd13cd212fab5b6 | refs/heads/master | 2023-04-09T23:20:02.592346 | 2016-05-09T13:27:16 | 2016-05-09T13:27:16 | null | 0 | 0 | null | null | null | null | SHIFT_JIS | C++ | false | false | 1,109 | hpp | /**
* @file
* @brief 例外処理を管理するためのエラーモジュール
*
* @author Takuya Shishido
* @date 2009.11.01 17:06:45
*
* @version 0.01, Shishido Takuya, 2009.11.01 17:06:45
* (c) 2009 Konami Digital Entertainment Co., Ltd. All Rights Reserved.
*/
#ifndef ERROR_ERROR_HPP_INCLUDED
#define ERROR_ERROR_HPP_INCLUDED
//-----------------------------------------------------
// include
//-----------------------------------------------------
namespace Error {
/**
* @brief 指定されたオブジェクトが見つからなかった場合に使用
* @author Takuya Shishido
* @date 2009.11.01 17:06:45
* @version 0.01, Shishido Takuya, 2009.11.01 17:06:45
*/
class FindError
{
public:
/**----------------------------------------------------
* @brief constructor
*---------------------------------------------------*/
FindError() {}
/**----------------------------------------------------
* @brief destructor
*---------------------------------------------------*/
~FindError() {}
private:
}; // class FindError
} // namespace Error
#endif
| [
"kaguya@Kaguya-no-MacBook-Air.local"
] | kaguya@Kaguya-no-MacBook-Air.local |
54710bf00336a00147ddb13e8a7687d02972eaaa | a0988173672cd2e1835975cd9d4c9844f6c8997d | /contest/atcoder216/1.cpp | 337a325f29e4e2076686896a296be633d322f753 | [] | no_license | Wishy-S/Coding | af23d65b00f9bcc9399d7b4fe7ee05bd71e6f85f | a350bca2f3195e9ed5b75a51190575b195d47eb7 | refs/heads/master | 2023-08-23T02:55:59.556413 | 2021-10-31T05:16:32 | 2021-10-31T05:16:32 | 394,583,448 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,375 | cpp | #include <bits/stdc++.h>
using namespace std;
#define ll long long
#define all(v) v.begin(),v.end()
#define pb(x) push_back(x)
#define f first
#define s second
#define vt vector
#define boost ios_base::sync_with_stdio(false), cin.tie(0), cout.tie(0);
const ll mod = 1e9+7;
const int d4i[4]={-1, 0, 1, 0}, d4j[4]={0, 1, 0, -1};
const int d8i[8]={-1, -1, 0, 1, 1, 1, 0, -1}, d8j[8]={0, 1, 1, 1, 0, -1, -1, -1};
ll power(ll x,unsigned ll y,ll p){
ll res = 1; // Initialize result
x = x % p; // Update x if it is more than or
// equal to p
if (x == 0) return 0; // In case x is divisible by p;
while (y > 0)
{
// If y is odd, multiply x with result
if (y & 1)
res = (res*x) % p;
// y must be even now
y = y>>1; // y = y/2
x = (x*x) % p;
}
return res;
}
int gcd(int a,int b){
if(b==0)return a;
return gcd(b,a%b);
}
void solve(){
int x,y;scanf("%d.%d",&x,&y);
if(y>=0 and y<=2){
cout<<x<<"-\n";
}else if(y>=3 and y<=6){
cout<<x<<'\n';
}else {
cout<<x<<"+\n";
}
}
int main()
{ boost;
ios::sync_with_stdio(0);
cin.tie(0);
int t;
t = 1;
// cin>>t;
//cin>>t>>n>>q;
//clock_t clk = clock();
for(int i = 0;i<t;i++){
//cout<<"Case #"<<i+1<<": ";
solve();
}
//clk = clock()-clk;
//cout<<"TIME CONSUMED: "<<(float)(clk)/CLOCKS_PER_SEC<<"sec\n";
}
| [
"mk2371972@gmail.com"
] | mk2371972@gmail.com |
7dd91bcc68019598d2aed0c7a9530f5ac2539cd6 | 23297daba4729078b9b48d744b16679da6f1bd10 | /src/commands/autonomous/autonomous_center.cpp | 5d3be4eb9fa8590b7e9fa415adeddfcf39027c73 | [] | no_license | team422/Team422-17 | 11360048b263bfb05886921e554fd7e879d1f64e | 827e7312d7609222776d89dd6555df106bb83a7c | refs/heads/master | 2021-06-14T00:04:01.356755 | 2017-03-26T16:12:01 | 2017-03-26T16:13:49 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 424 | cpp | #include "autonomous_center.hpp"
#include "drive_straight.hpp"
#include "drive_straight_time.hpp"
#include "../set_ball_intake.hpp"
#include "../set_gear_intake.hpp"
Autonomous_Center::Autonomous_Center() {
AddSequential(new Set_Ball_Intake(DoubleSolenoid::Value::kForward));
AddSequential(new Drive_Straight(3400, 0.25, 255, 3.5)); //3424 or 3400
AddSequential(new Set_Gear_Intake(DoubleSolenoid::Value::kForward));
}
| [
"2000drh@gmail.com"
] | 2000drh@gmail.com |
efb60b2e2d2961425841138c5354e2d2fd30feaa | b261e1fba34f4d579e81d1c17fc0753ce6168abd | /include/Lector.hpp | 2db50d0aa6cff11a0b16ccf7e6f756a12aab9db4 | [] | no_license | JEdilbertoTC/solar-system | d266ce426a130a0ca0c4fb1753f66cedccd257ac | dfd4a0050bb6ad9796eebe91221f6385eec6dc3a | refs/heads/main | 2023-06-24T13:03:18.750589 | 2021-07-28T05:28:51 | 2021-07-28T05:28:51 | 390,225,267 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 884 | hpp | #pragma once
#include <iostream>
#include <sstream>
#include <fstream>
#include <vector>
#include "Vertex.hpp"
#include "Edge.hpp"
#include "Face.hpp"
#include "Split.hpp"
using namespace std;
class Lector{
public:
Lector(string);
Lector();
~Lector();
void lector();
ifstream file;
Vertex setVertex(float , float , float );
Edge setEdge(Vertex, Vertex);
vector<Face> setFace(vector<Edge>);
void printVertices();
void printEdges();
void printFaces();
void setName(string);
string getName();
vector<Vertex> getVertices();
vector<Edge> getEdges();
vector<Face> getFaces();
void closeFile();
void printName();
vector<Vertex> getSortVertices();
//vector<string> split(const string &text, char sep);
private:
string name;
string archivo;
vector<Vertex> vertices;
vector<Edge> edges;
vector<Face> faces;
vector <string > cadena;
vector <Vertex> sortVertices;
}; | [
"joseedilberto367@outlook.com"
] | joseedilberto367@outlook.com |
a46ea22d35b66a23f8acee0458878354cc7f4af7 | b7f3edb5b7c62174bed808079c3b21fb9ea51d52 | /ash/system/unified/unified_notifier_settings_controller.cc | 94b3b71cd822e1e178e5f0a14d93b540396a743f | [
"BSD-3-Clause"
] | permissive | otcshare/chromium-src | 26a7372773b53b236784c51677c566dc0ad839e4 | 64bee65c921db7e78e25d08f1e98da2668b57be5 | refs/heads/webml | 2023-03-21T03:20:15.377034 | 2020-11-16T01:40:14 | 2020-11-16T01:40:14 | 209,262,645 | 18 | 21 | BSD-3-Clause | 2023-03-23T06:20:07 | 2019-09-18T08:52:07 | null | UTF-8 | C++ | false | false | 2,364 | cc | // Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ash/system/unified/unified_notifier_settings_controller.h"
#include "ash/strings/grit/ash_strings.h"
#include "ash/system/message_center/notifier_settings_view.h"
#include "ash/system/tray/detailed_view_delegate.h"
#include "ash/system/tray/tray_detailed_view.h"
#include "ui/base/l10n/l10n_util.h"
#include "ui/message_center/message_center.h"
#include "ui/message_center/message_center_observer.h"
#include "ui/views/layout/box_layout.h"
namespace ash {
namespace {
class UnifiedNotifierSettingsView
: public TrayDetailedView,
public message_center::MessageCenterObserver {
public:
explicit UnifiedNotifierSettingsView(DetailedViewDelegate* delegate)
: TrayDetailedView(delegate), settings_view_(new NotifierSettingsView()) {
CreateTitleRow(IDS_ASH_MESSAGE_CENTER_FOOTER_TITLE);
AddChildView(settings_view_);
box_layout()->SetFlexForView(settings_view_, 1);
OnQuietModeChanged(message_center::MessageCenter::Get()->IsQuietMode());
message_center::MessageCenter::Get()->AddObserver(this);
}
~UnifiedNotifierSettingsView() override {
message_center::MessageCenter::Get()->RemoveObserver(this);
}
// MessageCenterObserver:
void OnQuietModeChanged(bool in_quiet_mode) override {
settings_view_->SetQuietModeState(in_quiet_mode);
}
const char* GetClassName() const override {
return "UnifiedNotifierSettingsView";
}
private:
NotifierSettingsView* const settings_view_;
DISALLOW_COPY_AND_ASSIGN(UnifiedNotifierSettingsView);
};
} // namespace
UnifiedNotifierSettingsController::UnifiedNotifierSettingsController(
UnifiedSystemTrayController* tray_controller)
: detailed_view_delegate_(
std::make_unique<DetailedViewDelegate>(tray_controller)) {}
UnifiedNotifierSettingsController::~UnifiedNotifierSettingsController() =
default;
views::View* UnifiedNotifierSettingsController::CreateView() {
return new UnifiedNotifierSettingsView(detailed_view_delegate_.get());
}
base::string16 UnifiedNotifierSettingsController::GetAccessibleName() const {
return l10n_util::GetStringUTF16(
IDS_ASH_QUICK_SETTINGS_BUBBLE_NOTIFIER_SETTINGS_ACCESSIBLE_DESCRIPTION);
}
} // namespace ash
| [
"commit-bot@chromium.org"
] | commit-bot@chromium.org |
a432d5d2beb3f5f7044421dfdd12b25bf28c64ad | 99bb7246a5577376694968cc320e34b4b8db1693 | /CommonLibF4/include/RE/Havok/hkLifoAllocator.h | e3df6e41b5efc0ae862b64067158654184d53434 | [
"MIT"
] | permissive | Ryan-rsm-McKenzie/CommonLibF4 | 0d8f3baa4e3c18708e6427959f1d4f88bcf3d691 | cdd932ad1f4e37f33c28ea7d7e429428f5be43dd | refs/heads/master | 2023-07-26T23:24:09.615310 | 2023-07-16T22:53:24 | 2023-07-16T22:53:24 | 194,604,556 | 50 | 21 | MIT | 2023-07-20T22:20:02 | 2019-07-01T05:20:18 | C++ | UTF-8 | C++ | false | false | 2,954 | h | #pragma once
#include "RE/Havok/hkMemoryAllocator.h"
namespace RE
{
class __declspec(novtable) hkLifoAllocator :
public hkMemoryAllocator // 00
{
public:
static constexpr auto RTTI{ RTTI::hkLifoAllocator };
static constexpr auto VTABLE{ VTABLE::hkLifoAllocator };
class Implementation;
hkLifoAllocator() { stl::emplace_vtable(this); }
// override (hkMemoryAllocator)
void* BlockAlloc(std::int32_t a_numBytesIn) override // 01
{
using func_t = decltype(&hkLifoAllocator::BlockAlloc);
REL::Relocation<func_t> func{ REL::ID(605837) };
return func(this, a_numBytesIn);
}
void BlockFree(void* a_ptr, std::int32_t a_numBytesIn) override // 02
{
using func_t = decltype(&hkLifoAllocator::BlockFree);
REL::Relocation<func_t> func{ REL::ID(778687) };
return func(this, a_ptr, a_numBytesIn);
}
void* BufAlloc(std::int32_t& a_reqNumBytesInOut) override // 03
{
using func_t = decltype(&hkLifoAllocator::BufAlloc);
REL::Relocation<func_t> func{ REL::ID(951267) };
return func(this, a_reqNumBytesInOut);
}
void BufFree(void* a_ptr, std::int32_t a_numBytes) override // 04
{
using func_t = decltype(&hkLifoAllocator::BufFree);
REL::Relocation<func_t> func{ REL::ID(1123850) };
return func(this, a_ptr, a_numBytes);
}
void* BufRealloc(void* a_old, std::int32_t a_oldNumBytes, std::int32_t& a_reqNumBytesInOut) override // 05
{
using func_t = decltype(&hkLifoAllocator::BufRealloc);
REL::Relocation<func_t> func{ REL::ID(1296646) };
return func(this, a_old, a_oldNumBytes, a_reqNumBytesInOut);
}
void GetMemoryStatistics(
[[maybe_unused]] MemoryStatistics& a_stats) const override { return; } // 08
std::int32_t GetAllocatedSize(
[[maybe_unused]] const void* a_obj,
std::int32_t a_numBytes) const override { return a_numBytes; } // 09
void Init(
hkMemoryAllocator* a_slabAllocator,
hkMemoryAllocator* a_largeAllocator,
hkMemoryAllocator* a_internalAllocator)
{
using func_t = decltype(&hkLifoAllocator::Init);
REL::Relocation<func_t> func{ REL::ID(1417289) };
return func(this, a_slabAllocator, a_largeAllocator, a_internalAllocator);
}
void Quit(hkMemoryAllocator** a_allocators)
{
using func_t = decltype(&hkLifoAllocator::Quit);
REL::Relocation<func_t> func{ REL::ID(1058127) };
return func(this, a_allocators);
}
// members
Implementation* impl{ nullptr }; // 08
const std::int32_t slabSize{ 0x8000 }; // 10
void* cur{ nullptr }; // 18
void* end{ nullptr }; // 20
void* firstNonLifoEnd{ nullptr }; // 28
void* cachedEmptySlab{ nullptr }; // 30
hkMemoryAllocator* slabAllocator{ nullptr }; // 38
hkMemoryAllocator* largeAllocator{ nullptr }; // 40
hkMemoryAllocator* internalAllocator{ nullptr }; // 48
};
static_assert(sizeof(hkLifoAllocator) == 0x50);
}
| [
"ryan__mckenzie@hotmail.com"
] | ryan__mckenzie@hotmail.com |
ea6a8534a0c7fa4c6434a7f88ef57663af4d692a | 47cd7b0824bae2b41457ad4b146e12f568a04de4 | /SnakeGame/main.cpp | 4ef7965f7d8e28855cea766df39c9665ea507e6f | [] | no_license | Gurbirksingh/SnakeGame | 2294fbc656db4aedc0dbbff8c556737276008e71 | e7761f1b55fe35d027cbc4ec004f5d4d06923b05 | refs/heads/master | 2020-03-26T04:29:02.702605 | 2018-08-12T23:21:05 | 2018-08-12T23:21:05 | 144,505,871 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 87 | cpp | #include "snake.h"
int main() {
Snake snake;
snake.start();
return 0;
} | [
"noreply@github.com"
] | noreply@github.com |
4b2f61b8fae9134c0a829dec0e39331c5f513335 | cba674f10550c6a65cf73cc71f7bbdc27d7e5e34 | /Source/ThirdParty/tracy/server/TracyUserData.cpp | d320c3a3764ffcc65c407ea59da68677a1cdfa6c | [
"BSL-1.0",
"BSD-2-Clause",
"Zlib",
"LicenseRef-scancode-khronos",
"MIT",
"BSD-3-Clause",
"LicenseRef-scancode-warranty-disclaimer",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | elix22/Urho3D-1 | 1641fea4c855b599b2efa36cae9c249e1c507fc8 | 955ea6212defd1f0515c1bffa89a4114b63af3cd | refs/heads/master | 2021-06-25T00:57:28.436933 | 2020-11-25T13:53:52 | 2020-11-25T13:53:52 | 148,736,020 | 0 | 2 | MIT | 2020-11-25T13:53:53 | 2018-09-14T04:32:49 | C++ | UTF-8 | C++ | false | false | 10,646 | cpp | #include <assert.h>
#include <memory>
#ifdef _WIN32
# include <stdio.h>
#else
# include <unistd.h>
#endif
#include "TracyStorage.hpp"
#include "TracyUserData.hpp"
#include "TracyViewData.hpp"
namespace tracy
{
constexpr auto FileDescription = "description";
constexpr auto FileTimeline = "timeline";
constexpr auto FileOptions = "options";
constexpr auto FileAnnotations = "annotations";
constexpr auto FileSourceSubstitutions = "srcsub";
enum : uint32_t { VersionTimeline = 0 };
enum : uint32_t { VersionOptions = 5 };
enum : uint32_t { VersionAnnotations = 0 };
enum : uint32_t { VersionSourceSubstitutions = 0 };
UserData::UserData()
: m_preserveState( false )
{
}
UserData::UserData( const char* program, uint64_t time )
: m_program( program )
, m_time( time )
{
FILE* f = OpenFile( FileDescription, false );
if( f )
{
fseek( f, 0, SEEK_END );
const auto sz = ftell( f );
fseek( f, 0, SEEK_SET );
auto buf = std::make_unique<char[]>( sz );
fread( buf.get(), 1, sz, f );
fclose( f );
m_description.assign( buf.get(), buf.get() + sz );
}
}
void UserData::Init( const char* program, uint64_t time )
{
assert( !Valid() );
m_program = program;
m_time = time;
}
bool UserData::SetDescription( const char* description )
{
assert( Valid() );
m_description = description;
const auto sz = m_description.size();
FILE* f = OpenFile( FileDescription, true );
if( !f ) return false;
fwrite( description, 1, sz, f );
fclose( f );
return true;
}
void UserData::LoadState( ViewData& data )
{
assert( Valid() );
FILE* f = OpenFile( FileTimeline, false );
if( f )
{
uint32_t ver;
fread( &ver, 1, sizeof( ver ), f );
if( ver == VersionTimeline )
{
fread( &data.zvStart, 1, sizeof( data.zvStart ), f );
fread( &data.zvEnd, 1, sizeof( data.zvEnd ), f );
fread( &data.zvHeight, 1, sizeof( data.zvHeight ), f );
fread( &data.zvScroll, 1, sizeof( data.zvScroll ), f );
fread( &data.frameScale, 1, sizeof( data.frameScale ), f );
fread( &data.frameStart, 1, sizeof( data.frameStart ), f );
}
fclose( f );
}
f = OpenFile( FileOptions, false );
if( f )
{
uint32_t ver;
fread( &ver, 1, sizeof( ver ), f );
if( ver == VersionOptions )
{
fread( &data.drawGpuZones, 1, sizeof( data.drawGpuZones ), f );
fread( &data.drawZones, 1, sizeof( data.drawZones ), f );
fread( &data.drawLocks, 1, sizeof( data.drawLocks ), f );
fread( &data.drawPlots, 1, sizeof( data.drawPlots ), f );
fread( &data.onlyContendedLocks, 1, sizeof( data.onlyContendedLocks ), f );
fread( &data.drawEmptyLabels, 1, sizeof( data.drawEmptyLabels ), f );
fread( &data.drawContextSwitches, 1, sizeof( data.drawContextSwitches ), f );
fread( &data.darkenContextSwitches, 1, sizeof( data.darkenContextSwitches ), f );
fread( &data.drawCpuData, 1, sizeof( data.drawCpuData ), f );
fread( &data.drawCpuUsageGraph, 1, sizeof( data.drawCpuUsageGraph ), f );
fread( &data.drawSamples, 1, sizeof( data.drawSamples ), f );
fread( &data.dynamicColors, 1, sizeof( data.dynamicColors ), f );
fread( &data.ghostZones, 1, sizeof( data.ghostZones ), f );
}
fclose( f );
}
}
void UserData::SaveState( const ViewData& data )
{
if( !m_preserveState ) return;
assert( Valid() );
FILE* f = OpenFile( FileTimeline, true );
if( f )
{
uint32_t ver = VersionTimeline;
fwrite( &ver, 1, sizeof( ver ), f );
fwrite( &data.zvStart, 1, sizeof( data.zvStart ), f );
fwrite( &data.zvEnd, 1, sizeof( data.zvEnd ), f );
fwrite( &data.zvHeight, 1, sizeof( data.zvHeight ), f );
fwrite( &data.zvScroll, 1, sizeof( data.zvScroll ), f );
fwrite( &data.frameScale, 1, sizeof( data.frameScale ), f );
fwrite( &data.frameStart, 1, sizeof( data.frameStart ), f );
fclose( f );
}
f = OpenFile( FileOptions, true );
if( f )
{
uint32_t ver = VersionOptions;
fwrite( &ver, 1, sizeof( ver ), f );
fwrite( &data.drawGpuZones, 1, sizeof( data.drawGpuZones ), f );
fwrite( &data.drawZones, 1, sizeof( data.drawZones ), f );
fwrite( &data.drawLocks, 1, sizeof( data.drawLocks ), f );
fwrite( &data.drawPlots, 1, sizeof( data.drawPlots ), f );
fwrite( &data.onlyContendedLocks, 1, sizeof( data.onlyContendedLocks ), f );
fwrite( &data.drawEmptyLabels, 1, sizeof( data.drawEmptyLabels ), f );
fwrite( &data.drawContextSwitches, 1, sizeof( data.drawContextSwitches ), f );
fwrite( &data.darkenContextSwitches, 1, sizeof( data.darkenContextSwitches ), f );
fwrite( &data.drawCpuData, 1, sizeof( data.drawCpuData ), f );
fwrite( &data.drawCpuUsageGraph, 1, sizeof( data.drawCpuUsageGraph ), f );
fwrite( &data.drawSamples, 1, sizeof( data.drawSamples ), f );
fwrite( &data.dynamicColors, 1, sizeof( data.dynamicColors ), f );
fwrite( &data.ghostZones, 1, sizeof( data.ghostZones ), f );
fclose( f );
}
}
void UserData::StateShouldBePreserved()
{
m_preserveState = true;
}
void UserData::LoadAnnotations( std::vector<std::unique_ptr<Annotation>>& data )
{
assert( Valid() );
FILE* f = OpenFile( FileAnnotations, false );
if( f )
{
uint32_t ver;
fread( &ver, 1, sizeof( ver ), f );
if( ver == VersionAnnotations )
{
uint32_t sz;
fread( &sz, 1, sizeof( sz ), f );
for( uint32_t i=0; i<sz; i++ )
{
auto ann = std::make_unique<Annotation>();
uint32_t tsz;
fread( &tsz, 1, sizeof( tsz ), f );
if( tsz != 0 )
{
char buf[1024];
assert( tsz < 1024 );
fread( buf, 1, tsz, f );
ann->text.assign( buf, tsz );
}
fread( &ann->range.min, 1, sizeof( ann->range.min ), f );
fread( &ann->range.max, 1, sizeof( ann->range.max ), f );
fread( &ann->color, 1, sizeof( ann->color ), f );
ann->range.active = true;
data.emplace_back( std::move( ann ) );
}
}
fclose( f );
}
}
void UserData::SaveAnnotations( const std::vector<std::unique_ptr<Annotation>>& data )
{
if( !m_preserveState ) return;
if( data.empty() )
{
Remove( FileAnnotations );
return;
}
assert( Valid() );
FILE* f = OpenFile( FileAnnotations, true );
if( f )
{
uint32_t ver = VersionAnnotations;
fwrite( &ver, 1, sizeof( ver ), f );
uint32_t sz = uint32_t( data.size() );
fwrite( &sz, 1, sizeof( sz ), f );
for( auto& ann : data )
{
sz = uint32_t( ann->text.size() );
fwrite( &sz, 1, sizeof( sz ), f );
if( sz != 0 )
{
fwrite( ann->text.c_str(), 1, sz, f );
}
fwrite( &ann->range.min, 1, sizeof( ann->range.min ), f );
fwrite( &ann->range.max, 1, sizeof( ann->range.max ), f );
fwrite( &ann->color, 1, sizeof( ann->color ), f );
}
fclose( f );
}
}
bool UserData::LoadSourceSubstitutions( std::vector<SourceRegex>& data )
{
assert( Valid() );
bool regexValid = true;
FILE* f = OpenFile( FileSourceSubstitutions, false );
if( f )
{
uint32_t ver;
fread( &ver, 1, sizeof( ver ), f );
if( ver == VersionSourceSubstitutions )
{
uint32_t sz;
fread( &sz, 1, sizeof( sz ), f );
for( uint32_t i=0; i<sz; i++ )
{
std::string pattern, target;
uint32_t tsz;
fread( &tsz, 1, sizeof( tsz ), f );
if( tsz != 0 )
{
char buf[1024];
assert( tsz < 1024 );
fread( buf, 1, tsz, f );
pattern.assign( buf, tsz );
}
fread( &tsz, 1, sizeof( tsz ), f );
if( tsz != 0 )
{
char buf[1024];
assert( tsz < 1024 );
fread( buf, 1, tsz, f );
target.assign( buf, tsz );
}
std::regex regex;
try
{
regex.assign( pattern );
}
catch( std::regex_error& err )
{
regexValid = false;
}
data.emplace_back( SourceRegex { std::move( pattern ), std::move( target ), std::move( regex ) } );
}
}
fclose( f );
}
return regexValid;
}
void UserData::SaveSourceSubstitutions( const std::vector<SourceRegex>& data )
{
if( !m_preserveState ) return;
if( data.empty() )
{
Remove( FileSourceSubstitutions );
return;
}
assert( Valid() );
FILE* f = OpenFile( FileSourceSubstitutions, true );
if( f )
{
uint32_t ver = VersionSourceSubstitutions;
fwrite( &ver, 1, sizeof( ver ), f );
uint32_t sz = uint32_t( data.size() );
fwrite( &sz, 1, sizeof( sz ), f );
for( auto& v : data )
{
sz = uint32_t( v.pattern.size() );
fwrite( &sz, 1, sizeof( sz ), f );
if( sz != 0 )
{
fwrite( v.pattern.c_str(), 1, sz, f );
}
sz = uint32_t( v.target.size() );
fwrite( &sz, 1, sizeof( sz ), f );
if( sz != 0 )
{
fwrite( v.target.c_str(), 1, sz, f );
}
}
fclose( f );
}
}
FILE* UserData::OpenFile( const char* filename, bool write )
{
const auto path = GetSavePath( m_program.c_str(), m_time, filename, write );
if( !path ) return nullptr;
FILE* f = fopen( path, write ? "wb" : "rb" );
return f;
}
void UserData::Remove( const char* filename )
{
const auto path = GetSavePath( m_program.c_str(), m_time, filename, false );
if( !path ) return;
unlink( path );
}
const char* UserData::GetConfigLocation() const
{
assert( Valid() );
return GetSavePath( m_program.c_str(), m_time, nullptr, false );
}
}
| [
"rokups@zoho.com"
] | rokups@zoho.com |
c29c3905170efc51c74f1fbf6ce1e142d7cc80d5 | dfa471a2afec10142e6d5cb5f2e2b15bb34ddb0c | /13/src/VertexArray.hpp | 6db8f977b80951c6f6688efc920c44ac61533e4c | [] | no_license | adrienlucbert/opengl-course | 9ab62ffdfe8274dbe170471f1e26375ec8c014f2 | 140ebc2c221816b1a49c17db891082156608aae3 | refs/heads/master | 2022-11-29T03:17:49.138884 | 2020-08-10T19:40:21 | 2020-08-10T19:40:21 | 258,800,094 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 269 | hpp | /**
* @brief OpenGL Buffer Object class
* @date 2020-04-30
*/
#pragma once
#include "GLObject.hpp"
class VertexArray : public A_GLObject
{
public:
VertexArray();
virtual ~VertexArray();
virtual void bind() const;
virtual void unbind() const;
}; | [
"adrien.lucbert@epitech.eu"
] | adrien.lucbert@epitech.eu |
8f541d2463dbc9efcfb43b6803ab98d4fab79493 | 06ecb76973dc61c651c9d13c3d88d83677e20ead | /(Appello d'esame del 19.02.2010) - Es . 3/main.cpp | afc7be842f15f73e57634c39778d128aac1d2208 | [] | no_license | FrankieV/Fondamenti-di-Informatica | cb39bce8e9a6ad225db372ababc7565a26a6a330 | ce2977e15247e2df5c4d9c49b0594143a0e233b5 | refs/heads/master | 2016-09-09T22:34:37.771788 | 2014-08-31T11:29:28 | 2014-08-31T11:29:28 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,164 | cpp | #include <iostream>
using namespace std;
const int dim = 4;
void init_Tabellone(int[][dim]);
void Most_Wins(int[][dim],int[]);
void pt_Trasferta(int[][dim],int[]);
int Squadra_Vincitrice(int []);
int Ultima_Squadra(int[]);
int main()
{
int Tabellone[dim][dim];
int Punti_Squadre[dim];
init_Tabellone(Tabellone);
Most_Wins(Tabellone,Punti_Squadre);
pt_Trasferta(Tabellone,Punti_Squadre);
int winner = Squadra_Vincitrice(Punti_Squadre);
int loser = Ultima_Squadra(Punti_Squadre);
cout << "La squadra che ha totalizzato piu' punti e': s" << winner << " con " << Punti_Squadre[winner] << " punti" << endl;
cout << "La squadra che ha totalizzato meno punti e': s" << loser << " con " << Punti_Squadre[loser] << " punti" << endl;
}
void init_Tabellone(int tabellone[][dim])
{
for(int i = 0; i < dim; i++)
{
for(int j = 0; j < dim; j++)
{
tabellone[i][j] = -1;
}
}
for(int i = 0; i < dim; i++)
{
for(int j = 0; j < dim; j++)
{
cin >> tabellone[i][j];
}
}
}
void Most_Wins(int tabellone[][dim], int pt_Squadre[])
{
int cont = 0;
int riga= 0;
int cont_Max = 0;
int pos = 0;
int cont_pt = 0;
int most_wins = 0;
while(riga < dim)
{
for(int j = 0; j < dim; j++)
{
if(riga != j)
{
if(tabellone[riga][j] == 1)
{
cont += tabellone[riga][j];
cont_pt += 3;
}
else if(tabellone[riga][j] == 0)
{
cont_pt += 1;
}
}
}
pt_Squadre[pos] = cont_pt;
if(cont > cont_Max)
{
most_wins = riga;
cont_Max = cont;
}
cont = 0;
riga++;
cont_pt = 0;
pos++;
}
cout << "Squadra con piu' vittorie in casa " << "s" << most_wins << endl;
}
void pt_Trasferta(int tabellone[][dim], int pt_Squadre[])
{
int pos = 0;
int cont_pt = 0;
int colonna = 0;
while(colonna < dim)
{
for(int i = 0; i < dim; i++)
{
if(colonna != i)
{
if(tabellone[i][colonna] == 2)
{
cont_pt += 3;
}
else if(tabellone[i][colonna] == 0)
{
cont_pt += 1;
}
}
}
pt_Squadre[pos] += cont_pt;
pos++;
colonna++;
cont_pt = 0;
}
}
int Squadra_Vincitrice(int pt_Squadre[])
{
int squadra = 0;
int cont_Max = pt_Squadre[0];
for(int i = 0; i < dim; i++)
{
if(pt_Squadre[i] > cont_Max)
{
cont_Max = pt_Squadre[i];
squadra = i;
}
}
return squadra;
}
int Ultima_Squadra(int pt_Squadre[])
{
int squadra = 0;
int cont_Max = pt_Squadre[0];
for(int i = 0; i < dim; i++)
{
if(pt_Squadre[i] < cont_Max)
{
cont_Max = pt_Squadre[i];
squadra = i;
}
}
return squadra;
}
| [
"villellafrancesco@hotmail.it"
] | villellafrancesco@hotmail.it |
ec4e2f64a50f05e4afdfff1667aa9fbf3cd6f203 | 1c4c1fc58e589aa3f5c2b43cc78d283d02681360 | /third-party/gecode/gecode/third-party/boost/numeric/interval/rounded_transc.hpp | ffed40c00d7d0bae9d96d67cf396810927b03e9f | [
"MIT",
"BSL-1.0",
"BSD-2-Clause"
] | permissive | liq07lzucn/easy-IP | 593412448b0393cdc433fede4d08aeec8e40ae3d | d57607333b9844a32723db5e1d748b9eeb4fb2a2 | refs/heads/master | 2021-09-22T10:06:18.036631 | 2018-09-07T17:18:00 | 2018-09-07T17:18:00 | null | 0 | 0 | null | null | null | null | ISO-8859-2 | C++ | false | false | 5,326 | hpp | /* Boost interval/rounded_transc.hpp template implementation file
*
* Copyright 2002-2003 Hervé Brönnimann, Guillaume Melquiond, Sylvain Pion
*
* Distributed under the Boost Software License, Version 1.0.
* (See accompanying file LICENSE_1_0.txt or
* copy at http://www.boost.org/LICENSE_1_0.txt)
*/
#ifndef BOOST_NUMERIC_INTERVAL_ROUNDED_TRANSC_HPP
#define BOOST_NUMERIC_INTERVAL_ROUNDED_TRANSC_HPP
#include <gecode/third-party/boost/numeric/interval/rounding.hpp>
#include <gecode/third-party/boost/numeric/interval/detail/bugs.hpp>
#include <gecode/third-party/boost/config/no_tr1/cmath.hpp>
namespace boost {
namespace numeric {
namespace interval_lib {
template<class T, class Rounding>
struct rounded_transc_exact: Rounding
{
# define BOOST_NUMERIC_INTERVAL_new_func(f) \
T f##_down(const T& x) { BOOST_NUMERIC_INTERVAL_using_math(f); return f(x); } \
T f##_up (const T& x) { BOOST_NUMERIC_INTERVAL_using_math(f); return f(x); }
BOOST_NUMERIC_INTERVAL_new_func(exp)
BOOST_NUMERIC_INTERVAL_new_func(log)
BOOST_NUMERIC_INTERVAL_new_func(sin)
BOOST_NUMERIC_INTERVAL_new_func(cos)
BOOST_NUMERIC_INTERVAL_new_func(tan)
BOOST_NUMERIC_INTERVAL_new_func(asin)
BOOST_NUMERIC_INTERVAL_new_func(acos)
BOOST_NUMERIC_INTERVAL_new_func(atan)
BOOST_NUMERIC_INTERVAL_new_func(sinh)
BOOST_NUMERIC_INTERVAL_new_func(cosh)
BOOST_NUMERIC_INTERVAL_new_func(tanh)
# undef BOOST_NUMERIC_INTERVAL_new_func
# define BOOST_NUMERIC_INTERVAL_new_func(f) \
T f##_down(const T& x) { BOOST_NUMERIC_INTERVAL_using_ahyp(f); return f(x); } \
T f##_up (const T& x) { BOOST_NUMERIC_INTERVAL_using_ahyp(f); return f(x); }
BOOST_NUMERIC_INTERVAL_new_func(asinh)
BOOST_NUMERIC_INTERVAL_new_func(acosh)
BOOST_NUMERIC_INTERVAL_new_func(atanh)
# undef BOOST_NUMERIC_INTERVAL_new_func
};
template<class T, class Rounding>
struct rounded_transc_std: Rounding
{
# define BOOST_NUMERIC_INTERVAL_new_func(f) \
T f##_down(const T& x) \
{ BOOST_NUMERIC_INTERVAL_using_math(f); \
this->downward(); return this->force_rounding(f(x)); } \
T f##_up (const T& x) \
{ BOOST_NUMERIC_INTERVAL_using_math(f); \
this->upward(); return this->force_rounding(f(x)); }
BOOST_NUMERIC_INTERVAL_new_func(exp)
BOOST_NUMERIC_INTERVAL_new_func(log)
BOOST_NUMERIC_INTERVAL_new_func(sin)
BOOST_NUMERIC_INTERVAL_new_func(cos)
BOOST_NUMERIC_INTERVAL_new_func(tan)
BOOST_NUMERIC_INTERVAL_new_func(asin)
BOOST_NUMERIC_INTERVAL_new_func(acos)
BOOST_NUMERIC_INTERVAL_new_func(atan)
BOOST_NUMERIC_INTERVAL_new_func(sinh)
BOOST_NUMERIC_INTERVAL_new_func(cosh)
BOOST_NUMERIC_INTERVAL_new_func(tanh)
# undef BOOST_NUMERIC_INTERVAL_new_func
# define BOOST_NUMERIC_INTERVAL_new_func(f) \
T f##_down(const T& x) \
{ BOOST_NUMERIC_INTERVAL_using_ahyp(f); \
this->downward(); return this->force_rounding(f(x)); } \
T f##_up (const T& x) \
{ BOOST_NUMERIC_INTERVAL_using_ahyp(f); \
this->upward(); return this->force_rounding(f(x)); }
BOOST_NUMERIC_INTERVAL_new_func(asinh)
BOOST_NUMERIC_INTERVAL_new_func(acosh)
BOOST_NUMERIC_INTERVAL_new_func(atanh)
# undef BOOST_NUMERIC_INTERVAL_new_func
};
template<class T, class Rounding>
struct rounded_transc_opp: Rounding
{
# define BOOST_NUMERIC_INTERVAL_new_func(f) \
T f##_down(const T& x) \
{ BOOST_NUMERIC_INTERVAL_using_math(f); \
this->downward(); T y = this->force_rounding(f(x)); \
this->upward(); return y; } \
T f##_up (const T& x) \
{ BOOST_NUMERIC_INTERVAL_using_math(f); \
return this->force_rounding(f(x)); }
BOOST_NUMERIC_INTERVAL_new_func(exp)
BOOST_NUMERIC_INTERVAL_new_func(log)
BOOST_NUMERIC_INTERVAL_new_func(cos)
BOOST_NUMERIC_INTERVAL_new_func(acos)
BOOST_NUMERIC_INTERVAL_new_func(cosh)
# undef BOOST_NUMERIC_INTERVAL_new_func
# define BOOST_NUMERIC_INTERVAL_new_func(f) \
T f##_down(const T& x) \
{ BOOST_NUMERIC_INTERVAL_using_math(f); \
return -this->force_rounding(-f(x)); } \
T f##_up (const T& x) \
{ BOOST_NUMERIC_INTERVAL_using_math(f); \
return this->force_rounding(f(x)); }
BOOST_NUMERIC_INTERVAL_new_func(sin)
BOOST_NUMERIC_INTERVAL_new_func(tan)
BOOST_NUMERIC_INTERVAL_new_func(asin)
BOOST_NUMERIC_INTERVAL_new_func(atan)
BOOST_NUMERIC_INTERVAL_new_func(sinh)
BOOST_NUMERIC_INTERVAL_new_func(tanh)
# undef BOOST_NUMERIC_INTERVAL_new_func
# define BOOST_NUMERIC_INTERVAL_new_func(f) \
T f##_down(const T& x) \
{ BOOST_NUMERIC_INTERVAL_using_ahyp(f); \
this->downward(); T y = this->force_rounding(f(x)); \
this->upward(); return y; } \
T f##_up (const T& x) \
{ BOOST_NUMERIC_INTERVAL_using_ahyp(f); \
return this->force_rounding(f(x)); }
BOOST_NUMERIC_INTERVAL_new_func(asinh)
BOOST_NUMERIC_INTERVAL_new_func(atanh)
# undef BOOST_NUMERIC_INTERVAL_new_func
# define BOOST_NUMERIC_INTERVAL_new_func(f) \
T f##_down(const T& x) \
{ BOOST_NUMERIC_INTERVAL_using_ahyp(f); \
return -this->force_rounding(-f(x)); } \
T f##_up (const T& x) \
{ BOOST_NUMERIC_INTERVAL_using_ahyp(f); \
return this->force_rounding(f(x)); }
BOOST_NUMERIC_INTERVAL_new_func(acosh)
# undef BOOST_NUMERIC_INTERVAL_new_func
};
} // namespace interval_lib
} // namespace numeric
} // namespace boost
#endif // BOOST_NUMERIC_INTERVAL_ROUNDED_TRANSC_HPP
| [
"petter.strandmark@gmail.com"
] | petter.strandmark@gmail.com |
b4eeb31be16add239fd5c300d807ae43e131c0e0 | 449d4ae1da59d804912de9cb105db083afb91f60 | /Farquaad/include/Farquaad/Systems/SoundSystem.h | 8217484f1fd77e7a1ef8737f2f3941a352f525b9 | [
"Zlib",
"LicenseRef-scancode-unknown-license-reference",
"LicenseRef-scancode-public-domain"
] | permissive | iamPHEN/GameEngine | 375fc6e9b703c488d3358d2fe30b02cdae0fc38b | 31f3d4921b289b9ede63b9756cb697462fb72944 | refs/heads/master | 2021-01-10T23:05:58.146899 | 2016-09-26T03:49:50 | 2016-09-26T03:49:50 | 70,423,356 | 0 | 0 | null | 2016-10-09T18:46:36 | 2016-10-09T18:46:36 | null | UTF-8 | C++ | false | false | 429 | h | // Copyright 2016 Bablawn3d5
#pragma once
#include <entityx/entityx.h>
#include <SFML/Audio.hpp>
#include <Thor/Resources.hpp>
#include <string>
namespace ex = entityx;
struct SoundSystem : public ex::System<SoundSystem> {
public:
explicit SoundSystem();
void update(ex::EntityManager &em, ex::EventManager &events, ex::TimeDelta dt); // NOLINT
thor::ResourceHolder<sf::SoundBuffer, std::string> soundbuff_holder;
};
| [
"tehphen@gmail.com"
] | tehphen@gmail.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.