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
4776186098069ae14bb7985b4f175c399d5a30c2
f383545b6995dd0e33429410241268f20c3b1104
/tools/profiler/ui/window_impl.cc
a62743f3d11567eb768b6d0f0ccad0ac6bf2c7e5
[]
no_license
hefen1/kalpa
bc3b2d28be88c2a09e98b30644be55fd8bef46b7
3f11f137e87368773fd6ac30da068f85533704e5
refs/heads/master
2020-04-11T17:35:39.889424
2014-07-25T06:28:19
2014-07-25T06:29:51
22,252,916
1
3
null
null
null
null
UTF-8
C++
false
false
6,506
cc
// Copyright (c) 2011 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 "window_impl.h" #include <list> #include "base/memory/singleton.h" #include "base/strings/string_number_conversions.h" #include "base/win/wrapped_window_proc.h" #include "hwnd_util.h" namespace ui { static const DWORD kWindowDefaultChildStyle = WS_CHILD | WS_VISIBLE | WS_CLIPCHILDREN | WS_CLIPSIBLINGS; static const DWORD kWindowDefaultStyle = WS_OVERLAPPEDWINDOW; static const DWORD kWindowDefaultExStyle = 0; /////////////////////////////////////////////////////////////////////////////// // WindowImpl class tracking. // Several external scripts rely explicitly on this base class name for // acquiring the window handle and will break if this is modified! // static const wchar_t* const WindowImpl::kBaseClassName = L"Profiler_WidgetWin_"; // WindowImpl class information used for registering unique windows. struct ClassInfo { UINT style; HBRUSH background; explicit ClassInfo(int style) : style(style), background(NULL) {} // Compares two ClassInfos. Returns true if all members match. bool Equals(const ClassInfo& other) const { return (other.style == style && other.background == background); } }; class ClassRegistrar { public: static ClassRegistrar* GetInstance() { return Singleton<ClassRegistrar>::get(); } ~ClassRegistrar() { for (RegisteredClasses::iterator i = registered_classes_.begin(); i != registered_classes_.end(); ++i) { UnregisterClass(i->name.c_str(), NULL); } } // Puts the name for the class matching |class_info| in |class_name|, creating // a new name if the class is not yet known. // Returns true if this class was already known, false otherwise. bool RetrieveClassName(const ClassInfo& class_info, std::wstring* name) { for (RegisteredClasses::const_iterator i = registered_classes_.begin(); i != registered_classes_.end(); ++i) { if (class_info.Equals(i->info)) { name->assign(i->name); return true; } } name->assign(string16(WindowImpl::kBaseClassName) + base::IntToString16(registered_count_++)); return false; } void RegisterClass(const ClassInfo& class_info, const std::wstring& name, ATOM atom) { registered_classes_.push_back(RegisteredClass(class_info, name, atom)); } private: // Represents a registered window class. struct RegisteredClass { RegisteredClass(const ClassInfo& info, const std::wstring& name, ATOM atom) : info(info), name(name), atom(atom) { } // Info used to create the class. ClassInfo info; // The name given to the window. std::wstring name; // The ATOM returned from creating the window. ATOM atom; }; ClassRegistrar() : registered_count_(0) { } friend struct DefaultSingletonTraits<ClassRegistrar>; typedef std::list<RegisteredClass> RegisteredClasses; RegisteredClasses registered_classes_; // Counter of how many classes have been registered so far. int registered_count_; DISALLOW_COPY_AND_ASSIGN(ClassRegistrar); }; /////////////////////////////////////////////////////////////////////////////// // WindowImpl, public WindowImpl::WindowImpl() : window_style_(0), window_ex_style_(kWindowDefaultExStyle), class_style_(CS_DBLCLKS), hwnd_(NULL) { } WindowImpl::~WindowImpl() { } void WindowImpl::Init(HWND parent, const gfx::Rect& bounds) { if (window_style_ == 0) window_style_ = parent ? kWindowDefaultChildStyle : kWindowDefaultStyle; // Ensures the parent we have been passed is valid, otherwise CreateWindowEx // will fail. if (parent && !::IsWindow(parent)) { NOTREACHED() << "invalid parent window specified."; parent = NULL; } int x, y, width, height; if (bounds.IsEmpty()) { x = y = width = height = CW_USEDEFAULT; } else { x = bounds.x(); y = bounds.y(); width = bounds.width(); height = bounds.height(); } std::wstring name(GetWindowClassName()); hwnd_ = CreateWindowEx(window_ex_style_, name.c_str(), NULL, window_style_, x, y, width, height, parent, NULL, NULL, this); CheckWindowCreated(hwnd_); // The window procedure should have set the data for us. CHECK_EQ(this, ui::GetWindowUserData(hwnd_)); } /* HICON WindowImpl::GetDefaultWindowIcon() const { return NULL; } */ LRESULT WindowImpl::OnWndProc(UINT message, WPARAM w_param, LPARAM l_param) { LRESULT result = 0; // Handle the message if it's in our message map; otherwise, let the system // handle it. if (!ProcessWindowMessage(hwnd_, message, w_param, l_param, result)) result = DefWindowProc(hwnd_, message, w_param, l_param); return result; } // static LRESULT CALLBACK WindowImpl::WndProc(HWND hwnd, UINT message, WPARAM w_param, LPARAM l_param) { if (message == WM_NCCREATE) { CREATESTRUCT* cs = reinterpret_cast<CREATESTRUCT*>(l_param); WindowImpl* window = reinterpret_cast<WindowImpl*>(cs->lpCreateParams); DCHECK(window); ui::SetWindowUserData(hwnd, window); window->hwnd_ = hwnd; return TRUE; } WindowImpl* window = reinterpret_cast<WindowImpl*>( ui::GetWindowUserData(hwnd)); if (!window) return 0; return window->OnWndProc(message, w_param, l_param); } std::wstring WindowImpl::GetWindowClassName() { ClassInfo class_info(initial_class_style()); std::wstring name; if (ClassRegistrar::GetInstance()->RetrieveClassName(class_info, &name)) return name; //HICON icon = GetDefaultWindowIcon(); // No class found, need to register one. WNDCLASSEX class_ex = { sizeof(WNDCLASSEX), class_info.style, base::win::WrappedWindowProc<&WindowImpl::WndProc>, 0, 0, NULL, LoadIcon (NULL, IDI_APPLICATION), LoadCursor (NULL, IDC_ARROW) , //reinterpret_cast<HBRUSH>(class_info.background + 1), (HBRUSH) GetStockObject (GRAY_BRUSH), NULL, name.c_str(), LoadIcon (NULL, IDI_APPLICATION) }; ATOM atom = RegisterClassEx(&class_ex); CHECK(atom) << GetLastError(); ClassRegistrar::GetInstance()->RegisterClass(class_info, name, atom); return name; } } // namespace ui
[ "sunwangme@gmail.com" ]
sunwangme@gmail.com
d0b2e64c12d80fdf42aaf4b121c70b655a851b3f
16e130599e881b7c1782ae822f3c52d88eac5892
/leetcode/twoSumIV/main.cpp
4137b6e25ca1e175153c9de5a2a607bc05edb397
[]
no_license
knightzf/review
9b40221a908d8197a3288ba3774651aa31aef338
8c716b13b5bfba7eafc218f29e4f240700ae3707
refs/heads/master
2023-04-27T04:43:36.840289
2023-04-22T22:15:26
2023-04-22T22:15:26
10,069,788
0
0
null
null
null
null
UTF-8
C++
false
false
804
cpp
#include "header.h" class Solution { public: bool findTarget(TreeNode* root, int k) { return impl(root, root, k); } bool impl(TreeNode* node, TreeNode* root, int k) { if(node == nullptr) return false; if(impl(node->left, root, k)) return true; if(node->val * 2 != k) { if(binarySearh(k - node->val, root)) return true; } if(impl(node->right, root, k)) return true; return false; } bool binarySearh(int k , TreeNode* root) { while(root) { if(k < root->val) root = root->left; else if(k > root->val) root = root->right; else return true; } return false; } }; int main() { Solution s; }
[ "knightzf@gmail.com" ]
knightzf@gmail.com
078939f3383a2942bae7ee8c13a6d7aa4789f654
47eb05f6081abc9cb865020218011c5e643f51ed
/EEPROM/polywog_eeprom_net_setup.ino
3c0e822b4b0c6bb08eacead9a0bd8202acac436e
[]
no_license
comwareinternational/Polywog_Examples
be59b55fb178b6c72e4133461e266f49e316638b
a5230c7484f2e07a641934316184428dee2e0d7d
refs/heads/master
2021-07-06T18:55:36.938350
2017-10-03T02:35:47
2017-10-03T02:35:47
105,604,946
0
0
null
null
null
null
UTF-8
C++
false
false
7,637
ino
// Arduino Network EEPROM Setup utility - eeprom_net_setup // D. Retz, March 2017 #include "Arduino.h" #include "EEPROM.h" #include "string.h" #include "polywog_eeprom.h" // contains EEPROM structure // eeprom_crc returns a 32-bit unsigned value unsigned long eeprom_crc(unsigned char *p, int length) { const unsigned long crc_table[16] = { 0x00000000, 0x1db71064, 0x3b6e20c8, 0x26d930ac, 0x76dc4190, 0x6b6b51f4, 0x4db26158, 0x5005713c, 0xedb88320, 0xf00f9344, 0xd6d6a3e8, 0xcb61b38c, 0x9b64c2b0, 0x86d3d2d4, 0xa00ae278, 0xbdbdf21c }; unsigned long crc = ~0L; for (int index = 0 ; index < length ; ++index) { crc = crc_table[(crc ^ p[index]) & 0x0F] ^ (crc >> 4); crc = crc_table[(crc ^ (p[index] >> 4)) & 0x0F] ^ (crc >> 4); crc = ~crc; } return crc; } /*----------------------------------------------------------------------* * This code loads the values into EEPROM structure and returns * * TRUE if EEPROM valid. * * * * Assumes pointer to POLYWOG_EEPROM structure, which gets filled * * in IF the EEPROM is valid. * * Returns TRUE if EEPROM is valid, FALSE otherwise. * *----------------------------------------------------------------------*/ boolean verify_eeprom(POLYWOG_EEPROM_PTR eep) { unsigned long tcrc; // temp crc for comparison int i; unsigned char *xcp; for (i=POLYWOG_EEPROM_BASE, xcp=(unsigned char *) eep; i<sizeof(POLYWOG_EEPROM); i++) *xcp++ = EEPROM.read(i); // copy byte-for-byte into structure tcrc = eeprom_crc((unsigned char *) eep, sizeof(POLYWOG_EEPROM)-sizeof(eep->crc) ); // compute CRC on stored data return (tcrc == eep->crc); } // The following code is only used for initializing the EEPROM // readline - reads a line of text ending with NL character String readline(void) { String a; do { a = Serial.readStringUntil('\n'); } while (a.length()==0); return(a); } // hexVal - convert nul-terminated string of form 0xFF to int (hex) int hexVal(char *hs) { int ih,ij; char c; ih = 0; // initialize accumulated hex value for (ij=2; ij<8; ij++) { c = toupper(hs[ij]); // get next hex character (ascii) if (c == 0) return(ih); // if nul, return accumulated hex value if (c >= 0x30 && c <= 0x39) // numeric {ih <<= 4; ih |= (c & 0x0F); } if (c >= 'A' && c <= 'F') // characters A-F ? {ih <<= 4; ih |= (c-'A'+0x0A); } } return (0); // if loop ran out, return 0 } // getIntVal - converts string to decimal or hex value and return the value as an int int getIntVal(String x) { char data[16]; if (x.length() < 1) return(0); x.toCharArray(data, sizeof(data)-1); // copy bytes to array if (memcmp(data, "0x", 2) != 0) return(atoi(data)); else return(hexVal(data)); } // confirm, return 0 if cancel, 1 if ok unsigned int confirm(void) { String b; Serial.print("Confirm [Y/N]: "); b = readline(); if (toupper(b[0]) == 'Y') return (1); else return(0); } void setup() { // put your setup code here, to run once: Serial.begin(38400); Serial.setTimeout(15000); Serial.println("EEPROM NET Address Setup. Enter character command:"); Serial.println("I - Initialize; C - Clear; V - Verify"); Serial.println(); } void loop() { unsigned char xc; unsigned char *xcp; int i; unsigned long tcrc; // temp crc for comparison POLYWOG_EEPROM eepval; // put your main code here, to run repeatedly: Serial.print("$# "); // Issue command prompt String b = readline(); xc = toupper(b[0]); switch(xc) { case 'I': Serial.println("Initializing."); Serial.print("Net number: "); i = getIntVal( readline() ); // get a decimal or hex value as int eepval.net_number=i; // Serial.print("Entered decimal net number: "); // Serial.println(eepval.net_number); Serial.println(); Serial.print("Node number: "); i = getIntVal( readline() ); eepval.node_number = i; // Serial.println("Entered decimal node number: "); // Serial.println(eepval.node_number); Serial.println(); Serial.print("Node name: "); b = readline(); if (b.length() > sizeof(eepval.node_name)-1) { Serial.println("Node name is limited in size (input aborted)."); break; // abort the input } b.toCharArray(&eepval.node_name[0], sizeof(eepval.node_name)-1); // echo back the parameters before asking to confirm Serial.print("Net number: 0x"); Serial.print(eepval.net_number, HEX); Serial.print(" ("); Serial.print(eepval.net_number); Serial.println(")"); Serial.print("Node number: 0x"); Serial.print(eepval.node_number, HEX); Serial.print(" ("); Serial.print(eepval.node_number); Serial.println(")"); Serial.print("Node name: "); Serial.println(eepval.node_name); // ok, now confirm that below. if (confirm()) { tcrc = eeprom_crc((unsigned char *)&eepval, sizeof(eepval)-sizeof(eepval.crc)); // generate CRC eepval.crc = tcrc; // store the computed CRC into structure Serial.print("Generated CRC = "); Serial.println(tcrc, HEX); // now write the structure to EEPROM for (i=POLYWOG_EEPROM_BASE, xcp=(unsigned char *)&eepval; i<sizeof(eepval); i++) EEPROM.write(i, *xcp++); // copy byte-for-byte to EEPROM Serial.println("OK"); } else { Serial.println("Cancelled initialization."); } break; // C - CLEAR EEPROM to 0's if confirm with Y. case 'C': if ( !confirm()) break; Serial.println("Zapping EEPROM (or at least our section) !"); for (i=POLYWOG_EEPROM_BASE; i<sizeof(eepval); i++) EEPROM.write(i, 0x00); // zap the eeprom break; // V - Verify (or S, Status) case 'S': case 'V': Serial.println("EEPROM Status."); // eepval.crc = 0; for (i=POLYWOG_EEPROM_BASE, xcp=(unsigned char *)&eepval; i<sizeof(eepval); i++) *xcp++ = EEPROM.read(i); // copy byte-for-byte into structure tcrc = eeprom_crc((unsigned char *)&eepval, sizeof(eepval)-sizeof(eepval.crc) ); // compute CRC on stored data Serial.print("Stored CRC="); Serial.print(eepval.crc, HEX); Serial.print(", computed CRC="); Serial.print(tcrc, HEX); Serial.println(); Serial.print("Net number: 0x"); Serial.print(eepval.net_number, HEX); Serial.print(" ("); Serial.print(eepval.net_number); Serial.println(")"); Serial.print("Node number: 0x"); Serial.print(eepval.node_number, HEX); Serial.print(" ("); Serial.print(eepval.node_number); Serial.println(")"); Serial.print("Node name: "); Serial.println(eepval.node_name); if (tcrc != eepval.crc) { Serial.println("EEPROM CRC Error - Run Initialize to setup."); } else Serial.println("EEPROM CRC is valid."); // show binary image of eeprom, in bytes Serial.println("EEPROM Image (little-endian):"); for (i=POLYWOG_EEPROM_BASE; i<sizeof(eepval); i++) { Serial.print(EEPROM.read(i), HEX); Serial.print(" "); } Serial.println(); if (verify_eeprom(&eepval)) Serial.println("Verified."); else Serial.println("EEPROM Error - run Setup."); break; case '?': case 'H': Serial.println("Commands are:"); Serial.println("S or V - Status or Verify, prints configuration and verifies EEPROM."); Serial.println("C - Clears EEPROM (just the polywog portion)"); Serial.println("I - Initialize, set network, node number, and name for this node. Write EEPROM after confirm."); break; default: Serial.println("Unknown command."); } }
[ "noreply@github.com" ]
noreply@github.com
b15b264551de3396fe368ea9bb89bd2c424c96fd
7e48d392300fbc123396c6a517dfe8ed1ea7179f
/RodentVR/Intermediate/Build/Win64/RodentVR/Inc/NiagaraCore/NiagaraDataInterfaceBase.gen.cpp
5a9985d537d2d5c60bc1d3ff70581b1b1229fc41
[]
no_license
WestRyanK/Rodent-VR
f4920071b716df6a006b15c132bc72d3b0cba002
2033946f197a07b8c851b9a5075f0cb276033af6
refs/heads/master
2021-06-14T18:33:22.141793
2020-10-27T03:25:33
2020-10-27T03:25:33
154,956,842
1
1
null
2018-11-29T09:56:21
2018-10-27T11:23:11
C++
UTF-8
C++
false
false
3,674
cpp
// Copyright Epic Games, Inc. All Rights Reserved. /*=========================================================================== Generated code exported from UnrealHeaderTool. DO NOT modify this manually! Edit the corresponding .h files instead! ===========================================================================*/ #include "UObject/GeneratedCppIncludes.h" #include "NiagaraCore/Public/NiagaraDataInterfaceBase.h" #ifdef _MSC_VER #pragma warning (push) #pragma warning (disable : 4883) #endif PRAGMA_DISABLE_DEPRECATION_WARNINGS void EmptyLinkFunctionForGeneratedCodeNiagaraDataInterfaceBase() {} // Cross Module References NIAGARACORE_API UClass* Z_Construct_UClass_UNiagaraDataInterfaceBase_NoRegister(); NIAGARACORE_API UClass* Z_Construct_UClass_UNiagaraDataInterfaceBase(); NIAGARACORE_API UClass* Z_Construct_UClass_UNiagaraMergeable(); UPackage* Z_Construct_UPackage__Script_NiagaraCore(); // End Cross Module References void UNiagaraDataInterfaceBase::StaticRegisterNativesUNiagaraDataInterfaceBase() { } UClass* Z_Construct_UClass_UNiagaraDataInterfaceBase_NoRegister() { return UNiagaraDataInterfaceBase::StaticClass(); } struct Z_Construct_UClass_UNiagaraDataInterfaceBase_Statics { static UObject* (*const DependentSingletons[])(); #if WITH_METADATA static const UE4CodeGen_Private::FMetaDataPairParam Class_MetaDataParams[]; #endif static const FCppClassTypeInfoStatic StaticCppClassTypeInfo; static const UE4CodeGen_Private::FClassParams ClassParams; }; UObject* (*const Z_Construct_UClass_UNiagaraDataInterfaceBase_Statics::DependentSingletons[])() = { (UObject* (*)())Z_Construct_UClass_UNiagaraMergeable, (UObject* (*)())Z_Construct_UPackage__Script_NiagaraCore, }; #if WITH_METADATA const UE4CodeGen_Private::FMetaDataPairParam Z_Construct_UClass_UNiagaraDataInterfaceBase_Statics::Class_MetaDataParams[] = { { "Comment", "/** Base class for all Niagara data interfaces. */" }, { "IncludePath", "NiagaraDataInterfaceBase.h" }, { "ModuleRelativePath", "Public/NiagaraDataInterfaceBase.h" }, { "ToolTip", "Base class for all Niagara data interfaces." }, }; #endif const FCppClassTypeInfoStatic Z_Construct_UClass_UNiagaraDataInterfaceBase_Statics::StaticCppClassTypeInfo = { TCppClassTypeTraits<UNiagaraDataInterfaceBase>::IsAbstract, }; const UE4CodeGen_Private::FClassParams Z_Construct_UClass_UNiagaraDataInterfaceBase_Statics::ClassParams = { &UNiagaraDataInterfaceBase::StaticClass, nullptr, &StaticCppClassTypeInfo, DependentSingletons, nullptr, nullptr, nullptr, UE_ARRAY_COUNT(DependentSingletons), 0, 0, 0, 0x001010A1u, METADATA_PARAMS(Z_Construct_UClass_UNiagaraDataInterfaceBase_Statics::Class_MetaDataParams, UE_ARRAY_COUNT(Z_Construct_UClass_UNiagaraDataInterfaceBase_Statics::Class_MetaDataParams)) }; UClass* Z_Construct_UClass_UNiagaraDataInterfaceBase() { static UClass* OuterClass = nullptr; if (!OuterClass) { UE4CodeGen_Private::ConstructUClass(OuterClass, Z_Construct_UClass_UNiagaraDataInterfaceBase_Statics::ClassParams); } return OuterClass; } IMPLEMENT_CLASS(UNiagaraDataInterfaceBase, 142786485); template<> NIAGARACORE_API UClass* StaticClass<UNiagaraDataInterfaceBase>() { return UNiagaraDataInterfaceBase::StaticClass(); } static FCompiledInDefer Z_CompiledInDefer_UClass_UNiagaraDataInterfaceBase(Z_Construct_UClass_UNiagaraDataInterfaceBase, &UNiagaraDataInterfaceBase::StaticClass, TEXT("/Script/NiagaraCore"), TEXT("UNiagaraDataInterfaceBase"), false, nullptr, nullptr, nullptr); DEFINE_VTABLE_PTR_HELPER_CTOR(UNiagaraDataInterfaceBase); PRAGMA_ENABLE_DEPRECATION_WARNINGS #ifdef _MSC_VER #pragma warning (pop) #endif
[ "west.ryan.k@gmail.com" ]
west.ryan.k@gmail.com
53715d69aa7cda18da622bfc7d6c793b0f849cc4
1d9df1156e49f768ed2633641075f4c307d24ad2
/tizen_src/chromium_impl/ui/native_theme/native_theme_tizen_tv.cc
855b09d690ed661ec453219a1e141adcc825ead0
[ "BSD-3-Clause", "LGPL-2.1-or-later", "BSD-2-Clause" ]
permissive
GSIL-Monitor/platform.framework.web.chromium-efl
8056d94301c67a8524f6106482087fd683c889ce
e156100b0c5cfc84c19de612dbdb0987cddf8867
refs/heads/master
2022-10-26T00:23:44.061873
2018-10-30T03:41:51
2018-10-30T03:41:51
161,171,104
0
1
BSD-3-Clause
2022-10-20T23:50:20
2018-12-10T12:24:06
C++
UTF-8
C++
false
false
20,933
cc
// Copyright 2018 Samsung Electronics. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "ui/native_theme/native_theme_tizen_tv.h" #include "base/logging.h" #include "base/memory/ptr_util.h" #include "cc/paint/paint_canvas.h" #include "ui/base/resource/resource_bundle.h" #include "ui/gfx/canvas.h" #include "ui/gfx/geometry/rect.h" #include "ui/gfx/geometry/size.h" #include "ui/gfx/image/image_skia_operations.h" #include "ui/gfx/skbitmap_operations.h" #include "ui/gfx/skia_util.h" #include "ui/native_theme/common_theme.h" #include "ui/native_theme/native_theme_features.h" #include "ui/resources/grit/ui_resources_tizen.h" namespace ui { namespace { const unsigned int kLocationVariation = 3; const unsigned int kSizeVariation = 5; const unsigned int kDefaultScrollbarWidth[] = {15, 54}; const unsigned int kDefaultScrollbarButtonLength[] = {0, 54}; #define VERTICAL_IMAGE_GRID(x) \ { x##_TOP, x##_CENTER, x##_BOTTOM, } #define HORIZONTAL_IMAGE_GRID(x) \ { x##_LEFT, x##_CENTER, x##_RIGHT, } const int kThinVerticalTrackImages[] = VERTICAL_IMAGE_GRID(IDR_TIZEN_THIN_SCROLLBAR_VERTICAL_TRACK); const int kThinVerticalThumbImages[] = VERTICAL_IMAGE_GRID(IDR_TIZEN_THIN_SCROLLBAR_VERTICAL_THUMB); const int kThinHorizontalTrackImages[] = HORIZONTAL_IMAGE_GRID(IDR_TIZEN_THIN_SCROLLBAR_HORIZONTAL_TRACK); const int kThinHorizontalThumbImages[] = HORIZONTAL_IMAGE_GRID(IDR_TIZEN_THIN_SCROLLBAR_HORIZONTAL_THUMB); const int kThickVerticalTrackNormalImages[] = VERTICAL_IMAGE_GRID(IDR_TIZEN_THICK_SCROLLBAR_VERTICAL_TRACK_NORMAL); const int kThickVerticalThumbNormalImages[] = VERTICAL_IMAGE_GRID(IDR_TIZEN_THICK_SCROLLBAR_VERTICAL_THUMB_NORMAL); const int kThickVerticalThumbPressedImages[] = VERTICAL_IMAGE_GRID(IDR_TIZEN_THICK_SCROLLBAR_VERTICAL_THUMB_PRESSED); const int kThickHorizontalTrackNormalImages[] = HORIZONTAL_IMAGE_GRID(IDR_TIZEN_THICK_SCROLLBAR_HORIZONTAL_TRACK_NORMAL); const int kThickHorizontalThumbNormalImages[] = HORIZONTAL_IMAGE_GRID(IDR_TIZEN_THICK_SCROLLBAR_HORIZONTAL_THUMB_NORMAL); const int kThickHorizontalThumbPressedImages[] = HORIZONTAL_IMAGE_GRID(IDR_TIZEN_THICK_SCROLLBAR_HORIZONTAL_THUMB_PRESSED); #undef VERTICAL_IMAGE_GRID #undef HORIZONTAL_IMAGE_GRID bool IsScrollbarPart(NativeTheme::Part part) { switch (part) { case NativeTheme::kScrollbarDownArrow: case NativeTheme::kScrollbarLeftArrow: case NativeTheme::kScrollbarRightArrow: case NativeTheme::kScrollbarUpArrow: case NativeTheme::kScrollbarHorizontalThumb: case NativeTheme::kScrollbarVerticalThumb: case NativeTheme::kScrollbarHorizontalTrack: case NativeTheme::kScrollbarVerticalTrack: return true; default: break; } return false; } NativeTheme::ScrollDirection GetScrollDirection(NativeTheme::Part part) { switch (part) { case NativeTheme::kScrollbarDownArrow: return NativeTheme::kScrollDown; case NativeTheme::kScrollbarLeftArrow: return NativeTheme::kScrollLeft; case NativeTheme::kScrollbarRightArrow: return NativeTheme::kScrollRight; case NativeTheme::kScrollbarUpArrow: return NativeTheme::kScrollUp; default: break; } return NativeTheme::kNumDirections; } const int GetArrowButtonImageIds(NativeTheme::State state) { switch (state) { case NativeTheme::kDisabled: return IDR_TIZEN_THICK_SCROLLBAR_ARROW_BUTTON_DISABLED; case NativeTheme::kNormal: return IDR_TIZEN_THICK_SCROLLBAR_ARROW_BUTTON_NORMAL; case NativeTheme::kHovered: case NativeTheme::kPressed: return IDR_TIZEN_THICK_SCROLLBAR_ARROW_BUTTON_HOVER; default: break; } return 0; } const gfx::ImageSkia GetArrowButtonImage(NativeTheme::ScrollDirection direction, NativeTheme::State state) { ui::ResourceBundle& resource_bundle = ui::ResourceBundle::GetSharedInstance(); const gfx::ImageSkia* base_image = resource_bundle.GetImageSkiaNamed(GetArrowButtonImageIds(state)); if (!base_image) return gfx::ImageSkia(); switch (direction) { case NativeTheme::kScrollUp: { return *base_image; } case NativeTheme::kScrollRight: { return gfx::ImageSkiaOperations::CreateRotatedImage( *base_image, SkBitmapOperations::ROTATION_90_CW); } case NativeTheme::kScrollDown: { return gfx::ImageSkiaOperations::CreateRotatedImage( *base_image, SkBitmapOperations::ROTATION_180_CW); } case NativeTheme::kScrollLeft: { return gfx::ImageSkiaOperations::CreateRotatedImage( *base_image, SkBitmapOperations::ROTATION_270_CW); } default: break; } return gfx::ImageSkia(); } const int* GetPartImageIds(bool is_thin_scrollbar, NativeTheme::Part part, NativeTheme::State state, size_t* num) { DCHECK(num); *num = 3; switch (state) { case NativeTheme::kDisabled: case NativeTheme::kNormal: case NativeTheme::kHovered: { switch (part) { case NativeTheme::kScrollbarVerticalTrack: return (is_thin_scrollbar ? kThinVerticalTrackImages : kThickVerticalTrackNormalImages); case NativeTheme::kScrollbarHorizontalTrack: return (is_thin_scrollbar ? kThinHorizontalTrackImages : kThickHorizontalTrackNormalImages); case NativeTheme::kScrollbarVerticalThumb: return (is_thin_scrollbar ? kThinVerticalThumbImages : kThickVerticalThumbNormalImages); case NativeTheme::kScrollbarHorizontalThumb: return (is_thin_scrollbar ? kThinHorizontalThumbImages : kThickHorizontalThumbNormalImages); default: break; } break; } case NativeTheme::kPressed: { switch (part) { case NativeTheme::kScrollbarVerticalTrack: return (is_thin_scrollbar ? kThinVerticalTrackImages : kThickVerticalTrackNormalImages); case NativeTheme::kScrollbarHorizontalTrack: return (is_thin_scrollbar ? kThinHorizontalTrackImages : kThickHorizontalTrackNormalImages); case NativeTheme::kScrollbarVerticalThumb: return (is_thin_scrollbar ? kThinVerticalThumbImages : kThickVerticalThumbPressedImages); case NativeTheme::kScrollbarHorizontalThumb: return (is_thin_scrollbar ? kThinHorizontalThumbImages : kThickHorizontalThumbPressedImages); default: break; } break; } default: break; } return nullptr; } std::vector<const gfx::ImageSkia*> GetPartImage(bool is_small, NativeTheme::Part part, NativeTheme::State state) { size_t num_ids = 0; const int* ids = GetPartImageIds(is_small, part, state, &num_ids); if (!ids) return std::vector<const gfx::ImageSkia*>(); std::vector<const gfx::ImageSkia*> images; images.reserve(num_ids); ui::ResourceBundle& resource_bundle = ui::ResourceBundle::GetSharedInstance(); for (size_t i = 0; i < num_ids; i++) images.push_back(resource_bundle.GetImageSkiaNamed(ids[i])); return images; } void PaintImagesVertically(gfx::Canvas* canvas, const gfx::ImageSkia& top_image, const gfx::ImageSkia& center_image, const gfx::ImageSkia& bottom_image, const gfx::Rect& rect) { canvas->DrawImageInt(top_image, 0, 0, top_image.width(), top_image.height(), rect.x(), rect.y(), rect.width(), top_image.height(), false); int y = rect.y() + top_image.height(); const int center_height = rect.height() - top_image.height() - bottom_image.height(); canvas->DrawImageInt(center_image, 0, 0, center_image.width(), center_image.height(), rect.x(), y, rect.width(), center_height, false); y += center_height; canvas->DrawImageInt(bottom_image, 0, 0, bottom_image.width(), bottom_image.height(), rect.x(), y, rect.width(), bottom_image.height(), false); } void PaintImagesHorizontally(gfx::Canvas* canvas, const gfx::ImageSkia& left_image, const gfx::ImageSkia& center_image, const gfx::ImageSkia& right_image, const gfx::Rect& rect) { canvas->DrawImageInt(left_image, 0, 0, left_image.width(), left_image.height(), rect.x(), rect.y(), left_image.width(), rect.height(), false); int x = rect.x() + left_image.width(); const int center_width = rect.width() - left_image.width() - right_image.width(); canvas->DrawImageInt(center_image, 0, 0, center_image.width(), center_image.height(), x, rect.y(), center_width, rect.height(), false); x += center_width; canvas->DrawImageInt(right_image, 0, 0, right_image.width(), right_image.height(), x, rect.y(), right_image.width(), rect.height(), false); } // Creates a gfx::Canvas wrapping an cc::PaintCanvas. std::unique_ptr<gfx::Canvas> CommonThemeCreateCanvas(cc::PaintCanvas* canvas) { SkMatrix matrix = canvas->getTotalMatrix(); float device_scale = static_cast<float>(SkScalarAbs(matrix.getScaleX())); return base::WrapUnique(new gfx::Canvas(canvas, device_scale)); } } // namespace // static NativeTheme* NativeTheme::GetInstanceForWeb() { if (IsNativeScrollbarEnabled()) return NativeThemeTizenTV::web_instance(); return NativeThemeAura::web_instance(); } // static NativeThemeTizenTV* NativeThemeTizenTV::web_instance() { CR_DEFINE_STATIC_LOCAL(NativeThemeTizenTV, s_native_theme_for_web, ()); return &s_native_theme_for_web; } NativeThemeTizenTV::NativeThemeTizenTV() : NativeThemeAura(IsOverlayScrollbarEnabled()) { const State states[] = { State::kDisabled, State::kHovered, State::kNormal, State::kPressed, }; const ScrollbarType types[] = { ScrollbarType::kThinScrollbar, ScrollbarType::kThickScrollbar, }; const ScrollDirection directions[] = { ScrollDirection::kScrollUp, ScrollDirection::kScrollRight, ScrollDirection::kScrollDown, ScrollDirection::kScrollLeft, }; for (size_t i = 0; i < arraysize(states); i++) { State state = states[i]; for (size_t j = 0; j < arraysize(types); j++) { ScrollbarType type = types[j]; bool is_thin_scrollbar = (type == kThinScrollbar); track_vertical_images_[type][state] = GetPartImage(is_thin_scrollbar, kScrollbarVerticalTrack, state); track_horizontal_images_[type][state] = GetPartImage(is_thin_scrollbar, kScrollbarHorizontalTrack, state); thumb_vertical_images_[type][state] = GetPartImage(is_thin_scrollbar, kScrollbarVerticalThumb, state); thumb_horizontal_images_[type][state] = GetPartImage(is_thin_scrollbar, kScrollbarHorizontalThumb, state); } for (size_t k = 0; k < arraysize(directions); k++) { ScrollDirection direction = directions[k]; arrow_button_images_[direction][state] = GetArrowButtonImage(direction, state); } } } NativeThemeTizenTV::~NativeThemeTizenTV() {} gfx::Size NativeThemeTizenTV::GetPartSize(Part part, State state, const ExtraParams& extra) const { if (!IsScrollbarPart(part) || !IsNativeScrollbarEnabled()) return NativeThemeAura::GetPartSize(part, state, extra); ScrollbarType type = extra.scrollbar_type.is_thin_scrollbar ? kThinScrollbar : kThickScrollbar; int scrollbar_width = kDefaultScrollbarWidth[type]; int scrollbar_button_length = kDefaultScrollbarButtonLength[type]; switch (part) { case kScrollbarDownArrow: case kScrollbarUpArrow: return gfx::Size(scrollbar_width, scrollbar_button_length); case kScrollbarLeftArrow: case kScrollbarRightArrow: return gfx::Size(scrollbar_button_length, scrollbar_width); case kScrollbarHorizontalThumb: return gfx::Size(2 * scrollbar_width, scrollbar_width); case kScrollbarVerticalThumb: return gfx::Size(scrollbar_width, 2 * scrollbar_width); case kScrollbarHorizontalTrack: return gfx::Size(0, scrollbar_width); case kScrollbarVerticalTrack: return gfx::Size(scrollbar_width, 0); default: break; } return gfx::Size(); } void NativeThemeTizenTV::Paint(cc::PaintCanvas* canvas, Part part, State state, const gfx::Rect& rect, const ExtraParams& extra) const { if (rect.IsEmpty()) return; if (IsScrollbarPart(part) && IsNativeScrollbarEnabled()) { switch (part) { case kScrollbarDownArrow: case kScrollbarUpArrow: case kScrollbarLeftArrow: case kScrollbarRightArrow: PaintArrowButtonWithExtraParams(canvas, part, state, rect, extra.scrollbar_type); return; case kScrollbarHorizontalThumb: case kScrollbarVerticalThumb: PaintScrollbarThumbWithExtraParams(canvas, part, state, rect, extra.scrollbar_type); return; case kScrollbarHorizontalTrack: case kScrollbarVerticalTrack: PaintScrollbarTrackWithExtraParams(canvas, part, state, rect, extra.scrollbar_track, extra.scrollbar_type); return; default: break; } } NativeThemeBase::Paint(canvas, part, state, rect, extra); } void NativeThemeTizenTV::PaintArrowButtonBackgroundWithExtraParams( cc::PaintCanvas* paint_canvas, Part part, State state, const gfx::Rect& rect, const ScrollbarTypeExtraParams& extra) const { std::unique_ptr<gfx::Canvas> canvas(CommonThemeCreateCanvas(paint_canvas)); ScrollbarType type = extra.is_thin_scrollbar ? kThinScrollbar : kThickScrollbar; switch (part) { case kScrollbarDownArrow: case kScrollbarUpArrow: { const std::vector<const gfx::ImageSkia*>& track_vertical_images = track_vertical_images_[type][state]; if (part == kScrollbarDownArrow) { PaintImagesVertically(canvas.get(), *track_vertical_images[kVerticalCenter], *track_vertical_images[kVerticalCenter], *track_vertical_images[kVerticalBottom], rect); break; } // kScrollbarUpArrow PaintImagesVertically(canvas.get(), *track_vertical_images[kVerticalTop], *track_vertical_images[kVerticalCenter], *track_vertical_images[kVerticalCenter], rect); break; } case kScrollbarLeftArrow: case kScrollbarRightArrow: { const std::vector<const gfx::ImageSkia*>& track_horizontal_images = track_horizontal_images_[type][state]; if (part == kScrollbarLeftArrow) { PaintImagesHorizontally( canvas.get(), *track_horizontal_images[kHorizontalLeft], *track_horizontal_images[kHorizontalCenter], *track_horizontal_images[kHorizontalCenter], rect); break; } // kScrollbarRightArrow PaintImagesHorizontally(canvas.get(), *track_horizontal_images[kHorizontalCenter], *track_horizontal_images[kHorizontalCenter], *track_horizontal_images[kHorizontalRight], rect); break; } default: break; } } void NativeThemeTizenTV::PaintArrowButtonWithExtraParams( cc::PaintCanvas* paint_canvas, Part part, State state, const gfx::Rect& rect, const ScrollbarTypeExtraParams& extra) const { PaintArrowButtonBackgroundWithExtraParams(paint_canvas, part, state, rect, extra); ScrollDirection direction = GetScrollDirection(part); if (direction == kNumDirections) return; const gfx::ImageSkia arrow_button_image = arrow_button_images_[direction][state]; std::unique_ptr<gfx::Canvas> canvas(CommonThemeCreateCanvas(paint_canvas)); canvas->DrawImageInt(arrow_button_image, 0, 0, arrow_button_image.width(), arrow_button_image.height(), rect.x(), rect.y(), rect.width(), rect.height(), false); } void NativeThemeTizenTV::PaintScrollbarTrackWithExtraParams( cc::PaintCanvas* paint_canvas, Part part, State state, const gfx::Rect& rect, const ScrollbarTrackExtraParams& extra_params, const ScrollbarTypeExtraParams& extra) const { ScrollbarType type = extra.is_thin_scrollbar ? kThinScrollbar : kThickScrollbar; std::unique_ptr<gfx::Canvas> canvas(CommonThemeCreateCanvas(paint_canvas)); if (part == kScrollbarVerticalTrack) { const std::vector<const gfx::ImageSkia*>& track_vertical_images = track_vertical_images_[type][state]; if (type == kThickScrollbar) { // The thickScrollbar has buttons. // Top and bottom track will be painted when painting arrow buttons. PaintImagesVertically(canvas.get(), *track_vertical_images[kVerticalCenter], *track_vertical_images[kVerticalCenter], *track_vertical_images[kVerticalCenter], rect); return; } // kThinScrollbar PaintImagesVertically(canvas.get(), *track_vertical_images[kVerticalTop], *track_vertical_images[kVerticalCenter], *track_vertical_images[kVerticalBottom], rect); return; } // kScrollbarHorizontalTrack const std::vector<const gfx::ImageSkia*>& track_horizontal_images = track_horizontal_images_[type][state]; if (type == kThickScrollbar) { // The thickScrollbar has buttons. // Left and right track will be painted when painting arrow buttons. PaintImagesHorizontally(canvas.get(), *track_horizontal_images[kHorizontalCenter], *track_horizontal_images[kHorizontalCenter], *track_horizontal_images[kHorizontalCenter], rect); return; } // kThinScrollbar PaintImagesHorizontally(canvas.get(), *track_horizontal_images[kHorizontalLeft], *track_horizontal_images[kHorizontalCenter], *track_horizontal_images[kHorizontalRight], rect); } void NativeThemeTizenTV::PaintScrollbarThumbWithExtraParams( cc::PaintCanvas* paint_canvas, Part part, State state, const gfx::Rect& rect, const ScrollbarTypeExtraParams& extra) const { ScrollbarType type = extra.is_thin_scrollbar ? kThinScrollbar : kThickScrollbar; gfx::Rect adjusted_rect = gfx::Rect(rect.x() + kLocationVariation, rect.y() + kLocationVariation, rect.width() - kSizeVariation, rect.height() - kSizeVariation); std::unique_ptr<gfx::Canvas> canvas(CommonThemeCreateCanvas(paint_canvas)); if (part == kScrollbarVerticalThumb) { const std::vector<const gfx::ImageSkia*>& thumb_vertical_images = thumb_vertical_images_[type][state]; PaintImagesVertically(canvas.get(), *thumb_vertical_images[kVerticalTop], *thumb_vertical_images[kVerticalCenter], *thumb_vertical_images[kVerticalBottom], adjusted_rect); return; } // kScrollbarHorizontalThumb const std::vector<const gfx::ImageSkia*>& thumb_horizontal_images = thumb_horizontal_images_[type][state]; PaintImagesHorizontally( canvas.get(), *thumb_horizontal_images[kHorizontalLeft], *thumb_horizontal_images[kHorizontalCenter], *thumb_horizontal_images[kHorizontalRight], adjusted_rect); } void NativeThemeTizenTV::PaintScrollbarCorner(cc::PaintCanvas* paint_canvas, State state, const gfx::Rect& rect) const { cc::PaintFlags paint; paint.setColor(SkColorSetRGB(0xFF, 0xFF, 0xFF)); paint.setStyle(cc::PaintFlags::kFill_Style); paint.setBlendMode(SkBlendMode::kSrc); paint_canvas->drawIRect(RectToSkIRect(rect), paint); } } // namespace ui
[ "RetZero@desktop" ]
RetZero@desktop
495ff0f7e95bb83bd31e86783adeea489f9618a5
5298470d94d0f99761e3a6fc5888ca1ae055d5d9
/AirSurfer/Library/Il2cppBuildCache/Android/armeabi-v7a/il2cppOutput/System1.cpp
042df84e51423dfe64ad9252f9a07b5739e5339d
[]
no_license
MosesAdamu/AlheriGames_DodgeSphere_08-07-2021_Crazylabs
d33a4157fb20115d714ee947bb389055d369c7ae
5543696277566e991db24236d84c5718db4ba655
refs/heads/main
2023-06-01T00:50:17.558322
2021-07-09T03:27:21
2021-07-09T03:27:21
384,291,379
0
0
null
null
null
null
UTF-8
C++
false
false
1,728,457
cpp
#include "pch-cpp.hpp" #ifndef _MSC_VER # include <alloca.h> #else # include <malloc.h> #endif #include <limits> #include <stdint.h> #include "icalls/System/System.Net.Sockets/SocketException.h" #include "icalls/System/System.Diagnostics/Stopwatch.h" template <typename R, typename T1> struct VirtFuncInvoker1 { typedef R (*Func)(void*, T1, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method); } }; template <typename 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> struct VirtFuncInvoker0 { typedef R (*Func)(void*, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); return ((Func)invokeData.methodPtr)(obj, invokeData.method); } }; struct VirtActionInvoker0 { typedef void (*Action)(void*, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); ((Action)invokeData.methodPtr)(obj, invokeData.method); } }; template <typename T1, typename T2, typename T3, typename T4, typename T5> struct VirtActionInvoker5 { typedef void (*Action)(void*, T1, T2, T3, T4, T5, const RuntimeMethod*); static inline void 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); ((Action)invokeData.methodPtr)(obj, p1, p2, p3, p4, p5, invokeData.method); } }; template <typename T1> struct VirtActionInvoker1 { typedef void (*Action)(void*, T1, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); ((Action)invokeData.methodPtr)(obj, p1, invokeData.method); } }; template <typename T1, typename T2, typename T3> struct VirtActionInvoker3 { typedef void (*Action)(void*, T1, T2, T3, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); ((Action)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method); } }; template <typename R> struct InterfaceFuncInvoker0 { typedef R (*Func)(void*, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); return ((Func)invokeData.methodPtr)(obj, invokeData.method); } }; // System.Collections.Generic.Comparer`1<System.Int32> struct Comparer_1_t3E3093220DB5D33A829C91C1DFDBDE2F42ECEDC7; // System.Collections.Generic.Dictionary`2<System.Int32,System.Globalization.CultureInfo> struct Dictionary_2_t5B8303F2C9869A39ED3E03C0FBB09F817E479402; // System.Collections.Generic.Dictionary`2<System.Int32,System.String> struct Dictionary_2_t0ACB62D0885C7AB376463C70665400A39808C5FB; // System.Collections.Generic.Dictionary`2<System.Object,System.Int32> struct Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8; // System.Collections.Generic.Dictionary`2<System.String,System.Globalization.CultureInfo> struct Dictionary_2_t0015CBF964B0687CBB5ECFDDE06671A8F3DDE4BC; // System.Collections.Generic.Dictionary`2<System.String,System.Int32> struct Dictionary_2_tC94E9875910491F8130C2DC8B11E4D1548A55162; // System.Collections.Generic.Dictionary`2<System.String,System.String> struct Dictionary_2_tDE3227CA5E7A32F5070BD24C69F42204A3ADE9D5; // System.Collections.Generic.Dictionary`2<System.String,System.UriParser> struct Dictionary_2_t29257EB2565DDF3180663167EF129FA9827836C5; // System.Collections.Generic.IComparer`1<System.Int32> struct IComparer_1_t150A86695C404E117B1B644BEAD79BA2344FB009; // System.Collections.Generic.IEnumerable`1<System.Object> struct IEnumerable_1_t52B1AC8D9E5E1ED28DF6C46A37C9A1B00B394F9D; // System.Collections.Generic.IEnumerable`1<System.Text.RegularExpressions.RegexNode> struct IEnumerable_1_t3DFBA505DFDD601AEA662D5C3B44C1C261CA115C; // System.Collections.Generic.IEqualityComparer`1<System.String> struct IEqualityComparer_1_tE6A65C5E45E33FD7D9849FD0914DE3AD32B68050; // System.Collections.Generic.Dictionary`2/KeyCollection<System.String,System.Int32> struct KeyCollection_t61F8738ED346768CC112B2E27863BF9F73C76D90; // System.Collections.Generic.LinkedList`1<System.Text.RegularExpressions.CachedCodeEntry> struct LinkedList_1_t0AD3FC1D19E68F4B148AFF908DC3719C9B117D92; // System.Collections.Generic.List`1<System.Int32Enum> struct List_1_tD9A0DAE3CF1F9450036B041168264AE0CEF1737A; // System.Collections.Generic.List`1<System.Object> struct List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5; // System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexNode> struct List_1_t692D260BEBA1E69864C98DEEDB3E9256C38CD9B9; // System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexOptions> struct List_1_tE931333A40AB4E57F72E00F9F23D19057C78120A; // System.Collections.Generic.List`1<System.String> struct List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3; // System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexCharClass/SingleRange> struct List_1_t911C56B32435E07F3A1F3B9FB9BFF36061619CF3; // System.Collections.Generic.Dictionary`2/ValueCollection<System.String,System.Int32> struct ValueCollection_t17EEB7B2EDD3CB5222C660D7E739F803986BF025; // System.Collections.Generic.Dictionary`2/Entry<System.String,System.Int32>[] struct EntryU5BU5D_tABFC31237D6642B5D4C1DBA234CA37EE851EB0AE; // System.Int32[][] struct Int32U5BU5DU5BU5D_t104DBF1B996084AA19567FD32B02EDF88D044FAF; // System.Byte[] struct ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726; // System.Char[] struct CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34; // System.Int32[] struct Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32; // System.Int32Enum[] struct Int32EnumU5BU5D_t9327F857579EE00EB201E1913599094BF837D3CD; // System.IntPtr[] struct IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6; // System.Object[] struct ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE; // System.Text.RegularExpressions.RegexFC[] struct RegexFCU5BU5D_t2785114C5B0BD79CA8B9C2715A5368BDC5941356; // System.Text.RegularExpressions.RegexNode[] struct RegexNodeU5BU5D_tDCE5A1DFD56515BBA16233216439F0948F453056; // System.Text.RegularExpressions.RegexOptions[] struct RegexOptionsU5BU5D_t7331675FC2B3783AD45B7A664FB7365174D43C67; // System.Diagnostics.StackTrace[] struct StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971; // System.String[] struct StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A; // System.Type[] struct TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755; // System.Collections.Hashtable/bucket[] struct bucketU5BU5D_tFE956DAEFB1D1C86A13EF247D7367BF60B55E190; // System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping[] struct LowerCaseMappingU5BU5D_t4D85AEF6C1007D3CCE150AE32CBAACDBF218293E; // System.String[0...,0...] struct StringU5BU2CU5D_t57ABDCA8B352E243BFC6950153456ACCEF63DC90; // System.ArgumentException struct ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00; // System.ArgumentNullException struct ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB; // System.ArgumentOutOfRangeException struct ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8; // System.Attribute struct Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71; // System.ComponentModel.BaseNumberConverter struct BaseNumberConverter_t6CA2001CE79249FCF74FC888710AAD5CA23B748C; // System.Reflection.Binder struct Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30; // System.Globalization.Calendar struct Calendar_t3D638AEAB45F029DF47138EDA4CF9A7CBBB1C32A; // System.Globalization.CompareInfo struct CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9; // System.Configuration.ConfigurationPropertyCollection struct ConfigurationPropertyCollection_t8C098DB59DF7BA2C2A71369978F4225B92B2F59B; // System.Globalization.CultureData struct CultureData_t53CDF1C5F789A28897415891667799420D3C5529; // System.Globalization.CultureInfo struct CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98; // System.Globalization.DateTimeFormatInfo struct DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90; // System.Net.EndPoint struct EndPoint_t18D4AE8D03090A2B262136E59F95CE61418C34DA; // System.Exception struct Exception_t; // System.Text.RegularExpressions.ExclusiveReference struct ExclusiveReference_t7F4A5D2416EA34710F520BAD225E61BC1E98D1D8; // System.Collections.Hashtable struct Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC; // System.Collections.ICollection struct ICollection_tC1E1DED86C0A66845675392606B302452210D5DA; // System.Collections.IDictionary struct IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A; // System.Collections.IEqualityComparer struct IEqualityComparer_t6C4C1F04B21BDE1E4B84BD6EC7DE494C186D6C68; // System.IFormatProvider struct IFormatProvider_tF2AECC4B14F41D36718920D67F930CED940412DF; // System.Runtime.Serialization.IFormatterConverter struct IFormatterConverter_t2A667D8777429024D8A3CB3D9AE29EA79FEA6176; // System.InvalidOperationException struct InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB; // System.Text.RegularExpressions.Match struct Match_t8CC0A47F766954F17AD4D1C1597754C8F576464B; // System.Text.RegularExpressions.MatchSparse struct MatchSparse_tF4A7983ADA82DB12269F4D384E7C2D15F0D32694; // System.Reflection.MemberFilter struct MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81; // System.NotImplementedException struct NotImplementedException_t26260C4EE0444C5FA022994203060B3A42A3ADE6; // System.Globalization.NumberFormatInfo struct NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D; // System.PlatformNotSupportedException struct PlatformNotSupportedException_t4F02BDC290520CA1A2452F51A8AC464F6D5E356E; // System.Text.RegularExpressions.Regex struct Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F; // System.Text.RegularExpressions.RegexBoyerMoore struct RegexBoyerMoore_t43FE488EFF3EE20D1092216B7E62D954F78167D2; // System.Text.RegularExpressions.RegexCharClass struct RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5; // System.Text.RegularExpressions.RegexCode struct RegexCode_tF1653432E8EEDED5AB9517D09CA84B5FAA3CC0D5; // System.Text.RegularExpressions.RegexFC struct RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826; // System.Text.RegularExpressions.RegexFCD struct RegexFCD_tF50EFB93429390CF2488DAB5FD07DE6E48F1CDBF; // System.Text.RegularExpressions.RegexInterpreter struct RegexInterpreter_tF3C74D72240962B960AE4D39D9CF1632C9C2982E; // System.Text.RegularExpressions.RegexMatchTimeoutException struct RegexMatchTimeoutException_t8A80CA43E67CFD00C11CD0B4D65E08171577AB81; // System.Text.RegularExpressions.RegexNode struct RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43; // System.Text.RegularExpressions.RegexParser struct RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9; // System.Text.RegularExpressions.RegexPrefix struct RegexPrefix_t1563C82A76799B0B018F5EBD6EC068158BE50301; // System.Text.RegularExpressions.RegexRunner struct RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934; // System.Text.RegularExpressions.RegexRunnerFactory struct RegexRunnerFactory_tA425EC5DC77FC0AAD86EB116E5483E94679CAA96; // System.Text.RegularExpressions.RegexTree struct RegexTree_t63A434601D42EC388D9B2DCA2913286CFC8811F3; // System.Text.RegularExpressions.RegexWriter struct RegexWriter_t958027B0548A09589F03657633037085BACFC7B5; // System.Runtime.Serialization.SafeSerializationManager struct SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F; // System.Runtime.Serialization.SerializationInfo struct SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1; // System.Net.Configuration.ServicePointManagerElement struct ServicePointManagerElement_tBDFCD14FA5A9ABB1BE70A69621349A23B402989C; // System.Net.Configuration.SettingsSection struct SettingsSection_t711E6C3A32C96E69BF15E02FF55E58AF33EB95EB; // System.Text.RegularExpressions.SharedReference struct SharedReference_t74AB40C102A76A7523C72269A49D2C8FBDD83926; // System.ComponentModel.SingleConverter struct SingleConverter_t75FCE834B5B2A74CB252021292C9DC205B322391; // System.Net.Configuration.SocketElement struct SocketElement_t3A1494C40F44B3BE110D39607B00AE67C9962450; // System.Net.Sockets.SocketException struct SocketException_tB04D4347A4A41DC1A8583BBAE5A7C990F78C1E88; // System.Diagnostics.Stopwatch struct Stopwatch_t78C5E942A89311381E0D8894576457C33462DF89; // System.String struct String_t; // System.Text.StringBuilder struct StringBuilder_t; // System.StringComparer struct StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6; // System.ComponentModel.StringConverter struct StringConverter_tEC598B89E55C16F1669CFBC98F5C2308E2F232E5; // System.Globalization.TextInfo struct TextInfo_tE823D0684BFE8B203501C9B2B38585E8F06E872C; // System.ComponentModel.TimeSpanConverter struct TimeSpanConverter_t5F2498D1A18C834B1F4B9E7A3CF59069D2B72D2E; // System.TimeoutException struct TimeoutException_tB5D0EEFAEC3FC79FFDEF23C55D1BDF4DE347C926; // System.Type struct Type_t; // System.ComponentModel.TypeConverter struct TypeConverter_t004F185B630F00F509F08BD8F8D82471867323B4; // System.ComponentModel.TypeConverterAttribute struct TypeConverterAttribute_t2C9750F302F83A7710D031C00A7CEBDA8F0C3F83; // System.Uri struct Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612; // System.UriFormatException struct UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D; // System.UriParser struct UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A; // System.Void struct Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5; // System.WeakReference struct WeakReference_tB8558D16C98417FD98C920C42C0CC5C9FF825C76; // System.ComponentModel.Win32Exception struct Win32Exception_t4B7A329153AA0E88CA08533EFB6DB2F2A8E90950; // System.Uri/MoreInfo struct MoreInfo_t15D42286ECE8DAD0B0FE9CDC1291109300C3E727; // System.Uri/UriInfo struct UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45; IL2CPP_EXTERN_C RuntimeClass* ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Convert_tDA947A979C1DAB4F09C461FAFD94FE194743A671_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_tC94E9875910491F8130C2DC8B11E4D1548A55162_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IDictionaryEnumerator_t8A89A8564EADF5FFB8494092DFED7D7C063F1501_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* List_1_t692D260BEBA1E69864C98DEEDB3E9256C38CD9B9_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* List_1_tE931333A40AB4E57F72E00F9F23D19057C78120A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* MatchSparse_tF4A7983ADA82DB12269F4D384E7C2D15F0D32694_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Match_t8CC0A47F766954F17AD4D1C1597754C8F576464B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* MoreInfo_t15D42286ECE8DAD0B0FE9CDC1291109300C3E727_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* NotImplementedException_t26260C4EE0444C5FA022994203060B3A42A3ADE6_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Path_tF1D95B78D57C1C1211BA6633FF2AC22FD6C48921_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* PlatformNotSupportedException_t4F02BDC290520CA1A2452F51A8AC464F6D5E356E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* RegexBoyerMoore_t43FE488EFF3EE20D1092216B7E62D954F78167D2_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* RegexCode_tF1653432E8EEDED5AB9517D09CA84B5FAA3CC0D5_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* RegexFCD_tF50EFB93429390CF2488DAB5FD07DE6E48F1CDBF_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* RegexFCU5BU5D_t2785114C5B0BD79CA8B9C2715A5368BDC5941356_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* RegexMatchTimeoutException_t8A80CA43E67CFD00C11CD0B4D65E08171577AB81_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* RegexPrefix_t1563C82A76799B0B018F5EBD6EC068158BE50301_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* RegexTree_t63A434601D42EC388D9B2DCA2913286CFC8811F3_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* RegexWriter_t958027B0548A09589F03657633037085BACFC7B5_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* RuntimeObject_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Stopwatch_t78C5E942A89311381E0D8894576457C33462DF89_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* StringBuilder_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* String_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* TypeConverterAttribute_t2C9750F302F83A7710D031C00A7CEBDA8F0C3F83_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* UriComponents_tA599793722A9810EC23036FF1B1B02A905B4EA76_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* UriHelper_tBEFC75B3A4E9E35CB41ADAAE22E0D1D7EE65E53D_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* UriKind_tFC16ACC1842283AAE2C7F50C9C70EFBF6550B3FC_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* WeakReference_tB8558D16C98417FD98C920C42C0CC5C9FF825C76_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Win32Exception_t4B7A329153AA0E88CA08533EFB6DB2F2A8E90950_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t1267FAF6E08D720F26ABF676554E6948A7F6A2D0____C02C28AFEBE998F767E4AF43E3BE8F5E9FA11536_1_FieldInfo_var; IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t1267FAF6E08D720F26ABF676554E6948A7F6A2D0____CCEEADA43268372341F81AE0C9208C6856441C04_2_FieldInfo_var; IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_t1267FAF6E08D720F26ABF676554E6948A7F6A2D0____E5BC1BAFADE1862DD6E0B9FB632BFAA6C3873A78_3_FieldInfo_var; IL2CPP_EXTERN_C String_t* _stringLiteral02158C33AAFC69461998755D511D2DD0C9BDBB59; IL2CPP_EXTERN_C String_t* _stringLiteral072B29D72AC26D4E83A32232DF8E415C5151E9AA; IL2CPP_EXTERN_C String_t* _stringLiteral07B71A0735C0A5FDC2E73979B95958D40F06AE42; IL2CPP_EXTERN_C String_t* _stringLiteral0D714861C7EC595B0F134B25D51B6C3D17B97BE7; IL2CPP_EXTERN_C String_t* _stringLiteral0E8F17848F8DAE538C88CDDFEC4E7F9563C3E01D; IL2CPP_EXTERN_C String_t* _stringLiteral0ECCA26D6E6512BFFD6AC0372868F35B289A0AC9; IL2CPP_EXTERN_C String_t* _stringLiteral0F38A3747C9E3CBF705A8434CE244793402F5BDA; IL2CPP_EXTERN_C String_t* _stringLiteral10967EC4A6C481862CE1D9E400B88D2400A58495; IL2CPP_EXTERN_C String_t* _stringLiteral17B277DD41310C7E909CF67339B1A07AB6FEC59A; IL2CPP_EXTERN_C String_t* _stringLiteral19A73218F14885E4C839EDA68A1C1C791F7745AA; IL2CPP_EXTERN_C String_t* _stringLiteral1A521FB9CB5DD09DAE84196DD4656194D3654284; IL2CPP_EXTERN_C String_t* _stringLiteral2323F684C49416D2AA1F6FFAE52BA830E63326E0; IL2CPP_EXTERN_C String_t* _stringLiteral2386E77CF610F786B06A91AF2C1B3FD2282D2745; IL2CPP_EXTERN_C String_t* _stringLiteral24E3F48402E3AE0939BE896FBDE3DE4520C9893D; IL2CPP_EXTERN_C String_t* _stringLiteral2548827C46E1449217FD7CD3DA9F653E7BC05534; IL2CPP_EXTERN_C String_t* _stringLiteral2659A93A14DB81D09000B3E98CBB7FBD3940D067; IL2CPP_EXTERN_C String_t* _stringLiteral279EA60C732ADCA7403A83C01015BDFB2C45ECA3; IL2CPP_EXTERN_C String_t* _stringLiteral29A5AED1D4EB99A01F98E33F896B7B911D6BBD64; IL2CPP_EXTERN_C String_t* _stringLiteral2E203410EDD156CA82D74FCDDE8C2C9EB635FE18; IL2CPP_EXTERN_C String_t* _stringLiteral326FE389E7BF8CF01EAC82490F9CDC8DC7132486; IL2CPP_EXTERN_C String_t* _stringLiteral4713250C292B59C6AAA9A7591D3BB43ABA0A26E9; IL2CPP_EXTERN_C String_t* _stringLiteral491588DC50F24F885876BF828F202716C7BE3803; IL2CPP_EXTERN_C String_t* _stringLiteral4FB7CA16AB7B5A4F956554894A7222DF13F448AA; IL2CPP_EXTERN_C String_t* _stringLiteral550F25B04630B43CAFD4000E36451B35C1CFA209; IL2CPP_EXTERN_C String_t* _stringLiteral595EFF1BB2D726958ED623D9B54803E9AA2A0C84; IL2CPP_EXTERN_C String_t* _stringLiteral5A958635C67952829AC7E2FD5FB3A2C8DB51121E; IL2CPP_EXTERN_C String_t* _stringLiteral5CC823378CCA508A81792DDC107D7253062D4F0D; IL2CPP_EXTERN_C String_t* _stringLiteral5D3712231996A1C41EDA4CA1C12669294FE63D36; IL2CPP_EXTERN_C String_t* _stringLiteral604AF3FD45B5D6527E77C100038873C29E8B4D49; IL2CPP_EXTERN_C String_t* _stringLiteral659F36F170A47067B1A80CD9B6619237197BD872; IL2CPP_EXTERN_C String_t* _stringLiteral6A1D52382547009AB732F651FE2CA42F1BBA769A; IL2CPP_EXTERN_C String_t* _stringLiteral6B01510C7FE3BE78C37C67074A3C785D52F1841F; IL2CPP_EXTERN_C String_t* _stringLiteral6D153343DC0552ABAFC2B893F453DC72854A37BE; IL2CPP_EXTERN_C String_t* _stringLiteral709116FAB4B1CFB8E839AF216932137595A1C356; IL2CPP_EXTERN_C String_t* _stringLiteral73310BF59DB8CA3EB79CF1E70A2DA4C61E0E5228; IL2CPP_EXTERN_C String_t* _stringLiteral75C9716749EA210206E3467390B7A11F3F33DDFA; IL2CPP_EXTERN_C String_t* _stringLiteral778DFAE29C280DA8F24CB36747AB3656B8220A6F; IL2CPP_EXTERN_C String_t* _stringLiteral77D38C0623F92B292B925F6E72CF5CF99A20D4EB; IL2CPP_EXTERN_C String_t* _stringLiteral7D9371213C85404B41C69E8C41C1114818C7F4BF; IL2CPP_EXTERN_C String_t* _stringLiteral7E47B8E4D552470F6D8FD78693F09EA115DA32BE; IL2CPP_EXTERN_C String_t* _stringLiteral82F0E6BA3FD6F5AA7F9F5A798046A3B615F6D560; IL2CPP_EXTERN_C String_t* _stringLiteral876C4B39B6E4D0187090400768899C71D99DE90D; IL2CPP_EXTERN_C String_t* _stringLiteral8965AF17E4B7413549B839F616B223F608E66E85; IL2CPP_EXTERN_C String_t* _stringLiteral8D5175625BAB03B34DC7A7254E3934B27037B660; IL2CPP_EXTERN_C String_t* _stringLiteral8E245319796EC99EDC6311A6DC461759FB1FB7FD; IL2CPP_EXTERN_C String_t* _stringLiteral9221F17704D6D74502888C4875A2FD2E60E87766; IL2CPP_EXTERN_C String_t* _stringLiteral9C3D04385AD6997A289AF27CABA813829BDB3298; IL2CPP_EXTERN_C String_t* _stringLiteralA0FE8F62F371A375A76A413416F3EF55C050A182; IL2CPP_EXTERN_C String_t* _stringLiteralA90BAB5A63B270956DEBA545BAA7334EFC8F50E2; IL2CPP_EXTERN_C String_t* _stringLiteralB70DFAAAD0ABCCD469EB8575DD6833C88CC374B5; IL2CPP_EXTERN_C String_t* _stringLiteralB7C45DD316C68ABF3429C20058C2981C652192F2; IL2CPP_EXTERN_C String_t* _stringLiteralB856D5F930F0597377D1341A0C6F24DD74854667; IL2CPP_EXTERN_C String_t* _stringLiteralB9B95A09A6329F64F307C29A726917E458B15E65; IL2CPP_EXTERN_C String_t* _stringLiteralBC12DB6076DF77D5CCDF7B01D4534A2545723633; IL2CPP_EXTERN_C String_t* _stringLiteralBC41C48BA95DA48A6EB8BFC17142E8F0E9E4C990; IL2CPP_EXTERN_C String_t* _stringLiteralC668438A41E16934CBA83B80E3101B8222C11AEC; IL2CPP_EXTERN_C String_t* _stringLiteralC754689D33E77DA33A161FB7A06C164EDF02EE65; IL2CPP_EXTERN_C String_t* _stringLiteralCB62281B27D708B122BB052F6C5C203A9C9CA10B; IL2CPP_EXTERN_C String_t* _stringLiteralD1921F7804B8B0B09E2DC813076CD1CBDE1BAC17; IL2CPP_EXTERN_C String_t* _stringLiteralD286A908F27DE88608F297C65E9918981BCD4317; IL2CPP_EXTERN_C String_t* _stringLiteralD3E190B5EC5D5C32F6121F694010F47769FCBDD1; IL2CPP_EXTERN_C String_t* _stringLiteralD6B452A9F938870B52555F4DB4CE0E35E48B1FA6; IL2CPP_EXTERN_C String_t* _stringLiteralD90CDA62B9AE646096CCD287ACE999D2EFB8ADA5; IL2CPP_EXTERN_C String_t* _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709; IL2CPP_EXTERN_C String_t* _stringLiteralDDA0FEDECC3765A8D5F295C4B302D615D29F3483; IL2CPP_EXTERN_C String_t* _stringLiteralDF1CF539722D58CC569DAE01700516448ABF534B; IL2CPP_EXTERN_C String_t* _stringLiteralE13258345AC5ED7FA38D641004219DBE3A3FB56C; IL2CPP_EXTERN_C String_t* _stringLiteralE33035121EF6BAC3BBD73C519FBB6B270CE5657E; IL2CPP_EXTERN_C String_t* _stringLiteralE610AFD3290809B1D62848F53491246DB230B5BB; IL2CPP_EXTERN_C String_t* _stringLiteralE63688B993F3304E9013687D7CD5065D0AE3D400; IL2CPP_EXTERN_C String_t* _stringLiteralE657126EBF76C06687ED6EAD2C714E37315C927F; IL2CPP_EXTERN_C String_t* _stringLiteralE86F8F43B9D456F4E47ACD029ADCCE78BE9C9AA7; IL2CPP_EXTERN_C String_t* _stringLiteralE8CDAF3BD45E1B70CE2BC010AB453F8044684F6F; IL2CPP_EXTERN_C String_t* _stringLiteralF041468CA475A0C8B8298BFDDC984663476E0294; IL2CPP_EXTERN_C String_t* _stringLiteralF7C03E97995F6950303A46C204A216735E6B4582; IL2CPP_EXTERN_C String_t* _stringLiteralFC122FD8605F61DCBDED32B11B81E151BCAC4354; IL2CPP_EXTERN_C const RuntimeMethod* Array_Sort_TisInt32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_m869CA1F8E6B6C60EDC16FAD4EE1B58274F42A791_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Comparer_1_get_Default_m4E5D9DBA11E8CC2229E46D18B658D018A7C18934_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_ContainsKey_m151DB8CAF2F65A4621317E77AC025849F03D8132_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_mE1EA1831B6EF3BA9C2F807622B58DA3A0605B912_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_get_Item_m351227FE0D2D84F7E108FD47E0F0EA3D6D2D2A74_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_set_Item_mBC85AF861FB031847847F0B30707EC7AC252D572_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m627ED3F7C50096BB8934F778CB980E79483BD2AE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m670A9EDF6F3D728B215F9D1127B89402A43F4313_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_mF7FC7C7286BC3C19F30D3FD4A66A95AB6B76F07F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_CopyTo_m3B15B2E03F0BB9FFAF6DE71E6B38768B911EC5C7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_InsertRange_m37FCFE58E6B40EF85198A0C41C1F9816955CEB1C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_RemoveAt_m10FDE4D0C7CDBFFF730684256A23CB1914CE1FD8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_RemoveRange_m34DFA4EEBBB675853B61F9B458B92AF0DBE6F587_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_RemoveRange_m44F1D881F5E64D8010B3154DCACBDA5BC6DA4450_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Reverse_m123B97D352D6EACCCEAAEBD2BC6E40C529360CCA_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_ToArray_m94163AE84EBF9A1F7483014A8E9906BD93D9EBDB_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m30C52A4F2828D86CA3FAB0B1B583948F4DA9F1F9_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m7D9D8A82FB31C207EA4A2D7AC0D33B90B0BB34AB_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_mEEED4D424213FDF741A7A72F807F0BF9C6088398_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m199DB87BCE947106FBA38E19FDFE80CB65B61144_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m3A81757FE0B3283CB292CA61894273AA7B5C97CD_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m6027426A21F931ED65BF307176B790FC2065A648_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_m16F3838446C7314D39D8C98C916CD5B211886327_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_m8578F26F0FE72EDB6A0290D78944B3D4F34DBFAC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_m8A95D3769314CC0C4DDBE001AD1C40B4D5212053_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_set_Item_m6200EE8AD3B82F523BE93EB75D79A9FAE63CCB51_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* RegexFCD_CalculateFC_m11BAAB103351C64BA06B41B999C2BAD670E3579F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* RegexInterpreter_Go_m32838D966B426A327995246847A272491F3359F2_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* RegexParser_AddGroup_m3771097F1B4F1F6AA10104D28B663026F7B7326F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* RegexParser_ParseProperty_m32F8C5F94C55BFF814FBAD3189A25F3CAB76B3C3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* RegexParser_PopGroup_m461057BFDD1D1CFD70CF3DFE70693E429FCF0FA9_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* RegexParser_ScanBackslash_m2598C224286A4826DEB2D1189CCB73C9A363DFBD_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* RegexParser_ScanBasicBackslash_m3DAD88630B04CE794414919D65F325197CB15C3D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* RegexParser_ScanBlank_m2ACFA5BAF5FA14554D74C5DE4FE3893483D6F33D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* RegexParser_ScanCharClass_mADFDEFF75B3C880E692ED8411B7154CF3130401E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* RegexParser_ScanCharEscape_m7A3FDDAF73AB029CB6EA7BB8058E3FD2AEDD63D6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* RegexParser_ScanControl_m9EC29A03B8B1C8323D3E67F0D43F7A5960FFD816_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* RegexParser_ScanDecimal_mC7374D132F506C5D7EEB868C32C4959B1C672017_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* RegexParser_ScanGroupOpen_m1DE2AA1EFA786C58869EF4025705449871F33D59_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* RegexParser_ScanHex_m273E9DA24C7455F701730E65B90DAA5C0D0210C2_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* RegexParser_ScanRegex_mE0EF23CF2A462063119E2D5046512A1960A11718_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* RegexRunner_DoCheckTimeout_mFA5F588F7FA54123CFDFF4C26562E05DADFB675F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* RegexWriter_EmitFragment_m7692CDAFDAC6BE7D8BB2DD1EC225B6456047DE0B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ServicePointManagerElement__ctor_mA04F31D124B40258FE6673A2B7B0F7B2CE787615_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ServicePointManagerElement_get_Properties_mCB80284E347910A59F7B5A495D5862533E41907A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SettingsSection__ctor_m09A6DF12BD56D2C0E0ABA8152004C486B1DE97E3_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SettingsSection_get_Properties_mE5337C4AF39EA0A1B2AEB842CDBB16B8C0C1C4A0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SocketElement__ctor_m5D5BA302FD35A1D25BB3A596954F92AB26C3DEF6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* SocketElement_get_Properties_m9A46DB832A9DA2A3E8F3B74D83DD96EC8A180984_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Stopwatch_get_ElapsedMilliseconds_m6A137C9E989F74F61752FA86BB41ABAEC2A11FB5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* ThrowStub_ThrowNotSupportedException_mA667A039AC2AB853687594A68EFA90A799028D4F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Uri_CreateHelper_m95C8DB174EFC0CB21C3A74160A1001C14D3EF6DD_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Uri_CreateHostStringHelper_m53D695F65E776AB98FD3359894C2C34109E08D00_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Uri_CreateThis_m86E72577BCB9A6FDF5A0EC8EDFDD5F41AD3256FC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Uri_FromHex_m16E5FED0B58BA0A603C6BDDE6AA90F3C3FC78977_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Uri_GetComponentsHelper_mAA39E421157735AAD7D93A187CCCAED5A122C8E8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Uri_GetComponents_mA614A98C35F2E5D924A10A8018A46606AFB6133E_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Uri_GetHostViaCustomSyntax_mF2DABFE767AB49B8F8E0C9E19937AF900A1E4BC7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Uri_GetRelativeSerializationString_mBCE8CC99C746B18A9DE0B2C6084C5B90A192130D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Uri_ParseRemaining_m8C4350479C64906DDE464595F8BE5F8C14F2038D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Uri_ParseSchemeCheckImplicitFile_m5F6B3C184CF455ED80D78937F208EB8C10265395_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Uri_UnescapeDataString_m52E242703F2842594B2B37D673CDD5465ABCC836_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Uri__ctor_m7724F43B1525624FFF97A774B6B909B075714D5C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Uri__ctor_m8AEBDC795304F6C78A02BC41BB4C6BF93C4DE53B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Uri_get_Port_m23A08BF55EC1DC7421B99E6E77544DDF5900099C_RuntimeMethod_var; struct CultureData_t53CDF1C5F789A28897415891667799420D3C5529_marshaled_com; struct CultureData_t53CDF1C5F789A28897415891667799420D3C5529_marshaled_pinvoke; struct CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_marshaled_com; struct CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_marshaled_pinvoke; struct Exception_t_marshaled_com; struct Exception_t_marshaled_pinvoke; struct ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726; struct CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34; struct Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32; struct Int32EnumU5BU5D_t9327F857579EE00EB201E1913599094BF837D3CD; struct ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE; struct RegexFCU5BU5D_t2785114C5B0BD79CA8B9C2715A5368BDC5941356; struct StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A; IL2CPP_EXTERN_C_BEGIN IL2CPP_EXTERN_C_END #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Object // System.Collections.Generic.Comparer`1<System.Int32> struct Comparer_1_t3E3093220DB5D33A829C91C1DFDBDE2F42ECEDC7 : public RuntimeObject { public: public: }; struct Comparer_1_t3E3093220DB5D33A829C91C1DFDBDE2F42ECEDC7_StaticFields { public: // System.Collections.Generic.Comparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.Comparer`1::defaultComparer Comparer_1_t3E3093220DB5D33A829C91C1DFDBDE2F42ECEDC7 * ___defaultComparer_0; public: inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(Comparer_1_t3E3093220DB5D33A829C91C1DFDBDE2F42ECEDC7_StaticFields, ___defaultComparer_0)); } inline Comparer_1_t3E3093220DB5D33A829C91C1DFDBDE2F42ECEDC7 * get_defaultComparer_0() const { return ___defaultComparer_0; } inline Comparer_1_t3E3093220DB5D33A829C91C1DFDBDE2F42ECEDC7 ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; } inline void set_defaultComparer_0(Comparer_1_t3E3093220DB5D33A829C91C1DFDBDE2F42ECEDC7 * value) { ___defaultComparer_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value); } }; // System.Collections.Generic.Dictionary`2<System.String,System.Int32> struct Dictionary_2_tC94E9875910491F8130C2DC8B11E4D1548A55162 : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0; // System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_tABFC31237D6642B5D4C1DBA234CA37EE851EB0AE* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys KeyCollection_t61F8738ED346768CC112B2E27863BF9F73C76D90 * ___keys_7; // System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_t17EEB7B2EDD3CB5222C660D7E739F803986BF025 * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_tC94E9875910491F8130C2DC8B11E4D1548A55162, ___buckets_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value); } inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_tC94E9875910491F8130C2DC8B11E4D1548A55162, ___entries_1)); } inline EntryU5BU5D_tABFC31237D6642B5D4C1DBA234CA37EE851EB0AE* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_tABFC31237D6642B5D4C1DBA234CA37EE851EB0AE** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_tABFC31237D6642B5D4C1DBA234CA37EE851EB0AE* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value); } inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_tC94E9875910491F8130C2DC8B11E4D1548A55162, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_tC94E9875910491F8130C2DC8B11E4D1548A55162, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_tC94E9875910491F8130C2DC8B11E4D1548A55162, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_tC94E9875910491F8130C2DC8B11E4D1548A55162, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_tC94E9875910491F8130C2DC8B11E4D1548A55162, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value); } inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_tC94E9875910491F8130C2DC8B11E4D1548A55162, ___keys_7)); } inline KeyCollection_t61F8738ED346768CC112B2E27863BF9F73C76D90 * get_keys_7() const { return ___keys_7; } inline KeyCollection_t61F8738ED346768CC112B2E27863BF9F73C76D90 ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_t61F8738ED346768CC112B2E27863BF9F73C76D90 * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value); } inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_tC94E9875910491F8130C2DC8B11E4D1548A55162, ___values_8)); } inline ValueCollection_t17EEB7B2EDD3CB5222C660D7E739F803986BF025 * get_values_8() const { return ___values_8; } inline ValueCollection_t17EEB7B2EDD3CB5222C660D7E739F803986BF025 ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_t17EEB7B2EDD3CB5222C660D7E739F803986BF025 * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_tC94E9875910491F8130C2DC8B11E4D1548A55162, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value); } }; // System.Collections.Generic.List`1<System.Int32Enum> struct List_1_tD9A0DAE3CF1F9450036B041168264AE0CEF1737A : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items Int32EnumU5BU5D_t9327F857579EE00EB201E1913599094BF837D3CD* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_tD9A0DAE3CF1F9450036B041168264AE0CEF1737A, ____items_1)); } inline Int32EnumU5BU5D_t9327F857579EE00EB201E1913599094BF837D3CD* get__items_1() const { return ____items_1; } inline Int32EnumU5BU5D_t9327F857579EE00EB201E1913599094BF837D3CD** get_address_of__items_1() { return &____items_1; } inline void set__items_1(Int32EnumU5BU5D_t9327F857579EE00EB201E1913599094BF837D3CD* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value); } inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_tD9A0DAE3CF1F9450036B041168264AE0CEF1737A, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_tD9A0DAE3CF1F9450036B041168264AE0CEF1737A, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_tD9A0DAE3CF1F9450036B041168264AE0CEF1737A, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value); } }; struct List_1_tD9A0DAE3CF1F9450036B041168264AE0CEF1737A_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray Int32EnumU5BU5D_t9327F857579EE00EB201E1913599094BF837D3CD* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_tD9A0DAE3CF1F9450036B041168264AE0CEF1737A_StaticFields, ____emptyArray_5)); } inline Int32EnumU5BU5D_t9327F857579EE00EB201E1913599094BF837D3CD* get__emptyArray_5() const { return ____emptyArray_5; } inline Int32EnumU5BU5D_t9327F857579EE00EB201E1913599094BF837D3CD** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(Int32EnumU5BU5D_t9327F857579EE00EB201E1913599094BF837D3CD* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value); } }; // System.Collections.Generic.List`1<System.Object> struct List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5, ____items_1)); } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get__items_1() const { return ____items_1; } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of__items_1() { return &____items_1; } inline void set__items_1(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value); } inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value); } }; struct List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5_StaticFields, ____emptyArray_5)); } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get__emptyArray_5() const { return ____emptyArray_5; } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value); } }; // System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexNode> struct List_1_t692D260BEBA1E69864C98DEEDB3E9256C38CD9B9 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items RegexNodeU5BU5D_tDCE5A1DFD56515BBA16233216439F0948F453056* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t692D260BEBA1E69864C98DEEDB3E9256C38CD9B9, ____items_1)); } inline RegexNodeU5BU5D_tDCE5A1DFD56515BBA16233216439F0948F453056* get__items_1() const { return ____items_1; } inline RegexNodeU5BU5D_tDCE5A1DFD56515BBA16233216439F0948F453056** get_address_of__items_1() { return &____items_1; } inline void set__items_1(RegexNodeU5BU5D_tDCE5A1DFD56515BBA16233216439F0948F453056* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value); } inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t692D260BEBA1E69864C98DEEDB3E9256C38CD9B9, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t692D260BEBA1E69864C98DEEDB3E9256C38CD9B9, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t692D260BEBA1E69864C98DEEDB3E9256C38CD9B9, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value); } }; struct List_1_t692D260BEBA1E69864C98DEEDB3E9256C38CD9B9_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray RegexNodeU5BU5D_tDCE5A1DFD56515BBA16233216439F0948F453056* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t692D260BEBA1E69864C98DEEDB3E9256C38CD9B9_StaticFields, ____emptyArray_5)); } inline RegexNodeU5BU5D_tDCE5A1DFD56515BBA16233216439F0948F453056* get__emptyArray_5() const { return ____emptyArray_5; } inline RegexNodeU5BU5D_tDCE5A1DFD56515BBA16233216439F0948F453056** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(RegexNodeU5BU5D_tDCE5A1DFD56515BBA16233216439F0948F453056* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value); } }; // System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexOptions> struct List_1_tE931333A40AB4E57F72E00F9F23D19057C78120A : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items RegexOptionsU5BU5D_t7331675FC2B3783AD45B7A664FB7365174D43C67* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_tE931333A40AB4E57F72E00F9F23D19057C78120A, ____items_1)); } inline RegexOptionsU5BU5D_t7331675FC2B3783AD45B7A664FB7365174D43C67* get__items_1() const { return ____items_1; } inline RegexOptionsU5BU5D_t7331675FC2B3783AD45B7A664FB7365174D43C67** get_address_of__items_1() { return &____items_1; } inline void set__items_1(RegexOptionsU5BU5D_t7331675FC2B3783AD45B7A664FB7365174D43C67* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value); } inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_tE931333A40AB4E57F72E00F9F23D19057C78120A, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_tE931333A40AB4E57F72E00F9F23D19057C78120A, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_tE931333A40AB4E57F72E00F9F23D19057C78120A, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value); } }; struct List_1_tE931333A40AB4E57F72E00F9F23D19057C78120A_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray RegexOptionsU5BU5D_t7331675FC2B3783AD45B7A664FB7365174D43C67* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_tE931333A40AB4E57F72E00F9F23D19057C78120A_StaticFields, ____emptyArray_5)); } inline RegexOptionsU5BU5D_t7331675FC2B3783AD45B7A664FB7365174D43C67* get__emptyArray_5() const { return ____emptyArray_5; } inline RegexOptionsU5BU5D_t7331675FC2B3783AD45B7A664FB7365174D43C67** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(RegexOptionsU5BU5D_t7331675FC2B3783AD45B7A664FB7365174D43C67* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value); } }; // System.Collections.Generic.List`1<System.String> struct List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3, ____items_1)); } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get__items_1() const { return ____items_1; } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of__items_1() { return &____items_1; } inline void set__items_1(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value); } inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value); } }; struct List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3_StaticFields, ____emptyArray_5)); } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get__emptyArray_5() const { return ____emptyArray_5; } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value); } }; struct Il2CppArrayBounds; // System.Array // System.Attribute struct Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71 : public RuntimeObject { public: public: }; // System.Text.RegularExpressions.Capture struct Capture_t048191E7E0D3177DCD8610E4968075AB41FB91D6 : public RuntimeObject { public: // System.String System.Text.RegularExpressions.Capture::_text String_t* ____text_0; // System.Int32 System.Text.RegularExpressions.Capture::_index int32_t ____index_1; // System.Int32 System.Text.RegularExpressions.Capture::_length int32_t ____length_2; public: inline static int32_t get_offset_of__text_0() { return static_cast<int32_t>(offsetof(Capture_t048191E7E0D3177DCD8610E4968075AB41FB91D6, ____text_0)); } inline String_t* get__text_0() const { return ____text_0; } inline String_t** get_address_of__text_0() { return &____text_0; } inline void set__text_0(String_t* value) { ____text_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____text_0), (void*)value); } inline static int32_t get_offset_of__index_1() { return static_cast<int32_t>(offsetof(Capture_t048191E7E0D3177DCD8610E4968075AB41FB91D6, ____index_1)); } inline int32_t get__index_1() const { return ____index_1; } inline int32_t* get_address_of__index_1() { return &____index_1; } inline void set__index_1(int32_t value) { ____index_1 = value; } inline static int32_t get_offset_of__length_2() { return static_cast<int32_t>(offsetof(Capture_t048191E7E0D3177DCD8610E4968075AB41FB91D6, ____length_2)); } inline int32_t get__length_2() const { return ____length_2; } inline int32_t* get_address_of__length_2() { return &____length_2; } inline void set__length_2(int32_t value) { ____length_2 = value; } }; // System.Configuration.ConfigurationElement struct ConfigurationElement_t571C446CFDFF39CF17130653C433786BEFF25DFA : public RuntimeObject { public: public: }; // System.Configuration.ConfigurationPropertyCollection struct ConfigurationPropertyCollection_t8C098DB59DF7BA2C2A71369978F4225B92B2F59B : public RuntimeObject { public: public: }; // System.Globalization.CultureInfo struct CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 : public RuntimeObject { public: // System.Boolean System.Globalization.CultureInfo::m_isReadOnly bool ___m_isReadOnly_3; // System.Int32 System.Globalization.CultureInfo::cultureID int32_t ___cultureID_4; // System.Int32 System.Globalization.CultureInfo::parent_lcid int32_t ___parent_lcid_5; // System.Int32 System.Globalization.CultureInfo::datetime_index int32_t ___datetime_index_6; // System.Int32 System.Globalization.CultureInfo::number_index int32_t ___number_index_7; // System.Int32 System.Globalization.CultureInfo::default_calendar_type int32_t ___default_calendar_type_8; // System.Boolean System.Globalization.CultureInfo::m_useUserOverride bool ___m_useUserOverride_9; // System.Globalization.NumberFormatInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::numInfo NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D * ___numInfo_10; // System.Globalization.DateTimeFormatInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::dateTimeInfo DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90 * ___dateTimeInfo_11; // System.Globalization.TextInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::textInfo TextInfo_tE823D0684BFE8B203501C9B2B38585E8F06E872C * ___textInfo_12; // System.String System.Globalization.CultureInfo::m_name String_t* ___m_name_13; // System.String System.Globalization.CultureInfo::englishname String_t* ___englishname_14; // System.String System.Globalization.CultureInfo::nativename String_t* ___nativename_15; // System.String System.Globalization.CultureInfo::iso3lang String_t* ___iso3lang_16; // System.String System.Globalization.CultureInfo::iso2lang String_t* ___iso2lang_17; // System.String System.Globalization.CultureInfo::win3lang String_t* ___win3lang_18; // System.String System.Globalization.CultureInfo::territory String_t* ___territory_19; // System.String[] System.Globalization.CultureInfo::native_calendar_names StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___native_calendar_names_20; // System.Globalization.CompareInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::compareInfo CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * ___compareInfo_21; // System.Void* System.Globalization.CultureInfo::textinfo_data void* ___textinfo_data_22; // System.Int32 System.Globalization.CultureInfo::m_dataItem int32_t ___m_dataItem_23; // System.Globalization.Calendar System.Globalization.CultureInfo::calendar Calendar_t3D638AEAB45F029DF47138EDA4CF9A7CBBB1C32A * ___calendar_24; // System.Globalization.CultureInfo System.Globalization.CultureInfo::parent_culture CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * ___parent_culture_25; // System.Boolean System.Globalization.CultureInfo::constructed bool ___constructed_26; // System.Byte[] System.Globalization.CultureInfo::cached_serialized_form ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___cached_serialized_form_27; // System.Globalization.CultureData System.Globalization.CultureInfo::m_cultureData CultureData_t53CDF1C5F789A28897415891667799420D3C5529 * ___m_cultureData_28; // System.Boolean System.Globalization.CultureInfo::m_isInherited bool ___m_isInherited_29; public: inline static int32_t get_offset_of_m_isReadOnly_3() { return static_cast<int32_t>(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___m_isReadOnly_3)); } inline bool get_m_isReadOnly_3() const { return ___m_isReadOnly_3; } inline bool* get_address_of_m_isReadOnly_3() { return &___m_isReadOnly_3; } inline void set_m_isReadOnly_3(bool value) { ___m_isReadOnly_3 = value; } inline static int32_t get_offset_of_cultureID_4() { return static_cast<int32_t>(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___cultureID_4)); } inline int32_t get_cultureID_4() const { return ___cultureID_4; } inline int32_t* get_address_of_cultureID_4() { return &___cultureID_4; } inline void set_cultureID_4(int32_t value) { ___cultureID_4 = value; } inline static int32_t get_offset_of_parent_lcid_5() { return static_cast<int32_t>(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___parent_lcid_5)); } inline int32_t get_parent_lcid_5() const { return ___parent_lcid_5; } inline int32_t* get_address_of_parent_lcid_5() { return &___parent_lcid_5; } inline void set_parent_lcid_5(int32_t value) { ___parent_lcid_5 = value; } inline static int32_t get_offset_of_datetime_index_6() { return static_cast<int32_t>(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___datetime_index_6)); } inline int32_t get_datetime_index_6() const { return ___datetime_index_6; } inline int32_t* get_address_of_datetime_index_6() { return &___datetime_index_6; } inline void set_datetime_index_6(int32_t value) { ___datetime_index_6 = value; } inline static int32_t get_offset_of_number_index_7() { return static_cast<int32_t>(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___number_index_7)); } inline int32_t get_number_index_7() const { return ___number_index_7; } inline int32_t* get_address_of_number_index_7() { return &___number_index_7; } inline void set_number_index_7(int32_t value) { ___number_index_7 = value; } inline static int32_t get_offset_of_default_calendar_type_8() { return static_cast<int32_t>(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___default_calendar_type_8)); } inline int32_t get_default_calendar_type_8() const { return ___default_calendar_type_8; } inline int32_t* get_address_of_default_calendar_type_8() { return &___default_calendar_type_8; } inline void set_default_calendar_type_8(int32_t value) { ___default_calendar_type_8 = value; } inline static int32_t get_offset_of_m_useUserOverride_9() { return static_cast<int32_t>(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___m_useUserOverride_9)); } inline bool get_m_useUserOverride_9() const { return ___m_useUserOverride_9; } inline bool* get_address_of_m_useUserOverride_9() { return &___m_useUserOverride_9; } inline void set_m_useUserOverride_9(bool value) { ___m_useUserOverride_9 = value; } inline static int32_t get_offset_of_numInfo_10() { return static_cast<int32_t>(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___numInfo_10)); } inline NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D * get_numInfo_10() const { return ___numInfo_10; } inline NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D ** get_address_of_numInfo_10() { return &___numInfo_10; } inline void set_numInfo_10(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D * value) { ___numInfo_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___numInfo_10), (void*)value); } inline static int32_t get_offset_of_dateTimeInfo_11() { return static_cast<int32_t>(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___dateTimeInfo_11)); } inline DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90 * get_dateTimeInfo_11() const { return ___dateTimeInfo_11; } inline DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90 ** get_address_of_dateTimeInfo_11() { return &___dateTimeInfo_11; } inline void set_dateTimeInfo_11(DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90 * value) { ___dateTimeInfo_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___dateTimeInfo_11), (void*)value); } inline static int32_t get_offset_of_textInfo_12() { return static_cast<int32_t>(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___textInfo_12)); } inline TextInfo_tE823D0684BFE8B203501C9B2B38585E8F06E872C * get_textInfo_12() const { return ___textInfo_12; } inline TextInfo_tE823D0684BFE8B203501C9B2B38585E8F06E872C ** get_address_of_textInfo_12() { return &___textInfo_12; } inline void set_textInfo_12(TextInfo_tE823D0684BFE8B203501C9B2B38585E8F06E872C * value) { ___textInfo_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___textInfo_12), (void*)value); } inline static int32_t get_offset_of_m_name_13() { return static_cast<int32_t>(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___m_name_13)); } inline String_t* get_m_name_13() const { return ___m_name_13; } inline String_t** get_address_of_m_name_13() { return &___m_name_13; } inline void set_m_name_13(String_t* value) { ___m_name_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_name_13), (void*)value); } inline static int32_t get_offset_of_englishname_14() { return static_cast<int32_t>(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___englishname_14)); } inline String_t* get_englishname_14() const { return ___englishname_14; } inline String_t** get_address_of_englishname_14() { return &___englishname_14; } inline void set_englishname_14(String_t* value) { ___englishname_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___englishname_14), (void*)value); } inline static int32_t get_offset_of_nativename_15() { return static_cast<int32_t>(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___nativename_15)); } inline String_t* get_nativename_15() const { return ___nativename_15; } inline String_t** get_address_of_nativename_15() { return &___nativename_15; } inline void set_nativename_15(String_t* value) { ___nativename_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___nativename_15), (void*)value); } inline static int32_t get_offset_of_iso3lang_16() { return static_cast<int32_t>(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___iso3lang_16)); } inline String_t* get_iso3lang_16() const { return ___iso3lang_16; } inline String_t** get_address_of_iso3lang_16() { return &___iso3lang_16; } inline void set_iso3lang_16(String_t* value) { ___iso3lang_16 = value; Il2CppCodeGenWriteBarrier((void**)(&___iso3lang_16), (void*)value); } inline static int32_t get_offset_of_iso2lang_17() { return static_cast<int32_t>(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___iso2lang_17)); } inline String_t* get_iso2lang_17() const { return ___iso2lang_17; } inline String_t** get_address_of_iso2lang_17() { return &___iso2lang_17; } inline void set_iso2lang_17(String_t* value) { ___iso2lang_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___iso2lang_17), (void*)value); } inline static int32_t get_offset_of_win3lang_18() { return static_cast<int32_t>(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___win3lang_18)); } inline String_t* get_win3lang_18() const { return ___win3lang_18; } inline String_t** get_address_of_win3lang_18() { return &___win3lang_18; } inline void set_win3lang_18(String_t* value) { ___win3lang_18 = value; Il2CppCodeGenWriteBarrier((void**)(&___win3lang_18), (void*)value); } inline static int32_t get_offset_of_territory_19() { return static_cast<int32_t>(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___territory_19)); } inline String_t* get_territory_19() const { return ___territory_19; } inline String_t** get_address_of_territory_19() { return &___territory_19; } inline void set_territory_19(String_t* value) { ___territory_19 = value; Il2CppCodeGenWriteBarrier((void**)(&___territory_19), (void*)value); } inline static int32_t get_offset_of_native_calendar_names_20() { return static_cast<int32_t>(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___native_calendar_names_20)); } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get_native_calendar_names_20() const { return ___native_calendar_names_20; } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of_native_calendar_names_20() { return &___native_calendar_names_20; } inline void set_native_calendar_names_20(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value) { ___native_calendar_names_20 = value; Il2CppCodeGenWriteBarrier((void**)(&___native_calendar_names_20), (void*)value); } inline static int32_t get_offset_of_compareInfo_21() { return static_cast<int32_t>(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___compareInfo_21)); } inline CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * get_compareInfo_21() const { return ___compareInfo_21; } inline CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 ** get_address_of_compareInfo_21() { return &___compareInfo_21; } inline void set_compareInfo_21(CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * value) { ___compareInfo_21 = value; Il2CppCodeGenWriteBarrier((void**)(&___compareInfo_21), (void*)value); } inline static int32_t get_offset_of_textinfo_data_22() { return static_cast<int32_t>(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___textinfo_data_22)); } inline void* get_textinfo_data_22() const { return ___textinfo_data_22; } inline void** get_address_of_textinfo_data_22() { return &___textinfo_data_22; } inline void set_textinfo_data_22(void* value) { ___textinfo_data_22 = value; } inline static int32_t get_offset_of_m_dataItem_23() { return static_cast<int32_t>(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___m_dataItem_23)); } inline int32_t get_m_dataItem_23() const { return ___m_dataItem_23; } inline int32_t* get_address_of_m_dataItem_23() { return &___m_dataItem_23; } inline void set_m_dataItem_23(int32_t value) { ___m_dataItem_23 = value; } inline static int32_t get_offset_of_calendar_24() { return static_cast<int32_t>(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___calendar_24)); } inline Calendar_t3D638AEAB45F029DF47138EDA4CF9A7CBBB1C32A * get_calendar_24() const { return ___calendar_24; } inline Calendar_t3D638AEAB45F029DF47138EDA4CF9A7CBBB1C32A ** get_address_of_calendar_24() { return &___calendar_24; } inline void set_calendar_24(Calendar_t3D638AEAB45F029DF47138EDA4CF9A7CBBB1C32A * value) { ___calendar_24 = value; Il2CppCodeGenWriteBarrier((void**)(&___calendar_24), (void*)value); } inline static int32_t get_offset_of_parent_culture_25() { return static_cast<int32_t>(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___parent_culture_25)); } inline CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * get_parent_culture_25() const { return ___parent_culture_25; } inline CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 ** get_address_of_parent_culture_25() { return &___parent_culture_25; } inline void set_parent_culture_25(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * value) { ___parent_culture_25 = value; Il2CppCodeGenWriteBarrier((void**)(&___parent_culture_25), (void*)value); } inline static int32_t get_offset_of_constructed_26() { return static_cast<int32_t>(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___constructed_26)); } inline bool get_constructed_26() const { return ___constructed_26; } inline bool* get_address_of_constructed_26() { return &___constructed_26; } inline void set_constructed_26(bool value) { ___constructed_26 = value; } inline static int32_t get_offset_of_cached_serialized_form_27() { return static_cast<int32_t>(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___cached_serialized_form_27)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_cached_serialized_form_27() const { return ___cached_serialized_form_27; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_cached_serialized_form_27() { return &___cached_serialized_form_27; } inline void set_cached_serialized_form_27(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___cached_serialized_form_27 = value; Il2CppCodeGenWriteBarrier((void**)(&___cached_serialized_form_27), (void*)value); } inline static int32_t get_offset_of_m_cultureData_28() { return static_cast<int32_t>(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___m_cultureData_28)); } inline CultureData_t53CDF1C5F789A28897415891667799420D3C5529 * get_m_cultureData_28() const { return ___m_cultureData_28; } inline CultureData_t53CDF1C5F789A28897415891667799420D3C5529 ** get_address_of_m_cultureData_28() { return &___m_cultureData_28; } inline void set_m_cultureData_28(CultureData_t53CDF1C5F789A28897415891667799420D3C5529 * value) { ___m_cultureData_28 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_cultureData_28), (void*)value); } inline static int32_t get_offset_of_m_isInherited_29() { return static_cast<int32_t>(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___m_isInherited_29)); } inline bool get_m_isInherited_29() const { return ___m_isInherited_29; } inline bool* get_address_of_m_isInherited_29() { return &___m_isInherited_29; } inline void set_m_isInherited_29(bool value) { ___m_isInherited_29 = value; } }; struct CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_StaticFields { public: // System.Globalization.CultureInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::invariant_culture_info CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * ___invariant_culture_info_0; // System.Object System.Globalization.CultureInfo::shared_table_lock RuntimeObject * ___shared_table_lock_1; // System.Globalization.CultureInfo System.Globalization.CultureInfo::default_current_culture CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * ___default_current_culture_2; // System.Globalization.CultureInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::s_DefaultThreadCurrentUICulture CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * ___s_DefaultThreadCurrentUICulture_33; // System.Globalization.CultureInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::s_DefaultThreadCurrentCulture CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * ___s_DefaultThreadCurrentCulture_34; // System.Collections.Generic.Dictionary`2<System.Int32,System.Globalization.CultureInfo> System.Globalization.CultureInfo::shared_by_number Dictionary_2_t5B8303F2C9869A39ED3E03C0FBB09F817E479402 * ___shared_by_number_35; // System.Collections.Generic.Dictionary`2<System.String,System.Globalization.CultureInfo> System.Globalization.CultureInfo::shared_by_name Dictionary_2_t0015CBF964B0687CBB5ECFDDE06671A8F3DDE4BC * ___shared_by_name_36; // System.Boolean System.Globalization.CultureInfo::IsTaiwanSku bool ___IsTaiwanSku_37; public: inline static int32_t get_offset_of_invariant_culture_info_0() { return static_cast<int32_t>(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_StaticFields, ___invariant_culture_info_0)); } inline CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * get_invariant_culture_info_0() const { return ___invariant_culture_info_0; } inline CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 ** get_address_of_invariant_culture_info_0() { return &___invariant_culture_info_0; } inline void set_invariant_culture_info_0(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * value) { ___invariant_culture_info_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___invariant_culture_info_0), (void*)value); } inline static int32_t get_offset_of_shared_table_lock_1() { return static_cast<int32_t>(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_StaticFields, ___shared_table_lock_1)); } inline RuntimeObject * get_shared_table_lock_1() const { return ___shared_table_lock_1; } inline RuntimeObject ** get_address_of_shared_table_lock_1() { return &___shared_table_lock_1; } inline void set_shared_table_lock_1(RuntimeObject * value) { ___shared_table_lock_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___shared_table_lock_1), (void*)value); } inline static int32_t get_offset_of_default_current_culture_2() { return static_cast<int32_t>(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_StaticFields, ___default_current_culture_2)); } inline CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * get_default_current_culture_2() const { return ___default_current_culture_2; } inline CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 ** get_address_of_default_current_culture_2() { return &___default_current_culture_2; } inline void set_default_current_culture_2(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * value) { ___default_current_culture_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___default_current_culture_2), (void*)value); } inline static int32_t get_offset_of_s_DefaultThreadCurrentUICulture_33() { return static_cast<int32_t>(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_StaticFields, ___s_DefaultThreadCurrentUICulture_33)); } inline CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * get_s_DefaultThreadCurrentUICulture_33() const { return ___s_DefaultThreadCurrentUICulture_33; } inline CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 ** get_address_of_s_DefaultThreadCurrentUICulture_33() { return &___s_DefaultThreadCurrentUICulture_33; } inline void set_s_DefaultThreadCurrentUICulture_33(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * value) { ___s_DefaultThreadCurrentUICulture_33 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_DefaultThreadCurrentUICulture_33), (void*)value); } inline static int32_t get_offset_of_s_DefaultThreadCurrentCulture_34() { return static_cast<int32_t>(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_StaticFields, ___s_DefaultThreadCurrentCulture_34)); } inline CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * get_s_DefaultThreadCurrentCulture_34() const { return ___s_DefaultThreadCurrentCulture_34; } inline CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 ** get_address_of_s_DefaultThreadCurrentCulture_34() { return &___s_DefaultThreadCurrentCulture_34; } inline void set_s_DefaultThreadCurrentCulture_34(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * value) { ___s_DefaultThreadCurrentCulture_34 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_DefaultThreadCurrentCulture_34), (void*)value); } inline static int32_t get_offset_of_shared_by_number_35() { return static_cast<int32_t>(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_StaticFields, ___shared_by_number_35)); } inline Dictionary_2_t5B8303F2C9869A39ED3E03C0FBB09F817E479402 * get_shared_by_number_35() const { return ___shared_by_number_35; } inline Dictionary_2_t5B8303F2C9869A39ED3E03C0FBB09F817E479402 ** get_address_of_shared_by_number_35() { return &___shared_by_number_35; } inline void set_shared_by_number_35(Dictionary_2_t5B8303F2C9869A39ED3E03C0FBB09F817E479402 * value) { ___shared_by_number_35 = value; Il2CppCodeGenWriteBarrier((void**)(&___shared_by_number_35), (void*)value); } inline static int32_t get_offset_of_shared_by_name_36() { return static_cast<int32_t>(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_StaticFields, ___shared_by_name_36)); } inline Dictionary_2_t0015CBF964B0687CBB5ECFDDE06671A8F3DDE4BC * get_shared_by_name_36() const { return ___shared_by_name_36; } inline Dictionary_2_t0015CBF964B0687CBB5ECFDDE06671A8F3DDE4BC ** get_address_of_shared_by_name_36() { return &___shared_by_name_36; } inline void set_shared_by_name_36(Dictionary_2_t0015CBF964B0687CBB5ECFDDE06671A8F3DDE4BC * value) { ___shared_by_name_36 = value; Il2CppCodeGenWriteBarrier((void**)(&___shared_by_name_36), (void*)value); } inline static int32_t get_offset_of_IsTaiwanSku_37() { return static_cast<int32_t>(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_StaticFields, ___IsTaiwanSku_37)); } inline bool get_IsTaiwanSku_37() const { return ___IsTaiwanSku_37; } inline bool* get_address_of_IsTaiwanSku_37() { return &___IsTaiwanSku_37; } inline void set_IsTaiwanSku_37(bool value) { ___IsTaiwanSku_37 = value; } }; // Native definition for P/Invoke marshalling of System.Globalization.CultureInfo struct CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_marshaled_pinvoke { int32_t ___m_isReadOnly_3; int32_t ___cultureID_4; int32_t ___parent_lcid_5; int32_t ___datetime_index_6; int32_t ___number_index_7; int32_t ___default_calendar_type_8; int32_t ___m_useUserOverride_9; NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D * ___numInfo_10; DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90 * ___dateTimeInfo_11; TextInfo_tE823D0684BFE8B203501C9B2B38585E8F06E872C * ___textInfo_12; char* ___m_name_13; char* ___englishname_14; char* ___nativename_15; char* ___iso3lang_16; char* ___iso2lang_17; char* ___win3lang_18; char* ___territory_19; char** ___native_calendar_names_20; CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * ___compareInfo_21; void* ___textinfo_data_22; int32_t ___m_dataItem_23; Calendar_t3D638AEAB45F029DF47138EDA4CF9A7CBBB1C32A * ___calendar_24; CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_marshaled_pinvoke* ___parent_culture_25; int32_t ___constructed_26; Il2CppSafeArray/*NONE*/* ___cached_serialized_form_27; CultureData_t53CDF1C5F789A28897415891667799420D3C5529_marshaled_pinvoke* ___m_cultureData_28; int32_t ___m_isInherited_29; }; // Native definition for COM marshalling of System.Globalization.CultureInfo struct CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_marshaled_com { int32_t ___m_isReadOnly_3; int32_t ___cultureID_4; int32_t ___parent_lcid_5; int32_t ___datetime_index_6; int32_t ___number_index_7; int32_t ___default_calendar_type_8; int32_t ___m_useUserOverride_9; NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D * ___numInfo_10; DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90 * ___dateTimeInfo_11; TextInfo_tE823D0684BFE8B203501C9B2B38585E8F06E872C * ___textInfo_12; Il2CppChar* ___m_name_13; Il2CppChar* ___englishname_14; Il2CppChar* ___nativename_15; Il2CppChar* ___iso3lang_16; Il2CppChar* ___iso2lang_17; Il2CppChar* ___win3lang_18; Il2CppChar* ___territory_19; Il2CppChar** ___native_calendar_names_20; CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * ___compareInfo_21; void* ___textinfo_data_22; int32_t ___m_dataItem_23; Calendar_t3D638AEAB45F029DF47138EDA4CF9A7CBBB1C32A * ___calendar_24; CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_marshaled_com* ___parent_culture_25; int32_t ___constructed_26; Il2CppSafeArray/*NONE*/* ___cached_serialized_form_27; CultureData_t53CDF1C5F789A28897415891667799420D3C5529_marshaled_com* ___m_cultureData_28; int32_t ___m_isInherited_29; }; // System.Net.EndPoint struct EndPoint_t18D4AE8D03090A2B262136E59F95CE61418C34DA : public RuntimeObject { public: public: }; // System.Reflection.MemberInfo struct MemberInfo_t : public RuntimeObject { public: public: }; // System.IO.Path struct Path_tF1D95B78D57C1C1211BA6633FF2AC22FD6C48921 : public RuntimeObject { public: public: }; struct Path_tF1D95B78D57C1C1211BA6633FF2AC22FD6C48921_StaticFields { public: // System.Char[] System.IO.Path::InvalidPathChars CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___InvalidPathChars_0; // System.Char System.IO.Path::AltDirectorySeparatorChar Il2CppChar ___AltDirectorySeparatorChar_1; // System.Char System.IO.Path::DirectorySeparatorChar Il2CppChar ___DirectorySeparatorChar_2; // System.Char System.IO.Path::PathSeparator Il2CppChar ___PathSeparator_3; // System.String System.IO.Path::DirectorySeparatorStr String_t* ___DirectorySeparatorStr_4; // System.Char System.IO.Path::VolumeSeparatorChar Il2CppChar ___VolumeSeparatorChar_5; // System.Char[] System.IO.Path::PathSeparatorChars CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___PathSeparatorChars_6; // System.Boolean System.IO.Path::dirEqualsVolume bool ___dirEqualsVolume_7; // System.Char[] System.IO.Path::trimEndCharsWindows CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___trimEndCharsWindows_8; // System.Char[] System.IO.Path::trimEndCharsUnix CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___trimEndCharsUnix_9; public: inline static int32_t get_offset_of_InvalidPathChars_0() { return static_cast<int32_t>(offsetof(Path_tF1D95B78D57C1C1211BA6633FF2AC22FD6C48921_StaticFields, ___InvalidPathChars_0)); } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get_InvalidPathChars_0() const { return ___InvalidPathChars_0; } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of_InvalidPathChars_0() { return &___InvalidPathChars_0; } inline void set_InvalidPathChars_0(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value) { ___InvalidPathChars_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___InvalidPathChars_0), (void*)value); } inline static int32_t get_offset_of_AltDirectorySeparatorChar_1() { return static_cast<int32_t>(offsetof(Path_tF1D95B78D57C1C1211BA6633FF2AC22FD6C48921_StaticFields, ___AltDirectorySeparatorChar_1)); } inline Il2CppChar get_AltDirectorySeparatorChar_1() const { return ___AltDirectorySeparatorChar_1; } inline Il2CppChar* get_address_of_AltDirectorySeparatorChar_1() { return &___AltDirectorySeparatorChar_1; } inline void set_AltDirectorySeparatorChar_1(Il2CppChar value) { ___AltDirectorySeparatorChar_1 = value; } inline static int32_t get_offset_of_DirectorySeparatorChar_2() { return static_cast<int32_t>(offsetof(Path_tF1D95B78D57C1C1211BA6633FF2AC22FD6C48921_StaticFields, ___DirectorySeparatorChar_2)); } inline Il2CppChar get_DirectorySeparatorChar_2() const { return ___DirectorySeparatorChar_2; } inline Il2CppChar* get_address_of_DirectorySeparatorChar_2() { return &___DirectorySeparatorChar_2; } inline void set_DirectorySeparatorChar_2(Il2CppChar value) { ___DirectorySeparatorChar_2 = value; } inline static int32_t get_offset_of_PathSeparator_3() { return static_cast<int32_t>(offsetof(Path_tF1D95B78D57C1C1211BA6633FF2AC22FD6C48921_StaticFields, ___PathSeparator_3)); } inline Il2CppChar get_PathSeparator_3() const { return ___PathSeparator_3; } inline Il2CppChar* get_address_of_PathSeparator_3() { return &___PathSeparator_3; } inline void set_PathSeparator_3(Il2CppChar value) { ___PathSeparator_3 = value; } inline static int32_t get_offset_of_DirectorySeparatorStr_4() { return static_cast<int32_t>(offsetof(Path_tF1D95B78D57C1C1211BA6633FF2AC22FD6C48921_StaticFields, ___DirectorySeparatorStr_4)); } inline String_t* get_DirectorySeparatorStr_4() const { return ___DirectorySeparatorStr_4; } inline String_t** get_address_of_DirectorySeparatorStr_4() { return &___DirectorySeparatorStr_4; } inline void set_DirectorySeparatorStr_4(String_t* value) { ___DirectorySeparatorStr_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___DirectorySeparatorStr_4), (void*)value); } inline static int32_t get_offset_of_VolumeSeparatorChar_5() { return static_cast<int32_t>(offsetof(Path_tF1D95B78D57C1C1211BA6633FF2AC22FD6C48921_StaticFields, ___VolumeSeparatorChar_5)); } inline Il2CppChar get_VolumeSeparatorChar_5() const { return ___VolumeSeparatorChar_5; } inline Il2CppChar* get_address_of_VolumeSeparatorChar_5() { return &___VolumeSeparatorChar_5; } inline void set_VolumeSeparatorChar_5(Il2CppChar value) { ___VolumeSeparatorChar_5 = value; } inline static int32_t get_offset_of_PathSeparatorChars_6() { return static_cast<int32_t>(offsetof(Path_tF1D95B78D57C1C1211BA6633FF2AC22FD6C48921_StaticFields, ___PathSeparatorChars_6)); } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get_PathSeparatorChars_6() const { return ___PathSeparatorChars_6; } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of_PathSeparatorChars_6() { return &___PathSeparatorChars_6; } inline void set_PathSeparatorChars_6(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value) { ___PathSeparatorChars_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___PathSeparatorChars_6), (void*)value); } inline static int32_t get_offset_of_dirEqualsVolume_7() { return static_cast<int32_t>(offsetof(Path_tF1D95B78D57C1C1211BA6633FF2AC22FD6C48921_StaticFields, ___dirEqualsVolume_7)); } inline bool get_dirEqualsVolume_7() const { return ___dirEqualsVolume_7; } inline bool* get_address_of_dirEqualsVolume_7() { return &___dirEqualsVolume_7; } inline void set_dirEqualsVolume_7(bool value) { ___dirEqualsVolume_7 = value; } inline static int32_t get_offset_of_trimEndCharsWindows_8() { return static_cast<int32_t>(offsetof(Path_tF1D95B78D57C1C1211BA6633FF2AC22FD6C48921_StaticFields, ___trimEndCharsWindows_8)); } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get_trimEndCharsWindows_8() const { return ___trimEndCharsWindows_8; } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of_trimEndCharsWindows_8() { return &___trimEndCharsWindows_8; } inline void set_trimEndCharsWindows_8(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value) { ___trimEndCharsWindows_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___trimEndCharsWindows_8), (void*)value); } inline static int32_t get_offset_of_trimEndCharsUnix_9() { return static_cast<int32_t>(offsetof(Path_tF1D95B78D57C1C1211BA6633FF2AC22FD6C48921_StaticFields, ___trimEndCharsUnix_9)); } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get_trimEndCharsUnix_9() const { return ___trimEndCharsUnix_9; } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of_trimEndCharsUnix_9() { return &___trimEndCharsUnix_9; } inline void set_trimEndCharsUnix_9(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value) { ___trimEndCharsUnix_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___trimEndCharsUnix_9), (void*)value); } }; // System.Text.RegularExpressions.RegexBoyerMoore struct RegexBoyerMoore_t43FE488EFF3EE20D1092216B7E62D954F78167D2 : public RuntimeObject { public: // System.Int32[] System.Text.RegularExpressions.RegexBoyerMoore::_positive Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ____positive_0; // System.Int32[] System.Text.RegularExpressions.RegexBoyerMoore::_negativeASCII Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ____negativeASCII_1; // System.Int32[][] System.Text.RegularExpressions.RegexBoyerMoore::_negativeUnicode Int32U5BU5DU5BU5D_t104DBF1B996084AA19567FD32B02EDF88D044FAF* ____negativeUnicode_2; // System.String System.Text.RegularExpressions.RegexBoyerMoore::_pattern String_t* ____pattern_3; // System.Int32 System.Text.RegularExpressions.RegexBoyerMoore::_lowASCII int32_t ____lowASCII_4; // System.Int32 System.Text.RegularExpressions.RegexBoyerMoore::_highASCII int32_t ____highASCII_5; // System.Boolean System.Text.RegularExpressions.RegexBoyerMoore::_rightToLeft bool ____rightToLeft_6; // System.Boolean System.Text.RegularExpressions.RegexBoyerMoore::_caseInsensitive bool ____caseInsensitive_7; // System.Globalization.CultureInfo System.Text.RegularExpressions.RegexBoyerMoore::_culture CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * ____culture_8; public: inline static int32_t get_offset_of__positive_0() { return static_cast<int32_t>(offsetof(RegexBoyerMoore_t43FE488EFF3EE20D1092216B7E62D954F78167D2, ____positive_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get__positive_0() const { return ____positive_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of__positive_0() { return &____positive_0; } inline void set__positive_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ____positive_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____positive_0), (void*)value); } inline static int32_t get_offset_of__negativeASCII_1() { return static_cast<int32_t>(offsetof(RegexBoyerMoore_t43FE488EFF3EE20D1092216B7E62D954F78167D2, ____negativeASCII_1)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get__negativeASCII_1() const { return ____negativeASCII_1; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of__negativeASCII_1() { return &____negativeASCII_1; } inline void set__negativeASCII_1(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ____negativeASCII_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____negativeASCII_1), (void*)value); } inline static int32_t get_offset_of__negativeUnicode_2() { return static_cast<int32_t>(offsetof(RegexBoyerMoore_t43FE488EFF3EE20D1092216B7E62D954F78167D2, ____negativeUnicode_2)); } inline Int32U5BU5DU5BU5D_t104DBF1B996084AA19567FD32B02EDF88D044FAF* get__negativeUnicode_2() const { return ____negativeUnicode_2; } inline Int32U5BU5DU5BU5D_t104DBF1B996084AA19567FD32B02EDF88D044FAF** get_address_of__negativeUnicode_2() { return &____negativeUnicode_2; } inline void set__negativeUnicode_2(Int32U5BU5DU5BU5D_t104DBF1B996084AA19567FD32B02EDF88D044FAF* value) { ____negativeUnicode_2 = value; Il2CppCodeGenWriteBarrier((void**)(&____negativeUnicode_2), (void*)value); } inline static int32_t get_offset_of__pattern_3() { return static_cast<int32_t>(offsetof(RegexBoyerMoore_t43FE488EFF3EE20D1092216B7E62D954F78167D2, ____pattern_3)); } inline String_t* get__pattern_3() const { return ____pattern_3; } inline String_t** get_address_of__pattern_3() { return &____pattern_3; } inline void set__pattern_3(String_t* value) { ____pattern_3 = value; Il2CppCodeGenWriteBarrier((void**)(&____pattern_3), (void*)value); } inline static int32_t get_offset_of__lowASCII_4() { return static_cast<int32_t>(offsetof(RegexBoyerMoore_t43FE488EFF3EE20D1092216B7E62D954F78167D2, ____lowASCII_4)); } inline int32_t get__lowASCII_4() const { return ____lowASCII_4; } inline int32_t* get_address_of__lowASCII_4() { return &____lowASCII_4; } inline void set__lowASCII_4(int32_t value) { ____lowASCII_4 = value; } inline static int32_t get_offset_of__highASCII_5() { return static_cast<int32_t>(offsetof(RegexBoyerMoore_t43FE488EFF3EE20D1092216B7E62D954F78167D2, ____highASCII_5)); } inline int32_t get__highASCII_5() const { return ____highASCII_5; } inline int32_t* get_address_of__highASCII_5() { return &____highASCII_5; } inline void set__highASCII_5(int32_t value) { ____highASCII_5 = value; } inline static int32_t get_offset_of__rightToLeft_6() { return static_cast<int32_t>(offsetof(RegexBoyerMoore_t43FE488EFF3EE20D1092216B7E62D954F78167D2, ____rightToLeft_6)); } inline bool get__rightToLeft_6() const { return ____rightToLeft_6; } inline bool* get_address_of__rightToLeft_6() { return &____rightToLeft_6; } inline void set__rightToLeft_6(bool value) { ____rightToLeft_6 = value; } inline static int32_t get_offset_of__caseInsensitive_7() { return static_cast<int32_t>(offsetof(RegexBoyerMoore_t43FE488EFF3EE20D1092216B7E62D954F78167D2, ____caseInsensitive_7)); } inline bool get__caseInsensitive_7() const { return ____caseInsensitive_7; } inline bool* get_address_of__caseInsensitive_7() { return &____caseInsensitive_7; } inline void set__caseInsensitive_7(bool value) { ____caseInsensitive_7 = value; } inline static int32_t get_offset_of__culture_8() { return static_cast<int32_t>(offsetof(RegexBoyerMoore_t43FE488EFF3EE20D1092216B7E62D954F78167D2, ____culture_8)); } inline CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * get__culture_8() const { return ____culture_8; } inline CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 ** get_address_of__culture_8() { return &____culture_8; } inline void set__culture_8(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * value) { ____culture_8 = value; Il2CppCodeGenWriteBarrier((void**)(&____culture_8), (void*)value); } }; // System.Text.RegularExpressions.RegexCharClass struct RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5 : public RuntimeObject { public: // System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexCharClass/SingleRange> System.Text.RegularExpressions.RegexCharClass::_rangelist List_1_t911C56B32435E07F3A1F3B9FB9BFF36061619CF3 * ____rangelist_0; // System.Text.StringBuilder System.Text.RegularExpressions.RegexCharClass::_categories StringBuilder_t * ____categories_1; // System.Boolean System.Text.RegularExpressions.RegexCharClass::_canonical bool ____canonical_2; // System.Boolean System.Text.RegularExpressions.RegexCharClass::_negate bool ____negate_3; // System.Text.RegularExpressions.RegexCharClass System.Text.RegularExpressions.RegexCharClass::_subtractor RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5 * ____subtractor_4; public: inline static int32_t get_offset_of__rangelist_0() { return static_cast<int32_t>(offsetof(RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5, ____rangelist_0)); } inline List_1_t911C56B32435E07F3A1F3B9FB9BFF36061619CF3 * get__rangelist_0() const { return ____rangelist_0; } inline List_1_t911C56B32435E07F3A1F3B9FB9BFF36061619CF3 ** get_address_of__rangelist_0() { return &____rangelist_0; } inline void set__rangelist_0(List_1_t911C56B32435E07F3A1F3B9FB9BFF36061619CF3 * value) { ____rangelist_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____rangelist_0), (void*)value); } inline static int32_t get_offset_of__categories_1() { return static_cast<int32_t>(offsetof(RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5, ____categories_1)); } inline StringBuilder_t * get__categories_1() const { return ____categories_1; } inline StringBuilder_t ** get_address_of__categories_1() { return &____categories_1; } inline void set__categories_1(StringBuilder_t * value) { ____categories_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____categories_1), (void*)value); } inline static int32_t get_offset_of__canonical_2() { return static_cast<int32_t>(offsetof(RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5, ____canonical_2)); } inline bool get__canonical_2() const { return ____canonical_2; } inline bool* get_address_of__canonical_2() { return &____canonical_2; } inline void set__canonical_2(bool value) { ____canonical_2 = value; } inline static int32_t get_offset_of__negate_3() { return static_cast<int32_t>(offsetof(RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5, ____negate_3)); } inline bool get__negate_3() const { return ____negate_3; } inline bool* get_address_of__negate_3() { return &____negate_3; } inline void set__negate_3(bool value) { ____negate_3 = value; } inline static int32_t get_offset_of__subtractor_4() { return static_cast<int32_t>(offsetof(RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5, ____subtractor_4)); } inline RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5 * get__subtractor_4() const { return ____subtractor_4; } inline RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5 ** get_address_of__subtractor_4() { return &____subtractor_4; } inline void set__subtractor_4(RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5 * value) { ____subtractor_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____subtractor_4), (void*)value); } }; struct RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5_StaticFields { public: // System.String System.Text.RegularExpressions.RegexCharClass::InternalRegexIgnoreCase String_t* ___InternalRegexIgnoreCase_5; // System.String System.Text.RegularExpressions.RegexCharClass::Space String_t* ___Space_6; // System.String System.Text.RegularExpressions.RegexCharClass::NotSpace String_t* ___NotSpace_7; // System.String System.Text.RegularExpressions.RegexCharClass::Word String_t* ___Word_8; // System.String System.Text.RegularExpressions.RegexCharClass::NotWord String_t* ___NotWord_9; // System.String System.Text.RegularExpressions.RegexCharClass::SpaceClass String_t* ___SpaceClass_10; // System.String System.Text.RegularExpressions.RegexCharClass::NotSpaceClass String_t* ___NotSpaceClass_11; // System.String System.Text.RegularExpressions.RegexCharClass::WordClass String_t* ___WordClass_12; // System.String System.Text.RegularExpressions.RegexCharClass::NotWordClass String_t* ___NotWordClass_13; // System.String System.Text.RegularExpressions.RegexCharClass::DigitClass String_t* ___DigitClass_14; // System.String System.Text.RegularExpressions.RegexCharClass::NotDigitClass String_t* ___NotDigitClass_15; // System.Collections.Generic.Dictionary`2<System.String,System.String> System.Text.RegularExpressions.RegexCharClass::_definedCategories Dictionary_2_tDE3227CA5E7A32F5070BD24C69F42204A3ADE9D5 * ____definedCategories_16; // System.String[0...,0...] System.Text.RegularExpressions.RegexCharClass::_propTable StringU5BU2CU5D_t57ABDCA8B352E243BFC6950153456ACCEF63DC90* ____propTable_17; // System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping[] System.Text.RegularExpressions.RegexCharClass::_lcTable LowerCaseMappingU5BU5D_t4D85AEF6C1007D3CCE150AE32CBAACDBF218293E* ____lcTable_18; public: inline static int32_t get_offset_of_InternalRegexIgnoreCase_5() { return static_cast<int32_t>(offsetof(RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5_StaticFields, ___InternalRegexIgnoreCase_5)); } inline String_t* get_InternalRegexIgnoreCase_5() const { return ___InternalRegexIgnoreCase_5; } inline String_t** get_address_of_InternalRegexIgnoreCase_5() { return &___InternalRegexIgnoreCase_5; } inline void set_InternalRegexIgnoreCase_5(String_t* value) { ___InternalRegexIgnoreCase_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___InternalRegexIgnoreCase_5), (void*)value); } inline static int32_t get_offset_of_Space_6() { return static_cast<int32_t>(offsetof(RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5_StaticFields, ___Space_6)); } inline String_t* get_Space_6() const { return ___Space_6; } inline String_t** get_address_of_Space_6() { return &___Space_6; } inline void set_Space_6(String_t* value) { ___Space_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___Space_6), (void*)value); } inline static int32_t get_offset_of_NotSpace_7() { return static_cast<int32_t>(offsetof(RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5_StaticFields, ___NotSpace_7)); } inline String_t* get_NotSpace_7() const { return ___NotSpace_7; } inline String_t** get_address_of_NotSpace_7() { return &___NotSpace_7; } inline void set_NotSpace_7(String_t* value) { ___NotSpace_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___NotSpace_7), (void*)value); } inline static int32_t get_offset_of_Word_8() { return static_cast<int32_t>(offsetof(RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5_StaticFields, ___Word_8)); } inline String_t* get_Word_8() const { return ___Word_8; } inline String_t** get_address_of_Word_8() { return &___Word_8; } inline void set_Word_8(String_t* value) { ___Word_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___Word_8), (void*)value); } inline static int32_t get_offset_of_NotWord_9() { return static_cast<int32_t>(offsetof(RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5_StaticFields, ___NotWord_9)); } inline String_t* get_NotWord_9() const { return ___NotWord_9; } inline String_t** get_address_of_NotWord_9() { return &___NotWord_9; } inline void set_NotWord_9(String_t* value) { ___NotWord_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___NotWord_9), (void*)value); } inline static int32_t get_offset_of_SpaceClass_10() { return static_cast<int32_t>(offsetof(RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5_StaticFields, ___SpaceClass_10)); } inline String_t* get_SpaceClass_10() const { return ___SpaceClass_10; } inline String_t** get_address_of_SpaceClass_10() { return &___SpaceClass_10; } inline void set_SpaceClass_10(String_t* value) { ___SpaceClass_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___SpaceClass_10), (void*)value); } inline static int32_t get_offset_of_NotSpaceClass_11() { return static_cast<int32_t>(offsetof(RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5_StaticFields, ___NotSpaceClass_11)); } inline String_t* get_NotSpaceClass_11() const { return ___NotSpaceClass_11; } inline String_t** get_address_of_NotSpaceClass_11() { return &___NotSpaceClass_11; } inline void set_NotSpaceClass_11(String_t* value) { ___NotSpaceClass_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___NotSpaceClass_11), (void*)value); } inline static int32_t get_offset_of_WordClass_12() { return static_cast<int32_t>(offsetof(RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5_StaticFields, ___WordClass_12)); } inline String_t* get_WordClass_12() const { return ___WordClass_12; } inline String_t** get_address_of_WordClass_12() { return &___WordClass_12; } inline void set_WordClass_12(String_t* value) { ___WordClass_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___WordClass_12), (void*)value); } inline static int32_t get_offset_of_NotWordClass_13() { return static_cast<int32_t>(offsetof(RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5_StaticFields, ___NotWordClass_13)); } inline String_t* get_NotWordClass_13() const { return ___NotWordClass_13; } inline String_t** get_address_of_NotWordClass_13() { return &___NotWordClass_13; } inline void set_NotWordClass_13(String_t* value) { ___NotWordClass_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___NotWordClass_13), (void*)value); } inline static int32_t get_offset_of_DigitClass_14() { return static_cast<int32_t>(offsetof(RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5_StaticFields, ___DigitClass_14)); } inline String_t* get_DigitClass_14() const { return ___DigitClass_14; } inline String_t** get_address_of_DigitClass_14() { return &___DigitClass_14; } inline void set_DigitClass_14(String_t* value) { ___DigitClass_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___DigitClass_14), (void*)value); } inline static int32_t get_offset_of_NotDigitClass_15() { return static_cast<int32_t>(offsetof(RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5_StaticFields, ___NotDigitClass_15)); } inline String_t* get_NotDigitClass_15() const { return ___NotDigitClass_15; } inline String_t** get_address_of_NotDigitClass_15() { return &___NotDigitClass_15; } inline void set_NotDigitClass_15(String_t* value) { ___NotDigitClass_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___NotDigitClass_15), (void*)value); } inline static int32_t get_offset_of__definedCategories_16() { return static_cast<int32_t>(offsetof(RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5_StaticFields, ____definedCategories_16)); } inline Dictionary_2_tDE3227CA5E7A32F5070BD24C69F42204A3ADE9D5 * get__definedCategories_16() const { return ____definedCategories_16; } inline Dictionary_2_tDE3227CA5E7A32F5070BD24C69F42204A3ADE9D5 ** get_address_of__definedCategories_16() { return &____definedCategories_16; } inline void set__definedCategories_16(Dictionary_2_tDE3227CA5E7A32F5070BD24C69F42204A3ADE9D5 * value) { ____definedCategories_16 = value; Il2CppCodeGenWriteBarrier((void**)(&____definedCategories_16), (void*)value); } inline static int32_t get_offset_of__propTable_17() { return static_cast<int32_t>(offsetof(RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5_StaticFields, ____propTable_17)); } inline StringU5BU2CU5D_t57ABDCA8B352E243BFC6950153456ACCEF63DC90* get__propTable_17() const { return ____propTable_17; } inline StringU5BU2CU5D_t57ABDCA8B352E243BFC6950153456ACCEF63DC90** get_address_of__propTable_17() { return &____propTable_17; } inline void set__propTable_17(StringU5BU2CU5D_t57ABDCA8B352E243BFC6950153456ACCEF63DC90* value) { ____propTable_17 = value; Il2CppCodeGenWriteBarrier((void**)(&____propTable_17), (void*)value); } inline static int32_t get_offset_of__lcTable_18() { return static_cast<int32_t>(offsetof(RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5_StaticFields, ____lcTable_18)); } inline LowerCaseMappingU5BU5D_t4D85AEF6C1007D3CCE150AE32CBAACDBF218293E* get__lcTable_18() const { return ____lcTable_18; } inline LowerCaseMappingU5BU5D_t4D85AEF6C1007D3CCE150AE32CBAACDBF218293E** get_address_of__lcTable_18() { return &____lcTable_18; } inline void set__lcTable_18(LowerCaseMappingU5BU5D_t4D85AEF6C1007D3CCE150AE32CBAACDBF218293E* value) { ____lcTable_18 = value; Il2CppCodeGenWriteBarrier((void**)(&____lcTable_18), (void*)value); } }; // System.Text.RegularExpressions.RegexCode struct RegexCode_tF1653432E8EEDED5AB9517D09CA84B5FAA3CC0D5 : public RuntimeObject { public: // System.Int32[] System.Text.RegularExpressions.RegexCode::_codes Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ____codes_0; // System.String[] System.Text.RegularExpressions.RegexCode::_strings StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ____strings_1; // System.Int32 System.Text.RegularExpressions.RegexCode::_trackcount int32_t ____trackcount_2; // System.Collections.Hashtable System.Text.RegularExpressions.RegexCode::_caps Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * ____caps_3; // System.Int32 System.Text.RegularExpressions.RegexCode::_capsize int32_t ____capsize_4; // System.Text.RegularExpressions.RegexPrefix System.Text.RegularExpressions.RegexCode::_fcPrefix RegexPrefix_t1563C82A76799B0B018F5EBD6EC068158BE50301 * ____fcPrefix_5; // System.Text.RegularExpressions.RegexBoyerMoore System.Text.RegularExpressions.RegexCode::_bmPrefix RegexBoyerMoore_t43FE488EFF3EE20D1092216B7E62D954F78167D2 * ____bmPrefix_6; // System.Int32 System.Text.RegularExpressions.RegexCode::_anchors int32_t ____anchors_7; // System.Boolean System.Text.RegularExpressions.RegexCode::_rightToLeft bool ____rightToLeft_8; public: inline static int32_t get_offset_of__codes_0() { return static_cast<int32_t>(offsetof(RegexCode_tF1653432E8EEDED5AB9517D09CA84B5FAA3CC0D5, ____codes_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get__codes_0() const { return ____codes_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of__codes_0() { return &____codes_0; } inline void set__codes_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ____codes_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____codes_0), (void*)value); } inline static int32_t get_offset_of__strings_1() { return static_cast<int32_t>(offsetof(RegexCode_tF1653432E8EEDED5AB9517D09CA84B5FAA3CC0D5, ____strings_1)); } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get__strings_1() const { return ____strings_1; } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of__strings_1() { return &____strings_1; } inline void set__strings_1(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value) { ____strings_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____strings_1), (void*)value); } inline static int32_t get_offset_of__trackcount_2() { return static_cast<int32_t>(offsetof(RegexCode_tF1653432E8EEDED5AB9517D09CA84B5FAA3CC0D5, ____trackcount_2)); } inline int32_t get__trackcount_2() const { return ____trackcount_2; } inline int32_t* get_address_of__trackcount_2() { return &____trackcount_2; } inline void set__trackcount_2(int32_t value) { ____trackcount_2 = value; } inline static int32_t get_offset_of__caps_3() { return static_cast<int32_t>(offsetof(RegexCode_tF1653432E8EEDED5AB9517D09CA84B5FAA3CC0D5, ____caps_3)); } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * get__caps_3() const { return ____caps_3; } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC ** get_address_of__caps_3() { return &____caps_3; } inline void set__caps_3(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * value) { ____caps_3 = value; Il2CppCodeGenWriteBarrier((void**)(&____caps_3), (void*)value); } inline static int32_t get_offset_of__capsize_4() { return static_cast<int32_t>(offsetof(RegexCode_tF1653432E8EEDED5AB9517D09CA84B5FAA3CC0D5, ____capsize_4)); } inline int32_t get__capsize_4() const { return ____capsize_4; } inline int32_t* get_address_of__capsize_4() { return &____capsize_4; } inline void set__capsize_4(int32_t value) { ____capsize_4 = value; } inline static int32_t get_offset_of__fcPrefix_5() { return static_cast<int32_t>(offsetof(RegexCode_tF1653432E8EEDED5AB9517D09CA84B5FAA3CC0D5, ____fcPrefix_5)); } inline RegexPrefix_t1563C82A76799B0B018F5EBD6EC068158BE50301 * get__fcPrefix_5() const { return ____fcPrefix_5; } inline RegexPrefix_t1563C82A76799B0B018F5EBD6EC068158BE50301 ** get_address_of__fcPrefix_5() { return &____fcPrefix_5; } inline void set__fcPrefix_5(RegexPrefix_t1563C82A76799B0B018F5EBD6EC068158BE50301 * value) { ____fcPrefix_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____fcPrefix_5), (void*)value); } inline static int32_t get_offset_of__bmPrefix_6() { return static_cast<int32_t>(offsetof(RegexCode_tF1653432E8EEDED5AB9517D09CA84B5FAA3CC0D5, ____bmPrefix_6)); } inline RegexBoyerMoore_t43FE488EFF3EE20D1092216B7E62D954F78167D2 * get__bmPrefix_6() const { return ____bmPrefix_6; } inline RegexBoyerMoore_t43FE488EFF3EE20D1092216B7E62D954F78167D2 ** get_address_of__bmPrefix_6() { return &____bmPrefix_6; } inline void set__bmPrefix_6(RegexBoyerMoore_t43FE488EFF3EE20D1092216B7E62D954F78167D2 * value) { ____bmPrefix_6 = value; Il2CppCodeGenWriteBarrier((void**)(&____bmPrefix_6), (void*)value); } inline static int32_t get_offset_of__anchors_7() { return static_cast<int32_t>(offsetof(RegexCode_tF1653432E8EEDED5AB9517D09CA84B5FAA3CC0D5, ____anchors_7)); } inline int32_t get__anchors_7() const { return ____anchors_7; } inline int32_t* get_address_of__anchors_7() { return &____anchors_7; } inline void set__anchors_7(int32_t value) { ____anchors_7 = value; } inline static int32_t get_offset_of__rightToLeft_8() { return static_cast<int32_t>(offsetof(RegexCode_tF1653432E8EEDED5AB9517D09CA84B5FAA3CC0D5, ____rightToLeft_8)); } inline bool get__rightToLeft_8() const { return ____rightToLeft_8; } inline bool* get_address_of__rightToLeft_8() { return &____rightToLeft_8; } inline void set__rightToLeft_8(bool value) { ____rightToLeft_8 = value; } }; // System.Text.RegularExpressions.RegexFC struct RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826 : public RuntimeObject { public: // System.Text.RegularExpressions.RegexCharClass System.Text.RegularExpressions.RegexFC::_cc RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5 * ____cc_0; // System.Boolean System.Text.RegularExpressions.RegexFC::_nullable bool ____nullable_1; // System.Boolean System.Text.RegularExpressions.RegexFC::_caseInsensitive bool ____caseInsensitive_2; public: inline static int32_t get_offset_of__cc_0() { return static_cast<int32_t>(offsetof(RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826, ____cc_0)); } inline RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5 * get__cc_0() const { return ____cc_0; } inline RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5 ** get_address_of__cc_0() { return &____cc_0; } inline void set__cc_0(RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5 * value) { ____cc_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____cc_0), (void*)value); } inline static int32_t get_offset_of__nullable_1() { return static_cast<int32_t>(offsetof(RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826, ____nullable_1)); } inline bool get__nullable_1() const { return ____nullable_1; } inline bool* get_address_of__nullable_1() { return &____nullable_1; } inline void set__nullable_1(bool value) { ____nullable_1 = value; } inline static int32_t get_offset_of__caseInsensitive_2() { return static_cast<int32_t>(offsetof(RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826, ____caseInsensitive_2)); } inline bool get__caseInsensitive_2() const { return ____caseInsensitive_2; } inline bool* get_address_of__caseInsensitive_2() { return &____caseInsensitive_2; } inline void set__caseInsensitive_2(bool value) { ____caseInsensitive_2 = value; } }; // System.Text.RegularExpressions.RegexFCD struct RegexFCD_tF50EFB93429390CF2488DAB5FD07DE6E48F1CDBF : public RuntimeObject { public: // System.Int32[] System.Text.RegularExpressions.RegexFCD::_intStack Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ____intStack_0; // System.Int32 System.Text.RegularExpressions.RegexFCD::_intDepth int32_t ____intDepth_1; // System.Text.RegularExpressions.RegexFC[] System.Text.RegularExpressions.RegexFCD::_fcStack RegexFCU5BU5D_t2785114C5B0BD79CA8B9C2715A5368BDC5941356* ____fcStack_2; // System.Int32 System.Text.RegularExpressions.RegexFCD::_fcDepth int32_t ____fcDepth_3; // System.Boolean System.Text.RegularExpressions.RegexFCD::_skipAllChildren bool ____skipAllChildren_4; // System.Boolean System.Text.RegularExpressions.RegexFCD::_skipchild bool ____skipchild_5; // System.Boolean System.Text.RegularExpressions.RegexFCD::_failed bool ____failed_6; public: inline static int32_t get_offset_of__intStack_0() { return static_cast<int32_t>(offsetof(RegexFCD_tF50EFB93429390CF2488DAB5FD07DE6E48F1CDBF, ____intStack_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get__intStack_0() const { return ____intStack_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of__intStack_0() { return &____intStack_0; } inline void set__intStack_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ____intStack_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____intStack_0), (void*)value); } inline static int32_t get_offset_of__intDepth_1() { return static_cast<int32_t>(offsetof(RegexFCD_tF50EFB93429390CF2488DAB5FD07DE6E48F1CDBF, ____intDepth_1)); } inline int32_t get__intDepth_1() const { return ____intDepth_1; } inline int32_t* get_address_of__intDepth_1() { return &____intDepth_1; } inline void set__intDepth_1(int32_t value) { ____intDepth_1 = value; } inline static int32_t get_offset_of__fcStack_2() { return static_cast<int32_t>(offsetof(RegexFCD_tF50EFB93429390CF2488DAB5FD07DE6E48F1CDBF, ____fcStack_2)); } inline RegexFCU5BU5D_t2785114C5B0BD79CA8B9C2715A5368BDC5941356* get__fcStack_2() const { return ____fcStack_2; } inline RegexFCU5BU5D_t2785114C5B0BD79CA8B9C2715A5368BDC5941356** get_address_of__fcStack_2() { return &____fcStack_2; } inline void set__fcStack_2(RegexFCU5BU5D_t2785114C5B0BD79CA8B9C2715A5368BDC5941356* value) { ____fcStack_2 = value; Il2CppCodeGenWriteBarrier((void**)(&____fcStack_2), (void*)value); } inline static int32_t get_offset_of__fcDepth_3() { return static_cast<int32_t>(offsetof(RegexFCD_tF50EFB93429390CF2488DAB5FD07DE6E48F1CDBF, ____fcDepth_3)); } inline int32_t get__fcDepth_3() const { return ____fcDepth_3; } inline int32_t* get_address_of__fcDepth_3() { return &____fcDepth_3; } inline void set__fcDepth_3(int32_t value) { ____fcDepth_3 = value; } inline static int32_t get_offset_of__skipAllChildren_4() { return static_cast<int32_t>(offsetof(RegexFCD_tF50EFB93429390CF2488DAB5FD07DE6E48F1CDBF, ____skipAllChildren_4)); } inline bool get__skipAllChildren_4() const { return ____skipAllChildren_4; } inline bool* get_address_of__skipAllChildren_4() { return &____skipAllChildren_4; } inline void set__skipAllChildren_4(bool value) { ____skipAllChildren_4 = value; } inline static int32_t get_offset_of__skipchild_5() { return static_cast<int32_t>(offsetof(RegexFCD_tF50EFB93429390CF2488DAB5FD07DE6E48F1CDBF, ____skipchild_5)); } inline bool get__skipchild_5() const { return ____skipchild_5; } inline bool* get_address_of__skipchild_5() { return &____skipchild_5; } inline void set__skipchild_5(bool value) { ____skipchild_5 = value; } inline static int32_t get_offset_of__failed_6() { return static_cast<int32_t>(offsetof(RegexFCD_tF50EFB93429390CF2488DAB5FD07DE6E48F1CDBF, ____failed_6)); } inline bool get__failed_6() const { return ____failed_6; } inline bool* get_address_of__failed_6() { return &____failed_6; } inline void set__failed_6(bool value) { ____failed_6 = value; } }; // System.Text.RegularExpressions.RegexPrefix struct RegexPrefix_t1563C82A76799B0B018F5EBD6EC068158BE50301 : public RuntimeObject { public: // System.String System.Text.RegularExpressions.RegexPrefix::_prefix String_t* ____prefix_0; // System.Boolean System.Text.RegularExpressions.RegexPrefix::_caseInsensitive bool ____caseInsensitive_1; public: inline static int32_t get_offset_of__prefix_0() { return static_cast<int32_t>(offsetof(RegexPrefix_t1563C82A76799B0B018F5EBD6EC068158BE50301, ____prefix_0)); } inline String_t* get__prefix_0() const { return ____prefix_0; } inline String_t** get_address_of__prefix_0() { return &____prefix_0; } inline void set__prefix_0(String_t* value) { ____prefix_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____prefix_0), (void*)value); } inline static int32_t get_offset_of__caseInsensitive_1() { return static_cast<int32_t>(offsetof(RegexPrefix_t1563C82A76799B0B018F5EBD6EC068158BE50301, ____caseInsensitive_1)); } inline bool get__caseInsensitive_1() const { return ____caseInsensitive_1; } inline bool* get_address_of__caseInsensitive_1() { return &____caseInsensitive_1; } inline void set__caseInsensitive_1(bool value) { ____caseInsensitive_1 = value; } }; struct RegexPrefix_t1563C82A76799B0B018F5EBD6EC068158BE50301_StaticFields { public: // System.Text.RegularExpressions.RegexPrefix System.Text.RegularExpressions.RegexPrefix::_empty RegexPrefix_t1563C82A76799B0B018F5EBD6EC068158BE50301 * ____empty_2; public: inline static int32_t get_offset_of__empty_2() { return static_cast<int32_t>(offsetof(RegexPrefix_t1563C82A76799B0B018F5EBD6EC068158BE50301_StaticFields, ____empty_2)); } inline RegexPrefix_t1563C82A76799B0B018F5EBD6EC068158BE50301 * get__empty_2() const { return ____empty_2; } inline RegexPrefix_t1563C82A76799B0B018F5EBD6EC068158BE50301 ** get_address_of__empty_2() { return &____empty_2; } inline void set__empty_2(RegexPrefix_t1563C82A76799B0B018F5EBD6EC068158BE50301 * value) { ____empty_2 = value; Il2CppCodeGenWriteBarrier((void**)(&____empty_2), (void*)value); } }; // System.Text.RegularExpressions.RegexRunner struct RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 : public RuntimeObject { public: // System.Int32 System.Text.RegularExpressions.RegexRunner::runtextbeg int32_t ___runtextbeg_0; // System.Int32 System.Text.RegularExpressions.RegexRunner::runtextend int32_t ___runtextend_1; // System.Int32 System.Text.RegularExpressions.RegexRunner::runtextstart int32_t ___runtextstart_2; // System.String System.Text.RegularExpressions.RegexRunner::runtext String_t* ___runtext_3; // System.Int32 System.Text.RegularExpressions.RegexRunner::runtextpos int32_t ___runtextpos_4; // System.Int32[] System.Text.RegularExpressions.RegexRunner::runtrack Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___runtrack_5; // System.Int32 System.Text.RegularExpressions.RegexRunner::runtrackpos int32_t ___runtrackpos_6; // System.Int32[] System.Text.RegularExpressions.RegexRunner::runstack Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___runstack_7; // System.Int32 System.Text.RegularExpressions.RegexRunner::runstackpos int32_t ___runstackpos_8; // System.Int32[] System.Text.RegularExpressions.RegexRunner::runcrawl Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___runcrawl_9; // System.Int32 System.Text.RegularExpressions.RegexRunner::runcrawlpos int32_t ___runcrawlpos_10; // System.Int32 System.Text.RegularExpressions.RegexRunner::runtrackcount int32_t ___runtrackcount_11; // System.Text.RegularExpressions.Match System.Text.RegularExpressions.RegexRunner::runmatch Match_t8CC0A47F766954F17AD4D1C1597754C8F576464B * ___runmatch_12; // System.Text.RegularExpressions.Regex System.Text.RegularExpressions.RegexRunner::runregex Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F * ___runregex_13; // System.Int32 System.Text.RegularExpressions.RegexRunner::timeout int32_t ___timeout_14; // System.Boolean System.Text.RegularExpressions.RegexRunner::ignoreTimeout bool ___ignoreTimeout_15; // System.Int32 System.Text.RegularExpressions.RegexRunner::timeoutOccursAt int32_t ___timeoutOccursAt_16; // System.Int32 System.Text.RegularExpressions.RegexRunner::timeoutChecksToSkip int32_t ___timeoutChecksToSkip_17; public: inline static int32_t get_offset_of_runtextbeg_0() { return static_cast<int32_t>(offsetof(RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934, ___runtextbeg_0)); } inline int32_t get_runtextbeg_0() const { return ___runtextbeg_0; } inline int32_t* get_address_of_runtextbeg_0() { return &___runtextbeg_0; } inline void set_runtextbeg_0(int32_t value) { ___runtextbeg_0 = value; } inline static int32_t get_offset_of_runtextend_1() { return static_cast<int32_t>(offsetof(RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934, ___runtextend_1)); } inline int32_t get_runtextend_1() const { return ___runtextend_1; } inline int32_t* get_address_of_runtextend_1() { return &___runtextend_1; } inline void set_runtextend_1(int32_t value) { ___runtextend_1 = value; } inline static int32_t get_offset_of_runtextstart_2() { return static_cast<int32_t>(offsetof(RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934, ___runtextstart_2)); } inline int32_t get_runtextstart_2() const { return ___runtextstart_2; } inline int32_t* get_address_of_runtextstart_2() { return &___runtextstart_2; } inline void set_runtextstart_2(int32_t value) { ___runtextstart_2 = value; } inline static int32_t get_offset_of_runtext_3() { return static_cast<int32_t>(offsetof(RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934, ___runtext_3)); } inline String_t* get_runtext_3() const { return ___runtext_3; } inline String_t** get_address_of_runtext_3() { return &___runtext_3; } inline void set_runtext_3(String_t* value) { ___runtext_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___runtext_3), (void*)value); } inline static int32_t get_offset_of_runtextpos_4() { return static_cast<int32_t>(offsetof(RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934, ___runtextpos_4)); } inline int32_t get_runtextpos_4() const { return ___runtextpos_4; } inline int32_t* get_address_of_runtextpos_4() { return &___runtextpos_4; } inline void set_runtextpos_4(int32_t value) { ___runtextpos_4 = value; } inline static int32_t get_offset_of_runtrack_5() { return static_cast<int32_t>(offsetof(RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934, ___runtrack_5)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_runtrack_5() const { return ___runtrack_5; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_runtrack_5() { return &___runtrack_5; } inline void set_runtrack_5(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___runtrack_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___runtrack_5), (void*)value); } inline static int32_t get_offset_of_runtrackpos_6() { return static_cast<int32_t>(offsetof(RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934, ___runtrackpos_6)); } inline int32_t get_runtrackpos_6() const { return ___runtrackpos_6; } inline int32_t* get_address_of_runtrackpos_6() { return &___runtrackpos_6; } inline void set_runtrackpos_6(int32_t value) { ___runtrackpos_6 = value; } inline static int32_t get_offset_of_runstack_7() { return static_cast<int32_t>(offsetof(RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934, ___runstack_7)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_runstack_7() const { return ___runstack_7; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_runstack_7() { return &___runstack_7; } inline void set_runstack_7(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___runstack_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___runstack_7), (void*)value); } inline static int32_t get_offset_of_runstackpos_8() { return static_cast<int32_t>(offsetof(RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934, ___runstackpos_8)); } inline int32_t get_runstackpos_8() const { return ___runstackpos_8; } inline int32_t* get_address_of_runstackpos_8() { return &___runstackpos_8; } inline void set_runstackpos_8(int32_t value) { ___runstackpos_8 = value; } inline static int32_t get_offset_of_runcrawl_9() { return static_cast<int32_t>(offsetof(RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934, ___runcrawl_9)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_runcrawl_9() const { return ___runcrawl_9; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_runcrawl_9() { return &___runcrawl_9; } inline void set_runcrawl_9(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___runcrawl_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___runcrawl_9), (void*)value); } inline static int32_t get_offset_of_runcrawlpos_10() { return static_cast<int32_t>(offsetof(RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934, ___runcrawlpos_10)); } inline int32_t get_runcrawlpos_10() const { return ___runcrawlpos_10; } inline int32_t* get_address_of_runcrawlpos_10() { return &___runcrawlpos_10; } inline void set_runcrawlpos_10(int32_t value) { ___runcrawlpos_10 = value; } inline static int32_t get_offset_of_runtrackcount_11() { return static_cast<int32_t>(offsetof(RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934, ___runtrackcount_11)); } inline int32_t get_runtrackcount_11() const { return ___runtrackcount_11; } inline int32_t* get_address_of_runtrackcount_11() { return &___runtrackcount_11; } inline void set_runtrackcount_11(int32_t value) { ___runtrackcount_11 = value; } inline static int32_t get_offset_of_runmatch_12() { return static_cast<int32_t>(offsetof(RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934, ___runmatch_12)); } inline Match_t8CC0A47F766954F17AD4D1C1597754C8F576464B * get_runmatch_12() const { return ___runmatch_12; } inline Match_t8CC0A47F766954F17AD4D1C1597754C8F576464B ** get_address_of_runmatch_12() { return &___runmatch_12; } inline void set_runmatch_12(Match_t8CC0A47F766954F17AD4D1C1597754C8F576464B * value) { ___runmatch_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___runmatch_12), (void*)value); } inline static int32_t get_offset_of_runregex_13() { return static_cast<int32_t>(offsetof(RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934, ___runregex_13)); } inline Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F * get_runregex_13() const { return ___runregex_13; } inline Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F ** get_address_of_runregex_13() { return &___runregex_13; } inline void set_runregex_13(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F * value) { ___runregex_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___runregex_13), (void*)value); } inline static int32_t get_offset_of_timeout_14() { return static_cast<int32_t>(offsetof(RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934, ___timeout_14)); } inline int32_t get_timeout_14() const { return ___timeout_14; } inline int32_t* get_address_of_timeout_14() { return &___timeout_14; } inline void set_timeout_14(int32_t value) { ___timeout_14 = value; } inline static int32_t get_offset_of_ignoreTimeout_15() { return static_cast<int32_t>(offsetof(RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934, ___ignoreTimeout_15)); } inline bool get_ignoreTimeout_15() const { return ___ignoreTimeout_15; } inline bool* get_address_of_ignoreTimeout_15() { return &___ignoreTimeout_15; } inline void set_ignoreTimeout_15(bool value) { ___ignoreTimeout_15 = value; } inline static int32_t get_offset_of_timeoutOccursAt_16() { return static_cast<int32_t>(offsetof(RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934, ___timeoutOccursAt_16)); } inline int32_t get_timeoutOccursAt_16() const { return ___timeoutOccursAt_16; } inline int32_t* get_address_of_timeoutOccursAt_16() { return &___timeoutOccursAt_16; } inline void set_timeoutOccursAt_16(int32_t value) { ___timeoutOccursAt_16 = value; } inline static int32_t get_offset_of_timeoutChecksToSkip_17() { return static_cast<int32_t>(offsetof(RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934, ___timeoutChecksToSkip_17)); } inline int32_t get_timeoutChecksToSkip_17() const { return ___timeoutChecksToSkip_17; } inline int32_t* get_address_of_timeoutChecksToSkip_17() { return &___timeoutChecksToSkip_17; } inline void set_timeoutChecksToSkip_17(int32_t value) { ___timeoutChecksToSkip_17 = value; } }; // System.Text.RegularExpressions.RegexRunnerFactory struct RegexRunnerFactory_tA425EC5DC77FC0AAD86EB116E5483E94679CAA96 : public RuntimeObject { public: public: }; // System.Text.RegularExpressions.RegexWriter struct RegexWriter_t958027B0548A09589F03657633037085BACFC7B5 : public RuntimeObject { public: // System.Int32[] System.Text.RegularExpressions.RegexWriter::_intStack Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ____intStack_0; // System.Int32 System.Text.RegularExpressions.RegexWriter::_depth int32_t ____depth_1; // System.Int32[] System.Text.RegularExpressions.RegexWriter::_emitted Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ____emitted_2; // System.Int32 System.Text.RegularExpressions.RegexWriter::_curpos int32_t ____curpos_3; // System.Collections.Generic.Dictionary`2<System.String,System.Int32> System.Text.RegularExpressions.RegexWriter::_stringhash Dictionary_2_tC94E9875910491F8130C2DC8B11E4D1548A55162 * ____stringhash_4; // System.Collections.Generic.List`1<System.String> System.Text.RegularExpressions.RegexWriter::_stringtable List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * ____stringtable_5; // System.Boolean System.Text.RegularExpressions.RegexWriter::_counting bool ____counting_6; // System.Int32 System.Text.RegularExpressions.RegexWriter::_count int32_t ____count_7; // System.Int32 System.Text.RegularExpressions.RegexWriter::_trackcount int32_t ____trackcount_8; // System.Collections.Hashtable System.Text.RegularExpressions.RegexWriter::_caps Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * ____caps_9; public: inline static int32_t get_offset_of__intStack_0() { return static_cast<int32_t>(offsetof(RegexWriter_t958027B0548A09589F03657633037085BACFC7B5, ____intStack_0)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get__intStack_0() const { return ____intStack_0; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of__intStack_0() { return &____intStack_0; } inline void set__intStack_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ____intStack_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____intStack_0), (void*)value); } inline static int32_t get_offset_of__depth_1() { return static_cast<int32_t>(offsetof(RegexWriter_t958027B0548A09589F03657633037085BACFC7B5, ____depth_1)); } inline int32_t get__depth_1() const { return ____depth_1; } inline int32_t* get_address_of__depth_1() { return &____depth_1; } inline void set__depth_1(int32_t value) { ____depth_1 = value; } inline static int32_t get_offset_of__emitted_2() { return static_cast<int32_t>(offsetof(RegexWriter_t958027B0548A09589F03657633037085BACFC7B5, ____emitted_2)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get__emitted_2() const { return ____emitted_2; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of__emitted_2() { return &____emitted_2; } inline void set__emitted_2(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ____emitted_2 = value; Il2CppCodeGenWriteBarrier((void**)(&____emitted_2), (void*)value); } inline static int32_t get_offset_of__curpos_3() { return static_cast<int32_t>(offsetof(RegexWriter_t958027B0548A09589F03657633037085BACFC7B5, ____curpos_3)); } inline int32_t get__curpos_3() const { return ____curpos_3; } inline int32_t* get_address_of__curpos_3() { return &____curpos_3; } inline void set__curpos_3(int32_t value) { ____curpos_3 = value; } inline static int32_t get_offset_of__stringhash_4() { return static_cast<int32_t>(offsetof(RegexWriter_t958027B0548A09589F03657633037085BACFC7B5, ____stringhash_4)); } inline Dictionary_2_tC94E9875910491F8130C2DC8B11E4D1548A55162 * get__stringhash_4() const { return ____stringhash_4; } inline Dictionary_2_tC94E9875910491F8130C2DC8B11E4D1548A55162 ** get_address_of__stringhash_4() { return &____stringhash_4; } inline void set__stringhash_4(Dictionary_2_tC94E9875910491F8130C2DC8B11E4D1548A55162 * value) { ____stringhash_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____stringhash_4), (void*)value); } inline static int32_t get_offset_of__stringtable_5() { return static_cast<int32_t>(offsetof(RegexWriter_t958027B0548A09589F03657633037085BACFC7B5, ____stringtable_5)); } inline List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * get__stringtable_5() const { return ____stringtable_5; } inline List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 ** get_address_of__stringtable_5() { return &____stringtable_5; } inline void set__stringtable_5(List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * value) { ____stringtable_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____stringtable_5), (void*)value); } inline static int32_t get_offset_of__counting_6() { return static_cast<int32_t>(offsetof(RegexWriter_t958027B0548A09589F03657633037085BACFC7B5, ____counting_6)); } inline bool get__counting_6() const { return ____counting_6; } inline bool* get_address_of__counting_6() { return &____counting_6; } inline void set__counting_6(bool value) { ____counting_6 = value; } inline static int32_t get_offset_of__count_7() { return static_cast<int32_t>(offsetof(RegexWriter_t958027B0548A09589F03657633037085BACFC7B5, ____count_7)); } inline int32_t get__count_7() const { return ____count_7; } inline int32_t* get_address_of__count_7() { return &____count_7; } inline void set__count_7(int32_t value) { ____count_7 = value; } inline static int32_t get_offset_of__trackcount_8() { return static_cast<int32_t>(offsetof(RegexWriter_t958027B0548A09589F03657633037085BACFC7B5, ____trackcount_8)); } inline int32_t get__trackcount_8() const { return ____trackcount_8; } inline int32_t* get_address_of__trackcount_8() { return &____trackcount_8; } inline void set__trackcount_8(int32_t value) { ____trackcount_8 = value; } inline static int32_t get_offset_of__caps_9() { return static_cast<int32_t>(offsetof(RegexWriter_t958027B0548A09589F03657633037085BACFC7B5, ____caps_9)); } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * get__caps_9() const { return ____caps_9; } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC ** get_address_of__caps_9() { return &____caps_9; } inline void set__caps_9(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * value) { ____caps_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____caps_9), (void*)value); } }; // SR struct SR_t7C9BB2906843BCE54155B2E99C05E0687AEB25FC : public RuntimeObject { public: public: }; // System.Runtime.Serialization.SerializationInfo struct SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 : public RuntimeObject { public: // System.String[] System.Runtime.Serialization.SerializationInfo::m_members StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___m_members_3; // System.Object[] System.Runtime.Serialization.SerializationInfo::m_data ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___m_data_4; // System.Type[] System.Runtime.Serialization.SerializationInfo::m_types TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* ___m_types_5; // System.Collections.Generic.Dictionary`2<System.String,System.Int32> System.Runtime.Serialization.SerializationInfo::m_nameToIndex Dictionary_2_tC94E9875910491F8130C2DC8B11E4D1548A55162 * ___m_nameToIndex_6; // System.Int32 System.Runtime.Serialization.SerializationInfo::m_currMember int32_t ___m_currMember_7; // System.Runtime.Serialization.IFormatterConverter System.Runtime.Serialization.SerializationInfo::m_converter RuntimeObject* ___m_converter_8; // System.String System.Runtime.Serialization.SerializationInfo::m_fullTypeName String_t* ___m_fullTypeName_9; // System.String System.Runtime.Serialization.SerializationInfo::m_assemName String_t* ___m_assemName_10; // System.Type System.Runtime.Serialization.SerializationInfo::objectType Type_t * ___objectType_11; // System.Boolean System.Runtime.Serialization.SerializationInfo::isFullTypeNameSetExplicit bool ___isFullTypeNameSetExplicit_12; // System.Boolean System.Runtime.Serialization.SerializationInfo::isAssemblyNameSetExplicit bool ___isAssemblyNameSetExplicit_13; // System.Boolean System.Runtime.Serialization.SerializationInfo::requireSameTokenInPartialTrust bool ___requireSameTokenInPartialTrust_14; public: inline static int32_t get_offset_of_m_members_3() { return static_cast<int32_t>(offsetof(SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1, ___m_members_3)); } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get_m_members_3() const { return ___m_members_3; } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of_m_members_3() { return &___m_members_3; } inline void set_m_members_3(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value) { ___m_members_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_members_3), (void*)value); } inline static int32_t get_offset_of_m_data_4() { return static_cast<int32_t>(offsetof(SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1, ___m_data_4)); } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get_m_data_4() const { return ___m_data_4; } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of_m_data_4() { return &___m_data_4; } inline void set_m_data_4(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value) { ___m_data_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_data_4), (void*)value); } inline static int32_t get_offset_of_m_types_5() { return static_cast<int32_t>(offsetof(SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1, ___m_types_5)); } inline TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* get_m_types_5() const { return ___m_types_5; } inline TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755** get_address_of_m_types_5() { return &___m_types_5; } inline void set_m_types_5(TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* value) { ___m_types_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_types_5), (void*)value); } inline static int32_t get_offset_of_m_nameToIndex_6() { return static_cast<int32_t>(offsetof(SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1, ___m_nameToIndex_6)); } inline Dictionary_2_tC94E9875910491F8130C2DC8B11E4D1548A55162 * get_m_nameToIndex_6() const { return ___m_nameToIndex_6; } inline Dictionary_2_tC94E9875910491F8130C2DC8B11E4D1548A55162 ** get_address_of_m_nameToIndex_6() { return &___m_nameToIndex_6; } inline void set_m_nameToIndex_6(Dictionary_2_tC94E9875910491F8130C2DC8B11E4D1548A55162 * value) { ___m_nameToIndex_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_nameToIndex_6), (void*)value); } inline static int32_t get_offset_of_m_currMember_7() { return static_cast<int32_t>(offsetof(SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1, ___m_currMember_7)); } inline int32_t get_m_currMember_7() const { return ___m_currMember_7; } inline int32_t* get_address_of_m_currMember_7() { return &___m_currMember_7; } inline void set_m_currMember_7(int32_t value) { ___m_currMember_7 = value; } inline static int32_t get_offset_of_m_converter_8() { return static_cast<int32_t>(offsetof(SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1, ___m_converter_8)); } inline RuntimeObject* get_m_converter_8() const { return ___m_converter_8; } inline RuntimeObject** get_address_of_m_converter_8() { return &___m_converter_8; } inline void set_m_converter_8(RuntimeObject* value) { ___m_converter_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_converter_8), (void*)value); } inline static int32_t get_offset_of_m_fullTypeName_9() { return static_cast<int32_t>(offsetof(SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1, ___m_fullTypeName_9)); } inline String_t* get_m_fullTypeName_9() const { return ___m_fullTypeName_9; } inline String_t** get_address_of_m_fullTypeName_9() { return &___m_fullTypeName_9; } inline void set_m_fullTypeName_9(String_t* value) { ___m_fullTypeName_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_fullTypeName_9), (void*)value); } inline static int32_t get_offset_of_m_assemName_10() { return static_cast<int32_t>(offsetof(SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1, ___m_assemName_10)); } inline String_t* get_m_assemName_10() const { return ___m_assemName_10; } inline String_t** get_address_of_m_assemName_10() { return &___m_assemName_10; } inline void set_m_assemName_10(String_t* value) { ___m_assemName_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_assemName_10), (void*)value); } inline static int32_t get_offset_of_objectType_11() { return static_cast<int32_t>(offsetof(SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1, ___objectType_11)); } inline Type_t * get_objectType_11() const { return ___objectType_11; } inline Type_t ** get_address_of_objectType_11() { return &___objectType_11; } inline void set_objectType_11(Type_t * value) { ___objectType_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___objectType_11), (void*)value); } inline static int32_t get_offset_of_isFullTypeNameSetExplicit_12() { return static_cast<int32_t>(offsetof(SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1, ___isFullTypeNameSetExplicit_12)); } inline bool get_isFullTypeNameSetExplicit_12() const { return ___isFullTypeNameSetExplicit_12; } inline bool* get_address_of_isFullTypeNameSetExplicit_12() { return &___isFullTypeNameSetExplicit_12; } inline void set_isFullTypeNameSetExplicit_12(bool value) { ___isFullTypeNameSetExplicit_12 = value; } inline static int32_t get_offset_of_isAssemblyNameSetExplicit_13() { return static_cast<int32_t>(offsetof(SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1, ___isAssemblyNameSetExplicit_13)); } inline bool get_isAssemblyNameSetExplicit_13() const { return ___isAssemblyNameSetExplicit_13; } inline bool* get_address_of_isAssemblyNameSetExplicit_13() { return &___isAssemblyNameSetExplicit_13; } inline void set_isAssemblyNameSetExplicit_13(bool value) { ___isAssemblyNameSetExplicit_13 = value; } inline static int32_t get_offset_of_requireSameTokenInPartialTrust_14() { return static_cast<int32_t>(offsetof(SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1, ___requireSameTokenInPartialTrust_14)); } inline bool get_requireSameTokenInPartialTrust_14() const { return ___requireSameTokenInPartialTrust_14; } inline bool* get_address_of_requireSameTokenInPartialTrust_14() { return &___requireSameTokenInPartialTrust_14; } inline void set_requireSameTokenInPartialTrust_14(bool value) { ___requireSameTokenInPartialTrust_14 = value; } }; // System.Text.RegularExpressions.SharedReference struct SharedReference_t74AB40C102A76A7523C72269A49D2C8FBDD83926 : public RuntimeObject { public: // System.WeakReference System.Text.RegularExpressions.SharedReference::_ref WeakReference_tB8558D16C98417FD98C920C42C0CC5C9FF825C76 * ____ref_0; public: inline static int32_t get_offset_of__ref_0() { return static_cast<int32_t>(offsetof(SharedReference_t74AB40C102A76A7523C72269A49D2C8FBDD83926, ____ref_0)); } inline WeakReference_tB8558D16C98417FD98C920C42C0CC5C9FF825C76 * get__ref_0() const { return ____ref_0; } inline WeakReference_tB8558D16C98417FD98C920C42C0CC5C9FF825C76 ** get_address_of__ref_0() { return &____ref_0; } inline void set__ref_0(WeakReference_tB8558D16C98417FD98C920C42C0CC5C9FF825C76 * value) { ____ref_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____ref_0), (void*)value); } }; // System.Diagnostics.Stopwatch struct Stopwatch_t78C5E942A89311381E0D8894576457C33462DF89 : public RuntimeObject { public: // System.Int64 System.Diagnostics.Stopwatch::elapsed int64_t ___elapsed_2; // System.Int64 System.Diagnostics.Stopwatch::started int64_t ___started_3; // System.Boolean System.Diagnostics.Stopwatch::is_running bool ___is_running_4; public: inline static int32_t get_offset_of_elapsed_2() { return static_cast<int32_t>(offsetof(Stopwatch_t78C5E942A89311381E0D8894576457C33462DF89, ___elapsed_2)); } inline int64_t get_elapsed_2() const { return ___elapsed_2; } inline int64_t* get_address_of_elapsed_2() { return &___elapsed_2; } inline void set_elapsed_2(int64_t value) { ___elapsed_2 = value; } inline static int32_t get_offset_of_started_3() { return static_cast<int32_t>(offsetof(Stopwatch_t78C5E942A89311381E0D8894576457C33462DF89, ___started_3)); } inline int64_t get_started_3() const { return ___started_3; } inline int64_t* get_address_of_started_3() { return &___started_3; } inline void set_started_3(int64_t value) { ___started_3 = value; } inline static int32_t get_offset_of_is_running_4() { return static_cast<int32_t>(offsetof(Stopwatch_t78C5E942A89311381E0D8894576457C33462DF89, ___is_running_4)); } inline bool get_is_running_4() const { return ___is_running_4; } inline bool* get_address_of_is_running_4() { return &___is_running_4; } inline void set_is_running_4(bool value) { ___is_running_4 = value; } }; struct Stopwatch_t78C5E942A89311381E0D8894576457C33462DF89_StaticFields { public: // System.Int64 System.Diagnostics.Stopwatch::Frequency int64_t ___Frequency_0; // System.Boolean System.Diagnostics.Stopwatch::IsHighResolution bool ___IsHighResolution_1; public: inline static int32_t get_offset_of_Frequency_0() { return static_cast<int32_t>(offsetof(Stopwatch_t78C5E942A89311381E0D8894576457C33462DF89_StaticFields, ___Frequency_0)); } inline int64_t get_Frequency_0() const { return ___Frequency_0; } inline int64_t* get_address_of_Frequency_0() { return &___Frequency_0; } inline void set_Frequency_0(int64_t value) { ___Frequency_0 = value; } inline static int32_t get_offset_of_IsHighResolution_1() { return static_cast<int32_t>(offsetof(Stopwatch_t78C5E942A89311381E0D8894576457C33462DF89_StaticFields, ___IsHighResolution_1)); } inline bool get_IsHighResolution_1() const { return ___IsHighResolution_1; } inline bool* get_address_of_IsHighResolution_1() { return &___IsHighResolution_1; } inline void set_IsHighResolution_1(bool value) { ___IsHighResolution_1 = 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.Text.StringBuilder struct StringBuilder_t : public RuntimeObject { public: // System.Char[] System.Text.StringBuilder::m_ChunkChars CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___m_ChunkChars_0; // System.Text.StringBuilder System.Text.StringBuilder::m_ChunkPrevious StringBuilder_t * ___m_ChunkPrevious_1; // System.Int32 System.Text.StringBuilder::m_ChunkLength int32_t ___m_ChunkLength_2; // System.Int32 System.Text.StringBuilder::m_ChunkOffset int32_t ___m_ChunkOffset_3; // System.Int32 System.Text.StringBuilder::m_MaxCapacity int32_t ___m_MaxCapacity_4; public: inline static int32_t get_offset_of_m_ChunkChars_0() { return static_cast<int32_t>(offsetof(StringBuilder_t, ___m_ChunkChars_0)); } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get_m_ChunkChars_0() const { return ___m_ChunkChars_0; } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of_m_ChunkChars_0() { return &___m_ChunkChars_0; } inline void set_m_ChunkChars_0(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value) { ___m_ChunkChars_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_ChunkChars_0), (void*)value); } inline static int32_t get_offset_of_m_ChunkPrevious_1() { return static_cast<int32_t>(offsetof(StringBuilder_t, ___m_ChunkPrevious_1)); } inline StringBuilder_t * get_m_ChunkPrevious_1() const { return ___m_ChunkPrevious_1; } inline StringBuilder_t ** get_address_of_m_ChunkPrevious_1() { return &___m_ChunkPrevious_1; } inline void set_m_ChunkPrevious_1(StringBuilder_t * value) { ___m_ChunkPrevious_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_ChunkPrevious_1), (void*)value); } inline static int32_t get_offset_of_m_ChunkLength_2() { return static_cast<int32_t>(offsetof(StringBuilder_t, ___m_ChunkLength_2)); } inline int32_t get_m_ChunkLength_2() const { return ___m_ChunkLength_2; } inline int32_t* get_address_of_m_ChunkLength_2() { return &___m_ChunkLength_2; } inline void set_m_ChunkLength_2(int32_t value) { ___m_ChunkLength_2 = value; } inline static int32_t get_offset_of_m_ChunkOffset_3() { return static_cast<int32_t>(offsetof(StringBuilder_t, ___m_ChunkOffset_3)); } inline int32_t get_m_ChunkOffset_3() const { return ___m_ChunkOffset_3; } inline int32_t* get_address_of_m_ChunkOffset_3() { return &___m_ChunkOffset_3; } inline void set_m_ChunkOffset_3(int32_t value) { ___m_ChunkOffset_3 = value; } inline static int32_t get_offset_of_m_MaxCapacity_4() { return static_cast<int32_t>(offsetof(StringBuilder_t, ___m_MaxCapacity_4)); } inline int32_t get_m_MaxCapacity_4() const { return ___m_MaxCapacity_4; } inline int32_t* get_address_of_m_MaxCapacity_4() { return &___m_MaxCapacity_4; } inline void set_m_MaxCapacity_4(int32_t value) { ___m_MaxCapacity_4 = value; } }; // System.StringComparer struct StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 : public RuntimeObject { public: public: }; struct StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6_StaticFields { public: // System.StringComparer System.StringComparer::_invariantCulture StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 * ____invariantCulture_0; // System.StringComparer System.StringComparer::_invariantCultureIgnoreCase StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 * ____invariantCultureIgnoreCase_1; // System.StringComparer System.StringComparer::_ordinal StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 * ____ordinal_2; // System.StringComparer System.StringComparer::_ordinalIgnoreCase StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 * ____ordinalIgnoreCase_3; public: inline static int32_t get_offset_of__invariantCulture_0() { return static_cast<int32_t>(offsetof(StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6_StaticFields, ____invariantCulture_0)); } inline StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 * get__invariantCulture_0() const { return ____invariantCulture_0; } inline StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 ** get_address_of__invariantCulture_0() { return &____invariantCulture_0; } inline void set__invariantCulture_0(StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 * value) { ____invariantCulture_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____invariantCulture_0), (void*)value); } inline static int32_t get_offset_of__invariantCultureIgnoreCase_1() { return static_cast<int32_t>(offsetof(StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6_StaticFields, ____invariantCultureIgnoreCase_1)); } inline StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 * get__invariantCultureIgnoreCase_1() const { return ____invariantCultureIgnoreCase_1; } inline StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 ** get_address_of__invariantCultureIgnoreCase_1() { return &____invariantCultureIgnoreCase_1; } inline void set__invariantCultureIgnoreCase_1(StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 * value) { ____invariantCultureIgnoreCase_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____invariantCultureIgnoreCase_1), (void*)value); } inline static int32_t get_offset_of__ordinal_2() { return static_cast<int32_t>(offsetof(StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6_StaticFields, ____ordinal_2)); } inline StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 * get__ordinal_2() const { return ____ordinal_2; } inline StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 ** get_address_of__ordinal_2() { return &____ordinal_2; } inline void set__ordinal_2(StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 * value) { ____ordinal_2 = value; Il2CppCodeGenWriteBarrier((void**)(&____ordinal_2), (void*)value); } inline static int32_t get_offset_of__ordinalIgnoreCase_3() { return static_cast<int32_t>(offsetof(StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6_StaticFields, ____ordinalIgnoreCase_3)); } inline StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 * get__ordinalIgnoreCase_3() const { return ____ordinalIgnoreCase_3; } inline StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 ** get_address_of__ordinalIgnoreCase_3() { return &____ordinalIgnoreCase_3; } inline void set__ordinalIgnoreCase_3(StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 * value) { ____ordinalIgnoreCase_3 = value; Il2CppCodeGenWriteBarrier((void**)(&____ordinalIgnoreCase_3), (void*)value); } }; // System.UncNameHelper struct UncNameHelper_t8588082B217370E41636ED5A9EF5A608858709E9 : public RuntimeObject { public: public: }; // System.ValueType struct ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52 : public RuntimeObject { public: public: }; // Native definition for P/Invoke marshalling of System.ValueType struct ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52_marshaled_pinvoke { }; // Native definition for COM marshalling of System.ValueType struct ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52_marshaled_com { }; // System.Uri/MoreInfo struct MoreInfo_t15D42286ECE8DAD0B0FE9CDC1291109300C3E727 : public RuntimeObject { public: // System.Int32 System.Uri/MoreInfo::Hash int32_t ___Hash_0; // System.String System.Uri/MoreInfo::RemoteUrl String_t* ___RemoteUrl_1; public: inline static int32_t get_offset_of_Hash_0() { return static_cast<int32_t>(offsetof(MoreInfo_t15D42286ECE8DAD0B0FE9CDC1291109300C3E727, ___Hash_0)); } inline int32_t get_Hash_0() const { return ___Hash_0; } inline int32_t* get_address_of_Hash_0() { return &___Hash_0; } inline void set_Hash_0(int32_t value) { ___Hash_0 = value; } inline static int32_t get_offset_of_RemoteUrl_1() { return static_cast<int32_t>(offsetof(MoreInfo_t15D42286ECE8DAD0B0FE9CDC1291109300C3E727, ___RemoteUrl_1)); } inline String_t* get_RemoteUrl_1() const { return ___RemoteUrl_1; } inline String_t** get_address_of_RemoteUrl_1() { return &___RemoteUrl_1; } inline void set_RemoteUrl_1(String_t* value) { ___RemoteUrl_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___RemoteUrl_1), (void*)value); } }; // System.Boolean struct Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37 { public: // System.Boolean System.Boolean::m_value bool ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37, ___m_value_0)); } inline bool get_m_value_0() const { return ___m_value_0; } inline bool* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(bool value) { ___m_value_0 = value; } }; struct Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_StaticFields { public: // System.String System.Boolean::TrueString String_t* ___TrueString_5; // System.String System.Boolean::FalseString String_t* ___FalseString_6; public: inline static int32_t get_offset_of_TrueString_5() { return static_cast<int32_t>(offsetof(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_StaticFields, ___TrueString_5)); } inline String_t* get_TrueString_5() const { return ___TrueString_5; } inline String_t** get_address_of_TrueString_5() { return &___TrueString_5; } inline void set_TrueString_5(String_t* value) { ___TrueString_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___TrueString_5), (void*)value); } inline static int32_t get_offset_of_FalseString_6() { return static_cast<int32_t>(offsetof(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_StaticFields, ___FalseString_6)); } inline String_t* get_FalseString_6() const { return ___FalseString_6; } inline String_t** get_address_of_FalseString_6() { return &___FalseString_6; } inline void set_FalseString_6(String_t* value) { ___FalseString_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___FalseString_6), (void*)value); } }; // System.Byte struct Byte_t0111FAB8B8685667EDDAF77683F0D8F86B659056 { public: // System.Byte System.Byte::m_value uint8_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Byte_t0111FAB8B8685667EDDAF77683F0D8F86B659056, ___m_value_0)); } inline uint8_t get_m_value_0() const { return ___m_value_0; } inline uint8_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(uint8_t value) { ___m_value_0 = value; } }; // System.Char struct Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14 { public: // System.Char System.Char::m_value Il2CppChar ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14, ___m_value_0)); } inline Il2CppChar get_m_value_0() const { return ___m_value_0; } inline Il2CppChar* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(Il2CppChar value) { ___m_value_0 = value; } }; struct Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_StaticFields { public: // System.Byte[] System.Char::categoryForLatin1 ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___categoryForLatin1_3; public: inline static int32_t get_offset_of_categoryForLatin1_3() { return static_cast<int32_t>(offsetof(Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_StaticFields, ___categoryForLatin1_3)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_categoryForLatin1_3() const { return ___categoryForLatin1_3; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_categoryForLatin1_3() { return &___categoryForLatin1_3; } inline void set_categoryForLatin1_3(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___categoryForLatin1_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___categoryForLatin1_3), (void*)value); } }; // System.Configuration.ConfigurationSection struct ConfigurationSection_t0D68AA1EA007506253A4935DB9F357AF9B50C683 : public ConfigurationElement_t571C446CFDFF39CF17130653C433786BEFF25DFA { public: public: }; // System.Double struct Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181 { public: // System.Double System.Double::m_value double ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181, ___m_value_0)); } inline double get_m_value_0() const { return ___m_value_0; } inline double* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(double value) { ___m_value_0 = value; } }; struct Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181_StaticFields { public: // System.Double System.Double::NegativeZero double ___NegativeZero_7; public: inline static int32_t get_offset_of_NegativeZero_7() { return static_cast<int32_t>(offsetof(Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181_StaticFields, ___NegativeZero_7)); } inline double get_NegativeZero_7() const { return ___NegativeZero_7; } inline double* get_address_of_NegativeZero_7() { return &___NegativeZero_7; } inline void set_NegativeZero_7(double value) { ___NegativeZero_7 = value; } }; // System.Enum struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA : public ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52 { public: public: }; struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA_StaticFields { public: // System.Char[] System.Enum::enumSeperatorCharArray CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___enumSeperatorCharArray_0; public: inline static int32_t get_offset_of_enumSeperatorCharArray_0() { return static_cast<int32_t>(offsetof(Enum_t23B90B40F60E677A8025267341651C94AE079CDA_StaticFields, ___enumSeperatorCharArray_0)); } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get_enumSeperatorCharArray_0() const { return ___enumSeperatorCharArray_0; } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of_enumSeperatorCharArray_0() { return &___enumSeperatorCharArray_0; } inline void set_enumSeperatorCharArray_0(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value) { ___enumSeperatorCharArray_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___enumSeperatorCharArray_0), (void*)value); } }; // Native definition for P/Invoke marshalling of System.Enum struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA_marshaled_pinvoke { }; // Native definition for COM marshalling of System.Enum struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA_marshaled_com { }; // System.Runtime.InteropServices.GCHandle struct GCHandle_t757890BC4BBBEDE5A623A3C110013EDD24613603 { public: // System.Int32 System.Runtime.InteropServices.GCHandle::handle int32_t ___handle_0; public: inline static int32_t get_offset_of_handle_0() { return static_cast<int32_t>(offsetof(GCHandle_t757890BC4BBBEDE5A623A3C110013EDD24613603, ___handle_0)); } inline int32_t get_handle_0() const { return ___handle_0; } inline int32_t* get_address_of_handle_0() { return &___handle_0; } inline void set_handle_0(int32_t value) { ___handle_0 = value; } }; // System.Text.RegularExpressions.Group struct Group_t0B987F132503F2672BC66FCDD21EA8A6EB484883 : public Capture_t048191E7E0D3177DCD8610E4968075AB41FB91D6 { public: // System.Int32[] System.Text.RegularExpressions.Group::_caps Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ____caps_4; // System.Int32 System.Text.RegularExpressions.Group::_capcount int32_t ____capcount_5; // System.String System.Text.RegularExpressions.Group::_name String_t* ____name_6; public: inline static int32_t get_offset_of__caps_4() { return static_cast<int32_t>(offsetof(Group_t0B987F132503F2672BC66FCDD21EA8A6EB484883, ____caps_4)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get__caps_4() const { return ____caps_4; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of__caps_4() { return &____caps_4; } inline void set__caps_4(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ____caps_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____caps_4), (void*)value); } inline static int32_t get_offset_of__capcount_5() { return static_cast<int32_t>(offsetof(Group_t0B987F132503F2672BC66FCDD21EA8A6EB484883, ____capcount_5)); } inline int32_t get__capcount_5() const { return ____capcount_5; } inline int32_t* get_address_of__capcount_5() { return &____capcount_5; } inline void set__capcount_5(int32_t value) { ____capcount_5 = value; } inline static int32_t get_offset_of__name_6() { return static_cast<int32_t>(offsetof(Group_t0B987F132503F2672BC66FCDD21EA8A6EB484883, ____name_6)); } inline String_t* get__name_6() const { return ____name_6; } inline String_t** get_address_of__name_6() { return &____name_6; } inline void set__name_6(String_t* value) { ____name_6 = value; Il2CppCodeGenWriteBarrier((void**)(&____name_6), (void*)value); } }; struct Group_t0B987F132503F2672BC66FCDD21EA8A6EB484883_StaticFields { public: // System.Text.RegularExpressions.Group System.Text.RegularExpressions.Group::_emptygroup Group_t0B987F132503F2672BC66FCDD21EA8A6EB484883 * ____emptygroup_3; public: inline static int32_t get_offset_of__emptygroup_3() { return static_cast<int32_t>(offsetof(Group_t0B987F132503F2672BC66FCDD21EA8A6EB484883_StaticFields, ____emptygroup_3)); } inline Group_t0B987F132503F2672BC66FCDD21EA8A6EB484883 * get__emptygroup_3() const { return ____emptygroup_3; } inline Group_t0B987F132503F2672BC66FCDD21EA8A6EB484883 ** get_address_of__emptygroup_3() { return &____emptygroup_3; } inline void set__emptygroup_3(Group_t0B987F132503F2672BC66FCDD21EA8A6EB484883 * value) { ____emptygroup_3 = value; Il2CppCodeGenWriteBarrier((void**)(&____emptygroup_3), (void*)value); } }; // System.Int32 struct Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046 { public: // System.Int32 System.Int32::m_value int32_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046, ___m_value_0)); } inline int32_t get_m_value_0() const { return ___m_value_0; } inline int32_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(int32_t value) { ___m_value_0 = value; } }; // System.Int64 struct Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3 { public: // System.Int64 System.Int64::m_value int64_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3, ___m_value_0)); } inline int64_t get_m_value_0() const { return ___m_value_0; } inline int64_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(int64_t value) { ___m_value_0 = value; } }; // System.IntPtr struct IntPtr_t { public: // System.Void* System.IntPtr::m_value void* ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(IntPtr_t, ___m_value_0)); } inline void* get_m_value_0() const { return ___m_value_0; } inline void** get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(void* value) { ___m_value_0 = value; } }; struct IntPtr_t_StaticFields { public: // System.IntPtr System.IntPtr::Zero intptr_t ___Zero_1; public: inline static int32_t get_offset_of_Zero_1() { return static_cast<int32_t>(offsetof(IntPtr_t_StaticFields, ___Zero_1)); } inline intptr_t get_Zero_1() const { return ___Zero_1; } inline intptr_t* get_address_of_Zero_1() { return &___Zero_1; } inline void set_Zero_1(intptr_t value) { ___Zero_1 = value; } }; // System.Text.RegularExpressions.RegexInterpreter struct RegexInterpreter_tF3C74D72240962B960AE4D39D9CF1632C9C2982E : public RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 { public: // System.Int32 System.Text.RegularExpressions.RegexInterpreter::runoperator int32_t ___runoperator_18; // System.Int32[] System.Text.RegularExpressions.RegexInterpreter::runcodes Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___runcodes_19; // System.Int32 System.Text.RegularExpressions.RegexInterpreter::runcodepos int32_t ___runcodepos_20; // System.String[] System.Text.RegularExpressions.RegexInterpreter::runstrings StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___runstrings_21; // System.Text.RegularExpressions.RegexCode System.Text.RegularExpressions.RegexInterpreter::runcode RegexCode_tF1653432E8EEDED5AB9517D09CA84B5FAA3CC0D5 * ___runcode_22; // System.Text.RegularExpressions.RegexPrefix System.Text.RegularExpressions.RegexInterpreter::runfcPrefix RegexPrefix_t1563C82A76799B0B018F5EBD6EC068158BE50301 * ___runfcPrefix_23; // System.Text.RegularExpressions.RegexBoyerMoore System.Text.RegularExpressions.RegexInterpreter::runbmPrefix RegexBoyerMoore_t43FE488EFF3EE20D1092216B7E62D954F78167D2 * ___runbmPrefix_24; // System.Int32 System.Text.RegularExpressions.RegexInterpreter::runanchors int32_t ___runanchors_25; // System.Boolean System.Text.RegularExpressions.RegexInterpreter::runrtl bool ___runrtl_26; // System.Boolean System.Text.RegularExpressions.RegexInterpreter::runci bool ___runci_27; // System.Globalization.CultureInfo System.Text.RegularExpressions.RegexInterpreter::runculture CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * ___runculture_28; public: inline static int32_t get_offset_of_runoperator_18() { return static_cast<int32_t>(offsetof(RegexInterpreter_tF3C74D72240962B960AE4D39D9CF1632C9C2982E, ___runoperator_18)); } inline int32_t get_runoperator_18() const { return ___runoperator_18; } inline int32_t* get_address_of_runoperator_18() { return &___runoperator_18; } inline void set_runoperator_18(int32_t value) { ___runoperator_18 = value; } inline static int32_t get_offset_of_runcodes_19() { return static_cast<int32_t>(offsetof(RegexInterpreter_tF3C74D72240962B960AE4D39D9CF1632C9C2982E, ___runcodes_19)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_runcodes_19() const { return ___runcodes_19; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_runcodes_19() { return &___runcodes_19; } inline void set_runcodes_19(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ___runcodes_19 = value; Il2CppCodeGenWriteBarrier((void**)(&___runcodes_19), (void*)value); } inline static int32_t get_offset_of_runcodepos_20() { return static_cast<int32_t>(offsetof(RegexInterpreter_tF3C74D72240962B960AE4D39D9CF1632C9C2982E, ___runcodepos_20)); } inline int32_t get_runcodepos_20() const { return ___runcodepos_20; } inline int32_t* get_address_of_runcodepos_20() { return &___runcodepos_20; } inline void set_runcodepos_20(int32_t value) { ___runcodepos_20 = value; } inline static int32_t get_offset_of_runstrings_21() { return static_cast<int32_t>(offsetof(RegexInterpreter_tF3C74D72240962B960AE4D39D9CF1632C9C2982E, ___runstrings_21)); } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get_runstrings_21() const { return ___runstrings_21; } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of_runstrings_21() { return &___runstrings_21; } inline void set_runstrings_21(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value) { ___runstrings_21 = value; Il2CppCodeGenWriteBarrier((void**)(&___runstrings_21), (void*)value); } inline static int32_t get_offset_of_runcode_22() { return static_cast<int32_t>(offsetof(RegexInterpreter_tF3C74D72240962B960AE4D39D9CF1632C9C2982E, ___runcode_22)); } inline RegexCode_tF1653432E8EEDED5AB9517D09CA84B5FAA3CC0D5 * get_runcode_22() const { return ___runcode_22; } inline RegexCode_tF1653432E8EEDED5AB9517D09CA84B5FAA3CC0D5 ** get_address_of_runcode_22() { return &___runcode_22; } inline void set_runcode_22(RegexCode_tF1653432E8EEDED5AB9517D09CA84B5FAA3CC0D5 * value) { ___runcode_22 = value; Il2CppCodeGenWriteBarrier((void**)(&___runcode_22), (void*)value); } inline static int32_t get_offset_of_runfcPrefix_23() { return static_cast<int32_t>(offsetof(RegexInterpreter_tF3C74D72240962B960AE4D39D9CF1632C9C2982E, ___runfcPrefix_23)); } inline RegexPrefix_t1563C82A76799B0B018F5EBD6EC068158BE50301 * get_runfcPrefix_23() const { return ___runfcPrefix_23; } inline RegexPrefix_t1563C82A76799B0B018F5EBD6EC068158BE50301 ** get_address_of_runfcPrefix_23() { return &___runfcPrefix_23; } inline void set_runfcPrefix_23(RegexPrefix_t1563C82A76799B0B018F5EBD6EC068158BE50301 * value) { ___runfcPrefix_23 = value; Il2CppCodeGenWriteBarrier((void**)(&___runfcPrefix_23), (void*)value); } inline static int32_t get_offset_of_runbmPrefix_24() { return static_cast<int32_t>(offsetof(RegexInterpreter_tF3C74D72240962B960AE4D39D9CF1632C9C2982E, ___runbmPrefix_24)); } inline RegexBoyerMoore_t43FE488EFF3EE20D1092216B7E62D954F78167D2 * get_runbmPrefix_24() const { return ___runbmPrefix_24; } inline RegexBoyerMoore_t43FE488EFF3EE20D1092216B7E62D954F78167D2 ** get_address_of_runbmPrefix_24() { return &___runbmPrefix_24; } inline void set_runbmPrefix_24(RegexBoyerMoore_t43FE488EFF3EE20D1092216B7E62D954F78167D2 * value) { ___runbmPrefix_24 = value; Il2CppCodeGenWriteBarrier((void**)(&___runbmPrefix_24), (void*)value); } inline static int32_t get_offset_of_runanchors_25() { return static_cast<int32_t>(offsetof(RegexInterpreter_tF3C74D72240962B960AE4D39D9CF1632C9C2982E, ___runanchors_25)); } inline int32_t get_runanchors_25() const { return ___runanchors_25; } inline int32_t* get_address_of_runanchors_25() { return &___runanchors_25; } inline void set_runanchors_25(int32_t value) { ___runanchors_25 = value; } inline static int32_t get_offset_of_runrtl_26() { return static_cast<int32_t>(offsetof(RegexInterpreter_tF3C74D72240962B960AE4D39D9CF1632C9C2982E, ___runrtl_26)); } inline bool get_runrtl_26() const { return ___runrtl_26; } inline bool* get_address_of_runrtl_26() { return &___runrtl_26; } inline void set_runrtl_26(bool value) { ___runrtl_26 = value; } inline static int32_t get_offset_of_runci_27() { return static_cast<int32_t>(offsetof(RegexInterpreter_tF3C74D72240962B960AE4D39D9CF1632C9C2982E, ___runci_27)); } inline bool get_runci_27() const { return ___runci_27; } inline bool* get_address_of_runci_27() { return &___runci_27; } inline void set_runci_27(bool value) { ___runci_27 = value; } inline static int32_t get_offset_of_runculture_28() { return static_cast<int32_t>(offsetof(RegexInterpreter_tF3C74D72240962B960AE4D39D9CF1632C9C2982E, ___runculture_28)); } inline CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * get_runculture_28() const { return ___runculture_28; } inline CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 ** get_address_of_runculture_28() { return &___runculture_28; } inline void set_runculture_28(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * value) { ___runculture_28 = value; Il2CppCodeGenWriteBarrier((void**)(&___runculture_28), (void*)value); } }; // System.Net.Configuration.ServicePointManagerElement struct ServicePointManagerElement_tBDFCD14FA5A9ABB1BE70A69621349A23B402989C : public ConfigurationElement_t571C446CFDFF39CF17130653C433786BEFF25DFA { public: public: }; // System.Net.Configuration.SocketElement struct SocketElement_t3A1494C40F44B3BE110D39607B00AE67C9962450 : public ConfigurationElement_t571C446CFDFF39CF17130653C433786BEFF25DFA { public: public: }; // System.ComponentModel.TypeConverterAttribute struct TypeConverterAttribute_t2C9750F302F83A7710D031C00A7CEBDA8F0C3F83 : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71 { public: // System.String System.ComponentModel.TypeConverterAttribute::typeName String_t* ___typeName_0; public: inline static int32_t get_offset_of_typeName_0() { return static_cast<int32_t>(offsetof(TypeConverterAttribute_t2C9750F302F83A7710D031C00A7CEBDA8F0C3F83, ___typeName_0)); } inline String_t* get_typeName_0() const { return ___typeName_0; } inline String_t** get_address_of_typeName_0() { return &___typeName_0; } inline void set_typeName_0(String_t* value) { ___typeName_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___typeName_0), (void*)value); } }; struct TypeConverterAttribute_t2C9750F302F83A7710D031C00A7CEBDA8F0C3F83_StaticFields { public: // System.ComponentModel.TypeConverterAttribute System.ComponentModel.TypeConverterAttribute::Default TypeConverterAttribute_t2C9750F302F83A7710D031C00A7CEBDA8F0C3F83 * ___Default_1; public: inline static int32_t get_offset_of_Default_1() { return static_cast<int32_t>(offsetof(TypeConverterAttribute_t2C9750F302F83A7710D031C00A7CEBDA8F0C3F83_StaticFields, ___Default_1)); } inline TypeConverterAttribute_t2C9750F302F83A7710D031C00A7CEBDA8F0C3F83 * get_Default_1() const { return ___Default_1; } inline TypeConverterAttribute_t2C9750F302F83A7710D031C00A7CEBDA8F0C3F83 ** get_address_of_Default_1() { return &___Default_1; } inline void set_Default_1(TypeConverterAttribute_t2C9750F302F83A7710D031C00A7CEBDA8F0C3F83 * value) { ___Default_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___Default_1), (void*)value); } }; // System.UInt16 struct UInt16_t894EA9D4FB7C799B244E7BBF2DF0EEEDBC77A8BD { public: // System.UInt16 System.UInt16::m_value uint16_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(UInt16_t894EA9D4FB7C799B244E7BBF2DF0EEEDBC77A8BD, ___m_value_0)); } inline uint16_t get_m_value_0() const { return ___m_value_0; } inline uint16_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(uint16_t value) { ___m_value_0 = value; } }; // System.Void struct Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5 { public: union { struct { }; uint8_t Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5__padding[1]; }; public: }; // <PrivateImplementationDetails>/__StaticArrayInitTypeSizeU3D128 struct __StaticArrayInitTypeSizeU3D128_t2C1166FE3CC05212DD55648859D997CA8842A83B { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D128_t2C1166FE3CC05212DD55648859D997CA8842A83B__padding[128]; }; public: }; // <PrivateImplementationDetails>/__StaticArrayInitTypeSizeU3D32 struct __StaticArrayInitTypeSizeU3D32_tD37BEF7101998702862991181C721026AB96A59F { public: union { struct { union { }; }; uint8_t __StaticArrayInitTypeSizeU3D32_tD37BEF7101998702862991181C721026AB96A59F__padding[32]; }; public: }; // System.Uri/Offset #pragma pack(push, tp, 1) struct Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 { public: // System.UInt16 System.Uri/Offset::Scheme uint16_t ___Scheme_0; // System.UInt16 System.Uri/Offset::User uint16_t ___User_1; // System.UInt16 System.Uri/Offset::Host uint16_t ___Host_2; // System.UInt16 System.Uri/Offset::PortValue uint16_t ___PortValue_3; // System.UInt16 System.Uri/Offset::Path uint16_t ___Path_4; // System.UInt16 System.Uri/Offset::Query uint16_t ___Query_5; // System.UInt16 System.Uri/Offset::Fragment uint16_t ___Fragment_6; // System.UInt16 System.Uri/Offset::End uint16_t ___End_7; public: inline static int32_t get_offset_of_Scheme_0() { return static_cast<int32_t>(offsetof(Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5, ___Scheme_0)); } inline uint16_t get_Scheme_0() const { return ___Scheme_0; } inline uint16_t* get_address_of_Scheme_0() { return &___Scheme_0; } inline void set_Scheme_0(uint16_t value) { ___Scheme_0 = value; } inline static int32_t get_offset_of_User_1() { return static_cast<int32_t>(offsetof(Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5, ___User_1)); } inline uint16_t get_User_1() const { return ___User_1; } inline uint16_t* get_address_of_User_1() { return &___User_1; } inline void set_User_1(uint16_t value) { ___User_1 = value; } inline static int32_t get_offset_of_Host_2() { return static_cast<int32_t>(offsetof(Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5, ___Host_2)); } inline uint16_t get_Host_2() const { return ___Host_2; } inline uint16_t* get_address_of_Host_2() { return &___Host_2; } inline void set_Host_2(uint16_t value) { ___Host_2 = value; } inline static int32_t get_offset_of_PortValue_3() { return static_cast<int32_t>(offsetof(Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5, ___PortValue_3)); } inline uint16_t get_PortValue_3() const { return ___PortValue_3; } inline uint16_t* get_address_of_PortValue_3() { return &___PortValue_3; } inline void set_PortValue_3(uint16_t value) { ___PortValue_3 = value; } inline static int32_t get_offset_of_Path_4() { return static_cast<int32_t>(offsetof(Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5, ___Path_4)); } inline uint16_t get_Path_4() const { return ___Path_4; } inline uint16_t* get_address_of_Path_4() { return &___Path_4; } inline void set_Path_4(uint16_t value) { ___Path_4 = value; } inline static int32_t get_offset_of_Query_5() { return static_cast<int32_t>(offsetof(Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5, ___Query_5)); } inline uint16_t get_Query_5() const { return ___Query_5; } inline uint16_t* get_address_of_Query_5() { return &___Query_5; } inline void set_Query_5(uint16_t value) { ___Query_5 = value; } inline static int32_t get_offset_of_Fragment_6() { return static_cast<int32_t>(offsetof(Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5, ___Fragment_6)); } inline uint16_t get_Fragment_6() const { return ___Fragment_6; } inline uint16_t* get_address_of_Fragment_6() { return &___Fragment_6; } inline void set_Fragment_6(uint16_t value) { ___Fragment_6 = value; } inline static int32_t get_offset_of_End_7() { return static_cast<int32_t>(offsetof(Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5, ___End_7)); } inline uint16_t get_End_7() const { return ___End_7; } inline uint16_t* get_address_of_End_7() { return &___End_7; } inline void set_End_7(uint16_t value) { ___End_7 = value; } }; #pragma pack(pop, tp) // <PrivateImplementationDetails> struct U3CPrivateImplementationDetailsU3E_t1267FAF6E08D720F26ABF676554E6948A7F6A2D0 : public RuntimeObject { public: public: }; struct U3CPrivateImplementationDetailsU3E_t1267FAF6E08D720F26ABF676554E6948A7F6A2D0_StaticFields { public: // <PrivateImplementationDetails>/__StaticArrayInitTypeSizeU3D32 <PrivateImplementationDetails>::59F5BD34B6C013DEACC784F69C67E95150033A84 __StaticArrayInitTypeSizeU3D32_tD37BEF7101998702862991181C721026AB96A59F ___59F5BD34B6C013DEACC784F69C67E95150033A84_0; // <PrivateImplementationDetails>/__StaticArrayInitTypeSizeU3D32 <PrivateImplementationDetails>::C02C28AFEBE998F767E4AF43E3BE8F5E9FA11536 __StaticArrayInitTypeSizeU3D32_tD37BEF7101998702862991181C721026AB96A59F ___C02C28AFEBE998F767E4AF43E3BE8F5E9FA11536_1; // <PrivateImplementationDetails>/__StaticArrayInitTypeSizeU3D128 <PrivateImplementationDetails>::CCEEADA43268372341F81AE0C9208C6856441C04 __StaticArrayInitTypeSizeU3D128_t2C1166FE3CC05212DD55648859D997CA8842A83B ___CCEEADA43268372341F81AE0C9208C6856441C04_2; // System.Int64 <PrivateImplementationDetails>::E5BC1BAFADE1862DD6E0B9FB632BFAA6C3873A78 int64_t ___E5BC1BAFADE1862DD6E0B9FB632BFAA6C3873A78_3; public: inline static int32_t get_offset_of_U359F5BD34B6C013DEACC784F69C67E95150033A84_0() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t1267FAF6E08D720F26ABF676554E6948A7F6A2D0_StaticFields, ___59F5BD34B6C013DEACC784F69C67E95150033A84_0)); } inline __StaticArrayInitTypeSizeU3D32_tD37BEF7101998702862991181C721026AB96A59F get_U359F5BD34B6C013DEACC784F69C67E95150033A84_0() const { return ___59F5BD34B6C013DEACC784F69C67E95150033A84_0; } inline __StaticArrayInitTypeSizeU3D32_tD37BEF7101998702862991181C721026AB96A59F * get_address_of_U359F5BD34B6C013DEACC784F69C67E95150033A84_0() { return &___59F5BD34B6C013DEACC784F69C67E95150033A84_0; } inline void set_U359F5BD34B6C013DEACC784F69C67E95150033A84_0(__StaticArrayInitTypeSizeU3D32_tD37BEF7101998702862991181C721026AB96A59F value) { ___59F5BD34B6C013DEACC784F69C67E95150033A84_0 = value; } inline static int32_t get_offset_of_C02C28AFEBE998F767E4AF43E3BE8F5E9FA11536_1() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t1267FAF6E08D720F26ABF676554E6948A7F6A2D0_StaticFields, ___C02C28AFEBE998F767E4AF43E3BE8F5E9FA11536_1)); } inline __StaticArrayInitTypeSizeU3D32_tD37BEF7101998702862991181C721026AB96A59F get_C02C28AFEBE998F767E4AF43E3BE8F5E9FA11536_1() const { return ___C02C28AFEBE998F767E4AF43E3BE8F5E9FA11536_1; } inline __StaticArrayInitTypeSizeU3D32_tD37BEF7101998702862991181C721026AB96A59F * get_address_of_C02C28AFEBE998F767E4AF43E3BE8F5E9FA11536_1() { return &___C02C28AFEBE998F767E4AF43E3BE8F5E9FA11536_1; } inline void set_C02C28AFEBE998F767E4AF43E3BE8F5E9FA11536_1(__StaticArrayInitTypeSizeU3D32_tD37BEF7101998702862991181C721026AB96A59F value) { ___C02C28AFEBE998F767E4AF43E3BE8F5E9FA11536_1 = value; } inline static int32_t get_offset_of_CCEEADA43268372341F81AE0C9208C6856441C04_2() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t1267FAF6E08D720F26ABF676554E6948A7F6A2D0_StaticFields, ___CCEEADA43268372341F81AE0C9208C6856441C04_2)); } inline __StaticArrayInitTypeSizeU3D128_t2C1166FE3CC05212DD55648859D997CA8842A83B get_CCEEADA43268372341F81AE0C9208C6856441C04_2() const { return ___CCEEADA43268372341F81AE0C9208C6856441C04_2; } inline __StaticArrayInitTypeSizeU3D128_t2C1166FE3CC05212DD55648859D997CA8842A83B * get_address_of_CCEEADA43268372341F81AE0C9208C6856441C04_2() { return &___CCEEADA43268372341F81AE0C9208C6856441C04_2; } inline void set_CCEEADA43268372341F81AE0C9208C6856441C04_2(__StaticArrayInitTypeSizeU3D128_t2C1166FE3CC05212DD55648859D997CA8842A83B value) { ___CCEEADA43268372341F81AE0C9208C6856441C04_2 = value; } inline static int32_t get_offset_of_E5BC1BAFADE1862DD6E0B9FB632BFAA6C3873A78_3() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_t1267FAF6E08D720F26ABF676554E6948A7F6A2D0_StaticFields, ___E5BC1BAFADE1862DD6E0B9FB632BFAA6C3873A78_3)); } inline int64_t get_E5BC1BAFADE1862DD6E0B9FB632BFAA6C3873A78_3() const { return ___E5BC1BAFADE1862DD6E0B9FB632BFAA6C3873A78_3; } inline int64_t* get_address_of_E5BC1BAFADE1862DD6E0B9FB632BFAA6C3873A78_3() { return &___E5BC1BAFADE1862DD6E0B9FB632BFAA6C3873A78_3; } inline void set_E5BC1BAFADE1862DD6E0B9FB632BFAA6C3873A78_3(int64_t value) { ___E5BC1BAFADE1862DD6E0B9FB632BFAA6C3873A78_3 = value; } }; // System.Reflection.BindingFlags struct BindingFlags_tAAAB07D9AC588F0D55D844E51D7035E96DF94733 { public: // System.Int32 System.Reflection.BindingFlags::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(BindingFlags_tAAAB07D9AC588F0D55D844E51D7035E96DF94733, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Exception struct Exception_t : public RuntimeObject { public: // System.String System.Exception::_className String_t* ____className_1; // System.String System.Exception::_message String_t* ____message_2; // System.Collections.IDictionary System.Exception::_data RuntimeObject* ____data_3; // System.Exception System.Exception::_innerException Exception_t * ____innerException_4; // System.String System.Exception::_helpURL String_t* ____helpURL_5; // System.Object System.Exception::_stackTrace RuntimeObject * ____stackTrace_6; // System.String System.Exception::_stackTraceString String_t* ____stackTraceString_7; // System.String System.Exception::_remoteStackTraceString String_t* ____remoteStackTraceString_8; // System.Int32 System.Exception::_remoteStackIndex int32_t ____remoteStackIndex_9; // System.Object System.Exception::_dynamicMethods RuntimeObject * ____dynamicMethods_10; // System.Int32 System.Exception::_HResult int32_t ____HResult_11; // System.String System.Exception::_source String_t* ____source_12; // System.Runtime.Serialization.SafeSerializationManager System.Exception::_safeSerializationManager SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * ____safeSerializationManager_13; // System.Diagnostics.StackTrace[] System.Exception::captured_traces StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* ___captured_traces_14; // System.IntPtr[] System.Exception::native_trace_ips IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6* ___native_trace_ips_15; public: inline static int32_t get_offset_of__className_1() { return static_cast<int32_t>(offsetof(Exception_t, ____className_1)); } inline String_t* get__className_1() const { return ____className_1; } inline String_t** get_address_of__className_1() { return &____className_1; } inline void set__className_1(String_t* value) { ____className_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____className_1), (void*)value); } inline static int32_t get_offset_of__message_2() { return static_cast<int32_t>(offsetof(Exception_t, ____message_2)); } inline String_t* get__message_2() const { return ____message_2; } inline String_t** get_address_of__message_2() { return &____message_2; } inline void set__message_2(String_t* value) { ____message_2 = value; Il2CppCodeGenWriteBarrier((void**)(&____message_2), (void*)value); } inline static int32_t get_offset_of__data_3() { return static_cast<int32_t>(offsetof(Exception_t, ____data_3)); } inline RuntimeObject* get__data_3() const { return ____data_3; } inline RuntimeObject** get_address_of__data_3() { return &____data_3; } inline void set__data_3(RuntimeObject* value) { ____data_3 = value; Il2CppCodeGenWriteBarrier((void**)(&____data_3), (void*)value); } inline static int32_t get_offset_of__innerException_4() { return static_cast<int32_t>(offsetof(Exception_t, ____innerException_4)); } inline Exception_t * get__innerException_4() const { return ____innerException_4; } inline Exception_t ** get_address_of__innerException_4() { return &____innerException_4; } inline void set__innerException_4(Exception_t * value) { ____innerException_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____innerException_4), (void*)value); } inline static int32_t get_offset_of__helpURL_5() { return static_cast<int32_t>(offsetof(Exception_t, ____helpURL_5)); } inline String_t* get__helpURL_5() const { return ____helpURL_5; } inline String_t** get_address_of__helpURL_5() { return &____helpURL_5; } inline void set__helpURL_5(String_t* value) { ____helpURL_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____helpURL_5), (void*)value); } inline static int32_t get_offset_of__stackTrace_6() { return static_cast<int32_t>(offsetof(Exception_t, ____stackTrace_6)); } inline RuntimeObject * get__stackTrace_6() const { return ____stackTrace_6; } inline RuntimeObject ** get_address_of__stackTrace_6() { return &____stackTrace_6; } inline void set__stackTrace_6(RuntimeObject * value) { ____stackTrace_6 = value; Il2CppCodeGenWriteBarrier((void**)(&____stackTrace_6), (void*)value); } inline static int32_t get_offset_of__stackTraceString_7() { return static_cast<int32_t>(offsetof(Exception_t, ____stackTraceString_7)); } inline String_t* get__stackTraceString_7() const { return ____stackTraceString_7; } inline String_t** get_address_of__stackTraceString_7() { return &____stackTraceString_7; } inline void set__stackTraceString_7(String_t* value) { ____stackTraceString_7 = value; Il2CppCodeGenWriteBarrier((void**)(&____stackTraceString_7), (void*)value); } inline static int32_t get_offset_of__remoteStackTraceString_8() { return static_cast<int32_t>(offsetof(Exception_t, ____remoteStackTraceString_8)); } inline String_t* get__remoteStackTraceString_8() const { return ____remoteStackTraceString_8; } inline String_t** get_address_of__remoteStackTraceString_8() { return &____remoteStackTraceString_8; } inline void set__remoteStackTraceString_8(String_t* value) { ____remoteStackTraceString_8 = value; Il2CppCodeGenWriteBarrier((void**)(&____remoteStackTraceString_8), (void*)value); } inline static int32_t get_offset_of__remoteStackIndex_9() { return static_cast<int32_t>(offsetof(Exception_t, ____remoteStackIndex_9)); } inline int32_t get__remoteStackIndex_9() const { return ____remoteStackIndex_9; } inline int32_t* get_address_of__remoteStackIndex_9() { return &____remoteStackIndex_9; } inline void set__remoteStackIndex_9(int32_t value) { ____remoteStackIndex_9 = value; } inline static int32_t get_offset_of__dynamicMethods_10() { return static_cast<int32_t>(offsetof(Exception_t, ____dynamicMethods_10)); } inline RuntimeObject * get__dynamicMethods_10() const { return ____dynamicMethods_10; } inline RuntimeObject ** get_address_of__dynamicMethods_10() { return &____dynamicMethods_10; } inline void set__dynamicMethods_10(RuntimeObject * value) { ____dynamicMethods_10 = value; Il2CppCodeGenWriteBarrier((void**)(&____dynamicMethods_10), (void*)value); } inline static int32_t get_offset_of__HResult_11() { return static_cast<int32_t>(offsetof(Exception_t, ____HResult_11)); } inline int32_t get__HResult_11() const { return ____HResult_11; } inline int32_t* get_address_of__HResult_11() { return &____HResult_11; } inline void set__HResult_11(int32_t value) { ____HResult_11 = value; } inline static int32_t get_offset_of__source_12() { return static_cast<int32_t>(offsetof(Exception_t, ____source_12)); } inline String_t* get__source_12() const { return ____source_12; } inline String_t** get_address_of__source_12() { return &____source_12; } inline void set__source_12(String_t* value) { ____source_12 = value; Il2CppCodeGenWriteBarrier((void**)(&____source_12), (void*)value); } inline static int32_t get_offset_of__safeSerializationManager_13() { return static_cast<int32_t>(offsetof(Exception_t, ____safeSerializationManager_13)); } inline SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * get__safeSerializationManager_13() const { return ____safeSerializationManager_13; } inline SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F ** get_address_of__safeSerializationManager_13() { return &____safeSerializationManager_13; } inline void set__safeSerializationManager_13(SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * value) { ____safeSerializationManager_13 = value; Il2CppCodeGenWriteBarrier((void**)(&____safeSerializationManager_13), (void*)value); } inline static int32_t get_offset_of_captured_traces_14() { return static_cast<int32_t>(offsetof(Exception_t, ___captured_traces_14)); } inline StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* get_captured_traces_14() const { return ___captured_traces_14; } inline StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971** get_address_of_captured_traces_14() { return &___captured_traces_14; } inline void set_captured_traces_14(StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* value) { ___captured_traces_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___captured_traces_14), (void*)value); } inline static int32_t get_offset_of_native_trace_ips_15() { return static_cast<int32_t>(offsetof(Exception_t, ___native_trace_ips_15)); } inline IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6* get_native_trace_ips_15() const { return ___native_trace_ips_15; } inline IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6** get_address_of_native_trace_ips_15() { return &___native_trace_ips_15; } inline void set_native_trace_ips_15(IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6* value) { ___native_trace_ips_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___native_trace_ips_15), (void*)value); } }; struct Exception_t_StaticFields { public: // System.Object System.Exception::s_EDILock RuntimeObject * ___s_EDILock_0; public: inline static int32_t get_offset_of_s_EDILock_0() { return static_cast<int32_t>(offsetof(Exception_t_StaticFields, ___s_EDILock_0)); } inline RuntimeObject * get_s_EDILock_0() const { return ___s_EDILock_0; } inline RuntimeObject ** get_address_of_s_EDILock_0() { return &___s_EDILock_0; } inline void set_s_EDILock_0(RuntimeObject * value) { ___s_EDILock_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_EDILock_0), (void*)value); } }; // Native definition for P/Invoke marshalling of System.Exception struct Exception_t_marshaled_pinvoke { char* ____className_1; char* ____message_2; RuntimeObject* ____data_3; Exception_t_marshaled_pinvoke* ____innerException_4; char* ____helpURL_5; Il2CppIUnknown* ____stackTrace_6; char* ____stackTraceString_7; char* ____remoteStackTraceString_8; int32_t ____remoteStackIndex_9; Il2CppIUnknown* ____dynamicMethods_10; int32_t ____HResult_11; char* ____source_12; SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * ____safeSerializationManager_13; StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* ___captured_traces_14; Il2CppSafeArray/*NONE*/* ___native_trace_ips_15; }; // Native definition for COM marshalling of System.Exception struct Exception_t_marshaled_com { Il2CppChar* ____className_1; Il2CppChar* ____message_2; RuntimeObject* ____data_3; Exception_t_marshaled_com* ____innerException_4; Il2CppChar* ____helpURL_5; Il2CppIUnknown* ____stackTrace_6; Il2CppChar* ____stackTraceString_7; Il2CppChar* ____remoteStackTraceString_8; int32_t ____remoteStackIndex_9; Il2CppIUnknown* ____dynamicMethods_10; int32_t ____HResult_11; Il2CppChar* ____source_12; SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * ____safeSerializationManager_13; StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* ___captured_traces_14; Il2CppSafeArray/*NONE*/* ___native_trace_ips_15; }; // System.Collections.Hashtable struct Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC : public RuntimeObject { public: // System.Collections.Hashtable/bucket[] System.Collections.Hashtable::buckets bucketU5BU5D_tFE956DAEFB1D1C86A13EF247D7367BF60B55E190* ___buckets_10; // System.Int32 System.Collections.Hashtable::count int32_t ___count_11; // System.Int32 System.Collections.Hashtable::occupancy int32_t ___occupancy_12; // System.Int32 System.Collections.Hashtable::loadsize int32_t ___loadsize_13; // System.Single System.Collections.Hashtable::loadFactor float ___loadFactor_14; // System.Int32 modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Hashtable::version int32_t ___version_15; // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Hashtable::isWriterInProgress bool ___isWriterInProgress_16; // System.Collections.ICollection System.Collections.Hashtable::keys RuntimeObject* ___keys_17; // System.Collections.ICollection System.Collections.Hashtable::values RuntimeObject* ___values_18; // System.Collections.IEqualityComparer System.Collections.Hashtable::_keycomparer RuntimeObject* ____keycomparer_19; // System.Object System.Collections.Hashtable::_syncRoot RuntimeObject * ____syncRoot_20; public: inline static int32_t get_offset_of_buckets_10() { return static_cast<int32_t>(offsetof(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC, ___buckets_10)); } inline bucketU5BU5D_tFE956DAEFB1D1C86A13EF247D7367BF60B55E190* get_buckets_10() const { return ___buckets_10; } inline bucketU5BU5D_tFE956DAEFB1D1C86A13EF247D7367BF60B55E190** get_address_of_buckets_10() { return &___buckets_10; } inline void set_buckets_10(bucketU5BU5D_tFE956DAEFB1D1C86A13EF247D7367BF60B55E190* value) { ___buckets_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___buckets_10), (void*)value); } inline static int32_t get_offset_of_count_11() { return static_cast<int32_t>(offsetof(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC, ___count_11)); } inline int32_t get_count_11() const { return ___count_11; } inline int32_t* get_address_of_count_11() { return &___count_11; } inline void set_count_11(int32_t value) { ___count_11 = value; } inline static int32_t get_offset_of_occupancy_12() { return static_cast<int32_t>(offsetof(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC, ___occupancy_12)); } inline int32_t get_occupancy_12() const { return ___occupancy_12; } inline int32_t* get_address_of_occupancy_12() { return &___occupancy_12; } inline void set_occupancy_12(int32_t value) { ___occupancy_12 = value; } inline static int32_t get_offset_of_loadsize_13() { return static_cast<int32_t>(offsetof(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC, ___loadsize_13)); } inline int32_t get_loadsize_13() const { return ___loadsize_13; } inline int32_t* get_address_of_loadsize_13() { return &___loadsize_13; } inline void set_loadsize_13(int32_t value) { ___loadsize_13 = value; } inline static int32_t get_offset_of_loadFactor_14() { return static_cast<int32_t>(offsetof(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC, ___loadFactor_14)); } inline float get_loadFactor_14() const { return ___loadFactor_14; } inline float* get_address_of_loadFactor_14() { return &___loadFactor_14; } inline void set_loadFactor_14(float value) { ___loadFactor_14 = value; } inline static int32_t get_offset_of_version_15() { return static_cast<int32_t>(offsetof(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC, ___version_15)); } inline int32_t get_version_15() const { return ___version_15; } inline int32_t* get_address_of_version_15() { return &___version_15; } inline void set_version_15(int32_t value) { ___version_15 = value; } inline static int32_t get_offset_of_isWriterInProgress_16() { return static_cast<int32_t>(offsetof(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC, ___isWriterInProgress_16)); } inline bool get_isWriterInProgress_16() const { return ___isWriterInProgress_16; } inline bool* get_address_of_isWriterInProgress_16() { return &___isWriterInProgress_16; } inline void set_isWriterInProgress_16(bool value) { ___isWriterInProgress_16 = value; } inline static int32_t get_offset_of_keys_17() { return static_cast<int32_t>(offsetof(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC, ___keys_17)); } inline RuntimeObject* get_keys_17() const { return ___keys_17; } inline RuntimeObject** get_address_of_keys_17() { return &___keys_17; } inline void set_keys_17(RuntimeObject* value) { ___keys_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___keys_17), (void*)value); } inline static int32_t get_offset_of_values_18() { return static_cast<int32_t>(offsetof(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC, ___values_18)); } inline RuntimeObject* get_values_18() const { return ___values_18; } inline RuntimeObject** get_address_of_values_18() { return &___values_18; } inline void set_values_18(RuntimeObject* value) { ___values_18 = value; Il2CppCodeGenWriteBarrier((void**)(&___values_18), (void*)value); } inline static int32_t get_offset_of__keycomparer_19() { return static_cast<int32_t>(offsetof(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC, ____keycomparer_19)); } inline RuntimeObject* get__keycomparer_19() const { return ____keycomparer_19; } inline RuntimeObject** get_address_of__keycomparer_19() { return &____keycomparer_19; } inline void set__keycomparer_19(RuntimeObject* value) { ____keycomparer_19 = value; Il2CppCodeGenWriteBarrier((void**)(&____keycomparer_19), (void*)value); } inline static int32_t get_offset_of__syncRoot_20() { return static_cast<int32_t>(offsetof(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC, ____syncRoot_20)); } inline RuntimeObject * get__syncRoot_20() const { return ____syncRoot_20; } inline RuntimeObject ** get_address_of__syncRoot_20() { return &____syncRoot_20; } inline void set__syncRoot_20(RuntimeObject * value) { ____syncRoot_20 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_20), (void*)value); } }; // System.Int32Enum struct Int32Enum_t9B63F771913F2B6D586F1173B44A41FBE26F6B5C { public: // System.Int32 System.Int32Enum::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Int32Enum_t9B63F771913F2B6D586F1173B44A41FBE26F6B5C, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Text.RegularExpressions.Match struct Match_t8CC0A47F766954F17AD4D1C1597754C8F576464B : public Group_t0B987F132503F2672BC66FCDD21EA8A6EB484883 { public: // System.Text.RegularExpressions.Regex System.Text.RegularExpressions.Match::_regex Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F * ____regex_8; // System.Int32 System.Text.RegularExpressions.Match::_textbeg int32_t ____textbeg_9; // System.Int32 System.Text.RegularExpressions.Match::_textpos int32_t ____textpos_10; // System.Int32 System.Text.RegularExpressions.Match::_textend int32_t ____textend_11; // System.Int32 System.Text.RegularExpressions.Match::_textstart int32_t ____textstart_12; // System.Int32[][] System.Text.RegularExpressions.Match::_matches Int32U5BU5DU5BU5D_t104DBF1B996084AA19567FD32B02EDF88D044FAF* ____matches_13; // System.Int32[] System.Text.RegularExpressions.Match::_matchcount Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ____matchcount_14; // System.Boolean System.Text.RegularExpressions.Match::_balancing bool ____balancing_15; public: inline static int32_t get_offset_of__regex_8() { return static_cast<int32_t>(offsetof(Match_t8CC0A47F766954F17AD4D1C1597754C8F576464B, ____regex_8)); } inline Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F * get__regex_8() const { return ____regex_8; } inline Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F ** get_address_of__regex_8() { return &____regex_8; } inline void set__regex_8(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F * value) { ____regex_8 = value; Il2CppCodeGenWriteBarrier((void**)(&____regex_8), (void*)value); } inline static int32_t get_offset_of__textbeg_9() { return static_cast<int32_t>(offsetof(Match_t8CC0A47F766954F17AD4D1C1597754C8F576464B, ____textbeg_9)); } inline int32_t get__textbeg_9() const { return ____textbeg_9; } inline int32_t* get_address_of__textbeg_9() { return &____textbeg_9; } inline void set__textbeg_9(int32_t value) { ____textbeg_9 = value; } inline static int32_t get_offset_of__textpos_10() { return static_cast<int32_t>(offsetof(Match_t8CC0A47F766954F17AD4D1C1597754C8F576464B, ____textpos_10)); } inline int32_t get__textpos_10() const { return ____textpos_10; } inline int32_t* get_address_of__textpos_10() { return &____textpos_10; } inline void set__textpos_10(int32_t value) { ____textpos_10 = value; } inline static int32_t get_offset_of__textend_11() { return static_cast<int32_t>(offsetof(Match_t8CC0A47F766954F17AD4D1C1597754C8F576464B, ____textend_11)); } inline int32_t get__textend_11() const { return ____textend_11; } inline int32_t* get_address_of__textend_11() { return &____textend_11; } inline void set__textend_11(int32_t value) { ____textend_11 = value; } inline static int32_t get_offset_of__textstart_12() { return static_cast<int32_t>(offsetof(Match_t8CC0A47F766954F17AD4D1C1597754C8F576464B, ____textstart_12)); } inline int32_t get__textstart_12() const { return ____textstart_12; } inline int32_t* get_address_of__textstart_12() { return &____textstart_12; } inline void set__textstart_12(int32_t value) { ____textstart_12 = value; } inline static int32_t get_offset_of__matches_13() { return static_cast<int32_t>(offsetof(Match_t8CC0A47F766954F17AD4D1C1597754C8F576464B, ____matches_13)); } inline Int32U5BU5DU5BU5D_t104DBF1B996084AA19567FD32B02EDF88D044FAF* get__matches_13() const { return ____matches_13; } inline Int32U5BU5DU5BU5D_t104DBF1B996084AA19567FD32B02EDF88D044FAF** get_address_of__matches_13() { return &____matches_13; } inline void set__matches_13(Int32U5BU5DU5BU5D_t104DBF1B996084AA19567FD32B02EDF88D044FAF* value) { ____matches_13 = value; Il2CppCodeGenWriteBarrier((void**)(&____matches_13), (void*)value); } inline static int32_t get_offset_of__matchcount_14() { return static_cast<int32_t>(offsetof(Match_t8CC0A47F766954F17AD4D1C1597754C8F576464B, ____matchcount_14)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get__matchcount_14() const { return ____matchcount_14; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of__matchcount_14() { return &____matchcount_14; } inline void set__matchcount_14(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ____matchcount_14 = value; Il2CppCodeGenWriteBarrier((void**)(&____matchcount_14), (void*)value); } inline static int32_t get_offset_of__balancing_15() { return static_cast<int32_t>(offsetof(Match_t8CC0A47F766954F17AD4D1C1597754C8F576464B, ____balancing_15)); } inline bool get__balancing_15() const { return ____balancing_15; } inline bool* get_address_of__balancing_15() { return &____balancing_15; } inline void set__balancing_15(bool value) { ____balancing_15 = value; } }; struct Match_t8CC0A47F766954F17AD4D1C1597754C8F576464B_StaticFields { public: // System.Text.RegularExpressions.Match System.Text.RegularExpressions.Match::_empty Match_t8CC0A47F766954F17AD4D1C1597754C8F576464B * ____empty_7; public: inline static int32_t get_offset_of__empty_7() { return static_cast<int32_t>(offsetof(Match_t8CC0A47F766954F17AD4D1C1597754C8F576464B_StaticFields, ____empty_7)); } inline Match_t8CC0A47F766954F17AD4D1C1597754C8F576464B * get__empty_7() const { return ____empty_7; } inline Match_t8CC0A47F766954F17AD4D1C1597754C8F576464B ** get_address_of__empty_7() { return &____empty_7; } inline void set__empty_7(Match_t8CC0A47F766954F17AD4D1C1597754C8F576464B * value) { ____empty_7 = value; Il2CppCodeGenWriteBarrier((void**)(&____empty_7), (void*)value); } }; // System.Text.NormalizationForm struct NormalizationForm_tCCA9D5E33FA919BB4CA5AC071CE95B428F1BC91E { 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_tCCA9D5E33FA919BB4CA5AC071CE95B428F1BC91E, ___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.ParsingError struct ParsingError_t206602C537093ABC8FD300E67B6B1A67115D24BA { public: // System.Int32 System.ParsingError::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ParsingError_t206602C537093ABC8FD300E67B6B1A67115D24BA, ___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.RegularExpressions.RegexOptions struct RegexOptions_t8F8CD5BC6C55FC2B657722FD09ABDFDF5BA6F6A4 { public: // System.Int32 System.Text.RegularExpressions.RegexOptions::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(RegexOptions_t8F8CD5BC6C55FC2B657722FD09ABDFDF5BA6F6A4, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.RuntimeFieldHandle struct RuntimeFieldHandle_t7BE65FC857501059EBAC9772C93B02CD413D9C96 { public: // System.IntPtr System.RuntimeFieldHandle::value intptr_t ___value_0; public: inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(RuntimeFieldHandle_t7BE65FC857501059EBAC9772C93B02CD413D9C96, ___value_0)); } inline intptr_t get_value_0() const { return ___value_0; } inline intptr_t* get_address_of_value_0() { return &___value_0; } inline void set_value_0(intptr_t value) { ___value_0 = value; } }; // System.RuntimeTypeHandle struct RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 { public: // System.IntPtr System.RuntimeTypeHandle::value intptr_t ___value_0; public: inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9, ___value_0)); } inline intptr_t get_value_0() const { return ___value_0; } inline intptr_t* get_address_of_value_0() { return &___value_0; } inline void set_value_0(intptr_t value) { ___value_0 = value; } }; // System.Net.Configuration.SettingsSection struct SettingsSection_t711E6C3A32C96E69BF15E02FF55E58AF33EB95EB : public ConfigurationSection_t0D68AA1EA007506253A4935DB9F357AF9B50C683 { public: public: }; // System.Net.Sockets.SocketError struct SocketError_tA0135DFDFBD5E43BC2F44D8AAC13CDB444074F80 { public: // System.Int32 System.Net.Sockets.SocketError::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(SocketError_tA0135DFDFBD5E43BC2F44D8AAC13CDB444074F80, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Runtime.Serialization.StreamingContextStates struct StreamingContextStates_tF4C7FE6D6121BD4C67699869C8269A60B36B42C3 { public: // System.Int32 System.Runtime.Serialization.StreamingContextStates::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(StreamingContextStates_tF4C7FE6D6121BD4C67699869C8269A60B36B42C3, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.StringComparison struct StringComparison_tCC9F72B9B1E2C3C6D2566DD0D3A61E1621048998 { public: // System.Int32 System.StringComparison::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(StringComparison_tCC9F72B9B1E2C3C6D2566DD0D3A61E1621048998, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.TimeSpan struct TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 { public: // System.Int64 System.TimeSpan::_ticks int64_t ____ticks_3; public: inline static int32_t get_offset_of__ticks_3() { return static_cast<int32_t>(offsetof(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203, ____ticks_3)); } inline int64_t get__ticks_3() const { return ____ticks_3; } inline int64_t* get_address_of__ticks_3() { return &____ticks_3; } inline void set__ticks_3(int64_t value) { ____ticks_3 = value; } }; struct TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_StaticFields { public: // System.TimeSpan System.TimeSpan::Zero TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___Zero_0; // System.TimeSpan System.TimeSpan::MaxValue TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___MaxValue_1; // System.TimeSpan System.TimeSpan::MinValue TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___MinValue_2; // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.TimeSpan::_legacyConfigChecked bool ____legacyConfigChecked_4; // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.TimeSpan::_legacyMode bool ____legacyMode_5; public: inline static int32_t get_offset_of_Zero_0() { return static_cast<int32_t>(offsetof(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_StaticFields, ___Zero_0)); } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_Zero_0() const { return ___Zero_0; } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_Zero_0() { return &___Zero_0; } inline void set_Zero_0(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value) { ___Zero_0 = value; } inline static int32_t get_offset_of_MaxValue_1() { return static_cast<int32_t>(offsetof(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_StaticFields, ___MaxValue_1)); } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_MaxValue_1() const { return ___MaxValue_1; } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_MaxValue_1() { return &___MaxValue_1; } inline void set_MaxValue_1(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value) { ___MaxValue_1 = value; } inline static int32_t get_offset_of_MinValue_2() { return static_cast<int32_t>(offsetof(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_StaticFields, ___MinValue_2)); } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_MinValue_2() const { return ___MinValue_2; } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_MinValue_2() { return &___MinValue_2; } inline void set_MinValue_2(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value) { ___MinValue_2 = value; } inline static int32_t get_offset_of__legacyConfigChecked_4() { return static_cast<int32_t>(offsetof(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_StaticFields, ____legacyConfigChecked_4)); } inline bool get__legacyConfigChecked_4() const { return ____legacyConfigChecked_4; } inline bool* get_address_of__legacyConfigChecked_4() { return &____legacyConfigChecked_4; } inline void set__legacyConfigChecked_4(bool value) { ____legacyConfigChecked_4 = value; } inline static int32_t get_offset_of__legacyMode_5() { return static_cast<int32_t>(offsetof(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_StaticFields, ____legacyMode_5)); } inline bool get__legacyMode_5() const { return ____legacyMode_5; } inline bool* get_address_of__legacyMode_5() { return &____legacyMode_5; } inline void set__legacyMode_5(bool value) { ____legacyMode_5 = value; } }; // System.ComponentModel.TypeConverter struct TypeConverter_t004F185B630F00F509F08BD8F8D82471867323B4 : public RuntimeObject { public: public: }; struct TypeConverter_t004F185B630F00F509F08BD8F8D82471867323B4_StaticFields { public: // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.ComponentModel.TypeConverter::useCompatibleTypeConversion bool ___useCompatibleTypeConversion_1; public: inline static int32_t get_offset_of_useCompatibleTypeConversion_1() { return static_cast<int32_t>(offsetof(TypeConverter_t004F185B630F00F509F08BD8F8D82471867323B4_StaticFields, ___useCompatibleTypeConversion_1)); } inline bool get_useCompatibleTypeConversion_1() const { return ___useCompatibleTypeConversion_1; } inline bool* get_address_of_useCompatibleTypeConversion_1() { return &___useCompatibleTypeConversion_1; } inline void set_useCompatibleTypeConversion_1(bool value) { ___useCompatibleTypeConversion_1 = value; } }; // System.UnescapeMode struct UnescapeMode_tAAD72A439A031D63DA366126306CC0DDB9312850 { public: // System.Int32 System.UnescapeMode::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(UnescapeMode_tAAD72A439A031D63DA366126306CC0DDB9312850, ___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.UriComponents struct UriComponents_tA599793722A9810EC23036FF1B1B02A905B4EA76 { public: // System.Int32 System.UriComponents::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(UriComponents_tA599793722A9810EC23036FF1B1B02A905B4EA76, ___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.UriFormat struct UriFormat_t25C936463BDE737B16A8EC3DA05091FC31F1A71F { public: // System.Int32 System.UriFormat::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(UriFormat_t25C936463BDE737B16A8EC3DA05091FC31F1A71F, ___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.UriIdnScope struct UriIdnScope_tBA22B992BA582F68F2B98CDEBCB24299F249DE4D { public: // System.Int32 System.UriIdnScope::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(UriIdnScope_tBA22B992BA582F68F2B98CDEBCB24299F249DE4D, ___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.UriKind struct UriKind_tFC16ACC1842283AAE2C7F50C9C70EFBF6550B3FC { public: // System.Int32 System.UriKind::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(UriKind_tFC16ACC1842283AAE2C7F50C9C70EFBF6550B3FC, ___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.UriSyntaxFlags struct UriSyntaxFlags_t00ABF83A3AA06E5B670D3F73E3E87BC21F72044A { public: // System.Int32 System.UriSyntaxFlags::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(UriSyntaxFlags_t00ABF83A3AA06E5B670D3F73E3E87BC21F72044A, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.WeakReference struct WeakReference_tB8558D16C98417FD98C920C42C0CC5C9FF825C76 : public RuntimeObject { public: // System.Boolean System.WeakReference::isLongReference bool ___isLongReference_0; // System.Runtime.InteropServices.GCHandle System.WeakReference::gcHandle GCHandle_t757890BC4BBBEDE5A623A3C110013EDD24613603 ___gcHandle_1; public: inline static int32_t get_offset_of_isLongReference_0() { return static_cast<int32_t>(offsetof(WeakReference_tB8558D16C98417FD98C920C42C0CC5C9FF825C76, ___isLongReference_0)); } inline bool get_isLongReference_0() const { return ___isLongReference_0; } inline bool* get_address_of_isLongReference_0() { return &___isLongReference_0; } inline void set_isLongReference_0(bool value) { ___isLongReference_0 = value; } inline static int32_t get_offset_of_gcHandle_1() { return static_cast<int32_t>(offsetof(WeakReference_tB8558D16C98417FD98C920C42C0CC5C9FF825C76, ___gcHandle_1)); } inline GCHandle_t757890BC4BBBEDE5A623A3C110013EDD24613603 get_gcHandle_1() const { return ___gcHandle_1; } inline GCHandle_t757890BC4BBBEDE5A623A3C110013EDD24613603 * get_address_of_gcHandle_1() { return &___gcHandle_1; } inline void set_gcHandle_1(GCHandle_t757890BC4BBBEDE5A623A3C110013EDD24613603 value) { ___gcHandle_1 = value; } }; // System.Uri/Check struct Check_tEDA05554030AFFE9920C7E4C2233599B26DA74E8 { public: // System.Int32 System.Uri/Check::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Check_tEDA05554030AFFE9920C7E4C2233599B26DA74E8, ___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.Uri/Flags struct Flags_t72C622DF5C3ED762F55AB36EC2CCDDF3AF56B8D4 { public: // System.UInt64 System.Uri/Flags::value__ uint64_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Flags_t72C622DF5C3ED762F55AB36EC2CCDDF3AF56B8D4, ___value___2)); } inline uint64_t get_value___2() const { return ___value___2; } inline uint64_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(uint64_t value) { ___value___2 = value; } }; // System.Uri/UriInfo struct UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 : public RuntimeObject { public: // System.String System.Uri/UriInfo::Host String_t* ___Host_0; // System.String System.Uri/UriInfo::ScopeId String_t* ___ScopeId_1; // System.String System.Uri/UriInfo::String String_t* ___String_2; // System.Uri/Offset System.Uri/UriInfo::Offset Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 ___Offset_3; // System.String System.Uri/UriInfo::DnsSafeHost String_t* ___DnsSafeHost_4; // System.Uri/MoreInfo System.Uri/UriInfo::MoreInfo MoreInfo_t15D42286ECE8DAD0B0FE9CDC1291109300C3E727 * ___MoreInfo_5; public: inline static int32_t get_offset_of_Host_0() { return static_cast<int32_t>(offsetof(UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45, ___Host_0)); } inline String_t* get_Host_0() const { return ___Host_0; } inline String_t** get_address_of_Host_0() { return &___Host_0; } inline void set_Host_0(String_t* value) { ___Host_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___Host_0), (void*)value); } inline static int32_t get_offset_of_ScopeId_1() { return static_cast<int32_t>(offsetof(UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45, ___ScopeId_1)); } inline String_t* get_ScopeId_1() const { return ___ScopeId_1; } inline String_t** get_address_of_ScopeId_1() { return &___ScopeId_1; } inline void set_ScopeId_1(String_t* value) { ___ScopeId_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___ScopeId_1), (void*)value); } inline static int32_t get_offset_of_String_2() { return static_cast<int32_t>(offsetof(UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45, ___String_2)); } inline String_t* get_String_2() const { return ___String_2; } inline String_t** get_address_of_String_2() { return &___String_2; } inline void set_String_2(String_t* value) { ___String_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___String_2), (void*)value); } inline static int32_t get_offset_of_Offset_3() { return static_cast<int32_t>(offsetof(UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45, ___Offset_3)); } inline Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 get_Offset_3() const { return ___Offset_3; } inline Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * get_address_of_Offset_3() { return &___Offset_3; } inline void set_Offset_3(Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 value) { ___Offset_3 = value; } inline static int32_t get_offset_of_DnsSafeHost_4() { return static_cast<int32_t>(offsetof(UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45, ___DnsSafeHost_4)); } inline String_t* get_DnsSafeHost_4() const { return ___DnsSafeHost_4; } inline String_t** get_address_of_DnsSafeHost_4() { return &___DnsSafeHost_4; } inline void set_DnsSafeHost_4(String_t* value) { ___DnsSafeHost_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___DnsSafeHost_4), (void*)value); } inline static int32_t get_offset_of_MoreInfo_5() { return static_cast<int32_t>(offsetof(UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45, ___MoreInfo_5)); } inline MoreInfo_t15D42286ECE8DAD0B0FE9CDC1291109300C3E727 * get_MoreInfo_5() const { return ___MoreInfo_5; } inline MoreInfo_t15D42286ECE8DAD0B0FE9CDC1291109300C3E727 ** get_address_of_MoreInfo_5() { return &___MoreInfo_5; } inline void set_MoreInfo_5(MoreInfo_t15D42286ECE8DAD0B0FE9CDC1291109300C3E727 * value) { ___MoreInfo_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___MoreInfo_5), (void*)value); } }; // System.UriParser/UriQuirksVersion struct UriQuirksVersion_t5A2A88A1D01D0CBC52BC12C612CC1A7F714E79B6 { public: // System.Int32 System.UriParser/UriQuirksVersion::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(UriQuirksVersion_t5A2A88A1D01D0CBC52BC12C612CC1A7F714E79B6, ___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.ComponentModel.BaseNumberConverter struct BaseNumberConverter_t6CA2001CE79249FCF74FC888710AAD5CA23B748C : public TypeConverter_t004F185B630F00F509F08BD8F8D82471867323B4 { public: public: }; // System.Text.RegularExpressions.MatchSparse struct MatchSparse_tF4A7983ADA82DB12269F4D384E7C2D15F0D32694 : public Match_t8CC0A47F766954F17AD4D1C1597754C8F576464B { public: // System.Collections.Hashtable System.Text.RegularExpressions.MatchSparse::_caps Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * ____caps_16; public: inline static int32_t get_offset_of__caps_16() { return static_cast<int32_t>(offsetof(MatchSparse_tF4A7983ADA82DB12269F4D384E7C2D15F0D32694, ____caps_16)); } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * get__caps_16() const { return ____caps_16; } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC ** get_address_of__caps_16() { return &____caps_16; } inline void set__caps_16(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * value) { ____caps_16 = value; Il2CppCodeGenWriteBarrier((void**)(&____caps_16), (void*)value); } }; // System.Text.RegularExpressions.Regex struct Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F : public RuntimeObject { public: // System.String System.Text.RegularExpressions.Regex::pattern String_t* ___pattern_0; // System.Text.RegularExpressions.RegexRunnerFactory System.Text.RegularExpressions.Regex::factory RegexRunnerFactory_tA425EC5DC77FC0AAD86EB116E5483E94679CAA96 * ___factory_1; // System.Text.RegularExpressions.RegexOptions System.Text.RegularExpressions.Regex::roptions int32_t ___roptions_2; // System.TimeSpan System.Text.RegularExpressions.Regex::internalMatchTimeout TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___internalMatchTimeout_5; // System.Collections.Hashtable System.Text.RegularExpressions.Regex::caps Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * ___caps_8; // System.Collections.Hashtable System.Text.RegularExpressions.Regex::capnames Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * ___capnames_9; // System.String[] System.Text.RegularExpressions.Regex::capslist StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___capslist_10; // System.Int32 System.Text.RegularExpressions.Regex::capsize int32_t ___capsize_11; // System.Text.RegularExpressions.ExclusiveReference System.Text.RegularExpressions.Regex::runnerref ExclusiveReference_t7F4A5D2416EA34710F520BAD225E61BC1E98D1D8 * ___runnerref_12; // System.Text.RegularExpressions.SharedReference System.Text.RegularExpressions.Regex::replref SharedReference_t74AB40C102A76A7523C72269A49D2C8FBDD83926 * ___replref_13; // System.Text.RegularExpressions.RegexCode System.Text.RegularExpressions.Regex::code RegexCode_tF1653432E8EEDED5AB9517D09CA84B5FAA3CC0D5 * ___code_14; // System.Boolean System.Text.RegularExpressions.Regex::refsInitialized bool ___refsInitialized_15; public: inline static int32_t get_offset_of_pattern_0() { return static_cast<int32_t>(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F, ___pattern_0)); } inline String_t* get_pattern_0() const { return ___pattern_0; } inline String_t** get_address_of_pattern_0() { return &___pattern_0; } inline void set_pattern_0(String_t* value) { ___pattern_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___pattern_0), (void*)value); } inline static int32_t get_offset_of_factory_1() { return static_cast<int32_t>(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F, ___factory_1)); } inline RegexRunnerFactory_tA425EC5DC77FC0AAD86EB116E5483E94679CAA96 * get_factory_1() const { return ___factory_1; } inline RegexRunnerFactory_tA425EC5DC77FC0AAD86EB116E5483E94679CAA96 ** get_address_of_factory_1() { return &___factory_1; } inline void set_factory_1(RegexRunnerFactory_tA425EC5DC77FC0AAD86EB116E5483E94679CAA96 * value) { ___factory_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___factory_1), (void*)value); } inline static int32_t get_offset_of_roptions_2() { return static_cast<int32_t>(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F, ___roptions_2)); } inline int32_t get_roptions_2() const { return ___roptions_2; } inline int32_t* get_address_of_roptions_2() { return &___roptions_2; } inline void set_roptions_2(int32_t value) { ___roptions_2 = value; } inline static int32_t get_offset_of_internalMatchTimeout_5() { return static_cast<int32_t>(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F, ___internalMatchTimeout_5)); } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_internalMatchTimeout_5() const { return ___internalMatchTimeout_5; } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_internalMatchTimeout_5() { return &___internalMatchTimeout_5; } inline void set_internalMatchTimeout_5(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value) { ___internalMatchTimeout_5 = value; } inline static int32_t get_offset_of_caps_8() { return static_cast<int32_t>(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F, ___caps_8)); } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * get_caps_8() const { return ___caps_8; } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC ** get_address_of_caps_8() { return &___caps_8; } inline void set_caps_8(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * value) { ___caps_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___caps_8), (void*)value); } inline static int32_t get_offset_of_capnames_9() { return static_cast<int32_t>(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F, ___capnames_9)); } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * get_capnames_9() const { return ___capnames_9; } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC ** get_address_of_capnames_9() { return &___capnames_9; } inline void set_capnames_9(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * value) { ___capnames_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___capnames_9), (void*)value); } inline static int32_t get_offset_of_capslist_10() { return static_cast<int32_t>(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F, ___capslist_10)); } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get_capslist_10() const { return ___capslist_10; } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of_capslist_10() { return &___capslist_10; } inline void set_capslist_10(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value) { ___capslist_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___capslist_10), (void*)value); } inline static int32_t get_offset_of_capsize_11() { return static_cast<int32_t>(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F, ___capsize_11)); } inline int32_t get_capsize_11() const { return ___capsize_11; } inline int32_t* get_address_of_capsize_11() { return &___capsize_11; } inline void set_capsize_11(int32_t value) { ___capsize_11 = value; } inline static int32_t get_offset_of_runnerref_12() { return static_cast<int32_t>(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F, ___runnerref_12)); } inline ExclusiveReference_t7F4A5D2416EA34710F520BAD225E61BC1E98D1D8 * get_runnerref_12() const { return ___runnerref_12; } inline ExclusiveReference_t7F4A5D2416EA34710F520BAD225E61BC1E98D1D8 ** get_address_of_runnerref_12() { return &___runnerref_12; } inline void set_runnerref_12(ExclusiveReference_t7F4A5D2416EA34710F520BAD225E61BC1E98D1D8 * value) { ___runnerref_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___runnerref_12), (void*)value); } inline static int32_t get_offset_of_replref_13() { return static_cast<int32_t>(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F, ___replref_13)); } inline SharedReference_t74AB40C102A76A7523C72269A49D2C8FBDD83926 * get_replref_13() const { return ___replref_13; } inline SharedReference_t74AB40C102A76A7523C72269A49D2C8FBDD83926 ** get_address_of_replref_13() { return &___replref_13; } inline void set_replref_13(SharedReference_t74AB40C102A76A7523C72269A49D2C8FBDD83926 * value) { ___replref_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___replref_13), (void*)value); } inline static int32_t get_offset_of_code_14() { return static_cast<int32_t>(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F, ___code_14)); } inline RegexCode_tF1653432E8EEDED5AB9517D09CA84B5FAA3CC0D5 * get_code_14() const { return ___code_14; } inline RegexCode_tF1653432E8EEDED5AB9517D09CA84B5FAA3CC0D5 ** get_address_of_code_14() { return &___code_14; } inline void set_code_14(RegexCode_tF1653432E8EEDED5AB9517D09CA84B5FAA3CC0D5 * value) { ___code_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___code_14), (void*)value); } inline static int32_t get_offset_of_refsInitialized_15() { return static_cast<int32_t>(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F, ___refsInitialized_15)); } inline bool get_refsInitialized_15() const { return ___refsInitialized_15; } inline bool* get_address_of_refsInitialized_15() { return &___refsInitialized_15; } inline void set_refsInitialized_15(bool value) { ___refsInitialized_15 = value; } }; struct Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F_StaticFields { public: // System.TimeSpan System.Text.RegularExpressions.Regex::MaximumMatchTimeout TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___MaximumMatchTimeout_3; // System.TimeSpan System.Text.RegularExpressions.Regex::InfiniteMatchTimeout TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___InfiniteMatchTimeout_4; // System.TimeSpan System.Text.RegularExpressions.Regex::FallbackDefaultMatchTimeout TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___FallbackDefaultMatchTimeout_6; // System.TimeSpan System.Text.RegularExpressions.Regex::DefaultMatchTimeout TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___DefaultMatchTimeout_7; // System.Collections.Generic.LinkedList`1<System.Text.RegularExpressions.CachedCodeEntry> System.Text.RegularExpressions.Regex::livecode LinkedList_1_t0AD3FC1D19E68F4B148AFF908DC3719C9B117D92 * ___livecode_16; // System.Int32 System.Text.RegularExpressions.Regex::cacheSize int32_t ___cacheSize_17; public: inline static int32_t get_offset_of_MaximumMatchTimeout_3() { return static_cast<int32_t>(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F_StaticFields, ___MaximumMatchTimeout_3)); } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_MaximumMatchTimeout_3() const { return ___MaximumMatchTimeout_3; } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_MaximumMatchTimeout_3() { return &___MaximumMatchTimeout_3; } inline void set_MaximumMatchTimeout_3(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value) { ___MaximumMatchTimeout_3 = value; } inline static int32_t get_offset_of_InfiniteMatchTimeout_4() { return static_cast<int32_t>(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F_StaticFields, ___InfiniteMatchTimeout_4)); } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_InfiniteMatchTimeout_4() const { return ___InfiniteMatchTimeout_4; } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_InfiniteMatchTimeout_4() { return &___InfiniteMatchTimeout_4; } inline void set_InfiniteMatchTimeout_4(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value) { ___InfiniteMatchTimeout_4 = value; } inline static int32_t get_offset_of_FallbackDefaultMatchTimeout_6() { return static_cast<int32_t>(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F_StaticFields, ___FallbackDefaultMatchTimeout_6)); } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_FallbackDefaultMatchTimeout_6() const { return ___FallbackDefaultMatchTimeout_6; } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_FallbackDefaultMatchTimeout_6() { return &___FallbackDefaultMatchTimeout_6; } inline void set_FallbackDefaultMatchTimeout_6(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value) { ___FallbackDefaultMatchTimeout_6 = value; } inline static int32_t get_offset_of_DefaultMatchTimeout_7() { return static_cast<int32_t>(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F_StaticFields, ___DefaultMatchTimeout_7)); } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_DefaultMatchTimeout_7() const { return ___DefaultMatchTimeout_7; } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_DefaultMatchTimeout_7() { return &___DefaultMatchTimeout_7; } inline void set_DefaultMatchTimeout_7(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value) { ___DefaultMatchTimeout_7 = value; } inline static int32_t get_offset_of_livecode_16() { return static_cast<int32_t>(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F_StaticFields, ___livecode_16)); } inline LinkedList_1_t0AD3FC1D19E68F4B148AFF908DC3719C9B117D92 * get_livecode_16() const { return ___livecode_16; } inline LinkedList_1_t0AD3FC1D19E68F4B148AFF908DC3719C9B117D92 ** get_address_of_livecode_16() { return &___livecode_16; } inline void set_livecode_16(LinkedList_1_t0AD3FC1D19E68F4B148AFF908DC3719C9B117D92 * value) { ___livecode_16 = value; Il2CppCodeGenWriteBarrier((void**)(&___livecode_16), (void*)value); } inline static int32_t get_offset_of_cacheSize_17() { return static_cast<int32_t>(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F_StaticFields, ___cacheSize_17)); } inline int32_t get_cacheSize_17() const { return ___cacheSize_17; } inline int32_t* get_address_of_cacheSize_17() { return &___cacheSize_17; } inline void set_cacheSize_17(int32_t value) { ___cacheSize_17 = value; } }; // System.Text.RegularExpressions.RegexNode struct RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 : public RuntimeObject { public: // System.Int32 System.Text.RegularExpressions.RegexNode::_type int32_t ____type_0; // System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexNode> System.Text.RegularExpressions.RegexNode::_children List_1_t692D260BEBA1E69864C98DEEDB3E9256C38CD9B9 * ____children_1; // System.String System.Text.RegularExpressions.RegexNode::_str String_t* ____str_2; // System.Char System.Text.RegularExpressions.RegexNode::_ch Il2CppChar ____ch_3; // System.Int32 System.Text.RegularExpressions.RegexNode::_m int32_t ____m_4; // System.Int32 System.Text.RegularExpressions.RegexNode::_n int32_t ____n_5; // System.Text.RegularExpressions.RegexOptions System.Text.RegularExpressions.RegexNode::_options int32_t ____options_6; // System.Text.RegularExpressions.RegexNode System.Text.RegularExpressions.RegexNode::_next RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * ____next_7; public: inline static int32_t get_offset_of__type_0() { return static_cast<int32_t>(offsetof(RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43, ____type_0)); } inline int32_t get__type_0() const { return ____type_0; } inline int32_t* get_address_of__type_0() { return &____type_0; } inline void set__type_0(int32_t value) { ____type_0 = value; } inline static int32_t get_offset_of__children_1() { return static_cast<int32_t>(offsetof(RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43, ____children_1)); } inline List_1_t692D260BEBA1E69864C98DEEDB3E9256C38CD9B9 * get__children_1() const { return ____children_1; } inline List_1_t692D260BEBA1E69864C98DEEDB3E9256C38CD9B9 ** get_address_of__children_1() { return &____children_1; } inline void set__children_1(List_1_t692D260BEBA1E69864C98DEEDB3E9256C38CD9B9 * value) { ____children_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____children_1), (void*)value); } inline static int32_t get_offset_of__str_2() { return static_cast<int32_t>(offsetof(RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43, ____str_2)); } inline String_t* get__str_2() const { return ____str_2; } inline String_t** get_address_of__str_2() { return &____str_2; } inline void set__str_2(String_t* value) { ____str_2 = value; Il2CppCodeGenWriteBarrier((void**)(&____str_2), (void*)value); } inline static int32_t get_offset_of__ch_3() { return static_cast<int32_t>(offsetof(RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43, ____ch_3)); } inline Il2CppChar get__ch_3() const { return ____ch_3; } inline Il2CppChar* get_address_of__ch_3() { return &____ch_3; } inline void set__ch_3(Il2CppChar value) { ____ch_3 = value; } inline static int32_t get_offset_of__m_4() { return static_cast<int32_t>(offsetof(RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43, ____m_4)); } inline int32_t get__m_4() const { return ____m_4; } inline int32_t* get_address_of__m_4() { return &____m_4; } inline void set__m_4(int32_t value) { ____m_4 = value; } inline static int32_t get_offset_of__n_5() { return static_cast<int32_t>(offsetof(RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43, ____n_5)); } inline int32_t get__n_5() const { return ____n_5; } inline int32_t* get_address_of__n_5() { return &____n_5; } inline void set__n_5(int32_t value) { ____n_5 = value; } inline static int32_t get_offset_of__options_6() { return static_cast<int32_t>(offsetof(RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43, ____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; } inline static int32_t get_offset_of__next_7() { return static_cast<int32_t>(offsetof(RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43, ____next_7)); } inline RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * get__next_7() const { return ____next_7; } inline RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 ** get_address_of__next_7() { return &____next_7; } inline void set__next_7(RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * value) { ____next_7 = value; Il2CppCodeGenWriteBarrier((void**)(&____next_7), (void*)value); } }; // System.Text.RegularExpressions.RegexParser struct RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 : public RuntimeObject { public: // System.Text.RegularExpressions.RegexNode System.Text.RegularExpressions.RegexParser::_stack RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * ____stack_0; // System.Text.RegularExpressions.RegexNode System.Text.RegularExpressions.RegexParser::_group RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * ____group_1; // System.Text.RegularExpressions.RegexNode System.Text.RegularExpressions.RegexParser::_alternation RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * ____alternation_2; // System.Text.RegularExpressions.RegexNode System.Text.RegularExpressions.RegexParser::_concatenation RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * ____concatenation_3; // System.Text.RegularExpressions.RegexNode System.Text.RegularExpressions.RegexParser::_unit RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * ____unit_4; // System.String System.Text.RegularExpressions.RegexParser::_pattern String_t* ____pattern_5; // System.Int32 System.Text.RegularExpressions.RegexParser::_currentPos int32_t ____currentPos_6; // System.Globalization.CultureInfo System.Text.RegularExpressions.RegexParser::_culture CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * ____culture_7; // System.Int32 System.Text.RegularExpressions.RegexParser::_autocap int32_t ____autocap_8; // System.Int32 System.Text.RegularExpressions.RegexParser::_capcount int32_t ____capcount_9; // System.Int32 System.Text.RegularExpressions.RegexParser::_captop int32_t ____captop_10; // System.Int32 System.Text.RegularExpressions.RegexParser::_capsize int32_t ____capsize_11; // System.Collections.Hashtable System.Text.RegularExpressions.RegexParser::_caps Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * ____caps_12; // System.Collections.Hashtable System.Text.RegularExpressions.RegexParser::_capnames Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * ____capnames_13; // System.Int32[] System.Text.RegularExpressions.RegexParser::_capnumlist Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ____capnumlist_14; // System.Collections.Generic.List`1<System.String> System.Text.RegularExpressions.RegexParser::_capnamelist List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * ____capnamelist_15; // System.Text.RegularExpressions.RegexOptions System.Text.RegularExpressions.RegexParser::_options int32_t ____options_16; // System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexOptions> System.Text.RegularExpressions.RegexParser::_optionsStack List_1_tE931333A40AB4E57F72E00F9F23D19057C78120A * ____optionsStack_17; // System.Boolean System.Text.RegularExpressions.RegexParser::_ignoreNextParen bool ____ignoreNextParen_18; public: inline static int32_t get_offset_of__stack_0() { return static_cast<int32_t>(offsetof(RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9, ____stack_0)); } inline RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * get__stack_0() const { return ____stack_0; } inline RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 ** get_address_of__stack_0() { return &____stack_0; } inline void set__stack_0(RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * value) { ____stack_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____stack_0), (void*)value); } inline static int32_t get_offset_of__group_1() { return static_cast<int32_t>(offsetof(RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9, ____group_1)); } inline RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * get__group_1() const { return ____group_1; } inline RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 ** get_address_of__group_1() { return &____group_1; } inline void set__group_1(RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * value) { ____group_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____group_1), (void*)value); } inline static int32_t get_offset_of__alternation_2() { return static_cast<int32_t>(offsetof(RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9, ____alternation_2)); } inline RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * get__alternation_2() const { return ____alternation_2; } inline RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 ** get_address_of__alternation_2() { return &____alternation_2; } inline void set__alternation_2(RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * value) { ____alternation_2 = value; Il2CppCodeGenWriteBarrier((void**)(&____alternation_2), (void*)value); } inline static int32_t get_offset_of__concatenation_3() { return static_cast<int32_t>(offsetof(RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9, ____concatenation_3)); } inline RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * get__concatenation_3() const { return ____concatenation_3; } inline RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 ** get_address_of__concatenation_3() { return &____concatenation_3; } inline void set__concatenation_3(RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * value) { ____concatenation_3 = value; Il2CppCodeGenWriteBarrier((void**)(&____concatenation_3), (void*)value); } inline static int32_t get_offset_of__unit_4() { return static_cast<int32_t>(offsetof(RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9, ____unit_4)); } inline RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * get__unit_4() const { return ____unit_4; } inline RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 ** get_address_of__unit_4() { return &____unit_4; } inline void set__unit_4(RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * value) { ____unit_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____unit_4), (void*)value); } inline static int32_t get_offset_of__pattern_5() { return static_cast<int32_t>(offsetof(RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9, ____pattern_5)); } inline String_t* get__pattern_5() const { return ____pattern_5; } inline String_t** get_address_of__pattern_5() { return &____pattern_5; } inline void set__pattern_5(String_t* value) { ____pattern_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____pattern_5), (void*)value); } inline static int32_t get_offset_of__currentPos_6() { return static_cast<int32_t>(offsetof(RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9, ____currentPos_6)); } inline int32_t get__currentPos_6() const { return ____currentPos_6; } inline int32_t* get_address_of__currentPos_6() { return &____currentPos_6; } inline void set__currentPos_6(int32_t value) { ____currentPos_6 = value; } inline static int32_t get_offset_of__culture_7() { return static_cast<int32_t>(offsetof(RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9, ____culture_7)); } inline CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * get__culture_7() const { return ____culture_7; } inline CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 ** get_address_of__culture_7() { return &____culture_7; } inline void set__culture_7(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * value) { ____culture_7 = value; Il2CppCodeGenWriteBarrier((void**)(&____culture_7), (void*)value); } inline static int32_t get_offset_of__autocap_8() { return static_cast<int32_t>(offsetof(RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9, ____autocap_8)); } inline int32_t get__autocap_8() const { return ____autocap_8; } inline int32_t* get_address_of__autocap_8() { return &____autocap_8; } inline void set__autocap_8(int32_t value) { ____autocap_8 = value; } inline static int32_t get_offset_of__capcount_9() { return static_cast<int32_t>(offsetof(RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9, ____capcount_9)); } inline int32_t get__capcount_9() const { return ____capcount_9; } inline int32_t* get_address_of__capcount_9() { return &____capcount_9; } inline void set__capcount_9(int32_t value) { ____capcount_9 = value; } inline static int32_t get_offset_of__captop_10() { return static_cast<int32_t>(offsetof(RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9, ____captop_10)); } inline int32_t get__captop_10() const { return ____captop_10; } inline int32_t* get_address_of__captop_10() { return &____captop_10; } inline void set__captop_10(int32_t value) { ____captop_10 = value; } inline static int32_t get_offset_of__capsize_11() { return static_cast<int32_t>(offsetof(RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9, ____capsize_11)); } inline int32_t get__capsize_11() const { return ____capsize_11; } inline int32_t* get_address_of__capsize_11() { return &____capsize_11; } inline void set__capsize_11(int32_t value) { ____capsize_11 = value; } inline static int32_t get_offset_of__caps_12() { return static_cast<int32_t>(offsetof(RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9, ____caps_12)); } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * get__caps_12() const { return ____caps_12; } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC ** get_address_of__caps_12() { return &____caps_12; } inline void set__caps_12(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * value) { ____caps_12 = value; Il2CppCodeGenWriteBarrier((void**)(&____caps_12), (void*)value); } inline static int32_t get_offset_of__capnames_13() { return static_cast<int32_t>(offsetof(RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9, ____capnames_13)); } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * get__capnames_13() const { return ____capnames_13; } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC ** get_address_of__capnames_13() { return &____capnames_13; } inline void set__capnames_13(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * value) { ____capnames_13 = value; Il2CppCodeGenWriteBarrier((void**)(&____capnames_13), (void*)value); } inline static int32_t get_offset_of__capnumlist_14() { return static_cast<int32_t>(offsetof(RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9, ____capnumlist_14)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get__capnumlist_14() const { return ____capnumlist_14; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of__capnumlist_14() { return &____capnumlist_14; } inline void set__capnumlist_14(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ____capnumlist_14 = value; Il2CppCodeGenWriteBarrier((void**)(&____capnumlist_14), (void*)value); } inline static int32_t get_offset_of__capnamelist_15() { return static_cast<int32_t>(offsetof(RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9, ____capnamelist_15)); } inline List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * get__capnamelist_15() const { return ____capnamelist_15; } inline List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 ** get_address_of__capnamelist_15() { return &____capnamelist_15; } inline void set__capnamelist_15(List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * value) { ____capnamelist_15 = value; Il2CppCodeGenWriteBarrier((void**)(&____capnamelist_15), (void*)value); } inline static int32_t get_offset_of__options_16() { return static_cast<int32_t>(offsetof(RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9, ____options_16)); } inline int32_t get__options_16() const { return ____options_16; } inline int32_t* get_address_of__options_16() { return &____options_16; } inline void set__options_16(int32_t value) { ____options_16 = value; } inline static int32_t get_offset_of__optionsStack_17() { return static_cast<int32_t>(offsetof(RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9, ____optionsStack_17)); } inline List_1_tE931333A40AB4E57F72E00F9F23D19057C78120A * get__optionsStack_17() const { return ____optionsStack_17; } inline List_1_tE931333A40AB4E57F72E00F9F23D19057C78120A ** get_address_of__optionsStack_17() { return &____optionsStack_17; } inline void set__optionsStack_17(List_1_tE931333A40AB4E57F72E00F9F23D19057C78120A * value) { ____optionsStack_17 = value; Il2CppCodeGenWriteBarrier((void**)(&____optionsStack_17), (void*)value); } inline static int32_t get_offset_of__ignoreNextParen_18() { return static_cast<int32_t>(offsetof(RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9, ____ignoreNextParen_18)); } inline bool get__ignoreNextParen_18() const { return ____ignoreNextParen_18; } inline bool* get_address_of__ignoreNextParen_18() { return &____ignoreNextParen_18; } inline void set__ignoreNextParen_18(bool value) { ____ignoreNextParen_18 = value; } }; struct RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9_StaticFields { public: // System.Byte[] System.Text.RegularExpressions.RegexParser::_category ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ____category_19; public: inline static int32_t get_offset_of__category_19() { return static_cast<int32_t>(offsetof(RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9_StaticFields, ____category_19)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get__category_19() const { return ____category_19; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of__category_19() { return &____category_19; } inline void set__category_19(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ____category_19 = value; Il2CppCodeGenWriteBarrier((void**)(&____category_19), (void*)value); } }; // System.Text.RegularExpressions.RegexTree struct RegexTree_t63A434601D42EC388D9B2DCA2913286CFC8811F3 : public RuntimeObject { public: // System.Text.RegularExpressions.RegexNode System.Text.RegularExpressions.RegexTree::_root RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * ____root_0; // System.Collections.Hashtable System.Text.RegularExpressions.RegexTree::_caps Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * ____caps_1; // System.Int32[] System.Text.RegularExpressions.RegexTree::_capnumlist Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ____capnumlist_2; // System.Collections.Hashtable System.Text.RegularExpressions.RegexTree::_capnames Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * ____capnames_3; // System.String[] System.Text.RegularExpressions.RegexTree::_capslist StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ____capslist_4; // System.Text.RegularExpressions.RegexOptions System.Text.RegularExpressions.RegexTree::_options int32_t ____options_5; // System.Int32 System.Text.RegularExpressions.RegexTree::_captop int32_t ____captop_6; public: inline static int32_t get_offset_of__root_0() { return static_cast<int32_t>(offsetof(RegexTree_t63A434601D42EC388D9B2DCA2913286CFC8811F3, ____root_0)); } inline RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * get__root_0() const { return ____root_0; } inline RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 ** get_address_of__root_0() { return &____root_0; } inline void set__root_0(RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * value) { ____root_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____root_0), (void*)value); } inline static int32_t get_offset_of__caps_1() { return static_cast<int32_t>(offsetof(RegexTree_t63A434601D42EC388D9B2DCA2913286CFC8811F3, ____caps_1)); } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * get__caps_1() const { return ____caps_1; } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC ** get_address_of__caps_1() { return &____caps_1; } inline void set__caps_1(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * value) { ____caps_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____caps_1), (void*)value); } inline static int32_t get_offset_of__capnumlist_2() { return static_cast<int32_t>(offsetof(RegexTree_t63A434601D42EC388D9B2DCA2913286CFC8811F3, ____capnumlist_2)); } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get__capnumlist_2() const { return ____capnumlist_2; } inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of__capnumlist_2() { return &____capnumlist_2; } inline void set__capnumlist_2(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value) { ____capnumlist_2 = value; Il2CppCodeGenWriteBarrier((void**)(&____capnumlist_2), (void*)value); } inline static int32_t get_offset_of__capnames_3() { return static_cast<int32_t>(offsetof(RegexTree_t63A434601D42EC388D9B2DCA2913286CFC8811F3, ____capnames_3)); } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * get__capnames_3() const { return ____capnames_3; } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC ** get_address_of__capnames_3() { return &____capnames_3; } inline void set__capnames_3(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * value) { ____capnames_3 = value; Il2CppCodeGenWriteBarrier((void**)(&____capnames_3), (void*)value); } inline static int32_t get_offset_of__capslist_4() { return static_cast<int32_t>(offsetof(RegexTree_t63A434601D42EC388D9B2DCA2913286CFC8811F3, ____capslist_4)); } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get__capslist_4() const { return ____capslist_4; } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of__capslist_4() { return &____capslist_4; } inline void set__capslist_4(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value) { ____capslist_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____capslist_4), (void*)value); } inline static int32_t get_offset_of__options_5() { return static_cast<int32_t>(offsetof(RegexTree_t63A434601D42EC388D9B2DCA2913286CFC8811F3, ____options_5)); } inline int32_t get__options_5() const { return ____options_5; } inline int32_t* get_address_of__options_5() { return &____options_5; } inline void set__options_5(int32_t value) { ____options_5 = value; } inline static int32_t get_offset_of__captop_6() { return static_cast<int32_t>(offsetof(RegexTree_t63A434601D42EC388D9B2DCA2913286CFC8811F3, ____captop_6)); } inline int32_t get__captop_6() const { return ____captop_6; } inline int32_t* get_address_of__captop_6() { return &____captop_6; } inline void set__captop_6(int32_t value) { ____captop_6 = value; } }; // System.Runtime.Serialization.StreamingContext struct StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 { public: // System.Object System.Runtime.Serialization.StreamingContext::m_additionalContext RuntimeObject * ___m_additionalContext_0; // System.Runtime.Serialization.StreamingContextStates System.Runtime.Serialization.StreamingContext::m_state int32_t ___m_state_1; public: inline static int32_t get_offset_of_m_additionalContext_0() { return static_cast<int32_t>(offsetof(StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505, ___m_additionalContext_0)); } inline RuntimeObject * get_m_additionalContext_0() const { return ___m_additionalContext_0; } inline RuntimeObject ** get_address_of_m_additionalContext_0() { return &___m_additionalContext_0; } inline void set_m_additionalContext_0(RuntimeObject * value) { ___m_additionalContext_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_additionalContext_0), (void*)value); } inline static int32_t get_offset_of_m_state_1() { return static_cast<int32_t>(offsetof(StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505, ___m_state_1)); } inline int32_t get_m_state_1() const { return ___m_state_1; } inline int32_t* get_address_of_m_state_1() { return &___m_state_1; } inline void set_m_state_1(int32_t value) { ___m_state_1 = value; } }; // Native definition for P/Invoke marshalling of System.Runtime.Serialization.StreamingContext struct StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505_marshaled_pinvoke { Il2CppIUnknown* ___m_additionalContext_0; int32_t ___m_state_1; }; // Native definition for COM marshalling of System.Runtime.Serialization.StreamingContext struct StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505_marshaled_com { Il2CppIUnknown* ___m_additionalContext_0; int32_t ___m_state_1; }; // System.ComponentModel.StringConverter struct StringConverter_tEC598B89E55C16F1669CFBC98F5C2308E2F232E5 : public TypeConverter_t004F185B630F00F509F08BD8F8D82471867323B4 { public: public: }; // System.SystemException struct SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62 : public Exception_t { public: public: }; // System.ComponentModel.TimeSpanConverter struct TimeSpanConverter_t5F2498D1A18C834B1F4B9E7A3CF59069D2B72D2E : public TypeConverter_t004F185B630F00F509F08BD8F8D82471867323B4 { public: public: }; // System.Type struct Type_t : public MemberInfo_t { public: // System.RuntimeTypeHandle System.Type::_impl RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 ____impl_9; public: inline static int32_t get_offset_of__impl_9() { return static_cast<int32_t>(offsetof(Type_t, ____impl_9)); } inline RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 get__impl_9() const { return ____impl_9; } inline RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 * get_address_of__impl_9() { return &____impl_9; } inline void set__impl_9(RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 value) { ____impl_9 = value; } }; struct Type_t_StaticFields { public: // System.Reflection.MemberFilter System.Type::FilterAttribute MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * ___FilterAttribute_0; // System.Reflection.MemberFilter System.Type::FilterName MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * ___FilterName_1; // System.Reflection.MemberFilter System.Type::FilterNameIgnoreCase MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * ___FilterNameIgnoreCase_2; // System.Object System.Type::Missing RuntimeObject * ___Missing_3; // System.Char System.Type::Delimiter Il2CppChar ___Delimiter_4; // System.Type[] System.Type::EmptyTypes TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* ___EmptyTypes_5; // System.Reflection.Binder System.Type::defaultBinder Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 * ___defaultBinder_6; public: inline static int32_t get_offset_of_FilterAttribute_0() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterAttribute_0)); } inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * get_FilterAttribute_0() const { return ___FilterAttribute_0; } inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 ** get_address_of_FilterAttribute_0() { return &___FilterAttribute_0; } inline void set_FilterAttribute_0(MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * value) { ___FilterAttribute_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___FilterAttribute_0), (void*)value); } inline static int32_t get_offset_of_FilterName_1() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterName_1)); } inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * get_FilterName_1() const { return ___FilterName_1; } inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 ** get_address_of_FilterName_1() { return &___FilterName_1; } inline void set_FilterName_1(MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * value) { ___FilterName_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___FilterName_1), (void*)value); } inline static int32_t get_offset_of_FilterNameIgnoreCase_2() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterNameIgnoreCase_2)); } inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * get_FilterNameIgnoreCase_2() const { return ___FilterNameIgnoreCase_2; } inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 ** get_address_of_FilterNameIgnoreCase_2() { return &___FilterNameIgnoreCase_2; } inline void set_FilterNameIgnoreCase_2(MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * value) { ___FilterNameIgnoreCase_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___FilterNameIgnoreCase_2), (void*)value); } inline static int32_t get_offset_of_Missing_3() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___Missing_3)); } inline RuntimeObject * get_Missing_3() const { return ___Missing_3; } inline RuntimeObject ** get_address_of_Missing_3() { return &___Missing_3; } inline void set_Missing_3(RuntimeObject * value) { ___Missing_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___Missing_3), (void*)value); } inline static int32_t get_offset_of_Delimiter_4() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___Delimiter_4)); } inline Il2CppChar get_Delimiter_4() const { return ___Delimiter_4; } inline Il2CppChar* get_address_of_Delimiter_4() { return &___Delimiter_4; } inline void set_Delimiter_4(Il2CppChar value) { ___Delimiter_4 = value; } inline static int32_t get_offset_of_EmptyTypes_5() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___EmptyTypes_5)); } inline TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* get_EmptyTypes_5() const { return ___EmptyTypes_5; } inline TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755** get_address_of_EmptyTypes_5() { return &___EmptyTypes_5; } inline void set_EmptyTypes_5(TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* value) { ___EmptyTypes_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___EmptyTypes_5), (void*)value); } inline static int32_t get_offset_of_defaultBinder_6() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___defaultBinder_6)); } inline Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 * get_defaultBinder_6() const { return ___defaultBinder_6; } inline Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 ** get_address_of_defaultBinder_6() { return &___defaultBinder_6; } inline void set_defaultBinder_6(Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 * value) { ___defaultBinder_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___defaultBinder_6), (void*)value); } }; // System.Uri struct Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 : public RuntimeObject { public: // System.String System.Uri::m_String String_t* ___m_String_13; // System.String System.Uri::m_originalUnicodeString String_t* ___m_originalUnicodeString_14; // System.UriParser System.Uri::m_Syntax UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * ___m_Syntax_15; // System.String System.Uri::m_DnsSafeHost String_t* ___m_DnsSafeHost_16; // System.Uri/Flags System.Uri::m_Flags uint64_t ___m_Flags_17; // System.Uri/UriInfo System.Uri::m_Info UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * ___m_Info_18; // System.Boolean System.Uri::m_iriParsing bool ___m_iriParsing_19; public: inline static int32_t get_offset_of_m_String_13() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612, ___m_String_13)); } inline String_t* get_m_String_13() const { return ___m_String_13; } inline String_t** get_address_of_m_String_13() { return &___m_String_13; } inline void set_m_String_13(String_t* value) { ___m_String_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_String_13), (void*)value); } inline static int32_t get_offset_of_m_originalUnicodeString_14() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612, ___m_originalUnicodeString_14)); } inline String_t* get_m_originalUnicodeString_14() const { return ___m_originalUnicodeString_14; } inline String_t** get_address_of_m_originalUnicodeString_14() { return &___m_originalUnicodeString_14; } inline void set_m_originalUnicodeString_14(String_t* value) { ___m_originalUnicodeString_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_originalUnicodeString_14), (void*)value); } inline static int32_t get_offset_of_m_Syntax_15() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612, ___m_Syntax_15)); } inline UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * get_m_Syntax_15() const { return ___m_Syntax_15; } inline UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A ** get_address_of_m_Syntax_15() { return &___m_Syntax_15; } inline void set_m_Syntax_15(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * value) { ___m_Syntax_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Syntax_15), (void*)value); } inline static int32_t get_offset_of_m_DnsSafeHost_16() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612, ___m_DnsSafeHost_16)); } inline String_t* get_m_DnsSafeHost_16() const { return ___m_DnsSafeHost_16; } inline String_t** get_address_of_m_DnsSafeHost_16() { return &___m_DnsSafeHost_16; } inline void set_m_DnsSafeHost_16(String_t* value) { ___m_DnsSafeHost_16 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_DnsSafeHost_16), (void*)value); } inline static int32_t get_offset_of_m_Flags_17() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612, ___m_Flags_17)); } inline uint64_t get_m_Flags_17() const { return ___m_Flags_17; } inline uint64_t* get_address_of_m_Flags_17() { return &___m_Flags_17; } inline void set_m_Flags_17(uint64_t value) { ___m_Flags_17 = value; } inline static int32_t get_offset_of_m_Info_18() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612, ___m_Info_18)); } inline UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * get_m_Info_18() const { return ___m_Info_18; } inline UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 ** get_address_of_m_Info_18() { return &___m_Info_18; } inline void set_m_Info_18(UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * value) { ___m_Info_18 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Info_18), (void*)value); } inline static int32_t get_offset_of_m_iriParsing_19() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612, ___m_iriParsing_19)); } inline bool get_m_iriParsing_19() const { return ___m_iriParsing_19; } inline bool* get_address_of_m_iriParsing_19() { return &___m_iriParsing_19; } inline void set_m_iriParsing_19(bool value) { ___m_iriParsing_19 = value; } }; struct Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields { public: // System.String System.Uri::UriSchemeFile String_t* ___UriSchemeFile_0; // System.String System.Uri::UriSchemeFtp String_t* ___UriSchemeFtp_1; // System.String System.Uri::UriSchemeGopher String_t* ___UriSchemeGopher_2; // System.String System.Uri::UriSchemeHttp String_t* ___UriSchemeHttp_3; // System.String System.Uri::UriSchemeHttps String_t* ___UriSchemeHttps_4; // System.String System.Uri::UriSchemeWs String_t* ___UriSchemeWs_5; // System.String System.Uri::UriSchemeWss String_t* ___UriSchemeWss_6; // System.String System.Uri::UriSchemeMailto String_t* ___UriSchemeMailto_7; // System.String System.Uri::UriSchemeNews String_t* ___UriSchemeNews_8; // System.String System.Uri::UriSchemeNntp String_t* ___UriSchemeNntp_9; // System.String System.Uri::UriSchemeNetTcp String_t* ___UriSchemeNetTcp_10; // System.String System.Uri::UriSchemeNetPipe String_t* ___UriSchemeNetPipe_11; // System.String System.Uri::SchemeDelimiter String_t* ___SchemeDelimiter_12; // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.Uri::s_ConfigInitialized bool ___s_ConfigInitialized_20; // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.Uri::s_ConfigInitializing bool ___s_ConfigInitializing_21; // System.UriIdnScope modreq(System.Runtime.CompilerServices.IsVolatile) System.Uri::s_IdnScope int32_t ___s_IdnScope_22; // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.Uri::s_IriParsing bool ___s_IriParsing_23; // System.Boolean System.Uri::useDotNetRelativeOrAbsolute bool ___useDotNetRelativeOrAbsolute_24; // System.Boolean System.Uri::IsWindowsFileSystem bool ___IsWindowsFileSystem_25; // System.Object System.Uri::s_initLock RuntimeObject * ___s_initLock_26; // System.Char[] System.Uri::HexLowerChars CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___HexLowerChars_27; // System.Char[] System.Uri::_WSchars CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ____WSchars_28; public: inline static int32_t get_offset_of_UriSchemeFile_0() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeFile_0)); } inline String_t* get_UriSchemeFile_0() const { return ___UriSchemeFile_0; } inline String_t** get_address_of_UriSchemeFile_0() { return &___UriSchemeFile_0; } inline void set_UriSchemeFile_0(String_t* value) { ___UriSchemeFile_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeFile_0), (void*)value); } inline static int32_t get_offset_of_UriSchemeFtp_1() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeFtp_1)); } inline String_t* get_UriSchemeFtp_1() const { return ___UriSchemeFtp_1; } inline String_t** get_address_of_UriSchemeFtp_1() { return &___UriSchemeFtp_1; } inline void set_UriSchemeFtp_1(String_t* value) { ___UriSchemeFtp_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeFtp_1), (void*)value); } inline static int32_t get_offset_of_UriSchemeGopher_2() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeGopher_2)); } inline String_t* get_UriSchemeGopher_2() const { return ___UriSchemeGopher_2; } inline String_t** get_address_of_UriSchemeGopher_2() { return &___UriSchemeGopher_2; } inline void set_UriSchemeGopher_2(String_t* value) { ___UriSchemeGopher_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeGopher_2), (void*)value); } inline static int32_t get_offset_of_UriSchemeHttp_3() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeHttp_3)); } inline String_t* get_UriSchemeHttp_3() const { return ___UriSchemeHttp_3; } inline String_t** get_address_of_UriSchemeHttp_3() { return &___UriSchemeHttp_3; } inline void set_UriSchemeHttp_3(String_t* value) { ___UriSchemeHttp_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeHttp_3), (void*)value); } inline static int32_t get_offset_of_UriSchemeHttps_4() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeHttps_4)); } inline String_t* get_UriSchemeHttps_4() const { return ___UriSchemeHttps_4; } inline String_t** get_address_of_UriSchemeHttps_4() { return &___UriSchemeHttps_4; } inline void set_UriSchemeHttps_4(String_t* value) { ___UriSchemeHttps_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeHttps_4), (void*)value); } inline static int32_t get_offset_of_UriSchemeWs_5() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeWs_5)); } inline String_t* get_UriSchemeWs_5() const { return ___UriSchemeWs_5; } inline String_t** get_address_of_UriSchemeWs_5() { return &___UriSchemeWs_5; } inline void set_UriSchemeWs_5(String_t* value) { ___UriSchemeWs_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeWs_5), (void*)value); } inline static int32_t get_offset_of_UriSchemeWss_6() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeWss_6)); } inline String_t* get_UriSchemeWss_6() const { return ___UriSchemeWss_6; } inline String_t** get_address_of_UriSchemeWss_6() { return &___UriSchemeWss_6; } inline void set_UriSchemeWss_6(String_t* value) { ___UriSchemeWss_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeWss_6), (void*)value); } inline static int32_t get_offset_of_UriSchemeMailto_7() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeMailto_7)); } inline String_t* get_UriSchemeMailto_7() const { return ___UriSchemeMailto_7; } inline String_t** get_address_of_UriSchemeMailto_7() { return &___UriSchemeMailto_7; } inline void set_UriSchemeMailto_7(String_t* value) { ___UriSchemeMailto_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeMailto_7), (void*)value); } inline static int32_t get_offset_of_UriSchemeNews_8() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeNews_8)); } inline String_t* get_UriSchemeNews_8() const { return ___UriSchemeNews_8; } inline String_t** get_address_of_UriSchemeNews_8() { return &___UriSchemeNews_8; } inline void set_UriSchemeNews_8(String_t* value) { ___UriSchemeNews_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeNews_8), (void*)value); } inline static int32_t get_offset_of_UriSchemeNntp_9() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeNntp_9)); } inline String_t* get_UriSchemeNntp_9() const { return ___UriSchemeNntp_9; } inline String_t** get_address_of_UriSchemeNntp_9() { return &___UriSchemeNntp_9; } inline void set_UriSchemeNntp_9(String_t* value) { ___UriSchemeNntp_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeNntp_9), (void*)value); } inline static int32_t get_offset_of_UriSchemeNetTcp_10() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeNetTcp_10)); } inline String_t* get_UriSchemeNetTcp_10() const { return ___UriSchemeNetTcp_10; } inline String_t** get_address_of_UriSchemeNetTcp_10() { return &___UriSchemeNetTcp_10; } inline void set_UriSchemeNetTcp_10(String_t* value) { ___UriSchemeNetTcp_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeNetTcp_10), (void*)value); } inline static int32_t get_offset_of_UriSchemeNetPipe_11() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeNetPipe_11)); } inline String_t* get_UriSchemeNetPipe_11() const { return ___UriSchemeNetPipe_11; } inline String_t** get_address_of_UriSchemeNetPipe_11() { return &___UriSchemeNetPipe_11; } inline void set_UriSchemeNetPipe_11(String_t* value) { ___UriSchemeNetPipe_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeNetPipe_11), (void*)value); } inline static int32_t get_offset_of_SchemeDelimiter_12() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___SchemeDelimiter_12)); } inline String_t* get_SchemeDelimiter_12() const { return ___SchemeDelimiter_12; } inline String_t** get_address_of_SchemeDelimiter_12() { return &___SchemeDelimiter_12; } inline void set_SchemeDelimiter_12(String_t* value) { ___SchemeDelimiter_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___SchemeDelimiter_12), (void*)value); } inline static int32_t get_offset_of_s_ConfigInitialized_20() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___s_ConfigInitialized_20)); } inline bool get_s_ConfigInitialized_20() const { return ___s_ConfigInitialized_20; } inline bool* get_address_of_s_ConfigInitialized_20() { return &___s_ConfigInitialized_20; } inline void set_s_ConfigInitialized_20(bool value) { ___s_ConfigInitialized_20 = value; } inline static int32_t get_offset_of_s_ConfigInitializing_21() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___s_ConfigInitializing_21)); } inline bool get_s_ConfigInitializing_21() const { return ___s_ConfigInitializing_21; } inline bool* get_address_of_s_ConfigInitializing_21() { return &___s_ConfigInitializing_21; } inline void set_s_ConfigInitializing_21(bool value) { ___s_ConfigInitializing_21 = value; } inline static int32_t get_offset_of_s_IdnScope_22() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___s_IdnScope_22)); } inline int32_t get_s_IdnScope_22() const { return ___s_IdnScope_22; } inline int32_t* get_address_of_s_IdnScope_22() { return &___s_IdnScope_22; } inline void set_s_IdnScope_22(int32_t value) { ___s_IdnScope_22 = value; } inline static int32_t get_offset_of_s_IriParsing_23() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___s_IriParsing_23)); } inline bool get_s_IriParsing_23() const { return ___s_IriParsing_23; } inline bool* get_address_of_s_IriParsing_23() { return &___s_IriParsing_23; } inline void set_s_IriParsing_23(bool value) { ___s_IriParsing_23 = value; } inline static int32_t get_offset_of_useDotNetRelativeOrAbsolute_24() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___useDotNetRelativeOrAbsolute_24)); } inline bool get_useDotNetRelativeOrAbsolute_24() const { return ___useDotNetRelativeOrAbsolute_24; } inline bool* get_address_of_useDotNetRelativeOrAbsolute_24() { return &___useDotNetRelativeOrAbsolute_24; } inline void set_useDotNetRelativeOrAbsolute_24(bool value) { ___useDotNetRelativeOrAbsolute_24 = value; } inline static int32_t get_offset_of_IsWindowsFileSystem_25() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___IsWindowsFileSystem_25)); } inline bool get_IsWindowsFileSystem_25() const { return ___IsWindowsFileSystem_25; } inline bool* get_address_of_IsWindowsFileSystem_25() { return &___IsWindowsFileSystem_25; } inline void set_IsWindowsFileSystem_25(bool value) { ___IsWindowsFileSystem_25 = value; } inline static int32_t get_offset_of_s_initLock_26() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___s_initLock_26)); } inline RuntimeObject * get_s_initLock_26() const { return ___s_initLock_26; } inline RuntimeObject ** get_address_of_s_initLock_26() { return &___s_initLock_26; } inline void set_s_initLock_26(RuntimeObject * value) { ___s_initLock_26 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_initLock_26), (void*)value); } inline static int32_t get_offset_of_HexLowerChars_27() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___HexLowerChars_27)); } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get_HexLowerChars_27() const { return ___HexLowerChars_27; } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of_HexLowerChars_27() { return &___HexLowerChars_27; } inline void set_HexLowerChars_27(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value) { ___HexLowerChars_27 = value; Il2CppCodeGenWriteBarrier((void**)(&___HexLowerChars_27), (void*)value); } inline static int32_t get_offset_of__WSchars_28() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ____WSchars_28)); } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get__WSchars_28() const { return ____WSchars_28; } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of__WSchars_28() { return &____WSchars_28; } inline void set__WSchars_28(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value) { ____WSchars_28 = value; Il2CppCodeGenWriteBarrier((void**)(&____WSchars_28), (void*)value); } }; // System.UriParser struct UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A : public RuntimeObject { public: // System.UriSyntaxFlags System.UriParser::m_Flags int32_t ___m_Flags_2; // System.UriSyntaxFlags modreq(System.Runtime.CompilerServices.IsVolatile) System.UriParser::m_UpdatableFlags int32_t ___m_UpdatableFlags_3; // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.UriParser::m_UpdatableFlagsUsed bool ___m_UpdatableFlagsUsed_4; // System.Int32 System.UriParser::m_Port int32_t ___m_Port_5; // System.String System.UriParser::m_Scheme String_t* ___m_Scheme_6; public: inline static int32_t get_offset_of_m_Flags_2() { return static_cast<int32_t>(offsetof(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A, ___m_Flags_2)); } inline int32_t get_m_Flags_2() const { return ___m_Flags_2; } inline int32_t* get_address_of_m_Flags_2() { return &___m_Flags_2; } inline void set_m_Flags_2(int32_t value) { ___m_Flags_2 = value; } inline static int32_t get_offset_of_m_UpdatableFlags_3() { return static_cast<int32_t>(offsetof(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A, ___m_UpdatableFlags_3)); } inline int32_t get_m_UpdatableFlags_3() const { return ___m_UpdatableFlags_3; } inline int32_t* get_address_of_m_UpdatableFlags_3() { return &___m_UpdatableFlags_3; } inline void set_m_UpdatableFlags_3(int32_t value) { ___m_UpdatableFlags_3 = value; } inline static int32_t get_offset_of_m_UpdatableFlagsUsed_4() { return static_cast<int32_t>(offsetof(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A, ___m_UpdatableFlagsUsed_4)); } inline bool get_m_UpdatableFlagsUsed_4() const { return ___m_UpdatableFlagsUsed_4; } inline bool* get_address_of_m_UpdatableFlagsUsed_4() { return &___m_UpdatableFlagsUsed_4; } inline void set_m_UpdatableFlagsUsed_4(bool value) { ___m_UpdatableFlagsUsed_4 = value; } inline static int32_t get_offset_of_m_Port_5() { return static_cast<int32_t>(offsetof(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A, ___m_Port_5)); } inline int32_t get_m_Port_5() const { return ___m_Port_5; } inline int32_t* get_address_of_m_Port_5() { return &___m_Port_5; } inline void set_m_Port_5(int32_t value) { ___m_Port_5 = value; } inline static int32_t get_offset_of_m_Scheme_6() { return static_cast<int32_t>(offsetof(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A, ___m_Scheme_6)); } inline String_t* get_m_Scheme_6() const { return ___m_Scheme_6; } inline String_t** get_address_of_m_Scheme_6() { return &___m_Scheme_6; } inline void set_m_Scheme_6(String_t* value) { ___m_Scheme_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Scheme_6), (void*)value); } }; struct UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_StaticFields { public: // System.Collections.Generic.Dictionary`2<System.String,System.UriParser> System.UriParser::m_Table Dictionary_2_t29257EB2565DDF3180663167EF129FA9827836C5 * ___m_Table_0; // System.Collections.Generic.Dictionary`2<System.String,System.UriParser> System.UriParser::m_TempTable Dictionary_2_t29257EB2565DDF3180663167EF129FA9827836C5 * ___m_TempTable_1; // System.UriParser System.UriParser::HttpUri UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * ___HttpUri_7; // System.UriParser System.UriParser::HttpsUri UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * ___HttpsUri_8; // System.UriParser System.UriParser::WsUri UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * ___WsUri_9; // System.UriParser System.UriParser::WssUri UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * ___WssUri_10; // System.UriParser System.UriParser::FtpUri UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * ___FtpUri_11; // System.UriParser System.UriParser::FileUri UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * ___FileUri_12; // System.UriParser System.UriParser::GopherUri UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * ___GopherUri_13; // System.UriParser System.UriParser::NntpUri UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * ___NntpUri_14; // System.UriParser System.UriParser::NewsUri UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * ___NewsUri_15; // System.UriParser System.UriParser::MailToUri UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * ___MailToUri_16; // System.UriParser System.UriParser::UuidUri UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * ___UuidUri_17; // System.UriParser System.UriParser::TelnetUri UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * ___TelnetUri_18; // System.UriParser System.UriParser::LdapUri UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * ___LdapUri_19; // System.UriParser System.UriParser::NetTcpUri UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * ___NetTcpUri_20; // System.UriParser System.UriParser::NetPipeUri UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * ___NetPipeUri_21; // System.UriParser System.UriParser::VsMacrosUri UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * ___VsMacrosUri_22; // System.UriParser/UriQuirksVersion System.UriParser::s_QuirksVersion int32_t ___s_QuirksVersion_23; // System.UriSyntaxFlags System.UriParser::HttpSyntaxFlags int32_t ___HttpSyntaxFlags_24; // System.UriSyntaxFlags System.UriParser::FileSyntaxFlags int32_t ___FileSyntaxFlags_25; public: inline static int32_t get_offset_of_m_Table_0() { return static_cast<int32_t>(offsetof(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_StaticFields, ___m_Table_0)); } inline Dictionary_2_t29257EB2565DDF3180663167EF129FA9827836C5 * get_m_Table_0() const { return ___m_Table_0; } inline Dictionary_2_t29257EB2565DDF3180663167EF129FA9827836C5 ** get_address_of_m_Table_0() { return &___m_Table_0; } inline void set_m_Table_0(Dictionary_2_t29257EB2565DDF3180663167EF129FA9827836C5 * value) { ___m_Table_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Table_0), (void*)value); } inline static int32_t get_offset_of_m_TempTable_1() { return static_cast<int32_t>(offsetof(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_StaticFields, ___m_TempTable_1)); } inline Dictionary_2_t29257EB2565DDF3180663167EF129FA9827836C5 * get_m_TempTable_1() const { return ___m_TempTable_1; } inline Dictionary_2_t29257EB2565DDF3180663167EF129FA9827836C5 ** get_address_of_m_TempTable_1() { return &___m_TempTable_1; } inline void set_m_TempTable_1(Dictionary_2_t29257EB2565DDF3180663167EF129FA9827836C5 * value) { ___m_TempTable_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_TempTable_1), (void*)value); } inline static int32_t get_offset_of_HttpUri_7() { return static_cast<int32_t>(offsetof(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_StaticFields, ___HttpUri_7)); } inline UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * get_HttpUri_7() const { return ___HttpUri_7; } inline UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A ** get_address_of_HttpUri_7() { return &___HttpUri_7; } inline void set_HttpUri_7(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * value) { ___HttpUri_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___HttpUri_7), (void*)value); } inline static int32_t get_offset_of_HttpsUri_8() { return static_cast<int32_t>(offsetof(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_StaticFields, ___HttpsUri_8)); } inline UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * get_HttpsUri_8() const { return ___HttpsUri_8; } inline UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A ** get_address_of_HttpsUri_8() { return &___HttpsUri_8; } inline void set_HttpsUri_8(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * value) { ___HttpsUri_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___HttpsUri_8), (void*)value); } inline static int32_t get_offset_of_WsUri_9() { return static_cast<int32_t>(offsetof(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_StaticFields, ___WsUri_9)); } inline UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * get_WsUri_9() const { return ___WsUri_9; } inline UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A ** get_address_of_WsUri_9() { return &___WsUri_9; } inline void set_WsUri_9(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * value) { ___WsUri_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___WsUri_9), (void*)value); } inline static int32_t get_offset_of_WssUri_10() { return static_cast<int32_t>(offsetof(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_StaticFields, ___WssUri_10)); } inline UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * get_WssUri_10() const { return ___WssUri_10; } inline UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A ** get_address_of_WssUri_10() { return &___WssUri_10; } inline void set_WssUri_10(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * value) { ___WssUri_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___WssUri_10), (void*)value); } inline static int32_t get_offset_of_FtpUri_11() { return static_cast<int32_t>(offsetof(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_StaticFields, ___FtpUri_11)); } inline UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * get_FtpUri_11() const { return ___FtpUri_11; } inline UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A ** get_address_of_FtpUri_11() { return &___FtpUri_11; } inline void set_FtpUri_11(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * value) { ___FtpUri_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___FtpUri_11), (void*)value); } inline static int32_t get_offset_of_FileUri_12() { return static_cast<int32_t>(offsetof(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_StaticFields, ___FileUri_12)); } inline UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * get_FileUri_12() const { return ___FileUri_12; } inline UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A ** get_address_of_FileUri_12() { return &___FileUri_12; } inline void set_FileUri_12(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * value) { ___FileUri_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___FileUri_12), (void*)value); } inline static int32_t get_offset_of_GopherUri_13() { return static_cast<int32_t>(offsetof(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_StaticFields, ___GopherUri_13)); } inline UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * get_GopherUri_13() const { return ___GopherUri_13; } inline UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A ** get_address_of_GopherUri_13() { return &___GopherUri_13; } inline void set_GopherUri_13(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * value) { ___GopherUri_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___GopherUri_13), (void*)value); } inline static int32_t get_offset_of_NntpUri_14() { return static_cast<int32_t>(offsetof(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_StaticFields, ___NntpUri_14)); } inline UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * get_NntpUri_14() const { return ___NntpUri_14; } inline UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A ** get_address_of_NntpUri_14() { return &___NntpUri_14; } inline void set_NntpUri_14(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * value) { ___NntpUri_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___NntpUri_14), (void*)value); } inline static int32_t get_offset_of_NewsUri_15() { return static_cast<int32_t>(offsetof(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_StaticFields, ___NewsUri_15)); } inline UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * get_NewsUri_15() const { return ___NewsUri_15; } inline UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A ** get_address_of_NewsUri_15() { return &___NewsUri_15; } inline void set_NewsUri_15(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * value) { ___NewsUri_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___NewsUri_15), (void*)value); } inline static int32_t get_offset_of_MailToUri_16() { return static_cast<int32_t>(offsetof(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_StaticFields, ___MailToUri_16)); } inline UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * get_MailToUri_16() const { return ___MailToUri_16; } inline UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A ** get_address_of_MailToUri_16() { return &___MailToUri_16; } inline void set_MailToUri_16(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * value) { ___MailToUri_16 = value; Il2CppCodeGenWriteBarrier((void**)(&___MailToUri_16), (void*)value); } inline static int32_t get_offset_of_UuidUri_17() { return static_cast<int32_t>(offsetof(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_StaticFields, ___UuidUri_17)); } inline UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * get_UuidUri_17() const { return ___UuidUri_17; } inline UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A ** get_address_of_UuidUri_17() { return &___UuidUri_17; } inline void set_UuidUri_17(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * value) { ___UuidUri_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___UuidUri_17), (void*)value); } inline static int32_t get_offset_of_TelnetUri_18() { return static_cast<int32_t>(offsetof(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_StaticFields, ___TelnetUri_18)); } inline UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * get_TelnetUri_18() const { return ___TelnetUri_18; } inline UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A ** get_address_of_TelnetUri_18() { return &___TelnetUri_18; } inline void set_TelnetUri_18(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * value) { ___TelnetUri_18 = value; Il2CppCodeGenWriteBarrier((void**)(&___TelnetUri_18), (void*)value); } inline static int32_t get_offset_of_LdapUri_19() { return static_cast<int32_t>(offsetof(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_StaticFields, ___LdapUri_19)); } inline UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * get_LdapUri_19() const { return ___LdapUri_19; } inline UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A ** get_address_of_LdapUri_19() { return &___LdapUri_19; } inline void set_LdapUri_19(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * value) { ___LdapUri_19 = value; Il2CppCodeGenWriteBarrier((void**)(&___LdapUri_19), (void*)value); } inline static int32_t get_offset_of_NetTcpUri_20() { return static_cast<int32_t>(offsetof(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_StaticFields, ___NetTcpUri_20)); } inline UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * get_NetTcpUri_20() const { return ___NetTcpUri_20; } inline UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A ** get_address_of_NetTcpUri_20() { return &___NetTcpUri_20; } inline void set_NetTcpUri_20(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * value) { ___NetTcpUri_20 = value; Il2CppCodeGenWriteBarrier((void**)(&___NetTcpUri_20), (void*)value); } inline static int32_t get_offset_of_NetPipeUri_21() { return static_cast<int32_t>(offsetof(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_StaticFields, ___NetPipeUri_21)); } inline UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * get_NetPipeUri_21() const { return ___NetPipeUri_21; } inline UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A ** get_address_of_NetPipeUri_21() { return &___NetPipeUri_21; } inline void set_NetPipeUri_21(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * value) { ___NetPipeUri_21 = value; Il2CppCodeGenWriteBarrier((void**)(&___NetPipeUri_21), (void*)value); } inline static int32_t get_offset_of_VsMacrosUri_22() { return static_cast<int32_t>(offsetof(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_StaticFields, ___VsMacrosUri_22)); } inline UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * get_VsMacrosUri_22() const { return ___VsMacrosUri_22; } inline UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A ** get_address_of_VsMacrosUri_22() { return &___VsMacrosUri_22; } inline void set_VsMacrosUri_22(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * value) { ___VsMacrosUri_22 = value; Il2CppCodeGenWriteBarrier((void**)(&___VsMacrosUri_22), (void*)value); } inline static int32_t get_offset_of_s_QuirksVersion_23() { return static_cast<int32_t>(offsetof(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_StaticFields, ___s_QuirksVersion_23)); } inline int32_t get_s_QuirksVersion_23() const { return ___s_QuirksVersion_23; } inline int32_t* get_address_of_s_QuirksVersion_23() { return &___s_QuirksVersion_23; } inline void set_s_QuirksVersion_23(int32_t value) { ___s_QuirksVersion_23 = value; } inline static int32_t get_offset_of_HttpSyntaxFlags_24() { return static_cast<int32_t>(offsetof(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_StaticFields, ___HttpSyntaxFlags_24)); } inline int32_t get_HttpSyntaxFlags_24() const { return ___HttpSyntaxFlags_24; } inline int32_t* get_address_of_HttpSyntaxFlags_24() { return &___HttpSyntaxFlags_24; } inline void set_HttpSyntaxFlags_24(int32_t value) { ___HttpSyntaxFlags_24 = value; } inline static int32_t get_offset_of_FileSyntaxFlags_25() { return static_cast<int32_t>(offsetof(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_StaticFields, ___FileSyntaxFlags_25)); } inline int32_t get_FileSyntaxFlags_25() const { return ___FileSyntaxFlags_25; } inline int32_t* get_address_of_FileSyntaxFlags_25() { return &___FileSyntaxFlags_25; } inline void set_FileSyntaxFlags_25(int32_t value) { ___FileSyntaxFlags_25 = value; } }; // System.ArgumentException struct ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62 { public: // System.String System.ArgumentException::m_paramName String_t* ___m_paramName_17; public: inline static int32_t get_offset_of_m_paramName_17() { return static_cast<int32_t>(offsetof(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00, ___m_paramName_17)); } inline String_t* get_m_paramName_17() const { return ___m_paramName_17; } inline String_t** get_address_of_m_paramName_17() { return &___m_paramName_17; } inline void set_m_paramName_17(String_t* value) { ___m_paramName_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_paramName_17), (void*)value); } }; // System.Runtime.InteropServices.ExternalException struct ExternalException_tC18275DD0AEB2CDF9F85D94670C5A49A4DC3B783 : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62 { public: public: }; // System.FormatException struct FormatException_t119BB207B54B4B1BC28D9B1783C4625AE23D4759 : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62 { public: public: }; // System.InvalidOperationException struct InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62 { public: public: }; // System.NotImplementedException struct NotImplementedException_t26260C4EE0444C5FA022994203060B3A42A3ADE6 : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62 { public: public: }; // System.NotSupportedException struct NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62 { public: public: }; // System.ComponentModel.SingleConverter struct SingleConverter_t75FCE834B5B2A74CB252021292C9DC205B322391 : public BaseNumberConverter_t6CA2001CE79249FCF74FC888710AAD5CA23B748C { public: public: }; // System.TimeoutException struct TimeoutException_tB5D0EEFAEC3FC79FFDEF23C55D1BDF4DE347C926 : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62 { public: public: }; // System.ArgumentNullException struct ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB : public ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 { public: public: }; // System.ArgumentOutOfRangeException struct ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 : public ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 { public: // System.Object System.ArgumentOutOfRangeException::m_actualValue RuntimeObject * ___m_actualValue_19; public: inline static int32_t get_offset_of_m_actualValue_19() { return static_cast<int32_t>(offsetof(ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8, ___m_actualValue_19)); } inline RuntimeObject * get_m_actualValue_19() const { return ___m_actualValue_19; } inline RuntimeObject ** get_address_of_m_actualValue_19() { return &___m_actualValue_19; } inline void set_m_actualValue_19(RuntimeObject * value) { ___m_actualValue_19 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_actualValue_19), (void*)value); } }; struct ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_StaticFields { public: // System.String modreq(System.Runtime.CompilerServices.IsVolatile) System.ArgumentOutOfRangeException::_rangeMessage String_t* ____rangeMessage_18; public: inline static int32_t get_offset_of__rangeMessage_18() { return static_cast<int32_t>(offsetof(ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_StaticFields, ____rangeMessage_18)); } inline String_t* get__rangeMessage_18() const { return ____rangeMessage_18; } inline String_t** get_address_of__rangeMessage_18() { return &____rangeMessage_18; } inline void set__rangeMessage_18(String_t* value) { ____rangeMessage_18 = value; Il2CppCodeGenWriteBarrier((void**)(&____rangeMessage_18), (void*)value); } }; // System.ObjectDisposedException struct ObjectDisposedException_t29EF6F519F16BA477EC682F23E8344BB1E9A958A : public InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB { public: // System.String System.ObjectDisposedException::objectName String_t* ___objectName_17; public: inline static int32_t get_offset_of_objectName_17() { return static_cast<int32_t>(offsetof(ObjectDisposedException_t29EF6F519F16BA477EC682F23E8344BB1E9A958A, ___objectName_17)); } inline String_t* get_objectName_17() const { return ___objectName_17; } inline String_t** get_address_of_objectName_17() { return &___objectName_17; } inline void set_objectName_17(String_t* value) { ___objectName_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___objectName_17), (void*)value); } }; // System.PlatformNotSupportedException struct PlatformNotSupportedException_t4F02BDC290520CA1A2452F51A8AC464F6D5E356E : public NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 { public: public: }; // System.Text.RegularExpressions.RegexMatchTimeoutException struct RegexMatchTimeoutException_t8A80CA43E67CFD00C11CD0B4D65E08171577AB81 : public TimeoutException_tB5D0EEFAEC3FC79FFDEF23C55D1BDF4DE347C926 { public: // System.String System.Text.RegularExpressions.RegexMatchTimeoutException::regexInput String_t* ___regexInput_17; // System.String System.Text.RegularExpressions.RegexMatchTimeoutException::regexPattern String_t* ___regexPattern_18; // System.TimeSpan System.Text.RegularExpressions.RegexMatchTimeoutException::matchTimeout TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___matchTimeout_19; public: inline static int32_t get_offset_of_regexInput_17() { return static_cast<int32_t>(offsetof(RegexMatchTimeoutException_t8A80CA43E67CFD00C11CD0B4D65E08171577AB81, ___regexInput_17)); } inline String_t* get_regexInput_17() const { return ___regexInput_17; } inline String_t** get_address_of_regexInput_17() { return &___regexInput_17; } inline void set_regexInput_17(String_t* value) { ___regexInput_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___regexInput_17), (void*)value); } inline static int32_t get_offset_of_regexPattern_18() { return static_cast<int32_t>(offsetof(RegexMatchTimeoutException_t8A80CA43E67CFD00C11CD0B4D65E08171577AB81, ___regexPattern_18)); } inline String_t* get_regexPattern_18() const { return ___regexPattern_18; } inline String_t** get_address_of_regexPattern_18() { return &___regexPattern_18; } inline void set_regexPattern_18(String_t* value) { ___regexPattern_18 = value; Il2CppCodeGenWriteBarrier((void**)(&___regexPattern_18), (void*)value); } inline static int32_t get_offset_of_matchTimeout_19() { return static_cast<int32_t>(offsetof(RegexMatchTimeoutException_t8A80CA43E67CFD00C11CD0B4D65E08171577AB81, ___matchTimeout_19)); } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_matchTimeout_19() const { return ___matchTimeout_19; } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_matchTimeout_19() { return &___matchTimeout_19; } inline void set_matchTimeout_19(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value) { ___matchTimeout_19 = value; } }; // System.UriFormatException struct UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D : public FormatException_t119BB207B54B4B1BC28D9B1783C4625AE23D4759 { public: public: }; // System.ComponentModel.Win32Exception struct Win32Exception_t4B7A329153AA0E88CA08533EFB6DB2F2A8E90950 : public ExternalException_tC18275DD0AEB2CDF9F85D94670C5A49A4DC3B783 { public: // System.Int32 System.ComponentModel.Win32Exception::nativeErrorCode int32_t ___nativeErrorCode_17; public: inline static int32_t get_offset_of_nativeErrorCode_17() { return static_cast<int32_t>(offsetof(Win32Exception_t4B7A329153AA0E88CA08533EFB6DB2F2A8E90950, ___nativeErrorCode_17)); } inline int32_t get_nativeErrorCode_17() const { return ___nativeErrorCode_17; } inline int32_t* get_address_of_nativeErrorCode_17() { return &___nativeErrorCode_17; } inline void set_nativeErrorCode_17(int32_t value) { ___nativeErrorCode_17 = value; } }; struct Win32Exception_t4B7A329153AA0E88CA08533EFB6DB2F2A8E90950_StaticFields { public: // System.Boolean System.ComponentModel.Win32Exception::s_ErrorMessagesInitialized bool ___s_ErrorMessagesInitialized_18; // System.Collections.Generic.Dictionary`2<System.Int32,System.String> System.ComponentModel.Win32Exception::s_ErrorMessage Dictionary_2_t0ACB62D0885C7AB376463C70665400A39808C5FB * ___s_ErrorMessage_19; public: inline static int32_t get_offset_of_s_ErrorMessagesInitialized_18() { return static_cast<int32_t>(offsetof(Win32Exception_t4B7A329153AA0E88CA08533EFB6DB2F2A8E90950_StaticFields, ___s_ErrorMessagesInitialized_18)); } inline bool get_s_ErrorMessagesInitialized_18() const { return ___s_ErrorMessagesInitialized_18; } inline bool* get_address_of_s_ErrorMessagesInitialized_18() { return &___s_ErrorMessagesInitialized_18; } inline void set_s_ErrorMessagesInitialized_18(bool value) { ___s_ErrorMessagesInitialized_18 = value; } inline static int32_t get_offset_of_s_ErrorMessage_19() { return static_cast<int32_t>(offsetof(Win32Exception_t4B7A329153AA0E88CA08533EFB6DB2F2A8E90950_StaticFields, ___s_ErrorMessage_19)); } inline Dictionary_2_t0ACB62D0885C7AB376463C70665400A39808C5FB * get_s_ErrorMessage_19() const { return ___s_ErrorMessage_19; } inline Dictionary_2_t0ACB62D0885C7AB376463C70665400A39808C5FB ** get_address_of_s_ErrorMessage_19() { return &___s_ErrorMessage_19; } inline void set_s_ErrorMessage_19(Dictionary_2_t0ACB62D0885C7AB376463C70665400A39808C5FB * value) { ___s_ErrorMessage_19 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_ErrorMessage_19), (void*)value); } }; // System.Net.Sockets.SocketException struct SocketException_tB04D4347A4A41DC1A8583BBAE5A7C990F78C1E88 : public Win32Exception_t4B7A329153AA0E88CA08533EFB6DB2F2A8E90950 { public: // System.Net.EndPoint System.Net.Sockets.SocketException::m_EndPoint EndPoint_t18D4AE8D03090A2B262136E59F95CE61418C34DA * ___m_EndPoint_20; public: inline static int32_t get_offset_of_m_EndPoint_20() { return static_cast<int32_t>(offsetof(SocketException_tB04D4347A4A41DC1A8583BBAE5A7C990F78C1E88, ___m_EndPoint_20)); } inline EndPoint_t18D4AE8D03090A2B262136E59F95CE61418C34DA * get_m_EndPoint_20() const { return ___m_EndPoint_20; } inline EndPoint_t18D4AE8D03090A2B262136E59F95CE61418C34DA ** get_address_of_m_EndPoint_20() { return &___m_EndPoint_20; } inline void set_m_EndPoint_20(EndPoint_t18D4AE8D03090A2B262136E59F95CE61418C34DA * value) { ___m_EndPoint_20 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_EndPoint_20), (void*)value); } }; // Unity.ThrowStub struct ThrowStub_t5906D1D52FCD7EAE2537FC295143AFA9D7C05F67 : public ObjectDisposedException_t29EF6F519F16BA477EC682F23E8344BB1E9A958A { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif // System.Int32[] struct Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32 : public RuntimeArray { public: ALIGN_FIELD (8) int32_t m_Items[1]; public: inline int32_t GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline int32_t* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, int32_t value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline int32_t GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline int32_t* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, int32_t value) { m_Items[index] = value; } }; // System.String[] struct StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A : public RuntimeArray { public: ALIGN_FIELD (8) String_t* m_Items[1]; public: inline String_t* GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline String_t** GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, String_t* value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline String_t* GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline String_t** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, String_t* value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // System.Text.RegularExpressions.RegexFC[] struct RegexFCU5BU5D_t2785114C5B0BD79CA8B9C2715A5368BDC5941356 : public RuntimeArray { public: ALIGN_FIELD (8) RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826 * m_Items[1]; public: inline RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826 * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826 ** 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, RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826 * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826 * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826 ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826 * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // System.Object[] struct ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE : public RuntimeArray { public: ALIGN_FIELD (8) RuntimeObject * m_Items[1]; public: inline RuntimeObject * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline RuntimeObject ** GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, RuntimeObject * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline RuntimeObject * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline RuntimeObject ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, RuntimeObject * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // System.Byte[] struct ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726 : public RuntimeArray { public: ALIGN_FIELD (8) uint8_t m_Items[1]; public: inline uint8_t GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline uint8_t* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, uint8_t value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline uint8_t GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline uint8_t* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, uint8_t value) { m_Items[index] = value; } }; // System.Char[] struct CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34 : public RuntimeArray { public: ALIGN_FIELD (8) Il2CppChar m_Items[1]; public: inline Il2CppChar GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Il2CppChar* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Il2CppChar value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline Il2CppChar GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Il2CppChar* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Il2CppChar value) { m_Items[index] = value; } }; // System.Int32Enum[] struct Int32EnumU5BU5D_t9327F857579EE00EB201E1913599094BF837D3CD : 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 System.Collections.Generic.List`1<System.Object>::get_Count() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m5D847939ABB9A78203B062CAFFE975792174D00F_gshared_inline (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1<System.Object>::CopyTo(System.Int32,!0[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_CopyTo_m94099C7EAF3650940CD16B957D2B0935BBA879BE_gshared (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, int32_t ___index0, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___array1, int32_t ___arrayIndex2, int32_t ___count3, const RuntimeMethod* method); // !0 System.Collections.Generic.List`1<System.Object>::get_Item(System.Int32) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * List_1_get_Item_mF00B574E58FB078BB753B05A3B86DD0A7A266B63_gshared_inline (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, int32_t ___index0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1<System.Object>::Reverse(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Reverse_mAF7297B4B349FAE1A7207530D786B3D8568C0258_gshared (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, int32_t ___index0, int32_t ___count1, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1<System.Object>::set_Item(System.Int32,!0) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_set_Item_m73674D291C1D6030C21A39003E4743D110ACC6A2_gshared (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, int32_t ___index0, RuntimeObject * ___value1, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1<System.Object>::InsertRange(System.Int32,System.Collections.Generic.IEnumerable`1<!0>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_InsertRange_mDC4CE8009A2C258C8A670BB6D6825735D31E7E8F_gshared (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, int32_t ___index0, RuntimeObject* ___collection1, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1<System.Object>::RemoveRange(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_RemoveRange_m0BBC3852B9B0719DDA7E6AFEF3C3E3CD165DF5AA_gshared (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, int32_t ___index0, int32_t ___count1, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1<System.Object>::.ctor(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_mFEB2301A6F28290A828A979BA9CC847B16B3D538_gshared (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, int32_t ___capacity0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1<System.Object>::Add(!0) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Add_mE5B3CBB3A625606D9BC4337FEAAF1D66BCB6F96E_gshared (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, RuntimeObject * ___item0, const RuntimeMethod* method); // !0[] System.Collections.Generic.List`1<System.Object>::ToArray() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* List_1_ToArray_mA737986DE6389E9DD8FA8E3D4E222DE4DA34958D_gshared (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1<System.Int32Enum>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_mF1D0377D81949B2ADB6104D9994F7CEE1A1E5040_gshared (List_1_tD9A0DAE3CF1F9450036B041168264AE0CEF1737A * __this, const RuntimeMethod* method); // System.Int32 System.Collections.Generic.List`1<System.Int32Enum>::get_Count() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m3632094BEC4410A1022FD0293E7BA88FC3B811A8_gshared_inline (List_1_tD9A0DAE3CF1F9450036B041168264AE0CEF1737A * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1<System.Int32Enum>::RemoveRange(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_RemoveRange_m6F693A039E6B2E2900BE7F6C78253F32E2D7553A_gshared (List_1_tD9A0DAE3CF1F9450036B041168264AE0CEF1737A * __this, int32_t ___index0, int32_t ___count1, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1<System.Object>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m0F0E00088CF56FEACC9E32D8B7D91B93D91DAA3B_gshared (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, const RuntimeMethod* method); // System.Collections.Generic.Comparer`1<!0> System.Collections.Generic.Comparer`1<System.Int32>::get_Default() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Comparer_1_t3E3093220DB5D33A829C91C1DFDBDE2F42ECEDC7 * Comparer_1_get_Default_m4E5D9DBA11E8CC2229E46D18B658D018A7C18934_gshared (const RuntimeMethod* method); // System.Void System.Array::Sort<System.Int32>(!!0[],System.Collections.Generic.IComparer`1<!!0>) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Sort_TisInt32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_m869CA1F8E6B6C60EDC16FAD4EE1B58274F42A791_gshared (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___array0, RuntimeObject* ___comparer1, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1<System.Int32Enum>::Add(!0) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Add_mBA0FDF41792A78B3EB9E395D711706E268313F0F_gshared (List_1_tD9A0DAE3CF1F9450036B041168264AE0CEF1737A * __this, int32_t ___item0, const RuntimeMethod* method); // !0 System.Collections.Generic.List`1<System.Int32Enum>::get_Item(System.Int32) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Item_m7C5FD44913A3832DC5D7875F3ADA6FA0D28DDB3E_gshared_inline (List_1_tD9A0DAE3CF1F9450036B041168264AE0CEF1737A * __this, int32_t ___index0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1<System.Int32Enum>::RemoveAt(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_RemoveAt_m773E96422E4C6790FAD627D7D77548B42712E48E_gshared (List_1_tD9A0DAE3CF1F9450036B041168264AE0CEF1737A * __this, int32_t ___index0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_mC9E7381F0B0B82E0320B2523835DAFC9CB3D1C8D_gshared (Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::ContainsKey(!0) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_ContainsKey_m71AD9A0E45BC55BFE609CB88752829A7C810E68D_gshared (Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * __this, RuntimeObject * ___key0, const RuntimeMethod* method); // !1 System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::get_Item(!0) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Dictionary_2_get_Item_mA9EF21764AC04923FECB24BAA6C2F96CEB1606D1_gshared (Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * __this, RuntimeObject * ___key0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Int32>::set_Item(!0,!1) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_set_Item_m9BDED5248054C2E86ECBA732FE7BCDAA32D0A118_gshared (Dictionary_2_t1DDD2F48B87E022F599DF2452A49BB70BE95A7F8 * __this, RuntimeObject * ___key0, int32_t ___value1, const RuntimeMethod* method); // System.Void System.Object::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405 (RuntimeObject * __this, const RuntimeMethod* method); // System.Int32 System.Collections.Generic.List`1<System.String>::get_Count() inline int32_t List_1_get_Count_m199DB87BCE947106FBA38E19FDFE80CB65B61144_inline (List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * __this, const RuntimeMethod* method) { return (( int32_t (*) (List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 *, const RuntimeMethod*))List_1_get_Count_m5D847939ABB9A78203B062CAFFE975792174D00F_gshared_inline)(__this, method); } // System.Void System.Collections.Generic.List`1<System.String>::CopyTo(System.Int32,!0[],System.Int32,System.Int32) inline void List_1_CopyTo_m3B15B2E03F0BB9FFAF6DE71E6B38768B911EC5C7 (List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * __this, int32_t ___index0, StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___array1, int32_t ___arrayIndex2, int32_t ___count3, const RuntimeMethod* method) { (( void (*) (List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 *, int32_t, StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*, int32_t, int32_t, const RuntimeMethod*))List_1_CopyTo_m94099C7EAF3650940CD16B957D2B0935BBA879BE_gshared)(__this, ___index0, ___array1, ___arrayIndex2, ___count3, method); } // System.Void System.Text.RegularExpressions.RegexCharClass::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexCharClass__ctor_m70685392EB3C5808958E20C99E045F33E21C8192 (RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5 * __this, const RuntimeMethod* method); // System.Void System.Text.RegularExpressions.RegexCharClass::AddRange(System.Char,System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexCharClass_AddRange_mD9FB543DC3B128104DBCFEA0B2E672E8A8669C5A (RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5 * __this, Il2CppChar ___first0, Il2CppChar ___last1, const RuntimeMethod* method); // System.Text.RegularExpressions.RegexCharClass System.Text.RegularExpressions.RegexCharClass::Parse(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5 * RegexCharClass_Parse_m1A4671A8A47BA3DAC47386D01D5995C6100E87AC (String_t* ___charClass0, const RuntimeMethod* method); // System.Boolean System.Text.RegularExpressions.RegexCharClass::get_CanMerge() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexCharClass_get_CanMerge_mE5B4778068AA81EB1B7D426C48EF0C5CFEA0021B (RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5 * __this, const RuntimeMethod* method); // System.Void System.Text.RegularExpressions.RegexCharClass::AddCharClass(System.Text.RegularExpressions.RegexCharClass) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexCharClass_AddCharClass_m1E139F8FDC0E1A33E143A3A413255F6D521F7EB8 (RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5 * __this, RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5 * ___cc0, const RuntimeMethod* method); // System.Void System.Text.RegularExpressions.RegexCharClass::AddLowercase(System.Globalization.CultureInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexCharClass_AddLowercase_m4FAE0AB13B3DB076F711B6B06C2E61F40A115B40 (RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5 * __this, CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * ___culture0, const RuntimeMethod* method); // System.String System.Text.RegularExpressions.RegexCharClass::ToStringClass() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* RegexCharClass_ToStringClass_mFC6754E97F014AFE4B5138AD5386E9C76D1D3CD7 (RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5 * __this, const RuntimeMethod* method); // System.Void System.Text.RegularExpressions.RegexFCD::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexFCD__ctor_m81A680DE9EE0A7D9CB3F0245E4B584033ED7C299 (RegexFCD_tF50EFB93429390CF2488DAB5FD07DE6E48F1CDBF * __this, const RuntimeMethod* method); // System.Text.RegularExpressions.RegexFC System.Text.RegularExpressions.RegexFCD::RegexFCFromRegexTree(System.Text.RegularExpressions.RegexTree) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826 * RegexFCD_RegexFCFromRegexTree_m280F32208540ABB3B88FBA4BC3F7FE6A7E02DA40 (RegexFCD_tF50EFB93429390CF2488DAB5FD07DE6E48F1CDBF * __this, RegexTree_t63A434601D42EC388D9B2DCA2913286CFC8811F3 * ___tree0, const RuntimeMethod* method); // System.Globalization.CultureInfo System.Globalization.CultureInfo::get_CurrentCulture() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * CultureInfo_get_CurrentCulture_m99E5F5BD20445F2A73F7EA0014A4E783DF3840BB (const RuntimeMethod* method); // System.Globalization.CultureInfo System.Globalization.CultureInfo::get_InvariantCulture() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * CultureInfo_get_InvariantCulture_m9FAAFAF8A00091EE1FCB7098AD3F163ECDF02164 (const RuntimeMethod* method); // System.String System.Text.RegularExpressions.RegexFC::GetFirstChars(System.Globalization.CultureInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* RegexFC_GetFirstChars_mA929BEEE9D6186588C518891EB8CB416C31060FC (RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826 * __this, CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * ___culture0, const RuntimeMethod* method); // System.Boolean System.Text.RegularExpressions.RegexFC::IsCaseInsensitive() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool RegexFC_IsCaseInsensitive_m522494DC3CF0587D7B65D57B4C14E1428A2E34CA_inline (RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826 * __this, const RuntimeMethod* method); // System.Void System.Text.RegularExpressions.RegexPrefix::.ctor(System.String,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexPrefix__ctor_mC34F48A63A8A04942930B9FE236636E2AA745B24 (RegexPrefix_t1563C82A76799B0B018F5EBD6EC068158BE50301 * __this, String_t* ___prefix0, bool ___ci1, const RuntimeMethod* method); // System.Int32 System.Text.RegularExpressions.RegexNode::ChildCount() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexNode_ChildCount_m15D92C9740BA92B2E78B392F7215B8D7D0242172 (RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * __this, const RuntimeMethod* method); // System.Text.RegularExpressions.RegexNode System.Text.RegularExpressions.RegexNode::Child(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * RegexNode_Child_mAE38F2EF7289FE455686B7BEEF81C39A9D25E960 (RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * __this, int32_t ___i0, const RuntimeMethod* method); // System.String System.String::PadRight(System.Int32,System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_PadRight_m2C464B0C6136A24187CF5C8B84E2C6BB614C42FF (String_t* __this, int32_t ___totalWidth0, Il2CppChar ___paddingChar1, const RuntimeMethod* method); // System.Text.RegularExpressions.RegexPrefix System.Text.RegularExpressions.RegexPrefix::get_Empty() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RegexPrefix_t1563C82A76799B0B018F5EBD6EC068158BE50301 * RegexPrefix_get_Empty_m65C2AD019C414B97A57D5AA5B4B0DC331E011A8C_inline (const RuntimeMethod* method); // System.String System.Char::ToString(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Char_ToString_m06BE905F629AFE67313D613EC0ABFA8572CAEFC2 (Il2CppChar* __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.Int32 System.Text.RegularExpressions.RegexFCD::AnchorFromType(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexFCD_AnchorFromType_mF78B2ABC2D01B01663B7ABC885B3067F199A40C7 (int32_t ___type0, const RuntimeMethod* method); // System.Void System.Array::Copy(System.Array,System.Int32,System.Array,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Copy_m3F127FFB5149532135043FFE285F9177C80CB877 (RuntimeArray * ___sourceArray0, int32_t ___sourceIndex1, RuntimeArray * ___destinationArray2, int32_t ___destinationIndex3, int32_t ___length4, const RuntimeMethod* method); // System.Void System.Text.RegularExpressions.RegexFCD::CalculateFC(System.Int32,System.Text.RegularExpressions.RegexNode,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexFCD_CalculateFC_m11BAAB103351C64BA06B41B999C2BAD670E3579F (RegexFCD_tF50EFB93429390CF2488DAB5FD07DE6E48F1CDBF * __this, int32_t ___NodeType0, RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * ___node1, int32_t ___CurIndex2, const RuntimeMethod* method); // System.Int32 System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexNode>::get_Count() inline int32_t List_1_get_Count_m3A81757FE0B3283CB292CA61894273AA7B5C97CD_inline (List_1_t692D260BEBA1E69864C98DEEDB3E9256C38CD9B9 * __this, const RuntimeMethod* method) { return (( int32_t (*) (List_1_t692D260BEBA1E69864C98DEEDB3E9256C38CD9B9 *, const RuntimeMethod*))List_1_get_Count_m5D847939ABB9A78203B062CAFFE975792174D00F_gshared_inline)(__this, method); } // !0 System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexNode>::get_Item(System.Int32) inline RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * List_1_get_Item_m8A95D3769314CC0C4DDBE001AD1C40B4D5212053_inline (List_1_t692D260BEBA1E69864C98DEEDB3E9256C38CD9B9 * __this, int32_t ___index0, const RuntimeMethod* method) { return (( RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * (*) (List_1_t692D260BEBA1E69864C98DEEDB3E9256C38CD9B9 *, int32_t, const RuntimeMethod*))List_1_get_Item_mF00B574E58FB078BB753B05A3B86DD0A7A266B63_gshared_inline)(__this, ___index0, method); } // System.Void System.Text.RegularExpressions.RegexFCD::PushInt(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexFCD_PushInt_m2C075ABCE35D8B5F3AE842D0A79BEBBDF53E79E6 (RegexFCD_tF50EFB93429390CF2488DAB5FD07DE6E48F1CDBF * __this, int32_t ___I0, const RuntimeMethod* method); // System.Boolean System.Text.RegularExpressions.RegexFCD::IntIsEmpty() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexFCD_IntIsEmpty_m4CFF914DAAAF04747FD11B2740D47CD4A41F7321 (RegexFCD_tF50EFB93429390CF2488DAB5FD07DE6E48F1CDBF * __this, const RuntimeMethod* method); // System.Int32 System.Text.RegularExpressions.RegexFCD::PopInt() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexFCD_PopInt_m15845F98455FA8320FCC484AD15CE5A55B43EA14 (RegexFCD_tF50EFB93429390CF2488DAB5FD07DE6E48F1CDBF * __this, const RuntimeMethod* method); // System.Boolean System.Text.RegularExpressions.RegexFCD::FCIsEmpty() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexFCD_FCIsEmpty_m3FFF61F7B0567B2B1ABA23377742A6D0AC9DF016 (RegexFCD_tF50EFB93429390CF2488DAB5FD07DE6E48F1CDBF * __this, const RuntimeMethod* method); // System.Text.RegularExpressions.RegexFC System.Text.RegularExpressions.RegexFCD::PopFC() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826 * RegexFCD_PopFC_mE67FE0664971894C6935632FD634207784EAE43F (RegexFCD_tF50EFB93429390CF2488DAB5FD07DE6E48F1CDBF * __this, const RuntimeMethod* method); // System.Void System.Text.RegularExpressions.RegexFCD::SkipChild() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexFCD_SkipChild_mE3F09E85EC04B345584A4268DDE28029B1493ABD (RegexFCD_tF50EFB93429390CF2488DAB5FD07DE6E48F1CDBF * __this, const RuntimeMethod* method); // System.Void System.Text.RegularExpressions.RegexFC::.ctor(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexFC__ctor_mA39AF7098BC1D63C19E316121CC854AACBE4CB59 (RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826 * __this, bool ___nullable0, const RuntimeMethod* method); // System.Void System.Text.RegularExpressions.RegexFCD::PushFC(System.Text.RegularExpressions.RegexFC) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexFCD_PushFC_mC4174F9014750978ADB35B3E45DE43D740070B92 (RegexFCD_tF50EFB93429390CF2488DAB5FD07DE6E48F1CDBF * __this, RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826 * ___fc0, const RuntimeMethod* method); // System.Text.RegularExpressions.RegexFC System.Text.RegularExpressions.RegexFCD::TopFC() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826 * RegexFCD_TopFC_mC9A10E7061B6283532AF800971B26A7660036AF6 (RegexFCD_tF50EFB93429390CF2488DAB5FD07DE6E48F1CDBF * __this, const RuntimeMethod* method); // System.Boolean System.Text.RegularExpressions.RegexFC::AddFC(System.Text.RegularExpressions.RegexFC,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexFC_AddFC_m515C7808755FE89185D85B3C39184C2425B44629 (RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826 * __this, RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826 * ___fc0, bool ___concatenate1, const RuntimeMethod* method); // System.Void System.Text.RegularExpressions.RegexFC::.ctor(System.Char,System.Boolean,System.Boolean,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexFC__ctor_mA9779C6F7E4B0B76041B34DF40F2B6DBA82761E2 (RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826 * __this, Il2CppChar ___ch0, bool ___not1, bool ___nullable2, bool ___caseInsensitive3, const RuntimeMethod* method); // System.Int32 System.String::get_Length() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline (String_t* __this, const RuntimeMethod* method); // System.Char System.String::get_Chars(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70 (String_t* __this, int32_t ___index0, const RuntimeMethod* method); // System.Void System.Text.RegularExpressions.RegexFC::.ctor(System.String,System.Boolean,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexFC__ctor_m8693359483B2128560FC374872CFC1382A0605B2 (RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826 * __this, String_t* ___charClass0, bool ___nullable1, bool ___caseInsensitive2, const RuntimeMethod* method); // System.String System.Int32::ToString(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Int32_ToString_m027A8C9419D2FE56ED5D2EE42A6F3B3CE0130471 (int32_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.String SR::GetString(System.String,System.Object[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SR_GetString_m4FFAF18248A54C5B67E4760C5ED4869A87BCAD7F (String_t* ___name0, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___args1, const RuntimeMethod* method); // System.Void System.ArgumentException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * __this, String_t* ___message0, const RuntimeMethod* method); // System.Void System.Text.RegularExpressions.RegexRunner::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexRunner__ctor_m6925516B4C16AC95CFAAFCCDB5CFEAD505B7920B (RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 * __this, const RuntimeMethod* method); // System.Void System.Text.RegularExpressions.RegexInterpreter::Advance(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexInterpreter_Advance_m47537FC4AB2CB92D2D9100C755D936DED76B03EE (RegexInterpreter_tF3C74D72240962B960AE4D39D9CF1632C9C2982E * __this, int32_t ___i0, const RuntimeMethod* method); // System.Void System.Text.RegularExpressions.RegexInterpreter::SetOperator(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexInterpreter_SetOperator_m6F39391186CA54646ABAF1A8D3584533261E6A3F (RegexInterpreter_tF3C74D72240962B960AE4D39D9CF1632C9C2982E * __this, int32_t ___op0, const RuntimeMethod* method); // System.Void System.Text.RegularExpressions.RegexRunner::EnsureStorage() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexRunner_EnsureStorage_mA28C2C957E9C94A1EB89424D837A87114E38325E (RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 * __this, const RuntimeMethod* method); // System.Char System.Char::ToLower(System.Char,System.Globalization.CultureInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Char_ToLower_m42C052EB06C3F461C8CEBAD492E102EB721FDECE (Il2CppChar ___c0, CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * ___culture1, const RuntimeMethod* method); // System.Char System.Text.RegularExpressions.RegexInterpreter::CharAt(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar RegexInterpreter_CharAt_mBC8ABA0BE4AC926938A4A4F6DEFB89437AEC3F6E (RegexInterpreter_tF3C74D72240962B960AE4D39D9CF1632C9C2982E * __this, int32_t ___j0, const RuntimeMethod* method); // System.Boolean System.Text.RegularExpressions.RegexBoyerMoore::IsMatch(System.String,System.Int32,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexBoyerMoore_IsMatch_m37FDC206D86DD3C91A745BE15731677FE01F624B (RegexBoyerMoore_t43FE488EFF3EE20D1092216B7E62D954F78167D2 * __this, String_t* ___text0, int32_t ___index1, int32_t ___beglimit2, int32_t ___endlimit3, const RuntimeMethod* method); // System.Int32 System.Text.RegularExpressions.RegexBoyerMoore::Scan(System.String,System.Int32,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexBoyerMoore_Scan_m8C2A8FE0B6CFE8C7844AF8F2FEA79532935BAE43 (RegexBoyerMoore_t43FE488EFF3EE20D1092216B7E62D954F78167D2 * __this, String_t* ___text0, int32_t ___index1, int32_t ___beglimit2, int32_t ___endlimit3, const RuntimeMethod* method); // System.Boolean System.Text.RegularExpressions.RegexPrefix::get_CaseInsensitive() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool RegexPrefix_get_CaseInsensitive_mB4CF8FBFABE26F206AF6324A0C87DFB34C051A95_inline (RegexPrefix_t1563C82A76799B0B018F5EBD6EC068158BE50301 * __this, const RuntimeMethod* method); // System.String System.Text.RegularExpressions.RegexPrefix::get_Prefix() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* RegexPrefix_get_Prefix_m6806C1EEE5B8973606B320A9C4CD5A9E91466F34_inline (RegexPrefix_t1563C82A76799B0B018F5EBD6EC068158BE50301 * __this, const RuntimeMethod* method); // System.Boolean System.Text.RegularExpressions.RegexCharClass::IsSingleton(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexCharClass_IsSingleton_mF6500F4A47D3E44CDE29C0BA21AC111282C50737 (String_t* ___set0, const RuntimeMethod* method); // System.Char System.Text.RegularExpressions.RegexCharClass::SingletonChar(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar RegexCharClass_SingletonChar_m8D1E6205BE062B72C10A417C0BBE130888FAF3FF (String_t* ___set0, const RuntimeMethod* method); // System.Int32 System.Text.RegularExpressions.RegexInterpreter::Forwardchars() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexInterpreter_Forwardchars_mFD54A946FE00B2613D92F1CCAE7B53CDB4312420 (RegexInterpreter_tF3C74D72240962B960AE4D39D9CF1632C9C2982E * __this, const RuntimeMethod* method); // System.Char System.Text.RegularExpressions.RegexInterpreter::Forwardcharnext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar RegexInterpreter_Forwardcharnext_m39C5E9B8B3EDC556CE6A61C1957ACFD5F8ED025E (RegexInterpreter_tF3C74D72240962B960AE4D39D9CF1632C9C2982E * __this, const RuntimeMethod* method); // System.Void System.Text.RegularExpressions.RegexInterpreter::Backwardnext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexInterpreter_Backwardnext_m68F8015F83EA7DEBBDB6405A6EF9092E814D88EC (RegexInterpreter_tF3C74D72240962B960AE4D39D9CF1632C9C2982E * __this, const RuntimeMethod* method); // System.Boolean System.Text.RegularExpressions.RegexCharClass::CharInClass(System.Char,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexCharClass_CharInClass_m255B7683478670C002F04238394193EEFA126AE8 (Il2CppChar ___ch0, String_t* ___set1, const RuntimeMethod* method); // System.Void System.Text.RegularExpressions.RegexInterpreter::Goto(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexInterpreter_Goto_mAB873EAF14CC58B684C91137D6E8817EB47FAB48 (RegexInterpreter_tF3C74D72240962B960AE4D39D9CF1632C9C2982E * __this, int32_t ___newpos0, const RuntimeMethod* method); // System.Void System.Text.RegularExpressions.RegexRunner::CheckTimeout() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexRunner_CheckTimeout_mBE5718B5085C46A4B1B9498DE83B7C4D22E4C27C (RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 * __this, const RuntimeMethod* method); // System.Int32 System.Text.RegularExpressions.RegexInterpreter::Operator() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t RegexInterpreter_Operator_m9C06EB53FFBB6722B2ACB95057BC30E0A9F05DFF_inline (RegexInterpreter_tF3C74D72240962B960AE4D39D9CF1632C9C2982E * __this, const RuntimeMethod* method); // System.Int32 System.Text.RegularExpressions.RegexInterpreter::Operand(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexInterpreter_Operand_mB8AED0E2B8222A584A61D313DE9AB475724F50A0 (RegexInterpreter_tF3C74D72240962B960AE4D39D9CF1632C9C2982E * __this, int32_t ___i0, const RuntimeMethod* method); // System.Boolean System.Text.RegularExpressions.RegexRunner::IsMatched(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexRunner_IsMatched_mCC5330346DACE22EAA86DD072CD36752023C66E9 (RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 * __this, int32_t ___cap0, const RuntimeMethod* method); // System.Int32 System.Text.RegularExpressions.RegexInterpreter::Textpos() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t RegexInterpreter_Textpos_mCCC8ABAE83D37BA6F060242E1ECAC7D91D8910F5_inline (RegexInterpreter_tF3C74D72240962B960AE4D39D9CF1632C9C2982E * __this, const RuntimeMethod* method); // System.Void System.Text.RegularExpressions.RegexInterpreter::TrackPush(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexInterpreter_TrackPush_m2DA2DB51ACD26004F4FB8B8D80EEC20D4AA14C49 (RegexInterpreter_tF3C74D72240962B960AE4D39D9CF1632C9C2982E * __this, int32_t ___I10, const RuntimeMethod* method); // System.Void System.Text.RegularExpressions.RegexInterpreter::TrackPop() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexInterpreter_TrackPop_m8E31A4201CD48C0888BE0DB6EB317036E7E7C4D8 (RegexInterpreter_tF3C74D72240962B960AE4D39D9CF1632C9C2982E * __this, const RuntimeMethod* method); // System.Int32 System.Text.RegularExpressions.RegexInterpreter::TrackPeek() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexInterpreter_TrackPeek_mFB63C0E3D25EEEEC1DBD5FF5601E59C6F0414396 (RegexInterpreter_tF3C74D72240962B960AE4D39D9CF1632C9C2982E * __this, const RuntimeMethod* method); // System.Void System.Text.RegularExpressions.RegexInterpreter::Textto(System.Int32) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void RegexInterpreter_Textto_m874B113DFF6381DFC1BF8A8F7E6D79B819CF06AE_inline (RegexInterpreter_tF3C74D72240962B960AE4D39D9CF1632C9C2982E * __this, int32_t ___newpos0, const RuntimeMethod* method); // System.Void System.Text.RegularExpressions.RegexInterpreter::StackPush(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexInterpreter_StackPush_m488F7B4FABE6E66EF8D28F070303C7B344A9217F (RegexInterpreter_tF3C74D72240962B960AE4D39D9CF1632C9C2982E * __this, int32_t ___I10, const RuntimeMethod* method); // System.Void System.Text.RegularExpressions.RegexInterpreter::TrackPush() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexInterpreter_TrackPush_mBE985076C7632B82D188C6484BD6C7980C392379 (RegexInterpreter_tF3C74D72240962B960AE4D39D9CF1632C9C2982E * __this, const RuntimeMethod* method); // System.Void System.Text.RegularExpressions.RegexInterpreter::Advance() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexInterpreter_Advance_mC3549A945557AD11D80890E0DCBC6D53860A97FE (RegexInterpreter_tF3C74D72240962B960AE4D39D9CF1632C9C2982E * __this, const RuntimeMethod* method); // System.Void System.Text.RegularExpressions.RegexInterpreter::StackPop() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexInterpreter_StackPop_m28CD98B18B8010F9398FAB5A1C0CB3E220FB0A13 (RegexInterpreter_tF3C74D72240962B960AE4D39D9CF1632C9C2982E * __this, const RuntimeMethod* method); // System.Int32 System.Text.RegularExpressions.RegexInterpreter::StackPeek() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexInterpreter_StackPeek_mE0B2D861B2A747936538EC83EDEBDC8C6424E3D0 (RegexInterpreter_tF3C74D72240962B960AE4D39D9CF1632C9C2982E * __this, const RuntimeMethod* method); // System.Void System.Text.RegularExpressions.RegexRunner::TransferCapture(System.Int32,System.Int32,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexRunner_TransferCapture_mBD3BA00B949753D1C0A142776C4EF3796DBC627B (RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 * __this, int32_t ___capnum0, int32_t ___uncapnum1, int32_t ___start2, int32_t ___end3, const RuntimeMethod* method); // System.Void System.Text.RegularExpressions.RegexRunner::Capture(System.Int32,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexRunner_Capture_mAC8B534A534941D5003730CA28B41F4082CF45C0 (RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 * __this, int32_t ___capnum0, int32_t ___start1, int32_t ___end2, const RuntimeMethod* method); // System.Void System.Text.RegularExpressions.RegexRunner::Uncapture() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexRunner_Uncapture_mAEA536C22A1DD0BCE123A04A4BCFD1A8BE8D1F7B (RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 * __this, const RuntimeMethod* method); // System.Void System.Text.RegularExpressions.RegexInterpreter::TrackPush(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexInterpreter_TrackPush_m874CB8F853DD4EB0FAD4A2DEF9CC2EAC3DD5BA5E (RegexInterpreter_tF3C74D72240962B960AE4D39D9CF1632C9C2982E * __this, int32_t ___I10, int32_t ___I21, const RuntimeMethod* method); // System.Void System.Text.RegularExpressions.RegexInterpreter::TrackPush2(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexInterpreter_TrackPush2_m490912B4D5B2E19FA2739EA0211FA91DA6423634 (RegexInterpreter_tF3C74D72240962B960AE4D39D9CF1632C9C2982E * __this, int32_t ___I10, const RuntimeMethod* method); // System.Void System.Text.RegularExpressions.RegexInterpreter::TrackPop(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexInterpreter_TrackPop_mBE47D7E983B6BD0C45F7F376AA0272B0827AB4E4 (RegexInterpreter_tF3C74D72240962B960AE4D39D9CF1632C9C2982E * __this, int32_t ___framesize0, const RuntimeMethod* method); // System.Int32 System.Text.RegularExpressions.RegexInterpreter::TrackPeek(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexInterpreter_TrackPeek_m946313A941F42F58C555593B8CD2C00E702400AB (RegexInterpreter_tF3C74D72240962B960AE4D39D9CF1632C9C2982E * __this, int32_t ___i0, const RuntimeMethod* method); // System.Void System.Text.RegularExpressions.RegexInterpreter::StackPush(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexInterpreter_StackPush_m46ADD790ADB62A6FFFC56ACC93A5BFB11578A45B (RegexInterpreter_tF3C74D72240962B960AE4D39D9CF1632C9C2982E * __this, int32_t ___I10, int32_t ___I21, const RuntimeMethod* method); // System.Void System.Text.RegularExpressions.RegexInterpreter::StackPop(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexInterpreter_StackPop_m1DBCCF39146C4C13FEBABCF7139CDAF89AB339ED (RegexInterpreter_tF3C74D72240962B960AE4D39D9CF1632C9C2982E * __this, int32_t ___framesize0, const RuntimeMethod* method); // System.Int32 System.Text.RegularExpressions.RegexInterpreter::StackPeek(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexInterpreter_StackPeek_mFA8013A28365F539B9083C906BEB80008AE281A0 (RegexInterpreter_tF3C74D72240962B960AE4D39D9CF1632C9C2982E * __this, int32_t ___i0, const RuntimeMethod* method); // System.Void System.Text.RegularExpressions.RegexInterpreter::TrackPush2(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexInterpreter_TrackPush2_m5B36C2B678F621B4BCF26D038E5AE40A55BC5884 (RegexInterpreter_tF3C74D72240962B960AE4D39D9CF1632C9C2982E * __this, int32_t ___I10, int32_t ___I21, const RuntimeMethod* method); // System.Void System.Text.RegularExpressions.RegexInterpreter::TrackPush(System.Int32,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexInterpreter_TrackPush_mEF674B57E2A8FC7E555803DE53EEE076EC0E5E75 (RegexInterpreter_tF3C74D72240962B960AE4D39D9CF1632C9C2982E * __this, int32_t ___I10, int32_t ___I21, int32_t ___I32, const RuntimeMethod* method); // System.Int32 System.Text.RegularExpressions.RegexInterpreter::Trackpos() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexInterpreter_Trackpos_mDA7F7A3B4A02FC45B46AF1FD47778E0C0C9A5F64 (RegexInterpreter_tF3C74D72240962B960AE4D39D9CF1632C9C2982E * __this, const RuntimeMethod* method); // System.Int32 System.Text.RegularExpressions.RegexRunner::Crawlpos() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexRunner_Crawlpos_mBFE7A9D83990B8CF829D66CD088414F96A03B49F (RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 * __this, const RuntimeMethod* method); // System.Void System.Text.RegularExpressions.RegexInterpreter::Trackto(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexInterpreter_Trackto_m00A652840F4C1B3FE74527A910FB6BDE144F4CD2 (RegexInterpreter_tF3C74D72240962B960AE4D39D9CF1632C9C2982E * __this, int32_t ___newpos0, const RuntimeMethod* method); // System.Int32 System.Text.RegularExpressions.RegexInterpreter::Leftchars() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexInterpreter_Leftchars_mB50E0C06B5C05F48BBA69D21BFB6382705C696C4 (RegexInterpreter_tF3C74D72240962B960AE4D39D9CF1632C9C2982E * __this, const RuntimeMethod* method); // System.Int32 System.Text.RegularExpressions.RegexInterpreter::Rightchars() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexInterpreter_Rightchars_m2DEB5D856E0BEC8CFE39B2546B504CB2FCC1DC2C (RegexInterpreter_tF3C74D72240962B960AE4D39D9CF1632C9C2982E * __this, const RuntimeMethod* method); // System.Boolean System.Text.RegularExpressions.RegexRunner::IsBoundary(System.Int32,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexRunner_IsBoundary_mBC555EC9574974908A1B0CEA3D1853D54BD10D62 (RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 * __this, int32_t ___index0, int32_t ___startpos1, int32_t ___endpos2, const RuntimeMethod* method); // System.Boolean System.Text.RegularExpressions.RegexRunner::IsECMABoundary(System.Int32,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexRunner_IsECMABoundary_m151787CEE018DB6D42182AF4464485CDC4CEAFAB (RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 * __this, int32_t ___index0, int32_t ___startpos1, int32_t ___endpos2, const RuntimeMethod* method); // System.Int32 System.Text.RegularExpressions.RegexInterpreter::Textstart() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t RegexInterpreter_Textstart_m635CAE9587982E8C88F98F7374460E742A7F5953_inline (RegexInterpreter_tF3C74D72240962B960AE4D39D9CF1632C9C2982E * __this, const RuntimeMethod* method); // System.Boolean System.Text.RegularExpressions.RegexInterpreter::Stringmatch(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexInterpreter_Stringmatch_m81EA1913981000A8D944B5DA757813058F0F4ABD (RegexInterpreter_tF3C74D72240962B960AE4D39D9CF1632C9C2982E * __this, String_t* ___str0, const RuntimeMethod* method); // System.Int32 System.Text.RegularExpressions.RegexRunner::MatchIndex(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexRunner_MatchIndex_m9FBD010C648C8BBD087FFF4C470FE82494A72ACB (RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 * __this, int32_t ___cap0, const RuntimeMethod* method); // System.Int32 System.Text.RegularExpressions.RegexRunner::MatchLength(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexRunner_MatchLength_mE1EFA365EAA84B7CDC515A4DEC99CF6D8581A1E8 (RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 * __this, int32_t ___cap0, const RuntimeMethod* method); // System.Boolean System.Text.RegularExpressions.RegexInterpreter::Refmatch(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexInterpreter_Refmatch_m5F44A3C001E919895A5A2988F16187069E45D75B (RegexInterpreter_tF3C74D72240962B960AE4D39D9CF1632C9C2982E * __this, int32_t ___index0, int32_t ___len1, const RuntimeMethod* method); // System.Int32 System.Text.RegularExpressions.RegexInterpreter::Bump() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexInterpreter_Bump_m45DF8CEBA6E19FE27E10A87C89E5B2001FB37E85 (RegexInterpreter_tF3C74D72240962B960AE4D39D9CF1632C9C2982E * __this, const RuntimeMethod* method); // System.String SR::GetString(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SR_GetString_m9DC7F3962EEB239017A1A4C443F52047B5BC7462 (String_t* ___name0, const RuntimeMethod* method); // System.Void System.NotImplementedException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NotImplementedException__ctor_m8A9AA4499614A5BC57DD21713D0720630C130AEB (NotImplementedException_t26260C4EE0444C5FA022994203060B3A42A3ADE6 * __this, String_t* ___message0, const RuntimeMethod* method); // System.Void System.Text.RegularExpressions.RegexInterpreter::Backtrack() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexInterpreter_Backtrack_m30590074E633FAA50401BC2EFA74F6D6FF5371DA (RegexInterpreter_tF3C74D72240962B960AE4D39D9CF1632C9C2982E * __this, const RuntimeMethod* method); // System.TimeSpan System.TimeSpan::FromTicks(System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 TimeSpan_FromTicks_m25E4ADCCCC583B8D5A08B77577DE8E46CEBF7F9C (int64_t ___value0, const RuntimeMethod* method); // System.Void System.TimeoutException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimeoutException__ctor_m1A7B4D7C61A8090FA3BAFD65B583587567CDC5C3 (TimeoutException_tB5D0EEFAEC3FC79FFDEF23C55D1BDF4DE347C926 * __this, String_t* ___message0, const RuntimeMethod* method); // System.Void System.Text.RegularExpressions.RegexMatchTimeoutException::Init(System.String,System.String,System.TimeSpan) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexMatchTimeoutException_Init_mA320EBB663A318B596D95349F5F0DE92623D5C1C (RegexMatchTimeoutException_t8A80CA43E67CFD00C11CD0B4D65E08171577AB81 * __this, String_t* ___input0, String_t* ___pattern1, TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___timeout2, const RuntimeMethod* method); // System.Void System.TimeoutException::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimeoutException__ctor_m40A6D335EFA7ABBB20B1A52ACD9214AFDDB3E119 (TimeoutException_tB5D0EEFAEC3FC79FFDEF23C55D1BDF4DE347C926 * __this, const RuntimeMethod* method); // System.Void System.Text.RegularExpressions.RegexMatchTimeoutException::Init() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexMatchTimeoutException_Init_m6D59100CBBC91F436D6878CDF3AC18BD86DC2787 (RegexMatchTimeoutException_t8A80CA43E67CFD00C11CD0B4D65E08171577AB81 * __this, const RuntimeMethod* method); // System.Void System.TimeoutException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimeoutException__ctor_mF0F27D11A8FFC61C68545D72A9348C347A9A5A26 (TimeoutException_tB5D0EEFAEC3FC79FFDEF23C55D1BDF4DE347C926 * __this, SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * ___info0, StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 ___context1, const RuntimeMethod* method); // System.String System.Runtime.Serialization.SerializationInfo::GetString(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SerializationInfo_GetString_m50298DCBCD07D858EE19414052CB02EE4DDD3C2C (SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * __this, String_t* ___name0, const RuntimeMethod* method); // System.Int64 System.Runtime.Serialization.SerializationInfo::GetInt64(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t SerializationInfo_GetInt64_m13BC92A489CE4540FC55BB00D2A3460B0D9A0DEC (SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * __this, String_t* ___name0, const RuntimeMethod* method); // System.Void System.Exception::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Exception_GetObjectData_m2031046D41E7BEE3C743E918B358A336F99D6882 (Exception_t * __this, SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * ___info0, StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 ___context1, const RuntimeMethod* method); // System.Void System.Runtime.Serialization.SerializationInfo::AddValue(System.String,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationInfo_AddValue_mA50C2668EF700C2239DDC362F8DB409020BB763D (SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * __this, String_t* ___name0, RuntimeObject * ___value1, const RuntimeMethod* method); // System.Int64 System.TimeSpan::get_Ticks() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t TimeSpan_get_Ticks_mE4C9E1F27DC794028CEDCF7CB5BD092D16DBACD4_inline (TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * __this, const RuntimeMethod* method); // System.Void System.Runtime.Serialization.SerializationInfo::AddValue(System.String,System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationInfo_AddValue_mD0C00DE59B4C6649A6BFA5EBC7D8618B46B967D5 (SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * __this, String_t* ___name0, int64_t ___value1, const RuntimeMethod* method); // System.Boolean System.Text.RegularExpressions.RegexNode::UseOptionR() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexNode_UseOptionR_mBD8EBE8396F51A7DA491FFFAFDB09A148F62E484 (RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexNode>::Reverse(System.Int32,System.Int32) inline void List_1_Reverse_m123B97D352D6EACCCEAAEBD2BC6E40C529360CCA (List_1_t692D260BEBA1E69864C98DEEDB3E9256C38CD9B9 * __this, int32_t ___index0, int32_t ___count1, const RuntimeMethod* method) { (( void (*) (List_1_t692D260BEBA1E69864C98DEEDB3E9256C38CD9B9 *, int32_t, int32_t, const RuntimeMethod*))List_1_Reverse_mAF7297B4B349FAE1A7207530D786B3D8568C0258_gshared)(__this, ___index0, ___count1, method); } // System.Int32 System.Text.RegularExpressions.RegexNode::Type() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t RegexNode_Type_m3C72321B307C77AF12F294F366D57D2C77832F27_inline (RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * __this, const RuntimeMethod* method); // System.Text.RegularExpressions.RegexNode System.Text.RegularExpressions.RegexNode::ReduceAlternation() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * RegexNode_ReduceAlternation_m08295B9D7A82E1D1CB97B716C068F7D740C2E18F (RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * __this, const RuntimeMethod* method); // System.Text.RegularExpressions.RegexNode System.Text.RegularExpressions.RegexNode::ReduceConcatenation() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * RegexNode_ReduceConcatenation_mFE1E6366025CB9A114C275B74193CF62BC0AF903 (RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * __this, const RuntimeMethod* method); // System.Text.RegularExpressions.RegexNode System.Text.RegularExpressions.RegexNode::ReduceRep() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * RegexNode_ReduceRep_mA3BDCA09CFB2DFB083CF9BEA7E9A64DB27F6B94E (RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * __this, const RuntimeMethod* method); // System.Text.RegularExpressions.RegexNode System.Text.RegularExpressions.RegexNode::ReduceGroup() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * RegexNode_ReduceGroup_m3067AEB5BDEF6951832CB84B2F4857848E898236 (RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * __this, const RuntimeMethod* method); // System.Text.RegularExpressions.RegexNode System.Text.RegularExpressions.RegexNode::ReduceSet() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * RegexNode_ReduceSet_m0B5361189FC2E71384DA9A107969CB401FD6ED01 (RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * __this, const RuntimeMethod* method); // System.Void System.Text.RegularExpressions.RegexNode::.ctor(System.Int32,System.Text.RegularExpressions.RegexOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexNode__ctor_mD8966EDCD7AA48AC8AAD5B156C513671843F6D49 (RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * __this, int32_t ___type0, int32_t ___options1, const RuntimeMethod* method); // System.Boolean System.Text.RegularExpressions.RegexCharClass::IsEmpty(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexCharClass_IsEmpty_m75C168B21BE2E4C4BDC15ABC666A755F0064F7CF (String_t* ___charClass0, const RuntimeMethod* method); // System.Boolean System.Text.RegularExpressions.RegexCharClass::IsSingletonInverse(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexCharClass_IsSingletonInverse_mBD2991532F9310EC5E5F30AE4C20998DA39F69BE (String_t* ___set0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexNode>::set_Item(System.Int32,!0) inline void List_1_set_Item_m6200EE8AD3B82F523BE93EB75D79A9FAE63CCB51 (List_1_t692D260BEBA1E69864C98DEEDB3E9256C38CD9B9 * __this, int32_t ___index0, RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * ___value1, const RuntimeMethod* method) { (( void (*) (List_1_t692D260BEBA1E69864C98DEEDB3E9256C38CD9B9 *, int32_t, RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 *, const RuntimeMethod*))List_1_set_Item_m73674D291C1D6030C21A39003E4743D110ACC6A2_gshared)(__this, ___index0, ___value1, method); } // System.Void System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexNode>::InsertRange(System.Int32,System.Collections.Generic.IEnumerable`1<!0>) inline void List_1_InsertRange_m37FCFE58E6B40EF85198A0C41C1F9816955CEB1C (List_1_t692D260BEBA1E69864C98DEEDB3E9256C38CD9B9 * __this, int32_t ___index0, RuntimeObject* ___collection1, const RuntimeMethod* method) { (( void (*) (List_1_t692D260BEBA1E69864C98DEEDB3E9256C38CD9B9 *, int32_t, RuntimeObject*, const RuntimeMethod*))List_1_InsertRange_mDC4CE8009A2C258C8A670BB6D6825735D31E7E8F_gshared)(__this, ___index0, ___collection1, method); } // System.Boolean System.Text.RegularExpressions.RegexCharClass::IsMergeable(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexCharClass_IsMergeable_m5731790CFE2293CB05120782908AC550C58C63BC (String_t* ___charClass0, const RuntimeMethod* method); // System.Void System.Text.RegularExpressions.RegexCharClass::AddChar(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexCharClass_AddChar_mDDCFF2A0510737DEAE68DEE7E1359AA7F07D0609 (RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5 * __this, Il2CppChar ___c0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexNode>::RemoveRange(System.Int32,System.Int32) inline void List_1_RemoveRange_m34DFA4EEBBB675853B61F9B458B92AF0DBE6F587 (List_1_t692D260BEBA1E69864C98DEEDB3E9256C38CD9B9 * __this, int32_t ___index0, int32_t ___count1, const RuntimeMethod* method) { (( void (*) (List_1_t692D260BEBA1E69864C98DEEDB3E9256C38CD9B9 *, int32_t, int32_t, const RuntimeMethod*))List_1_RemoveRange_m0BBC3852B9B0719DDA7E6AFEF3C3E3CD165DF5AA_gshared)(__this, ___index0, ___count1, method); } // System.Text.RegularExpressions.RegexNode System.Text.RegularExpressions.RegexNode::StripEnation(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * RegexNode_StripEnation_m1DF9C3A86A4B73CCE7F86C2D121DCACED3DCC4C7 (RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * __this, int32_t ___emptyType0, const RuntimeMethod* method); // System.String System.Convert::ToString(System.Char,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Convert_ToString_m6A5562C24B4B4B7B1A5B79AE8DF74128E3E58127 (Il2CppChar ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method); // System.String System.Char::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Char_ToString_mE0DE433463C56FD30A4F0A50539553B17147C2F8 (Il2CppChar* __this, const RuntimeMethod* method); // System.String System.String::Concat(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B (String_t* ___str00, String_t* ___str11, const RuntimeMethod* method); // System.Void System.Text.RegularExpressions.RegexNode::MakeRep(System.Int32,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexNode_MakeRep_m23A10A13942B83BDF596DE595718B9BD701E8A60 (RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * __this, int32_t ___type0, int32_t ___min1, int32_t ___max2, const RuntimeMethod* method); // System.Void System.Text.RegularExpressions.RegexNode::.ctor(System.Int32,System.Text.RegularExpressions.RegexOptions,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexNode__ctor_m0E000C0421213F15341C9B74C3ADA8F4963CA511 (RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * __this, int32_t ___type0, int32_t ___options1, int32_t ___m2, int32_t ___n3, const RuntimeMethod* method); // System.Void System.Text.RegularExpressions.RegexNode::AddChild(System.Text.RegularExpressions.RegexNode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexNode_AddChild_mD5F9848916D55A0DF36CE5460D149E1024005C85 (RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * __this, RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * ___newChild0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexNode>::.ctor(System.Int32) inline void List_1__ctor_mEEED4D424213FDF741A7A72F807F0BF9C6088398 (List_1_t692D260BEBA1E69864C98DEEDB3E9256C38CD9B9 * __this, int32_t ___capacity0, const RuntimeMethod* method) { (( void (*) (List_1_t692D260BEBA1E69864C98DEEDB3E9256C38CD9B9 *, int32_t, const RuntimeMethod*))List_1__ctor_mFEB2301A6F28290A828A979BA9CC847B16B3D538_gshared)(__this, ___capacity0, method); } // System.Text.RegularExpressions.RegexNode System.Text.RegularExpressions.RegexNode::Reduce() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * RegexNode_Reduce_m2EAE287E7E9FE547B38FEC40BE3E316920B53471 (RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexNode>::Add(!0) inline void List_1_Add_m670A9EDF6F3D728B215F9D1127B89402A43F4313 (List_1_t692D260BEBA1E69864C98DEEDB3E9256C38CD9B9 * __this, RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * ___item0, const RuntimeMethod* method) { (( void (*) (List_1_t692D260BEBA1E69864C98DEEDB3E9256C38CD9B9 *, RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 *, const RuntimeMethod*))List_1_Add_mE5B3CBB3A625606D9BC4337FEAAF1D66BCB6F96E_gshared)(__this, ___item0, method); } // System.Void System.Text.RegularExpressions.RegexParser::.ctor(System.Globalization.CultureInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser__ctor_m9058798A864D0200A16F15E995B6B9AA8A189E58 (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * ___culture0, const RuntimeMethod* method); // System.Void System.Text.RegularExpressions.RegexParser::SetPattern(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_SetPattern_mA620864CAC4211AE79F80DF9F19B2A40863E9DBE (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, String_t* ___Re0, const RuntimeMethod* method); // System.Void System.Text.RegularExpressions.RegexParser::CountCaptures() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_CountCaptures_mE1F7E2BFAE6D599A2F71D217A078B385A9408700 (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, const RuntimeMethod* method); // System.Void System.Text.RegularExpressions.RegexParser::Reset(System.Text.RegularExpressions.RegexOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_Reset_m1D0DAF8942A2A980D3944600893CEF969053F2EE (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, int32_t ___topopts0, const RuntimeMethod* method); // System.Text.RegularExpressions.RegexNode System.Text.RegularExpressions.RegexParser::ScanRegex() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * RegexParser_ScanRegex_mE0EF23CF2A462063119E2D5046512A1960A11718 (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, const RuntimeMethod* method); // !0[] System.Collections.Generic.List`1<System.String>::ToArray() inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* List_1_ToArray_m94163AE84EBF9A1F7483014A8E9906BD93D9EBDB (List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * __this, const RuntimeMethod* method) { return (( StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* (*) (List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 *, const RuntimeMethod*))List_1_ToArray_mA737986DE6389E9DD8FA8E3D4E222DE4DA34958D_gshared)(__this, method); } // System.Void System.Text.RegularExpressions.RegexTree::.ctor(System.Text.RegularExpressions.RegexNode,System.Collections.Hashtable,System.Int32[],System.Int32,System.Collections.Hashtable,System.String[],System.Text.RegularExpressions.RegexOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexTree__ctor_m71E8231B91BF289104B933268B2CEF0AA02CF092 (RegexTree_t63A434601D42EC388D9B2DCA2913286CFC8811F3 * __this, RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * ___root0, Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * ___caps1, Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___capnumlist2, int32_t ___captop3, Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * ___capnames4, StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___capslist5, int32_t ___opts6, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexOptions>::.ctor() inline void List_1__ctor_m7D9D8A82FB31C207EA4A2D7AC0D33B90B0BB34AB (List_1_tE931333A40AB4E57F72E00F9F23D19057C78120A * __this, const RuntimeMethod* method) { (( void (*) (List_1_tE931333A40AB4E57F72E00F9F23D19057C78120A *, const RuntimeMethod*))List_1__ctor_mF1D0377D81949B2ADB6104D9994F7CEE1A1E5040_gshared)(__this, method); } // System.Void System.Collections.Hashtable::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable__ctor_m2D9C25FB57ACD33B0DF8391D38A165975A1D9A91 (Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * __this, const RuntimeMethod* method); // System.Int32 System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexOptions>::get_Count() inline int32_t List_1_get_Count_m6027426A21F931ED65BF307176B790FC2065A648_inline (List_1_tE931333A40AB4E57F72E00F9F23D19057C78120A * __this, const RuntimeMethod* method) { return (( int32_t (*) (List_1_tE931333A40AB4E57F72E00F9F23D19057C78120A *, const RuntimeMethod*))List_1_get_Count_m3632094BEC4410A1022FD0293E7BA88FC3B811A8_gshared_inline)(__this, method); } // System.Void System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexOptions>::RemoveRange(System.Int32,System.Int32) inline void List_1_RemoveRange_m44F1D881F5E64D8010B3154DCACBDA5BC6DA4450 (List_1_tE931333A40AB4E57F72E00F9F23D19057C78120A * __this, int32_t ___index0, int32_t ___count1, const RuntimeMethod* method) { (( void (*) (List_1_tE931333A40AB4E57F72E00F9F23D19057C78120A *, int32_t, int32_t, const RuntimeMethod*))List_1_RemoveRange_m6F693A039E6B2E2900BE7F6C78253F32E2D7553A_gshared)(__this, ___index0, ___count1, method); } // System.Void System.Text.RegularExpressions.RegexParser::StartGroup(System.Text.RegularExpressions.RegexNode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_StartGroup_m715D16765A3808F41A0DDFB46AE99F7982BA9E87 (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * ___openGroup0, const RuntimeMethod* method); // System.Void System.Text.RegularExpressions.RegexParser::ScanBlank() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_ScanBlank_m2ACFA5BAF5FA14554D74C5DE4FE3893483D6F33D (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, const RuntimeMethod* method); // System.Int32 System.Text.RegularExpressions.RegexParser::Textpos() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t RegexParser_Textpos_m5A18C75CE7F3A5AE17373DA09A20070D988308C5_inline (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, const RuntimeMethod* method); // System.Boolean System.Text.RegularExpressions.RegexParser::UseOptionX() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexParser_UseOptionX_m7944C5C44AEAA4D69ABA991320A6B960F8EEC284 (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, const RuntimeMethod* method); // System.Void System.Text.RegularExpressions.RegexParser::MoveRight() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_MoveRight_mE4C6D41AFE3F585C0B8E7CD0AF3CF4DBA8791AB4 (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, const RuntimeMethod* method); // System.Int32 System.Text.RegularExpressions.RegexParser::CharsRight() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexParser_CharsRight_m808A213FCB975D42C6E6270E7A0FAEB1E496B07A (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, const RuntimeMethod* method); // System.Char System.Text.RegularExpressions.RegexParser::RightChar() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar RegexParser_RightChar_mA977C61B98B8BB88C2A66AEBBFDA6826C58ED66A (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, const RuntimeMethod* method); // System.Boolean System.Text.RegularExpressions.RegexParser::IsStopperX(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexParser_IsStopperX_m14B244DAE546E9EAAEF746C7722F21FFAF6DA8D9 (Il2CppChar ___ch0, const RuntimeMethod* method); // System.Boolean System.Text.RegularExpressions.RegexParser::IsTrueQuantifier() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexParser_IsTrueQuantifier_m190312723B9D3A48FA41FED5A4DC5D9C055EB627 (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, const RuntimeMethod* method); // System.Boolean System.Text.RegularExpressions.RegexParser::IsSpecial(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexParser_IsSpecial_m3EA52FD6E89284E878A510816990AD45656A9CF0 (Il2CppChar ___ch0, const RuntimeMethod* method); // System.Boolean System.Text.RegularExpressions.RegexParser::IsQuantifier(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexParser_IsQuantifier_mFF0B74F0F48136C4CA3E6D614D819C67FC8EEE07 (Il2CppChar ___ch0, const RuntimeMethod* method); // System.Void System.Text.RegularExpressions.RegexParser::AddConcatenate(System.Int32,System.Int32,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_AddConcatenate_m308E5EB5C42CF795225A0FDBACCF647B57BE425B (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, int32_t ___pos0, int32_t ___cch1, bool ___isReplacement2, const RuntimeMethod* method); // System.Char System.Text.RegularExpressions.RegexParser::CharAt(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar RegexParser_CharAt_mEA865F2B6DC4EF1B81F8D80ABF989F395BEC0B84 (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, int32_t ___i0, const RuntimeMethod* method); // System.Void System.Text.RegularExpressions.RegexParser::AddUnitOne(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_AddUnitOne_mDEC722E078B3E61126F56718AF7FED159C616CDC (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, Il2CppChar ___ch0, const RuntimeMethod* method); // System.Boolean System.Text.RegularExpressions.RegexParser::UseOptionI() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexParser_UseOptionI_m46AAF2DBCC08EE8F3E8ECA1A5E37160C4E5C7B04 (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, const RuntimeMethod* method); // System.Text.RegularExpressions.RegexCharClass System.Text.RegularExpressions.RegexParser::ScanCharClass(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5 * RegexParser_ScanCharClass_mD4A465FEDA75BF5820D5B0C9A95EAEA3D99DB831 (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, bool ___caseInsensitive0, const RuntimeMethod* method); // System.Void System.Text.RegularExpressions.RegexParser::AddUnitSet(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_AddUnitSet_mF7CEA4892737145E04E8ECD6DCD3B2A8F809C58B (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, String_t* ___cc0, const RuntimeMethod* method); // System.Void System.Text.RegularExpressions.RegexParser::PushOptions() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_PushOptions_mC0047ADAB396BC1643AA63B2C395F09FCBE726BC (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, const RuntimeMethod* method); // System.Text.RegularExpressions.RegexNode System.Text.RegularExpressions.RegexParser::ScanGroupOpen() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * RegexParser_ScanGroupOpen_m1DE2AA1EFA786C58869EF4025705449871F33D59 (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, const RuntimeMethod* method); // System.Void System.Text.RegularExpressions.RegexParser::PopKeepOptions() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_PopKeepOptions_mBCC70CBFDC2A6DD07FE090D4E546B6AEA5644500 (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, const RuntimeMethod* method); // System.Void System.Text.RegularExpressions.RegexParser::PushGroup() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_PushGroup_m30EE1A2FFE88FBA12DB8B4D929F6122D8001EAF9 (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, const RuntimeMethod* method); // System.Void System.Text.RegularExpressions.RegexParser::AddAlternate() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_AddAlternate_m2C8BA28D8A58FB9CA6FE75F9D5875BF748305AB0 (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, const RuntimeMethod* method); // System.Boolean System.Text.RegularExpressions.RegexParser::EmptyStack() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexParser_EmptyStack_mCDC440C4B29CD14F4A0D9D6E3BE105869F246E2E (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, const RuntimeMethod* method); // System.ArgumentException System.Text.RegularExpressions.RegexParser::MakeException(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * RegexParser_MakeException_mA573DC3F94B98F328A9B87673A2CF8A15120DEB1 (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, String_t* ___message0, const RuntimeMethod* method); // System.Void System.Text.RegularExpressions.RegexParser::AddGroup() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_AddGroup_m3771097F1B4F1F6AA10104D28B663026F7B7326F (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, const RuntimeMethod* method); // System.Void System.Text.RegularExpressions.RegexParser::PopGroup() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_PopGroup_m461057BFDD1D1CFD70CF3DFE70693E429FCF0FA9 (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, const RuntimeMethod* method); // System.Void System.Text.RegularExpressions.RegexParser::PopOptions() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_PopOptions_m186A6537DA0481481E59C5BED015B577508271C7 (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, const RuntimeMethod* method); // System.Text.RegularExpressions.RegexNode System.Text.RegularExpressions.RegexParser::Unit() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * RegexParser_Unit_m88B751E79E4DE41D295805439EE6D1D5B7170D7F_inline (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, const RuntimeMethod* method); // System.Text.RegularExpressions.RegexNode System.Text.RegularExpressions.RegexParser::ScanBackslash() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * RegexParser_ScanBackslash_m2598C224286A4826DEB2D1189CCB73C9A363DFBD (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, const RuntimeMethod* method); // System.Void System.Text.RegularExpressions.RegexParser::AddUnitNode(System.Text.RegularExpressions.RegexNode) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void RegexParser_AddUnitNode_m84299A7BCF95B87B5B4672759DE2D8D863FA80E2_inline (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * ___node0, const RuntimeMethod* method); // System.Boolean System.Text.RegularExpressions.RegexParser::UseOptionM() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexParser_UseOptionM_mBCB459C99D9BD541A68ADF86C1FD437169A8352E (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, const RuntimeMethod* method); // System.Void System.Text.RegularExpressions.RegexParser::AddUnitType(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_AddUnitType_m39738056CFFB37E7036AF626829033D6052E6FD8 (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, int32_t ___type0, const RuntimeMethod* method); // System.Boolean System.Text.RegularExpressions.RegexParser::UseOptionS() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexParser_UseOptionS_m079D720F7300CEEBB4800B8CB5F7DE450E00FC6D (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, const RuntimeMethod* method); // System.Void System.Text.RegularExpressions.RegexParser::AddUnitNotone(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_AddUnitNotone_m14CA5BBABCE627507923A6BE373BEC032167801F (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, Il2CppChar ___ch0, const RuntimeMethod* method); // System.Void System.Text.RegularExpressions.RegexParser::MoveLeft() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_MoveLeft_mBE0128B08B61C1306954528C799F2F1F1B803391 (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, const RuntimeMethod* method); // System.Void System.Text.RegularExpressions.RegexParser::AddConcatenate() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_AddConcatenate_m1B223D215058DA19724BD379C2BC0557EA24B48A (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, const RuntimeMethod* method); // System.Char System.Text.RegularExpressions.RegexParser::MoveRightGetChar() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar RegexParser_MoveRightGetChar_mE98852DD0B33AE818B01A7CC7A9C301C2226F81C (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, const RuntimeMethod* method); // System.Int32 System.Text.RegularExpressions.RegexParser::ScanDecimal() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexParser_ScanDecimal_mC7374D132F506C5D7EEB868C32C4959B1C672017 (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, const RuntimeMethod* method); // System.Void System.Text.RegularExpressions.RegexParser::Textto(System.Int32) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void RegexParser_Textto_mE4BCC8608BF006D283A32F9C5811264467EEB806_inline (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, int32_t ___pos0, const RuntimeMethod* method); // System.Void System.Text.RegularExpressions.RegexParser::AddConcatenate(System.Boolean,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_AddConcatenate_m47774C08F0EF3E4B83BD52C777019D63BE718AE6 (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, bool ___lazy0, int32_t ___min1, int32_t ___max2, const RuntimeMethod* method); // System.Text.RegularExpressions.RegexCharClass System.Text.RegularExpressions.RegexParser::ScanCharClass(System.Boolean,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5 * RegexParser_ScanCharClass_mADFDEFF75B3C880E692ED8411B7154CF3130401E (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, bool ___caseInsensitive0, bool ___scanOnly1, const RuntimeMethod* method); // System.Void System.Text.RegularExpressions.RegexCharClass::set_Negate(System.Boolean) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void RegexCharClass_set_Negate_mC3CA41B098CF6B47BBF9101619F1AC4EAA3FD131_inline (RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5 * __this, bool ___value0, const RuntimeMethod* method); // System.Boolean System.Text.RegularExpressions.RegexParser::UseOptionE() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexParser_UseOptionE_m442360F28425CC127273FA1B10737E2AB3A70762 (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, const RuntimeMethod* method); // System.Void System.Text.RegularExpressions.RegexCharClass::AddDigit(System.Boolean,System.Boolean,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexCharClass_AddDigit_m7B6D6AA1D10B8D29D004D94FC26F9CA53B3306D7 (RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5 * __this, bool ___ecma0, bool ___negate1, String_t* ___pattern2, const RuntimeMethod* method); // System.Void System.Text.RegularExpressions.RegexCharClass::AddSpace(System.Boolean,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexCharClass_AddSpace_mA542E2916FEB49051A7AA0490704466DA85326BD (RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5 * __this, bool ___ecma0, bool ___negate1, const RuntimeMethod* method); // System.Void System.Text.RegularExpressions.RegexCharClass::AddWord(System.Boolean,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexCharClass_AddWord_m977499503E6B5EB99106DF69247EBE65DDE301D9 (RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5 * __this, bool ___ecma0, bool ___negate1, const RuntimeMethod* method); // System.String System.Text.RegularExpressions.RegexParser::ParseProperty() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* RegexParser_ParseProperty_m32F8C5F94C55BFF814FBAD3189A25F3CAB76B3C3 (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, const RuntimeMethod* method); // System.Void System.Text.RegularExpressions.RegexCharClass::AddCategoryFromName(System.String,System.Boolean,System.Boolean,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexCharClass_AddCategoryFromName_m53A239A7DACD3D5A676505E6E296C4AB999BBA4C (RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5 * __this, String_t* ___categoryName0, bool ___invert1, bool ___caseInsensitive2, String_t* ___pattern3, const RuntimeMethod* method); // System.Char System.Text.RegularExpressions.RegexParser::ScanCharEscape() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar RegexParser_ScanCharEscape_m7A3FDDAF73AB029CB6EA7BB8058E3FD2AEDD63D6 (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, const RuntimeMethod* method); // System.String System.Text.RegularExpressions.RegexParser::ScanCapname() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* RegexParser_ScanCapname_mC34B52A5BDE9DB0AB0A9691F52D45D0B7D4AD377 (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, const RuntimeMethod* method); // System.Void System.Text.RegularExpressions.RegexCharClass::AddSubtraction(System.Text.RegularExpressions.RegexCharClass) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void RegexCharClass_AddSubtraction_m1FEE4A4FA29196BF22FBDD7EF3A263010E7661D9_inline (RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5 * __this, RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5 * ___sub0, const RuntimeMethod* method); // System.Char System.Text.RegularExpressions.RegexParser::RightChar(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar RegexParser_RightChar_mE6728D67C4F9FE227ECD6BED46FFC94518EAD9B4 (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, int32_t ___i0, const RuntimeMethod* method); // System.Void System.Text.RegularExpressions.RegexParser::MoveRight(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_MoveRight_m905DCF65EF6BA6736100751DE932753BC99B8D68 (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, int32_t ___i0, const RuntimeMethod* method); // System.Boolean System.Text.RegularExpressions.RegexParser::UseOptionN() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexParser_UseOptionN_m9B82FA2012348674AC4E62205FE205CF2DB0ED35 (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, const RuntimeMethod* method); // System.Boolean System.Text.RegularExpressions.RegexParser::IsCaptureSlot(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexParser_IsCaptureSlot_mE462763928C28561B761AFCE14D30C6A31CD1C15 (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, int32_t ___i0, const RuntimeMethod* method); // System.Boolean System.Text.RegularExpressions.RegexCharClass::IsWordChar(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexCharClass_IsWordChar_mE33E6C5569AA1B920849CD5555DF3CE9A9C10440 (Il2CppChar ___ch0, const RuntimeMethod* method); // System.Boolean System.Text.RegularExpressions.RegexParser::IsCaptureName(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexParser_IsCaptureName_mF09CBBD2AEAD4D1BAAE4E4E803C3F4916DBA479D (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, String_t* ___capname0, const RuntimeMethod* method); // System.Int32 System.Text.RegularExpressions.RegexParser::CaptureSlotFromName(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexParser_CaptureSlotFromName_mF8279E16DB2733EE3712214CFC57DA3D48BD717B (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, String_t* ___capname0, const RuntimeMethod* method); // System.Void System.Text.RegularExpressions.RegexNode::.ctor(System.Int32,System.Text.RegularExpressions.RegexOptions,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexNode__ctor_mD4B2FB6044880AC4DDF035FFE6254A13807A34BC (RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * __this, int32_t ___type0, int32_t ___options1, int32_t ___m2, const RuntimeMethod* method); // System.Void System.Text.RegularExpressions.RegexParser::ScanOptions() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_ScanOptions_mE9C5126433FD0A2576B402A07941114AB468D79F (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, const RuntimeMethod* method); // System.Boolean System.Text.RegularExpressions.RegexParser::IsSpace(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexParser_IsSpace_mF6BB83CAF2202A271697570EEC5E636847B8EA35 (Il2CppChar ___ch0, const RuntimeMethod* method); // System.Int32 System.Text.RegularExpressions.RegexParser::TypeFromCode(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexParser_TypeFromCode_m9B5F0CD85CECC83F17C2A37B5A0A396478A668B8 (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, Il2CppChar ___ch0, const RuntimeMethod* method); // System.Void System.Text.RegularExpressions.RegexNode::.ctor(System.Int32,System.Text.RegularExpressions.RegexOptions,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexNode__ctor_m5A3AA31155A359CC8462AF0AB55DE0D5B7C435B4 (RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * __this, int32_t ___type0, int32_t ___options1, String_t* ___str2, const RuntimeMethod* method); // System.Text.RegularExpressions.RegexNode System.Text.RegularExpressions.RegexParser::ScanBasicBackslash() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * RegexParser_ScanBasicBackslash_m3DAD88630B04CE794414919D65F325197CB15C3D (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, const RuntimeMethod* method); // System.Void System.Text.RegularExpressions.RegexNode::.ctor(System.Int32,System.Text.RegularExpressions.RegexOptions,System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexNode__ctor_m2E85CE2AB0812A86EE61448DEACBA68E329D3325 (RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * __this, int32_t ___type0, int32_t ___options1, Il2CppChar ___ch2, const RuntimeMethod* method); // System.String System.String::Substring(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Substring_m7A39A2AC0893AE940CF4CEC841326D56FFB9D86B (String_t* __this, int32_t ___startIndex0, int32_t ___length1, const RuntimeMethod* method); // System.Int32 System.Text.RegularExpressions.RegexParser::HexDigit(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexParser_HexDigit_m8026F1C18D04CF0CFC87405EE1449F029B977A50 (Il2CppChar ___ch0, const RuntimeMethod* method); // System.Text.RegularExpressions.RegexOptions System.Text.RegularExpressions.RegexParser::OptionFromCode(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexParser_OptionFromCode_m3D0AF05036648041D641C37E24919D3D6CA7B7CE (Il2CppChar ___ch0, const RuntimeMethod* method); // System.Boolean System.Text.RegularExpressions.RegexParser::IsOnlyTopOption(System.Text.RegularExpressions.RegexOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexParser_IsOnlyTopOption_m7C4B2E37C797EEB8C5878365C25EDE72E2EBE404 (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, int32_t ___option0, const RuntimeMethod* method); // System.Char System.Text.RegularExpressions.RegexParser::ScanOctal() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar RegexParser_ScanOctal_m7767731DCDBED3AFE2CF6A24D4A6E7FB448062F6 (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, const RuntimeMethod* method); // System.Char System.Text.RegularExpressions.RegexParser::ScanHex(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar RegexParser_ScanHex_m273E9DA24C7455F701730E65B90DAA5C0D0210C2 (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, int32_t ___c0, const RuntimeMethod* method); // System.Char System.Text.RegularExpressions.RegexParser::ScanControl() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar RegexParser_ScanControl_m9EC29A03B8B1C8323D3E67F0D43F7A5960FFD816 (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, const RuntimeMethod* method); // System.Void System.Text.RegularExpressions.RegexParser::NoteCaptureSlot(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_NoteCaptureSlot_m0A4A75BC5BB740A63EE0D41BDBB25A1FADFBF53C (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, int32_t ___i0, int32_t ___pos1, const RuntimeMethod* method); // System.Boolean System.Text.RegularExpressions.RegexParser::EmptyOptionsStack() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexParser_EmptyOptionsStack_m9B5B4501C296662175648E458F9EAAADEE3A2B44 (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, const RuntimeMethod* method); // System.Void System.Text.RegularExpressions.RegexParser::NoteCaptureName(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_NoteCaptureName_m8673E32280A278603401C24BFCD7C65F42881FA8 (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, String_t* ___name0, int32_t ___pos1, const RuntimeMethod* method); // System.Void System.Text.RegularExpressions.RegexParser::AssignNameSlots() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_AssignNameSlots_m7478C18338D1440B8422BD849CCF1E3C33169EDB (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1<System.String>::.ctor() inline void List_1__ctor_m30C52A4F2828D86CA3FAB0B1B583948F4DA9F1F9 (List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * __this, const RuntimeMethod* method) { (( void (*) (List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 *, const RuntimeMethod*))List_1__ctor_m0F0E00088CF56FEACC9E32D8B7D91B93D91DAA3B_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1<System.String>::Add(!0) inline void List_1_Add_m627ED3F7C50096BB8934F778CB980E79483BD2AE (List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * __this, String_t* ___item0, const RuntimeMethod* method) { (( void (*) (List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 *, String_t*, const RuntimeMethod*))List_1_Add_mE5B3CBB3A625606D9BC4337FEAAF1D66BCB6F96E_gshared)(__this, ___item0, method); } // !0 System.Collections.Generic.List`1<System.String>::get_Item(System.Int32) inline String_t* List_1_get_Item_m8578F26F0FE72EDB6A0290D78944B3D4F34DBFAC_inline (List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * __this, int32_t ___index0, const RuntimeMethod* method) { return (( String_t* (*) (List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 *, int32_t, const RuntimeMethod*))List_1_get_Item_mF00B574E58FB078BB753B05A3B86DD0A7A266B63_gshared_inline)(__this, ___index0, method); } // System.Collections.Generic.Comparer`1<!0> System.Collections.Generic.Comparer`1<System.Int32>::get_Default() inline Comparer_1_t3E3093220DB5D33A829C91C1DFDBDE2F42ECEDC7 * Comparer_1_get_Default_m4E5D9DBA11E8CC2229E46D18B658D018A7C18934 (const RuntimeMethod* method) { return (( Comparer_1_t3E3093220DB5D33A829C91C1DFDBDE2F42ECEDC7 * (*) (const RuntimeMethod*))Comparer_1_get_Default_m4E5D9DBA11E8CC2229E46D18B658D018A7C18934_gshared)(method); } // System.Void System.Array::Sort<System.Int32>(!!0[],System.Collections.Generic.IComparer`1<!!0>) inline void Array_Sort_TisInt32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_m869CA1F8E6B6C60EDC16FAD4EE1B58274F42A791 (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___array0, RuntimeObject* ___comparer1, const RuntimeMethod* method) { (( void (*) (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*, RuntimeObject*, const RuntimeMethod*))Array_Sort_TisInt32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_m869CA1F8E6B6C60EDC16FAD4EE1B58274F42A791_gshared)(___array0, ___comparer1, method); } // System.String System.Convert::ToString(System.Int32,System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Convert_ToString_m608712133E3A607F257620CB270C6758F01CB109 (int32_t ___value0, RuntimeObject* ___provider1, const RuntimeMethod* method); // System.Void System.Text.StringBuilder::.ctor(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder__ctor_mEDFFE2D378A15F6DAB54D52661C84C1B52E7BA2E (StringBuilder_t * __this, int32_t ___capacity0, const RuntimeMethod* method); // System.Text.StringBuilder System.Text.StringBuilder::Append(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Append_m1ADA3C16E40BF253BCDB5F9579B4DBA9C3E5B22E (StringBuilder_t * __this, Il2CppChar ___value0, const RuntimeMethod* method); // System.Text.RegularExpressions.RegexNode System.Text.RegularExpressions.RegexNode::ReverseLeft() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * RegexNode_ReverseLeft_m8507E98BFA6C9F78200B8297811C3EE815724A19 (RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * __this, const RuntimeMethod* method); // System.Text.RegularExpressions.RegexNode System.Text.RegularExpressions.RegexNode::MakeQuantifier(System.Boolean,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * RegexNode_MakeQuantifier_mB84818E8D93FEB4AE45E224C09EE46BE238ECD20 (RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * __this, bool ___lazy0, int32_t ___min1, int32_t ___max2, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexOptions>::Add(!0) inline void List_1_Add_mF7FC7C7286BC3C19F30D3FD4A66A95AB6B76F07F (List_1_tE931333A40AB4E57F72E00F9F23D19057C78120A * __this, int32_t ___item0, const RuntimeMethod* method) { (( void (*) (List_1_tE931333A40AB4E57F72E00F9F23D19057C78120A *, int32_t, const RuntimeMethod*))List_1_Add_mBA0FDF41792A78B3EB9E395D711706E268313F0F_gshared)(__this, ___item0, method); } // !0 System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexOptions>::get_Item(System.Int32) inline int32_t List_1_get_Item_m16F3838446C7314D39D8C98C916CD5B211886327_inline (List_1_tE931333A40AB4E57F72E00F9F23D19057C78120A * __this, int32_t ___index0, const RuntimeMethod* method) { return (( int32_t (*) (List_1_tE931333A40AB4E57F72E00F9F23D19057C78120A *, int32_t, const RuntimeMethod*))List_1_get_Item_m7C5FD44913A3832DC5D7875F3ADA6FA0D28DDB3E_gshared_inline)(__this, ___index0, method); } // System.Void System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexOptions>::RemoveAt(System.Int32) inline void List_1_RemoveAt_m10FDE4D0C7CDBFFF730684256A23CB1914CE1FD8 (List_1_tE931333A40AB4E57F72E00F9F23D19057C78120A * __this, int32_t ___index0, const RuntimeMethod* method) { (( void (*) (List_1_tE931333A40AB4E57F72E00F9F23D19057C78120A *, int32_t, const RuntimeMethod*))List_1_RemoveAt_m773E96422E4C6790FAD627D7D77548B42712E48E_gshared)(__this, ___index0, method); } // System.Void System.Runtime.CompilerServices.RuntimeHelpers::InitializeArray(System.Array,System.RuntimeFieldHandle) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RuntimeHelpers_InitializeArray_mE27238308FED781F2D6A719F0903F2E1311B058F (RuntimeArray * ___array0, RuntimeFieldHandle_t7BE65FC857501059EBAC9772C93B02CD413D9C96 ___fldHandle1, const RuntimeMethod* method); // System.Void System.Text.RegularExpressions.Regex::ValidateMatchTimeout(System.TimeSpan) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Regex_ValidateMatchTimeout_m4C1557E40D27540F8F9E8CDA35473D94F7B1B2F2 (TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___matchTimeout0, const RuntimeMethod* method); // System.Boolean System.TimeSpan::op_Equality(System.TimeSpan,System.TimeSpan) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeSpan_op_Equality_m8229F4B63064E2D43B244C6E82D55CB2B0360BB1 (TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___t10, TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___t21, const RuntimeMethod* method); // System.Double System.TimeSpan::get_TotalMilliseconds() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double TimeSpan_get_TotalMilliseconds_m97368AE0609D865EB2A6BAE96AAA97AF8BDBF1C5 (TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * __this, const RuntimeMethod* method); // System.Boolean System.Text.RegularExpressions.Regex::get_RightToLeft() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Regex_get_RightToLeft_m14807D1228A43D322B2F7E4D82613ADE0C2DCA77 (Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F * __this, const RuntimeMethod* method); // System.Text.RegularExpressions.Match System.Text.RegularExpressions.Match::get_Empty() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Match_t8CC0A47F766954F17AD4D1C1597754C8F576464B * Match_get_Empty_mE05C90C7D155060839CC7D0C2EA04F8302EDFFC9_inline (const RuntimeMethod* method); // System.Void System.Text.RegularExpressions.RegexRunner::StartTimeoutWatch() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexRunner_StartTimeoutWatch_m22AE778FF5C52047138151B3A61B118DC6E9B685 (RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 * __this, const RuntimeMethod* method); // System.Void System.Text.RegularExpressions.RegexRunner::InitMatch() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexRunner_InitMatch_mAB83B2D2F56A1E5438AA6AF68F175F4E0DFE6346 (RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 * __this, const RuntimeMethod* method); // System.Text.RegularExpressions.Match System.Text.RegularExpressions.RegexRunner::TidyMatch(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Match_t8CC0A47F766954F17AD4D1C1597754C8F576464B * RegexRunner_TidyMatch_mC554804E829E5C96600A9FF3C0855FD1A48FE4FA (RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 * __this, bool ___quick0, const RuntimeMethod* method); // System.Int32 System.Environment::get_TickCount() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Environment_get_TickCount_mBA4279B1C0BC197BF2121166E7C1F6A46D2B5D4E (const RuntimeMethod* method); // System.Void System.Text.RegularExpressions.RegexRunner::DoCheckTimeout() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexRunner_DoCheckTimeout_mFA5F588F7FA54123CFDFF4C26562E05DADFB675F (RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 * __this, const RuntimeMethod* method); // System.TimeSpan System.TimeSpan::FromMilliseconds(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 TimeSpan_FromMilliseconds_m12D90542B044C450FDFBCEA1CBC32369479483EC (double ___value0, const RuntimeMethod* method); // System.Void System.Text.RegularExpressions.RegexMatchTimeoutException::.ctor(System.String,System.String,System.TimeSpan) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexMatchTimeoutException__ctor_m157F8CEF5FDAC71E58B04773B3169BA093423866 (RegexMatchTimeoutException_t8A80CA43E67CFD00C11CD0B4D65E08171577AB81 * __this, String_t* ___regexInput0, String_t* ___regexPattern1, TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___matchTimeout2, const RuntimeMethod* method); // System.Void System.Text.RegularExpressions.MatchSparse::.ctor(System.Text.RegularExpressions.Regex,System.Collections.Hashtable,System.Int32,System.String,System.Int32,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MatchSparse__ctor_mA6CA132A5DA7D9ADED1D0FF1D7AD786109D33624 (MatchSparse_tF4A7983ADA82DB12269F4D384E7C2D15F0D32694 * __this, Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F * ___regex0, Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * ___caps1, int32_t ___capcount2, String_t* ___text3, int32_t ___begpos4, int32_t ___len5, int32_t ___startpos6, const RuntimeMethod* method); // System.Void System.Text.RegularExpressions.Match::.ctor(System.Text.RegularExpressions.Regex,System.Int32,System.String,System.Int32,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Match__ctor_mB01F9576125C09E5DFAD425523FF0C0FF16000A5 (Match_t8CC0A47F766954F17AD4D1C1597754C8F576464B * __this, Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F * ___regex0, int32_t ___capcount1, String_t* ___text2, int32_t ___begpos3, int32_t ___len4, int32_t ___startpos5, const RuntimeMethod* method); // System.Void System.Text.RegularExpressions.RegexRunner::DoubleStack() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexRunner_DoubleStack_m6D5CD187C3C40D33AD36764202D810D3C354CB4B (RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 * __this, const RuntimeMethod* method); // System.Void System.Text.RegularExpressions.RegexRunner::DoubleTrack() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexRunner_DoubleTrack_m4C316CA544695119D1DC025CD7C7E2E754F23A62 (RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 * __this, const RuntimeMethod* method); // System.Boolean System.Text.RegularExpressions.RegexCharClass::IsECMAWordChar(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexCharClass_IsECMAWordChar_mA7325BA81D0699C24F5123956BD4927F1E3DE846 (Il2CppChar ___ch0, const RuntimeMethod* method); // System.Void System.Text.RegularExpressions.RegexRunner::DoubleCrawl() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexRunner_DoubleCrawl_m562BC4766311883EF65FC3BC69C7555EF5C6A3D0 (RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 * __this, const RuntimeMethod* method); // System.Void System.Text.RegularExpressions.RegexRunner::Crawl(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexRunner_Crawl_mC989F917E324EBE03B0DBECC42531C9ADBF0C742 (RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 * __this, int32_t ___i0, const RuntimeMethod* method); // System.Int32 System.Text.RegularExpressions.RegexRunner::Popcrawl() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexRunner_Popcrawl_mE325EFA925EE9D80AF98FD04ACE7050A9D4F8C21 (RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 * __this, const RuntimeMethod* method); // System.Void System.Text.RegularExpressions.RegexWriter::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexWriter__ctor_mC1384070ECBCB1A54E56F5460388E7C4CDC5856A (RegexWriter_t958027B0548A09589F03657633037085BACFC7B5 * __this, const RuntimeMethod* method); // System.Text.RegularExpressions.RegexCode System.Text.RegularExpressions.RegexWriter::RegexCodeFromRegexTree(System.Text.RegularExpressions.RegexTree) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegexCode_tF1653432E8EEDED5AB9517D09CA84B5FAA3CC0D5 * RegexWriter_RegexCodeFromRegexTree_mB8946AD1D077152C85D0D32CDABC5FBE37C80A80 (RegexWriter_t958027B0548A09589F03657633037085BACFC7B5 * __this, RegexTree_t63A434601D42EC388D9B2DCA2913286CFC8811F3 * ___tree0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::.ctor() inline void Dictionary_2__ctor_mE1EA1831B6EF3BA9C2F807622B58DA3A0605B912 (Dictionary_2_tC94E9875910491F8130C2DC8B11E4D1548A55162 * __this, const RuntimeMethod* method) { (( void (*) (Dictionary_2_tC94E9875910491F8130C2DC8B11E4D1548A55162 *, const RuntimeMethod*))Dictionary_2__ctor_mC9E7381F0B0B82E0320B2523835DAFC9CB3D1C8D_gshared)(__this, method); } // System.Boolean System.Text.RegularExpressions.RegexCode::OpcodeBacktracks(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexCode_OpcodeBacktracks_m2A8CE4121EF7827E575F17B2D0DB7C009B6DD9FB (int32_t ___Op0, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2<System.String,System.Int32>::ContainsKey(!0) inline bool Dictionary_2_ContainsKey_m151DB8CAF2F65A4621317E77AC025849F03D8132 (Dictionary_2_tC94E9875910491F8130C2DC8B11E4D1548A55162 * __this, String_t* ___key0, const RuntimeMethod* method) { return (( bool (*) (Dictionary_2_tC94E9875910491F8130C2DC8B11E4D1548A55162 *, String_t*, const RuntimeMethod*))Dictionary_2_ContainsKey_m71AD9A0E45BC55BFE609CB88752829A7C810E68D_gshared)(__this, ___key0, method); } // !1 System.Collections.Generic.Dictionary`2<System.String,System.Int32>::get_Item(!0) inline int32_t Dictionary_2_get_Item_m351227FE0D2D84F7E108FD47E0F0EA3D6D2D2A74 (Dictionary_2_tC94E9875910491F8130C2DC8B11E4D1548A55162 * __this, String_t* ___key0, const RuntimeMethod* method) { return (( int32_t (*) (Dictionary_2_tC94E9875910491F8130C2DC8B11E4D1548A55162 *, String_t*, const RuntimeMethod*))Dictionary_2_get_Item_mA9EF21764AC04923FECB24BAA6C2F96CEB1606D1_gshared)(__this, ___key0, method); } // System.Void System.Collections.Generic.Dictionary`2<System.String,System.Int32>::set_Item(!0,!1) inline void Dictionary_2_set_Item_mBC85AF861FB031847847F0B30707EC7AC252D572 (Dictionary_2_tC94E9875910491F8130C2DC8B11E4D1548A55162 * __this, String_t* ___key0, int32_t ___value1, const RuntimeMethod* method) { (( void (*) (Dictionary_2_tC94E9875910491F8130C2DC8B11E4D1548A55162 *, String_t*, int32_t, const RuntimeMethod*))Dictionary_2_set_Item_m9BDED5248054C2E86ECBA732FE7BCDAA32D0A118_gshared)(__this, ___key0, ___value1, method); } // System.Void System.Text.RegularExpressions.RegexWriter::Emit(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexWriter_Emit_mDCE0A2DF541B5FC6554C965A1C799ADCF6B4C55F (RegexWriter_t958027B0548A09589F03657633037085BACFC7B5 * __this, int32_t ___op0, int32_t ___opd11, const RuntimeMethod* method); // System.Void System.Text.RegularExpressions.RegexWriter::EmitFragment(System.Int32,System.Text.RegularExpressions.RegexNode,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexWriter_EmitFragment_m7692CDAFDAC6BE7D8BB2DD1EC225B6456047DE0B (RegexWriter_t958027B0548A09589F03657633037085BACFC7B5 * __this, int32_t ___nodetype0, RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * ___node1, int32_t ___CurIndex2, const RuntimeMethod* method); // System.Void System.Text.RegularExpressions.RegexWriter::PushInt(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexWriter_PushInt_m82B0216AFF641DE9547BE17FA115C2CED44A840C (RegexWriter_t958027B0548A09589F03657633037085BACFC7B5 * __this, int32_t ___I0, const RuntimeMethod* method); // System.Boolean System.Text.RegularExpressions.RegexWriter::EmptyStack() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexWriter_EmptyStack_mE95F9FABB37AB87D28C240E3A9306BD6F188B00B (RegexWriter_t958027B0548A09589F03657633037085BACFC7B5 * __this, const RuntimeMethod* method); // System.Int32 System.Text.RegularExpressions.RegexWriter::PopInt() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexWriter_PopInt_mB767C9611DB654060F684D5E09231CAEFFDF7551 (RegexWriter_t958027B0548A09589F03657633037085BACFC7B5 * __this, const RuntimeMethod* method); // System.Int32 System.Text.RegularExpressions.RegexWriter::CurPos() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t RegexWriter_CurPos_m771D864668683B9DCF98150DBAEEBE17703C2E5D_inline (RegexWriter_t958027B0548A09589F03657633037085BACFC7B5 * __this, const RuntimeMethod* method); // System.Void System.Text.RegularExpressions.RegexWriter::PatchJump(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexWriter_PatchJump_m99AEA835C283697F20D7F9CC16E6371BF681B70B (RegexWriter_t958027B0548A09589F03657633037085BACFC7B5 * __this, int32_t ___Offset0, int32_t ___jumpDest1, const RuntimeMethod* method); // System.Void System.Text.RegularExpressions.RegexWriter::Emit(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexWriter_Emit_m0F2DFD7C6ED8AB199B3E8845A02A09F295A00E54 (RegexWriter_t958027B0548A09589F03657633037085BACFC7B5 * __this, int32_t ___op0, const RuntimeMethod* method); // System.Text.RegularExpressions.RegexPrefix System.Text.RegularExpressions.RegexFCD::FirstChars(System.Text.RegularExpressions.RegexTree) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegexPrefix_t1563C82A76799B0B018F5EBD6EC068158BE50301 * RegexFCD_FirstChars_m705EA84111ABE92AFC2ACD490AC26BC6400D75EA (RegexTree_t63A434601D42EC388D9B2DCA2913286CFC8811F3 * ___t0, const RuntimeMethod* method); // System.Text.RegularExpressions.RegexPrefix System.Text.RegularExpressions.RegexFCD::Prefix(System.Text.RegularExpressions.RegexTree) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegexPrefix_t1563C82A76799B0B018F5EBD6EC068158BE50301 * RegexFCD_Prefix_m2D11D5E62E9F31984C40FDD6C0ED9860DF56DCF8 (RegexTree_t63A434601D42EC388D9B2DCA2913286CFC8811F3 * ___tree0, const RuntimeMethod* method); // System.Void System.Text.RegularExpressions.RegexBoyerMoore::.ctor(System.String,System.Boolean,System.Boolean,System.Globalization.CultureInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexBoyerMoore__ctor_m7CFF1BFAA30CB9EC30B0E48B3321366E2C6EBE92 (RegexBoyerMoore_t43FE488EFF3EE20D1092216B7E62D954F78167D2 * __this, String_t* ___pattern0, bool ___caseInsensitive1, bool ___rightToLeft2, CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * ___culture3, const RuntimeMethod* method); // System.Int32 System.Text.RegularExpressions.RegexFCD::Anchors(System.Text.RegularExpressions.RegexTree) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexFCD_Anchors_m4F3A11C644EC9B7B16CCCBD792A5E2FED2C22EA7 (RegexTree_t63A434601D42EC388D9B2DCA2913286CFC8811F3 * ___tree0, const RuntimeMethod* method); // System.Void System.Text.RegularExpressions.RegexCode::.ctor(System.Int32[],System.Collections.Generic.List`1<System.String>,System.Int32,System.Collections.Hashtable,System.Int32,System.Text.RegularExpressions.RegexBoyerMoore,System.Text.RegularExpressions.RegexPrefix,System.Int32,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexCode__ctor_mEFC64ECB52D0D2735F99AC16BD6355D3A59499CE (RegexCode_tF1653432E8EEDED5AB9517D09CA84B5FAA3CC0D5 * __this, Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___codes0, List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * ___stringlist1, int32_t ___trackcount2, Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * ___caps3, int32_t ___capsize4, RegexBoyerMoore_t43FE488EFF3EE20D1092216B7E62D954F78167D2 * ___bmPrefix5, RegexPrefix_t1563C82A76799B0B018F5EBD6EC068158BE50301 * ___fcPrefix6, int32_t ___anchors7, bool ___rightToLeft8, const RuntimeMethod* method); // System.Int32 System.Text.RegularExpressions.RegexWriter::MapCapnum(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexWriter_MapCapnum_mEF8C8E6F9916122D0FAE18A7B560F65738D004E6 (RegexWriter_t958027B0548A09589F03657633037085BACFC7B5 * __this, int32_t ___capnum0, const RuntimeMethod* method); // System.Void System.Text.RegularExpressions.RegexWriter::Emit(System.Int32,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexWriter_Emit_m9360B7E84BA94A432C3C9AB5427A30D81E0B2739 (RegexWriter_t958027B0548A09589F03657633037085BACFC7B5 * __this, int32_t ___op0, int32_t ___opd11, int32_t ___opd22, const RuntimeMethod* method); // System.Int32 System.Text.RegularExpressions.RegexWriter::StringCode(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexWriter_StringCode_m10DB52A16488268DF01C52E8163E899FA568FBC9 (RegexWriter_t958027B0548A09589F03657633037085BACFC7B5 * __this, String_t* ___str0, const RuntimeMethod* method); // System.ArgumentException System.Text.RegularExpressions.RegexWriter::MakeException(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * RegexWriter_MakeException_mD2A13E8F5A67D36CAEE67D74C35A5D2B35111C26 (RegexWriter_t958027B0548A09589F03657633037085BACFC7B5 * __this, String_t* ___message0, const RuntimeMethod* method); // System.String SR::GetString(System.Globalization.CultureInfo,System.String,System.Object[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SR_GetString_m410D5693D8F75264B62B781794F559446EC84B3B (CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * ___culture0, String_t* ___name1, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___args2, const RuntimeMethod* method); // System.String System.String::Format(System.IFormatProvider,System.String,System.Object[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_mF96F0621DC567D09C07F1EAC66B31AD261A9DC21 (RuntimeObject* ___provider0, String_t* ___format1, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___args2, const RuntimeMethod* method); // System.Void System.WeakReference::.ctor(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WeakReference__ctor_m11BFDB039514BDCE23425FD90E8C414D051B2F13 (WeakReference_tB8558D16C98417FD98C920C42C0CC5C9FF825C76 * __this, RuntimeObject * ___target0, const RuntimeMethod* method); // System.Void System.ComponentModel.BaseNumberConverter::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseNumberConverter__ctor_m18967D5B511402093936893A249438FB94D5BDA3 (BaseNumberConverter_t6CA2001CE79249FCF74FC888710AAD5CA23B748C * __this, const RuntimeMethod* method); // System.Int32 System.Net.Sockets.SocketException::WSAGetLastError_internal() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SocketException_WSAGetLastError_internal_m99F586D3C14E2051DBB53BEF3716A740EA9223E2 (const RuntimeMethod* method); // System.Void System.ComponentModel.Win32Exception::.ctor(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Win32Exception__ctor_mF8FAD9681BA8B2EFBD1EDA7C690764FF60E85A6F (Win32Exception_t4B7A329153AA0E88CA08533EFB6DB2F2A8E90950 * __this, int32_t ___error0, const RuntimeMethod* method); // System.Void System.ComponentModel.Win32Exception::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Win32Exception__ctor_m712FC6079EE6F92FAB0B3DDAFD652B24FF163CC6 (Win32Exception_t4B7A329153AA0E88CA08533EFB6DB2F2A8E90950 * __this, SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * ___info0, StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 ___context1, const RuntimeMethod* method); // System.String System.Exception::get_Message() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Exception_get_Message_mC7A96CEBF52567CEF612C8C75A99A735A83E883F (Exception_t * __this, const RuntimeMethod* method); // System.String System.String::Concat(System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m89EAB4C6A96B0E5C3F87300D6BE78D386B9EFC44 (String_t* ___str00, String_t* ___str11, String_t* ___str22, const RuntimeMethod* method); // System.Int64 System.Diagnostics.Stopwatch::get_ElapsedTicks() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Stopwatch_get_ElapsedTicks_mEA2271BCCE37E6615EFC0B377D33C9DB63CA09E8 (Stopwatch_t78C5E942A89311381E0D8894576457C33462DF89 * __this, const RuntimeMethod* method); // System.TimeSpan System.Diagnostics.Stopwatch::get_Elapsed() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 Stopwatch_get_Elapsed_m75C9FF87F9007FC8738B722002A8F8C302F5CFA6 (Stopwatch_t78C5E942A89311381E0D8894576457C33462DF89 * __this, const RuntimeMethod* method); // System.Int64 System.Diagnostics.Stopwatch::GetTimestamp() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Stopwatch_GetTimestamp_m8CAF46C3B4D7460B70C325D666B7F6470D2208DB (const RuntimeMethod* method); // System.Void System.ComponentModel.TypeConverter::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeConverter__ctor_mCD87E569A2C4CB1331A069396FFA98E65726A16C (TypeConverter_t004F185B630F00F509F08BD8F8D82471867323B4 * __this, const RuntimeMethod* method); // System.Void System.PlatformNotSupportedException::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PlatformNotSupportedException__ctor_mF4122BD5C9FF6CF441C2A4BCECF012EEF603AE05 (PlatformNotSupportedException_t4F02BDC290520CA1A2452F51A8AC464F6D5E356E * __this, const RuntimeMethod* method); // System.Void System.Attribute::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Attribute__ctor_m5C1862A7DFC2C25A4797A8C5F681FBB5CB53ECE1 (Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71 * __this, const RuntimeMethod* method); // System.String System.ComponentModel.TypeConverterAttribute::get_ConverterTypeName() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* TypeConverterAttribute_get_ConverterTypeName_m699652BD16C42823BE283EA769647F676122EB6B_inline (TypeConverterAttribute_t2C9750F302F83A7710D031C00A7CEBDA8F0C3F83 * __this, const RuntimeMethod* method); // System.Boolean System.String::op_Equality(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB (String_t* ___a0, String_t* ___b1, const RuntimeMethod* method); // System.Void System.ComponentModel.TypeConverterAttribute::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeConverterAttribute__ctor_m23863863F742A02AA8914FB5527AFBC15DCAFA8A (TypeConverterAttribute_t2C9750F302F83A7710D031C00A7CEBDA8F0C3F83 * __this, const RuntimeMethod* method); // System.String System.DomainNameHelper::ParseCanonicalName(System.String,System.Int32,System.Int32,System.Boolean&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DomainNameHelper_ParseCanonicalName_m1C6E554993599045E72E090518D75FF532D2543E (String_t* ___str0, int32_t ___start1, int32_t ___end2, bool* ___loopback3, const RuntimeMethod* method); // System.Boolean System.Char::IsLetter(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsLetter_mF204E476D37A9EC10C965929AF16A362CBEA8950 (Il2CppChar ___c0, const RuntimeMethod* method); // System.Boolean System.UriParser::InFact(System.UriSyntaxFlags) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UriParser_InFact_m4E58BAFAB5A9BC24854C815FC093E16D4F1CFA4D (UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * __this, int32_t ___flags0, const RuntimeMethod* method); // System.UriSyntaxFlags System.UriParser::get_Flags() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t UriParser_get_Flags_mDAA0D828057CA2CA4493FD152D3760E975BAE7F0_inline (UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * __this, const RuntimeMethod* method); // System.Boolean System.Uri::NotAny(System.Uri/Flags) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Uri_NotAny_m2C222924AE10957D835ECBC887D456FB30DCF969 (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, uint64_t ___flags0, const RuntimeMethod* method); // System.Boolean System.Uri::StaticNotAny(System.Uri/Flags,System.Uri/Flags) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Uri_StaticNotAny_mA7DA612608D1C43837E3DC3E31C02F994746736C (uint64_t ___allFlags0, uint64_t ___checkFlags1, const RuntimeMethod* method); // System.Boolean System.Uri::get_IsDosPath() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Uri_get_IsDosPath_m3374B9D26D6B547862ACB2E617AB6F96CA31A5AF (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, const RuntimeMethod* method); // System.Void System.Uri::CreateUriInfo(System.Uri/Flags) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Uri_CreateUriInfo_mD8864BD45B6397D4C3AED68BA2D3EAEB520DB9E6 (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, uint64_t ___cF0, const RuntimeMethod* method); // System.Void System.Uri::ParseRemaining() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Uri_ParseRemaining_m8C4350479C64906DDE464595F8BE5F8C14F2038D (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, const RuntimeMethod* method); // System.Uri/UriInfo System.Uri::EnsureUriInfo() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * Uri_EnsureUriInfo_m5FA3DF1CD26867815CE1F247A47530E1D7E35F7E (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, const RuntimeMethod* method); // System.Boolean System.Uri::InFact(System.Uri/Flags) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Uri_InFact_mF6A06FA7246740D26093421D41D18000AC2CC0C4 (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, uint64_t ___flags0, const RuntimeMethod* method); // System.Void System.Uri::CreateHostString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Uri_CreateHostString_m2C549411869B57ADE6595800B6493BDB0A52F124 (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, const RuntimeMethod* method); // System.Void System.ArgumentNullException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97 (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * __this, String_t* ___paramName0, const RuntimeMethod* method); // System.Void System.Uri::CreateThis(System.String,System.Boolean,System.UriKind) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Uri_CreateThis_m86E72577BCB9A6FDF5A0EC8EDFDD5F41AD3256FC (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, String_t* ___uri0, bool ___dontEscape1, int32_t ___uriKind2, const RuntimeMethod* method); // System.Void System.UriFormatException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UriFormatException__ctor_mC9CB29EF00CB33869659306AC3FCA69342FD044F (UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D * __this, String_t* ___textString0, const RuntimeMethod* method); // System.Void System.Uri::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Uri_GetObjectData_mB720AACE3C54C5B104A7DF0658369C7F7914E895 (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * ___serializationInfo0, StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 ___streamingContext1, const RuntimeMethod* method); // System.Boolean System.Uri::get_IsAbsoluteUri() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Uri_get_IsAbsoluteUri_m013346D65055CFEDF9E742534A584573C18A0E25 (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, const RuntimeMethod* method); // System.String System.Uri::GetParts(System.UriComponents,System.UriFormat) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Uri_GetParts_m78996C042B20360F92CDB6FD71F74A242705DFDA (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, int32_t ___uriParts0, int32_t ___formatAs1, const RuntimeMethod* method); // System.Object System.Threading.Interlocked::CompareExchange(System.Object&,System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Interlocked_CompareExchange_mFAD09589A5DAFDBABB05C62A2D35CD5B92BC6961 (RuntimeObject ** ___location10, RuntimeObject * ___value1, RuntimeObject * ___comparand2, const RuntimeMethod* method); // System.Object System.Uri::get_InitializeLock() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Uri_get_InitializeLock_mAE613B41FE88D4D6BC8D943F2A75B6BC00861B0E (const RuntimeMethod* method); // System.Void System.Threading.Monitor::Enter(System.Object,System.Boolean&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Monitor_Enter_mBEB6CC84184B46F26375EC3FC8921D16E48EA4C4 (RuntimeObject * ___obj0, bool* ___lockTaken1, const RuntimeMethod* method); // System.Void System.Threading.Monitor::Exit(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Monitor_Exit_mA776B403DA88AC77CDEEF67AB9F0D0E77ABD254A (RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Boolean System.Uri::get_IsNotAbsoluteUri() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Uri_get_IsNotAbsoluteUri_m7394FF83375B299BA634518D3104903AFEAE3177 (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, const RuntimeMethod* method); // System.Void System.InvalidOperationException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * __this, String_t* ___message0, const RuntimeMethod* method); // System.Boolean System.UriParser::get_IsSimple() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UriParser_get_IsSimple_m09BA6505FDD1AE0BF6C711AE9C2C3F9379B868F8 (UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * __this, const RuntimeMethod* method); // System.Void System.Uri::EnsureHostString(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Uri_EnsureHostString_m47897EC94F83DFE1CA16CE71167DDD3CC986C22A (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, bool ___allowDnsOptimization0, const RuntimeMethod* method); // System.Int32 System.UriParser::get_DefaultPort() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t UriParser_get_DefaultPort_m7ECA5BE839D36C7FF854FEA0795D8DE701487D33_inline (UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * __this, const RuntimeMethod* method); // System.Boolean System.Uri::get_AllowIdn() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Uri_get_AllowIdn_m4031E81D7D0E44FC81C6951D78B2C836EC8270D7 (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, const RuntimeMethod* method); // System.Boolean System.Uri::get_OriginalStringSwitched() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Uri_get_OriginalStringSwitched_m405404D361D84E268AED978DCE114F5E43583987 (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, const RuntimeMethod* method); // System.String System.Uri::get_OriginalString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Uri_get_OriginalString_mBD94B4BB84AE9C051C1CA8BA33C14D5BAD25B0AC (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, const RuntimeMethod* method); // System.Int32 System.Uri::CalculateCaseInsensitiveHashCode(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Uri_CalculateCaseInsensitiveHashCode_m3C1409D3BEC3AEDC2880109BF1755CF68263DD7A (String_t* ___text0, const RuntimeMethod* method); // System.Void System.Uri/MoreInfo::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MoreInfo__ctor_mF8515B2BCCB5E7DC008164794946ADE7ADBCD2BD (MoreInfo_t15D42286ECE8DAD0B0FE9CDC1291109300C3E727 * __this, const RuntimeMethod* method); // System.UriParser System.Uri::get_Syntax() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * Uri_get_Syntax_mF7002491E720A700F68312C49337C6F5D91ABCC9_inline (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, const RuntimeMethod* method); // System.String System.Uri::GetComponentsHelper(System.UriComponents,System.UriFormat) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Uri_GetComponentsHelper_mAA39E421157735AAD7D93A187CCCAED5A122C8E8 (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, int32_t ___uriComponents0, int32_t ___uriFormat1, const RuntimeMethod* method); // System.Boolean System.Uri::TryCreate(System.String,System.UriKind,System.Uri&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Uri_TryCreate_m44277635BB8291BC0AADD85B9C9A015C1C21EF92 (String_t* ___uriString0, int32_t ___uriKind1, Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 ** ___result2, const RuntimeMethod* method); // System.Boolean System.String::Equals(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_Equals_m8A062B96B61A7D652E7D73C9B3E904F6B0E5F41D (String_t* __this, String_t* ___value0, const RuntimeMethod* method); // System.Boolean System.Uri::get_IsUncOrDosPath() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Uri_get_IsUncOrDosPath_mF197920D1C1DBDE10A3478855D89D36210D8CE94 (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, const RuntimeMethod* method); // System.Int32 System.Runtime.CompilerServices.RuntimeHelpers::get_OffsetToStringData() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RuntimeHelpers_get_OffsetToStringData_mEB8E6EAEBAFAB7CD7F7A915B3081785AABB9FC42 (const RuntimeMethod* method); // System.Int32 System.String::Compare(System.String,System.String,System.StringComparison) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_Compare_mDAE9D10BC450FF38960C691874EBFC3EAF6A39DD (String_t* ___strA0, String_t* ___strB1, int32_t ___comparisonType2, const RuntimeMethod* method); // System.Boolean System.Uri::get_UserDrivenParsing() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Uri_get_UserDrivenParsing_mF09087D4DE9A0823EBF1FC0C14101335D01393F2 (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, const RuntimeMethod* method); // System.Int32 System.Uri::get_Port() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Uri_get_Port_m23A08BF55EC1DC7421B99E6E77544DDF5900099C (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, const RuntimeMethod* method); // System.UInt16 System.Uri::ParseSchemeCheckImplicitFile(System.Char*,System.UInt16,System.ParsingError&,System.Uri/Flags&,System.UriParser&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Uri_ParseSchemeCheckImplicitFile_m5F6B3C184CF455ED80D78937F208EB8C10265395 (Il2CppChar* ___uriString0, uint16_t ___length1, int32_t* ___err2, uint64_t* ___flags3, UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A ** ___syntax4, const RuntimeMethod* method); // System.ParsingError System.Uri::PrivateParseMinimal() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Uri_PrivateParseMinimal_m154A67FFA2FA8E2D9215163B56DF1BB88576A369 (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, const RuntimeMethod* method); // System.UriFormatException System.Uri::GetException(System.ParsingError) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D * Uri_GetException_m6A158C16E69136DF56BCF19CC4C7DCCC2601CF84 (int32_t ___err0, const RuntimeMethod* method); // System.Boolean System.Uri::IsLWS(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Uri_IsLWS_m4A41E0157130C65E6768C4F5CFEE2219DAE773B4 (Il2CppChar ___ch0, const RuntimeMethod* method); // System.Boolean System.UriParser::IsAllSet(System.UriSyntaxFlags) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UriParser_IsAllSet_m356BD044D8A53560B6A7AA9B81A20A364E015C18 (UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * __this, int32_t ___flags0, const RuntimeMethod* method); // System.Boolean System.Uri::IsAsciiLetter(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Uri_IsAsciiLetter_mBEE6BD837C66CBB199E8A9FAB14A85744368F0FC (Il2CppChar ___character0, const RuntimeMethod* method); // System.Boolean System.UriParser::NotAny(System.UriSyntaxFlags) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UriParser_NotAny_m6A42FAC623F0EBDE441782DAC3E3B2ED34756D91 (UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * __this, int32_t ___flags0, const RuntimeMethod* method); // System.UInt16 System.Uri::CheckAuthorityHelper(System.Char*,System.UInt16,System.UInt16,System.ParsingError&,System.Uri/Flags&,System.UriParser,System.String&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Uri_CheckAuthorityHelper_mC5010AEC19EED1968EDE7CB52C92AC0AC0869503 (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, Il2CppChar* ___pString0, uint16_t ___idx1, uint16_t ___length2, int32_t* ___err3, uint64_t* ___flags4, UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * ___syntax5, String_t** ___newHost6, const RuntimeMethod* method); // System.Void System.Uri::PrivateParseMinimalIri(System.String,System.UInt16) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Uri_PrivateParseMinimalIri_m1A23B409BC4FE17A66599BFE0E0CD62C06D45E2B (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, String_t* ___newHost0, uint16_t ___idx1, const RuntimeMethod* method); // System.Void System.Uri/UriInfo::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UriInfo__ctor_m990C9CA368096AFE12B92F3605FAA70EC0C69BB8 (UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * __this, const RuntimeMethod* method); // System.Boolean System.Uri::StaticInFact(System.Uri/Flags,System.Uri/Flags) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Uri_StaticInFact_m6B17A3B95B81DABD390B643ABD9ADAA316D5EF98 (uint64_t ___allFlags0, uint64_t ___checkFlags1, const RuntimeMethod* method); // System.String System.UriParser::get_SchemeName() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* UriParser_get_SchemeName_mFCD123235673631E05FE9BAF6955A0B43EEEBD80_inline (UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * __this, const RuntimeMethod* method); // System.Uri/Flags System.Uri::get_HostType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Uri_get_HostType_m6C142BC37D44CF1F53D80627455BC6B1CB747820 (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, const RuntimeMethod* method); // System.Void System.Uri::GetHostViaCustomSyntax() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Uri_GetHostViaCustomSyntax_mF2DABFE767AB49B8F8E0C9E19937AF900A1E4BC7 (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, const RuntimeMethod* method); // System.String System.Uri::CreateHostStringHelper(System.String,System.UInt16,System.UInt16,System.Uri/Flags&,System.String&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Uri_CreateHostStringHelper_m53D695F65E776AB98FD3359894C2C34109E08D00 (String_t* ___str0, uint16_t ___idx1, uint16_t ___end2, uint64_t* ___flags3, String_t** ___scopeId4, const RuntimeMethod* method); // System.Uri/Check System.Uri::CheckCanonical(System.Char*,System.UInt16&,System.UInt16,System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Uri_CheckCanonical_mFD937A06DC3885481C374ACDD190A3B3E40152F3 (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, Il2CppChar* ___str0, uint16_t* ___idx1, uint16_t ___end2, Il2CppChar ___delim3, const RuntimeMethod* method); // System.Boolean System.Uri::get_IsImplicitFile() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Uri_get_IsImplicitFile_m58AC900A18C84E93F4611F97639112F801629DAA (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, const RuntimeMethod* method); // System.Char[] System.UriHelper::EscapeString(System.String,System.Int32,System.Int32,System.Char[],System.Int32&,System.Boolean,System.Char,System.Char,System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* UriHelper_EscapeString_m322E8737F58BBAF891A75032EC1800BE548F84D7 (String_t* ___input0, int32_t ___start1, int32_t ___end2, CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___dest3, int32_t* ___destPos4, bool ___isUriString5, Il2CppChar ___force16, Il2CppChar ___force27, Il2CppChar ___rsvd8, const RuntimeMethod* method); // System.String System.String::CreateString(System.Char[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_CreateString_m16F181739FD8BA877868803DE2CE0EF0A4668D0E (String_t* __this, CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___val0, int32_t ___startIndex1, int32_t ___length2, const RuntimeMethod* method); // System.String System.IPv6AddressHelper::ParseCanonicalName(System.String,System.Int32,System.Boolean&,System.String&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* IPv6AddressHelper_ParseCanonicalName_mAC7315CCA0517C9B95D33C4114E90A8B94EC1E2C (String_t* ___str0, int32_t ___start1, bool* ___isLoopback2, String_t** ___scopeId3, const RuntimeMethod* method); // System.String System.IPv4AddressHelper::ParseCanonicalName(System.String,System.Int32,System.Int32,System.Boolean&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* IPv4AddressHelper_ParseCanonicalName_m4237845A3AFA554557BEC618AB11D5EF7A18C2BB (String_t* ___str0, int32_t ___start1, int32_t ___end2, bool* ___isLoopback3, const RuntimeMethod* method); // System.String System.UncNameHelper::ParseCanonicalName(System.String,System.Int32,System.Int32,System.Boolean&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* UncNameHelper_ParseCanonicalName_mAA1CF481E9789909F458A6C31A10DF991166F060 (String_t* ___str0, int32_t ___start1, int32_t ___end2, bool* ___loopback3, const RuntimeMethod* method); // System.String System.UriParser::InternalGetComponents(System.Uri,System.UriComponents,System.UriFormat) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* UriParser_InternalGetComponents_mAB0A54E462724FA417D0EF3A2AD0BD24BC66DFF8 (UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * __this, Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___thisUri0, int32_t ___uriComponents1, int32_t ___uriFormat2, const RuntimeMethod* method); // System.Type System.Object::GetType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B (RuntimeObject * __this, const RuntimeMethod* method); // System.String System.Uri::GetComponents(System.UriComponents,System.UriFormat) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Uri_GetComponents_mA614A98C35F2E5D924A10A8018A46606AFB6133E (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, int32_t ___components0, int32_t ___format1, const RuntimeMethod* method); // System.UInt16 System.Uri::get_SecuredPathIndex() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Uri_get_SecuredPathIndex_m0BE7920E94AA002B4CD2D568BD6E0FD91F0D7F0B (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, const RuntimeMethod* method); // System.String System.Uri::GetUriPartsFromUserString(System.UriComponents) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Uri_GetUriPartsFromUserString_m81B60C6E31AB8EA51438E391F7990334B96ACD29 (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, int32_t ___uriParts0, const RuntimeMethod* method); // System.String System.Uri::ReCreateParts(System.UriComponents,System.UInt16,System.UriFormat) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Uri_ReCreateParts_m3D0CD53477FBAB5E8988373B8D749E286399278E (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, int32_t ___parts0, uint16_t ___nonCanonical1, int32_t ___formatAs2, 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_mF77EF8D4E5ABBD2AB7F509FFE9C0C70DC15A27E1 (String_t* __this, int32_t ___sourceIndex0, CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___destination1, int32_t ___destinationIndex2, int32_t ___count3, const RuntimeMethod* method); // System.Char[] System.UriHelper::UnescapeString(System.String,System.Int32,System.Int32,System.Char[],System.Int32&,System.Char,System.Char,System.Char,System.UnescapeMode,System.UriParser,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* UriHelper_UnescapeString_mA17D82F433C1E293A09957A12BBA31A2617BB300 (String_t* ___input0, int32_t ___start1, int32_t ___end2, CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___dest3, int32_t* ___destPosition4, Il2CppChar ___rsvd15, Il2CppChar ___rsvd26, Il2CppChar ___rsvd37, int32_t ___unescapeMode8, UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * ___syntax9, bool ___isQuery10, const RuntimeMethod* method); // System.String System.DomainNameHelper::UnicodeEquivalent(System.Char*,System.Int32,System.Int32,System.Boolean&,System.Boolean&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DomainNameHelper_UnicodeEquivalent_m3F187B69AA5313A516F863666C0A29292C8F07A3 (Il2CppChar* ___hostname0, int32_t ___start1, int32_t ___end2, bool* ___allAscii3, bool* ___atLeastOneValidIdn4, const RuntimeMethod* method); // System.String System.UInt16::ToString(System.IFormatProvider) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* UInt16_ToString_m960B640F8B0C181A9185FCD0921B2F85106FE336 (uint16_t* __this, RuntimeObject* ___provider0, const RuntimeMethod* method); // System.Char[] System.Uri::GetCanonicalPath(System.Char[],System.Int32&,System.UriFormat) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* Uri_GetCanonicalPath_mA187EAD590C890FE0623CF7B1EFF4364B57FAF10 (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___dest0, int32_t* ___pos1, int32_t ___formatAs2, const RuntimeMethod* method); // System.Boolean System.UriParser::get_ShouldUseLegacyV2Quirks() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UriParser_get_ShouldUseLegacyV2Quirks_mB8917CAC10CD13E44F2EB21D4033044BEAF132B2 (const RuntimeMethod* method); // System.Void System.Uri::FindEndOfComponent(System.String,System.UInt16&,System.UInt16,System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Uri_FindEndOfComponent_m82D6E67E45114D23F403807E6D711C2A4E574567 (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, String_t* ___input0, uint16_t* ___idx1, uint16_t ___end2, Il2CppChar ___delim3, const RuntimeMethod* method); // System.String System.Uri::EscapeUnescapeIri(System.String,System.Int32,System.Int32,System.UriComponents) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Uri_EscapeUnescapeIri_m606A69B7A76A131D0CA6F562E5DC0721C626E071 (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, String_t* ___input0, int32_t ___start1, int32_t ___end2, int32_t ___component3, const RuntimeMethod* method); // System.String System.String::Normalize(System.Text.NormalizationForm) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Normalize_m8CD42072C9F7B418990609EB63C5F7E1328321A9 (String_t* __this, int32_t ___normalizationForm0, const RuntimeMethod* method); // System.Int32 System.IntPtr::get_Size() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t IntPtr_get_Size_mD8038A1C440DE87E685F4D879DC80A6704D9C77B (const RuntimeMethod* method); // System.Boolean System.Uri::CheckKnownSchemes(System.Int64*,System.UInt16,System.UriParser&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Uri_CheckKnownSchemes_mDA8F5B5A8A82B234F1212931F2E0F19146BAEAA6 (int64_t* ___lptr0, uint16_t ___nChars1, UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A ** ___syntax2, const RuntimeMethod* method); // System.ParsingError System.Uri::CheckSchemeSyntax(System.Char*,System.UInt16,System.UriParser&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Uri_CheckSchemeSyntax_m2D8AE16F4A6A55E89603F7E9D675227302B53761 (Il2CppChar* ___ptr0, uint16_t ___length1, UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A ** ___syntax2, const RuntimeMethod* method); // System.String System.String::CreateString(System.Char*,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_CreateString_m854F19B67F5E1B63737E096BF53CC56AB12AF777 (String_t* __this, Il2CppChar* ___value0, int32_t ___startIndex1, int32_t ___length2, const RuntimeMethod* method); // System.UriParser System.UriParser::FindOrFetchAsUnknownV1Syntax(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * UriParser_FindOrFetchAsUnknownV1Syntax_m7844992E6D0B5FD676AEE47EBD4806305418D6CC (String_t* ___lwrCaseScheme0, const RuntimeMethod* method); // System.Boolean System.Uri::IriParsingStatic(System.UriParser) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Uri_IriParsingStatic_m0F2797FEA328A2B1A72EE03F9BD88C577A7A0471 (UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * ___syntax0, const RuntimeMethod* method); // System.Boolean System.Uri::StaticIsFile(System.UriParser) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Uri_StaticIsFile_m3E03FC49813EF629A488CF3093AE0A5675210CED (UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * ___syntax0, const RuntimeMethod* method); // System.String System.IriHelper::EscapeUnescapeIri(System.Char*,System.Int32,System.Int32,System.UriComponents) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* IriHelper_EscapeUnescapeIri_m6CABB7FC44037C0B5C18132AF5D8C55DB5C64444 (Il2CppChar* ___pInput0, int32_t ___start1, int32_t ___end2, int32_t ___component3, const RuntimeMethod* method); // System.Boolean System.IPv6AddressHelper::IsValid(System.Char*,System.Int32,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IPv6AddressHelper_IsValid_m8090A11221F415591268CBE22105DEFB03CA0FFF (Il2CppChar* ___name0, int32_t ___start1, int32_t* ___end2, const RuntimeMethod* method); // System.Void System.Uri::InitializeUriConfig() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Uri_InitializeUriConfig_m0DB8F34B6FAF361C0FE002FA800548608A03F8E5 (const RuntimeMethod* method); // System.Boolean System.IPv4AddressHelper::IsValid(System.Char*,System.Int32,System.Int32&,System.Boolean,System.Boolean,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IPv4AddressHelper_IsValid_m6CAD01230EC033CB8F4ABB645327065A56E2ED7D (Il2CppChar* ___name0, int32_t ___start1, int32_t* ___end2, bool ___allowIPv63, bool ___notImplicitFile4, bool ___unknownScheme5, const RuntimeMethod* method); // System.Boolean System.DomainNameHelper::IsValid(System.Char*,System.UInt16,System.Int32&,System.Boolean&,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DomainNameHelper_IsValid_m023973F3D85C0B74F55D6B7576911D4813685052 (Il2CppChar* ___name0, uint16_t ___pos1, int32_t* ___returnedEnd2, bool* ___notCanonical3, bool ___notImplicitFile4, const RuntimeMethod* method); // System.Boolean System.Uri::IsIntranet(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Uri_IsIntranet_m89BF3C395C8D960B103DF056976B7C369231270C (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, String_t* ___schemeHost0, const RuntimeMethod* method); // System.Boolean System.Uri::AllowIdnStatic(System.UriParser,System.Uri/Flags) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Uri_AllowIdnStatic_mF38FDCA5248AA93F8823A192D61E2180FEC9C41C (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * ___syntax0, uint64_t ___flags1, const RuntimeMethod* method); // System.Boolean System.DomainNameHelper::IsValidByIri(System.Char*,System.UInt16,System.Int32&,System.Boolean&,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DomainNameHelper_IsValidByIri_m97F02F9CC9EEE94308F903936E1E5D4322364869 (Il2CppChar* ___name0, uint16_t ___pos1, int32_t* ___returnedEnd2, bool* ___notCanonical3, bool ___notImplicitFile4, const RuntimeMethod* method); // System.Void System.Uri::CheckAuthorityHelperHandleDnsIri(System.Char*,System.UInt16,System.Int32,System.Int32,System.Boolean,System.Boolean,System.UriParser,System.String,System.Uri/Flags&,System.Boolean&,System.String&,System.ParsingError&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Uri_CheckAuthorityHelperHandleDnsIri_m495861D9EEE706767F37270F316951E292C60B7A (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, Il2CppChar* ___pString0, uint16_t ___start1, int32_t ___end2, int32_t ___startInput3, bool ___iriParsing4, bool ___hasUnicode5, UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * ___syntax6, String_t* ___userInfoString7, uint64_t* ___flags8, bool* ___justNormalized9, String_t** ___newHost10, int32_t* ___err11, const RuntimeMethod* method); // System.Boolean System.UncNameHelper::IsValid(System.Char*,System.UInt16,System.Int32&,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UncNameHelper_IsValid_m7179761E2E8A1F136418B2E4FA00277A192CD38E (Il2CppChar* ___name0, uint16_t ___start1, int32_t* ___returnedEnd2, bool ___notImplicitFile3, const RuntimeMethod* method); // System.Void System.Uri::CheckAuthorityHelperHandleAnyHostIri(System.Char*,System.Int32,System.Int32,System.Boolean,System.Boolean,System.UriParser,System.Uri/Flags&,System.String&,System.ParsingError&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Uri_CheckAuthorityHelperHandleAnyHostIri_m25D24DA750D1E2D025C22CF6D2BAD269AB3FA21B (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, Il2CppChar* ___pString0, int32_t ___startInput1, int32_t ___end2, bool ___iriParsing3, bool ___hasUnicode4, UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * ___syntax5, uint64_t* ___flags6, String_t** ___newHost7, int32_t* ___err8, const RuntimeMethod* method); // System.String System.DomainNameHelper::IdnEquivalent(System.Char*,System.Int32,System.Int32,System.Boolean&,System.Boolean&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DomainNameHelper_IdnEquivalent_mBA80E13A0C970D723F1A05F175F6B96E0DE3C974 (Il2CppChar* ___hostname0, int32_t ___start1, int32_t ___end2, bool* ___allAscii3, bool* ___atLeastOneValidIdn4, const RuntimeMethod* method); // System.String System.DomainNameHelper::UnicodeEquivalent(System.String,System.Char*,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DomainNameHelper_UnicodeEquivalent_m862F489809AFF128883F7E52A9B56D0169AE5168 (String_t* ___idnHost0, Il2CppChar* ___hostname1, int32_t ___start2, int32_t ___end3, const RuntimeMethod* method); // System.String System.Uri::StripBidiControlCharacter(System.Char*,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Uri_StripBidiControlCharacter_m17F47758CA4DA1A5D21B3D39D00E8364DC2CAF50 (Il2CppChar* ___strToClean0, int32_t ___start1, int32_t ___length2, const RuntimeMethod* method); // System.String System.DomainNameHelper::IdnEquivalent(System.Char*,System.Int32,System.Int32,System.Boolean&,System.String&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DomainNameHelper_IdnEquivalent_mEF2BE28789962238A2B054639C82F8F711903CDC (Il2CppChar* ___hostname0, int32_t ___start1, int32_t ___end2, bool* ___allAscii3, String_t** ___bidiStrippedHost4, const RuntimeMethod* method); // System.Void System.Uri::FindEndOfComponent(System.Char*,System.UInt16&,System.UInt16,System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Uri_FindEndOfComponent_mFFFB2266B9FDDB757E145586461BF46D26C509C9 (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, Il2CppChar* ___str0, uint16_t* ___idx1, uint16_t ___end2, Il2CppChar ___delim3, const RuntimeMethod* method); // System.Boolean System.Char::IsHighSurrogate(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_IsHighSurrogate_m7BECD1C98C902946F069D8936F8A557F1F7DFF01 (Il2CppChar ___c0, const RuntimeMethod* method); // System.Boolean System.IriHelper::CheckIriUnicodeRange(System.Char,System.Char,System.Boolean&,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IriHelper_CheckIriUnicodeRange_m03144D55C396E2870F76F85B29852F8314346A1A (Il2CppChar ___highSurr0, Il2CppChar ___lowSurr1, bool* ___surrogatePair2, bool ___isQuery3, const RuntimeMethod* method); // System.Boolean System.IriHelper::CheckIriUnicodeRange(System.Char,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IriHelper_CheckIriUnicodeRange_m5E205B2F096045DE5259E0E98A062DD0813206F6 (Il2CppChar ___unicode0, bool ___isQuery1, const RuntimeMethod* method); // System.Char System.UriHelper::EscapedAscii(System.Char,System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar UriHelper_EscapedAscii_m80D926F5C8B177B5D041BBFEADEAB2363A324461 (Il2CppChar ___digit0, Il2CppChar ___next1, const RuntimeMethod* method); // System.Void System.Uri::UnescapeOnly(System.Char*,System.Int32,System.Int32&,System.Char,System.Char,System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Uri_UnescapeOnly_m18532EEE1EFF1E8A802527ECC577BA815CC33B1B (Il2CppChar* ___pch0, int32_t ___start1, int32_t* ___end2, Il2CppChar ___ch13, Il2CppChar ___ch24, Il2CppChar ___ch35, const RuntimeMethod* method); // System.String System.String::Remove(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Remove_mA7DE3D6FE3344FD65108B33BD1DE8020D22ADAC0 (String_t* __this, int32_t ___startIndex0, int32_t ___count1, const RuntimeMethod* method); // System.String System.String::Insert(System.Int32,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Insert_m6F5335C84ACB178D4141772E1D7F2EB7811990EB (String_t* __this, int32_t ___startIndex0, String_t* ___value1, const RuntimeMethod* method); // System.Char[] System.Uri::Compress(System.Char[],System.UInt16,System.Int32&,System.UriParser) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* Uri_Compress_mDF5924D464EB2CDA24C14D7448878C2DA46A9B8F (CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___dest0, uint16_t ___start1, int32_t* ___destLength2, UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * ___syntax3, 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_mD01FC13D87078586714AA235261A9E786C351725 (RuntimeArray * ___src0, int32_t ___srcOffset1, RuntimeArray * ___dst2, int32_t ___dstOffset3, int32_t ___count4, const RuntimeMethod* method); // System.Char[] System.UriHelper::UnescapeString(System.Char*,System.Int32,System.Int32,System.Char[],System.Int32&,System.Char,System.Char,System.Char,System.UnescapeMode,System.UriParser,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* UriHelper_UnescapeString_m92E5C90E7DAE8DA5C7C1E6FB72B0F58321B6484C (Il2CppChar* ___pStr0, int32_t ___start1, int32_t ___end2, CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___dest3, int32_t* ___destPosition4, Il2CppChar ___rsvd15, Il2CppChar ___rsvd26, Il2CppChar ___rsvd37, int32_t ___unescapeMode8, UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * ___syntax9, bool ___isQuery10, const RuntimeMethod* method); // System.StringComparer System.StringComparer::get_InvariantCultureIgnoreCase() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 * StringComparer_get_InvariantCultureIgnoreCase_m091360FF9FE3516559AFF706AF431E6FD4CCF2C2_inline (const RuntimeMethod* method); // System.Boolean System.Uri::IsBidiControlCharacter(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Uri_IsBidiControlCharacter_m36A30E0708EE0209208B23136C2BEC9C802C697B (Il2CppChar ___ch0, const RuntimeMethod* method); // System.ParsingError System.Uri::ParseScheme(System.String,System.Uri/Flags&,System.UriParser&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Uri_ParseScheme_m65694E4DA17BF0A8447ACE12EF444FE4D1E1AB16 (String_t* ___uriString0, uint64_t* ___flags1, UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A ** ___syntax2, const RuntimeMethod* method); // System.Void System.Uri::InitializeUri(System.ParsingError,System.UriKind,System.UriFormatException&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Uri_InitializeUri_m952665E18BE60CFAC5A6025FCD2A0BB9CCB5C567 (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, int32_t ___err0, int32_t ___uriKind1, UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D ** ___e2, const RuntimeMethod* method); // System.Boolean System.Uri::CheckForConfigLoad(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Uri_CheckForConfigLoad_m4AF9D27B5F62A0D4269B23FB3BEF4846E8D0983D (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, String_t* ___data0, const RuntimeMethod* method); // System.Boolean System.Uri::CheckForUnicode(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Uri_CheckForUnicode_m2A9DB97F3B384DADC1A274C8982404DDE17F6688 (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, String_t* ___data0, const RuntimeMethod* method); // System.Boolean System.Uri::CheckForEscapedUnreserved(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Uri_CheckForEscapedUnreserved_m5EC5EFE77E30B08708B49086DF72A659454B1A2F (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, String_t* ___data0, const RuntimeMethod* method); // System.Void System.Uri::EnsureParseRemaining() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Uri_EnsureParseRemaining_m7BC86BEFE07F56D480C9ACBCE64983806F6789BB (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, const RuntimeMethod* method); // System.UriParser System.UriParser::InternalOnNewUri() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * UriParser_InternalOnNewUri_m0AC629BCCA398E9A193AC16A5E91D445B9B70D79 (UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * __this, const RuntimeMethod* method); // System.Void System.UriParser::InternalValidate(System.Uri,System.UriFormatException&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UriParser_InternalValidate_mB845C482B4B01EDFE012DD4C4CEF62C8F4FFE94F (UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * __this, Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___thisUri0, UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D ** ___parsingError1, const RuntimeMethod* method); // System.Void System.Uri::SetUserDrivenParsing() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Uri_SetUserDrivenParsing_mDF0BFAFE946EAD9122ED2A542132902D7E47FD9C (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, const RuntimeMethod* method); // System.Boolean System.Uri::IsHexDigit(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Uri_IsHexDigit_m87121EC1F62716CC681A4458BF2E6A6B844BD95F (Il2CppChar ___character0, const RuntimeMethod* method); // System.Boolean System.UriHelper::Is3986Unreserved(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UriHelper_Is3986Unreserved_m0532DF2A1577C475D0D83F10C6C5D91F125AC028 (Il2CppChar ___c0, const RuntimeMethod* method); // System.Uri System.Uri::CreateHelper(System.String,System.Boolean,System.UriKind,System.UriFormatException&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * Uri_CreateHelper_m95C8DB174EFC0CB21C3A74160A1001C14D3EF6DD (String_t* ___uriString0, bool ___dontEscape1, int32_t ___uriKind2, UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D ** ___e3, const RuntimeMethod* method); // System.Boolean System.Uri::op_Inequality(System.Uri,System.Uri) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Uri_op_Inequality_m3B3733CAA19866A20EF76A772B368EFB5FC89A4F (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___uri10, Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___uri21, const RuntimeMethod* method); // System.Void System.ArgumentOutOfRangeException::.ctor(System.String,System.Object,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentOutOfRangeException__ctor_m7C5B3BE7792B7C73E7D82C4DBAD4ACA2DAE71AA9 (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * __this, String_t* ___paramName0, RuntimeObject * ___actualValue1, String_t* ___message2, const RuntimeMethod* method); // System.Void System.ArgumentOutOfRangeException::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentOutOfRangeException__ctor_m329C2882A4CB69F185E98D0DD7E853AA9220960A (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * __this, String_t* ___paramName0, const RuntimeMethod* method); // System.String System.Uri::GetRelativeSerializationString(System.UriFormat) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Uri_GetRelativeSerializationString_mBCE8CC99C746B18A9DE0B2C6084C5B90A192130D (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, int32_t ___format0, const RuntimeMethod* method); // System.Void System.Uri::.ctor(System.Uri/Flags,System.UriParser,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Uri__ctor_m899122920EF2C3DE3E7A620B823D43BDB54D3406 (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, uint64_t ___flags0, UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * ___uriParser1, String_t* ___uri2, const RuntimeMethod* method); // System.String System.Uri::UnescapeDataString(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Uri_UnescapeDataString_m52E242703F2842594B2B37D673CDD5465ABCC836 (String_t* ___stringToUnescape0, const RuntimeMethod* method); // System.String System.Uri::GetEscapedParts(System.UriComponents) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Uri_GetEscapedParts_m61C2B2B898F8AA8B75AAEC38EF78C340BC1F5A20 (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, int32_t ___uriParts0, const RuntimeMethod* method); // System.String System.Uri::GetUnescapedParts(System.UriComponents,System.UriFormat) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Uri_GetUnescapedParts_m6F106ECABBBAFA95C3F3CA86F540B9EE0B9D01D4 (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, int32_t ___uriParts0, int32_t ___formatAs1, const RuntimeMethod* method); // System.String System.Environment::GetEnvironmentVariable(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_GetEnvironmentVariable_mBDE19BD883E2D01AEA6DD1667D5E97941558C7A3 (String_t* ___variable0, const RuntimeMethod* method); // System.Void System.ThrowHelper::ThrowArgumentOutOfRangeException() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_ThrowArgumentOutOfRangeException_m4841366ABC2B2AFA37C10900551D7E07522C0929 (const RuntimeMethod* method); #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Text.RegularExpressions.RegexCode::.ctor(System.Int32[],System.Collections.Generic.List`1<System.String>,System.Int32,System.Collections.Hashtable,System.Int32,System.Text.RegularExpressions.RegexBoyerMoore,System.Text.RegularExpressions.RegexPrefix,System.Int32,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexCode__ctor_mEFC64ECB52D0D2735F99AC16BD6355D3A59499CE (RegexCode_tF1653432E8EEDED5AB9517D09CA84B5FAA3CC0D5 * __this, Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___codes0, List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * ___stringlist1, int32_t ___trackcount2, Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * ___caps3, int32_t ___capsize4, RegexBoyerMoore_t43FE488EFF3EE20D1092216B7E62D954F78167D2 * ___bmPrefix5, RegexPrefix_t1563C82A76799B0B018F5EBD6EC068158BE50301 * ___fcPrefix6, int32_t ___anchors7, bool ___rightToLeft8, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_CopyTo_m3B15B2E03F0BB9FFAF6DE71E6B38768B911EC5C7_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m199DB87BCE947106FBA38E19FDFE80CB65B61144_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_0 = ___codes0; __this->set__codes_0(L_0); List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * L_1 = ___stringlist1; NullCheck(L_1); int32_t L_2; L_2 = List_1_get_Count_m199DB87BCE947106FBA38E19FDFE80CB65B61144_inline(L_1, /*hidden argument*/List_1_get_Count_m199DB87BCE947106FBA38E19FDFE80CB65B61144_RuntimeMethod_var); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_3 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)SZArrayNew(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var, (uint32_t)L_2); __this->set__strings_1(L_3); int32_t L_4 = ___trackcount2; __this->set__trackcount_2(L_4); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_5 = ___caps3; __this->set__caps_3(L_5); int32_t L_6 = ___capsize4; __this->set__capsize_4(L_6); RegexBoyerMoore_t43FE488EFF3EE20D1092216B7E62D954F78167D2 * L_7 = ___bmPrefix5; __this->set__bmPrefix_6(L_7); RegexPrefix_t1563C82A76799B0B018F5EBD6EC068158BE50301 * L_8 = ___fcPrefix6; __this->set__fcPrefix_5(L_8); int32_t L_9 = ___anchors7; __this->set__anchors_7(L_9); bool L_10 = ___rightToLeft8; __this->set__rightToLeft_8(L_10); List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * L_11 = ___stringlist1; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_12 = __this->get__strings_1(); List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * L_13 = ___stringlist1; NullCheck(L_13); int32_t L_14; L_14 = List_1_get_Count_m199DB87BCE947106FBA38E19FDFE80CB65B61144_inline(L_13, /*hidden argument*/List_1_get_Count_m199DB87BCE947106FBA38E19FDFE80CB65B61144_RuntimeMethod_var); NullCheck(L_11); List_1_CopyTo_m3B15B2E03F0BB9FFAF6DE71E6B38768B911EC5C7(L_11, 0, L_12, 0, L_14, /*hidden argument*/List_1_CopyTo_m3B15B2E03F0BB9FFAF6DE71E6B38768B911EC5C7_RuntimeMethod_var); return; } } // System.Boolean System.Text.RegularExpressions.RegexCode::OpcodeBacktracks(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexCode_OpcodeBacktracks_m2A8CE4121EF7827E575F17B2D0DB7C009B6DD9FB (int32_t ___Op0, const RuntimeMethod* method) { { int32_t L_0 = ___Op0; ___Op0 = ((int32_t)((int32_t)L_0&(int32_t)((int32_t)63))); int32_t L_1 = ___Op0; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_1, (int32_t)3))) { case 0: { goto IL_00a0; } case 1: { goto IL_00a0; } case 2: { goto IL_00a0; } case 3: { goto IL_00a0; } case 4: { goto IL_00a0; } case 5: { goto IL_00a0; } case 6: { goto IL_00a2; } case 7: { goto IL_00a2; } case 8: { goto IL_00a2; } case 9: { goto IL_00a2; } case 10: { goto IL_00a2; } case 11: { goto IL_00a2; } case 12: { goto IL_00a2; } case 13: { goto IL_00a2; } case 14: { goto IL_00a2; } case 15: { goto IL_00a2; } case 16: { goto IL_00a2; } case 17: { goto IL_00a2; } case 18: { goto IL_00a2; } case 19: { goto IL_00a2; } case 20: { goto IL_00a0; } case 21: { goto IL_00a0; } case 22: { goto IL_00a0; } case 23: { goto IL_00a0; } case 24: { goto IL_00a0; } case 25: { goto IL_00a0; } case 26: { goto IL_00a0; } case 27: { goto IL_00a2; } case 28: { goto IL_00a0; } case 29: { goto IL_00a0; } case 30: { goto IL_00a0; } case 31: { goto IL_00a0; } case 32: { goto IL_00a0; } case 33: { goto IL_00a0; } case 34: { goto IL_00a2; } case 35: { goto IL_00a0; } } } { goto IL_00a2; } IL_00a0: { return (bool)1; } IL_00a2: { return (bool)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.RegularExpressions.RegexFC::.ctor(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexFC__ctor_mA39AF7098BC1D63C19E316121CC854AACBE4CB59 (RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826 * __this, bool ___nullable0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5 * L_0 = (RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5 *)il2cpp_codegen_object_new(RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5_il2cpp_TypeInfo_var); RegexCharClass__ctor_m70685392EB3C5808958E20C99E045F33E21C8192(L_0, /*hidden argument*/NULL); __this->set__cc_0(L_0); bool L_1 = ___nullable0; __this->set__nullable_1(L_1); return; } } // System.Void System.Text.RegularExpressions.RegexFC::.ctor(System.Char,System.Boolean,System.Boolean,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexFC__ctor_mA9779C6F7E4B0B76041B34DF40F2B6DBA82761E2 (RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826 * __this, Il2CppChar ___ch0, bool ___not1, bool ___nullable2, bool ___caseInsensitive3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5 * L_0 = (RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5 *)il2cpp_codegen_object_new(RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5_il2cpp_TypeInfo_var); RegexCharClass__ctor_m70685392EB3C5808958E20C99E045F33E21C8192(L_0, /*hidden argument*/NULL); __this->set__cc_0(L_0); bool L_1 = ___not1; if (!L_1) { goto IL_0046; } } { Il2CppChar L_2 = ___ch0; if ((((int32_t)L_2) <= ((int32_t)0))) { goto IL_0028; } } { RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5 * L_3 = __this->get__cc_0(); Il2CppChar L_4 = ___ch0; NullCheck(L_3); RegexCharClass_AddRange_mD9FB543DC3B128104DBCFEA0B2E672E8A8669C5A(L_3, 0, ((int32_t)((uint16_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1)))), /*hidden argument*/NULL); } IL_0028: { Il2CppChar L_5 = ___ch0; if ((((int32_t)L_5) >= ((int32_t)((int32_t)65535)))) { goto IL_0053; } } { RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5 * L_6 = __this->get__cc_0(); Il2CppChar L_7 = ___ch0; NullCheck(L_6); RegexCharClass_AddRange_mD9FB543DC3B128104DBCFEA0B2E672E8A8669C5A(L_6, ((int32_t)((uint16_t)((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)1)))), ((int32_t)65535), /*hidden argument*/NULL); goto IL_0053; } IL_0046: { RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5 * L_8 = __this->get__cc_0(); Il2CppChar L_9 = ___ch0; Il2CppChar L_10 = ___ch0; NullCheck(L_8); RegexCharClass_AddRange_mD9FB543DC3B128104DBCFEA0B2E672E8A8669C5A(L_8, L_9, L_10, /*hidden argument*/NULL); } IL_0053: { bool L_11 = ___caseInsensitive3; __this->set__caseInsensitive_2(L_11); bool L_12 = ___nullable2; __this->set__nullable_1(L_12); return; } } // System.Void System.Text.RegularExpressions.RegexFC::.ctor(System.String,System.Boolean,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexFC__ctor_m8693359483B2128560FC374872CFC1382A0605B2 (RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826 * __this, String_t* ___charClass0, bool ___nullable1, bool ___caseInsensitive2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); String_t* L_0 = ___charClass0; IL2CPP_RUNTIME_CLASS_INIT(RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5_il2cpp_TypeInfo_var); RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5 * L_1; L_1 = RegexCharClass_Parse_m1A4671A8A47BA3DAC47386D01D5995C6100E87AC(L_0, /*hidden argument*/NULL); __this->set__cc_0(L_1); bool L_2 = ___nullable1; __this->set__nullable_1(L_2); bool L_3 = ___caseInsensitive2; __this->set__caseInsensitive_2(L_3); return; } } // System.Boolean System.Text.RegularExpressions.RegexFC::AddFC(System.Text.RegularExpressions.RegexFC,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexFC_AddFC_m515C7808755FE89185D85B3C39184C2425B44629 (RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826 * __this, RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826 * ___fc0, bool ___concatenate1, const RuntimeMethod* method) { { RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5 * L_0 = __this->get__cc_0(); NullCheck(L_0); bool L_1; L_1 = RegexCharClass_get_CanMerge_mE5B4778068AA81EB1B7D426C48EF0C5CFEA0021B(L_0, /*hidden argument*/NULL); if (!L_1) { goto IL_001a; } } { RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826 * L_2 = ___fc0; NullCheck(L_2); RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5 * L_3 = L_2->get__cc_0(); NullCheck(L_3); bool L_4; L_4 = RegexCharClass_get_CanMerge_mE5B4778068AA81EB1B7D426C48EF0C5CFEA0021B(L_3, /*hidden argument*/NULL); if (L_4) { goto IL_001c; } } IL_001a: { return (bool)0; } IL_001c: { bool L_5 = ___concatenate1; if (!L_5) { goto IL_003a; } } { bool L_6 = __this->get__nullable_1(); if (L_6) { goto IL_0029; } } { return (bool)1; } IL_0029: { RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826 * L_7 = ___fc0; NullCheck(L_7); bool L_8 = L_7->get__nullable_1(); if (L_8) { goto IL_0049; } } { __this->set__nullable_1((bool)0); goto IL_0049; } IL_003a: { RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826 * L_9 = ___fc0; NullCheck(L_9); bool L_10 = L_9->get__nullable_1(); if (!L_10) { goto IL_0049; } } { __this->set__nullable_1((bool)1); } IL_0049: { bool L_11 = __this->get__caseInsensitive_2(); RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826 * L_12 = ___fc0; NullCheck(L_12); bool L_13 = L_12->get__caseInsensitive_2(); __this->set__caseInsensitive_2((bool)((int32_t)((int32_t)L_11|(int32_t)L_13))); RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5 * L_14 = __this->get__cc_0(); RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826 * L_15 = ___fc0; NullCheck(L_15); RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5 * L_16 = L_15->get__cc_0(); NullCheck(L_14); RegexCharClass_AddCharClass_m1E139F8FDC0E1A33E143A3A413255F6D521F7EB8(L_14, L_16, /*hidden argument*/NULL); return (bool)1; } } // System.String System.Text.RegularExpressions.RegexFC::GetFirstChars(System.Globalization.CultureInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* RegexFC_GetFirstChars_mA929BEEE9D6186588C518891EB8CB416C31060FC (RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826 * __this, CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * ___culture0, const RuntimeMethod* method) { { bool L_0 = __this->get__caseInsensitive_2(); if (!L_0) { goto IL_0014; } } { RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5 * L_1 = __this->get__cc_0(); CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_2 = ___culture0; NullCheck(L_1); RegexCharClass_AddLowercase_m4FAE0AB13B3DB076F711B6B06C2E61F40A115B40(L_1, L_2, /*hidden argument*/NULL); } IL_0014: { RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5 * L_3 = __this->get__cc_0(); NullCheck(L_3); String_t* L_4; L_4 = RegexCharClass_ToStringClass_mFC6754E97F014AFE4B5138AD5386E9C76D1D3CD7(L_3, /*hidden argument*/NULL); return L_4; } } // System.Boolean System.Text.RegularExpressions.RegexFC::IsCaseInsensitive() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexFC_IsCaseInsensitive_m522494DC3CF0587D7B65D57B4C14E1428A2E34CA (RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826 * __this, const RuntimeMethod* method) { { bool L_0 = __this->get__caseInsensitive_2(); return L_0; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Text.RegularExpressions.RegexPrefix System.Text.RegularExpressions.RegexFCD::FirstChars(System.Text.RegularExpressions.RegexTree) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegexPrefix_t1563C82A76799B0B018F5EBD6EC068158BE50301 * RegexFCD_FirstChars_m705EA84111ABE92AFC2ACD490AC26BC6400D75EA (RegexTree_t63A434601D42EC388D9B2DCA2913286CFC8811F3 * ___t0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexFCD_tF50EFB93429390CF2488DAB5FD07DE6E48F1CDBF_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexPrefix_t1563C82A76799B0B018F5EBD6EC068158BE50301_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826 * V_0 = NULL; CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * V_1 = NULL; CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * G_B6_0 = NULL; { RegexFCD_tF50EFB93429390CF2488DAB5FD07DE6E48F1CDBF * L_0 = (RegexFCD_tF50EFB93429390CF2488DAB5FD07DE6E48F1CDBF *)il2cpp_codegen_object_new(RegexFCD_tF50EFB93429390CF2488DAB5FD07DE6E48F1CDBF_il2cpp_TypeInfo_var); RegexFCD__ctor_m81A680DE9EE0A7D9CB3F0245E4B584033ED7C299(L_0, /*hidden argument*/NULL); RegexTree_t63A434601D42EC388D9B2DCA2913286CFC8811F3 * L_1 = ___t0; NullCheck(L_0); RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826 * L_2; L_2 = RegexFCD_RegexFCFromRegexTree_m280F32208540ABB3B88FBA4BC3F7FE6A7E02DA40(L_0, L_1, /*hidden argument*/NULL); V_0 = L_2; RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826 * L_3 = V_0; if (!L_3) { goto IL_0017; } } { RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826 * L_4 = V_0; NullCheck(L_4); bool L_5 = L_4->get__nullable_1(); if (!L_5) { goto IL_0019; } } IL_0017: { return (RegexPrefix_t1563C82A76799B0B018F5EBD6EC068158BE50301 *)NULL; } IL_0019: { RegexTree_t63A434601D42EC388D9B2DCA2913286CFC8811F3 * L_6 = ___t0; NullCheck(L_6); int32_t L_7 = L_6->get__options_5(); if (((int32_t)((int32_t)L_7&(int32_t)((int32_t)512)))) { goto IL_002e; } } { IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var); CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_8; L_8 = CultureInfo_get_CurrentCulture_m99E5F5BD20445F2A73F7EA0014A4E783DF3840BB(/*hidden argument*/NULL); G_B6_0 = L_8; goto IL_0033; } IL_002e: { IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var); CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_9; L_9 = CultureInfo_get_InvariantCulture_m9FAAFAF8A00091EE1FCB7098AD3F163ECDF02164(/*hidden argument*/NULL); G_B6_0 = L_9; } IL_0033: { V_1 = G_B6_0; RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826 * L_10 = V_0; CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_11 = V_1; NullCheck(L_10); String_t* L_12; L_12 = RegexFC_GetFirstChars_mA929BEEE9D6186588C518891EB8CB416C31060FC(L_10, L_11, /*hidden argument*/NULL); RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826 * L_13 = V_0; NullCheck(L_13); bool L_14; L_14 = RegexFC_IsCaseInsensitive_m522494DC3CF0587D7B65D57B4C14E1428A2E34CA_inline(L_13, /*hidden argument*/NULL); RegexPrefix_t1563C82A76799B0B018F5EBD6EC068158BE50301 * L_15 = (RegexPrefix_t1563C82A76799B0B018F5EBD6EC068158BE50301 *)il2cpp_codegen_object_new(RegexPrefix_t1563C82A76799B0B018F5EBD6EC068158BE50301_il2cpp_TypeInfo_var); RegexPrefix__ctor_mC34F48A63A8A04942930B9FE236636E2AA745B24(L_15, L_12, L_14, /*hidden argument*/NULL); return L_15; } } // System.Text.RegularExpressions.RegexPrefix System.Text.RegularExpressions.RegexFCD::Prefix(System.Text.RegularExpressions.RegexTree) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegexPrefix_t1563C82A76799B0B018F5EBD6EC068158BE50301 * RegexFCD_Prefix_m2D11D5E62E9F31984C40FDD6C0ED9860DF56DCF8 (RegexTree_t63A434601D42EC388D9B2DCA2913286CFC8811F3 * ___tree0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexPrefix_t1563C82A76799B0B018F5EBD6EC068158BE50301_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * V_0 = NULL; RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * V_1 = NULL; int32_t V_2 = 0; int32_t V_3 = 0; { V_1 = (RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 *)NULL; V_2 = 0; RegexTree_t63A434601D42EC388D9B2DCA2913286CFC8811F3 * L_0 = ___tree0; NullCheck(L_0); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_1 = L_0->get__root_0(); V_0 = L_1; } IL_000b: { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_2 = V_0; NullCheck(L_2); int32_t L_3 = L_2->get__type_0(); V_3 = L_3; int32_t L_4 = V_3; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)3))) { case 0: { goto IL_00c3; } case 1: { goto IL_0131; } case 2: { goto IL_0131; } case 3: { goto IL_00c3; } case 4: { goto IL_0131; } case 5: { goto IL_0131; } case 6: { goto IL_00f9; } case 7: { goto IL_0131; } case 8: { goto IL_0131; } case 9: { goto IL_011a; } case 10: { goto IL_0131; } case 11: { goto IL_0137; } case 12: { goto IL_0137; } case 13: { goto IL_0137; } case 14: { goto IL_0131; } case 15: { goto IL_0137; } case 16: { goto IL_0137; } case 17: { goto IL_0137; } case 18: { goto IL_0137; } case 19: { goto IL_0131; } case 20: { goto IL_0137; } case 21: { goto IL_0131; } case 22: { goto IL_009f; } case 23: { goto IL_0131; } case 24: { goto IL_0131; } case 25: { goto IL_00b4; } case 26: { goto IL_0131; } case 27: { goto IL_0137; } case 28: { goto IL_0137; } case 29: { goto IL_00b4; } } } { int32_t L_5 = V_3; if ((((int32_t)L_5) == ((int32_t)((int32_t)41)))) { goto IL_0137; } } { goto IL_0131; } IL_009f: { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_6 = V_0; NullCheck(L_6); int32_t L_7; L_7 = RegexNode_ChildCount_m15D92C9740BA92B2E78B392F7215B8D7D0242172(L_6, /*hidden argument*/NULL); if ((((int32_t)L_7) <= ((int32_t)0))) { goto IL_0137; } } { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_8 = V_0; V_1 = L_8; V_2 = 0; goto IL_0137; } IL_00b4: { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_9 = V_0; NullCheck(L_9); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_10; L_10 = RegexNode_Child_mAE38F2EF7289FE455686B7BEEF81C39A9D25E960(L_9, 0, /*hidden argument*/NULL); V_0 = L_10; V_1 = (RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 *)NULL; goto IL_000b; } IL_00c3: { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_11 = V_0; NullCheck(L_11); int32_t L_12 = L_11->get__m_4(); if ((((int32_t)L_12) <= ((int32_t)0))) { goto IL_00f3; } } { String_t* L_13 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_14 = V_0; NullCheck(L_14); int32_t L_15 = L_14->get__m_4(); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_16 = V_0; NullCheck(L_16); Il2CppChar L_17 = L_16->get__ch_3(); NullCheck(L_13); String_t* L_18; L_18 = String_PadRight_m2C464B0C6136A24187CF5C8B84E2C6BB614C42FF(L_13, L_15, L_17, /*hidden argument*/NULL); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_19 = V_0; NullCheck(L_19); int32_t L_20 = L_19->get__options_6(); RegexPrefix_t1563C82A76799B0B018F5EBD6EC068158BE50301 * L_21 = (RegexPrefix_t1563C82A76799B0B018F5EBD6EC068158BE50301 *)il2cpp_codegen_object_new(RegexPrefix_t1563C82A76799B0B018F5EBD6EC068158BE50301_il2cpp_TypeInfo_var); RegexPrefix__ctor_mC34F48A63A8A04942930B9FE236636E2AA745B24(L_21, L_18, (bool)((!(((uint32_t)((int32_t)((int32_t)L_20&(int32_t)1))) <= ((uint32_t)0)))? 1 : 0), /*hidden argument*/NULL); return L_21; } IL_00f3: { IL2CPP_RUNTIME_CLASS_INIT(RegexPrefix_t1563C82A76799B0B018F5EBD6EC068158BE50301_il2cpp_TypeInfo_var); RegexPrefix_t1563C82A76799B0B018F5EBD6EC068158BE50301 * L_22; L_22 = RegexPrefix_get_Empty_m65C2AD019C414B97A57D5AA5B4B0DC331E011A8C_inline(/*hidden argument*/NULL); return L_22; } IL_00f9: { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_23 = V_0; NullCheck(L_23); Il2CppChar* L_24 = L_23->get_address_of__ch_3(); IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var); CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_25; L_25 = CultureInfo_get_InvariantCulture_m9FAAFAF8A00091EE1FCB7098AD3F163ECDF02164(/*hidden argument*/NULL); String_t* L_26; L_26 = Char_ToString_m06BE905F629AFE67313D613EC0ABFA8572CAEFC2((Il2CppChar*)L_24, L_25, /*hidden argument*/NULL); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_27 = V_0; NullCheck(L_27); int32_t L_28 = L_27->get__options_6(); RegexPrefix_t1563C82A76799B0B018F5EBD6EC068158BE50301 * L_29 = (RegexPrefix_t1563C82A76799B0B018F5EBD6EC068158BE50301 *)il2cpp_codegen_object_new(RegexPrefix_t1563C82A76799B0B018F5EBD6EC068158BE50301_il2cpp_TypeInfo_var); RegexPrefix__ctor_mC34F48A63A8A04942930B9FE236636E2AA745B24(L_29, L_26, (bool)((!(((uint32_t)((int32_t)((int32_t)L_28&(int32_t)1))) <= ((uint32_t)0)))? 1 : 0), /*hidden argument*/NULL); return L_29; } IL_011a: { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_30 = V_0; NullCheck(L_30); String_t* L_31 = L_30->get__str_2(); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_32 = V_0; NullCheck(L_32); int32_t L_33 = L_32->get__options_6(); RegexPrefix_t1563C82A76799B0B018F5EBD6EC068158BE50301 * L_34 = (RegexPrefix_t1563C82A76799B0B018F5EBD6EC068158BE50301 *)il2cpp_codegen_object_new(RegexPrefix_t1563C82A76799B0B018F5EBD6EC068158BE50301_il2cpp_TypeInfo_var); RegexPrefix__ctor_mC34F48A63A8A04942930B9FE236636E2AA745B24(L_34, L_31, (bool)((!(((uint32_t)((int32_t)((int32_t)L_33&(int32_t)1))) <= ((uint32_t)0)))? 1 : 0), /*hidden argument*/NULL); return L_34; } IL_0131: { IL2CPP_RUNTIME_CLASS_INIT(RegexPrefix_t1563C82A76799B0B018F5EBD6EC068158BE50301_il2cpp_TypeInfo_var); RegexPrefix_t1563C82A76799B0B018F5EBD6EC068158BE50301 * L_35; L_35 = RegexPrefix_get_Empty_m65C2AD019C414B97A57D5AA5B4B0DC331E011A8C_inline(/*hidden argument*/NULL); return L_35; } IL_0137: { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_36 = V_1; if (!L_36) { goto IL_0143; } } { int32_t L_37 = V_2; RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_38 = V_1; NullCheck(L_38); int32_t L_39; L_39 = RegexNode_ChildCount_m15D92C9740BA92B2E78B392F7215B8D7D0242172(L_38, /*hidden argument*/NULL); if ((((int32_t)L_37) < ((int32_t)L_39))) { goto IL_0149; } } IL_0143: { IL2CPP_RUNTIME_CLASS_INIT(RegexPrefix_t1563C82A76799B0B018F5EBD6EC068158BE50301_il2cpp_TypeInfo_var); RegexPrefix_t1563C82A76799B0B018F5EBD6EC068158BE50301 * L_40; L_40 = RegexPrefix_get_Empty_m65C2AD019C414B97A57D5AA5B4B0DC331E011A8C_inline(/*hidden argument*/NULL); return L_40; } IL_0149: { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_41 = V_1; int32_t L_42 = V_2; int32_t L_43 = L_42; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_43, (int32_t)1)); NullCheck(L_41); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_44; L_44 = RegexNode_Child_mAE38F2EF7289FE455686B7BEEF81C39A9D25E960(L_41, L_43, /*hidden argument*/NULL); V_0 = L_44; goto IL_000b; } } // System.Int32 System.Text.RegularExpressions.RegexFCD::Anchors(System.Text.RegularExpressions.RegexTree) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexFCD_Anchors_m4F3A11C644EC9B7B16CCCBD792A5E2FED2C22EA7 (RegexTree_t63A434601D42EC388D9B2DCA2913286CFC8811F3 * ___tree0, const RuntimeMethod* method) { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * V_0 = NULL; RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * V_1 = NULL; int32_t V_2 = 0; int32_t V_3 = 0; int32_t V_4 = 0; { V_1 = (RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 *)NULL; V_2 = 0; V_3 = 0; RegexTree_t63A434601D42EC388D9B2DCA2913286CFC8811F3 * L_0 = ___tree0; NullCheck(L_0); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_1 = L_0->get__root_0(); V_0 = L_1; } IL_000d: { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_2 = V_0; NullCheck(L_2); int32_t L_3 = L_2->get__type_0(); V_4 = L_3; int32_t L_4 = V_4; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)((int32_t)14)))) { case 0: { goto IL_0091; } case 1: { goto IL_0091; } case 2: { goto IL_0091; } case 3: { goto IL_009f; } case 4: { goto IL_0091; } case 5: { goto IL_0091; } case 6: { goto IL_0091; } case 7: { goto IL_0091; } case 8: { goto IL_009f; } case 9: { goto IL_00a1; } case 10: { goto IL_009f; } case 11: { goto IL_0073; } case 12: { goto IL_009f; } case 13: { goto IL_009f; } case 14: { goto IL_0082; } case 15: { goto IL_009f; } case 16: { goto IL_00a1; } case 17: { goto IL_00a1; } case 18: { goto IL_0082; } } } { int32_t L_5 = V_4; if ((((int32_t)L_5) == ((int32_t)((int32_t)41)))) { goto IL_0091; } } { goto IL_009f; } IL_0073: { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_6 = V_0; NullCheck(L_6); int32_t L_7; L_7 = RegexNode_ChildCount_m15D92C9740BA92B2E78B392F7215B8D7D0242172(L_6, /*hidden argument*/NULL); if ((((int32_t)L_7) <= ((int32_t)0))) { goto IL_00a1; } } { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_8 = V_0; V_1 = L_8; V_2 = 0; goto IL_00a1; } IL_0082: { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_9 = V_0; NullCheck(L_9); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_10; L_10 = RegexNode_Child_mAE38F2EF7289FE455686B7BEEF81C39A9D25E960(L_9, 0, /*hidden argument*/NULL); V_0 = L_10; V_1 = (RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 *)NULL; goto IL_000d; } IL_0091: { int32_t L_11 = V_3; RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_12 = V_0; NullCheck(L_12); int32_t L_13 = L_12->get__type_0(); int32_t L_14; L_14 = RegexFCD_AnchorFromType_mF78B2ABC2D01B01663B7ABC885B3067F199A40C7(L_13, /*hidden argument*/NULL); return ((int32_t)((int32_t)L_11|(int32_t)L_14)); } IL_009f: { int32_t L_15 = V_3; return L_15; } IL_00a1: { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_16 = V_1; if (!L_16) { goto IL_00ad; } } { int32_t L_17 = V_2; RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_18 = V_1; NullCheck(L_18); int32_t L_19; L_19 = RegexNode_ChildCount_m15D92C9740BA92B2E78B392F7215B8D7D0242172(L_18, /*hidden argument*/NULL); if ((((int32_t)L_17) < ((int32_t)L_19))) { goto IL_00af; } } IL_00ad: { int32_t L_20 = V_3; return L_20; } IL_00af: { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_21 = V_1; int32_t L_22 = V_2; int32_t L_23 = L_22; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1)); NullCheck(L_21); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_24; L_24 = RegexNode_Child_mAE38F2EF7289FE455686B7BEEF81C39A9D25E960(L_21, L_23, /*hidden argument*/NULL); V_0 = L_24; goto IL_000d; } } // System.Int32 System.Text.RegularExpressions.RegexFCD::AnchorFromType(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexFCD_AnchorFromType_mF78B2ABC2D01B01663B7ABC885B3067F199A40C7 (int32_t ___type0, const RuntimeMethod* method) { { int32_t L_0 = ___type0; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)((int32_t)14)))) { case 0: { goto IL_0030; } case 1: { goto IL_0032; } case 2: { goto IL_0034; } case 3: { goto IL_0047; } case 4: { goto IL_003d; } case 5: { goto IL_003f; } case 6: { goto IL_0041; } case 7: { goto IL_0044; } } } { int32_t L_1 = ___type0; if ((((int32_t)L_1) == ((int32_t)((int32_t)41)))) { goto IL_0037; } } { goto IL_0047; } IL_0030: { return 2; } IL_0032: { return 8; } IL_0034: { return ((int32_t)64); } IL_0037: { return ((int32_t)128); } IL_003d: { return 1; } IL_003f: { return 4; } IL_0041: { return ((int32_t)16); } IL_0044: { return ((int32_t)32); } IL_0047: { return 0; } } // System.Void System.Text.RegularExpressions.RegexFCD::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexFCD__ctor_m81A680DE9EE0A7D9CB3F0245E4B584033ED7C299 (RegexFCD_tF50EFB93429390CF2488DAB5FD07DE6E48F1CDBF * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexFCU5BU5D_t2785114C5B0BD79CA8B9C2715A5368BDC5941356_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); RegexFCU5BU5D_t2785114C5B0BD79CA8B9C2715A5368BDC5941356* L_0 = (RegexFCU5BU5D_t2785114C5B0BD79CA8B9C2715A5368BDC5941356*)(RegexFCU5BU5D_t2785114C5B0BD79CA8B9C2715A5368BDC5941356*)SZArrayNew(RegexFCU5BU5D_t2785114C5B0BD79CA8B9C2715A5368BDC5941356_il2cpp_TypeInfo_var, (uint32_t)((int32_t)32)); __this->set__fcStack_2(L_0); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_1 = (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)SZArrayNew(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32_il2cpp_TypeInfo_var, (uint32_t)((int32_t)32)); __this->set__intStack_0(L_1); return; } } // System.Void System.Text.RegularExpressions.RegexFCD::PushInt(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexFCD_PushInt_m2C075ABCE35D8B5F3AE842D0A79BEBBDF53E79E6 (RegexFCD_tF50EFB93429390CF2488DAB5FD07DE6E48F1CDBF * __this, int32_t ___I0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* V_0 = NULL; int32_t V_1 = 0; { int32_t L_0 = __this->get__intDepth_1(); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_1 = __this->get__intStack_0(); NullCheck(L_1); if ((((int32_t)L_0) < ((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_1)->max_length)))))) { goto IL_0039; } } { int32_t L_2 = __this->get__intDepth_1(); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_3 = (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)SZArrayNew(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_2, (int32_t)2))); V_0 = L_3; Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_4 = __this->get__intStack_0(); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_5 = V_0; int32_t L_6 = __this->get__intDepth_1(); Array_Copy_m3F127FFB5149532135043FFE285F9177C80CB877((RuntimeArray *)(RuntimeArray *)L_4, 0, (RuntimeArray *)(RuntimeArray *)L_5, 0, L_6, /*hidden argument*/NULL); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_7 = V_0; __this->set__intStack_0(L_7); } IL_0039: { Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_8 = __this->get__intStack_0(); int32_t L_9 = __this->get__intDepth_1(); V_1 = L_9; int32_t L_10 = V_1; __this->set__intDepth_1(((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1))); int32_t L_11 = V_1; int32_t L_12 = ___I0; NullCheck(L_8); (L_8)->SetAt(static_cast<il2cpp_array_size_t>(L_11), (int32_t)L_12); return; } } // System.Boolean System.Text.RegularExpressions.RegexFCD::IntIsEmpty() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexFCD_IntIsEmpty_m4CFF914DAAAF04747FD11B2740D47CD4A41F7321 (RegexFCD_tF50EFB93429390CF2488DAB5FD07DE6E48F1CDBF * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get__intDepth_1(); return (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0); } } // System.Int32 System.Text.RegularExpressions.RegexFCD::PopInt() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexFCD_PopInt_m15845F98455FA8320FCC484AD15CE5A55B43EA14 (RegexFCD_tF50EFB93429390CF2488DAB5FD07DE6E48F1CDBF * __this, const RuntimeMethod* method) { int32_t V_0 = 0; { Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_0 = __this->get__intStack_0(); int32_t L_1 = __this->get__intDepth_1(); V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_1, (int32_t)1)); int32_t L_2 = V_0; __this->set__intDepth_1(L_2); int32_t L_3 = V_0; NullCheck(L_0); int32_t L_4 = L_3; int32_t L_5 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_4)); return L_5; } } // System.Void System.Text.RegularExpressions.RegexFCD::PushFC(System.Text.RegularExpressions.RegexFC) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexFCD_PushFC_mC4174F9014750978ADB35B3E45DE43D740070B92 (RegexFCD_tF50EFB93429390CF2488DAB5FD07DE6E48F1CDBF * __this, RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826 * ___fc0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexFCU5BU5D_t2785114C5B0BD79CA8B9C2715A5368BDC5941356_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } RegexFCU5BU5D_t2785114C5B0BD79CA8B9C2715A5368BDC5941356* V_0 = NULL; int32_t V_1 = 0; { int32_t L_0 = __this->get__fcDepth_3(); RegexFCU5BU5D_t2785114C5B0BD79CA8B9C2715A5368BDC5941356* L_1 = __this->get__fcStack_2(); NullCheck(L_1); if ((((int32_t)L_0) < ((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_1)->max_length)))))) { goto IL_0039; } } { int32_t L_2 = __this->get__fcDepth_3(); RegexFCU5BU5D_t2785114C5B0BD79CA8B9C2715A5368BDC5941356* L_3 = (RegexFCU5BU5D_t2785114C5B0BD79CA8B9C2715A5368BDC5941356*)(RegexFCU5BU5D_t2785114C5B0BD79CA8B9C2715A5368BDC5941356*)SZArrayNew(RegexFCU5BU5D_t2785114C5B0BD79CA8B9C2715A5368BDC5941356_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_2, (int32_t)2))); V_0 = L_3; RegexFCU5BU5D_t2785114C5B0BD79CA8B9C2715A5368BDC5941356* L_4 = __this->get__fcStack_2(); RegexFCU5BU5D_t2785114C5B0BD79CA8B9C2715A5368BDC5941356* L_5 = V_0; int32_t L_6 = __this->get__fcDepth_3(); Array_Copy_m3F127FFB5149532135043FFE285F9177C80CB877((RuntimeArray *)(RuntimeArray *)L_4, 0, (RuntimeArray *)(RuntimeArray *)L_5, 0, L_6, /*hidden argument*/NULL); RegexFCU5BU5D_t2785114C5B0BD79CA8B9C2715A5368BDC5941356* L_7 = V_0; __this->set__fcStack_2(L_7); } IL_0039: { RegexFCU5BU5D_t2785114C5B0BD79CA8B9C2715A5368BDC5941356* L_8 = __this->get__fcStack_2(); int32_t L_9 = __this->get__fcDepth_3(); V_1 = L_9; int32_t L_10 = V_1; __this->set__fcDepth_3(((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1))); int32_t L_11 = V_1; RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826 * L_12 = ___fc0; NullCheck(L_8); ArrayElementTypeCheck (L_8, L_12); (L_8)->SetAt(static_cast<il2cpp_array_size_t>(L_11), (RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826 *)L_12); return; } } // System.Boolean System.Text.RegularExpressions.RegexFCD::FCIsEmpty() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexFCD_FCIsEmpty_m3FFF61F7B0567B2B1ABA23377742A6D0AC9DF016 (RegexFCD_tF50EFB93429390CF2488DAB5FD07DE6E48F1CDBF * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get__fcDepth_3(); return (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0); } } // System.Text.RegularExpressions.RegexFC System.Text.RegularExpressions.RegexFCD::PopFC() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826 * RegexFCD_PopFC_mE67FE0664971894C6935632FD634207784EAE43F (RegexFCD_tF50EFB93429390CF2488DAB5FD07DE6E48F1CDBF * __this, const RuntimeMethod* method) { int32_t V_0 = 0; { RegexFCU5BU5D_t2785114C5B0BD79CA8B9C2715A5368BDC5941356* L_0 = __this->get__fcStack_2(); int32_t L_1 = __this->get__fcDepth_3(); V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_1, (int32_t)1)); int32_t L_2 = V_0; __this->set__fcDepth_3(L_2); int32_t L_3 = V_0; NullCheck(L_0); int32_t L_4 = L_3; RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826 * L_5 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_4)); return L_5; } } // System.Text.RegularExpressions.RegexFC System.Text.RegularExpressions.RegexFCD::TopFC() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826 * RegexFCD_TopFC_mC9A10E7061B6283532AF800971B26A7660036AF6 (RegexFCD_tF50EFB93429390CF2488DAB5FD07DE6E48F1CDBF * __this, const RuntimeMethod* method) { { RegexFCU5BU5D_t2785114C5B0BD79CA8B9C2715A5368BDC5941356* L_0 = __this->get__fcStack_2(); int32_t L_1 = __this->get__fcDepth_3(); NullCheck(L_0); int32_t L_2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_1, (int32_t)1)); RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826 * L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2)); return L_3; } } // System.Text.RegularExpressions.RegexFC System.Text.RegularExpressions.RegexFCD::RegexFCFromRegexTree(System.Text.RegularExpressions.RegexTree) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826 * RegexFCD_RegexFCFromRegexTree_m280F32208540ABB3B88FBA4BC3F7FE6A7E02DA40 (RegexFCD_tF50EFB93429390CF2488DAB5FD07DE6E48F1CDBF * __this, RegexTree_t63A434601D42EC388D9B2DCA2913286CFC8811F3 * ___tree0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m3A81757FE0B3283CB292CA61894273AA7B5C97CD_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m8A95D3769314CC0C4DDBE001AD1C40B4D5212053_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * V_0 = NULL; int32_t V_1 = 0; { RegexTree_t63A434601D42EC388D9B2DCA2913286CFC8811F3 * L_0 = ___tree0; NullCheck(L_0); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_1 = L_0->get__root_0(); V_0 = L_1; V_1 = 0; } IL_0009: { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_2 = V_0; NullCheck(L_2); List_1_t692D260BEBA1E69864C98DEEDB3E9256C38CD9B9 * L_3 = L_2->get__children_1(); if (L_3) { goto IL_0021; } } { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_4 = V_0; NullCheck(L_4); int32_t L_5 = L_4->get__type_0(); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_6 = V_0; RegexFCD_CalculateFC_m11BAAB103351C64BA06B41B999C2BAD670E3579F(__this, L_5, L_6, 0, /*hidden argument*/NULL); goto IL_0075; } IL_0021: { int32_t L_7 = V_1; RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_8 = V_0; NullCheck(L_8); List_1_t692D260BEBA1E69864C98DEEDB3E9256C38CD9B9 * L_9 = L_8->get__children_1(); NullCheck(L_9); int32_t L_10; L_10 = List_1_get_Count_m3A81757FE0B3283CB292CA61894273AA7B5C97CD_inline(L_9, /*hidden argument*/List_1_get_Count_m3A81757FE0B3283CB292CA61894273AA7B5C97CD_RuntimeMethod_var); if ((((int32_t)L_7) >= ((int32_t)L_10))) { goto IL_0075; } } { bool L_11 = __this->get__skipAllChildren_4(); if (L_11) { goto IL_0075; } } { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_12 = V_0; NullCheck(L_12); int32_t L_13 = L_12->get__type_0(); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_14 = V_0; int32_t L_15 = V_1; RegexFCD_CalculateFC_m11BAAB103351C64BA06B41B999C2BAD670E3579F(__this, ((int32_t)((int32_t)L_13|(int32_t)((int32_t)64))), L_14, L_15, /*hidden argument*/NULL); bool L_16 = __this->get__skipchild_5(); if (L_16) { goto IL_0068; } } { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_17 = V_0; NullCheck(L_17); List_1_t692D260BEBA1E69864C98DEEDB3E9256C38CD9B9 * L_18 = L_17->get__children_1(); int32_t L_19 = V_1; NullCheck(L_18); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_20; L_20 = List_1_get_Item_m8A95D3769314CC0C4DDBE001AD1C40B4D5212053_inline(L_18, L_19, /*hidden argument*/List_1_get_Item_m8A95D3769314CC0C4DDBE001AD1C40B4D5212053_RuntimeMethod_var); V_0 = L_20; int32_t L_21 = V_1; RegexFCD_PushInt_m2C075ABCE35D8B5F3AE842D0A79BEBBDF53E79E6(__this, L_21, /*hidden argument*/NULL); V_1 = 0; goto IL_0009; } IL_0068: { int32_t L_22 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_22, (int32_t)1)); __this->set__skipchild_5((bool)0); goto IL_0009; } IL_0075: { __this->set__skipAllChildren_4((bool)0); bool L_23; L_23 = RegexFCD_IntIsEmpty_m4CFF914DAAAF04747FD11B2740D47CD4A41F7321(__this, /*hidden argument*/NULL); if (L_23) { goto IL_00b9; } } { int32_t L_24; L_24 = RegexFCD_PopInt_m15845F98455FA8320FCC484AD15CE5A55B43EA14(__this, /*hidden argument*/NULL); V_1 = L_24; RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_25 = V_0; NullCheck(L_25); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_26 = L_25->get__next_7(); V_0 = L_26; RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_27 = V_0; NullCheck(L_27); int32_t L_28 = L_27->get__type_0(); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_29 = V_0; int32_t L_30 = V_1; RegexFCD_CalculateFC_m11BAAB103351C64BA06B41B999C2BAD670E3579F(__this, ((int32_t)((int32_t)L_28|(int32_t)((int32_t)128))), L_29, L_30, /*hidden argument*/NULL); bool L_31 = __this->get__failed_6(); if (!L_31) { goto IL_00b0; } } { return (RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826 *)NULL; } IL_00b0: { int32_t L_32 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_32, (int32_t)1)); goto IL_0009; } IL_00b9: { bool L_33; L_33 = RegexFCD_FCIsEmpty_m3FFF61F7B0567B2B1ABA23377742A6D0AC9DF016(__this, /*hidden argument*/NULL); if (!L_33) { goto IL_00c3; } } { return (RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826 *)NULL; } IL_00c3: { RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826 * L_34; L_34 = RegexFCD_PopFC_mE67FE0664971894C6935632FD634207784EAE43F(__this, /*hidden argument*/NULL); return L_34; } } // System.Void System.Text.RegularExpressions.RegexFCD::SkipChild() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexFCD_SkipChild_mE3F09E85EC04B345584A4268DDE28029B1493ABD (RegexFCD_tF50EFB93429390CF2488DAB5FD07DE6E48F1CDBF * __this, const RuntimeMethod* method) { { __this->set__skipchild_5((bool)1); return; } } // System.Void System.Text.RegularExpressions.RegexFCD::CalculateFC(System.Int32,System.Text.RegularExpressions.RegexNode,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexFCD_CalculateFC_m11BAAB103351C64BA06B41B999C2BAD670E3579F (RegexFCD_tF50EFB93429390CF2488DAB5FD07DE6E48F1CDBF * __this, int32_t ___NodeType0, RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * ___node1, int32_t ___CurIndex2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7E47B8E4D552470F6D8FD78693F09EA115DA32BE); s_Il2CppMethodInitialized = true; } bool V_0 = false; bool V_1 = false; RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826 * V_2 = NULL; RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826 * V_3 = NULL; RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826 * V_4 = NULL; RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826 * V_5 = NULL; RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826 * V_6 = NULL; RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826 * V_7 = NULL; { V_0 = (bool)0; V_1 = (bool)0; int32_t L_0 = ___NodeType0; if ((((int32_t)L_0) > ((int32_t)((int32_t)13)))) { goto IL_0022; } } { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_1 = ___node1; NullCheck(L_1); int32_t L_2 = L_1->get__options_6(); if (!((int32_t)((int32_t)L_2&(int32_t)1))) { goto IL_0015; } } { V_0 = (bool)1; } IL_0015: { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_3 = ___node1; NullCheck(L_3); int32_t L_4 = L_3->get__options_6(); if (!((int32_t)((int32_t)L_4&(int32_t)((int32_t)64)))) { goto IL_0022; } } { V_1 = (bool)1; } IL_0022: { int32_t L_5 = ___NodeType0; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_5, (int32_t)3))) { case 0: { goto IL_0229; } case 1: { goto IL_0246; } case 2: { goto IL_02d6; } case 3: { goto IL_0229; } case 4: { goto IL_0246; } case 5: { goto IL_02d6; } case 6: { goto IL_0210; } case 7: { goto IL_0210; } case 8: { goto IL_02c2; } case 9: { goto IL_0263; } case 10: { goto IL_02f2; } case 11: { goto IL_0305; } case 12: { goto IL_0305; } case 13: { goto IL_0305; } case 14: { goto IL_0305; } case 15: { goto IL_0305; } case 16: { goto IL_0305; } case 17: { goto IL_0305; } case 18: { goto IL_0305; } case 19: { goto IL_0305; } case 20: { goto IL_0149; } case 21: { goto IL_0312; } case 22: { goto IL_0312; } case 23: { goto IL_0312; } case 24: { goto IL_0312; } case 25: { goto IL_0312; } case 26: { goto IL_0312; } case 27: { goto IL_0312; } case 28: { goto IL_0312; } case 29: { goto IL_0312; } case 30: { goto IL_0312; } case 31: { goto IL_0312; } case 32: { goto IL_0312; } case 33: { goto IL_0312; } case 34: { goto IL_0312; } case 35: { goto IL_0312; } case 36: { goto IL_0312; } case 37: { goto IL_0312; } case 38: { goto IL_0305; } case 39: { goto IL_0305; } } } { int32_t L_6 = ___NodeType0; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)((int32_t)88)))) { case 0: { goto IL_0337; } case 1: { goto IL_0337; } case 2: { goto IL_0337; } case 3: { goto IL_0337; } case 4: { goto IL_0337; } case 5: { goto IL_0337; } case 6: { goto IL_01fd; } case 7: { goto IL_01fd; } case 8: { goto IL_0337; } case 9: { goto IL_0337; } case 10: { goto IL_013c; } } } { int32_t L_7 = ___NodeType0; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_7, (int32_t)((int32_t)152)))) { case 0: { goto IL_01bb; } case 1: { goto IL_0156; } case 2: { goto IL_01e5; } case 3: { goto IL_01e5; } case 4: { goto IL_0337; } case 5: { goto IL_0337; } case 6: { goto IL_0337; } case 7: { goto IL_0337; } case 8: { goto IL_0337; } case 9: { goto IL_01bb; } case 10: { goto IL_0190; } } } { goto IL_0312; } IL_013c: { int32_t L_8 = ___CurIndex2; if (L_8) { goto IL_0337; } } { RegexFCD_SkipChild_mE3F09E85EC04B345584A4268DDE28029B1493ABD(__this, /*hidden argument*/NULL); return; } IL_0149: { RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826 * L_9 = (RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826 *)il2cpp_codegen_object_new(RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826_il2cpp_TypeInfo_var); RegexFC__ctor_mA39AF7098BC1D63C19E316121CC854AACBE4CB59(L_9, (bool)1, /*hidden argument*/NULL); RegexFCD_PushFC_mC4174F9014750978ADB35B3E45DE43D740070B92(__this, L_9, /*hidden argument*/NULL); return; } IL_0156: { int32_t L_10 = ___CurIndex2; if (!L_10) { goto IL_0178; } } { RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826 * L_11; L_11 = RegexFCD_PopFC_mE67FE0664971894C6935632FD634207784EAE43F(__this, /*hidden argument*/NULL); V_2 = L_11; RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826 * L_12; L_12 = RegexFCD_TopFC_mC9A10E7061B6283532AF800971B26A7660036AF6(__this, /*hidden argument*/NULL); V_3 = L_12; RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826 * L_13 = V_3; RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826 * L_14 = V_2; NullCheck(L_13); bool L_15; L_15 = RegexFC_AddFC_m515C7808755FE89185D85B3C39184C2425B44629(L_13, L_14, (bool)1, /*hidden argument*/NULL); __this->set__failed_6((bool)((((int32_t)L_15) == ((int32_t)0))? 1 : 0)); } IL_0178: { RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826 * L_16; L_16 = RegexFCD_TopFC_mC9A10E7061B6283532AF800971B26A7660036AF6(__this, /*hidden argument*/NULL); NullCheck(L_16); bool L_17 = L_16->get__nullable_1(); if (L_17) { goto IL_0337; } } { __this->set__skipAllChildren_4((bool)1); return; } IL_0190: { int32_t L_18 = ___CurIndex2; if ((((int32_t)L_18) <= ((int32_t)1))) { goto IL_0337; } } { RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826 * L_19; L_19 = RegexFCD_PopFC_mE67FE0664971894C6935632FD634207784EAE43F(__this, /*hidden argument*/NULL); V_4 = L_19; RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826 * L_20; L_20 = RegexFCD_TopFC_mC9A10E7061B6283532AF800971B26A7660036AF6(__this, /*hidden argument*/NULL); V_5 = L_20; RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826 * L_21 = V_5; RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826 * L_22 = V_4; NullCheck(L_21); bool L_23; L_23 = RegexFC_AddFC_m515C7808755FE89185D85B3C39184C2425B44629(L_21, L_22, (bool)0, /*hidden argument*/NULL); __this->set__failed_6((bool)((((int32_t)L_23) == ((int32_t)0))? 1 : 0)); return; } IL_01bb: { int32_t L_24 = ___CurIndex2; if (!L_24) { goto IL_0337; } } { RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826 * L_25; L_25 = RegexFCD_PopFC_mE67FE0664971894C6935632FD634207784EAE43F(__this, /*hidden argument*/NULL); V_6 = L_25; RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826 * L_26; L_26 = RegexFCD_TopFC_mC9A10E7061B6283532AF800971B26A7660036AF6(__this, /*hidden argument*/NULL); V_7 = L_26; RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826 * L_27 = V_7; RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826 * L_28 = V_6; NullCheck(L_27); bool L_29; L_29 = RegexFC_AddFC_m515C7808755FE89185D85B3C39184C2425B44629(L_27, L_28, (bool)0, /*hidden argument*/NULL); __this->set__failed_6((bool)((((int32_t)L_29) == ((int32_t)0))? 1 : 0)); return; } IL_01e5: { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_30 = ___node1; NullCheck(L_30); int32_t L_31 = L_30->get__m_4(); if (L_31) { goto IL_0337; } } { RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826 * L_32; L_32 = RegexFCD_TopFC_mC9A10E7061B6283532AF800971B26A7660036AF6(__this, /*hidden argument*/NULL); NullCheck(L_32); L_32->set__nullable_1((bool)1); return; } IL_01fd: { RegexFCD_SkipChild_mE3F09E85EC04B345584A4268DDE28029B1493ABD(__this, /*hidden argument*/NULL); RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826 * L_33 = (RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826 *)il2cpp_codegen_object_new(RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826_il2cpp_TypeInfo_var); RegexFC__ctor_mA39AF7098BC1D63C19E316121CC854AACBE4CB59(L_33, (bool)1, /*hidden argument*/NULL); RegexFCD_PushFC_mC4174F9014750978ADB35B3E45DE43D740070B92(__this, L_33, /*hidden argument*/NULL); return; } IL_0210: { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_34 = ___node1; NullCheck(L_34); Il2CppChar L_35 = L_34->get__ch_3(); int32_t L_36 = ___NodeType0; bool L_37 = V_0; RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826 * L_38 = (RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826 *)il2cpp_codegen_object_new(RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826_il2cpp_TypeInfo_var); RegexFC__ctor_mA9779C6F7E4B0B76041B34DF40F2B6DBA82761E2(L_38, L_35, (bool)((((int32_t)L_36) == ((int32_t)((int32_t)10)))? 1 : 0), (bool)0, L_37, /*hidden argument*/NULL); RegexFCD_PushFC_mC4174F9014750978ADB35B3E45DE43D740070B92(__this, L_38, /*hidden argument*/NULL); return; } IL_0229: { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_39 = ___node1; NullCheck(L_39); Il2CppChar L_40 = L_39->get__ch_3(); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_41 = ___node1; NullCheck(L_41); int32_t L_42 = L_41->get__m_4(); bool L_43 = V_0; RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826 * L_44 = (RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826 *)il2cpp_codegen_object_new(RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826_il2cpp_TypeInfo_var); RegexFC__ctor_mA9779C6F7E4B0B76041B34DF40F2B6DBA82761E2(L_44, L_40, (bool)0, (bool)((((int32_t)L_42) == ((int32_t)0))? 1 : 0), L_43, /*hidden argument*/NULL); RegexFCD_PushFC_mC4174F9014750978ADB35B3E45DE43D740070B92(__this, L_44, /*hidden argument*/NULL); return; } IL_0246: { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_45 = ___node1; NullCheck(L_45); Il2CppChar L_46 = L_45->get__ch_3(); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_47 = ___node1; NullCheck(L_47); int32_t L_48 = L_47->get__m_4(); bool L_49 = V_0; RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826 * L_50 = (RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826 *)il2cpp_codegen_object_new(RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826_il2cpp_TypeInfo_var); RegexFC__ctor_mA9779C6F7E4B0B76041B34DF40F2B6DBA82761E2(L_50, L_46, (bool)1, (bool)((((int32_t)L_48) == ((int32_t)0))? 1 : 0), L_49, /*hidden argument*/NULL); RegexFCD_PushFC_mC4174F9014750978ADB35B3E45DE43D740070B92(__this, L_50, /*hidden argument*/NULL); return; } IL_0263: { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_51 = ___node1; NullCheck(L_51); String_t* L_52 = L_51->get__str_2(); NullCheck(L_52); int32_t L_53; L_53 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_52, /*hidden argument*/NULL); if (L_53) { goto IL_027d; } } { RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826 * L_54 = (RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826 *)il2cpp_codegen_object_new(RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826_il2cpp_TypeInfo_var); RegexFC__ctor_mA39AF7098BC1D63C19E316121CC854AACBE4CB59(L_54, (bool)1, /*hidden argument*/NULL); RegexFCD_PushFC_mC4174F9014750978ADB35B3E45DE43D740070B92(__this, L_54, /*hidden argument*/NULL); return; } IL_027d: { bool L_55 = V_1; if (L_55) { goto IL_029b; } } { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_56 = ___node1; NullCheck(L_56); String_t* L_57 = L_56->get__str_2(); NullCheck(L_57); Il2CppChar L_58; L_58 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_57, 0, /*hidden argument*/NULL); bool L_59 = V_0; RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826 * L_60 = (RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826 *)il2cpp_codegen_object_new(RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826_il2cpp_TypeInfo_var); RegexFC__ctor_mA9779C6F7E4B0B76041B34DF40F2B6DBA82761E2(L_60, L_58, (bool)0, (bool)0, L_59, /*hidden argument*/NULL); RegexFCD_PushFC_mC4174F9014750978ADB35B3E45DE43D740070B92(__this, L_60, /*hidden argument*/NULL); return; } IL_029b: { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_61 = ___node1; NullCheck(L_61); String_t* L_62 = L_61->get__str_2(); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_63 = ___node1; NullCheck(L_63); String_t* L_64 = L_63->get__str_2(); NullCheck(L_64); int32_t L_65; L_65 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_64, /*hidden argument*/NULL); NullCheck(L_62); Il2CppChar L_66; L_66 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_62, ((int32_t)il2cpp_codegen_subtract((int32_t)L_65, (int32_t)1)), /*hidden argument*/NULL); bool L_67 = V_0; RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826 * L_68 = (RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826 *)il2cpp_codegen_object_new(RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826_il2cpp_TypeInfo_var); RegexFC__ctor_mA9779C6F7E4B0B76041B34DF40F2B6DBA82761E2(L_68, L_66, (bool)0, (bool)0, L_67, /*hidden argument*/NULL); RegexFCD_PushFC_mC4174F9014750978ADB35B3E45DE43D740070B92(__this, L_68, /*hidden argument*/NULL); return; } IL_02c2: { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_69 = ___node1; NullCheck(L_69); String_t* L_70 = L_69->get__str_2(); bool L_71 = V_0; RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826 * L_72 = (RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826 *)il2cpp_codegen_object_new(RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826_il2cpp_TypeInfo_var); RegexFC__ctor_m8693359483B2128560FC374872CFC1382A0605B2(L_72, L_70, (bool)0, L_71, /*hidden argument*/NULL); RegexFCD_PushFC_mC4174F9014750978ADB35B3E45DE43D740070B92(__this, L_72, /*hidden argument*/NULL); return; } IL_02d6: { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_73 = ___node1; NullCheck(L_73); String_t* L_74 = L_73->get__str_2(); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_75 = ___node1; NullCheck(L_75); int32_t L_76 = L_75->get__m_4(); bool L_77 = V_0; RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826 * L_78 = (RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826 *)il2cpp_codegen_object_new(RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826_il2cpp_TypeInfo_var); RegexFC__ctor_m8693359483B2128560FC374872CFC1382A0605B2(L_78, L_74, (bool)((((int32_t)L_76) == ((int32_t)0))? 1 : 0), L_77, /*hidden argument*/NULL); RegexFCD_PushFC_mC4174F9014750978ADB35B3E45DE43D740070B92(__this, L_78, /*hidden argument*/NULL); return; } IL_02f2: { RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826 * L_79 = (RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826 *)il2cpp_codegen_object_new(RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826_il2cpp_TypeInfo_var); RegexFC__ctor_m8693359483B2128560FC374872CFC1382A0605B2(L_79, _stringLiteral7E47B8E4D552470F6D8FD78693F09EA115DA32BE, (bool)1, (bool)0, /*hidden argument*/NULL); RegexFCD_PushFC_mC4174F9014750978ADB35B3E45DE43D740070B92(__this, L_79, /*hidden argument*/NULL); return; } IL_0305: { RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826 * L_80 = (RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826 *)il2cpp_codegen_object_new(RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826_il2cpp_TypeInfo_var); RegexFC__ctor_mA39AF7098BC1D63C19E316121CC854AACBE4CB59(L_80, (bool)1, /*hidden argument*/NULL); RegexFCD_PushFC_mC4174F9014750978ADB35B3E45DE43D740070B92(__this, L_80, /*hidden argument*/NULL); return; } IL_0312: { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_81 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var)), (uint32_t)1); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_82 = L_81; IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var))); CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_83; L_83 = CultureInfo_get_CurrentCulture_m99E5F5BD20445F2A73F7EA0014A4E783DF3840BB(/*hidden argument*/NULL); String_t* L_84; L_84 = Int32_ToString_m027A8C9419D2FE56ED5D2EE42A6F3B3CE0130471((int32_t*)(&___NodeType0), L_83, /*hidden argument*/NULL); NullCheck(L_82); ArrayElementTypeCheck (L_82, L_84); (L_82)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_84); String_t* L_85; L_85 = SR_GetString_m4FFAF18248A54C5B67E4760C5ED4869A87BCAD7F(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral1A521FB9CB5DD09DAE84196DD4656194D3654284)), L_82, /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_86 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_86, L_85, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_86, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexFCD_CalculateFC_m11BAAB103351C64BA06B41B999C2BAD670E3579F_RuntimeMethod_var))); } IL_0337: { 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.RegularExpressions.RegexInterpreter::.ctor(System.Text.RegularExpressions.RegexCode,System.Globalization.CultureInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexInterpreter__ctor_m58E5C9B14F78D108FC9277924C4A5DCC73AE832A (RegexInterpreter_tF3C74D72240962B960AE4D39D9CF1632C9C2982E * __this, RegexCode_tF1653432E8EEDED5AB9517D09CA84B5FAA3CC0D5 * ___code0, CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * ___culture1, const RuntimeMethod* method) { { RegexRunner__ctor_m6925516B4C16AC95CFAAFCCDB5CFEAD505B7920B(__this, /*hidden argument*/NULL); RegexCode_tF1653432E8EEDED5AB9517D09CA84B5FAA3CC0D5 * L_0 = ___code0; __this->set_runcode_22(L_0); RegexCode_tF1653432E8EEDED5AB9517D09CA84B5FAA3CC0D5 * L_1 = ___code0; NullCheck(L_1); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_2 = L_1->get__codes_0(); __this->set_runcodes_19(L_2); RegexCode_tF1653432E8EEDED5AB9517D09CA84B5FAA3CC0D5 * L_3 = ___code0; NullCheck(L_3); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_4 = L_3->get__strings_1(); __this->set_runstrings_21(L_4); RegexCode_tF1653432E8EEDED5AB9517D09CA84B5FAA3CC0D5 * L_5 = ___code0; NullCheck(L_5); RegexPrefix_t1563C82A76799B0B018F5EBD6EC068158BE50301 * L_6 = L_5->get__fcPrefix_5(); __this->set_runfcPrefix_23(L_6); RegexCode_tF1653432E8EEDED5AB9517D09CA84B5FAA3CC0D5 * L_7 = ___code0; NullCheck(L_7); RegexBoyerMoore_t43FE488EFF3EE20D1092216B7E62D954F78167D2 * L_8 = L_7->get__bmPrefix_6(); __this->set_runbmPrefix_24(L_8); RegexCode_tF1653432E8EEDED5AB9517D09CA84B5FAA3CC0D5 * L_9 = ___code0; NullCheck(L_9); int32_t L_10 = L_9->get__anchors_7(); __this->set_runanchors_25(L_10); CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_11 = ___culture1; __this->set_runculture_28(L_11); return; } } // System.Void System.Text.RegularExpressions.RegexInterpreter::InitTrackCount() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexInterpreter_InitTrackCount_mF85CD3AACD0F8EFFF2D54ECE67DFA073503D978E (RegexInterpreter_tF3C74D72240962B960AE4D39D9CF1632C9C2982E * __this, const RuntimeMethod* method) { { RegexCode_tF1653432E8EEDED5AB9517D09CA84B5FAA3CC0D5 * L_0 = __this->get_runcode_22(); NullCheck(L_0); int32_t L_1 = L_0->get__trackcount_2(); ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->set_runtrackcount_11(L_1); return; } } // System.Void System.Text.RegularExpressions.RegexInterpreter::Advance() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexInterpreter_Advance_mC3549A945557AD11D80890E0DCBC6D53860A97FE (RegexInterpreter_tF3C74D72240962B960AE4D39D9CF1632C9C2982E * __this, const RuntimeMethod* method) { { RegexInterpreter_Advance_m47537FC4AB2CB92D2D9100C755D936DED76B03EE(__this, 0, /*hidden argument*/NULL); return; } } // System.Void System.Text.RegularExpressions.RegexInterpreter::Advance(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexInterpreter_Advance_m47537FC4AB2CB92D2D9100C755D936DED76B03EE (RegexInterpreter_tF3C74D72240962B960AE4D39D9CF1632C9C2982E * __this, int32_t ___i0, const RuntimeMethod* method) { { int32_t L_0 = __this->get_runcodepos_20(); int32_t L_1 = ___i0; __this->set_runcodepos_20(((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_1, (int32_t)1))))); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_2 = __this->get_runcodes_19(); int32_t L_3 = __this->get_runcodepos_20(); NullCheck(L_2); int32_t L_4 = L_3; int32_t L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4)); RegexInterpreter_SetOperator_m6F39391186CA54646ABAF1A8D3584533261E6A3F(__this, L_5, /*hidden argument*/NULL); return; } } // System.Void System.Text.RegularExpressions.RegexInterpreter::Goto(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexInterpreter_Goto_mAB873EAF14CC58B684C91137D6E8817EB47FAB48 (RegexInterpreter_tF3C74D72240962B960AE4D39D9CF1632C9C2982E * __this, int32_t ___newpos0, const RuntimeMethod* method) { { int32_t L_0 = ___newpos0; int32_t L_1 = __this->get_runcodepos_20(); if ((((int32_t)L_0) >= ((int32_t)L_1))) { goto IL_000f; } } { RegexRunner_EnsureStorage_mA28C2C957E9C94A1EB89424D837A87114E38325E(__this, /*hidden argument*/NULL); } IL_000f: { Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_2 = __this->get_runcodes_19(); int32_t L_3 = ___newpos0; NullCheck(L_2); int32_t L_4 = L_3; int32_t L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4)); RegexInterpreter_SetOperator_m6F39391186CA54646ABAF1A8D3584533261E6A3F(__this, L_5, /*hidden argument*/NULL); int32_t L_6 = ___newpos0; __this->set_runcodepos_20(L_6); return; } } // System.Void System.Text.RegularExpressions.RegexInterpreter::Textto(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexInterpreter_Textto_m874B113DFF6381DFC1BF8A8F7E6D79B819CF06AE (RegexInterpreter_tF3C74D72240962B960AE4D39D9CF1632C9C2982E * __this, int32_t ___newpos0, const RuntimeMethod* method) { { int32_t L_0 = ___newpos0; ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->set_runtextpos_4(L_0); return; } } // System.Void System.Text.RegularExpressions.RegexInterpreter::Trackto(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexInterpreter_Trackto_m00A652840F4C1B3FE74527A910FB6BDE144F4CD2 (RegexInterpreter_tF3C74D72240962B960AE4D39D9CF1632C9C2982E * __this, int32_t ___newpos0, const RuntimeMethod* method) { { Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_0 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtrack_5(); NullCheck(L_0); int32_t L_1 = ___newpos0; ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->set_runtrackpos_6(((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_0)->max_length))), (int32_t)L_1))); return; } } // System.Int32 System.Text.RegularExpressions.RegexInterpreter::Textstart() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexInterpreter_Textstart_m635CAE9587982E8C88F98F7374460E742A7F5953 (RegexInterpreter_tF3C74D72240962B960AE4D39D9CF1632C9C2982E * __this, const RuntimeMethod* method) { { int32_t L_0 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtextstart_2(); return L_0; } } // System.Int32 System.Text.RegularExpressions.RegexInterpreter::Textpos() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexInterpreter_Textpos_mCCC8ABAE83D37BA6F060242E1ECAC7D91D8910F5 (RegexInterpreter_tF3C74D72240962B960AE4D39D9CF1632C9C2982E * __this, const RuntimeMethod* method) { { int32_t L_0 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtextpos_4(); return L_0; } } // System.Int32 System.Text.RegularExpressions.RegexInterpreter::Trackpos() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexInterpreter_Trackpos_mDA7F7A3B4A02FC45B46AF1FD47778E0C0C9A5F64 (RegexInterpreter_tF3C74D72240962B960AE4D39D9CF1632C9C2982E * __this, const RuntimeMethod* method) { { Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_0 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtrack_5(); NullCheck(L_0); int32_t L_1 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtrackpos_6(); return ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_0)->max_length))), (int32_t)L_1)); } } // System.Void System.Text.RegularExpressions.RegexInterpreter::TrackPush() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexInterpreter_TrackPush_mBE985076C7632B82D188C6484BD6C7980C392379 (RegexInterpreter_tF3C74D72240962B960AE4D39D9CF1632C9C2982E * __this, const RuntimeMethod* method) { int32_t V_0 = 0; { Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_0 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtrack_5(); int32_t L_1 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtrackpos_6(); V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_1, (int32_t)1)); int32_t L_2 = V_0; ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->set_runtrackpos_6(L_2); int32_t L_3 = V_0; int32_t L_4 = __this->get_runcodepos_20(); NullCheck(L_0); (L_0)->SetAt(static_cast<il2cpp_array_size_t>(L_3), (int32_t)L_4); return; } } // System.Void System.Text.RegularExpressions.RegexInterpreter::TrackPush(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexInterpreter_TrackPush_m2DA2DB51ACD26004F4FB8B8D80EEC20D4AA14C49 (RegexInterpreter_tF3C74D72240962B960AE4D39D9CF1632C9C2982E * __this, int32_t ___I10, const RuntimeMethod* method) { int32_t V_0 = 0; { Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_0 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtrack_5(); int32_t L_1 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtrackpos_6(); V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_1, (int32_t)1)); int32_t L_2 = V_0; ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->set_runtrackpos_6(L_2); int32_t L_3 = V_0; int32_t L_4 = ___I10; NullCheck(L_0); (L_0)->SetAt(static_cast<il2cpp_array_size_t>(L_3), (int32_t)L_4); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_5 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtrack_5(); int32_t L_6 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtrackpos_6(); V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)); int32_t L_7 = V_0; ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->set_runtrackpos_6(L_7); int32_t L_8 = V_0; int32_t L_9 = __this->get_runcodepos_20(); NullCheck(L_5); (L_5)->SetAt(static_cast<il2cpp_array_size_t>(L_8), (int32_t)L_9); return; } } // System.Void System.Text.RegularExpressions.RegexInterpreter::TrackPush(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexInterpreter_TrackPush_m874CB8F853DD4EB0FAD4A2DEF9CC2EAC3DD5BA5E (RegexInterpreter_tF3C74D72240962B960AE4D39D9CF1632C9C2982E * __this, int32_t ___I10, int32_t ___I21, const RuntimeMethod* method) { int32_t V_0 = 0; { Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_0 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtrack_5(); int32_t L_1 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtrackpos_6(); V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_1, (int32_t)1)); int32_t L_2 = V_0; ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->set_runtrackpos_6(L_2); int32_t L_3 = V_0; int32_t L_4 = ___I10; NullCheck(L_0); (L_0)->SetAt(static_cast<il2cpp_array_size_t>(L_3), (int32_t)L_4); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_5 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtrack_5(); int32_t L_6 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtrackpos_6(); V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)); int32_t L_7 = V_0; ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->set_runtrackpos_6(L_7); int32_t L_8 = V_0; int32_t L_9 = ___I21; NullCheck(L_5); (L_5)->SetAt(static_cast<il2cpp_array_size_t>(L_8), (int32_t)L_9); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_10 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtrack_5(); int32_t L_11 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtrackpos_6(); V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_11, (int32_t)1)); int32_t L_12 = V_0; ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->set_runtrackpos_6(L_12); int32_t L_13 = V_0; int32_t L_14 = __this->get_runcodepos_20(); NullCheck(L_10); (L_10)->SetAt(static_cast<il2cpp_array_size_t>(L_13), (int32_t)L_14); return; } } // System.Void System.Text.RegularExpressions.RegexInterpreter::TrackPush(System.Int32,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexInterpreter_TrackPush_mEF674B57E2A8FC7E555803DE53EEE076EC0E5E75 (RegexInterpreter_tF3C74D72240962B960AE4D39D9CF1632C9C2982E * __this, int32_t ___I10, int32_t ___I21, int32_t ___I32, const RuntimeMethod* method) { int32_t V_0 = 0; { Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_0 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtrack_5(); int32_t L_1 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtrackpos_6(); V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_1, (int32_t)1)); int32_t L_2 = V_0; ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->set_runtrackpos_6(L_2); int32_t L_3 = V_0; int32_t L_4 = ___I10; NullCheck(L_0); (L_0)->SetAt(static_cast<il2cpp_array_size_t>(L_3), (int32_t)L_4); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_5 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtrack_5(); int32_t L_6 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtrackpos_6(); V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)); int32_t L_7 = V_0; ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->set_runtrackpos_6(L_7); int32_t L_8 = V_0; int32_t L_9 = ___I21; NullCheck(L_5); (L_5)->SetAt(static_cast<il2cpp_array_size_t>(L_8), (int32_t)L_9); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_10 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtrack_5(); int32_t L_11 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtrackpos_6(); V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_11, (int32_t)1)); int32_t L_12 = V_0; ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->set_runtrackpos_6(L_12); int32_t L_13 = V_0; int32_t L_14 = ___I32; NullCheck(L_10); (L_10)->SetAt(static_cast<il2cpp_array_size_t>(L_13), (int32_t)L_14); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_15 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtrack_5(); int32_t L_16 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtrackpos_6(); V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_16, (int32_t)1)); int32_t L_17 = V_0; ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->set_runtrackpos_6(L_17); int32_t L_18 = V_0; int32_t L_19 = __this->get_runcodepos_20(); NullCheck(L_15); (L_15)->SetAt(static_cast<il2cpp_array_size_t>(L_18), (int32_t)L_19); return; } } // System.Void System.Text.RegularExpressions.RegexInterpreter::TrackPush2(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexInterpreter_TrackPush2_m490912B4D5B2E19FA2739EA0211FA91DA6423634 (RegexInterpreter_tF3C74D72240962B960AE4D39D9CF1632C9C2982E * __this, int32_t ___I10, const RuntimeMethod* method) { int32_t V_0 = 0; { Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_0 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtrack_5(); int32_t L_1 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtrackpos_6(); V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_1, (int32_t)1)); int32_t L_2 = V_0; ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->set_runtrackpos_6(L_2); int32_t L_3 = V_0; int32_t L_4 = ___I10; NullCheck(L_0); (L_0)->SetAt(static_cast<il2cpp_array_size_t>(L_3), (int32_t)L_4); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_5 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtrack_5(); int32_t L_6 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtrackpos_6(); V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)); int32_t L_7 = V_0; ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->set_runtrackpos_6(L_7); int32_t L_8 = V_0; int32_t L_9 = __this->get_runcodepos_20(); NullCheck(L_5); (L_5)->SetAt(static_cast<il2cpp_array_size_t>(L_8), (int32_t)((-L_9))); return; } } // System.Void System.Text.RegularExpressions.RegexInterpreter::TrackPush2(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexInterpreter_TrackPush2_m5B36C2B678F621B4BCF26D038E5AE40A55BC5884 (RegexInterpreter_tF3C74D72240962B960AE4D39D9CF1632C9C2982E * __this, int32_t ___I10, int32_t ___I21, const RuntimeMethod* method) { int32_t V_0 = 0; { Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_0 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtrack_5(); int32_t L_1 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtrackpos_6(); V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_1, (int32_t)1)); int32_t L_2 = V_0; ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->set_runtrackpos_6(L_2); int32_t L_3 = V_0; int32_t L_4 = ___I10; NullCheck(L_0); (L_0)->SetAt(static_cast<il2cpp_array_size_t>(L_3), (int32_t)L_4); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_5 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtrack_5(); int32_t L_6 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtrackpos_6(); V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)); int32_t L_7 = V_0; ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->set_runtrackpos_6(L_7); int32_t L_8 = V_0; int32_t L_9 = ___I21; NullCheck(L_5); (L_5)->SetAt(static_cast<il2cpp_array_size_t>(L_8), (int32_t)L_9); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_10 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtrack_5(); int32_t L_11 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtrackpos_6(); V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_11, (int32_t)1)); int32_t L_12 = V_0; ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->set_runtrackpos_6(L_12); int32_t L_13 = V_0; int32_t L_14 = __this->get_runcodepos_20(); NullCheck(L_10); (L_10)->SetAt(static_cast<il2cpp_array_size_t>(L_13), (int32_t)((-L_14))); return; } } // System.Void System.Text.RegularExpressions.RegexInterpreter::Backtrack() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexInterpreter_Backtrack_m30590074E633FAA50401BC2EFA74F6D6FF5371DA (RegexInterpreter_tF3C74D72240962B960AE4D39D9CF1632C9C2982E * __this, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; { Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_0 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtrack_5(); int32_t L_1 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtrackpos_6(); V_1 = L_1; int32_t L_2 = V_1; ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->set_runtrackpos_6(((int32_t)il2cpp_codegen_add((int32_t)L_2, (int32_t)1))); int32_t L_3 = V_1; NullCheck(L_0); int32_t L_4 = L_3; int32_t L_5 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_4)); V_0 = L_5; int32_t L_6 = V_0; if ((((int32_t)L_6) >= ((int32_t)0))) { goto IL_0036; } } { int32_t L_7 = V_0; V_0 = ((-L_7)); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_8 = __this->get_runcodes_19(); int32_t L_9 = V_0; NullCheck(L_8); int32_t L_10 = L_9; int32_t L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10)); RegexInterpreter_SetOperator_m6F39391186CA54646ABAF1A8D3584533261E6A3F(__this, ((int32_t)((int32_t)L_11|(int32_t)((int32_t)256))), /*hidden argument*/NULL); goto IL_004a; } IL_0036: { Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_12 = __this->get_runcodes_19(); int32_t L_13 = V_0; NullCheck(L_12); int32_t L_14 = L_13; int32_t L_15 = (L_12)->GetAt(static_cast<il2cpp_array_size_t>(L_14)); RegexInterpreter_SetOperator_m6F39391186CA54646ABAF1A8D3584533261E6A3F(__this, ((int32_t)((int32_t)L_15|(int32_t)((int32_t)128))), /*hidden argument*/NULL); } IL_004a: { int32_t L_16 = V_0; int32_t L_17 = __this->get_runcodepos_20(); if ((((int32_t)L_16) >= ((int32_t)L_17))) { goto IL_0059; } } { RegexRunner_EnsureStorage_mA28C2C957E9C94A1EB89424D837A87114E38325E(__this, /*hidden argument*/NULL); } IL_0059: { int32_t L_18 = V_0; __this->set_runcodepos_20(L_18); return; } } // System.Void System.Text.RegularExpressions.RegexInterpreter::SetOperator(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexInterpreter_SetOperator_m6F39391186CA54646ABAF1A8D3584533261E6A3F (RegexInterpreter_tF3C74D72240962B960AE4D39D9CF1632C9C2982E * __this, int32_t ___op0, const RuntimeMethod* method) { { int32_t L_0 = ___op0; __this->set_runci_27((bool)((!(((uint32_t)((int32_t)((int32_t)L_0&(int32_t)((int32_t)512)))) <= ((uint32_t)0)))? 1 : 0)); int32_t L_1 = ___op0; __this->set_runrtl_26((bool)((!(((uint32_t)((int32_t)((int32_t)L_1&(int32_t)((int32_t)64)))) <= ((uint32_t)0)))? 1 : 0)); int32_t L_2 = ___op0; __this->set_runoperator_18(((int32_t)((int32_t)L_2&(int32_t)((int32_t)-577)))); return; } } // System.Void System.Text.RegularExpressions.RegexInterpreter::TrackPop() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexInterpreter_TrackPop_m8E31A4201CD48C0888BE0DB6EB317036E7E7C4D8 (RegexInterpreter_tF3C74D72240962B960AE4D39D9CF1632C9C2982E * __this, const RuntimeMethod* method) { { int32_t L_0 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtrackpos_6(); ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->set_runtrackpos_6(((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)1))); return; } } // System.Void System.Text.RegularExpressions.RegexInterpreter::TrackPop(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexInterpreter_TrackPop_mBE47D7E983B6BD0C45F7F376AA0272B0827AB4E4 (RegexInterpreter_tF3C74D72240962B960AE4D39D9CF1632C9C2982E * __this, int32_t ___framesize0, const RuntimeMethod* method) { { int32_t L_0 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtrackpos_6(); int32_t L_1 = ___framesize0; ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->set_runtrackpos_6(((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)L_1))); return; } } // System.Int32 System.Text.RegularExpressions.RegexInterpreter::TrackPeek() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexInterpreter_TrackPeek_mFB63C0E3D25EEEEC1DBD5FF5601E59C6F0414396 (RegexInterpreter_tF3C74D72240962B960AE4D39D9CF1632C9C2982E * __this, const RuntimeMethod* method) { { Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_0 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtrack_5(); int32_t L_1 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtrackpos_6(); NullCheck(L_0); int32_t L_2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_1, (int32_t)1)); int32_t L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2)); return L_3; } } // System.Int32 System.Text.RegularExpressions.RegexInterpreter::TrackPeek(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexInterpreter_TrackPeek_m946313A941F42F58C555593B8CD2C00E702400AB (RegexInterpreter_tF3C74D72240962B960AE4D39D9CF1632C9C2982E * __this, int32_t ___i0, const RuntimeMethod* method) { { Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_0 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtrack_5(); int32_t L_1 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtrackpos_6(); int32_t L_2 = ___i0; NullCheck(L_0); int32_t L_3 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_1, (int32_t)L_2)), (int32_t)1)); int32_t L_4 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_3)); return L_4; } } // System.Void System.Text.RegularExpressions.RegexInterpreter::StackPush(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexInterpreter_StackPush_m488F7B4FABE6E66EF8D28F070303C7B344A9217F (RegexInterpreter_tF3C74D72240962B960AE4D39D9CF1632C9C2982E * __this, int32_t ___I10, const RuntimeMethod* method) { int32_t V_0 = 0; { Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_0 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runstack_7(); int32_t L_1 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runstackpos_8(); V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_1, (int32_t)1)); int32_t L_2 = V_0; ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->set_runstackpos_8(L_2); int32_t L_3 = V_0; int32_t L_4 = ___I10; NullCheck(L_0); (L_0)->SetAt(static_cast<il2cpp_array_size_t>(L_3), (int32_t)L_4); return; } } // System.Void System.Text.RegularExpressions.RegexInterpreter::StackPush(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexInterpreter_StackPush_m46ADD790ADB62A6FFFC56ACC93A5BFB11578A45B (RegexInterpreter_tF3C74D72240962B960AE4D39D9CF1632C9C2982E * __this, int32_t ___I10, int32_t ___I21, const RuntimeMethod* method) { int32_t V_0 = 0; { Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_0 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runstack_7(); int32_t L_1 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runstackpos_8(); V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_1, (int32_t)1)); int32_t L_2 = V_0; ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->set_runstackpos_8(L_2); int32_t L_3 = V_0; int32_t L_4 = ___I10; NullCheck(L_0); (L_0)->SetAt(static_cast<il2cpp_array_size_t>(L_3), (int32_t)L_4); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_5 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runstack_7(); int32_t L_6 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runstackpos_8(); V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)); int32_t L_7 = V_0; ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->set_runstackpos_8(L_7); int32_t L_8 = V_0; int32_t L_9 = ___I21; NullCheck(L_5); (L_5)->SetAt(static_cast<il2cpp_array_size_t>(L_8), (int32_t)L_9); return; } } // System.Void System.Text.RegularExpressions.RegexInterpreter::StackPop() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexInterpreter_StackPop_m28CD98B18B8010F9398FAB5A1C0CB3E220FB0A13 (RegexInterpreter_tF3C74D72240962B960AE4D39D9CF1632C9C2982E * __this, const RuntimeMethod* method) { { int32_t L_0 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runstackpos_8(); ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->set_runstackpos_8(((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)1))); return; } } // System.Void System.Text.RegularExpressions.RegexInterpreter::StackPop(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexInterpreter_StackPop_m1DBCCF39146C4C13FEBABCF7139CDAF89AB339ED (RegexInterpreter_tF3C74D72240962B960AE4D39D9CF1632C9C2982E * __this, int32_t ___framesize0, const RuntimeMethod* method) { { int32_t L_0 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runstackpos_8(); int32_t L_1 = ___framesize0; ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->set_runstackpos_8(((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)L_1))); return; } } // System.Int32 System.Text.RegularExpressions.RegexInterpreter::StackPeek() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexInterpreter_StackPeek_mE0B2D861B2A747936538EC83EDEBDC8C6424E3D0 (RegexInterpreter_tF3C74D72240962B960AE4D39D9CF1632C9C2982E * __this, const RuntimeMethod* method) { { Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_0 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runstack_7(); int32_t L_1 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runstackpos_8(); NullCheck(L_0); int32_t L_2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_1, (int32_t)1)); int32_t L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2)); return L_3; } } // System.Int32 System.Text.RegularExpressions.RegexInterpreter::StackPeek(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexInterpreter_StackPeek_mFA8013A28365F539B9083C906BEB80008AE281A0 (RegexInterpreter_tF3C74D72240962B960AE4D39D9CF1632C9C2982E * __this, int32_t ___i0, const RuntimeMethod* method) { { Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_0 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runstack_7(); int32_t L_1 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runstackpos_8(); int32_t L_2 = ___i0; NullCheck(L_0); int32_t L_3 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_1, (int32_t)L_2)), (int32_t)1)); int32_t L_4 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_3)); return L_4; } } // System.Int32 System.Text.RegularExpressions.RegexInterpreter::Operator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexInterpreter_Operator_m9C06EB53FFBB6722B2ACB95057BC30E0A9F05DFF (RegexInterpreter_tF3C74D72240962B960AE4D39D9CF1632C9C2982E * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_runoperator_18(); return L_0; } } // System.Int32 System.Text.RegularExpressions.RegexInterpreter::Operand(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexInterpreter_Operand_mB8AED0E2B8222A584A61D313DE9AB475724F50A0 (RegexInterpreter_tF3C74D72240962B960AE4D39D9CF1632C9C2982E * __this, int32_t ___i0, const RuntimeMethod* method) { { Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_0 = __this->get_runcodes_19(); int32_t L_1 = __this->get_runcodepos_20(); int32_t L_2 = ___i0; NullCheck(L_0); int32_t L_3 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_1, (int32_t)L_2)), (int32_t)1)); int32_t L_4 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_3)); return L_4; } } // System.Int32 System.Text.RegularExpressions.RegexInterpreter::Leftchars() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexInterpreter_Leftchars_mB50E0C06B5C05F48BBA69D21BFB6382705C696C4 (RegexInterpreter_tF3C74D72240962B960AE4D39D9CF1632C9C2982E * __this, const RuntimeMethod* method) { { int32_t L_0 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtextpos_4(); int32_t L_1 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtextbeg_0(); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)); } } // System.Int32 System.Text.RegularExpressions.RegexInterpreter::Rightchars() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexInterpreter_Rightchars_m2DEB5D856E0BEC8CFE39B2546B504CB2FCC1DC2C (RegexInterpreter_tF3C74D72240962B960AE4D39D9CF1632C9C2982E * __this, const RuntimeMethod* method) { { int32_t L_0 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtextend_1(); int32_t L_1 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtextpos_4(); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)); } } // System.Int32 System.Text.RegularExpressions.RegexInterpreter::Bump() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexInterpreter_Bump_m45DF8CEBA6E19FE27E10A87C89E5B2001FB37E85 (RegexInterpreter_tF3C74D72240962B960AE4D39D9CF1632C9C2982E * __this, const RuntimeMethod* method) { { bool L_0 = __this->get_runrtl_26(); if (L_0) { goto IL_000a; } } { return 1; } IL_000a: { return (-1); } } // System.Int32 System.Text.RegularExpressions.RegexInterpreter::Forwardchars() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexInterpreter_Forwardchars_mFD54A946FE00B2613D92F1CCAE7B53CDB4312420 (RegexInterpreter_tF3C74D72240962B960AE4D39D9CF1632C9C2982E * __this, const RuntimeMethod* method) { { bool L_0 = __this->get_runrtl_26(); if (L_0) { goto IL_0016; } } { int32_t L_1 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtextend_1(); int32_t L_2 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtextpos_4(); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_1, (int32_t)L_2)); } IL_0016: { int32_t L_3 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtextpos_4(); int32_t L_4 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtextbeg_0(); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_3, (int32_t)L_4)); } } // System.Char System.Text.RegularExpressions.RegexInterpreter::Forwardcharnext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar RegexInterpreter_Forwardcharnext_m39C5E9B8B3EDC556CE6A61C1957ACFD5F8ED025E (RegexInterpreter_tF3C74D72240962B960AE4D39D9CF1632C9C2982E * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } Il2CppChar V_0 = 0x0; int32_t V_1 = 0; Il2CppChar G_B3_0 = 0x0; { bool L_0 = __this->get_runrtl_26(); if (L_0) { goto IL_0026; } } { String_t* L_1 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtext_3(); int32_t L_2 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtextpos_4(); V_1 = L_2; int32_t L_3 = V_1; ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->set_runtextpos_4(((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1))); int32_t L_4 = V_1; NullCheck(L_1); Il2CppChar L_5; L_5 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_1, L_4, /*hidden argument*/NULL); G_B3_0 = L_5; goto IL_0042; } IL_0026: { String_t* L_6 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtext_3(); int32_t L_7 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtextpos_4(); V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_7, (int32_t)1)); int32_t L_8 = V_1; ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->set_runtextpos_4(L_8); int32_t L_9 = V_1; NullCheck(L_6); Il2CppChar L_10; L_10 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_6, L_9, /*hidden argument*/NULL); G_B3_0 = L_10; } IL_0042: { V_0 = G_B3_0; bool L_11 = __this->get_runci_27(); if (L_11) { goto IL_004d; } } { Il2CppChar L_12 = V_0; return L_12; } IL_004d: { Il2CppChar L_13 = V_0; CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_14 = __this->get_runculture_28(); IL2CPP_RUNTIME_CLASS_INIT(Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_il2cpp_TypeInfo_var); Il2CppChar L_15; L_15 = Char_ToLower_m42C052EB06C3F461C8CEBAD492E102EB721FDECE(L_13, L_14, /*hidden argument*/NULL); return L_15; } } // System.Boolean System.Text.RegularExpressions.RegexInterpreter::Stringmatch(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexInterpreter_Stringmatch_m81EA1913981000A8D944B5DA757813058F0F4ABD (RegexInterpreter_tF3C74D72240962B960AE4D39D9CF1632C9C2982E * __this, String_t* ___str0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; { bool L_0 = __this->get_runrtl_26(); if (L_0) { goto IL_002c; } } { int32_t L_1 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtextend_1(); int32_t L_2 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtextpos_4(); String_t* L_3 = ___str0; NullCheck(L_3); int32_t L_4; L_4 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_3, /*hidden argument*/NULL); int32_t L_5 = L_4; V_0 = L_5; if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_1, (int32_t)L_2))) >= ((int32_t)L_5))) { goto IL_0021; } } { return (bool)0; } IL_0021: { int32_t L_6 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtextpos_4(); int32_t L_7 = V_0; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)L_7)); goto IL_004c; } IL_002c: { int32_t L_8 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtextpos_4(); int32_t L_9 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtextbeg_0(); String_t* L_10 = ___str0; NullCheck(L_10); int32_t L_11; L_11 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_10, /*hidden argument*/NULL); int32_t L_12 = L_11; V_0 = L_12; if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_8, (int32_t)L_9))) >= ((int32_t)L_12))) { goto IL_0045; } } { return (bool)0; } IL_0045: { int32_t L_13 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtextpos_4(); V_1 = L_13; } IL_004c: { bool L_14 = __this->get_runci_27(); if (L_14) { goto IL_00a4; } } { goto IL_0075; } IL_0056: { String_t* L_15 = ___str0; int32_t L_16 = V_0; int32_t L_17 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_16, (int32_t)1)); V_0 = L_17; NullCheck(L_15); Il2CppChar L_18; L_18 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_15, L_17, /*hidden argument*/NULL); String_t* L_19 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtext_3(); int32_t L_20 = V_1; int32_t L_21 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_20, (int32_t)1)); V_1 = L_21; NullCheck(L_19); Il2CppChar L_22; L_22 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_19, L_21, /*hidden argument*/NULL); if ((((int32_t)L_18) == ((int32_t)L_22))) { goto IL_0075; } } { return (bool)0; } IL_0075: { int32_t L_23 = V_0; if (L_23) { goto IL_0056; } } { goto IL_00a7; } IL_007a: { String_t* L_24 = ___str0; int32_t L_25 = V_0; int32_t L_26 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_25, (int32_t)1)); V_0 = L_26; NullCheck(L_24); Il2CppChar L_27; L_27 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_24, L_26, /*hidden argument*/NULL); String_t* L_28 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtext_3(); int32_t L_29 = V_1; int32_t L_30 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_29, (int32_t)1)); V_1 = L_30; NullCheck(L_28); Il2CppChar L_31; L_31 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_28, L_30, /*hidden argument*/NULL); CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_32 = __this->get_runculture_28(); IL2CPP_RUNTIME_CLASS_INIT(Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_il2cpp_TypeInfo_var); Il2CppChar L_33; L_33 = Char_ToLower_m42C052EB06C3F461C8CEBAD492E102EB721FDECE(L_31, L_32, /*hidden argument*/NULL); if ((((int32_t)L_27) == ((int32_t)L_33))) { goto IL_00a4; } } { return (bool)0; } IL_00a4: { int32_t L_34 = V_0; if (L_34) { goto IL_007a; } } IL_00a7: { bool L_35 = __this->get_runrtl_26(); if (L_35) { goto IL_00b8; } } { int32_t L_36 = V_1; String_t* L_37 = ___str0; NullCheck(L_37); int32_t L_38; L_38 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_37, /*hidden argument*/NULL); V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_36, (int32_t)L_38)); } IL_00b8: { int32_t L_39 = V_1; ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->set_runtextpos_4(L_39); return (bool)1; } } // System.Boolean System.Text.RegularExpressions.RegexInterpreter::Refmatch(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexInterpreter_Refmatch_m5F44A3C001E919895A5A2988F16187069E45D75B (RegexInterpreter_tF3C74D72240962B960AE4D39D9CF1632C9C2982E * __this, int32_t ___index0, int32_t ___len1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; { bool L_0 = __this->get_runrtl_26(); if (L_0) { goto IL_0025; } } { int32_t L_1 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtextend_1(); int32_t L_2 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtextpos_4(); int32_t L_3 = ___len1; if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_1, (int32_t)L_2))) >= ((int32_t)L_3))) { goto IL_001a; } } { return (bool)0; } IL_001a: { int32_t L_4 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtextpos_4(); int32_t L_5 = ___len1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)L_5)); goto IL_003e; } IL_0025: { int32_t L_6 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtextpos_4(); int32_t L_7 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtextbeg_0(); int32_t L_8 = ___len1; if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)L_7))) >= ((int32_t)L_8))) { goto IL_0037; } } { return (bool)0; } IL_0037: { int32_t L_9 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtextpos_4(); V_1 = L_9; } IL_003e: { int32_t L_10 = ___index0; int32_t L_11 = ___len1; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)L_11)); int32_t L_12 = ___len1; V_0 = L_12; bool L_13 = __this->get_runci_27(); if (L_13) { goto IL_00b5; } } { goto IL_0072; } IL_004e: { String_t* L_14 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtext_3(); int32_t L_15 = V_2; int32_t L_16 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_15, (int32_t)1)); V_2 = L_16; NullCheck(L_14); Il2CppChar L_17; L_17 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_14, L_16, /*hidden argument*/NULL); String_t* L_18 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtext_3(); int32_t L_19 = V_1; int32_t L_20 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1)); V_1 = L_20; NullCheck(L_18); Il2CppChar L_21; L_21 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_18, L_20, /*hidden argument*/NULL); if ((((int32_t)L_17) == ((int32_t)L_21))) { goto IL_0072; } } { return (bool)0; } IL_0072: { int32_t L_22 = V_0; int32_t L_23 = L_22; V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_23, (int32_t)1)); if (L_23) { goto IL_004e; } } { goto IL_00bc; } IL_007b: { String_t* L_24 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtext_3(); int32_t L_25 = V_2; int32_t L_26 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_25, (int32_t)1)); V_2 = L_26; NullCheck(L_24); Il2CppChar L_27; L_27 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_24, L_26, /*hidden argument*/NULL); CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_28 = __this->get_runculture_28(); IL2CPP_RUNTIME_CLASS_INIT(Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_il2cpp_TypeInfo_var); Il2CppChar L_29; L_29 = Char_ToLower_m42C052EB06C3F461C8CEBAD492E102EB721FDECE(L_27, L_28, /*hidden argument*/NULL); String_t* L_30 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtext_3(); int32_t L_31 = V_1; int32_t L_32 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_31, (int32_t)1)); V_1 = L_32; NullCheck(L_30); Il2CppChar L_33; L_33 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_30, L_32, /*hidden argument*/NULL); CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_34 = __this->get_runculture_28(); Il2CppChar L_35; L_35 = Char_ToLower_m42C052EB06C3F461C8CEBAD492E102EB721FDECE(L_33, L_34, /*hidden argument*/NULL); if ((((int32_t)L_29) == ((int32_t)L_35))) { goto IL_00b5; } } { return (bool)0; } IL_00b5: { int32_t L_36 = V_0; int32_t L_37 = L_36; V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_37, (int32_t)1)); if (L_37) { goto IL_007b; } } IL_00bc: { bool L_38 = __this->get_runrtl_26(); if (L_38) { goto IL_00c8; } } { int32_t L_39 = V_1; int32_t L_40 = ___len1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_39, (int32_t)L_40)); } IL_00c8: { int32_t L_41 = V_1; ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->set_runtextpos_4(L_41); return (bool)1; } } // System.Void System.Text.RegularExpressions.RegexInterpreter::Backwardnext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexInterpreter_Backwardnext_m68F8015F83EA7DEBBDB6405A6EF9092E814D88EC (RegexInterpreter_tF3C74D72240962B960AE4D39D9CF1632C9C2982E * __this, const RuntimeMethod* method) { int32_t G_B2_0 = 0; RegexInterpreter_tF3C74D72240962B960AE4D39D9CF1632C9C2982E * G_B2_1 = NULL; int32_t G_B1_0 = 0; RegexInterpreter_tF3C74D72240962B960AE4D39D9CF1632C9C2982E * G_B1_1 = NULL; int32_t G_B3_0 = 0; int32_t G_B3_1 = 0; RegexInterpreter_tF3C74D72240962B960AE4D39D9CF1632C9C2982E * G_B3_2 = NULL; { int32_t L_0 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtextpos_4(); bool L_1 = __this->get_runrtl_26(); G_B1_0 = L_0; G_B1_1 = __this; if (L_1) { G_B2_0 = L_0; G_B2_1 = __this; goto IL_0012; } } { G_B3_0 = (-1); G_B3_1 = G_B1_0; G_B3_2 = G_B1_1; goto IL_0013; } IL_0012: { G_B3_0 = 1; G_B3_1 = G_B2_0; G_B3_2 = G_B2_1; } IL_0013: { NullCheck(G_B3_2); ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)G_B3_2)->set_runtextpos_4(((int32_t)il2cpp_codegen_add((int32_t)G_B3_1, (int32_t)G_B3_0))); return; } } // System.Char System.Text.RegularExpressions.RegexInterpreter::CharAt(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar RegexInterpreter_CharAt_mBC8ABA0BE4AC926938A4A4F6DEFB89437AEC3F6E (RegexInterpreter_tF3C74D72240962B960AE4D39D9CF1632C9C2982E * __this, int32_t ___j0, const RuntimeMethod* method) { { String_t* L_0 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtext_3(); int32_t L_1 = ___j0; NullCheck(L_0); Il2CppChar L_2; L_2 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_0, L_1, /*hidden argument*/NULL); return L_2; } } // System.Boolean System.Text.RegularExpressions.RegexInterpreter::FindFirstChar() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexInterpreter_FindFirstChar_m3112B4D64BF317FBEC9CD8DAE429A4199A3F6A93 (RegexInterpreter_tF3C74D72240962B960AE4D39D9CF1632C9C2982E * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; String_t* V_1 = NULL; Il2CppChar V_2 = 0x0; RegexInterpreter_tF3C74D72240962B960AE4D39D9CF1632C9C2982E * G_B32_0 = NULL; RegexInterpreter_tF3C74D72240962B960AE4D39D9CF1632C9C2982E * G_B31_0 = NULL; int32_t G_B33_0 = 0; RegexInterpreter_tF3C74D72240962B960AE4D39D9CF1632C9C2982E * G_B33_1 = NULL; { int32_t L_0 = __this->get_runanchors_25(); if (!((int32_t)((int32_t)L_0&(int32_t)((int32_t)53)))) { goto IL_0186; } } { RegexCode_tF1653432E8EEDED5AB9517D09CA84B5FAA3CC0D5 * L_1 = __this->get_runcode_22(); NullCheck(L_1); bool L_2 = L_1->get__rightToLeft_8(); if (L_2) { goto IL_00ba; } } { int32_t L_3 = __this->get_runanchors_25(); if (!((int32_t)((int32_t)L_3&(int32_t)1))) { goto IL_0036; } } { int32_t L_4 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtextpos_4(); int32_t L_5 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtextbeg_0(); if ((((int32_t)L_4) > ((int32_t)L_5))) { goto IL_004e; } } IL_0036: { int32_t L_6 = __this->get_runanchors_25(); if (!((int32_t)((int32_t)L_6&(int32_t)4))) { goto IL_005c; } } { int32_t L_7 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtextpos_4(); int32_t L_8 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtextstart_2(); if ((((int32_t)L_7) <= ((int32_t)L_8))) { goto IL_005c; } } IL_004e: { int32_t L_9 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtextend_1(); ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->set_runtextpos_4(L_9); return (bool)0; } IL_005c: { int32_t L_10 = __this->get_runanchors_25(); if (!((int32_t)((int32_t)L_10&(int32_t)((int32_t)16)))) { goto IL_008a; } } { int32_t L_11 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtextpos_4(); int32_t L_12 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtextend_1(); if ((((int32_t)L_11) >= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_12, (int32_t)1))))) { goto IL_008a; } } { int32_t L_13 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtextend_1(); ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->set_runtextpos_4(((int32_t)il2cpp_codegen_subtract((int32_t)L_13, (int32_t)1))); goto IL_0158; } IL_008a: { int32_t L_14 = __this->get_runanchors_25(); if (!((int32_t)((int32_t)L_14&(int32_t)((int32_t)32)))) { goto IL_0158; } } { int32_t L_15 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtextpos_4(); int32_t L_16 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtextend_1(); if ((((int32_t)L_15) >= ((int32_t)L_16))) { goto IL_0158; } } { int32_t L_17 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtextend_1(); ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->set_runtextpos_4(L_17); goto IL_0158; } IL_00ba: { int32_t L_18 = __this->get_runanchors_25(); if (!((int32_t)((int32_t)L_18&(int32_t)((int32_t)32)))) { goto IL_00d3; } } { int32_t L_19 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtextpos_4(); int32_t L_20 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtextend_1(); if ((((int32_t)L_19) < ((int32_t)L_20))) { goto IL_0126; } } IL_00d3: { int32_t L_21 = __this->get_runanchors_25(); if (!((int32_t)((int32_t)L_21&(int32_t)((int32_t)16)))) { goto IL_010e; } } { int32_t L_22 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtextpos_4(); int32_t L_23 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtextend_1(); if ((((int32_t)L_22) < ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_23, (int32_t)1))))) { goto IL_0126; } } { int32_t L_24 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtextpos_4(); int32_t L_25 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtextend_1(); if ((!(((uint32_t)L_24) == ((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_25, (int32_t)1)))))) { goto IL_010e; } } { int32_t L_26 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtextpos_4(); Il2CppChar L_27; L_27 = RegexInterpreter_CharAt_mBC8ABA0BE4AC926938A4A4F6DEFB89437AEC3F6E(__this, L_26, /*hidden argument*/NULL); if ((!(((uint32_t)L_27) == ((uint32_t)((int32_t)10))))) { goto IL_0126; } } IL_010e: { int32_t L_28 = __this->get_runanchors_25(); if (!((int32_t)((int32_t)L_28&(int32_t)4))) { goto IL_0134; } } { int32_t L_29 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtextpos_4(); int32_t L_30 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtextstart_2(); if ((((int32_t)L_29) >= ((int32_t)L_30))) { goto IL_0134; } } IL_0126: { int32_t L_31 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtextbeg_0(); ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->set_runtextpos_4(L_31); return (bool)0; } IL_0134: { int32_t L_32 = __this->get_runanchors_25(); if (!((int32_t)((int32_t)L_32&(int32_t)1))) { goto IL_0158; } } { int32_t L_33 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtextpos_4(); int32_t L_34 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtextbeg_0(); if ((((int32_t)L_33) <= ((int32_t)L_34))) { goto IL_0158; } } { int32_t L_35 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtextbeg_0(); ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->set_runtextpos_4(L_35); } IL_0158: { RegexBoyerMoore_t43FE488EFF3EE20D1092216B7E62D954F78167D2 * L_36 = __this->get_runbmPrefix_24(); if (!L_36) { goto IL_0184; } } { RegexBoyerMoore_t43FE488EFF3EE20D1092216B7E62D954F78167D2 * L_37 = __this->get_runbmPrefix_24(); String_t* L_38 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtext_3(); int32_t L_39 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtextpos_4(); int32_t L_40 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtextbeg_0(); int32_t L_41 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtextend_1(); NullCheck(L_37); bool L_42; L_42 = RegexBoyerMoore_IsMatch_m37FDC206D86DD3C91A745BE15731677FE01F624B(L_37, L_38, L_39, L_40, L_41, /*hidden argument*/NULL); return L_42; } IL_0184: { return (bool)1; } IL_0186: { RegexBoyerMoore_t43FE488EFF3EE20D1092216B7E62D954F78167D2 * L_43 = __this->get_runbmPrefix_24(); if (!L_43) { goto IL_01e5; } } { RegexBoyerMoore_t43FE488EFF3EE20D1092216B7E62D954F78167D2 * L_44 = __this->get_runbmPrefix_24(); String_t* L_45 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtext_3(); int32_t L_46 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtextpos_4(); int32_t L_47 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtextbeg_0(); int32_t L_48 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtextend_1(); NullCheck(L_44); int32_t L_49; L_49 = RegexBoyerMoore_Scan_m8C2A8FE0B6CFE8C7844AF8F2FEA79532935BAE43(L_44, L_45, L_46, L_47, L_48, /*hidden argument*/NULL); ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->set_runtextpos_4(L_49); int32_t L_50 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtextpos_4(); if ((!(((uint32_t)L_50) == ((uint32_t)(-1))))) { goto IL_01e3; } } { RegexCode_tF1653432E8EEDED5AB9517D09CA84B5FAA3CC0D5 * L_51 = __this->get_runcode_22(); NullCheck(L_51); bool L_52 = L_51->get__rightToLeft_8(); G_B31_0 = __this; if (L_52) { G_B32_0 = __this; goto IL_01d6; } } { int32_t L_53 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtextend_1(); G_B33_0 = L_53; G_B33_1 = G_B31_0; goto IL_01dc; } IL_01d6: { int32_t L_54 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtextbeg_0(); G_B33_0 = L_54; G_B33_1 = G_B32_0; } IL_01dc: { NullCheck(G_B33_1); ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)G_B33_1)->set_runtextpos_4(G_B33_0); return (bool)0; } IL_01e3: { return (bool)1; } IL_01e5: { RegexPrefix_t1563C82A76799B0B018F5EBD6EC068158BE50301 * L_55 = __this->get_runfcPrefix_23(); if (L_55) { goto IL_01ef; } } { return (bool)1; } IL_01ef: { RegexCode_tF1653432E8EEDED5AB9517D09CA84B5FAA3CC0D5 * L_56 = __this->get_runcode_22(); NullCheck(L_56); bool L_57 = L_56->get__rightToLeft_8(); __this->set_runrtl_26(L_57); RegexPrefix_t1563C82A76799B0B018F5EBD6EC068158BE50301 * L_58 = __this->get_runfcPrefix_23(); NullCheck(L_58); bool L_59; L_59 = RegexPrefix_get_CaseInsensitive_mB4CF8FBFABE26F206AF6324A0C87DFB34C051A95_inline(L_58, /*hidden argument*/NULL); __this->set_runci_27(L_59); RegexPrefix_t1563C82A76799B0B018F5EBD6EC068158BE50301 * L_60 = __this->get_runfcPrefix_23(); NullCheck(L_60); String_t* L_61; L_61 = RegexPrefix_get_Prefix_m6806C1EEE5B8973606B320A9C4CD5A9E91466F34_inline(L_60, /*hidden argument*/NULL); V_1 = L_61; String_t* L_62 = V_1; IL2CPP_RUNTIME_CLASS_INIT(RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5_il2cpp_TypeInfo_var); bool L_63; L_63 = RegexCharClass_IsSingleton_mF6500F4A47D3E44CDE29C0BA21AC111282C50737(L_62, /*hidden argument*/NULL); if (!L_63) { goto IL_0250; } } { String_t* L_64 = V_1; IL2CPP_RUNTIME_CLASS_INIT(RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5_il2cpp_TypeInfo_var); Il2CppChar L_65; L_65 = RegexCharClass_SingletonChar_m8D1E6205BE062B72C10A417C0BBE130888FAF3FF(L_64, /*hidden argument*/NULL); V_2 = L_65; int32_t L_66; L_66 = RegexInterpreter_Forwardchars_mFD54A946FE00B2613D92F1CCAE7B53CDB4312420(__this, /*hidden argument*/NULL); V_0 = L_66; goto IL_024a; } IL_0235: { Il2CppChar L_67 = V_2; Il2CppChar L_68; L_68 = RegexInterpreter_Forwardcharnext_m39C5E9B8B3EDC556CE6A61C1957ACFD5F8ED025E(__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_67) == ((uint32_t)L_68)))) { goto IL_0246; } } { RegexInterpreter_Backwardnext_m68F8015F83EA7DEBBDB6405A6EF9092E814D88EC(__this, /*hidden argument*/NULL); return (bool)1; } IL_0246: { int32_t L_69 = V_0; V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_69, (int32_t)1)); } IL_024a: { int32_t L_70 = V_0; if ((((int32_t)L_70) > ((int32_t)0))) { goto IL_0235; } } { goto IL_0277; } IL_0250: { int32_t L_71; L_71 = RegexInterpreter_Forwardchars_mFD54A946FE00B2613D92F1CCAE7B53CDB4312420(__this, /*hidden argument*/NULL); V_0 = L_71; goto IL_0273; } IL_0259: { Il2CppChar L_72; L_72 = RegexInterpreter_Forwardcharnext_m39C5E9B8B3EDC556CE6A61C1957ACFD5F8ED025E(__this, /*hidden argument*/NULL); String_t* L_73 = V_1; IL2CPP_RUNTIME_CLASS_INIT(RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5_il2cpp_TypeInfo_var); bool L_74; L_74 = RegexCharClass_CharInClass_m255B7683478670C002F04238394193EEFA126AE8(L_72, L_73, /*hidden argument*/NULL); if (!L_74) { goto IL_026f; } } { RegexInterpreter_Backwardnext_m68F8015F83EA7DEBBDB6405A6EF9092E814D88EC(__this, /*hidden argument*/NULL); return (bool)1; } IL_026f: { int32_t L_75 = V_0; V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_75, (int32_t)1)); } IL_0273: { int32_t L_76 = V_0; if ((((int32_t)L_76) > ((int32_t)0))) { goto IL_0259; } } IL_0277: { return (bool)0; } } // System.Void System.Text.RegularExpressions.RegexInterpreter::Go() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexInterpreter_Go_m32838D966B426A327995246847A272491F3359F2 (RegexInterpreter_tF3C74D72240962B960AE4D39D9CF1632C9C2982E * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5_il2cpp_TypeInfo_var); 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 V_9 = 0; int32_t V_10 = 0; int32_t V_11 = 0; Il2CppChar V_12 = 0x0; int32_t V_13 = 0; Il2CppChar V_14 = 0x0; int32_t V_15 = 0; String_t* V_16 = NULL; int32_t V_17 = 0; Il2CppChar V_18 = 0x0; int32_t V_19 = 0; int32_t V_20 = 0; Il2CppChar V_21 = 0x0; int32_t V_22 = 0; int32_t V_23 = 0; String_t* V_24 = NULL; int32_t V_25 = 0; int32_t V_26 = 0; int32_t V_27 = 0; int32_t V_28 = 0; int32_t V_29 = 0; int32_t V_30 = 0; int32_t V_31 = 0; int32_t V_32 = 0; int32_t V_33 = 0; int32_t V_34 = 0; int32_t V_35 = 0; int32_t V_36 = 0; int32_t V_37 = 0; { RegexInterpreter_Goto_mAB873EAF14CC58B684C91137D6E8817EB47FAB48(__this, 0, /*hidden argument*/NULL); } IL_0007: { RegexRunner_CheckTimeout_mBE5718B5085C46A4B1B9498DE83B7C4D22E4C27C(__this, /*hidden argument*/NULL); int32_t L_0; L_0 = RegexInterpreter_Operator_m9C06EB53FFBB6722B2ACB95057BC30E0A9F05DFF_inline(__this, /*hidden argument*/NULL); V_0 = L_0; int32_t L_1 = V_0; switch (L_1) { case 0: { goto IL_09f0; } case 1: { goto IL_0a35; } case 2: { goto IL_0a7a; } case 3: { goto IL_0aca; } case 4: { goto IL_0b3e; } case 5: { goto IL_0bb2; } case 6: { goto IL_0cb9; } case 7: { goto IL_0cb9; } case 8: { goto IL_0cf5; } case 9: { goto IL_08ed; } case 10: { goto IL_0918; } case 11: { goto IL_0943; } case 12: { goto IL_0979; } case 13: { goto IL_099e; } case 14: { goto IL_0780; } case 15: { goto IL_07a9; } case 16: { goto IL_07d0; } case 17: { goto IL_07f8; } case 18: { goto IL_0870; } case 19: { goto IL_0887; } case 20: { goto IL_08a3; } case 21: { goto IL_08d6; } case 22: { goto IL_0e4e; } case 23: { goto IL_01b4; } case 24: { goto IL_032c; } case 25: { goto IL_03d2; } case 26: { goto IL_04ab; } case 27: { goto IL_0486; } case 28: { goto IL_04e3; } case 29: { goto IL_05d3; } case 30: { goto IL_020d; } case 31: { goto IL_01f0; } case 32: { goto IL_0270; } case 33: { goto IL_0230; } case 34: { goto IL_06d6; } case 35: { goto IL_0705; } case 36: { goto IL_0734; } case 37: { goto IL_0196; } case 38: { goto IL_0184; } case 39: { goto IL_0e3e; } case 40: { goto IL_0183; } case 41: { goto IL_0820; } case 42: { goto IL_0848; } } } { int32_t L_2 = V_0; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_2, (int32_t)((int32_t)131)))) { case 0: { goto IL_0c31; } case 1: { goto IL_0c31; } case 2: { goto IL_0c75; } case 3: { goto IL_0d31; } case 4: { goto IL_0d88; } case 5: { goto IL_0ddf; } case 6: { goto IL_0e3e; } case 7: { goto IL_0e3e; } case 8: { goto IL_0e3e; } case 9: { goto IL_0e3e; } case 10: { goto IL_0e3e; } case 11: { goto IL_0e3e; } case 12: { goto IL_0e3e; } case 13: { goto IL_0e3e; } case 14: { goto IL_0e3e; } case 15: { goto IL_0e3e; } case 16: { goto IL_0e3e; } case 17: { goto IL_0e3e; } case 18: { goto IL_0e3e; } case 19: { goto IL_0e3e; } case 20: { goto IL_01cc; } case 21: { goto IL_0389; } case 22: { goto IL_042e; } case 23: { goto IL_04d7; } case 24: { goto IL_04cb; } case 25: { goto IL_0556; } case 26: { goto IL_0636; } case 27: { goto IL_0225; } case 28: { goto IL_0225; } case 29: { goto IL_02ef; } case 30: { goto IL_0259; } case 31: { goto IL_06f9; } case 32: { goto IL_0e3e; } case 33: { goto IL_075f; } } } { int32_t L_3 = V_0; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_3, (int32_t)((int32_t)280)))) { case 0: { goto IL_03bb; } case 1: { goto IL_0469; } case 2: { goto IL_0e3e; } case 3: { goto IL_0e3e; } case 4: { goto IL_05b4; } case 5: { goto IL_06af; } } } { goto IL_0e3e; } IL_0183: { return; } IL_0184: { int32_t L_4; L_4 = RegexInterpreter_Operand_mB8AED0E2B8222A584A61D313DE9AB475724F50A0(__this, 0, /*hidden argument*/NULL); RegexInterpreter_Goto_mAB873EAF14CC58B684C91137D6E8817EB47FAB48(__this, L_4, /*hidden argument*/NULL); goto IL_0007; } IL_0196: { int32_t L_5; L_5 = RegexInterpreter_Operand_mB8AED0E2B8222A584A61D313DE9AB475724F50A0(__this, 0, /*hidden argument*/NULL); bool L_6; L_6 = RegexRunner_IsMatched_mCC5330346DACE22EAA86DD072CD36752023C66E9(__this, L_5, /*hidden argument*/NULL); if (!L_6) { goto IL_0e4e; } } { RegexInterpreter_Advance_m47537FC4AB2CB92D2D9100C755D936DED76B03EE(__this, 1, /*hidden argument*/NULL); goto IL_0007; } IL_01b4: { int32_t L_7; L_7 = RegexInterpreter_Textpos_mCCC8ABAE83D37BA6F060242E1ECAC7D91D8910F5_inline(__this, /*hidden argument*/NULL); RegexInterpreter_TrackPush_m2DA2DB51ACD26004F4FB8B8D80EEC20D4AA14C49(__this, L_7, /*hidden argument*/NULL); RegexInterpreter_Advance_m47537FC4AB2CB92D2D9100C755D936DED76B03EE(__this, 1, /*hidden argument*/NULL); goto IL_0007; } IL_01cc: { RegexInterpreter_TrackPop_m8E31A4201CD48C0888BE0DB6EB317036E7E7C4D8(__this, /*hidden argument*/NULL); int32_t L_8; L_8 = RegexInterpreter_TrackPeek_mFB63C0E3D25EEEEC1DBD5FF5601E59C6F0414396(__this, /*hidden argument*/NULL); RegexInterpreter_Textto_m874B113DFF6381DFC1BF8A8F7E6D79B819CF06AE_inline(__this, L_8, /*hidden argument*/NULL); int32_t L_9; L_9 = RegexInterpreter_Operand_mB8AED0E2B8222A584A61D313DE9AB475724F50A0(__this, 0, /*hidden argument*/NULL); RegexInterpreter_Goto_mAB873EAF14CC58B684C91137D6E8817EB47FAB48(__this, L_9, /*hidden argument*/NULL); goto IL_0007; } IL_01f0: { int32_t L_10; L_10 = RegexInterpreter_Textpos_mCCC8ABAE83D37BA6F060242E1ECAC7D91D8910F5_inline(__this, /*hidden argument*/NULL); RegexInterpreter_StackPush_m488F7B4FABE6E66EF8D28F070303C7B344A9217F(__this, L_10, /*hidden argument*/NULL); RegexInterpreter_TrackPush_mBE985076C7632B82D188C6484BD6C7980C392379(__this, /*hidden argument*/NULL); RegexInterpreter_Advance_mC3549A945557AD11D80890E0DCBC6D53860A97FE(__this, /*hidden argument*/NULL); goto IL_0007; } IL_020d: { RegexInterpreter_StackPush_m488F7B4FABE6E66EF8D28F070303C7B344A9217F(__this, (-1), /*hidden argument*/NULL); RegexInterpreter_TrackPush_mBE985076C7632B82D188C6484BD6C7980C392379(__this, /*hidden argument*/NULL); RegexInterpreter_Advance_mC3549A945557AD11D80890E0DCBC6D53860A97FE(__this, /*hidden argument*/NULL); goto IL_0007; } IL_0225: { RegexInterpreter_StackPop_m28CD98B18B8010F9398FAB5A1C0CB3E220FB0A13(__this, /*hidden argument*/NULL); goto IL_0e4e; } IL_0230: { RegexInterpreter_StackPop_m28CD98B18B8010F9398FAB5A1C0CB3E220FB0A13(__this, /*hidden argument*/NULL); int32_t L_11; L_11 = RegexInterpreter_StackPeek_mE0B2D861B2A747936538EC83EDEBDC8C6424E3D0(__this, /*hidden argument*/NULL); RegexInterpreter_TrackPush_m2DA2DB51ACD26004F4FB8B8D80EEC20D4AA14C49(__this, L_11, /*hidden argument*/NULL); int32_t L_12; L_12 = RegexInterpreter_StackPeek_mE0B2D861B2A747936538EC83EDEBDC8C6424E3D0(__this, /*hidden argument*/NULL); RegexInterpreter_Textto_m874B113DFF6381DFC1BF8A8F7E6D79B819CF06AE_inline(__this, L_12, /*hidden argument*/NULL); RegexInterpreter_Advance_mC3549A945557AD11D80890E0DCBC6D53860A97FE(__this, /*hidden argument*/NULL); goto IL_0007; } IL_0259: { RegexInterpreter_TrackPop_m8E31A4201CD48C0888BE0DB6EB317036E7E7C4D8(__this, /*hidden argument*/NULL); int32_t L_13; L_13 = RegexInterpreter_TrackPeek_mFB63C0E3D25EEEEC1DBD5FF5601E59C6F0414396(__this, /*hidden argument*/NULL); RegexInterpreter_StackPush_m488F7B4FABE6E66EF8D28F070303C7B344A9217F(__this, L_13, /*hidden argument*/NULL); goto IL_0e4e; } IL_0270: { int32_t L_14; L_14 = RegexInterpreter_Operand_mB8AED0E2B8222A584A61D313DE9AB475724F50A0(__this, 1, /*hidden argument*/NULL); if ((((int32_t)L_14) == ((int32_t)(-1)))) { goto IL_028c; } } { int32_t L_15; L_15 = RegexInterpreter_Operand_mB8AED0E2B8222A584A61D313DE9AB475724F50A0(__this, 1, /*hidden argument*/NULL); bool L_16; L_16 = RegexRunner_IsMatched_mCC5330346DACE22EAA86DD072CD36752023C66E9(__this, L_15, /*hidden argument*/NULL); if (!L_16) { goto IL_0e4e; } } IL_028c: { RegexInterpreter_StackPop_m28CD98B18B8010F9398FAB5A1C0CB3E220FB0A13(__this, /*hidden argument*/NULL); int32_t L_17; L_17 = RegexInterpreter_Operand_mB8AED0E2B8222A584A61D313DE9AB475724F50A0(__this, 1, /*hidden argument*/NULL); if ((((int32_t)L_17) == ((int32_t)(-1)))) { goto IL_02be; } } { int32_t L_18; L_18 = RegexInterpreter_Operand_mB8AED0E2B8222A584A61D313DE9AB475724F50A0(__this, 0, /*hidden argument*/NULL); int32_t L_19; L_19 = RegexInterpreter_Operand_mB8AED0E2B8222A584A61D313DE9AB475724F50A0(__this, 1, /*hidden argument*/NULL); int32_t L_20; L_20 = RegexInterpreter_StackPeek_mE0B2D861B2A747936538EC83EDEBDC8C6424E3D0(__this, /*hidden argument*/NULL); int32_t L_21; L_21 = RegexInterpreter_Textpos_mCCC8ABAE83D37BA6F060242E1ECAC7D91D8910F5_inline(__this, /*hidden argument*/NULL); RegexRunner_TransferCapture_mBD3BA00B949753D1C0A142776C4EF3796DBC627B(__this, L_18, L_19, L_20, L_21, /*hidden argument*/NULL); goto IL_02d7; } IL_02be: { int32_t L_22; L_22 = RegexInterpreter_Operand_mB8AED0E2B8222A584A61D313DE9AB475724F50A0(__this, 0, /*hidden argument*/NULL); int32_t L_23; L_23 = RegexInterpreter_StackPeek_mE0B2D861B2A747936538EC83EDEBDC8C6424E3D0(__this, /*hidden argument*/NULL); int32_t L_24; L_24 = RegexInterpreter_Textpos_mCCC8ABAE83D37BA6F060242E1ECAC7D91D8910F5_inline(__this, /*hidden argument*/NULL); RegexRunner_Capture_mAC8B534A534941D5003730CA28B41F4082CF45C0(__this, L_22, L_23, L_24, /*hidden argument*/NULL); } IL_02d7: { int32_t L_25; L_25 = RegexInterpreter_StackPeek_mE0B2D861B2A747936538EC83EDEBDC8C6424E3D0(__this, /*hidden argument*/NULL); RegexInterpreter_TrackPush_m2DA2DB51ACD26004F4FB8B8D80EEC20D4AA14C49(__this, L_25, /*hidden argument*/NULL); RegexInterpreter_Advance_m47537FC4AB2CB92D2D9100C755D936DED76B03EE(__this, 2, /*hidden argument*/NULL); goto IL_0007; } IL_02ef: { RegexInterpreter_TrackPop_m8E31A4201CD48C0888BE0DB6EB317036E7E7C4D8(__this, /*hidden argument*/NULL); int32_t L_26; L_26 = RegexInterpreter_TrackPeek_mFB63C0E3D25EEEEC1DBD5FF5601E59C6F0414396(__this, /*hidden argument*/NULL); RegexInterpreter_StackPush_m488F7B4FABE6E66EF8D28F070303C7B344A9217F(__this, L_26, /*hidden argument*/NULL); RegexRunner_Uncapture_mAEA536C22A1DD0BCE123A04A4BCFD1A8BE8D1F7B(__this, /*hidden argument*/NULL); int32_t L_27; L_27 = RegexInterpreter_Operand_mB8AED0E2B8222A584A61D313DE9AB475724F50A0(__this, 0, /*hidden argument*/NULL); if ((((int32_t)L_27) == ((int32_t)(-1)))) { goto IL_0e4e; } } { int32_t L_28; L_28 = RegexInterpreter_Operand_mB8AED0E2B8222A584A61D313DE9AB475724F50A0(__this, 1, /*hidden argument*/NULL); if ((((int32_t)L_28) == ((int32_t)(-1)))) { goto IL_0e4e; } } { RegexRunner_Uncapture_mAEA536C22A1DD0BCE123A04A4BCFD1A8BE8D1F7B(__this, /*hidden argument*/NULL); goto IL_0e4e; } IL_032c: { RegexInterpreter_StackPop_m28CD98B18B8010F9398FAB5A1C0CB3E220FB0A13(__this, /*hidden argument*/NULL); int32_t L_29; L_29 = RegexInterpreter_Textpos_mCCC8ABAE83D37BA6F060242E1ECAC7D91D8910F5_inline(__this, /*hidden argument*/NULL); int32_t L_30; L_30 = RegexInterpreter_StackPeek_mE0B2D861B2A747936538EC83EDEBDC8C6424E3D0(__this, /*hidden argument*/NULL); if (!((int32_t)il2cpp_codegen_subtract((int32_t)L_29, (int32_t)L_30))) { goto IL_0371; } } { int32_t L_31; L_31 = RegexInterpreter_StackPeek_mE0B2D861B2A747936538EC83EDEBDC8C6424E3D0(__this, /*hidden argument*/NULL); int32_t L_32; L_32 = RegexInterpreter_Textpos_mCCC8ABAE83D37BA6F060242E1ECAC7D91D8910F5_inline(__this, /*hidden argument*/NULL); RegexInterpreter_TrackPush_m874CB8F853DD4EB0FAD4A2DEF9CC2EAC3DD5BA5E(__this, L_31, L_32, /*hidden argument*/NULL); int32_t L_33; L_33 = RegexInterpreter_Textpos_mCCC8ABAE83D37BA6F060242E1ECAC7D91D8910F5_inline(__this, /*hidden argument*/NULL); RegexInterpreter_StackPush_m488F7B4FABE6E66EF8D28F070303C7B344A9217F(__this, L_33, /*hidden argument*/NULL); int32_t L_34; L_34 = RegexInterpreter_Operand_mB8AED0E2B8222A584A61D313DE9AB475724F50A0(__this, 0, /*hidden argument*/NULL); RegexInterpreter_Goto_mAB873EAF14CC58B684C91137D6E8817EB47FAB48(__this, L_34, /*hidden argument*/NULL); goto IL_0007; } IL_0371: { int32_t L_35; L_35 = RegexInterpreter_StackPeek_mE0B2D861B2A747936538EC83EDEBDC8C6424E3D0(__this, /*hidden argument*/NULL); RegexInterpreter_TrackPush2_m490912B4D5B2E19FA2739EA0211FA91DA6423634(__this, L_35, /*hidden argument*/NULL); RegexInterpreter_Advance_m47537FC4AB2CB92D2D9100C755D936DED76B03EE(__this, 1, /*hidden argument*/NULL); goto IL_0007; } IL_0389: { RegexInterpreter_TrackPop_mBE47D7E983B6BD0C45F7F376AA0272B0827AB4E4(__this, 2, /*hidden argument*/NULL); RegexInterpreter_StackPop_m28CD98B18B8010F9398FAB5A1C0CB3E220FB0A13(__this, /*hidden argument*/NULL); int32_t L_36; L_36 = RegexInterpreter_TrackPeek_m946313A941F42F58C555593B8CD2C00E702400AB(__this, 1, /*hidden argument*/NULL); RegexInterpreter_Textto_m874B113DFF6381DFC1BF8A8F7E6D79B819CF06AE_inline(__this, L_36, /*hidden argument*/NULL); int32_t L_37; L_37 = RegexInterpreter_TrackPeek_mFB63C0E3D25EEEEC1DBD5FF5601E59C6F0414396(__this, /*hidden argument*/NULL); RegexInterpreter_TrackPush2_m490912B4D5B2E19FA2739EA0211FA91DA6423634(__this, L_37, /*hidden argument*/NULL); RegexInterpreter_Advance_m47537FC4AB2CB92D2D9100C755D936DED76B03EE(__this, 1, /*hidden argument*/NULL); goto IL_0007; } IL_03bb: { RegexInterpreter_TrackPop_m8E31A4201CD48C0888BE0DB6EB317036E7E7C4D8(__this, /*hidden argument*/NULL); int32_t L_38; L_38 = RegexInterpreter_TrackPeek_mFB63C0E3D25EEEEC1DBD5FF5601E59C6F0414396(__this, /*hidden argument*/NULL); RegexInterpreter_StackPush_m488F7B4FABE6E66EF8D28F070303C7B344A9217F(__this, L_38, /*hidden argument*/NULL); goto IL_0e4e; } IL_03d2: { RegexInterpreter_StackPop_m28CD98B18B8010F9398FAB5A1C0CB3E220FB0A13(__this, /*hidden argument*/NULL); int32_t L_39; L_39 = RegexInterpreter_StackPeek_mE0B2D861B2A747936538EC83EDEBDC8C6424E3D0(__this, /*hidden argument*/NULL); V_1 = L_39; int32_t L_40; L_40 = RegexInterpreter_Textpos_mCCC8ABAE83D37BA6F060242E1ECAC7D91D8910F5_inline(__this, /*hidden argument*/NULL); int32_t L_41 = V_1; if ((((int32_t)L_40) == ((int32_t)L_41))) { goto IL_040f; } } { int32_t L_42 = V_1; if ((((int32_t)L_42) == ((int32_t)(-1)))) { goto IL_03fb; } } { int32_t L_43 = V_1; int32_t L_44; L_44 = RegexInterpreter_Textpos_mCCC8ABAE83D37BA6F060242E1ECAC7D91D8910F5_inline(__this, /*hidden argument*/NULL); RegexInterpreter_TrackPush_m874CB8F853DD4EB0FAD4A2DEF9CC2EAC3DD5BA5E(__this, L_43, L_44, /*hidden argument*/NULL); goto IL_0422; } IL_03fb: { int32_t L_45; L_45 = RegexInterpreter_Textpos_mCCC8ABAE83D37BA6F060242E1ECAC7D91D8910F5_inline(__this, /*hidden argument*/NULL); int32_t L_46; L_46 = RegexInterpreter_Textpos_mCCC8ABAE83D37BA6F060242E1ECAC7D91D8910F5_inline(__this, /*hidden argument*/NULL); RegexInterpreter_TrackPush_m874CB8F853DD4EB0FAD4A2DEF9CC2EAC3DD5BA5E(__this, L_45, L_46, /*hidden argument*/NULL); goto IL_0422; } IL_040f: { int32_t L_47 = V_1; RegexInterpreter_StackPush_m488F7B4FABE6E66EF8D28F070303C7B344A9217F(__this, L_47, /*hidden argument*/NULL); int32_t L_48; L_48 = RegexInterpreter_StackPeek_mE0B2D861B2A747936538EC83EDEBDC8C6424E3D0(__this, /*hidden argument*/NULL); RegexInterpreter_TrackPush2_m490912B4D5B2E19FA2739EA0211FA91DA6423634(__this, L_48, /*hidden argument*/NULL); } IL_0422: { RegexInterpreter_Advance_m47537FC4AB2CB92D2D9100C755D936DED76B03EE(__this, 1, /*hidden argument*/NULL); goto IL_0007; } IL_042e: { RegexInterpreter_TrackPop_mBE47D7E983B6BD0C45F7F376AA0272B0827AB4E4(__this, 2, /*hidden argument*/NULL); int32_t L_49; L_49 = RegexInterpreter_TrackPeek_m946313A941F42F58C555593B8CD2C00E702400AB(__this, 1, /*hidden argument*/NULL); V_2 = L_49; int32_t L_50; L_50 = RegexInterpreter_TrackPeek_mFB63C0E3D25EEEEC1DBD5FF5601E59C6F0414396(__this, /*hidden argument*/NULL); RegexInterpreter_TrackPush2_m490912B4D5B2E19FA2739EA0211FA91DA6423634(__this, L_50, /*hidden argument*/NULL); int32_t L_51 = V_2; RegexInterpreter_StackPush_m488F7B4FABE6E66EF8D28F070303C7B344A9217F(__this, L_51, /*hidden argument*/NULL); int32_t L_52 = V_2; RegexInterpreter_Textto_m874B113DFF6381DFC1BF8A8F7E6D79B819CF06AE_inline(__this, L_52, /*hidden argument*/NULL); int32_t L_53; L_53 = RegexInterpreter_Operand_mB8AED0E2B8222A584A61D313DE9AB475724F50A0(__this, 0, /*hidden argument*/NULL); RegexInterpreter_Goto_mAB873EAF14CC58B684C91137D6E8817EB47FAB48(__this, L_53, /*hidden argument*/NULL); goto IL_0007; } IL_0469: { RegexInterpreter_StackPop_m28CD98B18B8010F9398FAB5A1C0CB3E220FB0A13(__this, /*hidden argument*/NULL); RegexInterpreter_TrackPop_m8E31A4201CD48C0888BE0DB6EB317036E7E7C4D8(__this, /*hidden argument*/NULL); int32_t L_54; L_54 = RegexInterpreter_TrackPeek_mFB63C0E3D25EEEEC1DBD5FF5601E59C6F0414396(__this, /*hidden argument*/NULL); RegexInterpreter_StackPush_m488F7B4FABE6E66EF8D28F070303C7B344A9217F(__this, L_54, /*hidden argument*/NULL); goto IL_0e4e; } IL_0486: { int32_t L_55; L_55 = RegexInterpreter_Textpos_mCCC8ABAE83D37BA6F060242E1ECAC7D91D8910F5_inline(__this, /*hidden argument*/NULL); int32_t L_56; L_56 = RegexInterpreter_Operand_mB8AED0E2B8222A584A61D313DE9AB475724F50A0(__this, 0, /*hidden argument*/NULL); RegexInterpreter_StackPush_m46ADD790ADB62A6FFFC56ACC93A5BFB11578A45B(__this, L_55, L_56, /*hidden argument*/NULL); RegexInterpreter_TrackPush_mBE985076C7632B82D188C6484BD6C7980C392379(__this, /*hidden argument*/NULL); RegexInterpreter_Advance_m47537FC4AB2CB92D2D9100C755D936DED76B03EE(__this, 1, /*hidden argument*/NULL); goto IL_0007; } IL_04ab: { int32_t L_57; L_57 = RegexInterpreter_Operand_mB8AED0E2B8222A584A61D313DE9AB475724F50A0(__this, 0, /*hidden argument*/NULL); RegexInterpreter_StackPush_m46ADD790ADB62A6FFFC56ACC93A5BFB11578A45B(__this, (-1), L_57, /*hidden argument*/NULL); RegexInterpreter_TrackPush_mBE985076C7632B82D188C6484BD6C7980C392379(__this, /*hidden argument*/NULL); RegexInterpreter_Advance_m47537FC4AB2CB92D2D9100C755D936DED76B03EE(__this, 1, /*hidden argument*/NULL); goto IL_0007; } IL_04cb: { RegexInterpreter_StackPop_m1DBCCF39146C4C13FEBABCF7139CDAF89AB339ED(__this, 2, /*hidden argument*/NULL); goto IL_0e4e; } IL_04d7: { RegexInterpreter_StackPop_m1DBCCF39146C4C13FEBABCF7139CDAF89AB339ED(__this, 2, /*hidden argument*/NULL); goto IL_0e4e; } IL_04e3: { RegexInterpreter_StackPop_m1DBCCF39146C4C13FEBABCF7139CDAF89AB339ED(__this, 2, /*hidden argument*/NULL); int32_t L_58; L_58 = RegexInterpreter_StackPeek_mE0B2D861B2A747936538EC83EDEBDC8C6424E3D0(__this, /*hidden argument*/NULL); V_3 = L_58; int32_t L_59; L_59 = RegexInterpreter_StackPeek_mFA8013A28365F539B9083C906BEB80008AE281A0(__this, 1, /*hidden argument*/NULL); V_4 = L_59; int32_t L_60; L_60 = RegexInterpreter_Textpos_mCCC8ABAE83D37BA6F060242E1ECAC7D91D8910F5_inline(__this, /*hidden argument*/NULL); int32_t L_61 = V_3; V_5 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_60, (int32_t)L_61)); int32_t L_62 = V_4; int32_t L_63; L_63 = RegexInterpreter_Operand_mB8AED0E2B8222A584A61D313DE9AB475724F50A0(__this, 1, /*hidden argument*/NULL); if ((((int32_t)L_62) >= ((int32_t)L_63))) { goto IL_0518; } } { int32_t L_64 = V_5; if (L_64) { goto IL_052d; } } { int32_t L_65 = V_4; if ((((int32_t)L_65) < ((int32_t)0))) { goto IL_052d; } } IL_0518: { int32_t L_66 = V_3; int32_t L_67 = V_4; RegexInterpreter_TrackPush2_m5B36C2B678F621B4BCF26D038E5AE40A55BC5884(__this, L_66, L_67, /*hidden argument*/NULL); RegexInterpreter_Advance_m47537FC4AB2CB92D2D9100C755D936DED76B03EE(__this, 2, /*hidden argument*/NULL); goto IL_0007; } IL_052d: { int32_t L_68 = V_3; RegexInterpreter_TrackPush_m2DA2DB51ACD26004F4FB8B8D80EEC20D4AA14C49(__this, L_68, /*hidden argument*/NULL); int32_t L_69; L_69 = RegexInterpreter_Textpos_mCCC8ABAE83D37BA6F060242E1ECAC7D91D8910F5_inline(__this, /*hidden argument*/NULL); int32_t L_70 = V_4; RegexInterpreter_StackPush_m46ADD790ADB62A6FFFC56ACC93A5BFB11578A45B(__this, L_69, ((int32_t)il2cpp_codegen_add((int32_t)L_70, (int32_t)1)), /*hidden argument*/NULL); int32_t L_71; L_71 = RegexInterpreter_Operand_mB8AED0E2B8222A584A61D313DE9AB475724F50A0(__this, 0, /*hidden argument*/NULL); RegexInterpreter_Goto_mAB873EAF14CC58B684C91137D6E8817EB47FAB48(__this, L_71, /*hidden argument*/NULL); goto IL_0007; } IL_0556: { RegexInterpreter_TrackPop_m8E31A4201CD48C0888BE0DB6EB317036E7E7C4D8(__this, /*hidden argument*/NULL); RegexInterpreter_StackPop_m1DBCCF39146C4C13FEBABCF7139CDAF89AB339ED(__this, 2, /*hidden argument*/NULL); int32_t L_72; L_72 = RegexInterpreter_StackPeek_mFA8013A28365F539B9083C906BEB80008AE281A0(__this, 1, /*hidden argument*/NULL); if ((((int32_t)L_72) <= ((int32_t)0))) { goto IL_059a; } } { int32_t L_73; L_73 = RegexInterpreter_StackPeek_mE0B2D861B2A747936538EC83EDEBDC8C6424E3D0(__this, /*hidden argument*/NULL); RegexInterpreter_Textto_m874B113DFF6381DFC1BF8A8F7E6D79B819CF06AE_inline(__this, L_73, /*hidden argument*/NULL); int32_t L_74; L_74 = RegexInterpreter_TrackPeek_mFB63C0E3D25EEEEC1DBD5FF5601E59C6F0414396(__this, /*hidden argument*/NULL); int32_t L_75; L_75 = RegexInterpreter_StackPeek_mFA8013A28365F539B9083C906BEB80008AE281A0(__this, 1, /*hidden argument*/NULL); RegexInterpreter_TrackPush2_m5B36C2B678F621B4BCF26D038E5AE40A55BC5884(__this, L_74, ((int32_t)il2cpp_codegen_subtract((int32_t)L_75, (int32_t)1)), /*hidden argument*/NULL); RegexInterpreter_Advance_m47537FC4AB2CB92D2D9100C755D936DED76B03EE(__this, 2, /*hidden argument*/NULL); goto IL_0007; } IL_059a: { int32_t L_76; L_76 = RegexInterpreter_TrackPeek_mFB63C0E3D25EEEEC1DBD5FF5601E59C6F0414396(__this, /*hidden argument*/NULL); int32_t L_77; L_77 = RegexInterpreter_StackPeek_mFA8013A28365F539B9083C906BEB80008AE281A0(__this, 1, /*hidden argument*/NULL); RegexInterpreter_StackPush_m46ADD790ADB62A6FFFC56ACC93A5BFB11578A45B(__this, L_76, ((int32_t)il2cpp_codegen_subtract((int32_t)L_77, (int32_t)1)), /*hidden argument*/NULL); goto IL_0e4e; } IL_05b4: { RegexInterpreter_TrackPop_mBE47D7E983B6BD0C45F7F376AA0272B0827AB4E4(__this, 2, /*hidden argument*/NULL); int32_t L_78; L_78 = RegexInterpreter_TrackPeek_mFB63C0E3D25EEEEC1DBD5FF5601E59C6F0414396(__this, /*hidden argument*/NULL); int32_t L_79; L_79 = RegexInterpreter_TrackPeek_m946313A941F42F58C555593B8CD2C00E702400AB(__this, 1, /*hidden argument*/NULL); RegexInterpreter_StackPush_m46ADD790ADB62A6FFFC56ACC93A5BFB11578A45B(__this, L_78, L_79, /*hidden argument*/NULL); goto IL_0e4e; } IL_05d3: { RegexInterpreter_StackPop_m1DBCCF39146C4C13FEBABCF7139CDAF89AB339ED(__this, 2, /*hidden argument*/NULL); int32_t L_80; L_80 = RegexInterpreter_StackPeek_mE0B2D861B2A747936538EC83EDEBDC8C6424E3D0(__this, /*hidden argument*/NULL); V_6 = L_80; int32_t L_81; L_81 = RegexInterpreter_StackPeek_mFA8013A28365F539B9083C906BEB80008AE281A0(__this, 1, /*hidden argument*/NULL); V_7 = L_81; int32_t L_82 = V_7; if ((((int32_t)L_82) >= ((int32_t)0))) { goto IL_061a; } } { int32_t L_83 = V_6; RegexInterpreter_TrackPush2_m490912B4D5B2E19FA2739EA0211FA91DA6423634(__this, L_83, /*hidden argument*/NULL); int32_t L_84; L_84 = RegexInterpreter_Textpos_mCCC8ABAE83D37BA6F060242E1ECAC7D91D8910F5_inline(__this, /*hidden argument*/NULL); int32_t L_85 = V_7; RegexInterpreter_StackPush_m46ADD790ADB62A6FFFC56ACC93A5BFB11578A45B(__this, L_84, ((int32_t)il2cpp_codegen_add((int32_t)L_85, (int32_t)1)), /*hidden argument*/NULL); int32_t L_86; L_86 = RegexInterpreter_Operand_mB8AED0E2B8222A584A61D313DE9AB475724F50A0(__this, 0, /*hidden argument*/NULL); RegexInterpreter_Goto_mAB873EAF14CC58B684C91137D6E8817EB47FAB48(__this, L_86, /*hidden argument*/NULL); goto IL_0007; } IL_061a: { int32_t L_87 = V_6; int32_t L_88 = V_7; int32_t L_89; L_89 = RegexInterpreter_Textpos_mCCC8ABAE83D37BA6F060242E1ECAC7D91D8910F5_inline(__this, /*hidden argument*/NULL); RegexInterpreter_TrackPush_mEF674B57E2A8FC7E555803DE53EEE076EC0E5E75(__this, L_87, L_88, L_89, /*hidden argument*/NULL); RegexInterpreter_Advance_m47537FC4AB2CB92D2D9100C755D936DED76B03EE(__this, 2, /*hidden argument*/NULL); goto IL_0007; } IL_0636: { RegexInterpreter_TrackPop_mBE47D7E983B6BD0C45F7F376AA0272B0827AB4E4(__this, 3, /*hidden argument*/NULL); int32_t L_90; L_90 = RegexInterpreter_TrackPeek_mFB63C0E3D25EEEEC1DBD5FF5601E59C6F0414396(__this, /*hidden argument*/NULL); V_8 = L_90; int32_t L_91; L_91 = RegexInterpreter_TrackPeek_m946313A941F42F58C555593B8CD2C00E702400AB(__this, 2, /*hidden argument*/NULL); V_9 = L_91; int32_t L_92; L_92 = RegexInterpreter_TrackPeek_m946313A941F42F58C555593B8CD2C00E702400AB(__this, 1, /*hidden argument*/NULL); int32_t L_93; L_93 = RegexInterpreter_Operand_mB8AED0E2B8222A584A61D313DE9AB475724F50A0(__this, 1, /*hidden argument*/NULL); if ((((int32_t)L_92) >= ((int32_t)L_93))) { goto IL_0697; } } { int32_t L_94 = V_9; int32_t L_95 = V_8; if ((((int32_t)L_94) == ((int32_t)L_95))) { goto IL_0697; } } { int32_t L_96 = V_9; RegexInterpreter_Textto_m874B113DFF6381DFC1BF8A8F7E6D79B819CF06AE_inline(__this, L_96, /*hidden argument*/NULL); int32_t L_97 = V_9; int32_t L_98; L_98 = RegexInterpreter_TrackPeek_m946313A941F42F58C555593B8CD2C00E702400AB(__this, 1, /*hidden argument*/NULL); RegexInterpreter_StackPush_m46ADD790ADB62A6FFFC56ACC93A5BFB11578A45B(__this, L_97, ((int32_t)il2cpp_codegen_add((int32_t)L_98, (int32_t)1)), /*hidden argument*/NULL); int32_t L_99 = V_8; RegexInterpreter_TrackPush2_m490912B4D5B2E19FA2739EA0211FA91DA6423634(__this, L_99, /*hidden argument*/NULL); int32_t L_100; L_100 = RegexInterpreter_Operand_mB8AED0E2B8222A584A61D313DE9AB475724F50A0(__this, 0, /*hidden argument*/NULL); RegexInterpreter_Goto_mAB873EAF14CC58B684C91137D6E8817EB47FAB48(__this, L_100, /*hidden argument*/NULL); goto IL_0007; } IL_0697: { int32_t L_101; L_101 = RegexInterpreter_TrackPeek_mFB63C0E3D25EEEEC1DBD5FF5601E59C6F0414396(__this, /*hidden argument*/NULL); int32_t L_102; L_102 = RegexInterpreter_TrackPeek_m946313A941F42F58C555593B8CD2C00E702400AB(__this, 1, /*hidden argument*/NULL); RegexInterpreter_StackPush_m46ADD790ADB62A6FFFC56ACC93A5BFB11578A45B(__this, L_101, L_102, /*hidden argument*/NULL); goto IL_0e4e; } IL_06af: { RegexInterpreter_TrackPop_m8E31A4201CD48C0888BE0DB6EB317036E7E7C4D8(__this, /*hidden argument*/NULL); RegexInterpreter_StackPop_m1DBCCF39146C4C13FEBABCF7139CDAF89AB339ED(__this, 2, /*hidden argument*/NULL); int32_t L_103; L_103 = RegexInterpreter_TrackPeek_mFB63C0E3D25EEEEC1DBD5FF5601E59C6F0414396(__this, /*hidden argument*/NULL); int32_t L_104; L_104 = RegexInterpreter_StackPeek_mFA8013A28365F539B9083C906BEB80008AE281A0(__this, 1, /*hidden argument*/NULL); RegexInterpreter_StackPush_m46ADD790ADB62A6FFFC56ACC93A5BFB11578A45B(__this, L_103, ((int32_t)il2cpp_codegen_subtract((int32_t)L_104, (int32_t)1)), /*hidden argument*/NULL); goto IL_0e4e; } IL_06d6: { int32_t L_105; L_105 = RegexInterpreter_Trackpos_mDA7F7A3B4A02FC45B46AF1FD47778E0C0C9A5F64(__this, /*hidden argument*/NULL); int32_t L_106; L_106 = RegexRunner_Crawlpos_mBFE7A9D83990B8CF829D66CD088414F96A03B49F(__this, /*hidden argument*/NULL); RegexInterpreter_StackPush_m46ADD790ADB62A6FFFC56ACC93A5BFB11578A45B(__this, L_105, L_106, /*hidden argument*/NULL); RegexInterpreter_TrackPush_mBE985076C7632B82D188C6484BD6C7980C392379(__this, /*hidden argument*/NULL); RegexInterpreter_Advance_mC3549A945557AD11D80890E0DCBC6D53860A97FE(__this, /*hidden argument*/NULL); goto IL_0007; } IL_06f9: { RegexInterpreter_StackPop_m1DBCCF39146C4C13FEBABCF7139CDAF89AB339ED(__this, 2, /*hidden argument*/NULL); goto IL_0e4e; } IL_0705: { RegexInterpreter_StackPop_m1DBCCF39146C4C13FEBABCF7139CDAF89AB339ED(__this, 2, /*hidden argument*/NULL); int32_t L_107; L_107 = RegexInterpreter_StackPeek_mE0B2D861B2A747936538EC83EDEBDC8C6424E3D0(__this, /*hidden argument*/NULL); RegexInterpreter_Trackto_m00A652840F4C1B3FE74527A910FB6BDE144F4CD2(__this, L_107, /*hidden argument*/NULL); goto IL_0720; } IL_071a: { RegexRunner_Uncapture_mAEA536C22A1DD0BCE123A04A4BCFD1A8BE8D1F7B(__this, /*hidden argument*/NULL); } IL_0720: { int32_t L_108; L_108 = RegexRunner_Crawlpos_mBFE7A9D83990B8CF829D66CD088414F96A03B49F(__this, /*hidden argument*/NULL); int32_t L_109; L_109 = RegexInterpreter_StackPeek_mFA8013A28365F539B9083C906BEB80008AE281A0(__this, 1, /*hidden argument*/NULL); if ((!(((uint32_t)L_108) == ((uint32_t)L_109)))) { goto IL_071a; } } { goto IL_0e4e; } IL_0734: { RegexInterpreter_StackPop_m1DBCCF39146C4C13FEBABCF7139CDAF89AB339ED(__this, 2, /*hidden argument*/NULL); int32_t L_110; L_110 = RegexInterpreter_StackPeek_mE0B2D861B2A747936538EC83EDEBDC8C6424E3D0(__this, /*hidden argument*/NULL); RegexInterpreter_Trackto_m00A652840F4C1B3FE74527A910FB6BDE144F4CD2(__this, L_110, /*hidden argument*/NULL); int32_t L_111; L_111 = RegexInterpreter_StackPeek_mFA8013A28365F539B9083C906BEB80008AE281A0(__this, 1, /*hidden argument*/NULL); RegexInterpreter_TrackPush_m2DA2DB51ACD26004F4FB8B8D80EEC20D4AA14C49(__this, L_111, /*hidden argument*/NULL); RegexInterpreter_Advance_mC3549A945557AD11D80890E0DCBC6D53860A97FE(__this, /*hidden argument*/NULL); goto IL_0007; } IL_075f: { RegexInterpreter_TrackPop_m8E31A4201CD48C0888BE0DB6EB317036E7E7C4D8(__this, /*hidden argument*/NULL); goto IL_076d; } IL_0767: { RegexRunner_Uncapture_mAEA536C22A1DD0BCE123A04A4BCFD1A8BE8D1F7B(__this, /*hidden argument*/NULL); } IL_076d: { int32_t L_112; L_112 = RegexRunner_Crawlpos_mBFE7A9D83990B8CF829D66CD088414F96A03B49F(__this, /*hidden argument*/NULL); int32_t L_113; L_113 = RegexInterpreter_TrackPeek_mFB63C0E3D25EEEEC1DBD5FF5601E59C6F0414396(__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_112) == ((uint32_t)L_113)))) { goto IL_0767; } } { goto IL_0e4e; } IL_0780: { int32_t L_114; L_114 = RegexInterpreter_Leftchars_mB50E0C06B5C05F48BBA69D21BFB6382705C696C4(__this, /*hidden argument*/NULL); if ((((int32_t)L_114) <= ((int32_t)0))) { goto IL_079e; } } { int32_t L_115; L_115 = RegexInterpreter_Textpos_mCCC8ABAE83D37BA6F060242E1ECAC7D91D8910F5_inline(__this, /*hidden argument*/NULL); Il2CppChar L_116; L_116 = RegexInterpreter_CharAt_mBC8ABA0BE4AC926938A4A4F6DEFB89437AEC3F6E(__this, ((int32_t)il2cpp_codegen_subtract((int32_t)L_115, (int32_t)1)), /*hidden argument*/NULL); if ((!(((uint32_t)L_116) == ((uint32_t)((int32_t)10))))) { goto IL_0e4e; } } IL_079e: { RegexInterpreter_Advance_mC3549A945557AD11D80890E0DCBC6D53860A97FE(__this, /*hidden argument*/NULL); goto IL_0007; } IL_07a9: { int32_t L_117; L_117 = RegexInterpreter_Rightchars_m2DEB5D856E0BEC8CFE39B2546B504CB2FCC1DC2C(__this, /*hidden argument*/NULL); if ((((int32_t)L_117) <= ((int32_t)0))) { goto IL_07c5; } } { int32_t L_118; L_118 = RegexInterpreter_Textpos_mCCC8ABAE83D37BA6F060242E1ECAC7D91D8910F5_inline(__this, /*hidden argument*/NULL); Il2CppChar L_119; L_119 = RegexInterpreter_CharAt_mBC8ABA0BE4AC926938A4A4F6DEFB89437AEC3F6E(__this, L_118, /*hidden argument*/NULL); if ((!(((uint32_t)L_119) == ((uint32_t)((int32_t)10))))) { goto IL_0e4e; } } IL_07c5: { RegexInterpreter_Advance_mC3549A945557AD11D80890E0DCBC6D53860A97FE(__this, /*hidden argument*/NULL); goto IL_0007; } IL_07d0: { int32_t L_120; L_120 = RegexInterpreter_Textpos_mCCC8ABAE83D37BA6F060242E1ECAC7D91D8910F5_inline(__this, /*hidden argument*/NULL); int32_t L_121 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtextbeg_0(); int32_t L_122 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtextend_1(); bool L_123; L_123 = RegexRunner_IsBoundary_mBC555EC9574974908A1B0CEA3D1853D54BD10D62(__this, L_120, L_121, L_122, /*hidden argument*/NULL); if (!L_123) { goto IL_0e4e; } } { RegexInterpreter_Advance_mC3549A945557AD11D80890E0DCBC6D53860A97FE(__this, /*hidden argument*/NULL); goto IL_0007; } IL_07f8: { int32_t L_124; L_124 = RegexInterpreter_Textpos_mCCC8ABAE83D37BA6F060242E1ECAC7D91D8910F5_inline(__this, /*hidden argument*/NULL); int32_t L_125 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtextbeg_0(); int32_t L_126 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtextend_1(); bool L_127; L_127 = RegexRunner_IsBoundary_mBC555EC9574974908A1B0CEA3D1853D54BD10D62(__this, L_124, L_125, L_126, /*hidden argument*/NULL); if (L_127) { goto IL_0e4e; } } { RegexInterpreter_Advance_mC3549A945557AD11D80890E0DCBC6D53860A97FE(__this, /*hidden argument*/NULL); goto IL_0007; } IL_0820: { int32_t L_128; L_128 = RegexInterpreter_Textpos_mCCC8ABAE83D37BA6F060242E1ECAC7D91D8910F5_inline(__this, /*hidden argument*/NULL); int32_t L_129 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtextbeg_0(); int32_t L_130 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtextend_1(); bool L_131; L_131 = RegexRunner_IsECMABoundary_m151787CEE018DB6D42182AF4464485CDC4CEAFAB(__this, L_128, L_129, L_130, /*hidden argument*/NULL); if (!L_131) { goto IL_0e4e; } } { RegexInterpreter_Advance_mC3549A945557AD11D80890E0DCBC6D53860A97FE(__this, /*hidden argument*/NULL); goto IL_0007; } IL_0848: { int32_t L_132; L_132 = RegexInterpreter_Textpos_mCCC8ABAE83D37BA6F060242E1ECAC7D91D8910F5_inline(__this, /*hidden argument*/NULL); int32_t L_133 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtextbeg_0(); int32_t L_134 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtextend_1(); bool L_135; L_135 = RegexRunner_IsECMABoundary_m151787CEE018DB6D42182AF4464485CDC4CEAFAB(__this, L_132, L_133, L_134, /*hidden argument*/NULL); if (L_135) { goto IL_0e4e; } } { RegexInterpreter_Advance_mC3549A945557AD11D80890E0DCBC6D53860A97FE(__this, /*hidden argument*/NULL); goto IL_0007; } IL_0870: { int32_t L_136; L_136 = RegexInterpreter_Leftchars_mB50E0C06B5C05F48BBA69D21BFB6382705C696C4(__this, /*hidden argument*/NULL); if ((((int32_t)L_136) > ((int32_t)0))) { goto IL_0e4e; } } { RegexInterpreter_Advance_mC3549A945557AD11D80890E0DCBC6D53860A97FE(__this, /*hidden argument*/NULL); goto IL_0007; } IL_0887: { int32_t L_137; L_137 = RegexInterpreter_Textpos_mCCC8ABAE83D37BA6F060242E1ECAC7D91D8910F5_inline(__this, /*hidden argument*/NULL); int32_t L_138; L_138 = RegexInterpreter_Textstart_m635CAE9587982E8C88F98F7374460E742A7F5953_inline(__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_137) == ((uint32_t)L_138)))) { goto IL_0e4e; } } { RegexInterpreter_Advance_mC3549A945557AD11D80890E0DCBC6D53860A97FE(__this, /*hidden argument*/NULL); goto IL_0007; } IL_08a3: { int32_t L_139; L_139 = RegexInterpreter_Rightchars_m2DEB5D856E0BEC8CFE39B2546B504CB2FCC1DC2C(__this, /*hidden argument*/NULL); if ((((int32_t)L_139) > ((int32_t)1))) { goto IL_0e4e; } } { int32_t L_140; L_140 = RegexInterpreter_Rightchars_m2DEB5D856E0BEC8CFE39B2546B504CB2FCC1DC2C(__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_140) == ((uint32_t)1)))) { goto IL_08cb; } } { int32_t L_141; L_141 = RegexInterpreter_Textpos_mCCC8ABAE83D37BA6F060242E1ECAC7D91D8910F5_inline(__this, /*hidden argument*/NULL); Il2CppChar L_142; L_142 = RegexInterpreter_CharAt_mBC8ABA0BE4AC926938A4A4F6DEFB89437AEC3F6E(__this, L_141, /*hidden argument*/NULL); if ((!(((uint32_t)L_142) == ((uint32_t)((int32_t)10))))) { goto IL_0e4e; } } IL_08cb: { RegexInterpreter_Advance_mC3549A945557AD11D80890E0DCBC6D53860A97FE(__this, /*hidden argument*/NULL); goto IL_0007; } IL_08d6: { int32_t L_143; L_143 = RegexInterpreter_Rightchars_m2DEB5D856E0BEC8CFE39B2546B504CB2FCC1DC2C(__this, /*hidden argument*/NULL); if ((((int32_t)L_143) > ((int32_t)0))) { goto IL_0e4e; } } { RegexInterpreter_Advance_mC3549A945557AD11D80890E0DCBC6D53860A97FE(__this, /*hidden argument*/NULL); goto IL_0007; } IL_08ed: { int32_t L_144; L_144 = RegexInterpreter_Forwardchars_mFD54A946FE00B2613D92F1CCAE7B53CDB4312420(__this, /*hidden argument*/NULL); if ((((int32_t)L_144) < ((int32_t)1))) { goto IL_0e4e; } } { Il2CppChar L_145; L_145 = RegexInterpreter_Forwardcharnext_m39C5E9B8B3EDC556CE6A61C1957ACFD5F8ED025E(__this, /*hidden argument*/NULL); int32_t L_146; L_146 = RegexInterpreter_Operand_mB8AED0E2B8222A584A61D313DE9AB475724F50A0(__this, 0, /*hidden argument*/NULL); if ((!(((uint32_t)L_145) == ((uint32_t)((int32_t)((uint16_t)L_146)))))) { goto IL_0e4e; } } { RegexInterpreter_Advance_m47537FC4AB2CB92D2D9100C755D936DED76B03EE(__this, 1, /*hidden argument*/NULL); goto IL_0007; } IL_0918: { int32_t L_147; L_147 = RegexInterpreter_Forwardchars_mFD54A946FE00B2613D92F1CCAE7B53CDB4312420(__this, /*hidden argument*/NULL); if ((((int32_t)L_147) < ((int32_t)1))) { goto IL_0e4e; } } { Il2CppChar L_148; L_148 = RegexInterpreter_Forwardcharnext_m39C5E9B8B3EDC556CE6A61C1957ACFD5F8ED025E(__this, /*hidden argument*/NULL); int32_t L_149; L_149 = RegexInterpreter_Operand_mB8AED0E2B8222A584A61D313DE9AB475724F50A0(__this, 0, /*hidden argument*/NULL); if ((((int32_t)L_148) == ((int32_t)((int32_t)((uint16_t)L_149))))) { goto IL_0e4e; } } { RegexInterpreter_Advance_m47537FC4AB2CB92D2D9100C755D936DED76B03EE(__this, 1, /*hidden argument*/NULL); goto IL_0007; } IL_0943: { int32_t L_150; L_150 = RegexInterpreter_Forwardchars_mFD54A946FE00B2613D92F1CCAE7B53CDB4312420(__this, /*hidden argument*/NULL); if ((((int32_t)L_150) < ((int32_t)1))) { goto IL_0e4e; } } { Il2CppChar L_151; L_151 = RegexInterpreter_Forwardcharnext_m39C5E9B8B3EDC556CE6A61C1957ACFD5F8ED025E(__this, /*hidden argument*/NULL); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_152 = __this->get_runstrings_21(); int32_t L_153; L_153 = RegexInterpreter_Operand_mB8AED0E2B8222A584A61D313DE9AB475724F50A0(__this, 0, /*hidden argument*/NULL); NullCheck(L_152); int32_t L_154 = L_153; String_t* L_155 = (L_152)->GetAt(static_cast<il2cpp_array_size_t>(L_154)); IL2CPP_RUNTIME_CLASS_INIT(RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5_il2cpp_TypeInfo_var); bool L_156; L_156 = RegexCharClass_CharInClass_m255B7683478670C002F04238394193EEFA126AE8(L_151, L_155, /*hidden argument*/NULL); if (!L_156) { goto IL_0e4e; } } { RegexInterpreter_Advance_m47537FC4AB2CB92D2D9100C755D936DED76B03EE(__this, 1, /*hidden argument*/NULL); goto IL_0007; } IL_0979: { StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_157 = __this->get_runstrings_21(); int32_t L_158; L_158 = RegexInterpreter_Operand_mB8AED0E2B8222A584A61D313DE9AB475724F50A0(__this, 0, /*hidden argument*/NULL); NullCheck(L_157); int32_t L_159 = L_158; String_t* L_160 = (L_157)->GetAt(static_cast<il2cpp_array_size_t>(L_159)); bool L_161; L_161 = RegexInterpreter_Stringmatch_m81EA1913981000A8D944B5DA757813058F0F4ABD(__this, L_160, /*hidden argument*/NULL); if (!L_161) { goto IL_0e4e; } } { RegexInterpreter_Advance_m47537FC4AB2CB92D2D9100C755D936DED76B03EE(__this, 1, /*hidden argument*/NULL); goto IL_0007; } IL_099e: { int32_t L_162; L_162 = RegexInterpreter_Operand_mB8AED0E2B8222A584A61D313DE9AB475724F50A0(__this, 0, /*hidden argument*/NULL); V_10 = L_162; int32_t L_163 = V_10; bool L_164; L_164 = RegexRunner_IsMatched_mCC5330346DACE22EAA86DD072CD36752023C66E9(__this, L_163, /*hidden argument*/NULL); if (!L_164) { goto IL_09ce; } } { int32_t L_165 = V_10; int32_t L_166; L_166 = RegexRunner_MatchIndex_m9FBD010C648C8BBD087FFF4C470FE82494A72ACB(__this, L_165, /*hidden argument*/NULL); int32_t L_167 = V_10; int32_t L_168; L_168 = RegexRunner_MatchLength_mE1EFA365EAA84B7CDC515A4DEC99CF6D8581A1E8(__this, L_167, /*hidden argument*/NULL); bool L_169; L_169 = RegexInterpreter_Refmatch_m5F44A3C001E919895A5A2988F16187069E45D75B(__this, L_166, L_168, /*hidden argument*/NULL); if (L_169) { goto IL_09e4; } } { goto IL_0e4e; } IL_09ce: { Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F * L_170 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runregex_13(); NullCheck(L_170); int32_t L_171 = L_170->get_roptions_2(); if (!((int32_t)((int32_t)L_171&(int32_t)((int32_t)256)))) { goto IL_0e4e; } } IL_09e4: { RegexInterpreter_Advance_m47537FC4AB2CB92D2D9100C755D936DED76B03EE(__this, 1, /*hidden argument*/NULL); goto IL_0007; } IL_09f0: { int32_t L_172; L_172 = RegexInterpreter_Operand_mB8AED0E2B8222A584A61D313DE9AB475724F50A0(__this, 1, /*hidden argument*/NULL); V_11 = L_172; int32_t L_173; L_173 = RegexInterpreter_Forwardchars_mFD54A946FE00B2613D92F1CCAE7B53CDB4312420(__this, /*hidden argument*/NULL); int32_t L_174 = V_11; if ((((int32_t)L_173) < ((int32_t)L_174))) { goto IL_0e4e; } } { int32_t L_175; L_175 = RegexInterpreter_Operand_mB8AED0E2B8222A584A61D313DE9AB475724F50A0(__this, 0, /*hidden argument*/NULL); V_12 = ((int32_t)((uint16_t)L_175)); goto IL_0a1f; } IL_0a12: { Il2CppChar L_176; L_176 = RegexInterpreter_Forwardcharnext_m39C5E9B8B3EDC556CE6A61C1957ACFD5F8ED025E(__this, /*hidden argument*/NULL); Il2CppChar L_177 = V_12; if ((!(((uint32_t)L_176) == ((uint32_t)L_177)))) { goto IL_0e4e; } } IL_0a1f: { int32_t L_178 = V_11; int32_t L_179 = L_178; V_11 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_179, (int32_t)1)); if ((((int32_t)L_179) > ((int32_t)0))) { goto IL_0a12; } } { RegexInterpreter_Advance_m47537FC4AB2CB92D2D9100C755D936DED76B03EE(__this, 2, /*hidden argument*/NULL); goto IL_0007; } IL_0a35: { int32_t L_180; L_180 = RegexInterpreter_Operand_mB8AED0E2B8222A584A61D313DE9AB475724F50A0(__this, 1, /*hidden argument*/NULL); V_13 = L_180; int32_t L_181; L_181 = RegexInterpreter_Forwardchars_mFD54A946FE00B2613D92F1CCAE7B53CDB4312420(__this, /*hidden argument*/NULL); int32_t L_182 = V_13; if ((((int32_t)L_181) < ((int32_t)L_182))) { goto IL_0e4e; } } { int32_t L_183; L_183 = RegexInterpreter_Operand_mB8AED0E2B8222A584A61D313DE9AB475724F50A0(__this, 0, /*hidden argument*/NULL); V_14 = ((int32_t)((uint16_t)L_183)); goto IL_0a64; } IL_0a57: { Il2CppChar L_184; L_184 = RegexInterpreter_Forwardcharnext_m39C5E9B8B3EDC556CE6A61C1957ACFD5F8ED025E(__this, /*hidden argument*/NULL); Il2CppChar L_185 = V_14; if ((((int32_t)L_184) == ((int32_t)L_185))) { goto IL_0e4e; } } IL_0a64: { int32_t L_186 = V_13; int32_t L_187 = L_186; V_13 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_187, (int32_t)1)); if ((((int32_t)L_187) > ((int32_t)0))) { goto IL_0a57; } } { RegexInterpreter_Advance_m47537FC4AB2CB92D2D9100C755D936DED76B03EE(__this, 2, /*hidden argument*/NULL); goto IL_0007; } IL_0a7a: { int32_t L_188; L_188 = RegexInterpreter_Operand_mB8AED0E2B8222A584A61D313DE9AB475724F50A0(__this, 1, /*hidden argument*/NULL); V_15 = L_188; int32_t L_189; L_189 = RegexInterpreter_Forwardchars_mFD54A946FE00B2613D92F1CCAE7B53CDB4312420(__this, /*hidden argument*/NULL); int32_t L_190 = V_15; if ((((int32_t)L_189) < ((int32_t)L_190))) { goto IL_0e4e; } } { StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_191 = __this->get_runstrings_21(); int32_t L_192; L_192 = RegexInterpreter_Operand_mB8AED0E2B8222A584A61D313DE9AB475724F50A0(__this, 0, /*hidden argument*/NULL); NullCheck(L_191); int32_t L_193 = L_192; String_t* L_194 = (L_191)->GetAt(static_cast<il2cpp_array_size_t>(L_193)); V_16 = L_194; goto IL_0ab4; } IL_0aa2: { Il2CppChar L_195; L_195 = RegexInterpreter_Forwardcharnext_m39C5E9B8B3EDC556CE6A61C1957ACFD5F8ED025E(__this, /*hidden argument*/NULL); String_t* L_196 = V_16; IL2CPP_RUNTIME_CLASS_INIT(RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5_il2cpp_TypeInfo_var); bool L_197; L_197 = RegexCharClass_CharInClass_m255B7683478670C002F04238394193EEFA126AE8(L_195, L_196, /*hidden argument*/NULL); if (!L_197) { goto IL_0e4e; } } IL_0ab4: { int32_t L_198 = V_15; int32_t L_199 = L_198; V_15 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_199, (int32_t)1)); if ((((int32_t)L_199) > ((int32_t)0))) { goto IL_0aa2; } } { RegexInterpreter_Advance_m47537FC4AB2CB92D2D9100C755D936DED76B03EE(__this, 2, /*hidden argument*/NULL); goto IL_0007; } IL_0aca: { int32_t L_200; L_200 = RegexInterpreter_Operand_mB8AED0E2B8222A584A61D313DE9AB475724F50A0(__this, 1, /*hidden argument*/NULL); V_17 = L_200; int32_t L_201 = V_17; int32_t L_202; L_202 = RegexInterpreter_Forwardchars_mFD54A946FE00B2613D92F1CCAE7B53CDB4312420(__this, /*hidden argument*/NULL); if ((((int32_t)L_201) <= ((int32_t)L_202))) { goto IL_0ae5; } } { int32_t L_203; L_203 = RegexInterpreter_Forwardchars_mFD54A946FE00B2613D92F1CCAE7B53CDB4312420(__this, /*hidden argument*/NULL); V_17 = L_203; } IL_0ae5: { int32_t L_204; L_204 = RegexInterpreter_Operand_mB8AED0E2B8222A584A61D313DE9AB475724F50A0(__this, 0, /*hidden argument*/NULL); V_18 = ((int32_t)((uint16_t)L_204)); int32_t L_205 = V_17; V_19 = L_205; goto IL_0b0d; } IL_0af5: { Il2CppChar L_206; L_206 = RegexInterpreter_Forwardcharnext_m39C5E9B8B3EDC556CE6A61C1957ACFD5F8ED025E(__this, /*hidden argument*/NULL); Il2CppChar L_207 = V_18; if ((((int32_t)L_206) == ((int32_t)L_207))) { goto IL_0b07; } } { RegexInterpreter_Backwardnext_m68F8015F83EA7DEBBDB6405A6EF9092E814D88EC(__this, /*hidden argument*/NULL); goto IL_0b12; } IL_0b07: { int32_t L_208 = V_19; V_19 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_208, (int32_t)1)); } IL_0b0d: { int32_t L_209 = V_19; if ((((int32_t)L_209) > ((int32_t)0))) { goto IL_0af5; } } IL_0b12: { int32_t L_210 = V_17; int32_t L_211 = V_19; if ((((int32_t)L_210) <= ((int32_t)L_211))) { goto IL_0b32; } } { int32_t L_212 = V_17; int32_t L_213 = V_19; int32_t L_214; L_214 = RegexInterpreter_Textpos_mCCC8ABAE83D37BA6F060242E1ECAC7D91D8910F5_inline(__this, /*hidden argument*/NULL); int32_t L_215; L_215 = RegexInterpreter_Bump_m45DF8CEBA6E19FE27E10A87C89E5B2001FB37E85(__this, /*hidden argument*/NULL); RegexInterpreter_TrackPush_m874CB8F853DD4EB0FAD4A2DEF9CC2EAC3DD5BA5E(__this, ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_212, (int32_t)L_213)), (int32_t)1)), ((int32_t)il2cpp_codegen_subtract((int32_t)L_214, (int32_t)L_215)), /*hidden argument*/NULL); } IL_0b32: { RegexInterpreter_Advance_m47537FC4AB2CB92D2D9100C755D936DED76B03EE(__this, 2, /*hidden argument*/NULL); goto IL_0007; } IL_0b3e: { int32_t L_216; L_216 = RegexInterpreter_Operand_mB8AED0E2B8222A584A61D313DE9AB475724F50A0(__this, 1, /*hidden argument*/NULL); V_20 = L_216; int32_t L_217 = V_20; int32_t L_218; L_218 = RegexInterpreter_Forwardchars_mFD54A946FE00B2613D92F1CCAE7B53CDB4312420(__this, /*hidden argument*/NULL); if ((((int32_t)L_217) <= ((int32_t)L_218))) { goto IL_0b59; } } { int32_t L_219; L_219 = RegexInterpreter_Forwardchars_mFD54A946FE00B2613D92F1CCAE7B53CDB4312420(__this, /*hidden argument*/NULL); V_20 = L_219; } IL_0b59: { int32_t L_220; L_220 = RegexInterpreter_Operand_mB8AED0E2B8222A584A61D313DE9AB475724F50A0(__this, 0, /*hidden argument*/NULL); V_21 = ((int32_t)((uint16_t)L_220)); int32_t L_221 = V_20; V_22 = L_221; goto IL_0b81; } IL_0b69: { Il2CppChar L_222; L_222 = RegexInterpreter_Forwardcharnext_m39C5E9B8B3EDC556CE6A61C1957ACFD5F8ED025E(__this, /*hidden argument*/NULL); Il2CppChar L_223 = V_21; if ((!(((uint32_t)L_222) == ((uint32_t)L_223)))) { goto IL_0b7b; } } { RegexInterpreter_Backwardnext_m68F8015F83EA7DEBBDB6405A6EF9092E814D88EC(__this, /*hidden argument*/NULL); goto IL_0b86; } IL_0b7b: { int32_t L_224 = V_22; V_22 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_224, (int32_t)1)); } IL_0b81: { int32_t L_225 = V_22; if ((((int32_t)L_225) > ((int32_t)0))) { goto IL_0b69; } } IL_0b86: { int32_t L_226 = V_20; int32_t L_227 = V_22; if ((((int32_t)L_226) <= ((int32_t)L_227))) { goto IL_0ba6; } } { int32_t L_228 = V_20; int32_t L_229 = V_22; int32_t L_230; L_230 = RegexInterpreter_Textpos_mCCC8ABAE83D37BA6F060242E1ECAC7D91D8910F5_inline(__this, /*hidden argument*/NULL); int32_t L_231; L_231 = RegexInterpreter_Bump_m45DF8CEBA6E19FE27E10A87C89E5B2001FB37E85(__this, /*hidden argument*/NULL); RegexInterpreter_TrackPush_m874CB8F853DD4EB0FAD4A2DEF9CC2EAC3DD5BA5E(__this, ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_228, (int32_t)L_229)), (int32_t)1)), ((int32_t)il2cpp_codegen_subtract((int32_t)L_230, (int32_t)L_231)), /*hidden argument*/NULL); } IL_0ba6: { RegexInterpreter_Advance_m47537FC4AB2CB92D2D9100C755D936DED76B03EE(__this, 2, /*hidden argument*/NULL); goto IL_0007; } IL_0bb2: { int32_t L_232; L_232 = RegexInterpreter_Operand_mB8AED0E2B8222A584A61D313DE9AB475724F50A0(__this, 1, /*hidden argument*/NULL); V_23 = L_232; int32_t L_233 = V_23; int32_t L_234; L_234 = RegexInterpreter_Forwardchars_mFD54A946FE00B2613D92F1CCAE7B53CDB4312420(__this, /*hidden argument*/NULL); if ((((int32_t)L_233) <= ((int32_t)L_234))) { goto IL_0bcd; } } { int32_t L_235; L_235 = RegexInterpreter_Forwardchars_mFD54A946FE00B2613D92F1CCAE7B53CDB4312420(__this, /*hidden argument*/NULL); V_23 = L_235; } IL_0bcd: { StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_236 = __this->get_runstrings_21(); int32_t L_237; L_237 = RegexInterpreter_Operand_mB8AED0E2B8222A584A61D313DE9AB475724F50A0(__this, 0, /*hidden argument*/NULL); NullCheck(L_236); int32_t L_238 = L_237; String_t* L_239 = (L_236)->GetAt(static_cast<il2cpp_array_size_t>(L_238)); V_24 = L_239; int32_t L_240 = V_23; V_25 = L_240; goto IL_0c00; } IL_0be3: { Il2CppChar L_241; L_241 = RegexInterpreter_Forwardcharnext_m39C5E9B8B3EDC556CE6A61C1957ACFD5F8ED025E(__this, /*hidden argument*/NULL); String_t* L_242 = V_24; IL2CPP_RUNTIME_CLASS_INIT(RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5_il2cpp_TypeInfo_var); bool L_243; L_243 = RegexCharClass_CharInClass_m255B7683478670C002F04238394193EEFA126AE8(L_241, L_242, /*hidden argument*/NULL); if (L_243) { goto IL_0bfa; } } { RegexInterpreter_Backwardnext_m68F8015F83EA7DEBBDB6405A6EF9092E814D88EC(__this, /*hidden argument*/NULL); goto IL_0c05; } IL_0bfa: { int32_t L_244 = V_25; V_25 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_244, (int32_t)1)); } IL_0c00: { int32_t L_245 = V_25; if ((((int32_t)L_245) > ((int32_t)0))) { goto IL_0be3; } } IL_0c05: { int32_t L_246 = V_23; int32_t L_247 = V_25; if ((((int32_t)L_246) <= ((int32_t)L_247))) { goto IL_0c25; } } { int32_t L_248 = V_23; int32_t L_249 = V_25; int32_t L_250; L_250 = RegexInterpreter_Textpos_mCCC8ABAE83D37BA6F060242E1ECAC7D91D8910F5_inline(__this, /*hidden argument*/NULL); int32_t L_251; L_251 = RegexInterpreter_Bump_m45DF8CEBA6E19FE27E10A87C89E5B2001FB37E85(__this, /*hidden argument*/NULL); RegexInterpreter_TrackPush_m874CB8F853DD4EB0FAD4A2DEF9CC2EAC3DD5BA5E(__this, ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_248, (int32_t)L_249)), (int32_t)1)), ((int32_t)il2cpp_codegen_subtract((int32_t)L_250, (int32_t)L_251)), /*hidden argument*/NULL); } IL_0c25: { RegexInterpreter_Advance_m47537FC4AB2CB92D2D9100C755D936DED76B03EE(__this, 2, /*hidden argument*/NULL); goto IL_0007; } IL_0c31: { RegexInterpreter_TrackPop_mBE47D7E983B6BD0C45F7F376AA0272B0827AB4E4(__this, 2, /*hidden argument*/NULL); int32_t L_252; L_252 = RegexInterpreter_TrackPeek_mFB63C0E3D25EEEEC1DBD5FF5601E59C6F0414396(__this, /*hidden argument*/NULL); V_26 = L_252; int32_t L_253; L_253 = RegexInterpreter_TrackPeek_m946313A941F42F58C555593B8CD2C00E702400AB(__this, 1, /*hidden argument*/NULL); V_27 = L_253; int32_t L_254 = V_27; RegexInterpreter_Textto_m874B113DFF6381DFC1BF8A8F7E6D79B819CF06AE_inline(__this, L_254, /*hidden argument*/NULL); int32_t L_255 = V_26; if ((((int32_t)L_255) <= ((int32_t)0))) { goto IL_0c69; } } { int32_t L_256 = V_26; int32_t L_257 = V_27; int32_t L_258; L_258 = RegexInterpreter_Bump_m45DF8CEBA6E19FE27E10A87C89E5B2001FB37E85(__this, /*hidden argument*/NULL); RegexInterpreter_TrackPush_m874CB8F853DD4EB0FAD4A2DEF9CC2EAC3DD5BA5E(__this, ((int32_t)il2cpp_codegen_subtract((int32_t)L_256, (int32_t)1)), ((int32_t)il2cpp_codegen_subtract((int32_t)L_257, (int32_t)L_258)), /*hidden argument*/NULL); } IL_0c69: { RegexInterpreter_Advance_m47537FC4AB2CB92D2D9100C755D936DED76B03EE(__this, 2, /*hidden argument*/NULL); goto IL_0007; } IL_0c75: { RegexInterpreter_TrackPop_mBE47D7E983B6BD0C45F7F376AA0272B0827AB4E4(__this, 2, /*hidden argument*/NULL); int32_t L_259; L_259 = RegexInterpreter_TrackPeek_mFB63C0E3D25EEEEC1DBD5FF5601E59C6F0414396(__this, /*hidden argument*/NULL); V_28 = L_259; int32_t L_260; L_260 = RegexInterpreter_TrackPeek_m946313A941F42F58C555593B8CD2C00E702400AB(__this, 1, /*hidden argument*/NULL); V_29 = L_260; int32_t L_261 = V_29; RegexInterpreter_Textto_m874B113DFF6381DFC1BF8A8F7E6D79B819CF06AE_inline(__this, L_261, /*hidden argument*/NULL); int32_t L_262 = V_28; if ((((int32_t)L_262) <= ((int32_t)0))) { goto IL_0cad; } } { int32_t L_263 = V_28; int32_t L_264 = V_29; int32_t L_265; L_265 = RegexInterpreter_Bump_m45DF8CEBA6E19FE27E10A87C89E5B2001FB37E85(__this, /*hidden argument*/NULL); RegexInterpreter_TrackPush_m874CB8F853DD4EB0FAD4A2DEF9CC2EAC3DD5BA5E(__this, ((int32_t)il2cpp_codegen_subtract((int32_t)L_263, (int32_t)1)), ((int32_t)il2cpp_codegen_subtract((int32_t)L_264, (int32_t)L_265)), /*hidden argument*/NULL); } IL_0cad: { RegexInterpreter_Advance_m47537FC4AB2CB92D2D9100C755D936DED76B03EE(__this, 2, /*hidden argument*/NULL); goto IL_0007; } IL_0cb9: { int32_t L_266; L_266 = RegexInterpreter_Operand_mB8AED0E2B8222A584A61D313DE9AB475724F50A0(__this, 1, /*hidden argument*/NULL); V_30 = L_266; int32_t L_267 = V_30; int32_t L_268; L_268 = RegexInterpreter_Forwardchars_mFD54A946FE00B2613D92F1CCAE7B53CDB4312420(__this, /*hidden argument*/NULL); if ((((int32_t)L_267) <= ((int32_t)L_268))) { goto IL_0cd4; } } { int32_t L_269; L_269 = RegexInterpreter_Forwardchars_mFD54A946FE00B2613D92F1CCAE7B53CDB4312420(__this, /*hidden argument*/NULL); V_30 = L_269; } IL_0cd4: { int32_t L_270 = V_30; if ((((int32_t)L_270) <= ((int32_t)0))) { goto IL_0ce9; } } { int32_t L_271 = V_30; int32_t L_272; L_272 = RegexInterpreter_Textpos_mCCC8ABAE83D37BA6F060242E1ECAC7D91D8910F5_inline(__this, /*hidden argument*/NULL); RegexInterpreter_TrackPush_m874CB8F853DD4EB0FAD4A2DEF9CC2EAC3DD5BA5E(__this, ((int32_t)il2cpp_codegen_subtract((int32_t)L_271, (int32_t)1)), L_272, /*hidden argument*/NULL); } IL_0ce9: { RegexInterpreter_Advance_m47537FC4AB2CB92D2D9100C755D936DED76B03EE(__this, 2, /*hidden argument*/NULL); goto IL_0007; } IL_0cf5: { int32_t L_273; L_273 = RegexInterpreter_Operand_mB8AED0E2B8222A584A61D313DE9AB475724F50A0(__this, 1, /*hidden argument*/NULL); V_31 = L_273; int32_t L_274 = V_31; int32_t L_275; L_275 = RegexInterpreter_Forwardchars_mFD54A946FE00B2613D92F1CCAE7B53CDB4312420(__this, /*hidden argument*/NULL); if ((((int32_t)L_274) <= ((int32_t)L_275))) { goto IL_0d10; } } { int32_t L_276; L_276 = RegexInterpreter_Forwardchars_mFD54A946FE00B2613D92F1CCAE7B53CDB4312420(__this, /*hidden argument*/NULL); V_31 = L_276; } IL_0d10: { int32_t L_277 = V_31; if ((((int32_t)L_277) <= ((int32_t)0))) { goto IL_0d25; } } { int32_t L_278 = V_31; int32_t L_279; L_279 = RegexInterpreter_Textpos_mCCC8ABAE83D37BA6F060242E1ECAC7D91D8910F5_inline(__this, /*hidden argument*/NULL); RegexInterpreter_TrackPush_m874CB8F853DD4EB0FAD4A2DEF9CC2EAC3DD5BA5E(__this, ((int32_t)il2cpp_codegen_subtract((int32_t)L_278, (int32_t)1)), L_279, /*hidden argument*/NULL); } IL_0d25: { RegexInterpreter_Advance_m47537FC4AB2CB92D2D9100C755D936DED76B03EE(__this, 2, /*hidden argument*/NULL); goto IL_0007; } IL_0d31: { RegexInterpreter_TrackPop_mBE47D7E983B6BD0C45F7F376AA0272B0827AB4E4(__this, 2, /*hidden argument*/NULL); int32_t L_280; L_280 = RegexInterpreter_TrackPeek_m946313A941F42F58C555593B8CD2C00E702400AB(__this, 1, /*hidden argument*/NULL); V_32 = L_280; int32_t L_281 = V_32; RegexInterpreter_Textto_m874B113DFF6381DFC1BF8A8F7E6D79B819CF06AE_inline(__this, L_281, /*hidden argument*/NULL); Il2CppChar L_282; L_282 = RegexInterpreter_Forwardcharnext_m39C5E9B8B3EDC556CE6A61C1957ACFD5F8ED025E(__this, /*hidden argument*/NULL); int32_t L_283; L_283 = RegexInterpreter_Operand_mB8AED0E2B8222A584A61D313DE9AB475724F50A0(__this, 0, /*hidden argument*/NULL); if ((!(((uint32_t)L_282) == ((uint32_t)((int32_t)((uint16_t)L_283)))))) { goto IL_0e4e; } } { int32_t L_284; L_284 = RegexInterpreter_TrackPeek_mFB63C0E3D25EEEEC1DBD5FF5601E59C6F0414396(__this, /*hidden argument*/NULL); V_33 = L_284; int32_t L_285 = V_33; if ((((int32_t)L_285) <= ((int32_t)0))) { goto IL_0d7c; } } { int32_t L_286 = V_33; int32_t L_287 = V_32; int32_t L_288; L_288 = RegexInterpreter_Bump_m45DF8CEBA6E19FE27E10A87C89E5B2001FB37E85(__this, /*hidden argument*/NULL); RegexInterpreter_TrackPush_m874CB8F853DD4EB0FAD4A2DEF9CC2EAC3DD5BA5E(__this, ((int32_t)il2cpp_codegen_subtract((int32_t)L_286, (int32_t)1)), ((int32_t)il2cpp_codegen_add((int32_t)L_287, (int32_t)L_288)), /*hidden argument*/NULL); } IL_0d7c: { RegexInterpreter_Advance_m47537FC4AB2CB92D2D9100C755D936DED76B03EE(__this, 2, /*hidden argument*/NULL); goto IL_0007; } IL_0d88: { RegexInterpreter_TrackPop_mBE47D7E983B6BD0C45F7F376AA0272B0827AB4E4(__this, 2, /*hidden argument*/NULL); int32_t L_289; L_289 = RegexInterpreter_TrackPeek_m946313A941F42F58C555593B8CD2C00E702400AB(__this, 1, /*hidden argument*/NULL); V_34 = L_289; int32_t L_290 = V_34; RegexInterpreter_Textto_m874B113DFF6381DFC1BF8A8F7E6D79B819CF06AE_inline(__this, L_290, /*hidden argument*/NULL); Il2CppChar L_291; L_291 = RegexInterpreter_Forwardcharnext_m39C5E9B8B3EDC556CE6A61C1957ACFD5F8ED025E(__this, /*hidden argument*/NULL); int32_t L_292; L_292 = RegexInterpreter_Operand_mB8AED0E2B8222A584A61D313DE9AB475724F50A0(__this, 0, /*hidden argument*/NULL); if ((((int32_t)L_291) == ((int32_t)((int32_t)((uint16_t)L_292))))) { goto IL_0e4e; } } { int32_t L_293; L_293 = RegexInterpreter_TrackPeek_mFB63C0E3D25EEEEC1DBD5FF5601E59C6F0414396(__this, /*hidden argument*/NULL); V_35 = L_293; int32_t L_294 = V_35; if ((((int32_t)L_294) <= ((int32_t)0))) { goto IL_0dd3; } } { int32_t L_295 = V_35; int32_t L_296 = V_34; int32_t L_297; L_297 = RegexInterpreter_Bump_m45DF8CEBA6E19FE27E10A87C89E5B2001FB37E85(__this, /*hidden argument*/NULL); RegexInterpreter_TrackPush_m874CB8F853DD4EB0FAD4A2DEF9CC2EAC3DD5BA5E(__this, ((int32_t)il2cpp_codegen_subtract((int32_t)L_295, (int32_t)1)), ((int32_t)il2cpp_codegen_add((int32_t)L_296, (int32_t)L_297)), /*hidden argument*/NULL); } IL_0dd3: { RegexInterpreter_Advance_m47537FC4AB2CB92D2D9100C755D936DED76B03EE(__this, 2, /*hidden argument*/NULL); goto IL_0007; } IL_0ddf: { RegexInterpreter_TrackPop_mBE47D7E983B6BD0C45F7F376AA0272B0827AB4E4(__this, 2, /*hidden argument*/NULL); int32_t L_298; L_298 = RegexInterpreter_TrackPeek_m946313A941F42F58C555593B8CD2C00E702400AB(__this, 1, /*hidden argument*/NULL); V_36 = L_298; int32_t L_299 = V_36; RegexInterpreter_Textto_m874B113DFF6381DFC1BF8A8F7E6D79B819CF06AE_inline(__this, L_299, /*hidden argument*/NULL); Il2CppChar L_300; L_300 = RegexInterpreter_Forwardcharnext_m39C5E9B8B3EDC556CE6A61C1957ACFD5F8ED025E(__this, /*hidden argument*/NULL); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_301 = __this->get_runstrings_21(); int32_t L_302; L_302 = RegexInterpreter_Operand_mB8AED0E2B8222A584A61D313DE9AB475724F50A0(__this, 0, /*hidden argument*/NULL); NullCheck(L_301); int32_t L_303 = L_302; String_t* L_304 = (L_301)->GetAt(static_cast<il2cpp_array_size_t>(L_303)); IL2CPP_RUNTIME_CLASS_INIT(RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5_il2cpp_TypeInfo_var); bool L_305; L_305 = RegexCharClass_CharInClass_m255B7683478670C002F04238394193EEFA126AE8(L_300, L_304, /*hidden argument*/NULL); if (!L_305) { goto IL_0e4e; } } { int32_t L_306; L_306 = RegexInterpreter_TrackPeek_mFB63C0E3D25EEEEC1DBD5FF5601E59C6F0414396(__this, /*hidden argument*/NULL); V_37 = L_306; int32_t L_307 = V_37; if ((((int32_t)L_307) <= ((int32_t)0))) { goto IL_0e32; } } { int32_t L_308 = V_37; int32_t L_309 = V_36; int32_t L_310; L_310 = RegexInterpreter_Bump_m45DF8CEBA6E19FE27E10A87C89E5B2001FB37E85(__this, /*hidden argument*/NULL); RegexInterpreter_TrackPush_m874CB8F853DD4EB0FAD4A2DEF9CC2EAC3DD5BA5E(__this, ((int32_t)il2cpp_codegen_subtract((int32_t)L_308, (int32_t)1)), ((int32_t)il2cpp_codegen_add((int32_t)L_309, (int32_t)L_310)), /*hidden argument*/NULL); } IL_0e32: { RegexInterpreter_Advance_m47537FC4AB2CB92D2D9100C755D936DED76B03EE(__this, 2, /*hidden argument*/NULL); goto IL_0007; } IL_0e3e: { String_t* L_311; L_311 = SR_GetString_m9DC7F3962EEB239017A1A4C443F52047B5BC7462(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4713250C292B59C6AAA9A7591D3BB43ABA0A26E9)), /*hidden argument*/NULL); NotImplementedException_t26260C4EE0444C5FA022994203060B3A42A3ADE6 * L_312 = (NotImplementedException_t26260C4EE0444C5FA022994203060B3A42A3ADE6 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotImplementedException_t26260C4EE0444C5FA022994203060B3A42A3ADE6_il2cpp_TypeInfo_var))); NotImplementedException__ctor_m8A9AA4499614A5BC57DD21713D0720630C130AEB(L_312, L_311, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_312, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexInterpreter_Go_m32838D966B426A327995246847A272491F3359F2_RuntimeMethod_var))); } IL_0e4e: { RegexInterpreter_Backtrack_m30590074E633FAA50401BC2EFA74F6D6FF5371DA(__this, /*hidden argument*/NULL); goto IL_0007; } } #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.RegularExpressions.RegexMatchTimeoutException::.ctor(System.String,System.String,System.TimeSpan) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexMatchTimeoutException__ctor_m157F8CEF5FDAC71E58B04773B3169BA093423866 (RegexMatchTimeoutException_t8A80CA43E67CFD00C11CD0B4D65E08171577AB81 * __this, String_t* ___regexInput0, String_t* ___regexPattern1, TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___matchTimeout2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9221F17704D6D74502888C4875A2FD2E60E87766); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_il2cpp_TypeInfo_var); TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 L_0; L_0 = TimeSpan_FromTicks_m25E4ADCCCC583B8D5A08B77577DE8E46CEBF7F9C(((int64_t)((int64_t)(-1))), /*hidden argument*/NULL); __this->set_matchTimeout_19(L_0); String_t* L_1; L_1 = SR_GetString_m9DC7F3962EEB239017A1A4C443F52047B5BC7462(_stringLiteral9221F17704D6D74502888C4875A2FD2E60E87766, /*hidden argument*/NULL); TimeoutException__ctor_m1A7B4D7C61A8090FA3BAFD65B583587567CDC5C3(__this, L_1, /*hidden argument*/NULL); String_t* L_2 = ___regexInput0; String_t* L_3 = ___regexPattern1; TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 L_4 = ___matchTimeout2; RegexMatchTimeoutException_Init_mA320EBB663A318B596D95349F5F0DE92623D5C1C(__this, L_2, L_3, L_4, /*hidden argument*/NULL); return; } } // System.Void System.Text.RegularExpressions.RegexMatchTimeoutException::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexMatchTimeoutException__ctor_mC0DB6ADBF5008FD1DF623CE94E68C9F1BB875DF9 (RegexMatchTimeoutException_t8A80CA43E67CFD00C11CD0B4D65E08171577AB81 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_il2cpp_TypeInfo_var); TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 L_0; L_0 = TimeSpan_FromTicks_m25E4ADCCCC583B8D5A08B77577DE8E46CEBF7F9C(((int64_t)((int64_t)(-1))), /*hidden argument*/NULL); __this->set_matchTimeout_19(L_0); TimeoutException__ctor_m40A6D335EFA7ABBB20B1A52ACD9214AFDDB3E119(__this, /*hidden argument*/NULL); RegexMatchTimeoutException_Init_m6D59100CBBC91F436D6878CDF3AC18BD86DC2787(__this, /*hidden argument*/NULL); return; } } // System.Void System.Text.RegularExpressions.RegexMatchTimeoutException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexMatchTimeoutException__ctor_mA31059F9B50F01A0C9BEF9081CC22B0C0C332F6E (RegexMatchTimeoutException_t8A80CA43E67CFD00C11CD0B4D65E08171577AB81 * __this, SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * ___info0, StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 ___context1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0E8F17848F8DAE538C88CDDFEC4E7F9563C3E01D); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral550F25B04630B43CAFD4000E36451B35C1CFA209); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6B01510C7FE3BE78C37C67074A3C785D52F1841F); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; String_t* V_1 = NULL; TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 V_2; memset((&V_2), 0, sizeof(V_2)); { IL2CPP_RUNTIME_CLASS_INIT(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_il2cpp_TypeInfo_var); TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 L_0; L_0 = TimeSpan_FromTicks_m25E4ADCCCC583B8D5A08B77577DE8E46CEBF7F9C(((int64_t)((int64_t)(-1))), /*hidden argument*/NULL); __this->set_matchTimeout_19(L_0); SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * L_1 = ___info0; StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 L_2 = ___context1; TimeoutException__ctor_mF0F27D11A8FFC61C68545D72A9348C347A9A5A26(__this, L_1, L_2, /*hidden argument*/NULL); SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * L_3 = ___info0; NullCheck(L_3); String_t* L_4; L_4 = SerializationInfo_GetString_m50298DCBCD07D858EE19414052CB02EE4DDD3C2C(L_3, _stringLiteral6B01510C7FE3BE78C37C67074A3C785D52F1841F, /*hidden argument*/NULL); V_0 = L_4; SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * L_5 = ___info0; NullCheck(L_5); String_t* L_6; L_6 = SerializationInfo_GetString_m50298DCBCD07D858EE19414052CB02EE4DDD3C2C(L_5, _stringLiteral0E8F17848F8DAE538C88CDDFEC4E7F9563C3E01D, /*hidden argument*/NULL); V_1 = L_6; SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * L_7 = ___info0; NullCheck(L_7); int64_t L_8; L_8 = SerializationInfo_GetInt64_m13BC92A489CE4540FC55BB00D2A3460B0D9A0DEC(L_7, _stringLiteral550F25B04630B43CAFD4000E36451B35C1CFA209, /*hidden argument*/NULL); TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 L_9; L_9 = TimeSpan_FromTicks_m25E4ADCCCC583B8D5A08B77577DE8E46CEBF7F9C(L_8, /*hidden argument*/NULL); V_2 = L_9; String_t* L_10 = V_0; String_t* L_11 = V_1; TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 L_12 = V_2; RegexMatchTimeoutException_Init_mA320EBB663A318B596D95349F5F0DE92623D5C1C(__this, L_10, L_11, L_12, /*hidden argument*/NULL); return; } } // System.Void System.Text.RegularExpressions.RegexMatchTimeoutException::System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexMatchTimeoutException_System_Runtime_Serialization_ISerializable_GetObjectData_m32865670AB86CF7F44CBA24B649C5FC3035B6609 (RegexMatchTimeoutException_t8A80CA43E67CFD00C11CD0B4D65E08171577AB81 * __this, SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * ___si0, StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 ___context1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0E8F17848F8DAE538C88CDDFEC4E7F9563C3E01D); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral550F25B04630B43CAFD4000E36451B35C1CFA209); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6B01510C7FE3BE78C37C67074A3C785D52F1841F); s_Il2CppMethodInitialized = true; } { SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * L_0 = ___si0; StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 L_1 = ___context1; Exception_GetObjectData_m2031046D41E7BEE3C743E918B358A336F99D6882(__this, L_0, L_1, /*hidden argument*/NULL); SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * L_2 = ___si0; String_t* L_3 = __this->get_regexInput_17(); NullCheck(L_2); SerializationInfo_AddValue_mA50C2668EF700C2239DDC362F8DB409020BB763D(L_2, _stringLiteral6B01510C7FE3BE78C37C67074A3C785D52F1841F, L_3, /*hidden argument*/NULL); SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * L_4 = ___si0; String_t* L_5 = __this->get_regexPattern_18(); NullCheck(L_4); SerializationInfo_AddValue_mA50C2668EF700C2239DDC362F8DB409020BB763D(L_4, _stringLiteral0E8F17848F8DAE538C88CDDFEC4E7F9563C3E01D, L_5, /*hidden argument*/NULL); SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * L_6 = ___si0; TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * L_7 = __this->get_address_of_matchTimeout_19(); int64_t L_8; L_8 = TimeSpan_get_Ticks_mE4C9E1F27DC794028CEDCF7CB5BD092D16DBACD4_inline((TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 *)L_7, /*hidden argument*/NULL); NullCheck(L_6); SerializationInfo_AddValue_mD0C00DE59B4C6649A6BFA5EBC7D8618B46B967D5(L_6, _stringLiteral550F25B04630B43CAFD4000E36451B35C1CFA209, L_8, /*hidden argument*/NULL); return; } } // System.Void System.Text.RegularExpressions.RegexMatchTimeoutException::Init() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexMatchTimeoutException_Init_m6D59100CBBC91F436D6878CDF3AC18BD86DC2787 (RegexMatchTimeoutException_t8A80CA43E67CFD00C11CD0B4D65E08171577AB81 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_il2cpp_TypeInfo_var); TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 L_0; L_0 = TimeSpan_FromTicks_m25E4ADCCCC583B8D5A08B77577DE8E46CEBF7F9C(((int64_t)((int64_t)(-1))), /*hidden argument*/NULL); RegexMatchTimeoutException_Init_mA320EBB663A318B596D95349F5F0DE92623D5C1C(__this, _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709, _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709, L_0, /*hidden argument*/NULL); return; } } // System.Void System.Text.RegularExpressions.RegexMatchTimeoutException::Init(System.String,System.String,System.TimeSpan) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexMatchTimeoutException_Init_mA320EBB663A318B596D95349F5F0DE92623D5C1C (RegexMatchTimeoutException_t8A80CA43E67CFD00C11CD0B4D65E08171577AB81 * __this, String_t* ___input0, String_t* ___pattern1, TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___timeout2, const RuntimeMethod* method) { { String_t* L_0 = ___input0; __this->set_regexInput_17(L_0); String_t* L_1 = ___pattern1; __this->set_regexPattern_18(L_1); TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 L_2 = ___timeout2; __this->set_matchTimeout_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.RegularExpressions.RegexNode::.ctor(System.Int32,System.Text.RegularExpressions.RegexOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexNode__ctor_mD8966EDCD7AA48AC8AAD5B156C513671843F6D49 (RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * __this, int32_t ___type0, int32_t ___options1, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); int32_t L_0 = ___type0; __this->set__type_0(L_0); int32_t L_1 = ___options1; __this->set__options_6(L_1); return; } } // System.Void System.Text.RegularExpressions.RegexNode::.ctor(System.Int32,System.Text.RegularExpressions.RegexOptions,System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexNode__ctor_m2E85CE2AB0812A86EE61448DEACBA68E329D3325 (RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * __this, int32_t ___type0, int32_t ___options1, Il2CppChar ___ch2, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); int32_t L_0 = ___type0; __this->set__type_0(L_0); int32_t L_1 = ___options1; __this->set__options_6(L_1); Il2CppChar L_2 = ___ch2; __this->set__ch_3(L_2); return; } } // System.Void System.Text.RegularExpressions.RegexNode::.ctor(System.Int32,System.Text.RegularExpressions.RegexOptions,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexNode__ctor_m5A3AA31155A359CC8462AF0AB55DE0D5B7C435B4 (RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * __this, int32_t ___type0, int32_t ___options1, String_t* ___str2, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); int32_t L_0 = ___type0; __this->set__type_0(L_0); int32_t L_1 = ___options1; __this->set__options_6(L_1); String_t* L_2 = ___str2; __this->set__str_2(L_2); return; } } // System.Void System.Text.RegularExpressions.RegexNode::.ctor(System.Int32,System.Text.RegularExpressions.RegexOptions,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexNode__ctor_mD4B2FB6044880AC4DDF035FFE6254A13807A34BC (RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * __this, int32_t ___type0, int32_t ___options1, int32_t ___m2, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); int32_t L_0 = ___type0; __this->set__type_0(L_0); int32_t L_1 = ___options1; __this->set__options_6(L_1); int32_t L_2 = ___m2; __this->set__m_4(L_2); return; } } // System.Void System.Text.RegularExpressions.RegexNode::.ctor(System.Int32,System.Text.RegularExpressions.RegexOptions,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexNode__ctor_m0E000C0421213F15341C9B74C3ADA8F4963CA511 (RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * __this, int32_t ___type0, int32_t ___options1, int32_t ___m2, int32_t ___n3, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); int32_t L_0 = ___type0; __this->set__type_0(L_0); int32_t L_1 = ___options1; __this->set__options_6(L_1); int32_t L_2 = ___m2; __this->set__m_4(L_2); int32_t L_3 = ___n3; __this->set__n_5(L_3); return; } } // System.Boolean System.Text.RegularExpressions.RegexNode::UseOptionR() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexNode_UseOptionR_mBD8EBE8396F51A7DA491FFFAFDB09A148F62E484 (RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get__options_6(); return (bool)((!(((uint32_t)((int32_t)((int32_t)L_0&(int32_t)((int32_t)64)))) <= ((uint32_t)0)))? 1 : 0); } } // System.Text.RegularExpressions.RegexNode System.Text.RegularExpressions.RegexNode::ReverseLeft() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * RegexNode_ReverseLeft_m8507E98BFA6C9F78200B8297811C3EE815724A19 (RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Reverse_m123B97D352D6EACCCEAAEBD2BC6E40C529360CCA_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m3A81757FE0B3283CB292CA61894273AA7B5C97CD_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { bool L_0; L_0 = RegexNode_UseOptionR_mBD8EBE8396F51A7DA491FFFAFDB09A148F62E484(__this, /*hidden argument*/NULL); if (!L_0) { goto IL_0031; } } { int32_t L_1 = __this->get__type_0(); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)25))))) { goto IL_0031; } } { List_1_t692D260BEBA1E69864C98DEEDB3E9256C38CD9B9 * L_2 = __this->get__children_1(); if (!L_2) { goto IL_0031; } } { List_1_t692D260BEBA1E69864C98DEEDB3E9256C38CD9B9 * L_3 = __this->get__children_1(); List_1_t692D260BEBA1E69864C98DEEDB3E9256C38CD9B9 * L_4 = __this->get__children_1(); NullCheck(L_4); int32_t L_5; L_5 = List_1_get_Count_m3A81757FE0B3283CB292CA61894273AA7B5C97CD_inline(L_4, /*hidden argument*/List_1_get_Count_m3A81757FE0B3283CB292CA61894273AA7B5C97CD_RuntimeMethod_var); NullCheck(L_3); List_1_Reverse_m123B97D352D6EACCCEAAEBD2BC6E40C529360CCA(L_3, 0, L_5, /*hidden argument*/List_1_Reverse_m123B97D352D6EACCCEAAEBD2BC6E40C529360CCA_RuntimeMethod_var); } IL_0031: { return __this; } } // System.Void System.Text.RegularExpressions.RegexNode::MakeRep(System.Int32,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexNode_MakeRep_m23A10A13942B83BDF596DE595718B9BD701E8A60 (RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * __this, int32_t ___type0, int32_t ___min1, int32_t ___max2, const RuntimeMethod* method) { { int32_t L_0 = __this->get__type_0(); int32_t L_1 = ___type0; __this->set__type_0(((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_1, (int32_t)((int32_t)9)))))); int32_t L_2 = ___min1; __this->set__m_4(L_2); int32_t L_3 = ___max2; __this->set__n_5(L_3); return; } } // System.Text.RegularExpressions.RegexNode System.Text.RegularExpressions.RegexNode::Reduce() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * RegexNode_Reduce_m2EAE287E7E9FE547B38FEC40BE3E316920B53471 (RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * __this, const RuntimeMethod* method) { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * V_0 = NULL; int32_t V_1 = 0; { int32_t L_0; L_0 = RegexNode_Type_m3C72321B307C77AF12F294F366D57D2C77832F27_inline(__this, /*hidden argument*/NULL); V_1 = L_0; int32_t L_1 = V_1; if ((((int32_t)L_1) == ((int32_t)5))) { goto IL_0057; } } { int32_t L_2 = V_1; if ((((int32_t)L_2) == ((int32_t)((int32_t)11)))) { goto IL_0057; } } { int32_t L_3 = V_1; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_3, (int32_t)((int32_t)24)))) { case 0: { goto IL_0033; } case 1: { goto IL_003c; } case 2: { goto IL_0045; } case 3: { goto IL_0045; } case 4: { goto IL_0060; } case 5: { goto IL_004e; } } } { goto IL_0060; } IL_0033: { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_4; L_4 = RegexNode_ReduceAlternation_m08295B9D7A82E1D1CB97B716C068F7D740C2E18F(__this, /*hidden argument*/NULL); V_0 = L_4; goto IL_0062; } IL_003c: { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_5; L_5 = RegexNode_ReduceConcatenation_mFE1E6366025CB9A114C275B74193CF62BC0AF903(__this, /*hidden argument*/NULL); V_0 = L_5; goto IL_0062; } IL_0045: { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_6; L_6 = RegexNode_ReduceRep_mA3BDCA09CFB2DFB083CF9BEA7E9A64DB27F6B94E(__this, /*hidden argument*/NULL); V_0 = L_6; goto IL_0062; } IL_004e: { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_7; L_7 = RegexNode_ReduceGroup_m3067AEB5BDEF6951832CB84B2F4857848E898236(__this, /*hidden argument*/NULL); V_0 = L_7; goto IL_0062; } IL_0057: { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_8; L_8 = RegexNode_ReduceSet_m0B5361189FC2E71384DA9A107969CB401FD6ED01(__this, /*hidden argument*/NULL); V_0 = L_8; goto IL_0062; } IL_0060: { V_0 = __this; } IL_0062: { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_9 = V_0; return L_9; } } // System.Text.RegularExpressions.RegexNode System.Text.RegularExpressions.RegexNode::StripEnation(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * RegexNode_StripEnation_m1DF9C3A86A4B73CCE7F86C2D121DCACED3DCC4C7 (RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * __this, int32_t ___emptyType0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { int32_t L_0; L_0 = RegexNode_ChildCount_m15D92C9740BA92B2E78B392F7215B8D7D0242172(__this, /*hidden argument*/NULL); V_0 = L_0; int32_t L_1 = V_0; if (!L_1) { goto IL_0010; } } { int32_t L_2 = V_0; if ((((int32_t)L_2) == ((int32_t)1))) { goto IL_001d; } } { goto IL_0025; } IL_0010: { int32_t L_3 = ___emptyType0; int32_t L_4 = __this->get__options_6(); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_5 = (RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 *)il2cpp_codegen_object_new(RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43_il2cpp_TypeInfo_var); RegexNode__ctor_mD8966EDCD7AA48AC8AAD5B156C513671843F6D49(L_5, L_3, L_4, /*hidden argument*/NULL); return L_5; } IL_001d: { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_6; L_6 = RegexNode_Child_mAE38F2EF7289FE455686B7BEEF81C39A9D25E960(__this, 0, /*hidden argument*/NULL); return L_6; } IL_0025: { return __this; } } // System.Text.RegularExpressions.RegexNode System.Text.RegularExpressions.RegexNode::ReduceGroup() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * RegexNode_ReduceGroup_m3067AEB5BDEF6951832CB84B2F4857848E898236 (RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * __this, const RuntimeMethod* method) { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * V_0 = NULL; { V_0 = __this; goto IL_000c; } IL_0004: { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_0 = V_0; NullCheck(L_0); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_1; L_1 = RegexNode_Child_mAE38F2EF7289FE455686B7BEEF81C39A9D25E960(L_0, 0, /*hidden argument*/NULL); V_0 = L_1; } IL_000c: { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_2 = V_0; NullCheck(L_2); int32_t L_3; L_3 = RegexNode_Type_m3C72321B307C77AF12F294F366D57D2C77832F27_inline(L_2, /*hidden argument*/NULL); if ((((int32_t)L_3) == ((int32_t)((int32_t)29)))) { goto IL_0004; } } { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_4 = V_0; return L_4; } } // System.Text.RegularExpressions.RegexNode System.Text.RegularExpressions.RegexNode::ReduceRep() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * RegexNode_ReduceRep_mA3BDCA09CFB2DFB083CF9BEA7E9A64DB27F6B94E (RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * V_0 = NULL; RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * V_1 = NULL; int32_t V_2 = 0; int32_t V_3 = 0; int32_t V_4 = 0; int32_t V_5 = 0; RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * G_B15_0 = NULL; RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * G_B14_0 = NULL; int32_t G_B16_0 = 0; RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * G_B16_1 = NULL; RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * G_B20_0 = NULL; RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * G_B19_0 = NULL; int32_t G_B21_0 = 0; RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * G_B21_1 = NULL; { V_0 = __this; int32_t L_0; L_0 = RegexNode_Type_m3C72321B307C77AF12F294F366D57D2C77832F27_inline(__this, /*hidden argument*/NULL); V_2 = L_0; int32_t L_1 = __this->get__m_4(); V_3 = L_1; int32_t L_2 = __this->get__n_5(); V_4 = L_2; } IL_0018: { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_3 = V_0; NullCheck(L_3); int32_t L_4; L_4 = RegexNode_ChildCount_m15D92C9740BA92B2E78B392F7215B8D7D0242172(L_3, /*hidden argument*/NULL); if (!L_4) { goto IL_00ef; } } { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_5 = V_0; NullCheck(L_5); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_6; L_6 = RegexNode_Child_mAE38F2EF7289FE455686B7BEEF81C39A9D25E960(L_5, 0, /*hidden argument*/NULL); V_1 = L_6; RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_7 = V_1; NullCheck(L_7); int32_t L_8; L_8 = RegexNode_Type_m3C72321B307C77AF12F294F366D57D2C77832F27_inline(L_7, /*hidden argument*/NULL); int32_t L_9 = V_2; if ((((int32_t)L_8) == ((int32_t)L_9))) { goto IL_0063; } } { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_10 = V_1; NullCheck(L_10); int32_t L_11; L_11 = RegexNode_Type_m3C72321B307C77AF12F294F366D57D2C77832F27_inline(L_10, /*hidden argument*/NULL); V_5 = L_11; int32_t L_12 = V_5; if ((((int32_t)L_12) < ((int32_t)3))) { goto IL_004b; } } { int32_t L_13 = V_5; if ((((int32_t)L_13) > ((int32_t)5))) { goto IL_004b; } } { int32_t L_14 = V_2; if ((((int32_t)L_14) == ((int32_t)((int32_t)26)))) { goto IL_0063; } } IL_004b: { int32_t L_15 = V_5; if ((((int32_t)L_15) < ((int32_t)6))) { goto IL_00ef; } } { int32_t L_16 = V_5; if ((((int32_t)L_16) > ((int32_t)8))) { goto IL_00ef; } } { int32_t L_17 = V_2; if ((!(((uint32_t)L_17) == ((uint32_t)((int32_t)27))))) { goto IL_00ef; } } IL_0063: { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_18 = V_0; NullCheck(L_18); int32_t L_19 = L_18->get__m_4(); if (L_19) { goto IL_0074; } } { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_20 = V_1; NullCheck(L_20); int32_t L_21 = L_20->get__m_4(); if ((((int32_t)L_21) > ((int32_t)1))) { goto IL_00ef; } } IL_0074: { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_22 = V_1; NullCheck(L_22); int32_t L_23 = L_22->get__n_5(); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_24 = V_1; NullCheck(L_24); int32_t L_25 = L_24->get__m_4(); if ((((int32_t)L_23) < ((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_25, (int32_t)2))))) { goto IL_00ef; } } { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_26 = V_1; V_0 = L_26; RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_27 = V_0; NullCheck(L_27); int32_t L_28 = L_27->get__m_4(); if ((((int32_t)L_28) <= ((int32_t)0))) { goto IL_00b5; } } { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_29 = V_0; RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_30 = V_0; NullCheck(L_30); int32_t L_31 = L_30->get__m_4(); int32_t L_32 = V_3; G_B14_0 = L_29; if ((((int32_t)((int32_t)((int32_t)((int32_t)2147483646)/(int32_t)L_31))) < ((int32_t)L_32))) { G_B15_0 = L_29; goto IL_00a9; } } { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_33 = V_0; NullCheck(L_33); int32_t L_34 = L_33->get__m_4(); int32_t L_35 = V_3; G_B16_0 = ((int32_t)il2cpp_codegen_multiply((int32_t)L_34, (int32_t)L_35)); G_B16_1 = G_B14_0; goto IL_00ae; } IL_00a9: { G_B16_0 = ((int32_t)2147483647LL); G_B16_1 = G_B15_0; } IL_00ae: { int32_t L_36 = G_B16_0; V_3 = L_36; NullCheck(G_B16_1); G_B16_1->set__m_4(L_36); } IL_00b5: { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_37 = V_0; NullCheck(L_37); int32_t L_38 = L_37->get__n_5(); if ((((int32_t)L_38) <= ((int32_t)0))) { goto IL_0018; } } { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_39 = V_0; RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_40 = V_0; NullCheck(L_40); int32_t L_41 = L_40->get__n_5(); int32_t L_42 = V_4; G_B19_0 = L_39; if ((((int32_t)((int32_t)((int32_t)((int32_t)2147483646)/(int32_t)L_41))) < ((int32_t)L_42))) { G_B20_0 = L_39; goto IL_00dd; } } { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_43 = V_0; NullCheck(L_43); int32_t L_44 = L_43->get__n_5(); int32_t L_45 = V_4; G_B21_0 = ((int32_t)il2cpp_codegen_multiply((int32_t)L_44, (int32_t)L_45)); G_B21_1 = G_B19_0; goto IL_00e2; } IL_00dd: { G_B21_0 = ((int32_t)2147483647LL); G_B21_1 = G_B20_0; } IL_00e2: { int32_t L_46 = G_B21_0; V_4 = L_46; NullCheck(G_B21_1); G_B21_1->set__n_5(L_46); goto IL_0018; } IL_00ef: { int32_t L_47 = V_3; if ((((int32_t)L_47) == ((int32_t)((int32_t)2147483647LL)))) { goto IL_00f9; } } { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_48 = V_0; return L_48; } IL_00f9: { int32_t L_49 = __this->get__options_6(); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_50 = (RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 *)il2cpp_codegen_object_new(RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43_il2cpp_TypeInfo_var); RegexNode__ctor_mD8966EDCD7AA48AC8AAD5B156C513671843F6D49(L_50, ((int32_t)22), L_49, /*hidden argument*/NULL); return L_50; } } // System.Text.RegularExpressions.RegexNode System.Text.RegularExpressions.RegexNode::ReduceSet() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * RegexNode_ReduceSet_m0B5361189FC2E71384DA9A107969CB401FD6ED01 (RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0 = __this->get__str_2(); IL2CPP_RUNTIME_CLASS_INIT(RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5_il2cpp_TypeInfo_var); bool L_1; L_1 = RegexCharClass_IsEmpty_m75C168B21BE2E4C4BDC15ABC666A755F0064F7CF(L_0, /*hidden argument*/NULL); if (!L_1) { goto IL_001e; } } { __this->set__type_0(((int32_t)22)); __this->set__str_2((String_t*)NULL); goto IL_0087; } IL_001e: { String_t* L_2 = __this->get__str_2(); IL2CPP_RUNTIME_CLASS_INIT(RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5_il2cpp_TypeInfo_var); bool L_3; L_3 = RegexCharClass_IsSingleton_mF6500F4A47D3E44CDE29C0BA21AC111282C50737(L_2, /*hidden argument*/NULL); if (!L_3) { goto IL_0054; } } { String_t* L_4 = __this->get__str_2(); IL2CPP_RUNTIME_CLASS_INIT(RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5_il2cpp_TypeInfo_var); Il2CppChar L_5; L_5 = RegexCharClass_SingletonChar_m8D1E6205BE062B72C10A417C0BBE130888FAF3FF(L_4, /*hidden argument*/NULL); __this->set__ch_3(L_5); __this->set__str_2((String_t*)NULL); int32_t L_6 = __this->get__type_0(); __this->set__type_0(((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)((int32_t)-2)))); goto IL_0087; } IL_0054: { String_t* L_7 = __this->get__str_2(); IL2CPP_RUNTIME_CLASS_INIT(RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5_il2cpp_TypeInfo_var); bool L_8; L_8 = RegexCharClass_IsSingletonInverse_mBD2991532F9310EC5E5F30AE4C20998DA39F69BE(L_7, /*hidden argument*/NULL); if (!L_8) { goto IL_0087; } } { String_t* L_9 = __this->get__str_2(); IL2CPP_RUNTIME_CLASS_INIT(RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5_il2cpp_TypeInfo_var); Il2CppChar L_10; L_10 = RegexCharClass_SingletonChar_m8D1E6205BE062B72C10A417C0BBE130888FAF3FF(L_9, /*hidden argument*/NULL); __this->set__ch_3(L_10); __this->set__str_2((String_t*)NULL); int32_t L_11 = __this->get__type_0(); __this->set__type_0(((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)(-1)))); } IL_0087: { return __this; } } // System.Text.RegularExpressions.RegexNode System.Text.RegularExpressions.RegexNode::ReduceAlternation() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * RegexNode_ReduceAlternation_m08295B9D7A82E1D1CB97B716C068F7D740C2E18F (RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_InsertRange_m37FCFE58E6B40EF85198A0C41C1F9816955CEB1C_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_RemoveRange_m34DFA4EEBBB675853B61F9B458B92AF0DBE6F587_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m3A81757FE0B3283CB292CA61894273AA7B5C97CD_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m8A95D3769314CC0C4DDBE001AD1C40B4D5212053_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_set_Item_m6200EE8AD3B82F523BE93EB75D79A9FAE63CCB51_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } bool V_0 = false; bool V_1 = false; int32_t V_2 = 0; int32_t V_3 = 0; int32_t V_4 = 0; int32_t V_5 = 0; RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * V_6 = NULL; RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * V_7 = NULL; int32_t V_8 = 0; RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5 * V_9 = NULL; RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5 * V_10 = NULL; int32_t G_B16_0 = 0; int32_t G_B22_0 = 0; { List_1_t692D260BEBA1E69864C98DEEDB3E9256C38CD9B9 * L_0 = __this->get__children_1(); if (L_0) { goto IL_0016; } } { int32_t L_1 = __this->get__options_6(); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_2 = (RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 *)il2cpp_codegen_object_new(RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43_il2cpp_TypeInfo_var); RegexNode__ctor_mD8966EDCD7AA48AC8AAD5B156C513671843F6D49(L_2, ((int32_t)22), L_1, /*hidden argument*/NULL); return L_2; } IL_0016: { V_0 = (bool)0; V_1 = (bool)0; V_2 = 0; V_4 = 0; V_5 = 0; goto IL_01dc; } IL_0027: { List_1_t692D260BEBA1E69864C98DEEDB3E9256C38CD9B9 * L_3 = __this->get__children_1(); int32_t L_4 = V_4; NullCheck(L_3); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_5; L_5 = List_1_get_Item_m8A95D3769314CC0C4DDBE001AD1C40B4D5212053_inline(L_3, L_4, /*hidden argument*/List_1_get_Item_m8A95D3769314CC0C4DDBE001AD1C40B4D5212053_RuntimeMethod_var); V_6 = L_5; int32_t L_6 = V_5; int32_t L_7 = V_4; if ((((int32_t)L_6) >= ((int32_t)L_7))) { goto IL_004b; } } { List_1_t692D260BEBA1E69864C98DEEDB3E9256C38CD9B9 * L_8 = __this->get__children_1(); int32_t L_9 = V_5; RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_10 = V_6; NullCheck(L_8); List_1_set_Item_m6200EE8AD3B82F523BE93EB75D79A9FAE63CCB51(L_8, L_9, L_10, /*hidden argument*/List_1_set_Item_m6200EE8AD3B82F523BE93EB75D79A9FAE63CCB51_RuntimeMethod_var); } IL_004b: { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_11 = V_6; NullCheck(L_11); int32_t L_12 = L_11->get__type_0(); if ((!(((uint32_t)L_12) == ((uint32_t)((int32_t)24))))) { goto IL_00a6; } } { V_8 = 0; goto IL_0075; } IL_005b: { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_13 = V_6; NullCheck(L_13); List_1_t692D260BEBA1E69864C98DEEDB3E9256C38CD9B9 * L_14 = L_13->get__children_1(); int32_t L_15 = V_8; NullCheck(L_14); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_16; L_16 = List_1_get_Item_m8A95D3769314CC0C4DDBE001AD1C40B4D5212053_inline(L_14, L_15, /*hidden argument*/List_1_get_Item_m8A95D3769314CC0C4DDBE001AD1C40B4D5212053_RuntimeMethod_var); NullCheck(L_16); L_16->set__next_7(__this); int32_t L_17 = V_8; V_8 = ((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1)); } IL_0075: { int32_t L_18 = V_8; RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_19 = V_6; NullCheck(L_19); List_1_t692D260BEBA1E69864C98DEEDB3E9256C38CD9B9 * L_20 = L_19->get__children_1(); NullCheck(L_20); int32_t L_21; L_21 = List_1_get_Count_m3A81757FE0B3283CB292CA61894273AA7B5C97CD_inline(L_20, /*hidden argument*/List_1_get_Count_m3A81757FE0B3283CB292CA61894273AA7B5C97CD_RuntimeMethod_var); if ((((int32_t)L_18) < ((int32_t)L_21))) { goto IL_005b; } } { List_1_t692D260BEBA1E69864C98DEEDB3E9256C38CD9B9 * L_22 = __this->get__children_1(); int32_t L_23 = V_4; RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_24 = V_6; NullCheck(L_24); List_1_t692D260BEBA1E69864C98DEEDB3E9256C38CD9B9 * L_25 = L_24->get__children_1(); NullCheck(L_22); List_1_InsertRange_m37FCFE58E6B40EF85198A0C41C1F9816955CEB1C(L_22, ((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1)), L_25, /*hidden argument*/List_1_InsertRange_m37FCFE58E6B40EF85198A0C41C1F9816955CEB1C_RuntimeMethod_var); int32_t L_26 = V_5; V_5 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_26, (int32_t)1)); goto IL_01d0; } IL_00a6: { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_27 = V_6; NullCheck(L_27); int32_t L_28 = L_27->get__type_0(); if ((((int32_t)L_28) == ((int32_t)((int32_t)11)))) { goto IL_00bf; } } { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_29 = V_6; NullCheck(L_29); int32_t L_30 = L_29->get__type_0(); if ((!(((uint32_t)L_30) == ((uint32_t)((int32_t)9))))) { goto IL_01b9; } } IL_00bf: { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_31 = V_6; NullCheck(L_31); int32_t L_32 = L_31->get__options_6(); V_3 = ((int32_t)((int32_t)L_32&(int32_t)((int32_t)65))); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_33 = V_6; NullCheck(L_33); int32_t L_34 = L_33->get__type_0(); if ((!(((uint32_t)L_34) == ((uint32_t)((int32_t)11))))) { goto IL_010d; } } { bool L_35 = V_0; if (!L_35) { goto IL_00e1; } } { int32_t L_36 = V_2; int32_t L_37 = V_3; G_B16_0 = ((((int32_t)((((int32_t)L_36) == ((int32_t)L_37))? 1 : 0)) == ((int32_t)0))? 1 : 0); goto IL_00e2; } IL_00e1: { G_B16_0 = 1; } IL_00e2: { bool L_38 = V_1; if (((int32_t)((int32_t)G_B16_0|(int32_t)L_38))) { goto IL_00f4; } } { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_39 = V_6; NullCheck(L_39); String_t* L_40 = L_39->get__str_2(); IL2CPP_RUNTIME_CLASS_INIT(RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5_il2cpp_TypeInfo_var); bool L_41; L_41 = RegexCharClass_IsMergeable_m5731790CFE2293CB05120782908AC550C58C63BC(L_40, /*hidden argument*/NULL); if (L_41) { goto IL_0129; } } IL_00f4: { V_0 = (bool)1; RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_42 = V_6; NullCheck(L_42); String_t* L_43 = L_42->get__str_2(); IL2CPP_RUNTIME_CLASS_INIT(RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5_il2cpp_TypeInfo_var); bool L_44; L_44 = RegexCharClass_IsMergeable_m5731790CFE2293CB05120782908AC550C58C63BC(L_43, /*hidden argument*/NULL); V_1 = (bool)((((int32_t)L_44) == ((int32_t)0))? 1 : 0); int32_t L_45 = V_3; V_2 = L_45; goto IL_01d0; } IL_010d: { bool L_46 = V_0; if (!L_46) { goto IL_0119; } } { int32_t L_47 = V_2; int32_t L_48 = V_3; G_B22_0 = ((((int32_t)((((int32_t)L_47) == ((int32_t)L_48))? 1 : 0)) == ((int32_t)0))? 1 : 0); goto IL_011a; } IL_0119: { G_B22_0 = 1; } IL_011a: { bool L_49 = V_1; if (!((int32_t)((int32_t)G_B22_0|(int32_t)L_49))) { goto IL_0129; } } { V_0 = (bool)1; V_1 = (bool)0; int32_t L_50 = V_3; V_2 = L_50; goto IL_01d0; } IL_0129: { int32_t L_51 = V_5; V_5 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_51, (int32_t)1)); List_1_t692D260BEBA1E69864C98DEEDB3E9256C38CD9B9 * L_52 = __this->get__children_1(); int32_t L_53 = V_5; NullCheck(L_52); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_54; L_54 = List_1_get_Item_m8A95D3769314CC0C4DDBE001AD1C40B4D5212053_inline(L_52, L_53, /*hidden argument*/List_1_get_Item_m8A95D3769314CC0C4DDBE001AD1C40B4D5212053_RuntimeMethod_var); V_7 = L_54; RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_55 = V_7; NullCheck(L_55); int32_t L_56 = L_55->get__type_0(); if ((!(((uint32_t)L_56) == ((uint32_t)((int32_t)9))))) { goto IL_0160; } } { RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5 * L_57 = (RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5 *)il2cpp_codegen_object_new(RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5_il2cpp_TypeInfo_var); RegexCharClass__ctor_m70685392EB3C5808958E20C99E045F33E21C8192(L_57, /*hidden argument*/NULL); V_9 = L_57; RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5 * L_58 = V_9; RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_59 = V_7; NullCheck(L_59); Il2CppChar L_60 = L_59->get__ch_3(); NullCheck(L_58); RegexCharClass_AddChar_mDDCFF2A0510737DEAE68DEE7E1359AA7F07D0609(L_58, L_60, /*hidden argument*/NULL); goto IL_016e; } IL_0160: { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_61 = V_7; NullCheck(L_61); String_t* L_62 = L_61->get__str_2(); IL2CPP_RUNTIME_CLASS_INIT(RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5_il2cpp_TypeInfo_var); RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5 * L_63; L_63 = RegexCharClass_Parse_m1A4671A8A47BA3DAC47386D01D5995C6100E87AC(L_62, /*hidden argument*/NULL); V_9 = L_63; } IL_016e: { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_64 = V_6; NullCheck(L_64); int32_t L_65 = L_64->get__type_0(); if ((!(((uint32_t)L_65) == ((uint32_t)((int32_t)9))))) { goto IL_0189; } } { RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5 * L_66 = V_9; RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_67 = V_6; NullCheck(L_67); Il2CppChar L_68 = L_67->get__ch_3(); NullCheck(L_66); RegexCharClass_AddChar_mDDCFF2A0510737DEAE68DEE7E1359AA7F07D0609(L_66, L_68, /*hidden argument*/NULL); goto IL_01a0; } IL_0189: { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_69 = V_6; NullCheck(L_69); String_t* L_70 = L_69->get__str_2(); IL2CPP_RUNTIME_CLASS_INIT(RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5_il2cpp_TypeInfo_var); RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5 * L_71; L_71 = RegexCharClass_Parse_m1A4671A8A47BA3DAC47386D01D5995C6100E87AC(L_70, /*hidden argument*/NULL); V_10 = L_71; RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5 * L_72 = V_9; RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5 * L_73 = V_10; NullCheck(L_72); RegexCharClass_AddCharClass_m1E139F8FDC0E1A33E143A3A413255F6D521F7EB8(L_72, L_73, /*hidden argument*/NULL); } IL_01a0: { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_74 = V_7; NullCheck(L_74); L_74->set__type_0(((int32_t)11)); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_75 = V_7; RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5 * L_76 = V_9; NullCheck(L_76); String_t* L_77; L_77 = RegexCharClass_ToStringClass_mFC6754E97F014AFE4B5138AD5386E9C76D1D3CD7(L_76, /*hidden argument*/NULL); NullCheck(L_75); L_75->set__str_2(L_77); goto IL_01d0; } IL_01b9: { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_78 = V_6; NullCheck(L_78); int32_t L_79 = L_78->get__type_0(); if ((!(((uint32_t)L_79) == ((uint32_t)((int32_t)22))))) { goto IL_01cc; } } { int32_t L_80 = V_5; V_5 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_80, (int32_t)1)); goto IL_01d0; } IL_01cc: { V_0 = (bool)0; V_1 = (bool)0; } IL_01d0: { int32_t L_81 = V_4; V_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_81, (int32_t)1)); int32_t L_82 = V_5; V_5 = ((int32_t)il2cpp_codegen_add((int32_t)L_82, (int32_t)1)); } IL_01dc: { int32_t L_83 = V_4; List_1_t692D260BEBA1E69864C98DEEDB3E9256C38CD9B9 * L_84 = __this->get__children_1(); NullCheck(L_84); int32_t L_85; L_85 = List_1_get_Count_m3A81757FE0B3283CB292CA61894273AA7B5C97CD_inline(L_84, /*hidden argument*/List_1_get_Count_m3A81757FE0B3283CB292CA61894273AA7B5C97CD_RuntimeMethod_var); if ((((int32_t)L_83) < ((int32_t)L_85))) { goto IL_0027; } } { int32_t L_86 = V_5; int32_t L_87 = V_4; if ((((int32_t)L_86) >= ((int32_t)L_87))) { goto IL_0206; } } { List_1_t692D260BEBA1E69864C98DEEDB3E9256C38CD9B9 * L_88 = __this->get__children_1(); int32_t L_89 = V_5; int32_t L_90 = V_4; int32_t L_91 = V_5; NullCheck(L_88); List_1_RemoveRange_m34DFA4EEBBB675853B61F9B458B92AF0DBE6F587(L_88, L_89, ((int32_t)il2cpp_codegen_subtract((int32_t)L_90, (int32_t)L_91)), /*hidden argument*/List_1_RemoveRange_m34DFA4EEBBB675853B61F9B458B92AF0DBE6F587_RuntimeMethod_var); } IL_0206: { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_92; L_92 = RegexNode_StripEnation_m1DF9C3A86A4B73CCE7F86C2D121DCACED3DCC4C7(__this, ((int32_t)22), /*hidden argument*/NULL); return L_92; } } // System.Text.RegularExpressions.RegexNode System.Text.RegularExpressions.RegexNode::ReduceConcatenation() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * RegexNode_ReduceConcatenation_mFE1E6366025CB9A114C275B74193CF62BC0AF903 (RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_tDA947A979C1DAB4F09C461FAFD94FE194743A671_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_InsertRange_m37FCFE58E6B40EF85198A0C41C1F9816955CEB1C_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_RemoveRange_m34DFA4EEBBB675853B61F9B458B92AF0DBE6F587_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m3A81757FE0B3283CB292CA61894273AA7B5C97CD_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m8A95D3769314CC0C4DDBE001AD1C40B4D5212053_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_set_Item_m6200EE8AD3B82F523BE93EB75D79A9FAE63CCB51_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } bool V_0 = false; int32_t V_1 = 0; int32_t V_2 = 0; int32_t V_3 = 0; int32_t V_4 = 0; RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * V_5 = NULL; RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * V_6 = NULL; int32_t V_7 = 0; { List_1_t692D260BEBA1E69864C98DEEDB3E9256C38CD9B9 * L_0 = __this->get__children_1(); if (L_0) { goto IL_0016; } } { int32_t L_1 = __this->get__options_6(); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_2 = (RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 *)il2cpp_codegen_object_new(RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43_il2cpp_TypeInfo_var); RegexNode__ctor_mD8966EDCD7AA48AC8AAD5B156C513671843F6D49(L_2, ((int32_t)23), L_1, /*hidden argument*/NULL); return L_2; } IL_0016: { V_0 = (bool)0; V_1 = 0; V_3 = 0; V_4 = 0; goto IL_01dc; } IL_0024: { List_1_t692D260BEBA1E69864C98DEEDB3E9256C38CD9B9 * L_3 = __this->get__children_1(); int32_t L_4 = V_3; NullCheck(L_3); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_5; L_5 = List_1_get_Item_m8A95D3769314CC0C4DDBE001AD1C40B4D5212053_inline(L_3, L_4, /*hidden argument*/List_1_get_Item_m8A95D3769314CC0C4DDBE001AD1C40B4D5212053_RuntimeMethod_var); V_5 = L_5; int32_t L_6 = V_4; int32_t L_7 = V_3; if ((((int32_t)L_6) >= ((int32_t)L_7))) { goto IL_0046; } } { List_1_t692D260BEBA1E69864C98DEEDB3E9256C38CD9B9 * L_8 = __this->get__children_1(); int32_t L_9 = V_4; RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_10 = V_5; NullCheck(L_8); List_1_set_Item_m6200EE8AD3B82F523BE93EB75D79A9FAE63CCB51(L_8, L_9, L_10, /*hidden argument*/List_1_set_Item_m6200EE8AD3B82F523BE93EB75D79A9FAE63CCB51_RuntimeMethod_var); } IL_0046: { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_11 = V_5; NullCheck(L_11); int32_t L_12 = L_11->get__type_0(); if ((!(((uint32_t)L_12) == ((uint32_t)((int32_t)25))))) { goto IL_00b5; } } { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_13 = V_5; NullCheck(L_13); int32_t L_14 = L_13->get__options_6(); int32_t L_15 = __this->get__options_6(); if ((!(((uint32_t)((int32_t)((int32_t)L_14&(int32_t)((int32_t)64)))) == ((uint32_t)((int32_t)((int32_t)L_15&(int32_t)((int32_t)64))))))) { goto IL_00b5; } } { V_7 = 0; goto IL_0085; } IL_006b: { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_16 = V_5; NullCheck(L_16); List_1_t692D260BEBA1E69864C98DEEDB3E9256C38CD9B9 * L_17 = L_16->get__children_1(); int32_t L_18 = V_7; NullCheck(L_17); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_19; L_19 = List_1_get_Item_m8A95D3769314CC0C4DDBE001AD1C40B4D5212053_inline(L_17, L_18, /*hidden argument*/List_1_get_Item_m8A95D3769314CC0C4DDBE001AD1C40B4D5212053_RuntimeMethod_var); NullCheck(L_19); L_19->set__next_7(__this); int32_t L_20 = V_7; V_7 = ((int32_t)il2cpp_codegen_add((int32_t)L_20, (int32_t)1)); } IL_0085: { int32_t L_21 = V_7; RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_22 = V_5; NullCheck(L_22); List_1_t692D260BEBA1E69864C98DEEDB3E9256C38CD9B9 * L_23 = L_22->get__children_1(); NullCheck(L_23); int32_t L_24; L_24 = List_1_get_Count_m3A81757FE0B3283CB292CA61894273AA7B5C97CD_inline(L_23, /*hidden argument*/List_1_get_Count_m3A81757FE0B3283CB292CA61894273AA7B5C97CD_RuntimeMethod_var); if ((((int32_t)L_21) < ((int32_t)L_24))) { goto IL_006b; } } { List_1_t692D260BEBA1E69864C98DEEDB3E9256C38CD9B9 * L_25 = __this->get__children_1(); int32_t L_26 = V_3; RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_27 = V_5; NullCheck(L_27); List_1_t692D260BEBA1E69864C98DEEDB3E9256C38CD9B9 * L_28 = L_27->get__children_1(); NullCheck(L_25); List_1_InsertRange_m37FCFE58E6B40EF85198A0C41C1F9816955CEB1C(L_25, ((int32_t)il2cpp_codegen_add((int32_t)L_26, (int32_t)1)), L_28, /*hidden argument*/List_1_InsertRange_m37FCFE58E6B40EF85198A0C41C1F9816955CEB1C_RuntimeMethod_var); int32_t L_29 = V_4; V_4 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_29, (int32_t)1)); goto IL_01d2; } IL_00b5: { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_30 = V_5; NullCheck(L_30); int32_t L_31 = L_30->get__type_0(); if ((((int32_t)L_31) == ((int32_t)((int32_t)12)))) { goto IL_00ce; } } { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_32 = V_5; NullCheck(L_32); int32_t L_33 = L_32->get__type_0(); if ((!(((uint32_t)L_33) == ((uint32_t)((int32_t)9))))) { goto IL_01bd; } } IL_00ce: { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_34 = V_5; NullCheck(L_34); int32_t L_35 = L_34->get__options_6(); V_2 = ((int32_t)((int32_t)L_35&(int32_t)((int32_t)65))); bool L_36 = V_0; if (!L_36) { goto IL_00e0; } } { int32_t L_37 = V_1; int32_t L_38 = V_2; if ((((int32_t)L_37) == ((int32_t)L_38))) { goto IL_00e9; } } IL_00e0: { V_0 = (bool)1; int32_t L_39 = V_2; V_1 = L_39; goto IL_01d2; } IL_00e9: { List_1_t692D260BEBA1E69864C98DEEDB3E9256C38CD9B9 * L_40 = __this->get__children_1(); int32_t L_41 = V_4; int32_t L_42 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_41, (int32_t)1)); V_4 = L_42; NullCheck(L_40); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_43; L_43 = List_1_get_Item_m8A95D3769314CC0C4DDBE001AD1C40B4D5212053_inline(L_40, L_42, /*hidden argument*/List_1_get_Item_m8A95D3769314CC0C4DDBE001AD1C40B4D5212053_RuntimeMethod_var); V_6 = L_43; RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_44 = V_6; NullCheck(L_44); int32_t L_45 = L_44->get__type_0(); if ((!(((uint32_t)L_45) == ((uint32_t)((int32_t)9))))) { goto IL_0129; } } { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_46 = V_6; NullCheck(L_46); L_46->set__type_0(((int32_t)12)); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_47 = V_6; RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_48 = V_6; NullCheck(L_48); Il2CppChar L_49 = L_48->get__ch_3(); IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var); CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_50; L_50 = CultureInfo_get_InvariantCulture_m9FAAFAF8A00091EE1FCB7098AD3F163ECDF02164(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Convert_tDA947A979C1DAB4F09C461FAFD94FE194743A671_il2cpp_TypeInfo_var); String_t* L_51; L_51 = Convert_ToString_m6A5562C24B4B4B7B1A5B79AE8DF74128E3E58127(L_49, L_50, /*hidden argument*/NULL); NullCheck(L_47); L_47->set__str_2(L_51); } IL_0129: { int32_t L_52 = V_2; if (((int32_t)((int32_t)L_52&(int32_t)((int32_t)64)))) { goto IL_0175; } } { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_53 = V_5; NullCheck(L_53); int32_t L_54 = L_53->get__type_0(); if ((!(((uint32_t)L_54) == ((uint32_t)((int32_t)9))))) { goto IL_015a; } } { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_55 = V_6; RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_56 = L_55; NullCheck(L_56); String_t* L_57 = L_56->get__str_2(); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_58 = V_5; NullCheck(L_58); Il2CppChar* L_59 = L_58->get_address_of__ch_3(); String_t* L_60; L_60 = Char_ToString_mE0DE433463C56FD30A4F0A50539553B17147C2F8((Il2CppChar*)L_59, /*hidden argument*/NULL); String_t* L_61; L_61 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(L_57, L_60, /*hidden argument*/NULL); NullCheck(L_56); L_56->set__str_2(L_61); goto IL_01d2; } IL_015a: { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_62 = V_6; RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_63 = L_62; NullCheck(L_63); String_t* L_64 = L_63->get__str_2(); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_65 = V_5; NullCheck(L_65); String_t* L_66 = L_65->get__str_2(); String_t* L_67; L_67 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(L_64, L_66, /*hidden argument*/NULL); NullCheck(L_63); L_63->set__str_2(L_67); goto IL_01d2; } IL_0175: { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_68 = V_5; NullCheck(L_68); int32_t L_69 = L_68->get__type_0(); if ((!(((uint32_t)L_69) == ((uint32_t)((int32_t)9))))) { goto IL_01a1; } } { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_70 = V_6; RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_71 = V_5; NullCheck(L_71); Il2CppChar* L_72 = L_71->get_address_of__ch_3(); String_t* L_73; L_73 = Char_ToString_mE0DE433463C56FD30A4F0A50539553B17147C2F8((Il2CppChar*)L_72, /*hidden argument*/NULL); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_74 = V_6; NullCheck(L_74); String_t* L_75 = L_74->get__str_2(); String_t* L_76; L_76 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(L_73, L_75, /*hidden argument*/NULL); NullCheck(L_70); L_70->set__str_2(L_76); goto IL_01d2; } IL_01a1: { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_77 = V_6; RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_78 = V_5; NullCheck(L_78); String_t* L_79 = L_78->get__str_2(); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_80 = V_6; NullCheck(L_80); String_t* L_81 = L_80->get__str_2(); String_t* L_82; L_82 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(L_79, L_81, /*hidden argument*/NULL); NullCheck(L_77); L_77->set__str_2(L_82); goto IL_01d2; } IL_01bd: { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_83 = V_5; NullCheck(L_83); int32_t L_84 = L_83->get__type_0(); if ((!(((uint32_t)L_84) == ((uint32_t)((int32_t)23))))) { goto IL_01d0; } } { int32_t L_85 = V_4; V_4 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_85, (int32_t)1)); goto IL_01d2; } IL_01d0: { V_0 = (bool)0; } IL_01d2: { int32_t L_86 = V_3; V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_86, (int32_t)1)); int32_t L_87 = V_4; V_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_87, (int32_t)1)); } IL_01dc: { int32_t L_88 = V_3; List_1_t692D260BEBA1E69864C98DEEDB3E9256C38CD9B9 * L_89 = __this->get__children_1(); NullCheck(L_89); int32_t L_90; L_90 = List_1_get_Count_m3A81757FE0B3283CB292CA61894273AA7B5C97CD_inline(L_89, /*hidden argument*/List_1_get_Count_m3A81757FE0B3283CB292CA61894273AA7B5C97CD_RuntimeMethod_var); if ((((int32_t)L_88) < ((int32_t)L_90))) { goto IL_0024; } } { int32_t L_91 = V_4; int32_t L_92 = V_3; if ((((int32_t)L_91) >= ((int32_t)L_92))) { goto IL_0203; } } { List_1_t692D260BEBA1E69864C98DEEDB3E9256C38CD9B9 * L_93 = __this->get__children_1(); int32_t L_94 = V_4; int32_t L_95 = V_3; int32_t L_96 = V_4; NullCheck(L_93); List_1_RemoveRange_m34DFA4EEBBB675853B61F9B458B92AF0DBE6F587(L_93, L_94, ((int32_t)il2cpp_codegen_subtract((int32_t)L_95, (int32_t)L_96)), /*hidden argument*/List_1_RemoveRange_m34DFA4EEBBB675853B61F9B458B92AF0DBE6F587_RuntimeMethod_var); } IL_0203: { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_97; L_97 = RegexNode_StripEnation_m1DF9C3A86A4B73CCE7F86C2D121DCACED3DCC4C7(__this, ((int32_t)23), /*hidden argument*/NULL); return L_97; } } // System.Text.RegularExpressions.RegexNode System.Text.RegularExpressions.RegexNode::MakeQuantifier(System.Boolean,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * RegexNode_MakeQuantifier_mB84818E8D93FEB4AE45E224C09EE46BE238ECD20 (RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * __this, bool ___lazy0, int32_t ___min1, int32_t ___max2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * G_B9_0 = NULL; RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * G_B8_0 = NULL; int32_t G_B10_0 = 0; RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * G_B10_1 = NULL; int32_t G_B14_0 = 0; { int32_t L_0 = ___min1; if (L_0) { goto IL_0014; } } { int32_t L_1 = ___max2; if (L_1) { goto IL_0014; } } { int32_t L_2 = __this->get__options_6(); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_3 = (RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 *)il2cpp_codegen_object_new(RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43_il2cpp_TypeInfo_var); RegexNode__ctor_mD8966EDCD7AA48AC8AAD5B156C513671843F6D49(L_3, ((int32_t)23), L_2, /*hidden argument*/NULL); return L_3; } IL_0014: { int32_t L_4 = ___min1; if ((!(((uint32_t)L_4) == ((uint32_t)1)))) { goto IL_001e; } } { int32_t L_5 = ___max2; if ((!(((uint32_t)L_5) == ((uint32_t)1)))) { goto IL_001e; } } { return __this; } IL_001e: { int32_t L_6 = __this->get__type_0(); V_0 = L_6; int32_t L_7 = V_0; if ((!(((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_7, (int32_t)((int32_t)9)))) <= ((uint32_t)2)))) { goto IL_003d; } } { bool L_8 = ___lazy0; G_B8_0 = __this; if (L_8) { G_B9_0 = __this; goto IL_0033; } } { G_B10_0 = 3; G_B10_1 = G_B8_0; goto IL_0034; } IL_0033: { G_B10_0 = 6; G_B10_1 = G_B9_0; } IL_0034: { int32_t L_9 = ___min1; int32_t L_10 = ___max2; NullCheck(G_B10_1); RegexNode_MakeRep_m23A10A13942B83BDF596DE595718B9BD701E8A60(G_B10_1, G_B10_0, L_9, L_10, /*hidden argument*/NULL); return __this; } IL_003d: { bool L_11 = ___lazy0; if (L_11) { goto IL_0044; } } { G_B14_0 = ((int32_t)26); goto IL_0046; } IL_0044: { G_B14_0 = ((int32_t)27); } IL_0046: { int32_t L_12 = __this->get__options_6(); int32_t L_13 = ___min1; int32_t L_14 = ___max2; RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_15 = (RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 *)il2cpp_codegen_object_new(RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43_il2cpp_TypeInfo_var); RegexNode__ctor_m0E000C0421213F15341C9B74C3ADA8F4963CA511(L_15, G_B14_0, L_12, L_13, L_14, /*hidden argument*/NULL); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_16 = L_15; NullCheck(L_16); RegexNode_AddChild_mD5F9848916D55A0DF36CE5460D149E1024005C85(L_16, __this, /*hidden argument*/NULL); return L_16; } } // System.Void System.Text.RegularExpressions.RegexNode::AddChild(System.Text.RegularExpressions.RegexNode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexNode_AddChild_mD5F9848916D55A0DF36CE5460D149E1024005C85 (RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * __this, RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * ___newChild0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m670A9EDF6F3D728B215F9D1127B89402A43F4313_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_mEEED4D424213FDF741A7A72F807F0BF9C6088398_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t692D260BEBA1E69864C98DEEDB3E9256C38CD9B9_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * V_0 = NULL; { List_1_t692D260BEBA1E69864C98DEEDB3E9256C38CD9B9 * L_0 = __this->get__children_1(); if (L_0) { goto IL_0014; } } { List_1_t692D260BEBA1E69864C98DEEDB3E9256C38CD9B9 * L_1 = (List_1_t692D260BEBA1E69864C98DEEDB3E9256C38CD9B9 *)il2cpp_codegen_object_new(List_1_t692D260BEBA1E69864C98DEEDB3E9256C38CD9B9_il2cpp_TypeInfo_var); List_1__ctor_mEEED4D424213FDF741A7A72F807F0BF9C6088398(L_1, 4, /*hidden argument*/List_1__ctor_mEEED4D424213FDF741A7A72F807F0BF9C6088398_RuntimeMethod_var); __this->set__children_1(L_1); } IL_0014: { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_2 = ___newChild0; NullCheck(L_2); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_3; L_3 = RegexNode_Reduce_m2EAE287E7E9FE547B38FEC40BE3E316920B53471(L_2, /*hidden argument*/NULL); V_0 = L_3; List_1_t692D260BEBA1E69864C98DEEDB3E9256C38CD9B9 * L_4 = __this->get__children_1(); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_5 = V_0; NullCheck(L_4); List_1_Add_m670A9EDF6F3D728B215F9D1127B89402A43F4313(L_4, L_5, /*hidden argument*/List_1_Add_m670A9EDF6F3D728B215F9D1127B89402A43F4313_RuntimeMethod_var); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_6 = V_0; NullCheck(L_6); L_6->set__next_7(__this); return; } } // System.Text.RegularExpressions.RegexNode System.Text.RegularExpressions.RegexNode::Child(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * RegexNode_Child_mAE38F2EF7289FE455686B7BEEF81C39A9D25E960 (RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * __this, int32_t ___i0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m8A95D3769314CC0C4DDBE001AD1C40B4D5212053_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { List_1_t692D260BEBA1E69864C98DEEDB3E9256C38CD9B9 * L_0 = __this->get__children_1(); int32_t L_1 = ___i0; NullCheck(L_0); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_2; L_2 = List_1_get_Item_m8A95D3769314CC0C4DDBE001AD1C40B4D5212053_inline(L_0, L_1, /*hidden argument*/List_1_get_Item_m8A95D3769314CC0C4DDBE001AD1C40B4D5212053_RuntimeMethod_var); return L_2; } } // System.Int32 System.Text.RegularExpressions.RegexNode::ChildCount() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexNode_ChildCount_m15D92C9740BA92B2E78B392F7215B8D7D0242172 (RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m3A81757FE0B3283CB292CA61894273AA7B5C97CD_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { List_1_t692D260BEBA1E69864C98DEEDB3E9256C38CD9B9 * L_0 = __this->get__children_1(); if (!L_0) { goto IL_0014; } } { List_1_t692D260BEBA1E69864C98DEEDB3E9256C38CD9B9 * L_1 = __this->get__children_1(); NullCheck(L_1); int32_t L_2; L_2 = List_1_get_Count_m3A81757FE0B3283CB292CA61894273AA7B5C97CD_inline(L_1, /*hidden argument*/List_1_get_Count_m3A81757FE0B3283CB292CA61894273AA7B5C97CD_RuntimeMethod_var); return L_2; } IL_0014: { return 0; } } // System.Int32 System.Text.RegularExpressions.RegexNode::Type() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexNode_Type_m3C72321B307C77AF12F294F366D57D2C77832F27 (RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get__type_0(); return L_0; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #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.RegularExpressions.RegexTree System.Text.RegularExpressions.RegexParser::Parse(System.String,System.Text.RegularExpressions.RegexOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegexTree_t63A434601D42EC388D9B2DCA2913286CFC8811F3 * RegexParser_Parse_mF17A30D14FACA37DB6DE172C5F0C34B4EB1EA719 (String_t* ___re0, int32_t ___op1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_ToArray_m94163AE84EBF9A1F7483014A8E9906BD93D9EBDB_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexTree_t63A434601D42EC388D9B2DCA2913286CFC8811F3_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * V_0 = NULL; StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* V_1 = NULL; CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * G_B3_0 = NULL; RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * G_B5_0 = NULL; RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * G_B4_0 = NULL; RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * G_B6_0 = NULL; { int32_t L_0 = ___op1; if (((int32_t)((int32_t)L_0&(int32_t)((int32_t)512)))) { goto IL_0010; } } { IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var); CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_1; L_1 = CultureInfo_get_CurrentCulture_m99E5F5BD20445F2A73F7EA0014A4E783DF3840BB(/*hidden argument*/NULL); G_B3_0 = L_1; goto IL_0015; } IL_0010: { IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var); CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_2; L_2 = CultureInfo_get_InvariantCulture_m9FAAFAF8A00091EE1FCB7098AD3F163ECDF02164(/*hidden argument*/NULL); G_B3_0 = L_2; } IL_0015: { RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * L_3 = (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 *)il2cpp_codegen_object_new(RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9_il2cpp_TypeInfo_var); RegexParser__ctor_m9058798A864D0200A16F15E995B6B9AA8A189E58(L_3, G_B3_0, /*hidden argument*/NULL); V_0 = L_3; RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * L_4 = V_0; int32_t L_5 = ___op1; NullCheck(L_4); L_4->set__options_16(L_5); RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * L_6 = V_0; String_t* L_7 = ___re0; NullCheck(L_6); RegexParser_SetPattern_mA620864CAC4211AE79F80DF9F19B2A40863E9DBE(L_6, L_7, /*hidden argument*/NULL); RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * L_8 = V_0; NullCheck(L_8); RegexParser_CountCaptures_mE1F7E2BFAE6D599A2F71D217A078B385A9408700(L_8, /*hidden argument*/NULL); RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * L_9 = V_0; int32_t L_10 = ___op1; NullCheck(L_9); RegexParser_Reset_m1D0DAF8942A2A980D3944600893CEF969053F2EE(L_9, L_10, /*hidden argument*/NULL); RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * L_11 = V_0; NullCheck(L_11); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_12; L_12 = RegexParser_ScanRegex_mE0EF23CF2A462063119E2D5046512A1960A11718(L_11, /*hidden argument*/NULL); RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * L_13 = V_0; NullCheck(L_13); List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * L_14 = L_13->get__capnamelist_15(); G_B4_0 = L_12; if (L_14) { G_B5_0 = L_12; goto IL_0048; } } { V_1 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)NULL; G_B6_0 = G_B4_0; goto IL_0054; } IL_0048: { RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * L_15 = V_0; NullCheck(L_15); List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * L_16 = L_15->get__capnamelist_15(); NullCheck(L_16); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_17; L_17 = List_1_ToArray_m94163AE84EBF9A1F7483014A8E9906BD93D9EBDB(L_16, /*hidden argument*/List_1_ToArray_m94163AE84EBF9A1F7483014A8E9906BD93D9EBDB_RuntimeMethod_var); V_1 = L_17; G_B6_0 = G_B5_0; } IL_0054: { RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * L_18 = V_0; NullCheck(L_18); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_19 = L_18->get__caps_12(); RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * L_20 = V_0; NullCheck(L_20); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_21 = L_20->get__capnumlist_14(); RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * L_22 = V_0; NullCheck(L_22); int32_t L_23 = L_22->get__captop_10(); RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * L_24 = V_0; NullCheck(L_24); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_25 = L_24->get__capnames_13(); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_26 = V_1; int32_t L_27 = ___op1; RegexTree_t63A434601D42EC388D9B2DCA2913286CFC8811F3 * L_28 = (RegexTree_t63A434601D42EC388D9B2DCA2913286CFC8811F3 *)il2cpp_codegen_object_new(RegexTree_t63A434601D42EC388D9B2DCA2913286CFC8811F3_il2cpp_TypeInfo_var); RegexTree__ctor_m71E8231B91BF289104B933268B2CEF0AA02CF092(L_28, G_B6_0, L_19, L_21, L_23, L_25, L_26, L_27, /*hidden argument*/NULL); return L_28; } } // System.Void System.Text.RegularExpressions.RegexParser::.ctor(System.Globalization.CultureInfo) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser__ctor_m9058798A864D0200A16F15E995B6B9AA8A189E58 (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * ___culture0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m7D9D8A82FB31C207EA4A2D7AC0D33B90B0BB34AB_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_tE931333A40AB4E57F72E00F9F23D19057C78120A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_0 = ___culture0; __this->set__culture_7(L_0); List_1_tE931333A40AB4E57F72E00F9F23D19057C78120A * L_1 = (List_1_tE931333A40AB4E57F72E00F9F23D19057C78120A *)il2cpp_codegen_object_new(List_1_tE931333A40AB4E57F72E00F9F23D19057C78120A_il2cpp_TypeInfo_var); List_1__ctor_m7D9D8A82FB31C207EA4A2D7AC0D33B90B0BB34AB(L_1, /*hidden argument*/List_1__ctor_m7D9D8A82FB31C207EA4A2D7AC0D33B90B0BB34AB_RuntimeMethod_var); __this->set__optionsStack_17(L_1); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_2 = (Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC *)il2cpp_codegen_object_new(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC_il2cpp_TypeInfo_var); Hashtable__ctor_m2D9C25FB57ACD33B0DF8391D38A165975A1D9A91(L_2, /*hidden argument*/NULL); __this->set__caps_12(L_2); return; } } // System.Void System.Text.RegularExpressions.RegexParser::SetPattern(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_SetPattern_mA620864CAC4211AE79F80DF9F19B2A40863E9DBE (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, String_t* ___Re0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___Re0; if (L_0) { goto IL_000a; } } { String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); ___Re0 = L_1; } IL_000a: { String_t* L_2 = ___Re0; __this->set__pattern_5(L_2); __this->set__currentPos_6(0); return; } } // System.Void System.Text.RegularExpressions.RegexParser::Reset(System.Text.RegularExpressions.RegexOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_Reset_m1D0DAF8942A2A980D3944600893CEF969053F2EE (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, int32_t ___topopts0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_RemoveRange_m44F1D881F5E64D8010B3154DCACBDA5BC6DA4450_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m6027426A21F931ED65BF307176B790FC2065A648_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { __this->set__currentPos_6(0); __this->set__autocap_8(1); __this->set__ignoreNextParen_18((bool)0); List_1_tE931333A40AB4E57F72E00F9F23D19057C78120A * L_0 = __this->get__optionsStack_17(); NullCheck(L_0); int32_t L_1; L_1 = List_1_get_Count_m6027426A21F931ED65BF307176B790FC2065A648_inline(L_0, /*hidden argument*/List_1_get_Count_m6027426A21F931ED65BF307176B790FC2065A648_RuntimeMethod_var); if ((((int32_t)L_1) <= ((int32_t)0))) { goto IL_003c; } } { List_1_tE931333A40AB4E57F72E00F9F23D19057C78120A * L_2 = __this->get__optionsStack_17(); List_1_tE931333A40AB4E57F72E00F9F23D19057C78120A * L_3 = __this->get__optionsStack_17(); NullCheck(L_3); int32_t L_4; L_4 = List_1_get_Count_m6027426A21F931ED65BF307176B790FC2065A648_inline(L_3, /*hidden argument*/List_1_get_Count_m6027426A21F931ED65BF307176B790FC2065A648_RuntimeMethod_var); NullCheck(L_2); List_1_RemoveRange_m44F1D881F5E64D8010B3154DCACBDA5BC6DA4450(L_2, 0, ((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)1)), /*hidden argument*/List_1_RemoveRange_m44F1D881F5E64D8010B3154DCACBDA5BC6DA4450_RuntimeMethod_var); } IL_003c: { int32_t L_5 = ___topopts0; __this->set__options_16(L_5); __this->set__stack_0((RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 *)NULL); return; } } // System.Text.RegularExpressions.RegexNode System.Text.RegularExpressions.RegexParser::ScanRegex() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * RegexParser_ScanRegex_mE0EF23CF2A462063119E2D5046512A1960A11718 (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7E47B8E4D552470F6D8FD78693F09EA115DA32BE); s_Il2CppMethodInitialized = true; } Il2CppChar V_0 = 0x0; bool V_1 = false; bool V_2 = false; int32_t V_3 = 0; int32_t V_4 = 0; int32_t V_5 = 0; RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * V_6 = NULL; int32_t V_7 = 0; int32_t V_8 = 0; bool V_9 = false; int32_t G_B22_0 = 0; int32_t G_B21_0 = 0; int32_t G_B23_0 = 0; int32_t G_B23_1 = 0; RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * G_B47_0 = NULL; RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * G_B46_0 = NULL; int32_t G_B48_0 = 0; RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * G_B48_1 = NULL; RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * G_B51_0 = NULL; RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * G_B50_0 = NULL; int32_t G_B52_0 = 0; RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * G_B52_1 = NULL; RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * G_B59_0 = NULL; RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * G_B58_0 = NULL; String_t* G_B60_0 = NULL; RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * G_B60_1 = NULL; { V_0 = ((int32_t)64); V_1 = (bool)0; int32_t L_0 = __this->get__options_16(); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_1 = (RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 *)il2cpp_codegen_object_new(RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43_il2cpp_TypeInfo_var); RegexNode__ctor_m0E000C0421213F15341C9B74C3ADA8F4963CA511(L_1, ((int32_t)28), L_0, 0, (-1), /*hidden argument*/NULL); RegexParser_StartGroup_m715D16765A3808F41A0DDFB46AE99F7982BA9E87(__this, L_1, /*hidden argument*/NULL); goto IL_042b; } IL_001f: { bool L_2 = V_1; V_2 = L_2; V_1 = (bool)0; RegexParser_ScanBlank_m2ACFA5BAF5FA14554D74C5DE4FE3893483D6F33D(__this, /*hidden argument*/NULL); int32_t L_3; L_3 = RegexParser_Textpos_m5A18C75CE7F3A5AE17373DA09A20070D988308C5_inline(__this, /*hidden argument*/NULL); V_3 = L_3; bool L_4; L_4 = RegexParser_UseOptionX_m7944C5C44AEAA4D69ABA991320A6B960F8EEC284(__this, /*hidden argument*/NULL); if (!L_4) { goto IL_006d; } } { goto IL_0040; } IL_003a: { RegexParser_MoveRight_mE4C6D41AFE3F585C0B8E7CD0AF3CF4DBA8791AB4(__this, /*hidden argument*/NULL); } IL_0040: { int32_t L_5; L_5 = RegexParser_CharsRight_m808A213FCB975D42C6E6270E7A0FAEB1E496B07A(__this, /*hidden argument*/NULL); if ((((int32_t)L_5) <= ((int32_t)0))) { goto IL_0092; } } { Il2CppChar L_6; L_6 = RegexParser_RightChar_mA977C61B98B8BB88C2A66AEBBFDA6826C58ED66A(__this, /*hidden argument*/NULL); Il2CppChar L_7 = L_6; V_0 = L_7; IL2CPP_RUNTIME_CLASS_INIT(RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9_il2cpp_TypeInfo_var); bool L_8; L_8 = RegexParser_IsStopperX_m14B244DAE546E9EAAEF746C7722F21FFAF6DA8D9(L_7, /*hidden argument*/NULL); if (!L_8) { goto IL_003a; } } { Il2CppChar L_9 = V_0; if ((!(((uint32_t)L_9) == ((uint32_t)((int32_t)123))))) { goto IL_0092; } } { bool L_10; L_10 = RegexParser_IsTrueQuantifier_m190312723B9D3A48FA41FED5A4DC5D9C055EB627(__this, /*hidden argument*/NULL); if (!L_10) { goto IL_003a; } } { goto IL_0092; } IL_0067: { RegexParser_MoveRight_mE4C6D41AFE3F585C0B8E7CD0AF3CF4DBA8791AB4(__this, /*hidden argument*/NULL); } IL_006d: { int32_t L_11; L_11 = RegexParser_CharsRight_m808A213FCB975D42C6E6270E7A0FAEB1E496B07A(__this, /*hidden argument*/NULL); if ((((int32_t)L_11) <= ((int32_t)0))) { goto IL_0092; } } { Il2CppChar L_12; L_12 = RegexParser_RightChar_mA977C61B98B8BB88C2A66AEBBFDA6826C58ED66A(__this, /*hidden argument*/NULL); Il2CppChar L_13 = L_12; V_0 = L_13; IL2CPP_RUNTIME_CLASS_INIT(RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9_il2cpp_TypeInfo_var); bool L_14; L_14 = RegexParser_IsSpecial_m3EA52FD6E89284E878A510816990AD45656A9CF0(L_13, /*hidden argument*/NULL); if (!L_14) { goto IL_0067; } } { Il2CppChar L_15 = V_0; if ((!(((uint32_t)L_15) == ((uint32_t)((int32_t)123))))) { goto IL_0092; } } { bool L_16; L_16 = RegexParser_IsTrueQuantifier_m190312723B9D3A48FA41FED5A4DC5D9C055EB627(__this, /*hidden argument*/NULL); if (!L_16) { goto IL_0067; } } IL_0092: { int32_t L_17; L_17 = RegexParser_Textpos_m5A18C75CE7F3A5AE17373DA09A20070D988308C5_inline(__this, /*hidden argument*/NULL); V_4 = L_17; RegexParser_ScanBlank_m2ACFA5BAF5FA14554D74C5DE4FE3893483D6F33D(__this, /*hidden argument*/NULL); int32_t L_18; L_18 = RegexParser_CharsRight_m808A213FCB975D42C6E6270E7A0FAEB1E496B07A(__this, /*hidden argument*/NULL); if (L_18) { goto IL_00ad; } } { V_0 = ((int32_t)33); goto IL_00ce; } IL_00ad: { Il2CppChar L_19; L_19 = RegexParser_RightChar_mA977C61B98B8BB88C2A66AEBBFDA6826C58ED66A(__this, /*hidden argument*/NULL); Il2CppChar L_20 = L_19; V_0 = L_20; IL2CPP_RUNTIME_CLASS_INIT(RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9_il2cpp_TypeInfo_var); bool L_21; L_21 = RegexParser_IsSpecial_m3EA52FD6E89284E878A510816990AD45656A9CF0(L_20, /*hidden argument*/NULL); if (!L_21) { goto IL_00cb; } } { Il2CppChar L_22 = V_0; IL2CPP_RUNTIME_CLASS_INIT(RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9_il2cpp_TypeInfo_var); bool L_23; L_23 = RegexParser_IsQuantifier_mFF0B74F0F48136C4CA3E6D614D819C67FC8EEE07(L_22, /*hidden argument*/NULL); V_1 = L_23; RegexParser_MoveRight_mE4C6D41AFE3F585C0B8E7CD0AF3CF4DBA8791AB4(__this, /*hidden argument*/NULL); goto IL_00ce; } IL_00cb: { V_0 = ((int32_t)32); } IL_00ce: { int32_t L_24 = V_3; int32_t L_25 = V_4; if ((((int32_t)L_24) >= ((int32_t)L_25))) { goto IL_0105; } } { int32_t L_26 = V_4; int32_t L_27 = V_3; bool L_28 = V_1; G_B21_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_26, (int32_t)L_27)); if (L_28) { G_B22_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_26, (int32_t)L_27)); goto IL_00dd; } } { G_B23_0 = 0; G_B23_1 = G_B21_0; goto IL_00de; } IL_00dd: { G_B23_0 = 1; G_B23_1 = G_B22_0; } IL_00de: { V_5 = ((int32_t)il2cpp_codegen_subtract((int32_t)G_B23_1, (int32_t)G_B23_0)); V_2 = (bool)0; int32_t L_29 = V_5; if ((((int32_t)L_29) <= ((int32_t)0))) { goto IL_00f2; } } { int32_t L_30 = V_3; int32_t L_31 = V_5; RegexParser_AddConcatenate_m308E5EB5C42CF795225A0FDBACCF647B57BE425B(__this, L_30, L_31, (bool)0, /*hidden argument*/NULL); } IL_00f2: { bool L_32 = V_1; if (!L_32) { goto IL_0105; } } { int32_t L_33 = V_4; Il2CppChar L_34; L_34 = RegexParser_CharAt_mEA865F2B6DC4EF1B81F8D80ABF989F395BEC0B84(__this, ((int32_t)il2cpp_codegen_subtract((int32_t)L_33, (int32_t)1)), /*hidden argument*/NULL); RegexParser_AddUnitOne_mDEC722E078B3E61126F56718AF7FED159C616CDC(__this, L_34, /*hidden argument*/NULL); } IL_0105: { Il2CppChar L_35 = V_0; if ((!(((uint32_t)L_35) <= ((uint32_t)((int32_t)63))))) { goto IL_015c; } } { Il2CppChar L_36 = V_0; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_36, (int32_t)((int32_t)32)))) { case 0: { goto IL_042b; } case 1: { goto IL_0437; } case 2: { goto IL_02b7; } case 3: { goto IL_02b7; } case 4: { goto IL_0242; } case 5: { goto IL_02b7; } case 6: { goto IL_02b7; } case 7: { goto IL_02b7; } case 8: { goto IL_01a3; } case 9: { goto IL_01dd; } case 10: { goto IL_0277; } case 11: { goto IL_0277; } case 12: { goto IL_02b7; } case 13: { goto IL_02b7; } case 14: { goto IL_0258; } } } { Il2CppChar L_37 = V_0; if ((((int32_t)L_37) == ((int32_t)((int32_t)63)))) { goto IL_0277; } } { goto IL_02b7; } IL_015c: { Il2CppChar L_38 = V_0; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_38, (int32_t)((int32_t)91)))) { case 0: { goto IL_0187; } case 1: { goto IL_0218; } case 2: { goto IL_02b7; } case 3: { goto IL_0229; } } } { Il2CppChar L_39 = V_0; if ((((int32_t)L_39) == ((int32_t)((int32_t)123)))) { goto IL_0277; } } { Il2CppChar L_40 = V_0; if ((((int32_t)L_40) == ((int32_t)((int32_t)124)))) { goto IL_01d2; } } { goto IL_02b7; } IL_0187: { bool L_41; L_41 = RegexParser_UseOptionI_m46AAF2DBCC08EE8F3E8ECA1A5E37160C4E5C7B04(__this, /*hidden argument*/NULL); RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5 * L_42; L_42 = RegexParser_ScanCharClass_mD4A465FEDA75BF5820D5B0C9A95EAEA3D99DB831(__this, L_41, /*hidden argument*/NULL); NullCheck(L_42); String_t* L_43; L_43 = RegexCharClass_ToStringClass_mFC6754E97F014AFE4B5138AD5386E9C76D1D3CD7(L_42, /*hidden argument*/NULL); RegexParser_AddUnitSet_mF7CEA4892737145E04E8ECD6DCD3B2A8F809C58B(__this, L_43, /*hidden argument*/NULL); goto IL_02c8; } IL_01a3: { RegexParser_PushOptions_mC0047ADAB396BC1643AA63B2C395F09FCBE726BC(__this, /*hidden argument*/NULL); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_44; L_44 = RegexParser_ScanGroupOpen_m1DE2AA1EFA786C58869EF4025705449871F33D59(__this, /*hidden argument*/NULL); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_45 = L_44; V_6 = L_45; if (L_45) { goto IL_01bf; } } { RegexParser_PopKeepOptions_mBCC70CBFDC2A6DD07FE090D4E546B6AEA5644500(__this, /*hidden argument*/NULL); goto IL_042b; } IL_01bf: { RegexParser_PushGroup_m30EE1A2FFE88FBA12DB8B4D929F6122D8001EAF9(__this, /*hidden argument*/NULL); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_46 = V_6; RegexParser_StartGroup_m715D16765A3808F41A0DDFB46AE99F7982BA9E87(__this, L_46, /*hidden argument*/NULL); goto IL_042b; } IL_01d2: { RegexParser_AddAlternate_m2C8BA28D8A58FB9CA6FE75F9D5875BF748305AB0(__this, /*hidden argument*/NULL); goto IL_042b; } IL_01dd: { bool L_47; L_47 = RegexParser_EmptyStack_mCDC440C4B29CD14F4A0D9D6E3BE105869F246E2E(__this, /*hidden argument*/NULL); if (!L_47) { goto IL_01f6; } } { String_t* L_48; L_48 = SR_GetString_m9DC7F3962EEB239017A1A4C443F52047B5BC7462(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB70DFAAAD0ABCCD469EB8575DD6833C88CC374B5)), /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_49; L_49 = RegexParser_MakeException_mA573DC3F94B98F328A9B87673A2CF8A15120DEB1(__this, L_48, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_49, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexParser_ScanRegex_mE0EF23CF2A462063119E2D5046512A1960A11718_RuntimeMethod_var))); } IL_01f6: { RegexParser_AddGroup_m3771097F1B4F1F6AA10104D28B663026F7B7326F(__this, /*hidden argument*/NULL); RegexParser_PopGroup_m461057BFDD1D1CFD70CF3DFE70693E429FCF0FA9(__this, /*hidden argument*/NULL); RegexParser_PopOptions_m186A6537DA0481481E59C5BED015B577508271C7(__this, /*hidden argument*/NULL); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_50; L_50 = RegexParser_Unit_m88B751E79E4DE41D295805439EE6D1D5B7170D7F_inline(__this, /*hidden argument*/NULL); if (L_50) { goto IL_02c8; } } { goto IL_042b; } IL_0218: { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_51; L_51 = RegexParser_ScanBackslash_m2598C224286A4826DEB2D1189CCB73C9A363DFBD(__this, /*hidden argument*/NULL); RegexParser_AddUnitNode_m84299A7BCF95B87B5B4672759DE2D8D863FA80E2_inline(__this, L_51, /*hidden argument*/NULL); goto IL_02c8; } IL_0229: { bool L_52; L_52 = RegexParser_UseOptionM_mBCB459C99D9BD541A68ADF86C1FD437169A8352E(__this, /*hidden argument*/NULL); G_B46_0 = __this; if (L_52) { G_B47_0 = __this; goto IL_0236; } } { G_B48_0 = ((int32_t)18); G_B48_1 = G_B46_0; goto IL_0238; } IL_0236: { G_B48_0 = ((int32_t)14); G_B48_1 = G_B47_0; } IL_0238: { NullCheck(G_B48_1); RegexParser_AddUnitType_m39738056CFFB37E7036AF626829033D6052E6FD8(G_B48_1, G_B48_0, /*hidden argument*/NULL); goto IL_02c8; } IL_0242: { bool L_53; L_53 = RegexParser_UseOptionM_mBCB459C99D9BD541A68ADF86C1FD437169A8352E(__this, /*hidden argument*/NULL); G_B50_0 = __this; if (L_53) { G_B51_0 = __this; goto IL_024f; } } { G_B52_0 = ((int32_t)20); G_B52_1 = G_B50_0; goto IL_0251; } IL_024f: { G_B52_0 = ((int32_t)15); G_B52_1 = G_B51_0; } IL_0251: { NullCheck(G_B52_1); RegexParser_AddUnitType_m39738056CFFB37E7036AF626829033D6052E6FD8(G_B52_1, G_B52_0, /*hidden argument*/NULL); goto IL_02c8; } IL_0258: { bool L_54; L_54 = RegexParser_UseOptionS_m079D720F7300CEEBB4800B8CB5F7DE450E00FC6D(__this, /*hidden argument*/NULL); if (!L_54) { goto IL_026d; } } { RegexParser_AddUnitSet_mF7CEA4892737145E04E8ECD6DCD3B2A8F809C58B(__this, _stringLiteral7E47B8E4D552470F6D8FD78693F09EA115DA32BE, /*hidden argument*/NULL); goto IL_02c8; } IL_026d: { RegexParser_AddUnitNotone_m14CA5BBABCE627507923A6BE373BEC032167801F(__this, ((int32_t)10), /*hidden argument*/NULL); goto IL_02c8; } IL_0277: { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_55; L_55 = RegexParser_Unit_m88B751E79E4DE41D295805439EE6D1D5B7170D7F_inline(__this, /*hidden argument*/NULL); if (L_55) { goto IL_02af; } } { bool L_56 = V_2; G_B58_0 = __this; if (L_56) { G_B59_0 = __this; goto IL_028f; } } { String_t* L_57; L_57 = SR_GetString_m9DC7F3962EEB239017A1A4C443F52047B5BC7462(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE63688B993F3304E9013687D7CD5065D0AE3D400)), /*hidden argument*/NULL); G_B60_0 = L_57; G_B60_1 = G_B58_0; goto IL_02a9; } IL_028f: { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_58 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var)), (uint32_t)1); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_59 = L_58; String_t* L_60; L_60 = Char_ToString_mE0DE433463C56FD30A4F0A50539553B17147C2F8((Il2CppChar*)(&V_0), /*hidden argument*/NULL); NullCheck(L_59); ArrayElementTypeCheck (L_59, L_60); (L_59)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_60); String_t* L_61; L_61 = SR_GetString_m4FFAF18248A54C5B67E4760C5ED4869A87BCAD7F(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral17B277DD41310C7E909CF67339B1A07AB6FEC59A)), L_59, /*hidden argument*/NULL); G_B60_0 = L_61; G_B60_1 = G_B59_0; } IL_02a9: { NullCheck(G_B60_1); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_62; L_62 = RegexParser_MakeException_mA573DC3F94B98F328A9B87673A2CF8A15120DEB1(G_B60_1, G_B60_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_62, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexParser_ScanRegex_mE0EF23CF2A462063119E2D5046512A1960A11718_RuntimeMethod_var))); } IL_02af: { RegexParser_MoveLeft_mBE0128B08B61C1306954528C799F2F1F1B803391(__this, /*hidden argument*/NULL); goto IL_02c8; } IL_02b7: { String_t* L_63; L_63 = SR_GetString_m9DC7F3962EEB239017A1A4C443F52047B5BC7462(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral29A5AED1D4EB99A01F98E33F896B7B911D6BBD64)), /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_64; L_64 = RegexParser_MakeException_mA573DC3F94B98F328A9B87673A2CF8A15120DEB1(__this, L_63, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_64, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexParser_ScanRegex_mE0EF23CF2A462063119E2D5046512A1960A11718_RuntimeMethod_var))); } IL_02c8: { RegexParser_ScanBlank_m2ACFA5BAF5FA14554D74C5DE4FE3893483D6F33D(__this, /*hidden argument*/NULL); int32_t L_65; L_65 = RegexParser_CharsRight_m808A213FCB975D42C6E6270E7A0FAEB1E496B07A(__this, /*hidden argument*/NULL); if (!L_65) { goto IL_02e0; } } { bool L_66; L_66 = RegexParser_IsTrueQuantifier_m190312723B9D3A48FA41FED5A4DC5D9C055EB627(__this, /*hidden argument*/NULL); bool L_67 = L_66; V_1 = L_67; if (L_67) { goto IL_02eb; } } IL_02e0: { RegexParser_AddConcatenate_m1B223D215058DA19724BD379C2BC0557EA24B48A(__this, /*hidden argument*/NULL); goto IL_042b; } IL_02eb: { Il2CppChar L_68; L_68 = RegexParser_MoveRightGetChar_mE98852DD0B33AE818B01A7CC7A9C301C2226F81C(__this, /*hidden argument*/NULL); V_0 = L_68; goto IL_0420; } IL_02f7: { Il2CppChar L_69 = V_0; if ((!(((uint32_t)L_69) <= ((uint32_t)((int32_t)43))))) { goto IL_030b; } } { Il2CppChar L_70 = V_0; if ((((int32_t)L_70) == ((int32_t)((int32_t)42)))) { goto IL_031a; } } { Il2CppChar L_71 = V_0; if ((((int32_t)L_71) == ((int32_t)((int32_t)43)))) { goto IL_0334; } } { goto IL_03c6; } IL_030b: { Il2CppChar L_72 = V_0; if ((((int32_t)L_72) == ((int32_t)((int32_t)63)))) { goto IL_0329; } } { Il2CppChar L_73 = V_0; if ((((int32_t)L_73) == ((int32_t)((int32_t)123)))) { goto IL_0343; } } { goto IL_03c6; } IL_031a: { V_7 = 0; V_8 = ((int32_t)2147483647LL); goto IL_03d7; } IL_0329: { V_7 = 0; V_8 = 1; goto IL_03d7; } IL_0334: { V_7 = 1; V_8 = ((int32_t)2147483647LL); goto IL_03d7; } IL_0343: { int32_t L_74; L_74 = RegexParser_Textpos_m5A18C75CE7F3A5AE17373DA09A20070D988308C5_inline(__this, /*hidden argument*/NULL); V_3 = L_74; int32_t L_75; L_75 = RegexParser_ScanDecimal_mC7374D132F506C5D7EEB868C32C4959B1C672017(__this, /*hidden argument*/NULL); int32_t L_76 = L_75; V_7 = L_76; V_8 = L_76; int32_t L_77 = V_3; int32_t L_78; L_78 = RegexParser_Textpos_m5A18C75CE7F3A5AE17373DA09A20070D988308C5_inline(__this, /*hidden argument*/NULL); if ((((int32_t)L_77) >= ((int32_t)L_78))) { goto IL_039a; } } { int32_t L_79; L_79 = RegexParser_CharsRight_m808A213FCB975D42C6E6270E7A0FAEB1E496B07A(__this, /*hidden argument*/NULL); if ((((int32_t)L_79) <= ((int32_t)0))) { goto IL_039a; } } { Il2CppChar L_80; L_80 = RegexParser_RightChar_mA977C61B98B8BB88C2A66AEBBFDA6826C58ED66A(__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_80) == ((uint32_t)((int32_t)44))))) { goto IL_039a; } } { RegexParser_MoveRight_mE4C6D41AFE3F585C0B8E7CD0AF3CF4DBA8791AB4(__this, /*hidden argument*/NULL); int32_t L_81; L_81 = RegexParser_CharsRight_m808A213FCB975D42C6E6270E7A0FAEB1E496B07A(__this, /*hidden argument*/NULL); if (!L_81) { goto IL_0389; } } { Il2CppChar L_82; L_82 = RegexParser_RightChar_mA977C61B98B8BB88C2A66AEBBFDA6826C58ED66A(__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_82) == ((uint32_t)((int32_t)125))))) { goto IL_0392; } } IL_0389: { V_8 = ((int32_t)2147483647LL); goto IL_039a; } IL_0392: { int32_t L_83; L_83 = RegexParser_ScanDecimal_mC7374D132F506C5D7EEB868C32C4959B1C672017(__this, /*hidden argument*/NULL); V_8 = L_83; } IL_039a: { int32_t L_84 = V_3; int32_t L_85; L_85 = RegexParser_Textpos_m5A18C75CE7F3A5AE17373DA09A20070D988308C5_inline(__this, /*hidden argument*/NULL); if ((((int32_t)L_84) == ((int32_t)L_85))) { goto IL_03b5; } } { int32_t L_86; L_86 = RegexParser_CharsRight_m808A213FCB975D42C6E6270E7A0FAEB1E496B07A(__this, /*hidden argument*/NULL); if (!L_86) { goto IL_03b5; } } { Il2CppChar L_87; L_87 = RegexParser_MoveRightGetChar_mE98852DD0B33AE818B01A7CC7A9C301C2226F81C(__this, /*hidden argument*/NULL); if ((((int32_t)L_87) == ((int32_t)((int32_t)125)))) { goto IL_03d7; } } IL_03b5: { RegexParser_AddConcatenate_m1B223D215058DA19724BD379C2BC0557EA24B48A(__this, /*hidden argument*/NULL); int32_t L_88 = V_3; RegexParser_Textto_mE4BCC8608BF006D283A32F9C5811264467EEB806_inline(__this, ((int32_t)il2cpp_codegen_subtract((int32_t)L_88, (int32_t)1)), /*hidden argument*/NULL); goto IL_042b; } IL_03c6: { String_t* L_89; L_89 = SR_GetString_m9DC7F3962EEB239017A1A4C443F52047B5BC7462(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral29A5AED1D4EB99A01F98E33F896B7B911D6BBD64)), /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_90; L_90 = RegexParser_MakeException_mA573DC3F94B98F328A9B87673A2CF8A15120DEB1(__this, L_89, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_90, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexParser_ScanRegex_mE0EF23CF2A462063119E2D5046512A1960A11718_RuntimeMethod_var))); } IL_03d7: { RegexParser_ScanBlank_m2ACFA5BAF5FA14554D74C5DE4FE3893483D6F33D(__this, /*hidden argument*/NULL); int32_t L_91; L_91 = RegexParser_CharsRight_m808A213FCB975D42C6E6270E7A0FAEB1E496B07A(__this, /*hidden argument*/NULL); if (!L_91) { goto IL_03ef; } } { Il2CppChar L_92; L_92 = RegexParser_RightChar_mA977C61B98B8BB88C2A66AEBBFDA6826C58ED66A(__this, /*hidden argument*/NULL); if ((((int32_t)L_92) == ((int32_t)((int32_t)63)))) { goto IL_03f4; } } IL_03ef: { V_9 = (bool)0; goto IL_03fd; } IL_03f4: { RegexParser_MoveRight_mE4C6D41AFE3F585C0B8E7CD0AF3CF4DBA8791AB4(__this, /*hidden argument*/NULL); V_9 = (bool)1; } IL_03fd: { int32_t L_93 = V_7; int32_t L_94 = V_8; if ((((int32_t)L_93) <= ((int32_t)L_94))) { goto IL_0414; } } { String_t* L_95; L_95 = SR_GetString_m9DC7F3962EEB239017A1A4C443F52047B5BC7462(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2E203410EDD156CA82D74FCDDE8C2C9EB635FE18)), /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_96; L_96 = RegexParser_MakeException_mA573DC3F94B98F328A9B87673A2CF8A15120DEB1(__this, L_95, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_96, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexParser_ScanRegex_mE0EF23CF2A462063119E2D5046512A1960A11718_RuntimeMethod_var))); } IL_0414: { bool L_97 = V_9; int32_t L_98 = V_7; int32_t L_99 = V_8; RegexParser_AddConcatenate_m47774C08F0EF3E4B83BD52C777019D63BE718AE6(__this, L_97, L_98, L_99, /*hidden argument*/NULL); } IL_0420: { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_100; L_100 = RegexParser_Unit_m88B751E79E4DE41D295805439EE6D1D5B7170D7F_inline(__this, /*hidden argument*/NULL); if (L_100) { goto IL_02f7; } } IL_042b: { int32_t L_101; L_101 = RegexParser_CharsRight_m808A213FCB975D42C6E6270E7A0FAEB1E496B07A(__this, /*hidden argument*/NULL); if ((((int32_t)L_101) > ((int32_t)0))) { goto IL_001f; } } IL_0437: { bool L_102; L_102 = RegexParser_EmptyStack_mCDC440C4B29CD14F4A0D9D6E3BE105869F246E2E(__this, /*hidden argument*/NULL); if (L_102) { goto IL_0450; } } { String_t* L_103; L_103 = SR_GetString_m9DC7F3962EEB239017A1A4C443F52047B5BC7462(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral07B71A0735C0A5FDC2E73979B95958D40F06AE42)), /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_104; L_104 = RegexParser_MakeException_mA573DC3F94B98F328A9B87673A2CF8A15120DEB1(__this, L_103, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_104, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexParser_ScanRegex_mE0EF23CF2A462063119E2D5046512A1960A11718_RuntimeMethod_var))); } IL_0450: { RegexParser_AddGroup_m3771097F1B4F1F6AA10104D28B663026F7B7326F(__this, /*hidden argument*/NULL); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_105; L_105 = RegexParser_Unit_m88B751E79E4DE41D295805439EE6D1D5B7170D7F_inline(__this, /*hidden argument*/NULL); return L_105; } } // System.Text.RegularExpressions.RegexCharClass System.Text.RegularExpressions.RegexParser::ScanCharClass(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5 * RegexParser_ScanCharClass_mD4A465FEDA75BF5820D5B0C9A95EAEA3D99DB831 (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, bool ___caseInsensitive0, const RuntimeMethod* method) { { bool L_0 = ___caseInsensitive0; RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5 * L_1; L_1 = RegexParser_ScanCharClass_mADFDEFF75B3C880E692ED8411B7154CF3130401E(__this, L_0, (bool)0, /*hidden argument*/NULL); return L_1; } } // System.Text.RegularExpressions.RegexCharClass System.Text.RegularExpressions.RegexParser::ScanCharClass(System.Boolean,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5 * RegexParser_ScanCharClass_mADFDEFF75B3C880E692ED8411B7154CF3130401E (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, bool ___caseInsensitive0, bool ___scanOnly1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } Il2CppChar V_0 = 0x0; Il2CppChar V_1 = 0x0; bool V_2 = false; bool V_3 = false; bool V_4 = false; RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5 * V_5 = NULL; bool V_6 = false; Il2CppChar V_7 = 0x0; int32_t V_8 = 0; RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5 * G_B3_0 = NULL; { V_0 = 0; V_1 = 0; V_2 = (bool)0; V_3 = (bool)1; V_4 = (bool)0; bool L_0 = ___scanOnly1; if (L_0) { goto IL_0015; } } { RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5 * L_1 = (RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5 *)il2cpp_codegen_object_new(RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5_il2cpp_TypeInfo_var); RegexCharClass__ctor_m70685392EB3C5808958E20C99E045F33E21C8192(L_1, /*hidden argument*/NULL); G_B3_0 = L_1; goto IL_0016; } IL_0015: { G_B3_0 = ((RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5 *)(NULL)); } IL_0016: { V_5 = G_B3_0; int32_t L_2; L_2 = RegexParser_CharsRight_m808A213FCB975D42C6E6270E7A0FAEB1E496B07A(__this, /*hidden argument*/NULL); if ((((int32_t)L_2) <= ((int32_t)0))) { goto IL_03ac; } } { Il2CppChar L_3; L_3 = RegexParser_RightChar_mA977C61B98B8BB88C2A66AEBBFDA6826C58ED66A(__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_3) == ((uint32_t)((int32_t)94))))) { goto IL_03ac; } } { RegexParser_MoveRight_mE4C6D41AFE3F585C0B8E7CD0AF3CF4DBA8791AB4(__this, /*hidden argument*/NULL); bool L_4 = ___scanOnly1; if (L_4) { goto IL_03ac; } } { RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5 * L_5 = V_5; NullCheck(L_5); RegexCharClass_set_Negate_mC3CA41B098CF6B47BBF9101619F1AC4EAA3FD131_inline(L_5, (bool)1, /*hidden argument*/NULL); goto IL_03ac; } IL_004a: { V_6 = (bool)0; Il2CppChar L_6; L_6 = RegexParser_MoveRightGetChar_mE98852DD0B33AE818B01A7CC7A9C301C2226F81C(__this, /*hidden argument*/NULL); V_0 = L_6; Il2CppChar L_7 = V_0; if ((!(((uint32_t)L_7) == ((uint32_t)((int32_t)93))))) { goto IL_0067; } } { bool L_8 = V_3; if (L_8) { goto IL_028b; } } { V_4 = (bool)1; goto IL_03b8; } IL_0067: { Il2CppChar L_9 = V_0; if ((!(((uint32_t)L_9) == ((uint32_t)((int32_t)92))))) { goto IL_0236; } } { int32_t L_10; L_10 = RegexParser_CharsRight_m808A213FCB975D42C6E6270E7A0FAEB1E496B07A(__this, /*hidden argument*/NULL); if ((((int32_t)L_10) <= ((int32_t)0))) { goto IL_0236; } } { Il2CppChar L_11; L_11 = RegexParser_MoveRightGetChar_mE98852DD0B33AE818B01A7CC7A9C301C2226F81C(__this, /*hidden argument*/NULL); Il2CppChar L_12 = L_11; V_0 = L_12; V_7 = L_12; Il2CppChar L_13 = V_7; if ((!(((uint32_t)L_13) <= ((uint32_t)((int32_t)83))))) { goto IL_00bc; } } { Il2CppChar L_14 = V_7; if ((!(((uint32_t)L_14) <= ((uint32_t)((int32_t)68))))) { goto IL_00a5; } } { Il2CppChar L_15 = V_7; if ((((int32_t)L_15) == ((int32_t)((int32_t)45)))) { goto IL_0210; } } { Il2CppChar L_16 = V_7; if ((((int32_t)L_16) == ((int32_t)((int32_t)68)))) { goto IL_00f3; } } { goto IL_0224; } IL_00a5: { Il2CppChar L_17 = V_7; if ((((int32_t)L_17) == ((int32_t)((int32_t)80)))) { goto IL_01bc; } } { Il2CppChar L_18 = V_7; if ((((int32_t)L_18) == ((int32_t)((int32_t)83)))) { goto IL_013a; } } { goto IL_0224; } IL_00bc: { Il2CppChar L_19 = V_7; if ((!(((uint32_t)L_19) <= ((uint32_t)((int32_t)100))))) { goto IL_00d6; } } { Il2CppChar L_20 = V_7; if ((((int32_t)L_20) == ((int32_t)((int32_t)87)))) { goto IL_017b; } } { Il2CppChar L_21 = V_7; if ((((int32_t)L_21) == ((int32_t)((int32_t)100)))) { goto IL_00f3; } } { goto IL_0224; } IL_00d6: { Il2CppChar L_22 = V_7; if ((((int32_t)L_22) == ((int32_t)((int32_t)112)))) { goto IL_01bc; } } { Il2CppChar L_23 = V_7; if ((((int32_t)L_23) == ((int32_t)((int32_t)115)))) { goto IL_013a; } } { Il2CppChar L_24 = V_7; if ((((int32_t)L_24) == ((int32_t)((int32_t)119)))) { goto IL_017b; } } { goto IL_0224; } IL_00f3: { bool L_25 = ___scanOnly1; if (L_25) { goto IL_03aa; } } { bool L_26 = V_2; if (!L_26) { goto IL_011d; } } { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_27 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var)), (uint32_t)1); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_28 = L_27; String_t* L_29; L_29 = Char_ToString_mE0DE433463C56FD30A4F0A50539553B17147C2F8((Il2CppChar*)(&V_0), /*hidden argument*/NULL); NullCheck(L_28); ArrayElementTypeCheck (L_28, L_29); (L_28)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_29); String_t* L_30; L_30 = SR_GetString_m4FFAF18248A54C5B67E4760C5ED4869A87BCAD7F(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralBC12DB6076DF77D5CCDF7B01D4534A2545723633)), L_28, /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_31; L_31 = RegexParser_MakeException_mA573DC3F94B98F328A9B87673A2CF8A15120DEB1(__this, L_30, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_31, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexParser_ScanCharClass_mADFDEFF75B3C880E692ED8411B7154CF3130401E_RuntimeMethod_var))); } IL_011d: { RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5 * L_32 = V_5; bool L_33; L_33 = RegexParser_UseOptionE_m442360F28425CC127273FA1B10737E2AB3A70762(__this, /*hidden argument*/NULL); Il2CppChar L_34 = V_0; String_t* L_35 = __this->get__pattern_5(); NullCheck(L_32); RegexCharClass_AddDigit_m7B6D6AA1D10B8D29D004D94FC26F9CA53B3306D7(L_32, L_33, (bool)((((int32_t)L_34) == ((int32_t)((int32_t)68)))? 1 : 0), L_35, /*hidden argument*/NULL); goto IL_03aa; } IL_013a: { bool L_36 = ___scanOnly1; if (L_36) { goto IL_03aa; } } { bool L_37 = V_2; if (!L_37) { goto IL_0164; } } { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_38 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var)), (uint32_t)1); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_39 = L_38; String_t* L_40; L_40 = Char_ToString_mE0DE433463C56FD30A4F0A50539553B17147C2F8((Il2CppChar*)(&V_0), /*hidden argument*/NULL); NullCheck(L_39); ArrayElementTypeCheck (L_39, L_40); (L_39)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_40); String_t* L_41; L_41 = SR_GetString_m4FFAF18248A54C5B67E4760C5ED4869A87BCAD7F(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralBC12DB6076DF77D5CCDF7B01D4534A2545723633)), L_39, /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_42; L_42 = RegexParser_MakeException_mA573DC3F94B98F328A9B87673A2CF8A15120DEB1(__this, L_41, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_42, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexParser_ScanCharClass_mADFDEFF75B3C880E692ED8411B7154CF3130401E_RuntimeMethod_var))); } IL_0164: { RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5 * L_43 = V_5; bool L_44; L_44 = RegexParser_UseOptionE_m442360F28425CC127273FA1B10737E2AB3A70762(__this, /*hidden argument*/NULL); Il2CppChar L_45 = V_0; NullCheck(L_43); RegexCharClass_AddSpace_mA542E2916FEB49051A7AA0490704466DA85326BD(L_43, L_44, (bool)((((int32_t)L_45) == ((int32_t)((int32_t)83)))? 1 : 0), /*hidden argument*/NULL); goto IL_03aa; } IL_017b: { bool L_46 = ___scanOnly1; if (L_46) { goto IL_03aa; } } { bool L_47 = V_2; if (!L_47) { goto IL_01a5; } } { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_48 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var)), (uint32_t)1); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_49 = L_48; String_t* L_50; L_50 = Char_ToString_mE0DE433463C56FD30A4F0A50539553B17147C2F8((Il2CppChar*)(&V_0), /*hidden argument*/NULL); NullCheck(L_49); ArrayElementTypeCheck (L_49, L_50); (L_49)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_50); String_t* L_51; L_51 = SR_GetString_m4FFAF18248A54C5B67E4760C5ED4869A87BCAD7F(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralBC12DB6076DF77D5CCDF7B01D4534A2545723633)), L_49, /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_52; L_52 = RegexParser_MakeException_mA573DC3F94B98F328A9B87673A2CF8A15120DEB1(__this, L_51, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_52, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexParser_ScanCharClass_mADFDEFF75B3C880E692ED8411B7154CF3130401E_RuntimeMethod_var))); } IL_01a5: { RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5 * L_53 = V_5; bool L_54; L_54 = RegexParser_UseOptionE_m442360F28425CC127273FA1B10737E2AB3A70762(__this, /*hidden argument*/NULL); Il2CppChar L_55 = V_0; NullCheck(L_53); RegexCharClass_AddWord_m977499503E6B5EB99106DF69247EBE65DDE301D9(L_53, L_54, (bool)((((int32_t)L_55) == ((int32_t)((int32_t)87)))? 1 : 0), /*hidden argument*/NULL); goto IL_03aa; } IL_01bc: { bool L_56 = ___scanOnly1; if (L_56) { goto IL_0204; } } { bool L_57 = V_2; if (!L_57) { goto IL_01e3; } } { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_58 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var)), (uint32_t)1); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_59 = L_58; String_t* L_60; L_60 = Char_ToString_mE0DE433463C56FD30A4F0A50539553B17147C2F8((Il2CppChar*)(&V_0), /*hidden argument*/NULL); NullCheck(L_59); ArrayElementTypeCheck (L_59, L_60); (L_59)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_60); String_t* L_61; L_61 = SR_GetString_m4FFAF18248A54C5B67E4760C5ED4869A87BCAD7F(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralBC12DB6076DF77D5CCDF7B01D4534A2545723633)), L_59, /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_62; L_62 = RegexParser_MakeException_mA573DC3F94B98F328A9B87673A2CF8A15120DEB1(__this, L_61, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_62, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexParser_ScanCharClass_mADFDEFF75B3C880E692ED8411B7154CF3130401E_RuntimeMethod_var))); } IL_01e3: { RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5 * L_63 = V_5; String_t* L_64; L_64 = RegexParser_ParseProperty_m32F8C5F94C55BFF814FBAD3189A25F3CAB76B3C3(__this, /*hidden argument*/NULL); Il2CppChar L_65 = V_0; bool L_66 = ___caseInsensitive0; String_t* L_67 = __this->get__pattern_5(); NullCheck(L_63); RegexCharClass_AddCategoryFromName_m53A239A7DACD3D5A676505E6E296C4AB999BBA4C(L_63, L_64, (bool)((((int32_t)((((int32_t)L_65) == ((int32_t)((int32_t)112)))? 1 : 0)) == ((int32_t)0))? 1 : 0), L_66, L_67, /*hidden argument*/NULL); goto IL_03aa; } IL_0204: { String_t* L_68; L_68 = RegexParser_ParseProperty_m32F8C5F94C55BFF814FBAD3189A25F3CAB76B3C3(__this, /*hidden argument*/NULL); goto IL_03aa; } IL_0210: { bool L_69 = ___scanOnly1; if (L_69) { goto IL_03aa; } } { RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5 * L_70 = V_5; Il2CppChar L_71 = V_0; Il2CppChar L_72 = V_0; NullCheck(L_70); RegexCharClass_AddRange_mD9FB543DC3B128104DBCFEA0B2E672E8A8669C5A(L_70, L_71, L_72, /*hidden argument*/NULL); goto IL_03aa; } IL_0224: { RegexParser_MoveLeft_mBE0128B08B61C1306954528C799F2F1F1B803391(__this, /*hidden argument*/NULL); Il2CppChar L_73; L_73 = RegexParser_ScanCharEscape_m7A3FDDAF73AB029CB6EA7BB8058E3FD2AEDD63D6(__this, /*hidden argument*/NULL); V_0 = L_73; V_6 = (bool)1; goto IL_028b; } IL_0236: { Il2CppChar L_74 = V_0; if ((!(((uint32_t)L_74) == ((uint32_t)((int32_t)91))))) { goto IL_028b; } } { int32_t L_75; L_75 = RegexParser_CharsRight_m808A213FCB975D42C6E6270E7A0FAEB1E496B07A(__this, /*hidden argument*/NULL); if ((((int32_t)L_75) <= ((int32_t)0))) { goto IL_028b; } } { Il2CppChar L_76; L_76 = RegexParser_RightChar_mA977C61B98B8BB88C2A66AEBBFDA6826C58ED66A(__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_76) == ((uint32_t)((int32_t)58))))) { goto IL_028b; } } { bool L_77 = V_2; if (L_77) { goto IL_028b; } } { int32_t L_78; L_78 = RegexParser_Textpos_m5A18C75CE7F3A5AE17373DA09A20070D988308C5_inline(__this, /*hidden argument*/NULL); V_8 = L_78; RegexParser_MoveRight_mE4C6D41AFE3F585C0B8E7CD0AF3CF4DBA8791AB4(__this, /*hidden argument*/NULL); String_t* L_79; L_79 = RegexParser_ScanCapname_mC34B52A5BDE9DB0AB0A9691F52D45D0B7D4AD377(__this, /*hidden argument*/NULL); int32_t L_80; L_80 = RegexParser_CharsRight_m808A213FCB975D42C6E6270E7A0FAEB1E496B07A(__this, /*hidden argument*/NULL); if ((((int32_t)L_80) < ((int32_t)2))) { goto IL_0283; } } { Il2CppChar L_81; L_81 = RegexParser_MoveRightGetChar_mE98852DD0B33AE818B01A7CC7A9C301C2226F81C(__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_81) == ((uint32_t)((int32_t)58))))) { goto IL_0283; } } { Il2CppChar L_82; L_82 = RegexParser_MoveRightGetChar_mE98852DD0B33AE818B01A7CC7A9C301C2226F81C(__this, /*hidden argument*/NULL); if ((((int32_t)L_82) == ((int32_t)((int32_t)93)))) { goto IL_028b; } } IL_0283: { int32_t L_83 = V_8; RegexParser_Textto_mE4BCC8608BF006D283A32F9C5811264467EEB806_inline(__this, L_83, /*hidden argument*/NULL); } IL_028b: { bool L_84 = V_2; if (!L_84) { goto IL_0306; } } { V_2 = (bool)0; bool L_85 = ___scanOnly1; if (L_85) { goto IL_03aa; } } { Il2CppChar L_86 = V_0; if ((!(((uint32_t)L_86) == ((uint32_t)((int32_t)91))))) { goto IL_02e3; } } { bool L_87 = V_6; if (L_87) { goto IL_02e3; } } { bool L_88 = V_3; if (L_88) { goto IL_02e3; } } { RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5 * L_89 = V_5; Il2CppChar L_90 = V_1; NullCheck(L_89); RegexCharClass_AddChar_mDDCFF2A0510737DEAE68DEE7E1359AA7F07D0609(L_89, L_90, /*hidden argument*/NULL); RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5 * L_91 = V_5; bool L_92 = ___caseInsensitive0; RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5 * L_93; L_93 = RegexParser_ScanCharClass_mADFDEFF75B3C880E692ED8411B7154CF3130401E(__this, L_92, (bool)0, /*hidden argument*/NULL); NullCheck(L_91); RegexCharClass_AddSubtraction_m1FEE4A4FA29196BF22FBDD7EF3A263010E7661D9_inline(L_91, L_93, /*hidden argument*/NULL); int32_t L_94; L_94 = RegexParser_CharsRight_m808A213FCB975D42C6E6270E7A0FAEB1E496B07A(__this, /*hidden argument*/NULL); if ((((int32_t)L_94) <= ((int32_t)0))) { goto IL_03aa; } } { Il2CppChar L_95; L_95 = RegexParser_RightChar_mA977C61B98B8BB88C2A66AEBBFDA6826C58ED66A(__this, /*hidden argument*/NULL); if ((((int32_t)L_95) == ((int32_t)((int32_t)93)))) { goto IL_03aa; } } { String_t* L_96; L_96 = SR_GetString_m9DC7F3962EEB239017A1A4C443F52047B5BC7462(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral73310BF59DB8CA3EB79CF1E70A2DA4C61E0E5228)), /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_97; L_97 = RegexParser_MakeException_mA573DC3F94B98F328A9B87673A2CF8A15120DEB1(__this, L_96, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_97, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexParser_ScanCharClass_mADFDEFF75B3C880E692ED8411B7154CF3130401E_RuntimeMethod_var))); } IL_02e3: { Il2CppChar L_98 = V_1; Il2CppChar L_99 = V_0; if ((((int32_t)L_98) <= ((int32_t)L_99))) { goto IL_02f8; } } { String_t* L_100; L_100 = SR_GetString_m9DC7F3962EEB239017A1A4C443F52047B5BC7462(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral8965AF17E4B7413549B839F616B223F608E66E85)), /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_101; L_101 = RegexParser_MakeException_mA573DC3F94B98F328A9B87673A2CF8A15120DEB1(__this, L_100, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_101, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexParser_ScanCharClass_mADFDEFF75B3C880E692ED8411B7154CF3130401E_RuntimeMethod_var))); } IL_02f8: { RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5 * L_102 = V_5; Il2CppChar L_103 = V_1; Il2CppChar L_104 = V_0; NullCheck(L_102); RegexCharClass_AddRange_mD9FB543DC3B128104DBCFEA0B2E672E8A8669C5A(L_102, L_103, L_104, /*hidden argument*/NULL); goto IL_03aa; } IL_0306: { int32_t L_105; L_105 = RegexParser_CharsRight_m808A213FCB975D42C6E6270E7A0FAEB1E496B07A(__this, /*hidden argument*/NULL); if ((((int32_t)L_105) < ((int32_t)2))) { goto IL_0330; } } { Il2CppChar L_106; L_106 = RegexParser_RightChar_mA977C61B98B8BB88C2A66AEBBFDA6826C58ED66A(__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_106) == ((uint32_t)((int32_t)45))))) { goto IL_0330; } } { Il2CppChar L_107; L_107 = RegexParser_RightChar_mE6728D67C4F9FE227ECD6BED46FFC94518EAD9B4(__this, 1, /*hidden argument*/NULL); if ((((int32_t)L_107) == ((int32_t)((int32_t)93)))) { goto IL_0330; } } { Il2CppChar L_108 = V_0; V_1 = L_108; V_2 = (bool)1; RegexParser_MoveRight_mE4C6D41AFE3F585C0B8E7CD0AF3CF4DBA8791AB4(__this, /*hidden argument*/NULL); goto IL_03aa; } IL_0330: { int32_t L_109; L_109 = RegexParser_CharsRight_m808A213FCB975D42C6E6270E7A0FAEB1E496B07A(__this, /*hidden argument*/NULL); if ((((int32_t)L_109) < ((int32_t)1))) { goto IL_039e; } } { Il2CppChar L_110 = V_0; if ((!(((uint32_t)L_110) == ((uint32_t)((int32_t)45))))) { goto IL_039e; } } { bool L_111 = V_6; if (L_111) { goto IL_039e; } } { Il2CppChar L_112; L_112 = RegexParser_RightChar_mA977C61B98B8BB88C2A66AEBBFDA6826C58ED66A(__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_112) == ((uint32_t)((int32_t)91))))) { goto IL_039e; } } { bool L_113 = V_3; if (L_113) { goto IL_039e; } } { bool L_114 = ___scanOnly1; if (L_114) { goto IL_038c; } } { RegexParser_MoveRight_m905DCF65EF6BA6736100751DE932753BC99B8D68(__this, 1, /*hidden argument*/NULL); RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5 * L_115 = V_5; bool L_116 = ___caseInsensitive0; RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5 * L_117; L_117 = RegexParser_ScanCharClass_mADFDEFF75B3C880E692ED8411B7154CF3130401E(__this, L_116, (bool)0, /*hidden argument*/NULL); NullCheck(L_115); RegexCharClass_AddSubtraction_m1FEE4A4FA29196BF22FBDD7EF3A263010E7661D9_inline(L_115, L_117, /*hidden argument*/NULL); int32_t L_118; L_118 = RegexParser_CharsRight_m808A213FCB975D42C6E6270E7A0FAEB1E496B07A(__this, /*hidden argument*/NULL); if ((((int32_t)L_118) <= ((int32_t)0))) { goto IL_03aa; } } { Il2CppChar L_119; L_119 = RegexParser_RightChar_mA977C61B98B8BB88C2A66AEBBFDA6826C58ED66A(__this, /*hidden argument*/NULL); if ((((int32_t)L_119) == ((int32_t)((int32_t)93)))) { goto IL_03aa; } } { String_t* L_120; L_120 = SR_GetString_m9DC7F3962EEB239017A1A4C443F52047B5BC7462(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral73310BF59DB8CA3EB79CF1E70A2DA4C61E0E5228)), /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_121; L_121 = RegexParser_MakeException_mA573DC3F94B98F328A9B87673A2CF8A15120DEB1(__this, L_120, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_121, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexParser_ScanCharClass_mADFDEFF75B3C880E692ED8411B7154CF3130401E_RuntimeMethod_var))); } IL_038c: { RegexParser_MoveRight_m905DCF65EF6BA6736100751DE932753BC99B8D68(__this, 1, /*hidden argument*/NULL); bool L_122 = ___caseInsensitive0; RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5 * L_123; L_123 = RegexParser_ScanCharClass_mADFDEFF75B3C880E692ED8411B7154CF3130401E(__this, L_122, (bool)1, /*hidden argument*/NULL); goto IL_03aa; } IL_039e: { bool L_124 = ___scanOnly1; if (L_124) { goto IL_03aa; } } { RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5 * L_125 = V_5; Il2CppChar L_126 = V_0; Il2CppChar L_127 = V_0; NullCheck(L_125); RegexCharClass_AddRange_mD9FB543DC3B128104DBCFEA0B2E672E8A8669C5A(L_125, L_126, L_127, /*hidden argument*/NULL); } IL_03aa: { V_3 = (bool)0; } IL_03ac: { int32_t L_128; L_128 = RegexParser_CharsRight_m808A213FCB975D42C6E6270E7A0FAEB1E496B07A(__this, /*hidden argument*/NULL); if ((((int32_t)L_128) > ((int32_t)0))) { goto IL_004a; } } IL_03b8: { bool L_129 = V_4; if (L_129) { goto IL_03cd; } } { String_t* L_130; L_130 = SR_GetString_m9DC7F3962EEB239017A1A4C443F52047B5BC7462(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD1921F7804B8B0B09E2DC813076CD1CBDE1BAC17)), /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_131; L_131 = RegexParser_MakeException_mA573DC3F94B98F328A9B87673A2CF8A15120DEB1(__this, L_130, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_131, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexParser_ScanCharClass_mADFDEFF75B3C880E692ED8411B7154CF3130401E_RuntimeMethod_var))); } IL_03cd: { bool L_132 = ___scanOnly1; bool L_133 = ___caseInsensitive0; if (!((int32_t)((int32_t)((((int32_t)L_132) == ((int32_t)0))? 1 : 0)&(int32_t)L_133))) { goto IL_03e2; } } { RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5 * L_134 = V_5; CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_135 = __this->get__culture_7(); NullCheck(L_134); RegexCharClass_AddLowercase_m4FAE0AB13B3DB076F711B6B06C2E61F40A115B40(L_134, L_135, /*hidden argument*/NULL); } IL_03e2: { RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5 * L_136 = V_5; return L_136; } } // System.Text.RegularExpressions.RegexNode System.Text.RegularExpressions.RegexParser::ScanGroupOpen() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * RegexParser_ScanGroupOpen_m1DE2AA1EFA786C58869EF4025705449871F33D59 (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } Il2CppChar V_0 = 0x0; int32_t V_1 = 0; Il2CppChar V_2 = 0x0; int32_t V_3 = 0; Il2CppChar V_4 = 0x0; int32_t V_5 = 0; int32_t V_6 = 0; int32_t V_7 = 0; int32_t V_8 = 0; bool V_9 = false; String_t* V_10 = NULL; String_t* V_11 = NULL; int32_t V_12 = 0; String_t* V_13 = NULL; Il2CppChar V_14 = 0x0; { V_0 = 0; V_2 = ((int32_t)62); int32_t L_0; L_0 = RegexParser_CharsRight_m808A213FCB975D42C6E6270E7A0FAEB1E496B07A(__this, /*hidden argument*/NULL); if (!L_0) { goto IL_0035; } } { Il2CppChar L_1; L_1 = RegexParser_RightChar_mA977C61B98B8BB88C2A66AEBBFDA6826C58ED66A(__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)63))))) { goto IL_0035; } } { Il2CppChar L_2; L_2 = RegexParser_RightChar_mA977C61B98B8BB88C2A66AEBBFDA6826C58ED66A(__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_2) == ((uint32_t)((int32_t)63))))) { goto IL_007a; } } { int32_t L_3; L_3 = RegexParser_CharsRight_m808A213FCB975D42C6E6270E7A0FAEB1E496B07A(__this, /*hidden argument*/NULL); if ((((int32_t)L_3) <= ((int32_t)1))) { goto IL_007a; } } { Il2CppChar L_4; L_4 = RegexParser_RightChar_mE6728D67C4F9FE227ECD6BED46FFC94518EAD9B4(__this, 1, /*hidden argument*/NULL); if ((!(((uint32_t)L_4) == ((uint32_t)((int32_t)41))))) { goto IL_007a; } } IL_0035: { bool L_5; L_5 = RegexParser_UseOptionN_m9B82FA2012348674AC4E62205FE205CF2DB0ED35(__this, /*hidden argument*/NULL); if (L_5) { goto IL_0045; } } { bool L_6 = __this->get__ignoreNextParen_18(); if (!L_6) { goto IL_005a; } } IL_0045: { __this->set__ignoreNextParen_18((bool)0); int32_t L_7 = __this->get__options_16(); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_8 = (RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 *)il2cpp_codegen_object_new(RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43_il2cpp_TypeInfo_var); RegexNode__ctor_mD8966EDCD7AA48AC8AAD5B156C513671843F6D49(L_8, ((int32_t)29), L_7, /*hidden argument*/NULL); return L_8; } IL_005a: { int32_t L_9 = __this->get__options_16(); int32_t L_10 = __this->get__autocap_8(); V_3 = L_10; int32_t L_11 = V_3; __this->set__autocap_8(((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)1))); int32_t L_12 = V_3; RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_13 = (RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 *)il2cpp_codegen_object_new(RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43_il2cpp_TypeInfo_var); RegexNode__ctor_m0E000C0421213F15341C9B74C3ADA8F4963CA511(L_13, ((int32_t)28), L_9, L_12, (-1), /*hidden argument*/NULL); return L_13; } IL_007a: { RegexParser_MoveRight_mE4C6D41AFE3F585C0B8E7CD0AF3CF4DBA8791AB4(__this, /*hidden argument*/NULL); int32_t L_14; L_14 = RegexParser_CharsRight_m808A213FCB975D42C6E6270E7A0FAEB1E496B07A(__this, /*hidden argument*/NULL); if (!L_14) { goto IL_055e; } } { Il2CppChar L_15; L_15 = RegexParser_MoveRightGetChar_mE98852DD0B33AE818B01A7CC7A9C301C2226F81C(__this, /*hidden argument*/NULL); Il2CppChar L_16 = L_15; V_0 = L_16; V_4 = L_16; Il2CppChar L_17 = V_4; if ((!(((uint32_t)L_17) <= ((uint32_t)((int32_t)39))))) { goto IL_00ac; } } { Il2CppChar L_18 = V_4; if ((((int32_t)L_18) == ((int32_t)((int32_t)33)))) { goto IL_00f7; } } { Il2CppChar L_19 = V_4; if ((((int32_t)L_19) == ((int32_t)((int32_t)39)))) { goto IL_0116; } } { goto IL_0527; } IL_00ac: { Il2CppChar L_20 = V_4; if ((((int32_t)L_20) == ((int32_t)((int32_t)40)))) { goto IL_039d; } } { Il2CppChar L_21 = V_4; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_21, (int32_t)((int32_t)58)))) { case 0: { goto IL_00d8; } case 1: { goto IL_0527; } case 2: { goto IL_0119; } case 3: { goto IL_00e0; } case 4: { goto IL_010e; } } } { goto IL_0527; } IL_00d8: { V_1 = ((int32_t)29); goto IL_0551; } IL_00e0: { int32_t L_22 = __this->get__options_16(); __this->set__options_16(((int32_t)((int32_t)L_22&(int32_t)((int32_t)-65)))); V_1 = ((int32_t)30); goto IL_0551; } IL_00f7: { int32_t L_23 = __this->get__options_16(); __this->set__options_16(((int32_t)((int32_t)L_23&(int32_t)((int32_t)-65)))); V_1 = ((int32_t)31); goto IL_0551; } IL_010e: { V_1 = ((int32_t)32); goto IL_0551; } IL_0116: { V_2 = ((int32_t)39); } IL_0119: { int32_t L_24; L_24 = RegexParser_CharsRight_m808A213FCB975D42C6E6270E7A0FAEB1E496B07A(__this, /*hidden argument*/NULL); if (!L_24) { goto IL_055e; } } { Il2CppChar L_25; L_25 = RegexParser_MoveRightGetChar_mE98852DD0B33AE818B01A7CC7A9C301C2226F81C(__this, /*hidden argument*/NULL); Il2CppChar L_26 = L_25; V_0 = L_26; V_4 = L_26; Il2CppChar L_27 = V_4; if ((((int32_t)L_27) == ((int32_t)((int32_t)33)))) { goto IL_0159; } } { Il2CppChar L_28 = V_4; if ((!(((uint32_t)L_28) == ((uint32_t)((int32_t)61))))) { goto IL_0178; } } { Il2CppChar L_29 = V_2; if ((((int32_t)L_29) == ((int32_t)((int32_t)39)))) { goto IL_055e; } } { int32_t L_30 = __this->get__options_16(); __this->set__options_16(((int32_t)((int32_t)L_30|(int32_t)((int32_t)64)))); V_1 = ((int32_t)30); goto IL_0551; } IL_0159: { Il2CppChar L_31 = V_2; if ((((int32_t)L_31) == ((int32_t)((int32_t)39)))) { goto IL_055e; } } { int32_t L_32 = __this->get__options_16(); __this->set__options_16(((int32_t)((int32_t)L_32|(int32_t)((int32_t)64)))); V_1 = ((int32_t)31); goto IL_0551; } IL_0178: { RegexParser_MoveLeft_mBE0128B08B61C1306954528C799F2F1F1B803391(__this, /*hidden argument*/NULL); V_7 = (-1); V_8 = (-1); V_9 = (bool)0; Il2CppChar L_33 = V_0; if ((((int32_t)L_33) < ((int32_t)((int32_t)48)))) { goto IL_01e8; } } { Il2CppChar L_34 = V_0; if ((((int32_t)L_34) > ((int32_t)((int32_t)57)))) { goto IL_01e8; } } { int32_t L_35; L_35 = RegexParser_ScanDecimal_mC7374D132F506C5D7EEB868C32C4959B1C672017(__this, /*hidden argument*/NULL); V_7 = L_35; int32_t L_36 = V_7; bool L_37; L_37 = RegexParser_IsCaptureSlot_mE462763928C28561B761AFCE14D30C6A31CD1C15(__this, L_36, /*hidden argument*/NULL); if (L_37) { goto IL_01a6; } } { V_7 = (-1); } IL_01a6: { int32_t L_38; L_38 = RegexParser_CharsRight_m808A213FCB975D42C6E6270E7A0FAEB1E496B07A(__this, /*hidden argument*/NULL); if ((((int32_t)L_38) <= ((int32_t)0))) { goto IL_01d3; } } { Il2CppChar L_39; L_39 = RegexParser_RightChar_mA977C61B98B8BB88C2A66AEBBFDA6826C58ED66A(__this, /*hidden argument*/NULL); Il2CppChar L_40 = V_2; if ((((int32_t)L_39) == ((int32_t)L_40))) { goto IL_01d3; } } { Il2CppChar L_41; L_41 = RegexParser_RightChar_mA977C61B98B8BB88C2A66AEBBFDA6826C58ED66A(__this, /*hidden argument*/NULL); if ((((int32_t)L_41) == ((int32_t)((int32_t)45)))) { goto IL_01d3; } } { String_t* L_42; L_42 = SR_GetString_m9DC7F3962EEB239017A1A4C443F52047B5BC7462(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA90BAB5A63B270956DEBA545BAA7334EFC8F50E2)), /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_43; L_43 = RegexParser_MakeException_mA573DC3F94B98F328A9B87673A2CF8A15120DEB1(__this, L_42, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_43, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexParser_ScanGroupOpen_m1DE2AA1EFA786C58869EF4025705449871F33D59_RuntimeMethod_var))); } IL_01d3: { int32_t L_44 = V_7; if (L_44) { goto IL_0254; } } { String_t* L_45; L_45 = SR_GetString_m9DC7F3962EEB239017A1A4C443F52047B5BC7462(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA0FE8F62F371A375A76A413416F3EF55C050A182)), /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_46; L_46 = RegexParser_MakeException_mA573DC3F94B98F328A9B87673A2CF8A15120DEB1(__this, L_45, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_46, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexParser_ScanGroupOpen_m1DE2AA1EFA786C58869EF4025705449871F33D59_RuntimeMethod_var))); } IL_01e8: { Il2CppChar L_47 = V_0; IL2CPP_RUNTIME_CLASS_INIT(RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5_il2cpp_TypeInfo_var); bool L_48; L_48 = RegexCharClass_IsWordChar_mE33E6C5569AA1B920849CD5555DF3CE9A9C10440(L_47, /*hidden argument*/NULL); if (!L_48) { goto IL_0239; } } { String_t* L_49; L_49 = RegexParser_ScanCapname_mC34B52A5BDE9DB0AB0A9691F52D45D0B7D4AD377(__this, /*hidden argument*/NULL); V_10 = L_49; String_t* L_50 = V_10; bool L_51; L_51 = RegexParser_IsCaptureName_mF09CBBD2AEAD4D1BAAE4E4E803C3F4916DBA479D(__this, L_50, /*hidden argument*/NULL); if (!L_51) { goto IL_020c; } } { String_t* L_52 = V_10; int32_t L_53; L_53 = RegexParser_CaptureSlotFromName_mF8279E16DB2733EE3712214CFC57DA3D48BD717B(__this, L_52, /*hidden argument*/NULL); V_7 = L_53; } IL_020c: { int32_t L_54; L_54 = RegexParser_CharsRight_m808A213FCB975D42C6E6270E7A0FAEB1E496B07A(__this, /*hidden argument*/NULL); if ((((int32_t)L_54) <= ((int32_t)0))) { goto IL_0254; } } { Il2CppChar L_55; L_55 = RegexParser_RightChar_mA977C61B98B8BB88C2A66AEBBFDA6826C58ED66A(__this, /*hidden argument*/NULL); Il2CppChar L_56 = V_2; if ((((int32_t)L_55) == ((int32_t)L_56))) { goto IL_0254; } } { Il2CppChar L_57; L_57 = RegexParser_RightChar_mA977C61B98B8BB88C2A66AEBBFDA6826C58ED66A(__this, /*hidden argument*/NULL); if ((((int32_t)L_57) == ((int32_t)((int32_t)45)))) { goto IL_0254; } } { String_t* L_58; L_58 = SR_GetString_m9DC7F3962EEB239017A1A4C443F52047B5BC7462(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA90BAB5A63B270956DEBA545BAA7334EFC8F50E2)), /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_59; L_59 = RegexParser_MakeException_mA573DC3F94B98F328A9B87673A2CF8A15120DEB1(__this, L_58, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_59, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexParser_ScanGroupOpen_m1DE2AA1EFA786C58869EF4025705449871F33D59_RuntimeMethod_var))); } IL_0239: { Il2CppChar L_60 = V_0; if ((!(((uint32_t)L_60) == ((uint32_t)((int32_t)45))))) { goto IL_0243; } } { V_9 = (bool)1; goto IL_0254; } IL_0243: { String_t* L_61; L_61 = SR_GetString_m9DC7F3962EEB239017A1A4C443F52047B5BC7462(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA90BAB5A63B270956DEBA545BAA7334EFC8F50E2)), /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_62; L_62 = RegexParser_MakeException_mA573DC3F94B98F328A9B87673A2CF8A15120DEB1(__this, L_61, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_62, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexParser_ScanGroupOpen_m1DE2AA1EFA786C58869EF4025705449871F33D59_RuntimeMethod_var))); } IL_0254: { int32_t L_63 = V_7; bool L_64 = V_9; if (!((int32_t)((int32_t)((((int32_t)((((int32_t)L_63) == ((int32_t)(-1)))? 1 : 0)) == ((int32_t)0))? 1 : 0)|(int32_t)L_64))) { goto IL_0366; } } { int32_t L_65; L_65 = RegexParser_CharsRight_m808A213FCB975D42C6E6270E7A0FAEB1E496B07A(__this, /*hidden argument*/NULL); if ((((int32_t)L_65) <= ((int32_t)0))) { goto IL_0366; } } { Il2CppChar L_66; L_66 = RegexParser_RightChar_mA977C61B98B8BB88C2A66AEBBFDA6826C58ED66A(__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_66) == ((uint32_t)((int32_t)45))))) { goto IL_0366; } } { RegexParser_MoveRight_mE4C6D41AFE3F585C0B8E7CD0AF3CF4DBA8791AB4(__this, /*hidden argument*/NULL); Il2CppChar L_67; L_67 = RegexParser_RightChar_mA977C61B98B8BB88C2A66AEBBFDA6826C58ED66A(__this, /*hidden argument*/NULL); V_0 = L_67; Il2CppChar L_68 = V_0; if ((((int32_t)L_68) < ((int32_t)((int32_t)48)))) { goto IL_02f0; } } { Il2CppChar L_69 = V_0; if ((((int32_t)L_69) > ((int32_t)((int32_t)57)))) { goto IL_02f0; } } { int32_t L_70; L_70 = RegexParser_ScanDecimal_mC7374D132F506C5D7EEB868C32C4959B1C672017(__this, /*hidden argument*/NULL); V_8 = L_70; int32_t L_71 = V_8; bool L_72; L_72 = RegexParser_IsCaptureSlot_mE462763928C28561B761AFCE14D30C6A31CD1C15(__this, L_71, /*hidden argument*/NULL); if (L_72) { goto IL_02c7; } } { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_73 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var)), (uint32_t)1); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_74 = L_73; int32_t L_75 = V_8; int32_t L_76 = L_75; RuntimeObject * L_77 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var)), &L_76); NullCheck(L_74); ArrayElementTypeCheck (L_74, L_77); (L_74)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_77); String_t* L_78; L_78 = SR_GetString_m4FFAF18248A54C5B67E4760C5ED4869A87BCAD7F(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral5A958635C67952829AC7E2FD5FB3A2C8DB51121E)), L_74, /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_79; L_79 = RegexParser_MakeException_mA573DC3F94B98F328A9B87673A2CF8A15120DEB1(__this, L_78, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_79, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexParser_ScanGroupOpen_m1DE2AA1EFA786C58869EF4025705449871F33D59_RuntimeMethod_var))); } IL_02c7: { int32_t L_80; L_80 = RegexParser_CharsRight_m808A213FCB975D42C6E6270E7A0FAEB1E496B07A(__this, /*hidden argument*/NULL); if ((((int32_t)L_80) <= ((int32_t)0))) { goto IL_0366; } } { Il2CppChar L_81; L_81 = RegexParser_RightChar_mA977C61B98B8BB88C2A66AEBBFDA6826C58ED66A(__this, /*hidden argument*/NULL); Il2CppChar L_82 = V_2; if ((((int32_t)L_81) == ((int32_t)L_82))) { goto IL_0366; } } { String_t* L_83; L_83 = SR_GetString_m9DC7F3962EEB239017A1A4C443F52047B5BC7462(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA90BAB5A63B270956DEBA545BAA7334EFC8F50E2)), /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_84; L_84 = RegexParser_MakeException_mA573DC3F94B98F328A9B87673A2CF8A15120DEB1(__this, L_83, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_84, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexParser_ScanGroupOpen_m1DE2AA1EFA786C58869EF4025705449871F33D59_RuntimeMethod_var))); } IL_02f0: { Il2CppChar L_85 = V_0; IL2CPP_RUNTIME_CLASS_INIT(RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5_il2cpp_TypeInfo_var); bool L_86; L_86 = RegexCharClass_IsWordChar_mE33E6C5569AA1B920849CD5555DF3CE9A9C10440(L_85, /*hidden argument*/NULL); if (!L_86) { goto IL_0355; } } { String_t* L_87; L_87 = RegexParser_ScanCapname_mC34B52A5BDE9DB0AB0A9691F52D45D0B7D4AD377(__this, /*hidden argument*/NULL); V_11 = L_87; String_t* L_88 = V_11; bool L_89; L_89 = RegexParser_IsCaptureName_mF09CBBD2AEAD4D1BAAE4E4E803C3F4916DBA479D(__this, L_88, /*hidden argument*/NULL); if (!L_89) { goto IL_0316; } } { String_t* L_90 = V_11; int32_t L_91; L_91 = RegexParser_CaptureSlotFromName_mF8279E16DB2733EE3712214CFC57DA3D48BD717B(__this, L_90, /*hidden argument*/NULL); V_8 = L_91; goto IL_0332; } IL_0316: { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_92 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var)), (uint32_t)1); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_93 = L_92; String_t* L_94 = V_11; NullCheck(L_93); ArrayElementTypeCheck (L_93, L_94); (L_93)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_94); String_t* L_95; L_95 = SR_GetString_m4FFAF18248A54C5B67E4760C5ED4869A87BCAD7F(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralBC41C48BA95DA48A6EB8BFC17142E8F0E9E4C990)), L_93, /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_96; L_96 = RegexParser_MakeException_mA573DC3F94B98F328A9B87673A2CF8A15120DEB1(__this, L_95, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_96, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexParser_ScanGroupOpen_m1DE2AA1EFA786C58869EF4025705449871F33D59_RuntimeMethod_var))); } IL_0332: { int32_t L_97; L_97 = RegexParser_CharsRight_m808A213FCB975D42C6E6270E7A0FAEB1E496B07A(__this, /*hidden argument*/NULL); if ((((int32_t)L_97) <= ((int32_t)0))) { goto IL_0366; } } { Il2CppChar L_98; L_98 = RegexParser_RightChar_mA977C61B98B8BB88C2A66AEBBFDA6826C58ED66A(__this, /*hidden argument*/NULL); Il2CppChar L_99 = V_2; if ((((int32_t)L_98) == ((int32_t)L_99))) { goto IL_0366; } } { String_t* L_100; L_100 = SR_GetString_m9DC7F3962EEB239017A1A4C443F52047B5BC7462(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA90BAB5A63B270956DEBA545BAA7334EFC8F50E2)), /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_101; L_101 = RegexParser_MakeException_mA573DC3F94B98F328A9B87673A2CF8A15120DEB1(__this, L_100, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_101, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexParser_ScanGroupOpen_m1DE2AA1EFA786C58869EF4025705449871F33D59_RuntimeMethod_var))); } IL_0355: { String_t* L_102; L_102 = SR_GetString_m9DC7F3962EEB239017A1A4C443F52047B5BC7462(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA90BAB5A63B270956DEBA545BAA7334EFC8F50E2)), /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_103; L_103 = RegexParser_MakeException_mA573DC3F94B98F328A9B87673A2CF8A15120DEB1(__this, L_102, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_103, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexParser_ScanGroupOpen_m1DE2AA1EFA786C58869EF4025705449871F33D59_RuntimeMethod_var))); } IL_0366: { int32_t L_104 = V_7; if ((!(((uint32_t)L_104) == ((uint32_t)(-1))))) { goto IL_0373; } } { int32_t L_105 = V_8; if ((((int32_t)L_105) == ((int32_t)(-1)))) { goto IL_055e; } } IL_0373: { int32_t L_106; L_106 = RegexParser_CharsRight_m808A213FCB975D42C6E6270E7A0FAEB1E496B07A(__this, /*hidden argument*/NULL); if ((((int32_t)L_106) <= ((int32_t)0))) { goto IL_055e; } } { Il2CppChar L_107; L_107 = RegexParser_MoveRightGetChar_mE98852DD0B33AE818B01A7CC7A9C301C2226F81C(__this, /*hidden argument*/NULL); Il2CppChar L_108 = V_2; if ((!(((uint32_t)L_107) == ((uint32_t)L_108)))) { goto IL_055e; } } { int32_t L_109 = __this->get__options_16(); int32_t L_110 = V_7; int32_t L_111 = V_8; RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_112 = (RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 *)il2cpp_codegen_object_new(RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43_il2cpp_TypeInfo_var); RegexNode__ctor_m0E000C0421213F15341C9B74C3ADA8F4963CA511(L_112, ((int32_t)28), L_109, L_110, L_111, /*hidden argument*/NULL); return L_112; } IL_039d: { int32_t L_113; L_113 = RegexParser_Textpos_m5A18C75CE7F3A5AE17373DA09A20070D988308C5_inline(__this, /*hidden argument*/NULL); V_5 = L_113; int32_t L_114; L_114 = RegexParser_CharsRight_m808A213FCB975D42C6E6270E7A0FAEB1E496B07A(__this, /*hidden argument*/NULL); if ((((int32_t)L_114) <= ((int32_t)0))) { goto IL_048c; } } { Il2CppChar L_115; L_115 = RegexParser_RightChar_mA977C61B98B8BB88C2A66AEBBFDA6826C58ED66A(__this, /*hidden argument*/NULL); V_0 = L_115; Il2CppChar L_116 = V_0; if ((((int32_t)L_116) < ((int32_t)((int32_t)48)))) { goto IL_0449; } } { Il2CppChar L_117 = V_0; if ((((int32_t)L_117) > ((int32_t)((int32_t)57)))) { goto IL_0449; } } { int32_t L_118; L_118 = RegexParser_ScanDecimal_mC7374D132F506C5D7EEB868C32C4959B1C672017(__this, /*hidden argument*/NULL); V_12 = L_118; int32_t L_119; L_119 = RegexParser_CharsRight_m808A213FCB975D42C6E6270E7A0FAEB1E496B07A(__this, /*hidden argument*/NULL); if ((((int32_t)L_119) <= ((int32_t)0))) { goto IL_0423; } } { Il2CppChar L_120; L_120 = RegexParser_MoveRightGetChar_mE98852DD0B33AE818B01A7CC7A9C301C2226F81C(__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_120) == ((uint32_t)((int32_t)41))))) { goto IL_0423; } } { int32_t L_121 = V_12; bool L_122; L_122 = RegexParser_IsCaptureSlot_mE462763928C28561B761AFCE14D30C6A31CD1C15(__this, L_121, /*hidden argument*/NULL); if (!L_122) { goto IL_03fd; } } { int32_t L_123 = __this->get__options_16(); int32_t L_124 = V_12; RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_125 = (RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 *)il2cpp_codegen_object_new(RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43_il2cpp_TypeInfo_var); RegexNode__ctor_mD4B2FB6044880AC4DDF035FFE6254A13807A34BC(L_125, ((int32_t)33), L_123, L_124, /*hidden argument*/NULL); return L_125; } IL_03fd: { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_126 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var)), (uint32_t)1); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_127 = L_126; IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var))); CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_128; L_128 = CultureInfo_get_CurrentCulture_m99E5F5BD20445F2A73F7EA0014A4E783DF3840BB(/*hidden argument*/NULL); String_t* L_129; L_129 = Int32_ToString_m027A8C9419D2FE56ED5D2EE42A6F3B3CE0130471((int32_t*)(&V_12), L_128, /*hidden argument*/NULL); NullCheck(L_127); ArrayElementTypeCheck (L_127, L_129); (L_127)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_129); String_t* L_130; L_130 = SR_GetString_m4FFAF18248A54C5B67E4760C5ED4869A87BCAD7F(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE8CDAF3BD45E1B70CE2BC010AB453F8044684F6F)), L_127, /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_131; L_131 = RegexParser_MakeException_mA573DC3F94B98F328A9B87673A2CF8A15120DEB1(__this, L_130, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_131, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexParser_ScanGroupOpen_m1DE2AA1EFA786C58869EF4025705449871F33D59_RuntimeMethod_var))); } IL_0423: { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_132 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var)), (uint32_t)1); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_133 = L_132; IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var))); CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_134; L_134 = CultureInfo_get_CurrentCulture_m99E5F5BD20445F2A73F7EA0014A4E783DF3840BB(/*hidden argument*/NULL); String_t* L_135; L_135 = Int32_ToString_m027A8C9419D2FE56ED5D2EE42A6F3B3CE0130471((int32_t*)(&V_12), L_134, /*hidden argument*/NULL); NullCheck(L_133); ArrayElementTypeCheck (L_133, L_135); (L_133)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_135); String_t* L_136; L_136 = SR_GetString_m4FFAF18248A54C5B67E4760C5ED4869A87BCAD7F(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral0F38A3747C9E3CBF705A8434CE244793402F5BDA)), L_133, /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_137; L_137 = RegexParser_MakeException_mA573DC3F94B98F328A9B87673A2CF8A15120DEB1(__this, L_136, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_137, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexParser_ScanGroupOpen_m1DE2AA1EFA786C58869EF4025705449871F33D59_RuntimeMethod_var))); } IL_0449: { Il2CppChar L_138 = V_0; IL2CPP_RUNTIME_CLASS_INIT(RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5_il2cpp_TypeInfo_var); bool L_139; L_139 = RegexCharClass_IsWordChar_mE33E6C5569AA1B920849CD5555DF3CE9A9C10440(L_138, /*hidden argument*/NULL); if (!L_139) { goto IL_048c; } } { String_t* L_140; L_140 = RegexParser_ScanCapname_mC34B52A5BDE9DB0AB0A9691F52D45D0B7D4AD377(__this, /*hidden argument*/NULL); V_13 = L_140; String_t* L_141 = V_13; bool L_142; L_142 = RegexParser_IsCaptureName_mF09CBBD2AEAD4D1BAAE4E4E803C3F4916DBA479D(__this, L_141, /*hidden argument*/NULL); if (!L_142) { goto IL_048c; } } { int32_t L_143; L_143 = RegexParser_CharsRight_m808A213FCB975D42C6E6270E7A0FAEB1E496B07A(__this, /*hidden argument*/NULL); if ((((int32_t)L_143) <= ((int32_t)0))) { goto IL_048c; } } { Il2CppChar L_144; L_144 = RegexParser_MoveRightGetChar_mE98852DD0B33AE818B01A7CC7A9C301C2226F81C(__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_144) == ((uint32_t)((int32_t)41))))) { goto IL_048c; } } { int32_t L_145 = __this->get__options_16(); String_t* L_146 = V_13; int32_t L_147; L_147 = RegexParser_CaptureSlotFromName_mF8279E16DB2733EE3712214CFC57DA3D48BD717B(__this, L_146, /*hidden argument*/NULL); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_148 = (RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 *)il2cpp_codegen_object_new(RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43_il2cpp_TypeInfo_var); RegexNode__ctor_mD4B2FB6044880AC4DDF035FFE6254A13807A34BC(L_148, ((int32_t)33), L_145, L_147, /*hidden argument*/NULL); return L_148; } IL_048c: { V_1 = ((int32_t)34); int32_t L_149 = V_5; RegexParser_Textto_mE4BCC8608BF006D283A32F9C5811264467EEB806_inline(__this, ((int32_t)il2cpp_codegen_subtract((int32_t)L_149, (int32_t)1)), /*hidden argument*/NULL); __this->set__ignoreNextParen_18((bool)1); int32_t L_150; L_150 = RegexParser_CharsRight_m808A213FCB975D42C6E6270E7A0FAEB1E496B07A(__this, /*hidden argument*/NULL); V_6 = L_150; int32_t L_151 = V_6; if ((((int32_t)L_151) < ((int32_t)3))) { goto IL_0551; } } { Il2CppChar L_152; L_152 = RegexParser_RightChar_mE6728D67C4F9FE227ECD6BED46FFC94518EAD9B4(__this, 1, /*hidden argument*/NULL); if ((!(((uint32_t)L_152) == ((uint32_t)((int32_t)63))))) { goto IL_0551; } } { Il2CppChar L_153; L_153 = RegexParser_RightChar_mE6728D67C4F9FE227ECD6BED46FFC94518EAD9B4(__this, 2, /*hidden argument*/NULL); V_14 = L_153; Il2CppChar L_154 = V_14; if ((!(((uint32_t)L_154) == ((uint32_t)((int32_t)35))))) { goto IL_04de; } } { String_t* L_155; L_155 = SR_GetString_m9DC7F3962EEB239017A1A4C443F52047B5BC7462(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB9B95A09A6329F64F307C29A726917E458B15E65)), /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_156; L_156 = RegexParser_MakeException_mA573DC3F94B98F328A9B87673A2CF8A15120DEB1(__this, L_155, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_156, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexParser_ScanGroupOpen_m1DE2AA1EFA786C58869EF4025705449871F33D59_RuntimeMethod_var))); } IL_04de: { Il2CppChar L_157 = V_14; if ((!(((uint32_t)L_157) == ((uint32_t)((int32_t)39))))) { goto IL_04f5; } } { String_t* L_158; L_158 = SR_GetString_m9DC7F3962EEB239017A1A4C443F52047B5BC7462(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD286A908F27DE88608F297C65E9918981BCD4317)), /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_159; L_159 = RegexParser_MakeException_mA573DC3F94B98F328A9B87673A2CF8A15120DEB1(__this, L_158, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_159, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexParser_ScanGroupOpen_m1DE2AA1EFA786C58869EF4025705449871F33D59_RuntimeMethod_var))); } IL_04f5: { int32_t L_160 = V_6; if ((((int32_t)L_160) < ((int32_t)4))) { goto IL_0551; } } { Il2CppChar L_161 = V_14; if ((!(((uint32_t)L_161) == ((uint32_t)((int32_t)60))))) { goto IL_0551; } } { Il2CppChar L_162; L_162 = RegexParser_RightChar_mE6728D67C4F9FE227ECD6BED46FFC94518EAD9B4(__this, 3, /*hidden argument*/NULL); if ((((int32_t)L_162) == ((int32_t)((int32_t)33)))) { goto IL_0551; } } { Il2CppChar L_163; L_163 = RegexParser_RightChar_mE6728D67C4F9FE227ECD6BED46FFC94518EAD9B4(__this, 3, /*hidden argument*/NULL); if ((((int32_t)L_163) == ((int32_t)((int32_t)61)))) { goto IL_0551; } } { String_t* L_164; L_164 = SR_GetString_m9DC7F3962EEB239017A1A4C443F52047B5BC7462(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD286A908F27DE88608F297C65E9918981BCD4317)), /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_165; L_165 = RegexParser_MakeException_mA573DC3F94B98F328A9B87673A2CF8A15120DEB1(__this, L_164, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_165, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexParser_ScanGroupOpen_m1DE2AA1EFA786C58869EF4025705449871F33D59_RuntimeMethod_var))); } IL_0527: { RegexParser_MoveLeft_mBE0128B08B61C1306954528C799F2F1F1B803391(__this, /*hidden argument*/NULL); V_1 = ((int32_t)29); RegexParser_ScanOptions_mE9C5126433FD0A2576B402A07941114AB468D79F(__this, /*hidden argument*/NULL); int32_t L_166; L_166 = RegexParser_CharsRight_m808A213FCB975D42C6E6270E7A0FAEB1E496B07A(__this, /*hidden argument*/NULL); if (!L_166) { goto IL_055e; } } { Il2CppChar L_167; L_167 = RegexParser_MoveRightGetChar_mE98852DD0B33AE818B01A7CC7A9C301C2226F81C(__this, /*hidden argument*/NULL); Il2CppChar L_168 = L_167; V_0 = L_168; if ((!(((uint32_t)L_168) == ((uint32_t)((int32_t)41))))) { goto IL_054c; } } { return (RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 *)NULL; } IL_054c: { Il2CppChar L_169 = V_0; if ((!(((uint32_t)L_169) == ((uint32_t)((int32_t)58))))) { goto IL_055e; } } IL_0551: { int32_t L_170 = V_1; int32_t L_171 = __this->get__options_16(); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_172 = (RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 *)il2cpp_codegen_object_new(RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43_il2cpp_TypeInfo_var); RegexNode__ctor_mD8966EDCD7AA48AC8AAD5B156C513671843F6D49(L_172, L_170, L_171, /*hidden argument*/NULL); return L_172; } IL_055e: { String_t* L_173; L_173 = SR_GetString_m9DC7F3962EEB239017A1A4C443F52047B5BC7462(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral8E245319796EC99EDC6311A6DC461759FB1FB7FD)), /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_174; L_174 = RegexParser_MakeException_mA573DC3F94B98F328A9B87673A2CF8A15120DEB1(__this, L_173, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_174, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexParser_ScanGroupOpen_m1DE2AA1EFA786C58869EF4025705449871F33D59_RuntimeMethod_var))); } } // System.Void System.Text.RegularExpressions.RegexParser::ScanBlank() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_ScanBlank_m2ACFA5BAF5FA14554D74C5DE4FE3893483D6F33D (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { bool L_0; L_0 = RegexParser_UseOptionX_m7944C5C44AEAA4D69ABA991320A6B960F8EEC284(__this, /*hidden argument*/NULL); if (!L_0) { goto IL_00cf; } } { goto IL_0013; } IL_000d: { RegexParser_MoveRight_mE4C6D41AFE3F585C0B8E7CD0AF3CF4DBA8791AB4(__this, /*hidden argument*/NULL); } IL_0013: { int32_t L_1; L_1 = RegexParser_CharsRight_m808A213FCB975D42C6E6270E7A0FAEB1E496B07A(__this, /*hidden argument*/NULL); if ((((int32_t)L_1) <= ((int32_t)0))) { goto IL_0029; } } { Il2CppChar L_2; L_2 = RegexParser_RightChar_mA977C61B98B8BB88C2A66AEBBFDA6826C58ED66A(__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9_il2cpp_TypeInfo_var); bool L_3; L_3 = RegexParser_IsSpace_mF6BB83CAF2202A271697570EEC5E636847B8EA35(L_2, /*hidden argument*/NULL); if (L_3) { goto IL_000d; } } IL_0029: { int32_t L_4; L_4 = RegexParser_CharsRight_m808A213FCB975D42C6E6270E7A0FAEB1E496B07A(__this, /*hidden argument*/NULL); if (!L_4) { goto IL_0133; } } { Il2CppChar L_5; L_5 = RegexParser_RightChar_mA977C61B98B8BB88C2A66AEBBFDA6826C58ED66A(__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_5) == ((uint32_t)((int32_t)35))))) { goto IL_005b; } } { goto IL_0046; } IL_0040: { RegexParser_MoveRight_mE4C6D41AFE3F585C0B8E7CD0AF3CF4DBA8791AB4(__this, /*hidden argument*/NULL); } IL_0046: { int32_t L_6; L_6 = RegexParser_CharsRight_m808A213FCB975D42C6E6270E7A0FAEB1E496B07A(__this, /*hidden argument*/NULL); if ((((int32_t)L_6) <= ((int32_t)0))) { goto IL_0013; } } { Il2CppChar L_7; L_7 = RegexParser_RightChar_mA977C61B98B8BB88C2A66AEBBFDA6826C58ED66A(__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_7) == ((uint32_t)((int32_t)10))))) { goto IL_0040; } } { goto IL_0013; } IL_005b: { int32_t L_8; L_8 = RegexParser_CharsRight_m808A213FCB975D42C6E6270E7A0FAEB1E496B07A(__this, /*hidden argument*/NULL); if ((((int32_t)L_8) < ((int32_t)3))) { goto IL_0133; } } { Il2CppChar L_9; L_9 = RegexParser_RightChar_mE6728D67C4F9FE227ECD6BED46FFC94518EAD9B4(__this, 2, /*hidden argument*/NULL); if ((!(((uint32_t)L_9) == ((uint32_t)((int32_t)35))))) { goto IL_0133; } } { Il2CppChar L_10; L_10 = RegexParser_RightChar_mE6728D67C4F9FE227ECD6BED46FFC94518EAD9B4(__this, 1, /*hidden argument*/NULL); if ((!(((uint32_t)L_10) == ((uint32_t)((int32_t)63))))) { goto IL_0133; } } { Il2CppChar L_11; L_11 = RegexParser_RightChar_mA977C61B98B8BB88C2A66AEBBFDA6826C58ED66A(__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_11) == ((uint32_t)((int32_t)40))))) { goto IL_0133; } } { goto IL_0098; } IL_0092: { RegexParser_MoveRight_mE4C6D41AFE3F585C0B8E7CD0AF3CF4DBA8791AB4(__this, /*hidden argument*/NULL); } IL_0098: { int32_t L_12; L_12 = RegexParser_CharsRight_m808A213FCB975D42C6E6270E7A0FAEB1E496B07A(__this, /*hidden argument*/NULL); if ((((int32_t)L_12) <= ((int32_t)0))) { goto IL_00ab; } } { Il2CppChar L_13; L_13 = RegexParser_RightChar_mA977C61B98B8BB88C2A66AEBBFDA6826C58ED66A(__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_13) == ((uint32_t)((int32_t)41))))) { goto IL_0092; } } IL_00ab: { int32_t L_14; L_14 = RegexParser_CharsRight_m808A213FCB975D42C6E6270E7A0FAEB1E496B07A(__this, /*hidden argument*/NULL); if (L_14) { goto IL_00c4; } } { String_t* L_15; L_15 = SR_GetString_m9DC7F3962EEB239017A1A4C443F52047B5BC7462(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral072B29D72AC26D4E83A32232DF8E415C5151E9AA)), /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_16; L_16 = RegexParser_MakeException_mA573DC3F94B98F328A9B87673A2CF8A15120DEB1(__this, L_15, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_16, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexParser_ScanBlank_m2ACFA5BAF5FA14554D74C5DE4FE3893483D6F33D_RuntimeMethod_var))); } IL_00c4: { RegexParser_MoveRight_mE4C6D41AFE3F585C0B8E7CD0AF3CF4DBA8791AB4(__this, /*hidden argument*/NULL); goto IL_0013; } IL_00cf: { int32_t L_17; L_17 = RegexParser_CharsRight_m808A213FCB975D42C6E6270E7A0FAEB1E496B07A(__this, /*hidden argument*/NULL); if ((((int32_t)L_17) < ((int32_t)3))) { goto IL_00f8; } } { Il2CppChar L_18; L_18 = RegexParser_RightChar_mE6728D67C4F9FE227ECD6BED46FFC94518EAD9B4(__this, 2, /*hidden argument*/NULL); if ((!(((uint32_t)L_18) == ((uint32_t)((int32_t)35))))) { goto IL_00f8; } } { Il2CppChar L_19; L_19 = RegexParser_RightChar_mE6728D67C4F9FE227ECD6BED46FFC94518EAD9B4(__this, 1, /*hidden argument*/NULL); if ((!(((uint32_t)L_19) == ((uint32_t)((int32_t)63))))) { goto IL_00f8; } } { Il2CppChar L_20; L_20 = RegexParser_RightChar_mA977C61B98B8BB88C2A66AEBBFDA6826C58ED66A(__this, /*hidden argument*/NULL); if ((((int32_t)L_20) == ((int32_t)((int32_t)40)))) { goto IL_00ff; } } IL_00f8: { return; } IL_00f9: { RegexParser_MoveRight_mE4C6D41AFE3F585C0B8E7CD0AF3CF4DBA8791AB4(__this, /*hidden argument*/NULL); } IL_00ff: { int32_t L_21; L_21 = RegexParser_CharsRight_m808A213FCB975D42C6E6270E7A0FAEB1E496B07A(__this, /*hidden argument*/NULL); if ((((int32_t)L_21) <= ((int32_t)0))) { goto IL_0112; } } { Il2CppChar L_22; L_22 = RegexParser_RightChar_mA977C61B98B8BB88C2A66AEBBFDA6826C58ED66A(__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_22) == ((uint32_t)((int32_t)41))))) { goto IL_00f9; } } IL_0112: { int32_t L_23; L_23 = RegexParser_CharsRight_m808A213FCB975D42C6E6270E7A0FAEB1E496B07A(__this, /*hidden argument*/NULL); if (L_23) { goto IL_012b; } } { String_t* L_24; L_24 = SR_GetString_m9DC7F3962EEB239017A1A4C443F52047B5BC7462(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral072B29D72AC26D4E83A32232DF8E415C5151E9AA)), /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_25; L_25 = RegexParser_MakeException_mA573DC3F94B98F328A9B87673A2CF8A15120DEB1(__this, L_24, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_25, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexParser_ScanBlank_m2ACFA5BAF5FA14554D74C5DE4FE3893483D6F33D_RuntimeMethod_var))); } IL_012b: { RegexParser_MoveRight_mE4C6D41AFE3F585C0B8E7CD0AF3CF4DBA8791AB4(__this, /*hidden argument*/NULL); goto IL_00cf; } IL_0133: { return; } } // System.Text.RegularExpressions.RegexNode System.Text.RegularExpressions.RegexParser::ScanBackslash() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * RegexParser_ScanBackslash_m2598C224286A4826DEB2D1189CCB73C9A363DFBD (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral595EFF1BB2D726958ED623D9B54803E9AA2A0C84); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral604AF3FD45B5D6527E77C100038873C29E8B4D49); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8D5175625BAB03B34DC7A7254E3934B27037B660); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDF1CF539722D58CC569DAE01700516448ABF534B); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF041468CA475A0C8B8298BFDDC984663476E0294); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralFC122FD8605F61DCBDED32B11B81E151BCAC4354); s_Il2CppMethodInitialized = true; } Il2CppChar V_0 = 0x0; RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5 * V_1 = NULL; Il2CppChar V_2 = 0x0; { int32_t L_0; L_0 = RegexParser_CharsRight_m808A213FCB975D42C6E6270E7A0FAEB1E496B07A(__this, /*hidden argument*/NULL); if (L_0) { goto IL_0019; } } { String_t* L_1; L_1 = SR_GetString_m9DC7F3962EEB239017A1A4C443F52047B5BC7462(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral709116FAB4B1CFB8E839AF216932137595A1C356)), /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_2; L_2 = RegexParser_MakeException_mA573DC3F94B98F328A9B87673A2CF8A15120DEB1(__this, L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexParser_ScanBackslash_m2598C224286A4826DEB2D1189CCB73C9A363DFBD_RuntimeMethod_var))); } IL_0019: { Il2CppChar L_3; L_3 = RegexParser_RightChar_mA977C61B98B8BB88C2A66AEBBFDA6826C58ED66A(__this, /*hidden argument*/NULL); Il2CppChar L_4 = L_3; V_0 = L_4; V_2 = L_4; Il2CppChar L_5 = V_2; if ((!(((uint32_t)L_5) <= ((uint32_t)((int32_t)90))))) { goto IL_0078; } } { Il2CppChar L_6 = V_2; if ((!(((uint32_t)L_6) <= ((uint32_t)((int32_t)80))))) { goto IL_005e; } } { Il2CppChar L_7 = V_2; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_7, (int32_t)((int32_t)65)))) { case 0: { goto IL_00ac; } case 1: { goto IL_00ac; } case 2: { goto IL_0251; } case 3: { goto IL_01c9; } case 4: { goto IL_0251; } case 5: { goto IL_0251; } case 6: { goto IL_00ac; } } } { Il2CppChar L_8 = V_2; if ((((int32_t)L_8) == ((int32_t)((int32_t)80)))) { goto IL_01fd; } } { goto IL_0251; } IL_005e: { Il2CppChar L_9 = V_2; if ((((int32_t)L_9) == ((int32_t)((int32_t)83)))) { goto IL_0161; } } { Il2CppChar L_10 = V_2; if ((((int32_t)L_10) == ((int32_t)((int32_t)87)))) { goto IL_00f9; } } { Il2CppChar L_11 = V_2; if ((((int32_t)L_11) == ((int32_t)((int32_t)90)))) { goto IL_00ac; } } { goto IL_0251; } IL_0078: { Il2CppChar L_12 = V_2; if ((!(((uint32_t)L_12) <= ((uint32_t)((int32_t)112))))) { goto IL_0097; } } { Il2CppChar L_13 = V_2; if ((((int32_t)L_13) == ((int32_t)((int32_t)98)))) { goto IL_00ac; } } { Il2CppChar L_14 = V_2; if ((((int32_t)L_14) == ((int32_t)((int32_t)100)))) { goto IL_0195; } } { Il2CppChar L_15 = V_2; if ((((int32_t)L_15) == ((int32_t)((int32_t)112)))) { goto IL_01fd; } } { goto IL_0251; } IL_0097: { Il2CppChar L_16 = V_2; if ((((int32_t)L_16) == ((int32_t)((int32_t)115)))) { goto IL_012d; } } { Il2CppChar L_17 = V_2; if ((((int32_t)L_17) == ((int32_t)((int32_t)119)))) { goto IL_00c5; } } { Il2CppChar L_18 = V_2; if ((!(((uint32_t)L_18) == ((uint32_t)((int32_t)122))))) { goto IL_0251; } } IL_00ac: { RegexParser_MoveRight_mE4C6D41AFE3F585C0B8E7CD0AF3CF4DBA8791AB4(__this, /*hidden argument*/NULL); Il2CppChar L_19 = V_0; int32_t L_20; L_20 = RegexParser_TypeFromCode_m9B5F0CD85CECC83F17C2A37B5A0A396478A668B8(__this, L_19, /*hidden argument*/NULL); int32_t L_21 = __this->get__options_16(); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_22 = (RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 *)il2cpp_codegen_object_new(RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43_il2cpp_TypeInfo_var); RegexNode__ctor_mD8966EDCD7AA48AC8AAD5B156C513671843F6D49(L_22, L_20, L_21, /*hidden argument*/NULL); return L_22; } IL_00c5: { RegexParser_MoveRight_mE4C6D41AFE3F585C0B8E7CD0AF3CF4DBA8791AB4(__this, /*hidden argument*/NULL); bool L_23; L_23 = RegexParser_UseOptionE_m442360F28425CC127273FA1B10737E2AB3A70762(__this, /*hidden argument*/NULL); if (!L_23) { goto IL_00e6; } } { int32_t L_24 = __this->get__options_16(); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_25 = (RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 *)il2cpp_codegen_object_new(RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43_il2cpp_TypeInfo_var); RegexNode__ctor_m5A3AA31155A359CC8462AF0AB55DE0D5B7C435B4(L_25, ((int32_t)11), L_24, _stringLiteralDF1CF539722D58CC569DAE01700516448ABF534B, /*hidden argument*/NULL); return L_25; } IL_00e6: { int32_t L_26 = __this->get__options_16(); IL2CPP_RUNTIME_CLASS_INIT(RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5_il2cpp_TypeInfo_var); String_t* L_27 = ((RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5_StaticFields*)il2cpp_codegen_static_fields_for(RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5_il2cpp_TypeInfo_var))->get_WordClass_12(); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_28 = (RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 *)il2cpp_codegen_object_new(RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43_il2cpp_TypeInfo_var); RegexNode__ctor_m5A3AA31155A359CC8462AF0AB55DE0D5B7C435B4(L_28, ((int32_t)11), L_26, L_27, /*hidden argument*/NULL); return L_28; } IL_00f9: { RegexParser_MoveRight_mE4C6D41AFE3F585C0B8E7CD0AF3CF4DBA8791AB4(__this, /*hidden argument*/NULL); bool L_29; L_29 = RegexParser_UseOptionE_m442360F28425CC127273FA1B10737E2AB3A70762(__this, /*hidden argument*/NULL); if (!L_29) { goto IL_011a; } } { int32_t L_30 = __this->get__options_16(); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_31 = (RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 *)il2cpp_codegen_object_new(RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43_il2cpp_TypeInfo_var); RegexNode__ctor_m5A3AA31155A359CC8462AF0AB55DE0D5B7C435B4(L_31, ((int32_t)11), L_30, _stringLiteral604AF3FD45B5D6527E77C100038873C29E8B4D49, /*hidden argument*/NULL); return L_31; } IL_011a: { int32_t L_32 = __this->get__options_16(); IL2CPP_RUNTIME_CLASS_INIT(RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5_il2cpp_TypeInfo_var); String_t* L_33 = ((RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5_StaticFields*)il2cpp_codegen_static_fields_for(RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5_il2cpp_TypeInfo_var))->get_NotWordClass_13(); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_34 = (RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 *)il2cpp_codegen_object_new(RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43_il2cpp_TypeInfo_var); RegexNode__ctor_m5A3AA31155A359CC8462AF0AB55DE0D5B7C435B4(L_34, ((int32_t)11), L_32, L_33, /*hidden argument*/NULL); return L_34; } IL_012d: { RegexParser_MoveRight_mE4C6D41AFE3F585C0B8E7CD0AF3CF4DBA8791AB4(__this, /*hidden argument*/NULL); bool L_35; L_35 = RegexParser_UseOptionE_m442360F28425CC127273FA1B10737E2AB3A70762(__this, /*hidden argument*/NULL); if (!L_35) { goto IL_014e; } } { int32_t L_36 = __this->get__options_16(); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_37 = (RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 *)il2cpp_codegen_object_new(RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43_il2cpp_TypeInfo_var); RegexNode__ctor_m5A3AA31155A359CC8462AF0AB55DE0D5B7C435B4(L_37, ((int32_t)11), L_36, _stringLiteral8D5175625BAB03B34DC7A7254E3934B27037B660, /*hidden argument*/NULL); return L_37; } IL_014e: { int32_t L_38 = __this->get__options_16(); IL2CPP_RUNTIME_CLASS_INIT(RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5_il2cpp_TypeInfo_var); String_t* L_39 = ((RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5_StaticFields*)il2cpp_codegen_static_fields_for(RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5_il2cpp_TypeInfo_var))->get_SpaceClass_10(); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_40 = (RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 *)il2cpp_codegen_object_new(RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43_il2cpp_TypeInfo_var); RegexNode__ctor_m5A3AA31155A359CC8462AF0AB55DE0D5B7C435B4(L_40, ((int32_t)11), L_38, L_39, /*hidden argument*/NULL); return L_40; } IL_0161: { RegexParser_MoveRight_mE4C6D41AFE3F585C0B8E7CD0AF3CF4DBA8791AB4(__this, /*hidden argument*/NULL); bool L_41; L_41 = RegexParser_UseOptionE_m442360F28425CC127273FA1B10737E2AB3A70762(__this, /*hidden argument*/NULL); if (!L_41) { goto IL_0182; } } { int32_t L_42 = __this->get__options_16(); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_43 = (RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 *)il2cpp_codegen_object_new(RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43_il2cpp_TypeInfo_var); RegexNode__ctor_m5A3AA31155A359CC8462AF0AB55DE0D5B7C435B4(L_43, ((int32_t)11), L_42, _stringLiteralFC122FD8605F61DCBDED32B11B81E151BCAC4354, /*hidden argument*/NULL); return L_43; } IL_0182: { int32_t L_44 = __this->get__options_16(); IL2CPP_RUNTIME_CLASS_INIT(RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5_il2cpp_TypeInfo_var); String_t* L_45 = ((RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5_StaticFields*)il2cpp_codegen_static_fields_for(RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5_il2cpp_TypeInfo_var))->get_NotSpaceClass_11(); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_46 = (RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 *)il2cpp_codegen_object_new(RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43_il2cpp_TypeInfo_var); RegexNode__ctor_m5A3AA31155A359CC8462AF0AB55DE0D5B7C435B4(L_46, ((int32_t)11), L_44, L_45, /*hidden argument*/NULL); return L_46; } IL_0195: { RegexParser_MoveRight_mE4C6D41AFE3F585C0B8E7CD0AF3CF4DBA8791AB4(__this, /*hidden argument*/NULL); bool L_47; L_47 = RegexParser_UseOptionE_m442360F28425CC127273FA1B10737E2AB3A70762(__this, /*hidden argument*/NULL); if (!L_47) { goto IL_01b6; } } { int32_t L_48 = __this->get__options_16(); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_49 = (RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 *)il2cpp_codegen_object_new(RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43_il2cpp_TypeInfo_var); RegexNode__ctor_m5A3AA31155A359CC8462AF0AB55DE0D5B7C435B4(L_49, ((int32_t)11), L_48, _stringLiteralF041468CA475A0C8B8298BFDDC984663476E0294, /*hidden argument*/NULL); return L_49; } IL_01b6: { int32_t L_50 = __this->get__options_16(); IL2CPP_RUNTIME_CLASS_INIT(RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5_il2cpp_TypeInfo_var); String_t* L_51 = ((RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5_StaticFields*)il2cpp_codegen_static_fields_for(RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5_il2cpp_TypeInfo_var))->get_DigitClass_14(); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_52 = (RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 *)il2cpp_codegen_object_new(RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43_il2cpp_TypeInfo_var); RegexNode__ctor_m5A3AA31155A359CC8462AF0AB55DE0D5B7C435B4(L_52, ((int32_t)11), L_50, L_51, /*hidden argument*/NULL); return L_52; } IL_01c9: { RegexParser_MoveRight_mE4C6D41AFE3F585C0B8E7CD0AF3CF4DBA8791AB4(__this, /*hidden argument*/NULL); bool L_53; L_53 = RegexParser_UseOptionE_m442360F28425CC127273FA1B10737E2AB3A70762(__this, /*hidden argument*/NULL); if (!L_53) { goto IL_01ea; } } { int32_t L_54 = __this->get__options_16(); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_55 = (RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 *)il2cpp_codegen_object_new(RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43_il2cpp_TypeInfo_var); RegexNode__ctor_m5A3AA31155A359CC8462AF0AB55DE0D5B7C435B4(L_55, ((int32_t)11), L_54, _stringLiteral595EFF1BB2D726958ED623D9B54803E9AA2A0C84, /*hidden argument*/NULL); return L_55; } IL_01ea: { int32_t L_56 = __this->get__options_16(); IL2CPP_RUNTIME_CLASS_INIT(RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5_il2cpp_TypeInfo_var); String_t* L_57 = ((RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5_StaticFields*)il2cpp_codegen_static_fields_for(RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5_il2cpp_TypeInfo_var))->get_NotDigitClass_15(); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_58 = (RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 *)il2cpp_codegen_object_new(RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43_il2cpp_TypeInfo_var); RegexNode__ctor_m5A3AA31155A359CC8462AF0AB55DE0D5B7C435B4(L_58, ((int32_t)11), L_56, L_57, /*hidden argument*/NULL); return L_58; } IL_01fd: { RegexParser_MoveRight_mE4C6D41AFE3F585C0B8E7CD0AF3CF4DBA8791AB4(__this, /*hidden argument*/NULL); RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5 * L_59 = (RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5 *)il2cpp_codegen_object_new(RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5_il2cpp_TypeInfo_var); RegexCharClass__ctor_m70685392EB3C5808958E20C99E045F33E21C8192(L_59, /*hidden argument*/NULL); V_1 = L_59; RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5 * L_60 = V_1; String_t* L_61; L_61 = RegexParser_ParseProperty_m32F8C5F94C55BFF814FBAD3189A25F3CAB76B3C3(__this, /*hidden argument*/NULL); Il2CppChar L_62 = V_0; bool L_63; L_63 = RegexParser_UseOptionI_m46AAF2DBCC08EE8F3E8ECA1A5E37160C4E5C7B04(__this, /*hidden argument*/NULL); String_t* L_64 = __this->get__pattern_5(); NullCheck(L_60); RegexCharClass_AddCategoryFromName_m53A239A7DACD3D5A676505E6E296C4AB999BBA4C(L_60, L_61, (bool)((((int32_t)((((int32_t)L_62) == ((int32_t)((int32_t)112)))? 1 : 0)) == ((int32_t)0))? 1 : 0), L_63, L_64, /*hidden argument*/NULL); bool L_65; L_65 = RegexParser_UseOptionI_m46AAF2DBCC08EE8F3E8ECA1A5E37160C4E5C7B04(__this, /*hidden argument*/NULL); if (!L_65) { goto IL_023d; } } { RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5 * L_66 = V_1; CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_67 = __this->get__culture_7(); NullCheck(L_66); RegexCharClass_AddLowercase_m4FAE0AB13B3DB076F711B6B06C2E61F40A115B40(L_66, L_67, /*hidden argument*/NULL); } IL_023d: { int32_t L_68 = __this->get__options_16(); RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5 * L_69 = V_1; NullCheck(L_69); String_t* L_70; L_70 = RegexCharClass_ToStringClass_mFC6754E97F014AFE4B5138AD5386E9C76D1D3CD7(L_69, /*hidden argument*/NULL); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_71 = (RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 *)il2cpp_codegen_object_new(RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43_il2cpp_TypeInfo_var); RegexNode__ctor_m5A3AA31155A359CC8462AF0AB55DE0D5B7C435B4(L_71, ((int32_t)11), L_68, L_70, /*hidden argument*/NULL); return L_71; } IL_0251: { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_72; L_72 = RegexParser_ScanBasicBackslash_m3DAD88630B04CE794414919D65F325197CB15C3D(__this, /*hidden argument*/NULL); return L_72; } } // System.Text.RegularExpressions.RegexNode System.Text.RegularExpressions.RegexParser::ScanBasicBackslash() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * RegexParser_ScanBasicBackslash_m3DAD88630B04CE794414919D65F325197CB15C3D (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } Il2CppChar V_0 = 0x0; bool V_1 = false; Il2CppChar V_2 = 0x0; 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; String_t* V_9 = NULL; int32_t G_B9_0 = 0; int32_t G_B20_0 = 0; { int32_t L_0; L_0 = RegexParser_CharsRight_m808A213FCB975D42C6E6270E7A0FAEB1E496B07A(__this, /*hidden argument*/NULL); if (L_0) { goto IL_0019; } } { String_t* L_1; L_1 = SR_GetString_m9DC7F3962EEB239017A1A4C443F52047B5BC7462(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral709116FAB4B1CFB8E839AF216932137595A1C356)), /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_2; L_2 = RegexParser_MakeException_mA573DC3F94B98F328A9B87673A2CF8A15120DEB1(__this, L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexParser_ScanBasicBackslash_m3DAD88630B04CE794414919D65F325197CB15C3D_RuntimeMethod_var))); } IL_0019: { V_1 = (bool)0; V_2 = 0; int32_t L_3; L_3 = RegexParser_Textpos_m5A18C75CE7F3A5AE17373DA09A20070D988308C5_inline(__this, /*hidden argument*/NULL); V_3 = L_3; Il2CppChar L_4; L_4 = RegexParser_RightChar_mA977C61B98B8BB88C2A66AEBBFDA6826C58ED66A(__this, /*hidden argument*/NULL); V_0 = L_4; Il2CppChar L_5 = V_0; if ((!(((uint32_t)L_5) == ((uint32_t)((int32_t)107))))) { goto IL_0084; } } { int32_t L_6; L_6 = RegexParser_CharsRight_m808A213FCB975D42C6E6270E7A0FAEB1E496B07A(__this, /*hidden argument*/NULL); if ((((int32_t)L_6) < ((int32_t)2))) { goto IL_005e; } } { RegexParser_MoveRight_mE4C6D41AFE3F585C0B8E7CD0AF3CF4DBA8791AB4(__this, /*hidden argument*/NULL); Il2CppChar L_7; L_7 = RegexParser_MoveRightGetChar_mE98852DD0B33AE818B01A7CC7A9C301C2226F81C(__this, /*hidden argument*/NULL); V_0 = L_7; Il2CppChar L_8 = V_0; if ((((int32_t)L_8) == ((int32_t)((int32_t)60)))) { goto IL_0050; } } { Il2CppChar L_9 = V_0; if ((!(((uint32_t)L_9) == ((uint32_t)((int32_t)39))))) { goto IL_005e; } } IL_0050: { V_1 = (bool)1; Il2CppChar L_10 = V_0; if ((((int32_t)L_10) == ((int32_t)((int32_t)39)))) { goto IL_005b; } } { G_B9_0 = ((int32_t)62); goto IL_005d; } IL_005b: { G_B9_0 = ((int32_t)39); } IL_005d: { V_2 = G_B9_0; } IL_005e: { bool L_11 = V_1; if (!L_11) { goto IL_006a; } } { int32_t L_12; L_12 = RegexParser_CharsRight_m808A213FCB975D42C6E6270E7A0FAEB1E496B07A(__this, /*hidden argument*/NULL); if ((((int32_t)L_12) > ((int32_t)0))) { goto IL_007b; } } IL_006a: { String_t* L_13; L_13 = SR_GetString_m9DC7F3962EEB239017A1A4C443F52047B5BC7462(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2323F684C49416D2AA1F6FFAE52BA830E63326E0)), /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_14; L_14 = RegexParser_MakeException_mA573DC3F94B98F328A9B87673A2CF8A15120DEB1(__this, L_13, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_14, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexParser_ScanBasicBackslash_m3DAD88630B04CE794414919D65F325197CB15C3D_RuntimeMethod_var))); } IL_007b: { Il2CppChar L_15; L_15 = RegexParser_RightChar_mA977C61B98B8BB88C2A66AEBBFDA6826C58ED66A(__this, /*hidden argument*/NULL); V_0 = L_15; goto IL_00b2; } IL_0084: { Il2CppChar L_16 = V_0; if ((((int32_t)L_16) == ((int32_t)((int32_t)60)))) { goto IL_008e; } } { Il2CppChar L_17 = V_0; if ((!(((uint32_t)L_17) == ((uint32_t)((int32_t)39))))) { goto IL_00b2; } } IL_008e: { int32_t L_18; L_18 = RegexParser_CharsRight_m808A213FCB975D42C6E6270E7A0FAEB1E496B07A(__this, /*hidden argument*/NULL); if ((((int32_t)L_18) <= ((int32_t)1))) { goto IL_00b2; } } { V_1 = (bool)1; Il2CppChar L_19 = V_0; if ((((int32_t)L_19) == ((int32_t)((int32_t)39)))) { goto IL_00a2; } } { G_B20_0 = ((int32_t)62); goto IL_00a4; } IL_00a2: { G_B20_0 = ((int32_t)39); } IL_00a4: { V_2 = G_B20_0; RegexParser_MoveRight_mE4C6D41AFE3F585C0B8E7CD0AF3CF4DBA8791AB4(__this, /*hidden argument*/NULL); Il2CppChar L_20; L_20 = RegexParser_RightChar_mA977C61B98B8BB88C2A66AEBBFDA6826C58ED66A(__this, /*hidden argument*/NULL); V_0 = L_20; } IL_00b2: { bool L_21 = V_1; if (!L_21) { goto IL_011f; } } { Il2CppChar L_22 = V_0; if ((((int32_t)L_22) < ((int32_t)((int32_t)48)))) { goto IL_011f; } } { Il2CppChar L_23 = V_0; if ((((int32_t)L_23) > ((int32_t)((int32_t)57)))) { goto IL_011f; } } { int32_t L_24; L_24 = RegexParser_ScanDecimal_mC7374D132F506C5D7EEB868C32C4959B1C672017(__this, /*hidden argument*/NULL); V_4 = L_24; int32_t L_25; L_25 = RegexParser_CharsRight_m808A213FCB975D42C6E6270E7A0FAEB1E496B07A(__this, /*hidden argument*/NULL); if ((((int32_t)L_25) <= ((int32_t)0))) { goto IL_0285; } } { Il2CppChar L_26; L_26 = RegexParser_MoveRightGetChar_mE98852DD0B33AE818B01A7CC7A9C301C2226F81C(__this, /*hidden argument*/NULL); Il2CppChar L_27 = V_2; if ((!(((uint32_t)L_26) == ((uint32_t)L_27)))) { goto IL_0285; } } { int32_t L_28 = V_4; bool L_29; L_29 = RegexParser_IsCaptureSlot_mE462763928C28561B761AFCE14D30C6A31CD1C15(__this, L_28, /*hidden argument*/NULL); if (!L_29) { goto IL_00f9; } } { int32_t L_30 = __this->get__options_16(); int32_t L_31 = V_4; RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_32 = (RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 *)il2cpp_codegen_object_new(RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43_il2cpp_TypeInfo_var); RegexNode__ctor_mD4B2FB6044880AC4DDF035FFE6254A13807A34BC(L_32, ((int32_t)13), L_30, L_31, /*hidden argument*/NULL); return L_32; } IL_00f9: { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_33 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var)), (uint32_t)1); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_34 = L_33; IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var))); CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_35; L_35 = CultureInfo_get_CurrentCulture_m99E5F5BD20445F2A73F7EA0014A4E783DF3840BB(/*hidden argument*/NULL); String_t* L_36; L_36 = Int32_ToString_m027A8C9419D2FE56ED5D2EE42A6F3B3CE0130471((int32_t*)(&V_4), L_35, /*hidden argument*/NULL); NullCheck(L_34); ArrayElementTypeCheck (L_34, L_36); (L_34)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_36); String_t* L_37; L_37 = SR_GetString_m4FFAF18248A54C5B67E4760C5ED4869A87BCAD7F(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral5A958635C67952829AC7E2FD5FB3A2C8DB51121E)), L_34, /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_38; L_38 = RegexParser_MakeException_mA573DC3F94B98F328A9B87673A2CF8A15120DEB1(__this, L_37, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_38, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexParser_ScanBasicBackslash_m3DAD88630B04CE794414919D65F325197CB15C3D_RuntimeMethod_var))); } IL_011f: { bool L_39 = V_1; if (L_39) { goto IL_0224; } } { Il2CppChar L_40 = V_0; if ((((int32_t)L_40) < ((int32_t)((int32_t)49)))) { goto IL_0224; } } { Il2CppChar L_41 = V_0; if ((((int32_t)L_41) > ((int32_t)((int32_t)57)))) { goto IL_0224; } } { bool L_42; L_42 = RegexParser_UseOptionE_m442360F28425CC127273FA1B10737E2AB3A70762(__this, /*hidden argument*/NULL); if (!L_42) { goto IL_01d3; } } { V_5 = (-1); Il2CppChar L_43 = V_0; V_6 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_43, (int32_t)((int32_t)48))); int32_t L_44; L_44 = RegexParser_Textpos_m5A18C75CE7F3A5AE17373DA09A20070D988308C5_inline(__this, /*hidden argument*/NULL); V_7 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_44, (int32_t)1)); goto IL_01b1; } IL_0155: { int32_t L_45 = V_6; bool L_46; L_46 = RegexParser_IsCaptureSlot_mE462763928C28561B761AFCE14D30C6A31CD1C15(__this, L_45, /*hidden argument*/NULL); if (!L_46) { goto IL_0186; } } { Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_47 = __this->get__caps_12(); if (!L_47) { goto IL_0182; } } { Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_48 = __this->get__caps_12(); int32_t L_49 = V_6; int32_t L_50 = L_49; RuntimeObject * L_51 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_50); NullCheck(L_48); RuntimeObject * L_52; L_52 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(20 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_48, L_51); int32_t L_53 = V_7; if ((((int32_t)((*(int32_t*)((int32_t*)UnBox(L_52, Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var))))) >= ((int32_t)L_53))) { goto IL_0186; } } IL_0182: { int32_t L_54 = V_6; V_5 = L_54; } IL_0186: { RegexParser_MoveRight_mE4C6D41AFE3F585C0B8E7CD0AF3CF4DBA8791AB4(__this, /*hidden argument*/NULL); int32_t L_55; L_55 = RegexParser_CharsRight_m808A213FCB975D42C6E6270E7A0FAEB1E496B07A(__this, /*hidden argument*/NULL); if (!L_55) { goto IL_01bb; } } { Il2CppChar L_56; L_56 = RegexParser_RightChar_mA977C61B98B8BB88C2A66AEBBFDA6826C58ED66A(__this, /*hidden argument*/NULL); Il2CppChar L_57 = L_56; V_0 = L_57; if ((((int32_t)L_57) < ((int32_t)((int32_t)48)))) { goto IL_01bb; } } { Il2CppChar L_58 = V_0; if ((((int32_t)L_58) > ((int32_t)((int32_t)57)))) { goto IL_01bb; } } { int32_t L_59 = V_6; Il2CppChar L_60 = V_0; V_6 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_59, (int32_t)((int32_t)10))), (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_60, (int32_t)((int32_t)48))))); } IL_01b1: { int32_t L_61 = V_6; int32_t L_62 = __this->get__captop_10(); if ((((int32_t)L_61) <= ((int32_t)L_62))) { goto IL_0155; } } IL_01bb: { int32_t L_63 = V_5; if ((((int32_t)L_63) < ((int32_t)0))) { goto IL_0285; } } { int32_t L_64 = __this->get__options_16(); int32_t L_65 = V_5; RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_66 = (RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 *)il2cpp_codegen_object_new(RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43_il2cpp_TypeInfo_var); RegexNode__ctor_mD4B2FB6044880AC4DDF035FFE6254A13807A34BC(L_66, ((int32_t)13), L_64, L_65, /*hidden argument*/NULL); return L_66; } IL_01d3: { int32_t L_67; L_67 = RegexParser_ScanDecimal_mC7374D132F506C5D7EEB868C32C4959B1C672017(__this, /*hidden argument*/NULL); V_8 = L_67; int32_t L_68 = V_8; bool L_69; L_69 = RegexParser_IsCaptureSlot_mE462763928C28561B761AFCE14D30C6A31CD1C15(__this, L_68, /*hidden argument*/NULL); if (!L_69) { goto IL_01f5; } } { int32_t L_70 = __this->get__options_16(); int32_t L_71 = V_8; RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_72 = (RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 *)il2cpp_codegen_object_new(RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43_il2cpp_TypeInfo_var); RegexNode__ctor_mD4B2FB6044880AC4DDF035FFE6254A13807A34BC(L_72, ((int32_t)13), L_70, L_71, /*hidden argument*/NULL); return L_72; } IL_01f5: { int32_t L_73 = V_8; if ((((int32_t)L_73) > ((int32_t)((int32_t)9)))) { goto IL_0285; } } { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_74 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var)), (uint32_t)1); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_75 = L_74; IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var))); CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_76; L_76 = CultureInfo_get_CurrentCulture_m99E5F5BD20445F2A73F7EA0014A4E783DF3840BB(/*hidden argument*/NULL); String_t* L_77; L_77 = Int32_ToString_m027A8C9419D2FE56ED5D2EE42A6F3B3CE0130471((int32_t*)(&V_8), L_76, /*hidden argument*/NULL); NullCheck(L_75); ArrayElementTypeCheck (L_75, L_77); (L_75)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_77); String_t* L_78; L_78 = SR_GetString_m4FFAF18248A54C5B67E4760C5ED4869A87BCAD7F(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral5A958635C67952829AC7E2FD5FB3A2C8DB51121E)), L_75, /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_79; L_79 = RegexParser_MakeException_mA573DC3F94B98F328A9B87673A2CF8A15120DEB1(__this, L_78, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_79, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexParser_ScanBasicBackslash_m3DAD88630B04CE794414919D65F325197CB15C3D_RuntimeMethod_var))); } IL_0224: { bool L_80 = V_1; if (!L_80) { goto IL_0285; } } { Il2CppChar L_81 = V_0; IL2CPP_RUNTIME_CLASS_INIT(RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5_il2cpp_TypeInfo_var); bool L_82; L_82 = RegexCharClass_IsWordChar_mE33E6C5569AA1B920849CD5555DF3CE9A9C10440(L_81, /*hidden argument*/NULL); if (!L_82) { goto IL_0285; } } { String_t* L_83; L_83 = RegexParser_ScanCapname_mC34B52A5BDE9DB0AB0A9691F52D45D0B7D4AD377(__this, /*hidden argument*/NULL); V_9 = L_83; int32_t L_84; L_84 = RegexParser_CharsRight_m808A213FCB975D42C6E6270E7A0FAEB1E496B07A(__this, /*hidden argument*/NULL); if ((((int32_t)L_84) <= ((int32_t)0))) { goto IL_0285; } } { Il2CppChar L_85; L_85 = RegexParser_MoveRightGetChar_mE98852DD0B33AE818B01A7CC7A9C301C2226F81C(__this, /*hidden argument*/NULL); Il2CppChar L_86 = V_2; if ((!(((uint32_t)L_85) == ((uint32_t)L_86)))) { goto IL_0285; } } { String_t* L_87 = V_9; bool L_88; L_88 = RegexParser_IsCaptureName_mF09CBBD2AEAD4D1BAAE4E4E803C3F4916DBA479D(__this, L_87, /*hidden argument*/NULL); if (!L_88) { goto IL_0269; } } { int32_t L_89 = __this->get__options_16(); String_t* L_90 = V_9; int32_t L_91; L_91 = RegexParser_CaptureSlotFromName_mF8279E16DB2733EE3712214CFC57DA3D48BD717B(__this, L_90, /*hidden argument*/NULL); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_92 = (RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 *)il2cpp_codegen_object_new(RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43_il2cpp_TypeInfo_var); RegexNode__ctor_mD4B2FB6044880AC4DDF035FFE6254A13807A34BC(L_92, ((int32_t)13), L_89, L_91, /*hidden argument*/NULL); return L_92; } IL_0269: { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_93 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var)), (uint32_t)1); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_94 = L_93; String_t* L_95 = V_9; NullCheck(L_94); ArrayElementTypeCheck (L_94, L_95); (L_94)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_95); String_t* L_96; L_96 = SR_GetString_m4FFAF18248A54C5B67E4760C5ED4869A87BCAD7F(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralBC41C48BA95DA48A6EB8BFC17142E8F0E9E4C990)), L_94, /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_97; L_97 = RegexParser_MakeException_mA573DC3F94B98F328A9B87673A2CF8A15120DEB1(__this, L_96, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_97, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexParser_ScanBasicBackslash_m3DAD88630B04CE794414919D65F325197CB15C3D_RuntimeMethod_var))); } IL_0285: { int32_t L_98 = V_3; RegexParser_Textto_mE4BCC8608BF006D283A32F9C5811264467EEB806_inline(__this, L_98, /*hidden argument*/NULL); Il2CppChar L_99; L_99 = RegexParser_ScanCharEscape_m7A3FDDAF73AB029CB6EA7BB8058E3FD2AEDD63D6(__this, /*hidden argument*/NULL); V_0 = L_99; bool L_100; L_100 = RegexParser_UseOptionI_m46AAF2DBCC08EE8F3E8ECA1A5E37160C4E5C7B04(__this, /*hidden argument*/NULL); if (!L_100) { goto IL_02a8; } } { Il2CppChar L_101 = V_0; CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_102 = __this->get__culture_7(); IL2CPP_RUNTIME_CLASS_INIT(Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_il2cpp_TypeInfo_var); Il2CppChar L_103; L_103 = Char_ToLower_m42C052EB06C3F461C8CEBAD492E102EB721FDECE(L_101, L_102, /*hidden argument*/NULL); V_0 = L_103; } IL_02a8: { int32_t L_104 = __this->get__options_16(); Il2CppChar L_105 = V_0; RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_106 = (RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 *)il2cpp_codegen_object_new(RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43_il2cpp_TypeInfo_var); RegexNode__ctor_m2E85CE2AB0812A86EE61448DEACBA68E329D3325(L_106, ((int32_t)9), L_104, L_105, /*hidden argument*/NULL); return L_106; } } // System.String System.Text.RegularExpressions.RegexParser::ScanCapname() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* RegexParser_ScanCapname_mC34B52A5BDE9DB0AB0A9691F52D45D0B7D4AD377 (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { int32_t L_0; L_0 = RegexParser_Textpos_m5A18C75CE7F3A5AE17373DA09A20070D988308C5_inline(__this, /*hidden argument*/NULL); V_0 = L_0; goto IL_001e; } IL_0009: { Il2CppChar L_1; L_1 = RegexParser_MoveRightGetChar_mE98852DD0B33AE818B01A7CC7A9C301C2226F81C(__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5_il2cpp_TypeInfo_var); bool L_2; L_2 = RegexCharClass_IsWordChar_mE33E6C5569AA1B920849CD5555DF3CE9A9C10440(L_1, /*hidden argument*/NULL); if (L_2) { goto IL_001e; } } { RegexParser_MoveLeft_mBE0128B08B61C1306954528C799F2F1F1B803391(__this, /*hidden argument*/NULL); goto IL_0027; } IL_001e: { int32_t L_3; L_3 = RegexParser_CharsRight_m808A213FCB975D42C6E6270E7A0FAEB1E496B07A(__this, /*hidden argument*/NULL); if ((((int32_t)L_3) > ((int32_t)0))) { goto IL_0009; } } IL_0027: { String_t* L_4 = __this->get__pattern_5(); int32_t L_5 = V_0; int32_t L_6; L_6 = RegexParser_Textpos_m5A18C75CE7F3A5AE17373DA09A20070D988308C5_inline(__this, /*hidden argument*/NULL); int32_t L_7 = V_0; NullCheck(L_4); String_t* L_8; L_8 = String_Substring_m7A39A2AC0893AE940CF4CEC841326D56FFB9D86B(L_4, L_5, ((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)L_7)), /*hidden argument*/NULL); return L_8; } } // System.Char System.Text.RegularExpressions.RegexParser::ScanOctal() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar RegexParser_ScanOctal_m7767731DCDBED3AFE2CF6A24D4A6E7FB448062F6 (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; { V_2 = 3; int32_t L_0 = V_2; int32_t L_1; L_1 = RegexParser_CharsRight_m808A213FCB975D42C6E6270E7A0FAEB1E496B07A(__this, /*hidden argument*/NULL); if ((((int32_t)L_0) <= ((int32_t)L_1))) { goto IL_0012; } } { int32_t L_2; L_2 = RegexParser_CharsRight_m808A213FCB975D42C6E6270E7A0FAEB1E496B07A(__this, /*hidden argument*/NULL); V_2 = L_2; } IL_0012: { V_1 = 0; goto IL_0035; } IL_0016: { RegexParser_MoveRight_mE4C6D41AFE3F585C0B8E7CD0AF3CF4DBA8791AB4(__this, /*hidden argument*/NULL); int32_t L_3 = V_1; V_1 = ((int32_t)il2cpp_codegen_multiply((int32_t)L_3, (int32_t)8)); int32_t L_4 = V_1; int32_t L_5 = V_0; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)L_5)); bool L_6; L_6 = RegexParser_UseOptionE_m442360F28425CC127273FA1B10737E2AB3A70762(__this, /*hidden argument*/NULL); if (!L_6) { goto IL_0031; } } { int32_t L_7 = V_1; if ((((int32_t)L_7) >= ((int32_t)((int32_t)32)))) { goto IL_0047; } } IL_0031: { int32_t L_8 = V_2; V_2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_8, (int32_t)1)); } IL_0035: { int32_t L_9 = V_2; if ((((int32_t)L_9) <= ((int32_t)0))) { goto IL_0047; } } { Il2CppChar L_10; L_10 = RegexParser_RightChar_mA977C61B98B8BB88C2A66AEBBFDA6826C58ED66A(__this, /*hidden argument*/NULL); int32_t L_11 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_10, (int32_t)((int32_t)48))); V_0 = L_11; if ((!(((uint32_t)L_11) > ((uint32_t)7)))) { goto IL_0016; } } IL_0047: { int32_t L_12 = V_1; V_1 = ((int32_t)((int32_t)L_12&(int32_t)((int32_t)255))); int32_t L_13 = V_1; return ((int32_t)((uint16_t)L_13)); } } // System.Int32 System.Text.RegularExpressions.RegexParser::ScanDecimal() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexParser_ScanDecimal_mC7374D132F506C5D7EEB868C32C4959B1C672017 (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; { V_0 = 0; goto IL_0038; } IL_0004: { RegexParser_MoveRight_mE4C6D41AFE3F585C0B8E7CD0AF3CF4DBA8791AB4(__this, /*hidden argument*/NULL); int32_t L_0 = V_0; if ((((int32_t)L_0) > ((int32_t)((int32_t)214748364)))) { goto IL_001e; } } { int32_t L_1 = V_0; if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)214748364))))) { goto IL_002f; } } { int32_t L_2 = V_1; if ((((int32_t)L_2) <= ((int32_t)7))) { goto IL_002f; } } IL_001e: { String_t* L_3; L_3 = SR_GetString_m9DC7F3962EEB239017A1A4C443F52047B5BC7462(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD6B452A9F938870B52555F4DB4CE0E35E48B1FA6)), /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_4; L_4 = RegexParser_MakeException_mA573DC3F94B98F328A9B87673A2CF8A15120DEB1(__this, L_3, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexParser_ScanDecimal_mC7374D132F506C5D7EEB868C32C4959B1C672017_RuntimeMethod_var))); } IL_002f: { int32_t L_5 = V_0; V_0 = ((int32_t)il2cpp_codegen_multiply((int32_t)L_5, (int32_t)((int32_t)10))); int32_t L_6 = V_0; int32_t L_7 = V_1; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)L_7)); } IL_0038: { int32_t L_8; L_8 = RegexParser_CharsRight_m808A213FCB975D42C6E6270E7A0FAEB1E496B07A(__this, /*hidden argument*/NULL); if ((((int32_t)L_8) <= ((int32_t)0))) { goto IL_0051; } } { Il2CppChar L_9; L_9 = RegexParser_RightChar_mA977C61B98B8BB88C2A66AEBBFDA6826C58ED66A(__this, /*hidden argument*/NULL); int32_t L_10 = ((int32_t)((uint16_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)((int32_t)48))))); V_1 = L_10; if ((!(((uint32_t)L_10) > ((uint32_t)((int32_t)9))))) { goto IL_0004; } } IL_0051: { int32_t L_11 = V_0; return L_11; } } // System.Char System.Text.RegularExpressions.RegexParser::ScanHex(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar RegexParser_ScanHex_m273E9DA24C7455F701730E65B90DAA5C0D0210C2 (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, int32_t ___c0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; { V_0 = 0; int32_t L_0; L_0 = RegexParser_CharsRight_m808A213FCB975D42C6E6270E7A0FAEB1E496B07A(__this, /*hidden argument*/NULL); int32_t L_1 = ___c0; if ((((int32_t)L_0) < ((int32_t)L_1))) { goto IL_002f; } } { goto IL_001b; } IL_000d: { int32_t L_2 = V_0; V_0 = ((int32_t)il2cpp_codegen_multiply((int32_t)L_2, (int32_t)((int32_t)16))); int32_t L_3 = V_0; int32_t L_4 = V_1; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)L_4)); int32_t L_5 = ___c0; ___c0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_5, (int32_t)1)); } IL_001b: { int32_t L_6 = ___c0; if ((((int32_t)L_6) <= ((int32_t)0))) { goto IL_002f; } } { Il2CppChar L_7; L_7 = RegexParser_MoveRightGetChar_mE98852DD0B33AE818B01A7CC7A9C301C2226F81C(__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9_il2cpp_TypeInfo_var); int32_t L_8; L_8 = RegexParser_HexDigit_m8026F1C18D04CF0CFC87405EE1449F029B977A50(L_7, /*hidden argument*/NULL); int32_t L_9 = L_8; V_1 = L_9; if ((((int32_t)L_9) >= ((int32_t)0))) { goto IL_000d; } } IL_002f: { int32_t L_10 = ___c0; if ((((int32_t)L_10) <= ((int32_t)0))) { goto IL_0044; } } { String_t* L_11; L_11 = SR_GetString_m9DC7F3962EEB239017A1A4C443F52047B5BC7462(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7D9371213C85404B41C69E8C41C1114818C7F4BF)), /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_12; L_12 = RegexParser_MakeException_mA573DC3F94B98F328A9B87673A2CF8A15120DEB1(__this, L_11, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexParser_ScanHex_m273E9DA24C7455F701730E65B90DAA5C0D0210C2_RuntimeMethod_var))); } IL_0044: { int32_t L_13 = V_0; return ((int32_t)((uint16_t)L_13)); } } // System.Int32 System.Text.RegularExpressions.RegexParser::HexDigit(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexParser_HexDigit_m8026F1C18D04CF0CFC87405EE1449F029B977A50 (Il2CppChar ___ch0, const RuntimeMethod* method) { int32_t V_0 = 0; { Il2CppChar L_0 = ___ch0; int32_t L_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)((int32_t)48))); V_0 = L_1; if ((!(((uint32_t)L_1) <= ((uint32_t)((int32_t)9))))) { goto IL_000c; } } { int32_t L_2 = V_0; return L_2; } IL_000c: { Il2CppChar L_3 = ___ch0; int32_t L_4 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_3, (int32_t)((int32_t)97))); V_0 = L_4; if ((!(((uint32_t)L_4) <= ((uint32_t)5)))) { goto IL_001a; } } { int32_t L_5 = V_0; return ((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)((int32_t)10))); } IL_001a: { Il2CppChar L_6 = ___ch0; int32_t L_7 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)((int32_t)65))); V_0 = L_7; if ((!(((uint32_t)L_7) <= ((uint32_t)5)))) { goto IL_0028; } } { int32_t L_8 = V_0; return ((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)((int32_t)10))); } IL_0028: { return (-1); } } // System.Char System.Text.RegularExpressions.RegexParser::ScanControl() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar RegexParser_ScanControl_m9EC29A03B8B1C8323D3E67F0D43F7A5960FFD816 (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, const RuntimeMethod* method) { Il2CppChar V_0 = 0x0; { int32_t L_0; L_0 = RegexParser_CharsRight_m808A213FCB975D42C6E6270E7A0FAEB1E496B07A(__this, /*hidden argument*/NULL); if ((((int32_t)L_0) > ((int32_t)0))) { goto IL_001a; } } { String_t* L_1; L_1 = SR_GetString_m9DC7F3962EEB239017A1A4C443F52047B5BC7462(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral9C3D04385AD6997A289AF27CABA813829BDB3298)), /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_2; L_2 = RegexParser_MakeException_mA573DC3F94B98F328A9B87673A2CF8A15120DEB1(__this, L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexParser_ScanControl_m9EC29A03B8B1C8323D3E67F0D43F7A5960FFD816_RuntimeMethod_var))); } IL_001a: { Il2CppChar L_3; L_3 = RegexParser_MoveRightGetChar_mE98852DD0B33AE818B01A7CC7A9C301C2226F81C(__this, /*hidden argument*/NULL); V_0 = L_3; Il2CppChar L_4 = V_0; if ((((int32_t)L_4) < ((int32_t)((int32_t)97)))) { goto IL_0031; } } { Il2CppChar L_5 = V_0; if ((((int32_t)L_5) > ((int32_t)((int32_t)122)))) { goto IL_0031; } } { Il2CppChar L_6 = V_0; V_0 = ((int32_t)((uint16_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)((int32_t)32))))); } IL_0031: { Il2CppChar L_7 = V_0; int32_t L_8 = ((int32_t)((uint16_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_7, (int32_t)((int32_t)64))))); V_0 = L_8; if ((((int32_t)L_8) >= ((int32_t)((int32_t)32)))) { goto IL_003e; } } { Il2CppChar L_9 = V_0; return L_9; } IL_003e: { String_t* L_10; L_10 = SR_GetString_m9DC7F3962EEB239017A1A4C443F52047B5BC7462(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral5D3712231996A1C41EDA4CA1C12669294FE63D36)), /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_11; L_11 = RegexParser_MakeException_mA573DC3F94B98F328A9B87673A2CF8A15120DEB1(__this, L_10, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexParser_ScanControl_m9EC29A03B8B1C8323D3E67F0D43F7A5960FFD816_RuntimeMethod_var))); } } // System.Boolean System.Text.RegularExpressions.RegexParser::IsOnlyTopOption(System.Text.RegularExpressions.RegexOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexParser_IsOnlyTopOption_m7C4B2E37C797EEB8C5878365C25EDE72E2EBE404 (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, int32_t ___option0, const RuntimeMethod* method) { { int32_t L_0 = ___option0; if ((((int32_t)L_0) == ((int32_t)((int32_t)64)))) { goto IL_0016; } } { int32_t L_1 = ___option0; if ((((int32_t)L_1) == ((int32_t)((int32_t)512)))) { goto IL_0016; } } { int32_t L_2 = ___option0; return (bool)((((int32_t)L_2) == ((int32_t)((int32_t)256)))? 1 : 0); } IL_0016: { return (bool)1; } } // System.Void System.Text.RegularExpressions.RegexParser::ScanOptions() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_ScanOptions_mE9C5126433FD0A2576B402A07941114AB468D79F (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } Il2CppChar V_0 = 0x0; bool V_1 = false; int32_t V_2 = 0; { V_1 = (bool)0; goto IL_0059; } IL_0004: { Il2CppChar L_0; L_0 = RegexParser_RightChar_mA977C61B98B8BB88C2A66AEBBFDA6826C58ED66A(__this, /*hidden argument*/NULL); V_0 = L_0; Il2CppChar L_1 = V_0; if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)45))))) { goto IL_0014; } } { V_1 = (bool)1; goto IL_0053; } IL_0014: { Il2CppChar L_2 = V_0; if ((!(((uint32_t)L_2) == ((uint32_t)((int32_t)43))))) { goto IL_001d; } } { V_1 = (bool)0; goto IL_0053; } IL_001d: { Il2CppChar L_3 = V_0; IL2CPP_RUNTIME_CLASS_INIT(RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9_il2cpp_TypeInfo_var); int32_t L_4; L_4 = RegexParser_OptionFromCode_m3D0AF05036648041D641C37E24919D3D6CA7B7CE(L_3, /*hidden argument*/NULL); V_2 = L_4; int32_t L_5 = V_2; if (!L_5) { goto IL_0030; } } { int32_t L_6 = V_2; bool L_7; L_7 = RegexParser_IsOnlyTopOption_m7C4B2E37C797EEB8C5878365C25EDE72E2EBE404(__this, L_6, /*hidden argument*/NULL); if (!L_7) { goto IL_0031; } } IL_0030: { return; } IL_0031: { bool L_8 = V_1; if (!L_8) { goto IL_0045; } } { int32_t L_9 = __this->get__options_16(); int32_t L_10 = V_2; __this->set__options_16(((int32_t)((int32_t)L_9&(int32_t)((~L_10))))); goto IL_0053; } IL_0045: { int32_t L_11 = __this->get__options_16(); int32_t L_12 = V_2; __this->set__options_16(((int32_t)((int32_t)L_11|(int32_t)L_12))); } IL_0053: { RegexParser_MoveRight_mE4C6D41AFE3F585C0B8E7CD0AF3CF4DBA8791AB4(__this, /*hidden argument*/NULL); } IL_0059: { int32_t L_13; L_13 = RegexParser_CharsRight_m808A213FCB975D42C6E6270E7A0FAEB1E496B07A(__this, /*hidden argument*/NULL); if ((((int32_t)L_13) > ((int32_t)0))) { goto IL_0004; } } { return; } } // System.Char System.Text.RegularExpressions.RegexParser::ScanCharEscape() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar RegexParser_ScanCharEscape_m7A3FDDAF73AB029CB6EA7BB8058E3FD2AEDD63D6 (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } Il2CppChar V_0 = 0x0; { Il2CppChar L_0; L_0 = RegexParser_MoveRightGetChar_mE98852DD0B33AE818B01A7CC7A9C301C2226F81C(__this, /*hidden argument*/NULL); V_0 = L_0; Il2CppChar L_1 = V_0; if ((((int32_t)L_1) < ((int32_t)((int32_t)48)))) { goto IL_001e; } } { Il2CppChar L_2 = V_0; if ((((int32_t)L_2) > ((int32_t)((int32_t)55)))) { goto IL_001e; } } { RegexParser_MoveLeft_mBE0128B08B61C1306954528C799F2F1F1B803391(__this, /*hidden argument*/NULL); Il2CppChar L_3; L_3 = RegexParser_ScanOctal_m7767731DCDBED3AFE2CF6A24D4A6E7FB448062F6(__this, /*hidden argument*/NULL); return L_3; } IL_001e: { Il2CppChar L_4 = V_0; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)((int32_t)97)))) { case 0: { goto IL_0086; } case 1: { goto IL_0088; } case 2: { goto IL_009c; } case 3: { goto IL_00a3; } case 4: { goto IL_008a; } case 5: { goto IL_008d; } } } { Il2CppChar L_5 = V_0; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_5, (int32_t)((int32_t)110)))) { case 0: { goto IL_0090; } case 1: { goto IL_00a3; } case 2: { goto IL_00a3; } case 3: { goto IL_00a3; } case 4: { goto IL_0093; } case 5: { goto IL_00a3; } case 6: { goto IL_0096; } case 7: { goto IL_007e; } case 8: { goto IL_0099; } case 9: { goto IL_00a3; } case 10: { goto IL_0076; } } } { goto IL_00a3; } IL_0076: { Il2CppChar L_6; L_6 = RegexParser_ScanHex_m273E9DA24C7455F701730E65B90DAA5C0D0210C2(__this, 2, /*hidden argument*/NULL); return L_6; } IL_007e: { Il2CppChar L_7; L_7 = RegexParser_ScanHex_m273E9DA24C7455F701730E65B90DAA5C0D0210C2(__this, 4, /*hidden argument*/NULL); return L_7; } IL_0086: { return 7; } IL_0088: { return 8; } IL_008a: { return ((int32_t)27); } IL_008d: { return ((int32_t)12); } IL_0090: { return ((int32_t)10); } IL_0093: { return ((int32_t)13); } IL_0096: { return ((int32_t)9); } IL_0099: { return ((int32_t)11); } IL_009c: { Il2CppChar L_8; L_8 = RegexParser_ScanControl_m9EC29A03B8B1C8323D3E67F0D43F7A5960FFD816(__this, /*hidden argument*/NULL); return L_8; } IL_00a3: { bool L_9; L_9 = RegexParser_UseOptionE_m442360F28425CC127273FA1B10737E2AB3A70762(__this, /*hidden argument*/NULL); if (L_9) { goto IL_00d4; } } { Il2CppChar L_10 = V_0; IL2CPP_RUNTIME_CLASS_INIT(RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5_il2cpp_TypeInfo_var); bool L_11; L_11 = RegexCharClass_IsWordChar_mE33E6C5569AA1B920849CD5555DF3CE9A9C10440(L_10, /*hidden argument*/NULL); if (!L_11) { goto IL_00d4; } } { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_12 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var)), (uint32_t)1); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_13 = L_12; String_t* L_14; L_14 = Char_ToString_mE0DE433463C56FD30A4F0A50539553B17147C2F8((Il2CppChar*)(&V_0), /*hidden argument*/NULL); NullCheck(L_13); ArrayElementTypeCheck (L_13, L_14); (L_13)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_14); String_t* L_15; L_15 = SR_GetString_m4FFAF18248A54C5B67E4760C5ED4869A87BCAD7F(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralCB62281B27D708B122BB052F6C5C203A9C9CA10B)), L_13, /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_16; L_16 = RegexParser_MakeException_mA573DC3F94B98F328A9B87673A2CF8A15120DEB1(__this, L_15, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_16, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexParser_ScanCharEscape_m7A3FDDAF73AB029CB6EA7BB8058E3FD2AEDD63D6_RuntimeMethod_var))); } IL_00d4: { Il2CppChar L_17 = V_0; return L_17; } } // System.String System.Text.RegularExpressions.RegexParser::ParseProperty() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* RegexParser_ParseProperty_m32F8C5F94C55BFF814FBAD3189A25F3CAB76B3C3 (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } Il2CppChar V_0 = 0x0; int32_t V_1 = 0; String_t* G_B11_0 = NULL; String_t* G_B10_0 = NULL; String_t* G_B12_0 = NULL; { int32_t L_0; L_0 = RegexParser_CharsRight_m808A213FCB975D42C6E6270E7A0FAEB1E496B07A(__this, /*hidden argument*/NULL); if ((((int32_t)L_0) >= ((int32_t)3))) { goto IL_001a; } } { String_t* L_1; L_1 = SR_GetString_m9DC7F3962EEB239017A1A4C443F52047B5BC7462(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral5CC823378CCA508A81792DDC107D7253062D4F0D)), /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_2; L_2 = RegexParser_MakeException_mA573DC3F94B98F328A9B87673A2CF8A15120DEB1(__this, L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexParser_ParseProperty_m32F8C5F94C55BFF814FBAD3189A25F3CAB76B3C3_RuntimeMethod_var))); } IL_001a: { Il2CppChar L_3; L_3 = RegexParser_MoveRightGetChar_mE98852DD0B33AE818B01A7CC7A9C301C2226F81C(__this, /*hidden argument*/NULL); V_0 = L_3; Il2CppChar L_4 = V_0; if ((((int32_t)L_4) == ((int32_t)((int32_t)123)))) { goto IL_0037; } } { String_t* L_5; L_5 = SR_GetString_m9DC7F3962EEB239017A1A4C443F52047B5BC7462(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral326FE389E7BF8CF01EAC82490F9CDC8DC7132486)), /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_6; L_6 = RegexParser_MakeException_mA573DC3F94B98F328A9B87673A2CF8A15120DEB1(__this, L_5, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexParser_ParseProperty_m32F8C5F94C55BFF814FBAD3189A25F3CAB76B3C3_RuntimeMethod_var))); } IL_0037: { int32_t L_7; L_7 = RegexParser_Textpos_m5A18C75CE7F3A5AE17373DA09A20070D988308C5_inline(__this, /*hidden argument*/NULL); V_1 = L_7; goto IL_005c; } IL_0040: { Il2CppChar L_8; L_8 = RegexParser_MoveRightGetChar_mE98852DD0B33AE818B01A7CC7A9C301C2226F81C(__this, /*hidden argument*/NULL); V_0 = L_8; Il2CppChar L_9 = V_0; IL2CPP_RUNTIME_CLASS_INIT(RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5_il2cpp_TypeInfo_var); bool L_10; L_10 = RegexCharClass_IsWordChar_mE33E6C5569AA1B920849CD5555DF3CE9A9C10440(L_9, /*hidden argument*/NULL); if (L_10) { goto IL_005c; } } { Il2CppChar L_11 = V_0; if ((((int32_t)L_11) == ((int32_t)((int32_t)45)))) { goto IL_005c; } } { RegexParser_MoveLeft_mBE0128B08B61C1306954528C799F2F1F1B803391(__this, /*hidden argument*/NULL); goto IL_0065; } IL_005c: { int32_t L_12; L_12 = RegexParser_CharsRight_m808A213FCB975D42C6E6270E7A0FAEB1E496B07A(__this, /*hidden argument*/NULL); if ((((int32_t)L_12) > ((int32_t)0))) { goto IL_0040; } } IL_0065: { String_t* L_13 = __this->get__pattern_5(); int32_t L_14 = V_1; int32_t L_15; L_15 = RegexParser_Textpos_m5A18C75CE7F3A5AE17373DA09A20070D988308C5_inline(__this, /*hidden argument*/NULL); int32_t L_16 = V_1; NullCheck(L_13); String_t* L_17; L_17 = String_Substring_m7A39A2AC0893AE940CF4CEC841326D56FFB9D86B(L_13, L_14, ((int32_t)il2cpp_codegen_subtract((int32_t)L_15, (int32_t)L_16)), /*hidden argument*/NULL); int32_t L_18; L_18 = RegexParser_CharsRight_m808A213FCB975D42C6E6270E7A0FAEB1E496B07A(__this, /*hidden argument*/NULL); G_B10_0 = L_17; if (!L_18) { G_B11_0 = L_17; goto IL_008b; } } { Il2CppChar L_19; L_19 = RegexParser_MoveRightGetChar_mE98852DD0B33AE818B01A7CC7A9C301C2226F81C(__this, /*hidden argument*/NULL); G_B11_0 = G_B10_0; if ((((int32_t)L_19) == ((int32_t)((int32_t)125)))) { G_B12_0 = G_B10_0; goto IL_009c; } } IL_008b: { String_t* L_20; L_20 = SR_GetString_m9DC7F3962EEB239017A1A4C443F52047B5BC7462(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral5CC823378CCA508A81792DDC107D7253062D4F0D)), /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_21; L_21 = RegexParser_MakeException_mA573DC3F94B98F328A9B87673A2CF8A15120DEB1(__this, L_20, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_21, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexParser_ParseProperty_m32F8C5F94C55BFF814FBAD3189A25F3CAB76B3C3_RuntimeMethod_var))); } IL_009c: { return G_B12_0; } } // System.Int32 System.Text.RegularExpressions.RegexParser::TypeFromCode(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexParser_TypeFromCode_m9B5F0CD85CECC83F17C2A37B5A0A396478A668B8 (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, Il2CppChar ___ch0, const RuntimeMethod* method) { { Il2CppChar L_0 = ___ch0; if ((!(((uint32_t)L_0) <= ((uint32_t)((int32_t)71))))) { goto IL_0016; } } { Il2CppChar L_1 = ___ch0; if ((((int32_t)L_1) == ((int32_t)((int32_t)65)))) { goto IL_0043; } } { Il2CppChar L_2 = ___ch0; if ((((int32_t)L_2) == ((int32_t)((int32_t)66)))) { goto IL_0035; } } { Il2CppChar L_3 = ___ch0; if ((((int32_t)L_3) == ((int32_t)((int32_t)71)))) { goto IL_0046; } } { goto IL_004f; } IL_0016: { Il2CppChar L_4 = ___ch0; if ((((int32_t)L_4) == ((int32_t)((int32_t)90)))) { goto IL_0049; } } { Il2CppChar L_5 = ___ch0; if ((((int32_t)L_5) == ((int32_t)((int32_t)98)))) { goto IL_0027; } } { Il2CppChar L_6 = ___ch0; if ((((int32_t)L_6) == ((int32_t)((int32_t)122)))) { goto IL_004c; } } { goto IL_004f; } IL_0027: { bool L_7; L_7 = RegexParser_UseOptionE_m442360F28425CC127273FA1B10737E2AB3A70762(__this, /*hidden argument*/NULL); if (L_7) { goto IL_0032; } } { return ((int32_t)16); } IL_0032: { return ((int32_t)41); } IL_0035: { bool L_8; L_8 = RegexParser_UseOptionE_m442360F28425CC127273FA1B10737E2AB3A70762(__this, /*hidden argument*/NULL); if (L_8) { goto IL_0040; } } { return ((int32_t)17); } IL_0040: { return ((int32_t)42); } IL_0043: { return ((int32_t)18); } IL_0046: { return ((int32_t)19); } IL_0049: { return ((int32_t)20); } IL_004c: { return ((int32_t)21); } IL_004f: { return ((int32_t)22); } } // System.Text.RegularExpressions.RegexOptions System.Text.RegularExpressions.RegexParser::OptionFromCode(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexParser_OptionFromCode_m3D0AF05036648041D641C37E24919D3D6CA7B7CE (Il2CppChar ___ch0, const RuntimeMethod* method) { { Il2CppChar L_0 = ___ch0; if ((((int32_t)L_0) < ((int32_t)((int32_t)65)))) { goto IL_0011; } } { Il2CppChar L_1 = ___ch0; if ((((int32_t)L_1) > ((int32_t)((int32_t)90)))) { goto IL_0011; } } { Il2CppChar L_2 = ___ch0; ___ch0 = ((int32_t)((uint16_t)((int32_t)il2cpp_codegen_add((int32_t)L_2, (int32_t)((int32_t)32))))); } IL_0011: { Il2CppChar L_3 = ___ch0; if ((!(((uint32_t)L_3) <= ((uint32_t)((int32_t)105))))) { goto IL_0022; } } { Il2CppChar L_4 = ___ch0; if ((((int32_t)L_4) == ((int32_t)((int32_t)101)))) { goto IL_005d; } } { Il2CppChar L_5 = ___ch0; if ((((int32_t)L_5) == ((int32_t)((int32_t)105)))) { goto IL_004e; } } { goto IL_0063; } IL_0022: { Il2CppChar L_6 = ___ch0; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)((int32_t)109)))) { case 0: { goto IL_0053; } case 1: { goto IL_0055; } case 2: { goto IL_0063; } case 3: { goto IL_0063; } case 4: { goto IL_0063; } case 5: { goto IL_0050; } case 6: { goto IL_0057; } } } { Il2CppChar L_7 = ___ch0; if ((((int32_t)L_7) == ((int32_t)((int32_t)120)))) { goto IL_005a; } } { goto IL_0063; } IL_004e: { return (int32_t)(1); } IL_0050: { return (int32_t)(((int32_t)64)); } IL_0053: { return (int32_t)(2); } IL_0055: { return (int32_t)(4); } IL_0057: { return (int32_t)(((int32_t)16)); } IL_005a: { return (int32_t)(((int32_t)32)); } IL_005d: { return (int32_t)(((int32_t)256)); } IL_0063: { return (int32_t)(0); } } // System.Void System.Text.RegularExpressions.RegexParser::CountCaptures() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_CountCaptures_mE1F7E2BFAE6D599A2F71D217A078B385A9408700 (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } Il2CppChar V_0 = 0x0; int32_t V_1 = 0; int32_t V_2 = 0; { RegexParser_NoteCaptureSlot_m0A4A75BC5BB740A63EE0D41BDBB25A1FADFBF53C(__this, 0, 0, /*hidden argument*/NULL); __this->set__autocap_8(1); goto IL_01c1; } IL_0014: { int32_t L_0; L_0 = RegexParser_Textpos_m5A18C75CE7F3A5AE17373DA09A20070D988308C5_inline(__this, /*hidden argument*/NULL); V_1 = L_0; Il2CppChar L_1; L_1 = RegexParser_MoveRightGetChar_mE98852DD0B33AE818B01A7CC7A9C301C2226F81C(__this, /*hidden argument*/NULL); V_0 = L_1; Il2CppChar L_2 = V_0; if ((!(((uint32_t)L_2) <= ((uint32_t)((int32_t)40))))) { goto IL_0036; } } { Il2CppChar L_3 = V_0; if ((((int32_t)L_3) == ((int32_t)((int32_t)35)))) { goto IL_005f; } } { Il2CppChar L_4 = V_0; if ((((int32_t)L_4) == ((int32_t)((int32_t)40)))) { goto IL_009f; } } { goto IL_01c1; } IL_0036: { Il2CppChar L_5 = V_0; if ((((int32_t)L_5) == ((int32_t)((int32_t)41)))) { goto IL_0089; } } { Il2CppChar L_6 = V_0; if ((((int32_t)L_6) == ((int32_t)((int32_t)91)))) { goto IL_007b; } } { Il2CppChar L_7 = V_0; if ((!(((uint32_t)L_7) == ((uint32_t)((int32_t)92))))) { goto IL_01c1; } } { int32_t L_8; L_8 = RegexParser_CharsRight_m808A213FCB975D42C6E6270E7A0FAEB1E496B07A(__this, /*hidden argument*/NULL); if ((((int32_t)L_8) <= ((int32_t)0))) { goto IL_01c1; } } { RegexParser_MoveRight_mE4C6D41AFE3F585C0B8E7CD0AF3CF4DBA8791AB4(__this, /*hidden argument*/NULL); goto IL_01c1; } IL_005f: { bool L_9; L_9 = RegexParser_UseOptionX_m7944C5C44AEAA4D69ABA991320A6B960F8EEC284(__this, /*hidden argument*/NULL); if (!L_9) { goto IL_01c1; } } { RegexParser_MoveLeft_mBE0128B08B61C1306954528C799F2F1F1B803391(__this, /*hidden argument*/NULL); RegexParser_ScanBlank_m2ACFA5BAF5FA14554D74C5DE4FE3893483D6F33D(__this, /*hidden argument*/NULL); goto IL_01c1; } IL_007b: { RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5 * L_10; L_10 = RegexParser_ScanCharClass_mADFDEFF75B3C880E692ED8411B7154CF3130401E(__this, (bool)0, (bool)1, /*hidden argument*/NULL); goto IL_01c1; } IL_0089: { bool L_11; L_11 = RegexParser_EmptyOptionsStack_m9B5B4501C296662175648E458F9EAAADEE3A2B44(__this, /*hidden argument*/NULL); if (L_11) { goto IL_01c1; } } { RegexParser_PopOptions_m186A6537DA0481481E59C5BED015B577508271C7(__this, /*hidden argument*/NULL); goto IL_01c1; } IL_009f: { int32_t L_12; L_12 = RegexParser_CharsRight_m808A213FCB975D42C6E6270E7A0FAEB1E496B07A(__this, /*hidden argument*/NULL); if ((((int32_t)L_12) < ((int32_t)2))) { goto IL_00ce; } } { Il2CppChar L_13; L_13 = RegexParser_RightChar_mE6728D67C4F9FE227ECD6BED46FFC94518EAD9B4(__this, 1, /*hidden argument*/NULL); if ((!(((uint32_t)L_13) == ((uint32_t)((int32_t)35))))) { goto IL_00ce; } } { Il2CppChar L_14; L_14 = RegexParser_RightChar_mA977C61B98B8BB88C2A66AEBBFDA6826C58ED66A(__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_14) == ((uint32_t)((int32_t)63))))) { goto IL_00ce; } } { RegexParser_MoveLeft_mBE0128B08B61C1306954528C799F2F1F1B803391(__this, /*hidden argument*/NULL); RegexParser_ScanBlank_m2ACFA5BAF5FA14554D74C5DE4FE3893483D6F33D(__this, /*hidden argument*/NULL); goto IL_01ba; } IL_00ce: { RegexParser_PushOptions_mC0047ADAB396BC1643AA63B2C395F09FCBE726BC(__this, /*hidden argument*/NULL); int32_t L_15; L_15 = RegexParser_CharsRight_m808A213FCB975D42C6E6270E7A0FAEB1E496B07A(__this, /*hidden argument*/NULL); if ((((int32_t)L_15) <= ((int32_t)0))) { goto IL_0192; } } { Il2CppChar L_16; L_16 = RegexParser_RightChar_mA977C61B98B8BB88C2A66AEBBFDA6826C58ED66A(__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_16) == ((uint32_t)((int32_t)63))))) { goto IL_0192; } } { RegexParser_MoveRight_mE4C6D41AFE3F585C0B8E7CD0AF3CF4DBA8791AB4(__this, /*hidden argument*/NULL); int32_t L_17; L_17 = RegexParser_CharsRight_m808A213FCB975D42C6E6270E7A0FAEB1E496B07A(__this, /*hidden argument*/NULL); if ((((int32_t)L_17) <= ((int32_t)1))) { goto IL_0158; } } { Il2CppChar L_18; L_18 = RegexParser_RightChar_mA977C61B98B8BB88C2A66AEBBFDA6826C58ED66A(__this, /*hidden argument*/NULL); if ((((int32_t)L_18) == ((int32_t)((int32_t)60)))) { goto IL_0110; } } { Il2CppChar L_19; L_19 = RegexParser_RightChar_mA977C61B98B8BB88C2A66AEBBFDA6826C58ED66A(__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_19) == ((uint32_t)((int32_t)39))))) { goto IL_0158; } } IL_0110: { RegexParser_MoveRight_mE4C6D41AFE3F585C0B8E7CD0AF3CF4DBA8791AB4(__this, /*hidden argument*/NULL); Il2CppChar L_20; L_20 = RegexParser_RightChar_mA977C61B98B8BB88C2A66AEBBFDA6826C58ED66A(__this, /*hidden argument*/NULL); V_0 = L_20; Il2CppChar L_21 = V_0; if ((((int32_t)L_21) == ((int32_t)((int32_t)48)))) { goto IL_01ba; } } { Il2CppChar L_22 = V_0; IL2CPP_RUNTIME_CLASS_INIT(RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5_il2cpp_TypeInfo_var); bool L_23; L_23 = RegexCharClass_IsWordChar_mE33E6C5569AA1B920849CD5555DF3CE9A9C10440(L_22, /*hidden argument*/NULL); if (!L_23) { goto IL_01ba; } } { Il2CppChar L_24 = V_0; if ((((int32_t)L_24) < ((int32_t)((int32_t)49)))) { goto IL_0149; } } { Il2CppChar L_25 = V_0; if ((((int32_t)L_25) > ((int32_t)((int32_t)57)))) { goto IL_0149; } } { int32_t L_26; L_26 = RegexParser_ScanDecimal_mC7374D132F506C5D7EEB868C32C4959B1C672017(__this, /*hidden argument*/NULL); int32_t L_27 = V_1; RegexParser_NoteCaptureSlot_m0A4A75BC5BB740A63EE0D41BDBB25A1FADFBF53C(__this, L_26, L_27, /*hidden argument*/NULL); goto IL_01ba; } IL_0149: { String_t* L_28; L_28 = RegexParser_ScanCapname_mC34B52A5BDE9DB0AB0A9691F52D45D0B7D4AD377(__this, /*hidden argument*/NULL); int32_t L_29 = V_1; RegexParser_NoteCaptureName_m8673E32280A278603401C24BFCD7C65F42881FA8(__this, L_28, L_29, /*hidden argument*/NULL); goto IL_01ba; } IL_0158: { RegexParser_ScanOptions_mE9C5126433FD0A2576B402A07941114AB468D79F(__this, /*hidden argument*/NULL); int32_t L_30; L_30 = RegexParser_CharsRight_m808A213FCB975D42C6E6270E7A0FAEB1E496B07A(__this, /*hidden argument*/NULL); if ((((int32_t)L_30) <= ((int32_t)0))) { goto IL_01ba; } } { Il2CppChar L_31; L_31 = RegexParser_RightChar_mA977C61B98B8BB88C2A66AEBBFDA6826C58ED66A(__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_31) == ((uint32_t)((int32_t)41))))) { goto IL_017f; } } { RegexParser_MoveRight_mE4C6D41AFE3F585C0B8E7CD0AF3CF4DBA8791AB4(__this, /*hidden argument*/NULL); RegexParser_PopKeepOptions_mBCC70CBFDC2A6DD07FE090D4E546B6AEA5644500(__this, /*hidden argument*/NULL); goto IL_01ba; } IL_017f: { Il2CppChar L_32; L_32 = RegexParser_RightChar_mA977C61B98B8BB88C2A66AEBBFDA6826C58ED66A(__this, /*hidden argument*/NULL); if ((!(((uint32_t)L_32) == ((uint32_t)((int32_t)40))))) { goto IL_01ba; } } { __this->set__ignoreNextParen_18((bool)1); goto IL_01c1; } IL_0192: { bool L_33; L_33 = RegexParser_UseOptionN_m9B82FA2012348674AC4E62205FE205CF2DB0ED35(__this, /*hidden argument*/NULL); if (L_33) { goto IL_01ba; } } { bool L_34 = __this->get__ignoreNextParen_18(); if (L_34) { goto IL_01ba; } } { int32_t L_35 = __this->get__autocap_8(); V_2 = L_35; int32_t L_36 = V_2; __this->set__autocap_8(((int32_t)il2cpp_codegen_add((int32_t)L_36, (int32_t)1))); int32_t L_37 = V_2; int32_t L_38 = V_1; RegexParser_NoteCaptureSlot_m0A4A75BC5BB740A63EE0D41BDBB25A1FADFBF53C(__this, L_37, L_38, /*hidden argument*/NULL); } IL_01ba: { __this->set__ignoreNextParen_18((bool)0); } IL_01c1: { int32_t L_39; L_39 = RegexParser_CharsRight_m808A213FCB975D42C6E6270E7A0FAEB1E496B07A(__this, /*hidden argument*/NULL); if ((((int32_t)L_39) > ((int32_t)0))) { goto IL_0014; } } { RegexParser_AssignNameSlots_m7478C18338D1440B8422BD849CCF1E3C33169EDB(__this, /*hidden argument*/NULL); return; } } // System.Void System.Text.RegularExpressions.RegexParser::NoteCaptureSlot(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_NoteCaptureSlot_m0A4A75BC5BB740A63EE0D41BDBB25A1FADFBF53C (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, int32_t ___i0, int32_t ___pos1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_0 = __this->get__caps_12(); int32_t L_1 = ___i0; int32_t L_2 = L_1; RuntimeObject * L_3 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_2); NullCheck(L_0); bool L_4; L_4 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(18 /* System.Boolean System.Collections.Hashtable::ContainsKey(System.Object) */, L_0, L_3); if (L_4) { goto IL_005a; } } { Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_5 = __this->get__caps_12(); int32_t L_6 = ___i0; int32_t L_7 = L_6; RuntimeObject * L_8 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_7); int32_t L_9 = ___pos1; int32_t L_10 = L_9; RuntimeObject * L_11 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_10); NullCheck(L_5); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(14 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_5, L_8, L_11); int32_t L_12 = __this->get__capcount_9(); __this->set__capcount_9(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); int32_t L_13 = __this->get__captop_10(); int32_t L_14 = ___i0; if ((((int32_t)L_13) > ((int32_t)L_14))) { goto IL_005a; } } { int32_t L_15 = ___i0; if ((!(((uint32_t)L_15) == ((uint32_t)((int32_t)2147483647LL))))) { goto IL_0051; } } { int32_t L_16 = ___i0; __this->set__captop_10(L_16); return; } IL_0051: { int32_t L_17 = ___i0; __this->set__captop_10(((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1))); } IL_005a: { return; } } // System.Void System.Text.RegularExpressions.RegexParser::NoteCaptureName(System.String,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_NoteCaptureName_m8673E32280A278603401C24BFCD7C65F42881FA8 (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, String_t* ___name0, int32_t ___pos1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m627ED3F7C50096BB8934F778CB980E79483BD2AE_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m30C52A4F2828D86CA3FAB0B1B583948F4DA9F1F9_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_0 = __this->get__capnames_13(); if (L_0) { goto IL_001e; } } { Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_1 = (Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC *)il2cpp_codegen_object_new(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC_il2cpp_TypeInfo_var); Hashtable__ctor_m2D9C25FB57ACD33B0DF8391D38A165975A1D9A91(L_1, /*hidden argument*/NULL); __this->set__capnames_13(L_1); List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * L_2 = (List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 *)il2cpp_codegen_object_new(List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3_il2cpp_TypeInfo_var); List_1__ctor_m30C52A4F2828D86CA3FAB0B1B583948F4DA9F1F9(L_2, /*hidden argument*/List_1__ctor_m30C52A4F2828D86CA3FAB0B1B583948F4DA9F1F9_RuntimeMethod_var); __this->set__capnamelist_15(L_2); } IL_001e: { Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_3 = __this->get__capnames_13(); String_t* L_4 = ___name0; NullCheck(L_3); bool L_5; L_5 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(18 /* System.Boolean System.Collections.Hashtable::ContainsKey(System.Object) */, L_3, L_4); if (L_5) { goto IL_004a; } } { Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_6 = __this->get__capnames_13(); String_t* L_7 = ___name0; int32_t L_8 = ___pos1; int32_t L_9 = L_8; RuntimeObject * L_10 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_9); NullCheck(L_6); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(14 /* System.Void System.Collections.Hashtable::Add(System.Object,System.Object) */, L_6, L_7, L_10); List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * L_11 = __this->get__capnamelist_15(); String_t* L_12 = ___name0; NullCheck(L_11); List_1_Add_m627ED3F7C50096BB8934F778CB980E79483BD2AE(L_11, L_12, /*hidden argument*/List_1_Add_m627ED3F7C50096BB8934F778CB980E79483BD2AE_RuntimeMethod_var); } IL_004a: { return; } } // System.Void System.Text.RegularExpressions.RegexParser::AssignNameSlots() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_AssignNameSlots_m7478C18338D1440B8422BD849CCF1E3C33169EDB (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Array_Sort_TisInt32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_m869CA1F8E6B6C60EDC16FAD4EE1B58274F42A791_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Comparer_1_get_Default_m4E5D9DBA11E8CC2229E46D18B658D018A7C18934_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_tDA947A979C1DAB4F09C461FAFD94FE194743A671_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionaryEnumerator_t8A89A8564EADF5FFB8494092DFED7D7C063F1501_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m627ED3F7C50096BB8934F778CB980E79483BD2AE_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m30C52A4F2828D86CA3FAB0B1B583948F4DA9F1F9_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m199DB87BCE947106FBA38E19FDFE80CB65B61144_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m8578F26F0FE72EDB6A0290D78944B3D4F34DBFAC_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; String_t* V_1 = NULL; int32_t V_2 = 0; int32_t V_3 = 0; RuntimeObject* V_4 = NULL; List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * V_5 = NULL; int32_t V_6 = 0; int32_t V_7 = 0; int32_t V_8 = 0; int32_t V_9 = 0; String_t* V_10 = NULL; int32_t G_B20_0 = 0; int32_t G_B24_0 = 0; { Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_0 = __this->get__capnames_13(); if (!L_0) { goto IL_008e; } } { V_0 = 0; goto IL_0080; } IL_000f: { int32_t L_1 = __this->get__autocap_8(); __this->set__autocap_8(((int32_t)il2cpp_codegen_add((int32_t)L_1, (int32_t)1))); } IL_001d: { int32_t L_2 = __this->get__autocap_8(); bool L_3; L_3 = RegexParser_IsCaptureSlot_mE462763928C28561B761AFCE14D30C6A31CD1C15(__this, L_2, /*hidden argument*/NULL); if (L_3) { goto IL_000f; } } { List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * L_4 = __this->get__capnamelist_15(); int32_t L_5 = V_0; NullCheck(L_4); String_t* L_6; L_6 = List_1_get_Item_m8578F26F0FE72EDB6A0290D78944B3D4F34DBFAC_inline(L_4, L_5, /*hidden argument*/List_1_get_Item_m8578F26F0FE72EDB6A0290D78944B3D4F34DBFAC_RuntimeMethod_var); V_1 = L_6; Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_7 = __this->get__capnames_13(); String_t* L_8 = V_1; NullCheck(L_7); RuntimeObject * L_9; L_9 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(20 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_7, L_8); V_2 = ((*(int32_t*)((int32_t*)UnBox(L_9, Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var)))); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_10 = __this->get__capnames_13(); String_t* L_11 = V_1; int32_t L_12 = __this->get__autocap_8(); int32_t L_13 = L_12; RuntimeObject * L_14 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_13); NullCheck(L_10); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(21 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_10, L_11, L_14); int32_t L_15 = __this->get__autocap_8(); int32_t L_16 = V_2; RegexParser_NoteCaptureSlot_m0A4A75BC5BB740A63EE0D41BDBB25A1FADFBF53C(__this, L_15, L_16, /*hidden argument*/NULL); int32_t L_17 = __this->get__autocap_8(); __this->set__autocap_8(((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1))); int32_t L_18 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1)); } IL_0080: { int32_t L_19 = V_0; List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * L_20 = __this->get__capnamelist_15(); NullCheck(L_20); int32_t L_21; L_21 = List_1_get_Count_m199DB87BCE947106FBA38E19FDFE80CB65B61144_inline(L_20, /*hidden argument*/List_1_get_Count_m199DB87BCE947106FBA38E19FDFE80CB65B61144_RuntimeMethod_var); if ((((int32_t)L_19) < ((int32_t)L_21))) { goto IL_001d; } } IL_008e: { int32_t L_22 = __this->get__capcount_9(); int32_t L_23 = __this->get__captop_10(); if ((((int32_t)L_22) >= ((int32_t)L_23))) { goto IL_00ef; } } { int32_t L_24 = __this->get__capcount_9(); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_25 = (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)SZArrayNew(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32_il2cpp_TypeInfo_var, (uint32_t)L_24); __this->set__capnumlist_14(L_25); V_3 = 0; Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_26 = __this->get__caps_12(); NullCheck(L_26); RuntimeObject* L_27; L_27 = VirtFuncInvoker0< RuntimeObject* >::Invoke(22 /* System.Collections.IDictionaryEnumerator System.Collections.Hashtable::GetEnumerator() */, L_26); V_4 = L_27; goto IL_00d6; } IL_00be: { Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_28 = __this->get__capnumlist_14(); int32_t L_29 = V_3; int32_t L_30 = L_29; V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_30, (int32_t)1)); RuntimeObject* L_31 = V_4; NullCheck(L_31); RuntimeObject * L_32; L_32 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(0 /* System.Object System.Collections.IDictionaryEnumerator::get_Key() */, IDictionaryEnumerator_t8A89A8564EADF5FFB8494092DFED7D7C063F1501_il2cpp_TypeInfo_var, L_31); NullCheck(L_28); (L_28)->SetAt(static_cast<il2cpp_array_size_t>(L_30), (int32_t)((*(int32_t*)((int32_t*)UnBox(L_32, Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var))))); } IL_00d6: { RuntimeObject* L_33 = V_4; NullCheck(L_33); bool L_34; L_34 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var, L_33); if (L_34) { goto IL_00be; } } { Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_35 = __this->get__capnumlist_14(); Comparer_1_t3E3093220DB5D33A829C91C1DFDBDE2F42ECEDC7 * L_36; L_36 = Comparer_1_get_Default_m4E5D9DBA11E8CC2229E46D18B658D018A7C18934(/*hidden argument*/Comparer_1_get_Default_m4E5D9DBA11E8CC2229E46D18B658D018A7C18934_RuntimeMethod_var); Array_Sort_TisInt32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_m869CA1F8E6B6C60EDC16FAD4EE1B58274F42A791(L_35, L_36, /*hidden argument*/Array_Sort_TisInt32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_m869CA1F8E6B6C60EDC16FAD4EE1B58274F42A791_RuntimeMethod_var); } IL_00ef: { Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_37 = __this->get__capnames_13(); if (L_37) { goto IL_0102; } } { Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_38 = __this->get__capnumlist_14(); if (!L_38) { goto IL_0204; } } IL_0102: { V_7 = 0; Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_39 = __this->get__capnames_13(); if (L_39) { goto IL_012b; } } { V_5 = (List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 *)NULL; Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_40 = (Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC *)il2cpp_codegen_object_new(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC_il2cpp_TypeInfo_var); Hashtable__ctor_m2D9C25FB57ACD33B0DF8391D38A165975A1D9A91(L_40, /*hidden argument*/NULL); __this->set__capnames_13(L_40); List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * L_41 = (List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 *)il2cpp_codegen_object_new(List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3_il2cpp_TypeInfo_var); List_1__ctor_m30C52A4F2828D86CA3FAB0B1B583948F4DA9F1F9(L_41, /*hidden argument*/List_1__ctor_m30C52A4F2828D86CA3FAB0B1B583948F4DA9F1F9_RuntimeMethod_var); __this->set__capnamelist_15(L_41); V_6 = (-1); goto IL_0158; } IL_012b: { List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * L_42 = __this->get__capnamelist_15(); V_5 = L_42; List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * L_43 = (List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 *)il2cpp_codegen_object_new(List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3_il2cpp_TypeInfo_var); List_1__ctor_m30C52A4F2828D86CA3FAB0B1B583948F4DA9F1F9(L_43, /*hidden argument*/List_1__ctor_m30C52A4F2828D86CA3FAB0B1B583948F4DA9F1F9_RuntimeMethod_var); __this->set__capnamelist_15(L_43); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_44 = __this->get__capnames_13(); List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * L_45 = V_5; NullCheck(L_45); String_t* L_46; L_46 = List_1_get_Item_m8578F26F0FE72EDB6A0290D78944B3D4F34DBFAC_inline(L_45, 0, /*hidden argument*/List_1_get_Item_m8578F26F0FE72EDB6A0290D78944B3D4F34DBFAC_RuntimeMethod_var); NullCheck(L_44); RuntimeObject * L_47; L_47 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(20 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_44, L_46); V_6 = ((*(int32_t*)((int32_t*)UnBox(L_47, Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var)))); } IL_0158: { V_8 = 0; goto IL_01f7; } IL_0160: { Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_48 = __this->get__capnumlist_14(); if (!L_48) { goto IL_0173; } } { Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_49 = __this->get__capnumlist_14(); int32_t L_50 = V_8; NullCheck(L_49); int32_t L_51 = L_50; int32_t L_52 = (L_49)->GetAt(static_cast<il2cpp_array_size_t>(L_51)); G_B20_0 = L_52; goto IL_0175; } IL_0173: { int32_t L_53 = V_8; G_B20_0 = L_53; } IL_0175: { V_9 = G_B20_0; int32_t L_54 = V_6; int32_t L_55 = V_9; if ((!(((uint32_t)L_54) == ((uint32_t)L_55)))) { goto IL_01c1; } } { List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * L_56 = __this->get__capnamelist_15(); List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * L_57 = V_5; int32_t L_58 = V_7; int32_t L_59 = L_58; V_7 = ((int32_t)il2cpp_codegen_add((int32_t)L_59, (int32_t)1)); NullCheck(L_57); String_t* L_60; L_60 = List_1_get_Item_m8578F26F0FE72EDB6A0290D78944B3D4F34DBFAC_inline(L_57, L_59, /*hidden argument*/List_1_get_Item_m8578F26F0FE72EDB6A0290D78944B3D4F34DBFAC_RuntimeMethod_var); NullCheck(L_56); List_1_Add_m627ED3F7C50096BB8934F778CB980E79483BD2AE(L_56, L_60, /*hidden argument*/List_1_Add_m627ED3F7C50096BB8934F778CB980E79483BD2AE_RuntimeMethod_var); int32_t L_61 = V_7; List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * L_62 = V_5; NullCheck(L_62); int32_t L_63; L_63 = List_1_get_Count_m199DB87BCE947106FBA38E19FDFE80CB65B61144_inline(L_62, /*hidden argument*/List_1_get_Count_m199DB87BCE947106FBA38E19FDFE80CB65B61144_RuntimeMethod_var); if ((((int32_t)L_61) == ((int32_t)L_63))) { goto IL_01bc; } } { Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_64 = __this->get__capnames_13(); List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * L_65 = V_5; int32_t L_66 = V_7; NullCheck(L_65); String_t* L_67; L_67 = List_1_get_Item_m8578F26F0FE72EDB6A0290D78944B3D4F34DBFAC_inline(L_65, L_66, /*hidden argument*/List_1_get_Item_m8578F26F0FE72EDB6A0290D78944B3D4F34DBFAC_RuntimeMethod_var); NullCheck(L_64); RuntimeObject * L_68; L_68 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(20 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_64, L_67); G_B24_0 = ((*(int32_t*)((int32_t*)UnBox(L_68, Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var)))); goto IL_01bd; } IL_01bc: { G_B24_0 = (-1); } IL_01bd: { V_6 = G_B24_0; goto IL_01f1; } IL_01c1: { int32_t L_69 = V_9; CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_70 = __this->get__culture_7(); IL2CPP_RUNTIME_CLASS_INIT(Convert_tDA947A979C1DAB4F09C461FAFD94FE194743A671_il2cpp_TypeInfo_var); String_t* L_71; L_71 = Convert_ToString_m608712133E3A607F257620CB270C6758F01CB109(L_69, L_70, /*hidden argument*/NULL); V_10 = L_71; List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * L_72 = __this->get__capnamelist_15(); String_t* L_73 = V_10; NullCheck(L_72); List_1_Add_m627ED3F7C50096BB8934F778CB980E79483BD2AE(L_72, L_73, /*hidden argument*/List_1_Add_m627ED3F7C50096BB8934F778CB980E79483BD2AE_RuntimeMethod_var); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_74 = __this->get__capnames_13(); String_t* L_75 = V_10; int32_t L_76 = V_9; int32_t L_77 = L_76; RuntimeObject * L_78 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_77); NullCheck(L_74); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(21 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_74, L_75, L_78); } IL_01f1: { int32_t L_79 = V_8; V_8 = ((int32_t)il2cpp_codegen_add((int32_t)L_79, (int32_t)1)); } IL_01f7: { int32_t L_80 = V_8; int32_t L_81 = __this->get__capcount_9(); if ((((int32_t)L_80) < ((int32_t)L_81))) { goto IL_0160; } } IL_0204: { return; } } // System.Int32 System.Text.RegularExpressions.RegexParser::CaptureSlotFromName(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexParser_CaptureSlotFromName_mF8279E16DB2733EE3712214CFC57DA3D48BD717B (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, String_t* ___capname0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_0 = __this->get__capnames_13(); String_t* L_1 = ___capname0; NullCheck(L_0); RuntimeObject * L_2; L_2 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(20 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_0, L_1); return ((*(int32_t*)((int32_t*)UnBox(L_2, Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var)))); } } // System.Boolean System.Text.RegularExpressions.RegexParser::IsCaptureSlot(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexParser_IsCaptureSlot_mE462763928C28561B761AFCE14D30C6A31CD1C15 (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, int32_t ___i0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_0 = __this->get__caps_12(); if (!L_0) { goto IL_001a; } } { Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_1 = __this->get__caps_12(); int32_t L_2 = ___i0; int32_t L_3 = L_2; RuntimeObject * L_4 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_3); NullCheck(L_1); bool L_5; L_5 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(18 /* System.Boolean System.Collections.Hashtable::ContainsKey(System.Object) */, L_1, L_4); return L_5; } IL_001a: { int32_t L_6 = ___i0; if ((((int32_t)L_6) < ((int32_t)0))) { goto IL_0028; } } { int32_t L_7 = ___i0; int32_t L_8 = __this->get__capsize_11(); return (bool)((((int32_t)L_7) < ((int32_t)L_8))? 1 : 0); } IL_0028: { return (bool)0; } } // System.Boolean System.Text.RegularExpressions.RegexParser::IsCaptureName(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexParser_IsCaptureName_mF09CBBD2AEAD4D1BAAE4E4E803C3F4916DBA479D (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, String_t* ___capname0, const RuntimeMethod* method) { { Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_0 = __this->get__capnames_13(); if (L_0) { goto IL_000a; } } { return (bool)0; } IL_000a: { Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_1 = __this->get__capnames_13(); String_t* L_2 = ___capname0; NullCheck(L_1); bool L_3; L_3 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(18 /* System.Boolean System.Collections.Hashtable::ContainsKey(System.Object) */, L_1, L_2); return L_3; } } // System.Boolean System.Text.RegularExpressions.RegexParser::UseOptionN() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexParser_UseOptionN_m9B82FA2012348674AC4E62205FE205CF2DB0ED35 (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get__options_16(); return (bool)((!(((uint32_t)((int32_t)((int32_t)L_0&(int32_t)4))) <= ((uint32_t)0)))? 1 : 0); } } // System.Boolean System.Text.RegularExpressions.RegexParser::UseOptionI() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexParser_UseOptionI_m46AAF2DBCC08EE8F3E8ECA1A5E37160C4E5C7B04 (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get__options_16(); return (bool)((!(((uint32_t)((int32_t)((int32_t)L_0&(int32_t)1))) <= ((uint32_t)0)))? 1 : 0); } } // System.Boolean System.Text.RegularExpressions.RegexParser::UseOptionM() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexParser_UseOptionM_mBCB459C99D9BD541A68ADF86C1FD437169A8352E (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get__options_16(); return (bool)((!(((uint32_t)((int32_t)((int32_t)L_0&(int32_t)2))) <= ((uint32_t)0)))? 1 : 0); } } // System.Boolean System.Text.RegularExpressions.RegexParser::UseOptionS() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexParser_UseOptionS_m079D720F7300CEEBB4800B8CB5F7DE450E00FC6D (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get__options_16(); return (bool)((!(((uint32_t)((int32_t)((int32_t)L_0&(int32_t)((int32_t)16)))) <= ((uint32_t)0)))? 1 : 0); } } // System.Boolean System.Text.RegularExpressions.RegexParser::UseOptionX() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexParser_UseOptionX_m7944C5C44AEAA4D69ABA991320A6B960F8EEC284 (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get__options_16(); return (bool)((!(((uint32_t)((int32_t)((int32_t)L_0&(int32_t)((int32_t)32)))) <= ((uint32_t)0)))? 1 : 0); } } // System.Boolean System.Text.RegularExpressions.RegexParser::UseOptionE() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexParser_UseOptionE_m442360F28425CC127273FA1B10737E2AB3A70762 (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get__options_16(); return (bool)((!(((uint32_t)((int32_t)((int32_t)L_0&(int32_t)((int32_t)256)))) <= ((uint32_t)0)))? 1 : 0); } } // System.Boolean System.Text.RegularExpressions.RegexParser::IsSpecial(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexParser_IsSpecial_m3EA52FD6E89284E878A510816990AD45656A9CF0 (Il2CppChar ___ch0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Il2CppChar L_0 = ___ch0; if ((((int32_t)L_0) > ((int32_t)((int32_t)124)))) { goto IL_0013; } } { IL2CPP_RUNTIME_CLASS_INIT(RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9_il2cpp_TypeInfo_var); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_1 = ((RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9_StaticFields*)il2cpp_codegen_static_fields_for(RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9_il2cpp_TypeInfo_var))->get__category_19(); Il2CppChar L_2 = ___ch0; NullCheck(L_1); Il2CppChar L_3 = L_2; uint8_t L_4 = (L_1)->GetAt(static_cast<il2cpp_array_size_t>(L_3)); return (bool)((((int32_t)((((int32_t)L_4) < ((int32_t)4))? 1 : 0)) == ((int32_t)0))? 1 : 0); } IL_0013: { return (bool)0; } } // System.Boolean System.Text.RegularExpressions.RegexParser::IsStopperX(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexParser_IsStopperX_m14B244DAE546E9EAAEF746C7722F21FFAF6DA8D9 (Il2CppChar ___ch0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Il2CppChar L_0 = ___ch0; if ((((int32_t)L_0) > ((int32_t)((int32_t)124)))) { goto IL_0013; } } { IL2CPP_RUNTIME_CLASS_INIT(RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9_il2cpp_TypeInfo_var); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_1 = ((RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9_StaticFields*)il2cpp_codegen_static_fields_for(RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9_il2cpp_TypeInfo_var))->get__category_19(); Il2CppChar L_2 = ___ch0; NullCheck(L_1); Il2CppChar L_3 = L_2; uint8_t L_4 = (L_1)->GetAt(static_cast<il2cpp_array_size_t>(L_3)); return (bool)((((int32_t)((((int32_t)L_4) < ((int32_t)2))? 1 : 0)) == ((int32_t)0))? 1 : 0); } IL_0013: { return (bool)0; } } // System.Boolean System.Text.RegularExpressions.RegexParser::IsQuantifier(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexParser_IsQuantifier_mFF0B74F0F48136C4CA3E6D614D819C67FC8EEE07 (Il2CppChar ___ch0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Il2CppChar L_0 = ___ch0; if ((((int32_t)L_0) > ((int32_t)((int32_t)123)))) { goto IL_0013; } } { IL2CPP_RUNTIME_CLASS_INIT(RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9_il2cpp_TypeInfo_var); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_1 = ((RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9_StaticFields*)il2cpp_codegen_static_fields_for(RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9_il2cpp_TypeInfo_var))->get__category_19(); Il2CppChar L_2 = ___ch0; NullCheck(L_1); Il2CppChar L_3 = L_2; uint8_t L_4 = (L_1)->GetAt(static_cast<il2cpp_array_size_t>(L_3)); return (bool)((((int32_t)((((int32_t)L_4) < ((int32_t)5))? 1 : 0)) == ((int32_t)0))? 1 : 0); } IL_0013: { return (bool)0; } } // System.Boolean System.Text.RegularExpressions.RegexParser::IsTrueQuantifier() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexParser_IsTrueQuantifier_m190312723B9D3A48FA41FED5A4DC5D9C055EB627 (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; Il2CppChar V_2 = 0x0; int32_t V_3 = 0; { int32_t L_0; L_0 = RegexParser_CharsRight_m808A213FCB975D42C6E6270E7A0FAEB1E496B07A(__this, /*hidden argument*/NULL); V_0 = L_0; int32_t L_1 = V_0; if (L_1) { goto IL_000c; } } { return (bool)0; } IL_000c: { int32_t L_2; L_2 = RegexParser_Textpos_m5A18C75CE7F3A5AE17373DA09A20070D988308C5_inline(__this, /*hidden argument*/NULL); V_1 = L_2; int32_t L_3 = V_1; Il2CppChar L_4; L_4 = RegexParser_CharAt_mEA865F2B6DC4EF1B81F8D80ABF989F395BEC0B84(__this, L_3, /*hidden argument*/NULL); V_2 = L_4; Il2CppChar L_5 = V_2; if ((((int32_t)L_5) == ((int32_t)((int32_t)123)))) { goto IL_0035; } } { Il2CppChar L_6 = V_2; if ((((int32_t)L_6) > ((int32_t)((int32_t)123)))) { goto IL_0033; } } { IL2CPP_RUNTIME_CLASS_INIT(RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9_il2cpp_TypeInfo_var); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_7 = ((RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9_StaticFields*)il2cpp_codegen_static_fields_for(RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9_il2cpp_TypeInfo_var))->get__category_19(); Il2CppChar L_8 = V_2; NullCheck(L_7); Il2CppChar L_9 = L_8; uint8_t L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9)); return (bool)((((int32_t)((((int32_t)L_10) < ((int32_t)5))? 1 : 0)) == ((int32_t)0))? 1 : 0); } IL_0033: { return (bool)0; } IL_0035: { int32_t L_11 = V_1; V_3 = L_11; } IL_0037: { int32_t L_12 = V_0; int32_t L_13 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_12, (int32_t)1)); V_0 = L_13; if ((((int32_t)L_13) <= ((int32_t)0))) { goto IL_0055; } } { int32_t L_14 = V_3; int32_t L_15 = ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)1)); V_3 = L_15; Il2CppChar L_16; L_16 = RegexParser_CharAt_mEA865F2B6DC4EF1B81F8D80ABF989F395BEC0B84(__this, L_15, /*hidden argument*/NULL); Il2CppChar L_17 = L_16; V_2 = L_17; if ((((int32_t)L_17) < ((int32_t)((int32_t)48)))) { goto IL_0055; } } { Il2CppChar L_18 = V_2; if ((((int32_t)L_18) <= ((int32_t)((int32_t)57)))) { goto IL_0037; } } IL_0055: { int32_t L_19 = V_0; if (!L_19) { goto IL_005e; } } { int32_t L_20 = V_3; int32_t L_21 = V_1; if ((!(((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_20, (int32_t)L_21))) == ((uint32_t)1)))) { goto IL_0060; } } IL_005e: { return (bool)0; } IL_0060: { Il2CppChar L_22 = V_2; if ((!(((uint32_t)L_22) == ((uint32_t)((int32_t)125))))) { goto IL_0067; } } { return (bool)1; } IL_0067: { Il2CppChar L_23 = V_2; if ((((int32_t)L_23) == ((int32_t)((int32_t)44)))) { goto IL_006e; } } { return (bool)0; } IL_006e: { int32_t L_24 = V_0; int32_t L_25 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_24, (int32_t)1)); V_0 = L_25; if ((((int32_t)L_25) <= ((int32_t)0))) { goto IL_008c; } } { int32_t L_26 = V_3; int32_t L_27 = ((int32_t)il2cpp_codegen_add((int32_t)L_26, (int32_t)1)); V_3 = L_27; Il2CppChar L_28; L_28 = RegexParser_CharAt_mEA865F2B6DC4EF1B81F8D80ABF989F395BEC0B84(__this, L_27, /*hidden argument*/NULL); Il2CppChar L_29 = L_28; V_2 = L_29; if ((((int32_t)L_29) < ((int32_t)((int32_t)48)))) { goto IL_008c; } } { Il2CppChar L_30 = V_2; if ((((int32_t)L_30) <= ((int32_t)((int32_t)57)))) { goto IL_006e; } } IL_008c: { int32_t L_31 = V_0; if ((((int32_t)L_31) <= ((int32_t)0))) { goto IL_0096; } } { Il2CppChar L_32 = V_2; return (bool)((((int32_t)L_32) == ((int32_t)((int32_t)125)))? 1 : 0); } IL_0096: { return (bool)0; } } // System.Boolean System.Text.RegularExpressions.RegexParser::IsSpace(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexParser_IsSpace_mF6BB83CAF2202A271697570EEC5E636847B8EA35 (Il2CppChar ___ch0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Il2CppChar L_0 = ___ch0; if ((((int32_t)L_0) > ((int32_t)((int32_t)32)))) { goto IL_0010; } } { IL2CPP_RUNTIME_CLASS_INIT(RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9_il2cpp_TypeInfo_var); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_1 = ((RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9_StaticFields*)il2cpp_codegen_static_fields_for(RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9_il2cpp_TypeInfo_var))->get__category_19(); Il2CppChar L_2 = ___ch0; NullCheck(L_1); Il2CppChar L_3 = L_2; uint8_t L_4 = (L_1)->GetAt(static_cast<il2cpp_array_size_t>(L_3)); return (bool)((((int32_t)L_4) == ((int32_t)2))? 1 : 0); } IL_0010: { return (bool)0; } } // System.Void System.Text.RegularExpressions.RegexParser::AddConcatenate(System.Int32,System.Int32,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_AddConcatenate_m308E5EB5C42CF795225A0FDBACCF647B57BE425B (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, int32_t ___pos0, int32_t ___cch1, bool ___isReplacement2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringBuilder_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * V_0 = NULL; String_t* V_1 = NULL; StringBuilder_t * V_2 = NULL; int32_t V_3 = 0; Il2CppChar V_4 = 0x0; { int32_t L_0 = ___cch1; if (L_0) { goto IL_0004; } } { return; } IL_0004: { int32_t L_1 = ___cch1; if ((((int32_t)L_1) <= ((int32_t)1))) { goto IL_006f; } } { String_t* L_2 = __this->get__pattern_5(); int32_t L_3 = ___pos0; int32_t L_4 = ___cch1; NullCheck(L_2); String_t* L_5; L_5 = String_Substring_m7A39A2AC0893AE940CF4CEC841326D56FFB9D86B(L_2, L_3, L_4, /*hidden argument*/NULL); V_1 = L_5; bool L_6; L_6 = RegexParser_UseOptionI_m46AAF2DBCC08EE8F3E8ECA1A5E37160C4E5C7B04(__this, /*hidden argument*/NULL); if (!L_6) { goto IL_005e; } } { bool L_7 = ___isReplacement2; if (L_7) { goto IL_005e; } } { String_t* L_8 = V_1; NullCheck(L_8); int32_t L_9; L_9 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_8, /*hidden argument*/NULL); StringBuilder_t * L_10 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var); StringBuilder__ctor_mEDFFE2D378A15F6DAB54D52661C84C1B52E7BA2E(L_10, L_9, /*hidden argument*/NULL); V_2 = L_10; V_3 = 0; goto IL_004e; } IL_0031: { StringBuilder_t * L_11 = V_2; String_t* L_12 = V_1; int32_t L_13 = V_3; NullCheck(L_12); Il2CppChar L_14; L_14 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_12, L_13, /*hidden argument*/NULL); CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_15 = __this->get__culture_7(); IL2CPP_RUNTIME_CLASS_INIT(Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_il2cpp_TypeInfo_var); Il2CppChar L_16; L_16 = Char_ToLower_m42C052EB06C3F461C8CEBAD492E102EB721FDECE(L_14, L_15, /*hidden argument*/NULL); NullCheck(L_11); StringBuilder_t * L_17; L_17 = StringBuilder_Append_m1ADA3C16E40BF253BCDB5F9579B4DBA9C3E5B22E(L_11, L_16, /*hidden argument*/NULL); int32_t L_18 = V_3; V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1)); } IL_004e: { int32_t L_19 = V_3; String_t* L_20 = V_1; NullCheck(L_20); int32_t L_21; L_21 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_20, /*hidden argument*/NULL); if ((((int32_t)L_19) < ((int32_t)L_21))) { goto IL_0031; } } { StringBuilder_t * L_22 = V_2; NullCheck(L_22); String_t* L_23; L_23 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_22); V_1 = L_23; } IL_005e: { int32_t L_24 = __this->get__options_16(); String_t* L_25 = V_1; RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_26 = (RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 *)il2cpp_codegen_object_new(RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43_il2cpp_TypeInfo_var); RegexNode__ctor_m5A3AA31155A359CC8462AF0AB55DE0D5B7C435B4(L_26, ((int32_t)12), L_24, L_25, /*hidden argument*/NULL); V_0 = L_26; goto IL_00a7; } IL_006f: { String_t* L_27 = __this->get__pattern_5(); int32_t L_28 = ___pos0; NullCheck(L_27); Il2CppChar L_29; L_29 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_27, L_28, /*hidden argument*/NULL); V_4 = L_29; bool L_30; L_30 = RegexParser_UseOptionI_m46AAF2DBCC08EE8F3E8ECA1A5E37160C4E5C7B04(__this, /*hidden argument*/NULL); if (!L_30) { goto IL_0097; } } { bool L_31 = ___isReplacement2; if (L_31) { goto IL_0097; } } { Il2CppChar L_32 = V_4; CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_33 = __this->get__culture_7(); IL2CPP_RUNTIME_CLASS_INIT(Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_il2cpp_TypeInfo_var); Il2CppChar L_34; L_34 = Char_ToLower_m42C052EB06C3F461C8CEBAD492E102EB721FDECE(L_32, L_33, /*hidden argument*/NULL); V_4 = L_34; } IL_0097: { int32_t L_35 = __this->get__options_16(); Il2CppChar L_36 = V_4; RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_37 = (RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 *)il2cpp_codegen_object_new(RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43_il2cpp_TypeInfo_var); RegexNode__ctor_m2E85CE2AB0812A86EE61448DEACBA68E329D3325(L_37, ((int32_t)9), L_35, L_36, /*hidden argument*/NULL); V_0 = L_37; } IL_00a7: { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_38 = __this->get__concatenation_3(); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_39 = V_0; NullCheck(L_38); RegexNode_AddChild_mD5F9848916D55A0DF36CE5460D149E1024005C85(L_38, L_39, /*hidden argument*/NULL); return; } } // System.Void System.Text.RegularExpressions.RegexParser::PushGroup() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_PushGroup_m30EE1A2FFE88FBA12DB8B4D929F6122D8001EAF9 (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, const RuntimeMethod* method) { { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_0 = __this->get__group_1(); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_1 = __this->get__stack_0(); NullCheck(L_0); L_0->set__next_7(L_1); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_2 = __this->get__alternation_2(); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_3 = __this->get__group_1(); NullCheck(L_2); L_2->set__next_7(L_3); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_4 = __this->get__concatenation_3(); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_5 = __this->get__alternation_2(); NullCheck(L_4); L_4->set__next_7(L_5); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_6 = __this->get__concatenation_3(); __this->set__stack_0(L_6); return; } } // System.Void System.Text.RegularExpressions.RegexParser::PopGroup() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_PopGroup_m461057BFDD1D1CFD70CF3DFE70693E429FCF0FA9 (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, const RuntimeMethod* method) { { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_0 = __this->get__stack_0(); __this->set__concatenation_3(L_0); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_1 = __this->get__concatenation_3(); NullCheck(L_1); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_2 = L_1->get__next_7(); __this->set__alternation_2(L_2); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_3 = __this->get__alternation_2(); NullCheck(L_3); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_4 = L_3->get__next_7(); __this->set__group_1(L_4); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_5 = __this->get__group_1(); NullCheck(L_5); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_6 = L_5->get__next_7(); __this->set__stack_0(L_6); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_7 = __this->get__group_1(); NullCheck(L_7); int32_t L_8; L_8 = RegexNode_Type_m3C72321B307C77AF12F294F366D57D2C77832F27_inline(L_7, /*hidden argument*/NULL); if ((!(((uint32_t)L_8) == ((uint32_t)((int32_t)34))))) { goto IL_008c; } } { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_9 = __this->get__group_1(); NullCheck(L_9); int32_t L_10; L_10 = RegexNode_ChildCount_m15D92C9740BA92B2E78B392F7215B8D7D0242172(L_9, /*hidden argument*/NULL); if (L_10) { goto IL_008c; } } { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_11 = __this->get__unit_4(); if (L_11) { goto IL_0074; } } { String_t* L_12; L_12 = SR_GetString_m9DC7F3962EEB239017A1A4C443F52047B5BC7462(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC668438A41E16934CBA83B80E3101B8222C11AEC)), /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_13; L_13 = RegexParser_MakeException_mA573DC3F94B98F328A9B87673A2CF8A15120DEB1(__this, L_12, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexParser_PopGroup_m461057BFDD1D1CFD70CF3DFE70693E429FCF0FA9_RuntimeMethod_var))); } IL_0074: { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_14 = __this->get__group_1(); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_15 = __this->get__unit_4(); NullCheck(L_14); RegexNode_AddChild_mD5F9848916D55A0DF36CE5460D149E1024005C85(L_14, L_15, /*hidden argument*/NULL); __this->set__unit_4((RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 *)NULL); } IL_008c: { return; } } // System.Boolean System.Text.RegularExpressions.RegexParser::EmptyStack() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexParser_EmptyStack_mCDC440C4B29CD14F4A0D9D6E3BE105869F246E2E (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, const RuntimeMethod* method) { { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_0 = __this->get__stack_0(); return (bool)((((RuntimeObject*)(RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 *)L_0) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0); } } // System.Void System.Text.RegularExpressions.RegexParser::StartGroup(System.Text.RegularExpressions.RegexNode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_StartGroup_m715D16765A3808F41A0DDFB46AE99F7982BA9E87 (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * ___openGroup0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_0 = ___openGroup0; __this->set__group_1(L_0); int32_t L_1 = __this->get__options_16(); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_2 = (RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 *)il2cpp_codegen_object_new(RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43_il2cpp_TypeInfo_var); RegexNode__ctor_mD8966EDCD7AA48AC8AAD5B156C513671843F6D49(L_2, ((int32_t)24), L_1, /*hidden argument*/NULL); __this->set__alternation_2(L_2); int32_t L_3 = __this->get__options_16(); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_4 = (RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 *)il2cpp_codegen_object_new(RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43_il2cpp_TypeInfo_var); RegexNode__ctor_mD8966EDCD7AA48AC8AAD5B156C513671843F6D49(L_4, ((int32_t)25), L_3, /*hidden argument*/NULL); __this->set__concatenation_3(L_4); return; } } // System.Void System.Text.RegularExpressions.RegexParser::AddAlternate() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_AddAlternate_m2C8BA28D8A58FB9CA6FE75F9D5875BF748305AB0 (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_0 = __this->get__group_1(); NullCheck(L_0); int32_t L_1; L_1 = RegexNode_Type_m3C72321B307C77AF12F294F366D57D2C77832F27_inline(L_0, /*hidden argument*/NULL); if ((((int32_t)L_1) == ((int32_t)((int32_t)34)))) { goto IL_001e; } } { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_2 = __this->get__group_1(); NullCheck(L_2); int32_t L_3; L_3 = RegexNode_Type_m3C72321B307C77AF12F294F366D57D2C77832F27_inline(L_2, /*hidden argument*/NULL); if ((!(((uint32_t)L_3) == ((uint32_t)((int32_t)33))))) { goto IL_0036; } } IL_001e: { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_4 = __this->get__group_1(); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_5 = __this->get__concatenation_3(); NullCheck(L_5); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_6; L_6 = RegexNode_ReverseLeft_m8507E98BFA6C9F78200B8297811C3EE815724A19(L_5, /*hidden argument*/NULL); NullCheck(L_4); RegexNode_AddChild_mD5F9848916D55A0DF36CE5460D149E1024005C85(L_4, L_6, /*hidden argument*/NULL); goto IL_004c; } IL_0036: { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_7 = __this->get__alternation_2(); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_8 = __this->get__concatenation_3(); NullCheck(L_8); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_9; L_9 = RegexNode_ReverseLeft_m8507E98BFA6C9F78200B8297811C3EE815724A19(L_8, /*hidden argument*/NULL); NullCheck(L_7); RegexNode_AddChild_mD5F9848916D55A0DF36CE5460D149E1024005C85(L_7, L_9, /*hidden argument*/NULL); } IL_004c: { int32_t L_10 = __this->get__options_16(); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_11 = (RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 *)il2cpp_codegen_object_new(RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43_il2cpp_TypeInfo_var); RegexNode__ctor_mD8966EDCD7AA48AC8AAD5B156C513671843F6D49(L_11, ((int32_t)25), L_10, /*hidden argument*/NULL); __this->set__concatenation_3(L_11); return; } } // System.Void System.Text.RegularExpressions.RegexParser::AddConcatenate() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_AddConcatenate_m1B223D215058DA19724BD379C2BC0557EA24B48A (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, const RuntimeMethod* method) { { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_0 = __this->get__concatenation_3(); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_1 = __this->get__unit_4(); NullCheck(L_0); RegexNode_AddChild_mD5F9848916D55A0DF36CE5460D149E1024005C85(L_0, L_1, /*hidden argument*/NULL); __this->set__unit_4((RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 *)NULL); return; } } // System.Void System.Text.RegularExpressions.RegexParser::AddConcatenate(System.Boolean,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_AddConcatenate_m47774C08F0EF3E4B83BD52C777019D63BE718AE6 (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, bool ___lazy0, int32_t ___min1, int32_t ___max2, const RuntimeMethod* method) { { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_0 = __this->get__concatenation_3(); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_1 = __this->get__unit_4(); bool L_2 = ___lazy0; int32_t L_3 = ___min1; int32_t L_4 = ___max2; NullCheck(L_1); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_5; L_5 = RegexNode_MakeQuantifier_mB84818E8D93FEB4AE45E224C09EE46BE238ECD20(L_1, L_2, L_3, L_4, /*hidden argument*/NULL); NullCheck(L_0); RegexNode_AddChild_mD5F9848916D55A0DF36CE5460D149E1024005C85(L_0, L_5, /*hidden argument*/NULL); __this->set__unit_4((RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 *)NULL); return; } } // System.Text.RegularExpressions.RegexNode System.Text.RegularExpressions.RegexParser::Unit() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * RegexParser_Unit_m88B751E79E4DE41D295805439EE6D1D5B7170D7F (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, const RuntimeMethod* method) { { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_0 = __this->get__unit_4(); return L_0; } } // System.Void System.Text.RegularExpressions.RegexParser::AddUnitOne(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_AddUnitOne_mDEC722E078B3E61126F56718AF7FED159C616CDC (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, Il2CppChar ___ch0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { bool L_0; L_0 = RegexParser_UseOptionI_m46AAF2DBCC08EE8F3E8ECA1A5E37160C4E5C7B04(__this, /*hidden argument*/NULL); if (!L_0) { goto IL_0016; } } { Il2CppChar L_1 = ___ch0; CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_2 = __this->get__culture_7(); IL2CPP_RUNTIME_CLASS_INIT(Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_il2cpp_TypeInfo_var); Il2CppChar L_3; L_3 = Char_ToLower_m42C052EB06C3F461C8CEBAD492E102EB721FDECE(L_1, L_2, /*hidden argument*/NULL); ___ch0 = L_3; } IL_0016: { int32_t L_4 = __this->get__options_16(); Il2CppChar L_5 = ___ch0; RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_6 = (RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 *)il2cpp_codegen_object_new(RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43_il2cpp_TypeInfo_var); RegexNode__ctor_m2E85CE2AB0812A86EE61448DEACBA68E329D3325(L_6, ((int32_t)9), L_4, L_5, /*hidden argument*/NULL); __this->set__unit_4(L_6); return; } } // System.Void System.Text.RegularExpressions.RegexParser::AddUnitNotone(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_AddUnitNotone_m14CA5BBABCE627507923A6BE373BEC032167801F (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, Il2CppChar ___ch0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { bool L_0; L_0 = RegexParser_UseOptionI_m46AAF2DBCC08EE8F3E8ECA1A5E37160C4E5C7B04(__this, /*hidden argument*/NULL); if (!L_0) { goto IL_0016; } } { Il2CppChar L_1 = ___ch0; CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_2 = __this->get__culture_7(); IL2CPP_RUNTIME_CLASS_INIT(Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_il2cpp_TypeInfo_var); Il2CppChar L_3; L_3 = Char_ToLower_m42C052EB06C3F461C8CEBAD492E102EB721FDECE(L_1, L_2, /*hidden argument*/NULL); ___ch0 = L_3; } IL_0016: { int32_t L_4 = __this->get__options_16(); Il2CppChar L_5 = ___ch0; RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_6 = (RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 *)il2cpp_codegen_object_new(RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43_il2cpp_TypeInfo_var); RegexNode__ctor_m2E85CE2AB0812A86EE61448DEACBA68E329D3325(L_6, ((int32_t)10), L_4, L_5, /*hidden argument*/NULL); __this->set__unit_4(L_6); return; } } // System.Void System.Text.RegularExpressions.RegexParser::AddUnitSet(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_AddUnitSet_mF7CEA4892737145E04E8ECD6DCD3B2A8F809C58B (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, String_t* ___cc0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = __this->get__options_16(); String_t* L_1 = ___cc0; RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_2 = (RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 *)il2cpp_codegen_object_new(RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43_il2cpp_TypeInfo_var); RegexNode__ctor_m5A3AA31155A359CC8462AF0AB55DE0D5B7C435B4(L_2, ((int32_t)11), L_0, L_1, /*hidden argument*/NULL); __this->set__unit_4(L_2); return; } } // System.Void System.Text.RegularExpressions.RegexParser::AddUnitNode(System.Text.RegularExpressions.RegexNode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_AddUnitNode_m84299A7BCF95B87B5B4672759DE2D8D863FA80E2 (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * ___node0, const RuntimeMethod* method) { { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_0 = ___node0; __this->set__unit_4(L_0); return; } } // System.Void System.Text.RegularExpressions.RegexParser::AddUnitType(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_AddUnitType_m39738056CFFB37E7036AF626829033D6052E6FD8 (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, int32_t ___type0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___type0; int32_t L_1 = __this->get__options_16(); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_2 = (RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 *)il2cpp_codegen_object_new(RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43_il2cpp_TypeInfo_var); RegexNode__ctor_mD8966EDCD7AA48AC8AAD5B156C513671843F6D49(L_2, L_0, L_1, /*hidden argument*/NULL); __this->set__unit_4(L_2); return; } } // System.Void System.Text.RegularExpressions.RegexParser::AddGroup() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_AddGroup_m3771097F1B4F1F6AA10104D28B663026F7B7326F (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, const RuntimeMethod* method) { { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_0 = __this->get__group_1(); NullCheck(L_0); int32_t L_1; L_1 = RegexNode_Type_m3C72321B307C77AF12F294F366D57D2C77832F27_inline(L_0, /*hidden argument*/NULL); if ((((int32_t)L_1) == ((int32_t)((int32_t)34)))) { goto IL_001e; } } { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_2 = __this->get__group_1(); NullCheck(L_2); int32_t L_3; L_3 = RegexNode_Type_m3C72321B307C77AF12F294F366D57D2C77832F27_inline(L_2, /*hidden argument*/NULL); if ((!(((uint32_t)L_3) == ((uint32_t)((int32_t)33))))) { goto IL_0070; } } IL_001e: { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_4 = __this->get__group_1(); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_5 = __this->get__concatenation_3(); NullCheck(L_5); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_6; L_6 = RegexNode_ReverseLeft_m8507E98BFA6C9F78200B8297811C3EE815724A19(L_5, /*hidden argument*/NULL); NullCheck(L_4); RegexNode_AddChild_mD5F9848916D55A0DF36CE5460D149E1024005C85(L_4, L_6, /*hidden argument*/NULL); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_7 = __this->get__group_1(); NullCheck(L_7); int32_t L_8; L_8 = RegexNode_Type_m3C72321B307C77AF12F294F366D57D2C77832F27_inline(L_7, /*hidden argument*/NULL); if ((!(((uint32_t)L_8) == ((uint32_t)((int32_t)33))))) { goto IL_0051; } } { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_9 = __this->get__group_1(); NullCheck(L_9); int32_t L_10; L_10 = RegexNode_ChildCount_m15D92C9740BA92B2E78B392F7215B8D7D0242172(L_9, /*hidden argument*/NULL); if ((((int32_t)L_10) > ((int32_t)2))) { goto IL_005f; } } IL_0051: { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_11 = __this->get__group_1(); NullCheck(L_11); int32_t L_12; L_12 = RegexNode_ChildCount_m15D92C9740BA92B2E78B392F7215B8D7D0242172(L_11, /*hidden argument*/NULL); if ((((int32_t)L_12) <= ((int32_t)3))) { goto IL_0097; } } IL_005f: { String_t* L_13; L_13 = SR_GetString_m9DC7F3962EEB239017A1A4C443F52047B5BC7462(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE33035121EF6BAC3BBD73C519FBB6B270CE5657E)), /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_14; L_14 = RegexParser_MakeException_mA573DC3F94B98F328A9B87673A2CF8A15120DEB1(__this, L_13, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_14, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexParser_AddGroup_m3771097F1B4F1F6AA10104D28B663026F7B7326F_RuntimeMethod_var))); } IL_0070: { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_15 = __this->get__alternation_2(); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_16 = __this->get__concatenation_3(); NullCheck(L_16); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_17; L_17 = RegexNode_ReverseLeft_m8507E98BFA6C9F78200B8297811C3EE815724A19(L_16, /*hidden argument*/NULL); NullCheck(L_15); RegexNode_AddChild_mD5F9848916D55A0DF36CE5460D149E1024005C85(L_15, L_17, /*hidden argument*/NULL); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_18 = __this->get__group_1(); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_19 = __this->get__alternation_2(); NullCheck(L_18); RegexNode_AddChild_mD5F9848916D55A0DF36CE5460D149E1024005C85(L_18, L_19, /*hidden argument*/NULL); } IL_0097: { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_20 = __this->get__group_1(); __this->set__unit_4(L_20); return; } } // System.Void System.Text.RegularExpressions.RegexParser::PushOptions() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_PushOptions_mC0047ADAB396BC1643AA63B2C395F09FCBE726BC (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_mF7FC7C7286BC3C19F30D3FD4A66A95AB6B76F07F_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { List_1_tE931333A40AB4E57F72E00F9F23D19057C78120A * L_0 = __this->get__optionsStack_17(); int32_t L_1 = __this->get__options_16(); NullCheck(L_0); List_1_Add_mF7FC7C7286BC3C19F30D3FD4A66A95AB6B76F07F(L_0, L_1, /*hidden argument*/List_1_Add_mF7FC7C7286BC3C19F30D3FD4A66A95AB6B76F07F_RuntimeMethod_var); return; } } // System.Void System.Text.RegularExpressions.RegexParser::PopOptions() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_PopOptions_m186A6537DA0481481E59C5BED015B577508271C7 (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_RemoveAt_m10FDE4D0C7CDBFFF730684256A23CB1914CE1FD8_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m6027426A21F931ED65BF307176B790FC2065A648_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m16F3838446C7314D39D8C98C916CD5B211886327_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { List_1_tE931333A40AB4E57F72E00F9F23D19057C78120A * L_0 = __this->get__optionsStack_17(); List_1_tE931333A40AB4E57F72E00F9F23D19057C78120A * L_1 = __this->get__optionsStack_17(); NullCheck(L_1); int32_t L_2; L_2 = List_1_get_Count_m6027426A21F931ED65BF307176B790FC2065A648_inline(L_1, /*hidden argument*/List_1_get_Count_m6027426A21F931ED65BF307176B790FC2065A648_RuntimeMethod_var); NullCheck(L_0); int32_t L_3; L_3 = List_1_get_Item_m16F3838446C7314D39D8C98C916CD5B211886327_inline(L_0, ((int32_t)il2cpp_codegen_subtract((int32_t)L_2, (int32_t)1)), /*hidden argument*/List_1_get_Item_m16F3838446C7314D39D8C98C916CD5B211886327_RuntimeMethod_var); __this->set__options_16(L_3); List_1_tE931333A40AB4E57F72E00F9F23D19057C78120A * L_4 = __this->get__optionsStack_17(); List_1_tE931333A40AB4E57F72E00F9F23D19057C78120A * L_5 = __this->get__optionsStack_17(); NullCheck(L_5); int32_t L_6; L_6 = List_1_get_Count_m6027426A21F931ED65BF307176B790FC2065A648_inline(L_5, /*hidden argument*/List_1_get_Count_m6027426A21F931ED65BF307176B790FC2065A648_RuntimeMethod_var); NullCheck(L_4); List_1_RemoveAt_m10FDE4D0C7CDBFFF730684256A23CB1914CE1FD8(L_4, ((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)1)), /*hidden argument*/List_1_RemoveAt_m10FDE4D0C7CDBFFF730684256A23CB1914CE1FD8_RuntimeMethod_var); return; } } // System.Boolean System.Text.RegularExpressions.RegexParser::EmptyOptionsStack() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexParser_EmptyOptionsStack_m9B5B4501C296662175648E458F9EAAADEE3A2B44 (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m6027426A21F931ED65BF307176B790FC2065A648_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { List_1_tE931333A40AB4E57F72E00F9F23D19057C78120A * L_0 = __this->get__optionsStack_17(); NullCheck(L_0); int32_t L_1; L_1 = List_1_get_Count_m6027426A21F931ED65BF307176B790FC2065A648_inline(L_0, /*hidden argument*/List_1_get_Count_m6027426A21F931ED65BF307176B790FC2065A648_RuntimeMethod_var); return (bool)((((int32_t)L_1) == ((int32_t)0))? 1 : 0); } } // System.Void System.Text.RegularExpressions.RegexParser::PopKeepOptions() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_PopKeepOptions_mBCC70CBFDC2A6DD07FE090D4E546B6AEA5644500 (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_RemoveAt_m10FDE4D0C7CDBFFF730684256A23CB1914CE1FD8_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m6027426A21F931ED65BF307176B790FC2065A648_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { List_1_tE931333A40AB4E57F72E00F9F23D19057C78120A * L_0 = __this->get__optionsStack_17(); List_1_tE931333A40AB4E57F72E00F9F23D19057C78120A * L_1 = __this->get__optionsStack_17(); NullCheck(L_1); int32_t L_2; L_2 = List_1_get_Count_m6027426A21F931ED65BF307176B790FC2065A648_inline(L_1, /*hidden argument*/List_1_get_Count_m6027426A21F931ED65BF307176B790FC2065A648_RuntimeMethod_var); NullCheck(L_0); List_1_RemoveAt_m10FDE4D0C7CDBFFF730684256A23CB1914CE1FD8(L_0, ((int32_t)il2cpp_codegen_subtract((int32_t)L_2, (int32_t)1)), /*hidden argument*/List_1_RemoveAt_m10FDE4D0C7CDBFFF730684256A23CB1914CE1FD8_RuntimeMethod_var); return; } } // System.ArgumentException System.Text.RegularExpressions.RegexParser::MakeException(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * RegexParser_MakeException_mA573DC3F94B98F328A9B87673A2CF8A15120DEB1 (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, String_t* ___message0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD3E190B5EC5D5C32F6121F694010F47769FCBDD1); s_Il2CppMethodInitialized = true; } { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_0 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var, (uint32_t)2); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_1 = L_0; String_t* L_2 = __this->get__pattern_5(); NullCheck(L_1); ArrayElementTypeCheck (L_1, L_2); (L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_2); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_3 = L_1; String_t* L_4 = ___message0; NullCheck(L_3); ArrayElementTypeCheck (L_3, L_4); (L_3)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_4); String_t* L_5; L_5 = SR_GetString_m4FFAF18248A54C5B67E4760C5ED4869A87BCAD7F(_stringLiteralD3E190B5EC5D5C32F6121F694010F47769FCBDD1, L_3, /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_6 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_6, L_5, /*hidden argument*/NULL); return L_6; } } // System.Int32 System.Text.RegularExpressions.RegexParser::Textpos() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexParser_Textpos_m5A18C75CE7F3A5AE17373DA09A20070D988308C5 (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get__currentPos_6(); return L_0; } } // System.Void System.Text.RegularExpressions.RegexParser::Textto(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_Textto_mE4BCC8608BF006D283A32F9C5811264467EEB806 (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, int32_t ___pos0, const RuntimeMethod* method) { { int32_t L_0 = ___pos0; __this->set__currentPos_6(L_0); return; } } // System.Char System.Text.RegularExpressions.RegexParser::MoveRightGetChar() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar RegexParser_MoveRightGetChar_mE98852DD0B33AE818B01A7CC7A9C301C2226F81C (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; { String_t* L_0 = __this->get__pattern_5(); int32_t L_1 = __this->get__currentPos_6(); V_0 = L_1; int32_t L_2 = V_0; __this->set__currentPos_6(((int32_t)il2cpp_codegen_add((int32_t)L_2, (int32_t)1))); int32_t L_3 = V_0; NullCheck(L_0); Il2CppChar L_4; L_4 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_0, L_3, /*hidden argument*/NULL); return L_4; } } // System.Void System.Text.RegularExpressions.RegexParser::MoveRight() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_MoveRight_mE4C6D41AFE3F585C0B8E7CD0AF3CF4DBA8791AB4 (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, const RuntimeMethod* method) { { RegexParser_MoveRight_m905DCF65EF6BA6736100751DE932753BC99B8D68(__this, 1, /*hidden argument*/NULL); return; } } // System.Void System.Text.RegularExpressions.RegexParser::MoveRight(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_MoveRight_m905DCF65EF6BA6736100751DE932753BC99B8D68 (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, int32_t ___i0, const RuntimeMethod* method) { { int32_t L_0 = __this->get__currentPos_6(); int32_t L_1 = ___i0; __this->set__currentPos_6(((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)L_1))); return; } } // System.Void System.Text.RegularExpressions.RegexParser::MoveLeft() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser_MoveLeft_mBE0128B08B61C1306954528C799F2F1F1B803391 (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get__currentPos_6(); __this->set__currentPos_6(((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)1))); return; } } // System.Char System.Text.RegularExpressions.RegexParser::CharAt(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar RegexParser_CharAt_mEA865F2B6DC4EF1B81F8D80ABF989F395BEC0B84 (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, int32_t ___i0, const RuntimeMethod* method) { { String_t* L_0 = __this->get__pattern_5(); int32_t L_1 = ___i0; NullCheck(L_0); Il2CppChar L_2; L_2 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_0, L_1, /*hidden argument*/NULL); return L_2; } } // System.Char System.Text.RegularExpressions.RegexParser::RightChar() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar RegexParser_RightChar_mA977C61B98B8BB88C2A66AEBBFDA6826C58ED66A (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get__pattern_5(); int32_t L_1 = __this->get__currentPos_6(); NullCheck(L_0); Il2CppChar L_2; L_2 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_0, L_1, /*hidden argument*/NULL); return L_2; } } // System.Char System.Text.RegularExpressions.RegexParser::RightChar(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar RegexParser_RightChar_mE6728D67C4F9FE227ECD6BED46FFC94518EAD9B4 (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, int32_t ___i0, const RuntimeMethod* method) { { String_t* L_0 = __this->get__pattern_5(); int32_t L_1 = __this->get__currentPos_6(); int32_t L_2 = ___i0; NullCheck(L_0); Il2CppChar L_3; L_3 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_0, ((int32_t)il2cpp_codegen_add((int32_t)L_1, (int32_t)L_2)), /*hidden argument*/NULL); return L_3; } } // System.Int32 System.Text.RegularExpressions.RegexParser::CharsRight() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexParser_CharsRight_m808A213FCB975D42C6E6270E7A0FAEB1E496B07A (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get__pattern_5(); NullCheck(L_0); int32_t L_1; L_1 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_0, /*hidden argument*/NULL); int32_t L_2 = __this->get__currentPos_6(); return ((int32_t)il2cpp_codegen_subtract((int32_t)L_1, (int32_t)L_2)); } } // System.Void System.Text.RegularExpressions.RegexParser::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexParser__cctor_mD780E57BC0A6084DDDF020CB0AEADFCF1552B20F (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_t1267FAF6E08D720F26ABF676554E6948A7F6A2D0____CCEEADA43268372341F81AE0C9208C6856441C04_2_FieldInfo_var); s_Il2CppMethodInitialized = true; } { ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_0 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)SZArrayNew(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var, (uint32_t)((int32_t)128)); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_1 = L_0; RuntimeFieldHandle_t7BE65FC857501059EBAC9772C93B02CD413D9C96 L_2 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t1267FAF6E08D720F26ABF676554E6948A7F6A2D0____CCEEADA43268372341F81AE0C9208C6856441C04_2_FieldInfo_var) }; RuntimeHelpers_InitializeArray_mE27238308FED781F2D6A719F0903F2E1311B058F((RuntimeArray *)(RuntimeArray *)L_1, L_2, /*hidden argument*/NULL); ((RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9_StaticFields*)il2cpp_codegen_static_fields_for(RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9_il2cpp_TypeInfo_var))->set__category_19(L_1); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Text.RegularExpressions.RegexPrefix::.ctor(System.String,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexPrefix__ctor_mC34F48A63A8A04942930B9FE236636E2AA745B24 (RegexPrefix_t1563C82A76799B0B018F5EBD6EC068158BE50301 * __this, String_t* ___prefix0, bool ___ci1, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); String_t* L_0 = ___prefix0; __this->set__prefix_0(L_0); bool L_1 = ___ci1; __this->set__caseInsensitive_1(L_1); return; } } // System.String System.Text.RegularExpressions.RegexPrefix::get_Prefix() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* RegexPrefix_get_Prefix_m6806C1EEE5B8973606B320A9C4CD5A9E91466F34 (RegexPrefix_t1563C82A76799B0B018F5EBD6EC068158BE50301 * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get__prefix_0(); return L_0; } } // System.Boolean System.Text.RegularExpressions.RegexPrefix::get_CaseInsensitive() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexPrefix_get_CaseInsensitive_mB4CF8FBFABE26F206AF6324A0C87DFB34C051A95 (RegexPrefix_t1563C82A76799B0B018F5EBD6EC068158BE50301 * __this, const RuntimeMethod* method) { { bool L_0 = __this->get__caseInsensitive_1(); return L_0; } } // System.Text.RegularExpressions.RegexPrefix System.Text.RegularExpressions.RegexPrefix::get_Empty() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegexPrefix_t1563C82A76799B0B018F5EBD6EC068158BE50301 * RegexPrefix_get_Empty_m65C2AD019C414B97A57D5AA5B4B0DC331E011A8C (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexPrefix_t1563C82A76799B0B018F5EBD6EC068158BE50301_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(RegexPrefix_t1563C82A76799B0B018F5EBD6EC068158BE50301_il2cpp_TypeInfo_var); RegexPrefix_t1563C82A76799B0B018F5EBD6EC068158BE50301 * L_0 = ((RegexPrefix_t1563C82A76799B0B018F5EBD6EC068158BE50301_StaticFields*)il2cpp_codegen_static_fields_for(RegexPrefix_t1563C82A76799B0B018F5EBD6EC068158BE50301_il2cpp_TypeInfo_var))->get__empty_2(); return L_0; } } // System.Void System.Text.RegularExpressions.RegexPrefix::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexPrefix__cctor_mF047A4BFAFE90562128AD10E6D2F382079965F68 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexPrefix_t1563C82A76799B0B018F5EBD6EC068158BE50301_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); RegexPrefix_t1563C82A76799B0B018F5EBD6EC068158BE50301 * L_1 = (RegexPrefix_t1563C82A76799B0B018F5EBD6EC068158BE50301 *)il2cpp_codegen_object_new(RegexPrefix_t1563C82A76799B0B018F5EBD6EC068158BE50301_il2cpp_TypeInfo_var); RegexPrefix__ctor_mC34F48A63A8A04942930B9FE236636E2AA745B24(L_1, L_0, (bool)0, /*hidden argument*/NULL); ((RegexPrefix_t1563C82A76799B0B018F5EBD6EC068158BE50301_StaticFields*)il2cpp_codegen_static_fields_for(RegexPrefix_t1563C82A76799B0B018F5EBD6EC068158BE50301_il2cpp_TypeInfo_var))->set__empty_2(L_1); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.Text.RegularExpressions.RegexRunner::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexRunner__ctor_m6925516B4C16AC95CFAAFCCDB5CFEAD505B7920B (RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 * __this, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); return; } } // System.Text.RegularExpressions.Match System.Text.RegularExpressions.RegexRunner::Scan(System.Text.RegularExpressions.Regex,System.String,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean,System.TimeSpan) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Match_t8CC0A47F766954F17AD4D1C1597754C8F576464B * RegexRunner_Scan_m2ADEF871B8873041D1224B4FE362BD4A943AC536 (RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 * __this, Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F * ___regex0, String_t* ___text1, int32_t ___textbeg2, int32_t ___textend3, int32_t ___textstart4, int32_t ___prevlen5, bool ___quick6, TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___timeout7, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Match_t8CC0A47F766954F17AD4D1C1597754C8F576464B_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; bool V_2 = false; TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 V_3; memset((&V_3), 0, sizeof(V_3)); RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 * G_B2_0 = NULL; RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 * G_B1_0 = NULL; int32_t G_B3_0 = 0; RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 * G_B3_1 = NULL; int32_t G_B6_0 = 0; int32_t G_B9_0 = 0; { V_2 = (bool)0; TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 L_0 = ___timeout7; IL2CPP_RUNTIME_CLASS_INIT(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F_il2cpp_TypeInfo_var); Regex_ValidateMatchTimeout_m4C1557E40D27540F8F9E8CDA35473D94F7B1B2F2(L_0, /*hidden argument*/NULL); TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 L_1 = ((Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F_StaticFields*)il2cpp_codegen_static_fields_for(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F_il2cpp_TypeInfo_var))->get_InfiniteMatchTimeout_4(); TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 L_2 = ___timeout7; IL2CPP_RUNTIME_CLASS_INIT(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_il2cpp_TypeInfo_var); bool L_3; L_3 = TimeSpan_op_Equality_m8229F4B63064E2D43B244C6E82D55CB2B0360BB1(L_1, L_2, /*hidden argument*/NULL); __this->set_ignoreTimeout_15(L_3); bool L_4 = __this->get_ignoreTimeout_15(); G_B1_0 = __this; if (L_4) { G_B2_0 = __this; goto IL_0038; } } { double L_5; L_5 = TimeSpan_get_TotalMilliseconds_m97368AE0609D865EB2A6BAE96AAA97AF8BDBF1C5((TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 *)(&___timeout7), /*hidden argument*/NULL); G_B3_0 = ((int32_t)((int32_t)((double)il2cpp_codegen_add((double)L_5, (double)(0.5))))); G_B3_1 = G_B1_0; goto IL_0046; } IL_0038: { IL2CPP_RUNTIME_CLASS_INIT(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F_il2cpp_TypeInfo_var); TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 L_6 = ((Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F_StaticFields*)il2cpp_codegen_static_fields_for(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F_il2cpp_TypeInfo_var))->get_InfiniteMatchTimeout_4(); V_3 = L_6; double L_7; L_7 = TimeSpan_get_TotalMilliseconds_m97368AE0609D865EB2A6BAE96AAA97AF8BDBF1C5((TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 *)(&V_3), /*hidden argument*/NULL); G_B3_0 = ((int32_t)((int32_t)L_7)); G_B3_1 = G_B2_0; } IL_0046: { NullCheck(G_B3_1); G_B3_1->set_timeout_14(G_B3_0); Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F * L_8 = ___regex0; __this->set_runregex_13(L_8); String_t* L_9 = ___text1; __this->set_runtext_3(L_9); int32_t L_10 = ___textbeg2; __this->set_runtextbeg_0(L_10); int32_t L_11 = ___textend3; __this->set_runtextend_1(L_11); int32_t L_12 = ___textstart4; __this->set_runtextstart_2(L_12); Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F * L_13 = __this->get_runregex_13(); NullCheck(L_13); bool L_14; L_14 = Regex_get_RightToLeft_m14807D1228A43D322B2F7E4D82613ADE0C2DCA77(L_13, /*hidden argument*/NULL); if (L_14) { goto IL_0080; } } { G_B6_0 = 1; goto IL_0081; } IL_0080: { G_B6_0 = (-1); } IL_0081: { V_0 = G_B6_0; Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F * L_15 = __this->get_runregex_13(); NullCheck(L_15); bool L_16; L_16 = Regex_get_RightToLeft_m14807D1228A43D322B2F7E4D82613ADE0C2DCA77(L_15, /*hidden argument*/NULL); if (L_16) { goto IL_0097; } } { int32_t L_17 = __this->get_runtextend_1(); G_B9_0 = L_17; goto IL_009d; } IL_0097: { int32_t L_18 = __this->get_runtextbeg_0(); G_B9_0 = L_18; } IL_009d: { V_1 = G_B9_0; int32_t L_19 = ___textstart4; __this->set_runtextpos_4(L_19); int32_t L_20 = ___prevlen5; if (L_20) { goto IL_00c7; } } { int32_t L_21 = __this->get_runtextpos_4(); int32_t L_22 = V_1; if ((!(((uint32_t)L_21) == ((uint32_t)L_22)))) { goto IL_00b9; } } { IL2CPP_RUNTIME_CLASS_INIT(Match_t8CC0A47F766954F17AD4D1C1597754C8F576464B_il2cpp_TypeInfo_var); Match_t8CC0A47F766954F17AD4D1C1597754C8F576464B * L_23; L_23 = Match_get_Empty_mE05C90C7D155060839CC7D0C2EA04F8302EDFFC9_inline(/*hidden argument*/NULL); return L_23; } IL_00b9: { int32_t L_24 = __this->get_runtextpos_4(); int32_t L_25 = V_0; __this->set_runtextpos_4(((int32_t)il2cpp_codegen_add((int32_t)L_24, (int32_t)L_25))); } IL_00c7: { RegexRunner_StartTimeoutWatch_m22AE778FF5C52047138151B3A61B118DC6E9B685(__this, /*hidden argument*/NULL); } IL_00cd: { bool L_26; L_26 = VirtFuncInvoker0< bool >::Invoke(5 /* System.Boolean System.Text.RegularExpressions.RegexRunner::FindFirstChar() */, __this); if (!L_26) { goto IL_012f; } } { RegexRunner_CheckTimeout_mBE5718B5085C46A4B1B9498DE83B7C4D22E4C27C(__this, /*hidden argument*/NULL); bool L_27 = V_2; if (L_27) { goto IL_00e6; } } { RegexRunner_InitMatch_mAB83B2D2F56A1E5438AA6AF68F175F4E0DFE6346(__this, /*hidden argument*/NULL); V_2 = (bool)1; } IL_00e6: { VirtActionInvoker0::Invoke(4 /* System.Void System.Text.RegularExpressions.RegexRunner::Go() */, __this); Match_t8CC0A47F766954F17AD4D1C1597754C8F576464B * L_28 = __this->get_runmatch_12(); NullCheck(L_28); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_29 = L_28->get__matchcount_14(); NullCheck(L_29); int32_t L_30 = 0; int32_t L_31 = (L_29)->GetAt(static_cast<il2cpp_array_size_t>(L_30)); if ((((int32_t)L_31) <= ((int32_t)0))) { goto IL_0105; } } { bool L_32 = ___quick6; Match_t8CC0A47F766954F17AD4D1C1597754C8F576464B * L_33; L_33 = RegexRunner_TidyMatch_mC554804E829E5C96600A9FF3C0855FD1A48FE4FA(__this, L_32, /*hidden argument*/NULL); return L_33; } IL_0105: { Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_34 = __this->get_runtrack_5(); NullCheck(L_34); __this->set_runtrackpos_6(((int32_t)((int32_t)(((RuntimeArray*)L_34)->max_length)))); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_35 = __this->get_runstack_7(); NullCheck(L_35); __this->set_runstackpos_8(((int32_t)((int32_t)(((RuntimeArray*)L_35)->max_length)))); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_36 = __this->get_runcrawl_9(); NullCheck(L_36); __this->set_runcrawlpos_10(((int32_t)((int32_t)(((RuntimeArray*)L_36)->max_length)))); } IL_012f: { int32_t L_37 = __this->get_runtextpos_4(); int32_t L_38 = V_1; if ((!(((uint32_t)L_37) == ((uint32_t)L_38)))) { goto IL_0146; } } { Match_t8CC0A47F766954F17AD4D1C1597754C8F576464B * L_39; L_39 = RegexRunner_TidyMatch_mC554804E829E5C96600A9FF3C0855FD1A48FE4FA(__this, (bool)1, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Match_t8CC0A47F766954F17AD4D1C1597754C8F576464B_il2cpp_TypeInfo_var); Match_t8CC0A47F766954F17AD4D1C1597754C8F576464B * L_40; L_40 = Match_get_Empty_mE05C90C7D155060839CC7D0C2EA04F8302EDFFC9_inline(/*hidden argument*/NULL); return L_40; } IL_0146: { int32_t L_41 = __this->get_runtextpos_4(); int32_t L_42 = V_0; __this->set_runtextpos_4(((int32_t)il2cpp_codegen_add((int32_t)L_41, (int32_t)L_42))); goto IL_00cd; } } // System.Void System.Text.RegularExpressions.RegexRunner::StartTimeoutWatch() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexRunner_StartTimeoutWatch_m22AE778FF5C52047138151B3A61B118DC6E9B685 (RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 * __this, const RuntimeMethod* method) { { bool L_0 = __this->get_ignoreTimeout_15(); if (!L_0) { goto IL_0009; } } { return; } IL_0009: { __this->set_timeoutChecksToSkip_17(((int32_t)1000)); int32_t L_1; L_1 = Environment_get_TickCount_mBA4279B1C0BC197BF2121166E7C1F6A46D2B5D4E(/*hidden argument*/NULL); int32_t L_2 = __this->get_timeout_14(); __this->set_timeoutOccursAt_16(((int32_t)il2cpp_codegen_add((int32_t)L_1, (int32_t)L_2))); return; } } // System.Void System.Text.RegularExpressions.RegexRunner::CheckTimeout() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexRunner_CheckTimeout_mBE5718B5085C46A4B1B9498DE83B7C4D22E4C27C (RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; { bool L_0 = __this->get_ignoreTimeout_15(); if (!L_0) { goto IL_0009; } } { return; } IL_0009: { int32_t L_1 = __this->get_timeoutChecksToSkip_17(); V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_1, (int32_t)1)); int32_t L_2 = V_0; __this->set_timeoutChecksToSkip_17(L_2); int32_t L_3 = V_0; if (!L_3) { goto IL_001d; } } { return; } IL_001d: { __this->set_timeoutChecksToSkip_17(((int32_t)1000)); RegexRunner_DoCheckTimeout_mFA5F588F7FA54123CFDFF4C26562E05DADFB675F(__this, /*hidden argument*/NULL); return; } } // System.Void System.Text.RegularExpressions.RegexRunner::DoCheckTimeout() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexRunner_DoCheckTimeout_mFA5F588F7FA54123CFDFF4C26562E05DADFB675F (RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; { int32_t L_0; L_0 = Environment_get_TickCount_mBA4279B1C0BC197BF2121166E7C1F6A46D2B5D4E(/*hidden argument*/NULL); V_0 = L_0; int32_t L_1 = V_0; int32_t L_2 = __this->get_timeoutOccursAt_16(); if ((((int32_t)L_1) >= ((int32_t)L_2))) { goto IL_0010; } } { return; } IL_0010: { int32_t L_3 = __this->get_timeoutOccursAt_16(); if ((((int32_t)0) <= ((int32_t)L_3))) { goto IL_001e; } } { int32_t L_4 = V_0; if ((((int32_t)0) >= ((int32_t)L_4))) { goto IL_001e; } } { return; } IL_001e: { String_t* L_5 = __this->get_runtext_3(); Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F * L_6 = __this->get_runregex_13(); NullCheck(L_6); String_t* L_7 = L_6->get_pattern_0(); int32_t L_8 = __this->get_timeout_14(); IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_il2cpp_TypeInfo_var))); TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 L_9; L_9 = TimeSpan_FromMilliseconds_m12D90542B044C450FDFBCEA1CBC32369479483EC(((double)((double)L_8)), /*hidden argument*/NULL); RegexMatchTimeoutException_t8A80CA43E67CFD00C11CD0B4D65E08171577AB81 * L_10 = (RegexMatchTimeoutException_t8A80CA43E67CFD00C11CD0B4D65E08171577AB81 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexMatchTimeoutException_t8A80CA43E67CFD00C11CD0B4D65E08171577AB81_il2cpp_TypeInfo_var))); RegexMatchTimeoutException__ctor_m157F8CEF5FDAC71E58B04773B3169BA093423866(L_10, L_5, L_7, L_9, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexRunner_DoCheckTimeout_mFA5F588F7FA54123CFDFF4C26562E05DADFB675F_RuntimeMethod_var))); } } // System.Void System.Text.RegularExpressions.RegexRunner::InitMatch() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexRunner_InitMatch_mAB83B2D2F56A1E5438AA6AF68F175F4E0DFE6346 (RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MatchSparse_tF4A7983ADA82DB12269F4D384E7C2D15F0D32694_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Match_t8CC0A47F766954F17AD4D1C1597754C8F576464B_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; { Match_t8CC0A47F766954F17AD4D1C1597754C8F576464B * L_0 = __this->get_runmatch_12(); if (L_0) { goto IL_009d; } } { Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F * L_1 = __this->get_runregex_13(); NullCheck(L_1); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_2 = L_1->get_caps_8(); if (!L_2) { goto IL_0060; } } { Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F * L_3 = __this->get_runregex_13(); Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F * L_4 = __this->get_runregex_13(); NullCheck(L_4); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_5 = L_4->get_caps_8(); Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F * L_6 = __this->get_runregex_13(); NullCheck(L_6); int32_t L_7 = L_6->get_capsize_11(); String_t* L_8 = __this->get_runtext_3(); int32_t L_9 = __this->get_runtextbeg_0(); int32_t L_10 = __this->get_runtextend_1(); int32_t L_11 = __this->get_runtextbeg_0(); int32_t L_12 = __this->get_runtextstart_2(); MatchSparse_tF4A7983ADA82DB12269F4D384E7C2D15F0D32694 * L_13 = (MatchSparse_tF4A7983ADA82DB12269F4D384E7C2D15F0D32694 *)il2cpp_codegen_object_new(MatchSparse_tF4A7983ADA82DB12269F4D384E7C2D15F0D32694_il2cpp_TypeInfo_var); MatchSparse__ctor_mA6CA132A5DA7D9ADED1D0FF1D7AD786109D33624(L_13, L_3, L_5, L_7, L_8, L_9, ((int32_t)il2cpp_codegen_subtract((int32_t)L_10, (int32_t)L_11)), L_12, /*hidden argument*/NULL); __this->set_runmatch_12(L_13); goto IL_00c6; } IL_0060: { Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F * L_14 = __this->get_runregex_13(); Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F * L_15 = __this->get_runregex_13(); NullCheck(L_15); int32_t L_16 = L_15->get_capsize_11(); String_t* L_17 = __this->get_runtext_3(); int32_t L_18 = __this->get_runtextbeg_0(); int32_t L_19 = __this->get_runtextend_1(); int32_t L_20 = __this->get_runtextbeg_0(); int32_t L_21 = __this->get_runtextstart_2(); Match_t8CC0A47F766954F17AD4D1C1597754C8F576464B * L_22 = (Match_t8CC0A47F766954F17AD4D1C1597754C8F576464B *)il2cpp_codegen_object_new(Match_t8CC0A47F766954F17AD4D1C1597754C8F576464B_il2cpp_TypeInfo_var); Match__ctor_mB01F9576125C09E5DFAD425523FF0C0FF16000A5(L_22, L_14, L_16, L_17, L_18, ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)L_20)), L_21, /*hidden argument*/NULL); __this->set_runmatch_12(L_22); goto IL_00c6; } IL_009d: { Match_t8CC0A47F766954F17AD4D1C1597754C8F576464B * L_23 = __this->get_runmatch_12(); Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F * L_24 = __this->get_runregex_13(); String_t* L_25 = __this->get_runtext_3(); int32_t L_26 = __this->get_runtextbeg_0(); int32_t L_27 = __this->get_runtextend_1(); int32_t L_28 = __this->get_runtextstart_2(); NullCheck(L_23); VirtActionInvoker5< Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F *, String_t*, int32_t, int32_t, int32_t >::Invoke(4 /* System.Void System.Text.RegularExpressions.Match::Reset(System.Text.RegularExpressions.Regex,System.String,System.Int32,System.Int32,System.Int32) */, L_23, L_24, L_25, L_26, L_27, L_28); } IL_00c6: { Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_29 = __this->get_runcrawl_9(); if (!L_29) { goto IL_00f9; } } { Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_30 = __this->get_runtrack_5(); NullCheck(L_30); __this->set_runtrackpos_6(((int32_t)((int32_t)(((RuntimeArray*)L_30)->max_length)))); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_31 = __this->get_runstack_7(); NullCheck(L_31); __this->set_runstackpos_8(((int32_t)((int32_t)(((RuntimeArray*)L_31)->max_length)))); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_32 = __this->get_runcrawl_9(); NullCheck(L_32); __this->set_runcrawlpos_10(((int32_t)((int32_t)(((RuntimeArray*)L_32)->max_length)))); return; } IL_00f9: { VirtActionInvoker0::Invoke(6 /* System.Void System.Text.RegularExpressions.RegexRunner::InitTrackCount() */, __this); int32_t L_33 = __this->get_runtrackcount_11(); V_0 = ((int32_t)il2cpp_codegen_multiply((int32_t)L_33, (int32_t)8)); int32_t L_34 = __this->get_runtrackcount_11(); V_1 = ((int32_t)il2cpp_codegen_multiply((int32_t)L_34, (int32_t)8)); int32_t L_35 = V_0; if ((((int32_t)L_35) >= ((int32_t)((int32_t)32)))) { goto IL_0119; } } { V_0 = ((int32_t)32); } IL_0119: { int32_t L_36 = V_1; if ((((int32_t)L_36) >= ((int32_t)((int32_t)16)))) { goto IL_0121; } } { V_1 = ((int32_t)16); } IL_0121: { int32_t L_37 = V_0; Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_38 = (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)SZArrayNew(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32_il2cpp_TypeInfo_var, (uint32_t)L_37); __this->set_runtrack_5(L_38); int32_t L_39 = V_0; __this->set_runtrackpos_6(L_39); int32_t L_40 = V_1; Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_41 = (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)SZArrayNew(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32_il2cpp_TypeInfo_var, (uint32_t)L_40); __this->set_runstack_7(L_41); int32_t L_42 = V_1; __this->set_runstackpos_8(L_42); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_43 = (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)SZArrayNew(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32_il2cpp_TypeInfo_var, (uint32_t)((int32_t)32)); __this->set_runcrawl_9(L_43); __this->set_runcrawlpos_10(((int32_t)32)); return; } } // System.Text.RegularExpressions.Match System.Text.RegularExpressions.RegexRunner::TidyMatch(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Match_t8CC0A47F766954F17AD4D1C1597754C8F576464B * RegexRunner_TidyMatch_mC554804E829E5C96600A9FF3C0855FD1A48FE4FA (RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 * __this, bool ___quick0, const RuntimeMethod* method) { { bool L_0 = ___quick0; if (L_0) { goto IL_001d; } } { Match_t8CC0A47F766954F17AD4D1C1597754C8F576464B * L_1 = __this->get_runmatch_12(); __this->set_runmatch_12((Match_t8CC0A47F766954F17AD4D1C1597754C8F576464B *)NULL); Match_t8CC0A47F766954F17AD4D1C1597754C8F576464B * L_2 = L_1; int32_t L_3 = __this->get_runtextpos_4(); NullCheck(L_2); VirtActionInvoker1< int32_t >::Invoke(11 /* System.Void System.Text.RegularExpressions.Match::Tidy(System.Int32) */, L_2, L_3); return L_2; } IL_001d: { return (Match_t8CC0A47F766954F17AD4D1C1597754C8F576464B *)NULL; } } // System.Void System.Text.RegularExpressions.RegexRunner::EnsureStorage() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexRunner_EnsureStorage_mA28C2C957E9C94A1EB89424D837A87114E38325E (RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_runstackpos_8(); int32_t L_1 = __this->get_runtrackcount_11(); if ((((int32_t)L_0) >= ((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_1, (int32_t)4))))) { goto IL_0016; } } { RegexRunner_DoubleStack_m6D5CD187C3C40D33AD36764202D810D3C354CB4B(__this, /*hidden argument*/NULL); } IL_0016: { int32_t L_2 = __this->get_runtrackpos_6(); int32_t L_3 = __this->get_runtrackcount_11(); if ((((int32_t)L_2) >= ((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_3, (int32_t)4))))) { goto IL_002c; } } { RegexRunner_DoubleTrack_m4C316CA544695119D1DC025CD7C7E2E754F23A62(__this, /*hidden argument*/NULL); } IL_002c: { return; } } // System.Boolean System.Text.RegularExpressions.RegexRunner::IsBoundary(System.Int32,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexRunner_IsBoundary_mBC555EC9574974908A1B0CEA3D1853D54BD10D62 (RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 * __this, int32_t ___index0, int32_t ___startpos1, int32_t ___endpos2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t G_B3_0 = 0; int32_t G_B5_0 = 0; int32_t G_B4_0 = 0; int32_t G_B6_0 = 0; int32_t G_B6_1 = 0; { int32_t L_0 = ___index0; int32_t L_1 = ___startpos1; if ((((int32_t)L_0) <= ((int32_t)L_1))) { goto IL_0019; } } { String_t* L_2 = __this->get_runtext_3(); int32_t L_3 = ___index0; NullCheck(L_2); Il2CppChar L_4; L_4 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_2, ((int32_t)il2cpp_codegen_subtract((int32_t)L_3, (int32_t)1)), /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5_il2cpp_TypeInfo_var); bool L_5; L_5 = RegexCharClass_IsWordChar_mE33E6C5569AA1B920849CD5555DF3CE9A9C10440(L_4, /*hidden argument*/NULL); G_B3_0 = ((int32_t)(L_5)); goto IL_001a; } IL_0019: { G_B3_0 = 0; } IL_001a: { int32_t L_6 = ___index0; int32_t L_7 = ___endpos2; G_B4_0 = G_B3_0; if ((((int32_t)L_6) >= ((int32_t)L_7))) { G_B5_0 = G_B3_0; goto IL_0031; } } { String_t* L_8 = __this->get_runtext_3(); int32_t L_9 = ___index0; NullCheck(L_8); Il2CppChar L_10; L_10 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_8, L_9, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5_il2cpp_TypeInfo_var); bool L_11; L_11 = RegexCharClass_IsWordChar_mE33E6C5569AA1B920849CD5555DF3CE9A9C10440(L_10, /*hidden argument*/NULL); G_B6_0 = ((int32_t)(L_11)); G_B6_1 = G_B4_0; goto IL_0032; } IL_0031: { G_B6_0 = 0; G_B6_1 = G_B5_0; } IL_0032: { return (bool)((((int32_t)((((int32_t)G_B6_1) == ((int32_t)G_B6_0))? 1 : 0)) == ((int32_t)0))? 1 : 0); } } // System.Boolean System.Text.RegularExpressions.RegexRunner::IsECMABoundary(System.Int32,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexRunner_IsECMABoundary_m151787CEE018DB6D42182AF4464485CDC4CEAFAB (RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 * __this, int32_t ___index0, int32_t ___startpos1, int32_t ___endpos2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t G_B3_0 = 0; int32_t G_B5_0 = 0; int32_t G_B4_0 = 0; int32_t G_B6_0 = 0; int32_t G_B6_1 = 0; { int32_t L_0 = ___index0; int32_t L_1 = ___startpos1; if ((((int32_t)L_0) <= ((int32_t)L_1))) { goto IL_0019; } } { String_t* L_2 = __this->get_runtext_3(); int32_t L_3 = ___index0; NullCheck(L_2); Il2CppChar L_4; L_4 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_2, ((int32_t)il2cpp_codegen_subtract((int32_t)L_3, (int32_t)1)), /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5_il2cpp_TypeInfo_var); bool L_5; L_5 = RegexCharClass_IsECMAWordChar_mA7325BA81D0699C24F5123956BD4927F1E3DE846(L_4, /*hidden argument*/NULL); G_B3_0 = ((int32_t)(L_5)); goto IL_001a; } IL_0019: { G_B3_0 = 0; } IL_001a: { int32_t L_6 = ___index0; int32_t L_7 = ___endpos2; G_B4_0 = G_B3_0; if ((((int32_t)L_6) >= ((int32_t)L_7))) { G_B5_0 = G_B3_0; goto IL_0031; } } { String_t* L_8 = __this->get_runtext_3(); int32_t L_9 = ___index0; NullCheck(L_8); Il2CppChar L_10; L_10 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_8, L_9, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5_il2cpp_TypeInfo_var); bool L_11; L_11 = RegexCharClass_IsECMAWordChar_mA7325BA81D0699C24F5123956BD4927F1E3DE846(L_10, /*hidden argument*/NULL); G_B6_0 = ((int32_t)(L_11)); G_B6_1 = G_B4_0; goto IL_0032; } IL_0031: { G_B6_0 = 0; G_B6_1 = G_B5_0; } IL_0032: { return (bool)((((int32_t)((((int32_t)G_B6_1) == ((int32_t)G_B6_0))? 1 : 0)) == ((int32_t)0))? 1 : 0); } } // System.Void System.Text.RegularExpressions.RegexRunner::DoubleTrack() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexRunner_DoubleTrack_m4C316CA544695119D1DC025CD7C7E2E754F23A62 (RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* V_0 = NULL; { Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_0 = __this->get_runtrack_5(); NullCheck(L_0); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_1 = (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)SZArrayNew(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_0)->max_length))), (int32_t)2))); V_0 = L_1; Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_2 = __this->get_runtrack_5(); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_3 = V_0; Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_4 = __this->get_runtrack_5(); NullCheck(L_4); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_5 = __this->get_runtrack_5(); NullCheck(L_5); Array_Copy_m3F127FFB5149532135043FFE285F9177C80CB877((RuntimeArray *)(RuntimeArray *)L_2, 0, (RuntimeArray *)(RuntimeArray *)L_3, ((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))), ((int32_t)((int32_t)(((RuntimeArray*)L_5)->max_length))), /*hidden argument*/NULL); int32_t L_6 = __this->get_runtrackpos_6(); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_7 = __this->get_runtrack_5(); NullCheck(L_7); __this->set_runtrackpos_6(((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_7)->max_length)))))); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_8 = V_0; __this->set_runtrack_5(L_8); return; } } // System.Void System.Text.RegularExpressions.RegexRunner::DoubleStack() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexRunner_DoubleStack_m6D5CD187C3C40D33AD36764202D810D3C354CB4B (RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* V_0 = NULL; { Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_0 = __this->get_runstack_7(); NullCheck(L_0); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_1 = (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)SZArrayNew(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_0)->max_length))), (int32_t)2))); V_0 = L_1; Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_2 = __this->get_runstack_7(); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_3 = V_0; Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_4 = __this->get_runstack_7(); NullCheck(L_4); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_5 = __this->get_runstack_7(); NullCheck(L_5); Array_Copy_m3F127FFB5149532135043FFE285F9177C80CB877((RuntimeArray *)(RuntimeArray *)L_2, 0, (RuntimeArray *)(RuntimeArray *)L_3, ((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))), ((int32_t)((int32_t)(((RuntimeArray*)L_5)->max_length))), /*hidden argument*/NULL); int32_t L_6 = __this->get_runstackpos_8(); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_7 = __this->get_runstack_7(); NullCheck(L_7); __this->set_runstackpos_8(((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_7)->max_length)))))); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_8 = V_0; __this->set_runstack_7(L_8); return; } } // System.Void System.Text.RegularExpressions.RegexRunner::DoubleCrawl() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexRunner_DoubleCrawl_m562BC4766311883EF65FC3BC69C7555EF5C6A3D0 (RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* V_0 = NULL; { Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_0 = __this->get_runcrawl_9(); NullCheck(L_0); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_1 = (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)SZArrayNew(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_0)->max_length))), (int32_t)2))); V_0 = L_1; Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_2 = __this->get_runcrawl_9(); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_3 = V_0; Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_4 = __this->get_runcrawl_9(); NullCheck(L_4); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_5 = __this->get_runcrawl_9(); NullCheck(L_5); Array_Copy_m3F127FFB5149532135043FFE285F9177C80CB877((RuntimeArray *)(RuntimeArray *)L_2, 0, (RuntimeArray *)(RuntimeArray *)L_3, ((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))), ((int32_t)((int32_t)(((RuntimeArray*)L_5)->max_length))), /*hidden argument*/NULL); int32_t L_6 = __this->get_runcrawlpos_10(); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_7 = __this->get_runcrawl_9(); NullCheck(L_7); __this->set_runcrawlpos_10(((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_7)->max_length)))))); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_8 = V_0; __this->set_runcrawl_9(L_8); return; } } // System.Void System.Text.RegularExpressions.RegexRunner::Crawl(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexRunner_Crawl_mC989F917E324EBE03B0DBECC42531C9ADBF0C742 (RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 * __this, int32_t ___i0, const RuntimeMethod* method) { int32_t V_0 = 0; { int32_t L_0 = __this->get_runcrawlpos_10(); if (L_0) { goto IL_000e; } } { RegexRunner_DoubleCrawl_m562BC4766311883EF65FC3BC69C7555EF5C6A3D0(__this, /*hidden argument*/NULL); } IL_000e: { Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_1 = __this->get_runcrawl_9(); int32_t L_2 = __this->get_runcrawlpos_10(); V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_2, (int32_t)1)); int32_t L_3 = V_0; __this->set_runcrawlpos_10(L_3); int32_t L_4 = V_0; int32_t L_5 = ___i0; NullCheck(L_1); (L_1)->SetAt(static_cast<il2cpp_array_size_t>(L_4), (int32_t)L_5); return; } } // System.Int32 System.Text.RegularExpressions.RegexRunner::Popcrawl() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexRunner_Popcrawl_mE325EFA925EE9D80AF98FD04ACE7050A9D4F8C21 (RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; { Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_0 = __this->get_runcrawl_9(); int32_t L_1 = __this->get_runcrawlpos_10(); V_0 = L_1; int32_t L_2 = V_0; __this->set_runcrawlpos_10(((int32_t)il2cpp_codegen_add((int32_t)L_2, (int32_t)1))); int32_t L_3 = V_0; NullCheck(L_0); int32_t L_4 = L_3; int32_t L_5 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_4)); return L_5; } } // System.Int32 System.Text.RegularExpressions.RegexRunner::Crawlpos() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexRunner_Crawlpos_mBFE7A9D83990B8CF829D66CD088414F96A03B49F (RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 * __this, const RuntimeMethod* method) { { Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_0 = __this->get_runcrawl_9(); NullCheck(L_0); int32_t L_1 = __this->get_runcrawlpos_10(); return ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_0)->max_length))), (int32_t)L_1)); } } // System.Void System.Text.RegularExpressions.RegexRunner::Capture(System.Int32,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexRunner_Capture_mAC8B534A534941D5003730CA28B41F4082CF45C0 (RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 * __this, int32_t ___capnum0, int32_t ___start1, int32_t ___end2, const RuntimeMethod* method) { { int32_t L_0 = ___end2; int32_t L_1 = ___start1; if ((((int32_t)L_0) >= ((int32_t)L_1))) { goto IL_000a; } } { int32_t L_2 = ___end2; int32_t L_3 = ___start1; ___end2 = L_3; ___start1 = L_2; } IL_000a: { int32_t L_4 = ___capnum0; RegexRunner_Crawl_mC989F917E324EBE03B0DBECC42531C9ADBF0C742(__this, L_4, /*hidden argument*/NULL); Match_t8CC0A47F766954F17AD4D1C1597754C8F576464B * L_5 = __this->get_runmatch_12(); int32_t L_6 = ___capnum0; int32_t L_7 = ___start1; int32_t L_8 = ___end2; int32_t L_9 = ___start1; NullCheck(L_5); VirtActionInvoker3< int32_t, int32_t, int32_t >::Invoke(5 /* System.Void System.Text.RegularExpressions.Match::AddMatch(System.Int32,System.Int32,System.Int32) */, L_5, L_6, L_7, ((int32_t)il2cpp_codegen_subtract((int32_t)L_8, (int32_t)L_9))); return; } } // System.Void System.Text.RegularExpressions.RegexRunner::TransferCapture(System.Int32,System.Int32,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexRunner_TransferCapture_mBD3BA00B949753D1C0A142776C4EF3796DBC627B (RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 * __this, int32_t ___capnum0, int32_t ___uncapnum1, int32_t ___start2, int32_t ___end3, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; { int32_t L_0 = ___end3; int32_t L_1 = ___start2; if ((((int32_t)L_0) >= ((int32_t)L_1))) { goto IL_000c; } } { int32_t L_2 = ___end3; int32_t L_3 = ___start2; ___end3 = L_3; ___start2 = L_2; } IL_000c: { int32_t L_4 = ___uncapnum1; int32_t L_5; L_5 = RegexRunner_MatchIndex_m9FBD010C648C8BBD087FFF4C470FE82494A72ACB(__this, L_4, /*hidden argument*/NULL); V_0 = L_5; int32_t L_6 = V_0; int32_t L_7 = ___uncapnum1; int32_t L_8; L_8 = RegexRunner_MatchLength_mE1EFA365EAA84B7CDC515A4DEC99CF6D8581A1E8(__this, L_7, /*hidden argument*/NULL); V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)L_8)); int32_t L_9 = ___start2; int32_t L_10 = V_1; if ((((int32_t)L_9) < ((int32_t)L_10))) { goto IL_002a; } } { int32_t L_11 = ___start2; ___end3 = L_11; int32_t L_12 = V_1; ___start2 = L_12; goto IL_0043; } IL_002a: { int32_t L_13 = ___end3; int32_t L_14 = V_0; if ((((int32_t)L_13) > ((int32_t)L_14))) { goto IL_0034; } } { int32_t L_15 = V_0; ___start2 = L_15; goto IL_0043; } IL_0034: { int32_t L_16 = ___end3; int32_t L_17 = V_1; if ((((int32_t)L_16) <= ((int32_t)L_17))) { goto IL_003c; } } { int32_t L_18 = V_1; ___end3 = L_18; } IL_003c: { int32_t L_19 = V_0; int32_t L_20 = ___start2; if ((((int32_t)L_19) <= ((int32_t)L_20))) { goto IL_0043; } } { int32_t L_21 = V_0; ___start2 = L_21; } IL_0043: { int32_t L_22 = ___uncapnum1; RegexRunner_Crawl_mC989F917E324EBE03B0DBECC42531C9ADBF0C742(__this, L_22, /*hidden argument*/NULL); Match_t8CC0A47F766954F17AD4D1C1597754C8F576464B * L_23 = __this->get_runmatch_12(); int32_t L_24 = ___uncapnum1; NullCheck(L_23); VirtActionInvoker1< int32_t >::Invoke(6 /* System.Void System.Text.RegularExpressions.Match::BalanceMatch(System.Int32) */, L_23, L_24); int32_t L_25 = ___capnum0; if ((((int32_t)L_25) == ((int32_t)(-1)))) { goto IL_0072; } } { int32_t L_26 = ___capnum0; RegexRunner_Crawl_mC989F917E324EBE03B0DBECC42531C9ADBF0C742(__this, L_26, /*hidden argument*/NULL); Match_t8CC0A47F766954F17AD4D1C1597754C8F576464B * L_27 = __this->get_runmatch_12(); int32_t L_28 = ___capnum0; int32_t L_29 = ___start2; int32_t L_30 = ___end3; int32_t L_31 = ___start2; NullCheck(L_27); VirtActionInvoker3< int32_t, int32_t, int32_t >::Invoke(5 /* System.Void System.Text.RegularExpressions.Match::AddMatch(System.Int32,System.Int32,System.Int32) */, L_27, L_28, L_29, ((int32_t)il2cpp_codegen_subtract((int32_t)L_30, (int32_t)L_31))); } IL_0072: { return; } } // System.Void System.Text.RegularExpressions.RegexRunner::Uncapture() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexRunner_Uncapture_mAEA536C22A1DD0BCE123A04A4BCFD1A8BE8D1F7B (RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; { int32_t L_0; L_0 = RegexRunner_Popcrawl_mE325EFA925EE9D80AF98FD04ACE7050A9D4F8C21(__this, /*hidden argument*/NULL); V_0 = L_0; Match_t8CC0A47F766954F17AD4D1C1597754C8F576464B * L_1 = __this->get_runmatch_12(); int32_t L_2 = V_0; NullCheck(L_1); VirtActionInvoker1< int32_t >::Invoke(7 /* System.Void System.Text.RegularExpressions.Match::RemoveMatch(System.Int32) */, L_1, L_2); return; } } // System.Boolean System.Text.RegularExpressions.RegexRunner::IsMatched(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexRunner_IsMatched_mCC5330346DACE22EAA86DD072CD36752023C66E9 (RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 * __this, int32_t ___cap0, const RuntimeMethod* method) { { Match_t8CC0A47F766954F17AD4D1C1597754C8F576464B * L_0 = __this->get_runmatch_12(); int32_t L_1 = ___cap0; NullCheck(L_0); bool L_2; L_2 = VirtFuncInvoker1< bool, int32_t >::Invoke(8 /* System.Boolean System.Text.RegularExpressions.Match::IsMatched(System.Int32) */, L_0, L_1); return L_2; } } // System.Int32 System.Text.RegularExpressions.RegexRunner::MatchIndex(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexRunner_MatchIndex_m9FBD010C648C8BBD087FFF4C470FE82494A72ACB (RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 * __this, int32_t ___cap0, const RuntimeMethod* method) { { Match_t8CC0A47F766954F17AD4D1C1597754C8F576464B * L_0 = __this->get_runmatch_12(); int32_t L_1 = ___cap0; NullCheck(L_0); int32_t L_2; L_2 = VirtFuncInvoker1< int32_t, int32_t >::Invoke(9 /* System.Int32 System.Text.RegularExpressions.Match::MatchIndex(System.Int32) */, L_0, L_1); return L_2; } } // System.Int32 System.Text.RegularExpressions.RegexRunner::MatchLength(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexRunner_MatchLength_mE1EFA365EAA84B7CDC515A4DEC99CF6D8581A1E8 (RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 * __this, int32_t ___cap0, const RuntimeMethod* method) { { Match_t8CC0A47F766954F17AD4D1C1597754C8F576464B * L_0 = __this->get_runmatch_12(); int32_t L_1 = ___cap0; NullCheck(L_0); int32_t L_2; L_2 = VirtFuncInvoker1< int32_t, int32_t >::Invoke(10 /* System.Int32 System.Text.RegularExpressions.Match::MatchLength(System.Int32) */, L_0, L_1); return L_2; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #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.RegularExpressions.RegexTree::.ctor(System.Text.RegularExpressions.RegexNode,System.Collections.Hashtable,System.Int32[],System.Int32,System.Collections.Hashtable,System.String[],System.Text.RegularExpressions.RegexOptions) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexTree__ctor_m71E8231B91BF289104B933268B2CEF0AA02CF092 (RegexTree_t63A434601D42EC388D9B2DCA2913286CFC8811F3 * __this, RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * ___root0, Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * ___caps1, Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___capnumlist2, int32_t ___captop3, Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * ___capnames4, StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___capslist5, int32_t ___opts6, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_0 = ___root0; __this->set__root_0(L_0); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_1 = ___caps1; __this->set__caps_1(L_1); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_2 = ___capnumlist2; __this->set__capnumlist_2(L_2); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_3 = ___capnames4; __this->set__capnames_3(L_3); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_4 = ___capslist5; __this->set__capslist_4(L_4); int32_t L_5 = ___captop3; __this->set__captop_6(L_5); int32_t L_6 = ___opts6; __this->set__options_5(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 // System.Text.RegularExpressions.RegexCode System.Text.RegularExpressions.RegexWriter::Write(System.Text.RegularExpressions.RegexTree) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegexCode_tF1653432E8EEDED5AB9517D09CA84B5FAA3CC0D5 * RegexWriter_Write_mDA5FFD555A690E124077AE4141C24C13EF9105DF (RegexTree_t63A434601D42EC388D9B2DCA2913286CFC8811F3 * ___t0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexWriter_t958027B0548A09589F03657633037085BACFC7B5_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { RegexWriter_t958027B0548A09589F03657633037085BACFC7B5 * L_0 = (RegexWriter_t958027B0548A09589F03657633037085BACFC7B5 *)il2cpp_codegen_object_new(RegexWriter_t958027B0548A09589F03657633037085BACFC7B5_il2cpp_TypeInfo_var); RegexWriter__ctor_mC1384070ECBCB1A54E56F5460388E7C4CDC5856A(L_0, /*hidden argument*/NULL); RegexTree_t63A434601D42EC388D9B2DCA2913286CFC8811F3 * L_1 = ___t0; NullCheck(L_0); RegexCode_tF1653432E8EEDED5AB9517D09CA84B5FAA3CC0D5 * L_2; L_2 = RegexWriter_RegexCodeFromRegexTree_mB8946AD1D077152C85D0D32CDABC5FBE37C80A80(L_0, L_1, /*hidden argument*/NULL); return L_2; } } // System.Void System.Text.RegularExpressions.RegexWriter::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexWriter__ctor_mC1384070ECBCB1A54E56F5460388E7C4CDC5856A (RegexWriter_t958027B0548A09589F03657633037085BACFC7B5 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_mE1EA1831B6EF3BA9C2F807622B58DA3A0605B912_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_tC94E9875910491F8130C2DC8B11E4D1548A55162_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m30C52A4F2828D86CA3FAB0B1B583948F4DA9F1F9_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_0 = (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)SZArrayNew(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32_il2cpp_TypeInfo_var, (uint32_t)((int32_t)32)); __this->set__intStack_0(L_0); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_1 = (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)SZArrayNew(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32_il2cpp_TypeInfo_var, (uint32_t)((int32_t)32)); __this->set__emitted_2(L_1); Dictionary_2_tC94E9875910491F8130C2DC8B11E4D1548A55162 * L_2 = (Dictionary_2_tC94E9875910491F8130C2DC8B11E4D1548A55162 *)il2cpp_codegen_object_new(Dictionary_2_tC94E9875910491F8130C2DC8B11E4D1548A55162_il2cpp_TypeInfo_var); Dictionary_2__ctor_mE1EA1831B6EF3BA9C2F807622B58DA3A0605B912(L_2, /*hidden argument*/Dictionary_2__ctor_mE1EA1831B6EF3BA9C2F807622B58DA3A0605B912_RuntimeMethod_var); __this->set__stringhash_4(L_2); List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * L_3 = (List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 *)il2cpp_codegen_object_new(List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3_il2cpp_TypeInfo_var); List_1__ctor_m30C52A4F2828D86CA3FAB0B1B583948F4DA9F1F9(L_3, /*hidden argument*/List_1__ctor_m30C52A4F2828D86CA3FAB0B1B583948F4DA9F1F9_RuntimeMethod_var); __this->set__stringtable_5(L_3); return; } } // System.Void System.Text.RegularExpressions.RegexWriter::PushInt(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexWriter_PushInt_m82B0216AFF641DE9547BE17FA115C2CED44A840C (RegexWriter_t958027B0548A09589F03657633037085BACFC7B5 * __this, int32_t ___I0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* V_0 = NULL; int32_t V_1 = 0; { int32_t L_0 = __this->get__depth_1(); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_1 = __this->get__intStack_0(); NullCheck(L_1); if ((((int32_t)L_0) < ((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_1)->max_length)))))) { goto IL_0039; } } { int32_t L_2 = __this->get__depth_1(); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_3 = (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)SZArrayNew(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_2, (int32_t)2))); V_0 = L_3; Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_4 = __this->get__intStack_0(); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_5 = V_0; int32_t L_6 = __this->get__depth_1(); Array_Copy_m3F127FFB5149532135043FFE285F9177C80CB877((RuntimeArray *)(RuntimeArray *)L_4, 0, (RuntimeArray *)(RuntimeArray *)L_5, 0, L_6, /*hidden argument*/NULL); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_7 = V_0; __this->set__intStack_0(L_7); } IL_0039: { Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_8 = __this->get__intStack_0(); int32_t L_9 = __this->get__depth_1(); V_1 = L_9; int32_t L_10 = V_1; __this->set__depth_1(((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1))); int32_t L_11 = V_1; int32_t L_12 = ___I0; NullCheck(L_8); (L_8)->SetAt(static_cast<il2cpp_array_size_t>(L_11), (int32_t)L_12); return; } } // System.Boolean System.Text.RegularExpressions.RegexWriter::EmptyStack() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexWriter_EmptyStack_mE95F9FABB37AB87D28C240E3A9306BD6F188B00B (RegexWriter_t958027B0548A09589F03657633037085BACFC7B5 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get__depth_1(); return (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0); } } // System.Int32 System.Text.RegularExpressions.RegexWriter::PopInt() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexWriter_PopInt_mB767C9611DB654060F684D5E09231CAEFFDF7551 (RegexWriter_t958027B0548A09589F03657633037085BACFC7B5 * __this, const RuntimeMethod* method) { int32_t V_0 = 0; { Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_0 = __this->get__intStack_0(); int32_t L_1 = __this->get__depth_1(); V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_1, (int32_t)1)); int32_t L_2 = V_0; __this->set__depth_1(L_2); int32_t L_3 = V_0; NullCheck(L_0); int32_t L_4 = L_3; int32_t L_5 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_4)); return L_5; } } // System.Int32 System.Text.RegularExpressions.RegexWriter::CurPos() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexWriter_CurPos_m771D864668683B9DCF98150DBAEEBE17703C2E5D (RegexWriter_t958027B0548A09589F03657633037085BACFC7B5 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get__curpos_3(); return L_0; } } // System.Void System.Text.RegularExpressions.RegexWriter::PatchJump(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexWriter_PatchJump_m99AEA835C283697F20D7F9CC16E6371BF681B70B (RegexWriter_t958027B0548A09589F03657633037085BACFC7B5 * __this, int32_t ___Offset0, int32_t ___jumpDest1, const RuntimeMethod* method) { { Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_0 = __this->get__emitted_2(); int32_t L_1 = ___Offset0; int32_t L_2 = ___jumpDest1; NullCheck(L_0); (L_0)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_add((int32_t)L_1, (int32_t)1))), (int32_t)L_2); return; } } // System.Void System.Text.RegularExpressions.RegexWriter::Emit(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexWriter_Emit_m0F2DFD7C6ED8AB199B3E8845A02A09F295A00E54 (RegexWriter_t958027B0548A09589F03657633037085BACFC7B5 * __this, int32_t ___op0, const RuntimeMethod* method) { int32_t V_0 = 0; { bool L_0 = __this->get__counting_6(); if (!L_0) { goto IL_002d; } } { int32_t L_1 = __this->get__count_7(); __this->set__count_7(((int32_t)il2cpp_codegen_add((int32_t)L_1, (int32_t)1))); int32_t L_2 = ___op0; bool L_3; L_3 = RegexCode_OpcodeBacktracks_m2A8CE4121EF7827E575F17B2D0DB7C009B6DD9FB(L_2, /*hidden argument*/NULL); if (!L_3) { goto IL_002c; } } { int32_t L_4 = __this->get__trackcount_8(); __this->set__trackcount_8(((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1))); } IL_002c: { return; } IL_002d: { Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_5 = __this->get__emitted_2(); int32_t L_6 = __this->get__curpos_3(); V_0 = L_6; int32_t L_7 = V_0; __this->set__curpos_3(((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)1))); int32_t L_8 = V_0; int32_t L_9 = ___op0; NullCheck(L_5); (L_5)->SetAt(static_cast<il2cpp_array_size_t>(L_8), (int32_t)L_9); return; } } // System.Void System.Text.RegularExpressions.RegexWriter::Emit(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexWriter_Emit_mDCE0A2DF541B5FC6554C965A1C799ADCF6B4C55F (RegexWriter_t958027B0548A09589F03657633037085BACFC7B5 * __this, int32_t ___op0, int32_t ___opd11, const RuntimeMethod* method) { int32_t V_0 = 0; { bool L_0 = __this->get__counting_6(); if (!L_0) { goto IL_002d; } } { int32_t L_1 = __this->get__count_7(); __this->set__count_7(((int32_t)il2cpp_codegen_add((int32_t)L_1, (int32_t)2))); int32_t L_2 = ___op0; bool L_3; L_3 = RegexCode_OpcodeBacktracks_m2A8CE4121EF7827E575F17B2D0DB7C009B6DD9FB(L_2, /*hidden argument*/NULL); if (!L_3) { goto IL_002c; } } { int32_t L_4 = __this->get__trackcount_8(); __this->set__trackcount_8(((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1))); } IL_002c: { return; } IL_002d: { Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_5 = __this->get__emitted_2(); int32_t L_6 = __this->get__curpos_3(); V_0 = L_6; int32_t L_7 = V_0; __this->set__curpos_3(((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)1))); int32_t L_8 = V_0; int32_t L_9 = ___op0; NullCheck(L_5); (L_5)->SetAt(static_cast<il2cpp_array_size_t>(L_8), (int32_t)L_9); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_10 = __this->get__emitted_2(); int32_t L_11 = __this->get__curpos_3(); V_0 = L_11; int32_t L_12 = V_0; __this->set__curpos_3(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); int32_t L_13 = V_0; int32_t L_14 = ___opd11; NullCheck(L_10); (L_10)->SetAt(static_cast<il2cpp_array_size_t>(L_13), (int32_t)L_14); return; } } // System.Void System.Text.RegularExpressions.RegexWriter::Emit(System.Int32,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexWriter_Emit_m9360B7E84BA94A432C3C9AB5427A30D81E0B2739 (RegexWriter_t958027B0548A09589F03657633037085BACFC7B5 * __this, int32_t ___op0, int32_t ___opd11, int32_t ___opd22, const RuntimeMethod* method) { int32_t V_0 = 0; { bool L_0 = __this->get__counting_6(); if (!L_0) { goto IL_002d; } } { int32_t L_1 = __this->get__count_7(); __this->set__count_7(((int32_t)il2cpp_codegen_add((int32_t)L_1, (int32_t)3))); int32_t L_2 = ___op0; bool L_3; L_3 = RegexCode_OpcodeBacktracks_m2A8CE4121EF7827E575F17B2D0DB7C009B6DD9FB(L_2, /*hidden argument*/NULL); if (!L_3) { goto IL_002c; } } { int32_t L_4 = __this->get__trackcount_8(); __this->set__trackcount_8(((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1))); } IL_002c: { return; } IL_002d: { Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_5 = __this->get__emitted_2(); int32_t L_6 = __this->get__curpos_3(); V_0 = L_6; int32_t L_7 = V_0; __this->set__curpos_3(((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)1))); int32_t L_8 = V_0; int32_t L_9 = ___op0; NullCheck(L_5); (L_5)->SetAt(static_cast<il2cpp_array_size_t>(L_8), (int32_t)L_9); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_10 = __this->get__emitted_2(); int32_t L_11 = __this->get__curpos_3(); V_0 = L_11; int32_t L_12 = V_0; __this->set__curpos_3(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); int32_t L_13 = V_0; int32_t L_14 = ___opd11; NullCheck(L_10); (L_10)->SetAt(static_cast<il2cpp_array_size_t>(L_13), (int32_t)L_14); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_15 = __this->get__emitted_2(); int32_t L_16 = __this->get__curpos_3(); V_0 = L_16; int32_t L_17 = V_0; __this->set__curpos_3(((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1))); int32_t L_18 = V_0; int32_t L_19 = ___opd22; NullCheck(L_15); (L_15)->SetAt(static_cast<il2cpp_array_size_t>(L_18), (int32_t)L_19); return; } } // System.Int32 System.Text.RegularExpressions.RegexWriter::StringCode(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexWriter_StringCode_m10DB52A16488268DF01C52E8163E899FA568FBC9 (RegexWriter_t958027B0548A09589F03657633037085BACFC7B5 * __this, String_t* ___str0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_ContainsKey_m151DB8CAF2F65A4621317E77AC025849F03D8132_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_get_Item_m351227FE0D2D84F7E108FD47E0F0EA3D6D2D2A74_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_set_Item_mBC85AF861FB031847847F0B30707EC7AC252D572_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m627ED3F7C50096BB8934F778CB980E79483BD2AE_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m199DB87BCE947106FBA38E19FDFE80CB65B61144_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { bool L_0 = __this->get__counting_6(); if (!L_0) { goto IL_000a; } } { return 0; } IL_000a: { String_t* L_1 = ___str0; if (L_1) { goto IL_0014; } } { String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); ___str0 = L_2; } IL_0014: { Dictionary_2_tC94E9875910491F8130C2DC8B11E4D1548A55162 * L_3 = __this->get__stringhash_4(); String_t* L_4 = ___str0; NullCheck(L_3); bool L_5; L_5 = Dictionary_2_ContainsKey_m151DB8CAF2F65A4621317E77AC025849F03D8132(L_3, L_4, /*hidden argument*/Dictionary_2_ContainsKey_m151DB8CAF2F65A4621317E77AC025849F03D8132_RuntimeMethod_var); if (!L_5) { goto IL_0031; } } { Dictionary_2_tC94E9875910491F8130C2DC8B11E4D1548A55162 * L_6 = __this->get__stringhash_4(); String_t* L_7 = ___str0; NullCheck(L_6); int32_t L_8; L_8 = Dictionary_2_get_Item_m351227FE0D2D84F7E108FD47E0F0EA3D6D2D2A74(L_6, L_7, /*hidden argument*/Dictionary_2_get_Item_m351227FE0D2D84F7E108FD47E0F0EA3D6D2D2A74_RuntimeMethod_var); V_0 = L_8; goto IL_0056; } IL_0031: { List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * L_9 = __this->get__stringtable_5(); NullCheck(L_9); int32_t L_10; L_10 = List_1_get_Count_m199DB87BCE947106FBA38E19FDFE80CB65B61144_inline(L_9, /*hidden argument*/List_1_get_Count_m199DB87BCE947106FBA38E19FDFE80CB65B61144_RuntimeMethod_var); V_0 = L_10; Dictionary_2_tC94E9875910491F8130C2DC8B11E4D1548A55162 * L_11 = __this->get__stringhash_4(); String_t* L_12 = ___str0; int32_t L_13 = V_0; NullCheck(L_11); Dictionary_2_set_Item_mBC85AF861FB031847847F0B30707EC7AC252D572(L_11, L_12, L_13, /*hidden argument*/Dictionary_2_set_Item_mBC85AF861FB031847847F0B30707EC7AC252D572_RuntimeMethod_var); List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * L_14 = __this->get__stringtable_5(); String_t* L_15 = ___str0; NullCheck(L_14); List_1_Add_m627ED3F7C50096BB8934F778CB980E79483BD2AE(L_14, L_15, /*hidden argument*/List_1_Add_m627ED3F7C50096BB8934F778CB980E79483BD2AE_RuntimeMethod_var); } IL_0056: { int32_t L_16 = V_0; return L_16; } } // System.ArgumentException System.Text.RegularExpressions.RegexWriter::MakeException(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * RegexWriter_MakeException_mD2A13E8F5A67D36CAEE67D74C35A5D2B35111C26 (RegexWriter_t958027B0548A09589F03657633037085BACFC7B5 * __this, String_t* ___message0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { String_t* L_0 = ___message0; ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_1 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_1, L_0, /*hidden argument*/NULL); return L_1; } } // System.Int32 System.Text.RegularExpressions.RegexWriter::MapCapnum(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RegexWriter_MapCapnum_mEF8C8E6F9916122D0FAE18A7B560F65738D004E6 (RegexWriter_t958027B0548A09589F03657633037085BACFC7B5 * __this, int32_t ___capnum0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___capnum0; if ((!(((uint32_t)L_0) == ((uint32_t)(-1))))) { goto IL_0006; } } { return (-1); } IL_0006: { Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_1 = __this->get__caps_9(); if (!L_1) { goto IL_0025; } } { Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_2 = __this->get__caps_9(); int32_t L_3 = ___capnum0; int32_t L_4 = L_3; RuntimeObject * L_5 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_4); NullCheck(L_2); RuntimeObject * L_6; L_6 = VirtFuncInvoker1< RuntimeObject *, RuntimeObject * >::Invoke(20 /* System.Object System.Collections.Hashtable::get_Item(System.Object) */, L_2, L_5); return ((*(int32_t*)((int32_t*)UnBox(L_6, Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var)))); } IL_0025: { int32_t L_7 = ___capnum0; return L_7; } } // System.Text.RegularExpressions.RegexCode System.Text.RegularExpressions.RegexWriter::RegexCodeFromRegexTree(System.Text.RegularExpressions.RegexTree) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegexCode_tF1653432E8EEDED5AB9517D09CA84B5FAA3CC0D5 * RegexWriter_RegexCodeFromRegexTree_mB8946AD1D077152C85D0D32CDABC5FBE37C80A80 (RegexWriter_t958027B0548A09589F03657633037085BACFC7B5 * __this, RegexTree_t63A434601D42EC388D9B2DCA2913286CFC8811F3 * ___tree0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m3A81757FE0B3283CB292CA61894273AA7B5C97CD_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m8A95D3769314CC0C4DDBE001AD1C40B4D5212053_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexBoyerMoore_t43FE488EFF3EE20D1092216B7E62D954F78167D2_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexCode_tF1653432E8EEDED5AB9517D09CA84B5FAA3CC0D5_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * V_0 = NULL; int32_t V_1 = 0; int32_t V_2 = 0; RegexPrefix_t1563C82A76799B0B018F5EBD6EC068158BE50301 * V_3 = NULL; RegexPrefix_t1563C82A76799B0B018F5EBD6EC068158BE50301 * V_4 = NULL; int32_t V_5 = 0; RegexBoyerMoore_t43FE488EFF3EE20D1092216B7E62D954F78167D2 * V_6 = NULL; bool V_7 = false; CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * V_8 = NULL; int32_t V_9 = 0; CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * G_B21_0 = NULL; { RegexTree_t63A434601D42EC388D9B2DCA2913286CFC8811F3 * L_0 = ___tree0; NullCheck(L_0); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_1 = L_0->get__capnumlist_2(); if (!L_1) { goto IL_0018; } } { RegexTree_t63A434601D42EC388D9B2DCA2913286CFC8811F3 * L_2 = ___tree0; NullCheck(L_2); int32_t L_3 = L_2->get__captop_6(); RegexTree_t63A434601D42EC388D9B2DCA2913286CFC8811F3 * L_4 = ___tree0; NullCheck(L_4); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_5 = L_4->get__capnumlist_2(); NullCheck(L_5); if ((!(((uint32_t)L_3) == ((uint32_t)((int32_t)((int32_t)(((RuntimeArray*)L_5)->max_length))))))) { goto IL_0028; } } IL_0018: { RegexTree_t63A434601D42EC388D9B2DCA2913286CFC8811F3 * L_6 = ___tree0; NullCheck(L_6); int32_t L_7 = L_6->get__captop_6(); V_2 = L_7; __this->set__caps_9((Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC *)NULL); goto IL_0074; } IL_0028: { RegexTree_t63A434601D42EC388D9B2DCA2913286CFC8811F3 * L_8 = ___tree0; NullCheck(L_8); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_9 = L_8->get__capnumlist_2(); NullCheck(L_9); V_2 = ((int32_t)((int32_t)(((RuntimeArray*)L_9)->max_length))); RegexTree_t63A434601D42EC388D9B2DCA2913286CFC8811F3 * L_10 = ___tree0; NullCheck(L_10); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_11 = L_10->get__caps_1(); __this->set__caps_9(L_11); V_9 = 0; goto IL_0068; } IL_0042: { Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_12 = __this->get__caps_9(); RegexTree_t63A434601D42EC388D9B2DCA2913286CFC8811F3 * L_13 = ___tree0; NullCheck(L_13); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_14 = L_13->get__capnumlist_2(); int32_t L_15 = V_9; NullCheck(L_14); int32_t L_16 = L_15; int32_t L_17 = (L_14)->GetAt(static_cast<il2cpp_array_size_t>(L_16)); int32_t L_18 = L_17; RuntimeObject * L_19 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_18); int32_t L_20 = V_9; int32_t L_21 = L_20; RuntimeObject * L_22 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_21); NullCheck(L_12); VirtActionInvoker2< RuntimeObject *, RuntimeObject * >::Invoke(21 /* System.Void System.Collections.Hashtable::set_Item(System.Object,System.Object) */, L_12, L_19, L_22); int32_t L_23 = V_9; V_9 = ((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1)); } IL_0068: { int32_t L_24 = V_9; RegexTree_t63A434601D42EC388D9B2DCA2913286CFC8811F3 * L_25 = ___tree0; NullCheck(L_25); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_26 = L_25->get__capnumlist_2(); NullCheck(L_26); if ((((int32_t)L_24) < ((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_26)->max_length)))))) { goto IL_0042; } } IL_0074: { __this->set__counting_6((bool)1); } IL_007b: { bool L_27 = __this->get__counting_6(); if (L_27) { goto IL_0094; } } { int32_t L_28 = __this->get__count_7(); Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_29 = (Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32*)SZArrayNew(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32_il2cpp_TypeInfo_var, (uint32_t)L_28); __this->set__emitted_2(L_29); } IL_0094: { RegexTree_t63A434601D42EC388D9B2DCA2913286CFC8811F3 * L_30 = ___tree0; NullCheck(L_30); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_31 = L_30->get__root_0(); V_0 = L_31; V_1 = 0; RegexWriter_Emit_mDCE0A2DF541B5FC6554C965A1C799ADCF6B4C55F(__this, ((int32_t)23), 0, /*hidden argument*/NULL); } IL_00a6: { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_32 = V_0; NullCheck(L_32); List_1_t692D260BEBA1E69864C98DEEDB3E9256C38CD9B9 * L_33 = L_32->get__children_1(); if (L_33) { goto IL_00be; } } { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_34 = V_0; NullCheck(L_34); int32_t L_35 = L_34->get__type_0(); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_36 = V_0; RegexWriter_EmitFragment_m7692CDAFDAC6BE7D8BB2DD1EC225B6456047DE0B(__this, L_35, L_36, 0, /*hidden argument*/NULL); goto IL_00f5; } IL_00be: { int32_t L_37 = V_1; RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_38 = V_0; NullCheck(L_38); List_1_t692D260BEBA1E69864C98DEEDB3E9256C38CD9B9 * L_39 = L_38->get__children_1(); NullCheck(L_39); int32_t L_40; L_40 = List_1_get_Count_m3A81757FE0B3283CB292CA61894273AA7B5C97CD_inline(L_39, /*hidden argument*/List_1_get_Count_m3A81757FE0B3283CB292CA61894273AA7B5C97CD_RuntimeMethod_var); if ((((int32_t)L_37) >= ((int32_t)L_40))) { goto IL_00f5; } } { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_41 = V_0; NullCheck(L_41); int32_t L_42 = L_41->get__type_0(); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_43 = V_0; int32_t L_44 = V_1; RegexWriter_EmitFragment_m7692CDAFDAC6BE7D8BB2DD1EC225B6456047DE0B(__this, ((int32_t)((int32_t)L_42|(int32_t)((int32_t)64))), L_43, L_44, /*hidden argument*/NULL); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_45 = V_0; NullCheck(L_45); List_1_t692D260BEBA1E69864C98DEEDB3E9256C38CD9B9 * L_46 = L_45->get__children_1(); int32_t L_47 = V_1; NullCheck(L_46); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_48; L_48 = List_1_get_Item_m8A95D3769314CC0C4DDBE001AD1C40B4D5212053_inline(L_46, L_47, /*hidden argument*/List_1_get_Item_m8A95D3769314CC0C4DDBE001AD1C40B4D5212053_RuntimeMethod_var); V_0 = L_48; int32_t L_49 = V_1; RegexWriter_PushInt_m82B0216AFF641DE9547BE17FA115C2CED44A840C(__this, L_49, /*hidden argument*/NULL); V_1 = 0; goto IL_00a6; } IL_00f5: { bool L_50; L_50 = RegexWriter_EmptyStack_mE95F9FABB37AB87D28C240E3A9306BD6F188B00B(__this, /*hidden argument*/NULL); if (L_50) { goto IL_0125; } } { int32_t L_51; L_51 = RegexWriter_PopInt_mB767C9611DB654060F684D5E09231CAEFFDF7551(__this, /*hidden argument*/NULL); V_1 = L_51; RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_52 = V_0; NullCheck(L_52); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_53 = L_52->get__next_7(); V_0 = L_53; RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_54 = V_0; NullCheck(L_54); int32_t L_55 = L_54->get__type_0(); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_56 = V_0; int32_t L_57 = V_1; RegexWriter_EmitFragment_m7692CDAFDAC6BE7D8BB2DD1EC225B6456047DE0B(__this, ((int32_t)((int32_t)L_55|(int32_t)((int32_t)128))), L_56, L_57, /*hidden argument*/NULL); int32_t L_58 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_58, (int32_t)1)); goto IL_00a6; } IL_0125: { int32_t L_59; L_59 = RegexWriter_CurPos_m771D864668683B9DCF98150DBAEEBE17703C2E5D_inline(__this, /*hidden argument*/NULL); RegexWriter_PatchJump_m99AEA835C283697F20D7F9CC16E6371BF681B70B(__this, 0, L_59, /*hidden argument*/NULL); RegexWriter_Emit_m0F2DFD7C6ED8AB199B3E8845A02A09F295A00E54(__this, ((int32_t)40), /*hidden argument*/NULL); bool L_60 = __this->get__counting_6(); if (!L_60) { goto IL_014e; } } { __this->set__counting_6((bool)0); goto IL_007b; } IL_014e: { RegexTree_t63A434601D42EC388D9B2DCA2913286CFC8811F3 * L_61 = ___tree0; RegexPrefix_t1563C82A76799B0B018F5EBD6EC068158BE50301 * L_62; L_62 = RegexFCD_FirstChars_m705EA84111ABE92AFC2ACD490AC26BC6400D75EA(L_61, /*hidden argument*/NULL); V_3 = L_62; RegexTree_t63A434601D42EC388D9B2DCA2913286CFC8811F3 * L_63 = ___tree0; RegexPrefix_t1563C82A76799B0B018F5EBD6EC068158BE50301 * L_64; L_64 = RegexFCD_Prefix_m2D11D5E62E9F31984C40FDD6C0ED9860DF56DCF8(L_63, /*hidden argument*/NULL); V_4 = L_64; RegexTree_t63A434601D42EC388D9B2DCA2913286CFC8811F3 * L_65 = ___tree0; NullCheck(L_65); int32_t L_66 = L_65->get__options_5(); V_7 = (bool)((!(((uint32_t)((int32_t)((int32_t)L_66&(int32_t)((int32_t)64)))) <= ((uint32_t)0)))? 1 : 0); RegexTree_t63A434601D42EC388D9B2DCA2913286CFC8811F3 * L_67 = ___tree0; NullCheck(L_67); int32_t L_68 = L_67->get__options_5(); if (((int32_t)((int32_t)L_68&(int32_t)((int32_t)512)))) { goto IL_0180; } } { IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var); CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_69; L_69 = CultureInfo_get_CurrentCulture_m99E5F5BD20445F2A73F7EA0014A4E783DF3840BB(/*hidden argument*/NULL); G_B21_0 = L_69; goto IL_0185; } IL_0180: { IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var); CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_70; L_70 = CultureInfo_get_InvariantCulture_m9FAAFAF8A00091EE1FCB7098AD3F163ECDF02164(/*hidden argument*/NULL); G_B21_0 = L_70; } IL_0185: { V_8 = G_B21_0; RegexPrefix_t1563C82A76799B0B018F5EBD6EC068158BE50301 * L_71 = V_4; if (!L_71) { goto IL_01b5; } } { RegexPrefix_t1563C82A76799B0B018F5EBD6EC068158BE50301 * L_72 = V_4; NullCheck(L_72); String_t* L_73; L_73 = RegexPrefix_get_Prefix_m6806C1EEE5B8973606B320A9C4CD5A9E91466F34_inline(L_72, /*hidden argument*/NULL); NullCheck(L_73); int32_t L_74; L_74 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_73, /*hidden argument*/NULL); if ((((int32_t)L_74) <= ((int32_t)0))) { goto IL_01b5; } } { RegexPrefix_t1563C82A76799B0B018F5EBD6EC068158BE50301 * L_75 = V_4; NullCheck(L_75); String_t* L_76; L_76 = RegexPrefix_get_Prefix_m6806C1EEE5B8973606B320A9C4CD5A9E91466F34_inline(L_75, /*hidden argument*/NULL); RegexPrefix_t1563C82A76799B0B018F5EBD6EC068158BE50301 * L_77 = V_4; NullCheck(L_77); bool L_78; L_78 = RegexPrefix_get_CaseInsensitive_mB4CF8FBFABE26F206AF6324A0C87DFB34C051A95_inline(L_77, /*hidden argument*/NULL); bool L_79 = V_7; CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_80 = V_8; RegexBoyerMoore_t43FE488EFF3EE20D1092216B7E62D954F78167D2 * L_81 = (RegexBoyerMoore_t43FE488EFF3EE20D1092216B7E62D954F78167D2 *)il2cpp_codegen_object_new(RegexBoyerMoore_t43FE488EFF3EE20D1092216B7E62D954F78167D2_il2cpp_TypeInfo_var); RegexBoyerMoore__ctor_m7CFF1BFAA30CB9EC30B0E48B3321366E2C6EBE92(L_81, L_76, L_78, L_79, L_80, /*hidden argument*/NULL); V_6 = L_81; goto IL_01b8; } IL_01b5: { V_6 = (RegexBoyerMoore_t43FE488EFF3EE20D1092216B7E62D954F78167D2 *)NULL; } IL_01b8: { RegexTree_t63A434601D42EC388D9B2DCA2913286CFC8811F3 * L_82 = ___tree0; int32_t L_83; L_83 = RegexFCD_Anchors_m4F3A11C644EC9B7B16CCCBD792A5E2FED2C22EA7(L_82, /*hidden argument*/NULL); V_5 = L_83; Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* L_84 = __this->get__emitted_2(); List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * L_85 = __this->get__stringtable_5(); int32_t L_86 = __this->get__trackcount_8(); Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * L_87 = __this->get__caps_9(); int32_t L_88 = V_2; RegexBoyerMoore_t43FE488EFF3EE20D1092216B7E62D954F78167D2 * L_89 = V_6; RegexPrefix_t1563C82A76799B0B018F5EBD6EC068158BE50301 * L_90 = V_3; int32_t L_91 = V_5; bool L_92 = V_7; RegexCode_tF1653432E8EEDED5AB9517D09CA84B5FAA3CC0D5 * L_93 = (RegexCode_tF1653432E8EEDED5AB9517D09CA84B5FAA3CC0D5 *)il2cpp_codegen_object_new(RegexCode_tF1653432E8EEDED5AB9517D09CA84B5FAA3CC0D5_il2cpp_TypeInfo_var); RegexCode__ctor_mEFC64ECB52D0D2735F99AC16BD6355D3A59499CE(L_93, L_84, L_85, L_86, L_87, L_88, L_89, L_90, L_91, L_92, /*hidden argument*/NULL); return L_93; } } // System.Void System.Text.RegularExpressions.RegexWriter::EmitFragment(System.Int32,System.Text.RegularExpressions.RegexNode,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexWriter_EmitFragment_m7692CDAFDAC6BE7D8BB2DD1EC225B6456047DE0B (RegexWriter_t958027B0548A09589F03657633037085BACFC7B5 * __this, int32_t ___nodetype0, RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * ___node1, int32_t ___CurIndex2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m3A81757FE0B3283CB292CA61894273AA7B5C97CD_RuntimeMethod_var); 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; RegexWriter_t958027B0548A09589F03657633037085BACFC7B5 * G_B35_0 = NULL; RegexWriter_t958027B0548A09589F03657633037085BACFC7B5 * G_B34_0 = NULL; int32_t G_B36_0 = 0; RegexWriter_t958027B0548A09589F03657633037085BACFC7B5 * G_B36_1 = NULL; int32_t G_B38_0 = 0; RegexWriter_t958027B0548A09589F03657633037085BACFC7B5 * G_B38_1 = NULL; int32_t G_B37_0 = 0; RegexWriter_t958027B0548A09589F03657633037085BACFC7B5 * G_B37_1 = NULL; int32_t G_B39_0 = 0; int32_t G_B39_1 = 0; RegexWriter_t958027B0548A09589F03657633037085BACFC7B5 * G_B39_2 = NULL; RegexWriter_t958027B0548A09589F03657633037085BACFC7B5 * G_B42_0 = NULL; RegexWriter_t958027B0548A09589F03657633037085BACFC7B5 * G_B41_0 = NULL; int32_t G_B43_0 = 0; RegexWriter_t958027B0548A09589F03657633037085BACFC7B5 * G_B43_1 = NULL; int32_t G_B51_0 = 0; int32_t G_B51_1 = 0; RegexWriter_t958027B0548A09589F03657633037085BACFC7B5 * G_B51_2 = NULL; int32_t G_B50_0 = 0; int32_t G_B50_1 = 0; RegexWriter_t958027B0548A09589F03657633037085BACFC7B5 * G_B50_2 = NULL; int32_t G_B52_0 = 0; int32_t G_B52_1 = 0; int32_t G_B52_2 = 0; RegexWriter_t958027B0548A09589F03657633037085BACFC7B5 * G_B52_3 = NULL; RegexWriter_t958027B0548A09589F03657633037085BACFC7B5 * G_B69_0 = NULL; RegexWriter_t958027B0548A09589F03657633037085BACFC7B5 * G_B67_0 = NULL; RegexWriter_t958027B0548A09589F03657633037085BACFC7B5 * G_B68_0 = NULL; int32_t G_B70_0 = 0; RegexWriter_t958027B0548A09589F03657633037085BACFC7B5 * G_B70_1 = NULL; Il2CppChar G_B74_0 = 0x0; int32_t G_B74_1 = 0; RegexWriter_t958027B0548A09589F03657633037085BACFC7B5 * G_B74_2 = NULL; Il2CppChar G_B73_0 = 0x0; int32_t G_B73_1 = 0; RegexWriter_t958027B0548A09589F03657633037085BACFC7B5 * G_B73_2 = NULL; int32_t G_B75_0 = 0; Il2CppChar G_B75_1 = 0x0; int32_t G_B75_2 = 0; RegexWriter_t958027B0548A09589F03657633037085BACFC7B5 * G_B75_3 = NULL; int32_t G_B81_0 = 0; int32_t G_B81_1 = 0; RegexWriter_t958027B0548A09589F03657633037085BACFC7B5 * G_B81_2 = NULL; int32_t G_B80_0 = 0; int32_t G_B80_1 = 0; RegexWriter_t958027B0548A09589F03657633037085BACFC7B5 * G_B80_2 = NULL; int32_t G_B82_0 = 0; int32_t G_B82_1 = 0; int32_t G_B82_2 = 0; RegexWriter_t958027B0548A09589F03657633037085BACFC7B5 * G_B82_3 = NULL; { V_0 = 0; int32_t L_0 = ___nodetype0; if ((((int32_t)L_0) > ((int32_t)((int32_t)13)))) { goto IL_0026; } } { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_1 = ___node1; NullCheck(L_1); bool L_2; L_2 = RegexNode_UseOptionR_mBD8EBE8396F51A7DA491FFFAFDB09A148F62E484(L_1, /*hidden argument*/NULL); if (!L_2) { goto IL_0014; } } { int32_t L_3 = V_0; V_0 = ((int32_t)((int32_t)L_3|(int32_t)((int32_t)64))); } IL_0014: { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_4 = ___node1; NullCheck(L_4); int32_t L_5 = L_4->get__options_6(); if (!((int32_t)((int32_t)L_5&(int32_t)1))) { goto IL_0026; } } { int32_t L_6 = V_0; V_0 = ((int32_t)((int32_t)L_6|(int32_t)((int32_t)512))); } IL_0026: { int32_t L_7 = ___nodetype0; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_7, (int32_t)3))) { case 0: { goto IL_04c5; } case 1: { goto IL_04c5; } case 2: { goto IL_053f; } case 3: { goto IL_04c5; } case 4: { goto IL_04c5; } case 5: { goto IL_053f; } case 6: { goto IL_04b0; } case 7: { goto IL_04b0; } case 8: { goto IL_05cb; } case 9: { goto IL_05b0; } case 10: { goto IL_05e6; } case 11: { goto IL_0601; } case 12: { goto IL_0601; } case 13: { goto IL_0601; } case 14: { goto IL_0601; } case 15: { goto IL_0601; } case 16: { goto IL_0601; } case 17: { goto IL_0601; } case 18: { goto IL_0601; } case 19: { goto IL_0601; } case 20: { goto IL_0634; } case 21: { goto IL_060e; } case 22: { goto IL_060e; } case 23: { goto IL_060e; } case 24: { goto IL_060e; } case 25: { goto IL_060e; } case 26: { goto IL_060e; } case 27: { goto IL_060e; } case 28: { goto IL_060e; } case 29: { goto IL_060e; } case 30: { goto IL_060e; } case 31: { goto IL_060e; } case 32: { goto IL_060e; } case 33: { goto IL_060e; } case 34: { goto IL_060e; } case 35: { goto IL_060e; } case 36: { goto IL_060e; } case 37: { goto IL_060e; } case 38: { goto IL_0601; } case 39: { goto IL_0601; } } } { int32_t L_8 = ___nodetype0; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_8, (int32_t)((int32_t)88)))) { case 0: { goto IL_0140; } case 1: { goto IL_0634; } case 2: { goto IL_030e; } case 3: { goto IL_030e; } case 4: { goto IL_0411; } case 5: { goto IL_0634; } case 6: { goto IL_043b; } case 7: { goto IL_045d; } case 8: { goto IL_049e; } case 9: { goto IL_01c2; } case 10: { goto IL_025f; } } } { int32_t L_9 = ___nodetype0; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)((int32_t)152)))) { case 0: { goto IL_0169; } case 1: { goto IL_0634; } case 2: { goto IL_038b; } case 3: { goto IL_038b; } case 4: { goto IL_041a; } case 5: { goto IL_0634; } case 6: { goto IL_044c; } case 7: { goto IL_047b; } case 8: { goto IL_04a7; } case 9: { goto IL_0202; } case 10: { goto IL_028b; } } } { goto IL_060e; } IL_0140: { int32_t L_10 = ___CurIndex2; RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_11 = ___node1; NullCheck(L_11); List_1_t692D260BEBA1E69864C98DEEDB3E9256C38CD9B9 * L_12 = L_11->get__children_1(); NullCheck(L_12); int32_t L_13; L_13 = List_1_get_Count_m3A81757FE0B3283CB292CA61894273AA7B5C97CD_inline(L_12, /*hidden argument*/List_1_get_Count_m3A81757FE0B3283CB292CA61894273AA7B5C97CD_RuntimeMethod_var); if ((((int32_t)L_10) >= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_13, (int32_t)1))))) { goto IL_0634; } } { int32_t L_14; L_14 = RegexWriter_CurPos_m771D864668683B9DCF98150DBAEEBE17703C2E5D_inline(__this, /*hidden argument*/NULL); RegexWriter_PushInt_m82B0216AFF641DE9547BE17FA115C2CED44A840C(__this, L_14, /*hidden argument*/NULL); RegexWriter_Emit_mDCE0A2DF541B5FC6554C965A1C799ADCF6B4C55F(__this, ((int32_t)23), 0, /*hidden argument*/NULL); return; } IL_0169: { int32_t L_15 = ___CurIndex2; RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_16 = ___node1; NullCheck(L_16); List_1_t692D260BEBA1E69864C98DEEDB3E9256C38CD9B9 * L_17 = L_16->get__children_1(); NullCheck(L_17); int32_t L_18; L_18 = List_1_get_Count_m3A81757FE0B3283CB292CA61894273AA7B5C97CD_inline(L_17, /*hidden argument*/List_1_get_Count_m3A81757FE0B3283CB292CA61894273AA7B5C97CD_RuntimeMethod_var); if ((((int32_t)L_15) >= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_18, (int32_t)1))))) { goto IL_01a3; } } { int32_t L_19; L_19 = RegexWriter_PopInt_mB767C9611DB654060F684D5E09231CAEFFDF7551(__this, /*hidden argument*/NULL); V_1 = L_19; int32_t L_20; L_20 = RegexWriter_CurPos_m771D864668683B9DCF98150DBAEEBE17703C2E5D_inline(__this, /*hidden argument*/NULL); RegexWriter_PushInt_m82B0216AFF641DE9547BE17FA115C2CED44A840C(__this, L_20, /*hidden argument*/NULL); RegexWriter_Emit_mDCE0A2DF541B5FC6554C965A1C799ADCF6B4C55F(__this, ((int32_t)38), 0, /*hidden argument*/NULL); int32_t L_21 = V_1; int32_t L_22; L_22 = RegexWriter_CurPos_m771D864668683B9DCF98150DBAEEBE17703C2E5D_inline(__this, /*hidden argument*/NULL); RegexWriter_PatchJump_m99AEA835C283697F20D7F9CC16E6371BF681B70B(__this, L_21, L_22, /*hidden argument*/NULL); return; } IL_01a3: { V_2 = 0; goto IL_01bd; } IL_01a7: { int32_t L_23; L_23 = RegexWriter_PopInt_mB767C9611DB654060F684D5E09231CAEFFDF7551(__this, /*hidden argument*/NULL); int32_t L_24; L_24 = RegexWriter_CurPos_m771D864668683B9DCF98150DBAEEBE17703C2E5D_inline(__this, /*hidden argument*/NULL); RegexWriter_PatchJump_m99AEA835C283697F20D7F9CC16E6371BF681B70B(__this, L_23, L_24, /*hidden argument*/NULL); int32_t L_25 = V_2; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_25, (int32_t)1)); } IL_01bd: { int32_t L_26 = V_2; int32_t L_27 = ___CurIndex2; if ((((int32_t)L_26) < ((int32_t)L_27))) { goto IL_01a7; } } { return; } IL_01c2: { int32_t L_28 = ___CurIndex2; if (L_28) { goto IL_0634; } } { RegexWriter_Emit_m0F2DFD7C6ED8AB199B3E8845A02A09F295A00E54(__this, ((int32_t)34), /*hidden argument*/NULL); int32_t L_29; L_29 = RegexWriter_CurPos_m771D864668683B9DCF98150DBAEEBE17703C2E5D_inline(__this, /*hidden argument*/NULL); RegexWriter_PushInt_m82B0216AFF641DE9547BE17FA115C2CED44A840C(__this, L_29, /*hidden argument*/NULL); RegexWriter_Emit_mDCE0A2DF541B5FC6554C965A1C799ADCF6B4C55F(__this, ((int32_t)23), 0, /*hidden argument*/NULL); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_30 = ___node1; NullCheck(L_30); int32_t L_31 = L_30->get__m_4(); int32_t L_32; L_32 = RegexWriter_MapCapnum_mEF8C8E6F9916122D0FAE18A7B560F65738D004E6(__this, L_31, /*hidden argument*/NULL); RegexWriter_Emit_mDCE0A2DF541B5FC6554C965A1C799ADCF6B4C55F(__this, ((int32_t)37), L_32, /*hidden argument*/NULL); RegexWriter_Emit_m0F2DFD7C6ED8AB199B3E8845A02A09F295A00E54(__this, ((int32_t)36), /*hidden argument*/NULL); return; } IL_0202: { int32_t L_33 = ___CurIndex2; if (!L_33) { goto IL_020a; } } { int32_t L_34 = ___CurIndex2; if ((((int32_t)L_34) == ((int32_t)1))) { goto IL_024c; } } { return; } IL_020a: { int32_t L_35; L_35 = RegexWriter_PopInt_mB767C9611DB654060F684D5E09231CAEFFDF7551(__this, /*hidden argument*/NULL); V_3 = L_35; int32_t L_36; L_36 = RegexWriter_CurPos_m771D864668683B9DCF98150DBAEEBE17703C2E5D_inline(__this, /*hidden argument*/NULL); RegexWriter_PushInt_m82B0216AFF641DE9547BE17FA115C2CED44A840C(__this, L_36, /*hidden argument*/NULL); RegexWriter_Emit_mDCE0A2DF541B5FC6554C965A1C799ADCF6B4C55F(__this, ((int32_t)38), 0, /*hidden argument*/NULL); int32_t L_37 = V_3; int32_t L_38; L_38 = RegexWriter_CurPos_m771D864668683B9DCF98150DBAEEBE17703C2E5D_inline(__this, /*hidden argument*/NULL); RegexWriter_PatchJump_m99AEA835C283697F20D7F9CC16E6371BF681B70B(__this, L_37, L_38, /*hidden argument*/NULL); RegexWriter_Emit_m0F2DFD7C6ED8AB199B3E8845A02A09F295A00E54(__this, ((int32_t)36), /*hidden argument*/NULL); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_39 = ___node1; NullCheck(L_39); List_1_t692D260BEBA1E69864C98DEEDB3E9256C38CD9B9 * L_40 = L_39->get__children_1(); NullCheck(L_40); int32_t L_41; L_41 = List_1_get_Count_m3A81757FE0B3283CB292CA61894273AA7B5C97CD_inline(L_40, /*hidden argument*/List_1_get_Count_m3A81757FE0B3283CB292CA61894273AA7B5C97CD_RuntimeMethod_var); if ((((int32_t)L_41) > ((int32_t)1))) { goto IL_0634; } } IL_024c: { int32_t L_42; L_42 = RegexWriter_PopInt_mB767C9611DB654060F684D5E09231CAEFFDF7551(__this, /*hidden argument*/NULL); int32_t L_43; L_43 = RegexWriter_CurPos_m771D864668683B9DCF98150DBAEEBE17703C2E5D_inline(__this, /*hidden argument*/NULL); RegexWriter_PatchJump_m99AEA835C283697F20D7F9CC16E6371BF681B70B(__this, L_42, L_43, /*hidden argument*/NULL); return; } IL_025f: { int32_t L_44 = ___CurIndex2; if (L_44) { goto IL_0634; } } { RegexWriter_Emit_m0F2DFD7C6ED8AB199B3E8845A02A09F295A00E54(__this, ((int32_t)34), /*hidden argument*/NULL); RegexWriter_Emit_m0F2DFD7C6ED8AB199B3E8845A02A09F295A00E54(__this, ((int32_t)31), /*hidden argument*/NULL); int32_t L_45; L_45 = RegexWriter_CurPos_m771D864668683B9DCF98150DBAEEBE17703C2E5D_inline(__this, /*hidden argument*/NULL); RegexWriter_PushInt_m82B0216AFF641DE9547BE17FA115C2CED44A840C(__this, L_45, /*hidden argument*/NULL); RegexWriter_Emit_mDCE0A2DF541B5FC6554C965A1C799ADCF6B4C55F(__this, ((int32_t)23), 0, /*hidden argument*/NULL); return; } IL_028b: { int32_t L_46 = ___CurIndex2; switch (L_46) { case 0: { goto IL_029e; } case 1: { goto IL_02af; } case 2: { goto IL_02fb; } } } { return; } IL_029e: { RegexWriter_Emit_m0F2DFD7C6ED8AB199B3E8845A02A09F295A00E54(__this, ((int32_t)33), /*hidden argument*/NULL); RegexWriter_Emit_m0F2DFD7C6ED8AB199B3E8845A02A09F295A00E54(__this, ((int32_t)36), /*hidden argument*/NULL); return; } IL_02af: { int32_t L_47; L_47 = RegexWriter_PopInt_mB767C9611DB654060F684D5E09231CAEFFDF7551(__this, /*hidden argument*/NULL); V_4 = L_47; int32_t L_48; L_48 = RegexWriter_CurPos_m771D864668683B9DCF98150DBAEEBE17703C2E5D_inline(__this, /*hidden argument*/NULL); RegexWriter_PushInt_m82B0216AFF641DE9547BE17FA115C2CED44A840C(__this, L_48, /*hidden argument*/NULL); RegexWriter_Emit_mDCE0A2DF541B5FC6554C965A1C799ADCF6B4C55F(__this, ((int32_t)38), 0, /*hidden argument*/NULL); int32_t L_49 = V_4; int32_t L_50; L_50 = RegexWriter_CurPos_m771D864668683B9DCF98150DBAEEBE17703C2E5D_inline(__this, /*hidden argument*/NULL); RegexWriter_PatchJump_m99AEA835C283697F20D7F9CC16E6371BF681B70B(__this, L_49, L_50, /*hidden argument*/NULL); RegexWriter_Emit_m0F2DFD7C6ED8AB199B3E8845A02A09F295A00E54(__this, ((int32_t)33), /*hidden argument*/NULL); RegexWriter_Emit_m0F2DFD7C6ED8AB199B3E8845A02A09F295A00E54(__this, ((int32_t)36), /*hidden argument*/NULL); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_51 = ___node1; NullCheck(L_51); List_1_t692D260BEBA1E69864C98DEEDB3E9256C38CD9B9 * L_52 = L_51->get__children_1(); NullCheck(L_52); int32_t L_53; L_53 = List_1_get_Count_m3A81757FE0B3283CB292CA61894273AA7B5C97CD_inline(L_52, /*hidden argument*/List_1_get_Count_m3A81757FE0B3283CB292CA61894273AA7B5C97CD_RuntimeMethod_var); if ((((int32_t)L_53) > ((int32_t)2))) { goto IL_0634; } } IL_02fb: { int32_t L_54; L_54 = RegexWriter_PopInt_mB767C9611DB654060F684D5E09231CAEFFDF7551(__this, /*hidden argument*/NULL); int32_t L_55; L_55 = RegexWriter_CurPos_m771D864668683B9DCF98150DBAEEBE17703C2E5D_inline(__this, /*hidden argument*/NULL); RegexWriter_PatchJump_m99AEA835C283697F20D7F9CC16E6371BF681B70B(__this, L_54, L_55, /*hidden argument*/NULL); return; } IL_030e: { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_56 = ___node1; NullCheck(L_56); int32_t L_57 = L_56->get__n_5(); if ((((int32_t)L_57) < ((int32_t)((int32_t)2147483647LL)))) { goto IL_0324; } } { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_58 = ___node1; NullCheck(L_58); int32_t L_59 = L_58->get__m_4(); if ((((int32_t)L_59) <= ((int32_t)1))) { goto IL_034d; } } IL_0324: { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_60 = ___node1; NullCheck(L_60); int32_t L_61 = L_60->get__m_4(); G_B34_0 = __this; if (!L_61) { G_B35_0 = __this; goto IL_0331; } } { G_B36_0 = ((int32_t)27); G_B36_1 = G_B34_0; goto IL_0333; } IL_0331: { G_B36_0 = ((int32_t)26); G_B36_1 = G_B35_0; } IL_0333: { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_62 = ___node1; NullCheck(L_62); int32_t L_63 = L_62->get__m_4(); G_B37_0 = G_B36_0; G_B37_1 = G_B36_1; if (!L_63) { G_B38_0 = G_B36_0; G_B38_1 = G_B36_1; goto IL_0345; } } { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_64 = ___node1; NullCheck(L_64); int32_t L_65 = L_64->get__m_4(); G_B39_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)1, (int32_t)L_65)); G_B39_1 = G_B37_0; G_B39_2 = G_B37_1; goto IL_0346; } IL_0345: { G_B39_0 = 0; G_B39_1 = G_B38_0; G_B39_2 = G_B38_1; } IL_0346: { NullCheck(G_B39_2); RegexWriter_Emit_mDCE0A2DF541B5FC6554C965A1C799ADCF6B4C55F(G_B39_2, G_B39_1, G_B39_0, /*hidden argument*/NULL); goto IL_0361; } IL_034d: { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_66 = ___node1; NullCheck(L_66); int32_t L_67 = L_66->get__m_4(); G_B41_0 = __this; if (!L_67) { G_B42_0 = __this; goto IL_035a; } } { G_B43_0 = ((int32_t)31); G_B43_1 = G_B41_0; goto IL_035c; } IL_035a: { G_B43_0 = ((int32_t)30); G_B43_1 = G_B42_0; } IL_035c: { NullCheck(G_B43_1); RegexWriter_Emit_m0F2DFD7C6ED8AB199B3E8845A02A09F295A00E54(G_B43_1, G_B43_0, /*hidden argument*/NULL); } IL_0361: { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_68 = ___node1; NullCheck(L_68); int32_t L_69 = L_68->get__m_4(); if (L_69) { goto IL_037e; } } { int32_t L_70; L_70 = RegexWriter_CurPos_m771D864668683B9DCF98150DBAEEBE17703C2E5D_inline(__this, /*hidden argument*/NULL); RegexWriter_PushInt_m82B0216AFF641DE9547BE17FA115C2CED44A840C(__this, L_70, /*hidden argument*/NULL); RegexWriter_Emit_mDCE0A2DF541B5FC6554C965A1C799ADCF6B4C55F(__this, ((int32_t)38), 0, /*hidden argument*/NULL); } IL_037e: { int32_t L_71; L_71 = RegexWriter_CurPos_m771D864668683B9DCF98150DBAEEBE17703C2E5D_inline(__this, /*hidden argument*/NULL); RegexWriter_PushInt_m82B0216AFF641DE9547BE17FA115C2CED44A840C(__this, L_71, /*hidden argument*/NULL); return; } IL_038b: { int32_t L_72; L_72 = RegexWriter_CurPos_m771D864668683B9DCF98150DBAEEBE17703C2E5D_inline(__this, /*hidden argument*/NULL); V_5 = L_72; int32_t L_73 = ___nodetype0; V_6 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_73, (int32_t)((int32_t)154))); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_74 = ___node1; NullCheck(L_74); int32_t L_75 = L_74->get__n_5(); if ((((int32_t)L_75) < ((int32_t)((int32_t)2147483647LL)))) { goto IL_03b2; } } { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_76 = ___node1; NullCheck(L_76); int32_t L_77 = L_76->get__m_4(); if ((((int32_t)L_77) <= ((int32_t)1))) { goto IL_03e6; } } IL_03b2: { int32_t L_78 = V_6; int32_t L_79; L_79 = RegexWriter_PopInt_mB767C9611DB654060F684D5E09231CAEFFDF7551(__this, /*hidden argument*/NULL); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_80 = ___node1; NullCheck(L_80); int32_t L_81 = L_80->get__n_5(); G_B50_0 = L_79; G_B50_1 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)28), (int32_t)L_78)); G_B50_2 = __this; if ((((int32_t)L_81) == ((int32_t)((int32_t)2147483647LL)))) { G_B51_0 = L_79; G_B51_1 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)28), (int32_t)L_78)); G_B51_2 = __this; goto IL_03da; } } { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_82 = ___node1; NullCheck(L_82); int32_t L_83 = L_82->get__n_5(); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_84 = ___node1; NullCheck(L_84); int32_t L_85 = L_84->get__m_4(); G_B52_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_83, (int32_t)L_85)); G_B52_1 = G_B50_0; G_B52_2 = G_B50_1; G_B52_3 = G_B50_2; goto IL_03df; } IL_03da: { G_B52_0 = ((int32_t)2147483647LL); G_B52_1 = G_B51_0; G_B52_2 = G_B51_1; G_B52_3 = G_B51_2; } IL_03df: { NullCheck(G_B52_3); RegexWriter_Emit_m9360B7E84BA94A432C3C9AB5427A30D81E0B2739(G_B52_3, G_B52_2, G_B52_1, G_B52_0, /*hidden argument*/NULL); goto IL_03f7; } IL_03e6: { int32_t L_86 = V_6; int32_t L_87; L_87 = RegexWriter_PopInt_mB767C9611DB654060F684D5E09231CAEFFDF7551(__this, /*hidden argument*/NULL); RegexWriter_Emit_mDCE0A2DF541B5FC6554C965A1C799ADCF6B4C55F(__this, ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)24), (int32_t)L_86)), L_87, /*hidden argument*/NULL); } IL_03f7: { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_88 = ___node1; NullCheck(L_88); int32_t L_89 = L_88->get__m_4(); if (L_89) { goto IL_0634; } } { int32_t L_90; L_90 = RegexWriter_PopInt_mB767C9611DB654060F684D5E09231CAEFFDF7551(__this, /*hidden argument*/NULL); int32_t L_91 = V_5; RegexWriter_PatchJump_m99AEA835C283697F20D7F9CC16E6371BF681B70B(__this, L_90, L_91, /*hidden argument*/NULL); return; } IL_0411: { RegexWriter_Emit_m0F2DFD7C6ED8AB199B3E8845A02A09F295A00E54(__this, ((int32_t)31), /*hidden argument*/NULL); return; } IL_041a: { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_92 = ___node1; NullCheck(L_92); int32_t L_93 = L_92->get__m_4(); int32_t L_94; L_94 = RegexWriter_MapCapnum_mEF8C8E6F9916122D0FAE18A7B560F65738D004E6(__this, L_93, /*hidden argument*/NULL); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_95 = ___node1; NullCheck(L_95); int32_t L_96 = L_95->get__n_5(); int32_t L_97; L_97 = RegexWriter_MapCapnum_mEF8C8E6F9916122D0FAE18A7B560F65738D004E6(__this, L_96, /*hidden argument*/NULL); RegexWriter_Emit_m9360B7E84BA94A432C3C9AB5427A30D81E0B2739(__this, ((int32_t)32), L_94, L_97, /*hidden argument*/NULL); return; } IL_043b: { RegexWriter_Emit_m0F2DFD7C6ED8AB199B3E8845A02A09F295A00E54(__this, ((int32_t)34), /*hidden argument*/NULL); RegexWriter_Emit_m0F2DFD7C6ED8AB199B3E8845A02A09F295A00E54(__this, ((int32_t)31), /*hidden argument*/NULL); return; } IL_044c: { RegexWriter_Emit_m0F2DFD7C6ED8AB199B3E8845A02A09F295A00E54(__this, ((int32_t)33), /*hidden argument*/NULL); RegexWriter_Emit_m0F2DFD7C6ED8AB199B3E8845A02A09F295A00E54(__this, ((int32_t)36), /*hidden argument*/NULL); return; } IL_045d: { RegexWriter_Emit_m0F2DFD7C6ED8AB199B3E8845A02A09F295A00E54(__this, ((int32_t)34), /*hidden argument*/NULL); int32_t L_98; L_98 = RegexWriter_CurPos_m771D864668683B9DCF98150DBAEEBE17703C2E5D_inline(__this, /*hidden argument*/NULL); RegexWriter_PushInt_m82B0216AFF641DE9547BE17FA115C2CED44A840C(__this, L_98, /*hidden argument*/NULL); RegexWriter_Emit_mDCE0A2DF541B5FC6554C965A1C799ADCF6B4C55F(__this, ((int32_t)23), 0, /*hidden argument*/NULL); return; } IL_047b: { RegexWriter_Emit_m0F2DFD7C6ED8AB199B3E8845A02A09F295A00E54(__this, ((int32_t)35), /*hidden argument*/NULL); int32_t L_99; L_99 = RegexWriter_PopInt_mB767C9611DB654060F684D5E09231CAEFFDF7551(__this, /*hidden argument*/NULL); int32_t L_100; L_100 = RegexWriter_CurPos_m771D864668683B9DCF98150DBAEEBE17703C2E5D_inline(__this, /*hidden argument*/NULL); RegexWriter_PatchJump_m99AEA835C283697F20D7F9CC16E6371BF681B70B(__this, L_99, L_100, /*hidden argument*/NULL); RegexWriter_Emit_m0F2DFD7C6ED8AB199B3E8845A02A09F295A00E54(__this, ((int32_t)36), /*hidden argument*/NULL); return; } IL_049e: { RegexWriter_Emit_m0F2DFD7C6ED8AB199B3E8845A02A09F295A00E54(__this, ((int32_t)34), /*hidden argument*/NULL); return; } IL_04a7: { RegexWriter_Emit_m0F2DFD7C6ED8AB199B3E8845A02A09F295A00E54(__this, ((int32_t)36), /*hidden argument*/NULL); return; } IL_04b0: { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_101 = ___node1; NullCheck(L_101); int32_t L_102 = L_101->get__type_0(); int32_t L_103 = V_0; RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_104 = ___node1; NullCheck(L_104); Il2CppChar L_105 = L_104->get__ch_3(); RegexWriter_Emit_mDCE0A2DF541B5FC6554C965A1C799ADCF6B4C55F(__this, ((int32_t)((int32_t)L_102|(int32_t)L_103)), L_105, /*hidden argument*/NULL); return; } IL_04c5: { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_106 = ___node1; NullCheck(L_106); int32_t L_107 = L_106->get__m_4(); if ((((int32_t)L_107) <= ((int32_t)0))) { goto IL_04f8; } } { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_108 = ___node1; NullCheck(L_108); int32_t L_109 = L_108->get__type_0(); G_B67_0 = __this; if ((((int32_t)L_109) == ((int32_t)3))) { G_B69_0 = __this; goto IL_04e4; } } { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_110 = ___node1; NullCheck(L_110); int32_t L_111 = L_110->get__type_0(); G_B68_0 = G_B67_0; if ((((int32_t)L_111) == ((int32_t)6))) { G_B69_0 = G_B67_0; goto IL_04e4; } } { G_B70_0 = 1; G_B70_1 = G_B68_0; goto IL_04e5; } IL_04e4: { G_B70_0 = 0; G_B70_1 = G_B69_0; } IL_04e5: { int32_t L_112 = V_0; RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_113 = ___node1; NullCheck(L_113); Il2CppChar L_114 = L_113->get__ch_3(); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_115 = ___node1; NullCheck(L_115); int32_t L_116 = L_115->get__m_4(); NullCheck(G_B70_1); RegexWriter_Emit_m9360B7E84BA94A432C3C9AB5427A30D81E0B2739(G_B70_1, ((int32_t)((int32_t)G_B70_0|(int32_t)L_112)), L_114, L_116, /*hidden argument*/NULL); } IL_04f8: { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_117 = ___node1; NullCheck(L_117); int32_t L_118 = L_117->get__n_5(); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_119 = ___node1; NullCheck(L_119); int32_t L_120 = L_119->get__m_4(); if ((((int32_t)L_118) <= ((int32_t)L_120))) { goto IL_0634; } } { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_121 = ___node1; NullCheck(L_121); int32_t L_122 = L_121->get__type_0(); int32_t L_123 = V_0; RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_124 = ___node1; NullCheck(L_124); Il2CppChar L_125 = L_124->get__ch_3(); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_126 = ___node1; NullCheck(L_126); int32_t L_127 = L_126->get__n_5(); G_B73_0 = L_125; G_B73_1 = ((int32_t)((int32_t)L_122|(int32_t)L_123)); G_B73_2 = __this; if ((((int32_t)L_127) == ((int32_t)((int32_t)2147483647LL)))) { G_B74_0 = L_125; G_B74_1 = ((int32_t)((int32_t)L_122|(int32_t)L_123)); G_B74_2 = __this; goto IL_0534; } } { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_128 = ___node1; NullCheck(L_128); int32_t L_129 = L_128->get__n_5(); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_130 = ___node1; NullCheck(L_130); int32_t L_131 = L_130->get__m_4(); G_B75_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_129, (int32_t)L_131)); G_B75_1 = G_B73_0; G_B75_2 = G_B73_1; G_B75_3 = G_B73_2; goto IL_0539; } IL_0534: { G_B75_0 = ((int32_t)2147483647LL); G_B75_1 = G_B74_0; G_B75_2 = G_B74_1; G_B75_3 = G_B74_2; } IL_0539: { NullCheck(G_B75_3); RegexWriter_Emit_m9360B7E84BA94A432C3C9AB5427A30D81E0B2739(G_B75_3, G_B75_2, G_B75_1, G_B75_0, /*hidden argument*/NULL); return; } IL_053f: { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_132 = ___node1; NullCheck(L_132); int32_t L_133 = L_132->get__m_4(); if ((((int32_t)L_133) <= ((int32_t)0))) { goto IL_0563; } } { int32_t L_134 = V_0; RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_135 = ___node1; NullCheck(L_135); String_t* L_136 = L_135->get__str_2(); int32_t L_137; L_137 = RegexWriter_StringCode_m10DB52A16488268DF01C52E8163E899FA568FBC9(__this, L_136, /*hidden argument*/NULL); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_138 = ___node1; NullCheck(L_138); int32_t L_139 = L_138->get__m_4(); RegexWriter_Emit_m9360B7E84BA94A432C3C9AB5427A30D81E0B2739(__this, ((int32_t)((int32_t)2|(int32_t)L_134)), L_137, L_139, /*hidden argument*/NULL); } IL_0563: { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_140 = ___node1; NullCheck(L_140); int32_t L_141 = L_140->get__n_5(); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_142 = ___node1; NullCheck(L_142); int32_t L_143 = L_142->get__m_4(); if ((((int32_t)L_141) <= ((int32_t)L_143))) { goto IL_0634; } } { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_144 = ___node1; NullCheck(L_144); int32_t L_145 = L_144->get__type_0(); int32_t L_146 = V_0; RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_147 = ___node1; NullCheck(L_147); String_t* L_148 = L_147->get__str_2(); int32_t L_149; L_149 = RegexWriter_StringCode_m10DB52A16488268DF01C52E8163E899FA568FBC9(__this, L_148, /*hidden argument*/NULL); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_150 = ___node1; NullCheck(L_150); int32_t L_151 = L_150->get__n_5(); G_B80_0 = L_149; G_B80_1 = ((int32_t)((int32_t)L_145|(int32_t)L_146)); G_B80_2 = __this; if ((((int32_t)L_151) == ((int32_t)((int32_t)2147483647LL)))) { G_B81_0 = L_149; G_B81_1 = ((int32_t)((int32_t)L_145|(int32_t)L_146)); G_B81_2 = __this; goto IL_05a5; } } { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_152 = ___node1; NullCheck(L_152); int32_t L_153 = L_152->get__n_5(); RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_154 = ___node1; NullCheck(L_154); int32_t L_155 = L_154->get__m_4(); G_B82_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_153, (int32_t)L_155)); G_B82_1 = G_B80_0; G_B82_2 = G_B80_1; G_B82_3 = G_B80_2; goto IL_05aa; } IL_05a5: { G_B82_0 = ((int32_t)2147483647LL); G_B82_1 = G_B81_0; G_B82_2 = G_B81_1; G_B82_3 = G_B81_2; } IL_05aa: { NullCheck(G_B82_3); RegexWriter_Emit_m9360B7E84BA94A432C3C9AB5427A30D81E0B2739(G_B82_3, G_B82_2, G_B82_1, G_B82_0, /*hidden argument*/NULL); return; } IL_05b0: { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_156 = ___node1; NullCheck(L_156); int32_t L_157 = L_156->get__type_0(); int32_t L_158 = V_0; RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_159 = ___node1; NullCheck(L_159); String_t* L_160 = L_159->get__str_2(); int32_t L_161; L_161 = RegexWriter_StringCode_m10DB52A16488268DF01C52E8163E899FA568FBC9(__this, L_160, /*hidden argument*/NULL); RegexWriter_Emit_mDCE0A2DF541B5FC6554C965A1C799ADCF6B4C55F(__this, ((int32_t)((int32_t)L_157|(int32_t)L_158)), L_161, /*hidden argument*/NULL); return; } IL_05cb: { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_162 = ___node1; NullCheck(L_162); int32_t L_163 = L_162->get__type_0(); int32_t L_164 = V_0; RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_165 = ___node1; NullCheck(L_165); String_t* L_166 = L_165->get__str_2(); int32_t L_167; L_167 = RegexWriter_StringCode_m10DB52A16488268DF01C52E8163E899FA568FBC9(__this, L_166, /*hidden argument*/NULL); RegexWriter_Emit_mDCE0A2DF541B5FC6554C965A1C799ADCF6B4C55F(__this, ((int32_t)((int32_t)L_163|(int32_t)L_164)), L_167, /*hidden argument*/NULL); return; } IL_05e6: { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_168 = ___node1; NullCheck(L_168); int32_t L_169 = L_168->get__type_0(); int32_t L_170 = V_0; RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_171 = ___node1; NullCheck(L_171); int32_t L_172 = L_171->get__m_4(); int32_t L_173; L_173 = RegexWriter_MapCapnum_mEF8C8E6F9916122D0FAE18A7B560F65738D004E6(__this, L_172, /*hidden argument*/NULL); RegexWriter_Emit_mDCE0A2DF541B5FC6554C965A1C799ADCF6B4C55F(__this, ((int32_t)((int32_t)L_169|(int32_t)L_170)), L_173, /*hidden argument*/NULL); return; } IL_0601: { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_174 = ___node1; NullCheck(L_174); int32_t L_175 = L_174->get__type_0(); RegexWriter_Emit_m0F2DFD7C6ED8AB199B3E8845A02A09F295A00E54(__this, L_175, /*hidden argument*/NULL); return; } IL_060e: { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_176 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var)), (uint32_t)1); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_177 = L_176; IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var))); CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_178; L_178 = CultureInfo_get_CurrentCulture_m99E5F5BD20445F2A73F7EA0014A4E783DF3840BB(/*hidden argument*/NULL); String_t* L_179; L_179 = Int32_ToString_m027A8C9419D2FE56ED5D2EE42A6F3B3CE0130471((int32_t*)(&___nodetype0), L_178, /*hidden argument*/NULL); NullCheck(L_177); ArrayElementTypeCheck (L_177, L_179); (L_177)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_179); String_t* L_180; L_180 = SR_GetString_m4FFAF18248A54C5B67E4760C5ED4869A87BCAD7F(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral1A521FB9CB5DD09DAE84196DD4656194D3654284)), L_177, /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_181; L_181 = RegexWriter_MakeException_mD2A13E8F5A67D36CAEE67D74C35A5D2B35111C26(__this, L_180, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_181, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RegexWriter_EmitFragment_m7692CDAFDAC6BE7D8BB2DD1EC225B6456047DE0B_RuntimeMethod_var))); } IL_0634: { 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 SR::GetString(System.String,System.Object[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SR_GetString_m4FFAF18248A54C5B67E4760C5ED4869A87BCAD7F (String_t* ___name0, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___args1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var); CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_0; L_0 = CultureInfo_get_InvariantCulture_m9FAAFAF8A00091EE1FCB7098AD3F163ECDF02164(/*hidden argument*/NULL); String_t* L_1 = ___name0; ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_2 = ___args1; String_t* L_3; L_3 = SR_GetString_m410D5693D8F75264B62B781794F559446EC84B3B(L_0, L_1, L_2, /*hidden argument*/NULL); return L_3; } } // System.String SR::GetString(System.Globalization.CultureInfo,System.String,System.Object[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SR_GetString_m410D5693D8F75264B62B781794F559446EC84B3B (CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * ___culture0, String_t* ___name1, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___args2, const RuntimeMethod* method) { { CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_0 = ___culture0; String_t* L_1 = ___name1; ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_2 = ___args2; String_t* L_3; L_3 = String_Format_mF96F0621DC567D09C07F1EAC66B31AD261A9DC21(L_0, L_1, L_2, /*hidden argument*/NULL); return L_3; } } // System.String SR::GetString(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SR_GetString_m9DC7F3962EEB239017A1A4C443F52047B5BC7462 (String_t* ___name0, const RuntimeMethod* method) { { String_t* L_0 = ___name0; 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.Net.Configuration.ServicePointManagerElement::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ServicePointManagerElement__ctor_mA04F31D124B40258FE6673A2B7B0F7B2CE787615 (ServicePointManagerElement_tBDFCD14FA5A9ABB1BE70A69621349A23B402989C * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ServicePointManagerElement__ctor_mA04F31D124B40258FE6673A2B7B0F7B2CE787615_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { il2cpp_codegen_raise_profile_exception(ServicePointManagerElement__ctor_mA04F31D124B40258FE6673A2B7B0F7B2CE787615_RuntimeMethod_var); return; } } // System.Configuration.ConfigurationPropertyCollection System.Net.Configuration.ServicePointManagerElement::get_Properties() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConfigurationPropertyCollection_t8C098DB59DF7BA2C2A71369978F4225B92B2F59B * ServicePointManagerElement_get_Properties_mCB80284E347910A59F7B5A495D5862533E41907A (ServicePointManagerElement_tBDFCD14FA5A9ABB1BE70A69621349A23B402989C * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ServicePointManagerElement_get_Properties_mCB80284E347910A59F7B5A495D5862533E41907A_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { il2cpp_codegen_raise_profile_exception(ServicePointManagerElement_get_Properties_mCB80284E347910A59F7B5A495D5862533E41907A_RuntimeMethod_var); return (ConfigurationPropertyCollection_t8C098DB59DF7BA2C2A71369978F4225B92B2F59B *)NULL; } } #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.Net.Configuration.SettingsSection::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SettingsSection__ctor_m09A6DF12BD56D2C0E0ABA8152004C486B1DE97E3 (SettingsSection_t711E6C3A32C96E69BF15E02FF55E58AF33EB95EB * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SettingsSection__ctor_m09A6DF12BD56D2C0E0ABA8152004C486B1DE97E3_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { il2cpp_codegen_raise_profile_exception(SettingsSection__ctor_m09A6DF12BD56D2C0E0ABA8152004C486B1DE97E3_RuntimeMethod_var); return; } } // System.Configuration.ConfigurationPropertyCollection System.Net.Configuration.SettingsSection::get_Properties() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConfigurationPropertyCollection_t8C098DB59DF7BA2C2A71369978F4225B92B2F59B * SettingsSection_get_Properties_mE5337C4AF39EA0A1B2AEB842CDBB16B8C0C1C4A0 (SettingsSection_t711E6C3A32C96E69BF15E02FF55E58AF33EB95EB * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SettingsSection_get_Properties_mE5337C4AF39EA0A1B2AEB842CDBB16B8C0C1C4A0_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { il2cpp_codegen_raise_profile_exception(SettingsSection_get_Properties_mE5337C4AF39EA0A1B2AEB842CDBB16B8C0C1C4A0_RuntimeMethod_var); return (ConfigurationPropertyCollection_t8C098DB59DF7BA2C2A71369978F4225B92B2F59B *)NULL; } } #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.RegularExpressions.SharedReference::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SharedReference__ctor_mCD9987FD08CB61180CE190A8DEF05E5AAF5C1087 (SharedReference_t74AB40C102A76A7523C72269A49D2C8FBDD83926 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WeakReference_tB8558D16C98417FD98C920C42C0CC5C9FF825C76_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { WeakReference_tB8558D16C98417FD98C920C42C0CC5C9FF825C76 * L_0 = (WeakReference_tB8558D16C98417FD98C920C42C0CC5C9FF825C76 *)il2cpp_codegen_object_new(WeakReference_tB8558D16C98417FD98C920C42C0CC5C9FF825C76_il2cpp_TypeInfo_var); WeakReference__ctor_m11BFDB039514BDCE23425FD90E8C414D051B2F13(L_0, NULL, /*hidden argument*/NULL); __this->set__ref_0(L_0); Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.ComponentModel.SingleConverter::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SingleConverter__ctor_m497283A0BDBBBE713A71C8A2E4A89D2B58627365 (SingleConverter_t75FCE834B5B2A74CB252021292C9DC205B322391 * __this, const RuntimeMethod* method) { { BaseNumberConverter__ctor_m18967D5B511402093936893A249438FB94D5BDA3(__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.Net.Configuration.SocketElement::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SocketElement__ctor_m5D5BA302FD35A1D25BB3A596954F92AB26C3DEF6 (SocketElement_t3A1494C40F44B3BE110D39607B00AE67C9962450 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SocketElement__ctor_m5D5BA302FD35A1D25BB3A596954F92AB26C3DEF6_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { il2cpp_codegen_raise_profile_exception(SocketElement__ctor_m5D5BA302FD35A1D25BB3A596954F92AB26C3DEF6_RuntimeMethod_var); return; } } // System.Configuration.ConfigurationPropertyCollection System.Net.Configuration.SocketElement::get_Properties() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConfigurationPropertyCollection_t8C098DB59DF7BA2C2A71369978F4225B92B2F59B * SocketElement_get_Properties_m9A46DB832A9DA2A3E8F3B74D83DD96EC8A180984 (SocketElement_t3A1494C40F44B3BE110D39607B00AE67C9962450 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SocketElement_get_Properties_m9A46DB832A9DA2A3E8F3B74D83DD96EC8A180984_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { il2cpp_codegen_raise_profile_exception(SocketElement_get_Properties_m9A46DB832A9DA2A3E8F3B74D83DD96EC8A180984_RuntimeMethod_var); return (ConfigurationPropertyCollection_t8C098DB59DF7BA2C2A71369978F4225B92B2F59B *)NULL; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Int32 System.Net.Sockets.SocketException::WSAGetLastError_internal() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SocketException_WSAGetLastError_internal_m99F586D3C14E2051DBB53BEF3716A740EA9223E2 (const RuntimeMethod* method) { typedef int32_t (*SocketException_WSAGetLastError_internal_m99F586D3C14E2051DBB53BEF3716A740EA9223E2_ftn) (); using namespace il2cpp::icalls; return ((SocketException_WSAGetLastError_internal_m99F586D3C14E2051DBB53BEF3716A740EA9223E2_ftn)System::System::Net::Sockets::SocketException::WSAGetLastError) (); } // System.Void System.Net.Sockets.SocketException::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SocketException__ctor_mA4FA4C30962B1DD852904297C47EB05A9C97B7F9 (SocketException_tB04D4347A4A41DC1A8583BBAE5A7C990F78C1E88 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Win32Exception_t4B7A329153AA0E88CA08533EFB6DB2F2A8E90950_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0; L_0 = SocketException_WSAGetLastError_internal_m99F586D3C14E2051DBB53BEF3716A740EA9223E2(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Win32Exception_t4B7A329153AA0E88CA08533EFB6DB2F2A8E90950_il2cpp_TypeInfo_var); Win32Exception__ctor_mF8FAD9681BA8B2EFBD1EDA7C690764FF60E85A6F(__this, L_0, /*hidden argument*/NULL); return; } } // System.Void System.Net.Sockets.SocketException::.ctor(System.Net.Sockets.SocketError) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SocketException__ctor_m8625815C7AFB0F3BF9287520D8F64A69199D6DCA (SocketException_tB04D4347A4A41DC1A8583BBAE5A7C990F78C1E88 * __this, int32_t ___socketError0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Win32Exception_t4B7A329153AA0E88CA08533EFB6DB2F2A8E90950_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___socketError0; IL2CPP_RUNTIME_CLASS_INIT(Win32Exception_t4B7A329153AA0E88CA08533EFB6DB2F2A8E90950_il2cpp_TypeInfo_var); Win32Exception__ctor_mF8FAD9681BA8B2EFBD1EDA7C690764FF60E85A6F(__this, L_0, /*hidden argument*/NULL); return; } } // System.Void System.Net.Sockets.SocketException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SocketException__ctor_m59175465D17AE63C1E18A1B25D80AD41708A51B5 (SocketException_tB04D4347A4A41DC1A8583BBAE5A7C990F78C1E88 * __this, SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * ___serializationInfo0, StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 ___streamingContext1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Win32Exception_t4B7A329153AA0E88CA08533EFB6DB2F2A8E90950_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * L_0 = ___serializationInfo0; StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 L_1 = ___streamingContext1; IL2CPP_RUNTIME_CLASS_INIT(Win32Exception_t4B7A329153AA0E88CA08533EFB6DB2F2A8E90950_il2cpp_TypeInfo_var); Win32Exception__ctor_m712FC6079EE6F92FAB0B3DDAFD652B24FF163CC6(__this, L_0, L_1, /*hidden argument*/NULL); return; } } // System.String System.Net.Sockets.SocketException::get_Message() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SocketException_get_Message_mAC33600C2CC211D3C5C6363DAE3A843FD3E366EE (SocketException_tB04D4347A4A41DC1A8583BBAE5A7C990F78C1E88 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2386E77CF610F786B06A91AF2C1B3FD2282D2745); s_Il2CppMethodInitialized = true; } { EndPoint_t18D4AE8D03090A2B262136E59F95CE61418C34DA * L_0 = __this->get_m_EndPoint_20(); if (L_0) { goto IL_000f; } } { String_t* L_1; L_1 = Exception_get_Message_mC7A96CEBF52567CEF612C8C75A99A735A83E883F(__this, /*hidden argument*/NULL); return L_1; } IL_000f: { String_t* L_2; L_2 = Exception_get_Message_mC7A96CEBF52567CEF612C8C75A99A735A83E883F(__this, /*hidden argument*/NULL); EndPoint_t18D4AE8D03090A2B262136E59F95CE61418C34DA * L_3 = __this->get_m_EndPoint_20(); NullCheck(L_3); String_t* L_4; L_4 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_3); String_t* L_5; L_5 = String_Concat_m89EAB4C6A96B0E5C3F87300D6BE78D386B9EFC44(L_2, _stringLiteral2386E77CF610F786B06A91AF2C1B3FD2282D2745, L_4, /*hidden argument*/NULL); 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.Int64 System.Diagnostics.Stopwatch::GetTimestamp() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Stopwatch_GetTimestamp_m8CAF46C3B4D7460B70C325D666B7F6470D2208DB (const RuntimeMethod* method) { typedef int64_t (*Stopwatch_GetTimestamp_m8CAF46C3B4D7460B70C325D666B7F6470D2208DB_ftn) (); using namespace il2cpp::icalls; return ((Stopwatch_GetTimestamp_m8CAF46C3B4D7460B70C325D666B7F6470D2208DB_ftn)System::System::Diagnostics::Stopwatch::GetTimestamp) (); } // System.Void System.Diagnostics.Stopwatch::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Stopwatch__ctor_mDE97B28A72294ABF18E6E9769086E202C3586CA7 (Stopwatch_t78C5E942A89311381E0D8894576457C33462DF89 * __this, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); return; } } // System.TimeSpan System.Diagnostics.Stopwatch::get_Elapsed() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 Stopwatch_get_Elapsed_m75C9FF87F9007FC8738B722002A8F8C302F5CFA6 (Stopwatch_t78C5E942A89311381E0D8894576457C33462DF89 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stopwatch_t78C5E942A89311381E0D8894576457C33462DF89_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(Stopwatch_t78C5E942A89311381E0D8894576457C33462DF89_il2cpp_TypeInfo_var); bool L_0 = ((Stopwatch_t78C5E942A89311381E0D8894576457C33462DF89_StaticFields*)il2cpp_codegen_static_fields_for(Stopwatch_t78C5E942A89311381E0D8894576457C33462DF89_il2cpp_TypeInfo_var))->get_IsHighResolution_1(); if (!L_0) { goto IL_0020; } } { int64_t L_1; L_1 = Stopwatch_get_ElapsedTicks_mEA2271BCCE37E6615EFC0B377D33C9DB63CA09E8(__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Stopwatch_t78C5E942A89311381E0D8894576457C33462DF89_il2cpp_TypeInfo_var); int64_t L_2 = ((Stopwatch_t78C5E942A89311381E0D8894576457C33462DF89_StaticFields*)il2cpp_codegen_static_fields_for(Stopwatch_t78C5E942A89311381E0D8894576457C33462DF89_il2cpp_TypeInfo_var))->get_Frequency_0(); IL2CPP_RUNTIME_CLASS_INIT(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_il2cpp_TypeInfo_var); TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 L_3; L_3 = TimeSpan_FromTicks_m25E4ADCCCC583B8D5A08B77577DE8E46CEBF7F9C(((int64_t)((int64_t)L_1/(int64_t)((int64_t)((int64_t)L_2/(int64_t)((int64_t)((int64_t)((int32_t)10000000))))))), /*hidden argument*/NULL); return L_3; } IL_0020: { int64_t L_4; L_4 = Stopwatch_get_ElapsedTicks_mEA2271BCCE37E6615EFC0B377D33C9DB63CA09E8(__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_il2cpp_TypeInfo_var); TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 L_5; L_5 = TimeSpan_FromTicks_m25E4ADCCCC583B8D5A08B77577DE8E46CEBF7F9C(L_4, /*hidden argument*/NULL); return L_5; } } // System.Int64 System.Diagnostics.Stopwatch::get_ElapsedMilliseconds() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Stopwatch_get_ElapsedMilliseconds_m6A137C9E989F74F61752FA86BB41ABAEC2A11FB5 (Stopwatch_t78C5E942A89311381E0D8894576457C33462DF89 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stopwatch_get_ElapsedMilliseconds_m6A137C9E989F74F61752FA86BB41ABAEC2A11FB5_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stopwatch_t78C5E942A89311381E0D8894576457C33462DF89_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 V_0; memset((&V_0), 0, sizeof(V_0)); { IL2CPP_RUNTIME_CLASS_INIT(Stopwatch_t78C5E942A89311381E0D8894576457C33462DF89_il2cpp_TypeInfo_var); bool L_0 = ((Stopwatch_t78C5E942A89311381E0D8894576457C33462DF89_StaticFields*)il2cpp_codegen_static_fields_for(Stopwatch_t78C5E942A89311381E0D8894576457C33462DF89_il2cpp_TypeInfo_var))->get_IsHighResolution_1(); if (!L_0) { goto IL_001b; } } { int64_t L_1; L_1 = Stopwatch_get_ElapsedTicks_mEA2271BCCE37E6615EFC0B377D33C9DB63CA09E8(__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Stopwatch_t78C5E942A89311381E0D8894576457C33462DF89_il2cpp_TypeInfo_var); int64_t L_2 = ((Stopwatch_t78C5E942A89311381E0D8894576457C33462DF89_StaticFields*)il2cpp_codegen_static_fields_for(Stopwatch_t78C5E942A89311381E0D8894576457C33462DF89_il2cpp_TypeInfo_var))->get_Frequency_0(); return ((int64_t)((int64_t)L_1/(int64_t)((int64_t)((int64_t)L_2/(int64_t)((int64_t)((int64_t)((int32_t)1000))))))); } IL_001b: { TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 L_3; L_3 = Stopwatch_get_Elapsed_m75C9FF87F9007FC8738B722002A8F8C302F5CFA6(__this, /*hidden argument*/NULL); V_0 = L_3; double L_4; L_4 = TimeSpan_get_TotalMilliseconds_m97368AE0609D865EB2A6BAE96AAA97AF8BDBF1C5((TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 *)(&V_0), /*hidden argument*/NULL); if (L_4 > (double)((std::numeric_limits<int64_t>::max)())) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), Stopwatch_get_ElapsedMilliseconds_m6A137C9E989F74F61752FA86BB41ABAEC2A11FB5_RuntimeMethod_var); return ((int64_t)((int64_t)L_4)); } } // System.Int64 System.Diagnostics.Stopwatch::get_ElapsedTicks() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Stopwatch_get_ElapsedTicks_mEA2271BCCE37E6615EFC0B377D33C9DB63CA09E8 (Stopwatch_t78C5E942A89311381E0D8894576457C33462DF89 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stopwatch_t78C5E942A89311381E0D8894576457C33462DF89_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { bool L_0 = __this->get_is_running_4(); if (L_0) { goto IL_000f; } } { int64_t L_1 = __this->get_elapsed_2(); return L_1; } IL_000f: { IL2CPP_RUNTIME_CLASS_INIT(Stopwatch_t78C5E942A89311381E0D8894576457C33462DF89_il2cpp_TypeInfo_var); int64_t L_2; L_2 = Stopwatch_GetTimestamp_m8CAF46C3B4D7460B70C325D666B7F6470D2208DB(/*hidden argument*/NULL); int64_t L_3 = __this->get_started_3(); int64_t L_4 = __this->get_elapsed_2(); return ((int64_t)il2cpp_codegen_add((int64_t)((int64_t)il2cpp_codegen_subtract((int64_t)L_2, (int64_t)L_3)), (int64_t)L_4)); } } // System.Void System.Diagnostics.Stopwatch::Start() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Stopwatch_Start_mED237B2178B2075FAED706E2A38111496B28DBDE (Stopwatch_t78C5E942A89311381E0D8894576457C33462DF89 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stopwatch_t78C5E942A89311381E0D8894576457C33462DF89_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { bool L_0 = __this->get_is_running_4(); if (!L_0) { goto IL_0009; } } { return; } IL_0009: { IL2CPP_RUNTIME_CLASS_INIT(Stopwatch_t78C5E942A89311381E0D8894576457C33462DF89_il2cpp_TypeInfo_var); int64_t L_1; L_1 = Stopwatch_GetTimestamp_m8CAF46C3B4D7460B70C325D666B7F6470D2208DB(/*hidden argument*/NULL); __this->set_started_3(L_1); __this->set_is_running_4((bool)1); return; } } // System.Void System.Diagnostics.Stopwatch::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Stopwatch__cctor_mC828CB8602A28CFD9436192D5A47475B31D34766 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stopwatch_t78C5E942A89311381E0D8894576457C33462DF89_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { ((Stopwatch_t78C5E942A89311381E0D8894576457C33462DF89_StaticFields*)il2cpp_codegen_static_fields_for(Stopwatch_t78C5E942A89311381E0D8894576457C33462DF89_il2cpp_TypeInfo_var))->set_Frequency_0(((int64_t)((int64_t)((int32_t)10000000)))); ((Stopwatch_t78C5E942A89311381E0D8894576457C33462DF89_StaticFields*)il2cpp_codegen_static_fields_for(Stopwatch_t78C5E942A89311381E0D8894576457C33462DF89_il2cpp_TypeInfo_var))->set_IsHighResolution_1((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 // System.Void System.ComponentModel.StringConverter::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringConverter__ctor_m078D8E99B4F9B0F2EF7A2D3857A6F044B7A16118 (StringConverter_tEC598B89E55C16F1669CFBC98F5C2308E2F232E5 * __this, const RuntimeMethod* method) { { TypeConverter__ctor_mCD87E569A2C4CB1331A069396FFA98E65726A16C(__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 Unity.ThrowStub::ThrowNotSupportedException() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowStub_ThrowNotSupportedException_mA667A039AC2AB853687594A68EFA90A799028D4F (const RuntimeMethod* method) { { PlatformNotSupportedException_t4F02BDC290520CA1A2452F51A8AC464F6D5E356E * L_0 = (PlatformNotSupportedException_t4F02BDC290520CA1A2452F51A8AC464F6D5E356E *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&PlatformNotSupportedException_t4F02BDC290520CA1A2452F51A8AC464F6D5E356E_il2cpp_TypeInfo_var))); PlatformNotSupportedException__ctor_mF4122BD5C9FF6CF441C2A4BCECF012EEF603AE05(L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ThrowStub_ThrowNotSupportedException_mA667A039AC2AB853687594A68EFA90A799028D4F_RuntimeMethod_var))); } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.ComponentModel.TimeSpanConverter::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimeSpanConverter__ctor_m8CCA5F7E15DAB96C97CF600394E637A9876AFB83 (TimeSpanConverter_t5F2498D1A18C834B1F4B9E7A3CF59069D2B72D2E * __this, const RuntimeMethod* method) { { TypeConverter__ctor_mCD87E569A2C4CB1331A069396FFA98E65726A16C(__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.ComponentModel.TypeConverter::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeConverter__ctor_mCD87E569A2C4CB1331A069396FFA98E65726A16C (TypeConverter_t004F185B630F00F509F08BD8F8D82471867323B4 * __this, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void System.ComponentModel.TypeConverterAttribute::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeConverterAttribute__ctor_m23863863F742A02AA8914FB5527AFBC15DCAFA8A (TypeConverterAttribute_t2C9750F302F83A7710D031C00A7CEBDA8F0C3F83 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Attribute__ctor_m5C1862A7DFC2C25A4797A8C5F681FBB5CB53ECE1(__this, /*hidden argument*/NULL); String_t* L_0 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); __this->set_typeName_0(L_0); return; } } // System.Void System.ComponentModel.TypeConverterAttribute::.ctor(System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeConverterAttribute__ctor_mE0B270E39E657178B253AB6F56FCA24E644868F4 (TypeConverterAttribute_t2C9750F302F83A7710D031C00A7CEBDA8F0C3F83 * __this, Type_t * ___type0, const RuntimeMethod* method) { { Attribute__ctor_m5C1862A7DFC2C25A4797A8C5F681FBB5CB53ECE1(__this, /*hidden argument*/NULL); Type_t * L_0 = ___type0; NullCheck(L_0); String_t* L_1; L_1 = VirtFuncInvoker0< String_t* >::Invoke(27 /* System.String System.Type::get_AssemblyQualifiedName() */, L_0); __this->set_typeName_0(L_1); return; } } // System.String System.ComponentModel.TypeConverterAttribute::get_ConverterTypeName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TypeConverterAttribute_get_ConverterTypeName_m699652BD16C42823BE283EA769647F676122EB6B (TypeConverterAttribute_t2C9750F302F83A7710D031C00A7CEBDA8F0C3F83 * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get_typeName_0(); return L_0; } } // System.Boolean System.ComponentModel.TypeConverterAttribute::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeConverterAttribute_Equals_mED3025C0A24E6809AA6E31FE5F498D18558584FB (TypeConverterAttribute_t2C9750F302F83A7710D031C00A7CEBDA8F0C3F83 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TypeConverterAttribute_t2C9750F302F83A7710D031C00A7CEBDA8F0C3F83_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } TypeConverterAttribute_t2C9750F302F83A7710D031C00A7CEBDA8F0C3F83 * V_0 = NULL; { RuntimeObject * L_0 = ___obj0; V_0 = ((TypeConverterAttribute_t2C9750F302F83A7710D031C00A7CEBDA8F0C3F83 *)IsInstSealed((RuntimeObject*)L_0, TypeConverterAttribute_t2C9750F302F83A7710D031C00A7CEBDA8F0C3F83_il2cpp_TypeInfo_var)); TypeConverterAttribute_t2C9750F302F83A7710D031C00A7CEBDA8F0C3F83 * L_1 = V_0; if (!L_1) { goto IL_001c; } } { TypeConverterAttribute_t2C9750F302F83A7710D031C00A7CEBDA8F0C3F83 * L_2 = V_0; NullCheck(L_2); String_t* L_3; L_3 = TypeConverterAttribute_get_ConverterTypeName_m699652BD16C42823BE283EA769647F676122EB6B_inline(L_2, /*hidden argument*/NULL); String_t* L_4 = __this->get_typeName_0(); bool L_5; L_5 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_3, L_4, /*hidden argument*/NULL); return L_5; } IL_001c: { return (bool)0; } } // System.Int32 System.ComponentModel.TypeConverterAttribute::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TypeConverterAttribute_GetHashCode_mFBABA9E1D19DC64BAAF3C9D0F1B82E42B5F66769 (TypeConverterAttribute_t2C9750F302F83A7710D031C00A7CEBDA8F0C3F83 * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get_typeName_0(); NullCheck(L_0); int32_t L_1; L_1 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, L_0); return L_1; } } // System.Void System.ComponentModel.TypeConverterAttribute::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeConverterAttribute__cctor_mE6F51C034AACA4A5318CE3704E898113C49BA507 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TypeConverterAttribute_t2C9750F302F83A7710D031C00A7CEBDA8F0C3F83_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { TypeConverterAttribute_t2C9750F302F83A7710D031C00A7CEBDA8F0C3F83 * L_0 = (TypeConverterAttribute_t2C9750F302F83A7710D031C00A7CEBDA8F0C3F83 *)il2cpp_codegen_object_new(TypeConverterAttribute_t2C9750F302F83A7710D031C00A7CEBDA8F0C3F83_il2cpp_TypeInfo_var); TypeConverterAttribute__ctor_m23863863F742A02AA8914FB5527AFBC15DCAFA8A(L_0, /*hidden argument*/NULL); ((TypeConverterAttribute_t2C9750F302F83A7710D031C00A7CEBDA8F0C3F83_StaticFields*)il2cpp_codegen_static_fields_for(TypeConverterAttribute_t2C9750F302F83A7710D031C00A7CEBDA8F0C3F83_il2cpp_TypeInfo_var))->set_Default_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.String System.UncNameHelper::ParseCanonicalName(System.String,System.Int32,System.Int32,System.Boolean&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* UncNameHelper_ParseCanonicalName_mAA1CF481E9789909F458A6C31A10DF991166F060 (String_t* ___str0, int32_t ___start1, int32_t ___end2, bool* ___loopback3, const RuntimeMethod* method) { { String_t* L_0 = ___str0; int32_t L_1 = ___start1; int32_t L_2 = ___end2; bool* L_3 = ___loopback3; String_t* L_4; L_4 = DomainNameHelper_ParseCanonicalName_m1C6E554993599045E72E090518D75FF532D2543E(L_0, L_1, L_2, (bool*)L_3, /*hidden argument*/NULL); return L_4; } } // System.Boolean System.UncNameHelper::IsValid(System.Char*,System.UInt16,System.Int32&,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UncNameHelper_IsValid_m7179761E2E8A1F136418B2E4FA00277A192CD38E (Il2CppChar* ___name0, uint16_t ___start1, int32_t* ___returnedEnd2, bool ___notImplicitFile3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } uint16_t V_0 = 0; bool V_1 = false; uint16_t V_2 = 0; { int32_t* L_0 = ___returnedEnd2; int32_t L_1 = *((int32_t*)L_0); V_0 = (uint16_t)((int32_t)((uint16_t)L_1)); uint16_t L_2 = ___start1; uint16_t L_3 = V_0; if ((!(((uint32_t)L_2) == ((uint32_t)L_3)))) { goto IL_000a; } } { return (bool)0; } IL_000a: { V_1 = (bool)0; uint16_t L_4 = ___start1; V_2 = L_4; goto IL_00a8; } IL_0013: { Il2CppChar* L_5 = ___name0; uint16_t L_6 = V_2; int32_t L_7 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_5, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_6), (int32_t)2))))); if ((((int32_t)L_7) == ((int32_t)((int32_t)47)))) { goto IL_004d; } } { Il2CppChar* L_8 = ___name0; uint16_t L_9 = V_2; int32_t L_10 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_8, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_9), (int32_t)2))))); if ((((int32_t)L_10) == ((int32_t)((int32_t)92)))) { goto IL_004d; } } { bool L_11 = ___notImplicitFile3; if (!L_11) { goto IL_0051; } } { Il2CppChar* L_12 = ___name0; uint16_t L_13 = V_2; int32_t L_14 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_12, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_13), (int32_t)2))))); if ((((int32_t)L_14) == ((int32_t)((int32_t)58)))) { goto IL_004d; } } { Il2CppChar* L_15 = ___name0; uint16_t L_16 = V_2; int32_t L_17 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_15, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_16), (int32_t)2))))); if ((((int32_t)L_17) == ((int32_t)((int32_t)63)))) { goto IL_004d; } } { Il2CppChar* L_18 = ___name0; uint16_t L_19 = V_2; int32_t L_20 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_18, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_19), (int32_t)2))))); if ((!(((uint32_t)L_20) == ((uint32_t)((int32_t)35))))) { goto IL_0051; } } IL_004d: { uint16_t L_21 = V_2; V_0 = L_21; goto IL_00af; } IL_0051: { Il2CppChar* L_22 = ___name0; uint16_t L_23 = V_2; int32_t L_24 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_22, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_23), (int32_t)2))))); if ((!(((uint32_t)L_24) == ((uint32_t)((int32_t)46))))) { goto IL_0063; } } { uint16_t L_25 = V_2; V_2 = (uint16_t)((int32_t)((uint16_t)((int32_t)il2cpp_codegen_add((int32_t)L_25, (int32_t)1)))); goto IL_00af; } IL_0063: { Il2CppChar* L_26 = ___name0; uint16_t L_27 = V_2; int32_t L_28 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_26, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_27), (int32_t)2))))); IL2CPP_RUNTIME_CLASS_INIT(Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_il2cpp_TypeInfo_var); bool L_29; L_29 = Char_IsLetter_mF204E476D37A9EC10C965929AF16A362CBEA8950(L_28, /*hidden argument*/NULL); if (L_29) { goto IL_0087; } } { Il2CppChar* L_30 = ___name0; uint16_t L_31 = V_2; int32_t L_32 = *((uint16_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))))); if ((((int32_t)L_32) == ((int32_t)((int32_t)45)))) { goto IL_0087; } } { Il2CppChar* L_33 = ___name0; uint16_t L_34 = V_2; int32_t L_35 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_33, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_34), (int32_t)2))))); if ((!(((uint32_t)L_35) == ((uint32_t)((int32_t)95))))) { goto IL_008b; } } IL_0087: { V_1 = (bool)1; goto IL_00a3; } IL_008b: { Il2CppChar* L_36 = ___name0; uint16_t L_37 = V_2; int32_t L_38 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_36, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_37), (int32_t)2))))); if ((((int32_t)L_38) < ((int32_t)((int32_t)48)))) { goto IL_00a1; } } { Il2CppChar* L_39 = ___name0; uint16_t L_40 = V_2; int32_t L_41 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_39, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_40), (int32_t)2))))); if ((((int32_t)L_41) <= ((int32_t)((int32_t)57)))) { goto IL_00a3; } } IL_00a1: { return (bool)0; } IL_00a3: { uint16_t L_42 = V_2; V_2 = (uint16_t)((int32_t)((uint16_t)((int32_t)il2cpp_codegen_add((int32_t)L_42, (int32_t)1)))); } IL_00a8: { uint16_t L_43 = V_2; uint16_t L_44 = V_0; if ((((int32_t)L_43) < ((int32_t)L_44))) { goto IL_0013; } } IL_00af: { bool L_45 = V_1; if (L_45) { goto IL_0169; } } { return (bool)0; } IL_00b7: { Il2CppChar* L_46 = ___name0; uint16_t L_47 = V_2; int32_t L_48 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_46, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_47), (int32_t)2))))); if ((((int32_t)L_48) == ((int32_t)((int32_t)47)))) { goto IL_00f1; } } { Il2CppChar* L_49 = ___name0; uint16_t L_50 = V_2; int32_t L_51 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_49, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_50), (int32_t)2))))); if ((((int32_t)L_51) == ((int32_t)((int32_t)92)))) { goto IL_00f1; } } { bool L_52 = ___notImplicitFile3; if (!L_52) { goto IL_00f5; } } { Il2CppChar* L_53 = ___name0; uint16_t L_54 = V_2; int32_t L_55 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_53, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_54), (int32_t)2))))); if ((((int32_t)L_55) == ((int32_t)((int32_t)58)))) { goto IL_00f1; } } { Il2CppChar* L_56 = ___name0; uint16_t L_57 = V_2; int32_t L_58 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_56, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_57), (int32_t)2))))); if ((((int32_t)L_58) == ((int32_t)((int32_t)63)))) { goto IL_00f1; } } { Il2CppChar* L_59 = ___name0; uint16_t L_60 = V_2; int32_t L_61 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_59, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_60), (int32_t)2))))); if ((!(((uint32_t)L_61) == ((uint32_t)((int32_t)35))))) { goto IL_00f5; } } IL_00f1: { uint16_t L_62 = V_2; V_0 = L_62; goto IL_0170; } IL_00f5: { Il2CppChar* L_63 = ___name0; uint16_t L_64 = V_2; int32_t L_65 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_63, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_64), (int32_t)2))))); if ((!(((uint32_t)L_65) == ((uint32_t)((int32_t)46))))) { goto IL_011c; } } { bool L_66 = V_1; if (!L_66) { goto IL_0116; } } { uint16_t L_67 = V_2; uint16_t L_68 = ___start1; if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_67, (int32_t)1))) < ((int32_t)L_68))) { goto IL_0118; } } { Il2CppChar* L_69 = ___name0; uint16_t L_70 = V_2; int32_t L_71 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_69, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_70, (int32_t)1))), (int32_t)2))))); if ((!(((uint32_t)L_71) == ((uint32_t)((int32_t)46))))) { goto IL_0118; } } IL_0116: { return (bool)0; } IL_0118: { V_1 = (bool)0; goto IL_0164; } IL_011c: { Il2CppChar* L_72 = ___name0; uint16_t L_73 = V_2; int32_t L_74 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_72, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_73), (int32_t)2))))); if ((((int32_t)L_74) == ((int32_t)((int32_t)45)))) { goto IL_0132; } } { Il2CppChar* L_75 = ___name0; uint16_t L_76 = V_2; int32_t L_77 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_75, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_76), (int32_t)2))))); if ((!(((uint32_t)L_77) == ((uint32_t)((int32_t)95))))) { goto IL_0137; } } IL_0132: { bool L_78 = V_1; if (L_78) { goto IL_0164; } } { return (bool)0; } IL_0137: { Il2CppChar* L_79 = ___name0; uint16_t L_80 = V_2; int32_t L_81 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_79, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_80), (int32_t)2))))); IL2CPP_RUNTIME_CLASS_INIT(Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_il2cpp_TypeInfo_var); bool L_82; L_82 = Char_IsLetter_mF204E476D37A9EC10C965929AF16A362CBEA8950(L_81, /*hidden argument*/NULL); if (L_82) { goto IL_015b; } } { Il2CppChar* L_83 = ___name0; uint16_t L_84 = V_2; int32_t L_85 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_83, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_84), (int32_t)2))))); if ((((int32_t)L_85) < ((int32_t)((int32_t)48)))) { goto IL_0162; } } { Il2CppChar* L_86 = ___name0; uint16_t L_87 = V_2; int32_t L_88 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_86, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_87), (int32_t)2))))); if ((((int32_t)L_88) > ((int32_t)((int32_t)57)))) { goto IL_0162; } } IL_015b: { bool L_89 = V_1; if (L_89) { goto IL_0164; } } { V_1 = (bool)1; goto IL_0164; } IL_0162: { return (bool)0; } IL_0164: { uint16_t L_90 = V_2; V_2 = (uint16_t)((int32_t)((uint16_t)((int32_t)il2cpp_codegen_add((int32_t)L_90, (int32_t)1)))); } IL_0169: { uint16_t L_91 = V_2; uint16_t L_92 = V_0; if ((((int32_t)L_91) < ((int32_t)L_92))) { goto IL_00b7; } } IL_0170: { uint16_t L_93 = V_2; uint16_t L_94 = ___start1; if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_93, (int32_t)1))) < ((int32_t)L_94))) { goto IL_0185; } } { Il2CppChar* L_95 = ___name0; uint16_t L_96 = V_2; int32_t L_97 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_95, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_96, (int32_t)1))), (int32_t)2))))); if ((!(((uint32_t)L_97) == ((uint32_t)((int32_t)46))))) { goto IL_0185; } } { V_1 = (bool)1; } IL_0185: { bool L_98 = V_1; if (L_98) { goto IL_018a; } } { return (bool)0; } IL_018a: { int32_t* L_99 = ___returnedEnd2; uint16_t L_100 = V_0; *((int32_t*)L_99) = (int32_t)L_100; return (bool)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 #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.Uri::get_IsImplicitFile() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Uri_get_IsImplicitFile_m58AC900A18C84E93F4611F97639112F801629DAA (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, const RuntimeMethod* method) { { uint64_t L_0 = __this->get_m_Flags_17(); return (bool)((!(((uint64_t)((int64_t)((int64_t)L_0&(int64_t)((int64_t)((int64_t)((int32_t)536870912)))))) <= ((uint64_t)((int64_t)((int64_t)0)))))? 1 : 0); } } // System.Boolean System.Uri::get_IsUncOrDosPath() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Uri_get_IsUncOrDosPath_mF197920D1C1DBDE10A3478855D89D36210D8CE94 (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, const RuntimeMethod* method) { { uint64_t L_0 = __this->get_m_Flags_17(); return (bool)((!(((uint64_t)((int64_t)((int64_t)L_0&(int64_t)((int64_t)((int64_t)((int32_t)402653184)))))) <= ((uint64_t)((int64_t)((int64_t)0)))))? 1 : 0); } } // System.Boolean System.Uri::get_IsDosPath() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Uri_get_IsDosPath_m3374B9D26D6B547862ACB2E617AB6F96CA31A5AF (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, const RuntimeMethod* method) { { uint64_t L_0 = __this->get_m_Flags_17(); return (bool)((!(((uint64_t)((int64_t)((int64_t)L_0&(int64_t)((int64_t)((int64_t)((int32_t)134217728)))))) <= ((uint64_t)((int64_t)((int64_t)0)))))? 1 : 0); } } // System.Uri/Flags System.Uri::get_HostType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Uri_get_HostType_m6C142BC37D44CF1F53D80627455BC6B1CB747820 (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, const RuntimeMethod* method) { { uint64_t L_0 = __this->get_m_Flags_17(); return (uint64_t)(((int64_t)((int64_t)L_0&(int64_t)((int64_t)((int64_t)((int32_t)458752)))))); } } // System.UriParser System.Uri::get_Syntax() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * Uri_get_Syntax_mF7002491E720A700F68312C49337C6F5D91ABCC9 (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, const RuntimeMethod* method) { { UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_0 = __this->get_m_Syntax_15(); return L_0; } } // System.Boolean System.Uri::get_IsNotAbsoluteUri() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Uri_get_IsNotAbsoluteUri_m7394FF83375B299BA634518D3104903AFEAE3177 (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, const RuntimeMethod* method) { { UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_0 = __this->get_m_Syntax_15(); return (bool)((((RuntimeObject*)(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A *)L_0) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0); } } // System.Boolean System.Uri::IriParsingStatic(System.UriParser) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Uri_IriParsingStatic_m0F2797FEA328A2B1A72EE03F9BD88C577A7A0471 (UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * ___syntax0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); bool L_0 = ((Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields*)il2cpp_codegen_static_fields_for(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var))->get_s_IriParsing_23(); il2cpp_codegen_memory_barrier(); if (!L_0) { goto IL_0020; } } { UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_1 = ___syntax0; if (!L_1) { goto IL_0019; } } { UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_2 = ___syntax0; NullCheck(L_2); bool L_3; L_3 = UriParser_InFact_m4E58BAFAB5A9BC24854C815FC093E16D4F1CFA4D(L_2, ((int32_t)268435456), /*hidden argument*/NULL); if (L_3) { goto IL_001e; } } IL_0019: { UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_4 = ___syntax0; return (bool)((((RuntimeObject*)(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A *)L_4) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0); } IL_001e: { return (bool)1; } IL_0020: { return (bool)0; } } // System.Boolean System.Uri::get_AllowIdn() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Uri_get_AllowIdn_m4031E81D7D0E44FC81C6951D78B2C836EC8270D7 (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_0 = __this->get_m_Syntax_15(); if (!L_0) { goto IL_0043; } } { UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_1 = __this->get_m_Syntax_15(); NullCheck(L_1); int32_t L_2; L_2 = UriParser_get_Flags_mDAA0D828057CA2CA4493FD152D3760E975BAE7F0_inline(L_1, /*hidden argument*/NULL); if (!((int32_t)((int32_t)L_2&(int32_t)((int32_t)67108864)))) { goto IL_0043; } } { IL2CPP_RUNTIME_CLASS_INIT(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); int32_t L_3 = ((Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields*)il2cpp_codegen_static_fields_for(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var))->get_s_IdnScope_22(); il2cpp_codegen_memory_barrier(); if ((((int32_t)L_3) == ((int32_t)2))) { goto IL_0041; } } { IL2CPP_RUNTIME_CLASS_INIT(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); int32_t L_4 = ((Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields*)il2cpp_codegen_static_fields_for(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var))->get_s_IdnScope_22(); il2cpp_codegen_memory_barrier(); if ((!(((uint32_t)L_4) == ((uint32_t)1)))) { goto IL_003f; } } { bool L_5; L_5 = Uri_NotAny_m2C222924AE10957D835ECBC887D456FB30DCF969(__this, ((int64_t)137438953472LL), /*hidden argument*/NULL); return L_5; } IL_003f: { return (bool)0; } IL_0041: { return (bool)1; } IL_0043: { return (bool)0; } } // System.Boolean System.Uri::AllowIdnStatic(System.UriParser,System.Uri/Flags) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Uri_AllowIdnStatic_mF38FDCA5248AA93F8823A192D61E2180FEC9C41C (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * ___syntax0, uint64_t ___flags1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_0 = ___syntax0; if (!L_0) { goto IL_0039; } } { UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_1 = ___syntax0; NullCheck(L_1); int32_t L_2; L_2 = UriParser_get_Flags_mDAA0D828057CA2CA4493FD152D3760E975BAE7F0_inline(L_1, /*hidden argument*/NULL); if (!((int32_t)((int32_t)L_2&(int32_t)((int32_t)67108864)))) { goto IL_0039; } } { IL2CPP_RUNTIME_CLASS_INIT(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); int32_t L_3 = ((Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields*)il2cpp_codegen_static_fields_for(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var))->get_s_IdnScope_22(); il2cpp_codegen_memory_barrier(); if ((((int32_t)L_3) == ((int32_t)2))) { goto IL_0037; } } { IL2CPP_RUNTIME_CLASS_INIT(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); int32_t L_4 = ((Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields*)il2cpp_codegen_static_fields_for(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var))->get_s_IdnScope_22(); il2cpp_codegen_memory_barrier(); if ((!(((uint32_t)L_4) == ((uint32_t)1)))) { goto IL_0035; } } { uint64_t L_5 = ___flags1; IL2CPP_RUNTIME_CLASS_INIT(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); bool L_6; L_6 = Uri_StaticNotAny_mA7DA612608D1C43837E3DC3E31C02F994746736C(L_5, ((int64_t)137438953472LL), /*hidden argument*/NULL); return L_6; } IL_0035: { return (bool)0; } IL_0037: { return (bool)1; } IL_0039: { return (bool)0; } } // System.Boolean System.Uri::IsIntranet(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Uri_IsIntranet_m89BF3C395C8D960B103DF056976B7C369231270C (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, String_t* ___schemeHost0, const RuntimeMethod* method) { { return (bool)0; } } // System.Boolean System.Uri::get_UserDrivenParsing() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Uri_get_UserDrivenParsing_mF09087D4DE9A0823EBF1FC0C14101335D01393F2 (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, const RuntimeMethod* method) { { uint64_t L_0 = __this->get_m_Flags_17(); return (bool)((!(((uint64_t)((int64_t)((int64_t)L_0&(int64_t)((int64_t)((int64_t)((int32_t)16777216)))))) <= ((uint64_t)((int64_t)((int64_t)0)))))? 1 : 0); } } // System.Void System.Uri::SetUserDrivenParsing() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Uri_SetUserDrivenParsing_mDF0BFAFE946EAD9122ED2A542132902D7E47FD9C (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, const RuntimeMethod* method) { { uint64_t L_0 = __this->get_m_Flags_17(); __this->set_m_Flags_17(((int64_t)((int64_t)((int64_t)((int64_t)((int32_t)16777216)))|(int64_t)((int64_t)((int64_t)L_0&(int64_t)((int64_t)((int64_t)((int32_t)524288)))))))); return; } } // System.UInt16 System.Uri::get_SecuredPathIndex() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Uri_get_SecuredPathIndex_m0BE7920E94AA002B4CD2D568BD6E0FD91F0D7F0B (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, const RuntimeMethod* method) { Il2CppChar V_0 = 0x0; int32_t G_B5_0 = 0; { bool L_0; L_0 = Uri_get_IsDosPath_m3374B9D26D6B547862ACB2E617AB6F96CA31A5AF(__this, /*hidden argument*/NULL); if (!L_0) { goto IL_0034; } } { String_t* L_1 = __this->get_m_String_13(); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_2 = __this->get_m_Info_18(); NullCheck(L_2); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_3 = L_2->get_address_of_Offset_3(); uint16_t L_4 = L_3->get_Path_4(); NullCheck(L_1); Il2CppChar L_5; L_5 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_1, L_4, /*hidden argument*/NULL); V_0 = L_5; Il2CppChar L_6 = V_0; if ((((int32_t)L_6) == ((int32_t)((int32_t)47)))) { goto IL_0031; } } { Il2CppChar L_7 = V_0; if ((((int32_t)L_7) == ((int32_t)((int32_t)92)))) { goto IL_0031; } } { G_B5_0 = 2; goto IL_0032; } IL_0031: { G_B5_0 = 3; } IL_0032: { return (uint16_t)((int32_t)((uint16_t)G_B5_0)); } IL_0034: { return (uint16_t)0; } } // System.Boolean System.Uri::NotAny(System.Uri/Flags) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Uri_NotAny_m2C222924AE10957D835ECBC887D456FB30DCF969 (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, uint64_t ___flags0, const RuntimeMethod* method) { { uint64_t L_0 = __this->get_m_Flags_17(); uint64_t L_1 = ___flags0; return (bool)((((int64_t)((int64_t)((int64_t)L_0&(int64_t)L_1))) == ((int64_t)((int64_t)((int64_t)0))))? 1 : 0); } } // System.Boolean System.Uri::InFact(System.Uri/Flags) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Uri_InFact_mF6A06FA7246740D26093421D41D18000AC2CC0C4 (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, uint64_t ___flags0, const RuntimeMethod* method) { { uint64_t L_0 = __this->get_m_Flags_17(); uint64_t L_1 = ___flags0; return (bool)((!(((uint64_t)((int64_t)((int64_t)L_0&(int64_t)L_1))) <= ((uint64_t)((int64_t)((int64_t)0)))))? 1 : 0); } } // System.Boolean System.Uri::StaticNotAny(System.Uri/Flags,System.Uri/Flags) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Uri_StaticNotAny_mA7DA612608D1C43837E3DC3E31C02F994746736C (uint64_t ___allFlags0, uint64_t ___checkFlags1, const RuntimeMethod* method) { { uint64_t L_0 = ___allFlags0; uint64_t L_1 = ___checkFlags1; return (bool)((((int64_t)((int64_t)((int64_t)L_0&(int64_t)L_1))) == ((int64_t)((int64_t)((int64_t)0))))? 1 : 0); } } // System.Boolean System.Uri::StaticInFact(System.Uri/Flags,System.Uri/Flags) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Uri_StaticInFact_m6B17A3B95B81DABD390B643ABD9ADAA316D5EF98 (uint64_t ___allFlags0, uint64_t ___checkFlags1, const RuntimeMethod* method) { { uint64_t L_0 = ___allFlags0; uint64_t L_1 = ___checkFlags1; return (bool)((!(((uint64_t)((int64_t)((int64_t)L_0&(int64_t)L_1))) <= ((uint64_t)((int64_t)((int64_t)0)))))? 1 : 0); } } // System.Uri/UriInfo System.Uri::EnsureUriInfo() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * Uri_EnsureUriInfo_m5FA3DF1CD26867815CE1F247A47530E1D7E35F7E (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, const RuntimeMethod* method) { uint64_t V_0 = 0; { uint64_t L_0 = __this->get_m_Flags_17(); V_0 = L_0; uint64_t L_1 = __this->get_m_Flags_17(); if (((int64_t)((int64_t)L_1&(int64_t)((int64_t)((int64_t)((int32_t)1073741824)))))) { goto IL_001d; } } { uint64_t L_2 = V_0; Uri_CreateUriInfo_mD8864BD45B6397D4C3AED68BA2D3EAEB520DB9E6(__this, L_2, /*hidden argument*/NULL); } IL_001d: { UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_3 = __this->get_m_Info_18(); return L_3; } } // System.Void System.Uri::EnsureParseRemaining() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Uri_EnsureParseRemaining_m7BC86BEFE07F56D480C9ACBCE64983806F6789BB (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, const RuntimeMethod* method) { { uint64_t L_0 = __this->get_m_Flags_17(); if (((int64_t)((int64_t)L_0&(int64_t)((int64_t)((uint64_t)((uint32_t)((uint32_t)((int32_t)-2147483648LL)))))))) { goto IL_0015; } } { Uri_ParseRemaining_m8C4350479C64906DDE464595F8BE5F8C14F2038D(__this, /*hidden argument*/NULL); } IL_0015: { return; } } // System.Void System.Uri::EnsureHostString(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Uri_EnsureHostString_m47897EC94F83DFE1CA16CE71167DDD3CC986C22A (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, bool ___allowDnsOptimization0, const RuntimeMethod* method) { { UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_0; L_0 = Uri_EnsureUriInfo_m5FA3DF1CD26867815CE1F247A47530E1D7E35F7E(__this, /*hidden argument*/NULL); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_1 = __this->get_m_Info_18(); NullCheck(L_1); String_t* L_2 = L_1->get_Host_0(); if (L_2) { goto IL_002c; } } { bool L_3 = ___allowDnsOptimization0; if (!L_3) { goto IL_0026; } } { bool L_4; L_4 = Uri_InFact_mF6A06FA7246740D26093421D41D18000AC2CC0C4(__this, ((int64_t)((int64_t)((int32_t)33554432))), /*hidden argument*/NULL); if (!L_4) { goto IL_0026; } } { return; } IL_0026: { Uri_CreateHostString_m2C549411869B57ADE6595800B6493BDB0A52F124(__this, /*hidden argument*/NULL); } IL_002c: { return; } } // System.Void System.Uri::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Uri__ctor_m7724F43B1525624FFF97A774B6B909B075714D5C (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, String_t* ___uriString0, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); String_t* L_0 = ___uriString0; if (L_0) { goto IL_0014; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6D153343DC0552ABAFC2B893F453DC72854A37BE)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Uri__ctor_m7724F43B1525624FFF97A774B6B909B075714D5C_RuntimeMethod_var))); } IL_0014: { String_t* L_2 = ___uriString0; Uri_CreateThis_m86E72577BCB9A6FDF5A0EC8EDFDD5F41AD3256FC(__this, L_2, (bool)0, 1, /*hidden argument*/NULL); return; } } // System.UriFormatException System.Uri::GetException(System.ParsingError) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D * Uri_GetException_m6A158C16E69136DF56BCF19CC4C7DCCC2601CF84 (int32_t ___err0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0D714861C7EC595B0F134B25D51B6C3D17B97BE7); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0ECCA26D6E6512BFFD6AC0372868F35B289A0AC9); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral10967EC4A6C481862CE1D9E400B88D2400A58495); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2548827C46E1449217FD7CD3DA9F653E7BC05534); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2659A93A14DB81D09000B3E98CBB7FBD3940D067); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4FB7CA16AB7B5A4F956554894A7222DF13F448AA); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral659F36F170A47067B1A80CD9B6619237197BD872); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral82F0E6BA3FD6F5AA7F9F5A798046A3B615F6D560); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD90CDA62B9AE646096CCD287ACE999D2EFB8ADA5); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDDA0FEDECC3765A8D5F295C4B302D615D29F3483); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE610AFD3290809B1D62848F53491246DB230B5BB); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___err0; switch (L_0) { case 0: { goto IL_003f; } case 1: { goto IL_0041; } case 2: { goto IL_0051; } case 3: { goto IL_0061; } case 4: { goto IL_0071; } case 5: { goto IL_0081; } case 6: { goto IL_0091; } case 7: { goto IL_00a1; } case 8: { goto IL_00b1; } case 9: { goto IL_00c1; } case 10: { goto IL_00d1; } case 11: { goto IL_00e1; } case 12: { goto IL_00f1; } } } { goto IL_0101; } IL_003f: { return (UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D *)NULL; } IL_0041: { String_t* L_1; L_1 = SR_GetString_m9DC7F3962EEB239017A1A4C443F52047B5BC7462(_stringLiteral82F0E6BA3FD6F5AA7F9F5A798046A3B615F6D560, /*hidden argument*/NULL); UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D * L_2 = (UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D *)il2cpp_codegen_object_new(UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D_il2cpp_TypeInfo_var); UriFormatException__ctor_mC9CB29EF00CB33869659306AC3FCA69342FD044F(L_2, L_1, /*hidden argument*/NULL); return L_2; } IL_0051: { String_t* L_3; L_3 = SR_GetString_m9DC7F3962EEB239017A1A4C443F52047B5BC7462(_stringLiteral0D714861C7EC595B0F134B25D51B6C3D17B97BE7, /*hidden argument*/NULL); UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D * L_4 = (UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D *)il2cpp_codegen_object_new(UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D_il2cpp_TypeInfo_var); UriFormatException__ctor_mC9CB29EF00CB33869659306AC3FCA69342FD044F(L_4, L_3, /*hidden argument*/NULL); return L_4; } IL_0061: { String_t* L_5; L_5 = SR_GetString_m9DC7F3962EEB239017A1A4C443F52047B5BC7462(_stringLiteralE610AFD3290809B1D62848F53491246DB230B5BB, /*hidden argument*/NULL); UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D * L_6 = (UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D *)il2cpp_codegen_object_new(UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D_il2cpp_TypeInfo_var); UriFormatException__ctor_mC9CB29EF00CB33869659306AC3FCA69342FD044F(L_6, L_5, /*hidden argument*/NULL); return L_6; } IL_0071: { String_t* L_7; L_7 = SR_GetString_m9DC7F3962EEB239017A1A4C443F52047B5BC7462(_stringLiteral659F36F170A47067B1A80CD9B6619237197BD872, /*hidden argument*/NULL); UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D * L_8 = (UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D *)il2cpp_codegen_object_new(UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D_il2cpp_TypeInfo_var); UriFormatException__ctor_mC9CB29EF00CB33869659306AC3FCA69342FD044F(L_8, L_7, /*hidden argument*/NULL); return L_8; } IL_0081: { String_t* L_9; L_9 = SR_GetString_m9DC7F3962EEB239017A1A4C443F52047B5BC7462(_stringLiteralD90CDA62B9AE646096CCD287ACE999D2EFB8ADA5, /*hidden argument*/NULL); UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D * L_10 = (UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D *)il2cpp_codegen_object_new(UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D_il2cpp_TypeInfo_var); UriFormatException__ctor_mC9CB29EF00CB33869659306AC3FCA69342FD044F(L_10, L_9, /*hidden argument*/NULL); return L_10; } IL_0091: { String_t* L_11; L_11 = SR_GetString_m9DC7F3962EEB239017A1A4C443F52047B5BC7462(_stringLiteralDDA0FEDECC3765A8D5F295C4B302D615D29F3483, /*hidden argument*/NULL); UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D * L_12 = (UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D *)il2cpp_codegen_object_new(UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D_il2cpp_TypeInfo_var); UriFormatException__ctor_mC9CB29EF00CB33869659306AC3FCA69342FD044F(L_12, L_11, /*hidden argument*/NULL); return L_12; } IL_00a1: { String_t* L_13; L_13 = SR_GetString_m9DC7F3962EEB239017A1A4C443F52047B5BC7462(_stringLiteral2548827C46E1449217FD7CD3DA9F653E7BC05534, /*hidden argument*/NULL); UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D * L_14 = (UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D *)il2cpp_codegen_object_new(UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D_il2cpp_TypeInfo_var); UriFormatException__ctor_mC9CB29EF00CB33869659306AC3FCA69342FD044F(L_14, L_13, /*hidden argument*/NULL); return L_14; } IL_00b1: { String_t* L_15; L_15 = SR_GetString_m9DC7F3962EEB239017A1A4C443F52047B5BC7462(_stringLiteral2659A93A14DB81D09000B3E98CBB7FBD3940D067, /*hidden argument*/NULL); UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D * L_16 = (UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D *)il2cpp_codegen_object_new(UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D_il2cpp_TypeInfo_var); UriFormatException__ctor_mC9CB29EF00CB33869659306AC3FCA69342FD044F(L_16, L_15, /*hidden argument*/NULL); return L_16; } IL_00c1: { String_t* L_17; L_17 = SR_GetString_m9DC7F3962EEB239017A1A4C443F52047B5BC7462(_stringLiteral82F0E6BA3FD6F5AA7F9F5A798046A3B615F6D560, /*hidden argument*/NULL); UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D * L_18 = (UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D *)il2cpp_codegen_object_new(UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D_il2cpp_TypeInfo_var); UriFormatException__ctor_mC9CB29EF00CB33869659306AC3FCA69342FD044F(L_18, L_17, /*hidden argument*/NULL); return L_18; } IL_00d1: { String_t* L_19; L_19 = SR_GetString_m9DC7F3962EEB239017A1A4C443F52047B5BC7462(_stringLiteral10967EC4A6C481862CE1D9E400B88D2400A58495, /*hidden argument*/NULL); UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D * L_20 = (UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D *)il2cpp_codegen_object_new(UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D_il2cpp_TypeInfo_var); UriFormatException__ctor_mC9CB29EF00CB33869659306AC3FCA69342FD044F(L_20, L_19, /*hidden argument*/NULL); return L_20; } IL_00e1: { String_t* L_21; L_21 = SR_GetString_m9DC7F3962EEB239017A1A4C443F52047B5BC7462(_stringLiteral0ECCA26D6E6512BFFD6AC0372868F35B289A0AC9, /*hidden argument*/NULL); UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D * L_22 = (UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D *)il2cpp_codegen_object_new(UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D_il2cpp_TypeInfo_var); UriFormatException__ctor_mC9CB29EF00CB33869659306AC3FCA69342FD044F(L_22, L_21, /*hidden argument*/NULL); return L_22; } IL_00f1: { String_t* L_23; L_23 = SR_GetString_m9DC7F3962EEB239017A1A4C443F52047B5BC7462(_stringLiteral4FB7CA16AB7B5A4F956554894A7222DF13F448AA, /*hidden argument*/NULL); UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D * L_24 = (UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D *)il2cpp_codegen_object_new(UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D_il2cpp_TypeInfo_var); UriFormatException__ctor_mC9CB29EF00CB33869659306AC3FCA69342FD044F(L_24, L_23, /*hidden argument*/NULL); return L_24; } IL_0101: { String_t* L_25; L_25 = SR_GetString_m9DC7F3962EEB239017A1A4C443F52047B5BC7462(_stringLiteral82F0E6BA3FD6F5AA7F9F5A798046A3B615F6D560, /*hidden argument*/NULL); UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D * L_26 = (UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D *)il2cpp_codegen_object_new(UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D_il2cpp_TypeInfo_var); UriFormatException__ctor_mC9CB29EF00CB33869659306AC3FCA69342FD044F(L_26, L_25, /*hidden argument*/NULL); return L_26; } } // System.Void System.Uri::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Uri__ctor_m8AEBDC795304F6C78A02BC41BB4C6BF93C4DE53B (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * ___serializationInfo0, StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 ___streamingContext1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral02158C33AAFC69461998755D511D2DD0C9BDBB59); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral279EA60C732ADCA7403A83C01015BDFB2C45ECA3); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * L_0 = ___serializationInfo0; NullCheck(L_0); String_t* L_1; L_1 = SerializationInfo_GetString_m50298DCBCD07D858EE19414052CB02EE4DDD3C2C(L_0, _stringLiteral279EA60C732ADCA7403A83C01015BDFB2C45ECA3, /*hidden argument*/NULL); V_0 = L_1; String_t* L_2 = V_0; NullCheck(L_2); int32_t L_3; L_3 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_2, /*hidden argument*/NULL); if (!L_3) { goto IL_0024; } } { String_t* L_4 = V_0; Uri_CreateThis_m86E72577BCB9A6FDF5A0EC8EDFDD5F41AD3256FC(__this, L_4, (bool)0, 1, /*hidden argument*/NULL); return; } IL_0024: { SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * L_5 = ___serializationInfo0; NullCheck(L_5); String_t* L_6; L_6 = SerializationInfo_GetString_m50298DCBCD07D858EE19414052CB02EE4DDD3C2C(L_5, _stringLiteral02158C33AAFC69461998755D511D2DD0C9BDBB59, /*hidden argument*/NULL); V_0 = L_6; String_t* L_7 = V_0; if (L_7) { goto IL_003e; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_8 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_8, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6D153343DC0552ABAFC2B893F453DC72854A37BE)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Uri__ctor_m8AEBDC795304F6C78A02BC41BB4C6BF93C4DE53B_RuntimeMethod_var))); } IL_003e: { String_t* L_9 = V_0; Uri_CreateThis_m86E72577BCB9A6FDF5A0EC8EDFDD5F41AD3256FC(__this, L_9, (bool)0, 2, /*hidden argument*/NULL); return; } } // System.Void System.Uri::System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Uri_System_Runtime_Serialization_ISerializable_GetObjectData_m42AA79366787600D266604222086BD6BDD28A36A (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * ___serializationInfo0, StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 ___streamingContext1, const RuntimeMethod* method) { { SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * L_0 = ___serializationInfo0; StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 L_1 = ___streamingContext1; Uri_GetObjectData_mB720AACE3C54C5B104A7DF0658369C7F7914E895(__this, L_0, L_1, /*hidden argument*/NULL); return; } } // System.Void System.Uri::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Uri_GetObjectData_mB720AACE3C54C5B104A7DF0658369C7F7914E895 (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * ___serializationInfo0, StreamingContext_t5888E7E8C81AB6EF3B14FDDA6674F458076A8505 ___streamingContext1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral02158C33AAFC69461998755D511D2DD0C9BDBB59); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral279EA60C732ADCA7403A83C01015BDFB2C45ECA3); s_Il2CppMethodInitialized = true; } { bool L_0; L_0 = Uri_get_IsAbsoluteUri_m013346D65055CFEDF9E742534A584573C18A0E25(__this, /*hidden argument*/NULL); if (!L_0) { goto IL_0020; } } { SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * L_1 = ___serializationInfo0; String_t* L_2; L_2 = Uri_GetParts_m78996C042B20360F92CDB6FD71F74A242705DFDA(__this, ((int32_t)-2147483648LL), 1, /*hidden argument*/NULL); NullCheck(L_1); SerializationInfo_AddValue_mA50C2668EF700C2239DDC362F8DB409020BB763D(L_1, _stringLiteral279EA60C732ADCA7403A83C01015BDFB2C45ECA3, L_2, /*hidden argument*/NULL); return; } IL_0020: { SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * L_3 = ___serializationInfo0; String_t* L_4 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); NullCheck(L_3); SerializationInfo_AddValue_mA50C2668EF700C2239DDC362F8DB409020BB763D(L_3, _stringLiteral279EA60C732ADCA7403A83C01015BDFB2C45ECA3, L_4, /*hidden argument*/NULL); SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * L_5 = ___serializationInfo0; String_t* L_6; L_6 = Uri_GetParts_m78996C042B20360F92CDB6FD71F74A242705DFDA(__this, ((int32_t)-2147483648LL), 1, /*hidden argument*/NULL); NullCheck(L_5); SerializationInfo_AddValue_mA50C2668EF700C2239DDC362F8DB409020BB763D(L_5, _stringLiteral02158C33AAFC69461998755D511D2DD0C9BDBB59, L_6, /*hidden argument*/NULL); return; } } // System.Boolean System.Uri::StaticIsFile(System.UriParser) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Uri_StaticIsFile_m3E03FC49813EF629A488CF3093AE0A5675210CED (UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * ___syntax0, const RuntimeMethod* method) { { UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_0 = ___syntax0; NullCheck(L_0); bool L_1; L_1 = UriParser_InFact_m4E58BAFAB5A9BC24854C815FC093E16D4F1CFA4D(L_0, ((int32_t)8192), /*hidden argument*/NULL); return L_1; } } // System.Object System.Uri::get_InitializeLock() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Uri_get_InitializeLock_mAE613B41FE88D4D6BC8D943F2A75B6BC00861B0E (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } RuntimeObject * V_0 = NULL; { IL2CPP_RUNTIME_CLASS_INIT(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); RuntimeObject * L_0 = ((Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields*)il2cpp_codegen_static_fields_for(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var))->get_s_initLock_26(); if (L_0) { goto IL_001a; } } { RuntimeObject * L_1 = (RuntimeObject *)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var); Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(L_1, /*hidden argument*/NULL); V_0 = L_1; IL2CPP_RUNTIME_CLASS_INIT(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); RuntimeObject * L_2 = V_0; RuntimeObject * L_3; L_3 = Interlocked_CompareExchange_mFAD09589A5DAFDBABB05C62A2D35CD5B92BC6961((RuntimeObject **)(((Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields*)il2cpp_codegen_static_fields_for(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var))->get_address_of_s_initLock_26()), L_2, NULL, /*hidden argument*/NULL); } IL_001a: { IL2CPP_RUNTIME_CLASS_INIT(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); RuntimeObject * L_4 = ((Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields*)il2cpp_codegen_static_fields_for(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var))->get_s_initLock_26(); return L_4; } } // System.Void System.Uri::InitializeUriConfig() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Uri_InitializeUriConfig_m0DB8F34B6FAF361C0FE002FA800548608A03F8E5 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); 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(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); bool L_0 = ((Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields*)il2cpp_codegen_static_fields_for(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var))->get_s_ConfigInitialized_20(); il2cpp_codegen_memory_barrier(); if (L_0) { goto IL_0047; } } { IL2CPP_RUNTIME_CLASS_INIT(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); RuntimeObject * L_1; L_1 = Uri_get_InitializeLock_mAE613B41FE88D4D6BC8D943F2A75B6BC00861B0E(/*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_mBEB6CC84184B46F26375EC3FC8921D16E48EA4C4(L_2, (bool*)(&V_1), /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); bool L_3 = ((Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields*)il2cpp_codegen_static_fields_for(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var))->get_s_ConfigInitialized_20(); il2cpp_codegen_memory_barrier(); if (L_3) { goto IL_003b; } } IL_0022: { IL2CPP_RUNTIME_CLASS_INIT(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); bool L_4 = ((Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields*)il2cpp_codegen_static_fields_for(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var))->get_s_ConfigInitializing_21(); il2cpp_codegen_memory_barrier(); if (L_4) { goto IL_003b; } } IL_002b: { IL2CPP_RUNTIME_CLASS_INIT(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); il2cpp_codegen_memory_barrier(); ((Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields*)il2cpp_codegen_static_fields_for(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var))->set_s_ConfigInitialized_20(1); il2cpp_codegen_memory_barrier(); ((Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields*)il2cpp_codegen_static_fields_for(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var))->set_s_ConfigInitializing_21(0); } IL_003b: { IL2CPP_LEAVE(0x47, FINALLY_003d); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_003d; } FINALLY_003d: { // begin finally (depth: 1) { bool L_5 = V_1; if (!L_5) { goto IL_0046; } } IL_0040: { RuntimeObject * L_6 = V_0; Monitor_Exit_mA776B403DA88AC77CDEEF67AB9F0D0E77ABD254A(L_6, /*hidden argument*/NULL); } IL_0046: { IL2CPP_END_FINALLY(61) } } // end finally (depth: 1) IL2CPP_CLEANUP(61) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x47, IL_0047) } IL_0047: { return; } } // System.Int32 System.Uri::get_Port() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Uri_get_Port_m23A08BF55EC1DC7421B99E6E77544DDF5900099C (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, const RuntimeMethod* method) { { bool L_0; L_0 = Uri_get_IsNotAbsoluteUri_m7394FF83375B299BA634518D3104903AFEAE3177(__this, /*hidden argument*/NULL); if (!L_0) { goto IL_0018; } } { String_t* L_1; L_1 = SR_GetString_m9DC7F3962EEB239017A1A4C443F52047B5BC7462(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE657126EBF76C06687ED6EAD2C714E37315C927F)), /*hidden argument*/NULL); InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_2 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_2, L_1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Uri_get_Port_m23A08BF55EC1DC7421B99E6E77544DDF5900099C_RuntimeMethod_var))); } IL_0018: { UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_3 = __this->get_m_Syntax_15(); NullCheck(L_3); bool L_4; L_4 = UriParser_get_IsSimple_m09BA6505FDD1AE0BF6C711AE9C2C3F9379B868F8(L_3, /*hidden argument*/NULL); if (!L_4) { goto IL_002e; } } { UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_5; L_5 = Uri_EnsureUriInfo_m5FA3DF1CD26867815CE1F247A47530E1D7E35F7E(__this, /*hidden argument*/NULL); goto IL_0035; } IL_002e: { Uri_EnsureHostString_m47897EC94F83DFE1CA16CE71167DDD3CC986C22A(__this, (bool)0, /*hidden argument*/NULL); } IL_0035: { bool L_6; L_6 = Uri_InFact_mF6A06FA7246740D26093421D41D18000AC2CC0C4(__this, ((int64_t)((int64_t)((int32_t)8388608))), /*hidden argument*/NULL); if (!L_6) { goto IL_0054; } } { UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_7 = __this->get_m_Info_18(); NullCheck(L_7); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_8 = L_7->get_address_of_Offset_3(); uint16_t L_9 = L_8->get_PortValue_3(); return L_9; } IL_0054: { UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_10 = __this->get_m_Syntax_15(); NullCheck(L_10); int32_t L_11; L_11 = UriParser_get_DefaultPort_m7ECA5BE839D36C7FF854FEA0795D8DE701487D33_inline(L_10, /*hidden argument*/NULL); return L_11; } } // System.Boolean System.Uri::get_OriginalStringSwitched() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Uri_get_OriginalStringSwitched_m405404D361D84E268AED978DCE114F5E43583987 (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, const RuntimeMethod* method) { { bool L_0 = __this->get_m_iriParsing_19(); if (!L_0) { goto IL_0019; } } { bool L_1; L_1 = Uri_InFact_mF6A06FA7246740D26093421D41D18000AC2CC0C4(__this, ((int64_t)8589934592LL), /*hidden argument*/NULL); if (L_1) { goto IL_0046; } } IL_0019: { bool L_2; L_2 = Uri_get_AllowIdn_m4031E81D7D0E44FC81C6951D78B2C836EC8270D7(__this, /*hidden argument*/NULL); if (!L_2) { goto IL_0044; } } { bool L_3; L_3 = Uri_InFact_mF6A06FA7246740D26093421D41D18000AC2CC0C4(__this, ((int64_t)4294967296LL), /*hidden argument*/NULL); if (L_3) { goto IL_0042; } } { bool L_4; L_4 = Uri_InFact_mF6A06FA7246740D26093421D41D18000AC2CC0C4(__this, ((int64_t)68719476736LL), /*hidden argument*/NULL); return L_4; } IL_0042: { return (bool)1; } IL_0044: { return (bool)0; } IL_0046: { return (bool)1; } } // System.String System.Uri::get_OriginalString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Uri_get_OriginalString_mBD94B4BB84AE9C051C1CA8BA33C14D5BAD25B0AC (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, const RuntimeMethod* method) { { bool L_0; L_0 = Uri_get_OriginalStringSwitched_m405404D361D84E268AED978DCE114F5E43583987(__this, /*hidden argument*/NULL); if (L_0) { goto IL_000f; } } { String_t* L_1 = __this->get_m_String_13(); return L_1; } IL_000f: { String_t* L_2 = __this->get_m_originalUnicodeString_14(); return L_2; } } // System.Boolean System.Uri::get_IsAbsoluteUri() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Uri_get_IsAbsoluteUri_m013346D65055CFEDF9E742534A584573C18A0E25 (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, const RuntimeMethod* method) { { UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_0 = __this->get_m_Syntax_15(); return (bool)((!(((RuntimeObject*)(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A *)L_0) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0); } } // System.Boolean System.Uri::IsGenDelim(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Uri_IsGenDelim_m93EB89B013A4AE8B5C5D792EB8BEAD2BF8EC5997 (Il2CppChar ___ch0, const RuntimeMethod* method) { { Il2CppChar L_0 = ___ch0; if ((((int32_t)L_0) == ((int32_t)((int32_t)58)))) { goto IL_0024; } } { Il2CppChar L_1 = ___ch0; if ((((int32_t)L_1) == ((int32_t)((int32_t)47)))) { goto IL_0024; } } { Il2CppChar L_2 = ___ch0; if ((((int32_t)L_2) == ((int32_t)((int32_t)63)))) { goto IL_0024; } } { Il2CppChar L_3 = ___ch0; if ((((int32_t)L_3) == ((int32_t)((int32_t)35)))) { goto IL_0024; } } { Il2CppChar L_4 = ___ch0; if ((((int32_t)L_4) == ((int32_t)((int32_t)91)))) { goto IL_0024; } } { Il2CppChar L_5 = ___ch0; if ((((int32_t)L_5) == ((int32_t)((int32_t)93)))) { goto IL_0024; } } { Il2CppChar L_6 = ___ch0; return (bool)((((int32_t)L_6) == ((int32_t)((int32_t)64)))? 1 : 0); } IL_0024: { return (bool)1; } } // System.Boolean System.Uri::IsHexDigit(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Uri_IsHexDigit_m87121EC1F62716CC681A4458BF2E6A6B844BD95F (Il2CppChar ___character0, const RuntimeMethod* method) { { Il2CppChar L_0 = ___character0; if ((((int32_t)L_0) < ((int32_t)((int32_t)48)))) { goto IL_000a; } } { Il2CppChar L_1 = ___character0; if ((((int32_t)L_1) <= ((int32_t)((int32_t)57)))) { goto IL_0024; } } IL_000a: { Il2CppChar L_2 = ___character0; if ((((int32_t)L_2) < ((int32_t)((int32_t)65)))) { goto IL_0014; } } { Il2CppChar L_3 = ___character0; if ((((int32_t)L_3) <= ((int32_t)((int32_t)70)))) { goto IL_0024; } } IL_0014: { Il2CppChar L_4 = ___character0; if ((((int32_t)L_4) < ((int32_t)((int32_t)97)))) { goto IL_0022; } } { Il2CppChar L_5 = ___character0; return (bool)((((int32_t)((((int32_t)L_5) > ((int32_t)((int32_t)102)))? 1 : 0)) == ((int32_t)0))? 1 : 0); } IL_0022: { return (bool)0; } IL_0024: { return (bool)1; } } // System.Int32 System.Uri::FromHex(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Uri_FromHex_m16E5FED0B58BA0A603C6BDDE6AA90F3C3FC78977 (Il2CppChar ___digit0, const RuntimeMethod* method) { int32_t G_B10_0 = 0; { Il2CppChar L_0 = ___digit0; if ((((int32_t)L_0) < ((int32_t)((int32_t)48)))) { goto IL_000a; } } { Il2CppChar L_1 = ___digit0; if ((((int32_t)L_1) <= ((int32_t)((int32_t)57)))) { goto IL_001e; } } IL_000a: { Il2CppChar L_2 = ___digit0; if ((((int32_t)L_2) < ((int32_t)((int32_t)65)))) { goto IL_0014; } } { Il2CppChar L_3 = ___digit0; if ((((int32_t)L_3) <= ((int32_t)((int32_t)70)))) { goto IL_001e; } } IL_0014: { Il2CppChar L_4 = ___digit0; if ((((int32_t)L_4) < ((int32_t)((int32_t)97)))) { goto IL_003b; } } { Il2CppChar L_5 = ___digit0; if ((((int32_t)L_5) > ((int32_t)((int32_t)102)))) { goto IL_003b; } } IL_001e: { Il2CppChar L_6 = ___digit0; if ((((int32_t)L_6) <= ((int32_t)((int32_t)57)))) { goto IL_0036; } } { Il2CppChar L_7 = ___digit0; if ((((int32_t)L_7) <= ((int32_t)((int32_t)70)))) { goto IL_002e; } } { Il2CppChar L_8 = ___digit0; G_B10_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_8, (int32_t)((int32_t)97))); goto IL_0032; } IL_002e: { Il2CppChar L_9 = ___digit0; G_B10_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)((int32_t)65))); } IL_0032: { return ((int32_t)il2cpp_codegen_add((int32_t)G_B10_0, (int32_t)((int32_t)10))); } IL_0036: { Il2CppChar L_10 = ___digit0; return ((int32_t)il2cpp_codegen_subtract((int32_t)L_10, (int32_t)((int32_t)48))); } IL_003b: { ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_11 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_11, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral491588DC50F24F885876BF828F202716C7BE3803)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Uri_FromHex_m16E5FED0B58BA0A603C6BDDE6AA90F3C3FC78977_RuntimeMethod_var))); } } // System.Int32 System.Uri::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Uri_GetHashCode_mC0D119822A7E802B29C060B809048C5A1413E818 (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MoreInfo_t15D42286ECE8DAD0B0FE9CDC1291109300C3E727_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * V_0 = NULL; int32_t V_1 = 0; String_t* V_2 = NULL; { bool L_0; L_0 = Uri_get_IsNotAbsoluteUri_m7394FF83375B299BA634518D3104903AFEAE3177(__this, /*hidden argument*/NULL); if (!L_0) { goto IL_0014; } } { String_t* L_1; L_1 = Uri_get_OriginalString_mBD94B4BB84AE9C051C1CA8BA33C14D5BAD25B0AC(__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); int32_t L_2; L_2 = Uri_CalculateCaseInsensitiveHashCode_m3C1409D3BEC3AEDC2880109BF1755CF68263DD7A(L_1, /*hidden argument*/NULL); return L_2; } IL_0014: { UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_3; L_3 = Uri_EnsureUriInfo_m5FA3DF1CD26867815CE1F247A47530E1D7E35F7E(__this, /*hidden argument*/NULL); V_0 = L_3; UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_4 = V_0; NullCheck(L_4); MoreInfo_t15D42286ECE8DAD0B0FE9CDC1291109300C3E727 * L_5 = L_4->get_MoreInfo_5(); if (L_5) { goto IL_002e; } } { UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_6 = V_0; MoreInfo_t15D42286ECE8DAD0B0FE9CDC1291109300C3E727 * L_7 = (MoreInfo_t15D42286ECE8DAD0B0FE9CDC1291109300C3E727 *)il2cpp_codegen_object_new(MoreInfo_t15D42286ECE8DAD0B0FE9CDC1291109300C3E727_il2cpp_TypeInfo_var); MoreInfo__ctor_mF8515B2BCCB5E7DC008164794946ADE7ADBCD2BD(L_7, /*hidden argument*/NULL); NullCheck(L_6); L_6->set_MoreInfo_5(L_7); } IL_002e: { UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_8 = V_0; NullCheck(L_8); MoreInfo_t15D42286ECE8DAD0B0FE9CDC1291109300C3E727 * L_9 = L_8->get_MoreInfo_5(); NullCheck(L_9); int32_t L_10 = L_9->get_Hash_0(); V_1 = L_10; int32_t L_11 = V_1; if (L_11) { goto IL_0072; } } { UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_12 = V_0; NullCheck(L_12); MoreInfo_t15D42286ECE8DAD0B0FE9CDC1291109300C3E727 * L_13 = L_12->get_MoreInfo_5(); NullCheck(L_13); String_t* L_14 = L_13->get_RemoteUrl_1(); V_2 = L_14; String_t* L_15 = V_2; if (L_15) { goto IL_0056; } } { String_t* L_16; L_16 = Uri_GetParts_m78996C042B20360F92CDB6FD71F74A242705DFDA(__this, ((int32_t)61), 3, /*hidden argument*/NULL); V_2 = L_16; } IL_0056: { String_t* L_17 = V_2; IL2CPP_RUNTIME_CLASS_INIT(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); int32_t L_18; L_18 = Uri_CalculateCaseInsensitiveHashCode_m3C1409D3BEC3AEDC2880109BF1755CF68263DD7A(L_17, /*hidden argument*/NULL); V_1 = L_18; int32_t L_19 = V_1; if (L_19) { goto IL_0066; } } { V_1 = ((int32_t)16777216); } IL_0066: { UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_20 = V_0; NullCheck(L_20); MoreInfo_t15D42286ECE8DAD0B0FE9CDC1291109300C3E727 * L_21 = L_20->get_MoreInfo_5(); int32_t L_22 = V_1; NullCheck(L_21); L_21->set_Hash_0(L_22); } IL_0072: { int32_t L_23 = V_1; return L_23; } } // System.String System.Uri::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Uri_ToString_m477A204846385EC6FF1DA9043B81B11512C3962E (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, const RuntimeMethod* method) { { UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_0 = __this->get_m_Syntax_15(); if (L_0) { goto IL_002f; } } { bool L_1 = __this->get_m_iriParsing_19(); if (!L_1) { goto IL_0021; } } { bool L_2; L_2 = Uri_InFact_mF6A06FA7246740D26093421D41D18000AC2CC0C4(__this, ((int64_t)8589934592LL), /*hidden argument*/NULL); if (L_2) { goto IL_0028; } } IL_0021: { String_t* L_3; L_3 = Uri_get_OriginalString_mBD94B4BB84AE9C051C1CA8BA33C14D5BAD25B0AC(__this, /*hidden argument*/NULL); return L_3; } IL_0028: { String_t* L_4 = __this->get_m_String_13(); return L_4; } IL_002f: { UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_5; L_5 = Uri_EnsureUriInfo_m5FA3DF1CD26867815CE1F247A47530E1D7E35F7E(__this, /*hidden argument*/NULL); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_6 = __this->get_m_Info_18(); NullCheck(L_6); String_t* L_7 = L_6->get_String_2(); if (L_7) { goto IL_007e; } } { UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_8; L_8 = Uri_get_Syntax_mF7002491E720A700F68312C49337C6F5D91ABCC9_inline(__this, /*hidden argument*/NULL); NullCheck(L_8); bool L_9; L_9 = UriParser_get_IsSimple_m09BA6505FDD1AE0BF6C711AE9C2C3F9379B868F8(L_8, /*hidden argument*/NULL); if (!L_9) { goto IL_006a; } } { UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_10 = __this->get_m_Info_18(); String_t* L_11; L_11 = Uri_GetComponentsHelper_mAA39E421157735AAD7D93A187CCCAED5A122C8E8(__this, ((int32_t)127), ((int32_t)32767), /*hidden argument*/NULL); NullCheck(L_10); L_10->set_String_2(L_11); goto IL_007e; } IL_006a: { UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_12 = __this->get_m_Info_18(); String_t* L_13; L_13 = Uri_GetParts_m78996C042B20360F92CDB6FD71F74A242705DFDA(__this, ((int32_t)127), 3, /*hidden argument*/NULL); NullCheck(L_12); L_12->set_String_2(L_13); } IL_007e: { UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_14 = __this->get_m_Info_18(); NullCheck(L_14); String_t* L_15 = L_14->get_String_2(); return L_15; } } // System.Boolean System.Uri::op_Inequality(System.Uri,System.Uri) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Uri_op_Inequality_m3B3733CAA19866A20EF76A772B368EFB5FC89A4F (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___uri10, Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___uri21, const RuntimeMethod* method) { { Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_0 = ___uri10; Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_1 = ___uri21; if ((!(((RuntimeObject*)(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 *)L_0) == ((RuntimeObject*)(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 *)L_1)))) { goto IL_0006; } } { return (bool)0; } IL_0006: { Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_2 = ___uri10; if (!L_2) { goto IL_000c; } } { Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_3 = ___uri21; if (L_3) { goto IL_000e; } } IL_000c: { return (bool)1; } IL_000e: { Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_4 = ___uri21; Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_5 = ___uri10; NullCheck(L_4); bool L_6; L_6 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_4, L_5); return (bool)((((int32_t)L_6) == ((int32_t)0))? 1 : 0); } } // System.Boolean System.Uri::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Uri_Equals_mB02B478FE0FB77C8D853B051F798C8D978531C1C (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, RuntimeObject * ___comparand0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MoreInfo_t15D42286ECE8DAD0B0FE9CDC1291109300C3E727_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * V_0 = NULL; UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * V_1 = NULL; UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * V_2 = NULL; String_t* V_3 = NULL; String_t* V_4 = NULL; String_t* V_5 = NULL; Il2CppChar* V_6 = NULL; String_t* V_7 = NULL; Il2CppChar* V_8 = NULL; String_t* V_9 = NULL; int32_t V_10 = 0; uint16_t V_11 = 0; uint16_t V_12 = 0; uint16_t V_13 = 0; uint16_t V_14 = 0; String_t* V_15 = NULL; Il2CppChar* V_16 = NULL; Il2CppChar* V_17 = NULL; Il2CppChar* V_18 = NULL; Il2CppChar* V_19 = NULL; String_t* G_B77_0 = NULL; String_t* G_B77_1 = NULL; String_t* G_B76_0 = NULL; String_t* G_B76_1 = NULL; int32_t G_B78_0 = 0; String_t* G_B78_1 = NULL; String_t* G_B78_2 = NULL; { RuntimeObject * L_0 = ___comparand0; if (L_0) { goto IL_0005; } } { return (bool)0; } IL_0005: { RuntimeObject * L_1 = ___comparand0; if ((!(((RuntimeObject*)(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 *)__this) == ((RuntimeObject*)(RuntimeObject *)L_1)))) { goto IL_000b; } } { return (bool)1; } IL_000b: { RuntimeObject * L_2 = ___comparand0; V_0 = ((Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 *)IsInstClass((RuntimeObject*)L_2, Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var)); Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_3 = V_0; if (L_3) { goto IL_0031; } } { RuntimeObject * L_4 = ___comparand0; V_5 = ((String_t*)IsInstSealed((RuntimeObject*)L_4, String_t_il2cpp_TypeInfo_var)); String_t* L_5 = V_5; if (L_5) { goto IL_0023; } } { return (bool)0; } IL_0023: { String_t* L_6 = V_5; IL2CPP_RUNTIME_CLASS_INIT(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); bool L_7; L_7 = Uri_TryCreate_m44277635BB8291BC0AADD85B9C9A015C1C21EF92(L_6, 0, (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 **)(&V_0), /*hidden argument*/NULL); if (L_7) { goto IL_0031; } } { return (bool)0; } IL_0031: { String_t* L_8 = __this->get_m_String_13(); Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_9 = V_0; NullCheck(L_9); String_t* L_10 = L_9->get_m_String_13(); if ((!(((RuntimeObject*)(String_t*)L_8) == ((RuntimeObject*)(String_t*)L_10)))) { goto IL_0041; } } { return (bool)1; } IL_0041: { bool L_11; L_11 = Uri_get_IsAbsoluteUri_m013346D65055CFEDF9E742534A584573C18A0E25(__this, /*hidden argument*/NULL); Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_12 = V_0; NullCheck(L_12); bool L_13; L_13 = Uri_get_IsAbsoluteUri_m013346D65055CFEDF9E742534A584573C18A0E25(L_12, /*hidden argument*/NULL); if ((((int32_t)L_11) == ((int32_t)L_13))) { goto IL_0051; } } { return (bool)0; } IL_0051: { bool L_14; L_14 = Uri_get_IsNotAbsoluteUri_m7394FF83375B299BA634518D3104903AFEAE3177(__this, /*hidden argument*/NULL); if (!L_14) { goto IL_006b; } } { String_t* L_15; L_15 = Uri_get_OriginalString_mBD94B4BB84AE9C051C1CA8BA33C14D5BAD25B0AC(__this, /*hidden argument*/NULL); Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_16 = V_0; NullCheck(L_16); String_t* L_17; L_17 = Uri_get_OriginalString_mBD94B4BB84AE9C051C1CA8BA33C14D5BAD25B0AC(L_16, /*hidden argument*/NULL); NullCheck(L_15); bool L_18; L_18 = String_Equals_m8A062B96B61A7D652E7D73C9B3E904F6B0E5F41D(L_15, L_17, /*hidden argument*/NULL); return L_18; } IL_006b: { bool L_19; L_19 = Uri_NotAny_m2C222924AE10957D835ECBC887D456FB30DCF969(__this, ((int64_t)((uint64_t)((uint32_t)((uint32_t)((int32_t)-2147483648LL))))), /*hidden argument*/NULL); if (L_19) { goto IL_008a; } } { Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_20 = V_0; NullCheck(L_20); bool L_21; L_21 = Uri_NotAny_m2C222924AE10957D835ECBC887D456FB30DCF969(L_20, ((int64_t)((uint64_t)((uint32_t)((uint32_t)((int32_t)-2147483648LL))))), /*hidden argument*/NULL); if (!L_21) { goto IL_013b; } } IL_008a: { bool L_22; L_22 = Uri_get_IsUncOrDosPath_mF197920D1C1DBDE10A3478855D89D36210D8CE94(__this, /*hidden argument*/NULL); if (L_22) { goto IL_0125; } } { String_t* L_23 = __this->get_m_String_13(); NullCheck(L_23); int32_t L_24; L_24 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_23, /*hidden argument*/NULL); Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_25 = V_0; NullCheck(L_25); String_t* L_26 = L_25->get_m_String_13(); NullCheck(L_26); int32_t L_27; L_27 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_26, /*hidden argument*/NULL); if ((!(((uint32_t)L_24) == ((uint32_t)L_27)))) { goto IL_013b; } } { String_t* L_28 = __this->get_m_String_13(); V_7 = L_28; String_t* L_29 = V_7; V_6 = (Il2CppChar*)((uintptr_t)L_29); Il2CppChar* L_30 = V_6; if (!L_30) { goto IL_00cb; } } { Il2CppChar* L_31 = V_6; int32_t L_32; L_32 = RuntimeHelpers_get_OffsetToStringData_mEB8E6EAEBAFAB7CD7F7A915B3081785AABB9FC42(/*hidden argument*/NULL); V_6 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_31, (int32_t)L_32)); } IL_00cb: { Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_33 = V_0; NullCheck(L_33); String_t* L_34 = L_33->get_m_String_13(); V_9 = L_34; String_t* L_35 = V_9; V_8 = (Il2CppChar*)((uintptr_t)L_35); Il2CppChar* L_36 = V_8; if (!L_36) { goto IL_00e6; } } { Il2CppChar* L_37 = V_8; int32_t L_38; L_38 = RuntimeHelpers_get_OffsetToStringData_mEB8E6EAEBAFAB7CD7F7A915B3081785AABB9FC42(/*hidden argument*/NULL); V_8 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_37, (int32_t)L_38)); } IL_00e6: { String_t* L_39 = __this->get_m_String_13(); NullCheck(L_39); int32_t L_40; L_40 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_39, /*hidden argument*/NULL); V_10 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_40, (int32_t)1)); goto IL_0111; } IL_00f7: { Il2CppChar* L_41 = V_6; int32_t L_42 = V_10; int32_t L_43 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_41, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_42), (int32_t)2))))); Il2CppChar* L_44 = V_8; int32_t L_45 = V_10; int32_t L_46 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_44, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_45), (int32_t)2))))); if ((!(((uint32_t)L_43) == ((uint32_t)L_46)))) { goto IL_0116; } } { int32_t L_47 = V_10; V_10 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_47, (int32_t)1)); } IL_0111: { int32_t L_48 = V_10; if ((((int32_t)L_48) >= ((int32_t)0))) { goto IL_00f7; } } IL_0116: { int32_t L_49 = V_10; if ((!(((uint32_t)L_49) == ((uint32_t)(-1))))) { goto IL_011d; } } { return (bool)1; } IL_011d: { V_9 = (String_t*)NULL; V_7 = (String_t*)NULL; goto IL_013b; } IL_0125: { String_t* L_50 = __this->get_m_String_13(); Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_51 = V_0; NullCheck(L_51); String_t* L_52 = L_51->get_m_String_13(); int32_t L_53; L_53 = String_Compare_mDAE9D10BC450FF38960C691874EBFC3EAF6A39DD(L_50, L_52, 5, /*hidden argument*/NULL); if (L_53) { goto IL_013b; } } { return (bool)1; } IL_013b: { UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_54; L_54 = Uri_EnsureUriInfo_m5FA3DF1CD26867815CE1F247A47530E1D7E35F7E(__this, /*hidden argument*/NULL); Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_55 = V_0; NullCheck(L_55); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_56; L_56 = Uri_EnsureUriInfo_m5FA3DF1CD26867815CE1F247A47530E1D7E35F7E(L_55, /*hidden argument*/NULL); bool L_57; L_57 = Uri_get_UserDrivenParsing_mF09087D4DE9A0823EBF1FC0C14101335D01393F2(__this, /*hidden argument*/NULL); if (L_57) { goto IL_02be; } } { Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_58 = V_0; NullCheck(L_58); bool L_59; L_59 = Uri_get_UserDrivenParsing_mF09087D4DE9A0823EBF1FC0C14101335D01393F2(L_58, /*hidden argument*/NULL); if (L_59) { goto IL_02be; } } { UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_60; L_60 = Uri_get_Syntax_mF7002491E720A700F68312C49337C6F5D91ABCC9_inline(__this, /*hidden argument*/NULL); NullCheck(L_60); bool L_61; L_61 = UriParser_get_IsSimple_m09BA6505FDD1AE0BF6C711AE9C2C3F9379B868F8(L_60, /*hidden argument*/NULL); if (!L_61) { goto IL_02be; } } { Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_62 = V_0; NullCheck(L_62); UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_63; L_63 = Uri_get_Syntax_mF7002491E720A700F68312C49337C6F5D91ABCC9_inline(L_62, /*hidden argument*/NULL); NullCheck(L_63); bool L_64; L_64 = UriParser_get_IsSimple_m09BA6505FDD1AE0BF6C711AE9C2C3F9379B868F8(L_63, /*hidden argument*/NULL); if (!L_64) { goto IL_02be; } } { bool L_65; L_65 = Uri_InFact_mF6A06FA7246740D26093421D41D18000AC2CC0C4(__this, ((int64_t)((int64_t)((int32_t)33554432))), /*hidden argument*/NULL); if (!L_65) { goto IL_0281; } } { Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_66 = V_0; NullCheck(L_66); bool L_67; L_67 = Uri_InFact_mF6A06FA7246740D26093421D41D18000AC2CC0C4(L_66, ((int64_t)((int64_t)((int32_t)33554432))), /*hidden argument*/NULL); if (!L_67) { goto IL_0281; } } { UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_68 = __this->get_m_Info_18(); NullCheck(L_68); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_69 = L_68->get_address_of_Offset_3(); uint16_t L_70 = L_69->get_Host_2(); V_11 = L_70; UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_71 = __this->get_m_Info_18(); NullCheck(L_71); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_72 = L_71->get_address_of_Offset_3(); uint16_t L_73 = L_72->get_Path_4(); V_12 = L_73; Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_74 = V_0; NullCheck(L_74); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_75 = L_74->get_m_Info_18(); NullCheck(L_75); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_76 = L_75->get_address_of_Offset_3(); uint16_t L_77 = L_76->get_Host_2(); V_13 = L_77; Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_78 = V_0; NullCheck(L_78); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_79 = L_78->get_m_Info_18(); NullCheck(L_79); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_80 = L_79->get_address_of_Offset_3(); uint16_t L_81 = L_80->get_Path_4(); V_14 = L_81; Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_82 = V_0; NullCheck(L_82); String_t* L_83 = L_82->get_m_String_13(); V_15 = L_83; uint16_t L_84 = V_12; uint16_t L_85 = V_11; uint16_t L_86 = V_14; uint16_t L_87 = V_13; if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_84, (int32_t)L_85))) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_86, (int32_t)L_87))))) { goto IL_023f; } } { uint16_t L_88 = V_11; uint16_t L_89 = V_14; uint16_t L_90 = V_13; V_12 = (uint16_t)((int32_t)((uint16_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_88, (int32_t)L_89)), (int32_t)L_90)))); goto IL_023f; } IL_020a: { String_t* L_91 = __this->get_m_String_13(); uint16_t L_92 = V_11; NullCheck(L_91); Il2CppChar L_93; L_93 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_91, L_92, /*hidden argument*/NULL); String_t* L_94 = V_15; uint16_t L_95 = V_13; NullCheck(L_94); Il2CppChar L_96; L_96 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_94, L_95, /*hidden argument*/NULL); if ((((int32_t)L_93) == ((int32_t)L_96))) { goto IL_0224; } } { return (bool)0; } IL_0224: { String_t* L_97 = V_15; uint16_t L_98 = V_13; NullCheck(L_97); Il2CppChar L_99; L_99 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_97, L_98, /*hidden argument*/NULL); if ((((int32_t)L_99) == ((int32_t)((int32_t)58)))) { goto IL_0245; } } { uint16_t L_100 = V_11; V_11 = (uint16_t)((int32_t)((uint16_t)((int32_t)il2cpp_codegen_add((int32_t)L_100, (int32_t)1)))); uint16_t L_101 = V_13; V_13 = (uint16_t)((int32_t)((uint16_t)((int32_t)il2cpp_codegen_add((int32_t)L_101, (int32_t)1)))); } IL_023f: { uint16_t L_102 = V_11; uint16_t L_103 = V_12; if ((((int32_t)L_102) < ((int32_t)L_103))) { goto IL_020a; } } IL_0245: { uint16_t L_104 = V_11; UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_105 = __this->get_m_Info_18(); NullCheck(L_105); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_106 = L_105->get_address_of_Offset_3(); uint16_t L_107 = L_106->get_Path_4(); if ((((int32_t)L_104) >= ((int32_t)L_107))) { goto IL_026c; } } { String_t* L_108 = __this->get_m_String_13(); uint16_t L_109 = V_11; NullCheck(L_108); Il2CppChar L_110; L_110 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_108, L_109, /*hidden argument*/NULL); if ((((int32_t)L_110) == ((int32_t)((int32_t)58)))) { goto IL_026c; } } { return (bool)0; } IL_026c: { uint16_t L_111 = V_13; uint16_t L_112 = V_14; if ((((int32_t)L_111) >= ((int32_t)L_112))) { goto IL_02ae; } } { String_t* L_113 = V_15; uint16_t L_114 = V_13; NullCheck(L_113); Il2CppChar L_115; L_115 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_113, L_114, /*hidden argument*/NULL); if ((((int32_t)L_115) == ((int32_t)((int32_t)58)))) { goto IL_02ae; } } { return (bool)0; } IL_0281: { Uri_EnsureHostString_m47897EC94F83DFE1CA16CE71167DDD3CC986C22A(__this, (bool)0, /*hidden argument*/NULL); Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_116 = V_0; NullCheck(L_116); Uri_EnsureHostString_m47897EC94F83DFE1CA16CE71167DDD3CC986C22A(L_116, (bool)0, /*hidden argument*/NULL); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_117 = __this->get_m_Info_18(); NullCheck(L_117); String_t* L_118 = L_117->get_Host_0(); Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_119 = V_0; NullCheck(L_119); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_120 = L_119->get_m_Info_18(); NullCheck(L_120); String_t* L_121 = L_120->get_Host_0(); NullCheck(L_118); bool L_122; L_122 = String_Equals_m8A062B96B61A7D652E7D73C9B3E904F6B0E5F41D(L_118, L_121, /*hidden argument*/NULL); if (L_122) { goto IL_02ae; } } { return (bool)0; } IL_02ae: { int32_t L_123; L_123 = Uri_get_Port_m23A08BF55EC1DC7421B99E6E77544DDF5900099C(__this, /*hidden argument*/NULL); Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_124 = V_0; NullCheck(L_124); int32_t L_125; L_125 = Uri_get_Port_m23A08BF55EC1DC7421B99E6E77544DDF5900099C(L_124, /*hidden argument*/NULL); if ((((int32_t)L_123) == ((int32_t)L_125))) { goto IL_02be; } } { return (bool)0; } IL_02be: { UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_126 = __this->get_m_Info_18(); V_1 = L_126; Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_127 = V_0; NullCheck(L_127); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_128 = L_127->get_m_Info_18(); V_2 = L_128; UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_129 = V_1; NullCheck(L_129); MoreInfo_t15D42286ECE8DAD0B0FE9CDC1291109300C3E727 * L_130 = L_129->get_MoreInfo_5(); if (L_130) { goto IL_02df; } } { UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_131 = V_1; MoreInfo_t15D42286ECE8DAD0B0FE9CDC1291109300C3E727 * L_132 = (MoreInfo_t15D42286ECE8DAD0B0FE9CDC1291109300C3E727 *)il2cpp_codegen_object_new(MoreInfo_t15D42286ECE8DAD0B0FE9CDC1291109300C3E727_il2cpp_TypeInfo_var); MoreInfo__ctor_mF8515B2BCCB5E7DC008164794946ADE7ADBCD2BD(L_132, /*hidden argument*/NULL); NullCheck(L_131); L_131->set_MoreInfo_5(L_132); } IL_02df: { UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_133 = V_2; NullCheck(L_133); MoreInfo_t15D42286ECE8DAD0B0FE9CDC1291109300C3E727 * L_134 = L_133->get_MoreInfo_5(); if (L_134) { goto IL_02f2; } } { UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_135 = V_2; MoreInfo_t15D42286ECE8DAD0B0FE9CDC1291109300C3E727 * L_136 = (MoreInfo_t15D42286ECE8DAD0B0FE9CDC1291109300C3E727 *)il2cpp_codegen_object_new(MoreInfo_t15D42286ECE8DAD0B0FE9CDC1291109300C3E727_il2cpp_TypeInfo_var); MoreInfo__ctor_mF8515B2BCCB5E7DC008164794946ADE7ADBCD2BD(L_136, /*hidden argument*/NULL); NullCheck(L_135); L_135->set_MoreInfo_5(L_136); } IL_02f2: { UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_137 = V_1; NullCheck(L_137); MoreInfo_t15D42286ECE8DAD0B0FE9CDC1291109300C3E727 * L_138 = L_137->get_MoreInfo_5(); NullCheck(L_138); String_t* L_139 = L_138->get_RemoteUrl_1(); V_3 = L_139; String_t* L_140 = V_3; if (L_140) { goto IL_0317; } } { String_t* L_141; L_141 = Uri_GetParts_m78996C042B20360F92CDB6FD71F74A242705DFDA(__this, ((int32_t)61), 3, /*hidden argument*/NULL); V_3 = L_141; UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_142 = V_1; NullCheck(L_142); MoreInfo_t15D42286ECE8DAD0B0FE9CDC1291109300C3E727 * L_143 = L_142->get_MoreInfo_5(); String_t* L_144 = V_3; NullCheck(L_143); L_143->set_RemoteUrl_1(L_144); } IL_0317: { UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_145 = V_2; NullCheck(L_145); MoreInfo_t15D42286ECE8DAD0B0FE9CDC1291109300C3E727 * L_146 = L_145->get_MoreInfo_5(); NullCheck(L_146); String_t* L_147 = L_146->get_RemoteUrl_1(); V_4 = L_147; String_t* L_148 = V_4; if (L_148) { goto IL_0340; } } { Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_149 = V_0; NullCheck(L_149); String_t* L_150; L_150 = Uri_GetParts_m78996C042B20360F92CDB6FD71F74A242705DFDA(L_149, ((int32_t)61), 3, /*hidden argument*/NULL); V_4 = L_150; UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_151 = V_2; NullCheck(L_151); MoreInfo_t15D42286ECE8DAD0B0FE9CDC1291109300C3E727 * L_152 = L_151->get_MoreInfo_5(); String_t* L_153 = V_4; NullCheck(L_152); L_152->set_RemoteUrl_1(L_153); } IL_0340: { bool L_154; L_154 = Uri_get_IsUncOrDosPath_mF197920D1C1DBDE10A3478855D89D36210D8CE94(__this, /*hidden argument*/NULL); if (L_154) { goto IL_03c0; } } { String_t* L_155 = V_3; NullCheck(L_155); int32_t L_156; L_156 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_155, /*hidden argument*/NULL); String_t* L_157 = V_4; NullCheck(L_157); int32_t L_158; L_158 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_157, /*hidden argument*/NULL); if ((((int32_t)L_156) == ((int32_t)L_158))) { goto IL_0359; } } { return (bool)0; } IL_0359: { String_t* L_159 = V_3; V_7 = L_159; String_t* L_160 = V_7; V_16 = (Il2CppChar*)((uintptr_t)L_160); Il2CppChar* L_161 = V_16; if (!L_161) { goto IL_036f; } } { Il2CppChar* L_162 = V_16; int32_t L_163; L_163 = RuntimeHelpers_get_OffsetToStringData_mEB8E6EAEBAFAB7CD7F7A915B3081785AABB9FC42(/*hidden argument*/NULL); V_16 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_162, (int32_t)L_163)); } IL_036f: { String_t* L_164 = V_4; V_9 = L_164; String_t* L_165 = V_9; V_17 = (Il2CppChar*)((uintptr_t)L_165); Il2CppChar* L_166 = V_17; if (!L_166) { goto IL_0386; } } { Il2CppChar* L_167 = V_17; int32_t L_168; L_168 = RuntimeHelpers_get_OffsetToStringData_mEB8E6EAEBAFAB7CD7F7A915B3081785AABB9FC42(/*hidden argument*/NULL); V_17 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_167, (int32_t)L_168)); } IL_0386: { Il2CppChar* L_169 = V_16; String_t* L_170 = V_3; NullCheck(L_170); int32_t L_171; L_171 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_170, /*hidden argument*/NULL); V_18 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_169, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_171), (int32_t)2)))); Il2CppChar* L_172 = V_17; String_t* L_173 = V_3; NullCheck(L_173); int32_t L_174; L_174 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_173, /*hidden argument*/NULL); V_19 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_172, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_174), (int32_t)2)))); goto IL_03b8; } IL_03a4: { Il2CppChar* L_175 = V_18; Il2CppChar* L_176 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_175, (int32_t)2)); V_18 = (Il2CppChar*)L_176; int32_t L_177 = *((uint16_t*)L_176); Il2CppChar* L_178 = V_19; Il2CppChar* L_179 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_178, (int32_t)2)); V_19 = (Il2CppChar*)L_179; int32_t L_180 = *((uint16_t*)L_179); if ((((int32_t)L_177) == ((int32_t)L_180))) { goto IL_03b8; } } { return (bool)0; } IL_03b8: { Il2CppChar* L_181 = V_18; Il2CppChar* L_182 = V_16; if ((!(((uintptr_t)L_181) == ((uintptr_t)L_182)))) { goto IL_03a4; } } { return (bool)1; } IL_03c0: { UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_183 = V_1; NullCheck(L_183); MoreInfo_t15D42286ECE8DAD0B0FE9CDC1291109300C3E727 * L_184 = L_183->get_MoreInfo_5(); NullCheck(L_184); String_t* L_185 = L_184->get_RemoteUrl_1(); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_186 = V_2; NullCheck(L_186); MoreInfo_t15D42286ECE8DAD0B0FE9CDC1291109300C3E727 * L_187 = L_186->get_MoreInfo_5(); NullCheck(L_187); String_t* L_188 = L_187->get_RemoteUrl_1(); bool L_189; L_189 = Uri_get_IsUncOrDosPath_mF197920D1C1DBDE10A3478855D89D36210D8CE94(__this, /*hidden argument*/NULL); G_B76_0 = L_188; G_B76_1 = L_185; if (L_189) { G_B77_0 = L_188; G_B77_1 = L_185; goto IL_03e1; } } { G_B78_0 = 4; G_B78_1 = G_B76_0; G_B78_2 = G_B76_1; goto IL_03e2; } IL_03e1: { G_B78_0 = 5; G_B78_1 = G_B77_0; G_B78_2 = G_B77_1; } IL_03e2: { int32_t L_190; L_190 = String_Compare_mDAE9D10BC450FF38960C691874EBFC3EAF6A39DD(G_B78_2, G_B78_1, G_B78_0, /*hidden argument*/NULL); return (bool)((((int32_t)L_190) == ((int32_t)0))? 1 : 0); } } // System.ParsingError System.Uri::ParseScheme(System.String,System.Uri/Flags&,System.UriParser&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Uri_ParseScheme_m65694E4DA17BF0A8447ACE12EF444FE4D1E1AB16 (String_t* ___uriString0, uint64_t* ___flags1, UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A ** ___syntax2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; Il2CppChar* V_1 = NULL; String_t* V_2 = NULL; int32_t V_3 = 0; uint16_t V_4 = 0; { String_t* L_0 = ___uriString0; NullCheck(L_0); int32_t L_1; L_1 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_0, /*hidden argument*/NULL); V_0 = L_1; int32_t L_2 = V_0; if (L_2) { goto IL_000c; } } { return (int32_t)(4); } IL_000c: { int32_t L_3 = V_0; if ((((int32_t)L_3) < ((int32_t)((int32_t)65520)))) { goto IL_0016; } } { return (int32_t)(6); } IL_0016: { String_t* L_4 = ___uriString0; V_2 = L_4; String_t* L_5 = V_2; V_1 = (Il2CppChar*)((uintptr_t)L_5); Il2CppChar* L_6 = V_1; if (!L_6) { goto IL_0026; } } { Il2CppChar* L_7 = V_1; int32_t L_8; L_8 = RuntimeHelpers_get_OffsetToStringData_mEB8E6EAEBAFAB7CD7F7A915B3081785AABB9FC42(/*hidden argument*/NULL); V_1 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_7, (int32_t)L_8)); } IL_0026: { V_3 = 0; Il2CppChar* L_9 = V_1; int32_t L_10 = V_0; uint64_t* L_11 = ___flags1; UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A ** L_12 = ___syntax2; IL2CPP_RUNTIME_CLASS_INIT(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); uint16_t L_13; L_13 = Uri_ParseSchemeCheckImplicitFile_m5F6B3C184CF455ED80D78937F208EB8C10265395((Il2CppChar*)(Il2CppChar*)L_9, (uint16_t)((int32_t)((uint16_t)L_10)), (int32_t*)(&V_3), (uint64_t*)L_11, (UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A **)L_12, /*hidden argument*/NULL); V_4 = L_13; int32_t L_14 = V_3; if (!L_14) { goto IL_003b; } } { int32_t L_15 = V_3; return L_15; } IL_003b: { uint64_t* L_16 = ___flags1; uint64_t* L_17 = ___flags1; int64_t L_18 = *((int64_t*)L_17); uint16_t L_19 = V_4; *((int64_t*)L_16) = (int64_t)((int64_t)((int64_t)L_18|(int64_t)((int64_t)((uint64_t)L_19)))); V_2 = (String_t*)NULL; return (int32_t)(0); } } // System.UriFormatException System.Uri::ParseMinimal() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D * Uri_ParseMinimal_m47FF7ACAEB543DE87332F9DEA79F92ADC575107F (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { int32_t L_0; L_0 = Uri_PrivateParseMinimal_m154A67FFA2FA8E2D9215163B56DF1BB88576A369(__this, /*hidden argument*/NULL); V_0 = L_0; int32_t L_1 = V_0; if (L_1) { goto IL_000c; } } { return (UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D *)NULL; } IL_000c: { uint64_t L_2 = __this->get_m_Flags_17(); __this->set_m_Flags_17(((int64_t)((int64_t)L_2|(int64_t)((int64_t)((int64_t)((int32_t)67108864)))))); int32_t L_3 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D * L_4; L_4 = Uri_GetException_m6A158C16E69136DF56BCF19CC4C7DCCC2601CF84(L_3, /*hidden argument*/NULL); return L_4; } } // System.ParsingError System.Uri::PrivateParseMinimal() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Uri_PrivateParseMinimal_m154A67FFA2FA8E2D9215163B56DF1BB88576A369 (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } uint16_t V_0 = 0; uint16_t V_1 = 0; String_t* V_2 = NULL; Il2CppChar* V_3 = NULL; String_t* V_4 = NULL; Il2CppChar V_5 = 0x0; uint16_t V_6 = 0; Il2CppChar V_7 = 0x0; Il2CppChar V_8 = 0x0; int32_t V_9 = 0; String_t* G_B5_0 = NULL; uint64_t G_B79_0 = 0; Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * G_B79_1 = NULL; uint64_t G_B78_0 = 0; Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * G_B78_1 = NULL; int64_t G_B80_0 = 0; uint64_t G_B80_1 = 0; Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * G_B80_2 = NULL; { uint64_t L_0 = __this->get_m_Flags_17(); V_0 = (uint16_t)((int32_t)((uint16_t)((int64_t)((int64_t)L_0&(int64_t)((int64_t)((int64_t)((int32_t)65535))))))); String_t* L_1 = __this->get_m_String_13(); NullCheck(L_1); int32_t L_2; L_2 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_1, /*hidden argument*/NULL); V_1 = (uint16_t)((int32_t)((uint16_t)L_2)); V_2 = (String_t*)NULL; uint64_t L_3 = __this->get_m_Flags_17(); __this->set_m_Flags_17(((int64_t)((int64_t)L_3&(int64_t)((int64_t)((int64_t)((int32_t)-16842752)))))); bool L_4 = __this->get_m_iriParsing_19(); if (!L_4) { goto IL_005d; } } { uint64_t L_5 = __this->get_m_Flags_17(); if (!((int64_t)((int64_t)L_5&(int64_t)((int64_t)8589934592LL)))) { goto IL_005d; } } { uint64_t L_6 = __this->get_m_Flags_17(); if (!((int64_t)((int64_t)L_6&(int64_t)((int64_t)17179869184LL)))) { goto IL_0065; } } IL_005d: { String_t* L_7 = __this->get_m_String_13(); G_B5_0 = L_7; goto IL_006b; } IL_0065: { String_t* L_8 = __this->get_m_originalUnicodeString_14(); G_B5_0 = L_8; } IL_006b: { V_4 = G_B5_0; String_t* L_9 = V_4; V_3 = (Il2CppChar*)((uintptr_t)L_9); Il2CppChar* L_10 = V_3; if (!L_10) { goto IL_007c; } } { Il2CppChar* L_11 = V_3; int32_t L_12; L_12 = RuntimeHelpers_get_OffsetToStringData_mEB8E6EAEBAFAB7CD7F7A915B3081785AABB9FC42(/*hidden argument*/NULL); V_3 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_11, (int32_t)L_12)); } IL_007c: { uint16_t L_13 = V_1; uint16_t L_14 = V_0; if ((((int32_t)L_13) <= ((int32_t)L_14))) { goto IL_00b1; } } { Il2CppChar* L_15 = V_3; uint16_t L_16 = V_1; int32_t L_17 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_15, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_16, (int32_t)1))), (int32_t)2))))); IL2CPP_RUNTIME_CLASS_INIT(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); bool L_18; L_18 = Uri_IsLWS_m4A41E0157130C65E6768C4F5CFEE2219DAE773B4(L_17, /*hidden argument*/NULL); if (!L_18) { goto IL_00b1; } } { uint16_t L_19 = V_1; V_1 = (uint16_t)((int32_t)((uint16_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1)))); } IL_0095: { uint16_t L_20 = V_1; uint16_t L_21 = V_0; if ((((int32_t)L_20) == ((int32_t)L_21))) { goto IL_00ac; } } { Il2CppChar* L_22 = V_3; uint16_t L_23 = V_1; int32_t L_24 = ((int32_t)((uint16_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_23, (int32_t)1)))); V_1 = (uint16_t)L_24; int32_t L_25 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_22, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_24), (int32_t)2))))); IL2CPP_RUNTIME_CLASS_INIT(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); bool L_26; L_26 = Uri_IsLWS_m4A41E0157130C65E6768C4F5CFEE2219DAE773B4(L_25, /*hidden argument*/NULL); if (L_26) { goto IL_0095; } } IL_00ac: { uint16_t L_27 = V_1; V_1 = (uint16_t)((int32_t)((uint16_t)((int32_t)il2cpp_codegen_add((int32_t)L_27, (int32_t)1)))); } IL_00b1: { UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_28 = __this->get_m_Syntax_15(); NullCheck(L_28); bool L_29; L_29 = UriParser_IsAllSet_m356BD044D8A53560B6A7AA9B81A20A364E015C18(L_28, ((int32_t)1048704), /*hidden argument*/NULL); if (!L_29) { goto IL_0273; } } { bool L_30; L_30 = Uri_NotAny_m2C222924AE10957D835ECBC887D456FB30DCF969(__this, ((int64_t)((int64_t)((int32_t)536870912))), /*hidden argument*/NULL); if (!L_30) { goto IL_0273; } } { uint16_t L_31 = V_0; uint16_t L_32 = V_1; if ((((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_31, (int32_t)1))) >= ((int32_t)L_32))) { goto IL_0273; } } { uint16_t L_33 = V_0; V_6 = L_33; goto IL_0101; } IL_00e5: { Il2CppChar* L_34 = V_3; uint16_t L_35 = V_6; int32_t L_36 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_34, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_35), (int32_t)2))))); int32_t L_37 = L_36; V_5 = L_37; if ((((int32_t)L_37) == ((int32_t)((int32_t)92)))) { goto IL_00fa; } } { Il2CppChar L_38 = V_5; if ((!(((uint32_t)L_38) == ((uint32_t)((int32_t)47))))) { goto IL_0106; } } IL_00fa: { uint16_t L_39 = V_6; V_6 = (uint16_t)((int32_t)((uint16_t)((int32_t)il2cpp_codegen_add((int32_t)L_39, (int32_t)1)))); } IL_0101: { uint16_t L_40 = V_6; uint16_t L_41 = V_1; if ((((int32_t)L_40) < ((int32_t)L_41))) { goto IL_00e5; } } IL_0106: { UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_42 = __this->get_m_Syntax_15(); NullCheck(L_42); bool L_43; L_43 = UriParser_InFact_m4E58BAFAB5A9BC24854C815FC093E16D4F1CFA4D(L_42, ((int32_t)8192), /*hidden argument*/NULL); if (L_43) { goto IL_0122; } } { uint16_t L_44 = V_6; uint16_t L_45 = V_0; if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_44, (int32_t)L_45))) > ((int32_t)3))) { goto IL_0273; } } IL_0122: { uint16_t L_46 = V_6; uint16_t L_47 = V_0; if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_46, (int32_t)L_47))) < ((int32_t)2))) { goto IL_013c; } } { uint64_t L_48 = __this->get_m_Flags_17(); __this->set_m_Flags_17(((int64_t)((int64_t)L_48|(int64_t)((int64_t)((int64_t)((int32_t)1048576)))))); } IL_013c: { uint16_t L_49 = V_6; uint16_t L_50 = V_1; if ((((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_49, (int32_t)1))) >= ((int32_t)L_50))) { goto IL_01f7; } } { Il2CppChar* L_51 = V_3; uint16_t L_52 = V_6; int32_t L_53 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_51, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)((int32_t)il2cpp_codegen_add((int32_t)L_52, (int32_t)1))), (int32_t)2))))); int32_t L_54 = L_53; V_5 = L_54; if ((((int32_t)L_54) == ((int32_t)((int32_t)58)))) { goto IL_0160; } } { Il2CppChar L_55 = V_5; if ((!(((uint32_t)L_55) == ((uint32_t)((int32_t)124))))) { goto IL_01f7; } } IL_0160: { Il2CppChar* L_56 = V_3; uint16_t L_57 = V_6; int32_t L_58 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_56, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_57), (int32_t)2))))); IL2CPP_RUNTIME_CLASS_INIT(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); bool L_59; L_59 = Uri_IsAsciiLetter_mBEE6BD837C66CBB199E8A9FAB14A85744368F0FC(L_58, /*hidden argument*/NULL); if (!L_59) { goto IL_01f7; } } { uint16_t L_60 = V_6; uint16_t L_61 = V_1; if ((((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_60, (int32_t)2))) >= ((int32_t)L_61))) { goto IL_0190; } } { Il2CppChar* L_62 = V_3; uint16_t L_63 = V_6; int32_t L_64 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_62, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)((int32_t)il2cpp_codegen_add((int32_t)L_63, (int32_t)2))), (int32_t)2))))); int32_t L_65 = L_64; V_5 = L_65; if ((((int32_t)L_65) == ((int32_t)((int32_t)92)))) { goto IL_01a7; } } { Il2CppChar L_66 = V_5; if ((((int32_t)L_66) == ((int32_t)((int32_t)47)))) { goto IL_01a7; } } IL_0190: { UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_67 = __this->get_m_Syntax_15(); NullCheck(L_67); bool L_68; L_68 = UriParser_InFact_m4E58BAFAB5A9BC24854C815FC093E16D4F1CFA4D(L_67, ((int32_t)8192), /*hidden argument*/NULL); if (!L_68) { goto IL_0273; } } { return (int32_t)(7); } IL_01a7: { uint64_t L_69 = __this->get_m_Flags_17(); __this->set_m_Flags_17(((int64_t)((int64_t)L_69|(int64_t)((int64_t)((int64_t)((int32_t)134217728)))))); UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_70 = __this->get_m_Syntax_15(); NullCheck(L_70); bool L_71; L_71 = UriParser_InFact_m4E58BAFAB5A9BC24854C815FC093E16D4F1CFA4D(L_70, 1, /*hidden argument*/NULL); if (!L_71) { goto IL_01db; } } { uint64_t L_72 = __this->get_m_Flags_17(); __this->set_m_Flags_17(((int64_t)((int64_t)L_72|(int64_t)((int64_t)((int64_t)((int32_t)1048576)))))); } IL_01db: { uint16_t L_73 = V_6; uint16_t L_74 = V_0; if ((((int32_t)L_73) == ((int32_t)L_74))) { goto IL_01f2; } } { uint16_t L_75 = V_6; uint16_t L_76 = V_0; if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_75, (int32_t)L_76))) == ((int32_t)2))) { goto IL_01f2; } } { uint16_t L_77 = V_6; V_0 = (uint16_t)((int32_t)((uint16_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_77, (int32_t)1)))); goto IL_0273; } IL_01f2: { uint16_t L_78 = V_6; V_0 = L_78; goto IL_0273; } IL_01f7: { UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_79 = __this->get_m_Syntax_15(); NullCheck(L_79); bool L_80; L_80 = UriParser_InFact_m4E58BAFAB5A9BC24854C815FC093E16D4F1CFA4D(L_79, ((int32_t)8192), /*hidden argument*/NULL); if (!L_80) { goto IL_0273; } } { uint16_t L_81 = V_6; uint16_t L_82 = V_0; if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_81, (int32_t)L_82))) < ((int32_t)2))) { goto IL_0273; } } { uint16_t L_83 = V_6; uint16_t L_84 = V_0; if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_83, (int32_t)L_84))) == ((int32_t)3))) { goto IL_0273; } } { uint16_t L_85 = V_6; uint16_t L_86 = V_1; if ((((int32_t)L_85) >= ((int32_t)L_86))) { goto IL_0273; } } { Il2CppChar* L_87 = V_3; uint16_t L_88 = V_6; int32_t L_89 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_87, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_88), (int32_t)2))))); if ((((int32_t)L_89) == ((int32_t)((int32_t)63)))) { goto IL_0273; } } { Il2CppChar* L_90 = V_3; uint16_t L_91 = V_6; int32_t L_92 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_90, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_91), (int32_t)2))))); if ((((int32_t)L_92) == ((int32_t)((int32_t)35)))) { goto IL_0273; } } { IL2CPP_RUNTIME_CLASS_INIT(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); bool L_93 = ((Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields*)il2cpp_codegen_static_fields_for(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var))->get_IsWindowsFileSystem_25(); if (L_93) { goto IL_025d; } } { uint16_t L_94 = V_6; uint16_t L_95 = V_0; if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_94, (int32_t)L_95))) <= ((int32_t)3))) { goto IL_0273; } } { uint64_t L_96 = __this->get_m_Flags_17(); __this->set_m_Flags_17(((int64_t)((int64_t)L_96|(int64_t)((int64_t)17592186044416LL)))); uint16_t L_97 = V_6; V_0 = L_97; goto IL_0273; } IL_025d: { uint64_t L_98 = __this->get_m_Flags_17(); __this->set_m_Flags_17(((int64_t)((int64_t)L_98|(int64_t)((int64_t)((int64_t)((int32_t)268435456)))))); uint16_t L_99 = V_6; V_0 = L_99; } IL_0273: { uint64_t L_100 = __this->get_m_Flags_17(); if (((int64_t)((int64_t)L_100&(int64_t)((int64_t)((int64_t)((int32_t)402653184)))))) { goto IL_03c3; } } { IL2CPP_RUNTIME_CLASS_INIT(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); bool L_101 = ((Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields*)il2cpp_codegen_static_fields_for(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var))->get_IsWindowsFileSystem_25(); if (L_101) { goto IL_02a1; } } { uint64_t L_102 = __this->get_m_Flags_17(); if (((int64_t)((int64_t)L_102&(int64_t)((int64_t)17592722915328LL)))) { goto IL_03c3; } } IL_02a1: { uint16_t L_103 = V_0; uint16_t L_104 = V_1; if ((((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_103, (int32_t)2))) > ((int32_t)L_104))) { goto IL_0389; } } { Il2CppChar* L_105 = V_3; uint16_t L_106 = V_0; int32_t L_107 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_105, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_106), (int32_t)2))))); V_7 = L_107; Il2CppChar* L_108 = V_3; uint16_t L_109 = V_0; int32_t L_110 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_108, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)((int32_t)il2cpp_codegen_add((int32_t)L_109, (int32_t)1))), (int32_t)2))))); V_8 = L_110; UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_111 = __this->get_m_Syntax_15(); NullCheck(L_111); bool L_112; L_112 = UriParser_InFact_m4E58BAFAB5A9BC24854C815FC093E16D4F1CFA4D(L_111, 1, /*hidden argument*/NULL); if (!L_112) { goto IL_031d; } } { IL2CPP_RUNTIME_CLASS_INIT(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); bool L_113 = ((Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields*)il2cpp_codegen_static_fields_for(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var))->get_IsWindowsFileSystem_25(); if (!L_113) { goto IL_02eb; } } { Il2CppChar L_114 = V_7; if ((((int32_t)L_114) == ((int32_t)((int32_t)47)))) { goto IL_02df; } } { Il2CppChar L_115 = V_7; if ((!(((uint32_t)L_115) == ((uint32_t)((int32_t)92))))) { goto IL_02eb; } } IL_02df: { Il2CppChar L_116 = V_8; if ((((int32_t)L_116) == ((int32_t)((int32_t)47)))) { goto IL_02fe; } } { Il2CppChar L_117 = V_8; if ((((int32_t)L_117) == ((int32_t)((int32_t)92)))) { goto IL_02fe; } } IL_02eb: { IL2CPP_RUNTIME_CLASS_INIT(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); bool L_118 = ((Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields*)il2cpp_codegen_static_fields_for(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var))->get_IsWindowsFileSystem_25(); if (L_118) { goto IL_031b; } } { Il2CppChar L_119 = V_7; if ((!(((uint32_t)L_119) == ((uint32_t)((int32_t)47))))) { goto IL_031b; } } { Il2CppChar L_120 = V_8; if ((!(((uint32_t)L_120) == ((uint32_t)((int32_t)47))))) { goto IL_031b; } } IL_02fe: { uint64_t L_121 = __this->get_m_Flags_17(); __this->set_m_Flags_17(((int64_t)((int64_t)L_121|(int64_t)((int64_t)((int64_t)((int32_t)1048576)))))); uint16_t L_122 = V_0; V_0 = (uint16_t)((int32_t)((uint16_t)((int32_t)il2cpp_codegen_add((int32_t)L_122, (int32_t)2)))); goto IL_03c3; } IL_031b: { return (int32_t)(3); } IL_031d: { UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_123 = __this->get_m_Syntax_15(); NullCheck(L_123); bool L_124; L_124 = UriParser_InFact_m4E58BAFAB5A9BC24854C815FC093E16D4F1CFA4D(L_123, 2, /*hidden argument*/NULL); if (!L_124) { goto IL_035f; } } { bool L_125; L_125 = Uri_InFact_mF6A06FA7246740D26093421D41D18000AC2CC0C4(__this, ((int64_t)((int64_t)((int32_t)1048576))), /*hidden argument*/NULL); if (L_125) { goto IL_0345; } } { Il2CppChar L_126 = V_7; if ((!(((uint32_t)L_126) == ((uint32_t)((int32_t)47))))) { goto IL_035f; } } { Il2CppChar L_127 = V_8; if ((!(((uint32_t)L_127) == ((uint32_t)((int32_t)47))))) { goto IL_035f; } } IL_0345: { uint64_t L_128 = __this->get_m_Flags_17(); __this->set_m_Flags_17(((int64_t)((int64_t)L_128|(int64_t)((int64_t)((int64_t)((int32_t)1048576)))))); uint16_t L_129 = V_0; V_0 = (uint16_t)((int32_t)((uint16_t)((int32_t)il2cpp_codegen_add((int32_t)L_129, (int32_t)2)))); goto IL_03c3; } IL_035f: { UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_130 = __this->get_m_Syntax_15(); NullCheck(L_130); bool L_131; L_131 = UriParser_NotAny_m6A42FAC623F0EBDE441782DAC3E3B2ED34756D91(L_130, ((int32_t)16384), /*hidden argument*/NULL); if (!L_131) { goto IL_03c3; } } { uint64_t L_132 = __this->get_m_Flags_17(); uint16_t L_133 = V_0; __this->set_m_Flags_17(((int64_t)((int64_t)L_132|(int64_t)((int64_t)((int64_t)((int64_t)((uint64_t)L_133))|(int64_t)((int64_t)((int64_t)((int32_t)458752)))))))); return (int32_t)(0); } IL_0389: { UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_134 = __this->get_m_Syntax_15(); NullCheck(L_134); bool L_135; L_135 = UriParser_InFact_m4E58BAFAB5A9BC24854C815FC093E16D4F1CFA4D(L_134, 1, /*hidden argument*/NULL); if (!L_135) { goto IL_0399; } } { return (int32_t)(3); } IL_0399: { UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_136 = __this->get_m_Syntax_15(); NullCheck(L_136); bool L_137; L_137 = UriParser_NotAny_m6A42FAC623F0EBDE441782DAC3E3B2ED34756D91(L_136, ((int32_t)16384), /*hidden argument*/NULL); if (!L_137) { goto IL_03c3; } } { uint64_t L_138 = __this->get_m_Flags_17(); uint16_t L_139 = V_0; __this->set_m_Flags_17(((int64_t)((int64_t)L_138|(int64_t)((int64_t)((int64_t)((int64_t)((uint64_t)L_139))|(int64_t)((int64_t)((int64_t)((int32_t)458752)))))))); return (int32_t)(0); } IL_03c3: { bool L_140; L_140 = Uri_InFact_mF6A06FA7246740D26093421D41D18000AC2CC0C4(__this, ((int64_t)((int64_t)((int32_t)134217728))), /*hidden argument*/NULL); if (!L_140) { goto IL_040c; } } { uint64_t L_141 = __this->get_m_Flags_17(); uint64_t L_142 = __this->get_m_Flags_17(); G_B78_0 = L_141; G_B78_1 = __this; if (((int64_t)((int64_t)L_142&(int64_t)((int64_t)((int64_t)((int32_t)1048576)))))) { G_B79_0 = L_141; G_B79_1 = __this; goto IL_03ef; } } { G_B80_0 = ((int64_t)((int64_t)((int32_t)458752))); G_B80_1 = G_B78_0; G_B80_2 = G_B78_1; goto IL_03f5; } IL_03ef: { G_B80_0 = ((int64_t)((int64_t)((int32_t)327680))); G_B80_1 = G_B79_0; G_B80_2 = G_B79_1; } IL_03f5: { NullCheck(G_B80_2); G_B80_2->set_m_Flags_17(((int64_t)((int64_t)G_B80_1|(int64_t)G_B80_0))); uint64_t L_143 = __this->get_m_Flags_17(); uint16_t L_144 = V_0; __this->set_m_Flags_17(((int64_t)((int64_t)L_143|(int64_t)((int64_t)((uint64_t)L_144))))); return (int32_t)(0); } IL_040c: { V_9 = 0; Il2CppChar* L_145 = V_3; uint16_t L_146 = V_0; uint16_t L_147 = V_1; uint64_t* L_148 = __this->get_address_of_m_Flags_17(); UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_149 = __this->get_m_Syntax_15(); uint16_t L_150; L_150 = Uri_CheckAuthorityHelper_mC5010AEC19EED1968EDE7CB52C92AC0AC0869503(__this, (Il2CppChar*)(Il2CppChar*)L_145, L_146, L_147, (int32_t*)(&V_9), (uint64_t*)L_148, L_149, (String_t**)(&V_2), /*hidden argument*/NULL); V_0 = L_150; int32_t L_151 = V_9; if (!L_151) { goto IL_0430; } } { int32_t L_152 = V_9; return L_152; } IL_0430: { uint16_t L_153 = V_0; uint16_t L_154 = V_1; if ((((int32_t)L_153) >= ((int32_t)L_154))) { goto IL_0462; } } { Il2CppChar* L_155 = V_3; uint16_t L_156 = V_0; int32_t L_157 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_155, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_156), (int32_t)2))))); if ((!(((uint32_t)L_157) == ((uint32_t)((int32_t)92))))) { goto IL_0462; } } { bool L_158; L_158 = Uri_NotAny_m2C222924AE10957D835ECBC887D456FB30DCF969(__this, ((int64_t)((int64_t)((int32_t)536870912))), /*hidden argument*/NULL); if (!L_158) { goto IL_0462; } } { UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_159 = __this->get_m_Syntax_15(); NullCheck(L_159); bool L_160; L_160 = UriParser_NotAny_m6A42FAC623F0EBDE441782DAC3E3B2ED34756D91(L_159, ((int32_t)1048576), /*hidden argument*/NULL); if (!L_160) { goto IL_0462; } } { return (int32_t)(((int32_t)11)); } IL_0462: { uint64_t L_161 = __this->get_m_Flags_17(); uint16_t L_162 = V_0; __this->set_m_Flags_17(((int64_t)((int64_t)L_161|(int64_t)((int64_t)((uint64_t)L_162))))); V_4 = (String_t*)NULL; IL2CPP_RUNTIME_CLASS_INIT(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); int32_t L_163 = ((Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields*)il2cpp_codegen_static_fields_for(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var))->get_s_IdnScope_22(); il2cpp_codegen_memory_barrier(); if (L_163) { goto IL_0485; } } { bool L_164 = __this->get_m_iriParsing_19(); if (!L_164) { goto IL_048d; } } IL_0485: { String_t* L_165 = V_2; uint16_t L_166 = V_0; Uri_PrivateParseMinimalIri_m1A23B409BC4FE17A66599BFE0E0CD62C06D45E2B(__this, L_165, L_166, /*hidden argument*/NULL); } IL_048d: { return (int32_t)(0); } } // System.Void System.Uri::PrivateParseMinimalIri(System.String,System.UInt16) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Uri_PrivateParseMinimalIri_m1A23B409BC4FE17A66599BFE0E0CD62C06D45E2B (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, String_t* ___newHost0, uint16_t ___idx1, const RuntimeMethod* method) { { String_t* L_0 = ___newHost0; if (!L_0) { goto IL_000a; } } { String_t* L_1 = ___newHost0; __this->set_m_String_13(L_1); } IL_000a: { bool L_2 = __this->get_m_iriParsing_19(); if (L_2) { goto IL_003e; } } { bool L_3; L_3 = Uri_get_AllowIdn_m4031E81D7D0E44FC81C6951D78B2C836EC8270D7(__this, /*hidden argument*/NULL); if (!L_3) { goto IL_003e; } } { uint64_t L_4 = __this->get_m_Flags_17(); if (((int64_t)((int64_t)L_4&(int64_t)((int64_t)4294967296LL)))) { goto IL_0075; } } { uint64_t L_5 = __this->get_m_Flags_17(); if (((int64_t)((int64_t)L_5&(int64_t)((int64_t)68719476736LL)))) { goto IL_0075; } } IL_003e: { bool L_6 = __this->get_m_iriParsing_19(); if (!L_6) { goto IL_00cb; } } { uint64_t L_7 = __this->get_m_Flags_17(); if (((int64_t)((int64_t)L_7&(int64_t)((int64_t)8589934592LL)))) { goto IL_00cb; } } { bool L_8; L_8 = Uri_get_AllowIdn_m4031E81D7D0E44FC81C6951D78B2C836EC8270D7(__this, /*hidden argument*/NULL); if (!L_8) { goto IL_00cb; } } { uint64_t L_9 = __this->get_m_Flags_17(); if (!((int64_t)((int64_t)L_9&(int64_t)((int64_t)4294967296LL)))) { goto IL_00cb; } } IL_0075: { uint64_t L_10 = __this->get_m_Flags_17(); __this->set_m_Flags_17(((int64_t)((int64_t)L_10&(int64_t)((int64_t)((int64_t)((int32_t)-65536)))))); uint64_t L_11 = __this->get_m_Flags_17(); String_t* L_12 = __this->get_m_String_13(); NullCheck(L_12); int32_t L_13; L_13 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_12, /*hidden argument*/NULL); __this->set_m_Flags_17(((int64_t)((int64_t)L_11|(int64_t)((int64_t)((int64_t)L_13))))); String_t* L_14 = __this->get_m_String_13(); String_t* L_15 = __this->get_m_originalUnicodeString_14(); uint16_t L_16 = ___idx1; String_t* L_17 = __this->get_m_originalUnicodeString_14(); NullCheck(L_17); int32_t L_18; L_18 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_17, /*hidden argument*/NULL); uint16_t L_19 = ___idx1; NullCheck(L_15); String_t* L_20; L_20 = String_Substring_m7A39A2AC0893AE940CF4CEC841326D56FFB9D86B(L_15, L_16, ((int32_t)il2cpp_codegen_subtract((int32_t)L_18, (int32_t)L_19)), /*hidden argument*/NULL); String_t* L_21; L_21 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(L_14, L_20, /*hidden argument*/NULL); __this->set_m_String_13(L_21); } IL_00cb: { bool L_22 = __this->get_m_iriParsing_19(); if (!L_22) { goto IL_00fb; } } { uint64_t L_23 = __this->get_m_Flags_17(); if (!((int64_t)((int64_t)L_23&(int64_t)((int64_t)8589934592LL)))) { goto IL_00fb; } } { uint64_t L_24 = __this->get_m_Flags_17(); __this->set_m_Flags_17(((int64_t)((int64_t)L_24|(int64_t)((int64_t)274877906944LL)))); } IL_00fb: { return; } } // System.Void System.Uri::CreateUriInfo(System.Uri/Flags) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Uri_CreateUriInfo_mD8864BD45B6397D4C3AED68BA2D3EAEB520DB9E6 (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, uint64_t ___cF0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * V_0 = NULL; uint16_t V_1 = 0; bool V_2 = false; bool V_3 = false; bool V_4 = false; Il2CppChar* V_5 = NULL; String_t* V_6 = NULL; int32_t V_7 = 0; uint16_t V_8 = 0; String_t* V_9 = NULL; bool V_10 = 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); String_t* G_B48_0 = NULL; { UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_0 = (UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 *)il2cpp_codegen_object_new(UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45_il2cpp_TypeInfo_var); UriInfo__ctor_m990C9CA368096AFE12B92F3605FAA70EC0C69BB8(L_0, /*hidden argument*/NULL); V_0 = L_0; UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_1 = V_0; NullCheck(L_1); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_2 = L_1->get_address_of_Offset_3(); String_t* L_3 = __this->get_m_String_13(); NullCheck(L_3); int32_t L_4; L_4 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_3, /*hidden argument*/NULL); L_2->set_End_7((uint16_t)((int32_t)((uint16_t)L_4))); bool L_5; L_5 = Uri_get_UserDrivenParsing_mF09087D4DE9A0823EBF1FC0C14101335D01393F2(__this, /*hidden argument*/NULL); if (L_5) { goto IL_0423; } } { V_2 = (bool)0; uint64_t L_6 = ___cF0; if (!((int64_t)((int64_t)L_6&(int64_t)((int64_t)((int64_t)((int32_t)536870912)))))) { goto IL_00c3; } } { V_1 = (uint16_t)0; goto IL_0051; } IL_003b: { uint16_t L_7 = V_1; V_1 = (uint16_t)((int32_t)((uint16_t)((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)1)))); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_8 = V_0; NullCheck(L_8); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_9 = L_8->get_address_of_Offset_3(); uint16_t* L_10 = L_9->get_address_of_Scheme_0(); uint16_t* L_11 = L_10; int32_t L_12 = *((uint16_t*)L_11); *((int16_t*)L_11) = (int16_t)((int32_t)((uint16_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)))); } IL_0051: { uint16_t L_13 = V_1; UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_14 = V_0; NullCheck(L_14); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_15 = L_14->get_address_of_Offset_3(); uint16_t L_16 = L_15->get_End_7(); if ((((int32_t)L_13) >= ((int32_t)L_16))) { goto IL_0072; } } { String_t* L_17 = __this->get_m_String_13(); uint16_t L_18 = V_1; NullCheck(L_17); Il2CppChar L_19; L_19 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_17, L_18, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); bool L_20; L_20 = Uri_IsLWS_m4A41E0157130C65E6768C4F5CFEE2219DAE773B4(L_19, /*hidden argument*/NULL); if (L_20) { goto IL_003b; } } IL_0072: { uint64_t L_21 = ___cF0; IL2CPP_RUNTIME_CLASS_INIT(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); bool L_22; L_22 = Uri_StaticInFact_m6B17A3B95B81DABD390B643ABD9ADAA316D5EF98(L_21, ((int64_t)((int64_t)((int32_t)268435456))), /*hidden argument*/NULL); if (!L_22) { goto IL_0172; } } { uint16_t L_23 = V_1; V_1 = (uint16_t)((int32_t)((uint16_t)((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)2)))); goto IL_008f; } IL_008a: { uint16_t L_24 = V_1; V_1 = (uint16_t)((int32_t)((uint16_t)((int32_t)il2cpp_codegen_add((int32_t)L_24, (int32_t)1)))); } IL_008f: { uint16_t L_25 = V_1; uint64_t L_26 = ___cF0; if ((((int32_t)L_25) >= ((int32_t)((int32_t)((uint16_t)((int64_t)((int64_t)L_26&(int64_t)((int64_t)((int64_t)((int32_t)65535)))))))))) { goto IL_0172; } } { String_t* L_27 = __this->get_m_String_13(); uint16_t L_28 = V_1; NullCheck(L_27); Il2CppChar L_29; L_29 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_27, L_28, /*hidden argument*/NULL); if ((((int32_t)L_29) == ((int32_t)((int32_t)47)))) { goto IL_008a; } } { String_t* L_30 = __this->get_m_String_13(); uint16_t L_31 = V_1; NullCheck(L_30); Il2CppChar L_32; L_32 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_30, L_31, /*hidden argument*/NULL); if ((((int32_t)L_32) == ((int32_t)((int32_t)92)))) { goto IL_008a; } } { goto IL_0172; } IL_00c3: { UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_33 = __this->get_m_Syntax_15(); NullCheck(L_33); String_t* L_34; L_34 = UriParser_get_SchemeName_mFCD123235673631E05FE9BAF6955A0B43EEEBD80_inline(L_33, /*hidden argument*/NULL); NullCheck(L_34); int32_t L_35; L_35 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_34, /*hidden argument*/NULL); V_1 = (uint16_t)((int32_t)((uint16_t)L_35)); goto IL_00e8; } IL_00d7: { UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_36 = V_0; NullCheck(L_36); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_37 = L_36->get_address_of_Offset_3(); uint16_t* L_38 = L_37->get_address_of_Scheme_0(); uint16_t* L_39 = L_38; int32_t L_40 = *((uint16_t*)L_39); *((int16_t*)L_39) = (int16_t)((int32_t)((uint16_t)((int32_t)il2cpp_codegen_add((int32_t)L_40, (int32_t)1)))); } IL_00e8: { String_t* L_41 = __this->get_m_String_13(); uint16_t L_42 = V_1; uint16_t L_43 = L_42; V_1 = (uint16_t)((int32_t)((uint16_t)((int32_t)il2cpp_codegen_add((int32_t)L_43, (int32_t)1)))); NullCheck(L_41); Il2CppChar L_44; L_44 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_41, L_43, /*hidden argument*/NULL); if ((!(((uint32_t)L_44) == ((uint32_t)((int32_t)58))))) { goto IL_00d7; } } { uint64_t L_45 = ___cF0; if (!((int64_t)((int64_t)L_45&(int64_t)((int64_t)((int64_t)((int32_t)1048576)))))) { goto IL_0172; } } { String_t* L_46 = __this->get_m_String_13(); uint16_t L_47 = V_1; NullCheck(L_46); Il2CppChar L_48; L_48 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_46, L_47, /*hidden argument*/NULL); if ((((int32_t)L_48) == ((int32_t)((int32_t)92)))) { goto IL_0129; } } { String_t* L_49 = __this->get_m_String_13(); uint16_t L_50 = V_1; NullCheck(L_49); Il2CppChar L_51; L_51 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_49, ((int32_t)il2cpp_codegen_add((int32_t)L_50, (int32_t)1)), /*hidden argument*/NULL); if ((!(((uint32_t)L_51) == ((uint32_t)((int32_t)92))))) { goto IL_012b; } } IL_0129: { V_2 = (bool)1; } IL_012b: { uint16_t L_52 = V_1; V_1 = (uint16_t)((int32_t)((uint16_t)((int32_t)il2cpp_codegen_add((int32_t)L_52, (int32_t)2)))); uint64_t L_53 = ___cF0; if (!((int64_t)((int64_t)L_53&(int64_t)((int64_t)17592588697600LL)))) { goto IL_0172; } } { goto IL_0146; } IL_013f: { V_2 = (bool)1; uint16_t L_54 = V_1; V_1 = (uint16_t)((int32_t)((uint16_t)((int32_t)il2cpp_codegen_add((int32_t)L_54, (int32_t)1)))); } IL_0146: { uint16_t L_55 = V_1; uint64_t L_56 = ___cF0; if ((((int32_t)L_55) >= ((int32_t)((int32_t)((uint16_t)((int64_t)((int64_t)L_56&(int64_t)((int64_t)((int64_t)((int32_t)65535)))))))))) { goto IL_0172; } } { String_t* L_57 = __this->get_m_String_13(); uint16_t L_58 = V_1; NullCheck(L_57); Il2CppChar L_59; L_59 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_57, L_58, /*hidden argument*/NULL); if ((((int32_t)L_59) == ((int32_t)((int32_t)47)))) { goto IL_013f; } } { String_t* L_60 = __this->get_m_String_13(); uint16_t L_61 = V_1; NullCheck(L_60); Il2CppChar L_62; L_62 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_60, L_61, /*hidden argument*/NULL); if ((((int32_t)L_62) == ((int32_t)((int32_t)92)))) { goto IL_013f; } } IL_0172: { UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_63 = __this->get_m_Syntax_15(); NullCheck(L_63); int32_t L_64; L_64 = UriParser_get_DefaultPort_m7ECA5BE839D36C7FF854FEA0795D8DE701487D33_inline(L_63, /*hidden argument*/NULL); if ((((int32_t)L_64) == ((int32_t)(-1)))) { goto IL_0197; } } { UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_65 = V_0; NullCheck(L_65); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_66 = L_65->get_address_of_Offset_3(); UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_67 = __this->get_m_Syntax_15(); NullCheck(L_67); int32_t L_68; L_68 = UriParser_get_DefaultPort_m7ECA5BE839D36C7FF854FEA0795D8DE701487D33_inline(L_67, /*hidden argument*/NULL); L_66->set_PortValue_3((uint16_t)((int32_t)((uint16_t)L_68))); } IL_0197: { uint64_t L_69 = ___cF0; if ((((int64_t)((int64_t)((int64_t)L_69&(int64_t)((int64_t)((int64_t)((int32_t)458752)))))) == ((int64_t)((int64_t)((int64_t)((int32_t)458752)))))) { goto IL_01b5; } } { uint64_t L_70 = ___cF0; IL2CPP_RUNTIME_CLASS_INIT(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); bool L_71; L_71 = Uri_StaticInFact_m6B17A3B95B81DABD390B643ABD9ADAA316D5EF98(L_70, ((int64_t)((int64_t)((int32_t)134217728))), /*hidden argument*/NULL); if (!L_71) { goto IL_0210; } } IL_01b5: { UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_72 = V_0; NullCheck(L_72); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_73 = L_72->get_address_of_Offset_3(); uint64_t L_74 = ___cF0; L_73->set_User_1((uint16_t)((int32_t)((uint16_t)((int64_t)((int64_t)L_74&(int64_t)((int64_t)((int64_t)((int32_t)65535)))))))); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_75 = V_0; NullCheck(L_75); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_76 = L_75->get_address_of_Offset_3(); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_77 = V_0; NullCheck(L_77); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_78 = L_77->get_address_of_Offset_3(); uint16_t L_79 = L_78->get_User_1(); L_76->set_Host_2(L_79); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_80 = V_0; NullCheck(L_80); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_81 = L_80->get_address_of_Offset_3(); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_82 = V_0; NullCheck(L_82); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_83 = L_82->get_address_of_Offset_3(); uint16_t L_84 = L_83->get_User_1(); L_81->set_Path_4(L_84); uint64_t L_85 = ___cF0; ___cF0 = ((int64_t)((int64_t)L_85&(int64_t)((int64_t)((int64_t)((int32_t)-65536))))); bool L_86 = V_2; if (!L_86) { goto IL_0423; } } { uint64_t L_87 = ___cF0; ___cF0 = ((int64_t)((int64_t)L_87|(int64_t)((int64_t)((int64_t)1)))); goto IL_0423; } IL_0210: { UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_88 = V_0; NullCheck(L_88); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_89 = L_88->get_address_of_Offset_3(); uint16_t L_90 = V_1; L_89->set_User_1(L_90); uint64_t L_91; L_91 = Uri_get_HostType_m6C142BC37D44CF1F53D80627455BC6B1CB747820(__this, /*hidden argument*/NULL); if ((!(((uint64_t)L_91) == ((uint64_t)((int64_t)((int64_t)((int32_t)327680))))))) { goto IL_0259; } } { UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_92 = V_0; NullCheck(L_92); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_93 = L_92->get_address_of_Offset_3(); uint16_t L_94 = V_1; L_93->set_Host_2(L_94); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_95 = V_0; NullCheck(L_95); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_96 = L_95->get_address_of_Offset_3(); uint64_t L_97 = ___cF0; L_96->set_Path_4((uint16_t)((int32_t)((uint16_t)((int64_t)((int64_t)L_97&(int64_t)((int64_t)((int64_t)((int32_t)65535)))))))); uint64_t L_98 = ___cF0; ___cF0 = ((int64_t)((int64_t)L_98&(int64_t)((int64_t)((int64_t)((int32_t)-65536))))); goto IL_0423; } IL_0259: { uint64_t L_99 = ___cF0; if (!((int64_t)((int64_t)L_99&(int64_t)((int64_t)((int64_t)((int32_t)2097152)))))) { goto IL_028d; } } { goto IL_026a; } IL_0265: { uint16_t L_100 = V_1; V_1 = (uint16_t)((int32_t)((uint16_t)((int32_t)il2cpp_codegen_add((int32_t)L_100, (int32_t)1)))); } IL_026a: { String_t* L_101 = __this->get_m_String_13(); uint16_t L_102 = V_1; NullCheck(L_101); Il2CppChar L_103; L_103 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_101, L_102, /*hidden argument*/NULL); if ((!(((uint32_t)L_103) == ((uint32_t)((int32_t)64))))) { goto IL_0265; } } { uint16_t L_104 = V_1; V_1 = (uint16_t)((int32_t)((uint16_t)((int32_t)il2cpp_codegen_add((int32_t)L_104, (int32_t)1)))); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_105 = V_0; NullCheck(L_105); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_106 = L_105->get_address_of_Offset_3(); uint16_t L_107 = V_1; L_106->set_Host_2(L_107); goto IL_0299; } IL_028d: { UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_108 = V_0; NullCheck(L_108); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_109 = L_108->get_address_of_Offset_3(); uint16_t L_110 = V_1; L_109->set_Host_2(L_110); } IL_0299: { uint64_t L_111 = ___cF0; V_1 = (uint16_t)((int32_t)((uint16_t)((int64_t)((int64_t)L_111&(int64_t)((int64_t)((int64_t)((int32_t)65535))))))); uint64_t L_112 = ___cF0; ___cF0 = ((int64_t)((int64_t)L_112&(int64_t)((int64_t)((int64_t)((int32_t)-65536))))); bool L_113 = V_2; if (!L_113) { goto IL_02b6; } } { uint64_t L_114 = ___cF0; ___cF0 = ((int64_t)((int64_t)L_114|(int64_t)((int64_t)((int64_t)1)))); } IL_02b6: { UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_115 = V_0; NullCheck(L_115); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_116 = L_115->get_address_of_Offset_3(); uint16_t L_117 = V_1; L_116->set_Path_4(L_117); V_3 = (bool)0; uint64_t L_118 = ___cF0; V_4 = (bool)((!(((uint64_t)((int64_t)((int64_t)L_118&(int64_t)((int64_t)274877906944LL)))) <= ((uint64_t)((int64_t)((int64_t)0)))))? 1 : 0); uint64_t L_119 = ___cF0; ___cF0 = ((int64_t)((int64_t)L_119&(int64_t)((int64_t)-274877906945LL))); bool L_120 = V_4; if (!L_120) { goto IL_02fd; } } { UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_121 = V_0; NullCheck(L_121); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_122 = L_121->get_address_of_Offset_3(); String_t* L_123 = __this->get_m_originalUnicodeString_14(); NullCheck(L_123); int32_t L_124; L_124 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_123, /*hidden argument*/NULL); L_122->set_End_7((uint16_t)((int32_t)((uint16_t)L_124))); } IL_02fd: { uint16_t L_125 = V_1; UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_126 = V_0; NullCheck(L_126); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_127 = L_126->get_address_of_Offset_3(); uint16_t L_128 = L_127->get_End_7(); if ((((int32_t)L_125) >= ((int32_t)L_128))) { goto IL_0423; } } { bool L_129 = V_4; if (L_129) { goto IL_031a; } } { String_t* L_130 = __this->get_m_String_13(); G_B48_0 = L_130; goto IL_0320; } IL_031a: { String_t* L_131 = __this->get_m_originalUnicodeString_14(); G_B48_0 = L_131; } IL_0320: { V_6 = G_B48_0; String_t* L_132 = V_6; V_5 = (Il2CppChar*)((uintptr_t)L_132); Il2CppChar* L_133 = V_5; if (!L_133) { goto IL_0335; } } { Il2CppChar* L_134 = V_5; int32_t L_135; L_135 = RuntimeHelpers_get_OffsetToStringData_mEB8E6EAEBAFAB7CD7F7A915B3081785AABB9FC42(/*hidden argument*/NULL); V_5 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_134, (int32_t)L_135)); } IL_0335: { Il2CppChar* L_136 = V_5; uint16_t L_137 = V_1; int32_t L_138 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_136, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_137), (int32_t)2))))); if ((!(((uint32_t)L_138) == ((uint32_t)((int32_t)58))))) { goto IL_0420; } } { V_7 = 0; uint16_t L_139 = V_1; int32_t L_140 = ((int32_t)((uint16_t)((int32_t)il2cpp_codegen_add((int32_t)L_139, (int32_t)1)))); V_1 = (uint16_t)L_140; UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_141 = V_0; NullCheck(L_141); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_142 = L_141->get_address_of_Offset_3(); uint16_t L_143 = L_142->get_End_7(); if ((((int32_t)L_140) >= ((int32_t)L_143))) { goto IL_03dd; } } { Il2CppChar* L_144 = V_5; uint16_t L_145 = V_1; int32_t L_146 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_144, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_145), (int32_t)2))))); V_7 = ((int32_t)((uint16_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_146, (int32_t)((int32_t)48))))); int32_t L_147 = V_7; if ((((int32_t)L_147) == ((int32_t)((int32_t)65535)))) { goto IL_03dd; } } { int32_t L_148 = V_7; if ((((int32_t)L_148) == ((int32_t)((int32_t)15)))) { goto IL_03dd; } } { int32_t L_149 = V_7; if ((((int32_t)L_149) == ((int32_t)((int32_t)65523)))) { goto IL_03dd; } } { V_3 = (bool)1; int32_t L_150 = V_7; if (L_150) { goto IL_0393; } } { uint64_t L_151 = ___cF0; ___cF0 = ((int64_t)((int64_t)L_151|(int64_t)((int64_t)((int64_t)((int32_t)520))))); } IL_0393: { uint16_t L_152 = V_1; V_1 = (uint16_t)((int32_t)((uint16_t)((int32_t)il2cpp_codegen_add((int32_t)L_152, (int32_t)1)))); goto IL_03cf; } IL_039a: { Il2CppChar* L_153 = V_5; uint16_t L_154 = V_1; int32_t L_155 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_153, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_154), (int32_t)2))))); V_8 = (uint16_t)((int32_t)((uint16_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_155, (int32_t)((int32_t)48))))); uint16_t L_156 = V_8; if ((((int32_t)L_156) == ((int32_t)((int32_t)65535)))) { goto IL_03dd; } } { uint16_t L_157 = V_8; if ((((int32_t)L_157) == ((int32_t)((int32_t)15)))) { goto IL_03dd; } } { uint16_t L_158 = V_8; if ((((int32_t)L_158) == ((int32_t)((int32_t)65523)))) { goto IL_03dd; } } { int32_t L_159 = V_7; uint16_t L_160 = V_8; V_7 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_159, (int32_t)((int32_t)10))), (int32_t)L_160)); uint16_t L_161 = V_1; V_1 = (uint16_t)((int32_t)((uint16_t)((int32_t)il2cpp_codegen_add((int32_t)L_161, (int32_t)1)))); } IL_03cf: { uint16_t L_162 = V_1; UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_163 = V_0; NullCheck(L_163); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_164 = L_163->get_address_of_Offset_3(); uint16_t L_165 = L_164->get_End_7(); if ((((int32_t)L_162) < ((int32_t)L_165))) { goto IL_039a; } } IL_03dd: { bool L_166 = V_3; if (!L_166) { goto IL_040a; } } { UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_167 = V_0; NullCheck(L_167); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_168 = L_167->get_address_of_Offset_3(); uint16_t L_169 = L_168->get_PortValue_3(); int32_t L_170 = V_7; if ((((int32_t)L_169) == ((int32_t)((int32_t)((uint16_t)L_170))))) { goto IL_040a; } } { UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_171 = V_0; NullCheck(L_171); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_172 = L_171->get_address_of_Offset_3(); int32_t L_173 = V_7; L_172->set_PortValue_3((uint16_t)((int32_t)((uint16_t)L_173))); uint64_t L_174 = ___cF0; ___cF0 = ((int64_t)((int64_t)L_174|(int64_t)((int64_t)((int64_t)((int32_t)8388608))))); goto IL_0414; } IL_040a: { uint64_t L_175 = ___cF0; ___cF0 = ((int64_t)((int64_t)L_175|(int64_t)((int64_t)((int64_t)((int32_t)520))))); } IL_0414: { UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_176 = V_0; NullCheck(L_176); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_177 = L_176->get_address_of_Offset_3(); uint16_t L_178 = V_1; L_177->set_Path_4(L_178); } IL_0420: { V_6 = (String_t*)NULL; } IL_0423: { uint64_t L_179 = ___cF0; ___cF0 = ((int64_t)((int64_t)L_179|(int64_t)((int64_t)((int64_t)((int32_t)1073741824))))); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_180 = V_0; String_t* L_181 = __this->get_m_DnsSafeHost_16(); NullCheck(L_180); L_180->set_DnsSafeHost_4(L_181); String_t* L_182 = __this->get_m_String_13(); V_9 = L_182; V_10 = (bool)0; } IL_0444: try { // begin try (depth: 1) { String_t* L_183 = V_9; Monitor_Enter_mBEB6CC84184B46F26375EC3FC8921D16E48EA4C4(L_183, (bool*)(&V_10), /*hidden argument*/NULL); uint64_t L_184 = __this->get_m_Flags_17(); if (((int64_t)((int64_t)L_184&(int64_t)((int64_t)((int64_t)((int32_t)1073741824)))))) { goto IL_0478; } } IL_045c: { UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_185 = V_0; __this->set_m_Info_18(L_185); uint64_t L_186 = __this->get_m_Flags_17(); uint64_t L_187 = ___cF0; __this->set_m_Flags_17(((int64_t)((int64_t)((int64_t)((int64_t)L_186&(int64_t)((int64_t)((int64_t)((int32_t)-65536)))))|(int64_t)L_187))); } IL_0478: { IL2CPP_LEAVE(0x486, FINALLY_047a); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_047a; } FINALLY_047a: { // begin finally (depth: 1) { bool L_188 = V_10; if (!L_188) { goto IL_0485; } } IL_047e: { String_t* L_189 = V_9; Monitor_Exit_mA776B403DA88AC77CDEEF67AB9F0D0E77ABD254A(L_189, /*hidden argument*/NULL); } IL_0485: { IL2CPP_END_FINALLY(1146) } } // end finally (depth: 1) IL2CPP_CLEANUP(1146) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x486, IL_0486) } IL_0486: { return; } } // System.Void System.Uri::CreateHostString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Uri_CreateHostString_m2C549411869B57ADE6595800B6493BDB0A52F124 (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UriHelper_tBEFC75B3A4E9E35CB41ADAAE22E0D1D7EE65E53D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } uint64_t V_0 = 0; String_t* V_1 = NULL; UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * V_2 = NULL; bool V_3 = false; uint16_t V_4 = 0; int32_t V_5 = 0; Il2CppChar* V_6 = NULL; String_t* V_7 = NULL; int32_t V_8 = 0; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* V_9 = NULL; uint16_t V_10 = 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) * 3); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); int32_t G_B23_0 = 0; int32_t G_B23_1 = 0; int32_t G_B23_2 = 0; int32_t* G_B23_3 = NULL; RuntimeObject * G_B23_4 = NULL; int32_t G_B23_5 = 0; int32_t G_B23_6 = 0; String_t* G_B23_7 = NULL; int32_t G_B22_0 = 0; int32_t G_B22_1 = 0; int32_t G_B22_2 = 0; int32_t* G_B22_3 = NULL; RuntimeObject * G_B22_4 = NULL; int32_t G_B22_5 = 0; int32_t G_B22_6 = 0; String_t* G_B22_7 = NULL; int32_t G_B24_0 = 0; int32_t G_B24_1 = 0; int32_t G_B24_2 = 0; int32_t G_B24_3 = 0; int32_t* G_B24_4 = NULL; RuntimeObject * G_B24_5 = NULL; int32_t G_B24_6 = 0; int32_t G_B24_7 = 0; String_t* G_B24_8 = NULL; { UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_0 = __this->get_m_Syntax_15(); NullCheck(L_0); bool L_1; L_1 = UriParser_get_IsSimple_m09BA6505FDD1AE0BF6C711AE9C2C3F9379B868F8(L_0, /*hidden argument*/NULL); if (L_1) { goto IL_0069; } } { UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_2 = __this->get_m_Info_18(); V_2 = L_2; V_3 = (bool)0; } IL_0016: try { // begin try (depth: 1) { UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_3 = V_2; Monitor_Enter_mBEB6CC84184B46F26375EC3FC8921D16E48EA4C4(L_3, (bool*)(&V_3), /*hidden argument*/NULL); bool L_4; L_4 = Uri_NotAny_m2C222924AE10957D835ECBC887D456FB30DCF969(__this, ((int64_t)((int64_t)((int32_t)67108864))), /*hidden argument*/NULL); if (!L_4) { goto IL_005d; } } IL_002c: { uint64_t L_5 = __this->get_m_Flags_17(); __this->set_m_Flags_17(((int64_t)((int64_t)L_5|(int64_t)((int64_t)((int64_t)((int32_t)67108864)))))); Uri_GetHostViaCustomSyntax_mF2DABFE767AB49B8F8E0C9E19937AF900A1E4BC7(__this, /*hidden argument*/NULL); uint64_t L_6 = __this->get_m_Flags_17(); __this->set_m_Flags_17(((int64_t)((int64_t)L_6&(int64_t)((int64_t)((int64_t)((int32_t)-67108865)))))); IL2CPP_LEAVE(0x26A, FINALLY_005f); } IL_005d: { IL2CPP_LEAVE(0x69, FINALLY_005f); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_005f; } FINALLY_005f: { // begin finally (depth: 1) { bool L_7 = V_3; if (!L_7) { goto IL_0068; } } IL_0062: { UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_8 = V_2; Monitor_Exit_mA776B403DA88AC77CDEEF67AB9F0D0E77ABD254A(L_8, /*hidden argument*/NULL); } IL_0068: { IL2CPP_END_FINALLY(95) } } // end finally (depth: 1) IL2CPP_CLEANUP(95) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x26A, IL_026a) IL2CPP_JUMP_TBL(0x69, IL_0069) } IL_0069: { uint64_t L_9 = __this->get_m_Flags_17(); V_0 = L_9; String_t* L_10 = __this->get_m_String_13(); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_11 = __this->get_m_Info_18(); NullCheck(L_11); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_12 = L_11->get_address_of_Offset_3(); uint16_t L_13 = L_12->get_Host_2(); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_14 = __this->get_m_Info_18(); NullCheck(L_14); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_15 = L_14->get_address_of_Offset_3(); uint16_t L_16 = L_15->get_Path_4(); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_17 = __this->get_m_Info_18(); NullCheck(L_17); String_t** L_18 = L_17->get_address_of_ScopeId_1(); IL2CPP_RUNTIME_CLASS_INIT(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); String_t* L_19; L_19 = Uri_CreateHostStringHelper_m53D695F65E776AB98FD3359894C2C34109E08D00(L_10, L_13, L_16, (uint64_t*)(&V_0), (String_t**)L_18, /*hidden argument*/NULL); V_1 = L_19; String_t* L_20 = V_1; NullCheck(L_20); int32_t L_21; L_21 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_20, /*hidden argument*/NULL); if (!L_21) { goto IL_0233; } } { uint64_t L_22; L_22 = Uri_get_HostType_m6C142BC37D44CF1F53D80627455BC6B1CB747820(__this, /*hidden argument*/NULL); if ((!(((uint64_t)L_22) == ((uint64_t)((int64_t)((int64_t)((int32_t)327680))))))) { goto IL_019c; } } { V_4 = (uint16_t)0; String_t* L_23 = V_1; V_7 = L_23; String_t* L_24 = V_7; V_6 = (Il2CppChar*)((uintptr_t)L_24); Il2CppChar* L_25 = V_6; if (!L_25) { goto IL_00de; } } { Il2CppChar* L_26 = V_6; int32_t L_27; L_27 = RuntimeHelpers_get_OffsetToStringData_mEB8E6EAEBAFAB7CD7F7A915B3081785AABB9FC42(/*hidden argument*/NULL); V_6 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_26, (int32_t)L_27)); } IL_00de: { Il2CppChar* L_28 = V_6; String_t* L_29 = V_1; NullCheck(L_29); int32_t L_30; L_30 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_29, /*hidden argument*/NULL); int32_t L_31; L_31 = Uri_CheckCanonical_mFD937A06DC3885481C374ACDD190A3B3E40152F3(__this, (Il2CppChar*)(Il2CppChar*)L_28, (uint16_t*)(&V_4), (uint16_t)((int32_t)((uint16_t)L_30)), ((int32_t)65535), /*hidden argument*/NULL); V_5 = L_31; V_7 = (String_t*)NULL; int32_t L_32 = V_5; if (((int32_t)((int32_t)L_32&(int32_t)2))) { goto IL_0119; } } { bool L_33; L_33 = Uri_NotAny_m2C222924AE10957D835ECBC887D456FB30DCF969(__this, ((int64_t)((int64_t)((int32_t)536870912))), /*hidden argument*/NULL); if (L_33) { goto IL_0114; } } { int32_t L_34 = V_5; if (!((int32_t)((int32_t)L_34&(int32_t)((int32_t)32)))) { goto IL_0119; } } IL_0114: { uint64_t L_35 = V_0; V_0 = ((int64_t)((int64_t)L_35|(int64_t)((int64_t)((int64_t)4)))); } IL_0119: { bool L_36; L_36 = Uri_InFact_mF6A06FA7246740D26093421D41D18000AC2CC0C4(__this, ((int64_t)((int64_t)((int32_t)536870912))), /*hidden argument*/NULL); if (!L_36) { goto IL_0135; } } { int32_t L_37 = V_5; if (!((int32_t)((int32_t)L_37&(int32_t)((int32_t)33)))) { goto IL_0135; } } { int32_t L_38 = V_5; V_5 = ((int32_t)((int32_t)L_38&(int32_t)((int32_t)-2))); } IL_0135: { int32_t L_39 = V_5; if ((((int32_t)((int32_t)((int32_t)L_39&(int32_t)((int32_t)17)))) == ((int32_t)1))) { goto IL_0233; } } { uint64_t L_40 = V_0; V_0 = ((int64_t)((int64_t)L_40|(int64_t)((int64_t)((int64_t)((int32_t)256))))); bool L_41; L_41 = Uri_NotAny_m2C222924AE10957D835ECBC887D456FB30DCF969(__this, ((int64_t)((int64_t)((int32_t)524288))), /*hidden argument*/NULL); if (!L_41) { goto IL_0233; } } { V_8 = 0; String_t* L_42 = V_1; String_t* L_43 = V_1; NullCheck(L_43); int32_t L_44; L_44 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_43, /*hidden argument*/NULL); bool L_45; L_45 = Uri_get_IsImplicitFile_m58AC900A18C84E93F4611F97639112F801629DAA(__this, /*hidden argument*/NULL); G_B22_0 = ((int32_t)35); G_B22_1 = ((int32_t)63); G_B22_2 = 1; G_B22_3 = (&V_8); G_B22_4 = NULL; G_B22_5 = L_44; G_B22_6 = 0; G_B22_7 = L_42; if (L_45) { G_B23_0 = ((int32_t)35); G_B23_1 = ((int32_t)63); G_B23_2 = 1; G_B23_3 = (&V_8); G_B23_4 = NULL; G_B23_5 = L_44; G_B23_6 = 0; G_B23_7 = L_42; goto IL_0179; } } { G_B24_0 = ((int32_t)37); G_B24_1 = G_B22_0; G_B24_2 = G_B22_1; G_B24_3 = G_B22_2; G_B24_4 = G_B22_3; G_B24_5 = G_B22_4; G_B24_6 = G_B22_5; G_B24_7 = G_B22_6; G_B24_8 = G_B22_7; goto IL_017e; } IL_0179: { G_B24_0 = ((int32_t)65535); G_B24_1 = G_B23_0; G_B24_2 = G_B23_1; G_B24_3 = G_B23_2; G_B24_4 = G_B23_3; G_B24_5 = G_B23_4; G_B24_6 = G_B23_5; G_B24_7 = G_B23_6; G_B24_8 = G_B23_7; } IL_017e: { IL2CPP_RUNTIME_CLASS_INIT(UriHelper_tBEFC75B3A4E9E35CB41ADAAE22E0D1D7EE65E53D_il2cpp_TypeInfo_var); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_46; L_46 = UriHelper_EscapeString_m322E8737F58BBAF891A75032EC1800BE548F84D7(G_B24_8, G_B24_7, G_B24_6, (CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34*)(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34*)G_B24_5, (int32_t*)G_B24_4, (bool)G_B24_3, G_B24_2, G_B24_1, G_B24_0, /*hidden argument*/NULL); V_9 = L_46; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_47 = V_9; if (!L_47) { goto IL_0233; } } { CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_48 = V_9; int32_t L_49 = V_8; String_t* L_50; L_50 = String_CreateString_m16F181739FD8BA877868803DE2CE0EF0A4668D0E(NULL, L_48, 0, L_49, /*hidden argument*/NULL); V_1 = L_50; goto IL_0233; } IL_019c: { bool L_51; L_51 = Uri_NotAny_m2C222924AE10957D835ECBC887D456FB30DCF969(__this, ((int64_t)((int64_t)((int32_t)33554432))), /*hidden argument*/NULL); if (!L_51) { goto IL_0233; } } { UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_52 = __this->get_m_Info_18(); NullCheck(L_52); String_t* L_53 = L_52->get_ScopeId_1(); if (!L_53) { goto IL_01c5; } } { uint64_t L_54 = V_0; V_0 = ((int64_t)((int64_t)L_54|(int64_t)((int64_t)((int64_t)((int32_t)260))))); goto IL_0233; } IL_01c5: { V_10 = (uint16_t)0; goto IL_0229; } IL_01ca: { UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_55 = __this->get_m_Info_18(); NullCheck(L_55); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_56 = L_55->get_address_of_Offset_3(); uint16_t L_57 = L_56->get_Host_2(); uint16_t L_58 = V_10; UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_59 = __this->get_m_Info_18(); NullCheck(L_59); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_60 = L_59->get_address_of_Offset_3(); uint16_t L_61 = L_60->get_End_7(); if ((((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_57, (int32_t)L_58))) >= ((int32_t)L_61))) { goto IL_0217; } } { String_t* L_62 = V_1; uint16_t L_63 = V_10; NullCheck(L_62); Il2CppChar L_64; L_64 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_62, L_63, /*hidden argument*/NULL); String_t* L_65 = __this->get_m_String_13(); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_66 = __this->get_m_Info_18(); NullCheck(L_66); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_67 = L_66->get_address_of_Offset_3(); uint16_t L_68 = L_67->get_Host_2(); uint16_t L_69 = V_10; NullCheck(L_65); Il2CppChar L_70; L_70 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_65, ((int32_t)il2cpp_codegen_add((int32_t)L_68, (int32_t)L_69)), /*hidden argument*/NULL); if ((((int32_t)L_64) == ((int32_t)L_70))) { goto IL_0222; } } IL_0217: { uint64_t L_71 = V_0; V_0 = ((int64_t)((int64_t)L_71|(int64_t)((int64_t)((int64_t)((int32_t)260))))); goto IL_0233; } IL_0222: { uint16_t L_72 = V_10; V_10 = (uint16_t)((int32_t)((uint16_t)((int32_t)il2cpp_codegen_add((int32_t)L_72, (int32_t)1)))); } IL_0229: { uint16_t L_73 = V_10; String_t* L_74 = V_1; NullCheck(L_74); int32_t L_75; L_75 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_74, /*hidden argument*/NULL); if ((((int32_t)L_73) < ((int32_t)L_75))) { goto IL_01ca; } } IL_0233: { UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_76 = __this->get_m_Info_18(); String_t* L_77 = V_1; NullCheck(L_76); L_76->set_Host_0(L_77); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_78 = __this->get_m_Info_18(); V_2 = L_78; V_3 = (bool)0; } IL_0248: try { // begin try (depth: 1) UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_79 = V_2; Monitor_Enter_mBEB6CC84184B46F26375EC3FC8921D16E48EA4C4(L_79, (bool*)(&V_3), /*hidden argument*/NULL); uint64_t L_80 = __this->get_m_Flags_17(); uint64_t L_81 = V_0; __this->set_m_Flags_17(((int64_t)((int64_t)L_80|(int64_t)L_81))); IL2CPP_LEAVE(0x26A, FINALLY_0260); } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0260; } FINALLY_0260: { // begin finally (depth: 1) { bool L_82 = V_3; if (!L_82) { goto IL_0269; } } IL_0263: { UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_83 = V_2; Monitor_Exit_mA776B403DA88AC77CDEEF67AB9F0D0E77ABD254A(L_83, /*hidden argument*/NULL); } IL_0269: { IL2CPP_END_FINALLY(608) } } // end finally (depth: 1) IL2CPP_CLEANUP(608) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x26A, IL_026a) } IL_026a: { return; } } // System.String System.Uri::CreateHostStringHelper(System.String,System.UInt16,System.UInt16,System.Uri/Flags&,System.String&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Uri_CreateHostStringHelper_m53D695F65E776AB98FD3359894C2C34109E08D00 (String_t* ___str0, uint16_t ___idx1, uint16_t ___end2, uint64_t* ___flags3, String_t** ___scopeId4, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } bool V_0 = false; String_t* V_1 = NULL; uint64_t V_2 = 0; { V_0 = (bool)0; uint64_t* L_0 = ___flags3; int64_t L_1 = *((int64_t*)L_0); V_2 = ((int64_t)((int64_t)L_1&(int64_t)((int64_t)((int64_t)((int32_t)458752))))); uint64_t L_2 = V_2; if ((!(((uint64_t)L_2) <= ((uint64_t)((int64_t)((int64_t)((int32_t)196608))))))) { goto IL_0035; } } { uint64_t L_3 = V_2; if ((((int64_t)L_3) == ((int64_t)((int64_t)((int64_t)((int32_t)65536)))))) { goto IL_005f; } } { uint64_t L_4 = V_2; if ((((int64_t)L_4) == ((int64_t)((int64_t)((int64_t)((int32_t)131072)))))) { goto IL_006d; } } { uint64_t L_5 = V_2; if ((((int64_t)L_5) == ((int64_t)((int64_t)((int64_t)((int32_t)196608)))))) { goto IL_0052; } } { goto IL_00bd; } IL_0035: { uint64_t L_6 = V_2; if ((((int64_t)L_6) == ((int64_t)((int64_t)((int64_t)((int32_t)262144)))))) { goto IL_007a; } } { uint64_t L_7 = V_2; if ((((int64_t)L_7) == ((int64_t)((int64_t)((int64_t)((int32_t)327680)))))) { goto IL_0087; } } { uint64_t L_8 = V_2; if ((((int64_t)L_8) == ((int64_t)((int64_t)((int64_t)((int32_t)458752)))))) { goto IL_00b5; } } { goto IL_00bd; } IL_0052: { String_t* L_9 = ___str0; uint16_t L_10 = ___idx1; uint16_t L_11 = ___end2; String_t* L_12; L_12 = DomainNameHelper_ParseCanonicalName_m1C6E554993599045E72E090518D75FF532D2543E(L_9, L_10, L_11, (bool*)(&V_0), /*hidden argument*/NULL); V_1 = L_12; goto IL_00c4; } IL_005f: { String_t* L_13 = ___str0; uint16_t L_14 = ___idx1; String_t** L_15 = ___scopeId4; String_t* L_16; L_16 = IPv6AddressHelper_ParseCanonicalName_mAC7315CCA0517C9B95D33C4114E90A8B94EC1E2C(L_13, L_14, (bool*)(&V_0), (String_t**)L_15, /*hidden argument*/NULL); V_1 = L_16; goto IL_00c4; } IL_006d: { String_t* L_17 = ___str0; uint16_t L_18 = ___idx1; uint16_t L_19 = ___end2; String_t* L_20; L_20 = IPv4AddressHelper_ParseCanonicalName_m4237845A3AFA554557BEC618AB11D5EF7A18C2BB(L_17, L_18, L_19, (bool*)(&V_0), /*hidden argument*/NULL); V_1 = L_20; goto IL_00c4; } IL_007a: { String_t* L_21 = ___str0; uint16_t L_22 = ___idx1; uint16_t L_23 = ___end2; String_t* L_24; L_24 = UncNameHelper_ParseCanonicalName_mAA1CF481E9789909F458A6C31A10DF991166F060(L_21, L_22, L_23, (bool*)(&V_0), /*hidden argument*/NULL); V_1 = L_24; goto IL_00c4; } IL_0087: { uint64_t* L_25 = ___flags3; int64_t L_26 = *((int64_t*)L_25); IL2CPP_RUNTIME_CLASS_INIT(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); bool L_27; L_27 = Uri_StaticInFact_m6B17A3B95B81DABD390B643ABD9ADAA316D5EF98(L_26, ((int64_t)((int64_t)((int32_t)134217728))), /*hidden argument*/NULL); if (!L_27) { goto IL_009e; } } { String_t* L_28 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); V_1 = L_28; goto IL_00a9; } IL_009e: { String_t* L_29 = ___str0; uint16_t L_30 = ___idx1; uint16_t L_31 = ___end2; uint16_t L_32 = ___idx1; NullCheck(L_29); String_t* L_33; L_33 = String_Substring_m7A39A2AC0893AE940CF4CEC841326D56FFB9D86B(L_29, L_30, ((int32_t)il2cpp_codegen_subtract((int32_t)L_31, (int32_t)L_32)), /*hidden argument*/NULL); V_1 = L_33; } IL_00a9: { String_t* L_34 = V_1; NullCheck(L_34); int32_t L_35; L_35 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_34, /*hidden argument*/NULL); if (L_35) { goto IL_00c4; } } { V_0 = (bool)1; goto IL_00c4; } IL_00b5: { String_t* L_36 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); V_1 = L_36; goto IL_00c4; } IL_00bd: { IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var))); UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D * L_37; L_37 = Uri_GetException_m6A158C16E69136DF56BCF19CC4C7DCCC2601CF84(8, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_37, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Uri_CreateHostStringHelper_m53D695F65E776AB98FD3359894C2C34109E08D00_RuntimeMethod_var))); } IL_00c4: { bool L_38 = V_0; if (!L_38) { goto IL_00d2; } } { uint64_t* L_39 = ___flags3; uint64_t* L_40 = ___flags3; int64_t L_41 = *((int64_t*)L_40); *((int64_t*)L_39) = (int64_t)((int64_t)((int64_t)L_41|(int64_t)((int64_t)((int64_t)((int32_t)4194304))))); } IL_00d2: { String_t* L_42 = V_1; return L_42; } } // System.Void System.Uri::GetHostViaCustomSyntax() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Uri_GetHostViaCustomSyntax_mF2DABFE767AB49B8F8E0C9E19937AF900A1E4BC7 (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; String_t* V_1 = NULL; int32_t V_2 = 0; int32_t V_3 = 0; uint64_t V_4 = 0; Il2CppChar* V_5 = NULL; String_t* V_6 = NULL; String_t* V_7 = NULL; uint16_t V_8 = 0; int32_t V_9 = 0; int32_t V_10 = 0; { UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_0 = __this->get_m_Info_18(); NullCheck(L_0); String_t* L_1 = L_0->get_Host_0(); if (!L_1) { goto IL_000e; } } { return; } IL_000e: { UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_2 = __this->get_m_Syntax_15(); NullCheck(L_2); String_t* L_3; L_3 = UriParser_InternalGetComponents_mAB0A54E462724FA417D0EF3A2AD0BD24BC66DFF8(L_2, __this, 4, 1, /*hidden argument*/NULL); V_0 = L_3; UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_4 = __this->get_m_Info_18(); NullCheck(L_4); String_t* L_5 = L_4->get_Host_0(); if (L_5) { goto IL_018d; } } { String_t* L_6 = V_0; NullCheck(L_6); int32_t L_7; L_7 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_6, /*hidden argument*/NULL); if ((((int32_t)L_7) < ((int32_t)((int32_t)65520)))) { goto IL_0041; } } { IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var))); UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D * L_8; L_8 = Uri_GetException_m6A158C16E69136DF56BCF19CC4C7DCCC2601CF84(6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Uri_GetHostViaCustomSyntax_mF2DABFE767AB49B8F8E0C9E19937AF900A1E4BC7_RuntimeMethod_var))); } IL_0041: { V_3 = 0; uint64_t L_9 = __this->get_m_Flags_17(); V_4 = ((int64_t)((int64_t)L_9&(int64_t)((int64_t)((int64_t)((int32_t)-458753))))); String_t* L_10 = V_0; V_6 = L_10; String_t* L_11 = V_6; V_5 = (Il2CppChar*)((uintptr_t)L_11); Il2CppChar* L_12 = V_5; if (!L_12) { goto IL_0068; } } { Il2CppChar* L_13 = V_5; int32_t L_14; L_14 = RuntimeHelpers_get_OffsetToStringData_mEB8E6EAEBAFAB7CD7F7A915B3081785AABB9FC42(/*hidden argument*/NULL); V_5 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_13, (int32_t)L_14)); } IL_0068: { V_7 = (String_t*)NULL; Il2CppChar* L_15 = V_5; String_t* L_16 = V_0; NullCheck(L_16); int32_t L_17; L_17 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_16, /*hidden argument*/NULL); UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_18 = __this->get_m_Syntax_15(); uint16_t L_19; L_19 = Uri_CheckAuthorityHelper_mC5010AEC19EED1968EDE7CB52C92AC0AC0869503(__this, (Il2CppChar*)(Il2CppChar*)L_15, (uint16_t)0, (uint16_t)((int32_t)((uint16_t)L_17)), (int32_t*)(&V_3), (uint64_t*)(&V_4), L_18, (String_t**)(&V_7), /*hidden argument*/NULL); String_t* L_20 = V_0; NullCheck(L_20); int32_t L_21; L_21 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_20, /*hidden argument*/NULL); if ((((int32_t)L_19) == ((int32_t)((int32_t)((uint16_t)L_21))))) { goto IL_00a6; } } { uint64_t L_22 = V_4; V_4 = ((int64_t)((int64_t)L_22&(int64_t)((int64_t)((int64_t)((int32_t)-458753))))); uint64_t L_23 = V_4; V_4 = ((int64_t)((int64_t)L_23|(int64_t)((int64_t)((int64_t)((int32_t)458752))))); } IL_00a6: { V_6 = (String_t*)NULL; int32_t L_24 = V_3; if (L_24) { goto IL_00bd; } } { uint64_t L_25 = V_4; if ((!(((uint64_t)((int64_t)((int64_t)L_25&(int64_t)((int64_t)((int64_t)((int32_t)458752)))))) == ((uint64_t)((int64_t)((int64_t)((int32_t)458752))))))) { goto IL_00dc; } } IL_00bd: { uint64_t L_26 = __this->get_m_Flags_17(); __this->set_m_Flags_17(((int64_t)((int64_t)((int64_t)((int64_t)L_26&(int64_t)((int64_t)((int64_t)((int32_t)-458753)))))|(int64_t)((int64_t)((int64_t)((int32_t)327680)))))); goto IL_018d; } IL_00dc: { String_t* L_27 = V_0; String_t* L_28 = V_0; NullCheck(L_28); int32_t L_29; L_29 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_28, /*hidden argument*/NULL); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_30 = __this->get_m_Info_18(); NullCheck(L_30); String_t** L_31 = L_30->get_address_of_ScopeId_1(); IL2CPP_RUNTIME_CLASS_INIT(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); String_t* L_32; L_32 = Uri_CreateHostStringHelper_m53D695F65E776AB98FD3359894C2C34109E08D00(L_27, (uint16_t)0, (uint16_t)((int32_t)((uint16_t)L_29)), (uint64_t*)(&V_4), (String_t**)L_31, /*hidden argument*/NULL); V_0 = L_32; V_8 = (uint16_t)0; goto IL_0166; } IL_00fd: { UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_33 = __this->get_m_Info_18(); NullCheck(L_33); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_34 = L_33->get_address_of_Offset_3(); uint16_t L_35 = L_34->get_Host_2(); uint16_t L_36 = V_8; UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_37 = __this->get_m_Info_18(); NullCheck(L_37); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_38 = L_37->get_address_of_Offset_3(); uint16_t L_39 = L_38->get_End_7(); if ((((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_35, (int32_t)L_36))) >= ((int32_t)L_39))) { goto IL_014a; } } { String_t* L_40 = V_0; uint16_t L_41 = V_8; NullCheck(L_40); Il2CppChar L_42; L_42 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_40, L_41, /*hidden argument*/NULL); String_t* L_43 = __this->get_m_String_13(); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_44 = __this->get_m_Info_18(); NullCheck(L_44); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_45 = L_44->get_address_of_Offset_3(); uint16_t L_46 = L_45->get_Host_2(); uint16_t L_47 = V_8; NullCheck(L_43); Il2CppChar L_48; L_48 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_43, ((int32_t)il2cpp_codegen_add((int32_t)L_46, (int32_t)L_47)), /*hidden argument*/NULL); if ((((int32_t)L_42) == ((int32_t)L_48))) { goto IL_015f; } } IL_014a: { uint64_t L_49 = __this->get_m_Flags_17(); __this->set_m_Flags_17(((int64_t)((int64_t)L_49|(int64_t)((int64_t)((int64_t)((int32_t)260)))))); goto IL_0170; } IL_015f: { uint16_t L_50 = V_8; V_8 = (uint16_t)((int32_t)((uint16_t)((int32_t)il2cpp_codegen_add((int32_t)L_50, (int32_t)1)))); } IL_0166: { uint16_t L_51 = V_8; String_t* L_52 = V_0; NullCheck(L_52); int32_t L_53; L_53 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_52, /*hidden argument*/NULL); if ((((int32_t)L_51) < ((int32_t)L_53))) { goto IL_00fd; } } IL_0170: { uint64_t L_54 = __this->get_m_Flags_17(); uint64_t L_55 = V_4; __this->set_m_Flags_17(((int64_t)((int64_t)((int64_t)((int64_t)L_54&(int64_t)((int64_t)((int64_t)((int32_t)-458753)))))|(int64_t)((int64_t)((int64_t)L_55&(int64_t)((int64_t)((int64_t)((int32_t)458752)))))))); } IL_018d: { UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_56 = __this->get_m_Syntax_15(); NullCheck(L_56); String_t* L_57; L_57 = UriParser_InternalGetComponents_mAB0A54E462724FA417D0EF3A2AD0BD24BC66DFF8(L_56, __this, ((int32_t)128), 1, /*hidden argument*/NULL); V_1 = L_57; V_2 = 0; String_t* L_58 = V_1; if (!L_58) { goto IL_01ad; } } { String_t* L_59 = V_1; NullCheck(L_59); int32_t L_60; L_60 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_59, /*hidden argument*/NULL); if (L_60) { goto IL_01e9; } } IL_01ad: { uint64_t L_61 = __this->get_m_Flags_17(); __this->set_m_Flags_17(((int64_t)((int64_t)L_61&(int64_t)((int64_t)((int64_t)((int32_t)-8388609)))))); uint64_t L_62 = __this->get_m_Flags_17(); __this->set_m_Flags_17(((int64_t)((int64_t)L_62|(int64_t)((int64_t)((int64_t)((int32_t)520)))))); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_63 = __this->get_m_Info_18(); NullCheck(L_63); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_64 = L_63->get_address_of_Offset_3(); L_64->set_PortValue_3((uint16_t)0); goto IL_02c1; } IL_01e9: { V_9 = 0; goto IL_0249; } IL_01ee: { String_t* L_65 = V_1; int32_t L_66 = V_9; NullCheck(L_65); Il2CppChar L_67; L_67 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_65, L_66, /*hidden argument*/NULL); V_10 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_67, (int32_t)((int32_t)48))); int32_t L_68 = V_10; if ((((int32_t)L_68) < ((int32_t)0))) { goto IL_0216; } } { int32_t L_69 = V_10; if ((((int32_t)L_69) > ((int32_t)((int32_t)9)))) { goto IL_0216; } } { int32_t L_70 = V_2; int32_t L_71 = V_10; int32_t L_72 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_70, (int32_t)((int32_t)10))), (int32_t)L_71)); V_2 = L_72; if ((((int32_t)L_72) <= ((int32_t)((int32_t)65535)))) { goto IL_0243; } } IL_0216: { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_73 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var)), (uint32_t)2); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_74 = L_73; UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_75 = __this->get_m_Syntax_15(); NullCheck(L_75); Type_t * L_76; L_76 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B(L_75, /*hidden argument*/NULL); NullCheck(L_76); String_t* L_77; L_77 = VirtFuncInvoker0< String_t* >::Invoke(25 /* System.String System.Type::get_FullName() */, L_76); NullCheck(L_74); ArrayElementTypeCheck (L_74, L_77); (L_74)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_77); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_78 = L_74; String_t* L_79 = V_1; NullCheck(L_78); ArrayElementTypeCheck (L_78, L_79); (L_78)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_79); String_t* L_80; L_80 = SR_GetString_m4FFAF18248A54C5B67E4760C5ED4869A87BCAD7F(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral24E3F48402E3AE0939BE896FBDE3DE4520C9893D)), L_78, /*hidden argument*/NULL); UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D * L_81 = (UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D_il2cpp_TypeInfo_var))); UriFormatException__ctor_mC9CB29EF00CB33869659306AC3FCA69342FD044F(L_81, L_80, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_81, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Uri_GetHostViaCustomSyntax_mF2DABFE767AB49B8F8E0C9E19937AF900A1E4BC7_RuntimeMethod_var))); } IL_0243: { int32_t L_82 = V_9; V_9 = ((int32_t)il2cpp_codegen_add((int32_t)L_82, (int32_t)1)); } IL_0249: { int32_t L_83 = V_9; String_t* L_84 = V_1; NullCheck(L_84); int32_t L_85; L_85 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_84, /*hidden argument*/NULL); if ((((int32_t)L_83) < ((int32_t)L_85))) { goto IL_01ee; } } { int32_t L_86 = V_2; UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_87 = __this->get_m_Info_18(); NullCheck(L_87); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_88 = L_87->get_address_of_Offset_3(); uint16_t L_89 = L_88->get_PortValue_3(); if ((((int32_t)L_86) == ((int32_t)L_89))) { goto IL_02c1; } } { int32_t L_90 = V_2; UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_91 = __this->get_m_Syntax_15(); NullCheck(L_91); int32_t L_92; L_92 = UriParser_get_DefaultPort_m7ECA5BE839D36C7FF854FEA0795D8DE701487D33_inline(L_91, /*hidden argument*/NULL); if ((!(((uint32_t)L_90) == ((uint32_t)L_92)))) { goto IL_0289; } } { uint64_t L_93 = __this->get_m_Flags_17(); __this->set_m_Flags_17(((int64_t)((int64_t)L_93&(int64_t)((int64_t)((int64_t)((int32_t)-8388609)))))); goto IL_029c; } IL_0289: { uint64_t L_94 = __this->get_m_Flags_17(); __this->set_m_Flags_17(((int64_t)((int64_t)L_94|(int64_t)((int64_t)((int64_t)((int32_t)8388608)))))); } IL_029c: { uint64_t L_95 = __this->get_m_Flags_17(); __this->set_m_Flags_17(((int64_t)((int64_t)L_95|(int64_t)((int64_t)((int64_t)((int32_t)520)))))); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_96 = __this->get_m_Info_18(); NullCheck(L_96); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_97 = L_96->get_address_of_Offset_3(); int32_t L_98 = V_2; L_97->set_PortValue_3((uint16_t)((int32_t)((uint16_t)L_98))); } IL_02c1: { UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_99 = __this->get_m_Info_18(); String_t* L_100 = V_0; NullCheck(L_99); L_99->set_Host_0(L_100); return; } } // System.String System.Uri::GetParts(System.UriComponents,System.UriFormat) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Uri_GetParts_m78996C042B20360F92CDB6FD71F74A242705DFDA (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, int32_t ___uriParts0, int32_t ___formatAs1, const RuntimeMethod* method) { { int32_t L_0 = ___uriParts0; int32_t L_1 = ___formatAs1; String_t* L_2; L_2 = Uri_GetComponents_mA614A98C35F2E5D924A10A8018A46606AFB6133E(__this, L_0, L_1, /*hidden argument*/NULL); return L_2; } } // System.String System.Uri::GetEscapedParts(System.UriComponents) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Uri_GetEscapedParts_m61C2B2B898F8AA8B75AAEC38EF78C340BC1F5A20 (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, int32_t ___uriParts0, const RuntimeMethod* method) { uint16_t V_0 = 0; String_t* V_1 = NULL; { uint64_t L_0 = __this->get_m_Flags_17(); V_0 = (uint16_t)((int32_t)((uint16_t)((int32_t)((int32_t)((int32_t)((int32_t)((int32_t)((uint16_t)L_0))&(int32_t)((int32_t)16256)))>>(int32_t)6)))); bool L_1; L_1 = Uri_InFact_mF6A06FA7246740D26093421D41D18000AC2CC0C4(__this, ((int64_t)((int64_t)1)), /*hidden argument*/NULL); if (!L_1) { goto IL_0020; } } { uint16_t L_2 = V_0; V_0 = (uint16_t)((int32_t)((uint16_t)((int32_t)((int32_t)L_2|(int32_t)1)))); } IL_0020: { int32_t L_3 = ___uriParts0; if (!((int32_t)((int32_t)L_3&(int32_t)((int32_t)16)))) { goto IL_0072; } } { bool L_4; L_4 = Uri_InFact_mF6A06FA7246740D26093421D41D18000AC2CC0C4(__this, ((int64_t)((int64_t)((int32_t)57344))), /*hidden argument*/NULL); if (!L_4) { goto IL_003c; } } { uint16_t L_5 = V_0; V_0 = (uint16_t)((int32_t)((uint16_t)((int32_t)((int32_t)L_5|(int32_t)((int32_t)16))))); goto IL_0072; } IL_003c: { bool L_6; L_6 = Uri_get_IsDosPath_m3374B9D26D6B547862ACB2E617AB6F96CA31A5AF(__this, /*hidden argument*/NULL); if (!L_6) { goto IL_0072; } } { String_t* L_7 = __this->get_m_String_13(); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_8 = __this->get_m_Info_18(); NullCheck(L_8); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_9 = L_8->get_address_of_Offset_3(); uint16_t L_10 = L_9->get_Path_4(); uint16_t L_11; L_11 = Uri_get_SecuredPathIndex_m0BE7920E94AA002B4CD2D568BD6E0FD91F0D7F0B(__this, /*hidden argument*/NULL); NullCheck(L_7); Il2CppChar L_12; L_12 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_7, ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)L_11)), (int32_t)1)), /*hidden argument*/NULL); if ((!(((uint32_t)L_12) == ((uint32_t)((int32_t)124))))) { goto IL_0072; } } { uint16_t L_13 = V_0; V_0 = (uint16_t)((int32_t)((uint16_t)((int32_t)((int32_t)L_13|(int32_t)((int32_t)16))))); } IL_0072: { int32_t L_14 = ___uriParts0; uint16_t L_15 = V_0; if (((int32_t)((int32_t)((int32_t)((uint16_t)L_14))&(int32_t)L_15))) { goto IL_0085; } } { int32_t L_16 = ___uriParts0; String_t* L_17; L_17 = Uri_GetUriPartsFromUserString_m81B60C6E31AB8EA51438E391F7990334B96ACD29(__this, L_16, /*hidden argument*/NULL); V_1 = L_17; String_t* L_18 = V_1; if (!L_18) { goto IL_0085; } } { String_t* L_19 = V_1; return L_19; } IL_0085: { int32_t L_20 = ___uriParts0; uint16_t L_21 = V_0; String_t* L_22; L_22 = Uri_ReCreateParts_m3D0CD53477FBAB5E8988373B8D749E286399278E(__this, L_20, L_21, 1, /*hidden argument*/NULL); return L_22; } } // System.String System.Uri::GetUnescapedParts(System.UriComponents,System.UriFormat) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Uri_GetUnescapedParts_m6F106ECABBBAFA95C3F3CA86F540B9EE0B9D01D4 (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, int32_t ___uriParts0, int32_t ___formatAs1, const RuntimeMethod* method) { uint16_t V_0 = 0; String_t* V_1 = NULL; { uint64_t L_0 = __this->get_m_Flags_17(); V_0 = (uint16_t)((int32_t)((uint16_t)((int32_t)((int32_t)((int32_t)((uint16_t)L_0))&(int32_t)((int32_t)127))))); int32_t L_1 = ___uriParts0; if (!((int32_t)((int32_t)L_1&(int32_t)((int32_t)16)))) { goto IL_005f; } } { uint64_t L_2 = __this->get_m_Flags_17(); if (!((int64_t)((int64_t)L_2&(int64_t)((int64_t)((int64_t)((int32_t)57344)))))) { goto IL_0029; } } { uint16_t L_3 = V_0; V_0 = (uint16_t)((int32_t)((uint16_t)((int32_t)((int32_t)L_3|(int32_t)((int32_t)16))))); goto IL_005f; } IL_0029: { bool L_4; L_4 = Uri_get_IsDosPath_m3374B9D26D6B547862ACB2E617AB6F96CA31A5AF(__this, /*hidden argument*/NULL); if (!L_4) { goto IL_005f; } } { String_t* L_5 = __this->get_m_String_13(); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_6 = __this->get_m_Info_18(); NullCheck(L_6); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_7 = L_6->get_address_of_Offset_3(); uint16_t L_8 = L_7->get_Path_4(); uint16_t L_9; L_9 = Uri_get_SecuredPathIndex_m0BE7920E94AA002B4CD2D568BD6E0FD91F0D7F0B(__this, /*hidden argument*/NULL); NullCheck(L_5); Il2CppChar L_10; L_10 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_5, ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)L_9)), (int32_t)1)), /*hidden argument*/NULL); if ((!(((uint32_t)L_10) == ((uint32_t)((int32_t)124))))) { goto IL_005f; } } { uint16_t L_11 = V_0; V_0 = (uint16_t)((int32_t)((uint16_t)((int32_t)((int32_t)L_11|(int32_t)((int32_t)16))))); } IL_005f: { int32_t L_12 = ___uriParts0; uint16_t L_13 = V_0; if (((int32_t)((int32_t)((int32_t)((uint16_t)L_12))&(int32_t)L_13))) { goto IL_0072; } } { int32_t L_14 = ___uriParts0; String_t* L_15; L_15 = Uri_GetUriPartsFromUserString_m81B60C6E31AB8EA51438E391F7990334B96ACD29(__this, L_14, /*hidden argument*/NULL); V_1 = L_15; String_t* L_16 = V_1; if (!L_16) { goto IL_0072; } } { String_t* L_17 = V_1; return L_17; } IL_0072: { int32_t L_18 = ___uriParts0; uint16_t L_19 = V_0; int32_t L_20 = ___formatAs1; String_t* L_21; L_21 = Uri_ReCreateParts_m3D0CD53477FBAB5E8988373B8D749E286399278E(__this, L_18, L_19, L_20, /*hidden argument*/NULL); return L_21; } } // System.String System.Uri::ReCreateParts(System.UriComponents,System.UInt16,System.UriFormat) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Uri_ReCreateParts_m3D0CD53477FBAB5E8988373B8D749E286399278E (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, int32_t ___parts0, uint16_t ___nonCanonical1, int32_t ___formatAs2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UriHelper_tBEFC75B3A4E9E35CB41ADAAE22E0D1D7EE65E53D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; int32_t V_1 = 0; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* V_2 = NULL; uint16_t V_3 = 0; int32_t V_4 = 0; Il2CppChar* V_5 = NULL; String_t* V_6 = NULL; bool V_7 = false; bool V_8 = false; uint16_t V_9 = 0; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 2); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); String_t* G_B3_0 = NULL; int32_t G_B5_0 = 0; int32_t G_B4_0 = 0; int32_t G_B6_0 = 0; int32_t G_B6_1 = 0; int32_t G_B20_0 = 0; int32_t G_B20_1 = 0; int32_t G_B20_2 = 0; int32_t* G_B20_3 = NULL; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* G_B20_4 = NULL; int32_t G_B20_5 = 0; uint16_t G_B20_6 = 0; String_t* G_B20_7 = NULL; int32_t G_B19_0 = 0; int32_t G_B19_1 = 0; int32_t G_B19_2 = 0; int32_t* G_B19_3 = NULL; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* G_B19_4 = NULL; int32_t G_B19_5 = 0; uint16_t G_B19_6 = 0; String_t* G_B19_7 = NULL; int32_t G_B21_0 = 0; int32_t G_B21_1 = 0; int32_t G_B21_2 = 0; int32_t G_B21_3 = 0; int32_t* G_B21_4 = NULL; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* G_B21_5 = NULL; int32_t G_B21_6 = 0; uint16_t G_B21_7 = 0; String_t* G_B21_8 = NULL; int32_t G_B37_0 = 0; int32_t G_B87_0 = 0; int32_t G_B87_1 = 0; int32_t G_B87_2 = 0; int32_t* G_B87_3 = NULL; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* G_B87_4 = NULL; uint16_t G_B87_5 = 0; uint16_t G_B87_6 = 0; String_t* G_B87_7 = NULL; int32_t G_B86_0 = 0; int32_t G_B86_1 = 0; int32_t G_B86_2 = 0; int32_t* G_B86_3 = NULL; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* G_B86_4 = NULL; uint16_t G_B86_5 = 0; uint16_t G_B86_6 = 0; String_t* G_B86_7 = NULL; int32_t G_B88_0 = 0; int32_t G_B88_1 = 0; int32_t G_B88_2 = 0; int32_t G_B88_3 = 0; int32_t* G_B88_4 = NULL; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* G_B88_5 = NULL; uint16_t G_B88_6 = 0; uint16_t G_B88_7 = 0; String_t* G_B88_8 = NULL; int32_t G_B92_0 = 0; int32_t G_B92_1 = 0; int32_t G_B92_2 = 0; int32_t* G_B92_3 = NULL; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* G_B92_4 = NULL; uint16_t G_B92_5 = 0; uint16_t G_B92_6 = 0; String_t* G_B92_7 = NULL; int32_t G_B91_0 = 0; int32_t G_B91_1 = 0; int32_t G_B91_2 = 0; int32_t* G_B91_3 = NULL; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* G_B91_4 = NULL; uint16_t G_B91_5 = 0; uint16_t G_B91_6 = 0; String_t* G_B91_7 = NULL; int32_t G_B93_0 = 0; int32_t G_B93_1 = 0; int32_t G_B93_2 = 0; int32_t G_B93_3 = 0; int32_t* G_B93_4 = NULL; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* G_B93_5 = NULL; uint16_t G_B93_6 = 0; uint16_t G_B93_7 = 0; String_t* G_B93_8 = NULL; int32_t G_B107_0 = 0; int32_t* G_B107_1 = NULL; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* G_B107_2 = NULL; uint16_t G_B107_3 = 0; uint16_t G_B107_4 = 0; String_t* G_B107_5 = NULL; int32_t G_B106_0 = 0; int32_t* G_B106_1 = NULL; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* G_B106_2 = NULL; uint16_t G_B106_3 = 0; uint16_t G_B106_4 = 0; String_t* G_B106_5 = NULL; int32_t G_B108_0 = 0; int32_t G_B108_1 = 0; int32_t* G_B108_2 = NULL; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* G_B108_3 = NULL; uint16_t G_B108_4 = 0; uint16_t G_B108_5 = 0; String_t* G_B108_6 = NULL; int32_t G_B112_0 = 0; int32_t G_B112_1 = 0; int32_t G_B112_2 = 0; int32_t* G_B112_3 = NULL; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* G_B112_4 = NULL; uint16_t G_B112_5 = 0; uint16_t G_B112_6 = 0; String_t* G_B112_7 = NULL; int32_t G_B111_0 = 0; int32_t G_B111_1 = 0; int32_t G_B111_2 = 0; int32_t* G_B111_3 = NULL; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* G_B111_4 = NULL; uint16_t G_B111_5 = 0; uint16_t G_B111_6 = 0; String_t* G_B111_7 = NULL; int32_t G_B113_0 = 0; int32_t G_B113_1 = 0; int32_t G_B113_2 = 0; int32_t G_B113_3 = 0; int32_t* G_B113_4 = NULL; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* G_B113_5 = NULL; uint16_t G_B113_6 = 0; uint16_t G_B113_7 = 0; String_t* G_B113_8 = NULL; int32_t G_B117_0 = 0; int32_t G_B117_1 = 0; int32_t G_B117_2 = 0; int32_t* G_B117_3 = NULL; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* G_B117_4 = NULL; uint16_t G_B117_5 = 0; uint16_t G_B117_6 = 0; String_t* G_B117_7 = NULL; int32_t G_B116_0 = 0; int32_t G_B116_1 = 0; int32_t G_B116_2 = 0; int32_t* G_B116_3 = NULL; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* G_B116_4 = NULL; uint16_t G_B116_5 = 0; uint16_t G_B116_6 = 0; String_t* G_B116_7 = NULL; int32_t G_B118_0 = 0; int32_t G_B118_1 = 0; int32_t G_B118_2 = 0; int32_t G_B118_3 = 0; int32_t* G_B118_4 = NULL; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* G_B118_5 = NULL; uint16_t G_B118_6 = 0; uint16_t G_B118_7 = 0; String_t* G_B118_8 = NULL; { Uri_EnsureHostString_m47897EC94F83DFE1CA16CE71167DDD3CC986C22A(__this, (bool)0, /*hidden argument*/NULL); int32_t L_0 = ___parts0; if (!((int32_t)((int32_t)L_0&(int32_t)4))) { goto IL_0019; } } { UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_1 = __this->get_m_Info_18(); NullCheck(L_1); String_t* L_2 = L_1->get_Host_0(); G_B3_0 = L_2; goto IL_001e; } IL_0019: { String_t* L_3 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); G_B3_0 = L_3; } IL_001e: { V_0 = G_B3_0; UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_4 = __this->get_m_Info_18(); NullCheck(L_4); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_5 = L_4->get_address_of_Offset_3(); uint16_t L_6 = L_5->get_End_7(); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_7 = __this->get_m_Info_18(); NullCheck(L_7); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_8 = L_7->get_address_of_Offset_3(); uint16_t L_9 = L_8->get_User_1(); int32_t L_10 = ___formatAs2; G_B4_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)L_9)); if ((((int32_t)L_10) == ((int32_t)1))) { G_B5_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)L_9)); goto IL_0047; } } { G_B6_0 = 1; G_B6_1 = G_B4_0; goto IL_0049; } IL_0047: { G_B6_0 = ((int32_t)12); G_B6_1 = G_B5_0; } IL_0049: { V_1 = ((int32_t)il2cpp_codegen_multiply((int32_t)G_B6_1, (int32_t)G_B6_0)); String_t* L_11 = V_0; NullCheck(L_11); int32_t L_12; L_12 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_11, /*hidden argument*/NULL); int32_t L_13 = V_1; UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_14 = __this->get_m_Syntax_15(); NullCheck(L_14); String_t* L_15; L_15 = UriParser_get_SchemeName_mFCD123235673631E05FE9BAF6955A0B43EEEBD80_inline(L_14, /*hidden argument*/NULL); NullCheck(L_15); int32_t L_16; L_16 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_15, /*hidden argument*/NULL); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_17 = (CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34*)(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34*)SZArrayNew(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)L_13)), (int32_t)L_16)), (int32_t)3)), (int32_t)1))); V_2 = L_17; V_1 = 0; int32_t L_18 = ___parts0; if (!((int32_t)((int32_t)L_18&(int32_t)1))) { goto IL_00d8; } } { UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_19 = __this->get_m_Syntax_15(); NullCheck(L_19); String_t* L_20; L_20 = UriParser_get_SchemeName_mFCD123235673631E05FE9BAF6955A0B43EEEBD80_inline(L_19, /*hidden argument*/NULL); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_21 = V_2; int32_t L_22 = V_1; UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_23 = __this->get_m_Syntax_15(); NullCheck(L_23); String_t* L_24; L_24 = UriParser_get_SchemeName_mFCD123235673631E05FE9BAF6955A0B43EEEBD80_inline(L_23, /*hidden argument*/NULL); NullCheck(L_24); int32_t L_25; L_25 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_24, /*hidden argument*/NULL); NullCheck(L_20); String_CopyTo_mF77EF8D4E5ABBD2AB7F509FFE9C0C70DC15A27E1(L_20, 0, L_21, L_22, L_25, /*hidden argument*/NULL); int32_t L_26 = V_1; UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_27 = __this->get_m_Syntax_15(); NullCheck(L_27); String_t* L_28; L_28 = UriParser_get_SchemeName_mFCD123235673631E05FE9BAF6955A0B43EEEBD80_inline(L_27, /*hidden argument*/NULL); NullCheck(L_28); int32_t L_29; L_29 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_28, /*hidden argument*/NULL); V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_26, (int32_t)L_29)); int32_t L_30 = ___parts0; if ((((int32_t)L_30) == ((int32_t)1))) { goto IL_00d8; } } { CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_31 = V_2; int32_t L_32 = V_1; int32_t L_33 = L_32; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_33, (int32_t)1)); NullCheck(L_31); (L_31)->SetAt(static_cast<il2cpp_array_size_t>(L_33), (Il2CppChar)((int32_t)58)); bool L_34; L_34 = Uri_InFact_mF6A06FA7246740D26093421D41D18000AC2CC0C4(__this, ((int64_t)((int64_t)((int32_t)1048576))), /*hidden argument*/NULL); if (!L_34) { goto IL_00d8; } } { CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_35 = V_2; int32_t L_36 = V_1; int32_t L_37 = L_36; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_37, (int32_t)1)); NullCheck(L_35); (L_35)->SetAt(static_cast<il2cpp_array_size_t>(L_37), (Il2CppChar)((int32_t)47)); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_38 = V_2; int32_t L_39 = V_1; int32_t L_40 = L_39; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_40, (int32_t)1)); NullCheck(L_38); (L_38)->SetAt(static_cast<il2cpp_array_size_t>(L_40), (Il2CppChar)((int32_t)47)); } IL_00d8: { int32_t L_41 = ___parts0; if (!((int32_t)((int32_t)L_41&(int32_t)2))) { goto IL_030f; } } { bool L_42; L_42 = Uri_InFact_mF6A06FA7246740D26093421D41D18000AC2CC0C4(__this, ((int64_t)((int64_t)((int32_t)2097152))), /*hidden argument*/NULL); if (!L_42) { goto IL_030f; } } { uint16_t L_43 = ___nonCanonical1; if (!((int32_t)((int32_t)L_43&(int32_t)2))) { goto IL_02c1; } } { int32_t L_44 = ___formatAs2; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_44, (int32_t)1))) { case 0: { goto IL_0112; } case 1: { goto IL_022d; } case 2: { goto IL_01cf; } } } { goto IL_0279; } IL_0112: { bool L_45; L_45 = Uri_NotAny_m2C222924AE10957D835ECBC887D456FB30DCF969(__this, ((int64_t)((int64_t)((int32_t)524288))), /*hidden argument*/NULL); if (!L_45) { goto IL_015b; } } { String_t* L_46 = __this->get_m_String_13(); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_47 = __this->get_m_Info_18(); NullCheck(L_47); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_48 = L_47->get_address_of_Offset_3(); uint16_t L_49 = L_48->get_User_1(); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_50 = __this->get_m_Info_18(); NullCheck(L_50); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_51 = L_50->get_address_of_Offset_3(); uint16_t L_52 = L_51->get_Host_2(); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_53 = V_2; IL2CPP_RUNTIME_CLASS_INIT(UriHelper_tBEFC75B3A4E9E35CB41ADAAE22E0D1D7EE65E53D_il2cpp_TypeInfo_var); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_54; L_54 = UriHelper_EscapeString_m322E8737F58BBAF891A75032EC1800BE548F84D7(L_46, L_49, L_52, L_53, (int32_t*)(&V_1), (bool)1, ((int32_t)63), ((int32_t)35), ((int32_t)37), /*hidden argument*/NULL); V_2 = L_54; goto IL_0307; } IL_015b: { bool L_55; L_55 = Uri_InFact_mF6A06FA7246740D26093421D41D18000AC2CC0C4(__this, ((int64_t)((int64_t)((int32_t)128))), /*hidden argument*/NULL); String_t* L_56 = __this->get_m_String_13(); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_57 = __this->get_m_Info_18(); NullCheck(L_57); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_58 = L_57->get_address_of_Offset_3(); uint16_t L_59 = L_58->get_User_1(); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_60 = V_2; int32_t L_61 = V_1; UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_62 = __this->get_m_Info_18(); NullCheck(L_62); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_63 = L_62->get_address_of_Offset_3(); uint16_t L_64 = L_63->get_Host_2(); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_65 = __this->get_m_Info_18(); NullCheck(L_65); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_66 = L_65->get_address_of_Offset_3(); uint16_t L_67 = L_66->get_User_1(); NullCheck(L_56); String_CopyTo_mF77EF8D4E5ABBD2AB7F509FFE9C0C70DC15A27E1(L_56, L_59, L_60, L_61, ((int32_t)il2cpp_codegen_subtract((int32_t)L_64, (int32_t)L_67)), /*hidden argument*/NULL); int32_t L_68 = V_1; UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_69 = __this->get_m_Info_18(); NullCheck(L_69); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_70 = L_69->get_address_of_Offset_3(); uint16_t L_71 = L_70->get_Host_2(); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_72 = __this->get_m_Info_18(); NullCheck(L_72); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_73 = L_72->get_address_of_Offset_3(); uint16_t L_74 = L_73->get_User_1(); V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_68, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_71, (int32_t)L_74)))); goto IL_0307; } IL_01cf: { String_t* L_75 = __this->get_m_String_13(); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_76 = __this->get_m_Info_18(); NullCheck(L_76); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_77 = L_76->get_address_of_Offset_3(); uint16_t L_78 = L_77->get_User_1(); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_79 = __this->get_m_Info_18(); NullCheck(L_79); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_80 = L_79->get_address_of_Offset_3(); uint16_t L_81 = L_80->get_Host_2(); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_82 = V_2; bool L_83; L_83 = Uri_InFact_mF6A06FA7246740D26093421D41D18000AC2CC0C4(__this, ((int64_t)((int64_t)((int32_t)524288))), /*hidden argument*/NULL); G_B19_0 = ((int32_t)92); G_B19_1 = ((int32_t)47); G_B19_2 = ((int32_t)64); G_B19_3 = (&V_1); G_B19_4 = L_82; G_B19_5 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_81, (int32_t)1)); G_B19_6 = L_78; G_B19_7 = L_75; if (L_83) { G_B20_0 = ((int32_t)92); G_B20_1 = ((int32_t)47); G_B20_2 = ((int32_t)64); G_B20_3 = (&V_1); G_B20_4 = L_82; G_B20_5 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_81, (int32_t)1)); G_B20_6 = L_78; G_B20_7 = L_75; goto IL_0211; } } { G_B21_0 = 3; G_B21_1 = G_B19_0; G_B21_2 = G_B19_1; G_B21_3 = G_B19_2; G_B21_4 = G_B19_3; G_B21_5 = G_B19_4; G_B21_6 = G_B19_5; G_B21_7 = G_B19_6; G_B21_8 = G_B19_7; goto IL_0212; } IL_0211: { G_B21_0 = 2; G_B21_1 = G_B20_0; G_B21_2 = G_B20_1; G_B21_3 = G_B20_2; G_B21_4 = G_B20_3; G_B21_5 = G_B20_4; G_B21_6 = G_B20_5; G_B21_7 = G_B20_6; G_B21_8 = G_B20_7; } IL_0212: { UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_84 = __this->get_m_Syntax_15(); IL2CPP_RUNTIME_CLASS_INIT(UriHelper_tBEFC75B3A4E9E35CB41ADAAE22E0D1D7EE65E53D_il2cpp_TypeInfo_var); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_85; L_85 = UriHelper_UnescapeString_mA17D82F433C1E293A09957A12BBA31A2617BB300(G_B21_8, G_B21_7, G_B21_6, G_B21_5, (int32_t*)G_B21_4, G_B21_3, G_B21_2, G_B21_1, G_B21_0, L_84, (bool)0, /*hidden argument*/NULL); V_2 = L_85; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_86 = V_2; int32_t L_87 = V_1; int32_t L_88 = L_87; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_88, (int32_t)1)); NullCheck(L_86); (L_86)->SetAt(static_cast<il2cpp_array_size_t>(L_88), (Il2CppChar)((int32_t)64)); goto IL_0307; } IL_022d: { String_t* L_89 = __this->get_m_String_13(); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_90 = __this->get_m_Info_18(); NullCheck(L_90); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_91 = L_90->get_address_of_Offset_3(); uint16_t L_92 = L_91->get_User_1(); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_93 = __this->get_m_Info_18(); NullCheck(L_93); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_94 = L_93->get_address_of_Offset_3(); uint16_t L_95 = L_94->get_Host_2(); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_96 = V_2; UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_97 = __this->get_m_Syntax_15(); IL2CPP_RUNTIME_CLASS_INIT(UriHelper_tBEFC75B3A4E9E35CB41ADAAE22E0D1D7EE65E53D_il2cpp_TypeInfo_var); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_98; L_98 = UriHelper_UnescapeString_mA17D82F433C1E293A09957A12BBA31A2617BB300(L_89, L_92, L_95, L_96, (int32_t*)(&V_1), ((int32_t)65535), ((int32_t)65535), ((int32_t)65535), ((int32_t)10), L_97, (bool)0, /*hidden argument*/NULL); V_2 = L_98; goto IL_0307; } IL_0279: { String_t* L_99 = __this->get_m_String_13(); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_100 = __this->get_m_Info_18(); NullCheck(L_100); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_101 = L_100->get_address_of_Offset_3(); uint16_t L_102 = L_101->get_User_1(); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_103 = __this->get_m_Info_18(); NullCheck(L_103); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_104 = L_103->get_address_of_Offset_3(); uint16_t L_105 = L_104->get_Host_2(); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_106 = V_2; UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_107 = __this->get_m_Syntax_15(); IL2CPP_RUNTIME_CLASS_INIT(UriHelper_tBEFC75B3A4E9E35CB41ADAAE22E0D1D7EE65E53D_il2cpp_TypeInfo_var); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_108; L_108 = UriHelper_UnescapeString_mA17D82F433C1E293A09957A12BBA31A2617BB300(L_99, L_102, L_105, L_106, (int32_t*)(&V_1), ((int32_t)65535), ((int32_t)65535), ((int32_t)65535), 0, L_107, (bool)0, /*hidden argument*/NULL); V_2 = L_108; goto IL_0307; } IL_02c1: { String_t* L_109 = __this->get_m_String_13(); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_110 = __this->get_m_Info_18(); NullCheck(L_110); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_111 = L_110->get_address_of_Offset_3(); uint16_t L_112 = L_111->get_User_1(); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_113 = __this->get_m_Info_18(); NullCheck(L_113); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_114 = L_113->get_address_of_Offset_3(); uint16_t L_115 = L_114->get_Host_2(); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_116 = V_2; UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_117 = __this->get_m_Syntax_15(); IL2CPP_RUNTIME_CLASS_INIT(UriHelper_tBEFC75B3A4E9E35CB41ADAAE22E0D1D7EE65E53D_il2cpp_TypeInfo_var); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_118; L_118 = UriHelper_UnescapeString_mA17D82F433C1E293A09957A12BBA31A2617BB300(L_109, L_112, L_115, L_116, (int32_t*)(&V_1), ((int32_t)65535), ((int32_t)65535), ((int32_t)65535), 0, L_117, (bool)0, /*hidden argument*/NULL); } IL_0307: { int32_t L_119 = ___parts0; if ((!(((uint32_t)L_119) == ((uint32_t)2)))) { goto IL_030f; } } { int32_t L_120 = V_1; V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_120, (int32_t)1)); } IL_030f: { int32_t L_121 = ___parts0; if (!((int32_t)((int32_t)L_121&(int32_t)4))) { goto IL_041d; } } { String_t* L_122 = V_0; NullCheck(L_122); int32_t L_123; L_123 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_122, /*hidden argument*/NULL); if (!L_123) { goto IL_041d; } } { int32_t L_124 = ___formatAs2; if ((((int32_t)L_124) == ((int32_t)1))) { goto IL_0357; } } { uint64_t L_125; L_125 = Uri_get_HostType_m6C142BC37D44CF1F53D80627455BC6B1CB747820(__this, /*hidden argument*/NULL); if ((!(((uint64_t)L_125) == ((uint64_t)((int64_t)((int64_t)((int32_t)327680))))))) { goto IL_0357; } } { uint16_t L_126 = ___nonCanonical1; if (!((int32_t)((int32_t)L_126&(int32_t)4))) { goto IL_0357; } } { int32_t L_127 = ___formatAs2; if ((((int32_t)L_127) == ((int32_t)2))) { goto IL_0351; } } { bool L_128; L_128 = Uri_InFact_mF6A06FA7246740D26093421D41D18000AC2CC0C4(__this, ((int64_t)((int64_t)((int32_t)524288))), /*hidden argument*/NULL); if (L_128) { goto IL_034e; } } { G_B37_0 = 3; goto IL_0353; } IL_034e: { G_B37_0 = 2; goto IL_0353; } IL_0351: { G_B37_0 = ((int32_t)10); } IL_0353: { V_4 = G_B37_0; goto IL_035a; } IL_0357: { V_4 = 0; } IL_035a: { int32_t L_129 = ___parts0; if (!((int32_t)((int32_t)L_129&(int32_t)((int32_t)256)))) { goto IL_039a; } } { String_t* L_130 = V_0; V_6 = L_130; String_t* L_131 = V_6; V_5 = (Il2CppChar*)((uintptr_t)L_131); Il2CppChar* L_132 = V_5; if (!L_132) { goto IL_0379; } } { Il2CppChar* L_133 = V_5; int32_t L_134; L_134 = RuntimeHelpers_get_OffsetToStringData_mEB8E6EAEBAFAB7CD7F7A915B3081785AABB9FC42(/*hidden argument*/NULL); V_5 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_133, (int32_t)L_134)); } IL_0379: { V_7 = (bool)0; V_8 = (bool)0; } IL_037f: try { // begin try (depth: 1) Il2CppChar* L_135 = V_5; String_t* L_136 = V_0; NullCheck(L_136); int32_t L_137; L_137 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_136, /*hidden argument*/NULL); String_t* L_138; L_138 = DomainNameHelper_UnicodeEquivalent_m3F187B69AA5313A516F863666C0A29292C8F07A3((Il2CppChar*)(Il2CppChar*)L_135, 0, L_137, (bool*)(&V_7), (bool*)(&V_8), /*hidden argument*/NULL); V_0 = L_138; goto IL_0397; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) goto CATCH_0394; throw e; } CATCH_0394: { // begin catch(System.UriFormatException) goto IL_0397; } // end catch (depth: 1) IL_0397: { V_6 = (String_t*)NULL; } IL_039a: { String_t* L_139 = V_0; String_t* L_140 = V_0; NullCheck(L_140); int32_t L_141; L_141 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_140, /*hidden argument*/NULL); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_142 = V_2; int32_t L_143 = V_4; UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_144 = __this->get_m_Syntax_15(); IL2CPP_RUNTIME_CLASS_INIT(UriHelper_tBEFC75B3A4E9E35CB41ADAAE22E0D1D7EE65E53D_il2cpp_TypeInfo_var); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_145; L_145 = UriHelper_UnescapeString_mA17D82F433C1E293A09957A12BBA31A2617BB300(L_139, 0, L_141, L_142, (int32_t*)(&V_1), ((int32_t)47), ((int32_t)63), ((int32_t)35), L_143, L_144, (bool)0, /*hidden argument*/NULL); V_2 = L_145; int32_t L_146 = ___parts0; if (!((int32_t)((int32_t)L_146&(int32_t)((int32_t)-2147483648LL)))) { goto IL_041d; } } { uint64_t L_147; L_147 = Uri_get_HostType_m6C142BC37D44CF1F53D80627455BC6B1CB747820(__this, /*hidden argument*/NULL); if ((!(((uint64_t)L_147) == ((uint64_t)((int64_t)((int64_t)((int32_t)65536))))))) { goto IL_041d; } } { UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_148 = __this->get_m_Info_18(); NullCheck(L_148); String_t* L_149 = L_148->get_ScopeId_1(); if (!L_149) { goto IL_041d; } } { UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_150 = __this->get_m_Info_18(); NullCheck(L_150); String_t* L_151 = L_150->get_ScopeId_1(); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_152 = V_2; int32_t L_153 = V_1; UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_154 = __this->get_m_Info_18(); NullCheck(L_154); String_t* L_155 = L_154->get_ScopeId_1(); NullCheck(L_155); int32_t L_156; L_156 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_155, /*hidden argument*/NULL); NullCheck(L_151); String_CopyTo_mF77EF8D4E5ABBD2AB7F509FFE9C0C70DC15A27E1(L_151, 0, L_152, ((int32_t)il2cpp_codegen_subtract((int32_t)L_153, (int32_t)1)), L_156, /*hidden argument*/NULL); int32_t L_157 = V_1; UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_158 = __this->get_m_Info_18(); NullCheck(L_158); String_t* L_159 = L_158->get_ScopeId_1(); NullCheck(L_159); int32_t L_160; L_160 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_159, /*hidden argument*/NULL); V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_157, (int32_t)L_160)); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_161 = V_2; int32_t L_162 = V_1; NullCheck(L_161); (L_161)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_subtract((int32_t)L_162, (int32_t)1))), (Il2CppChar)((int32_t)93)); } IL_041d: { int32_t L_163 = ___parts0; if (!((int32_t)((int32_t)L_163&(int32_t)8))) { goto IL_055d; } } { uint16_t L_164 = ___nonCanonical1; if (((int32_t)((int32_t)L_164&(int32_t)8))) { goto IL_04fc; } } { bool L_165; L_165 = Uri_InFact_mF6A06FA7246740D26093421D41D18000AC2CC0C4(__this, ((int64_t)((int64_t)((int32_t)8388608))), /*hidden argument*/NULL); if (!L_165) { goto IL_04a1; } } { UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_166 = __this->get_m_Info_18(); NullCheck(L_166); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_167 = L_166->get_address_of_Offset_3(); uint16_t L_168 = L_167->get_Path_4(); V_9 = L_168; } IL_044d: { String_t* L_169 = __this->get_m_String_13(); uint16_t L_170 = V_9; int32_t L_171 = ((int32_t)((uint16_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_170, (int32_t)1)))); V_9 = (uint16_t)L_171; NullCheck(L_169); Il2CppChar L_172; L_172 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_169, L_171, /*hidden argument*/NULL); if ((!(((uint32_t)L_172) == ((uint32_t)((int32_t)58))))) { goto IL_044d; } } { String_t* L_173 = __this->get_m_String_13(); uint16_t L_174 = V_9; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_175 = V_2; int32_t L_176 = V_1; UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_177 = __this->get_m_Info_18(); NullCheck(L_177); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_178 = L_177->get_address_of_Offset_3(); uint16_t L_179 = L_178->get_Path_4(); uint16_t L_180 = V_9; NullCheck(L_173); String_CopyTo_mF77EF8D4E5ABBD2AB7F509FFE9C0C70DC15A27E1(L_173, L_174, L_175, L_176, ((int32_t)il2cpp_codegen_subtract((int32_t)L_179, (int32_t)L_180)), /*hidden argument*/NULL); int32_t L_181 = V_1; UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_182 = __this->get_m_Info_18(); NullCheck(L_182); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_183 = L_182->get_address_of_Offset_3(); uint16_t L_184 = L_183->get_Path_4(); uint16_t L_185 = V_9; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_181, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_184, (int32_t)L_185)))); goto IL_055d; } IL_04a1: { int32_t L_186 = ___parts0; if (!((int32_t)((int32_t)L_186&(int32_t)((int32_t)128)))) { goto IL_055d; } } { UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_187 = __this->get_m_Syntax_15(); NullCheck(L_187); int32_t L_188; L_188 = UriParser_get_DefaultPort_m7ECA5BE839D36C7FF854FEA0795D8DE701487D33_inline(L_187, /*hidden argument*/NULL); if ((((int32_t)L_188) == ((int32_t)(-1)))) { goto IL_055d; } } { CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_189 = V_2; int32_t L_190 = V_1; int32_t L_191 = L_190; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_191, (int32_t)1)); NullCheck(L_189); (L_189)->SetAt(static_cast<il2cpp_array_size_t>(L_191), (Il2CppChar)((int32_t)58)); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_192 = __this->get_m_Info_18(); NullCheck(L_192); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_193 = L_192->get_address_of_Offset_3(); uint16_t* L_194 = L_193->get_address_of_PortValue_3(); IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var); CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_195; L_195 = CultureInfo_get_InvariantCulture_m9FAAFAF8A00091EE1FCB7098AD3F163ECDF02164(/*hidden argument*/NULL); String_t* L_196; L_196 = UInt16_ToString_m960B640F8B0C181A9185FCD0921B2F85106FE336((uint16_t*)L_194, L_195, /*hidden argument*/NULL); V_0 = L_196; String_t* L_197 = V_0; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_198 = V_2; int32_t L_199 = V_1; String_t* L_200 = V_0; NullCheck(L_200); int32_t L_201; L_201 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_200, /*hidden argument*/NULL); NullCheck(L_197); String_CopyTo_mF77EF8D4E5ABBD2AB7F509FFE9C0C70DC15A27E1(L_197, 0, L_198, L_199, L_201, /*hidden argument*/NULL); int32_t L_202 = V_1; String_t* L_203 = V_0; NullCheck(L_203); int32_t L_204; L_204 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_203, /*hidden argument*/NULL); V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_202, (int32_t)L_204)); goto IL_055d; } IL_04fc: { bool L_205; L_205 = Uri_InFact_mF6A06FA7246740D26093421D41D18000AC2CC0C4(__this, ((int64_t)((int64_t)((int32_t)8388608))), /*hidden argument*/NULL); if (L_205) { goto IL_0521; } } { int32_t L_206 = ___parts0; if (!((int32_t)((int32_t)L_206&(int32_t)((int32_t)128)))) { goto IL_055d; } } { UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_207 = __this->get_m_Syntax_15(); NullCheck(L_207); int32_t L_208; L_208 = UriParser_get_DefaultPort_m7ECA5BE839D36C7FF854FEA0795D8DE701487D33_inline(L_207, /*hidden argument*/NULL); if ((((int32_t)L_208) == ((int32_t)(-1)))) { goto IL_055d; } } IL_0521: { CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_209 = V_2; int32_t L_210 = V_1; int32_t L_211 = L_210; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_211, (int32_t)1)); NullCheck(L_209); (L_209)->SetAt(static_cast<il2cpp_array_size_t>(L_211), (Il2CppChar)((int32_t)58)); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_212 = __this->get_m_Info_18(); NullCheck(L_212); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_213 = L_212->get_address_of_Offset_3(); uint16_t* L_214 = L_213->get_address_of_PortValue_3(); IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var); CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_215; L_215 = CultureInfo_get_InvariantCulture_m9FAAFAF8A00091EE1FCB7098AD3F163ECDF02164(/*hidden argument*/NULL); String_t* L_216; L_216 = UInt16_ToString_m960B640F8B0C181A9185FCD0921B2F85106FE336((uint16_t*)L_214, L_215, /*hidden argument*/NULL); V_0 = L_216; String_t* L_217 = V_0; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_218 = V_2; int32_t L_219 = V_1; String_t* L_220 = V_0; NullCheck(L_220); int32_t L_221; L_221 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_220, /*hidden argument*/NULL); NullCheck(L_217); String_CopyTo_mF77EF8D4E5ABBD2AB7F509FFE9C0C70DC15A27E1(L_217, 0, L_218, L_219, L_221, /*hidden argument*/NULL); int32_t L_222 = V_1; String_t* L_223 = V_0; NullCheck(L_223); int32_t L_224; L_224 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_223, /*hidden argument*/NULL); V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_222, (int32_t)L_224)); } IL_055d: { int32_t L_225 = ___parts0; if (!((int32_t)((int32_t)L_225&(int32_t)((int32_t)16)))) { goto IL_05a7; } } { CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_226 = V_2; int32_t L_227 = ___formatAs2; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_228; L_228 = Uri_GetCanonicalPath_mA187EAD590C890FE0623CF7B1EFF4364B57FAF10(__this, L_226, (int32_t*)(&V_1), L_227, /*hidden argument*/NULL); V_2 = L_228; int32_t L_229 = ___parts0; if ((!(((uint32_t)L_229) == ((uint32_t)((int32_t)16))))) { goto IL_05a7; } } { bool L_230; L_230 = Uri_InFact_mF6A06FA7246740D26093421D41D18000AC2CC0C4(__this, ((int64_t)((int64_t)((int32_t)1048576))), /*hidden argument*/NULL); if (!L_230) { goto IL_0593; } } { int32_t L_231 = V_1; if (!L_231) { goto IL_0593; } } { CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_232 = V_2; NullCheck(L_232); int32_t L_233 = 0; uint16_t L_234 = (uint16_t)(L_232)->GetAt(static_cast<il2cpp_array_size_t>(L_233)); if ((!(((uint32_t)L_234) == ((uint32_t)((int32_t)47))))) { goto IL_0593; } } { V_3 = (uint16_t)1; int32_t L_235 = V_1; V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_235, (int32_t)1)); goto IL_0595; } IL_0593: { V_3 = (uint16_t)0; } IL_0595: { int32_t L_236 = V_1; if (!L_236) { goto IL_05a1; } } { CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_237 = V_2; uint16_t L_238 = V_3; int32_t L_239 = V_1; String_t* L_240; L_240 = String_CreateString_m16F181739FD8BA877868803DE2CE0EF0A4668D0E(NULL, L_237, L_238, L_239, /*hidden argument*/NULL); return L_240; } IL_05a1: { String_t* L_241 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); return L_241; } IL_05a7: { int32_t L_242 = ___parts0; if (!((int32_t)((int32_t)L_242&(int32_t)((int32_t)32)))) { goto IL_0792; } } { UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_243 = __this->get_m_Info_18(); NullCheck(L_243); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_244 = L_243->get_address_of_Offset_3(); uint16_t L_245 = L_244->get_Query_5(); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_246 = __this->get_m_Info_18(); NullCheck(L_246); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_247 = L_246->get_address_of_Offset_3(); uint16_t L_248 = L_247->get_Fragment_6(); if ((((int32_t)L_245) >= ((int32_t)L_248))) { goto IL_0792; } } { UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_249 = __this->get_m_Info_18(); NullCheck(L_249); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_250 = L_249->get_address_of_Offset_3(); uint16_t L_251 = L_250->get_Query_5(); V_3 = (uint16_t)((int32_t)((uint16_t)((int32_t)il2cpp_codegen_add((int32_t)L_251, (int32_t)1)))); int32_t L_252 = ___parts0; if ((((int32_t)L_252) == ((int32_t)((int32_t)32)))) { goto IL_05f7; } } { CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_253 = V_2; int32_t L_254 = V_1; int32_t L_255 = L_254; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_255, (int32_t)1)); NullCheck(L_253); (L_253)->SetAt(static_cast<il2cpp_array_size_t>(L_255), (Il2CppChar)((int32_t)63)); } IL_05f7: { uint16_t L_256 = ___nonCanonical1; if (!((int32_t)((int32_t)L_256&(int32_t)((int32_t)32)))) { goto IL_075b; } } { int32_t L_257 = ___formatAs2; if ((((int32_t)L_257) == ((int32_t)1))) { goto IL_0618; } } { int32_t L_258 = ___formatAs2; if ((((int32_t)L_258) == ((int32_t)2))) { goto IL_06dd; } } { int32_t L_259 = ___formatAs2; if ((((int32_t)L_259) == ((int32_t)((int32_t)32767)))) { goto IL_0691; } } { goto IL_0714; } IL_0618: { bool L_260; L_260 = Uri_NotAny_m2C222924AE10957D835ECBC887D456FB30DCF969(__this, ((int64_t)((int64_t)((int32_t)524288))), /*hidden argument*/NULL); if (!L_260) { goto IL_0655; } } { String_t* L_261 = __this->get_m_String_13(); uint16_t L_262 = V_3; UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_263 = __this->get_m_Info_18(); NullCheck(L_263); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_264 = L_263->get_address_of_Offset_3(); uint16_t L_265 = L_264->get_Fragment_6(); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_266 = V_2; IL2CPP_RUNTIME_CLASS_INIT(UriHelper_tBEFC75B3A4E9E35CB41ADAAE22E0D1D7EE65E53D_il2cpp_TypeInfo_var); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_267; L_267 = UriHelper_EscapeString_m322E8737F58BBAF891A75032EC1800BE548F84D7(L_261, L_262, L_265, L_266, (int32_t*)(&V_1), (bool)1, ((int32_t)35), ((int32_t)65535), ((int32_t)37), /*hidden argument*/NULL); V_2 = L_267; goto IL_0792; } IL_0655: { String_t* L_268 = __this->get_m_String_13(); uint16_t L_269 = V_3; UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_270 = __this->get_m_Info_18(); NullCheck(L_270); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_271 = L_270->get_address_of_Offset_3(); uint16_t L_272 = L_271->get_Fragment_6(); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_273 = V_2; UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_274 = __this->get_m_Syntax_15(); IL2CPP_RUNTIME_CLASS_INIT(UriHelper_tBEFC75B3A4E9E35CB41ADAAE22E0D1D7EE65E53D_il2cpp_TypeInfo_var); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_275; L_275 = UriHelper_UnescapeString_mA17D82F433C1E293A09957A12BBA31A2617BB300(L_268, L_269, L_272, L_273, (int32_t*)(&V_1), ((int32_t)65535), ((int32_t)65535), ((int32_t)65535), 0, L_274, (bool)1, /*hidden argument*/NULL); goto IL_0792; } IL_0691: { String_t* L_276 = __this->get_m_String_13(); uint16_t L_277 = V_3; UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_278 = __this->get_m_Info_18(); NullCheck(L_278); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_279 = L_278->get_address_of_Offset_3(); uint16_t L_280 = L_279->get_Fragment_6(); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_281 = V_2; bool L_282; L_282 = Uri_InFact_mF6A06FA7246740D26093421D41D18000AC2CC0C4(__this, ((int64_t)((int64_t)((int32_t)524288))), /*hidden argument*/NULL); G_B86_0 = ((int32_t)65535); G_B86_1 = ((int32_t)65535); G_B86_2 = ((int32_t)35); G_B86_3 = (&V_1); G_B86_4 = L_281; G_B86_5 = L_280; G_B86_6 = L_277; G_B86_7 = L_276; if (L_282) { G_B87_0 = ((int32_t)65535); G_B87_1 = ((int32_t)65535); G_B87_2 = ((int32_t)35); G_B87_3 = (&V_1); G_B87_4 = L_281; G_B87_5 = L_280; G_B87_6 = L_277; G_B87_7 = L_276; goto IL_06c8; } } { G_B88_0 = 3; G_B88_1 = G_B86_0; G_B88_2 = G_B86_1; G_B88_3 = G_B86_2; G_B88_4 = G_B86_3; G_B88_5 = G_B86_4; G_B88_6 = G_B86_5; G_B88_7 = G_B86_6; G_B88_8 = G_B86_7; goto IL_06c9; } IL_06c8: { G_B88_0 = 2; G_B88_1 = G_B87_0; G_B88_2 = G_B87_1; G_B88_3 = G_B87_2; G_B88_4 = G_B87_3; G_B88_5 = G_B87_4; G_B88_6 = G_B87_5; G_B88_7 = G_B87_6; G_B88_8 = G_B87_7; } IL_06c9: { UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_283 = __this->get_m_Syntax_15(); IL2CPP_RUNTIME_CLASS_INIT(UriHelper_tBEFC75B3A4E9E35CB41ADAAE22E0D1D7EE65E53D_il2cpp_TypeInfo_var); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_284; L_284 = UriHelper_UnescapeString_mA17D82F433C1E293A09957A12BBA31A2617BB300(G_B88_8, G_B88_7, G_B88_6, G_B88_5, (int32_t*)G_B88_4, G_B88_3, G_B88_2, G_B88_1, ((int32_t)((int32_t)G_B88_0|(int32_t)4)), L_283, (bool)1, /*hidden argument*/NULL); V_2 = L_284; goto IL_0792; } IL_06dd: { String_t* L_285 = __this->get_m_String_13(); uint16_t L_286 = V_3; UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_287 = __this->get_m_Info_18(); NullCheck(L_287); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_288 = L_287->get_address_of_Offset_3(); uint16_t L_289 = L_288->get_Fragment_6(); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_290 = V_2; UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_291 = __this->get_m_Syntax_15(); IL2CPP_RUNTIME_CLASS_INIT(UriHelper_tBEFC75B3A4E9E35CB41ADAAE22E0D1D7EE65E53D_il2cpp_TypeInfo_var); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_292; L_292 = UriHelper_UnescapeString_mA17D82F433C1E293A09957A12BBA31A2617BB300(L_285, L_286, L_289, L_290, (int32_t*)(&V_1), ((int32_t)35), ((int32_t)65535), ((int32_t)65535), ((int32_t)10), L_291, (bool)1, /*hidden argument*/NULL); V_2 = L_292; goto IL_0792; } IL_0714: { String_t* L_293 = __this->get_m_String_13(); uint16_t L_294 = V_3; UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_295 = __this->get_m_Info_18(); NullCheck(L_295); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_296 = L_295->get_address_of_Offset_3(); uint16_t L_297 = L_296->get_Fragment_6(); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_298 = V_2; bool L_299; L_299 = Uri_InFact_mF6A06FA7246740D26093421D41D18000AC2CC0C4(__this, ((int64_t)((int64_t)((int32_t)524288))), /*hidden argument*/NULL); G_B91_0 = ((int32_t)65535); G_B91_1 = ((int32_t)65535); G_B91_2 = ((int32_t)35); G_B91_3 = (&V_1); G_B91_4 = L_298; G_B91_5 = L_297; G_B91_6 = L_294; G_B91_7 = L_293; if (L_299) { G_B92_0 = ((int32_t)65535); G_B92_1 = ((int32_t)65535); G_B92_2 = ((int32_t)35); G_B92_3 = (&V_1); G_B92_4 = L_298; G_B92_5 = L_297; G_B92_6 = L_294; G_B92_7 = L_293; goto IL_074b; } } { G_B93_0 = 3; G_B93_1 = G_B91_0; G_B93_2 = G_B91_1; G_B93_3 = G_B91_2; G_B93_4 = G_B91_3; G_B93_5 = G_B91_4; G_B93_6 = G_B91_5; G_B93_7 = G_B91_6; G_B93_8 = G_B91_7; goto IL_074c; } IL_074b: { G_B93_0 = 2; G_B93_1 = G_B92_0; G_B93_2 = G_B92_1; G_B93_3 = G_B92_2; G_B93_4 = G_B92_3; G_B93_5 = G_B92_4; G_B93_6 = G_B92_5; G_B93_7 = G_B92_6; G_B93_8 = G_B92_7; } IL_074c: { UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_300 = __this->get_m_Syntax_15(); IL2CPP_RUNTIME_CLASS_INIT(UriHelper_tBEFC75B3A4E9E35CB41ADAAE22E0D1D7EE65E53D_il2cpp_TypeInfo_var); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_301; L_301 = UriHelper_UnescapeString_mA17D82F433C1E293A09957A12BBA31A2617BB300(G_B93_8, G_B93_7, G_B93_6, G_B93_5, (int32_t*)G_B93_4, G_B93_3, G_B93_2, G_B93_1, G_B93_0, L_300, (bool)1, /*hidden argument*/NULL); V_2 = L_301; goto IL_0792; } IL_075b: { String_t* L_302 = __this->get_m_String_13(); uint16_t L_303 = V_3; UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_304 = __this->get_m_Info_18(); NullCheck(L_304); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_305 = L_304->get_address_of_Offset_3(); uint16_t L_306 = L_305->get_Fragment_6(); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_307 = V_2; UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_308 = __this->get_m_Syntax_15(); IL2CPP_RUNTIME_CLASS_INIT(UriHelper_tBEFC75B3A4E9E35CB41ADAAE22E0D1D7EE65E53D_il2cpp_TypeInfo_var); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_309; L_309 = UriHelper_UnescapeString_mA17D82F433C1E293A09957A12BBA31A2617BB300(L_302, L_303, L_306, L_307, (int32_t*)(&V_1), ((int32_t)65535), ((int32_t)65535), ((int32_t)65535), 0, L_308, (bool)1, /*hidden argument*/NULL); } IL_0792: { int32_t L_310 = ___parts0; if (!((int32_t)((int32_t)L_310&(int32_t)((int32_t)64)))) { goto IL_098e; } } { UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_311 = __this->get_m_Info_18(); NullCheck(L_311); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_312 = L_311->get_address_of_Offset_3(); uint16_t L_313 = L_312->get_Fragment_6(); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_314 = __this->get_m_Info_18(); NullCheck(L_314); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_315 = L_314->get_address_of_Offset_3(); uint16_t L_316 = L_315->get_End_7(); if ((((int32_t)L_313) >= ((int32_t)L_316))) { goto IL_098e; } } { UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_317 = __this->get_m_Info_18(); NullCheck(L_317); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_318 = L_317->get_address_of_Offset_3(); uint16_t L_319 = L_318->get_Fragment_6(); V_3 = (uint16_t)((int32_t)((uint16_t)((int32_t)il2cpp_codegen_add((int32_t)L_319, (int32_t)1)))); int32_t L_320 = ___parts0; if ((((int32_t)L_320) == ((int32_t)((int32_t)64)))) { goto IL_07e2; } } { CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_321 = V_2; int32_t L_322 = V_1; int32_t L_323 = L_322; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_323, (int32_t)1)); NullCheck(L_321); (L_321)->SetAt(static_cast<il2cpp_array_size_t>(L_323), (Il2CppChar)((int32_t)35)); } IL_07e2: { uint16_t L_324 = ___nonCanonical1; if (!((int32_t)((int32_t)L_324&(int32_t)((int32_t)64)))) { goto IL_0957; } } { int32_t L_325 = ___formatAs2; if ((((int32_t)L_325) == ((int32_t)1))) { goto IL_0806; } } { int32_t L_326 = ___formatAs2; if ((((int32_t)L_326) == ((int32_t)2))) { goto IL_08d9; } } { int32_t L_327 = ___formatAs2; if ((((int32_t)L_327) == ((int32_t)((int32_t)32767)))) { goto IL_088d; } } { goto IL_0910; } IL_0806: { bool L_328; L_328 = Uri_NotAny_m2C222924AE10957D835ECBC887D456FB30DCF969(__this, ((int64_t)((int64_t)((int32_t)524288))), /*hidden argument*/NULL); if (!L_328) { goto IL_0851; } } { String_t* L_329 = __this->get_m_String_13(); uint16_t L_330 = V_3; UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_331 = __this->get_m_Info_18(); NullCheck(L_331); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_332 = L_331->get_address_of_Offset_3(); uint16_t L_333 = L_332->get_End_7(); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_334 = V_2; IL2CPP_RUNTIME_CLASS_INIT(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_il2cpp_TypeInfo_var); bool L_335; L_335 = UriParser_get_ShouldUseLegacyV2Quirks_mB8917CAC10CD13E44F2EB21D4033044BEAF132B2(/*hidden argument*/NULL); G_B106_0 = 1; G_B106_1 = (&V_1); G_B106_2 = L_334; G_B106_3 = L_333; G_B106_4 = L_330; G_B106_5 = L_329; if (L_335) { G_B107_0 = 1; G_B107_1 = (&V_1); G_B107_2 = L_334; G_B107_3 = L_333; G_B107_4 = L_330; G_B107_5 = L_329; goto IL_083d; } } { G_B108_0 = ((int32_t)65535); G_B108_1 = G_B106_0; G_B108_2 = G_B106_1; G_B108_3 = G_B106_2; G_B108_4 = G_B106_3; G_B108_5 = G_B106_4; G_B108_6 = G_B106_5; goto IL_083f; } IL_083d: { G_B108_0 = ((int32_t)35); G_B108_1 = G_B107_0; G_B108_2 = G_B107_1; G_B108_3 = G_B107_2; G_B108_4 = G_B107_3; G_B108_5 = G_B107_4; G_B108_6 = G_B107_5; } IL_083f: { IL2CPP_RUNTIME_CLASS_INIT(UriHelper_tBEFC75B3A4E9E35CB41ADAAE22E0D1D7EE65E53D_il2cpp_TypeInfo_var); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_336; L_336 = UriHelper_EscapeString_m322E8737F58BBAF891A75032EC1800BE548F84D7(G_B108_6, G_B108_5, G_B108_4, G_B108_3, (int32_t*)G_B108_2, (bool)G_B108_1, G_B108_0, ((int32_t)65535), ((int32_t)37), /*hidden argument*/NULL); V_2 = L_336; goto IL_098e; } IL_0851: { String_t* L_337 = __this->get_m_String_13(); uint16_t L_338 = V_3; UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_339 = __this->get_m_Info_18(); NullCheck(L_339); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_340 = L_339->get_address_of_Offset_3(); uint16_t L_341 = L_340->get_End_7(); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_342 = V_2; UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_343 = __this->get_m_Syntax_15(); IL2CPP_RUNTIME_CLASS_INIT(UriHelper_tBEFC75B3A4E9E35CB41ADAAE22E0D1D7EE65E53D_il2cpp_TypeInfo_var); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_344; L_344 = UriHelper_UnescapeString_mA17D82F433C1E293A09957A12BBA31A2617BB300(L_337, L_338, L_341, L_342, (int32_t*)(&V_1), ((int32_t)65535), ((int32_t)65535), ((int32_t)65535), 0, L_343, (bool)0, /*hidden argument*/NULL); goto IL_098e; } IL_088d: { String_t* L_345 = __this->get_m_String_13(); uint16_t L_346 = V_3; UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_347 = __this->get_m_Info_18(); NullCheck(L_347); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_348 = L_347->get_address_of_Offset_3(); uint16_t L_349 = L_348->get_End_7(); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_350 = V_2; bool L_351; L_351 = Uri_InFact_mF6A06FA7246740D26093421D41D18000AC2CC0C4(__this, ((int64_t)((int64_t)((int32_t)524288))), /*hidden argument*/NULL); G_B111_0 = ((int32_t)65535); G_B111_1 = ((int32_t)65535); G_B111_2 = ((int32_t)35); G_B111_3 = (&V_1); G_B111_4 = L_350; G_B111_5 = L_349; G_B111_6 = L_346; G_B111_7 = L_345; if (L_351) { G_B112_0 = ((int32_t)65535); G_B112_1 = ((int32_t)65535); G_B112_2 = ((int32_t)35); G_B112_3 = (&V_1); G_B112_4 = L_350; G_B112_5 = L_349; G_B112_6 = L_346; G_B112_7 = L_345; goto IL_08c4; } } { G_B113_0 = 3; G_B113_1 = G_B111_0; G_B113_2 = G_B111_1; G_B113_3 = G_B111_2; G_B113_4 = G_B111_3; G_B113_5 = G_B111_4; G_B113_6 = G_B111_5; G_B113_7 = G_B111_6; G_B113_8 = G_B111_7; goto IL_08c5; } IL_08c4: { G_B113_0 = 2; G_B113_1 = G_B112_0; G_B113_2 = G_B112_1; G_B113_3 = G_B112_2; G_B113_4 = G_B112_3; G_B113_5 = G_B112_4; G_B113_6 = G_B112_5; G_B113_7 = G_B112_6; G_B113_8 = G_B112_7; } IL_08c5: { UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_352 = __this->get_m_Syntax_15(); IL2CPP_RUNTIME_CLASS_INIT(UriHelper_tBEFC75B3A4E9E35CB41ADAAE22E0D1D7EE65E53D_il2cpp_TypeInfo_var); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_353; L_353 = UriHelper_UnescapeString_mA17D82F433C1E293A09957A12BBA31A2617BB300(G_B113_8, G_B113_7, G_B113_6, G_B113_5, (int32_t*)G_B113_4, G_B113_3, G_B113_2, G_B113_1, ((int32_t)((int32_t)G_B113_0|(int32_t)4)), L_352, (bool)0, /*hidden argument*/NULL); V_2 = L_353; goto IL_098e; } IL_08d9: { String_t* L_354 = __this->get_m_String_13(); uint16_t L_355 = V_3; UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_356 = __this->get_m_Info_18(); NullCheck(L_356); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_357 = L_356->get_address_of_Offset_3(); uint16_t L_358 = L_357->get_End_7(); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_359 = V_2; UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_360 = __this->get_m_Syntax_15(); IL2CPP_RUNTIME_CLASS_INIT(UriHelper_tBEFC75B3A4E9E35CB41ADAAE22E0D1D7EE65E53D_il2cpp_TypeInfo_var); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_361; L_361 = UriHelper_UnescapeString_mA17D82F433C1E293A09957A12BBA31A2617BB300(L_354, L_355, L_358, L_359, (int32_t*)(&V_1), ((int32_t)35), ((int32_t)65535), ((int32_t)65535), ((int32_t)10), L_360, (bool)0, /*hidden argument*/NULL); V_2 = L_361; goto IL_098e; } IL_0910: { String_t* L_362 = __this->get_m_String_13(); uint16_t L_363 = V_3; UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_364 = __this->get_m_Info_18(); NullCheck(L_364); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_365 = L_364->get_address_of_Offset_3(); uint16_t L_366 = L_365->get_End_7(); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_367 = V_2; bool L_368; L_368 = Uri_InFact_mF6A06FA7246740D26093421D41D18000AC2CC0C4(__this, ((int64_t)((int64_t)((int32_t)524288))), /*hidden argument*/NULL); G_B116_0 = ((int32_t)65535); G_B116_1 = ((int32_t)65535); G_B116_2 = ((int32_t)35); G_B116_3 = (&V_1); G_B116_4 = L_367; G_B116_5 = L_366; G_B116_6 = L_363; G_B116_7 = L_362; if (L_368) { G_B117_0 = ((int32_t)65535); G_B117_1 = ((int32_t)65535); G_B117_2 = ((int32_t)35); G_B117_3 = (&V_1); G_B117_4 = L_367; G_B117_5 = L_366; G_B117_6 = L_363; G_B117_7 = L_362; goto IL_0947; } } { G_B118_0 = 3; G_B118_1 = G_B116_0; G_B118_2 = G_B116_1; G_B118_3 = G_B116_2; G_B118_4 = G_B116_3; G_B118_5 = G_B116_4; G_B118_6 = G_B116_5; G_B118_7 = G_B116_6; G_B118_8 = G_B116_7; goto IL_0948; } IL_0947: { G_B118_0 = 2; G_B118_1 = G_B117_0; G_B118_2 = G_B117_1; G_B118_3 = G_B117_2; G_B118_4 = G_B117_3; G_B118_5 = G_B117_4; G_B118_6 = G_B117_5; G_B118_7 = G_B117_6; G_B118_8 = G_B117_7; } IL_0948: { UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_369 = __this->get_m_Syntax_15(); IL2CPP_RUNTIME_CLASS_INIT(UriHelper_tBEFC75B3A4E9E35CB41ADAAE22E0D1D7EE65E53D_il2cpp_TypeInfo_var); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_370; L_370 = UriHelper_UnescapeString_mA17D82F433C1E293A09957A12BBA31A2617BB300(G_B118_8, G_B118_7, G_B118_6, G_B118_5, (int32_t*)G_B118_4, G_B118_3, G_B118_2, G_B118_1, G_B118_0, L_369, (bool)0, /*hidden argument*/NULL); V_2 = L_370; goto IL_098e; } IL_0957: { String_t* L_371 = __this->get_m_String_13(); uint16_t L_372 = V_3; UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_373 = __this->get_m_Info_18(); NullCheck(L_373); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_374 = L_373->get_address_of_Offset_3(); uint16_t L_375 = L_374->get_End_7(); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_376 = V_2; UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_377 = __this->get_m_Syntax_15(); IL2CPP_RUNTIME_CLASS_INIT(UriHelper_tBEFC75B3A4E9E35CB41ADAAE22E0D1D7EE65E53D_il2cpp_TypeInfo_var); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_378; L_378 = UriHelper_UnescapeString_mA17D82F433C1E293A09957A12BBA31A2617BB300(L_371, L_372, L_375, L_376, (int32_t*)(&V_1), ((int32_t)65535), ((int32_t)65535), ((int32_t)65535), 0, L_377, (bool)0, /*hidden argument*/NULL); } IL_098e: { CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_379 = V_2; int32_t L_380 = V_1; String_t* L_381; L_381 = String_CreateString_m16F181739FD8BA877868803DE2CE0EF0A4668D0E(NULL, L_379, 0, L_380, /*hidden argument*/NULL); return L_381; } } // System.String System.Uri::GetUriPartsFromUserString(System.UriComponents) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Uri_GetUriPartsFromUserString_m81B60C6E31AB8EA51438E391F7990334B96ACD29 (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, int32_t ___uriParts0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral876C4B39B6E4D0187090400768899C71D99DE90D); s_Il2CppMethodInitialized = true; } uint16_t V_0 = 0; int32_t V_1 = 0; uint16_t V_2 = 0; { int32_t L_0 = ___uriParts0; V_1 = ((int32_t)((int32_t)L_0&(int32_t)((int32_t)-1073741825))); int32_t L_1 = V_1; if ((((int32_t)L_1) > ((int32_t)((int32_t)64)))) { goto IL_0076; } } { int32_t L_2 = V_1; if ((((int32_t)L_2) > ((int32_t)((int32_t)16)))) { goto IL_0048; } } { int32_t L_3 = V_1; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_3, (int32_t)1))) { case 0: { goto IL_0469; } case 1: { goto IL_090c; } case 2: { goto IL_0992; } case 3: { goto IL_04b6; } } } { int32_t L_4 = V_1; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_4, (int32_t)((int32_t)13)))) { case 0: { goto IL_00b3; } case 1: { goto IL_06ad; } case 2: { goto IL_03b9; } case 3: { goto IL_0532; } } } { goto IL_0992; } IL_0048: { int32_t L_5 = V_1; if ((((int32_t)L_5) == ((int32_t)((int32_t)32)))) { goto IL_05e5; } } { int32_t L_6 = V_1; if ((((int32_t)L_6) == ((int32_t)((int32_t)48)))) { goto IL_0793; } } { int32_t L_7 = V_1; switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_7, (int32_t)((int32_t)61)))) { case 0: { goto IL_02ba; } case 1: { goto IL_0992; } case 2: { goto IL_03f6; } case 3: { goto IL_0649; } } } { goto IL_0992; } IL_0076: { int32_t L_8 = V_1; if ((((int32_t)L_8) > ((int32_t)((int32_t)125)))) { goto IL_0090; } } { int32_t L_9 = V_1; if ((((int32_t)L_9) == ((int32_t)((int32_t)112)))) { goto IL_08cf; } } { int32_t L_10 = V_1; if ((((int32_t)L_10) == ((int32_t)((int32_t)125)))) { goto IL_07d0; } } { goto IL_0992; } IL_0090: { int32_t L_11 = V_1; if ((((int32_t)L_11) == ((int32_t)((int32_t)127)))) { goto IL_0247; } } { int32_t L_12 = V_1; if ((((int32_t)L_12) == ((int32_t)((int32_t)132)))) { goto IL_017c; } } { int32_t L_13 = V_1; if ((((int32_t)L_13) == ((int32_t)((int32_t)134)))) { goto IL_0713; } } { goto IL_0992; } IL_00b3: { bool L_14; L_14 = Uri_InFact_mF6A06FA7246740D26093421D41D18000AC2CC0C4(__this, ((int64_t)((int64_t)((int32_t)2097152))), /*hidden argument*/NULL); if (L_14) { goto IL_00fe; } } { String_t* L_15 = __this->get_m_String_13(); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_16 = __this->get_m_Info_18(); NullCheck(L_16); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_17 = L_16->get_address_of_Offset_3(); uint16_t L_18 = L_17->get_Scheme_0(); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_19 = __this->get_m_Info_18(); NullCheck(L_19); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_20 = L_19->get_address_of_Offset_3(); uint16_t L_21 = L_20->get_Path_4(); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_22 = __this->get_m_Info_18(); NullCheck(L_22); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_23 = L_22->get_address_of_Offset_3(); uint16_t L_24 = L_23->get_Scheme_0(); NullCheck(L_15); String_t* L_25; L_25 = String_Substring_m7A39A2AC0893AE940CF4CEC841326D56FFB9D86B(L_15, L_18, ((int32_t)il2cpp_codegen_subtract((int32_t)L_21, (int32_t)L_24)), /*hidden argument*/NULL); return L_25; } IL_00fe: { String_t* L_26 = __this->get_m_String_13(); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_27 = __this->get_m_Info_18(); NullCheck(L_27); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_28 = L_27->get_address_of_Offset_3(); uint16_t L_29 = L_28->get_Scheme_0(); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_30 = __this->get_m_Info_18(); NullCheck(L_30); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_31 = L_30->get_address_of_Offset_3(); uint16_t L_32 = L_31->get_User_1(); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_33 = __this->get_m_Info_18(); NullCheck(L_33); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_34 = L_33->get_address_of_Offset_3(); uint16_t L_35 = L_34->get_Scheme_0(); NullCheck(L_26); String_t* L_36; L_36 = String_Substring_m7A39A2AC0893AE940CF4CEC841326D56FFB9D86B(L_26, L_29, ((int32_t)il2cpp_codegen_subtract((int32_t)L_32, (int32_t)L_35)), /*hidden argument*/NULL); String_t* L_37 = __this->get_m_String_13(); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_38 = __this->get_m_Info_18(); NullCheck(L_38); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_39 = L_38->get_address_of_Offset_3(); uint16_t L_40 = L_39->get_Host_2(); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_41 = __this->get_m_Info_18(); NullCheck(L_41); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_42 = L_41->get_address_of_Offset_3(); uint16_t L_43 = L_42->get_Path_4(); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_44 = __this->get_m_Info_18(); NullCheck(L_44); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_45 = L_44->get_address_of_Offset_3(); uint16_t L_46 = L_45->get_Host_2(); NullCheck(L_37); String_t* L_47; L_47 = String_Substring_m7A39A2AC0893AE940CF4CEC841326D56FFB9D86B(L_37, L_40, ((int32_t)il2cpp_codegen_subtract((int32_t)L_43, (int32_t)L_46)), /*hidden argument*/NULL); String_t* L_48; L_48 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(L_36, L_47, /*hidden argument*/NULL); return L_48; } IL_017c: { bool L_49; L_49 = Uri_InFact_mF6A06FA7246740D26093421D41D18000AC2CC0C4(__this, ((int64_t)((int64_t)((int32_t)2097152))), /*hidden argument*/NULL); if (!L_49) { goto IL_0713; } } { bool L_50; L_50 = Uri_InFact_mF6A06FA7246740D26093421D41D18000AC2CC0C4(__this, ((int64_t)((int64_t)((int32_t)8388608))), /*hidden argument*/NULL); if (L_50) { goto IL_01a9; } } { UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_51 = __this->get_m_Syntax_15(); NullCheck(L_51); int32_t L_52; L_52 = UriParser_get_DefaultPort_m7ECA5BE839D36C7FF854FEA0795D8DE701487D33_inline(L_51, /*hidden argument*/NULL); if ((!(((uint32_t)L_52) == ((uint32_t)(-1))))) { goto IL_01e6; } } IL_01a9: { String_t* L_53 = __this->get_m_String_13(); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_54 = __this->get_m_Info_18(); NullCheck(L_54); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_55 = L_54->get_address_of_Offset_3(); uint16_t L_56 = L_55->get_Host_2(); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_57 = __this->get_m_Info_18(); NullCheck(L_57); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_58 = L_57->get_address_of_Offset_3(); uint16_t L_59 = L_58->get_Path_4(); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_60 = __this->get_m_Info_18(); NullCheck(L_60); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_61 = L_60->get_address_of_Offset_3(); uint16_t L_62 = L_61->get_Host_2(); NullCheck(L_53); String_t* L_63; L_63 = String_Substring_m7A39A2AC0893AE940CF4CEC841326D56FFB9D86B(L_53, L_56, ((int32_t)il2cpp_codegen_subtract((int32_t)L_59, (int32_t)L_62)), /*hidden argument*/NULL); return L_63; } IL_01e6: { String_t* L_64 = __this->get_m_String_13(); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_65 = __this->get_m_Info_18(); NullCheck(L_65); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_66 = L_65->get_address_of_Offset_3(); uint16_t L_67 = L_66->get_Host_2(); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_68 = __this->get_m_Info_18(); NullCheck(L_68); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_69 = L_68->get_address_of_Offset_3(); uint16_t L_70 = L_69->get_Path_4(); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_71 = __this->get_m_Info_18(); NullCheck(L_71); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_72 = L_71->get_address_of_Offset_3(); uint16_t L_73 = L_72->get_Host_2(); NullCheck(L_64); String_t* L_74; L_74 = String_Substring_m7A39A2AC0893AE940CF4CEC841326D56FFB9D86B(L_64, L_67, ((int32_t)il2cpp_codegen_subtract((int32_t)L_70, (int32_t)L_73)), /*hidden argument*/NULL); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_75 = __this->get_m_Info_18(); NullCheck(L_75); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_76 = L_75->get_address_of_Offset_3(); uint16_t* L_77 = L_76->get_address_of_PortValue_3(); IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var); CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_78; L_78 = CultureInfo_get_InvariantCulture_m9FAAFAF8A00091EE1FCB7098AD3F163ECDF02164(/*hidden argument*/NULL); String_t* L_79; L_79 = UInt16_ToString_m960B640F8B0C181A9185FCD0921B2F85106FE336((uint16_t*)L_77, L_78, /*hidden argument*/NULL); String_t* L_80; L_80 = String_Concat_m89EAB4C6A96B0E5C3F87300D6BE78D386B9EFC44(L_74, _stringLiteral876C4B39B6E4D0187090400768899C71D99DE90D, L_79, /*hidden argument*/NULL); return L_80; } IL_0247: { UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_81 = __this->get_m_Info_18(); NullCheck(L_81); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_82 = L_81->get_address_of_Offset_3(); uint16_t L_83 = L_82->get_Scheme_0(); if (L_83) { goto IL_027d; } } { UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_84 = __this->get_m_Info_18(); NullCheck(L_84); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_85 = L_84->get_address_of_Offset_3(); uint16_t L_86 = L_85->get_End_7(); String_t* L_87 = __this->get_m_String_13(); NullCheck(L_87); int32_t L_88; L_88 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_87, /*hidden argument*/NULL); if ((!(((uint32_t)L_86) == ((uint32_t)L_88)))) { goto IL_027d; } } { String_t* L_89 = __this->get_m_String_13(); return L_89; } IL_027d: { String_t* L_90 = __this->get_m_String_13(); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_91 = __this->get_m_Info_18(); NullCheck(L_91); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_92 = L_91->get_address_of_Offset_3(); uint16_t L_93 = L_92->get_Scheme_0(); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_94 = __this->get_m_Info_18(); NullCheck(L_94); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_95 = L_94->get_address_of_Offset_3(); uint16_t L_96 = L_95->get_End_7(); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_97 = __this->get_m_Info_18(); NullCheck(L_97); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_98 = L_97->get_address_of_Offset_3(); uint16_t L_99 = L_98->get_Scheme_0(); NullCheck(L_90); String_t* L_100; L_100 = String_Substring_m7A39A2AC0893AE940CF4CEC841326D56FFB9D86B(L_90, L_93, ((int32_t)il2cpp_codegen_subtract((int32_t)L_96, (int32_t)L_99)), /*hidden argument*/NULL); return L_100; } IL_02ba: { bool L_101; L_101 = Uri_InFact_mF6A06FA7246740D26093421D41D18000AC2CC0C4(__this, ((int64_t)((int64_t)((int32_t)2097152))), /*hidden argument*/NULL); if (!L_101) { goto IL_0346; } } { String_t* L_102 = __this->get_m_String_13(); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_103 = __this->get_m_Info_18(); NullCheck(L_103); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_104 = L_103->get_address_of_Offset_3(); uint16_t L_105 = L_104->get_Scheme_0(); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_106 = __this->get_m_Info_18(); NullCheck(L_106); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_107 = L_106->get_address_of_Offset_3(); uint16_t L_108 = L_107->get_User_1(); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_109 = __this->get_m_Info_18(); NullCheck(L_109); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_110 = L_109->get_address_of_Offset_3(); uint16_t L_111 = L_110->get_Scheme_0(); NullCheck(L_102); String_t* L_112; L_112 = String_Substring_m7A39A2AC0893AE940CF4CEC841326D56FFB9D86B(L_102, L_105, ((int32_t)il2cpp_codegen_subtract((int32_t)L_108, (int32_t)L_111)), /*hidden argument*/NULL); String_t* L_113 = __this->get_m_String_13(); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_114 = __this->get_m_Info_18(); NullCheck(L_114); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_115 = L_114->get_address_of_Offset_3(); uint16_t L_116 = L_115->get_Host_2(); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_117 = __this->get_m_Info_18(); NullCheck(L_117); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_118 = L_117->get_address_of_Offset_3(); uint16_t L_119 = L_118->get_Fragment_6(); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_120 = __this->get_m_Info_18(); NullCheck(L_120); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_121 = L_120->get_address_of_Offset_3(); uint16_t L_122 = L_121->get_Host_2(); NullCheck(L_113); String_t* L_123; L_123 = String_Substring_m7A39A2AC0893AE940CF4CEC841326D56FFB9D86B(L_113, L_116, ((int32_t)il2cpp_codegen_subtract((int32_t)L_119, (int32_t)L_122)), /*hidden argument*/NULL); String_t* L_124; L_124 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(L_112, L_123, /*hidden argument*/NULL); return L_124; } IL_0346: { UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_125 = __this->get_m_Info_18(); NullCheck(L_125); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_126 = L_125->get_address_of_Offset_3(); uint16_t L_127 = L_126->get_Scheme_0(); if (L_127) { goto IL_037c; } } { UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_128 = __this->get_m_Info_18(); NullCheck(L_128); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_129 = L_128->get_address_of_Offset_3(); uint16_t L_130 = L_129->get_Fragment_6(); String_t* L_131 = __this->get_m_String_13(); NullCheck(L_131); int32_t L_132; L_132 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_131, /*hidden argument*/NULL); if ((!(((uint32_t)L_130) == ((uint32_t)L_132)))) { goto IL_037c; } } { String_t* L_133 = __this->get_m_String_13(); return L_133; } IL_037c: { String_t* L_134 = __this->get_m_String_13(); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_135 = __this->get_m_Info_18(); NullCheck(L_135); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_136 = L_135->get_address_of_Offset_3(); uint16_t L_137 = L_136->get_Scheme_0(); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_138 = __this->get_m_Info_18(); NullCheck(L_138); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_139 = L_138->get_address_of_Offset_3(); uint16_t L_140 = L_139->get_Fragment_6(); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_141 = __this->get_m_Info_18(); NullCheck(L_141); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_142 = L_141->get_address_of_Offset_3(); uint16_t L_143 = L_142->get_Scheme_0(); NullCheck(L_134); String_t* L_144; L_144 = String_Substring_m7A39A2AC0893AE940CF4CEC841326D56FFB9D86B(L_134, L_137, ((int32_t)il2cpp_codegen_subtract((int32_t)L_140, (int32_t)L_143)), /*hidden argument*/NULL); return L_144; } IL_03b9: { String_t* L_145 = __this->get_m_String_13(); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_146 = __this->get_m_Info_18(); NullCheck(L_146); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_147 = L_146->get_address_of_Offset_3(); uint16_t L_148 = L_147->get_Scheme_0(); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_149 = __this->get_m_Info_18(); NullCheck(L_149); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_150 = L_149->get_address_of_Offset_3(); uint16_t L_151 = L_150->get_Path_4(); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_152 = __this->get_m_Info_18(); NullCheck(L_152); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_153 = L_152->get_address_of_Offset_3(); uint16_t L_154 = L_153->get_Scheme_0(); NullCheck(L_145); String_t* L_155; L_155 = String_Substring_m7A39A2AC0893AE940CF4CEC841326D56FFB9D86B(L_145, L_148, ((int32_t)il2cpp_codegen_subtract((int32_t)L_151, (int32_t)L_154)), /*hidden argument*/NULL); return L_155; } IL_03f6: { UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_156 = __this->get_m_Info_18(); NullCheck(L_156); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_157 = L_156->get_address_of_Offset_3(); uint16_t L_158 = L_157->get_Scheme_0(); if (L_158) { goto IL_042c; } } { UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_159 = __this->get_m_Info_18(); NullCheck(L_159); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_160 = L_159->get_address_of_Offset_3(); uint16_t L_161 = L_160->get_Fragment_6(); String_t* L_162 = __this->get_m_String_13(); NullCheck(L_162); int32_t L_163; L_163 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_162, /*hidden argument*/NULL); if ((!(((uint32_t)L_161) == ((uint32_t)L_163)))) { goto IL_042c; } } { String_t* L_164 = __this->get_m_String_13(); return L_164; } IL_042c: { String_t* L_165 = __this->get_m_String_13(); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_166 = __this->get_m_Info_18(); NullCheck(L_166); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_167 = L_166->get_address_of_Offset_3(); uint16_t L_168 = L_167->get_Scheme_0(); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_169 = __this->get_m_Info_18(); NullCheck(L_169); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_170 = L_169->get_address_of_Offset_3(); uint16_t L_171 = L_170->get_Fragment_6(); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_172 = __this->get_m_Info_18(); NullCheck(L_172); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_173 = L_172->get_address_of_Offset_3(); uint16_t L_174 = L_173->get_Scheme_0(); NullCheck(L_165); String_t* L_175; L_175 = String_Substring_m7A39A2AC0893AE940CF4CEC841326D56FFB9D86B(L_165, L_168, ((int32_t)il2cpp_codegen_subtract((int32_t)L_171, (int32_t)L_174)), /*hidden argument*/NULL); return L_175; } IL_0469: { int32_t L_176 = ___uriParts0; if ((((int32_t)L_176) == ((int32_t)1))) { goto IL_04aa; } } { String_t* L_177 = __this->get_m_String_13(); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_178 = __this->get_m_Info_18(); NullCheck(L_178); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_179 = L_178->get_address_of_Offset_3(); uint16_t L_180 = L_179->get_Scheme_0(); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_181 = __this->get_m_Info_18(); NullCheck(L_181); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_182 = L_181->get_address_of_Offset_3(); uint16_t L_183 = L_182->get_User_1(); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_184 = __this->get_m_Info_18(); NullCheck(L_184); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_185 = L_184->get_address_of_Offset_3(); uint16_t L_186 = L_185->get_Scheme_0(); NullCheck(L_177); String_t* L_187; L_187 = String_Substring_m7A39A2AC0893AE940CF4CEC841326D56FFB9D86B(L_177, L_180, ((int32_t)il2cpp_codegen_subtract((int32_t)L_183, (int32_t)L_186)), /*hidden argument*/NULL); return L_187; } IL_04aa: { UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_188 = __this->get_m_Syntax_15(); NullCheck(L_188); String_t* L_189; L_189 = UriParser_get_SchemeName_mFCD123235673631E05FE9BAF6955A0B43EEEBD80_inline(L_188, /*hidden argument*/NULL); return L_189; } IL_04b6: { UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_190 = __this->get_m_Info_18(); NullCheck(L_190); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_191 = L_190->get_address_of_Offset_3(); uint16_t L_192 = L_191->get_Path_4(); V_2 = L_192; bool L_193; L_193 = Uri_InFact_mF6A06FA7246740D26093421D41D18000AC2CC0C4(__this, ((int64_t)((int64_t)((int32_t)8388616))), /*hidden argument*/NULL); if (!L_193) { goto IL_04ea; } } IL_04d5: { String_t* L_194 = __this->get_m_String_13(); uint16_t L_195 = V_2; int32_t L_196 = ((int32_t)((uint16_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_195, (int32_t)1)))); V_2 = (uint16_t)L_196; NullCheck(L_194); Il2CppChar L_197; L_197 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_194, L_196, /*hidden argument*/NULL); if ((!(((uint32_t)L_197) == ((uint32_t)((int32_t)58))))) { goto IL_04d5; } } IL_04ea: { uint16_t L_198 = V_2; UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_199 = __this->get_m_Info_18(); NullCheck(L_199); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_200 = L_199->get_address_of_Offset_3(); uint16_t L_201 = L_200->get_Host_2(); if (!((int32_t)il2cpp_codegen_subtract((int32_t)L_198, (int32_t)L_201))) { goto IL_052c; } } { String_t* L_202 = __this->get_m_String_13(); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_203 = __this->get_m_Info_18(); NullCheck(L_203); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_204 = L_203->get_address_of_Offset_3(); uint16_t L_205 = L_204->get_Host_2(); uint16_t L_206 = V_2; UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_207 = __this->get_m_Info_18(); NullCheck(L_207); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_208 = L_207->get_address_of_Offset_3(); uint16_t L_209 = L_208->get_Host_2(); NullCheck(L_202); String_t* L_210; L_210 = String_Substring_m7A39A2AC0893AE940CF4CEC841326D56FFB9D86B(L_202, L_205, ((int32_t)il2cpp_codegen_subtract((int32_t)L_206, (int32_t)L_209)), /*hidden argument*/NULL); return L_210; } IL_052c: { String_t* L_211 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); return L_211; } IL_0532: { int32_t L_212 = ___uriParts0; if ((!(((uint32_t)L_212) == ((uint32_t)((int32_t)16))))) { goto IL_059c; } } { bool L_213; L_213 = Uri_InFact_mF6A06FA7246740D26093421D41D18000AC2CC0C4(__this, ((int64_t)((int64_t)((int32_t)1048576))), /*hidden argument*/NULL); if (!L_213) { goto IL_059c; } } { UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_214 = __this->get_m_Info_18(); NullCheck(L_214); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_215 = L_214->get_address_of_Offset_3(); uint16_t L_216 = L_215->get_End_7(); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_217 = __this->get_m_Info_18(); NullCheck(L_217); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_218 = L_217->get_address_of_Offset_3(); uint16_t L_219 = L_218->get_Path_4(); if ((((int32_t)L_216) <= ((int32_t)L_219))) { goto IL_059c; } } { String_t* L_220 = __this->get_m_String_13(); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_221 = __this->get_m_Info_18(); NullCheck(L_221); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_222 = L_221->get_address_of_Offset_3(); uint16_t L_223 = L_222->get_Path_4(); NullCheck(L_220); Il2CppChar L_224; L_224 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_220, L_223, /*hidden argument*/NULL); if ((!(((uint32_t)L_224) == ((uint32_t)((int32_t)47))))) { goto IL_059c; } } { UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_225 = __this->get_m_Info_18(); NullCheck(L_225); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_226 = L_225->get_address_of_Offset_3(); uint16_t L_227 = L_226->get_Path_4(); V_0 = (uint16_t)((int32_t)((uint16_t)((int32_t)il2cpp_codegen_add((int32_t)L_227, (int32_t)1)))); goto IL_05ad; } IL_059c: { UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_228 = __this->get_m_Info_18(); NullCheck(L_228); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_229 = L_228->get_address_of_Offset_3(); uint16_t L_230 = L_229->get_Path_4(); V_0 = L_230; } IL_05ad: { uint16_t L_231 = V_0; UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_232 = __this->get_m_Info_18(); NullCheck(L_232); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_233 = L_232->get_address_of_Offset_3(); uint16_t L_234 = L_233->get_Query_5(); if ((((int32_t)L_231) < ((int32_t)L_234))) { goto IL_05c6; } } { String_t* L_235 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); return L_235; } IL_05c6: { String_t* L_236 = __this->get_m_String_13(); uint16_t L_237 = V_0; UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_238 = __this->get_m_Info_18(); NullCheck(L_238); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_239 = L_238->get_address_of_Offset_3(); uint16_t L_240 = L_239->get_Query_5(); uint16_t L_241 = V_0; NullCheck(L_236); String_t* L_242; L_242 = String_Substring_m7A39A2AC0893AE940CF4CEC841326D56FFB9D86B(L_236, L_237, ((int32_t)il2cpp_codegen_subtract((int32_t)L_240, (int32_t)L_241)), /*hidden argument*/NULL); return L_242; } IL_05e5: { int32_t L_243 = ___uriParts0; if ((!(((uint32_t)L_243) == ((uint32_t)((int32_t)32))))) { goto IL_0600; } } { UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_244 = __this->get_m_Info_18(); NullCheck(L_244); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_245 = L_244->get_address_of_Offset_3(); uint16_t L_246 = L_245->get_Query_5(); V_0 = (uint16_t)((int32_t)((uint16_t)((int32_t)il2cpp_codegen_add((int32_t)L_246, (int32_t)1)))); goto IL_0611; } IL_0600: { UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_247 = __this->get_m_Info_18(); NullCheck(L_247); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_248 = L_247->get_address_of_Offset_3(); uint16_t L_249 = L_248->get_Query_5(); V_0 = L_249; } IL_0611: { uint16_t L_250 = V_0; UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_251 = __this->get_m_Info_18(); NullCheck(L_251); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_252 = L_251->get_address_of_Offset_3(); uint16_t L_253 = L_252->get_Fragment_6(); if ((((int32_t)L_250) < ((int32_t)L_253))) { goto IL_062a; } } { String_t* L_254 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); return L_254; } IL_062a: { String_t* L_255 = __this->get_m_String_13(); uint16_t L_256 = V_0; UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_257 = __this->get_m_Info_18(); NullCheck(L_257); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_258 = L_257->get_address_of_Offset_3(); uint16_t L_259 = L_258->get_Fragment_6(); uint16_t L_260 = V_0; NullCheck(L_255); String_t* L_261; L_261 = String_Substring_m7A39A2AC0893AE940CF4CEC841326D56FFB9D86B(L_255, L_256, ((int32_t)il2cpp_codegen_subtract((int32_t)L_259, (int32_t)L_260)), /*hidden argument*/NULL); return L_261; } IL_0649: { int32_t L_262 = ___uriParts0; if ((!(((uint32_t)L_262) == ((uint32_t)((int32_t)64))))) { goto IL_0664; } } { UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_263 = __this->get_m_Info_18(); NullCheck(L_263); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_264 = L_263->get_address_of_Offset_3(); uint16_t L_265 = L_264->get_Fragment_6(); V_0 = (uint16_t)((int32_t)((uint16_t)((int32_t)il2cpp_codegen_add((int32_t)L_265, (int32_t)1)))); goto IL_0675; } IL_0664: { UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_266 = __this->get_m_Info_18(); NullCheck(L_266); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_267 = L_266->get_address_of_Offset_3(); uint16_t L_268 = L_267->get_Fragment_6(); V_0 = L_268; } IL_0675: { uint16_t L_269 = V_0; UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_270 = __this->get_m_Info_18(); NullCheck(L_270); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_271 = L_270->get_address_of_Offset_3(); uint16_t L_272 = L_271->get_End_7(); if ((((int32_t)L_269) < ((int32_t)L_272))) { goto IL_068e; } } { String_t* L_273 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); return L_273; } IL_068e: { String_t* L_274 = __this->get_m_String_13(); uint16_t L_275 = V_0; UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_276 = __this->get_m_Info_18(); NullCheck(L_276); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_277 = L_276->get_address_of_Offset_3(); uint16_t L_278 = L_277->get_End_7(); uint16_t L_279 = V_0; NullCheck(L_274); String_t* L_280; L_280 = String_Substring_m7A39A2AC0893AE940CF4CEC841326D56FFB9D86B(L_274, L_275, ((int32_t)il2cpp_codegen_subtract((int32_t)L_278, (int32_t)L_279)), /*hidden argument*/NULL); return L_280; } IL_06ad: { UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_281 = __this->get_m_Info_18(); NullCheck(L_281); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_282 = L_281->get_address_of_Offset_3(); uint16_t L_283 = L_282->get_Path_4(); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_284 = __this->get_m_Info_18(); NullCheck(L_284); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_285 = L_284->get_address_of_Offset_3(); uint16_t L_286 = L_285->get_User_1(); if (!((int32_t)il2cpp_codegen_subtract((int32_t)L_283, (int32_t)L_286))) { goto IL_070d; } } { String_t* L_287 = __this->get_m_String_13(); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_288 = __this->get_m_Info_18(); NullCheck(L_288); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_289 = L_288->get_address_of_Offset_3(); uint16_t L_290 = L_289->get_User_1(); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_291 = __this->get_m_Info_18(); NullCheck(L_291); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_292 = L_291->get_address_of_Offset_3(); uint16_t L_293 = L_292->get_Path_4(); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_294 = __this->get_m_Info_18(); NullCheck(L_294); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_295 = L_294->get_address_of_Offset_3(); uint16_t L_296 = L_295->get_User_1(); NullCheck(L_287); String_t* L_297; L_297 = String_Substring_m7A39A2AC0893AE940CF4CEC841326D56FFB9D86B(L_287, L_290, ((int32_t)il2cpp_codegen_subtract((int32_t)L_293, (int32_t)L_296)), /*hidden argument*/NULL); return L_297; } IL_070d: { String_t* L_298 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); return L_298; } IL_0713: { bool L_299; L_299 = Uri_InFact_mF6A06FA7246740D26093421D41D18000AC2CC0C4(__this, ((int64_t)((int64_t)((int32_t)8388608))), /*hidden argument*/NULL); if (L_299) { goto IL_06ad; } } { UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_300 = __this->get_m_Syntax_15(); NullCheck(L_300); int32_t L_301; L_301 = UriParser_get_DefaultPort_m7ECA5BE839D36C7FF854FEA0795D8DE701487D33_inline(L_300, /*hidden argument*/NULL); if ((((int32_t)L_301) == ((int32_t)(-1)))) { goto IL_06ad; } } { String_t* L_302 = __this->get_m_String_13(); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_303 = __this->get_m_Info_18(); NullCheck(L_303); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_304 = L_303->get_address_of_Offset_3(); uint16_t L_305 = L_304->get_User_1(); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_306 = __this->get_m_Info_18(); NullCheck(L_306); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_307 = L_306->get_address_of_Offset_3(); uint16_t L_308 = L_307->get_Path_4(); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_309 = __this->get_m_Info_18(); NullCheck(L_309); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_310 = L_309->get_address_of_Offset_3(); uint16_t L_311 = L_310->get_User_1(); NullCheck(L_302); String_t* L_312; L_312 = String_Substring_m7A39A2AC0893AE940CF4CEC841326D56FFB9D86B(L_302, L_305, ((int32_t)il2cpp_codegen_subtract((int32_t)L_308, (int32_t)L_311)), /*hidden argument*/NULL); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_313 = __this->get_m_Info_18(); NullCheck(L_313); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_314 = L_313->get_address_of_Offset_3(); uint16_t* L_315 = L_314->get_address_of_PortValue_3(); IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var); CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_316; L_316 = CultureInfo_get_InvariantCulture_m9FAAFAF8A00091EE1FCB7098AD3F163ECDF02164(/*hidden argument*/NULL); String_t* L_317; L_317 = UInt16_ToString_m960B640F8B0C181A9185FCD0921B2F85106FE336((uint16_t*)L_315, L_316, /*hidden argument*/NULL); String_t* L_318; L_318 = String_Concat_m89EAB4C6A96B0E5C3F87300D6BE78D386B9EFC44(L_312, _stringLiteral876C4B39B6E4D0187090400768899C71D99DE90D, L_317, /*hidden argument*/NULL); return L_318; } IL_0793: { String_t* L_319 = __this->get_m_String_13(); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_320 = __this->get_m_Info_18(); NullCheck(L_320); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_321 = L_320->get_address_of_Offset_3(); uint16_t L_322 = L_321->get_Path_4(); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_323 = __this->get_m_Info_18(); NullCheck(L_323); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_324 = L_323->get_address_of_Offset_3(); uint16_t L_325 = L_324->get_Fragment_6(); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_326 = __this->get_m_Info_18(); NullCheck(L_326); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_327 = L_326->get_address_of_Offset_3(); uint16_t L_328 = L_327->get_Path_4(); NullCheck(L_319); String_t* L_329; L_329 = String_Substring_m7A39A2AC0893AE940CF4CEC841326D56FFB9D86B(L_319, L_322, ((int32_t)il2cpp_codegen_subtract((int32_t)L_325, (int32_t)L_328)), /*hidden argument*/NULL); return L_329; } IL_07d0: { bool L_330; L_330 = Uri_InFact_mF6A06FA7246740D26093421D41D18000AC2CC0C4(__this, ((int64_t)((int64_t)((int32_t)2097152))), /*hidden argument*/NULL); if (!L_330) { goto IL_085c; } } { String_t* L_331 = __this->get_m_String_13(); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_332 = __this->get_m_Info_18(); NullCheck(L_332); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_333 = L_332->get_address_of_Offset_3(); uint16_t L_334 = L_333->get_Scheme_0(); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_335 = __this->get_m_Info_18(); NullCheck(L_335); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_336 = L_335->get_address_of_Offset_3(); uint16_t L_337 = L_336->get_User_1(); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_338 = __this->get_m_Info_18(); NullCheck(L_338); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_339 = L_338->get_address_of_Offset_3(); uint16_t L_340 = L_339->get_Scheme_0(); NullCheck(L_331); String_t* L_341; L_341 = String_Substring_m7A39A2AC0893AE940CF4CEC841326D56FFB9D86B(L_331, L_334, ((int32_t)il2cpp_codegen_subtract((int32_t)L_337, (int32_t)L_340)), /*hidden argument*/NULL); String_t* L_342 = __this->get_m_String_13(); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_343 = __this->get_m_Info_18(); NullCheck(L_343); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_344 = L_343->get_address_of_Offset_3(); uint16_t L_345 = L_344->get_Host_2(); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_346 = __this->get_m_Info_18(); NullCheck(L_346); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_347 = L_346->get_address_of_Offset_3(); uint16_t L_348 = L_347->get_End_7(); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_349 = __this->get_m_Info_18(); NullCheck(L_349); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_350 = L_349->get_address_of_Offset_3(); uint16_t L_351 = L_350->get_Host_2(); NullCheck(L_342); String_t* L_352; L_352 = String_Substring_m7A39A2AC0893AE940CF4CEC841326D56FFB9D86B(L_342, L_345, ((int32_t)il2cpp_codegen_subtract((int32_t)L_348, (int32_t)L_351)), /*hidden argument*/NULL); String_t* L_353; L_353 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(L_341, L_352, /*hidden argument*/NULL); return L_353; } IL_085c: { UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_354 = __this->get_m_Info_18(); NullCheck(L_354); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_355 = L_354->get_address_of_Offset_3(); uint16_t L_356 = L_355->get_Scheme_0(); if (L_356) { goto IL_0892; } } { UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_357 = __this->get_m_Info_18(); NullCheck(L_357); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_358 = L_357->get_address_of_Offset_3(); uint16_t L_359 = L_358->get_End_7(); String_t* L_360 = __this->get_m_String_13(); NullCheck(L_360); int32_t L_361; L_361 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_360, /*hidden argument*/NULL); if ((!(((uint32_t)L_359) == ((uint32_t)L_361)))) { goto IL_0892; } } { String_t* L_362 = __this->get_m_String_13(); return L_362; } IL_0892: { String_t* L_363 = __this->get_m_String_13(); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_364 = __this->get_m_Info_18(); NullCheck(L_364); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_365 = L_364->get_address_of_Offset_3(); uint16_t L_366 = L_365->get_Scheme_0(); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_367 = __this->get_m_Info_18(); NullCheck(L_367); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_368 = L_367->get_address_of_Offset_3(); uint16_t L_369 = L_368->get_End_7(); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_370 = __this->get_m_Info_18(); NullCheck(L_370); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_371 = L_370->get_address_of_Offset_3(); uint16_t L_372 = L_371->get_Scheme_0(); NullCheck(L_363); String_t* L_373; L_373 = String_Substring_m7A39A2AC0893AE940CF4CEC841326D56FFB9D86B(L_363, L_366, ((int32_t)il2cpp_codegen_subtract((int32_t)L_369, (int32_t)L_372)), /*hidden argument*/NULL); return L_373; } IL_08cf: { String_t* L_374 = __this->get_m_String_13(); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_375 = __this->get_m_Info_18(); NullCheck(L_375); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_376 = L_375->get_address_of_Offset_3(); uint16_t L_377 = L_376->get_Path_4(); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_378 = __this->get_m_Info_18(); NullCheck(L_378); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_379 = L_378->get_address_of_Offset_3(); uint16_t L_380 = L_379->get_End_7(); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_381 = __this->get_m_Info_18(); NullCheck(L_381); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_382 = L_381->get_address_of_Offset_3(); uint16_t L_383 = L_382->get_Path_4(); NullCheck(L_374); String_t* L_384; L_384 = String_Substring_m7A39A2AC0893AE940CF4CEC841326D56FFB9D86B(L_374, L_377, ((int32_t)il2cpp_codegen_subtract((int32_t)L_380, (int32_t)L_383)), /*hidden argument*/NULL); return L_384; } IL_090c: { bool L_385; L_385 = Uri_NotAny_m2C222924AE10957D835ECBC887D456FB30DCF969(__this, ((int64_t)((int64_t)((int32_t)2097152))), /*hidden argument*/NULL); if (!L_385) { goto IL_0920; } } { String_t* L_386 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); return L_386; } IL_0920: { int32_t L_387 = ___uriParts0; if ((!(((uint32_t)L_387) == ((uint32_t)2)))) { goto IL_093a; } } { UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_388 = __this->get_m_Info_18(); NullCheck(L_388); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_389 = L_388->get_address_of_Offset_3(); uint16_t L_390 = L_389->get_Host_2(); V_0 = (uint16_t)((int32_t)((uint16_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_390, (int32_t)1)))); goto IL_094b; } IL_093a: { UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_391 = __this->get_m_Info_18(); NullCheck(L_391); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_392 = L_391->get_address_of_Offset_3(); uint16_t L_393 = L_392->get_Host_2(); V_0 = L_393; } IL_094b: { UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_394 = __this->get_m_Info_18(); NullCheck(L_394); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_395 = L_394->get_address_of_Offset_3(); uint16_t L_396 = L_395->get_User_1(); uint16_t L_397 = V_0; if ((((int32_t)L_396) < ((int32_t)L_397))) { goto IL_0964; } } { String_t* L_398 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); return L_398; } IL_0964: { String_t* L_399 = __this->get_m_String_13(); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_400 = __this->get_m_Info_18(); NullCheck(L_400); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_401 = L_400->get_address_of_Offset_3(); uint16_t L_402 = L_401->get_User_1(); uint16_t L_403 = V_0; UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_404 = __this->get_m_Info_18(); NullCheck(L_404); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_405 = L_404->get_address_of_Offset_3(); uint16_t L_406 = L_405->get_User_1(); NullCheck(L_399); String_t* L_407; L_407 = String_Substring_m7A39A2AC0893AE940CF4CEC841326D56FFB9D86B(L_399, L_402, ((int32_t)il2cpp_codegen_subtract((int32_t)L_403, (int32_t)L_406)), /*hidden argument*/NULL); return L_407; } IL_0992: { return (String_t*)NULL; } } // System.Void System.Uri::ParseRemaining() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Uri_ParseRemaining_m8C4350479C64906DDE464595F8BE5F8C14F2038D (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } uint64_t V_0 = 0; bool V_1 = false; uint16_t V_2 = 0; uint16_t V_3 = 0; uint16_t V_4 = 0; int32_t V_5 = 0; int32_t V_6 = 0; bool V_7 = false; Il2CppChar* V_8 = NULL; String_t* V_9 = NULL; uint16_t V_10 = 0; uint16_t V_11 = 0; uint16_t V_12 = 0; String_t* V_13 = NULL; Il2CppChar* V_14 = NULL; uint16_t V_15 = 0; String_t* V_16 = NULL; Il2CppChar* V_17 = NULL; uint16_t V_18 = 0; String_t* V_19 = NULL; Il2CppChar* V_20 = NULL; UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * V_21 = NULL; bool V_22 = 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) * 4); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); int32_t G_B5_0 = 0; int32_t G_B45_0 = 0; uint16_t* G_B45_1 = NULL; String_t* G_B45_2 = NULL; Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * G_B45_3 = NULL; int32_t G_B42_0 = 0; uint16_t* G_B42_1 = NULL; String_t* G_B42_2 = NULL; Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * G_B42_3 = NULL; int32_t G_B44_0 = 0; uint16_t* G_B44_1 = NULL; String_t* G_B44_2 = NULL; Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * G_B44_3 = NULL; int32_t G_B43_0 = 0; uint16_t* G_B43_1 = NULL; String_t* G_B43_2 = NULL; Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * G_B43_3 = NULL; int32_t G_B46_0 = 0; int32_t G_B46_1 = 0; uint16_t* G_B46_2 = NULL; String_t* G_B46_3 = NULL; Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * G_B46_4 = NULL; uint16_t G_B63_0 = 0; uint16_t* G_B63_1 = NULL; Il2CppChar* G_B63_2 = NULL; Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * G_B63_3 = NULL; uint16_t G_B60_0 = 0; uint16_t* G_B60_1 = NULL; Il2CppChar* G_B60_2 = NULL; Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * G_B60_3 = NULL; uint16_t G_B62_0 = 0; uint16_t* G_B62_1 = NULL; Il2CppChar* G_B62_2 = NULL; Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * G_B62_3 = NULL; uint16_t G_B61_0 = 0; uint16_t* G_B61_1 = NULL; Il2CppChar* G_B61_2 = NULL; Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * G_B61_3 = NULL; int32_t G_B64_0 = 0; uint16_t G_B64_1 = 0; uint16_t* G_B64_2 = NULL; Il2CppChar* G_B64_3 = NULL; Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * G_B64_4 = NULL; int32_t G_B107_0 = 0; uint16_t* G_B107_1 = NULL; String_t* G_B107_2 = NULL; Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * G_B107_3 = NULL; int32_t G_B106_0 = 0; uint16_t* G_B106_1 = NULL; String_t* G_B106_2 = NULL; Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * G_B106_3 = NULL; int32_t G_B108_0 = 0; int32_t G_B108_1 = 0; uint16_t* G_B108_2 = NULL; String_t* G_B108_3 = NULL; Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * G_B108_4 = NULL; uint16_t G_B121_0 = 0; uint16_t* G_B121_1 = NULL; Il2CppChar* G_B121_2 = NULL; Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * G_B121_3 = NULL; uint16_t G_B120_0 = 0; uint16_t* G_B120_1 = NULL; Il2CppChar* G_B120_2 = NULL; Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * G_B120_3 = NULL; int32_t G_B122_0 = 0; uint16_t G_B122_1 = 0; uint16_t* G_B122_2 = NULL; Il2CppChar* G_B122_3 = NULL; Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * G_B122_4 = NULL; { UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_0; L_0 = Uri_EnsureUriInfo_m5FA3DF1CD26867815CE1F247A47530E1D7E35F7E(__this, /*hidden argument*/NULL); V_0 = ((int64_t)((int64_t)0)); bool L_1; L_1 = Uri_get_UserDrivenParsing_mF09087D4DE9A0823EBF1FC0C14101335D01393F2(__this, /*hidden argument*/NULL); if (L_1) { goto IL_0822; } } { bool L_2 = __this->get_m_iriParsing_19(); if (!L_2) { goto IL_0045; } } { uint64_t L_3 = __this->get_m_Flags_17(); if (!((int64_t)((int64_t)L_3&(int64_t)((int64_t)8589934592LL)))) { goto IL_0045; } } { uint64_t L_4 = __this->get_m_Flags_17(); G_B5_0 = ((((int64_t)((int64_t)((int64_t)L_4&(int64_t)((int64_t)34359738368LL)))) == ((int64_t)((int64_t)((int64_t)0))))? 1 : 0); goto IL_0046; } IL_0045: { G_B5_0 = 0; } IL_0046: { V_1 = (bool)G_B5_0; UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_5 = __this->get_m_Info_18(); NullCheck(L_5); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_6 = L_5->get_address_of_Offset_3(); uint16_t L_7 = L_6->get_Scheme_0(); V_3 = L_7; String_t* L_8 = __this->get_m_String_13(); NullCheck(L_8); int32_t L_9; L_9 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_8, /*hidden argument*/NULL); V_4 = (uint16_t)((int32_t)((uint16_t)L_9)); V_5 = 0; UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_10 = __this->get_m_Syntax_15(); NullCheck(L_10); int32_t L_11; L_11 = UriParser_get_Flags_mDAA0D828057CA2CA4493FD152D3760E975BAE7F0_inline(L_10, /*hidden argument*/NULL); V_6 = L_11; String_t* L_12 = __this->get_m_String_13(); V_9 = L_12; String_t* L_13 = V_9; V_8 = (Il2CppChar*)((uintptr_t)L_13); Il2CppChar* L_14 = V_8; if (!L_14) { goto IL_0091; } } { Il2CppChar* L_15 = V_8; int32_t L_16; L_16 = RuntimeHelpers_get_OffsetToStringData_mEB8E6EAEBAFAB7CD7F7A915B3081785AABB9FC42(/*hidden argument*/NULL); V_8 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_15, (int32_t)L_16)); } IL_0091: { uint16_t L_17 = V_4; uint16_t L_18 = V_3; if ((((int32_t)L_17) <= ((int32_t)L_18))) { goto IL_00d1; } } { Il2CppChar* L_19 = V_8; uint16_t L_20 = V_4; int32_t L_21 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_19, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_20, (int32_t)1))), (int32_t)2))))); IL2CPP_RUNTIME_CLASS_INIT(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); bool L_22; L_22 = Uri_IsLWS_m4A41E0157130C65E6768C4F5CFEE2219DAE773B4(L_21, /*hidden argument*/NULL); if (!L_22) { goto IL_00d1; } } { uint16_t L_23 = V_4; V_4 = (uint16_t)((int32_t)((uint16_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_23, (int32_t)1)))); } IL_00af: { uint16_t L_24 = V_4; uint16_t L_25 = V_3; if ((((int32_t)L_24) == ((int32_t)L_25))) { goto IL_00ca; } } { Il2CppChar* L_26 = V_8; uint16_t L_27 = V_4; int32_t L_28 = ((int32_t)((uint16_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_27, (int32_t)1)))); V_4 = (uint16_t)L_28; int32_t L_29 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_26, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_28), (int32_t)2))))); IL2CPP_RUNTIME_CLASS_INIT(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); bool L_30; L_30 = Uri_IsLWS_m4A41E0157130C65E6768C4F5CFEE2219DAE773B4(L_29, /*hidden argument*/NULL); if (L_30) { goto IL_00af; } } IL_00ca: { uint16_t L_31 = V_4; V_4 = (uint16_t)((int32_t)((uint16_t)((int32_t)il2cpp_codegen_add((int32_t)L_31, (int32_t)1)))); } IL_00d1: { bool L_32; L_32 = Uri_get_IsImplicitFile_m58AC900A18C84E93F4611F97639112F801629DAA(__this, /*hidden argument*/NULL); if (!L_32) { goto IL_00e3; } } { uint64_t L_33 = V_0; V_0 = ((int64_t)((int64_t)L_33|(int64_t)((int64_t)((int64_t)1)))); goto IL_016c; } IL_00e3: { V_10 = (uint16_t)0; UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_34 = __this->get_m_Syntax_15(); NullCheck(L_34); String_t* L_35; L_35 = UriParser_get_SchemeName_mFCD123235673631E05FE9BAF6955A0B43EEEBD80_inline(L_34, /*hidden argument*/NULL); NullCheck(L_35); int32_t L_36; L_36 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_35, /*hidden argument*/NULL); V_11 = (uint16_t)((int32_t)((uint16_t)L_36)); goto IL_0126; } IL_00fb: { UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_37 = __this->get_m_Syntax_15(); NullCheck(L_37); String_t* L_38; L_38 = UriParser_get_SchemeName_mFCD123235673631E05FE9BAF6955A0B43EEEBD80_inline(L_37, /*hidden argument*/NULL); uint16_t L_39 = V_10; NullCheck(L_38); Il2CppChar L_40; L_40 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_38, L_39, /*hidden argument*/NULL); Il2CppChar* L_41 = V_8; uint16_t L_42 = V_3; uint16_t L_43 = V_10; int32_t L_44 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_41, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)((int32_t)il2cpp_codegen_add((int32_t)L_42, (int32_t)L_43))), (int32_t)2))))); if ((((int32_t)L_40) == ((int32_t)L_44))) { goto IL_011f; } } { uint64_t L_45 = V_0; V_0 = ((int64_t)((int64_t)L_45|(int64_t)((int64_t)((int64_t)1)))); } IL_011f: { uint16_t L_46 = V_10; V_10 = (uint16_t)((int32_t)((uint16_t)((int32_t)il2cpp_codegen_add((int32_t)L_46, (int32_t)1)))); } IL_0126: { uint16_t L_47 = V_10; uint16_t L_48 = V_11; if ((((int32_t)L_47) < ((int32_t)L_48))) { goto IL_00fb; } } { uint64_t L_49 = __this->get_m_Flags_17(); if (!((int64_t)((int64_t)L_49&(int64_t)((int64_t)((int64_t)((int32_t)1048576)))))) { goto IL_016c; } } { uint16_t L_50 = V_3; uint16_t L_51 = V_10; uint16_t L_52 = V_4; if ((((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_50, (int32_t)L_51)), (int32_t)3))) >= ((int32_t)L_52))) { goto IL_0167; } } { Il2CppChar* L_53 = V_8; uint16_t L_54 = V_3; uint16_t L_55 = V_10; int32_t L_56 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_53, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_54, (int32_t)L_55)), (int32_t)1))), (int32_t)2))))); if ((!(((uint32_t)L_56) == ((uint32_t)((int32_t)47))))) { goto IL_0167; } } { Il2CppChar* L_57 = V_8; uint16_t L_58 = V_3; uint16_t L_59 = V_10; int32_t L_60 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_57, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_58, (int32_t)L_59)), (int32_t)2))), (int32_t)2))))); if ((((int32_t)L_60) == ((int32_t)((int32_t)47)))) { goto IL_016c; } } IL_0167: { uint64_t L_61 = V_0; V_0 = ((int64_t)((int64_t)L_61|(int64_t)((int64_t)((int64_t)1)))); } IL_016c: { uint64_t L_62 = __this->get_m_Flags_17(); if (!((int64_t)((int64_t)L_62&(int64_t)((int64_t)((int64_t)((int32_t)2097152)))))) { goto IL_01e3; } } { UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_63 = __this->get_m_Info_18(); NullCheck(L_63); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_64 = L_63->get_address_of_Offset_3(); uint16_t L_65 = L_64->get_User_1(); V_3 = L_65; Il2CppChar* L_66 = V_8; UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_67 = __this->get_m_Info_18(); NullCheck(L_67); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_68 = L_67->get_address_of_Offset_3(); uint16_t L_69 = L_68->get_Host_2(); int32_t L_70; L_70 = Uri_CheckCanonical_mFD937A06DC3885481C374ACDD190A3B3E40152F3(__this, (Il2CppChar*)(Il2CppChar*)L_66, (uint16_t*)(&V_3), L_69, ((int32_t)64), /*hidden argument*/NULL); V_5 = L_70; int32_t L_71 = V_5; if (((int32_t)((int32_t)L_71&(int32_t)2))) { goto IL_01b5; } } { uint64_t L_72 = V_0; V_0 = ((int64_t)((int64_t)L_72|(int64_t)((int64_t)((int64_t)2)))); } IL_01b5: { int32_t L_73 = V_5; if ((((int32_t)((int32_t)((int32_t)L_73&(int32_t)((int32_t)17)))) == ((int32_t)1))) { goto IL_01c6; } } { uint64_t L_74 = V_0; V_0 = ((int64_t)((int64_t)L_74|(int64_t)((int64_t)((int64_t)((int32_t)128))))); } IL_01c6: { bool L_75 = __this->get_m_iriParsing_19(); if (!L_75) { goto IL_01e3; } } { int32_t L_76 = V_5; if ((!(((uint32_t)((int32_t)((int32_t)L_76&(int32_t)((int32_t)91)))) == ((uint32_t)((int32_t)10))))) { goto IL_01e3; } } { uint64_t L_77 = V_0; V_0 = ((int64_t)((int64_t)L_77|(int64_t)((int64_t)549755813888LL))); } IL_01e3: { V_9 = (String_t*)NULL; UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_78 = __this->get_m_Info_18(); NullCheck(L_78); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_79 = L_78->get_address_of_Offset_3(); uint16_t L_80 = L_79->get_Path_4(); V_3 = L_80; UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_81 = __this->get_m_Info_18(); NullCheck(L_81); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_82 = L_81->get_address_of_Offset_3(); uint16_t L_83 = L_82->get_Path_4(); V_2 = L_83; bool L_84 = V_1; if (!L_84) { goto IL_034b; } } { bool L_85; L_85 = Uri_get_IsDosPath_m3374B9D26D6B547862ACB2E617AB6F96CA31A5AF(__this, /*hidden argument*/NULL); if (!L_85) { goto IL_0246; } } { bool L_86; L_86 = Uri_get_IsImplicitFile_m58AC900A18C84E93F4611F97639112F801629DAA(__this, /*hidden argument*/NULL); if (!L_86) { goto IL_022b; } } { String_t* L_87 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); __this->set_m_String_13(L_87); goto IL_0246; } IL_022b: { UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_88 = __this->get_m_Syntax_15(); NullCheck(L_88); String_t* L_89; L_89 = UriParser_get_SchemeName_mFCD123235673631E05FE9BAF6955A0B43EEEBD80_inline(L_88, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); String_t* L_90 = ((Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields*)il2cpp_codegen_static_fields_for(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var))->get_SchemeDelimiter_12(); String_t* L_91; L_91 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(L_89, L_90, /*hidden argument*/NULL); __this->set_m_String_13(L_91); } IL_0246: { UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_92 = __this->get_m_Info_18(); NullCheck(L_92); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_93 = L_92->get_address_of_Offset_3(); String_t* L_94 = __this->get_m_String_13(); NullCheck(L_94); int32_t L_95; L_95 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_94, /*hidden argument*/NULL); L_93->set_Path_4((uint16_t)((int32_t)((uint16_t)L_95))); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_96 = __this->get_m_Info_18(); NullCheck(L_96); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_97 = L_96->get_address_of_Offset_3(); uint16_t L_98 = L_97->get_Path_4(); V_3 = L_98; uint16_t L_99 = V_2; V_12 = L_99; bool L_100; L_100 = Uri_get_IsImplicitFile_m58AC900A18C84E93F4611F97639112F801629DAA(__this, /*hidden argument*/NULL); if (L_100) { goto IL_0285; } } { int32_t L_101 = V_6; if (((int32_t)((int32_t)L_101&(int32_t)((int32_t)96)))) { goto IL_02a6; } } IL_0285: { String_t* L_102 = __this->get_m_originalUnicodeString_14(); String_t* L_103 = __this->get_m_originalUnicodeString_14(); NullCheck(L_103); int32_t L_104; L_104 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_103, /*hidden argument*/NULL); Uri_FindEndOfComponent_m82D6E67E45114D23F403807E6D711C2A4E574567(__this, L_102, (uint16_t*)(&V_2), (uint16_t)((int32_t)((uint16_t)L_104)), ((int32_t)65535), /*hidden argument*/NULL); goto IL_02eb; } IL_02a6: { String_t* L_105 = __this->get_m_originalUnicodeString_14(); String_t* L_106 = __this->get_m_originalUnicodeString_14(); NullCheck(L_106); int32_t L_107; L_107 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_106, /*hidden argument*/NULL); UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_108 = __this->get_m_Syntax_15(); NullCheck(L_108); bool L_109; L_109 = UriParser_InFact_m4E58BAFAB5A9BC24854C815FC093E16D4F1CFA4D(L_108, ((int32_t)32), /*hidden argument*/NULL); G_B42_0 = ((int32_t)((uint16_t)L_107)); G_B42_1 = (&V_2); G_B42_2 = L_105; G_B42_3 = __this; if (L_109) { G_B45_0 = ((int32_t)((uint16_t)L_107)); G_B45_1 = (&V_2); G_B45_2 = L_105; G_B45_3 = __this; goto IL_02e4; } } { UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_110 = __this->get_m_Syntax_15(); NullCheck(L_110); bool L_111; L_111 = UriParser_InFact_m4E58BAFAB5A9BC24854C815FC093E16D4F1CFA4D(L_110, ((int32_t)64), /*hidden argument*/NULL); G_B43_0 = G_B42_0; G_B43_1 = G_B42_1; G_B43_2 = G_B42_2; G_B43_3 = G_B42_3; if (L_111) { G_B44_0 = G_B42_0; G_B44_1 = G_B42_1; G_B44_2 = G_B42_2; G_B44_3 = G_B42_3; goto IL_02e0; } } { G_B46_0 = ((int32_t)65534); G_B46_1 = G_B43_0; G_B46_2 = G_B43_1; G_B46_3 = G_B43_2; G_B46_4 = G_B43_3; goto IL_02e6; } IL_02e0: { G_B46_0 = ((int32_t)35); G_B46_1 = G_B44_0; G_B46_2 = G_B44_1; G_B46_3 = G_B44_2; G_B46_4 = G_B44_3; goto IL_02e6; } IL_02e4: { G_B46_0 = ((int32_t)63); G_B46_1 = G_B45_0; G_B46_2 = G_B45_1; G_B46_3 = G_B45_2; G_B46_4 = G_B45_3; } IL_02e6: { NullCheck(G_B46_4); Uri_FindEndOfComponent_m82D6E67E45114D23F403807E6D711C2A4E574567(G_B46_4, G_B46_3, (uint16_t*)G_B46_2, (uint16_t)G_B46_1, G_B46_0, /*hidden argument*/NULL); } IL_02eb: { String_t* L_112 = __this->get_m_originalUnicodeString_14(); uint16_t L_113 = V_12; uint16_t L_114 = V_2; String_t* L_115; L_115 = Uri_EscapeUnescapeIri_m606A69B7A76A131D0CA6F562E5DC0721C626E071(__this, L_112, L_113, L_114, ((int32_t)16), /*hidden argument*/NULL); V_13 = L_115; } IL_02fe: try { // begin try (depth: 1) { IL2CPP_RUNTIME_CLASS_INIT(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_il2cpp_TypeInfo_var); bool L_116; L_116 = UriParser_get_ShouldUseLegacyV2Quirks_mB8917CAC10CD13E44F2EB21D4033044BEAF132B2(/*hidden argument*/NULL); if (!L_116) { goto IL_0320; } } IL_0305: { String_t* L_117 = __this->get_m_String_13(); String_t* L_118 = V_13; NullCheck(L_118); String_t* L_119; L_119 = String_Normalize_m8CD42072C9F7B418990609EB63C5F7E1328321A9(L_118, 1, /*hidden argument*/NULL); String_t* L_120; L_120 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(L_117, L_119, /*hidden argument*/NULL); __this->set_m_String_13(L_120); goto IL_0333; } IL_0320: { String_t* L_121 = __this->get_m_String_13(); String_t* L_122 = V_13; String_t* L_123; L_123 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(L_121, L_122, /*hidden argument*/NULL); __this->set_m_String_13(L_123); } IL_0333: { goto IL_033d; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) goto CATCH_0335; throw e; } CATCH_0335: { // begin catch(System.ArgumentException) IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var))); UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D * L_124; L_124 = Uri_GetException_m6A158C16E69136DF56BCF19CC4C7DCCC2601CF84(1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_124, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Uri_ParseRemaining_m8C4350479C64906DDE464595F8BE5F8C14F2038D_RuntimeMethod_var))); } // end catch (depth: 1) IL_033d: { String_t* L_125 = __this->get_m_String_13(); NullCheck(L_125); int32_t L_126; L_126 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_125, /*hidden argument*/NULL); V_4 = (uint16_t)((int32_t)((uint16_t)L_126)); } IL_034b: { String_t* L_127 = __this->get_m_String_13(); V_9 = L_127; String_t* L_128 = V_9; V_14 = (Il2CppChar*)((uintptr_t)L_128); Il2CppChar* L_129 = V_14; if (!L_129) { goto IL_0366; } } { Il2CppChar* L_130 = V_14; int32_t L_131; L_131 = RuntimeHelpers_get_OffsetToStringData_mEB8E6EAEBAFAB7CD7F7A915B3081785AABB9FC42(/*hidden argument*/NULL); V_14 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_130, (int32_t)L_131)); } IL_0366: { bool L_132; L_132 = Uri_get_IsImplicitFile_m58AC900A18C84E93F4611F97639112F801629DAA(__this, /*hidden argument*/NULL); if (L_132) { goto IL_0375; } } { int32_t L_133 = V_6; if (((int32_t)((int32_t)L_133&(int32_t)((int32_t)96)))) { goto IL_038a; } } IL_0375: { Il2CppChar* L_134 = V_14; uint16_t L_135 = V_4; int32_t L_136; L_136 = Uri_CheckCanonical_mFD937A06DC3885481C374ACDD190A3B3E40152F3(__this, (Il2CppChar*)(Il2CppChar*)L_134, (uint16_t*)(&V_3), L_135, ((int32_t)65535), /*hidden argument*/NULL); V_5 = L_136; goto IL_03bb; } IL_038a: { Il2CppChar* L_137 = V_14; uint16_t L_138 = V_4; int32_t L_139 = V_6; G_B60_0 = L_138; G_B60_1 = (&V_3); G_B60_2 = L_137; G_B60_3 = __this; if (((int32_t)((int32_t)L_139&(int32_t)((int32_t)32)))) { G_B63_0 = L_138; G_B63_1 = (&V_3); G_B63_2 = L_137; G_B63_3 = __this; goto IL_03b2; } } { UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_140 = __this->get_m_Syntax_15(); NullCheck(L_140); bool L_141; L_141 = UriParser_InFact_m4E58BAFAB5A9BC24854C815FC093E16D4F1CFA4D(L_140, ((int32_t)64), /*hidden argument*/NULL); G_B61_0 = G_B60_0; G_B61_1 = G_B60_1; G_B61_2 = G_B60_2; G_B61_3 = G_B60_3; if (L_141) { G_B62_0 = G_B60_0; G_B62_1 = G_B60_1; G_B62_2 = G_B60_2; G_B62_3 = G_B60_3; goto IL_03ae; } } { G_B64_0 = ((int32_t)65534); G_B64_1 = G_B61_0; G_B64_2 = G_B61_1; G_B64_3 = G_B61_2; G_B64_4 = G_B61_3; goto IL_03b4; } IL_03ae: { G_B64_0 = ((int32_t)35); G_B64_1 = G_B62_0; G_B64_2 = G_B62_1; G_B64_3 = G_B62_2; G_B64_4 = G_B62_3; goto IL_03b4; } IL_03b2: { G_B64_0 = ((int32_t)63); G_B64_1 = G_B63_0; G_B64_2 = G_B63_1; G_B64_3 = G_B63_2; G_B64_4 = G_B63_3; } IL_03b4: { NullCheck(G_B64_4); int32_t L_142; L_142 = Uri_CheckCanonical_mFD937A06DC3885481C374ACDD190A3B3E40152F3(G_B64_4, (Il2CppChar*)(Il2CppChar*)G_B64_3, (uint16_t*)G_B64_2, G_B64_1, G_B64_0, /*hidden argument*/NULL); V_5 = L_142; } IL_03bb: { uint64_t L_143 = __this->get_m_Flags_17(); if (!((int64_t)((int64_t)L_143&(int64_t)((int64_t)((int64_t)((int32_t)1048576)))))) { goto IL_0427; } } { int32_t L_144 = V_6; if (!((int32_t)((int32_t)L_144&(int32_t)((int32_t)2097152)))) { goto IL_0427; } } { UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_145 = __this->get_m_Info_18(); NullCheck(L_145); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_146 = L_145->get_address_of_Offset_3(); uint16_t L_147 = L_146->get_Path_4(); uint16_t L_148 = V_4; if ((((int32_t)L_147) == ((int32_t)L_148))) { goto IL_041e; } } { Il2CppChar* L_149 = V_14; UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_150 = __this->get_m_Info_18(); NullCheck(L_150); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_151 = L_150->get_address_of_Offset_3(); uint16_t L_152 = L_151->get_Path_4(); int32_t L_153 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_149, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_152), (int32_t)2))))); if ((((int32_t)L_153) == ((int32_t)((int32_t)47)))) { goto IL_0427; } } { Il2CppChar* L_154 = V_14; UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_155 = __this->get_m_Info_18(); NullCheck(L_155); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_156 = L_155->get_address_of_Offset_3(); uint16_t L_157 = L_156->get_Path_4(); int32_t L_158 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_154, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_157), (int32_t)2))))); if ((((int32_t)L_158) == ((int32_t)((int32_t)92)))) { goto IL_0427; } } IL_041e: { uint64_t L_159 = V_0; V_0 = ((int64_t)((int64_t)L_159|(int64_t)((int64_t)((int64_t)((int32_t)16384))))); } IL_0427: { V_9 = (String_t*)NULL; V_7 = (bool)0; bool L_160; L_160 = Uri_get_IsDosPath_m3374B9D26D6B547862ACB2E617AB6F96CA31A5AF(__this, /*hidden argument*/NULL); if (L_160) { goto IL_0463; } } { uint64_t L_161 = __this->get_m_Flags_17(); if (!((int64_t)((int64_t)L_161&(int64_t)((int64_t)((int64_t)((int32_t)1048576)))))) { goto IL_04dd; } } { int32_t L_162 = V_6; if (((int32_t)((int32_t)L_162&(int32_t)((int32_t)12582912)))) { goto IL_0463; } } { UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_163 = __this->get_m_Syntax_15(); NullCheck(L_163); bool L_164; L_164 = UriParser_InFact_m4E58BAFAB5A9BC24854C815FC093E16D4F1CFA4D(L_163, ((int32_t)33554432), /*hidden argument*/NULL); if (!L_164) { goto IL_04dd; } } IL_0463: { int32_t L_165 = V_5; if (!((int32_t)((int32_t)L_165&(int32_t)((int32_t)128)))) { goto IL_048b; } } { UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_166 = __this->get_m_Syntax_15(); NullCheck(L_166); bool L_167; L_167 = UriParser_InFact_m4E58BAFAB5A9BC24854C815FC093E16D4F1CFA4D(L_166, ((int32_t)33554432), /*hidden argument*/NULL); if (!L_167) { goto IL_048b; } } { uint64_t L_168 = V_0; V_0 = ((int64_t)((int64_t)L_168|(int64_t)((int64_t)((int64_t)((int32_t)1040))))); V_7 = (bool)1; } IL_048b: { int32_t L_169 = V_6; if (!((int32_t)((int32_t)L_169&(int32_t)((int32_t)4194304)))) { goto IL_04a8; } } { int32_t L_170 = V_5; if (!((int32_t)((int32_t)L_170&(int32_t)((int32_t)16)))) { goto IL_04a8; } } { uint64_t L_171 = V_0; V_0 = ((int64_t)((int64_t)L_171|(int64_t)((int64_t)((int64_t)((int32_t)1040))))); V_7 = (bool)1; } IL_04a8: { int32_t L_172 = V_6; if (!((int32_t)((int32_t)L_172&(int32_t)((int32_t)8388608)))) { goto IL_04cb; } } { uint64_t L_173 = V_0; if (((int64_t)((int64_t)L_173&(int64_t)((int64_t)((int64_t)((int32_t)1024)))))) { goto IL_04c2; } } { int32_t L_174 = V_5; if (!((int32_t)((int32_t)L_174&(int32_t)4))) { goto IL_04cb; } } IL_04c2: { uint64_t L_175 = V_0; V_0 = ((int64_t)((int64_t)L_175|(int64_t)((int64_t)((int64_t)((int32_t)8192))))); } IL_04cb: { int32_t L_176 = V_5; if (!((int32_t)((int32_t)L_176&(int32_t)((int32_t)16)))) { goto IL_04f0; } } { uint64_t L_177 = V_0; V_0 = ((int64_t)((int64_t)L_177|(int64_t)((int64_t)((int64_t)((int32_t)32768))))); goto IL_04f0; } IL_04dd: { int32_t L_178 = V_5; if (!((int32_t)((int32_t)L_178&(int32_t)((int32_t)16)))) { goto IL_04f0; } } { uint64_t L_179 = V_0; V_0 = ((int64_t)((int64_t)L_179|(int64_t)((int64_t)((int64_t)((int32_t)1024))))); V_7 = (bool)1; } IL_04f0: { int32_t L_180 = V_5; if (((int32_t)((int32_t)L_180&(int32_t)2))) { goto IL_0524; } } { uint64_t L_181 = __this->get_m_Flags_17(); if (!((int64_t)((int64_t)L_181&(int64_t)((int64_t)((int64_t)((int32_t)536870912)))))) { goto IL_051b; } } { uint64_t L_182 = __this->get_m_Flags_17(); if (((int64_t)((int64_t)L_182&(int64_t)((int64_t)((int64_t)((int32_t)524288)))))) { goto IL_051b; } } { int32_t L_183 = V_5; if (!((int32_t)((int32_t)L_183&(int32_t)((int32_t)32)))) { goto IL_0524; } } IL_051b: { uint64_t L_184 = V_0; V_0 = ((int64_t)((int64_t)L_184|(int64_t)((int64_t)((int64_t)((int32_t)16))))); V_7 = (bool)1; } IL_0524: { uint64_t L_185 = __this->get_m_Flags_17(); if (!((int64_t)((int64_t)L_185&(int64_t)((int64_t)((int64_t)((int32_t)536870912)))))) { goto IL_0541; } } { int32_t L_186 = V_5; if (!((int32_t)((int32_t)L_186&(int32_t)((int32_t)33)))) { goto IL_0541; } } { int32_t L_187 = V_5; V_5 = ((int32_t)((int32_t)L_187&(int32_t)((int32_t)-2))); } IL_0541: { int32_t L_188 = V_5; if (((int32_t)((int32_t)L_188&(int32_t)1))) { goto IL_0550; } } { uint64_t L_189 = V_0; V_0 = ((int64_t)((int64_t)L_189|(int64_t)((int64_t)((int64_t)((int32_t)1024))))); } IL_0550: { bool L_190 = __this->get_m_iriParsing_19(); if (!L_190) { goto IL_0575; } } { bool L_191 = V_7; int32_t L_192 = V_5; if (!((int32_t)((int32_t)((((int32_t)L_191) == ((int32_t)0))? 1 : 0)&(int32_t)((((int32_t)((int32_t)((int32_t)L_192&(int32_t)((int32_t)75)))) == ((int32_t)((int32_t)10)))? 1 : 0)))) { goto IL_0575; } } { uint64_t L_193 = V_0; V_0 = ((int64_t)((int64_t)L_193|(int64_t)((int64_t)1099511627776LL))); } IL_0575: { bool L_194 = V_1; if (!L_194) { goto IL_0631; } } { uint16_t L_195 = V_2; V_15 = L_195; uint16_t L_196 = V_2; String_t* L_197 = __this->get_m_originalUnicodeString_14(); NullCheck(L_197); int32_t L_198; L_198 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_197, /*hidden argument*/NULL); if ((((int32_t)L_196) >= ((int32_t)L_198))) { goto IL_0631; } } { String_t* L_199 = __this->get_m_originalUnicodeString_14(); uint16_t L_200 = V_2; NullCheck(L_199); Il2CppChar L_201; L_201 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_199, L_200, /*hidden argument*/NULL); if ((!(((uint32_t)L_201) == ((uint32_t)((int32_t)63))))) { goto IL_0631; } } { uint16_t L_202 = V_2; V_2 = (uint16_t)((int32_t)((uint16_t)((int32_t)il2cpp_codegen_add((int32_t)L_202, (int32_t)1)))); String_t* L_203 = __this->get_m_originalUnicodeString_14(); String_t* L_204 = __this->get_m_originalUnicodeString_14(); NullCheck(L_204); int32_t L_205; L_205 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_204, /*hidden argument*/NULL); int32_t L_206 = V_6; G_B106_0 = ((int32_t)((uint16_t)L_205)); G_B106_1 = (&V_2); G_B106_2 = L_203; G_B106_3 = __this; if (((int32_t)((int32_t)L_206&(int32_t)((int32_t)64)))) { G_B107_0 = ((int32_t)((uint16_t)L_205)); G_B107_1 = (&V_2); G_B107_2 = L_203; G_B107_3 = __this; goto IL_05ca; } } { G_B108_0 = ((int32_t)65534); G_B108_1 = G_B106_0; G_B108_2 = G_B106_1; G_B108_3 = G_B106_2; G_B108_4 = G_B106_3; goto IL_05cc; } IL_05ca: { G_B108_0 = ((int32_t)35); G_B108_1 = G_B107_0; G_B108_2 = G_B107_1; G_B108_3 = G_B107_2; G_B108_4 = G_B107_3; } IL_05cc: { NullCheck(G_B108_4); Uri_FindEndOfComponent_m82D6E67E45114D23F403807E6D711C2A4E574567(G_B108_4, G_B108_3, (uint16_t*)G_B108_2, (uint16_t)G_B108_1, G_B108_0, /*hidden argument*/NULL); String_t* L_207 = __this->get_m_originalUnicodeString_14(); uint16_t L_208 = V_15; uint16_t L_209 = V_2; String_t* L_210; L_210 = Uri_EscapeUnescapeIri_m606A69B7A76A131D0CA6F562E5DC0721C626E071(__this, L_207, L_208, L_209, ((int32_t)32), /*hidden argument*/NULL); V_16 = L_210; } IL_05e4: try { // begin try (depth: 1) { IL2CPP_RUNTIME_CLASS_INIT(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_il2cpp_TypeInfo_var); bool L_211; L_211 = UriParser_get_ShouldUseLegacyV2Quirks_mB8917CAC10CD13E44F2EB21D4033044BEAF132B2(/*hidden argument*/NULL); if (!L_211) { goto IL_0606; } } IL_05eb: { String_t* L_212 = __this->get_m_String_13(); String_t* L_213 = V_16; NullCheck(L_213); String_t* L_214; L_214 = String_Normalize_m8CD42072C9F7B418990609EB63C5F7E1328321A9(L_213, 1, /*hidden argument*/NULL); String_t* L_215; L_215 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(L_212, L_214, /*hidden argument*/NULL); __this->set_m_String_13(L_215); goto IL_0619; } IL_0606: { String_t* L_216 = __this->get_m_String_13(); String_t* L_217 = V_16; String_t* L_218; L_218 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(L_216, L_217, /*hidden argument*/NULL); __this->set_m_String_13(L_218); } IL_0619: { goto IL_0623; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) goto CATCH_061b; throw e; } CATCH_061b: { // begin catch(System.ArgumentException) IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var))); UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D * L_219; L_219 = Uri_GetException_m6A158C16E69136DF56BCF19CC4C7DCCC2601CF84(1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_219, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Uri_ParseRemaining_m8C4350479C64906DDE464595F8BE5F8C14F2038D_RuntimeMethod_var))); } // end catch (depth: 1) IL_0623: { String_t* L_220 = __this->get_m_String_13(); NullCheck(L_220); int32_t L_221; L_221 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_220, /*hidden argument*/NULL); V_4 = (uint16_t)((int32_t)((uint16_t)L_221)); } IL_0631: { UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_222 = __this->get_m_Info_18(); NullCheck(L_222); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_223 = L_222->get_address_of_Offset_3(); uint16_t L_224 = V_3; L_223->set_Query_5(L_224); String_t* L_225 = __this->get_m_String_13(); V_9 = L_225; String_t* L_226 = V_9; V_17 = (Il2CppChar*)((uintptr_t)L_226); Il2CppChar* L_227 = V_17; if (!L_227) { goto IL_065d; } } { Il2CppChar* L_228 = V_17; int32_t L_229; L_229 = RuntimeHelpers_get_OffsetToStringData_mEB8E6EAEBAFAB7CD7F7A915B3081785AABB9FC42(/*hidden argument*/NULL); V_17 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_228, (int32_t)L_229)); } IL_065d: { uint16_t L_230 = V_3; uint16_t L_231 = V_4; if ((((int32_t)L_230) >= ((int32_t)L_231))) { goto IL_06cb; } } { Il2CppChar* L_232 = V_17; uint16_t L_233 = V_3; int32_t L_234 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_232, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_233), (int32_t)2))))); if ((!(((uint32_t)L_234) == ((uint32_t)((int32_t)63))))) { goto IL_06cb; } } { uint16_t L_235 = V_3; V_3 = (uint16_t)((int32_t)((uint16_t)((int32_t)il2cpp_codegen_add((int32_t)L_235, (int32_t)1)))); Il2CppChar* L_236 = V_17; uint16_t L_237 = V_4; int32_t L_238 = V_6; G_B120_0 = L_237; G_B120_1 = (&V_3); G_B120_2 = L_236; G_B120_3 = __this; if (((int32_t)((int32_t)L_238&(int32_t)((int32_t)64)))) { G_B121_0 = L_237; G_B121_1 = (&V_3); G_B121_2 = L_236; G_B121_3 = __this; goto IL_0688; } } { G_B122_0 = ((int32_t)65534); G_B122_1 = G_B120_0; G_B122_2 = G_B120_1; G_B122_3 = G_B120_2; G_B122_4 = G_B120_3; goto IL_068a; } IL_0688: { G_B122_0 = ((int32_t)35); G_B122_1 = G_B121_0; G_B122_2 = G_B121_1; G_B122_3 = G_B121_2; G_B122_4 = G_B121_3; } IL_068a: { NullCheck(G_B122_4); int32_t L_239; L_239 = Uri_CheckCanonical_mFD937A06DC3885481C374ACDD190A3B3E40152F3(G_B122_4, (Il2CppChar*)(Il2CppChar*)G_B122_3, (uint16_t*)G_B122_2, G_B122_1, G_B122_0, /*hidden argument*/NULL); V_5 = L_239; int32_t L_240 = V_5; if (((int32_t)((int32_t)L_240&(int32_t)2))) { goto IL_069d; } } { uint64_t L_241 = V_0; V_0 = ((int64_t)((int64_t)L_241|(int64_t)((int64_t)((int64_t)((int32_t)32))))); } IL_069d: { int32_t L_242 = V_5; if ((((int32_t)((int32_t)((int32_t)L_242&(int32_t)((int32_t)17)))) == ((int32_t)1))) { goto IL_06ae; } } { uint64_t L_243 = V_0; V_0 = ((int64_t)((int64_t)L_243|(int64_t)((int64_t)((int64_t)((int32_t)2048))))); } IL_06ae: { bool L_244 = __this->get_m_iriParsing_19(); if (!L_244) { goto IL_06cb; } } { int32_t L_245 = V_5; if ((!(((uint32_t)((int32_t)((int32_t)L_245&(int32_t)((int32_t)91)))) == ((uint32_t)((int32_t)10))))) { goto IL_06cb; } } { uint64_t L_246 = V_0; V_0 = ((int64_t)((int64_t)L_246|(int64_t)((int64_t)2199023255552LL))); } IL_06cb: { V_9 = (String_t*)NULL; bool L_247 = V_1; if (!L_247) { goto IL_077f; } } { uint16_t L_248 = V_2; V_18 = L_248; uint16_t L_249 = V_2; String_t* L_250 = __this->get_m_originalUnicodeString_14(); NullCheck(L_250); int32_t L_251; L_251 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_250, /*hidden argument*/NULL); if ((((int32_t)L_249) >= ((int32_t)L_251))) { goto IL_077f; } } { String_t* L_252 = __this->get_m_originalUnicodeString_14(); uint16_t L_253 = V_2; NullCheck(L_252); Il2CppChar L_254; L_254 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_252, L_253, /*hidden argument*/NULL); if ((!(((uint32_t)L_254) == ((uint32_t)((int32_t)35))))) { goto IL_077f; } } { uint16_t L_255 = V_2; V_2 = (uint16_t)((int32_t)((uint16_t)((int32_t)il2cpp_codegen_add((int32_t)L_255, (int32_t)1)))); String_t* L_256 = __this->get_m_originalUnicodeString_14(); String_t* L_257 = __this->get_m_originalUnicodeString_14(); NullCheck(L_257); int32_t L_258; L_258 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_257, /*hidden argument*/NULL); Uri_FindEndOfComponent_m82D6E67E45114D23F403807E6D711C2A4E574567(__this, L_256, (uint16_t*)(&V_2), (uint16_t)((int32_t)((uint16_t)L_258)), ((int32_t)65534), /*hidden argument*/NULL); String_t* L_259 = __this->get_m_originalUnicodeString_14(); uint16_t L_260 = V_18; uint16_t L_261 = V_2; String_t* L_262; L_262 = Uri_EscapeUnescapeIri_m606A69B7A76A131D0CA6F562E5DC0721C626E071(__this, L_259, L_260, L_261, ((int32_t)64), /*hidden argument*/NULL); V_19 = L_262; } IL_0732: try { // begin try (depth: 1) { IL2CPP_RUNTIME_CLASS_INIT(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_il2cpp_TypeInfo_var); bool L_263; L_263 = UriParser_get_ShouldUseLegacyV2Quirks_mB8917CAC10CD13E44F2EB21D4033044BEAF132B2(/*hidden argument*/NULL); if (!L_263) { goto IL_0754; } } IL_0739: { String_t* L_264 = __this->get_m_String_13(); String_t* L_265 = V_19; NullCheck(L_265); String_t* L_266; L_266 = String_Normalize_m8CD42072C9F7B418990609EB63C5F7E1328321A9(L_265, 1, /*hidden argument*/NULL); String_t* L_267; L_267 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(L_264, L_266, /*hidden argument*/NULL); __this->set_m_String_13(L_267); goto IL_0767; } IL_0754: { String_t* L_268 = __this->get_m_String_13(); String_t* L_269 = V_19; String_t* L_270; L_270 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(L_268, L_269, /*hidden argument*/NULL); __this->set_m_String_13(L_270); } IL_0767: { goto IL_0771; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) goto CATCH_0769; throw e; } CATCH_0769: { // begin catch(System.ArgumentException) IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var))); UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D * L_271; L_271 = Uri_GetException_m6A158C16E69136DF56BCF19CC4C7DCCC2601CF84(1, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_271, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Uri_ParseRemaining_m8C4350479C64906DDE464595F8BE5F8C14F2038D_RuntimeMethod_var))); } // end catch (depth: 1) IL_0771: { String_t* L_272 = __this->get_m_String_13(); NullCheck(L_272); int32_t L_273; L_273 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_272, /*hidden argument*/NULL); V_4 = (uint16_t)((int32_t)((uint16_t)L_273)); } IL_077f: { UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_274 = __this->get_m_Info_18(); NullCheck(L_274); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_275 = L_274->get_address_of_Offset_3(); uint16_t L_276 = V_3; L_275->set_Fragment_6(L_276); String_t* L_277 = __this->get_m_String_13(); V_9 = L_277; String_t* L_278 = V_9; V_20 = (Il2CppChar*)((uintptr_t)L_278); Il2CppChar* L_279 = V_20; if (!L_279) { goto IL_07ab; } } { Il2CppChar* L_280 = V_20; int32_t L_281; L_281 = RuntimeHelpers_get_OffsetToStringData_mEB8E6EAEBAFAB7CD7F7A915B3081785AABB9FC42(/*hidden argument*/NULL); V_20 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_280, (int32_t)L_281)); } IL_07ab: { uint16_t L_282 = V_3; uint16_t L_283 = V_4; if ((((int32_t)L_282) >= ((int32_t)L_283))) { goto IL_080e; } } { Il2CppChar* L_284 = V_20; uint16_t L_285 = V_3; int32_t L_286 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_284, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_285), (int32_t)2))))); if ((!(((uint32_t)L_286) == ((uint32_t)((int32_t)35))))) { goto IL_080e; } } { uint16_t L_287 = V_3; V_3 = (uint16_t)((int32_t)((uint16_t)((int32_t)il2cpp_codegen_add((int32_t)L_287, (int32_t)1)))); Il2CppChar* L_288 = V_20; uint16_t L_289 = V_4; int32_t L_290; L_290 = Uri_CheckCanonical_mFD937A06DC3885481C374ACDD190A3B3E40152F3(__this, (Il2CppChar*)(Il2CppChar*)L_288, (uint16_t*)(&V_3), L_289, ((int32_t)65534), /*hidden argument*/NULL); V_5 = L_290; int32_t L_291 = V_5; if (((int32_t)((int32_t)L_291&(int32_t)2))) { goto IL_07e0; } } { uint64_t L_292 = V_0; V_0 = ((int64_t)((int64_t)L_292|(int64_t)((int64_t)((int64_t)((int32_t)64))))); } IL_07e0: { int32_t L_293 = V_5; if ((((int32_t)((int32_t)((int32_t)L_293&(int32_t)((int32_t)17)))) == ((int32_t)1))) { goto IL_07f1; } } { uint64_t L_294 = V_0; V_0 = ((int64_t)((int64_t)L_294|(int64_t)((int64_t)((int64_t)((int32_t)4096))))); } IL_07f1: { bool L_295 = __this->get_m_iriParsing_19(); if (!L_295) { goto IL_080e; } } { int32_t L_296 = V_5; if ((!(((uint32_t)((int32_t)((int32_t)L_296&(int32_t)((int32_t)91)))) == ((uint32_t)((int32_t)10))))) { goto IL_080e; } } { uint64_t L_297 = V_0; V_0 = ((int64_t)((int64_t)L_297|(int64_t)((int64_t)4398046511104LL))); } IL_080e: { V_9 = (String_t*)NULL; UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_298 = __this->get_m_Info_18(); NullCheck(L_298); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_299 = L_298->get_address_of_Offset_3(); uint16_t L_300 = V_3; L_299->set_End_7(L_300); } IL_0822: { uint64_t L_301 = V_0; V_0 = ((int64_t)((int64_t)L_301|(int64_t)((int64_t)((uint64_t)((uint32_t)((uint32_t)((int32_t)-2147483648LL))))))); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_302 = __this->get_m_Info_18(); V_21 = L_302; V_22 = (bool)0; } IL_0836: try { // begin try (depth: 1) UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_303 = V_21; Monitor_Enter_mBEB6CC84184B46F26375EC3FC8921D16E48EA4C4(L_303, (bool*)(&V_22), /*hidden argument*/NULL); uint64_t L_304 = __this->get_m_Flags_17(); uint64_t L_305 = V_0; __this->set_m_Flags_17(((int64_t)((int64_t)L_304|(int64_t)L_305))); IL2CPP_LEAVE(0x85B, FINALLY_084f); } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_084f; } FINALLY_084f: { // begin finally (depth: 1) { bool L_306 = V_22; if (!L_306) { goto IL_085a; } } IL_0853: { UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_307 = V_21; Monitor_Exit_mA776B403DA88AC77CDEEF67AB9F0D0E77ABD254A(L_307, /*hidden argument*/NULL); } IL_085a: { IL2CPP_END_FINALLY(2127) } } // end finally (depth: 1) IL2CPP_CLEANUP(2127) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x85B, IL_085b) } IL_085b: { uint64_t L_308 = __this->get_m_Flags_17(); __this->set_m_Flags_17(((int64_t)((int64_t)L_308|(int64_t)((int64_t)34359738368LL)))); return; } } // System.UInt16 System.Uri::ParseSchemeCheckImplicitFile(System.Char*,System.UInt16,System.ParsingError&,System.Uri/Flags&,System.UriParser&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Uri_ParseSchemeCheckImplicitFile_m5F6B3C184CF455ED80D78937F208EB8C10265395 (Il2CppChar* ___uriString0, uint16_t ___length1, int32_t* ___err2, uint64_t* ___flags3, UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A ** ___syntax4, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Uri_ParseSchemeCheckImplicitFile_m5F6B3C184CF455ED80D78937F208EB8C10265395_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } uint16_t V_0 = 0; uint16_t V_1 = 0; Il2CppChar* V_2 = NULL; Il2CppChar V_3 = 0x0; { V_0 = (uint16_t)0; goto IL_0009; } IL_0004: { uint16_t L_0 = V_0; V_0 = (uint16_t)((int32_t)((uint16_t)((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)1)))); } IL_0009: { uint16_t L_1 = V_0; uint16_t L_2 = ___length1; if ((((int32_t)L_1) >= ((int32_t)L_2))) { goto IL_001b; } } { Il2CppChar* L_3 = ___uriString0; uint16_t L_4 = V_0; int32_t L_5 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_3, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_4), (int32_t)2))))); IL2CPP_RUNTIME_CLASS_INIT(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); bool L_6; L_6 = Uri_IsLWS_m4A41E0157130C65E6768C4F5CFEE2219DAE773B4(L_5, /*hidden argument*/NULL); if (L_6) { goto IL_0004; } } IL_001b: { uint16_t L_7 = V_0; V_1 = L_7; goto IL_0024; } IL_001f: { uint16_t L_8 = V_1; V_1 = (uint16_t)((int32_t)((uint16_t)((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1)))); } IL_0024: { uint16_t L_9 = V_1; uint16_t L_10 = ___length1; if ((((int32_t)L_9) >= ((int32_t)L_10))) { goto IL_0033; } } { Il2CppChar* L_11 = ___uriString0; uint16_t L_12 = V_1; int32_t L_13 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_11, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_12), (int32_t)2))))); if ((!(((uint32_t)L_13) == ((uint32_t)((int32_t)58))))) { goto IL_001f; } } IL_0033: { int32_t L_14; L_14 = IntPtr_get_Size_mD8038A1C440DE87E685F4D879DC80A6704D9C77B(/*hidden argument*/NULL); if ((!(((uint32_t)L_14) == ((uint32_t)4)))) { goto IL_005d; } } { uint16_t L_15 = V_1; uint16_t L_16 = ___length1; if ((((int32_t)L_15) == ((int32_t)L_16))) { goto IL_005d; } } { uint16_t L_17 = V_1; uint16_t L_18 = V_0; if ((((int32_t)L_17) < ((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)2))))) { goto IL_005d; } } { Il2CppChar* L_19 = ___uriString0; uint16_t L_20 = V_0; uint16_t L_21 = V_1; uint16_t L_22 = V_0; UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A ** L_23 = ___syntax4; IL2CPP_RUNTIME_CLASS_INIT(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); bool L_24; L_24 = Uri_CheckKnownSchemes_mDA8F5B5A8A82B234F1212931F2E0F19146BAEAA6((int64_t*)(int64_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_19, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_20), (int32_t)2)))), (uint16_t)((int32_t)((uint16_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_21, (int32_t)L_22)))), (UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A **)L_23, /*hidden argument*/NULL); if (!L_24) { goto IL_005d; } } { uint16_t L_25 = V_1; return (uint16_t)((int32_t)((uint16_t)((int32_t)il2cpp_codegen_add((int32_t)L_25, (int32_t)1)))); } IL_005d: { uint16_t L_26 = V_0; uint16_t L_27 = ___length1; if ((((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_26, (int32_t)2))) >= ((int32_t)L_27))) { goto IL_0067; } } { uint16_t L_28 = V_1; uint16_t L_29 = V_0; if ((!(((uint32_t)L_28) == ((uint32_t)L_29)))) { goto IL_006c; } } IL_0067: { int32_t* L_30 = ___err2; *((int32_t*)L_30) = (int32_t)1; return (uint16_t)0; } IL_006c: { Il2CppChar* L_31 = ___uriString0; uint16_t L_32 = V_0; int32_t L_33 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_31, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)((int32_t)il2cpp_codegen_add((int32_t)L_32, (int32_t)1))), (int32_t)2))))); int32_t L_34 = L_33; V_3 = L_34; if ((((int32_t)L_34) == ((int32_t)((int32_t)58)))) { goto IL_0080; } } { Il2CppChar L_35 = V_3; if ((!(((uint32_t)L_35) == ((uint32_t)((int32_t)124))))) { goto IL_00cb; } } IL_0080: { Il2CppChar* L_36 = ___uriString0; uint16_t L_37 = V_0; int32_t L_38 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_36, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_37), (int32_t)2))))); IL2CPP_RUNTIME_CLASS_INIT(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); bool L_39; L_39 = Uri_IsAsciiLetter_mBEE6BD837C66CBB199E8A9FAB14A85744368F0FC(L_38, /*hidden argument*/NULL); if (!L_39) { goto IL_00bc; } } { Il2CppChar* L_40 = ___uriString0; uint16_t L_41 = V_0; int32_t L_42 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_40, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)((int32_t)il2cpp_codegen_add((int32_t)L_41, (int32_t)2))), (int32_t)2))))); int32_t L_43 = L_42; V_3 = L_43; if ((((int32_t)L_43) == ((int32_t)((int32_t)92)))) { goto IL_00a2; } } { Il2CppChar L_44 = V_3; if ((!(((uint32_t)L_44) == ((uint32_t)((int32_t)47))))) { goto IL_00b7; } } IL_00a2: { uint64_t* L_45 = ___flags3; uint64_t* L_46 = ___flags3; int64_t L_47 = *((int64_t*)L_46); *((int64_t*)L_45) = (int64_t)((int64_t)((int64_t)L_47|(int64_t)((int64_t)((int64_t)((int32_t)672137216))))); UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A ** L_48 = ___syntax4; IL2CPP_RUNTIME_CLASS_INIT(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_il2cpp_TypeInfo_var); UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_49 = ((UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_il2cpp_TypeInfo_var))->get_FileUri_12(); *((RuntimeObject **)L_48) = (RuntimeObject *)L_49; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_48, (void*)(RuntimeObject *)L_49); uint16_t L_50 = V_0; return L_50; } IL_00b7: { int32_t* L_51 = ___err2; *((int32_t*)L_51) = (int32_t)7; return (uint16_t)0; } IL_00bc: { Il2CppChar L_52 = V_3; if ((!(((uint32_t)L_52) == ((uint32_t)((int32_t)58))))) { goto IL_00c6; } } { int32_t* L_53 = ___err2; *((int32_t*)L_53) = (int32_t)2; goto IL_00c9; } IL_00c6: { int32_t* L_54 = ___err2; *((int32_t*)L_54) = (int32_t)1; } IL_00c9: { return (uint16_t)0; } IL_00cb: { Il2CppChar* L_55 = ___uriString0; uint16_t L_56 = V_0; int32_t L_57 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_55, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_56), (int32_t)2))))); int32_t L_58 = L_57; V_3 = L_58; if ((!(((uint32_t)L_58) == ((uint32_t)((int32_t)47))))) { goto IL_00df; } } { IL2CPP_RUNTIME_CLASS_INIT(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); bool L_59 = ((Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields*)il2cpp_codegen_static_fields_for(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var))->get_IsWindowsFileSystem_25(); if (L_59) { goto IL_00e4; } } IL_00df: { Il2CppChar L_60 = V_3; if ((!(((uint32_t)L_60) == ((uint32_t)((int32_t)92))))) { goto IL_0134; } } IL_00e4: { Il2CppChar* L_61 = ___uriString0; uint16_t L_62 = V_0; int32_t L_63 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_61, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)((int32_t)il2cpp_codegen_add((int32_t)L_62, (int32_t)1))), (int32_t)2))))); int32_t L_64 = L_63; V_3 = L_64; if ((((int32_t)L_64) == ((int32_t)((int32_t)92)))) { goto IL_00f8; } } { Il2CppChar L_65 = V_3; if ((!(((uint32_t)L_65) == ((uint32_t)((int32_t)47))))) { goto IL_012f; } } IL_00f8: { uint64_t* L_66 = ___flags3; uint64_t* L_67 = ___flags3; int64_t L_68 = *((int64_t*)L_67); *((int64_t*)L_66) = (int64_t)((int64_t)((int64_t)L_68|(int64_t)((int64_t)((int64_t)((int32_t)806354944))))); UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A ** L_69 = ___syntax4; IL2CPP_RUNTIME_CLASS_INIT(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_il2cpp_TypeInfo_var); UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_70 = ((UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_il2cpp_TypeInfo_var))->get_FileUri_12(); *((RuntimeObject **)L_69) = (RuntimeObject *)L_70; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_69, (void*)(RuntimeObject *)L_70); uint16_t L_71 = V_0; V_0 = (uint16_t)((int32_t)((uint16_t)((int32_t)il2cpp_codegen_add((int32_t)L_71, (int32_t)2)))); goto IL_0117; } IL_0112: { uint16_t L_72 = V_0; V_0 = (uint16_t)((int32_t)((uint16_t)((int32_t)il2cpp_codegen_add((int32_t)L_72, (int32_t)1)))); } IL_0117: { uint16_t L_73 = V_0; uint16_t L_74 = ___length1; if ((((int32_t)L_73) >= ((int32_t)L_74))) { goto IL_012d; } } { Il2CppChar* L_75 = ___uriString0; uint16_t L_76 = V_0; int32_t L_77 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_75, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_76), (int32_t)2))))); int32_t L_78 = L_77; V_3 = L_78; if ((((int32_t)L_78) == ((int32_t)((int32_t)47)))) { goto IL_0112; } } { Il2CppChar L_79 = V_3; if ((((int32_t)L_79) == ((int32_t)((int32_t)92)))) { goto IL_0112; } } IL_012d: { uint16_t L_80 = V_0; return L_80; } IL_012f: { int32_t* L_81 = ___err2; *((int32_t*)L_81) = (int32_t)1; return (uint16_t)0; } IL_0134: { Il2CppChar* L_82 = ___uriString0; uint16_t L_83 = V_0; int32_t L_84 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_82, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_83), (int32_t)2))))); if ((!(((uint32_t)L_84) == ((uint32_t)((int32_t)47))))) { goto IL_0198; } } { uint16_t L_85 = V_0; if (!L_85) { goto IL_014f; } } { Il2CppChar* L_86 = ___uriString0; uint16_t L_87 = V_0; int32_t L_88 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_86, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_87, (int32_t)1))), (int32_t)2))))); if ((((int32_t)L_88) == ((int32_t)((int32_t)58)))) { goto IL_0164; } } IL_014f: { uint64_t* L_89 = ___flags3; uint64_t* L_90 = ___flags3; int64_t L_91 = *((int64_t*)L_90); *((int64_t*)L_89) = (int64_t)((int64_t)((int64_t)L_91|(int64_t)((int64_t)((int64_t)((int32_t)537919488))))); UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A ** L_92 = ___syntax4; IL2CPP_RUNTIME_CLASS_INIT(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_il2cpp_TypeInfo_var); UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_93 = ((UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_il2cpp_TypeInfo_var))->get_FileUri_12(); *((RuntimeObject **)L_92) = (RuntimeObject *)L_93; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_92, (void*)(RuntimeObject *)L_93); uint16_t L_94 = V_0; return L_94; } IL_0164: { Il2CppChar* L_95 = ___uriString0; uint16_t L_96 = V_0; int32_t L_97 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_95, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)((int32_t)il2cpp_codegen_add((int32_t)L_96, (int32_t)1))), (int32_t)2))))); if ((!(((uint32_t)L_97) == ((uint32_t)((int32_t)47))))) { goto IL_01a8; } } { Il2CppChar* L_98 = ___uriString0; uint16_t L_99 = V_0; int32_t L_100 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_98, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)((int32_t)il2cpp_codegen_add((int32_t)L_99, (int32_t)2))), (int32_t)2))))); if ((!(((uint32_t)L_100) == ((uint32_t)((int32_t)47))))) { goto IL_01a8; } } { uint64_t* L_101 = ___flags3; uint64_t* L_102 = ___flags3; int64_t L_103 = *((int64_t*)L_102); *((int64_t*)L_101) = (int64_t)((int64_t)((int64_t)L_103|(int64_t)((int64_t)((int64_t)((int32_t)537919488))))); UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A ** L_104 = ___syntax4; IL2CPP_RUNTIME_CLASS_INIT(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_il2cpp_TypeInfo_var); UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_105 = ((UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_il2cpp_TypeInfo_var))->get_FileUri_12(); *((RuntimeObject **)L_104) = (RuntimeObject *)L_105; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_104, (void*)(RuntimeObject *)L_105); uint16_t L_106 = V_0; V_0 = (uint16_t)((int32_t)((uint16_t)((int32_t)il2cpp_codegen_add((int32_t)L_106, (int32_t)2)))); uint16_t L_107 = V_0; return L_107; } IL_0198: { Il2CppChar* L_108 = ___uriString0; uint16_t L_109 = V_0; int32_t L_110 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_108, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_109), (int32_t)2))))); if ((!(((uint32_t)L_110) == ((uint32_t)((int32_t)92))))) { goto IL_01a8; } } { int32_t* L_111 = ___err2; *((int32_t*)L_111) = (int32_t)1; return (uint16_t)0; } IL_01a8: { uint16_t L_112 = V_1; uint16_t L_113 = ___length1; if ((!(((uint32_t)L_112) == ((uint32_t)L_113)))) { goto IL_01b1; } } { int32_t* L_114 = ___err2; *((int32_t*)L_114) = (int32_t)1; return (uint16_t)0; } IL_01b1: { uint16_t L_115 = V_1; uint16_t L_116 = V_0; if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_115, (int32_t)L_116))) <= ((int32_t)((int32_t)1024)))) { goto IL_01c0; } } { int32_t* L_117 = ___err2; *((int32_t*)L_117) = (int32_t)5; return (uint16_t)0; } IL_01c0: { uint16_t L_118 = V_1; uint16_t L_119 = V_0; if ((uintptr_t)((uintptr_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_118, (int32_t)L_119))) * (uintptr_t)2 > (uintptr_t)kIl2CppUIntPtrMax) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), Uri_ParseSchemeCheckImplicitFile_m5F6B3C184CF455ED80D78937F208EB8C10265395_RuntimeMethod_var); int8_t* L_120 = (int8_t*) alloca(((intptr_t)il2cpp_codegen_multiply((intptr_t)((uintptr_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_118, (int32_t)L_119))), (int32_t)2))); memset(L_120, 0, ((intptr_t)il2cpp_codegen_multiply((intptr_t)((uintptr_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_118, (int32_t)L_119))), (int32_t)2))); V_2 = (Il2CppChar*)(L_120); ___length1 = (uint16_t)0; goto IL_01e7; } IL_01ce: { Il2CppChar* L_121 = V_2; uint16_t L_122 = ___length1; uint16_t L_123 = L_122; ___length1 = (uint16_t)((int32_t)((uint16_t)((int32_t)il2cpp_codegen_add((int32_t)L_123, (int32_t)1)))); Il2CppChar* L_124 = ___uriString0; uint16_t L_125 = V_0; int32_t L_126 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_124, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_125), (int32_t)2))))); *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_121, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_123), (int32_t)2))))) = (int16_t)L_126; uint16_t L_127 = V_0; V_0 = (uint16_t)((int32_t)((uint16_t)((int32_t)il2cpp_codegen_add((int32_t)L_127, (int32_t)1)))); } IL_01e7: { uint16_t L_128 = V_0; uint16_t L_129 = V_1; if ((((int32_t)L_128) < ((int32_t)L_129))) { goto IL_01ce; } } { int32_t* L_130 = ___err2; Il2CppChar* L_131 = V_2; uint16_t L_132 = ___length1; UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A ** L_133 = ___syntax4; IL2CPP_RUNTIME_CLASS_INIT(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); int32_t L_134; L_134 = Uri_CheckSchemeSyntax_m2D8AE16F4A6A55E89603F7E9D675227302B53761((Il2CppChar*)(Il2CppChar*)L_131, L_132, (UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A **)L_133, /*hidden argument*/NULL); *((int32_t*)L_130) = (int32_t)L_134; int32_t* L_135 = ___err2; int32_t L_136 = *((int32_t*)L_135); if (!L_136) { goto IL_01fc; } } { return (uint16_t)0; } IL_01fc: { uint16_t L_137 = V_1; return (uint16_t)((int32_t)((uint16_t)((int32_t)il2cpp_codegen_add((int32_t)L_137, (int32_t)1)))); } } // System.Boolean System.Uri::CheckKnownSchemes(System.Int64*,System.UInt16,System.UriParser&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Uri_CheckKnownSchemes_mDA8F5B5A8A82B234F1212931F2E0F19146BAEAA6 (int64_t* ___lptr0, uint16_t ___nChars1, UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A ** ___syntax2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int64_t V_0 = 0; { uint16_t L_0 = ___nChars1; if ((!(((uint32_t)L_0) == ((uint32_t)2)))) { goto IL_001f; } } { int64_t* L_1 = ___lptr0; int64_t L_2 = *((int64_t*)L_1); if ((!(((uint32_t)((int32_t)((int32_t)((int32_t)((int32_t)L_2))|(int32_t)((int32_t)2097184)))) == ((uint32_t)((int32_t)7536759))))) { goto IL_001d; } } { UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A ** L_3 = ___syntax2; IL2CPP_RUNTIME_CLASS_INIT(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_il2cpp_TypeInfo_var); UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_4 = ((UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_il2cpp_TypeInfo_var))->get_WsUri_9(); *((RuntimeObject **)L_3) = (RuntimeObject *)L_4; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_3, (void*)(RuntimeObject *)L_4); return (bool)1; } IL_001d: { return (bool)0; } IL_001f: { int64_t* L_5 = ___lptr0; int64_t L_6 = *((int64_t*)L_5); V_0 = ((int64_t)((int64_t)L_6|(int64_t)((int64_t)9007336695791648LL))); int64_t L_7 = V_0; if ((((int64_t)L_7) > ((int64_t)((int64_t)29273878621519975LL)))) { goto IL_00a8; } } { int64_t L_8 = V_0; if ((((int64_t)L_8) > ((int64_t)((int64_t)16326042577993847LL)))) { goto IL_0076; } } { int64_t L_9 = V_0; if ((((int64_t)L_9) == ((int64_t)((int64_t)12948347151515758LL)))) { goto IL_0203; } } { int64_t L_10 = V_0; if ((((int64_t)L_10) == ((int64_t)((int64_t)16326029693157478LL)))) { goto IL_015d; } } { int64_t L_11 = V_0; if ((((int64_t)L_11) == ((int64_t)((int64_t)16326042577993847LL)))) { goto IL_013d; } } { goto IL_025c; } IL_0076: { int64_t L_12 = V_0; if ((((int64_t)L_12) == ((int64_t)((int64_t)28147948650299509LL)))) { goto IL_018d; } } { int64_t L_13 = V_0; if ((((int64_t)L_13) == ((int64_t)((int64_t)28429436511125606LL)))) { goto IL_014d; } } { int64_t L_14 = V_0; if ((((int64_t)L_14) == ((int64_t)((int64_t)29273878621519975LL)))) { goto IL_019d; } } { goto IL_025c; } IL_00a8: { int64_t L_15 = V_0; if ((((int64_t)L_15) > ((int64_t)((int64_t)31525614009974892LL)))) { goto IL_00e6; } } { int64_t L_16 = V_0; if ((((int64_t)L_16) == ((int64_t)((int64_t)30399748462674029LL)))) { goto IL_01c1; } } { int64_t L_17 = V_0; if ((((int64_t)L_17) == ((int64_t)((int64_t)30962711301259380LL)))) { goto IL_01e5; } } { int64_t L_18 = V_0; if ((((int64_t)L_18) == ((int64_t)((int64_t)31525614009974892LL)))) { goto IL_024f; } } { goto IL_025c; } IL_00e6: { int64_t L_19 = V_0; if ((((int64_t)L_19) == ((int64_t)((int64_t)31525695615008878LL)))) { goto IL_017d; } } { int64_t L_20 = V_0; if ((((int64_t)L_20) == ((int64_t)((int64_t)31525695615402088LL)))) { goto IL_0112; } } { int64_t L_21 = V_0; if ((((int64_t)L_21) == ((int64_t)((int64_t)32370133429452910LL)))) { goto IL_016d; } } { goto IL_025c; } IL_0112: { uint16_t L_22 = ___nChars1; if ((!(((uint32_t)L_22) == ((uint32_t)4)))) { goto IL_011f; } } { UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A ** L_23 = ___syntax2; IL2CPP_RUNTIME_CLASS_INIT(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_il2cpp_TypeInfo_var); UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_24 = ((UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_il2cpp_TypeInfo_var))->get_HttpUri_7(); *((RuntimeObject **)L_23) = (RuntimeObject *)L_24; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_23, (void*)(RuntimeObject *)L_24); return (bool)1; } IL_011f: { uint16_t L_25 = ___nChars1; if ((!(((uint32_t)L_25) == ((uint32_t)5)))) { goto IL_025c; } } { int64_t* L_26 = ___lptr0; int32_t L_27 = *((uint16_t*)((int64_t*)il2cpp_codegen_add((intptr_t)L_26, (int32_t)8))); if ((!(((uint32_t)((int32_t)((int32_t)L_27|(int32_t)((int32_t)32)))) == ((uint32_t)((int32_t)115))))) { goto IL_025c; } } { UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A ** L_28 = ___syntax2; IL2CPP_RUNTIME_CLASS_INIT(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_il2cpp_TypeInfo_var); UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_29 = ((UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_il2cpp_TypeInfo_var))->get_HttpsUri_8(); *((RuntimeObject **)L_28) = (RuntimeObject *)L_29; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_28, (void*)(RuntimeObject *)L_29); return (bool)1; } IL_013d: { uint16_t L_30 = ___nChars1; if ((!(((uint32_t)L_30) == ((uint32_t)3)))) { goto IL_025c; } } { UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A ** L_31 = ___syntax2; IL2CPP_RUNTIME_CLASS_INIT(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_il2cpp_TypeInfo_var); UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_32 = ((UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_il2cpp_TypeInfo_var))->get_WssUri_10(); *((RuntimeObject **)L_31) = (RuntimeObject *)L_32; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_31, (void*)(RuntimeObject *)L_32); return (bool)1; } IL_014d: { uint16_t L_33 = ___nChars1; if ((!(((uint32_t)L_33) == ((uint32_t)4)))) { goto IL_025c; } } { UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A ** L_34 = ___syntax2; IL2CPP_RUNTIME_CLASS_INIT(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_il2cpp_TypeInfo_var); UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_35 = ((UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_il2cpp_TypeInfo_var))->get_FileUri_12(); *((RuntimeObject **)L_34) = (RuntimeObject *)L_35; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_34, (void*)(RuntimeObject *)L_35); return (bool)1; } IL_015d: { uint16_t L_36 = ___nChars1; if ((!(((uint32_t)L_36) == ((uint32_t)3)))) { goto IL_025c; } } { UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A ** L_37 = ___syntax2; IL2CPP_RUNTIME_CLASS_INIT(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_il2cpp_TypeInfo_var); UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_38 = ((UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_il2cpp_TypeInfo_var))->get_FtpUri_11(); *((RuntimeObject **)L_37) = (RuntimeObject *)L_38; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_37, (void*)(RuntimeObject *)L_38); return (bool)1; } IL_016d: { uint16_t L_39 = ___nChars1; if ((!(((uint32_t)L_39) == ((uint32_t)4)))) { goto IL_025c; } } { UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A ** L_40 = ___syntax2; IL2CPP_RUNTIME_CLASS_INIT(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_il2cpp_TypeInfo_var); UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_41 = ((UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_il2cpp_TypeInfo_var))->get_NewsUri_15(); *((RuntimeObject **)L_40) = (RuntimeObject *)L_41; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_40, (void*)(RuntimeObject *)L_41); return (bool)1; } IL_017d: { uint16_t L_42 = ___nChars1; if ((!(((uint32_t)L_42) == ((uint32_t)4)))) { goto IL_025c; } } { UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A ** L_43 = ___syntax2; IL2CPP_RUNTIME_CLASS_INIT(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_il2cpp_TypeInfo_var); UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_44 = ((UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_il2cpp_TypeInfo_var))->get_NntpUri_14(); *((RuntimeObject **)L_43) = (RuntimeObject *)L_44; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_43, (void*)(RuntimeObject *)L_44); return (bool)1; } IL_018d: { uint16_t L_45 = ___nChars1; if ((!(((uint32_t)L_45) == ((uint32_t)4)))) { goto IL_025c; } } { UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A ** L_46 = ___syntax2; IL2CPP_RUNTIME_CLASS_INIT(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_il2cpp_TypeInfo_var); UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_47 = ((UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_il2cpp_TypeInfo_var))->get_UuidUri_17(); *((RuntimeObject **)L_46) = (RuntimeObject *)L_47; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_46, (void*)(RuntimeObject *)L_47); return (bool)1; } IL_019d: { uint16_t L_48 = ___nChars1; if ((!(((uint32_t)L_48) == ((uint32_t)6)))) { goto IL_025c; } } { int64_t* L_49 = ___lptr0; int32_t L_50 = *((int32_t*)((int64_t*)il2cpp_codegen_add((intptr_t)L_49, (int32_t)8))); if ((!(((uint32_t)((int32_t)((int32_t)L_50|(int32_t)((int32_t)2097184)))) == ((uint32_t)((int32_t)7471205))))) { goto IL_025c; } } { UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A ** L_51 = ___syntax2; IL2CPP_RUNTIME_CLASS_INIT(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_il2cpp_TypeInfo_var); UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_52 = ((UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_il2cpp_TypeInfo_var))->get_GopherUri_13(); *((RuntimeObject **)L_51) = (RuntimeObject *)L_52; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_51, (void*)(RuntimeObject *)L_52); return (bool)1; } IL_01c1: { uint16_t L_53 = ___nChars1; if ((!(((uint32_t)L_53) == ((uint32_t)6)))) { goto IL_025c; } } { int64_t* L_54 = ___lptr0; int32_t L_55 = *((int32_t*)((int64_t*)il2cpp_codegen_add((intptr_t)L_54, (int32_t)8))); if ((!(((uint32_t)((int32_t)((int32_t)L_55|(int32_t)((int32_t)2097184)))) == ((uint32_t)((int32_t)7274612))))) { goto IL_025c; } } { UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A ** L_56 = ___syntax2; IL2CPP_RUNTIME_CLASS_INIT(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_il2cpp_TypeInfo_var); UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_57 = ((UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_il2cpp_TypeInfo_var))->get_MailToUri_16(); *((RuntimeObject **)L_56) = (RuntimeObject *)L_57; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_56, (void*)(RuntimeObject *)L_57); return (bool)1; } IL_01e5: { uint16_t L_58 = ___nChars1; if ((!(((uint32_t)L_58) == ((uint32_t)6)))) { goto IL_025c; } } { int64_t* L_59 = ___lptr0; int32_t L_60 = *((int32_t*)((int64_t*)il2cpp_codegen_add((intptr_t)L_59, (int32_t)8))); if ((!(((uint32_t)((int32_t)((int32_t)L_60|(int32_t)((int32_t)2097184)))) == ((uint32_t)((int32_t)7602277))))) { goto IL_025c; } } { UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A ** L_61 = ___syntax2; IL2CPP_RUNTIME_CLASS_INIT(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_il2cpp_TypeInfo_var); UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_62 = ((UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_il2cpp_TypeInfo_var))->get_TelnetUri_18(); *((RuntimeObject **)L_61) = (RuntimeObject *)L_62; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_61, (void*)(RuntimeObject *)L_62); return (bool)1; } IL_0203: { uint16_t L_63 = ___nChars1; if ((!(((uint32_t)L_63) == ((uint32_t)8)))) { goto IL_0229; } } { int64_t* L_64 = ___lptr0; int64_t L_65 = *((int64_t*)((int64_t*)il2cpp_codegen_add((intptr_t)L_64, (int32_t)8))); if ((!(((uint64_t)((int64_t)((int64_t)L_65|(int64_t)((int64_t)9007336695791648LL)))) == ((uint64_t)((int64_t)28429453690994800LL))))) { goto IL_0229; } } { UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A ** L_66 = ___syntax2; IL2CPP_RUNTIME_CLASS_INIT(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_il2cpp_TypeInfo_var); UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_67 = ((UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_il2cpp_TypeInfo_var))->get_NetPipeUri_21(); *((RuntimeObject **)L_66) = (RuntimeObject *)L_67; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_66, (void*)(RuntimeObject *)L_67); return (bool)1; } IL_0229: { uint16_t L_68 = ___nChars1; if ((!(((uint32_t)L_68) == ((uint32_t)7)))) { goto IL_025c; } } { int64_t* L_69 = ___lptr0; int64_t L_70 = *((int64_t*)((int64_t*)il2cpp_codegen_add((intptr_t)L_69, (int32_t)8))); if ((!(((uint64_t)((int64_t)((int64_t)L_70|(int64_t)((int64_t)9007336695791648LL)))) == ((uint64_t)((int64_t)16326029692043380LL))))) { goto IL_025c; } } { UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A ** L_71 = ___syntax2; IL2CPP_RUNTIME_CLASS_INIT(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_il2cpp_TypeInfo_var); UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_72 = ((UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_il2cpp_TypeInfo_var))->get_NetTcpUri_20(); *((RuntimeObject **)L_71) = (RuntimeObject *)L_72; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_71, (void*)(RuntimeObject *)L_72); return (bool)1; } IL_024f: { uint16_t L_73 = ___nChars1; if ((!(((uint32_t)L_73) == ((uint32_t)4)))) { goto IL_025c; } } { UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A ** L_74 = ___syntax2; IL2CPP_RUNTIME_CLASS_INIT(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_il2cpp_TypeInfo_var); UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_75 = ((UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_il2cpp_TypeInfo_var))->get_LdapUri_19(); *((RuntimeObject **)L_74) = (RuntimeObject *)L_75; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_74, (void*)(RuntimeObject *)L_75); return (bool)1; } IL_025c: { return (bool)0; } } // System.ParsingError System.Uri::CheckSchemeSyntax(System.Char*,System.UInt16,System.UriParser&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Uri_CheckSchemeSyntax_m2D8AE16F4A6A55E89603F7E9D675227302B53761 (Il2CppChar* ___ptr0, uint16_t ___length1, UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A ** ___syntax2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; Il2CppChar V_1 = 0x0; uint16_t V_2 = 0; Il2CppChar V_3 = 0x0; { Il2CppChar* L_0 = ___ptr0; int32_t L_1 = *((uint16_t*)L_0); V_1 = L_1; Il2CppChar L_2 = V_1; if ((((int32_t)L_2) < ((int32_t)((int32_t)97)))) { goto IL_000d; } } { Il2CppChar L_3 = V_1; if ((((int32_t)L_3) <= ((int32_t)((int32_t)122)))) { goto IL_0022; } } IL_000d: { Il2CppChar L_4 = V_1; if ((((int32_t)L_4) < ((int32_t)((int32_t)65)))) { goto IL_0020; } } { Il2CppChar L_5 = V_1; if ((((int32_t)L_5) > ((int32_t)((int32_t)90)))) { goto IL_0020; } } { Il2CppChar* L_6 = ___ptr0; Il2CppChar L_7 = V_1; *((int16_t*)L_6) = (int16_t)((int32_t)((uint16_t)((int32_t)((int32_t)L_7|(int32_t)((int32_t)32))))); goto IL_0022; } IL_0020: { return (int32_t)(2); } IL_0022: { V_2 = (uint16_t)1; goto IL_0070; } IL_0026: { Il2CppChar* L_8 = ___ptr0; uint16_t L_9 = V_2; int32_t L_10 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_8, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_9), (int32_t)2))))); V_3 = L_10; Il2CppChar L_11 = V_3; if ((((int32_t)L_11) < ((int32_t)((int32_t)97)))) { goto IL_0038; } } { Il2CppChar L_12 = V_3; if ((((int32_t)L_12) <= ((int32_t)((int32_t)122)))) { goto IL_006b; } } IL_0038: { Il2CppChar L_13 = V_3; if ((((int32_t)L_13) < ((int32_t)((int32_t)65)))) { goto IL_0050; } } { Il2CppChar L_14 = V_3; if ((((int32_t)L_14) > ((int32_t)((int32_t)90)))) { goto IL_0050; } } { Il2CppChar* L_15 = ___ptr0; uint16_t L_16 = V_2; Il2CppChar L_17 = V_3; *((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_15, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_16), (int32_t)2))))) = (int16_t)((int32_t)((uint16_t)((int32_t)((int32_t)L_17|(int32_t)((int32_t)32))))); goto IL_006b; } IL_0050: { Il2CppChar L_18 = V_3; if ((((int32_t)L_18) < ((int32_t)((int32_t)48)))) { goto IL_005a; } } { Il2CppChar L_19 = V_3; if ((((int32_t)L_19) <= ((int32_t)((int32_t)57)))) { goto IL_006b; } } IL_005a: { Il2CppChar L_20 = V_3; if ((((int32_t)L_20) == ((int32_t)((int32_t)43)))) { goto IL_006b; } } { Il2CppChar L_21 = V_3; if ((((int32_t)L_21) == ((int32_t)((int32_t)45)))) { goto IL_006b; } } { Il2CppChar L_22 = V_3; if ((((int32_t)L_22) == ((int32_t)((int32_t)46)))) { goto IL_006b; } } { return (int32_t)(2); } IL_006b: { uint16_t L_23 = V_2; V_2 = (uint16_t)((int32_t)((uint16_t)((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1)))); } IL_0070: { uint16_t L_24 = V_2; uint16_t L_25 = ___length1; if ((((int32_t)L_24) < ((int32_t)L_25))) { goto IL_0026; } } { Il2CppChar* L_26 = ___ptr0; uint16_t L_27 = ___length1; String_t* L_28; L_28 = String_CreateString_m854F19B67F5E1B63737E096BF53CC56AB12AF777(NULL, (Il2CppChar*)(Il2CppChar*)L_26, 0, L_27, /*hidden argument*/NULL); V_0 = L_28; UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A ** L_29 = ___syntax2; String_t* L_30 = V_0; IL2CPP_RUNTIME_CLASS_INIT(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_il2cpp_TypeInfo_var); UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_31; L_31 = UriParser_FindOrFetchAsUnknownV1Syntax_m7844992E6D0B5FD676AEE47EBD4806305418D6CC(L_30, /*hidden argument*/NULL); *((RuntimeObject **)L_29) = (RuntimeObject *)L_31; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_29, (void*)(RuntimeObject *)L_31); return (int32_t)(0); } } // System.UInt16 System.Uri::CheckAuthorityHelper(System.Char*,System.UInt16,System.UInt16,System.ParsingError&,System.Uri/Flags&,System.UriParser,System.String&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t Uri_CheckAuthorityHelper_mC5010AEC19EED1968EDE7CB52C92AC0AC0869503 (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, Il2CppChar* ___pString0, uint16_t ___idx1, uint16_t ___length2, int32_t* ___err3, uint64_t* ___flags4, UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * ___syntax5, String_t** ___newHost6, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; Il2CppChar V_1 = 0x0; int32_t V_2 = 0; uint16_t V_3 = 0; bool V_4 = false; bool V_5 = false; bool V_6 = false; bool V_7 = false; int32_t V_8 = 0; String_t* V_9 = NULL; bool V_10 = false; uint16_t V_11 = 0; bool V_12 = false; bool V_13 = false; String_t* V_14 = NULL; int32_t V_15 = 0; int32_t V_16 = 0; uint16_t V_17 = 0; bool V_18 = false; int32_t V_19 = 0; String_t* V_20 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 4); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); int32_t G_B3_0 = 0; Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * G_B49_0 = NULL; Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * G_B48_0 = NULL; int32_t G_B50_0 = 0; Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * G_B50_1 = NULL; { uint16_t L_0 = ___length2; V_0 = L_0; uint16_t L_1 = ___idx1; V_2 = L_1; uint16_t L_2 = ___idx1; V_3 = L_2; String_t** L_3 = ___newHost6; *((RuntimeObject **)L_3) = (RuntimeObject *)NULL; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_3, (void*)(RuntimeObject *)NULL); V_4 = (bool)0; IL2CPP_RUNTIME_CLASS_INIT(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); bool L_4 = ((Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields*)il2cpp_codegen_static_fields_for(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var))->get_s_IriParsing_23(); il2cpp_codegen_memory_barrier(); if (!L_4) { goto IL_001f; } } { UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_5 = ___syntax5; IL2CPP_RUNTIME_CLASS_INIT(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); bool L_6; L_6 = Uri_IriParsingStatic_m0F2797FEA328A2B1A72EE03F9BD88C577A7A0471(L_5, /*hidden argument*/NULL); G_B3_0 = ((int32_t)(L_6)); goto IL_0020; } IL_001f: { G_B3_0 = 0; } IL_0020: { V_5 = (bool)G_B3_0; uint64_t* L_7 = ___flags4; int64_t L_8 = *((int64_t*)L_7); V_6 = (bool)((!(((uint64_t)((int64_t)((int64_t)L_8&(int64_t)((int64_t)8589934592LL)))) <= ((uint64_t)((int64_t)((int64_t)0)))))? 1 : 0); uint64_t* L_9 = ___flags4; int64_t L_10 = *((int64_t*)L_9); V_7 = (bool)((((int64_t)((int64_t)((int64_t)L_10&(int64_t)((int64_t)17179869184LL)))) == ((int64_t)((int64_t)((int64_t)0))))? 1 : 0); UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_11 = ___syntax5; NullCheck(L_11); int32_t L_12; L_12 = UriParser_get_Flags_mDAA0D828057CA2CA4493FD152D3760E975BAE7F0_inline(L_11, /*hidden argument*/NULL); V_8 = L_12; bool L_13 = V_6; bool L_14 = V_5; bool L_15 = V_7; if (!((int32_t)((int32_t)((int32_t)((int32_t)L_13&(int32_t)L_14))&(int32_t)L_15))) { goto IL_006b; } } { String_t** L_16 = ___newHost6; String_t* L_17 = __this->get_m_originalUnicodeString_14(); int32_t L_18 = V_2; NullCheck(L_17); String_t* L_19; L_19 = String_Substring_m7A39A2AC0893AE940CF4CEC841326D56FFB9D86B(L_17, 0, L_18, /*hidden argument*/NULL); *((RuntimeObject **)L_16) = (RuntimeObject *)L_19; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_16, (void*)(RuntimeObject *)L_19); } IL_006b: { uint16_t L_20 = ___idx1; uint16_t L_21 = ___length2; if ((((int32_t)L_20) == ((int32_t)L_21))) { goto IL_0094; } } { Il2CppChar* L_22 = ___pString0; uint16_t L_23 = ___idx1; int32_t L_24 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_22, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_23), (int32_t)2))))); int32_t L_25 = L_24; V_1 = L_25; if ((((int32_t)L_25) == ((int32_t)((int32_t)47)))) { goto IL_0094; } } { Il2CppChar L_26 = V_1; if ((!(((uint32_t)L_26) == ((uint32_t)((int32_t)92))))) { goto IL_008a; } } { UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_27 = ___syntax5; IL2CPP_RUNTIME_CLASS_INIT(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); bool L_28; L_28 = Uri_StaticIsFile_m3E03FC49813EF629A488CF3093AE0A5675210CED(L_27, /*hidden argument*/NULL); if (L_28) { goto IL_0094; } } IL_008a: { Il2CppChar L_29 = V_1; if ((((int32_t)L_29) == ((int32_t)((int32_t)35)))) { goto IL_0094; } } { Il2CppChar L_30 = V_1; if ((!(((uint32_t)L_30) == ((uint32_t)((int32_t)63))))) { goto IL_0106; } } IL_0094: { UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_31 = ___syntax5; NullCheck(L_31); bool L_32; L_32 = UriParser_InFact_m4E58BAFAB5A9BC24854C815FC093E16D4F1CFA4D(L_31, ((int32_t)128), /*hidden argument*/NULL); if (!L_32) { goto IL_00e6; } } { uint64_t* L_33 = ___flags4; uint64_t* L_34 = ___flags4; int64_t L_35 = *((int64_t*)L_34); *((int64_t*)L_33) = (int64_t)((int64_t)((int64_t)L_35&(int64_t)((int64_t)((int64_t)((int32_t)-268435457))))); uint64_t* L_36 = ___flags4; int64_t L_37 = *((int64_t*)L_36); IL2CPP_RUNTIME_CLASS_INIT(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); bool L_38; L_38 = Uri_StaticInFact_m6B17A3B95B81DABD390B643ABD9ADAA316D5EF98(L_37, ((int64_t)((int64_t)((int32_t)536870912))), /*hidden argument*/NULL); if (!L_38) { goto IL_00d7; } } { Il2CppChar* L_39 = ___pString0; uint16_t L_40 = ___idx1; int32_t L_41 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_39, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_40), (int32_t)2))))); if ((!(((uint32_t)L_41) == ((uint32_t)((int32_t)47))))) { goto IL_00d1; } } { IL2CPP_RUNTIME_CLASS_INIT(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); bool L_42 = ((Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields*)il2cpp_codegen_static_fields_for(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var))->get_IsWindowsFileSystem_25(); if (!L_42) { goto IL_00d7; } } IL_00d1: { int32_t* L_43 = ___err3; *((int32_t*)L_43) = (int32_t)8; goto IL_00ea; } IL_00d7: { uint64_t* L_44 = ___flags4; uint64_t* L_45 = ___flags4; int64_t L_46 = *((int64_t*)L_45); *((int64_t*)L_44) = (int64_t)((int64_t)((int64_t)L_46|(int64_t)((int64_t)((int64_t)((int32_t)327680))))); goto IL_00ea; } IL_00e6: { int32_t* L_47 = ___err3; *((int32_t*)L_47) = (int32_t)8; } IL_00ea: { bool L_48 = V_6; bool L_49 = V_5; bool L_50 = V_7; if (!((int32_t)((int32_t)((int32_t)((int32_t)L_48&(int32_t)L_49))&(int32_t)L_50))) { goto IL_0104; } } { uint64_t* L_51 = ___flags4; uint64_t* L_52 = ___flags4; int64_t L_53 = *((int64_t*)L_52); *((int64_t*)L_51) = (int64_t)((int64_t)((int64_t)L_53|(int64_t)((int64_t)17179869184LL))); } IL_0104: { uint16_t L_54 = ___idx1; return L_54; } IL_0106: { V_9 = (String_t*)NULL; int32_t L_55 = V_8; if (!((int32_t)((int32_t)L_55&(int32_t)4))) { goto IL_01e4; } } { goto IL_01dd; } IL_0117: { uint16_t L_56 = V_3; int32_t L_57 = V_0; if ((((int32_t)L_56) == ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_57, (int32_t)1))))) { goto IL_0149; } } { Il2CppChar* L_58 = ___pString0; uint16_t L_59 = V_3; int32_t L_60 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_58, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_59), (int32_t)2))))); if ((((int32_t)L_60) == ((int32_t)((int32_t)63)))) { goto IL_0149; } } { Il2CppChar* L_61 = ___pString0; uint16_t L_62 = V_3; int32_t L_63 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_61, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_62), (int32_t)2))))); if ((((int32_t)L_63) == ((int32_t)((int32_t)35)))) { goto IL_0149; } } { Il2CppChar* L_64 = ___pString0; uint16_t L_65 = V_3; int32_t L_66 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_64, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_65), (int32_t)2))))); if ((((int32_t)L_66) == ((int32_t)((int32_t)92)))) { goto IL_0149; } } { Il2CppChar* L_67 = ___pString0; uint16_t L_68 = V_3; int32_t L_69 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_67, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_68), (int32_t)2))))); if ((!(((uint32_t)L_69) == ((uint32_t)((int32_t)47))))) { goto IL_0150; } } IL_0149: { uint16_t L_70 = ___idx1; V_3 = L_70; goto IL_01e4; } IL_0150: { Il2CppChar* L_71 = ___pString0; uint16_t L_72 = V_3; int32_t L_73 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_71, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_72), (int32_t)2))))); if ((!(((uint32_t)L_73) == ((uint32_t)((int32_t)64))))) { goto IL_01d8; } } { uint64_t* L_74 = ___flags4; uint64_t* L_75 = ___flags4; int64_t L_76 = *((int64_t*)L_75); *((int64_t*)L_74) = (int64_t)((int64_t)((int64_t)L_76|(int64_t)((int64_t)((int64_t)((int32_t)2097152))))); bool L_77 = V_5; if (L_77) { goto IL_0175; } } { IL2CPP_RUNTIME_CLASS_INIT(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); int32_t L_78 = ((Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields*)il2cpp_codegen_static_fields_for(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var))->get_s_IdnScope_22(); il2cpp_codegen_memory_barrier(); if (!L_78) { goto IL_01c9; } } IL_0175: { bool L_79 = V_5; bool L_80 = V_6; bool L_81 = V_7; if (!((int32_t)((int32_t)((int32_t)((int32_t)L_79&(int32_t)L_80))&(int32_t)L_81))) { goto IL_01bb; } } { Il2CppChar* L_82 = ___pString0; int32_t L_83 = V_2; uint16_t L_84 = V_3; String_t* L_85; L_85 = IriHelper_EscapeUnescapeIri_m6CABB7FC44037C0B5C18132AF5D8C55DB5C64444((Il2CppChar*)(Il2CppChar*)L_82, L_83, ((int32_t)il2cpp_codegen_add((int32_t)L_84, (int32_t)1)), 2, /*hidden argument*/NULL); V_9 = L_85; } IL_018c: try { // begin try (depth: 1) { IL2CPP_RUNTIME_CLASS_INIT(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_il2cpp_TypeInfo_var); bool L_86; L_86 = UriParser_get_ShouldUseLegacyV2Quirks_mB8917CAC10CD13E44F2EB21D4033044BEAF132B2(/*hidden argument*/NULL); if (!L_86) { goto IL_019d; } } IL_0193: { String_t* L_87 = V_9; NullCheck(L_87); String_t* L_88; L_88 = String_Normalize_m8CD42072C9F7B418990609EB63C5F7E1328321A9(L_87, 1, /*hidden argument*/NULL); V_9 = L_88; } IL_019d: { goto IL_01ac; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) goto CATCH_019f; throw e; } CATCH_019f: { // begin catch(System.ArgumentException) int32_t* L_89 = ___err3; *((int32_t*)L_89) = (int32_t)1; uint16_t L_90 = ___idx1; V_11 = L_90; goto IL_07c1; } // end catch (depth: 1) IL_01ac: { String_t** L_91 = ___newHost6; String_t** L_92 = ___newHost6; String_t* L_93 = *((String_t**)L_92); String_t* L_94 = V_9; String_t* L_95; L_95 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(L_93, L_94, /*hidden argument*/NULL); *((RuntimeObject **)L_91) = (RuntimeObject *)L_95; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_91, (void*)(RuntimeObject *)L_95); goto IL_01c9; } IL_01bb: { Il2CppChar* L_96 = ___pString0; int32_t L_97 = V_2; uint16_t L_98 = V_3; int32_t L_99 = V_2; String_t* L_100; L_100 = String_CreateString_m854F19B67F5E1B63737E096BF53CC56AB12AF777(NULL, (Il2CppChar*)(Il2CppChar*)L_96, L_97, ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_98, (int32_t)L_99)), (int32_t)1)), /*hidden argument*/NULL); V_9 = L_100; } IL_01c9: { uint16_t L_101 = V_3; V_3 = (uint16_t)((int32_t)((uint16_t)((int32_t)il2cpp_codegen_add((int32_t)L_101, (int32_t)1)))); Il2CppChar* L_102 = ___pString0; uint16_t L_103 = V_3; int32_t L_104 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_102, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_103), (int32_t)2))))); V_1 = L_104; goto IL_01e4; } IL_01d8: { uint16_t L_105 = V_3; V_3 = (uint16_t)((int32_t)((uint16_t)((int32_t)il2cpp_codegen_add((int32_t)L_105, (int32_t)1)))); } IL_01dd: { uint16_t L_106 = V_3; int32_t L_107 = V_0; if ((((int32_t)L_106) < ((int32_t)L_107))) { goto IL_0117; } } IL_01e4: { int32_t L_108 = V_8; V_10 = (bool)((((int32_t)((int32_t)((int32_t)L_108&(int32_t)((int32_t)131072)))) == ((int32_t)0))? 1 : 0); Il2CppChar L_109 = V_1; if ((!(((uint32_t)L_109) == ((uint32_t)((int32_t)91))))) { goto IL_0282; } } { UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_110 = ___syntax5; NullCheck(L_110); bool L_111; L_111 = UriParser_InFact_m4E58BAFAB5A9BC24854C815FC093E16D4F1CFA4D(L_110, ((int32_t)2048), /*hidden argument*/NULL); if (!L_111) { goto IL_0282; } } { Il2CppChar* L_112 = ___pString0; uint16_t L_113 = V_3; bool L_114; L_114 = IPv6AddressHelper_IsValid_m8090A11221F415591268CBE22105DEFB03CA0FFF((Il2CppChar*)(Il2CppChar*)L_112, ((int32_t)il2cpp_codegen_add((int32_t)L_113, (int32_t)1)), (int32_t*)(&V_0), /*hidden argument*/NULL); if (!L_114) { goto IL_0282; } } { uint64_t* L_115 = ___flags4; uint64_t* L_116 = ___flags4; int64_t L_117 = *((int64_t*)L_116); *((int64_t*)L_115) = (int64_t)((int64_t)((int64_t)L_117|(int64_t)((int64_t)((int64_t)((int32_t)65536))))); IL2CPP_RUNTIME_CLASS_INIT(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); bool L_118 = ((Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields*)il2cpp_codegen_static_fields_for(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var))->get_s_ConfigInitialized_20(); il2cpp_codegen_memory_barrier(); if (L_118) { goto IL_0248; } } { IL2CPP_RUNTIME_CLASS_INIT(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); Uri_InitializeUriConfig_m0DB8F34B6FAF361C0FE002FA800548608A03F8E5(/*hidden argument*/NULL); bool L_119 = ((Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields*)il2cpp_codegen_static_fields_for(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var))->get_s_IriParsing_23(); il2cpp_codegen_memory_barrier(); G_B48_0 = __this; if (!L_119) { G_B49_0 = __this; goto IL_0242; } } { UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_120 = ___syntax5; IL2CPP_RUNTIME_CLASS_INIT(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); bool L_121; L_121 = Uri_IriParsingStatic_m0F2797FEA328A2B1A72EE03F9BD88C577A7A0471(L_120, /*hidden argument*/NULL); G_B50_0 = ((int32_t)(L_121)); G_B50_1 = G_B48_0; goto IL_0243; } IL_0242: { G_B50_0 = 0; G_B50_1 = G_B49_0; } IL_0243: { NullCheck(G_B50_1); G_B50_1->set_m_iriParsing_19((bool)G_B50_0); } IL_0248: { bool L_122 = V_6; bool L_123 = V_5; bool L_124 = V_7; if (!((int32_t)((int32_t)((int32_t)((int32_t)L_122&(int32_t)L_123))&(int32_t)L_124))) { goto IL_04cf; } } { String_t** L_125 = ___newHost6; String_t** L_126 = ___newHost6; String_t* L_127 = *((String_t**)L_126); Il2CppChar* L_128 = ___pString0; uint16_t L_129 = V_3; int32_t L_130 = V_0; uint16_t L_131 = V_3; String_t* L_132; L_132 = String_CreateString_m854F19B67F5E1B63737E096BF53CC56AB12AF777(NULL, (Il2CppChar*)(Il2CppChar*)L_128, L_129, ((int32_t)il2cpp_codegen_subtract((int32_t)L_130, (int32_t)L_131)), /*hidden argument*/NULL); String_t* L_133; L_133 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(L_127, L_132, /*hidden argument*/NULL); *((RuntimeObject **)L_125) = (RuntimeObject *)L_133; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_125, (void*)(RuntimeObject *)L_133); uint64_t* L_134 = ___flags4; uint64_t* L_135 = ___flags4; int64_t L_136 = *((int64_t*)L_135); *((int64_t*)L_134) = (int64_t)((int64_t)((int64_t)L_136|(int64_t)((int64_t)17179869184LL))); V_4 = (bool)1; goto IL_04cf; } IL_0282: { Il2CppChar L_137 = V_1; if ((((int32_t)L_137) > ((int32_t)((int32_t)57)))) { goto IL_030a; } } { Il2CppChar L_138 = V_1; if ((((int32_t)L_138) < ((int32_t)((int32_t)48)))) { goto IL_030a; } } { UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_139 = ___syntax5; NullCheck(L_139); bool L_140; L_140 = UriParser_InFact_m4E58BAFAB5A9BC24854C815FC093E16D4F1CFA4D(L_139, ((int32_t)1024), /*hidden argument*/NULL); if (!L_140) { goto IL_030a; } } { Il2CppChar* L_141 = ___pString0; uint16_t L_142 = V_3; uint64_t* L_143 = ___flags4; int64_t L_144 = *((int64_t*)L_143); IL2CPP_RUNTIME_CLASS_INIT(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); bool L_145; L_145 = Uri_StaticNotAny_mA7DA612608D1C43837E3DC3E31C02F994746736C(L_144, ((int64_t)((int64_t)((int32_t)536870912))), /*hidden argument*/NULL); UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_146 = ___syntax5; NullCheck(L_146); bool L_147; L_147 = UriParser_InFact_m4E58BAFAB5A9BC24854C815FC093E16D4F1CFA4D(L_146, ((int32_t)65536), /*hidden argument*/NULL); bool L_148; L_148 = IPv4AddressHelper_IsValid_m6CAD01230EC033CB8F4ABB645327065A56E2ED7D((Il2CppChar*)(Il2CppChar*)L_141, L_142, (int32_t*)(&V_0), (bool)0, L_145, L_147, /*hidden argument*/NULL); if (!L_148) { goto IL_030a; } } { uint64_t* L_149 = ___flags4; uint64_t* L_150 = ___flags4; int64_t L_151 = *((int64_t*)L_150); *((int64_t*)L_149) = (int64_t)((int64_t)((int64_t)L_151|(int64_t)((int64_t)((int64_t)((int32_t)131072))))); bool L_152 = V_6; bool L_153 = V_5; bool L_154 = V_7; if (!((int32_t)((int32_t)((int32_t)((int32_t)L_152&(int32_t)L_153))&(int32_t)L_154))) { goto IL_04cf; } } { String_t** L_155 = ___newHost6; String_t** L_156 = ___newHost6; String_t* L_157 = *((String_t**)L_156); Il2CppChar* L_158 = ___pString0; uint16_t L_159 = V_3; int32_t L_160 = V_0; uint16_t L_161 = V_3; String_t* L_162; L_162 = String_CreateString_m854F19B67F5E1B63737E096BF53CC56AB12AF777(NULL, (Il2CppChar*)(Il2CppChar*)L_158, L_159, ((int32_t)il2cpp_codegen_subtract((int32_t)L_160, (int32_t)L_161)), /*hidden argument*/NULL); String_t* L_163; L_163 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(L_157, L_162, /*hidden argument*/NULL); *((RuntimeObject **)L_155) = (RuntimeObject *)L_163; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_155, (void*)(RuntimeObject *)L_163); uint64_t* L_164 = ___flags4; uint64_t* L_165 = ___flags4; int64_t L_166 = *((int64_t*)L_165); *((int64_t*)L_164) = (int64_t)((int64_t)((int64_t)L_166|(int64_t)((int64_t)17179869184LL))); V_4 = (bool)1; goto IL_04cf; } IL_030a: { int32_t L_167 = V_8; if (!((int32_t)((int32_t)L_167&(int32_t)((int32_t)512)))) { goto IL_0435; } } { bool L_168 = V_5; if (L_168) { goto IL_0435; } } { Il2CppChar* L_169 = ___pString0; uint16_t L_170 = V_3; uint64_t* L_171 = ___flags4; int64_t L_172 = *((int64_t*)L_171); IL2CPP_RUNTIME_CLASS_INIT(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); bool L_173; L_173 = Uri_StaticNotAny_mA7DA612608D1C43837E3DC3E31C02F994746736C(L_172, ((int64_t)((int64_t)((int32_t)536870912))), /*hidden argument*/NULL); bool L_174; L_174 = DomainNameHelper_IsValid_m023973F3D85C0B74F55D6B7576911D4813685052((Il2CppChar*)(Il2CppChar*)L_169, L_170, (int32_t*)(&V_0), (bool*)(&V_10), L_173, /*hidden argument*/NULL); if (!L_174) { goto IL_0435; } } { uint64_t* L_175 = ___flags4; uint64_t* L_176 = ___flags4; int64_t L_177 = *((int64_t*)L_176); *((int64_t*)L_175) = (int64_t)((int64_t)((int64_t)L_177|(int64_t)((int64_t)((int64_t)((int32_t)196608))))); bool L_178 = V_10; if (L_178) { goto IL_035a; } } { uint64_t* L_179 = ___flags4; uint64_t* L_180 = ___flags4; int64_t L_181 = *((int64_t*)L_180); *((int64_t*)L_179) = (int64_t)((int64_t)((int64_t)L_181|(int64_t)((int64_t)((int64_t)((int32_t)33554432))))); } IL_035a: { IL2CPP_RUNTIME_CLASS_INIT(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); int32_t L_182 = ((Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields*)il2cpp_codegen_static_fields_for(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var))->get_s_IdnScope_22(); il2cpp_codegen_memory_barrier(); if (!L_182) { goto IL_04cf; } } { IL2CPP_RUNTIME_CLASS_INIT(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); int32_t L_183 = ((Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields*)il2cpp_codegen_static_fields_for(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var))->get_s_IdnScope_22(); il2cpp_codegen_memory_barrier(); if ((!(((uint32_t)L_183) == ((uint32_t)1)))) { goto IL_0390; } } { Il2CppChar* L_184 = ___pString0; int32_t L_185 = V_0; String_t* L_186; L_186 = String_CreateString_m854F19B67F5E1B63737E096BF53CC56AB12AF777(NULL, (Il2CppChar*)(Il2CppChar*)L_184, 0, L_185, /*hidden argument*/NULL); bool L_187; L_187 = Uri_IsIntranet_m89BF3C395C8D960B103DF056976B7C369231270C(__this, L_186, /*hidden argument*/NULL); if (!L_187) { goto IL_0390; } } { uint64_t* L_188 = ___flags4; uint64_t* L_189 = ___flags4; int64_t L_190 = *((int64_t*)L_189); *((int64_t*)L_188) = (int64_t)((int64_t)((int64_t)L_190|(int64_t)((int64_t)137438953472LL))); } IL_0390: { UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_191 = ___syntax5; uint64_t* L_192 = ___flags4; int64_t L_193 = *((int64_t*)L_192); bool L_194; L_194 = Uri_AllowIdnStatic_mF38FDCA5248AA93F8823A192D61E2180FEC9C41C(__this, L_191, L_193, /*hidden argument*/NULL); if (!L_194) { goto IL_04cf; } } { V_12 = (bool)1; V_13 = (bool)0; Il2CppChar* L_195 = ___pString0; uint16_t L_196 = V_3; int32_t L_197 = V_0; String_t* L_198; L_198 = DomainNameHelper_UnicodeEquivalent_m3F187B69AA5313A516F863666C0A29292C8F07A3((Il2CppChar*)(Il2CppChar*)L_195, L_196, L_197, (bool*)(&V_12), (bool*)(&V_13), /*hidden argument*/NULL); V_14 = L_198; bool L_199 = V_13; if (!L_199) { goto IL_0420; } } { uint64_t* L_200 = ___flags4; int64_t L_201 = *((int64_t*)L_200); IL2CPP_RUNTIME_CLASS_INIT(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); bool L_202; L_202 = Uri_StaticNotAny_mA7DA612608D1C43837E3DC3E31C02F994746736C(L_201, ((int64_t)8589934592LL), /*hidden argument*/NULL); if (!L_202) { goto IL_03d7; } } { String_t* L_203 = __this->get_m_String_13(); __this->set_m_originalUnicodeString_14(L_203); } IL_03d7: { uint64_t* L_204 = ___flags4; uint64_t* L_205 = ___flags4; int64_t L_206 = *((int64_t*)L_205); *((int64_t*)L_204) = (int64_t)((int64_t)((int64_t)L_206|(int64_t)((int64_t)4294967296LL))); String_t** L_207 = ___newHost6; String_t* L_208 = __this->get_m_originalUnicodeString_14(); int32_t L_209 = V_2; NullCheck(L_208); String_t* L_210; L_210 = String_Substring_m7A39A2AC0893AE940CF4CEC841326D56FFB9D86B(L_208, 0, L_209, /*hidden argument*/NULL); String_t* L_211 = V_9; String_t* L_212 = V_14; String_t* L_213; L_213 = String_Concat_m89EAB4C6A96B0E5C3F87300D6BE78D386B9EFC44(L_210, L_211, L_212, /*hidden argument*/NULL); *((RuntimeObject **)L_207) = (RuntimeObject *)L_213; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_207, (void*)(RuntimeObject *)L_213); uint64_t* L_214 = ___flags4; uint64_t* L_215 = ___flags4; int64_t L_216 = *((int64_t*)L_215); *((int64_t*)L_214) = (int64_t)((int64_t)((int64_t)L_216|(int64_t)((int64_t)((int64_t)((int32_t)33554432))))); Il2CppChar* L_217 = ___pString0; uint16_t L_218 = V_3; int32_t L_219 = V_0; uint16_t L_220 = V_3; String_t* L_221; L_221 = String_CreateString_m854F19B67F5E1B63737E096BF53CC56AB12AF777(NULL, (Il2CppChar*)(Il2CppChar*)L_217, L_218, ((int32_t)il2cpp_codegen_subtract((int32_t)L_219, (int32_t)L_220)), /*hidden argument*/NULL); __this->set_m_DnsSafeHost_16(L_221); V_4 = (bool)1; } IL_0420: { uint64_t* L_222 = ___flags4; uint64_t* L_223 = ___flags4; int64_t L_224 = *((int64_t*)L_223); *((int64_t*)L_222) = (int64_t)((int64_t)((int64_t)L_224|(int64_t)((int64_t)17179869184LL))); goto IL_04cf; } IL_0435: { int32_t L_225 = V_8; if (!((int32_t)((int32_t)L_225&(int32_t)((int32_t)512)))) { goto IL_0495; } } { UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_226 = ___syntax5; NullCheck(L_226); bool L_227; L_227 = UriParser_InFact_m4E58BAFAB5A9BC24854C815FC093E16D4F1CFA4D(L_226, ((int32_t)268435456), /*hidden argument*/NULL); bool L_228 = V_7; if (((int32_t)((int32_t)L_227&(int32_t)L_228))) { goto IL_045e; } } { UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_229 = ___syntax5; NullCheck(L_229); bool L_230; L_230 = UriParser_InFact_m4E58BAFAB5A9BC24854C815FC093E16D4F1CFA4D(L_229, ((int32_t)67108864), /*hidden argument*/NULL); if (!L_230) { goto IL_0495; } } IL_045e: { Il2CppChar* L_231 = ___pString0; uint16_t L_232 = V_3; uint64_t* L_233 = ___flags4; int64_t L_234 = *((int64_t*)L_233); IL2CPP_RUNTIME_CLASS_INIT(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); bool L_235; L_235 = Uri_StaticNotAny_mA7DA612608D1C43837E3DC3E31C02F994746736C(L_234, ((int64_t)((int64_t)((int32_t)536870912))), /*hidden argument*/NULL); bool L_236; L_236 = DomainNameHelper_IsValidByIri_m97F02F9CC9EEE94308F903936E1E5D4322364869((Il2CppChar*)(Il2CppChar*)L_231, L_232, (int32_t*)(&V_0), (bool*)(&V_10), L_235, /*hidden argument*/NULL); if (!L_236) { goto IL_0495; } } { Il2CppChar* L_237 = ___pString0; uint16_t L_238 = V_3; int32_t L_239 = V_0; int32_t L_240 = V_2; bool L_241 = V_5; bool L_242 = V_6; UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_243 = ___syntax5; String_t* L_244 = V_9; uint64_t* L_245 = ___flags4; String_t** L_246 = ___newHost6; int32_t* L_247 = ___err3; Uri_CheckAuthorityHelperHandleDnsIri_m495861D9EEE706767F37270F316951E292C60B7A(__this, (Il2CppChar*)(Il2CppChar*)L_237, L_238, L_239, L_240, L_241, L_242, L_243, L_244, (uint64_t*)L_245, (bool*)(&V_4), (String_t**)L_246, (int32_t*)L_247, /*hidden argument*/NULL); goto IL_04cf; } IL_0495: { int32_t L_248 = V_8; if (!((int32_t)((int32_t)L_248&(int32_t)((int32_t)256)))) { goto IL_04cf; } } { Il2CppChar* L_249 = ___pString0; uint16_t L_250 = V_3; uint64_t* L_251 = ___flags4; int64_t L_252 = *((int64_t*)L_251); IL2CPP_RUNTIME_CLASS_INIT(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); bool L_253; L_253 = Uri_StaticNotAny_mA7DA612608D1C43837E3DC3E31C02F994746736C(L_252, ((int64_t)((int64_t)((int32_t)536870912))), /*hidden argument*/NULL); bool L_254; L_254 = UncNameHelper_IsValid_m7179761E2E8A1F136418B2E4FA00277A192CD38E((Il2CppChar*)(Il2CppChar*)L_249, L_250, (int32_t*)(&V_0), L_253, /*hidden argument*/NULL); if (!L_254) { goto IL_04cf; } } { int32_t L_255 = V_0; uint16_t L_256 = V_3; if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_255, (int32_t)L_256))) > ((int32_t)((int32_t)256)))) { goto IL_04cf; } } { uint64_t* L_257 = ___flags4; uint64_t* L_258 = ___flags4; int64_t L_259 = *((int64_t*)L_258); *((int64_t*)L_257) = (int64_t)((int64_t)((int64_t)L_259|(int64_t)((int64_t)((int64_t)((int32_t)262144))))); } IL_04cf: { int32_t L_260 = V_0; uint16_t L_261 = ___length2; if ((((int32_t)L_260) >= ((int32_t)L_261))) { goto IL_0527; } } { Il2CppChar* L_262 = ___pString0; int32_t L_263 = V_0; int32_t L_264 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_262, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_263), (int32_t)2))))); if ((!(((uint32_t)L_264) == ((uint32_t)((int32_t)92))))) { goto IL_0527; } } { uint64_t* L_265 = ___flags4; int64_t L_266 = *((int64_t*)L_265); if (!((int64_t)((int64_t)L_266&(int64_t)((int64_t)((int64_t)((int32_t)458752)))))) { goto IL_0527; } } { UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_267 = ___syntax5; IL2CPP_RUNTIME_CLASS_INIT(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); bool L_268; L_268 = Uri_StaticIsFile_m3E03FC49813EF629A488CF3093AE0A5675210CED(L_267, /*hidden argument*/NULL); if (L_268) { goto IL_0527; } } { UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_269 = ___syntax5; NullCheck(L_269); bool L_270; L_270 = UriParser_InFact_m4E58BAFAB5A9BC24854C815FC093E16D4F1CFA4D(L_269, ((int32_t)65536), /*hidden argument*/NULL); if (!L_270) { goto IL_0515; } } { int32_t* L_271 = ___err3; *((int32_t*)L_271) = (int32_t)8; uint64_t* L_272 = ___flags4; uint64_t* L_273 = ___flags4; int64_t L_274 = *((int64_t*)L_273); *((int64_t*)L_272) = (int64_t)((int64_t)((int64_t)L_274|(int64_t)((int64_t)((int64_t)((int32_t)458752))))); int32_t L_275 = V_0; return (uint16_t)((int32_t)((uint16_t)L_275)); } IL_0515: { uint64_t* L_276 = ___flags4; uint64_t* L_277 = ___flags4; int64_t L_278 = *((int64_t*)L_277); *((int64_t*)L_276) = (int64_t)((int64_t)((int64_t)L_278&(int64_t)((int64_t)((int64_t)((int32_t)-458753))))); goto IL_0634; } IL_0527: { int32_t L_279 = V_0; uint16_t L_280 = ___length2; if ((((int32_t)L_279) >= ((int32_t)L_280))) { goto IL_0634; } } { Il2CppChar* L_281 = ___pString0; int32_t L_282 = V_0; int32_t L_283 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_281, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_282), (int32_t)2))))); if ((!(((uint32_t)L_283) == ((uint32_t)((int32_t)58))))) { goto IL_0634; } } { UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_284 = ___syntax5; NullCheck(L_284); bool L_285; L_285 = UriParser_InFact_m4E58BAFAB5A9BC24854C815FC093E16D4F1CFA4D(L_284, 8, /*hidden argument*/NULL); if (!L_285) { goto IL_0627; } } { V_15 = 0; int32_t L_286 = V_0; V_16 = L_286; int32_t L_287 = V_0; ___idx1 = (uint16_t)((int32_t)((uint16_t)((int32_t)il2cpp_codegen_add((int32_t)L_287, (int32_t)1)))); goto IL_05d3; } IL_0557: { Il2CppChar* L_288 = ___pString0; uint16_t L_289 = ___idx1; int32_t L_290 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_288, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_289), (int32_t)2))))); V_17 = (uint16_t)((int32_t)((uint16_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_290, (int32_t)((int32_t)48))))); uint16_t L_291 = V_17; if ((((int32_t)L_291) < ((int32_t)0))) { goto IL_0583; } } { uint16_t L_292 = V_17; if ((((int32_t)L_292) > ((int32_t)((int32_t)9)))) { goto IL_0583; } } { int32_t L_293 = V_15; uint16_t L_294 = V_17; int32_t L_295 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_293, (int32_t)((int32_t)10))), (int32_t)L_294)); V_15 = L_295; if ((((int32_t)L_295) <= ((int32_t)((int32_t)65535)))) { goto IL_05cd; } } { goto IL_05d7; } IL_0583: { uint16_t L_296 = V_17; if ((((int32_t)L_296) == ((int32_t)((int32_t)65535)))) { goto IL_05d7; } } { uint16_t L_297 = V_17; if ((((int32_t)L_297) == ((int32_t)((int32_t)15)))) { goto IL_05d7; } } { uint16_t L_298 = V_17; if ((((int32_t)L_298) == ((int32_t)((int32_t)65523)))) { goto IL_05d7; } } { UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_299 = ___syntax5; NullCheck(L_299); bool L_300; L_300 = UriParser_InFact_m4E58BAFAB5A9BC24854C815FC093E16D4F1CFA4D(L_299, ((int32_t)4096), /*hidden argument*/NULL); if (!L_300) { goto IL_05c6; } } { UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_301 = ___syntax5; NullCheck(L_301); bool L_302; L_302 = UriParser_NotAny_m6A42FAC623F0EBDE441782DAC3E3B2ED34756D91(L_301, ((int32_t)65536), /*hidden argument*/NULL); if (!L_302) { goto IL_05c6; } } { uint64_t* L_303 = ___flags4; uint64_t* L_304 = ___flags4; int64_t L_305 = *((int64_t*)L_304); *((int64_t*)L_303) = (int64_t)((int64_t)((int64_t)L_305&(int64_t)((int64_t)((int64_t)((int32_t)-458753))))); goto IL_05d7; } IL_05c6: { int32_t* L_306 = ___err3; *((int32_t*)L_306) = (int32_t)((int32_t)10); uint16_t L_307 = ___idx1; return L_307; } IL_05cd: { uint16_t L_308 = ___idx1; ___idx1 = (uint16_t)((int32_t)((uint16_t)((int32_t)il2cpp_codegen_add((int32_t)L_308, (int32_t)1)))); } IL_05d3: { uint16_t L_309 = ___idx1; uint16_t L_310 = ___length2; if ((((int32_t)L_309) < ((int32_t)L_310))) { goto IL_0557; } } IL_05d7: { int32_t L_311 = V_15; if ((((int32_t)L_311) <= ((int32_t)((int32_t)65535)))) { goto IL_0604; } } { UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_312 = ___syntax5; NullCheck(L_312); bool L_313; L_313 = UriParser_InFact_m4E58BAFAB5A9BC24854C815FC093E16D4F1CFA4D(L_312, ((int32_t)4096), /*hidden argument*/NULL); if (!L_313) { goto IL_05fd; } } { uint64_t* L_314 = ___flags4; uint64_t* L_315 = ___flags4; int64_t L_316 = *((int64_t*)L_315); *((int64_t*)L_314) = (int64_t)((int64_t)((int64_t)L_316&(int64_t)((int64_t)((int64_t)((int32_t)-458753))))); goto IL_0604; } IL_05fd: { int32_t* L_317 = ___err3; *((int32_t*)L_317) = (int32_t)((int32_t)10); uint16_t L_318 = ___idx1; return L_318; } IL_0604: { bool L_319 = V_5; bool L_320 = V_6; bool L_321 = V_4; if (!((int32_t)((int32_t)((int32_t)((int32_t)L_319&(int32_t)L_320))&(int32_t)L_321))) { goto IL_0634; } } { String_t** L_322 = ___newHost6; String_t** L_323 = ___newHost6; String_t* L_324 = *((String_t**)L_323); Il2CppChar* L_325 = ___pString0; int32_t L_326 = V_16; uint16_t L_327 = ___idx1; int32_t L_328 = V_16; String_t* L_329; L_329 = String_CreateString_m854F19B67F5E1B63737E096BF53CC56AB12AF777(NULL, (Il2CppChar*)(Il2CppChar*)L_325, L_326, ((int32_t)il2cpp_codegen_subtract((int32_t)L_327, (int32_t)L_328)), /*hidden argument*/NULL); String_t* L_330; L_330 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(L_324, L_329, /*hidden argument*/NULL); *((RuntimeObject **)L_322) = (RuntimeObject *)L_330; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_322, (void*)(RuntimeObject *)L_330); goto IL_0634; } IL_0627: { uint64_t* L_331 = ___flags4; uint64_t* L_332 = ___flags4; int64_t L_333 = *((int64_t*)L_332); *((int64_t*)L_331) = (int64_t)((int64_t)((int64_t)L_333&(int64_t)((int64_t)((int64_t)((int32_t)-458753))))); } IL_0634: { uint64_t* L_334 = ___flags4; int64_t L_335 = *((int64_t*)L_334); if (((int64_t)((int64_t)L_335&(int64_t)((int64_t)((int64_t)((int32_t)458752)))))) { goto IL_07be; } } { uint64_t* L_336 = ___flags4; uint64_t* L_337 = ___flags4; int64_t L_338 = *((int64_t*)L_337); *((int64_t*)L_336) = (int64_t)((int64_t)((int64_t)L_338&(int64_t)((int64_t)((int64_t)((int32_t)-2097153))))); UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_339 = ___syntax5; NullCheck(L_339); bool L_340; L_340 = UriParser_InFact_m4E58BAFAB5A9BC24854C815FC093E16D4F1CFA4D(L_339, ((int32_t)4096), /*hidden argument*/NULL); if (!L_340) { goto IL_06b2; } } { uint64_t* L_341 = ___flags4; uint64_t* L_342 = ___flags4; int64_t L_343 = *((int64_t*)L_342); *((int64_t*)L_341) = (int64_t)((int64_t)((int64_t)L_343|(int64_t)((int64_t)((int64_t)((int32_t)327680))))); uint16_t L_344 = ___idx1; V_0 = L_344; goto IL_0694; } IL_066f: { Il2CppChar* L_345 = ___pString0; int32_t L_346 = V_0; int32_t L_347 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_345, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_346), (int32_t)2))))); if ((((int32_t)L_347) == ((int32_t)((int32_t)47)))) { goto IL_0698; } } { Il2CppChar* L_348 = ___pString0; int32_t L_349 = V_0; int32_t L_350 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_348, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_349), (int32_t)2))))); if ((((int32_t)L_350) == ((int32_t)((int32_t)63)))) { goto IL_0698; } } { Il2CppChar* L_351 = ___pString0; int32_t L_352 = V_0; int32_t L_353 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_351, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_352), (int32_t)2))))); if ((((int32_t)L_353) == ((int32_t)((int32_t)35)))) { goto IL_0698; } } { int32_t L_354 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_354, (int32_t)1)); } IL_0694: { int32_t L_355 = V_0; uint16_t L_356 = ___length2; if ((((int32_t)L_355) < ((int32_t)L_356))) { goto IL_066f; } } IL_0698: { Il2CppChar* L_357 = ___pString0; int32_t L_358 = V_2; int32_t L_359 = V_0; bool L_360 = V_5; bool L_361 = V_6; UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_362 = ___syntax5; uint64_t* L_363 = ___flags4; String_t** L_364 = ___newHost6; int32_t* L_365 = ___err3; Uri_CheckAuthorityHelperHandleAnyHostIri_m25D24DA750D1E2D025C22CF6D2BAD269AB3FA21B(__this, (Il2CppChar*)(Il2CppChar*)L_357, L_358, L_359, L_360, L_361, L_362, (uint64_t*)L_363, (String_t**)L_364, (int32_t*)L_365, /*hidden argument*/NULL); goto IL_07be; } IL_06b2: { UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_366 = ___syntax5; NullCheck(L_366); bool L_367; L_367 = UriParser_InFact_m4E58BAFAB5A9BC24854C815FC093E16D4F1CFA4D(L_366, ((int32_t)65536), /*hidden argument*/NULL); if (!L_367) { goto IL_078c; } } { V_18 = (bool)0; uint16_t L_368 = ___idx1; V_19 = L_368; uint16_t L_369 = ___idx1; V_0 = L_369; goto IL_071f; } IL_06cd: { bool L_370 = V_18; if (!L_370) { goto IL_06f2; } } { Il2CppChar* L_371 = ___pString0; int32_t L_372 = V_0; int32_t L_373 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_371, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_372), (int32_t)2))))); if ((((int32_t)L_373) == ((int32_t)((int32_t)47)))) { goto IL_0723; } } { Il2CppChar* L_374 = ___pString0; int32_t L_375 = V_0; int32_t L_376 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_374, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_375), (int32_t)2))))); if ((((int32_t)L_376) == ((int32_t)((int32_t)63)))) { goto IL_0723; } } { Il2CppChar* L_377 = ___pString0; int32_t L_378 = V_0; int32_t L_379 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_377, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_378), (int32_t)2))))); if ((((int32_t)L_379) == ((int32_t)((int32_t)35)))) { goto IL_0723; } } IL_06f2: { int32_t L_380 = V_0; uint16_t L_381 = ___idx1; if ((((int32_t)L_380) >= ((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_381, (int32_t)2))))) { goto IL_0708; } } { Il2CppChar* L_382 = ___pString0; int32_t L_383 = V_0; int32_t L_384 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_382, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_383), (int32_t)2))))); if ((!(((uint32_t)L_384) == ((uint32_t)((int32_t)46))))) { goto IL_0708; } } { V_18 = (bool)1; goto IL_071b; } IL_0708: { int32_t* L_385 = ___err3; *((int32_t*)L_385) = (int32_t)8; uint64_t* L_386 = ___flags4; uint64_t* L_387 = ___flags4; int64_t L_388 = *((int64_t*)L_387); *((int64_t*)L_386) = (int64_t)((int64_t)((int64_t)L_388|(int64_t)((int64_t)((int64_t)((int32_t)458752))))); uint16_t L_389 = ___idx1; return L_389; } IL_071b: { int32_t L_390 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_390, (int32_t)1)); } IL_071f: { int32_t L_391 = V_0; uint16_t L_392 = ___length2; if ((((int32_t)L_391) < ((int32_t)L_392))) { goto IL_06cd; } } IL_0723: { uint64_t* L_393 = ___flags4; uint64_t* L_394 = ___flags4; int64_t L_395 = *((int64_t*)L_394); *((int64_t*)L_393) = (int64_t)((int64_t)((int64_t)L_395|(int64_t)((int64_t)((int64_t)((int32_t)327680))))); bool L_396 = V_5; bool L_397 = V_6; if (!((int32_t)((int32_t)L_396&(int32_t)L_397))) { goto IL_07be; } } { uint64_t* L_398 = ___flags4; int64_t L_399 = *((int64_t*)L_398); IL2CPP_RUNTIME_CLASS_INIT(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); bool L_400; L_400 = Uri_StaticNotAny_mA7DA612608D1C43837E3DC3E31C02F994746736C(L_399, ((int64_t)17179869184LL), /*hidden argument*/NULL); if (!L_400) { goto IL_07be; } } { Il2CppChar* L_401 = ___pString0; int32_t L_402 = V_19; int32_t L_403 = V_0; int32_t L_404 = V_19; String_t* L_405; L_405 = String_CreateString_m854F19B67F5E1B63737E096BF53CC56AB12AF777(NULL, (Il2CppChar*)(Il2CppChar*)L_401, L_402, ((int32_t)il2cpp_codegen_subtract((int32_t)L_403, (int32_t)L_404)), /*hidden argument*/NULL); V_20 = L_405; } IL_075b: try { // begin try (depth: 1) String_t** L_406 = ___newHost6; String_t** L_407 = ___newHost6; String_t* L_408 = *((String_t**)L_407); String_t* L_409 = V_20; NullCheck(L_409); String_t* L_410; L_410 = String_Normalize_m8CD42072C9F7B418990609EB63C5F7E1328321A9(L_409, 1, /*hidden argument*/NULL); String_t* L_411; L_411 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(L_408, L_410, /*hidden argument*/NULL); *((RuntimeObject **)L_406) = (RuntimeObject *)L_411; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_406, (void*)(RuntimeObject *)L_411); goto IL_077a; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) goto CATCH_0770; throw e; } CATCH_0770: { // begin catch(System.ArgumentException) int32_t* L_412 = ___err3; *((int32_t*)L_412) = (int32_t)1; uint16_t L_413 = ___idx1; V_11 = L_413; goto IL_07c1; } // end catch (depth: 1) IL_077a: { uint64_t* L_414 = ___flags4; uint64_t* L_415 = ___flags4; int64_t L_416 = *((int64_t*)L_415); *((int64_t*)L_414) = (int64_t)((int64_t)((int64_t)L_416|(int64_t)((int64_t)17179869184LL))); goto IL_07be; } IL_078c: { UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_417 = ___syntax5; NullCheck(L_417); bool L_418; L_418 = UriParser_InFact_m4E58BAFAB5A9BC24854C815FC093E16D4F1CFA4D(L_417, 1, /*hidden argument*/NULL); if (L_418) { goto IL_07ab; } } { UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_419 = ___syntax5; NullCheck(L_419); bool L_420; L_420 = UriParser_InFact_m4E58BAFAB5A9BC24854C815FC093E16D4F1CFA4D(L_419, ((int32_t)16384), /*hidden argument*/NULL); if (!L_420) { goto IL_07be; } } { IL2CPP_RUNTIME_CLASS_INIT(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_il2cpp_TypeInfo_var); bool L_421; L_421 = UriParser_get_ShouldUseLegacyV2Quirks_mB8917CAC10CD13E44F2EB21D4033044BEAF132B2(/*hidden argument*/NULL); if (L_421) { goto IL_07be; } } IL_07ab: { int32_t* L_422 = ___err3; *((int32_t*)L_422) = (int32_t)8; uint64_t* L_423 = ___flags4; uint64_t* L_424 = ___flags4; int64_t L_425 = *((int64_t*)L_424); *((int64_t*)L_423) = (int64_t)((int64_t)((int64_t)L_425|(int64_t)((int64_t)((int64_t)((int32_t)458752))))); uint16_t L_426 = ___idx1; return L_426; } IL_07be: { int32_t L_427 = V_0; return (uint16_t)((int32_t)((uint16_t)L_427)); } IL_07c1: { uint16_t L_428 = V_11; return L_428; } } // System.Void System.Uri::CheckAuthorityHelperHandleDnsIri(System.Char*,System.UInt16,System.Int32,System.Int32,System.Boolean,System.Boolean,System.UriParser,System.String,System.Uri/Flags&,System.Boolean&,System.String&,System.ParsingError&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Uri_CheckAuthorityHelperHandleDnsIri_m495861D9EEE706767F37270F316951E292C60B7A (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, Il2CppChar* ___pString0, uint16_t ___start1, int32_t ___end2, int32_t ___startInput3, bool ___iriParsing4, bool ___hasUnicode5, UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * ___syntax6, String_t* ___userInfoString7, uint64_t* ___flags8, bool* ___justNormalized9, String_t** ___newHost10, int32_t* ___err11, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } bool V_0 = false; bool V_1 = false; String_t* V_2 = NULL; String_t* V_3 = NULL; String_t* V_4 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 2); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); String_t* G_B12_0 = NULL; String_t** G_B12_1 = NULL; String_t* G_B11_0 = NULL; String_t** G_B11_1 = NULL; String_t* G_B13_0 = NULL; String_t* G_B13_1 = NULL; String_t** G_B13_2 = NULL; String_t* G_B19_0 = NULL; String_t** G_B19_1 = NULL; String_t* G_B18_0 = NULL; String_t** G_B18_1 = NULL; String_t* G_B20_0 = NULL; String_t* G_B20_1 = NULL; String_t** G_B20_2 = NULL; int32_t G_B27_0 = 0; String_t* G_B33_0 = NULL; String_t** G_B33_1 = NULL; String_t* G_B32_0 = NULL; String_t** G_B32_1 = NULL; String_t* G_B34_0 = NULL; String_t* G_B34_1 = NULL; String_t** G_B34_2 = NULL; { uint64_t* L_0 = ___flags8; uint64_t* L_1 = ___flags8; int64_t L_2 = *((int64_t*)L_1); *((int64_t*)L_0) = (int64_t)((int64_t)((int64_t)L_2|(int64_t)((int64_t)((int64_t)((int32_t)196608))))); IL2CPP_RUNTIME_CLASS_INIT(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); int32_t L_3 = ((Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields*)il2cpp_codegen_static_fields_for(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var))->get_s_IdnScope_22(); il2cpp_codegen_memory_barrier(); if ((!(((uint32_t)L_3) == ((uint32_t)1)))) { goto IL_0037; } } { Il2CppChar* L_4 = ___pString0; int32_t L_5 = ___end2; String_t* L_6; L_6 = String_CreateString_m854F19B67F5E1B63737E096BF53CC56AB12AF777(NULL, (Il2CppChar*)(Il2CppChar*)L_4, 0, L_5, /*hidden argument*/NULL); bool L_7; L_7 = Uri_IsIntranet_m89BF3C395C8D960B103DF056976B7C369231270C(__this, L_6, /*hidden argument*/NULL); if (!L_7) { goto IL_0037; } } { uint64_t* L_8 = ___flags8; uint64_t* L_9 = ___flags8; int64_t L_10 = *((int64_t*)L_9); *((int64_t*)L_8) = (int64_t)((int64_t)((int64_t)L_10|(int64_t)((int64_t)137438953472LL))); } IL_0037: { UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_11 = ___syntax6; uint64_t* L_12 = ___flags8; int64_t L_13 = *((int64_t*)L_12); bool L_14; L_14 = Uri_AllowIdnStatic_mF38FDCA5248AA93F8823A192D61E2180FEC9C41C(__this, L_11, L_13, /*hidden argument*/NULL); if (!L_14) { goto IL_0185; } } { V_0 = (bool)1; V_1 = (bool)0; Il2CppChar* L_15 = ___pString0; uint16_t L_16 = ___start1; int32_t L_17 = ___end2; String_t* L_18; L_18 = DomainNameHelper_IdnEquivalent_mBA80E13A0C970D723F1A05F175F6B96E0DE3C974((Il2CppChar*)(Il2CppChar*)L_15, L_16, L_17, (bool*)(&V_0), (bool*)(&V_1), /*hidden argument*/NULL); V_2 = L_18; String_t* L_19 = V_2; Il2CppChar* L_20 = ___pString0; uint16_t L_21 = ___start1; int32_t L_22 = ___end2; String_t* L_23; L_23 = DomainNameHelper_UnicodeEquivalent_m862F489809AFF128883F7E52A9B56D0169AE5168(L_19, (Il2CppChar*)(Il2CppChar*)L_20, L_21, L_22, /*hidden argument*/NULL); V_3 = L_23; bool L_24 = V_0; if (L_24) { goto IL_0075; } } { uint64_t* L_25 = ___flags8; uint64_t* L_26 = ___flags8; int64_t L_27 = *((int64_t*)L_26); *((int64_t*)L_25) = (int64_t)((int64_t)((int64_t)L_27|(int64_t)((int64_t)68719476736LL))); } IL_0075: { bool L_28 = V_1; if (!L_28) { goto IL_0088; } } { uint64_t* L_29 = ___flags8; uint64_t* L_30 = ___flags8; int64_t L_31 = *((int64_t*)L_30); *((int64_t*)L_29) = (int64_t)((int64_t)((int64_t)L_31|(int64_t)((int64_t)4294967296LL))); } IL_0088: { bool L_32 = V_0; bool L_33 = V_1; if (!((int32_t)((int32_t)L_32&(int32_t)L_33))) { goto IL_00dd; } } { uint64_t* L_34 = ___flags8; int64_t L_35 = *((int64_t*)L_34); IL2CPP_RUNTIME_CLASS_INIT(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); bool L_36; L_36 = Uri_StaticNotAny_mA7DA612608D1C43837E3DC3E31C02F994746736C(L_35, ((int64_t)8589934592LL), /*hidden argument*/NULL); if (!L_36) { goto IL_00dd; } } { String_t* L_37 = __this->get_m_String_13(); __this->set_m_originalUnicodeString_14(L_37); String_t** L_38 = ___newHost10; String_t* L_39 = __this->get_m_originalUnicodeString_14(); int32_t L_40 = ___startInput3; NullCheck(L_39); String_t* L_41; L_41 = String_Substring_m7A39A2AC0893AE940CF4CEC841326D56FFB9D86B(L_39, 0, L_40, /*hidden argument*/NULL); uint64_t* L_42 = ___flags8; int64_t L_43 = *((int64_t*)L_42); IL2CPP_RUNTIME_CLASS_INIT(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); bool L_44; L_44 = Uri_StaticInFact_m6B17A3B95B81DABD390B643ABD9ADAA316D5EF98(L_43, ((int64_t)((int64_t)((int32_t)2097152))), /*hidden argument*/NULL); G_B11_0 = L_41; G_B11_1 = L_38; if (L_44) { G_B12_0 = L_41; G_B12_1 = L_38; goto IL_00cf; } } { G_B13_0 = ((String_t*)(NULL)); G_B13_1 = G_B11_0; G_B13_2 = G_B11_1; goto IL_00d1; } IL_00cf: { String_t* L_45 = ___userInfoString7; G_B13_0 = L_45; G_B13_1 = G_B12_0; G_B13_2 = G_B12_1; } IL_00d1: { String_t* L_46; L_46 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(G_B13_1, G_B13_0, /*hidden argument*/NULL); *((RuntimeObject **)G_B13_2) = (RuntimeObject *)L_46; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)G_B13_2, (void*)(RuntimeObject *)L_46); bool* L_47 = ___justNormalized9; *((int8_t*)L_47) = (int8_t)1; goto IL_0142; } IL_00dd: { bool L_48 = ___iriParsing4; if (L_48) { goto IL_0142; } } { uint64_t* L_49 = ___flags8; int64_t L_50 = *((int64_t*)L_49); IL2CPP_RUNTIME_CLASS_INIT(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); bool L_51; L_51 = Uri_StaticInFact_m6B17A3B95B81DABD390B643ABD9ADAA316D5EF98(L_50, ((int64_t)68719476736LL), /*hidden argument*/NULL); if (L_51) { goto IL_0107; } } { uint64_t* L_52 = ___flags8; int64_t L_53 = *((int64_t*)L_52); IL2CPP_RUNTIME_CLASS_INIT(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); bool L_54; L_54 = Uri_StaticInFact_m6B17A3B95B81DABD390B643ABD9ADAA316D5EF98(L_53, ((int64_t)4294967296LL), /*hidden argument*/NULL); if (!L_54) { goto IL_0142; } } IL_0107: { String_t* L_55 = __this->get_m_String_13(); __this->set_m_originalUnicodeString_14(L_55); String_t** L_56 = ___newHost10; String_t* L_57 = __this->get_m_originalUnicodeString_14(); int32_t L_58 = ___startInput3; NullCheck(L_57); String_t* L_59; L_59 = String_Substring_m7A39A2AC0893AE940CF4CEC841326D56FFB9D86B(L_57, 0, L_58, /*hidden argument*/NULL); uint64_t* L_60 = ___flags8; int64_t L_61 = *((int64_t*)L_60); IL2CPP_RUNTIME_CLASS_INIT(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); bool L_62; L_62 = Uri_StaticInFact_m6B17A3B95B81DABD390B643ABD9ADAA316D5EF98(L_61, ((int64_t)((int64_t)((int32_t)2097152))), /*hidden argument*/NULL); G_B18_0 = L_59; G_B18_1 = L_56; if (L_62) { G_B19_0 = L_59; G_B19_1 = L_56; goto IL_0136; } } { G_B20_0 = ((String_t*)(NULL)); G_B20_1 = G_B18_0; G_B20_2 = G_B18_1; goto IL_0138; } IL_0136: { String_t* L_63 = ___userInfoString7; G_B20_0 = L_63; G_B20_1 = G_B19_0; G_B20_2 = G_B19_1; } IL_0138: { String_t* L_64; L_64 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(G_B20_1, G_B20_0, /*hidden argument*/NULL); *((RuntimeObject **)G_B20_2) = (RuntimeObject *)L_64; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)G_B20_2, (void*)(RuntimeObject *)L_64); bool* L_65 = ___justNormalized9; *((int8_t*)L_65) = (int8_t)1; } IL_0142: { bool L_66 = V_0; if (!L_66) { goto IL_0148; } } { bool L_67 = V_1; if (!L_67) { goto IL_0161; } } IL_0148: { String_t* L_68 = V_2; __this->set_m_DnsSafeHost_16(L_68); String_t** L_69 = ___newHost10; String_t** L_70 = ___newHost10; String_t* L_71 = *((String_t**)L_70); String_t* L_72 = V_3; String_t* L_73; L_73 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(L_71, L_72, /*hidden argument*/NULL); *((RuntimeObject **)L_69) = (RuntimeObject *)L_73; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_69, (void*)(RuntimeObject *)L_73); bool* L_74 = ___justNormalized9; *((int8_t*)L_74) = (int8_t)1; goto IL_01bc; } IL_0161: { bool L_75 = V_0; if (!L_75) { goto IL_016a; } } { bool L_76 = V_1; G_B27_0 = ((((int32_t)L_76) == ((int32_t)0))? 1 : 0); goto IL_016b; } IL_016a: { G_B27_0 = 0; } IL_016b: { bool L_77 = ___iriParsing4; bool L_78 = ___hasUnicode5; if (!((int32_t)((int32_t)((int32_t)((int32_t)G_B27_0&(int32_t)L_77))&(int32_t)L_78))) { goto IL_01bc; } } { String_t** L_79 = ___newHost10; String_t** L_80 = ___newHost10; String_t* L_81 = *((String_t**)L_80); String_t* L_82 = V_3; String_t* L_83; L_83 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(L_81, L_82, /*hidden argument*/NULL); *((RuntimeObject **)L_79) = (RuntimeObject *)L_83; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_79, (void*)(RuntimeObject *)L_83); bool* L_84 = ___justNormalized9; *((int8_t*)L_84) = (int8_t)1; goto IL_01bc; } IL_0185: { bool L_85 = ___hasUnicode5; if (!L_85) { goto IL_01bc; } } { Il2CppChar* L_86 = ___pString0; uint16_t L_87 = ___start1; int32_t L_88 = ___end2; uint16_t L_89 = ___start1; IL2CPP_RUNTIME_CLASS_INIT(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); String_t* L_90; L_90 = Uri_StripBidiControlCharacter_m17F47758CA4DA1A5D21B3D39D00E8364DC2CAF50((Il2CppChar*)(Il2CppChar*)L_86, L_87, ((int32_t)il2cpp_codegen_subtract((int32_t)L_88, (int32_t)L_89)), /*hidden argument*/NULL); V_4 = L_90; } IL_0195: try { // begin try (depth: 1) { String_t** L_91 = ___newHost10; String_t** L_92 = ___newHost10; String_t* L_93 = *((String_t**)L_92); String_t* L_94 = V_4; G_B32_0 = L_93; G_B32_1 = L_91; if (L_94) { G_B33_0 = L_93; G_B33_1 = L_91; goto IL_01a1; } } IL_019e: { G_B34_0 = ((String_t*)(NULL)); G_B34_1 = G_B32_0; G_B34_2 = G_B32_1; goto IL_01a9; } IL_01a1: { String_t* L_95 = V_4; NullCheck(L_95); String_t* L_96; L_96 = String_Normalize_m8CD42072C9F7B418990609EB63C5F7E1328321A9(L_95, 1, /*hidden argument*/NULL); G_B34_0 = L_96; G_B34_1 = G_B33_0; G_B34_2 = G_B33_1; } IL_01a9: { String_t* L_97; L_97 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(G_B34_1, G_B34_0, /*hidden argument*/NULL); *((RuntimeObject **)G_B34_2) = (RuntimeObject *)L_97; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)G_B34_2, (void*)(RuntimeObject *)L_97); goto IL_01b8; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) goto CATCH_01b1; throw e; } CATCH_01b1: { // begin catch(System.ArgumentException) int32_t* L_98 = ___err11; *((int32_t*)L_98) = (int32_t)8; goto IL_01b8; } // end catch (depth: 1) IL_01b8: { bool* L_99 = ___justNormalized9; *((int8_t*)L_99) = (int8_t)1; } IL_01bc: { uint64_t* L_100 = ___flags8; uint64_t* L_101 = ___flags8; int64_t L_102 = *((int64_t*)L_101); *((int64_t*)L_100) = (int64_t)((int64_t)((int64_t)L_102|(int64_t)((int64_t)17179869184LL))); return; } } // System.Void System.Uri::CheckAuthorityHelperHandleAnyHostIri(System.Char*,System.Int32,System.Int32,System.Boolean,System.Boolean,System.UriParser,System.Uri/Flags&,System.String&,System.ParsingError&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Uri_CheckAuthorityHelperHandleAnyHostIri_m25D24DA750D1E2D025C22CF6D2BAD269AB3FA21B (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, Il2CppChar* ___pString0, int32_t ___startInput1, int32_t ___end2, bool ___iriParsing3, bool ___hasUnicode4, UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * ___syntax5, uint64_t* ___flags6, String_t** ___newHost7, int32_t* ___err8, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; bool V_1 = false; bool V_2 = false; String_t* V_3 = NULL; String_t* V_4 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 2); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { uint64_t* L_0 = ___flags6; int64_t L_1 = *((int64_t*)L_0); IL2CPP_RUNTIME_CLASS_INIT(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); bool L_2; L_2 = Uri_StaticNotAny_mA7DA612608D1C43837E3DC3E31C02F994746736C(L_1, ((int64_t)17179869184LL), /*hidden argument*/NULL); if (!L_2) { goto IL_0124; } } { UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_3 = ___syntax5; uint64_t* L_4 = ___flags6; int64_t L_5 = *((int64_t*)L_4); bool L_6; L_6 = Uri_AllowIdnStatic_mF38FDCA5248AA93F8823A192D61E2180FEC9C41C(__this, L_3, L_5, /*hidden argument*/NULL); if (L_6) { goto IL_002d; } } { bool L_7 = ___iriParsing3; bool L_8 = ___hasUnicode4; if (!((int32_t)((int32_t)L_7&(int32_t)L_8))) { goto IL_0124; } } IL_002d: { Il2CppChar* L_9 = ___pString0; int32_t L_10 = ___startInput1; int32_t L_11 = ___end2; int32_t L_12 = ___startInput1; String_t* L_13; L_13 = String_CreateString_m854F19B67F5E1B63737E096BF53CC56AB12AF777(NULL, (Il2CppChar*)(Il2CppChar*)L_9, L_10, ((int32_t)il2cpp_codegen_subtract((int32_t)L_11, (int32_t)L_12)), /*hidden argument*/NULL); V_0 = L_13; UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_14 = ___syntax5; uint64_t* L_15 = ___flags6; int64_t L_16 = *((int64_t*)L_15); bool L_17; L_17 = Uri_AllowIdnStatic_mF38FDCA5248AA93F8823A192D61E2180FEC9C41C(__this, L_14, L_16, /*hidden argument*/NULL); if (!L_17) { goto IL_00f8; } } { V_1 = (bool)1; V_2 = (bool)0; Il2CppChar* L_18 = ___pString0; int32_t L_19 = ___startInput1; int32_t L_20 = ___end2; String_t* L_21; L_21 = DomainNameHelper_UnicodeEquivalent_m3F187B69AA5313A516F863666C0A29292C8F07A3((Il2CppChar*)(Il2CppChar*)L_18, L_19, L_20, (bool*)(&V_1), (bool*)(&V_2), /*hidden argument*/NULL); V_3 = L_21; bool L_22 = V_1; bool L_23 = V_2; if (((int32_t)((int32_t)L_22&(int32_t)L_23))) { goto IL_0061; } } { bool L_24 = V_1; if (L_24) { goto IL_0094; } } IL_0061: { bool L_25 = ___iriParsing3; bool L_26 = ___hasUnicode4; if (((int32_t)((int32_t)L_25&(int32_t)L_26))) { goto IL_0094; } } { String_t* L_27 = __this->get_m_String_13(); __this->set_m_originalUnicodeString_14(L_27); String_t** L_28 = ___newHost7; String_t* L_29 = __this->get_m_originalUnicodeString_14(); int32_t L_30 = ___startInput1; NullCheck(L_29); String_t* L_31; L_31 = String_Substring_m7A39A2AC0893AE940CF4CEC841326D56FFB9D86B(L_29, 0, L_30, /*hidden argument*/NULL); *((RuntimeObject **)L_28) = (RuntimeObject *)L_31; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_28, (void*)(RuntimeObject *)L_31); uint64_t* L_32 = ___flags6; uint64_t* L_33 = ___flags6; int64_t L_34 = *((int64_t*)L_33); *((int64_t*)L_32) = (int64_t)((int64_t)((int64_t)L_34|(int64_t)((int64_t)8589934592LL))); } IL_0094: { bool L_35 = V_2; if (L_35) { goto IL_009a; } } { bool L_36 = V_1; if (L_36) { goto IL_00e3; } } IL_009a: { String_t** L_37 = ___newHost7; String_t** L_38 = ___newHost7; String_t* L_39 = *((String_t**)L_38); String_t* L_40 = V_3; String_t* L_41; L_41 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(L_39, L_40, /*hidden argument*/NULL); *((RuntimeObject **)L_37) = (RuntimeObject *)L_41; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_37, (void*)(RuntimeObject *)L_41); V_4 = (String_t*)NULL; Il2CppChar* L_42 = ___pString0; int32_t L_43 = ___startInput1; int32_t L_44 = ___end2; String_t* L_45; L_45 = DomainNameHelper_IdnEquivalent_mEF2BE28789962238A2B054639C82F8F711903CDC((Il2CppChar*)(Il2CppChar*)L_42, L_43, L_44, (bool*)(&V_1), (String_t**)(&V_4), /*hidden argument*/NULL); __this->set_m_DnsSafeHost_16(L_45); bool L_46 = V_2; if (!L_46) { goto IL_00ce; } } { uint64_t* L_47 = ___flags6; uint64_t* L_48 = ___flags6; int64_t L_49 = *((int64_t*)L_48); *((int64_t*)L_47) = (int64_t)((int64_t)((int64_t)L_49|(int64_t)((int64_t)4294967296LL))); } IL_00ce: { bool L_50 = V_1; if (L_50) { goto IL_0114; } } { uint64_t* L_51 = ___flags6; uint64_t* L_52 = ___flags6; int64_t L_53 = *((int64_t*)L_52); *((int64_t*)L_51) = (int64_t)((int64_t)((int64_t)L_53|(int64_t)((int64_t)68719476736LL))); goto IL_0114; } IL_00e3: { bool L_54 = ___iriParsing3; bool L_55 = ___hasUnicode4; if (!((int32_t)((int32_t)L_54&(int32_t)L_55))) { goto IL_0114; } } { String_t** L_56 = ___newHost7; String_t** L_57 = ___newHost7; String_t* L_58 = *((String_t**)L_57); String_t* L_59 = V_0; String_t* L_60; L_60 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(L_58, L_59, /*hidden argument*/NULL); *((RuntimeObject **)L_56) = (RuntimeObject *)L_60; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_56, (void*)(RuntimeObject *)L_60); goto IL_0114; } IL_00f8: { } IL_00f9: try { // begin try (depth: 1) String_t** L_61 = ___newHost7; String_t** L_62 = ___newHost7; String_t* L_63 = *((String_t**)L_62); String_t* L_64 = V_0; NullCheck(L_64); String_t* L_65; L_65 = String_Normalize_m8CD42072C9F7B418990609EB63C5F7E1328321A9(L_64, 1, /*hidden argument*/NULL); String_t* L_66; L_66 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(L_63, L_65, /*hidden argument*/NULL); *((RuntimeObject **)L_61) = (RuntimeObject *)L_66; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_61, (void*)(RuntimeObject *)L_66); goto IL_0114; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) goto CATCH_010d; throw e; } CATCH_010d: { // begin catch(System.ArgumentException) int32_t* L_67 = ___err8; *((int32_t*)L_67) = (int32_t)8; goto IL_0114; } // end catch (depth: 1) IL_0114: { uint64_t* L_68 = ___flags6; uint64_t* L_69 = ___flags6; int64_t L_70 = *((int64_t*)L_69); *((int64_t*)L_68) = (int64_t)((int64_t)((int64_t)L_70|(int64_t)((int64_t)17179869184LL))); } IL_0124: { return; } } // System.Void System.Uri::FindEndOfComponent(System.String,System.UInt16&,System.UInt16,System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Uri_FindEndOfComponent_m82D6E67E45114D23F403807E6D711C2A4E574567 (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, String_t* ___input0, uint16_t* ___idx1, uint16_t ___end2, Il2CppChar ___delim3, const RuntimeMethod* method) { Il2CppChar* V_0 = NULL; String_t* V_1 = NULL; { String_t* L_0 = ___input0; 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; L_4 = RuntimeHelpers_get_OffsetToStringData_mEB8E6EAEBAFAB7CD7F7A915B3081785AABB9FC42(/*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; uint16_t* L_6 = ___idx1; uint16_t L_7 = ___end2; Il2CppChar L_8 = ___delim3; Uri_FindEndOfComponent_mFFFB2266B9FDDB757E145586461BF46D26C509C9(__this, (Il2CppChar*)(Il2CppChar*)L_5, (uint16_t*)L_6, L_7, L_8, /*hidden argument*/NULL); V_1 = (String_t*)NULL; return; } } // System.Void System.Uri::FindEndOfComponent(System.Char*,System.UInt16&,System.UInt16,System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Uri_FindEndOfComponent_mFFFB2266B9FDDB757E145586461BF46D26C509C9 (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, Il2CppChar* ___str0, uint16_t* ___idx1, uint16_t ___end2, Il2CppChar ___delim3, const RuntimeMethod* method) { Il2CppChar V_0 = 0x0; uint16_t V_1 = 0; { V_0 = ((int32_t)65535); uint16_t* L_0 = ___idx1; int32_t L_1 = *((uint16_t*)L_0); V_1 = (uint16_t)L_1; goto IL_003f; } IL_000b: { Il2CppChar* L_2 = ___str0; uint16_t L_3 = V_1; int32_t L_4 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_2, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_3), (int32_t)2))))); V_0 = L_4; Il2CppChar L_5 = V_0; Il2CppChar L_6 = ___delim3; if ((((int32_t)L_5) == ((int32_t)L_6))) { goto IL_0043; } } { Il2CppChar L_7 = ___delim3; if ((!(((uint32_t)L_7) == ((uint32_t)((int32_t)63))))) { goto IL_003a; } } { Il2CppChar L_8 = V_0; if ((!(((uint32_t)L_8) == ((uint32_t)((int32_t)35))))) { goto IL_003a; } } { UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_9 = __this->get_m_Syntax_15(); if (!L_9) { goto IL_003a; } } { UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_10 = __this->get_m_Syntax_15(); NullCheck(L_10); bool L_11; L_11 = UriParser_InFact_m4E58BAFAB5A9BC24854C815FC093E16D4F1CFA4D(L_10, ((int32_t)64), /*hidden argument*/NULL); if (L_11) { goto IL_0043; } } IL_003a: { uint16_t L_12 = V_1; V_1 = (uint16_t)((int32_t)((uint16_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)))); } IL_003f: { uint16_t L_13 = V_1; uint16_t L_14 = ___end2; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_000b; } } IL_0043: { uint16_t* L_15 = ___idx1; uint16_t L_16 = V_1; *((int16_t*)L_15) = (int16_t)L_16; return; } } // System.Uri/Check System.Uri::CheckCanonical(System.Char*,System.UInt16&,System.UInt16,System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Uri_CheckCanonical_mFD937A06DC3885481C374ACDD190A3B3E40152F3 (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, Il2CppChar* ___str0, uint16_t* ___idx1, uint16_t ___end2, Il2CppChar ___delim3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UriHelper_tBEFC75B3A4E9E35CB41ADAAE22E0D1D7EE65E53D_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; bool V_1 = false; bool V_2 = false; Il2CppChar V_3 = 0x0; uint16_t V_4 = 0; bool V_5 = false; bool V_6 = false; { V_0 = 0; V_1 = (bool)0; V_2 = (bool)0; V_3 = ((int32_t)65535); uint16_t* L_0 = ___idx1; int32_t L_1 = *((uint16_t*)L_0); V_4 = (uint16_t)L_1; goto IL_0288; } IL_0015: { Il2CppChar* L_2 = ___str0; uint16_t L_3 = V_4; int32_t L_4 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_2, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_3), (int32_t)2))))); V_3 = L_4; Il2CppChar L_5 = V_3; if ((((int32_t)L_5) <= ((int32_t)((int32_t)31)))) { goto IL_0030; } } { Il2CppChar L_6 = V_3; if ((((int32_t)L_6) < ((int32_t)((int32_t)127)))) { goto IL_003e; } } { Il2CppChar L_7 = V_3; if ((((int32_t)L_7) > ((int32_t)((int32_t)159)))) { goto IL_003e; } } IL_0030: { V_1 = (bool)1; V_2 = (bool)1; int32_t L_8 = V_0; V_0 = ((int32_t)((int32_t)L_8|(int32_t)((int32_t)32))); goto IL_0281; } IL_003e: { Il2CppChar L_9 = V_3; if ((((int32_t)L_9) <= ((int32_t)((int32_t)122)))) { goto IL_009f; } } { Il2CppChar L_10 = V_3; if ((((int32_t)L_10) == ((int32_t)((int32_t)126)))) { goto IL_009f; } } { bool L_11 = __this->get_m_iriParsing_19(); if (!L_11) { goto IL_0092; } } { V_5 = (bool)0; int32_t L_12 = V_0; V_0 = ((int32_t)((int32_t)L_12|(int32_t)8)); Il2CppChar L_13 = V_3; IL2CPP_RUNTIME_CLASS_INIT(Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_il2cpp_TypeInfo_var); bool L_14; L_14 = Char_IsHighSurrogate_m7BECD1C98C902946F069D8936F8A557F1F7DFF01(L_13, /*hidden argument*/NULL); if (!L_14) { goto IL_0080; } } { uint16_t L_15 = V_4; uint16_t L_16 = ___end2; if ((((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1))) >= ((int32_t)L_16))) { goto IL_0089; } } { V_6 = (bool)0; Il2CppChar L_17 = V_3; Il2CppChar* L_18 = ___str0; uint16_t L_19 = V_4; int32_t L_20 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_18, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)((int32_t)il2cpp_codegen_add((int32_t)L_19, (int32_t)1))), (int32_t)2))))); bool L_21; L_21 = IriHelper_CheckIriUnicodeRange_m03144D55C396E2870F76F85B29852F8314346A1A(L_17, L_20, (bool*)(&V_6), (bool)1, /*hidden argument*/NULL); V_5 = L_21; goto IL_0089; } IL_0080: { Il2CppChar L_22 = V_3; bool L_23; L_23 = IriHelper_CheckIriUnicodeRange_m5E205B2F096045DE5259E0E98A062DD0813206F6(L_22, (bool)1, /*hidden argument*/NULL); V_5 = L_23; } IL_0089: { bool L_24 = V_5; if (L_24) { goto IL_0092; } } { int32_t L_25 = V_0; V_0 = ((int32_t)((int32_t)L_25|(int32_t)((int32_t)64))); } IL_0092: { bool L_26 = V_1; if (L_26) { goto IL_0281; } } { V_1 = (bool)1; goto IL_0281; } IL_009f: { Il2CppChar L_27 = V_3; Il2CppChar L_28 = ___delim3; if ((((int32_t)L_27) == ((int32_t)L_28))) { goto IL_0290; } } { Il2CppChar L_29 = ___delim3; if ((!(((uint32_t)L_29) == ((uint32_t)((int32_t)63))))) { goto IL_00cc; } } { Il2CppChar L_30 = V_3; if ((!(((uint32_t)L_30) == ((uint32_t)((int32_t)35))))) { goto IL_00cc; } } { UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_31 = __this->get_m_Syntax_15(); if (!L_31) { goto IL_00cc; } } { UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_32 = __this->get_m_Syntax_15(); NullCheck(L_32); bool L_33; L_33 = UriParser_InFact_m4E58BAFAB5A9BC24854C815FC093E16D4F1CFA4D(L_32, ((int32_t)64), /*hidden argument*/NULL); if (L_33) { goto IL_0290; } } IL_00cc: { Il2CppChar L_34 = V_3; if ((!(((uint32_t)L_34) == ((uint32_t)((int32_t)63))))) { goto IL_0110; } } { bool L_35; L_35 = Uri_get_IsImplicitFile_m58AC900A18C84E93F4611F97639112F801629DAA(__this, /*hidden argument*/NULL); if (L_35) { goto IL_0102; } } { UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_36 = __this->get_m_Syntax_15(); if (!L_36) { goto IL_0281; } } { UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_37 = __this->get_m_Syntax_15(); NullCheck(L_37); bool L_38; L_38 = UriParser_InFact_m4E58BAFAB5A9BC24854C815FC093E16D4F1CFA4D(L_37, ((int32_t)32), /*hidden argument*/NULL); if (L_38) { goto IL_0281; } } { Il2CppChar L_39 = ___delim3; if ((((int32_t)L_39) == ((int32_t)((int32_t)65534)))) { goto IL_0281; } } IL_0102: { int32_t L_40 = V_0; V_0 = ((int32_t)((int32_t)L_40|(int32_t)((int32_t)32))); V_2 = (bool)1; V_1 = (bool)1; goto IL_0281; } IL_0110: { Il2CppChar L_41 = V_3; if ((!(((uint32_t)L_41) == ((uint32_t)((int32_t)35))))) { goto IL_0148; } } { V_1 = (bool)1; bool L_42; L_42 = Uri_get_IsImplicitFile_m58AC900A18C84E93F4611F97639112F801629DAA(__this, /*hidden argument*/NULL); if (L_42) { goto IL_013c; } } { UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_43 = __this->get_m_Syntax_15(); if (!L_43) { goto IL_0281; } } { UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_44 = __this->get_m_Syntax_15(); NullCheck(L_44); bool L_45; L_45 = UriParser_InFact_m4E58BAFAB5A9BC24854C815FC093E16D4F1CFA4D(L_44, ((int32_t)64), /*hidden argument*/NULL); if (L_45) { goto IL_0281; } } IL_013c: { int32_t L_46 = V_0; V_0 = ((int32_t)((int32_t)L_46|(int32_t)((int32_t)32))); V_2 = (bool)1; goto IL_0281; } IL_0148: { Il2CppChar L_47 = V_3; if ((((int32_t)L_47) == ((int32_t)((int32_t)47)))) { goto IL_0152; } } { Il2CppChar L_48 = V_3; if ((!(((uint32_t)L_48) == ((uint32_t)((int32_t)92))))) { goto IL_019c; } } IL_0152: { int32_t L_49 = V_0; if (((int32_t)((int32_t)L_49&(int32_t)((int32_t)16)))) { goto IL_0162; } } { Il2CppChar L_50 = V_3; if ((!(((uint32_t)L_50) == ((uint32_t)((int32_t)92))))) { goto IL_0162; } } { int32_t L_51 = V_0; V_0 = ((int32_t)((int32_t)L_51|(int32_t)((int32_t)16))); } IL_0162: { int32_t L_52 = V_0; if (((int32_t)((int32_t)L_52&(int32_t)4))) { goto IL_0281; } } { uint16_t L_53 = V_4; uint16_t L_54 = ___end2; if ((((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_53, (int32_t)1))) == ((int32_t)L_54))) { goto IL_0281; } } { Il2CppChar* L_55 = ___str0; uint16_t L_56 = V_4; int32_t L_57 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_55, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)((int32_t)il2cpp_codegen_add((int32_t)L_56, (int32_t)1))), (int32_t)2))))); if ((((int32_t)L_57) == ((int32_t)((int32_t)47)))) { goto IL_0193; } } { Il2CppChar* L_58 = ___str0; uint16_t L_59 = V_4; int32_t L_60 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_58, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)((int32_t)il2cpp_codegen_add((int32_t)L_59, (int32_t)1))), (int32_t)2))))); if ((!(((uint32_t)L_60) == ((uint32_t)((int32_t)92))))) { goto IL_0281; } } IL_0193: { int32_t L_61 = V_0; V_0 = ((int32_t)((int32_t)L_61|(int32_t)4)); goto IL_0281; } IL_019c: { Il2CppChar L_62 = V_3; if ((!(((uint32_t)L_62) == ((uint32_t)((int32_t)46))))) { goto IL_01ff; } } { int32_t L_63 = V_0; if (((int32_t)((int32_t)L_63&(int32_t)4))) { goto IL_01ad; } } { uint16_t L_64 = V_4; uint16_t L_65 = ___end2; if ((((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_64, (int32_t)1))) == ((int32_t)L_65))) { goto IL_01f6; } } IL_01ad: { Il2CppChar* L_66 = ___str0; uint16_t L_67 = V_4; int32_t L_68 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_66, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)((int32_t)il2cpp_codegen_add((int32_t)L_67, (int32_t)1))), (int32_t)2))))); if ((((int32_t)L_68) == ((int32_t)((int32_t)46)))) { goto IL_01f6; } } { Il2CppChar* L_69 = ___str0; uint16_t L_70 = V_4; int32_t L_71 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_69, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)((int32_t)il2cpp_codegen_add((int32_t)L_70, (int32_t)1))), (int32_t)2))))); if ((((int32_t)L_71) == ((int32_t)((int32_t)47)))) { goto IL_01f6; } } { Il2CppChar* L_72 = ___str0; uint16_t L_73 = V_4; int32_t L_74 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_72, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)((int32_t)il2cpp_codegen_add((int32_t)L_73, (int32_t)1))), (int32_t)2))))); if ((((int32_t)L_74) == ((int32_t)((int32_t)92)))) { goto IL_01f6; } } { Il2CppChar* L_75 = ___str0; uint16_t L_76 = V_4; int32_t L_77 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_75, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)((int32_t)il2cpp_codegen_add((int32_t)L_76, (int32_t)1))), (int32_t)2))))); if ((((int32_t)L_77) == ((int32_t)((int32_t)63)))) { goto IL_01f6; } } { Il2CppChar* L_78 = ___str0; uint16_t L_79 = V_4; int32_t L_80 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_78, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)((int32_t)il2cpp_codegen_add((int32_t)L_79, (int32_t)1))), (int32_t)2))))); if ((!(((uint32_t)L_80) == ((uint32_t)((int32_t)35))))) { goto IL_0281; } } IL_01f6: { int32_t L_81 = V_0; V_0 = ((int32_t)((int32_t)L_81|(int32_t)4)); goto IL_0281; } IL_01ff: { bool L_82 = V_1; if (L_82) { goto IL_0229; } } { Il2CppChar L_83 = V_3; if ((((int32_t)L_83) > ((int32_t)((int32_t)34)))) { goto IL_020c; } } { Il2CppChar L_84 = V_3; if ((!(((uint32_t)L_84) == ((uint32_t)((int32_t)33))))) { goto IL_0225; } } IL_020c: { Il2CppChar L_85 = V_3; if ((((int32_t)L_85) < ((int32_t)((int32_t)91)))) { goto IL_0216; } } { Il2CppChar L_86 = V_3; if ((((int32_t)L_86) <= ((int32_t)((int32_t)94)))) { goto IL_0225; } } IL_0216: { Il2CppChar L_87 = V_3; if ((((int32_t)L_87) == ((int32_t)((int32_t)62)))) { goto IL_0225; } } { Il2CppChar L_88 = V_3; if ((((int32_t)L_88) == ((int32_t)((int32_t)60)))) { goto IL_0225; } } { Il2CppChar L_89 = V_3; if ((!(((uint32_t)L_89) == ((uint32_t)((int32_t)96))))) { goto IL_0229; } } IL_0225: { V_1 = (bool)1; goto IL_0281; } IL_0229: { Il2CppChar L_90 = V_3; if ((!(((uint32_t)L_90) == ((uint32_t)((int32_t)37))))) { goto IL_0281; } } { bool L_91 = V_2; if (L_91) { goto IL_0233; } } { V_2 = (bool)1; } IL_0233: { uint16_t L_92 = V_4; uint16_t L_93 = ___end2; if ((((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_92, (int32_t)2))) >= ((int32_t)L_93))) { goto IL_027c; } } { Il2CppChar* L_94 = ___str0; uint16_t L_95 = V_4; int32_t L_96 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_94, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)((int32_t)il2cpp_codegen_add((int32_t)L_95, (int32_t)1))), (int32_t)2))))); Il2CppChar* L_97 = ___str0; uint16_t L_98 = V_4; int32_t L_99 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_97, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)((int32_t)il2cpp_codegen_add((int32_t)L_98, (int32_t)2))), (int32_t)2))))); IL2CPP_RUNTIME_CLASS_INIT(UriHelper_tBEFC75B3A4E9E35CB41ADAAE22E0D1D7EE65E53D_il2cpp_TypeInfo_var); Il2CppChar L_100; L_100 = UriHelper_EscapedAscii_m80D926F5C8B177B5D041BBFEADEAB2363A324461(L_96, L_99, /*hidden argument*/NULL); Il2CppChar L_101 = L_100; V_3 = L_101; if ((((int32_t)L_101) == ((int32_t)((int32_t)65535)))) { goto IL_027c; } } { Il2CppChar L_102 = V_3; if ((((int32_t)L_102) == ((int32_t)((int32_t)46)))) { goto IL_026b; } } { Il2CppChar L_103 = V_3; if ((((int32_t)L_103) == ((int32_t)((int32_t)47)))) { goto IL_026b; } } { Il2CppChar L_104 = V_3; if ((!(((uint32_t)L_104) == ((uint32_t)((int32_t)92))))) { goto IL_0273; } } IL_026b: { int32_t L_105 = V_0; V_0 = ((int32_t)((int32_t)L_105|(int32_t)((int32_t)128))); } IL_0273: { uint16_t L_106 = V_4; V_4 = (uint16_t)((int32_t)((uint16_t)((int32_t)il2cpp_codegen_add((int32_t)L_106, (int32_t)2)))); goto IL_0281; } IL_027c: { bool L_107 = V_1; if (L_107) { goto IL_0281; } } { V_1 = (bool)1; } IL_0281: { uint16_t L_108 = V_4; V_4 = (uint16_t)((int32_t)((uint16_t)((int32_t)il2cpp_codegen_add((int32_t)L_108, (int32_t)1)))); } IL_0288: { uint16_t L_109 = V_4; uint16_t L_110 = ___end2; if ((((int32_t)L_109) < ((int32_t)L_110))) { goto IL_0015; } } IL_0290: { bool L_111 = V_2; if (!L_111) { goto IL_029c; } } { bool L_112 = V_1; if (L_112) { goto IL_02a7; } } { int32_t L_113 = V_0; V_0 = ((int32_t)((int32_t)L_113|(int32_t)1)); goto IL_02a7; } IL_029c: { int32_t L_114 = V_0; V_0 = ((int32_t)((int32_t)L_114|(int32_t)2)); bool L_115 = V_1; if (L_115) { goto IL_02a7; } } { int32_t L_116 = V_0; V_0 = ((int32_t)((int32_t)L_116|(int32_t)1)); } IL_02a7: { uint16_t* L_117 = ___idx1; uint16_t L_118 = V_4; *((int16_t*)L_117) = (int16_t)L_118; int32_t L_119 = V_0; return L_119; } } // System.Char[] System.Uri::GetCanonicalPath(System.Char[],System.Int32&,System.UriFormat) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* Uri_GetCanonicalPath_mA187EAD590C890FE0623CF7B1EFF4364B57FAF10 (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___dest0, int32_t* ___pos1, int32_t ___formatAs2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UriHelper_tBEFC75B3A4E9E35CB41ADAAE22E0D1D7EE65E53D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral876C4B39B6E4D0187090400768899C71D99DE90D); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; Il2CppChar* V_3 = NULL; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* V_4 = NULL; String_t* V_5 = NULL; Il2CppChar* V_6 = NULL; int32_t V_7 = 0; int32_t V_8 = 0; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* V_9 = NULL; Il2CppChar* V_10 = NULL; int32_t G_B15_0 = 0; int32_t G_B15_1 = 0; int32_t* G_B15_2 = NULL; int32_t G_B15_3 = 0; Il2CppChar* G_B15_4 = NULL; int32_t G_B14_0 = 0; int32_t G_B14_1 = 0; int32_t* G_B14_2 = NULL; int32_t G_B14_3 = 0; Il2CppChar* G_B14_4 = NULL; int32_t G_B16_0 = 0; int32_t G_B16_1 = 0; int32_t G_B16_2 = 0; int32_t* G_B16_3 = NULL; int32_t G_B16_4 = 0; Il2CppChar* G_B16_5 = NULL; int32_t G_B24_0 = 0; int32_t G_B24_1 = 0; int32_t G_B24_2 = 0; int32_t* G_B24_3 = NULL; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* G_B24_4 = NULL; uint16_t G_B24_5 = 0; uint16_t G_B24_6 = 0; String_t* G_B24_7 = NULL; int32_t G_B23_0 = 0; int32_t G_B23_1 = 0; int32_t G_B23_2 = 0; int32_t* G_B23_3 = NULL; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* G_B23_4 = NULL; uint16_t G_B23_5 = 0; uint16_t G_B23_6 = 0; String_t* G_B23_7 = NULL; int32_t G_B25_0 = 0; int32_t G_B25_1 = 0; int32_t G_B25_2 = 0; int32_t G_B25_3 = 0; int32_t* G_B25_4 = NULL; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* G_B25_5 = NULL; uint16_t G_B25_6 = 0; uint16_t G_B25_7 = 0; String_t* G_B25_8 = NULL; int32_t G_B37_0 = 0; int32_t G_B37_1 = 0; int32_t* G_B37_2 = NULL; int32_t G_B37_3 = 0; Il2CppChar* G_B37_4 = NULL; int32_t G_B36_0 = 0; int32_t G_B36_1 = 0; int32_t* G_B36_2 = NULL; int32_t G_B36_3 = 0; Il2CppChar* G_B36_4 = NULL; int32_t G_B38_0 = 0; int32_t G_B38_1 = 0; int32_t G_B38_2 = 0; int32_t* G_B38_3 = NULL; int32_t G_B38_4 = 0; Il2CppChar* G_B38_5 = NULL; int32_t G_B50_0 = 0; int32_t G_B50_1 = 0; int32_t G_B50_2 = 0; int32_t* G_B50_3 = NULL; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* G_B50_4 = NULL; int32_t G_B50_5 = 0; int32_t G_B50_6 = 0; String_t* G_B50_7 = NULL; int32_t G_B49_0 = 0; int32_t G_B49_1 = 0; int32_t G_B49_2 = 0; int32_t* G_B49_3 = NULL; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* G_B49_4 = NULL; int32_t G_B49_5 = 0; int32_t G_B49_6 = 0; String_t* G_B49_7 = NULL; int32_t G_B51_0 = 0; int32_t G_B51_1 = 0; int32_t G_B51_2 = 0; int32_t G_B51_3 = 0; int32_t* G_B51_4 = NULL; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* G_B51_5 = NULL; int32_t G_B51_6 = 0; int32_t G_B51_7 = 0; String_t* G_B51_8 = NULL; int32_t G_B67_0 = 0; int32_t G_B72_0 = 0; int32_t G_B76_0 = 0; { bool L_0; L_0 = Uri_InFact_mF6A06FA7246740D26093421D41D18000AC2CC0C4(__this, ((int64_t)((int64_t)((int32_t)16384))), /*hidden argument*/NULL); if (!L_0) { goto IL_001b; } } { CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_1 = ___dest0; int32_t* L_2 = ___pos1; int32_t* L_3 = ___pos1; int32_t L_4 = *((int32_t*)L_3); V_2 = L_4; int32_t L_5 = V_2; *((int32_t*)L_2) = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)1)); int32_t L_6 = V_2; NullCheck(L_1); (L_1)->SetAt(static_cast<il2cpp_array_size_t>(L_6), (Il2CppChar)((int32_t)47)); } IL_001b: { UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_7 = __this->get_m_Info_18(); NullCheck(L_7); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_8 = L_7->get_address_of_Offset_3(); uint16_t L_9 = L_8->get_Path_4(); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_10 = __this->get_m_Info_18(); NullCheck(L_10); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_11 = L_10->get_address_of_Offset_3(); uint16_t L_12 = L_11->get_Query_5(); if ((!(((uint32_t)L_9) == ((uint32_t)L_12)))) { goto IL_003f; } } { CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_13 = ___dest0; return L_13; } IL_003f: { int32_t* L_14 = ___pos1; int32_t L_15 = *((int32_t*)L_14); V_0 = L_15; uint16_t L_16; L_16 = Uri_get_SecuredPathIndex_m0BE7920E94AA002B4CD2D568BD6E0FD91F0D7F0B(__this, /*hidden argument*/NULL); V_1 = L_16; int32_t L_17 = ___formatAs2; if ((!(((uint32_t)L_17) == ((uint32_t)1)))) { goto IL_0277; } } { bool L_18; L_18 = Uri_InFact_mF6A06FA7246740D26093421D41D18000AC2CC0C4(__this, ((int64_t)((int64_t)((int32_t)8192))), /*hidden argument*/NULL); if (!L_18) { goto IL_013d; } } { String_t* L_19 = __this->get_m_String_13(); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_20 = __this->get_m_Info_18(); NullCheck(L_20); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_21 = L_20->get_address_of_Offset_3(); uint16_t L_22 = L_21->get_Path_4(); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_23 = ___dest0; int32_t L_24 = V_0; UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_25 = __this->get_m_Info_18(); NullCheck(L_25); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_26 = L_25->get_address_of_Offset_3(); uint16_t L_27 = L_26->get_Query_5(); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_28 = __this->get_m_Info_18(); NullCheck(L_28); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_29 = L_28->get_address_of_Offset_3(); uint16_t L_30 = L_29->get_Path_4(); NullCheck(L_19); String_CopyTo_mF77EF8D4E5ABBD2AB7F509FFE9C0C70DC15A27E1(L_19, L_22, L_23, L_24, ((int32_t)il2cpp_codegen_subtract((int32_t)L_27, (int32_t)L_30)), /*hidden argument*/NULL); int32_t L_31 = V_0; UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_32 = __this->get_m_Info_18(); NullCheck(L_32); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_33 = L_32->get_address_of_Offset_3(); uint16_t L_34 = L_33->get_Query_5(); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_35 = __this->get_m_Info_18(); NullCheck(L_35); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_36 = L_35->get_address_of_Offset_3(); uint16_t L_37 = L_36->get_Path_4(); V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_31, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_34, (int32_t)L_37)))); UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_38 = __this->get_m_Syntax_15(); NullCheck(L_38); bool L_39; L_39 = UriParser_InFact_m4E58BAFAB5A9BC24854C815FC093E16D4F1CFA4D(L_38, ((int32_t)33554432), /*hidden argument*/NULL); if (!L_39) { goto IL_0356; } } { bool L_40; L_40 = Uri_InFact_mF6A06FA7246740D26093421D41D18000AC2CC0C4(__this, ((int64_t)((int64_t)((int32_t)16))), /*hidden argument*/NULL); if (!L_40) { goto IL_0356; } } { bool L_41; L_41 = Uri_get_IsImplicitFile_m58AC900A18C84E93F4611F97639112F801629DAA(__this, /*hidden argument*/NULL); if (L_41) { goto IL_0356; } } { CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_42 = ___dest0; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_43 = L_42; V_4 = L_43; if (!L_43) { goto IL_00fd; } } { CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_44 = V_4; NullCheck(L_44); if (((int32_t)((int32_t)(((RuntimeArray*)L_44)->max_length)))) { goto IL_0102; } } IL_00fd: { V_3 = (Il2CppChar*)((uintptr_t)0); goto IL_010c; } IL_0102: { CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_45 = V_4; NullCheck(L_45); V_3 = (Il2CppChar*)((uintptr_t)((L_45)->GetAddressAt(static_cast<il2cpp_array_size_t>(0)))); } IL_010c: { Il2CppChar* L_46 = V_3; int32_t* L_47 = ___pos1; int32_t L_48 = *((int32_t*)L_47); UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_49 = __this->get_m_Syntax_15(); NullCheck(L_49); bool L_50; L_50 = UriParser_InFact_m4E58BAFAB5A9BC24854C815FC093E16D4F1CFA4D(L_49, ((int32_t)4194304), /*hidden argument*/NULL); G_B14_0 = ((int32_t)47); G_B14_1 = ((int32_t)46); G_B14_2 = (&V_0); G_B14_3 = L_48; G_B14_4 = L_46; if (L_50) { G_B15_0 = ((int32_t)47); G_B15_1 = ((int32_t)46); G_B15_2 = (&V_0); G_B15_3 = L_48; G_B15_4 = L_46; goto IL_012e; } } { G_B16_0 = ((int32_t)65535); G_B16_1 = G_B14_0; G_B16_2 = G_B14_1; G_B16_3 = G_B14_2; G_B16_4 = G_B14_3; G_B16_5 = G_B14_4; goto IL_0130; } IL_012e: { G_B16_0 = ((int32_t)92); G_B16_1 = G_B15_0; G_B16_2 = G_B15_1; G_B16_3 = G_B15_2; G_B16_4 = G_B15_3; G_B16_5 = G_B15_4; } IL_0130: { IL2CPP_RUNTIME_CLASS_INIT(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); Uri_UnescapeOnly_m18532EEE1EFF1E8A802527ECC577BA815CC33B1B((Il2CppChar*)(Il2CppChar*)G_B16_5, G_B16_4, (int32_t*)G_B16_3, G_B16_2, G_B16_1, G_B16_0, /*hidden argument*/NULL); V_4 = (CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34*)NULL; goto IL_0356; } IL_013d: { bool L_51; L_51 = Uri_InFact_mF6A06FA7246740D26093421D41D18000AC2CC0C4(__this, ((int64_t)((int64_t)((int32_t)1024))), /*hidden argument*/NULL); if (!L_51) { goto IL_0210; } } { bool L_52; L_52 = Uri_NotAny_m2C222924AE10957D835ECBC887D456FB30DCF969(__this, ((int64_t)((int64_t)((int32_t)524288))), /*hidden argument*/NULL); if (!L_52) { goto IL_0210; } } { String_t* L_53 = __this->get_m_String_13(); V_5 = L_53; int32_t L_54 = V_1; if (!L_54) { goto IL_01c9; } } { String_t* L_55 = V_5; int32_t L_56 = V_1; UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_57 = __this->get_m_Info_18(); NullCheck(L_57); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_58 = L_57->get_address_of_Offset_3(); uint16_t L_59 = L_58->get_Path_4(); NullCheck(L_55); Il2CppChar L_60; L_60 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_55, ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_56, (int32_t)L_59)), (int32_t)1)), /*hidden argument*/NULL); if ((!(((uint32_t)L_60) == ((uint32_t)((int32_t)124))))) { goto IL_01c9; } } { String_t* L_61 = V_5; int32_t L_62 = V_1; UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_63 = __this->get_m_Info_18(); NullCheck(L_63); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_64 = L_63->get_address_of_Offset_3(); uint16_t L_65 = L_64->get_Path_4(); NullCheck(L_61); String_t* L_66; L_66 = String_Remove_mA7DE3D6FE3344FD65108B33BD1DE8020D22ADAC0(L_61, ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_62, (int32_t)L_65)), (int32_t)1)), 1, /*hidden argument*/NULL); V_5 = L_66; String_t* L_67 = V_5; int32_t L_68 = V_1; UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_69 = __this->get_m_Info_18(); NullCheck(L_69); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_70 = L_69->get_address_of_Offset_3(); uint16_t L_71 = L_70->get_Path_4(); NullCheck(L_67); String_t* L_72; L_72 = String_Insert_m6F5335C84ACB178D4141772E1D7F2EB7811990EB(L_67, ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_68, (int32_t)L_71)), (int32_t)1)), _stringLiteral876C4B39B6E4D0187090400768899C71D99DE90D, /*hidden argument*/NULL); V_5 = L_72; } IL_01c9: { String_t* L_73 = V_5; UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_74 = __this->get_m_Info_18(); NullCheck(L_74); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_75 = L_74->get_address_of_Offset_3(); uint16_t L_76 = L_75->get_Path_4(); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_77 = __this->get_m_Info_18(); NullCheck(L_77); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_78 = L_77->get_address_of_Offset_3(); uint16_t L_79 = L_78->get_Query_5(); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_80 = ___dest0; bool L_81; L_81 = Uri_get_IsImplicitFile_m58AC900A18C84E93F4611F97639112F801629DAA(__this, /*hidden argument*/NULL); G_B23_0 = ((int32_t)35); G_B23_1 = ((int32_t)63); G_B23_2 = 1; G_B23_3 = (&V_0); G_B23_4 = L_80; G_B23_5 = L_79; G_B23_6 = L_76; G_B23_7 = L_73; if (L_81) { G_B24_0 = ((int32_t)35); G_B24_1 = ((int32_t)63); G_B24_2 = 1; G_B24_3 = (&V_0); G_B24_4 = L_80; G_B24_5 = L_79; G_B24_6 = L_76; G_B24_7 = L_73; goto IL_01ff; } } { G_B25_0 = ((int32_t)37); G_B25_1 = G_B23_0; G_B25_2 = G_B23_1; G_B25_3 = G_B23_2; G_B25_4 = G_B23_3; G_B25_5 = G_B23_4; G_B25_6 = G_B23_5; G_B25_7 = G_B23_6; G_B25_8 = G_B23_7; goto IL_0204; } IL_01ff: { G_B25_0 = ((int32_t)65535); G_B25_1 = G_B24_0; G_B25_2 = G_B24_1; G_B25_3 = G_B24_2; G_B25_4 = G_B24_3; G_B25_5 = G_B24_4; G_B25_6 = G_B24_5; G_B25_7 = G_B24_6; G_B25_8 = G_B24_7; } IL_0204: { IL2CPP_RUNTIME_CLASS_INIT(UriHelper_tBEFC75B3A4E9E35CB41ADAAE22E0D1D7EE65E53D_il2cpp_TypeInfo_var); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_82; L_82 = UriHelper_EscapeString_m322E8737F58BBAF891A75032EC1800BE548F84D7(G_B25_8, G_B25_7, G_B25_6, G_B25_5, (int32_t*)G_B25_4, (bool)G_B25_3, G_B25_2, G_B25_1, G_B25_0, /*hidden argument*/NULL); ___dest0 = L_82; goto IL_0356; } IL_0210: { String_t* L_83 = __this->get_m_String_13(); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_84 = __this->get_m_Info_18(); NullCheck(L_84); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_85 = L_84->get_address_of_Offset_3(); uint16_t L_86 = L_85->get_Path_4(); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_87 = ___dest0; int32_t L_88 = V_0; UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_89 = __this->get_m_Info_18(); NullCheck(L_89); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_90 = L_89->get_address_of_Offset_3(); uint16_t L_91 = L_90->get_Query_5(); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_92 = __this->get_m_Info_18(); NullCheck(L_92); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_93 = L_92->get_address_of_Offset_3(); uint16_t L_94 = L_93->get_Path_4(); NullCheck(L_83); String_CopyTo_mF77EF8D4E5ABBD2AB7F509FFE9C0C70DC15A27E1(L_83, L_86, L_87, L_88, ((int32_t)il2cpp_codegen_subtract((int32_t)L_91, (int32_t)L_94)), /*hidden argument*/NULL); int32_t L_95 = V_0; UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_96 = __this->get_m_Info_18(); NullCheck(L_96); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_97 = L_96->get_address_of_Offset_3(); uint16_t L_98 = L_97->get_Query_5(); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_99 = __this->get_m_Info_18(); NullCheck(L_99); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_100 = L_99->get_address_of_Offset_3(); uint16_t L_101 = L_100->get_Path_4(); V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_95, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_98, (int32_t)L_101)))); goto IL_0356; } IL_0277: { String_t* L_102 = __this->get_m_String_13(); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_103 = __this->get_m_Info_18(); NullCheck(L_103); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_104 = L_103->get_address_of_Offset_3(); uint16_t L_105 = L_104->get_Path_4(); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_106 = ___dest0; int32_t L_107 = V_0; UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_108 = __this->get_m_Info_18(); NullCheck(L_108); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_109 = L_108->get_address_of_Offset_3(); uint16_t L_110 = L_109->get_Query_5(); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_111 = __this->get_m_Info_18(); NullCheck(L_111); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_112 = L_111->get_address_of_Offset_3(); uint16_t L_113 = L_112->get_Path_4(); NullCheck(L_102); String_CopyTo_mF77EF8D4E5ABBD2AB7F509FFE9C0C70DC15A27E1(L_102, L_105, L_106, L_107, ((int32_t)il2cpp_codegen_subtract((int32_t)L_110, (int32_t)L_113)), /*hidden argument*/NULL); int32_t L_114 = V_0; UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_115 = __this->get_m_Info_18(); NullCheck(L_115); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_116 = L_115->get_address_of_Offset_3(); uint16_t L_117 = L_116->get_Query_5(); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_118 = __this->get_m_Info_18(); NullCheck(L_118); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_119 = L_118->get_address_of_Offset_3(); uint16_t L_120 = L_119->get_Path_4(); V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_114, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_117, (int32_t)L_120)))); bool L_121; L_121 = Uri_InFact_mF6A06FA7246740D26093421D41D18000AC2CC0C4(__this, ((int64_t)((int64_t)((int32_t)8192))), /*hidden argument*/NULL); if (!L_121) { goto IL_0356; } } { UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_122 = __this->get_m_Syntax_15(); NullCheck(L_122); bool L_123; L_123 = UriParser_InFact_m4E58BAFAB5A9BC24854C815FC093E16D4F1CFA4D(L_122, ((int32_t)33554432), /*hidden argument*/NULL); if (!L_123) { goto IL_0356; } } { bool L_124; L_124 = Uri_InFact_mF6A06FA7246740D26093421D41D18000AC2CC0C4(__this, ((int64_t)((int64_t)((int32_t)16))), /*hidden argument*/NULL); if (!L_124) { goto IL_0356; } } { bool L_125; L_125 = Uri_get_IsImplicitFile_m58AC900A18C84E93F4611F97639112F801629DAA(__this, /*hidden argument*/NULL); if (L_125) { goto IL_0356; } } { CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_126 = ___dest0; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_127 = L_126; V_4 = L_127; if (!L_127) { goto IL_0318; } } { CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_128 = V_4; NullCheck(L_128); if (((int32_t)((int32_t)(((RuntimeArray*)L_128)->max_length)))) { goto IL_031e; } } IL_0318: { V_6 = (Il2CppChar*)((uintptr_t)0); goto IL_0329; } IL_031e: { CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_129 = V_4; NullCheck(L_129); V_6 = (Il2CppChar*)((uintptr_t)((L_129)->GetAddressAt(static_cast<il2cpp_array_size_t>(0)))); } IL_0329: { Il2CppChar* L_130 = V_6; int32_t* L_131 = ___pos1; int32_t L_132 = *((int32_t*)L_131); UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_133 = __this->get_m_Syntax_15(); NullCheck(L_133); bool L_134; L_134 = UriParser_InFact_m4E58BAFAB5A9BC24854C815FC093E16D4F1CFA4D(L_133, ((int32_t)4194304), /*hidden argument*/NULL); G_B36_0 = ((int32_t)47); G_B36_1 = ((int32_t)46); G_B36_2 = (&V_0); G_B36_3 = L_132; G_B36_4 = L_130; if (L_134) { G_B37_0 = ((int32_t)47); G_B37_1 = ((int32_t)46); G_B37_2 = (&V_0); G_B37_3 = L_132; G_B37_4 = L_130; goto IL_034c; } } { G_B38_0 = ((int32_t)65535); G_B38_1 = G_B36_0; G_B38_2 = G_B36_1; G_B38_3 = G_B36_2; G_B38_4 = G_B36_3; G_B38_5 = G_B36_4; goto IL_034e; } IL_034c: { G_B38_0 = ((int32_t)92); G_B38_1 = G_B37_0; G_B38_2 = G_B37_1; G_B38_3 = G_B37_2; G_B38_4 = G_B37_3; G_B38_5 = G_B37_4; } IL_034e: { IL2CPP_RUNTIME_CLASS_INIT(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); Uri_UnescapeOnly_m18532EEE1EFF1E8A802527ECC577BA815CC33B1B((Il2CppChar*)(Il2CppChar*)G_B38_5, G_B38_4, (int32_t*)G_B38_3, G_B38_2, G_B38_1, G_B38_0, /*hidden argument*/NULL); V_4 = (CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34*)NULL; } IL_0356: { int32_t L_135 = V_1; if (!L_135) { goto IL_036f; } } { CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_136 = ___dest0; int32_t L_137 = V_1; int32_t* L_138 = ___pos1; int32_t L_139 = *((int32_t*)L_138); NullCheck(L_136); int32_t L_140 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_137, (int32_t)L_139)), (int32_t)1)); uint16_t L_141 = (uint16_t)(L_136)->GetAt(static_cast<il2cpp_array_size_t>(L_140)); if ((!(((uint32_t)L_141) == ((uint32_t)((int32_t)124))))) { goto IL_036f; } } { CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_142 = ___dest0; int32_t L_143 = V_1; int32_t* L_144 = ___pos1; int32_t L_145 = *((int32_t*)L_144); NullCheck(L_142); (L_142)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_143, (int32_t)L_145)), (int32_t)1))), (Il2CppChar)((int32_t)58)); } IL_036f: { bool L_146; L_146 = Uri_InFact_mF6A06FA7246740D26093421D41D18000AC2CC0C4(__this, ((int64_t)((int64_t)((int32_t)8192))), /*hidden argument*/NULL); if (!L_146) { goto IL_03fb; } } { CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_147 = ___dest0; int32_t* L_148 = ___pos1; int32_t L_149 = *((int32_t*)L_148); int32_t L_150 = V_1; UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_151 = __this->get_m_Syntax_15(); IL2CPP_RUNTIME_CLASS_INIT(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_152; L_152 = Uri_Compress_mDF5924D464EB2CDA24C14D7448878C2DA46A9B8F(L_147, (uint16_t)((int32_t)((uint16_t)((int32_t)il2cpp_codegen_add((int32_t)L_149, (int32_t)L_150)))), (int32_t*)(&V_0), L_151, /*hidden argument*/NULL); ___dest0 = L_152; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_153 = ___dest0; int32_t* L_154 = ___pos1; int32_t L_155 = *((int32_t*)L_154); NullCheck(L_153); int32_t L_156 = L_155; uint16_t L_157 = (uint16_t)(L_153)->GetAt(static_cast<il2cpp_array_size_t>(L_156)); if ((!(((uint32_t)L_157) == ((uint32_t)((int32_t)92))))) { goto IL_03a0; } } { CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_158 = ___dest0; int32_t* L_159 = ___pos1; int32_t L_160 = *((int32_t*)L_159); NullCheck(L_158); (L_158)->SetAt(static_cast<il2cpp_array_size_t>(L_160), (Il2CppChar)((int32_t)47)); } IL_03a0: { int32_t L_161 = ___formatAs2; if ((!(((uint32_t)L_161) == ((uint32_t)1)))) { goto IL_043a; } } { bool L_162; L_162 = Uri_NotAny_m2C222924AE10957D835ECBC887D456FB30DCF969(__this, ((int64_t)((int64_t)((int32_t)524288))), /*hidden argument*/NULL); if (!L_162) { goto IL_043a; } } { bool L_163; L_163 = Uri_InFact_mF6A06FA7246740D26093421D41D18000AC2CC0C4(__this, ((int64_t)((int64_t)((int32_t)1024))), /*hidden argument*/NULL); if (!L_163) { goto IL_043a; } } { CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_164 = ___dest0; int32_t* L_165 = ___pos1; int32_t L_166 = *((int32_t*)L_165); int32_t L_167 = V_0; int32_t* L_168 = ___pos1; int32_t L_169 = *((int32_t*)L_168); String_t* L_170; L_170 = String_CreateString_m16F181739FD8BA877868803DE2CE0EF0A4668D0E(NULL, L_164, L_166, ((int32_t)il2cpp_codegen_subtract((int32_t)L_167, (int32_t)L_169)), /*hidden argument*/NULL); int32_t L_171 = V_0; int32_t* L_172 = ___pos1; int32_t L_173 = *((int32_t*)L_172); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_174 = ___dest0; int32_t* L_175 = ___pos1; bool L_176; L_176 = Uri_get_IsImplicitFile_m58AC900A18C84E93F4611F97639112F801629DAA(__this, /*hidden argument*/NULL); G_B49_0 = ((int32_t)35); G_B49_1 = ((int32_t)63); G_B49_2 = 1; G_B49_3 = L_175; G_B49_4 = L_174; G_B49_5 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_171, (int32_t)L_173)); G_B49_6 = 0; G_B49_7 = L_170; if (L_176) { G_B50_0 = ((int32_t)35); G_B50_1 = ((int32_t)63); G_B50_2 = 1; G_B50_3 = L_175; G_B50_4 = L_174; G_B50_5 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_171, (int32_t)L_173)); G_B50_6 = 0; G_B50_7 = L_170; goto IL_03ea; } } { G_B51_0 = ((int32_t)37); G_B51_1 = G_B49_0; G_B51_2 = G_B49_1; G_B51_3 = G_B49_2; G_B51_4 = G_B49_3; G_B51_5 = G_B49_4; G_B51_6 = G_B49_5; G_B51_7 = G_B49_6; G_B51_8 = G_B49_7; goto IL_03ef; } IL_03ea: { G_B51_0 = ((int32_t)65535); G_B51_1 = G_B50_0; G_B51_2 = G_B50_1; G_B51_3 = G_B50_2; G_B51_4 = G_B50_3; G_B51_5 = G_B50_4; G_B51_6 = G_B50_5; G_B51_7 = G_B50_6; G_B51_8 = G_B50_7; } IL_03ef: { IL2CPP_RUNTIME_CLASS_INIT(UriHelper_tBEFC75B3A4E9E35CB41ADAAE22E0D1D7EE65E53D_il2cpp_TypeInfo_var); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_177; L_177 = UriHelper_EscapeString_m322E8737F58BBAF891A75032EC1800BE548F84D7(G_B51_8, G_B51_7, G_B51_6, G_B51_5, (int32_t*)G_B51_4, (bool)G_B51_3, G_B51_2, G_B51_1, G_B51_0, /*hidden argument*/NULL); ___dest0 = L_177; int32_t* L_178 = ___pos1; int32_t L_179 = *((int32_t*)L_178); V_0 = L_179; goto IL_043a; } IL_03fb: { UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_180 = __this->get_m_Syntax_15(); NullCheck(L_180); bool L_181; L_181 = UriParser_InFact_m4E58BAFAB5A9BC24854C815FC093E16D4F1CFA4D(L_180, ((int32_t)4194304), /*hidden argument*/NULL); if (!L_181) { goto IL_043a; } } { bool L_182; L_182 = Uri_InFact_mF6A06FA7246740D26093421D41D18000AC2CC0C4(__this, ((int64_t)((int64_t)((int32_t)32768))), /*hidden argument*/NULL); if (!L_182) { goto IL_043a; } } { int32_t* L_183 = ___pos1; int32_t L_184 = *((int32_t*)L_183); V_7 = L_184; goto IL_0435; } IL_0421: { CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_185 = ___dest0; int32_t L_186 = V_7; NullCheck(L_185); int32_t L_187 = L_186; uint16_t L_188 = (uint16_t)(L_185)->GetAt(static_cast<il2cpp_array_size_t>(L_187)); if ((!(((uint32_t)L_188) == ((uint32_t)((int32_t)92))))) { goto IL_042f; } } { CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_189 = ___dest0; int32_t L_190 = V_7; NullCheck(L_189); (L_189)->SetAt(static_cast<il2cpp_array_size_t>(L_190), (Il2CppChar)((int32_t)47)); } IL_042f: { int32_t L_191 = V_7; V_7 = ((int32_t)il2cpp_codegen_add((int32_t)L_191, (int32_t)1)); } IL_0435: { int32_t L_192 = V_7; int32_t L_193 = V_0; if ((((int32_t)L_192) < ((int32_t)L_193))) { goto IL_0421; } } IL_043a: { int32_t L_194 = ___formatAs2; if ((((int32_t)L_194) == ((int32_t)1))) { goto IL_0520; } } { bool L_195; L_195 = Uri_InFact_mF6A06FA7246740D26093421D41D18000AC2CC0C4(__this, ((int64_t)((int64_t)((int32_t)16))), /*hidden argument*/NULL); if (!L_195) { goto IL_0520; } } { bool L_196; L_196 = Uri_InFact_mF6A06FA7246740D26093421D41D18000AC2CC0C4(__this, ((int64_t)((int64_t)((int32_t)16))), /*hidden argument*/NULL); if (!L_196) { goto IL_04c3; } } { int32_t L_197 = ___formatAs2; if ((((int32_t)L_197) == ((int32_t)2))) { goto IL_048d; } } { int32_t L_198 = ___formatAs2; if ((!(((uint32_t)L_198) == ((uint32_t)((int32_t)32767))))) { goto IL_049e; } } { bool L_199; L_199 = Uri_InFact_mF6A06FA7246740D26093421D41D18000AC2CC0C4(__this, ((int64_t)((int64_t)((int32_t)524288))), /*hidden argument*/NULL); if (L_199) { goto IL_0477; } } { G_B67_0 = 3; goto IL_0478; } IL_0477: { G_B67_0 = 2; } IL_0478: { V_8 = ((int32_t)((int32_t)G_B67_0|(int32_t)4)); bool L_200; L_200 = Uri_get_IsImplicitFile_m58AC900A18C84E93F4611F97639112F801629DAA(__this, /*hidden argument*/NULL); if (!L_200) { goto IL_04c6; } } { int32_t L_201 = V_8; V_8 = ((int32_t)((int32_t)L_201&(int32_t)((int32_t)-3))); goto IL_04c6; } IL_048d: { bool L_202; L_202 = Uri_get_IsImplicitFile_m58AC900A18C84E93F4611F97639112F801629DAA(__this, /*hidden argument*/NULL); if (L_202) { goto IL_0499; } } { G_B72_0 = ((int32_t)10); goto IL_049a; } IL_0499: { G_B72_0 = 0; } IL_049a: { V_8 = G_B72_0; goto IL_04c6; } IL_049e: { bool L_203; L_203 = Uri_InFact_mF6A06FA7246740D26093421D41D18000AC2CC0C4(__this, ((int64_t)((int64_t)((int32_t)524288))), /*hidden argument*/NULL); if (L_203) { goto IL_04af; } } { G_B76_0 = 3; goto IL_04b0; } IL_04af: { G_B76_0 = 2; } IL_04b0: { V_8 = G_B76_0; bool L_204; L_204 = Uri_get_IsImplicitFile_m58AC900A18C84E93F4611F97639112F801629DAA(__this, /*hidden argument*/NULL); if (!L_204) { goto IL_04c6; } } { int32_t L_205 = V_8; V_8 = ((int32_t)((int32_t)L_205&(int32_t)((int32_t)-3))); goto IL_04c6; } IL_04c3: { V_8 = 0; } IL_04c6: { CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_206 = ___dest0; NullCheck(L_206); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_207 = (CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34*)(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34*)SZArrayNew(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34_il2cpp_TypeInfo_var, (uint32_t)((int32_t)((int32_t)(((RuntimeArray*)L_206)->max_length)))); V_9 = L_207; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_208 = ___dest0; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_209 = V_9; int32_t L_210 = V_0; Buffer_BlockCopy_mD01FC13D87078586714AA235261A9E786C351725((RuntimeArray *)(RuntimeArray *)L_208, 0, (RuntimeArray *)(RuntimeArray *)L_209, 0, ((int32_t)((int32_t)L_210<<(int32_t)1)), /*hidden argument*/NULL); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_211 = V_9; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_212 = L_211; V_4 = L_212; if (!L_212) { goto IL_04ea; } } { CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_213 = V_4; NullCheck(L_213); if (((int32_t)((int32_t)(((RuntimeArray*)L_213)->max_length)))) { goto IL_04f0; } } IL_04ea: { V_10 = (Il2CppChar*)((uintptr_t)0); goto IL_04fb; } IL_04f0: { CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_214 = V_4; NullCheck(L_214); V_10 = (Il2CppChar*)((uintptr_t)((L_214)->GetAddressAt(static_cast<il2cpp_array_size_t>(0)))); } IL_04fb: { Il2CppChar* L_215 = V_10; int32_t* L_216 = ___pos1; int32_t L_217 = *((int32_t*)L_216); int32_t L_218 = V_0; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_219 = ___dest0; int32_t* L_220 = ___pos1; int32_t L_221 = V_8; UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_222 = __this->get_m_Syntax_15(); IL2CPP_RUNTIME_CLASS_INIT(UriHelper_tBEFC75B3A4E9E35CB41ADAAE22E0D1D7EE65E53D_il2cpp_TypeInfo_var); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_223; L_223 = UriHelper_UnescapeString_m92E5C90E7DAE8DA5C7C1E6FB72B0F58321B6484C((Il2CppChar*)(Il2CppChar*)L_215, L_217, L_218, L_219, (int32_t*)L_220, ((int32_t)63), ((int32_t)35), ((int32_t)65535), L_221, L_222, (bool)0, /*hidden argument*/NULL); ___dest0 = L_223; V_4 = (CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34*)NULL; goto IL_0523; } IL_0520: { int32_t* L_224 = ___pos1; int32_t L_225 = V_0; *((int32_t*)L_224) = (int32_t)L_225; } IL_0523: { CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_226 = ___dest0; return L_226; } } // System.Void System.Uri::UnescapeOnly(System.Char*,System.Int32,System.Int32&,System.Char,System.Char,System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Uri_UnescapeOnly_m18532EEE1EFF1E8A802527ECC577BA815CC33B1B (Il2CppChar* ___pch0, int32_t ___start1, int32_t* ___end2, Il2CppChar ___ch13, Il2CppChar ___ch24, Il2CppChar ___ch35, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UriHelper_tBEFC75B3A4E9E35CB41ADAAE22E0D1D7EE65E53D_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } Il2CppChar* V_0 = NULL; Il2CppChar* V_1 = NULL; Il2CppChar V_2 = 0x0; Il2CppChar V_3 = 0x0; { int32_t* L_0 = ___end2; int32_t L_1 = *((int32_t*)L_0); int32_t L_2 = ___start1; if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_1, (int32_t)L_2))) >= ((int32_t)3))) { goto IL_0008; } } { return; } IL_0008: { Il2CppChar* L_3 = ___pch0; int32_t* L_4 = ___end2; int32_t L_5 = *((int32_t*)L_4); V_0 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_3, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_5), (int32_t)2)))), (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)2), (int32_t)2)))); Il2CppChar* L_6 = ___pch0; int32_t L_7 = ___start1; ___pch0 = (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)))); V_1 = (Il2CppChar*)((uintptr_t)0); } IL_0020: { Il2CppChar* L_8 = ___pch0; Il2CppChar* L_9 = V_0; if ((!(((uintptr_t)L_8) < ((uintptr_t)L_9)))) { goto IL_00ba; } } { Il2CppChar* L_10 = ___pch0; Il2CppChar* L_11 = (Il2CppChar*)L_10; ___pch0 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_11, (int32_t)2)); int32_t L_12 = *((uint16_t*)L_11); if ((!(((uint32_t)L_12) == ((uint32_t)((int32_t)37))))) { goto IL_0020; } } { Il2CppChar* L_13 = ___pch0; Il2CppChar* L_14 = (Il2CppChar*)L_13; ___pch0 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_14, (int32_t)2)); int32_t L_15 = *((uint16_t*)L_14); Il2CppChar* L_16 = ___pch0; Il2CppChar* L_17 = (Il2CppChar*)L_16; ___pch0 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_17, (int32_t)2)); int32_t L_18 = *((uint16_t*)L_17); IL2CPP_RUNTIME_CLASS_INIT(UriHelper_tBEFC75B3A4E9E35CB41ADAAE22E0D1D7EE65E53D_il2cpp_TypeInfo_var); Il2CppChar L_19; L_19 = UriHelper_EscapedAscii_m80D926F5C8B177B5D041BBFEADEAB2363A324461(L_15, L_18, /*hidden argument*/NULL); V_2 = L_19; Il2CppChar L_20 = V_2; Il2CppChar L_21 = ___ch13; if ((((int32_t)L_20) == ((int32_t)L_21))) { goto IL_0054; } } { Il2CppChar L_22 = V_2; Il2CppChar L_23 = ___ch24; if ((((int32_t)L_22) == ((int32_t)L_23))) { goto IL_0054; } } { Il2CppChar L_24 = V_2; Il2CppChar L_25 = ___ch35; if ((!(((uint32_t)L_24) == ((uint32_t)L_25)))) { goto IL_0020; } } IL_0054: { Il2CppChar* L_26 = ___pch0; V_1 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_26, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)2), (int32_t)2)))); Il2CppChar* L_27 = V_1; Il2CppChar L_28 = V_2; *((int16_t*)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_27, (int32_t)2))) = (int16_t)L_28; } IL_0060: { Il2CppChar* L_29 = ___pch0; Il2CppChar* L_30 = V_0; if ((!(((uintptr_t)L_29) < ((uintptr_t)L_30)))) { goto IL_00ba; } } { Il2CppChar* L_31 = V_1; Il2CppChar* L_32 = (Il2CppChar*)L_31; V_1 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_32, (int32_t)2)); Il2CppChar* L_33 = ___pch0; Il2CppChar* L_34 = (Il2CppChar*)L_33; ___pch0 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_34, (int32_t)2)); int32_t L_35 = *((uint16_t*)L_34); int32_t L_36 = L_35; V_3 = L_36; *((int16_t*)L_32) = (int16_t)L_36; Il2CppChar L_37 = V_3; if ((!(((uint32_t)L_37) == ((uint32_t)((int32_t)37))))) { goto IL_0060; } } { Il2CppChar* L_38 = V_1; Il2CppChar* L_39 = (Il2CppChar*)L_38; V_1 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_39, (int32_t)2)); Il2CppChar* L_40 = ___pch0; Il2CppChar* L_41 = (Il2CppChar*)L_40; ___pch0 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_41, (int32_t)2)); int32_t L_42 = *((uint16_t*)L_41); int32_t L_43 = L_42; V_3 = L_43; *((int16_t*)L_39) = (int16_t)L_43; Il2CppChar L_44 = V_3; Il2CppChar* L_45 = V_1; Il2CppChar* L_46 = (Il2CppChar*)L_45; V_1 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_46, (int32_t)2)); Il2CppChar* L_47 = ___pch0; Il2CppChar* L_48 = (Il2CppChar*)L_47; ___pch0 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_48, (int32_t)2)); int32_t L_49 = *((uint16_t*)L_48); int32_t L_50 = L_49; V_3 = L_50; *((int16_t*)L_46) = (int16_t)L_50; Il2CppChar L_51 = V_3; IL2CPP_RUNTIME_CLASS_INIT(UriHelper_tBEFC75B3A4E9E35CB41ADAAE22E0D1D7EE65E53D_il2cpp_TypeInfo_var); Il2CppChar L_52; L_52 = UriHelper_EscapedAscii_m80D926F5C8B177B5D041BBFEADEAB2363A324461(L_44, L_51, /*hidden argument*/NULL); V_2 = L_52; Il2CppChar L_53 = V_2; Il2CppChar L_54 = ___ch13; if ((((int32_t)L_53) == ((int32_t)L_54))) { goto IL_00ac; } } { Il2CppChar L_55 = V_2; Il2CppChar L_56 = ___ch24; if ((((int32_t)L_55) == ((int32_t)L_56))) { goto IL_00ac; } } { Il2CppChar L_57 = V_2; Il2CppChar L_58 = ___ch35; if ((!(((uint32_t)L_57) == ((uint32_t)L_58)))) { goto IL_0060; } } IL_00ac: { Il2CppChar* L_59 = V_1; V_1 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_59, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)2), (int32_t)2)))); Il2CppChar* L_60 = V_1; Il2CppChar L_61 = V_2; *((int16_t*)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_60, (int32_t)2))) = (int16_t)L_61; goto IL_0060; } IL_00ba: { Il2CppChar* L_62 = V_0; V_0 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_62, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)2), (int32_t)2)))); Il2CppChar* L_63 = V_1; if ((!(((uintptr_t)L_63) == ((uintptr_t)((uintptr_t)0))))) { goto IL_00c7; } } { return; } IL_00c7: { Il2CppChar* L_64 = ___pch0; Il2CppChar* L_65 = V_0; if ((!(((uintptr_t)L_64) == ((uintptr_t)L_65)))) { goto IL_00d8; } } { int32_t* L_66 = ___end2; int32_t* L_67 = ___end2; int32_t L_68 = *((int32_t*)L_67); Il2CppChar* L_69 = ___pch0; Il2CppChar* L_70 = V_1; *((int32_t*)L_66) = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_68, (int32_t)((int32_t)((int32_t)((int64_t)((int64_t)(intptr_t)((Il2CppChar*)((intptr_t)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_69, (intptr_t)L_70))/(int32_t)2)))))))); return; } IL_00d8: { Il2CppChar* L_71 = V_1; Il2CppChar* L_72 = (Il2CppChar*)L_71; V_1 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_72, (int32_t)2)); Il2CppChar* L_73 = ___pch0; Il2CppChar* L_74 = (Il2CppChar*)L_73; ___pch0 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_74, (int32_t)2)); int32_t L_75 = *((uint16_t*)L_74); *((int16_t*)L_72) = (int16_t)L_75; Il2CppChar* L_76 = ___pch0; Il2CppChar* L_77 = V_0; if ((!(((uintptr_t)L_76) == ((uintptr_t)L_77)))) { goto IL_00f6; } } { int32_t* L_78 = ___end2; int32_t* L_79 = ___end2; int32_t L_80 = *((int32_t*)L_79); Il2CppChar* L_81 = ___pch0; Il2CppChar* L_82 = V_1; *((int32_t*)L_78) = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_80, (int32_t)((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)))))))); return; } IL_00f6: { Il2CppChar* L_83 = V_1; Il2CppChar* L_84 = (Il2CppChar*)L_83; V_1 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_84, (int32_t)2)); Il2CppChar* L_85 = ___pch0; Il2CppChar* L_86 = (Il2CppChar*)L_85; ___pch0 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_86, (int32_t)2)); int32_t L_87 = *((uint16_t*)L_86); *((int16_t*)L_84) = (int16_t)L_87; int32_t* L_88 = ___end2; int32_t* L_89 = ___end2; int32_t L_90 = *((int32_t*)L_89); Il2CppChar* L_91 = ___pch0; Il2CppChar* L_92 = V_1; *((int32_t*)L_88) = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_90, (int32_t)((int32_t)((int32_t)((int64_t)((int64_t)(intptr_t)((Il2CppChar*)((intptr_t)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_91, (intptr_t)L_92))/(int32_t)2)))))))); return; } } // System.Char[] System.Uri::Compress(System.Char[],System.UInt16,System.Int32&,System.UriParser) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* Uri_Compress_mDF5924D464EB2CDA24C14D7448878C2DA46A9B8F (CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___dest0, uint16_t ___start1, int32_t* ___destLength2, UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * ___syntax3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } uint16_t V_0 = 0; uint16_t V_1 = 0; uint16_t V_2 = 0; uint16_t V_3 = 0; uint16_t V_4 = 0; Il2CppChar V_5 = 0x0; bool V_6 = false; int32_t G_B18_0 = 0; int32_t G_B27_0 = 0; int32_t G_B26_0 = 0; int32_t G_B28_0 = 0; int32_t G_B28_1 = 0; uint16_t G_B57_0 = 0; uint16_t G_B56_0 = 0; int32_t G_B58_0 = 0; uint16_t G_B58_1 = 0; { V_0 = (uint16_t)0; V_1 = (uint16_t)0; V_2 = (uint16_t)0; V_3 = (uint16_t)0; int32_t* L_0 = ___destLength2; int32_t L_1 = *((int32_t*)L_0); V_4 = (uint16_t)((int32_t)((uint16_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)((uint16_t)L_1)), (int32_t)1)))); uint16_t L_2 = ___start1; ___start1 = (uint16_t)((int32_t)((uint16_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_2, (int32_t)1)))); goto IL_019b; } IL_001b: { CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_3 = ___dest0; uint16_t L_4 = V_4; NullCheck(L_3); uint16_t L_5 = L_4; uint16_t L_6 = (uint16_t)(L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5)); V_5 = L_6; Il2CppChar L_7 = V_5; if ((!(((uint32_t)L_7) == ((uint32_t)((int32_t)92))))) { goto IL_003d; } } { UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_8 = ___syntax3; NullCheck(L_8); bool L_9; L_9 = UriParser_InFact_m4E58BAFAB5A9BC24854C815FC093E16D4F1CFA4D(L_8, ((int32_t)4194304), /*hidden argument*/NULL); if (!L_9) { goto IL_003d; } } { CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_10 = ___dest0; uint16_t L_11 = V_4; int32_t L_12 = ((int32_t)47); V_5 = L_12; NullCheck(L_10); (L_10)->SetAt(static_cast<il2cpp_array_size_t>(L_11), (Il2CppChar)L_12); } IL_003d: { Il2CppChar L_13 = V_5; if ((!(((uint32_t)L_13) == ((uint32_t)((int32_t)47))))) { goto IL_004a; } } { uint16_t L_14 = V_0; V_0 = (uint16_t)((int32_t)((uint16_t)((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)1)))); goto IL_0056; } IL_004a: { uint16_t L_15 = V_0; if ((((int32_t)L_15) <= ((int32_t)1))) { goto IL_0054; } } { uint16_t L_16 = V_4; V_1 = (uint16_t)((int32_t)((uint16_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1)))); } IL_0054: { V_0 = (uint16_t)0; } IL_0056: { Il2CppChar L_17 = V_5; if ((!(((uint32_t)L_17) == ((uint32_t)((int32_t)46))))) { goto IL_0066; } } { uint16_t L_18 = V_2; V_2 = (uint16_t)((int32_t)((uint16_t)((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1)))); goto IL_0194; } IL_0066: { uint16_t L_19 = V_2; if (!L_19) { goto IL_015d; } } { UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_20 = ___syntax3; NullCheck(L_20); bool L_21; L_21 = UriParser_NotAny_m6A42FAC623F0EBDE441782DAC3E3B2ED34756D91(L_20, ((int32_t)16777216), /*hidden argument*/NULL); if (!L_21) { goto IL_008d; } } { uint16_t L_22 = V_2; if ((((int32_t)L_22) > ((int32_t)2))) { goto IL_008a; } } { Il2CppChar L_23 = V_5; if ((!(((uint32_t)L_23) == ((uint32_t)((int32_t)47))))) { goto IL_008a; } } { uint16_t L_24 = V_4; uint16_t L_25 = ___start1; G_B18_0 = ((((int32_t)L_24) == ((int32_t)L_25))? 1 : 0); goto IL_008e; } IL_008a: { G_B18_0 = 1; goto IL_008e; } IL_008d: { G_B18_0 = 0; } IL_008e: { V_6 = (bool)G_B18_0; bool L_26 = V_6; if (L_26) { goto IL_0108; } } { Il2CppChar L_27 = V_5; if ((!(((uint32_t)L_27) == ((uint32_t)((int32_t)47))))) { goto IL_0108; } } { uint16_t L_28 = V_1; uint16_t L_29 = V_4; uint16_t L_30 = V_2; if ((((int32_t)L_28) == ((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_29, (int32_t)L_30)), (int32_t)1))))) { goto IL_00b6; } } { uint16_t L_31 = V_1; if (L_31) { goto IL_015b; } } { uint16_t L_32 = V_4; uint16_t L_33 = V_2; int32_t* L_34 = ___destLength2; int32_t L_35 = *((int32_t*)L_34); if ((!(((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_32, (int32_t)L_33)), (int32_t)1))) == ((uint32_t)L_35)))) { goto IL_015b; } } IL_00b6: { IL2CPP_RUNTIME_CLASS_INIT(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_il2cpp_TypeInfo_var); bool L_36; L_36 = UriParser_get_ShouldUseLegacyV2Quirks_mB8917CAC10CD13E44F2EB21D4033044BEAF132B2(/*hidden argument*/NULL); if (L_36) { goto IL_00c4; } } { uint16_t L_37 = V_2; if ((((int32_t)L_37) > ((int32_t)2))) { goto IL_015b; } } IL_00c4: { uint16_t L_38 = V_4; uint16_t L_39 = V_2; uint16_t L_40 = V_1; G_B26_0 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_38, (int32_t)1)), (int32_t)L_39)); if (!L_40) { G_B27_0 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_38, (int32_t)1)), (int32_t)L_39)); goto IL_00d0; } } { G_B28_0 = 1; G_B28_1 = G_B26_0; goto IL_00d1; } IL_00d0: { G_B28_0 = 0; G_B28_1 = G_B27_0; } IL_00d1: { V_1 = (uint16_t)((int32_t)((uint16_t)((int32_t)il2cpp_codegen_add((int32_t)G_B28_1, (int32_t)G_B28_0)))); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_41 = ___dest0; uint16_t L_42 = V_1; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_43 = ___dest0; uint16_t L_44 = V_4; int32_t* L_45 = ___destLength2; int32_t L_46 = *((int32_t*)L_45); uint16_t L_47 = V_1; Buffer_BlockCopy_mD01FC13D87078586714AA235261A9E786C351725((RuntimeArray *)(RuntimeArray *)L_41, ((int32_t)((int32_t)L_42<<(int32_t)1)), (RuntimeArray *)(RuntimeArray *)L_43, ((int32_t)((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_44, (int32_t)1))<<(int32_t)1)), ((int32_t)((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_46, (int32_t)L_47))<<(int32_t)1)), /*hidden argument*/NULL); int32_t* L_48 = ___destLength2; int32_t* L_49 = ___destLength2; int32_t L_50 = *((int32_t*)L_49); uint16_t L_51 = V_1; uint16_t L_52 = V_4; *((int32_t*)L_48) = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_50, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_51, (int32_t)L_52)), (int32_t)1)))); uint16_t L_53 = V_4; V_1 = L_53; uint16_t L_54 = V_2; if ((!(((uint32_t)L_54) == ((uint32_t)2)))) { goto IL_0101; } } { uint16_t L_55 = V_3; V_3 = (uint16_t)((int32_t)((uint16_t)((int32_t)il2cpp_codegen_add((int32_t)L_55, (int32_t)1)))); } IL_0101: { V_2 = (uint16_t)0; goto IL_0194; } IL_0108: { IL2CPP_RUNTIME_CLASS_INIT(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_il2cpp_TypeInfo_var); bool L_56; L_56 = UriParser_get_ShouldUseLegacyV2Quirks_mB8917CAC10CD13E44F2EB21D4033044BEAF132B2(/*hidden argument*/NULL); if (!L_56) { goto IL_015b; } } { bool L_57 = V_6; if (L_57) { goto IL_015b; } } { uint16_t L_58 = V_3; if (L_58) { goto IL_015b; } } { uint16_t L_59 = V_1; uint16_t L_60 = V_4; uint16_t L_61 = V_2; if ((((int32_t)L_59) == ((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_60, (int32_t)L_61)), (int32_t)1))))) { goto IL_012c; } } { uint16_t L_62 = V_1; if (L_62) { goto IL_015b; } } { uint16_t L_63 = V_4; uint16_t L_64 = V_2; int32_t* L_65 = ___destLength2; int32_t L_66 = *((int32_t*)L_65); if ((!(((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_63, (int32_t)L_64)), (int32_t)1))) == ((uint32_t)L_66)))) { goto IL_015b; } } IL_012c: { uint16_t L_67 = V_4; uint16_t L_68 = V_2; V_2 = (uint16_t)((int32_t)((uint16_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_67, (int32_t)1)), (int32_t)L_68)))); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_69 = ___dest0; uint16_t L_70 = V_2; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_71 = ___dest0; uint16_t L_72 = V_4; int32_t* L_73 = ___destLength2; int32_t L_74 = *((int32_t*)L_73); uint16_t L_75 = V_2; Buffer_BlockCopy_mD01FC13D87078586714AA235261A9E786C351725((RuntimeArray *)(RuntimeArray *)L_69, ((int32_t)((int32_t)L_70<<(int32_t)1)), (RuntimeArray *)(RuntimeArray *)L_71, ((int32_t)((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_72, (int32_t)1))<<(int32_t)1)), ((int32_t)((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_74, (int32_t)L_75))<<(int32_t)1)), /*hidden argument*/NULL); int32_t* L_76 = ___destLength2; int32_t* L_77 = ___destLength2; int32_t L_78 = *((int32_t*)L_77); uint16_t L_79 = V_2; uint16_t L_80 = V_4; *((int32_t*)L_76) = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_78, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_79, (int32_t)L_80)), (int32_t)1)))); V_1 = (uint16_t)0; V_2 = (uint16_t)0; goto IL_0194; } IL_015b: { V_2 = (uint16_t)0; } IL_015d: { Il2CppChar L_81 = V_5; if ((!(((uint32_t)L_81) == ((uint32_t)((int32_t)47))))) { goto IL_0194; } } { uint16_t L_82 = V_3; if (!L_82) { goto IL_0191; } } { uint16_t L_83 = V_3; V_3 = (uint16_t)((int32_t)((uint16_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_83, (int32_t)1)))); uint16_t L_84 = V_1; V_1 = (uint16_t)((int32_t)((uint16_t)((int32_t)il2cpp_codegen_add((int32_t)L_84, (int32_t)1)))); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_85 = ___dest0; uint16_t L_86 = V_1; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_87 = ___dest0; uint16_t L_88 = V_4; int32_t* L_89 = ___destLength2; int32_t L_90 = *((int32_t*)L_89); uint16_t L_91 = V_1; Buffer_BlockCopy_mD01FC13D87078586714AA235261A9E786C351725((RuntimeArray *)(RuntimeArray *)L_85, ((int32_t)((int32_t)L_86<<(int32_t)1)), (RuntimeArray *)(RuntimeArray *)L_87, ((int32_t)((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_88, (int32_t)1))<<(int32_t)1)), ((int32_t)((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_90, (int32_t)L_91))<<(int32_t)1)), /*hidden argument*/NULL); int32_t* L_92 = ___destLength2; int32_t* L_93 = ___destLength2; int32_t L_94 = *((int32_t*)L_93); uint16_t L_95 = V_1; uint16_t L_96 = V_4; *((int32_t*)L_92) = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_94, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_95, (int32_t)L_96)), (int32_t)1)))); } IL_0191: { uint16_t L_97 = V_4; V_1 = L_97; } IL_0194: { uint16_t L_98 = V_4; V_4 = (uint16_t)((int32_t)((uint16_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_98, (int32_t)1)))); } IL_019b: { uint16_t L_99 = V_4; uint16_t L_100 = ___start1; if ((!(((uint32_t)L_99) == ((uint32_t)L_100)))) { goto IL_001b; } } { uint16_t L_101 = ___start1; ___start1 = (uint16_t)((int32_t)((uint16_t)((int32_t)il2cpp_codegen_add((int32_t)L_101, (int32_t)1)))); int32_t* L_102 = ___destLength2; int32_t L_103 = *((int32_t*)L_102); uint16_t L_104 = ___start1; if ((((int32_t)((int32_t)((uint16_t)L_103))) <= ((int32_t)L_104))) { goto IL_0221; } } { UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_105 = ___syntax3; NullCheck(L_105); bool L_106; L_106 = UriParser_InFact_m4E58BAFAB5A9BC24854C815FC093E16D4F1CFA4D(L_105, ((int32_t)16777216), /*hidden argument*/NULL); if (!L_106) { goto IL_0221; } } { uint16_t L_107 = V_0; if ((((int32_t)L_107) > ((int32_t)1))) { goto IL_0221; } } { uint16_t L_108 = V_3; if (!L_108) { goto IL_01ea; } } { CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_109 = ___dest0; uint16_t L_110 = ___start1; NullCheck(L_109); uint16_t L_111 = L_110; uint16_t L_112 = (uint16_t)(L_109)->GetAt(static_cast<il2cpp_array_size_t>(L_111)); if ((((int32_t)L_112) == ((int32_t)((int32_t)47)))) { goto IL_01ea; } } { uint16_t L_113 = V_1; V_1 = (uint16_t)((int32_t)((uint16_t)((int32_t)il2cpp_codegen_add((int32_t)L_113, (int32_t)1)))); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_114 = ___dest0; uint16_t L_115 = V_1; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_116 = ___dest0; uint16_t L_117 = ___start1; int32_t* L_118 = ___destLength2; int32_t L_119 = *((int32_t*)L_118); uint16_t L_120 = V_1; Buffer_BlockCopy_mD01FC13D87078586714AA235261A9E786C351725((RuntimeArray *)(RuntimeArray *)L_114, ((int32_t)((int32_t)L_115<<(int32_t)1)), (RuntimeArray *)(RuntimeArray *)L_116, ((int32_t)((int32_t)L_117<<(int32_t)1)), ((int32_t)((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_119, (int32_t)L_120))<<(int32_t)1)), /*hidden argument*/NULL); int32_t* L_121 = ___destLength2; int32_t* L_122 = ___destLength2; int32_t L_123 = *((int32_t*)L_122); uint16_t L_124 = V_1; *((int32_t*)L_121) = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_123, (int32_t)L_124)); goto IL_0221; } IL_01ea: { uint16_t L_125 = V_2; if (!L_125) { goto IL_0221; } } { uint16_t L_126 = V_1; uint16_t L_127 = V_2; if ((((int32_t)L_126) == ((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_127, (int32_t)1))))) { goto IL_01fd; } } { uint16_t L_128 = V_1; if (L_128) { goto IL_0221; } } { uint16_t L_129 = V_2; int32_t* L_130 = ___destLength2; int32_t L_131 = *((int32_t*)L_130); if ((!(((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_129, (int32_t)1))) == ((uint32_t)L_131)))) { goto IL_0221; } } IL_01fd: { uint16_t L_132 = V_2; uint16_t L_133 = V_1; G_B56_0 = L_132; if (!L_133) { G_B57_0 = L_132; goto IL_0204; } } { G_B58_0 = 1; G_B58_1 = G_B56_0; goto IL_0205; } IL_0204: { G_B58_0 = 0; G_B58_1 = G_B57_0; } IL_0205: { V_2 = (uint16_t)((int32_t)((uint16_t)((int32_t)il2cpp_codegen_add((int32_t)G_B58_1, (int32_t)G_B58_0)))); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_134 = ___dest0; uint16_t L_135 = V_2; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_136 = ___dest0; uint16_t L_137 = ___start1; int32_t* L_138 = ___destLength2; int32_t L_139 = *((int32_t*)L_138); uint16_t L_140 = V_2; Buffer_BlockCopy_mD01FC13D87078586714AA235261A9E786C351725((RuntimeArray *)(RuntimeArray *)L_134, ((int32_t)((int32_t)L_135<<(int32_t)1)), (RuntimeArray *)(RuntimeArray *)L_136, ((int32_t)((int32_t)L_137<<(int32_t)1)), ((int32_t)((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_139, (int32_t)L_140))<<(int32_t)1)), /*hidden argument*/NULL); int32_t* L_141 = ___destLength2; int32_t* L_142 = ___destLength2; int32_t L_143 = *((int32_t*)L_142); uint16_t L_144 = V_2; *((int32_t*)L_141) = (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_143, (int32_t)L_144)); } IL_0221: { CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_145 = ___dest0; return L_145; } } // System.Int32 System.Uri::CalculateCaseInsensitiveHashCode(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Uri_CalculateCaseInsensitiveHashCode_m3C1409D3BEC3AEDC2880109BF1755CF68263DD7A (String_t* ___text0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6_il2cpp_TypeInfo_var); StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 * L_0; L_0 = StringComparer_get_InvariantCultureIgnoreCase_m091360FF9FE3516559AFF706AF431E6FD4CCF2C2_inline(/*hidden argument*/NULL); String_t* L_1 = ___text0; NullCheck(L_0); int32_t L_2; L_2 = VirtFuncInvoker1< int32_t, String_t* >::Invoke(12 /* System.Int32 System.StringComparer::GetHashCode(System.String) */, L_0, L_1); return L_2; } } // System.Boolean System.Uri::IsLWS(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Uri_IsLWS_m4A41E0157130C65E6768C4F5CFEE2219DAE773B4 (Il2CppChar ___ch0, const RuntimeMethod* method) { { Il2CppChar L_0 = ___ch0; if ((((int32_t)L_0) > ((int32_t)((int32_t)32)))) { goto IL_001c; } } { Il2CppChar L_1 = ___ch0; if ((((int32_t)L_1) == ((int32_t)((int32_t)32)))) { goto IL_001a; } } { Il2CppChar L_2 = ___ch0; if ((((int32_t)L_2) == ((int32_t)((int32_t)10)))) { goto IL_001a; } } { Il2CppChar L_3 = ___ch0; if ((((int32_t)L_3) == ((int32_t)((int32_t)13)))) { goto IL_001a; } } { Il2CppChar L_4 = ___ch0; return (bool)((((int32_t)L_4) == ((int32_t)((int32_t)9)))? 1 : 0); } IL_001a: { return (bool)1; } IL_001c: { return (bool)0; } } // System.Boolean System.Uri::IsAsciiLetter(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Uri_IsAsciiLetter_mBEE6BD837C66CBB199E8A9FAB14A85744368F0FC (Il2CppChar ___character0, const RuntimeMethod* method) { { Il2CppChar L_0 = ___character0; if ((((int32_t)L_0) < ((int32_t)((int32_t)97)))) { goto IL_000a; } } { Il2CppChar L_1 = ___character0; if ((((int32_t)L_1) <= ((int32_t)((int32_t)122)))) { goto IL_001a; } } IL_000a: { Il2CppChar L_2 = ___character0; if ((((int32_t)L_2) < ((int32_t)((int32_t)65)))) { goto IL_0018; } } { Il2CppChar L_3 = ___character0; return (bool)((((int32_t)((((int32_t)L_3) > ((int32_t)((int32_t)90)))? 1 : 0)) == ((int32_t)0))? 1 : 0); } IL_0018: { return (bool)0; } IL_001a: { return (bool)1; } } // System.Boolean System.Uri::IsAsciiLetterOrDigit(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Uri_IsAsciiLetterOrDigit_m1DDFA9F464FD15F8482F0C669E7E22B20DE07DCA (Il2CppChar ___character0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { Il2CppChar L_0 = ___character0; IL2CPP_RUNTIME_CLASS_INIT(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); bool L_1; L_1 = Uri_IsAsciiLetter_mBEE6BD837C66CBB199E8A9FAB14A85744368F0FC(L_0, /*hidden argument*/NULL); if (L_1) { goto IL_0018; } } { Il2CppChar L_2 = ___character0; if ((((int32_t)L_2) < ((int32_t)((int32_t)48)))) { goto IL_0016; } } { Il2CppChar L_3 = ___character0; return (bool)((((int32_t)((((int32_t)L_3) > ((int32_t)((int32_t)57)))? 1 : 0)) == ((int32_t)0))? 1 : 0); } IL_0016: { return (bool)0; } IL_0018: { return (bool)1; } } // System.Boolean System.Uri::IsBidiControlCharacter(System.Char) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Uri_IsBidiControlCharacter_m36A30E0708EE0209208B23136C2BEC9C802C697B (Il2CppChar ___ch0, const RuntimeMethod* method) { { Il2CppChar L_0 = ___ch0; if ((((int32_t)L_0) == ((int32_t)((int32_t)8206)))) { goto IL_0039; } } { Il2CppChar L_1 = ___ch0; if ((((int32_t)L_1) == ((int32_t)((int32_t)8207)))) { goto IL_0039; } } { Il2CppChar L_2 = ___ch0; if ((((int32_t)L_2) == ((int32_t)((int32_t)8234)))) { goto IL_0039; } } { Il2CppChar L_3 = ___ch0; if ((((int32_t)L_3) == ((int32_t)((int32_t)8235)))) { goto IL_0039; } } { Il2CppChar L_4 = ___ch0; if ((((int32_t)L_4) == ((int32_t)((int32_t)8236)))) { goto IL_0039; } } { Il2CppChar L_5 = ___ch0; if ((((int32_t)L_5) == ((int32_t)((int32_t)8237)))) { goto IL_0039; } } { Il2CppChar L_6 = ___ch0; return (bool)((((int32_t)L_6) == ((int32_t)((int32_t)8238)))? 1 : 0); } IL_0039: { return (bool)1; } } // System.String System.Uri::StripBidiControlCharacter(System.Char*,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Uri_StripBidiControlCharacter_m17F47758CA4DA1A5D21B3D39D00E8364DC2CAF50 (Il2CppChar* ___strToClean0, int32_t ___start1, int32_t ___length2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709); s_Il2CppMethodInitialized = true; } CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* V_0 = NULL; int32_t V_1 = 0; int32_t V_2 = 0; Il2CppChar V_3 = 0x0; { int32_t L_0 = ___length2; if ((((int32_t)L_0) > ((int32_t)0))) { goto IL_000a; } } { return _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709; } IL_000a: { int32_t L_1 = ___length2; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_2 = (CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34*)(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34*)SZArrayNew(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34_il2cpp_TypeInfo_var, (uint32_t)L_1); V_0 = L_2; V_1 = 0; V_2 = 0; goto IL_0045; } IL_0017: { Il2CppChar* L_3 = ___strToClean0; int32_t L_4 = ___start1; int32_t L_5 = V_2; int32_t L_6 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_3, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)L_5))), (int32_t)2))))); V_3 = L_6; Il2CppChar L_7 = V_3; if ((((int32_t)L_7) < ((int32_t)((int32_t)8206)))) { goto IL_0039; } } { Il2CppChar L_8 = V_3; if ((((int32_t)L_8) > ((int32_t)((int32_t)8238)))) { goto IL_0039; } } { Il2CppChar L_9 = V_3; IL2CPP_RUNTIME_CLASS_INIT(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); bool L_10; L_10 = Uri_IsBidiControlCharacter_m36A30E0708EE0209208B23136C2BEC9C802C697B(L_9, /*hidden argument*/NULL); if (L_10) { goto IL_0041; } } IL_0039: { CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_11 = V_0; int32_t L_12 = V_1; int32_t L_13 = L_12; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1)); Il2CppChar L_14 = V_3; NullCheck(L_11); (L_11)->SetAt(static_cast<il2cpp_array_size_t>(L_13), (Il2CppChar)L_14); } IL_0041: { int32_t L_15 = V_2; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1)); } IL_0045: { int32_t L_16 = V_2; int32_t L_17 = ___length2; if ((((int32_t)L_16) < ((int32_t)L_17))) { goto IL_0017; } } { CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_18 = V_0; int32_t L_19 = V_1; String_t* L_20; L_20 = String_CreateString_m16F181739FD8BA877868803DE2CE0EF0A4668D0E(NULL, L_18, 0, L_19, /*hidden argument*/NULL); return L_20; } } // System.Void System.Uri::CreateThis(System.String,System.Boolean,System.UriKind) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Uri_CreateThis_m86E72577BCB9A6FDF5A0EC8EDFDD5F41AD3256FC (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, String_t* ___uri0, bool ___dontEscape1, int32_t ___uriKind2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D * V_1 = NULL; Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * G_B6_0 = NULL; Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * G_B5_0 = NULL; String_t* G_B7_0 = NULL; Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * G_B7_1 = NULL; { int32_t L_0 = ___uriKind2; if ((((int32_t)L_0) < ((int32_t)0))) { goto IL_0008; } } { int32_t L_1 = ___uriKind2; if ((((int32_t)L_1) <= ((int32_t)2))) { goto IL_002f; } } IL_0008: { int32_t L_2 = ___uriKind2; if ((((int32_t)L_2) == ((int32_t)((int32_t)300)))) { goto IL_002f; } } { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_3 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var)), (uint32_t)1); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_4 = L_3; int32_t L_5 = ___uriKind2; int32_t L_6 = L_5; RuntimeObject * L_7 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UriKind_tFC16ACC1842283AAE2C7F50C9C70EFBF6550B3FC_il2cpp_TypeInfo_var)), &L_6); NullCheck(L_4); ArrayElementTypeCheck (L_4, L_7); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_7); String_t* L_8; L_8 = SR_GetString_m4FFAF18248A54C5B67E4760C5ED4869A87BCAD7F(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral19A73218F14885E4C839EDA68A1C1C791F7745AA)), L_4, /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_9 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_9, L_8, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Uri_CreateThis_m86E72577BCB9A6FDF5A0EC8EDFDD5F41AD3256FC_RuntimeMethod_var))); } IL_002f: { String_t* L_10 = ___uri0; G_B5_0 = __this; if (!L_10) { G_B6_0 = __this; goto IL_0036; } } { String_t* L_11 = ___uri0; G_B7_0 = L_11; G_B7_1 = G_B5_0; goto IL_003b; } IL_0036: { String_t* L_12 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); G_B7_0 = L_12; G_B7_1 = G_B6_0; } IL_003b: { NullCheck(G_B7_1); G_B7_1->set_m_String_13(G_B7_0); bool L_13 = ___dontEscape1; if (!L_13) { goto IL_0056; } } { uint64_t L_14 = __this->get_m_Flags_17(); __this->set_m_Flags_17(((int64_t)((int64_t)L_14|(int64_t)((int64_t)((int64_t)((int32_t)524288)))))); } IL_0056: { String_t* L_15 = __this->get_m_String_13(); uint64_t* L_16 = __this->get_address_of_m_Flags_17(); UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A ** L_17 = __this->get_address_of_m_Syntax_15(); IL2CPP_RUNTIME_CLASS_INIT(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); int32_t L_18; L_18 = Uri_ParseScheme_m65694E4DA17BF0A8447ACE12EF444FE4D1E1AB16(L_15, (uint64_t*)L_16, (UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A **)L_17, /*hidden argument*/NULL); V_0 = L_18; int32_t L_19 = V_0; int32_t L_20 = ___uriKind2; Uri_InitializeUri_m952665E18BE60CFAC5A6025FCD2A0BB9CCB5C567(__this, L_19, L_20, (UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D **)(&V_1), /*hidden argument*/NULL); UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D * L_21 = V_1; if (!L_21) { goto IL_007d; } } { UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D * L_22 = V_1; IL2CPP_RAISE_MANAGED_EXCEPTION(L_22, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Uri_CreateThis_m86E72577BCB9A6FDF5A0EC8EDFDD5F41AD3256FC_RuntimeMethod_var))); } IL_007d: { return; } } // System.Void System.Uri::InitializeUri(System.ParsingError,System.UriKind,System.UriFormatException&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Uri_InitializeUri_m952665E18BE60CFAC5A6025FCD2A0BB9CCB5C567 (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, int32_t ___err0, int32_t ___uriKind1, UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D ** ___e2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } bool V_0 = false; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 2); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * G_B25_0 = NULL; Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * G_B22_0 = NULL; Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * G_B24_0 = NULL; Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * G_B23_0 = NULL; int32_t G_B26_0 = 0; Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * G_B26_1 = NULL; { int32_t L_0 = ___err0; if (L_0) { goto IL_00ce; } } { bool L_1; L_1 = Uri_get_IsImplicitFile_m58AC900A18C84E93F4611F97639112F801629DAA(__this, /*hidden argument*/NULL); if (!L_1) { goto IL_00e2; } } { int32_t L_2 = ___uriKind1; if (L_2) { goto IL_003c; } } { String_t* L_3 = __this->get_m_String_13(); NullCheck(L_3); int32_t L_4; L_4 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_3, /*hidden argument*/NULL); if ((((int32_t)L_4) <= ((int32_t)0))) { goto IL_003c; } } { String_t* L_5 = __this->get_m_String_13(); NullCheck(L_5); Il2CppChar L_6; L_6 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_5, 0, /*hidden argument*/NULL); if ((!(((uint32_t)L_6) == ((uint32_t)((int32_t)47))))) { goto IL_003c; } } { IL2CPP_RUNTIME_CLASS_INIT(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); bool L_7 = ((Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields*)il2cpp_codegen_static_fields_for(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var))->get_useDotNetRelativeOrAbsolute_24(); if (!L_7) { goto IL_00e2; } } IL_003c: { bool L_8; L_8 = Uri_NotAny_m2C222924AE10957D835ECBC887D456FB30DCF969(__this, ((int64_t)((int64_t)((int32_t)134217728))), /*hidden argument*/NULL); if (!L_8) { goto IL_009e; } } { int32_t L_9 = ___uriKind1; if ((((int32_t)L_9) == ((int32_t)1))) { goto IL_009e; } } { int32_t L_10 = ___uriKind1; if ((((int32_t)L_10) == ((int32_t)2))) { goto IL_0080; } } { String_t* L_11 = __this->get_m_String_13(); NullCheck(L_11); int32_t L_12; L_12 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_11, /*hidden argument*/NULL); if ((((int32_t)L_12) < ((int32_t)2))) { goto IL_009e; } } { String_t* L_13 = __this->get_m_String_13(); NullCheck(L_13); Il2CppChar L_14; L_14 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_13, 0, /*hidden argument*/NULL); if ((!(((uint32_t)L_14) == ((uint32_t)((int32_t)92))))) { goto IL_0080; } } { String_t* L_15 = __this->get_m_String_13(); NullCheck(L_15); Il2CppChar L_16; L_16 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_15, 1, /*hidden argument*/NULL); if ((((int32_t)L_16) == ((int32_t)((int32_t)92)))) { goto IL_009e; } } IL_0080: { __this->set_m_Syntax_15((UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A *)NULL); uint64_t L_17 = __this->get_m_Flags_17(); __this->set_m_Flags_17(((int64_t)((int64_t)L_17&(int64_t)((int64_t)((int64_t)((int32_t)524288)))))); UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D ** L_18 = ___e2; *((RuntimeObject **)L_18) = (RuntimeObject *)NULL; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_18, (void*)(RuntimeObject *)NULL); return; } IL_009e: { int32_t L_19 = ___uriKind1; if ((!(((uint32_t)L_19) == ((uint32_t)2)))) { goto IL_00e2; } } { bool L_20; L_20 = Uri_InFact_mF6A06FA7246740D26093421D41D18000AC2CC0C4(__this, ((int64_t)((int64_t)((int32_t)134217728))), /*hidden argument*/NULL); if (!L_20) { goto IL_00e2; } } { __this->set_m_Syntax_15((UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A *)NULL); uint64_t L_21 = __this->get_m_Flags_17(); __this->set_m_Flags_17(((int64_t)((int64_t)L_21&(int64_t)((int64_t)((int64_t)((int32_t)524288)))))); UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D ** L_22 = ___e2; *((RuntimeObject **)L_22) = (RuntimeObject *)NULL; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_22, (void*)(RuntimeObject *)NULL); return; } IL_00ce: { int32_t L_23 = ___err0; if ((((int32_t)L_23) <= ((int32_t)4))) { goto IL_00e2; } } { __this->set_m_String_13((String_t*)NULL); UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D ** L_24 = ___e2; int32_t L_25 = ___err0; IL2CPP_RUNTIME_CLASS_INIT(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D * L_26; L_26 = Uri_GetException_m6A158C16E69136DF56BCF19CC4C7DCCC2601CF84(L_25, /*hidden argument*/NULL); *((RuntimeObject **)L_24) = (RuntimeObject *)L_26; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_24, (void*)(RuntimeObject *)L_26); return; } IL_00e2: { V_0 = (bool)0; IL2CPP_RUNTIME_CLASS_INIT(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); bool L_27 = ((Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields*)il2cpp_codegen_static_fields_for(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var))->get_s_ConfigInitialized_20(); il2cpp_codegen_memory_barrier(); if (L_27) { goto IL_0100; } } { String_t* L_28 = __this->get_m_String_13(); bool L_29; L_29 = Uri_CheckForConfigLoad_m4AF9D27B5F62A0D4269B23FB3BEF4846E8D0983D(__this, L_28, /*hidden argument*/NULL); if (!L_29) { goto IL_0100; } } { IL2CPP_RUNTIME_CLASS_INIT(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); Uri_InitializeUriConfig_m0DB8F34B6FAF361C0FE002FA800548608A03F8E5(/*hidden argument*/NULL); } IL_0100: { IL2CPP_RUNTIME_CLASS_INIT(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); bool L_30 = ((Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields*)il2cpp_codegen_static_fields_for(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var))->get_s_IriParsing_23(); il2cpp_codegen_memory_barrier(); G_B22_0 = __this; if (!L_30) { G_B25_0 = __this; goto IL_0127; } } { UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_31 = __this->get_m_Syntax_15(); G_B23_0 = G_B22_0; if (!L_31) { G_B24_0 = G_B22_0; goto IL_0124; } } { UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_32 = __this->get_m_Syntax_15(); NullCheck(L_32); bool L_33; L_33 = UriParser_InFact_m4E58BAFAB5A9BC24854C815FC093E16D4F1CFA4D(L_32, ((int32_t)268435456), /*hidden argument*/NULL); G_B26_0 = ((int32_t)(L_33)); G_B26_1 = G_B23_0; goto IL_0128; } IL_0124: { G_B26_0 = 1; G_B26_1 = G_B24_0; goto IL_0128; } IL_0127: { G_B26_0 = 0; G_B26_1 = G_B25_0; } IL_0128: { NullCheck(G_B26_1); G_B26_1->set_m_iriParsing_19((bool)G_B26_0); bool L_34 = __this->get_m_iriParsing_19(); if (!L_34) { goto IL_0175; } } { String_t* L_35 = __this->get_m_String_13(); bool L_36; L_36 = Uri_CheckForUnicode_m2A9DB97F3B384DADC1A274C8982404DDE17F6688(__this, L_35, /*hidden argument*/NULL); if (L_36) { goto IL_0151; } } { String_t* L_37 = __this->get_m_String_13(); bool L_38; L_38 = Uri_CheckForEscapedUnreserved_m5EC5EFE77E30B08708B49086DF72A659454B1A2F(__this, L_37, /*hidden argument*/NULL); if (!L_38) { goto IL_0175; } } IL_0151: { uint64_t L_39 = __this->get_m_Flags_17(); __this->set_m_Flags_17(((int64_t)((int64_t)L_39|(int64_t)((int64_t)8589934592LL)))); V_0 = (bool)1; String_t* L_40 = __this->get_m_String_13(); __this->set_m_originalUnicodeString_14(L_40); } IL_0175: { UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_41 = __this->get_m_Syntax_15(); if (!L_41) { goto IL_0290; } } { UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_42 = __this->get_m_Syntax_15(); NullCheck(L_42); bool L_43; L_43 = UriParser_get_IsSimple_m09BA6505FDD1AE0BF6C711AE9C2C3F9379B868F8(L_42, /*hidden argument*/NULL); if (!L_43) { goto IL_01ef; } } { int32_t L_44; L_44 = Uri_PrivateParseMinimal_m154A67FFA2FA8E2D9215163B56DF1BB88576A369(__this, /*hidden argument*/NULL); int32_t L_45 = L_44; ___err0 = L_45; if (!L_45) { goto IL_01c9; } } { int32_t L_46 = ___uriKind1; if ((((int32_t)L_46) == ((int32_t)1))) { goto IL_01bf; } } { int32_t L_47 = ___err0; if ((((int32_t)L_47) > ((int32_t)4))) { goto IL_01bf; } } { __this->set_m_Syntax_15((UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A *)NULL); UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D ** L_48 = ___e2; *((RuntimeObject **)L_48) = (RuntimeObject *)NULL; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_48, (void*)(RuntimeObject *)NULL); uint64_t L_49 = __this->get_m_Flags_17(); __this->set_m_Flags_17(((int64_t)((int64_t)L_49&(int64_t)((int64_t)((int64_t)((int32_t)524288)))))); goto IL_01db; } IL_01bf: { UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D ** L_50 = ___e2; int32_t L_51 = ___err0; IL2CPP_RUNTIME_CLASS_INIT(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D * L_52; L_52 = Uri_GetException_m6A158C16E69136DF56BCF19CC4C7DCCC2601CF84(L_51, /*hidden argument*/NULL); *((RuntimeObject **)L_50) = (RuntimeObject *)L_52; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_50, (void*)(RuntimeObject *)L_52); goto IL_01db; } IL_01c9: { int32_t L_53 = ___uriKind1; if ((!(((uint32_t)L_53) == ((uint32_t)2)))) { goto IL_01d8; } } { UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D ** L_54 = ___e2; IL2CPP_RUNTIME_CLASS_INIT(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D * L_55; L_55 = Uri_GetException_m6A158C16E69136DF56BCF19CC4C7DCCC2601CF84(((int32_t)12), /*hidden argument*/NULL); *((RuntimeObject **)L_54) = (RuntimeObject *)L_55; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_54, (void*)(RuntimeObject *)L_55); goto IL_01db; } IL_01d8: { UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D ** L_56 = ___e2; *((RuntimeObject **)L_56) = (RuntimeObject *)NULL; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_56, (void*)(RuntimeObject *)NULL); } IL_01db: { bool L_57 = __this->get_m_iriParsing_19(); bool L_58 = V_0; if (!((int32_t)((int32_t)L_57&(int32_t)L_58))) { goto IL_0312; } } { Uri_EnsureParseRemaining_m7BC86BEFE07F56D480C9ACBCE64983806F6789BB(__this, /*hidden argument*/NULL); return; } IL_01ef: { UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_59 = __this->get_m_Syntax_15(); NullCheck(L_59); UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_60; L_60 = UriParser_InternalOnNewUri_m0AC629BCCA398E9A193AC16A5E91D445B9B70D79(L_59, /*hidden argument*/NULL); __this->set_m_Syntax_15(L_60); uint64_t L_61 = __this->get_m_Flags_17(); __this->set_m_Flags_17(((int64_t)((int64_t)L_61|(int64_t)((int64_t)((int64_t)((int32_t)16777216)))))); UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_62 = __this->get_m_Syntax_15(); UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D ** L_63 = ___e2; NullCheck(L_62); UriParser_InternalValidate_mB845C482B4B01EDFE012DD4C4CEF62C8F4FFE94F(L_62, __this, (UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D **)L_63, /*hidden argument*/NULL); UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D ** L_64 = ___e2; UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D * L_65 = *((UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D **)L_64); if (!L_65) { goto IL_0256; } } { int32_t L_66 = ___uriKind1; if ((((int32_t)L_66) == ((int32_t)1))) { goto IL_0312; } } { int32_t L_67 = ___err0; if (!L_67) { goto IL_0312; } } { int32_t L_68 = ___err0; if ((((int32_t)L_68) > ((int32_t)4))) { goto IL_0312; } } { __this->set_m_Syntax_15((UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A *)NULL); UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D ** L_69 = ___e2; *((RuntimeObject **)L_69) = (RuntimeObject *)NULL; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_69, (void*)(RuntimeObject *)NULL); uint64_t L_70 = __this->get_m_Flags_17(); __this->set_m_Flags_17(((int64_t)((int64_t)L_70&(int64_t)((int64_t)((int64_t)((int32_t)524288)))))); return; } IL_0256: { int32_t L_71 = ___err0; if (L_71) { goto IL_0267; } } { bool L_72; L_72 = Uri_InFact_mF6A06FA7246740D26093421D41D18000AC2CC0C4(__this, ((int64_t)((int64_t)((int32_t)67108864))), /*hidden argument*/NULL); if (!L_72) { goto IL_026f; } } IL_0267: { Uri_SetUserDrivenParsing_mDF0BFAFE946EAD9122ED2A542132902D7E47FD9C(__this, /*hidden argument*/NULL); goto IL_027c; } IL_026f: { int32_t L_73 = ___uriKind1; if ((!(((uint32_t)L_73) == ((uint32_t)2)))) { goto IL_027c; } } { UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D ** L_74 = ___e2; IL2CPP_RUNTIME_CLASS_INIT(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D * L_75; L_75 = Uri_GetException_m6A158C16E69136DF56BCF19CC4C7DCCC2601CF84(((int32_t)12), /*hidden argument*/NULL); *((RuntimeObject **)L_74) = (RuntimeObject *)L_75; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_74, (void*)(RuntimeObject *)L_75); } IL_027c: { bool L_76 = __this->get_m_iriParsing_19(); bool L_77 = V_0; if (!((int32_t)((int32_t)L_76&(int32_t)L_77))) { goto IL_0312; } } { Uri_EnsureParseRemaining_m7BC86BEFE07F56D480C9ACBCE64983806F6789BB(__this, /*hidden argument*/NULL); return; } IL_0290: { int32_t L_78 = ___err0; if (!L_78) { goto IL_0303; } } { int32_t L_79 = ___uriKind1; if ((((int32_t)L_79) == ((int32_t)1))) { goto IL_0303; } } { int32_t L_80 = ___err0; if ((((int32_t)L_80) > ((int32_t)4))) { goto IL_0303; } } { UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D ** L_81 = ___e2; *((RuntimeObject **)L_81) = (RuntimeObject *)NULL; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_81, (void*)(RuntimeObject *)NULL); uint64_t L_82 = __this->get_m_Flags_17(); __this->set_m_Flags_17(((int64_t)((int64_t)L_82&(int64_t)((int64_t)8590458880LL)))); bool L_83 = __this->get_m_iriParsing_19(); bool L_84 = V_0; if (!((int32_t)((int32_t)L_83&(int32_t)L_84))) { goto IL_0312; } } { String_t* L_85 = __this->get_m_originalUnicodeString_14(); String_t* L_86 = __this->get_m_originalUnicodeString_14(); NullCheck(L_86); int32_t L_87; L_87 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_86, /*hidden argument*/NULL); String_t* L_88; L_88 = Uri_EscapeUnescapeIri_m606A69B7A76A131D0CA6F562E5DC0721C626E071(__this, L_85, 0, L_87, 0, /*hidden argument*/NULL); __this->set_m_String_13(L_88); } IL_02dd: try { // begin try (depth: 1) { IL2CPP_RUNTIME_CLASS_INIT(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_il2cpp_TypeInfo_var); bool L_89; L_89 = UriParser_get_ShouldUseLegacyV2Quirks_mB8917CAC10CD13E44F2EB21D4033044BEAF132B2(/*hidden argument*/NULL); if (!L_89) { goto IL_02f6; } } IL_02e4: { String_t* L_90 = __this->get_m_String_13(); NullCheck(L_90); String_t* L_91; L_91 = String_Normalize_m8CD42072C9F7B418990609EB63C5F7E1328321A9(L_90, 1, /*hidden argument*/NULL); __this->set_m_String_13(L_91); } IL_02f6: { goto IL_0312; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) goto CATCH_02f8; throw e; } CATCH_02f8: { // begin catch(System.ArgumentException) UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D ** L_92 = ___e2; IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var))); UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D * L_93; L_93 = Uri_GetException_m6A158C16E69136DF56BCF19CC4C7DCCC2601CF84(1, /*hidden argument*/NULL); *((RuntimeObject **)L_92) = (RuntimeObject *)L_93; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_92, (void*)(RuntimeObject *)L_93); goto IL_0312; } // end catch (depth: 1) IL_0303: { __this->set_m_String_13((String_t*)NULL); UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D ** L_94 = ___e2; int32_t L_95 = ___err0; IL2CPP_RUNTIME_CLASS_INIT(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D * L_96; L_96 = Uri_GetException_m6A158C16E69136DF56BCF19CC4C7DCCC2601CF84(L_95, /*hidden argument*/NULL); *((RuntimeObject **)L_94) = (RuntimeObject *)L_96; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_94, (void*)(RuntimeObject *)L_96); } IL_0312: { return; } } // System.Boolean System.Uri::CheckForConfigLoad(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Uri_CheckForConfigLoad_m4AF9D27B5F62A0D4269B23FB3BEF4846E8D0983D (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, String_t* ___data0, const RuntimeMethod* method) { bool V_0 = false; int32_t V_1 = 0; Il2CppChar* V_2 = NULL; String_t* V_3 = NULL; int32_t V_4 = 0; { V_0 = (bool)0; String_t* L_0 = ___data0; NullCheck(L_0); int32_t L_1; L_1 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_0, /*hidden argument*/NULL); V_1 = L_1; String_t* L_2 = ___data0; V_3 = L_2; String_t* L_3 = V_3; V_2 = (Il2CppChar*)((uintptr_t)L_3); Il2CppChar* L_4 = V_2; if (!L_4) { goto IL_0019; } } { Il2CppChar* L_5 = V_2; int32_t L_6; L_6 = RuntimeHelpers_get_OffsetToStringData_mEB8E6EAEBAFAB7CD7F7A915B3081785AABB9FC42(/*hidden argument*/NULL); V_2 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_5, (int32_t)L_6)); } IL_0019: { V_4 = 0; goto IL_007d; } IL_001e: { Il2CppChar* L_7 = V_2; int32_t L_8 = V_4; int32_t L_9 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_7, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_8), (int32_t)2))))); if ((((int32_t)L_9) > ((int32_t)((int32_t)127)))) { goto IL_0073; } } { Il2CppChar* L_10 = V_2; int32_t L_11 = V_4; 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))))); if ((((int32_t)L_12) == ((int32_t)((int32_t)37)))) { goto IL_0073; } } { Il2CppChar* L_13 = V_2; int32_t L_14 = V_4; int32_t L_15 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_13, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_14), (int32_t)2))))); if ((!(((uint32_t)L_15) == ((uint32_t)((int32_t)120))))) { goto IL_0077; } } { int32_t L_16 = V_4; int32_t L_17 = V_1; if ((((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)3))) >= ((int32_t)L_17))) { goto IL_0077; } } { Il2CppChar* L_18 = V_2; int32_t L_19 = V_4; int32_t L_20 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_18, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)((int32_t)il2cpp_codegen_add((int32_t)L_19, (int32_t)1))), (int32_t)2))))); if ((!(((uint32_t)L_20) == ((uint32_t)((int32_t)110))))) { goto IL_0077; } } { Il2CppChar* L_21 = V_2; int32_t L_22 = V_4; int32_t L_23 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_21, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)((int32_t)il2cpp_codegen_add((int32_t)L_22, (int32_t)2))), (int32_t)2))))); if ((!(((uint32_t)L_23) == ((uint32_t)((int32_t)45))))) { goto IL_0077; } } { Il2CppChar* L_24 = V_2; int32_t L_25 = V_4; int32_t L_26 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_24, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)((int32_t)il2cpp_codegen_add((int32_t)L_25, (int32_t)3))), (int32_t)2))))); if ((!(((uint32_t)L_26) == ((uint32_t)((int32_t)45))))) { goto IL_0077; } } IL_0073: { V_0 = (bool)1; goto IL_0082; } IL_0077: { int32_t L_27 = V_4; V_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_27, (int32_t)1)); } IL_007d: { int32_t L_28 = V_4; int32_t L_29 = V_1; if ((((int32_t)L_28) < ((int32_t)L_29))) { goto IL_001e; } } IL_0082: { V_3 = (String_t*)NULL; bool L_30 = V_0; return L_30; } } // System.Boolean System.Uri::CheckForUnicode(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Uri_CheckForUnicode_m2A9DB97F3B384DADC1A274C8982404DDE17F6688 (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, String_t* ___data0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UriHelper_tBEFC75B3A4E9E35CB41ADAAE22E0D1D7EE65E53D_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } bool V_0 = false; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* V_1 = NULL; int32_t V_2 = 0; int32_t V_3 = 0; { V_0 = (bool)0; String_t* L_0 = ___data0; NullCheck(L_0); int32_t L_1; L_1 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_0, /*hidden argument*/NULL); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_2 = (CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34*)(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34*)SZArrayNew(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34_il2cpp_TypeInfo_var, (uint32_t)L_1); V_1 = L_2; V_2 = 0; String_t* L_3 = ___data0; String_t* L_4 = ___data0; NullCheck(L_4); int32_t L_5; L_5 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_4, /*hidden argument*/NULL); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_6 = V_1; IL2CPP_RUNTIME_CLASS_INIT(UriHelper_tBEFC75B3A4E9E35CB41ADAAE22E0D1D7EE65E53D_il2cpp_TypeInfo_var); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_7; L_7 = UriHelper_UnescapeString_mA17D82F433C1E293A09957A12BBA31A2617BB300(L_3, 0, L_5, L_6, (int32_t*)(&V_2), ((int32_t)65535), ((int32_t)65535), ((int32_t)65535), ((int32_t)10), (UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A *)NULL, (bool)0, /*hidden argument*/NULL); V_1 = L_7; V_3 = 0; goto IL_0047; } IL_0038: { CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_8 = V_1; int32_t L_9 = V_3; NullCheck(L_8); int32_t L_10 = L_9; uint16_t L_11 = (uint16_t)(L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10)); if ((((int32_t)L_11) <= ((int32_t)((int32_t)127)))) { goto IL_0043; } } { V_0 = (bool)1; goto IL_004b; } IL_0043: { int32_t L_12 = V_3; V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_0047: { int32_t L_13 = V_3; int32_t L_14 = V_2; if ((((int32_t)L_13) < ((int32_t)L_14))) { goto IL_0038; } } IL_004b: { bool L_15 = V_0; return L_15; } } // System.Boolean System.Uri::CheckForEscapedUnreserved(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Uri_CheckForEscapedUnreserved_m5EC5EFE77E30B08708B49086DF72A659454B1A2F (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, String_t* ___data0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UriHelper_tBEFC75B3A4E9E35CB41ADAAE22E0D1D7EE65E53D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } Il2CppChar* V_0 = NULL; String_t* V_1 = NULL; int32_t V_2 = 0; Il2CppChar V_3 = 0x0; { String_t* L_0 = ___data0; 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; L_4 = RuntimeHelpers_get_OffsetToStringData_mEB8E6EAEBAFAB7CD7F7A915B3081785AABB9FC42(/*hidden argument*/NULL); V_0 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_3, (int32_t)L_4)); } IL_0010: { V_2 = 0; goto IL_0087; } IL_0014: { Il2CppChar* L_5 = V_0; int32_t L_6 = V_2; int32_t L_7 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_5, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)L_6), (int32_t)2))))); if ((!(((uint32_t)L_7) == ((uint32_t)((int32_t)37))))) { goto IL_0083; } } { Il2CppChar* L_8 = V_0; int32_t L_9 = V_2; int32_t L_10 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_8, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1))), (int32_t)2))))); IL2CPP_RUNTIME_CLASS_INIT(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); bool L_11; L_11 = Uri_IsHexDigit_m87121EC1F62716CC681A4458BF2E6A6B844BD95F(L_10, /*hidden argument*/NULL); if (!L_11) { goto IL_0083; } } { Il2CppChar* L_12 = V_0; int32_t L_13 = V_2; int32_t L_14 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_12, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)2))), (int32_t)2))))); IL2CPP_RUNTIME_CLASS_INIT(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); bool L_15; L_15 = Uri_IsHexDigit_m87121EC1F62716CC681A4458BF2E6A6B844BD95F(L_14, /*hidden argument*/NULL); if (!L_15) { goto IL_0083; } } { Il2CppChar* L_16 = V_0; int32_t L_17 = V_2; int32_t L_18 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_16, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1))), (int32_t)2))))); if ((((int32_t)L_18) < ((int32_t)((int32_t)48)))) { goto IL_0083; } } { Il2CppChar* L_19 = V_0; int32_t L_20 = V_2; int32_t L_21 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_19, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)((int32_t)il2cpp_codegen_add((int32_t)L_20, (int32_t)1))), (int32_t)2))))); if ((((int32_t)L_21) > ((int32_t)((int32_t)55)))) { goto IL_0083; } } { Il2CppChar* L_22 = V_0; int32_t L_23 = V_2; int32_t L_24 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_22, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)((int32_t)il2cpp_codegen_add((int32_t)L_23, (int32_t)1))), (int32_t)2))))); Il2CppChar* L_25 = V_0; int32_t L_26 = V_2; int32_t L_27 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_25, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)((intptr_t)((int32_t)il2cpp_codegen_add((int32_t)L_26, (int32_t)2))), (int32_t)2))))); IL2CPP_RUNTIME_CLASS_INIT(UriHelper_tBEFC75B3A4E9E35CB41ADAAE22E0D1D7EE65E53D_il2cpp_TypeInfo_var); Il2CppChar L_28; L_28 = UriHelper_EscapedAscii_m80D926F5C8B177B5D041BBFEADEAB2363A324461(L_24, L_27, /*hidden argument*/NULL); V_3 = L_28; Il2CppChar L_29 = V_3; if ((((int32_t)L_29) == ((int32_t)((int32_t)65535)))) { goto IL_0083; } } { Il2CppChar L_30 = V_3; IL2CPP_RUNTIME_CLASS_INIT(UriHelper_tBEFC75B3A4E9E35CB41ADAAE22E0D1D7EE65E53D_il2cpp_TypeInfo_var); bool L_31; L_31 = UriHelper_Is3986Unreserved_m0532DF2A1577C475D0D83F10C6C5D91F125AC028(L_30, /*hidden argument*/NULL); if (!L_31) { goto IL_0083; } } { return (bool)1; } IL_0083: { int32_t L_32 = V_2; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_32, (int32_t)1)); } IL_0087: { int32_t L_33 = V_2; String_t* L_34 = ___data0; NullCheck(L_34); int32_t L_35; L_35 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_34, /*hidden argument*/NULL); if ((((int32_t)L_33) < ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_35, (int32_t)2))))) { goto IL_0014; } } { V_1 = (String_t*)NULL; return (bool)0; } } // System.Boolean System.Uri::TryCreate(System.String,System.UriKind,System.Uri&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Uri_TryCreate_m44277635BB8291BC0AADD85B9C9A015C1C21EF92 (String_t* ___uriString0, int32_t ___uriKind1, Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 ** ___result2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D * V_0 = NULL; { String_t* L_0 = ___uriString0; if (L_0) { goto IL_0008; } } { Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 ** L_1 = ___result2; *((RuntimeObject **)L_1) = (RuntimeObject *)NULL; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_1, (void*)(RuntimeObject *)NULL); return (bool)0; } IL_0008: { V_0 = (UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D *)NULL; Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 ** L_2 = ___result2; String_t* L_3 = ___uriString0; int32_t L_4 = ___uriKind1; IL2CPP_RUNTIME_CLASS_INIT(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_5; L_5 = Uri_CreateHelper_m95C8DB174EFC0CB21C3A74160A1001C14D3EF6DD(L_3, (bool)0, L_4, (UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D **)(&V_0), /*hidden argument*/NULL); *((RuntimeObject **)L_2) = (RuntimeObject *)L_5; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_2, (void*)(RuntimeObject *)L_5); UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D * L_6 = V_0; if (L_6) { goto IL_0022; } } { Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 ** L_7 = ___result2; Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_8 = *((Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 **)L_7); IL2CPP_RUNTIME_CLASS_INIT(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); bool L_9; L_9 = Uri_op_Inequality_m3B3733CAA19866A20EF76A772B368EFB5FC89A4F(L_8, (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 *)NULL, /*hidden argument*/NULL); return L_9; } IL_0022: { return (bool)0; } } // System.String System.Uri::GetComponents(System.UriComponents,System.UriFormat) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Uri_GetComponents_mA614A98C35F2E5D924A10A8018A46606AFB6133E (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, int32_t ___components0, int32_t ___format1, const RuntimeMethod* method) { { int32_t L_0 = ___components0; if (!((int32_t)((int32_t)L_0&(int32_t)((int32_t)-2147483648LL)))) { goto IL_002c; } } { int32_t L_1 = ___components0; if ((((int32_t)L_1) == ((int32_t)((int32_t)-2147483648LL)))) { goto IL_002c; } } { int32_t L_2 = ___components0; int32_t L_3 = L_2; RuntimeObject * L_4 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UriComponents_tA599793722A9810EC23036FF1B1B02A905B4EA76_il2cpp_TypeInfo_var)), &L_3); String_t* L_5; L_5 = SR_GetString_m9DC7F3962EEB239017A1A4C443F52047B5BC7462(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE13258345AC5ED7FA38D641004219DBE3A3FB56C)), /*hidden argument*/NULL); ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_6 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var))); ArgumentOutOfRangeException__ctor_m7C5B3BE7792B7C73E7D82C4DBAD4ACA2DAE71AA9(L_6, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF7C03E97995F6950303A46C204A216735E6B4582)), L_4, L_5, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Uri_GetComponents_mA614A98C35F2E5D924A10A8018A46606AFB6133E_RuntimeMethod_var))); } IL_002c: { int32_t L_7 = ___format1; if (!((int32_t)((int32_t)L_7&(int32_t)((int32_t)-4)))) { goto IL_003d; } } { ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_8 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var))); ArgumentOutOfRangeException__ctor_m329C2882A4CB69F185E98D0DD7E853AA9220960A(L_8, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral75C9716749EA210206E3467390B7A11F3F33DDFA)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Uri_GetComponents_mA614A98C35F2E5D924A10A8018A46606AFB6133E_RuntimeMethod_var))); } IL_003d: { bool L_9; L_9 = Uri_get_IsNotAbsoluteUri_m7394FF83375B299BA634518D3104903AFEAE3177(__this, /*hidden argument*/NULL); if (!L_9) { goto IL_0065; } } { int32_t L_10 = ___components0; if ((!(((uint32_t)L_10) == ((uint32_t)((int32_t)-2147483648LL))))) { goto IL_0055; } } { int32_t L_11 = ___format1; String_t* L_12; L_12 = Uri_GetRelativeSerializationString_mBCE8CC99C746B18A9DE0B2C6084C5B90A192130D(__this, L_11, /*hidden argument*/NULL); return L_12; } IL_0055: { String_t* L_13; L_13 = SR_GetString_m9DC7F3962EEB239017A1A4C443F52047B5BC7462(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE657126EBF76C06687ED6EAD2C714E37315C927F)), /*hidden argument*/NULL); InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_14 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var))); InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_14, L_13, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_14, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Uri_GetComponents_mA614A98C35F2E5D924A10A8018A46606AFB6133E_RuntimeMethod_var))); } IL_0065: { UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_15; L_15 = Uri_get_Syntax_mF7002491E720A700F68312C49337C6F5D91ABCC9_inline(__this, /*hidden argument*/NULL); NullCheck(L_15); bool L_16; L_16 = UriParser_get_IsSimple_m09BA6505FDD1AE0BF6C711AE9C2C3F9379B868F8(L_15, /*hidden argument*/NULL); if (!L_16) { goto IL_007b; } } { int32_t L_17 = ___components0; int32_t L_18 = ___format1; String_t* L_19; L_19 = Uri_GetComponentsHelper_mAA39E421157735AAD7D93A187CCCAED5A122C8E8(__this, L_17, L_18, /*hidden argument*/NULL); return L_19; } IL_007b: { UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_20; L_20 = Uri_get_Syntax_mF7002491E720A700F68312C49337C6F5D91ABCC9_inline(__this, /*hidden argument*/NULL); int32_t L_21 = ___components0; int32_t L_22 = ___format1; NullCheck(L_20); String_t* L_23; L_23 = UriParser_InternalGetComponents_mAB0A54E462724FA417D0EF3A2AD0BD24BC66DFF8(L_20, __this, L_21, L_22, /*hidden argument*/NULL); return L_23; } } // System.String System.Uri::UnescapeDataString(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Uri_UnescapeDataString_m52E242703F2842594B2B37D673CDD5465ABCC836 (String_t* ___stringToUnescape0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UriHelper_tBEFC75B3A4E9E35CB41ADAAE22E0D1D7EE65E53D_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } Il2CppChar* V_0 = NULL; String_t* V_1 = NULL; int32_t V_2 = 0; int32_t V_3 = 0; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* V_4 = NULL; { String_t* L_0 = ___stringToUnescape0; if (L_0) { goto IL_000e; } } { ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB * L_1 = (ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_tFB5C4621957BC53A7D1B4FDD5C38B4D6E15DB8FB_il2cpp_TypeInfo_var))); ArgumentNullException__ctor_m81AB157B93BFE2FBFDB08B88F84B444293042F97(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE86F8F43B9D456F4E47ACD029ADCCE78BE9C9AA7)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Uri_UnescapeDataString_m52E242703F2842594B2B37D673CDD5465ABCC836_RuntimeMethod_var))); } IL_000e: { String_t* L_2 = ___stringToUnescape0; NullCheck(L_2); int32_t L_3; L_3 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_2, /*hidden argument*/NULL); if (L_3) { goto IL_001c; } } { String_t* L_4 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); return L_4; } IL_001c: { String_t* L_5 = ___stringToUnescape0; 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_002c; } } { Il2CppChar* L_8 = V_0; int32_t L_9; L_9 = RuntimeHelpers_get_OffsetToStringData_mEB8E6EAEBAFAB7CD7F7A915B3081785AABB9FC42(/*hidden argument*/NULL); V_0 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_8, (int32_t)L_9)); } IL_002c: { V_2 = 0; goto IL_003f; } IL_0030: { Il2CppChar* L_10 = V_0; int32_t L_11 = V_2; 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))))); if ((((int32_t)L_12) == ((int32_t)((int32_t)37)))) { goto IL_0048; } } { int32_t L_13 = V_2; V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1)); } IL_003f: { int32_t L_14 = V_2; String_t* L_15 = ___stringToUnescape0; NullCheck(L_15); int32_t L_16; L_16 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_15, /*hidden argument*/NULL); if ((((int32_t)L_14) < ((int32_t)L_16))) { goto IL_0030; } } IL_0048: { int32_t L_17 = V_2; String_t* L_18 = ___stringToUnescape0; NullCheck(L_18); int32_t L_19; L_19 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_18, /*hidden argument*/NULL); if ((!(((uint32_t)L_17) == ((uint32_t)L_19)))) { goto IL_0053; } } { String_t* L_20 = ___stringToUnescape0; return L_20; } IL_0053: { V_3 = ((int32_t)10); V_2 = 0; String_t* L_21 = ___stringToUnescape0; NullCheck(L_21); int32_t L_22; L_22 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_21, /*hidden argument*/NULL); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_23 = (CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34*)(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34*)SZArrayNew(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34_il2cpp_TypeInfo_var, (uint32_t)L_22); V_4 = L_23; String_t* L_24 = ___stringToUnescape0; String_t* L_25 = ___stringToUnescape0; NullCheck(L_25); int32_t L_26; L_26 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_25, /*hidden argument*/NULL); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_27 = V_4; int32_t L_28 = V_3; IL2CPP_RUNTIME_CLASS_INIT(UriHelper_tBEFC75B3A4E9E35CB41ADAAE22E0D1D7EE65E53D_il2cpp_TypeInfo_var); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_29; L_29 = UriHelper_UnescapeString_mA17D82F433C1E293A09957A12BBA31A2617BB300(L_24, 0, L_26, L_27, (int32_t*)(&V_2), ((int32_t)65535), ((int32_t)65535), ((int32_t)65535), L_28, (UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A *)NULL, (bool)0, /*hidden argument*/NULL); V_4 = L_29; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_30 = V_4; int32_t L_31 = V_2; String_t* L_32; L_32 = String_CreateString_m16F181739FD8BA877868803DE2CE0EF0A4668D0E(NULL, L_30, 0, L_31, /*hidden argument*/NULL); return L_32; } } // System.String System.Uri::EscapeUnescapeIri(System.String,System.Int32,System.Int32,System.UriComponents) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Uri_EscapeUnescapeIri_m606A69B7A76A131D0CA6F562E5DC0721C626E071 (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, String_t* ___input0, int32_t ___start1, int32_t ___end2, int32_t ___component3, const RuntimeMethod* method) { Il2CppChar* V_0 = NULL; String_t* V_1 = NULL; { String_t* L_0 = ___input0; 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; L_4 = RuntimeHelpers_get_OffsetToStringData_mEB8E6EAEBAFAB7CD7F7A915B3081785AABB9FC42(/*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; int32_t L_6 = ___start1; int32_t L_7 = ___end2; int32_t L_8 = ___component3; String_t* L_9; L_9 = IriHelper_EscapeUnescapeIri_m6CABB7FC44037C0B5C18132AF5D8C55DB5C64444((Il2CppChar*)(Il2CppChar*)L_5, L_6, L_7, L_8, /*hidden argument*/NULL); return L_9; } } // System.Void System.Uri::.ctor(System.Uri/Flags,System.UriParser,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Uri__ctor_m899122920EF2C3DE3E7A620B823D43BDB54D3406 (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, uint64_t ___flags0, UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * ___uriParser1, String_t* ___uri2, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); uint64_t L_0 = ___flags0; __this->set_m_Flags_17(L_0); UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_1 = ___uriParser1; __this->set_m_Syntax_15(L_1); String_t* L_2 = ___uri2; __this->set_m_String_13(L_2); return; } } // System.Uri System.Uri::CreateHelper(System.String,System.Boolean,System.UriKind,System.UriFormatException&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * Uri_CreateHelper_m95C8DB174EFC0CB21C3A74160A1001C14D3EF6DD (String_t* ___uriString0, bool ___dontEscape1, int32_t ___uriKind2, UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D ** ___e3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * V_0 = NULL; uint64_t V_1 = 0; int32_t V_2 = 0; Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * V_3 = NULL; Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * V_4 = NULL; UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D * V_5 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); void* __leave_targets_storage = alloca(sizeof(int32_t) * 3); il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage); NO_UNUSED_WARNING (__leave_targets); { int32_t L_0 = ___uriKind2; if ((((int32_t)L_0) < ((int32_t)0))) { goto IL_0008; } } { int32_t L_1 = ___uriKind2; if ((((int32_t)L_1) <= ((int32_t)2))) { goto IL_002f; } } IL_0008: { int32_t L_2 = ___uriKind2; if ((((int32_t)L_2) == ((int32_t)((int32_t)300)))) { goto IL_002f; } } { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_3 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var)), (uint32_t)1); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_4 = L_3; int32_t L_5 = ___uriKind2; int32_t L_6 = L_5; RuntimeObject * L_7 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UriKind_tFC16ACC1842283AAE2C7F50C9C70EFBF6550B3FC_il2cpp_TypeInfo_var)), &L_6); NullCheck(L_4); ArrayElementTypeCheck (L_4, L_7); (L_4)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_7); String_t* L_8; L_8 = SR_GetString_m4FFAF18248A54C5B67E4760C5ED4869A87BCAD7F(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral19A73218F14885E4C839EDA68A1C1C791F7745AA)), L_4, /*hidden argument*/NULL); ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_9 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var))); ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_9, L_8, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Uri_CreateHelper_m95C8DB174EFC0CB21C3A74160A1001C14D3EF6DD_RuntimeMethod_var))); } IL_002f: { V_0 = (UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A *)NULL; V_1 = ((int64_t)((int64_t)0)); String_t* L_10 = ___uriString0; IL2CPP_RUNTIME_CLASS_INIT(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); int32_t L_11; L_11 = Uri_ParseScheme_m65694E4DA17BF0A8447ACE12EF444FE4D1E1AB16(L_10, (uint64_t*)(&V_1), (UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A **)(&V_0), /*hidden argument*/NULL); V_2 = L_11; bool L_12 = ___dontEscape1; if (!L_12) { goto IL_004b; } } { uint64_t L_13 = V_1; V_1 = ((int64_t)((int64_t)L_13|(int64_t)((int64_t)((int64_t)((int32_t)524288))))); } IL_004b: { int32_t L_14 = V_2; if (!L_14) { goto IL_0068; } } { int32_t L_15 = ___uriKind2; if ((((int32_t)L_15) == ((int32_t)1))) { goto IL_0066; } } { int32_t L_16 = V_2; if ((((int32_t)L_16) > ((int32_t)4))) { goto IL_0066; } } { uint64_t L_17 = V_1; String_t* L_18 = ___uriString0; Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_19 = (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 *)il2cpp_codegen_object_new(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); Uri__ctor_m899122920EF2C3DE3E7A620B823D43BDB54D3406(L_19, ((int64_t)((int64_t)L_17&(int64_t)((int64_t)((int64_t)((int32_t)524288))))), (UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A *)NULL, L_18, /*hidden argument*/NULL); return L_19; } IL_0066: { return (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 *)NULL; } IL_0068: { uint64_t L_20 = V_1; UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_21 = V_0; String_t* L_22 = ___uriString0; Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_23 = (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 *)il2cpp_codegen_object_new(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); Uri__ctor_m899122920EF2C3DE3E7A620B823D43BDB54D3406(L_23, L_20, L_21, L_22, /*hidden argument*/NULL); V_3 = L_23; } IL_0071: try { // begin try (depth: 1) { Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_24 = V_3; int32_t L_25 = V_2; int32_t L_26 = ___uriKind2; UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D ** L_27 = ___e3; NullCheck(L_24); Uri_InitializeUri_m952665E18BE60CFAC5A6025FCD2A0BB9CCB5C567(L_24, L_25, L_26, (UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D **)L_27, /*hidden argument*/NULL); UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D ** L_28 = ___e3; UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D * L_29 = *((UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D **)L_28); if (L_29) { goto IL_0083; } } IL_007e: { Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_30 = V_3; V_4 = L_30; goto IL_0093; } IL_0083: { V_4 = (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 *)NULL; goto IL_0093; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) goto CATCH_0088; throw e; } CATCH_0088: { // begin catch(System.UriFormatException) V_5 = ((UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D *)__exception_local); UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D ** L_31 = ___e3; UriFormatException_tAA45C6D2264E9E74935A066FC3DF8DF68B37B61D * L_32 = V_5; *((RuntimeObject **)L_31) = (RuntimeObject *)L_32; Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_31, (void*)(RuntimeObject *)L_32); V_4 = (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 *)NULL; goto IL_0093; } // end catch (depth: 1) IL_0093: { Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_33 = V_4; return L_33; } } // System.String System.Uri::GetRelativeSerializationString(System.UriFormat) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Uri_GetRelativeSerializationString_mBCE8CC99C746B18A9DE0B2C6084C5B90A192130D (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, int32_t ___format0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UriHelper_tBEFC75B3A4E9E35CB41ADAAE22E0D1D7EE65E53D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* V_1 = NULL; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* V_2 = NULL; int32_t V_3 = 0; { int32_t L_0 = ___format0; if ((!(((uint32_t)L_0) == ((uint32_t)1)))) { goto IL_0054; } } { String_t* L_1 = __this->get_m_String_13(); NullCheck(L_1); int32_t L_2; L_2 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_1, /*hidden argument*/NULL); if (L_2) { goto IL_0017; } } { String_t* L_3 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); return L_3; } IL_0017: { V_0 = 0; String_t* L_4 = __this->get_m_String_13(); String_t* L_5 = __this->get_m_String_13(); NullCheck(L_5); int32_t L_6; L_6 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_5, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(UriHelper_tBEFC75B3A4E9E35CB41ADAAE22E0D1D7EE65E53D_il2cpp_TypeInfo_var); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_7; L_7 = UriHelper_EscapeString_m322E8737F58BBAF891A75032EC1800BE548F84D7(L_4, 0, L_6, (CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34*)(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34*)NULL, (int32_t*)(&V_0), (bool)1, ((int32_t)65535), ((int32_t)65535), ((int32_t)37), /*hidden argument*/NULL); V_1 = L_7; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_8 = V_1; if (L_8) { goto IL_004b; } } { String_t* L_9 = __this->get_m_String_13(); return L_9; } IL_004b: { CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_10 = V_1; int32_t L_11 = V_0; String_t* L_12; L_12 = String_CreateString_m16F181739FD8BA877868803DE2CE0EF0A4668D0E(NULL, L_10, 0, L_11, /*hidden argument*/NULL); return L_12; } IL_0054: { int32_t L_13 = ___format0; if ((!(((uint32_t)L_13) == ((uint32_t)2)))) { goto IL_0064; } } { String_t* L_14 = __this->get_m_String_13(); IL2CPP_RUNTIME_CLASS_INIT(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); String_t* L_15; L_15 = Uri_UnescapeDataString_m52E242703F2842594B2B37D673CDD5465ABCC836(L_14, /*hidden argument*/NULL); return L_15; } IL_0064: { int32_t L_16 = ___format0; if ((!(((uint32_t)L_16) == ((uint32_t)3)))) { goto IL_00c4; } } { String_t* L_17 = __this->get_m_String_13(); NullCheck(L_17); int32_t L_18; L_18 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_17, /*hidden argument*/NULL); if (L_18) { goto IL_007b; } } { String_t* L_19 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); return L_19; } IL_007b: { String_t* L_20 = __this->get_m_String_13(); NullCheck(L_20); int32_t L_21; L_21 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_20, /*hidden argument*/NULL); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_22 = (CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34*)(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34*)SZArrayNew(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34_il2cpp_TypeInfo_var, (uint32_t)L_21); V_2 = L_22; V_3 = 0; String_t* L_23 = __this->get_m_String_13(); String_t* L_24 = __this->get_m_String_13(); NullCheck(L_24); int32_t L_25; L_25 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_24, /*hidden argument*/NULL); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_26 = V_2; IL2CPP_RUNTIME_CLASS_INIT(UriHelper_tBEFC75B3A4E9E35CB41ADAAE22E0D1D7EE65E53D_il2cpp_TypeInfo_var); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_27; L_27 = UriHelper_UnescapeString_mA17D82F433C1E293A09957A12BBA31A2617BB300(L_23, 0, L_25, L_26, (int32_t*)(&V_3), ((int32_t)65535), ((int32_t)65535), ((int32_t)65535), 3, (UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A *)NULL, (bool)0, /*hidden argument*/NULL); V_2 = L_27; CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_28 = V_2; int32_t L_29 = V_3; String_t* L_30; L_30 = String_CreateString_m16F181739FD8BA877868803DE2CE0EF0A4668D0E(NULL, L_28, 0, L_29, /*hidden argument*/NULL); return L_30; } IL_00c4: { ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_31 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var))); ArgumentOutOfRangeException__ctor_m329C2882A4CB69F185E98D0DD7E853AA9220960A(L_31, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral75C9716749EA210206E3467390B7A11F3F33DDFA)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_31, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Uri_GetRelativeSerializationString_mBCE8CC99C746B18A9DE0B2C6084C5B90A192130D_RuntimeMethod_var))); } } // System.String System.Uri::GetComponentsHelper(System.UriComponents,System.UriFormat) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Uri_GetComponentsHelper_mAA39E421157735AAD7D93A187CCCAED5A122C8E8 (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, int32_t ___uriComponents0, int32_t ___uriFormat1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { int32_t L_0 = ___uriComponents0; if ((!(((uint32_t)L_0) == ((uint32_t)1)))) { goto IL_0010; } } { UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_1 = __this->get_m_Syntax_15(); NullCheck(L_1); String_t* L_2; L_2 = UriParser_get_SchemeName_mFCD123235673631E05FE9BAF6955A0B43EEEBD80_inline(L_1, /*hidden argument*/NULL); return L_2; } IL_0010: { int32_t L_3 = ___uriComponents0; if (!((int32_t)((int32_t)L_3&(int32_t)((int32_t)-2147483648LL)))) { goto IL_001f; } } { int32_t L_4 = ___uriComponents0; ___uriComponents0 = ((int32_t)((int32_t)L_4|(int32_t)((int32_t)127))); } IL_001f: { Uri_EnsureParseRemaining_m7BC86BEFE07F56D480C9ACBCE64983806F6789BB(__this, /*hidden argument*/NULL); int32_t L_5 = ___uriComponents0; if (!((int32_t)((int32_t)L_5&(int32_t)((int32_t)256)))) { goto IL_0033; } } { int32_t L_6 = ___uriComponents0; ___uriComponents0 = ((int32_t)((int32_t)L_6|(int32_t)4)); } IL_0033: { int32_t L_7 = ___uriComponents0; if (!((int32_t)((int32_t)L_7&(int32_t)4))) { goto IL_003f; } } { Uri_EnsureHostString_m47897EC94F83DFE1CA16CE71167DDD3CC986C22A(__this, (bool)1, /*hidden argument*/NULL); } IL_003f: { int32_t L_8 = ___uriComponents0; if ((((int32_t)L_8) == ((int32_t)8))) { goto IL_004b; } } { int32_t L_9 = ___uriComponents0; if ((!(((uint32_t)L_9) == ((uint32_t)((int32_t)128))))) { goto IL_0091; } } IL_004b: { uint64_t L_10 = __this->get_m_Flags_17(); if (((int64_t)((int64_t)L_10&(int64_t)((int64_t)((int64_t)((int32_t)8388608)))))) { goto IL_0070; } } { int32_t L_11 = ___uriComponents0; if ((!(((uint32_t)L_11) == ((uint32_t)((int32_t)128))))) { goto IL_008b; } } { UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_12 = __this->get_m_Syntax_15(); NullCheck(L_12); int32_t L_13; L_13 = UriParser_get_DefaultPort_m7ECA5BE839D36C7FF854FEA0795D8DE701487D33_inline(L_12, /*hidden argument*/NULL); if ((((int32_t)L_13) == ((int32_t)(-1)))) { goto IL_008b; } } IL_0070: { UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_14 = __this->get_m_Info_18(); NullCheck(L_14); Offset_t6F140A0C5B2AB5511E7E458806A6A73AE0A34DE5 * L_15 = L_14->get_address_of_Offset_3(); uint16_t* L_16 = L_15->get_address_of_PortValue_3(); IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var); CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_17; L_17 = CultureInfo_get_InvariantCulture_m9FAAFAF8A00091EE1FCB7098AD3F163ECDF02164(/*hidden argument*/NULL); String_t* L_18; L_18 = UInt16_ToString_m960B640F8B0C181A9185FCD0921B2F85106FE336((uint16_t*)L_16, L_17, /*hidden argument*/NULL); return L_18; } IL_008b: { String_t* L_19 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5(); return L_19; } IL_0091: { int32_t L_20 = ___uriComponents0; if (!((int32_t)((int32_t)L_20&(int32_t)((int32_t)128)))) { goto IL_009f; } } { int32_t L_21 = ___uriComponents0; ___uriComponents0 = ((int32_t)((int32_t)L_21|(int32_t)8)); } IL_009f: { int32_t L_22 = ___uriComponents0; if ((!(((uint32_t)L_22) == ((uint32_t)4)))) { goto IL_00c9; } } { int32_t L_23 = ___uriFormat1; if ((((int32_t)L_23) == ((int32_t)1))) { goto IL_00b6; } } { uint64_t L_24 = __this->get_m_Flags_17(); if (((int64_t)((int64_t)L_24&(int64_t)((int64_t)((int64_t)((int32_t)260)))))) { goto IL_00c9; } } IL_00b6: { Uri_EnsureHostString_m47897EC94F83DFE1CA16CE71167DDD3CC986C22A(__this, (bool)0, /*hidden argument*/NULL); UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * L_25 = __this->get_m_Info_18(); NullCheck(L_25); String_t* L_26 = L_25->get_Host_0(); return L_26; } IL_00c9: { int32_t L_27 = ___uriFormat1; if ((((int32_t)L_27) == ((int32_t)1))) { goto IL_00dd; } } { int32_t L_28 = ___uriFormat1; if ((!(((uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_28, (int32_t)2))) > ((uint32_t)1)))) { goto IL_00e5; } } { int32_t L_29 = ___uriFormat1; if ((((int32_t)L_29) == ((int32_t)((int32_t)32767)))) { goto IL_00e5; } } { goto IL_00ee; } IL_00dd: { int32_t L_30 = ___uriComponents0; String_t* L_31; L_31 = Uri_GetEscapedParts_m61C2B2B898F8AA8B75AAEC38EF78C340BC1F5A20(__this, L_30, /*hidden argument*/NULL); return L_31; } IL_00e5: { int32_t L_32 = ___uriComponents0; int32_t L_33 = ___uriFormat1; String_t* L_34; L_34 = Uri_GetUnescapedParts_m6F106ECABBBAFA95C3F3CA86F540B9EE0B9D01D4(__this, L_32, L_33, /*hidden argument*/NULL); return L_34; } IL_00ee: { ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_35 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var))); ArgumentOutOfRangeException__ctor_m329C2882A4CB69F185E98D0DD7E853AA9220960A(L_35, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB856D5F930F0597377D1341A0C6F24DD74854667)), /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_35, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Uri_GetComponentsHelper_mAA39E421157735AAD7D93A187CCCAED5A122C8E8_RuntimeMethod_var))); } } // System.Void System.Uri::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Uri__cctor_mA68C4B77F99F4519E579073E32CB924DB4467457 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Path_tF1D95B78D57C1C1211BA6633FF2AC22FD6C48921_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_t1267FAF6E08D720F26ABF676554E6948A7F6A2D0____C02C28AFEBE998F767E4AF43E3BE8F5E9FA11536_1_FieldInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_t1267FAF6E08D720F26ABF676554E6948A7F6A2D0____E5BC1BAFADE1862DD6E0B9FB632BFAA6C3873A78_3_FieldInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6A1D52382547009AB732F651FE2CA42F1BBA769A); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral778DFAE29C280DA8F24CB36747AB3656B8220A6F); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral77D38C0623F92B292B925F6E72CF5CF99A20D4EB); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB7C45DD316C68ABF3429C20058C2981C652192F2); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC754689D33E77DA33A161FB7A06C164EDF02EE65); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_il2cpp_TypeInfo_var); UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_0 = ((UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_il2cpp_TypeInfo_var))->get_FileUri_12(); NullCheck(L_0); String_t* L_1; L_1 = UriParser_get_SchemeName_mFCD123235673631E05FE9BAF6955A0B43EEEBD80_inline(L_0, /*hidden argument*/NULL); ((Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields*)il2cpp_codegen_static_fields_for(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var))->set_UriSchemeFile_0(L_1); UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_2 = ((UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_il2cpp_TypeInfo_var))->get_FtpUri_11(); NullCheck(L_2); String_t* L_3; L_3 = UriParser_get_SchemeName_mFCD123235673631E05FE9BAF6955A0B43EEEBD80_inline(L_2, /*hidden argument*/NULL); ((Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields*)il2cpp_codegen_static_fields_for(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var))->set_UriSchemeFtp_1(L_3); UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_4 = ((UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_il2cpp_TypeInfo_var))->get_GopherUri_13(); NullCheck(L_4); String_t* L_5; L_5 = UriParser_get_SchemeName_mFCD123235673631E05FE9BAF6955A0B43EEEBD80_inline(L_4, /*hidden argument*/NULL); ((Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields*)il2cpp_codegen_static_fields_for(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var))->set_UriSchemeGopher_2(L_5); UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_6 = ((UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_il2cpp_TypeInfo_var))->get_HttpUri_7(); NullCheck(L_6); String_t* L_7; L_7 = UriParser_get_SchemeName_mFCD123235673631E05FE9BAF6955A0B43EEEBD80_inline(L_6, /*hidden argument*/NULL); ((Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields*)il2cpp_codegen_static_fields_for(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var))->set_UriSchemeHttp_3(L_7); UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_8 = ((UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_il2cpp_TypeInfo_var))->get_HttpsUri_8(); NullCheck(L_8); String_t* L_9; L_9 = UriParser_get_SchemeName_mFCD123235673631E05FE9BAF6955A0B43EEEBD80_inline(L_8, /*hidden argument*/NULL); ((Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields*)il2cpp_codegen_static_fields_for(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var))->set_UriSchemeHttps_4(L_9); UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_10 = ((UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_il2cpp_TypeInfo_var))->get_WsUri_9(); NullCheck(L_10); String_t* L_11; L_11 = UriParser_get_SchemeName_mFCD123235673631E05FE9BAF6955A0B43EEEBD80_inline(L_10, /*hidden argument*/NULL); ((Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields*)il2cpp_codegen_static_fields_for(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var))->set_UriSchemeWs_5(L_11); UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_12 = ((UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_il2cpp_TypeInfo_var))->get_WssUri_10(); NullCheck(L_12); String_t* L_13; L_13 = UriParser_get_SchemeName_mFCD123235673631E05FE9BAF6955A0B43EEEBD80_inline(L_12, /*hidden argument*/NULL); ((Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields*)il2cpp_codegen_static_fields_for(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var))->set_UriSchemeWss_6(L_13); UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_14 = ((UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_il2cpp_TypeInfo_var))->get_MailToUri_16(); NullCheck(L_14); String_t* L_15; L_15 = UriParser_get_SchemeName_mFCD123235673631E05FE9BAF6955A0B43EEEBD80_inline(L_14, /*hidden argument*/NULL); ((Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields*)il2cpp_codegen_static_fields_for(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var))->set_UriSchemeMailto_7(L_15); UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_16 = ((UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_il2cpp_TypeInfo_var))->get_NewsUri_15(); NullCheck(L_16); String_t* L_17; L_17 = UriParser_get_SchemeName_mFCD123235673631E05FE9BAF6955A0B43EEEBD80_inline(L_16, /*hidden argument*/NULL); ((Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields*)il2cpp_codegen_static_fields_for(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var))->set_UriSchemeNews_8(L_17); UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_18 = ((UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_il2cpp_TypeInfo_var))->get_NntpUri_14(); NullCheck(L_18); String_t* L_19; L_19 = UriParser_get_SchemeName_mFCD123235673631E05FE9BAF6955A0B43EEEBD80_inline(L_18, /*hidden argument*/NULL); ((Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields*)il2cpp_codegen_static_fields_for(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var))->set_UriSchemeNntp_9(L_19); UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_20 = ((UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_il2cpp_TypeInfo_var))->get_NetTcpUri_20(); NullCheck(L_20); String_t* L_21; L_21 = UriParser_get_SchemeName_mFCD123235673631E05FE9BAF6955A0B43EEEBD80_inline(L_20, /*hidden argument*/NULL); ((Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields*)il2cpp_codegen_static_fields_for(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var))->set_UriSchemeNetTcp_10(L_21); UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_22 = ((UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_StaticFields*)il2cpp_codegen_static_fields_for(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A_il2cpp_TypeInfo_var))->get_NetPipeUri_21(); NullCheck(L_22); String_t* L_23; L_23 = UriParser_get_SchemeName_mFCD123235673631E05FE9BAF6955A0B43EEEBD80_inline(L_22, /*hidden argument*/NULL); ((Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields*)il2cpp_codegen_static_fields_for(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var))->set_UriSchemeNetPipe_11(L_23); ((Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields*)il2cpp_codegen_static_fields_for(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var))->set_SchemeDelimiter_12(_stringLiteral6A1D52382547009AB732F651FE2CA42F1BBA769A); il2cpp_codegen_memory_barrier(); ((Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields*)il2cpp_codegen_static_fields_for(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var))->set_s_IdnScope_22(0); String_t* L_24; L_24 = Environment_GetEnvironmentVariable_mBDE19BD883E2D01AEA6DD1667D5E97941558C7A3(_stringLiteralC754689D33E77DA33A161FB7A06C164EDF02EE65, /*hidden argument*/NULL); bool L_25; L_25 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_24, _stringLiteral77D38C0623F92B292B925F6E72CF5CF99A20D4EB, /*hidden argument*/NULL); il2cpp_codegen_memory_barrier(); ((Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields*)il2cpp_codegen_static_fields_for(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var))->set_s_IriParsing_23(((((int32_t)L_25) == ((int32_t)0))? 1 : 0)); String_t* L_26; L_26 = Environment_GetEnvironmentVariable_mBDE19BD883E2D01AEA6DD1667D5E97941558C7A3(_stringLiteral778DFAE29C280DA8F24CB36747AB3656B8220A6F, /*hidden argument*/NULL); bool L_27; L_27 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_26, _stringLiteralB7C45DD316C68ABF3429C20058C2981C652192F2, /*hidden argument*/NULL); ((Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields*)il2cpp_codegen_static_fields_for(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var))->set_useDotNetRelativeOrAbsolute_24(L_27); IL2CPP_RUNTIME_CLASS_INIT(Path_tF1D95B78D57C1C1211BA6633FF2AC22FD6C48921_il2cpp_TypeInfo_var); Il2CppChar L_28 = ((Path_tF1D95B78D57C1C1211BA6633FF2AC22FD6C48921_StaticFields*)il2cpp_codegen_static_fields_for(Path_tF1D95B78D57C1C1211BA6633FF2AC22FD6C48921_il2cpp_TypeInfo_var))->get_DirectorySeparatorChar_2(); ((Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields*)il2cpp_codegen_static_fields_for(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var))->set_IsWindowsFileSystem_25((bool)((((int32_t)L_28) == ((int32_t)((int32_t)92)))? 1 : 0)); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_29 = (CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34*)(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34*)SZArrayNew(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34_il2cpp_TypeInfo_var, (uint32_t)((int32_t)16)); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_30 = L_29; RuntimeFieldHandle_t7BE65FC857501059EBAC9772C93B02CD413D9C96 L_31 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t1267FAF6E08D720F26ABF676554E6948A7F6A2D0____C02C28AFEBE998F767E4AF43E3BE8F5E9FA11536_1_FieldInfo_var) }; RuntimeHelpers_InitializeArray_mE27238308FED781F2D6A719F0903F2E1311B058F((RuntimeArray *)(RuntimeArray *)L_30, L_31, /*hidden argument*/NULL); ((Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields*)il2cpp_codegen_static_fields_for(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var))->set_HexLowerChars_27(L_30); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_32 = (CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34*)(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34*)SZArrayNew(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34_il2cpp_TypeInfo_var, (uint32_t)4); CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_33 = L_32; RuntimeFieldHandle_t7BE65FC857501059EBAC9772C93B02CD413D9C96 L_34 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_t1267FAF6E08D720F26ABF676554E6948A7F6A2D0____E5BC1BAFADE1862DD6E0B9FB632BFAA6C3873A78_3_FieldInfo_var) }; RuntimeHelpers_InitializeArray_mE27238308FED781F2D6A719F0903F2E1311B058F((RuntimeArray *)(RuntimeArray *)L_33, L_34, /*hidden argument*/NULL); ((Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields*)il2cpp_codegen_static_fields_for(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var))->set__WSchars_28(L_33); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool RegexFC_IsCaseInsensitive_m522494DC3CF0587D7B65D57B4C14E1428A2E34CA_inline (RegexFC_t76D8E0886974788FD71BD44072ADAD5326475826 * __this, const RuntimeMethod* method) { { bool L_0 = __this->get__caseInsensitive_2(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RegexPrefix_t1563C82A76799B0B018F5EBD6EC068158BE50301 * RegexPrefix_get_Empty_m65C2AD019C414B97A57D5AA5B4B0DC331E011A8C_inline (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexPrefix_t1563C82A76799B0B018F5EBD6EC068158BE50301_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(RegexPrefix_t1563C82A76799B0B018F5EBD6EC068158BE50301_il2cpp_TypeInfo_var); RegexPrefix_t1563C82A76799B0B018F5EBD6EC068158BE50301 * L_0 = ((RegexPrefix_t1563C82A76799B0B018F5EBD6EC068158BE50301_StaticFields*)il2cpp_codegen_static_fields_for(RegexPrefix_t1563C82A76799B0B018F5EBD6EC068158BE50301_il2cpp_TypeInfo_var))->get__empty_2(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline (String_t* __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_m_stringLength_0(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool RegexPrefix_get_CaseInsensitive_mB4CF8FBFABE26F206AF6324A0C87DFB34C051A95_inline (RegexPrefix_t1563C82A76799B0B018F5EBD6EC068158BE50301 * __this, const RuntimeMethod* method) { { bool L_0 = __this->get__caseInsensitive_1(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* RegexPrefix_get_Prefix_m6806C1EEE5B8973606B320A9C4CD5A9E91466F34_inline (RegexPrefix_t1563C82A76799B0B018F5EBD6EC068158BE50301 * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get__prefix_0(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t RegexInterpreter_Operator_m9C06EB53FFBB6722B2ACB95057BC30E0A9F05DFF_inline (RegexInterpreter_tF3C74D72240962B960AE4D39D9CF1632C9C2982E * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_runoperator_18(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t RegexInterpreter_Textpos_mCCC8ABAE83D37BA6F060242E1ECAC7D91D8910F5_inline (RegexInterpreter_tF3C74D72240962B960AE4D39D9CF1632C9C2982E * __this, const RuntimeMethod* method) { { int32_t L_0 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtextpos_4(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void RegexInterpreter_Textto_m874B113DFF6381DFC1BF8A8F7E6D79B819CF06AE_inline (RegexInterpreter_tF3C74D72240962B960AE4D39D9CF1632C9C2982E * __this, int32_t ___newpos0, const RuntimeMethod* method) { { int32_t L_0 = ___newpos0; ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->set_runtextpos_4(L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t RegexInterpreter_Textstart_m635CAE9587982E8C88F98F7374460E742A7F5953_inline (RegexInterpreter_tF3C74D72240962B960AE4D39D9CF1632C9C2982E * __this, const RuntimeMethod* method) { { int32_t L_0 = ((RegexRunner_t1A33A1310B80DBCFF08E50D45B5D50E0B93CB934 *)__this)->get_runtextstart_2(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t TimeSpan_get_Ticks_mE4C9E1F27DC794028CEDCF7CB5BD092D16DBACD4_inline (TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * __this, const RuntimeMethod* method) { { int64_t L_0 = __this->get__ticks_3(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t RegexNode_Type_m3C72321B307C77AF12F294F366D57D2C77832F27_inline (RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get__type_0(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t RegexParser_Textpos_m5A18C75CE7F3A5AE17373DA09A20070D988308C5_inline (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get__currentPos_6(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * RegexParser_Unit_m88B751E79E4DE41D295805439EE6D1D5B7170D7F_inline (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, const RuntimeMethod* method) { { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_0 = __this->get__unit_4(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void RegexParser_AddUnitNode_m84299A7BCF95B87B5B4672759DE2D8D863FA80E2_inline (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * ___node0, const RuntimeMethod* method) { { RegexNode_t0C22422611EBAF941144402F8CAB0FA1A0AE7D43 * L_0 = ___node0; __this->set__unit_4(L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void RegexParser_Textto_mE4BCC8608BF006D283A32F9C5811264467EEB806_inline (RegexParser_t673103BAE9C6E80634528A1F73A81772DD98E6D9 * __this, int32_t ___pos0, const RuntimeMethod* method) { { int32_t L_0 = ___pos0; __this->set__currentPos_6(L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void RegexCharClass_set_Negate_mC3CA41B098CF6B47BBF9101619F1AC4EAA3FD131_inline (RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5 * __this, bool ___value0, const RuntimeMethod* method) { { bool L_0 = ___value0; __this->set__negate_3(L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void RegexCharClass_AddSubtraction_m1FEE4A4FA29196BF22FBDD7EF3A263010E7661D9_inline (RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5 * __this, RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5 * ___sub0, const RuntimeMethod* method) { { RegexCharClass_t9AB0766B265563F2380820FDEC91A9E5C9817CB5 * L_0 = ___sub0; __this->set__subtractor_4(L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Match_t8CC0A47F766954F17AD4D1C1597754C8F576464B * Match_get_Empty_mE05C90C7D155060839CC7D0C2EA04F8302EDFFC9_inline (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Match_t8CC0A47F766954F17AD4D1C1597754C8F576464B_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(Match_t8CC0A47F766954F17AD4D1C1597754C8F576464B_il2cpp_TypeInfo_var); Match_t8CC0A47F766954F17AD4D1C1597754C8F576464B * L_0 = ((Match_t8CC0A47F766954F17AD4D1C1597754C8F576464B_StaticFields*)il2cpp_codegen_static_fields_for(Match_t8CC0A47F766954F17AD4D1C1597754C8F576464B_il2cpp_TypeInfo_var))->get__empty_7(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t RegexWriter_CurPos_m771D864668683B9DCF98150DBAEEBE17703C2E5D_inline (RegexWriter_t958027B0548A09589F03657633037085BACFC7B5 * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get__curpos_3(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* TypeConverterAttribute_get_ConverterTypeName_m699652BD16C42823BE283EA769647F676122EB6B_inline (TypeConverterAttribute_t2C9750F302F83A7710D031C00A7CEBDA8F0C3F83 * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get_typeName_0(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t UriParser_get_Flags_mDAA0D828057CA2CA4493FD152D3760E975BAE7F0_inline (UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_m_Flags_2(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t UriParser_get_DefaultPort_m7ECA5BE839D36C7FF854FEA0795D8DE701487D33_inline (UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * __this, const RuntimeMethod* method) { { int32_t L_0 = __this->get_m_Port_5(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * Uri_get_Syntax_mF7002491E720A700F68312C49337C6F5D91ABCC9_inline (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, const RuntimeMethod* method) { { UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * L_0 = __this->get_m_Syntax_15(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* UriParser_get_SchemeName_mFCD123235673631E05FE9BAF6955A0B43EEEBD80_inline (UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * __this, const RuntimeMethod* method) { { String_t* L_0 = __this->get_m_Scheme_6(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 * StringComparer_get_InvariantCultureIgnoreCase_m091360FF9FE3516559AFF706AF431E6FD4CCF2C2_inline (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { IL2CPP_RUNTIME_CLASS_INIT(StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6_il2cpp_TypeInfo_var); StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6 * L_0 = ((StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6_StaticFields*)il2cpp_codegen_static_fields_for(StringComparer_t69EC059128AD0CAE268CA1A1C33125DAC9D7F8D6_il2cpp_TypeInfo_var))->get__invariantCultureIgnoreCase_1(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m5D847939ABB9A78203B062CAFFE975792174D00F_gshared_inline (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get__size_2(); return (int32_t)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * List_1_get_Item_mF00B574E58FB078BB753B05A3B86DD0A7A266B63_gshared_inline (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, int32_t ___index0, const RuntimeMethod* method) { { int32_t L_0 = ___index0; int32_t L_1 = (int32_t)__this->get__size_2(); if ((!(((uint32_t)L_0) >= ((uint32_t)L_1)))) { goto IL_000e; } } { ThrowHelper_ThrowArgumentOutOfRangeException_m4841366ABC2B2AFA37C10900551D7E07522C0929(/*hidden argument*/NULL); } IL_000e: { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_2 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get__items_1(); int32_t L_3 = ___index0; RuntimeObject * L_4; L_4 = IL2CPP_ARRAY_UNSAFE_LOAD((ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)L_2, (int32_t)L_3); return (RuntimeObject *)L_4; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m3632094BEC4410A1022FD0293E7BA88FC3B811A8_gshared_inline (List_1_tD9A0DAE3CF1F9450036B041168264AE0CEF1737A * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get__size_2(); return (int32_t)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Item_m7C5FD44913A3832DC5D7875F3ADA6FA0D28DDB3E_gshared_inline (List_1_tD9A0DAE3CF1F9450036B041168264AE0CEF1737A * __this, int32_t ___index0, const RuntimeMethod* method) { { int32_t L_0 = ___index0; int32_t L_1 = (int32_t)__this->get__size_2(); if ((!(((uint32_t)L_0) >= ((uint32_t)L_1)))) { goto IL_000e; } } { ThrowHelper_ThrowArgumentOutOfRangeException_m4841366ABC2B2AFA37C10900551D7E07522C0929(/*hidden argument*/NULL); } IL_000e: { Int32EnumU5BU5D_t9327F857579EE00EB201E1913599094BF837D3CD* L_2 = (Int32EnumU5BU5D_t9327F857579EE00EB201E1913599094BF837D3CD*)__this->get__items_1(); int32_t L_3 = ___index0; int32_t L_4; L_4 = IL2CPP_ARRAY_UNSAFE_LOAD((Int32EnumU5BU5D_t9327F857579EE00EB201E1913599094BF837D3CD*)L_2, (int32_t)L_3); return (int32_t)L_4; } }
[ "zegnovini@yahoo.com" ]
zegnovini@yahoo.com
5f7423496585937a763a02a68960f76d4d7af44f
9f496de2bcaba3d287fd8532263a12df4f7ff508
/src/main.cpp
719da5ff6c87279bc154e44464ada7ddfba604fd
[]
no_license
oshiro3/qrune
79b1ee9dcb93e85a061b2d001224352755c5b267
839c958c061a83bbfb5ea198af2c31785e08a4e3
refs/heads/master
2023-01-04T00:31:54.553843
2020-10-19T13:17:48
2020-10-19T13:17:48
297,600,818
0
0
null
null
null
null
UTF-8
C++
false
false
1,735
cpp
#include <bitset> #include <byteswap.h> #include <cstdlib> #include <cstring> #include <experimental/filesystem> #include <fstream> #include <iostream> #include <string> #include <sys/stat.h> #include "blob.hpp" #include "commit.hpp" #include "file_io.hpp" #include "index.hpp" #include "qrune.hpp" #include "tree.hpp" #include "zlib.hpp" namespace fs = std::experimental::filesystem; #define GIT_ROOT "~/works/qrune/" int write_line(std::string filename, std::string body) { std::ofstream ofs(filename, std::ios::trunc); if (!ofs) { std::cout << "err" << std::endl; return 1; }; ofs << body << std::endl; return 0; } std::string bin_str_to_hex(const std::string &s) { std::string out; for (uint i = 0; i < s.size(); i += 4) { int8_t n = 0; for (uint j = i; j < i + 4; ++j) { n <<= 1; if (s[j] == '1') n |= 1; } if (n <= 9) out.push_back('0' + n); else out.push_back('A' + n - 10); } return out; } #define INDEX_FILE_PATH ".git/index" char *create_trees(Index *index) { Tree *t = Tree::Create(index->entries); return t->object_id; } void create_commit(char *tree_id, const char *message) { Commit::create(message, tree_id); } int add(const char *path) { unsigned char sha1[41]; struct stat64 st; lstat64(path, &st); Blob::create(path, &st, sha1); Index::update(path, &st, sha1); return 0; } int commit(const char *message) { Index *i = new Index(); char *tree_id = create_trees(i); create_commit(tree_id, message); return 0; } int main(int argc, char *argv[]) { if (!strcmp(argv[1], "add")) { add(argv[2]); } else if (!strcmp(argv[1], "commit")) { return commit(argv[2]); } else { std::exit(1); } }
[ "hojo.yosuke@gmail.com" ]
hojo.yosuke@gmail.com
c49a91607ab07c8da0d9a89444ebd6aeb0aaa288
c2915484a4fe848b9bfee6bfb65f824993dde59b
/Case_super_save/Case0/Case/case8/1000/nut
618cb17e43942a4861af040bfd4fc9941b433a5e
[]
no_license
mamitsu2/aircond5_play3
835b937da2d60771b8a7b81e13631a8a1271e8f4
8eee217855014d562013e0dbe0024208a4633db3
refs/heads/master
2020-05-24T21:54:50.022678
2019-05-19T13:31:37
2019-05-19T13:31:37
187,480,539
0
0
null
null
null
null
UTF-8
C++
false
false
9,987
/*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | Website: https://openfoam.org \\ / A nd | Version: 6 \\/ M anipulation | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class volScalarField; location "1000"; object nut; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // dimensions [0 2 -1 0 0 0 0]; internalField nonuniform List<scalar> 459 ( 0.00106431 0.00116026 0.00118214 0.00123852 0.00129075 0.00134002 0.00138897 0.00143576 0.00146868 0.00148143 0.00146803 0.0014242 0.00134794 0.00124146 0.00111641 0.000464036 0.000554155 0.000626189 0.000632222 0.000614293 0.000588347 0.000552224 0.000515382 0.000481854 0.000452157 0.000425925 0.000402679 0.000382026 0.000363557 0.000346599 0.000330315 0.000313551 0.000303184 0.000277558 0.00144972 0.00343497 0.00325042 0.00377031 0.00427955 0.00479036 0.0052347 0.00558028 0.00590155 0.00616898 0.00634596 0.00639465 0.00626935 0.00586157 0.00471428 0.00113649 0.000704762 0.000484105 0.0010203 0.00143058 0.00174181 0.00192615 0.00193621 0.0015305 0.00131504 0.00116238 0.00104592 0.00095393 0.000879424 0.000816187 0.000757237 0.00070002 0.000649142 0.000604231 0.000718004 0.000369579 0.00177065 0.00466053 0.00396454 0.00493966 0.00538716 0.00571247 0.00596668 0.00619032 0.00645004 0.00673168 0.0070024 0.00721176 0.00731406 0.00723367 0.00674755 0.00517855 0.00117 0.000910594 0.00132733 0.00173141 0.00212426 0.00241703 0.00238872 0.000785279 0.000694616 0.000620989 0.000561227 0.000512381 0.000472096 0.000438627 0.000410848 0.00038827 0.000419493 0.000484446 0.00081178 0.000431862 0.00207935 0.00596473 0.00391411 0.00515975 0.00549828 0.00557954 0.00564712 0.00577345 0.00599099 0.00628365 0.00662085 0.0069308 0.00716424 0.00725597 0.00715494 0.00659794 0.00443061 0.00136942 0.00164287 0.00209871 0.00259914 0.00304628 0.00335605 0.0031985 0.000889195 0.000813834 0.000760194 0.000719404 0.000684515 0.000651834 0.00062031 0.000587002 0.000548134 0.000514315 0.000519894 0.000943535 0.000481132 0.00239429 0.00766699 0.00423204 0.00491966 0.00538555 0.00533727 0.00529095 0.00538641 0.0055905 0.00588928 0.00626194 0.00660307 0.00684251 0.00693575 0.00688346 0.00666146 0.00609769 0.00516649 0.00485205 0.00480488 0.00485652 0.00491716 0.00492832 0.0047774 0.00406441 0.0037192 0.00351867 0.00336226 0.00319597 0.00295833 0.0026296 0.00222582 0.00177502 0.00132602 0.000979686 0.000965651 0.000656517 0.000594067 0.00071645 0.000805003 0.00272888 0.0095347 0.00582324 0.00475454 0.00520357 0.00534973 0.00520772 0.00529841 0.00546791 0.00574509 0.00610717 0.0064627 0.00670096 0.00675509 0.00663953 0.00643934 0.00625024 0.00613184 0.00614621 0.00618 0.00615969 0.00607514 0.00592917 0.00570987 0.00537727 0.00507717 0.00481064 0.00455594 0.00429932 0.00402654 0.00368206 0.00324874 0.00272509 0.00214261 0.00161855 0.00119125 0.000913655 0.000779751 0.00110782 0.000842452 0.00304306 0.0108845 0.00835342 0.00603871 0.00563577 0.00566946 0.00553118 0.00545243 0.00553336 0.00579634 0.00617782 0.00655121 0.00677861 0.00678324 0.0065993 0.00638049 0.0063304 0.00651229 0.00673754 0.00681476 0.00671483 0.00648593 0.006172 0.00580508 0.00541851 0.00506601 0.00475145 0.00446516 0.00420472 0.0039744 0.00377314 0.00349702 0.00309927 0.00260638 0.00212416 0.00167628 0.00136077 0.00127357 0.00130366 0.00097029 0.00311106 0.00987922 0.00857041 0.00759313 0.00699485 0.0063375 0.00578303 0.00554798 0.0056493 0.00600379 0.00646457 0.00685778 0.0070309 0.00693203 0.006655 0.0064431 0.00653293 0.00683431 0.00696278 0.00682371 0.00649124 0.006041 0.00554074 0.00505547 0.00463525 0.00429526 0.00402001 0.00379617 0.00362152 0.00350035 0.00343867 0.00341415 0.00322507 0.0029201 0.0026499 0.00252462 0.00265653 0.00307405 0.00372939 0.00150238 0.0030362 0.00362558 0.00409533 0.00424367 0.00425705 0.00435397 0.00463591 0.00513056 0.00579477 0.00649824 0.00707528 0.0073811 0.00731927 0.00695329 0.00655953 0.00649206 0.00656303 0.00656483 0.00635726 0.00594297 0.00540051 0.00481967 0.00428463 0.00384808 0.00351809 0.00327186 0.00308143 0.00292764 0.00279804 0.00268252 0.00257227 0.0024665 0.00238183 0.00231954 0.00229741 0.00230683 0.00228641 0.00218287 0.00203132 0.00140422 0.00182916 0.00326056 0.00450934 0.00554905 0.00639583 0.00715861 0.00775719 0.00806306 0.00803196 0.00768052 0.0070645 0.00636577 0.00594052 0.00578768 0.00561526 0.00529195 0.00482522 0.00428598 0.00374872 0.00328274 0.00292694 0.00267497 0.00250128 0.00238046 0.00229509 0.00223512 0.00219514 0.00217284 0.00217084 0.00219081 0.00221981 0.00225425 0.00228524 0.00228641 0.00221683 0.00206527 0.00184749 0.00115026 0.00212894 0.00455785 0.00624149 0.00703584 0.00757239 0.00794449 0.00792555 0.00743303 0.00667264 0.00585581 0.00517097 0.00467651 0.00434523 0.00404431 0.00367779 0.00326401 0.00285741 0.00250898 0.00224514 0.00206256 0.00194007 0.00186079 0.00181813 0.00180368 0.00181176 0.00183864 0.00188099 0.00193436 0.00200479 0.00208948 0.00218589 0.00228725 0.00237736 0.00243697 0.00241707 0.00242652 0.00239295 0.0011699 0.00183097 0.00192811 0.00199999 0.00206934 0.0018769 0.00172419 0.00165099 0.00157719 0.00146968 0.00133688 0.00118518 0.00103464 0.000901431 0.000795875 0.000719512 0.000665597 0.000626813 0.000599052 0.000580736 0.000571141 0.000569312 0.000574014 0.000584199 0.000599322 0.000618254 0.000640818 0.00066712 0.000697465 0.000732466 0.00077327 0.000819183 0.000870409 0.000927579 0.000991281 0.00106131 0.0011457 0.0011721 0.00114182 0.00106894 0.000991188 ) ; boundaryField { floor { type nutkWallFunction; Cmu 0.09; kappa 0.41; E 9.8; value nonuniform List<scalar> 29 ( 0.000134333 5.50922e-05 6.65878e-05 7.56101e-05 7.63598e-05 7.41292e-05 7.08871e-05 6.6344e-05 6.16727e-05 5.73856e-05 5.35573e-05 5.01493e-05 4.7107e-05 4.43853e-05 4.19353e-05 3.96718e-05 3.74846e-05 3.52181e-05 3.38086e-05 3.02964e-05 3.02963e-05 4.27353e-05 5.09222e-05 5.72921e-05 0.000134333 5.50922e-05 5.76743e-05 0.000110148 0.000163385 ) ; } ceiling { type nutkWallFunction; Cmu 0.09; kappa 0.41; E 9.8; value nonuniform List<scalar> 43 ( 0.000214781 0.000225421 0.00023326 0.000240884 0.000219933 0.000203125 0.000195011 0.000186786 0.000174724 0.000159685 0.000142298 0.000124792 0.000109057 9.63968e-05 8.71153e-05 8.04919e-05 7.56878e-05 7.2227e-05 6.99331e-05 6.87279e-05 6.84978e-05 6.90889e-05 7.03673e-05 7.22607e-05 7.46227e-05 7.74265e-05 8.06798e-05 8.44142e-05 8.86976e-05 9.36607e-05 9.92086e-05 0.000105356 0.000112166 0.000119699 0.000127915 0.000137735 0.000140791 0.000137285 0.000128806 0.000119688 0.000343898 0.00040482 0.00024714 ) ; } sWall { type nutkWallFunction; Cmu 0.09; kappa 0.41; E 9.8; value uniform 0.00021484; } nWall { type nutkWallFunction; Cmu 0.09; kappa 0.41; E 9.8; value nonuniform List<scalar> 6(9.74999e-05 0.000102008 0.000117227 0.000138274 0.000140546 0.000119694); } sideWalls { type empty; } glass1 { type nutkWallFunction; Cmu 0.09; kappa 0.41; E 9.8; value nonuniform List<scalar> 9(0.000128364 0.000172692 0.000208584 0.000242437 0.000276422 0.000312011 0.000345017 0.000352122 0.000344326); } glass2 { type nutkWallFunction; Cmu 0.09; kappa 0.41; E 9.8; value nonuniform List<scalar> 2(0.000178485 0.000167403); } sun { type nutkWallFunction; Cmu 0.09; kappa 0.41; E 9.8; value nonuniform List<scalar> 14 ( 0.000128267 0.000139419 0.000141947 0.000148438 0.000154423 0.000160043 0.000165604 0.0001709 0.000174613 0.00017605 0.000174539 0.000169592 0.000160943 0.000148774 ) ; } heatsource1 { type nutkWallFunction; Cmu 0.09; kappa 0.41; E 9.8; value nonuniform List<scalar> 3(7.16051e-05 8.67411e-05 9.7499e-05); } heatsource2 { type nutkWallFunction; Cmu 0.09; kappa 0.41; E 9.8; value nonuniform List<scalar> 4(0.000136661 8.53107e-05 8.53107e-05 0.00014054); } Table_master { type nutkWallFunction; Cmu 0.09; kappa 0.41; E 9.8; value nonuniform List<scalar> 9(9.51154e-05 8.40658e-05 7.49656e-05 6.74832e-05 6.12953e-05 5.6137e-05 5.18097e-05 4.81867e-05 4.5219e-05); } Table_slave { type nutkWallFunction; Cmu 0.09; kappa 0.41; E 9.8; value nonuniform List<scalar> 9(0.000107598 9.85637e-05 9.2074e-05 8.71027e-05 8.28241e-05 7.87924e-05 7.48805e-05 7.07209e-05 6.58304e-05); } inlet { type calculated; value uniform 0.000100623; } outlet { type calculated; value nonuniform List<scalar> 2(0.00183097 0.00192811); } } // ************************************************************************* //
[ "mitsuaki.makino@tryeting.jp" ]
mitsuaki.makino@tryeting.jp
3412fb95cc75ce291a189da57ff1569523efbb2a
0a5645154953b0a09d3f78753a1711aaa76928ff
/common/c/nbgm/nbre/include/private/nbreprimitivecollisionobject2d.h
5298c5d34a4e9cf018a9cf74938ed9f42f05a3fc
[]
no_license
GENIVI/navigation-next
3a6f26063350ac8862b4d0e2e9d3522f6f249328
cb8f7ec5ec4c78ef57aa573315b75960b2a5dd36
refs/heads/master
2023-08-04T17:44:45.239062
2023-07-25T19:22:19
2023-07-25T19:22:19
116,230,587
17
11
null
2018-05-18T20:00:38
2018-01-04T07:43:22
C++
UTF-8
C++
false
false
3,410
h
/* Copyright (c) 2018, TeleCommunication Systems, 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 TeleCommunication Systems, Inc., 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 TELECOMMUNICATION SYSTEMS, INC.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. */ /*!-------------------------------------------------------------------------- @file nbreprimitivecollisionobject2d.h */ /* (C) Copyright 2012 by Networks In Motion, Inc. The information contained herein is confidential, proprietary to Networks In Motion, Inc., and considered a trade secret as defined in section 499C of the penal code of the State of California. Use of this information by anyone other than authorized employees of Networks In Motion is granted only under a written non-disclosure agreement, expressly prescribing the scope and manner of such use. ---------------------------------------------------------------------------*/ #ifndef _NBRE_PRIMITIVE_COLLISION_OBJECT_2D_H_ #define _NBRE_PRIMITIVE_COLLISION_OBJECT_2D_H_ #include "nbretypes.h" #include "nbrecollisiontypes.h" #include "nbreaxisalignedbox2.h" #include "nbrecollisionobject2d.h" #include "nbreicollisionprimitive.h" /*! \addtogroup NBRE_Scene * @{ */ /** Primitive collision object which only contains one primitive. The function of this class is same as NBRE_CompositeCollisionObject2d, but NBRE_PrimitiveCollisionObject2d run a little faster and takes less memory. */ class NBRE_PrimitiveCollisionObject2d: public NBRE_CollisionObject2d { public: NBRE_PrimitiveCollisionObject2d(void* owner, NBRE_ICollisionPrimitive2d* primitive); virtual ~NBRE_PrimitiveCollisionObject2d(); NBRE_ICollisionPrimitive2d* GetPrimitive() { return mPrimitive; } virtual NBRE_CollisionObjectType GetType() { return NBRE_COT_SINGLE; } virtual nb_boolean HitTest(NBRE_CollisionObject2d* obj); virtual nb_boolean HitTest(NBRE_ICollisionPrimitive2d* primitive); virtual const NBRE_AxisAlignedBox2d& GetAABB() { return mPrimitive->GetAABB(); } private: NBRE_ICollisionPrimitive2d* mPrimitive; }; /*! @} */ #endif
[ "caavula@telecomsys.com" ]
caavula@telecomsys.com
dbec746b194bf3376c696c85e6421a5f7bed8408
d7b233d36129b8c5e9af97b4416592336193396a
/solution--suchartee/shapes.h
326125a6bb09497b8fc89961675f0656437d8d2c
[ "CC-BY-4.0", "MIT" ]
permissive
suchartee/assignment-05
1587c5fd91b69f4a9fa6a32b206906edad227044
cfcf57388ef3f06afee955f76a73ee17db399bf4
refs/heads/master
2021-01-22T03:57:38.105354
2016-04-27T22:30:37
2016-04-27T22:30:37
57,252,936
0
0
null
2016-04-27T22:26:20
2016-04-27T22:26:20
null
UTF-8
C++
false
false
1,799
h
/* ---------------------------------------------------------------------------- * Copyright &copy; 2016 Suchartee Kitisopakul <suchartee@csu.fullerton.edu> * Released under the [MIT License] (http://opensource.org/licenses/MIT) * ------------------------------------------------------------------------- */ #ifndef SHAPES_H #define SHAPES_H #include "point.h" //----------------------------------------------------------------------------SUPERCLASS class Shape { public: virtual bool contains(const Point & p) const = 0; //pure virtual virtual ~Shape() = default; }; //-------------------------------------------------------------------------------------- //-----------------------------------RECTANGLE-&-ELLIPSE--INHERIT FROM SHAPE, SUBCLASSES class Rectangle : public Shape { private: Point center; double dx; double dy; public: Rectangle(Point center = Point(), double dx = 0, double dy = 0); bool contains(const Point & p) const; }; class Ellipse : public Shape { private: Point f1; Point f2; double radius; public: Ellipse(Point f1 = Point(), Point f2 = Point(), double radius = 0); bool contains(const Point & p) const; }; //-------------------------------------------------------------------------------------- //------------------------------------------SQUARE--INHERIT FROM RECTANGLE, SUB-SUBCLASS class Square : public Rectangle { public: Square(Point center = Point(), double side = 0); }; //-------------------------------------------------------------------------------------- //--------------------------------------CIRCLE--INHERIT FROM ELLIPSE CLASS, SUB-SUBCLASS class Circle : public Ellipse { public: Circle(Point center = Point(), double radius = 0); }; //-------------------------------------------------------------------------------------- #endif
[ "suchartee.k@gmail.com" ]
suchartee.k@gmail.com
bacef319444e19e01d09e3802635789d3860d16d
6b6a61c289f4a45c67d120d6e527617dcbd6801f
/5. Proyecto Final/2. Desarrollo/Gravity_Bike/obstacle.cpp
29d656069d72f416fb5a4843f6a7f1fa982e3af6
[]
no_license
jmparradov/Informatica2
2282270bcbd1db327fbe79f2e3bba556ac515e12
1fc5b86f86fad4ccff2898b903497e890dedbf2b
refs/heads/master
2021-04-05T13:42:23.474226
2020-08-05T12:53:45
2020-08-05T12:53:45
248,562,290
0
0
null
null
null
null
UTF-8
C++
false
false
1,244
cpp
#include "obstacle.h" #include "road.h" #define worldx 15024 #define worldy 6736 #define rel 0.5 obstacle::obstacle(std::map<double, std::vector<double>> line, double Xo, std::string type) { lines = line; double height = 0; std::map<double, std::vector<double>>::iterator it; it = lines.lower_bound (Xo*worldx); double Yo = it->second[0]; if (type == "barrel"){ height = 71*rel; QPixmap pim(":/sources/objects/barrel.png"); setPixmap(pim); } else if(type == "bush1"){ height = 60*rel; QPixmap pim(":/sources/objects/bush1.png"); setPixmap(pim); } else if(type == "rock1"){ height = 60*rel; QPixmap pim(":/sources/objects/rock1.png"); setPixmap(pim); } else if(type == "rock3"){ height = 60*rel; QPixmap pim(":/sources/objects/rock3.png"); setPixmap(pim); } else if(type == "rock2"){ height = 52*rel; QPixmap pim(":/sources/objects/rock2.png"); setPixmap(pim); } else if(type == "wood"){ height = 52*rel; QPixmap pim(":/sources/objects/wood.png"); setPixmap(pim); } setPos(it->first,Yo-height); qDebug() << Xo; }
[ "jmparradov@gmail.com" ]
jmparradov@gmail.com
278bdb045d25399341010683c855632edd198e5f
7476d2c710c9a48373ce77f8e0113cb6fcc4c93b
/RakNet/LogCommandParser.cpp
2ef8bca0caec920060f1e58e1b893ecf6c6bcf0b
[]
no_license
CmaThomas/Vault-Tec-Multiplayer-Mod
af23777ef39237df28545ee82aa852d687c75bc9
5c1294dad16edd00f796635edaf5348227c33933
refs/heads/master
2021-01-16T21:13:29.029937
2011-10-30T21:58:41
2011-10-30T22:00:12
null
0
0
null
null
null
null
UTF-8
C++
false
false
7,501
cpp
#include "NativeFeatureIncludes.h" #if _RAKNET_SUPPORT_LogCommandParser==1 #include "LogCommandParser.h" #include "TransportInterface.h" #include <memory.h> #include <stdio.h> #include <string.h> #include <stdarg.h> #include "LinuxStrings.h" #ifdef _MSC_VER #pragma warning( push ) #endif using namespace RakNet; STATIC_FACTORY_DEFINITIONS(LogCommandParser,LogCommandParser); LogCommandParser::LogCommandParser() { RegisterCommand(CommandParserInterface::VARIABLE_NUMBER_OF_PARAMETERS,"Subscribe","[<ChannelName>] - Subscribes to a named channel, or all channels"); RegisterCommand(CommandParserInterface::VARIABLE_NUMBER_OF_PARAMETERS,"Unsubscribe","[<ChannelName>] - Unsubscribes from a named channel, or all channels"); memset(channelNames,0,sizeof(channelNames)); } LogCommandParser::~LogCommandParser() { } bool LogCommandParser::OnCommand(const char *command, unsigned numParameters, char **parameterList, TransportInterface *transport, const SystemAddress &systemAddress, const char *originalString) { (void) originalString; if (strcmp(command, "Subscribe")==0) { unsigned channelIndex; if (numParameters==0) { Subscribe(systemAddress, 0); transport->Send(systemAddress, "Subscribed to all channels.\r\n"); } else if (numParameters==1) { if ((channelIndex=Subscribe(systemAddress, parameterList[0]))!=(unsigned)-1) { transport->Send(systemAddress, "You are now subscribed to channel %s.\r\n", channelNames[channelIndex]); } else { transport->Send(systemAddress, "Cannot find channel %s.\r\n", parameterList[0]); PrintChannels(systemAddress, transport); } } else { transport->Send(systemAddress, "Subscribe takes either 0 or 1 parameters.\r\n"); } } else if (strcmp(command, "Unsubscribe")==0) { unsigned channelIndex; if (numParameters==0) { Unsubscribe(systemAddress, 0); transport->Send(systemAddress, "Unsubscribed from all channels.\r\n"); } else if (numParameters==1) { if ((channelIndex=Unsubscribe(systemAddress, parameterList[0]))!=(unsigned)-1) { transport->Send(systemAddress, "You are now unsubscribed from channel %s.\r\n", channelNames[channelIndex]); } else { transport->Send(systemAddress, "Cannot find channel %s.\r\n", parameterList[0]); PrintChannels(systemAddress, transport); } } else { transport->Send(systemAddress, "Unsubscribe takes either 0 or 1 parameters.\r\n"); } } return true; } const char *LogCommandParser::GetName(void) const { return "Logger"; } void LogCommandParser::SendHelp(TransportInterface *transport, const SystemAddress &systemAddress) { transport->Send(systemAddress, "The logger will accept user log data via the Log(...) function.\r\n"); transport->Send(systemAddress, "Each log is associated with a named channel.\r\n"); transport->Send(systemAddress, "You can subscribe to or unsubscribe from named channels.\r\n"); PrintChannels(systemAddress, transport); } void LogCommandParser::AddChannel(const char *channelName) { unsigned channelIndex; channelIndex = GetChannelIndexFromName(channelName); // Each channel can only be added once. RakAssert(channelIndex==(unsigned)-1); unsigned i; for (i=0; i < 32; i++) { if (channelNames[i]==0) { // Assuming a persistent static string. channelNames[i]=channelName; return; } } // No more available channels - max 32 with this implementation where I save subscribed channels with bit operations RakAssert(0); } void LogCommandParser::WriteLog(const char *channelName, const char *format, ...) { if (channelName==0 || format==0) return; unsigned channelIndex; channelIndex = GetChannelIndexFromName(channelName); if (channelIndex==(unsigned)-1) { AddChannel(channelName); } char text[REMOTE_MAX_TEXT_INPUT]; va_list ap; va_start(ap, format); _vsnprintf(text, REMOTE_MAX_TEXT_INPUT, format, ap); va_end(ap); text[REMOTE_MAX_TEXT_INPUT-1]=0; // Make sure that text ends in \r\n int textLen; textLen=(int)strlen(text); if (textLen==0) return; if (text[textLen-1]=='\n') { text[textLen-1]=0; } if (textLen < REMOTE_MAX_TEXT_INPUT-4) strcat(text, "\r\n"); else { text[textLen-3]='\r'; text[textLen-2]='\n'; text[textLen-1]=0; } // For each user that subscribes to this channel, send to them. unsigned i; for (i=0; i < remoteUsers.Size(); i++) { if (remoteUsers[i].channels & (1 << channelIndex)) { trans->Send(remoteUsers[i].systemAddress, text); } } } void LogCommandParser::PrintChannels(const SystemAddress &systemAddress, TransportInterface *transport) const { unsigned i; bool anyChannels=false; transport->Send(systemAddress, "CHANNELS:\r\n"); for (i=0; i < 32; i++) { if (channelNames[i]) { transport->Send(systemAddress, "%i. %s\r\n", i+1,channelNames[i]); anyChannels=true; } } if (anyChannels==false) transport->Send(systemAddress, "None.\r\n"); } void LogCommandParser::OnNewIncomingConnection(const SystemAddress &systemAddress, TransportInterface *transport) { (void) systemAddress; (void) transport; } void LogCommandParser::OnConnectionLost(const SystemAddress &systemAddress, TransportInterface *transport) { (void) transport; Unsubscribe(systemAddress, 0); } unsigned LogCommandParser::Unsubscribe(const SystemAddress &systemAddress, const char *channelName) { unsigned i; for (i=0; i < remoteUsers.Size(); i++) { if (remoteUsers[i].systemAddress==systemAddress) { if (channelName==0) { // Unsubscribe from all and delete this user. remoteUsers[i]=remoteUsers[remoteUsers.Size()-1]; remoteUsers.RemoveFromEnd(); return 0; } else { unsigned channelIndex; channelIndex = GetChannelIndexFromName(channelName); if (channelIndex!=(unsigned)-1) { remoteUsers[i].channels&=0xFFFF ^ (1<<channelIndex); // Unset this bit } return channelIndex; } } } return (unsigned)-1; } unsigned LogCommandParser::Subscribe(const SystemAddress &systemAddress, const char *channelName) { unsigned i; unsigned channelIndex=(unsigned)-1; if (channelName) { channelIndex = GetChannelIndexFromName(channelName); if (channelIndex==(unsigned)-1) return channelIndex; } for (i=0; i < remoteUsers.Size(); i++) { if (remoteUsers[i].systemAddress==systemAddress) { if (channelName) remoteUsers[i].channels|=1<<channelIndex; // Set this bit for an existing user else remoteUsers[i].channels=0xFFFF; return channelIndex; } } // Make a new user SystemAddressAndChannel newUser; newUser.systemAddress = systemAddress; if (channelName) newUser.channels=1<<channelIndex; else newUser.channels=0xFFFF; remoteUsers.Insert(newUser, _FILE_AND_LINE_); return channelIndex; } unsigned LogCommandParser::GetChannelIndexFromName(const char *channelName) { unsigned i; for (i=0; i < 32; i++) { if (channelNames[i]==0) return (unsigned) -1; if (_stricmp(channelNames[i], channelName)==0) return i; } return (unsigned)-1; } void LogCommandParser::OnTransportChange(TransportInterface *transport) { // I don't want users to have to pass TransportInterface *transport to Log. trans=transport; } #ifdef _MSC_VER #pragma warning( pop ) #endif #endif // _RAKNET_SUPPORT_*
[ "csemmler.goe@googlemail.com" ]
csemmler.goe@googlemail.com
614cfbdb76a7a4aef6e1a060cd5b712b580e3b6e
70038454e426e7719a4fb382ff55733824da3618
/debug_samples/ebcgoptest/Asm/MacroEbc/movdd.inc
904dda37e1f0deb7e6563a0469db482c061a59dd
[]
no_license
fengjixuchui/UEFImarkEbcEdition
fb554e566429f64dde2bbd44c060d42b609d8310
5ee6e815b73a0db8e9e67d954aad2b8d32365f74
refs/heads/master
2020-06-24T11:41:54.769057
2019-07-19T07:59:52
2019-07-19T07:59:52
null
0
0
null
null
null
null
UTF-8
C++
false
false
5,608
inc
;--- EBC Instruction: MOVDD {@}R1 , {Index32} , {@}R2 , {Index32} ----------; ; ; ; This instruction moves data from Operand 2 to Operand 1. Both operands ; ; can be indexed, though both indexes are the same size. In the instruction ; ; syntax for the first form, the first variable character indicates the ; ; size of the data move. which can be 8 bits (b), 16 bits (w), 32 bits (d), ; ; or 64 bits (q). The optional character indicates the presence and size of ; ; the index value(s), which may be 16 bits (w) or 32 bits (d). The MOVQQ ; ; instruction adds support for 64-bit indexes. ; ; MOVWD = Move dwords with 32-bit indexing. ; ; ; ; Operand 1 bits [31-00] <= Operand 2 bits [31-00] ; ; Operand 1 bits [63-32] <= 0 , if Operand 1 is register ; ; ; ; op1 = Destination ; ; op2 = Destination natural offset, optional ; ; op3 = Destination constant offset, optional ; ; op4 = Source ; ; op5 = Source natural offset, optional ; ; op6 = Source constant offset, optional ; ; ; ;---------------------------------------------------------------------------; MACRO MOVDD op1, op2, op3, op4, op5, op6 { ;--- Byte 0 = Operation code --- if op1 in < @R0,@R1,@R2,@R3,@R4,@R5,@R6,@R7 > x1=1 if op4 in < @R0,@R1,@R2,@R3,@R4,@R5,@R6,@R7 > x2=1 else x2=0 end if else x1=0 if op2 in < @R0,@R1,@R2,@R3,@R4,@R5,@R6,@R7 > x2=1 else x2=0 end if end if DB 023h + x1 SHL 7 + x2 SHL 6 ;--- Byte 1 = Two operands addressing --- if op1 in < R0,@R0 > x3=0 end if if op1 in < R1,@R1 > x3=1 end if if op1 in < R2,@R2 > x3=2 end if if op1 in < R3,@R3 > x3=3 end if if op1 in < R4,@R4 > x3=4 end if if op1 in < R5,@R5 > x3=5 end if if op1 in < R6,@R6 > x3=6 end if if op1 in < R7,@R7 > x3=7 end if if op1 in < R0,R1,R2,R3,R4,R5,R6,R7 > x4=0 else x4=1 end if if op2 in < R0,R1,R2,R3,R4,R5,R6,R7,@R0,@R1,@R2,@R3,@R4,@R5,@R6,@R7 > if op2 in < R0,@R0 > x5=0 end if if op2 in < R1,@R1 > x5=1 end if if op2 in < R2,@R2 > x5=2 end if if op2 in < R3,@R3 > x5=3 end if if op2 in < R4,@R4 > x5=4 end if if op2 in < R5,@R5 > x5=5 end if if op2 in < R6,@R6 > x5=6 end if if op2 in < R7,@R7 > x5=7 end if if op2 in < R0,R1,R2,R3,R4,R5,R6,R7 > x6=0 else x6=1 end if else if op4 in < R0,@R0 > x5=0 end if if op4 in < R1,@R1 > x5=1 end if if op4 in < R2,@R2 > x5=2 end if if op4 in < R3,@R3 > x5=3 end if if op4 in < R4,@R4 > x5=4 end if if op4 in < R5,@R5 > x5=5 end if if op4 in < R6,@R6 > x5=6 end if if op4 in < R7,@R7 > x5=7 end if if op4 in < R0,R1,R2,R3,R4,R5,R6,R7 > x6=0 else x6=1 end if end if DB x6 SHL 7 + x5 SHL 4 + x4 SHL 3 + x3 ;--- Conditional bytes 2-5 = 32-bit index or immediate for Operand 1 --- if op2 in < R0,R1,R2,R3,R4,R5,R6,R7,@R0,@R1,@R2,@R3,@R4,@R5,@R6,@R7 > else if op3 eq else if op2 < 0 x7=-op2 else x7=op2 end if if op3 < 0 x8=-op3 else x8=op3 end if if op2 = 0 x9=0 else if op2>0 & op2<16 | op2<0 & op2>-16 x9=1 end if if op2>15 & op2<256 | op2<-15 & op2>-256 x9=2 end if if op2>255 & op2<4096 | op2<-255 & op2>-4096 x9=3 end if if op2>4095 & op2<65536 | op2<-4095 & op2>-65536 x9=4 end if if op2>65535 & op2<1048576 | op2<-65535 & op2>-1048576 x9=5 end if if op2>1048575 & op2<16777216 | op2<-1048575 & op2>-16777216 x9=6 end if if op2>16777215 & op2<268435456 | op2<-16777216 & op2>-268435456 x9=7 end if end if if op2<0 x10=1 else x10=0 end if x11=x9*4 DD x10 SHL 31 + x9 SHL 28 + x8 SHL x11 + x7 end if end if ;--- Conditional bytes 2-5 = 32-bit index or immediate for Operand 2 --- if op2 in < R0,R1,R2,R3,R4,R5,R6,R7,@R0,@R1,@R2,@R3,@R4,@R5,@R6,@R7 > if op3 eq else if op3 < 0 x12=-op3 else x12=op3 end if if op4 < 0 x13=-op4 else x13=op4 end if if op3 = 0 x14=0 else if op3>0 & op3<16 | op3<0 & op3>-16 x14=1 end if if op3>15 & op3<256 | op3<-15 & op3>-256 x14=2 end if if op3>255 & op3<4096 | op3<-255 & op3>-4096 x14=3 end if if op3>4095 & op3<65536 | op3<-4095 & op3>-65536 x14=4 end if if op3>65535 & op3<1048576 | op3<-65535 & op3>-1048576 x14=5 end if if op3>1048575 & op3<16777216 | op3<-1048575 & op3>-16777216 x14=6 end if if op3>16777215 & op3<268435456 | op3<-16777216 & op3>-268435456 x14=7 end if end if if op3<0 x15=1 else x15=0 end if x16=x14*4 DD x15 SHL 31 + x14 SHL 28 + x13 SHL x16 + x12 end if end if ;--- Conditional bytes 6-9 = 32-bit index or immediate for Operand 2 --- if op2 in < R0,R1,R2,R3,R4,R5,R6,R7,@R0,@R1,@R2,@R3,@R4,@R5,@R6,@R7 > else if op6 eq else if op5 < 0 x12=-op5 else x12=op5 end if if op6 < 0 x13=-op6 else x13=op6 end if if op5 = 0 x14=0 else if op5>0 & op5<16 | op5<0 & op5>-16 x14=1 end if if op5>15 & op5<256 | op5<-15 & op5>-256 x14=2 end if if op5>255 & op5<4096 | op5<-255 & op5>-4096 x14=3 end if if op5>4095 & op5<65536 | op5<-4095 & op5>-65536 x14=4 end if if op5>65535 & op5<1048576 | op5<-65535 & op5>-1048576 x14=5 end if if op5>1048575 & op5<16777216 | op5<-1048575 & op5>-16777216 x14=6 end if if op3>16777215 & op3<268435456 | op3<-16777216 & op3>-268435456 x14=7 end if end if if op5<0 x15=1 else x15=0 end if x16=x14*4 DD x15 SHL 31 + x14 SHL 28 + x13 SHL x16 + x12 end if end if }
[ "Manusov1969@gmail.com" ]
Manusov1969@gmail.com
720ca19b87046084629fd6ba8eb6b87f54234711
fc8a86a185d25060cc57f2c3e2d2d4e88676e9d8
/12.cpp
28a0ff1889c003e8a2e247e219e7e6601aa91010
[]
no_license
Sarthak104/Jaynam-Sir-100-Programs
ef781bab23cc1124a59aad92d6e9ba21f6c99212
8dcbe531550d90401f9c7839a525998360bd3067
refs/heads/master
2020-06-20T00:11:54.839012
2019-07-22T16:38:49
2019-07-22T16:38:49
196,923,981
0
0
null
null
null
null
UTF-8
C++
false
false
193
cpp
#include<iostream> #include<math.h> using namespace std; void power(int c,int d) { int P; P=pow(c,d); cout<<P; } int main() { int a,b; cin>>a>>b; power(a,b); return 0; }
[ "noreply@github.com" ]
noreply@github.com
037b00a812d64ef836d5d4e2f25a36be97de06cc
ad822f849322c5dcad78d609f28259031a96c98e
/SDK/Hazard_Spiker_Collection_01_Group_Ceiling_parameters.h
c0e33485c71f3b178acef993572f069668151ae8
[]
no_license
zH4x-SDK/zAstroneer-SDK
1cdc9c51b60be619202c0258a0dd66bf96898ac4
35047f506eaef251a161792fcd2ddd24fe446050
refs/heads/main
2023-07-24T08:20:55.346698
2021-08-27T13:33:33
2021-08-27T13:33:33
null
0
0
null
null
null
null
UTF-8
C++
false
false
565
h
#pragma once #include "../SDK.h" // Name: Astroneer-SDK, Version: 1.0.0 #ifdef _MSC_VER #pragma pack(push, 0x8) #endif namespace SDK { //--------------------------------------------------------------------------- // Parameters //--------------------------------------------------------------------------- // Function Hazard_Spiker_Collection_01_Group_Ceiling.Hazard_Spiker_Collection_01_Group_Ceiling_C.UserConstructionScript struct AHazard_Spiker_Collection_01_Group_Ceiling_C_UserConstructionScript_Params { }; } #ifdef _MSC_VER #pragma pack(pop) #endif
[ "zp2kshield@gmail.com" ]
zp2kshield@gmail.com
2d2a4eaa29c994caaf46c021591dbc12448405b5
26524fec2231290c65a0bf126943101bb8b8300c
/2023Game2_2D/GameProgramming/src/CMiss.h
dd7175a7183af6ec356b036fb5dc56086d18d93a
[]
no_license
programminggp/2DLV1
d424a946fe9f92c15c20a76f5986f19a3bf628f5
fbe8394189431897312e74caf32e500ea2c8cd13
refs/heads/master
2023-09-01T13:38:35.309123
2023-09-01T11:45:01
2023-09-01T11:45:01
176,943,495
2
1
null
2022-05-26T09:56:53
2019-03-21T12:49:43
C
UTF-8
C++
false
false
121
h
#pragma once #include "CCharacter.h" class CMiss : public CCharacter { public: void Update() {}; void Render() {}; };
[ "shinobu-takahashi@anabuki.ac.jp" ]
shinobu-takahashi@anabuki.ac.jp
70638ed4e9da94bedb30c79df00c30979cba4546
44336a7c8279716ba64055cb2c443b3758b238fd
/SampleMathematics/GpuRootFinder/GpuRootFinder.h
94bf9d5262e5ad02ba3a91c7423f3eddb7f6a27d
[]
no_license
erhuo522/WildMagic_Code
6e6ff01eca74915ba7a55fce800ed4c6ed265a93
23d0e40e50abec51e174959c503a8282810d0a02
refs/heads/master
2020-03-15T15:12:29.235602
2018-05-05T02:31:14
2018-05-05T02:31:14
132,207,046
0
1
null
null
null
null
UTF-8
C++
false
false
1,276
h
// Geometric Tools, LLC // Copyright (c) 1998-2014 // Distributed under the Boost Software License, Version 1.0. // http://www.boost.org/LICENSE_1_0.txt // http://www.geometrictools.com/License/Boost/LICENSE_1_0.txt // // File Version: 5.2.0 (2010/07/31) #ifndef GPUROOTFINDER_H #define GPUROOTFINDER_H #include "Wm5WindowApplication3.h" #include "RootFinderEffect.h" using namespace Wm5; class GpuRootFinder : public WindowApplication3 { WM5_DECLARE_INITIALIZE; WM5_DECLARE_TERMINATE; public: GpuRootFinder (); virtual bool OnInitialize (); virtual void OnTerminate (); protected: // In this example, the function is f(x) = (x-1.1)*(x+2.2). You may // replace it by another function, in which case you also need to // modify "MyFunction" in RootFinder.fx and recompile via Compile.bat. // The assembly code in RootFinder.ps_3_0.txt and RootFinder.arbfp1.txt // must be copied and stringified in RootFinderEffect::msPPrograms. static float MyFunction (float x); CameraPtr mScreenCamera; RenderTargetPtr mRenderTarget; TriMeshPtr mScreenPolygon; Texture2D* mResults; Float4 mTextColor; std::set<float> mRoots; }; WM5_REGISTER_INITIALIZE(GpuRootFinder); WM5_REGISTER_TERMINATE(GpuRootFinder); #endif
[ "mni2005@163.com" ]
mni2005@163.com
17a2cb58e8b061b3cba0f5347103123f2dd3109c
90a4887562940314eecdc9f043fdad482c2df87d
/test/sign.cc
87503ddadf826da32ab997c3d595b0b134b7c7cc
[ "MIT" ]
permissive
TeXitoi/valhalla
515f232bc8b8742cc794fb8549d234eb83fb5cd0
39e65bf918939f1b5513c96a724d469430d2be92
refs/heads/master
2023-06-17T17:44:07.616834
2017-02-06T15:03:17
2017-02-06T15:03:17
81,196,924
1
0
null
2017-02-07T10:38:31
2017-02-07T10:38:30
null
UTF-8
C++
false
false
4,803
cc
#include <vector> #include <algorithm> #include <valhalla/baldr/sign.h> #include <valhalla/baldr/signinfo.h> #include "odin/sign.h" #include "test.h" using namespace std; using namespace valhalla::odin; using namespace valhalla::baldr; namespace { void TryCtor(const std::string& text) { valhalla::odin::Sign sign(text); uint32_t consecutive_count = 0; if (text != sign.text()) throw std::runtime_error("Incorrect sign text"); if (consecutive_count != sign.consecutive_count()) throw std::runtime_error("Incorrect sign consecutive count"); } void TestCtor() { // Exit number TryCtor("51A"); // Exit branch TryCtor("I 81 South"); // Exit toward TryCtor("Carlisle"); // Exit name TryCtor("Harrisburg East"); } void TryDescendingSortByConsecutiveCount( std::vector<valhalla::odin::Sign>& signs, const std::vector<valhalla::odin::Sign>& expectedSigns) { if (signs.size() != expectedSigns.size()) throw std::runtime_error("DescendingSortByConsecutiveCount size mismatch"); std::sort( signs.begin(), signs.end(), [](const valhalla::odin::Sign& lhs, const valhalla::odin::Sign& rhs) { return lhs.consecutive_count() > rhs.consecutive_count(); }); for (size_t x = 0, n = signs.size(); x < n; ++x) { if (signs.at(x).consecutive_count() != expectedSigns.at(x).consecutive_count()) throw std::runtime_error("Incorrect DescendingSortByConsecutiveCount"); } } void TestDescendingSortByConsecutiveCount_0_1() { valhalla::odin::Sign signConsecutiveCount0("Elizabethtown"); valhalla::odin::Sign signConsecutiveCount1("Hershey"); signConsecutiveCount1.set_consecutive_count(1); std::vector<valhalla::odin::Sign> signs = { signConsecutiveCount0, signConsecutiveCount1 }; TryDescendingSortByConsecutiveCount(signs, { signConsecutiveCount1, signConsecutiveCount0 }); } void TestDescendingSortByConsecutiveCount_1_2() { valhalla::odin::Sign signConsecutiveCount1("I 81 South"); signConsecutiveCount1.set_consecutive_count(1); valhalla::odin::Sign signConsecutiveCount2("I 81 North"); signConsecutiveCount2.set_consecutive_count(2); std::vector<valhalla::odin::Sign> signs = { signConsecutiveCount1, signConsecutiveCount2 }; TryDescendingSortByConsecutiveCount(signs, { signConsecutiveCount2, signConsecutiveCount1 }); } void TestDescendingSortByConsecutiveCount_2_4() { valhalla::odin::Sign signConsecutiveCount2("51A"); signConsecutiveCount2.set_consecutive_count(2); valhalla::odin::Sign signConsecutiveCount4("51B"); signConsecutiveCount4.set_consecutive_count(4); std::vector<valhalla::odin::Sign> signs = { signConsecutiveCount2, signConsecutiveCount4 }; TryDescendingSortByConsecutiveCount(signs, { signConsecutiveCount4, signConsecutiveCount2 }); } void TestDescendingSortByConsecutiveCount_0_1_2() { valhalla::odin::Sign signConsecutiveCount0("Towson"); valhalla::odin::Sign signConsecutiveCount1("Baltimore"); signConsecutiveCount1.set_consecutive_count(1); valhalla::odin::Sign signConsecutiveCount2("New York"); signConsecutiveCount2.set_consecutive_count(2); std::vector<valhalla::odin::Sign> signs = { signConsecutiveCount0, signConsecutiveCount1, signConsecutiveCount2 }; // Reverse order TryDescendingSortByConsecutiveCount(signs, { signConsecutiveCount2, signConsecutiveCount1, signConsecutiveCount0 }); signs = {signConsecutiveCount2, signConsecutiveCount1, signConsecutiveCount0}; // In order TryDescendingSortByConsecutiveCount(signs, { signConsecutiveCount2, signConsecutiveCount1, signConsecutiveCount0 }); signs = {signConsecutiveCount0, signConsecutiveCount2, signConsecutiveCount1}; // Mixed order TryDescendingSortByConsecutiveCount(signs, { signConsecutiveCount2, signConsecutiveCount1, signConsecutiveCount0 }); } } int main() { test::suite suite("sign"); // Constructor suite.test(TEST_CASE(TestCtor)); // DescendingSortByConsecutiveCount_0_1 suite.test(TEST_CASE(TestDescendingSortByConsecutiveCount_0_1)); // DescendingSortByConsecutiveCount_1_2 suite.test(TEST_CASE(TestDescendingSortByConsecutiveCount_1_2)); // DescendingSortByConsecutiveCount_2_4 suite.test(TEST_CASE(TestDescendingSortByConsecutiveCount_2_4)); // DescendingSortByConsecutiveCount_0_1_2 suite.test(TEST_CASE(TestDescendingSortByConsecutiveCount_0_1_2)); return suite.tear_down(); }
[ "duane@mapzen.com" ]
duane@mapzen.com
623f1ae42c3b6b4f688c94fdeddb0dc2af5ca86f
87bc602ccc46052cec972731f29d2f6d7cf75264
/Periodo 3/Tarea pilas y colas con herencia a partir de lista generica/papaCaliente.cpp
6db11504acedcdd186639fa4f974bc1798ac458b
[]
no_license
adonaylopez895/Portafolio-Estructuradedatos-ciclo02-2021
2b8dc1439bc8999fa77598aa66d0d42ed715cc58
ee4ca57c6fec2d408f461af44d84b0ea76a2a198
refs/heads/main
2023-09-03T12:23:59.483313
2021-11-07T19:36:33
2021-11-07T19:36:33
401,156,237
0
0
null
null
null
null
UTF-8
C++
false
false
1,523
cpp
#include <chrono> #include <thread> #include <iostream> #include <vector> #include <cstdlib> #include <ctime> #include "cola.hpp" using namespace std; int numeroAleatorio(int max); void papaCaliente(const vector<string> &listaNombres); int main(){ vector<string> jugadores = {"1.Erick", "2.Emmanuel", "3.Briam", "4.Gabriel", "5.Maria", "6.Oscar", "7.Krista", "8.Eduardo", "9.Alejandra", "10.Carlos", "11.Diego", "12.Manuel", "13.Jose", "14.Mateo", "15.Fernando", "16.Martinez", "17.Ernesto", "18.Gustavo","19.Graham"}; papaCaliente(jugadores); return 0; } int numeroAleatorio(int max){ static bool semillaCreada = false; if(!semillaCreada){ srand(time(0)); semillaCreada=true; } return rand() % max; } void papaCaliente(const vector<string> &listaNombres){ int cantidadJugadores = listaNombres.size(); Cola<string> simulacion; for(int i= 0; i < cantidadJugadores; i++){ simulacion.enqueue(listaNombres[i]); } for(int i= cantidadJugadores; i > 1; i--){ cout << "Quien tiene la papa caliente?" << endl; for(int pases = numeroAleatorio(2*cantidadJugadores); pases > 0; pases--){ string jugador = simulacion.dequeue(); cout << jugador << endl; simulacion.enqueue(jugador); this_thread::sleep_for(chrono::milliseconds(1000)); } string funado = simulacion.dequeue(); cout << funado << endl; cout << "Alto!!! " << funado << " sale del juego...." << endl << endl; } string ganador = simulacion.dequeue(); cout << ganador << " gano el juego. " << endl; }
[ "adonaylopez895@gmail.com" ]
adonaylopez895@gmail.com
cec3f99781e91c493160b8d957b77208948ba8b0
d6722d20d152092c850681a8d8dc73753f922ca7
/dev/sdk/include/kf/kf_math.h
09a791449c7678ed2914c2102f29e2139a37a89c
[]
no_license
RalphRoukoz/GAD173-Project
51d4d3f15ba1b3127b075be2321cb7132fc04dc6
dbaae6bc5edcdc16310b45f79d2064958b6e5841
refs/heads/main
2023-02-07T16:16:15.787986
2020-12-19T18:02:24
2020-12-19T18:02:24
310,320,002
0
1
null
null
null
null
UTF-8
C++
false
false
2,204
h
//////////////////////////////////////////////////////////// // KF - Kojack Framework // Copyright (C) 2019 Kojack (rajetic@gmail.com) // // KF is released under the MIT License // https://opensource.org/licenses/MIT //////////////////////////////////////////////////////////// #ifndef KF_MATH_H #define KF_MATH_H #include <cmath> #include <cstdlib> namespace kf { const float PI = 3.14159265f; template<typename T> inline typename T::TYPE length(const T &value) { return T::length(value); } template<typename T> inline T minimum(const T &value1, const T &value2) { if constexpr (std::is_arithmetic_v<T>) { return value1 < value2 ? value1 : value2; } else { return T::minimum(value1, value2); } } template<typename T> inline T maximum(const T &value1, const T &value2) { if constexpr (std::is_arithmetic_v<T>) { return value1 > value2 ? value1 : value2; } else { return T::maximum(value1, value2); } } template<typename T> inline T clamp(T v, T low, T high) { if (v < low) v = low; if (v > high) v = high; return v; } template<typename T> inline T sign(T v) { if (v < 0) return -1; if (v > 0) return 1; return 0; } template<typename T> inline T saturate(T v) { if (v < 0) v = 0; if (v > 1) v = 1; return v; } template<typename T1, typename T2> inline T1 lerp(const T1 &val1, const T1 &val2, T2 t) { return (val2 - val1) * t + val1; } template<typename T> inline T remap(const T &src_range_start, const T &src_range_end, const T &dst_range_start, const T &dst_range_end, const T &value_to_remap) { return ((dst_range_end - dst_range_start) * (value_to_remap - src_range_start)) / (src_range_end - src_range_start) + dst_range_start; } template<typename T> inline T s_curve(const T &val) { return val * val*(T(3.0) - T(2.0)*val); } template<typename T> inline T expose(const T &val) { return 1.0 - exp(-val); } template<typename T> inline T acos(const T &val) { if (val <= 1.0 && val >= -1.0f) return std::acos(val); return 0.0f; } template<typename T> inline T asin(const T &val) { if (val <= 1.0 && val >= -1.0f) return std::asin(val); return 0.0f; } } #endif
[ "ralphroukoz@gmail.com" ]
ralphroukoz@gmail.com
daf2f89afcbdb4e67e8ab66035167c42ffce202d
096bf506f5cc028848c7598ac74f11182c8ee118
/ChildFrm.cpp
a1af46663c4da5387485d65d8f3c5eb0b1bf8e0f
[]
no_license
maelstrom256/skyedit
a6df5f8cad602cbfd20341ffe54550b6f63f0930
a889950b6cdd5b0894defd89f2f80200b24ea97c
refs/heads/master
2020-12-25T00:05:19.193829
2012-02-13T02:19:43
2012-02-13T02:19:43
21,885,939
1
0
null
null
null
null
UTF-8
C++
false
false
6,901
cpp
/*=========================================================================== * * File: ChildFrm.CPP * Author: Dave Humphrey (dave@uesp.net) * Created On: 26 November 2011 * * Implementation of the CChildFrame class * *=========================================================================*/ /* Include Files */ #include "stdafx.h" #include "sredit.h" #include "ChildFrm.h" /*=========================================================================== * * Begin Local Definitions * *=========================================================================*/ /* Debug defines */ #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static char THIS_FILE[] = __FILE__; #endif IMPLEMENT_DYNCREATE(CChildFrame, CMDIChildWnd) /*=========================================================================== * End of Local Definitions *=========================================================================*/ /*=========================================================================== * * Class CChildFrame Message Map * *=========================================================================*/ BEGIN_MESSAGE_MAP(CChildFrame, CMDIChildWnd) //{{AFX_MSG_MAP(CChildFrame) ON_WM_SIZE() ON_WM_WINDOWPOSCHANGING() ON_WM_SYSCOMMAND() //}}AFX_MSG_MAP END_MESSAGE_MAP() /*=========================================================================== * End of CChildFrame Message Map *=========================================================================*/ /*=========================================================================== * * Class CChildFrame Constructor * *=========================================================================*/ CChildFrame::CChildFrame() { m_IsFakeMaximized = false; } /*=========================================================================== * End of Class CChildFrame Constructor *=========================================================================*/ /*=========================================================================== * * Class CChildFrame Destructor * *=========================================================================*/ CChildFrame::~CChildFrame() { } /*=========================================================================== * End of Class CChildFrame Destructor *=========================================================================*/ /*=========================================================================== * * Class CChildFrame Method - BOOL PreCreateWindow (cs); * *=========================================================================*/ BOOL CChildFrame::PreCreateWindow (CREATESTRUCT& cs) { cs.style &= ~WS_MAXIMIZE; if( !CMDIChildWnd::PreCreateWindow(cs) ) return FALSE; return TRUE; } /*=========================================================================== * End of Class Method CChildFrame::PreCreateWindow() *=========================================================================*/ #ifdef _DEBUG /*=========================================================================== * * CChildFrame Diagnostics * *=========================================================================*/ void CChildFrame::AssertValid() const { CMDIChildWnd::AssertValid(); } void CChildFrame::Dump(CDumpContext& dc) const { CMDIChildWnd::Dump(dc); } /*=========================================================================== * End of CChildFrame Diagnostics *=========================================================================*/ #endif /*=========================================================================== * * Class CChildFrame Event - void OnSize (nType, cx, cy); * *=========================================================================*/ void CChildFrame::OnSize (UINT nType, int cx, int cy) { CMDIChildWnd::OnSize(nType, cx, cy); m_IsFakeMaximized = false; } /*=========================================================================== * End of Class Event CChildFrame::OnSize() *=========================================================================*/ /*=========================================================================== * * Class CChildFrame Method - BOOL PreTranslateMessage (pMsg); * *=========================================================================*/ BOOL CChildFrame::PreTranslateMessage(MSG* pMsg) { return CMDIChildWnd::PreTranslateMessage(pMsg); } /*=========================================================================== * End of Class Method CChildFrame::PreTranslateMessage() *=========================================================================*/ /*=========================================================================== * * Class CChildFrame Event - void OnWindowPosChanging (pPos); * *=========================================================================*/ void CChildFrame::OnWindowPosChanging (WINDOWPOS* pPos) { CMDIChildWnd::OnWindowPosChanging(pPos); } /*=========================================================================== * End of Class Event CChildFrame::OnWindowPosChanging() *=========================================================================*/ /*=========================================================================== * * Class CChildFrame Method - void FakeMaximize (void); * *=========================================================================*/ void CChildFrame::FakeMaximize (void) { CRect ClientRect; CRect RestoreRect; if (m_IsFakeMaximized) { SetWindowPos(NULL, m_RestoreRect.left, m_RestoreRect.top, m_RestoreRect.Width(), m_RestoreRect.Height(), SWP_NOZORDER); m_IsFakeMaximized = false; } else { if (IsIconic()) { ShowWindow(SW_RESTORE); } GetWindowRect(&RestoreRect); GetParent()->ScreenToClient(&RestoreRect); GetParent()->GetClientRect(&ClientRect); SetWindowPos(NULL, 0, 0, ClientRect.Width(), ClientRect.Height(), SWP_NOZORDER); m_IsFakeMaximized = true; m_RestoreRect = RestoreRect; } } /*=========================================================================== * End of Class Method CChildFrame::FakeMaximize() *=========================================================================*/ /*=========================================================================== * * Class CChildFrame Event - void OnSysCommand (nID, Param); * *=========================================================================*/ void CChildFrame::OnSysCommand (UINT nID, LPARAM Param) { if ((nID & 0xFFF0) == SC_MAXIMIZE) { FakeMaximize(); return; } else if ((nID & 0xFFF0) == SC_MINIMIZE) { m_IsFakeMaximized = false; } CMDIChildWnd::OnSysCommand(nID, Param); } /*=========================================================================== * End of Class Event CChildFrame::OnSysCommand() *=========================================================================*/
[ "dave@uesp.net" ]
dave@uesp.net
4d1f6d4a5bcf70b551939c7d45333aa6fb8496b9
e0cce22d718d8a9bdb7ffbbb1160b90d9fae2dda
/userinformation.cpp
9603634ca5ff508ed3b26e22c5b772742a8c26ac
[]
no_license
smartxiaohan/tux-im-client
9e11e78785dc048d1e2527036d988c509929bf54
0f9bacfd913123b5c74b65ba438756f20a2d2865
refs/heads/master
2021-01-16T20:53:29.083517
2013-09-09T06:04:04
2013-09-09T06:04:04
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,834
cpp
#include "userinformation.h" #include "ui_userinformation.h" #include "imapi.h" #include "utils.h" #include <QInputDialog> #include <QMessageBox> UserInformation::UserInformation(FriendProfile profile, bool isFriend, QWidget *parent) : QWidget(parent), ui(new Ui::UserInformation), friendProfile(profile) { ui->setupUi(this); this->setFixedSize(this->size()); ui->labelNickName->setText(friendProfile.nickName); ui->labelDisplayName->setText(friendProfile.displayName); ui->labelGender->setText(friendProfile.sex == QString("f") ? "女" : "男"); ui->labelUID->setText(QString::number(friendProfile.account)); ui->labelAddress->setText(friendProfile.area); if(isFriend) ui->pushButtonMakeFriend->hide(); else { ui->labelDisplayName->hide(); ui->labelDisplayNameTip->hide(); } } UserInformation::~UserInformation() { delete ui; } void UserInformation::on_pushButtonMakeFriend_clicked() { IMAPI api; QString name; bool ok; name = QInputDialog::getText(this, "添加好友", QString("你正在添加 %1 为好友,请输入备注名称") .arg(friendProfile.nickName), QLineEdit::Normal, QString(), &ok); if(!ok) return; if(api.addFriend(Utils::getInstance()->getTcpSocket(), friendProfile.account, name)) { ui->pushButtonMakeFriend->hide(); ui->labelDisplayNameTip->show(); ui->labelDisplayName->show(); ui->labelDisplayName->setText(name); QMessageBox::information(this, "提示", "添加好友成功"); emit newFriend(); } else QMessageBox::warning(this, "提示", "添加好友失败"); }
[ "posixfung@163.com" ]
posixfung@163.com
52d22e374012abae0ba3c616e4a9edfba9c258db
3790aefc92f31c1abbe5594d4ea020e15cb12aae
/tizen-sdk/platforms/tizen2.1/rootstraps/tizen-emulator-2.1.native/usr/include/osp/FNetHttpHttpSession.h
f5d0149106f4268302a9b84cdc29ff28f1214abf
[]
no_license
abhijitrd/CppSharpTizen
e9871793c27acbb8ae0f599f2013ea56c7b2fca4
92e42a36cc3c5f2b1636061e82025feec4edda0d
refs/heads/master
2021-01-16T22:04:57.789905
2014-07-05T11:39:32
2014-07-05T11:39:32
null
0
0
null
null
null
null
UTF-8
C++
false
false
16,885
h
// // Open Service Platform // Copyright (c) 2012-2013 Samsung Electronics Co., Ltd. // // 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. // /** * @file FNetHttpHttpSession.h * @brief This is the header file for the %HttpSession class. * * This header file contains the declarations of the %HttpSession class. */ #ifndef _FNET_HTTP_HTTP_SESSION_H_ #define _FNET_HTTP_HTTP_SESSION_H_ #include <FBaseString.h> #include <FNetHttpHttpTypes.h> #include <FNetHttpHttpTransaction.h> #include <FNetHttpHttpHeader.h> #include <FNetHttpHttpCookieStorageManager.h> #include <FNetHttpHttpAuthentication.h> #include <FNetNetConnection.h> namespace Tizen { namespace Net { namespace Http { class _HttpSessionImpl; /** * @class HttpSession * @brief This class represents an HTTP session. * * @since 2.0 * * The %HttpSession class represents an HTTP session. The session encapsulates the client's HTTP activity over the duration of the client's execution. It is a set of transactions using the same * connection settings (such as proxy). The client may use several sessions concurrently if desired. * * For more information on the class features, see <a href="../org.tizen.native.appprogramming/html/guide/net/http_session.htm">HTTP Session</a>. * The following example demonstrates how to use the %HttpSession class. * * @code #include <FBase.h> #include <FNet.h> using namespace Tizen::Base; using namespace Tizen::Net::Http; void TestHttpSession(void) { result r = E_SUCCESS; HttpSession* pSession = null; HttpTransaction* pTransaction = null; String* pProxyAddr = null; String hostAddr = L"http://www.tizen.org"; pSession = new HttpSession(); // HttpSession construction. r = pSession->Construct(NET_HTTP_SESSION_MODE_NORMAL, pProxyAddr ,hostAddr, null); // Open a new HttpTransaction. pTransaction = pSession->OpenTransactionN(); } * @endcode */ class _OSP_EXPORT_ HttpSession : public Tizen::Base::Object { public: /** * The object is not fully constructed after this constructor is called. @n * For full construction, the Construct() method must be called right after calling this constructor. * * @since 2.0 * * @remarks After creating an instance of this class, one of the Construct() methods must be called explicitly to initialize the instance. */ HttpSession(void); /** * Initializes this instance of %HttpSession with the specified parameters. @n * Opens a session using the default @c netConnection. * * @since 2.0 * * @return An error code * @param[in] sessionMode The session mode to open the session * @param[in] pProxyAddr A proxy address @n * The specified @c pProxyAddr must be a valid URL. If @c pProxyAddr is @c null, %HttpSession uses the system * default proxy address. * @param[in] hostAddr A host address @n * The specified @c hostAddr must be a valid URL. If session mode is NET_HTTP_SESSION_MODE_MULTIPLE_HOST, * @c hostAddr is ignored (In case of multiple host mode, @c hostAddr is set to HttpRequest::SetUri()). * @param[in] pCommonHeader An instance of HttpHeader @n * This is a common header used in all the transactions included in this session. * @param[in] flag Set to @c NET_HTTP_COOKIE_FLAG_ALWAYS_AUTOMATIC if the cookies must be handled automatically, @n * else @c NET_HTTP_COOKIE_FLAG_ALWAYS_MANUAL if the cookies must be handled manually * @exception E_SUCCESS The method is successful. * @exception E_INVALID_ARG A specified input parameter is invalid. * @exception E_OUT_OF_MEMORY The memory is insufficient. * @exception E_INVALID_CONNECTION The net connection is invalid. * @exception E_MAX_EXCEEDED The number of currently opened sessions has exceeded the maximum limit. * @exception E_INVALID_PROXY The specified proxy address is invalid. * @exception E_UNKNOWN An unknown error has occurred. * @exception E_SYSTEM An internal error has occurred. * @exception E_INVALID_ADDRESS The host address is invalid. * @remarks In the NORMAL and PIPELINING session modes, all the transactions within this sessions are submitted through the same connection. While * only one transaction is processed at a time in the Normal mode, multiple transactions can be pipelined in the Pipelining mode. In the * normal mode, in order to submit the next transaction, the previous transaction must be complete. */ result Construct(NetHttpSessionMode sessionMode, const Tizen::Base::String* pProxyAddr, const Tizen::Base::String& hostAddr, const HttpHeader* pCommonHeader, NetHttpCookieFlag flag = NET_HTTP_COOKIE_FLAG_ALWAYS_MANUAL); /** * Initializes this instance of %HttpSession with the specified parameters. @n * Opens a session using the specified protocol. * * @since 2.0 * * @return An error code * @param[in] netConnection A NetConnection instance * @param[in] sessionMode The session mode to open the session * @param[in] pProxyAddr A proxy address @n * The specified @c pProxyAddr must be a valid URL. If @c pProxyAddr is @c null, %HttpSession uses the system * default proxy address. * @param[in] hostAddr A host address @n * The specified @c hostAddr must be a valid URL. * @param[in] pCommonHeader An instance of HttpHeader @n * This is a common header used in all the transactions included in this session. * @param[in] flag Set to @c NET_HTTP_COOKIE_FLAG_ALWAYS_AUTOMATIC if the cookies must be handled automatically, @n * else @c NET_HTTP_COOKIE_FLAG_ALWAYS_MANUAL if the cookies must be handled manually * @exception E_SUCCESS The method is successful. * @exception E_INVALID_ARG A specified input parameter is invalid. * @exception E_OUT_OF_MEMORY The memory is insufficient. * @exception E_INVALID_CONNECTION The specified @c netConnection is invalid. * @exception E_MAX_EXCEEDED Unable to setup new connection due to too many existing connections. * @exception E_INVALID_PROXY The specified @c pProxyAddr is invalid. * @exception E_UNKNOWN An unknown error has occurred. * @exception E_SYSTEM An internal error has occurred. * @exception E_INVALID_ADDRESS The host address is invalid. * @remarks In the NORMAL and PIPELINING session mode, all the transactions within this session will be submitted through the same connection. * While only one transaction is processed at a time in the Normal mode, multiple transactions can be pipelined in the Pipelining mode. * In the normal mode, in order to submit the next transaction, the previous transaction must be complete. */ result Construct(const NetConnection& netConnection, NetHttpSessionMode sessionMode, const Tizen::Base::String* pProxyAddr, const Tizen::Base::String& hostAddr, const HttpHeader* pCommonHeader, NetHttpCookieFlag flag = NET_HTTP_COOKIE_FLAG_ALWAYS_MANUAL); /** * This destructor overrides Tizen::Base::Object::~Object(). * * @since 2.0 */ virtual ~HttpSession(void); public: /** * Opens a transaction. * * @since 2.0 * @privlevel public * @privilege %http://tizen.org/privilege/http * * @return A pointer to a new HttpTransaction, @n * else @c null if an error occurs * @exception E_SUCCESS The method is successful. * @exception E_MAX_EXCEEDED The maximum number of transactions has been reached. * @exception E_OUT_OF_MEMORY The memory is insufficient. * @exception E_SYSTEM A system error has occurred. * @exception E_PRIVILEGE_DENIED The application does not have the privilege to call this method. * @exception E_USER_NOT_CONSENTED The user blocks an application from calling this method. @b Since: @b 2.1 * @remarks The specific error code can be accessed using the GetLastResult() method. * @remarks The corresponding event listener must also be added in the same thread. A single transaction can be opened in a session at a time. After closing an open transaction, another * transaction can be opened. */ HttpTransaction* OpenTransactionN(void); /** * Opens a transaction with authentication information. * * @since 2.0 * @privlevel public * @privilege %http://tizen.org/privilege/http * * @return The pointer to a new HttpTransaction, @n * else @c null if an error occurs * @param[in] auth The authentication information * @exception E_SUCCESS The method is successful. * @exception E_MAX_EXCEEDED The maximum number of transactions has been reached. * @exception E_OUT_OF_MEMORY The memory is insufficient. * @exception E_SYSTEM A system error has occurred. * @exception E_PRIVILEGE_DENIED The application does not have the privilege to call this method. * @exception E_USER_NOT_CONSENTED The user blocks an application from calling this method. @b Since: @b 2.1 * @remarks The specific error code can be accessed using the GetLastResult() method. * @remarks The corresponding event listener must also be added in the same thread. A single transaction at a time can be opened in a session. After closing an open transaction, another * transaction can be opened. */ HttpTransaction* OpenTransactionN(const HttpAuthentication& auth); /** * Cancels the specified transaction. @n * This method is followed by the CloseTransaction() method. * * @since 2.0 * @privlevel public * @privilege %http://tizen.org/privilege/http * * @return An error code * @param[in] httpTransaction The HttpTransaction to cancel * @exception E_SUCCESS The method is successful. * @exception E_OPERATION_CANCELED The specified transaction has already been canceled. * @exception E_INVALID_STATE The method invoked is invalid. * @exception E_INVALID_TRANSACTION The specified @c httpTransaction is invalid. * @exception E_UNKNOWN An unknown error has occurred. * @exception E_OUT_OF_MEMORY The memory is insufficient. * @exception E_SYSTEM A system error has occurred. * @exception E_PRIVILEGE_DENIED The application does not have the privilege to call this method. * @exception E_USER_NOT_CONSENTED The user blocks an application from calling this method. @b Since: @b 2.1 * @remarks The canceled transaction is no longer considered active. Also, re-opening the transaction is not allowed. */ result CancelTransaction(HttpTransaction& httpTransaction); /** * Closes the specified transaction. * * @since 2.0 * @privlevel public * @privilege %http://tizen.org/privilege/http * * @return An error code * @param[in] httpTransaction The HttpTransaction to close * @exception E_SUCCESS The method is successful. * @exception E_OBJ_NOT_FOUND The specified transaction is not found within the indicated range, or @n * The specified transaction is already deleted. * @exception E_INVALID_STATE The method invoked is invalid. * @exception E_INVALID_ARG The specified input parameter is invalid. * @exception E_INVALID_SESSION The session is invalid. * @exception E_OUT_OF_MEMORY The memory is insufficient. * @exception E_SYSTEM A system error has occurred. * @exception E_PRIVILEGE_DENIED The application does not have the privilege to call this method. * @exception E_USER_NOT_CONSENTED The user blocks an application from calling this method. @b Since: @b 2.1 */ result CloseTransaction(HttpTransaction& httpTransaction); /** * Closes all the transactions. * * @since 2.0 * @privlevel public * @privilege %http://tizen.org/privilege/http * * @return An error code * @exception E_SUCCESS The method is successful. * @exception E_OBJ_NOT_FOUND The specified transaction is not found within the indicated range, or @n * the specified transaction is already deleted. * @exception E_INVALID_SESSION The session is invalid. * @exception E_OUT_OF_MEMORY The memory is insufficient. * @exception E_SYSTEM A system error has occurred. * @exception E_PRIVILEGE_DENIED The application does not have the privilege to call this method. * @exception E_USER_NOT_CONSENTED The user blocks an application from calling this method. @b Since: @b 2.1 */ result CloseAllTransactions(void); /** * Sets the value to redirect the HTTP request automatically (the value is @c false by default). * * @since 2.0 * * @return An error code * @param[in] enable Set to @c true to redirect the HTTP request automatically, @n * else @c false * @exception E_SUCCESS The method is successful. * @exception E_INVALID_STATE The method invoked is invalid. * @exception E_SYSTEM A system error has occurred. */ result SetAutoRedirectionEnabled(bool enable); /** * Checks whether the HTTP redirection is automatic. * * @since 2.0 * * @return @c true if the HTTP redirection is automatic, @n * else @c false * @exception E_SUCCESS The method is successful. * @exception E_SYSTEM A system error has occurred. * @remarks The specific error code can be accessed using the GetLastResult() method. */ bool IsAutoRedirectionEnabled(void) const; /** * Gets the number of active transactions in the current instance of %HttpSession. * * @since 2.0 * @privlevel public * @privilege %http://tizen.org/privilege/http * * @return An integer value indicating the number of currently active transactions, @n * else @c -1 if an error occurs * @exception E_SUCCESS The method is successful. * @exception E_OUT_OF_MEMORY The memory is insufficient. * @exception E_SYSTEM A system error has occurred. * @exception E_PRIVILEGE_DENIED The application does not have the privilege to call this method. * @exception E_USER_NOT_CONSENTED The user blocks an application from calling this method. @b Since: @b 2.1 * @remarks The specific error code can be accessed using the GetLastResult() method. * @remarks The transactions in the state between Submitted and Cancelled (or Closed) are considered to be active transactions. */ int GetActiveTransactionCount(void) const; /** * Gets the maximum number of transactions, the current instance of %HttpSession can have. * * @since 2.0 * @privlevel public * @privilege %http://tizen.org/privilege/http * * @return An integer value indicating the maximum number of transactions allowed @n * In NET_HTTP_SESSION_MODE_MULTIPLE_HOST mode, the return value is zero. * @exception E_SUCCESS The method is successful. * @exception E_OUT_OF_MEMORY The memory is insufficient. * @exception E_SYSTEM A system error has occurred. * @exception E_PRIVILEGE_DENIED The application does not have the privilege to call this method. * @exception E_USER_NOT_CONSENTED The user blocks an application from calling this method. @b Since: @b 2.1 * @remarks The specific error code can be accessed using the GetLastResult() method. * @remarks In NET_HTTP_SESSION_MODE_MULTIPLE_HOST mode, the platform does not limit the number of maximum HttpTransaction that %HttpSession can have. @n */ int GetMaxTransactionCount(void) const; /** * Gets the pointer to HttpCookieStorageManager. * * @since 2.0 * * @return The pointer to HttpCookieStorageManager, @n * else @c null if an error occurs */ HttpCookieStorageManager* GetCookieStorageManager(void) const; private: /** * The implementation of this copy constructor is intentionally blank and declared as private to prohibit copying of objects. * * @param[in] rhs An instance of %HttpSession */ HttpSession(const HttpSession& rhs); /** * The implementation of this copy assignment operator is intentionally blank and declared as private to prohibit copying of objects. * Do @b not use directly. * * @param[in] rhs An instance of %HttpSession */ HttpSession& operator =(const HttpSession& rhs); private: friend class _HttpSessionImpl; _HttpSessionImpl* __pHttpSessionImpl; }; // HttpSession } } } // Tizen::Net::Http #endif // _FNET_HTTP_HTTP_SESSION_H_
[ "brighttwinsoftware@gmail.com" ]
brighttwinsoftware@gmail.com
315c9aaf586d25f10ca0607a3622cb9a56e834c7
b0f9b99046b25f1caa494edd8912cb0cd93ccaae
/Kattis/Pot.cpp
1c29423f924e1b7e4ff1176fefef54cf65ecd6ab
[]
no_license
moadmmh/Competitive-Programming
ebb0cd8f9251fd0b5e388cbc90aa23d53f2fa8d7
f331674686a9510f2f7d49fcdd6b56220822eea4
refs/heads/master
2021-08-11T18:40:49.580541
2021-08-10T07:54:34
2021-08-10T07:54:34
139,492,912
0
0
null
null
null
null
UTF-8
C++
false
false
830
cpp
#include <bits/stdc++.h> //#include<iostream> using namespace std; #define sf(n) scanf("%d", &n) #define pd(n) printf("%.12lf", n) #define pf(n) printf("%d\n", n) #define p() printf("\n") #define ps() printf(" ") #define ll long long #define ull unsigned long long #define MAX 1e9 #define mod 1000000000 #define pi 3.1415926536 #define ex 1e9 #define dbl 1e09 #define qu(q) queue<int> q #define pqu(q) priority_queue<int> q #define len(s) (int)s.length() #define sz(x) (int)x.size() #define pb(x) push_back(x) #define all(x) x.begin(), x.end() #define rall(x) x.rbegin(), x.rend() int main() { //freopen("input.txt","r",stdin); int n; cin >> n; ll sum = 0; while (n--) { int x; cin >> x; int p = x % 10; x /= 10; sum += pow(x, p); } cout << sum << endl; }
[ "noreply@github.com" ]
noreply@github.com
f1d7063ea70da1d83fbfc8c78a7da1d15420a91d
d0d2ee6dadfb979107b07de50ee88263af2f8ac4
/Dynamic Programming/count number of Subset Sum.cpp
5ac578d4c3e940c8c171659dcb5acb76e18c6f55
[]
no_license
Dhruv1573/ALGORITHMS
176ed140f123dad78e2e015627b003632d8f740a
a5257a31b5bd007a47759d50071bb52cdde3044b
refs/heads/master
2022-09-10T22:21:32.786655
2020-05-28T06:59:29
2020-05-28T06:59:29
263,661,717
1
0
null
null
null
null
UTF-8
C++
false
false
1,133
cpp
/* Author :- Dhruv Kumar Amity University jaipur */ #include<bits/stdc++.h> using namespace std; #define lint long long int #define f first #define s second #define pb push_back #define mp make_pair #define lb lower_bound #define ub upper_bound #define mod 1000000007 #define MAXN 100001 #define len length() #define testcase(t) for(int i=0;i<t;i++) #define endl "\n" #define space " " lint subsetSum(lint a[],lint sum,lint n) { lint dp[n+1][sum+1]; memset(dp,0,sizeof(dp)); for(int i=0;i<n+1;i++) dp[i][0]=1; for(int j=1;j<sum+1;j++) dp[0][j]=0; for(int i=1;i<n+1;i++) { for(int j=1;j<sum+1;j++) { if(a[i-1]<=j) dp[i][j]=dp[i-1][j-a[i-1]]+dp[i-1][j]; else dp[i][j]=dp[i-1][j]; } } return dp[n][sum]; } void solve() { lint t; cin>>t; testcase(t) { lint n,k,q,sum; string s; char c; cin>>n>>sum; lint a[n]; for(int i=0;i<n;i++) cin>>a[i]; cout<<subsetSum(a,sum,n)<<endl; } } int main() { ios_base::sync_with_stdio(false); cin.tie(NULL); #ifndef ONLINE_JUDGE freopen("input.txt","r",stdin); freopen("output.txt","w",stdout); #endif solve(); }
[ "36184412+Dhruv1573@users.noreply.github.com" ]
36184412+Dhruv1573@users.noreply.github.com
9d648be97ba2c8107891cd7a23bffdd48442b027
d0fb46aecc3b69983e7f6244331a81dff42d9595
/apds/include/alibabacloud/apds/model/CreateFileJobResult.h
87594e72fd440ec05bc24353527908d71c2eb701
[ "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,518
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_APDS_MODEL_CREATEFILEJOBRESULT_H_ #define ALIBABACLOUD_APDS_MODEL_CREATEFILEJOBRESULT_H_ #include <string> #include <vector> #include <utility> #include <alibabacloud/core/ServiceResult.h> #include <alibabacloud/apds/ApdsExport.h> namespace AlibabaCloud { namespace Apds { namespace Model { class ALIBABACLOUD_APDS_EXPORT CreateFileJobResult : public ServiceResult { public: CreateFileJobResult(); explicit CreateFileJobResult(const std::string &payload); ~CreateFileJobResult(); std::string getError()const; ObjectOfAny getData()const; std::string getCode()const; bool getSuccess()const; protected: void parse(const std::string &payload); private: std::string error_; ObjectOfAny data_; std::string code_; bool success_; }; } } } #endif // !ALIBABACLOUD_APDS_MODEL_CREATEFILEJOBRESULT_H_
[ "sdk-team@alibabacloud.com" ]
sdk-team@alibabacloud.com
51d8483eb9ae68eaabe0b795cd18c3232c6d5efa
ac227cc22d5f5364e5d029a2cef83816a6954590
/applications/physbam/physbam-lib/Public_Library/PhysBAM_Tools/Optimization/LINEAR_PROGRAMMING.cpp
965c48c04eef907738cda4d76a643ac0154a3665
[ "BSD-3-Clause" ]
permissive
schinmayee/nimbus
597185bc8bac91a2480466cebc8b337f5d96bd2e
170cd15e24a7a88243a6ea80aabadc0fc0e6e177
refs/heads/master
2020-03-11T11:42:39.262834
2018-04-18T01:28:23
2018-04-18T01:28:23
129,976,755
0
0
BSD-3-Clause
2018-04-17T23:33:23
2018-04-17T23:33:23
null
UTF-8
C++
false
false
13,691
cpp
//##################################################################### // Copyright 2005-2006, Eran Guendelman, Eftychios Sifakis. // This file is part of PhysBAM whose distribution is governed by the license contained in the accompanying file PHYSBAM_COPYRIGHT.txt. //##################################################################### #include <PhysBAM_Tools/Log/LOG.h> #include <PhysBAM_Tools/Math_Tools/givens_rotate.h> #include <PhysBAM_Tools/Optimization/LINEAR_PROGRAMMING.h> using namespace PhysBAM; //#################################################################################### // Function Move_Column_From_B_To_N_And_Shift_Down //#################################################################################### // puts column of B in N, shifts remaining columns of B left, and puts column from S in B template<class T> void LINEAR_PROGRAMMING<T>:: Move_Column_From_B_To_N_And_Shift_Down(MATRIX_MXN<T>& B,VECTOR_ND<int>& permute_B,const int b_column,MATRIX_MXN<T>& N,VECTOR_ND<int>& permute_N,const int n_column) { assert(B.m==B.n); for(int i=1;i<=B.n;i++)N(i,n_column)=B(i,b_column);permute_N(n_column)=permute_B(b_column); for(int j=b_column;j<B.n;j++){for(int i=1;i<=B.n;i++)B(i,j)=B(i,j+1);permute_B(j)=permute_B(j+1);} } //#################################################################################### // Function Update_Upper_Triangular_Matrix_After_Column_Shift //#################################################################################### // columns starting at given index have been shifted left so they have one value below diagonal // but we can make use of the fact that those values used to be on the diagonal (must be good values) // also updates N and b with the transformation template<class T> void LINEAR_PROGRAMMING<T>:: Update_Upper_Triangular_Matrix_After_Column_Shift(MATRIX_MXN<T>& A,MATRIX_MXN<T>& N,VECTOR_ND<T>& b,const int column,const T tolerance,const bool check_last_column) { assert(A.m==A.n); for(int i=column;i<A.n;i++){ assert(abs(A(i+1,i))>tolerance); VECTOR<T,2> v(A(i,i),A(i+1,i));A(i,i)=v.Magnitude();A(i+1,i)=0;v.Normalize(); for(int j=i+1;j<=A.n;j++) givens_rotate(A(i,j),A(i+1,j),v.x,v.y); for(int j=1;j<=N.n;j++) givens_rotate(N(i,j),N(i+1,j),v.x,v.y); givens_rotate(b(i),b(i+1),v.x,v.y);} #ifndef COMPILE_WITHOUT_READ_WRITE_SUPPORT if(check_last_column && abs(A(A.n,A.n))<tolerance){ std::stringstream ss; ss << "Found near-zero on diagonal during attempt to update upper triangular matrix!" << std::endl; ss << A << std::endl; LOG::filecout(ss.str()); /*PHYSBAM_FATAL_ERROR()*/} #endif } //#################################################################################### // Function Find_Feasible_Solution //#################################################################################### template<class T> void LINEAR_PROGRAMMING<T>:: Find_Feasible_Solution(MATRIX_MXN<T>& B,MATRIX_MXN<T>& N,VECTOR_ND<T>& x_B,VECTOR_ND<T>& b,VECTOR_ND<T>& x_N,VECTOR_ND<int>& permute_B,VECTOR_ND<int>& permute_N,VECTOR_ND<T>& x_unpermuted, const ARRAY<PAIR<bool,T> >& x_min,const ARRAY<PAIR<bool,T> >& x_max,const T tolerance,const T step_tolerance,bool verbose) { assert(B.m==B.n); ARRAY<bool> x_in_feasible_region(B.n+N.n); for(int i=1;i<=x_N.n;i++){ // TODO: starting x_N at min values (or max if no min) if(x_min(permute_N(i)).x) x_N(i)=x_min(permute_N(i)).y; else{assert(x_max(permute_N(i)).x);x_N(i)=x_max(permute_N(i)).y;} // must have a max if no min x_in_feasible_region(permute_N(i))=true;} VECTOR_ND<T> c_B(B.n); int iteration=1; for(;;iteration++){ // solve x_B=B.Upper_Triangular_Solve(b-N*x_N); #ifndef COMPILE_WITHOUT_READ_WRITE_SUPPORT if(verbose){ std::stringstream ss; ss<<"************* ITERATION "<<iteration<< ":\nB:\n"<<B<<"\nN:\n"<<N<<"\nb:\n"<<b<<"\nx_N:\n"<<x_N<<std::endl; ss<<"permute_B:\n"<<permute_B<<"\npermute_N:\n"<<permute_N<<"\nx_B:\n"<<x_B<<std::endl; MATRIX_MXN<T> inverse;B.LU_Inverse(inverse);ss<<"B^-1 * N:\n"<<inverse*N<<"\nB^-1 * b:\n"<<inverse*b<<std::endl; LOG::filecout(ss.str());} #endif bool have_unsatisfied_constraint=false; // TODO: maybe use tolerance to consider anything in [x_min-tol,x_max+tol] as being in feasible region for(int i=1;i<=B.n;i++){ if(!x_in_feasible_region(permute_B(i)) && x_min(permute_B(i)).x && x_B(i)<x_min(permute_B(i)).y){c_B(i)=-1;have_unsatisfied_constraint=true;} else if(!x_in_feasible_region(permute_B(i)) && x_max(permute_B(i)).x && x_B(i)>x_max(permute_B(i)).y){c_B(i)=+1;have_unsatisfied_constraint=true;} else{ // clamp ones we know should be in feasible region x_in_feasible_region(permute_B(i))=true;c_B(i)=0; if(x_min(permute_B(i)).x) x_B(i)=max(x_B(i),x_min(permute_B(i)).y); if(x_max(permute_B(i)).x) x_B(i)=min(x_B(i),x_max(permute_B(i)).y);}} if(!have_unsatisfied_constraint){ #ifndef COMPILE_WITHOUT_READ_WRITE_SUPPORT if(verbose)LOG::filecout("All constraints satisfied!\n"); #endif break;} // done VECTOR_ND<T> pi=B.Transpose_Lower_Triangular_Solve(c_B),sigma(-N.Transpose_Times(pi)); #ifndef COMPILE_WITHOUT_READ_WRITE_SUPPORT if(verbose) {std::stringstream ss;ss<<"c_B =\n"<<c_B<<"pi =\n"<<pi<<"sigma =\n"<<sigma<<std::endl;LOG::filecout(ss.str());} #endif int index_to_release=0;T sigma_to_release=0; for(int i=1;i<=N.n;i++) if((sigma(i)<0 && x_min(permute_N(i)).x && x_N(i)==x_min(permute_N(i)).y) || (sigma(i)>0 && x_max(permute_N(i)).x && x_N(i)==x_max(permute_N(i)).y)) if(abs(sigma(i))>sigma_to_release){sigma_to_release=abs(sigma(i));index_to_release=i;} #ifndef COMPILE_WITHOUT_READ_WRITE_SUPPORT T sigma_tolerance=(T)1e-10; if(sigma_to_release<sigma_tolerance || !index_to_release){ LOG::filecout("No feasible point found for given constraints!\n"); break;} // TODO: how handle this case? if(verbose) {std::stringstream ss;ss<< "Releasing index " << index_to_release << " (muscle " << permute_N(index_to_release) << ")" << std::endl;LOG::filecout(ss.str());} #endif VECTOR_ND<T> p_N(N.n); if(x_min(permute_N(index_to_release)).x && x_N(index_to_release)==x_min(permute_N(index_to_release)).y) p_N(index_to_release)=1; else if(x_max(permute_N(index_to_release)).x && x_N(index_to_release)==x_max(permute_N(index_to_release)).y) p_N(index_to_release)=-1; VECTOR_ND<T> p_B(-B.Upper_Triangular_Solve(N*p_N)); #ifndef COMPILE_WITHOUT_READ_WRITE_SUPPORT if(verbose) {std::stringstream ss;ss<<"Got p_B\n"<<p_B<<"\nGot p_N\n"<<p_N<<std::endl;LOG::filecout(ss.str());} #endif T alpha=FLT_MAX,limiting_value=0;int limiting_index=0; // clamp based on other constraint for variable we are releasing (limiting_index=-1 used to indicate this case) if(x_min(permute_N(index_to_release)).x && x_max(permute_N(index_to_release)).x){ limiting_value=(p_N(index_to_release)>0)?x_max(permute_N(index_to_release)).y:x_min(permute_N(index_to_release)).y; alpha=p_N(index_to_release)*(limiting_value-x_N(index_to_release)); limiting_index=-1;} // check if we hit any other constraint // NOTE: if p_B(i) is close to zero we don't clamp against that variable because if we did and ended up trying to swap // columns from N and B then the new B would not be full rank and trying to update it using LU would give us a zero on the diagonal for(int i=1;i<=B.n;i++) if(!x_in_feasible_region(permute_B(i)) || abs(p_B(i)*alpha)>=step_tolerance){ if(p_B(i)>0 && x_max(permute_B(i)).x && (x_in_feasible_region(permute_B(i)) || (x_max(permute_B(i)).y-x_B(i))>0) && (x_max(permute_B(i)).y-x_B(i))/p_B(i)<alpha){ alpha=max((T)0,(x_max(permute_B(i)).y-x_B(i))/p_B(i));limiting_index=i;limiting_value=x_max(permute_B(i)).y;} else if(p_B(i)<0 && x_min(permute_B(i)).x && (x_in_feasible_region(permute_B(i)) || (x_min(permute_B(i)).y-x_B(i))<0) && (x_min(permute_B(i)).y-x_B(i))/p_B(i)<alpha){ alpha=max((T)0,(x_min(permute_B(i)).y-x_B(i))/p_B(i));limiting_index=i;limiting_value=x_min(permute_B(i)).y;}} assert(alpha>=0); #ifndef COMPILE_WITHOUT_READ_WRITE_SUPPORT if(verbose) { std::stringstream ss; ss<<"alpha="<<alpha<<", limiting_index="<<limiting_index<<", limiting_value="<<limiting_value<<"\nx_in_feasible_region = "<<x_in_feasible_region<<std::endl; LOG::filecout(ss.str());} #endif // robustly detect when a variable enters feasible region as a result of moving by alpha for(int i=1;i<=B.n;i++) if(!x_in_feasible_region(permute_B(i))){ if((p_B(i)>0 && x_min(permute_B(i)).x && x_B(i)<=x_min(permute_B(i)).y && (x_min(permute_B(i)).y-x_B(i))/p_B(i)<=alpha) || (p_B(i)<0 && x_max(permute_B(i)).x && x_B(i)>=x_max(permute_B(i)).y && (x_max(permute_B(i)).y-x_B(i))/p_B(i)<=alpha)) x_in_feasible_region(permute_B(i))=true;} if(!limiting_index){ #if 0 alpha=0;limiting_index=0; // see how far we need to go to satisfy as much as possible for(int i=1;i<=B.n;i++) if(p_B(i)>0 && x_min(permute_B(i)).x && (x_min(permute_B(i)).y-x_B(i))/p_B(i)>alpha){alpha=(x_min(permute_B(i)).y-x_B(i))/p_B(i);limiting_index=i;} else if(p_B(i)<0 && x_max(permute_B(i)).x && (x_max(permute_B(i)).y-x_B(i))/p_B(i)>alpha){alpha=(x_max(permute_B(i)).y-x_B(i))/p_B(i);limiting_index=i;} x_B+=alpha*p_B; #endif #ifndef COMPILE_WITHOUT_READ_WRITE_SUPPORT std::stringstream ss; ss << "No limiting index, picking alpha="<<alpha<<" (reaching index"<<limiting_index<<")"<<std::endl; LOG::filecout(ss.str()); #endif break;} // TODO: how handle this case? if(limiting_index==-1){ // p_N(i) limits alpha, switch x_N to be opposite end's constraint #ifndef COMPILE_WITHOUT_READ_WRITE_SUPPORT if(verbose){ std::stringstream ss; ss << "Active constraint " << index_to_release << " (muscle " << permute_N(index_to_release) << ") switched to bound " << limiting_value << std::endl; LOG::filecout(ss.str());} #endif x_N(index_to_release)=limiting_value;} else{ #ifndef COMPILE_WITHOUT_READ_WRITE_SUPPORT if(verbose){ std::stringstream ss; ss << "limiting_index="<<limiting_index<<" (muscle " << permute_B(limiting_index) << ") getting constrained to " << limiting_value << ", index_to_release="<<index_to_release<<" (muscle " << permute_N(index_to_release) << ") released from " << x_N(index_to_release) << ")" << std::endl; ss << "BEFORE COLUMN SWITCH ("<<limiting_index<<","<<index_to_release<<")\nB:\n"<<B<<"\nN:\n"<<N<<std::endl; LOG::filecout(ss.str());} #endif // put B column "limiting_index" in N column "index_to_release", and put N column "index_to_release" in // the last column of B (after shifting the other columns left) int permute_n=permute_N(index_to_release);VECTOR_ND<T> column_from_N(B.n);N.Get_Column(index_to_release,column_from_N); Move_Column_From_B_To_N_And_Shift_Down(B,permute_B,limiting_index,N,permute_N,index_to_release); B.Set_Column(B.n,column_from_N);permute_B(B.n)=permute_n; // update x_N x_N(index_to_release)=limiting_value; x_in_feasible_region(permute_N(index_to_release))=true; #ifndef COMPILE_WITHOUT_READ_WRITE_SUPPORT if(verbose){ std::stringstream ss; ss << "AFTER COLUMN SWITCH\nB:\n"<<B<<"\nN:\n"<<N<<std::endl; LOG::filecout(ss.str());} #endif Update_Upper_Triangular_Matrix_After_Column_Shift(B,N,b,limiting_index,tolerance); // make upper triangular again #ifndef COMPILE_WITHOUT_READ_WRITE_SUPPORT if(verbose){ std::stringstream ss; ss << "AFTER MAKING UPPER TRIANGULAR\nB:\n"<<B<<"\nN:\n"<<N<<std::endl; LOG::filecout(ss.str());} #endif } } if(x_in_feasible_region.Number_False()){ // have some values not in feasible region #ifndef COMPILE_WITHOUT_READ_WRITE_SUPPORT LOG::filecout("PHYSBAM_WARNING: clamping values into feasible region after unsuccessful LP solve\n"); #endif for(int i=1;i<=x_B.n;i++) if(!x_in_feasible_region(permute_B(i))){ if(x_min(permute_B(i)).x) x_B(i)=max(x_B(i),x_min(permute_B(i)).y); if(x_max(permute_B(i)).x) x_B(i)=min(x_B(i),x_max(permute_B(i)).y);}} VECTOR_ND<int> permute(B.n+N.n);permute.Set_Subvector(1,permute_B);permute.Set_Subvector(B.n+1,permute_N); VECTOR_ND<T> x(B.n+N.n);x.Set_Subvector(1,x_B);x.Set_Subvector(B.n+1,x_N); x_unpermuted=x.Unpermute(permute); #ifndef COMPILE_WITHOUT_READ_WRITE_SUPPORT std::stringstream ss; ss << "LP finished in " << iteration << " iterations" << std::endl; if(verbose) ss<<"LP Result x_B:\n"<<x_B<<"\nLP Result permute:\n"<<permute<<std::endl; LOG::filecout(ss.str()); #endif } //#################################################################################### template class LINEAR_PROGRAMMING<float>; #ifndef COMPILE_WITHOUT_DOUBLE_SUPPORT template class LINEAR_PROGRAMMING<double>; #endif
[ "quhang@stanford.edu" ]
quhang@stanford.edu
9617c113fe0219a91622648eda22982187c6c668
52dc9080af88c00222cc9b37aa08c35ff3cafe86
/0000/10/12b.cpp
52c7a49af9ed9f836a0fa5458e6ab90bc9608bc1
[ "Unlicense" ]
permissive
shivral/cf
1c1acde25fc6af775acaeeb6b5fe5aa9bbcfd4d2
d7be128c3a9adb014a231a399f1c5f19e1ab2a38
refs/heads/master
2023-03-20T01:29:25.559828
2021-03-05T08:30:30
2021-03-05T08:30:30
null
0
0
null
null
null
null
UTF-8
C++
false
false
583
cpp
#include <algorithm> #include <iostream> #include <string> void answer(bool v) { constexpr const char* s[2] = { "WRONG_ANSWER", "OK" }; std::cout << s[v] << '\n'; } void solve(const std::string& n, const std::string& m) { const size_t k = n.length(); std::string t = n; std::sort(t.begin(), t.end()); for (size_t i = 0; i < k; ++i) { if (t[i] != '0') { std::swap(t[i], t.front()); break; } } answer(t == m); } int main() { std::string n, m; std::cin >> n >> m; solve(n, m); return 0; }
[ "5691735+actium@users.noreply.github.com" ]
5691735+actium@users.noreply.github.com
8f33e15f4b4bb33c9d00fba179b902e61afebeba
9f8a069f7d337a022cae89e3e5b75d161c832e2d
/TurbulanceModels-flat-plate/k-epsilon/600/nut
7a8e83273f55fcc4142e2dba34f26ec0cfa89d28
[]
no_license
Logan-Price/CFD
453f6df21f90fd91a834ce98bc0b3970406f148d
16e510ec882e65d5f7101e0aac91dbe8a035f65d
refs/heads/master
2023-04-06T04:17:49.899812
2021-04-19T01:22:14
2021-04-19T01:22:14
359,291,399
0
0
null
null
null
null
UTF-8
C++
false
false
123,981
/*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / O peration | Version: v1912 | | \\ / A nd | Website: www.openfoam.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class volScalarField; location "600"; object nut; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // dimensions [0 2 -1 0 0 0 0]; internalField nonuniform List<scalar> 10000 ( 5.38833e-05 5.48078e-05 5.55509e-05 5.63309e-05 5.72548e-05 5.84062e-05 5.98542e-05 6.16534e-05 6.38426e-05 6.64446e-05 6.94645e-05 7.2887e-05 7.66721e-05 8.07531e-05 8.50376e-05 8.94169e-05 9.37775e-05 9.8017e-05 0.00010179 7.16201e-05 5.3693e-05 5.46113e-05 5.53558e-05 5.6136e-05 5.7057e-05 5.82016e-05 5.96389e-05 6.14239e-05 6.35959e-05 6.61788e-05 6.91785e-05 7.2581e-05 7.63477e-05 8.04129e-05 8.46856e-05 8.90578e-05 9.34161e-05 9.76584e-05 0.000101448 7.66712e-05 5.3238e-05 5.41583e-05 5.49068e-05 5.56863e-05 5.6599e-05 5.77266e-05 5.9138e-05 6.0889e-05 6.30206e-05 6.55583e-05 6.85108e-05 7.18665e-05 7.55897e-05 7.96179e-05 8.38624e-05 8.82171e-05 9.25693e-05 9.68168e-05 0.00010064 8.13561e-05 5.25019e-05 5.34298e-05 5.41844e-05 5.49621e-05 5.58616e-05 5.69626e-05 5.83338e-05 6.00318e-05 6.20997e-05 6.45662e-05 6.74434e-05 7.07238e-05 7.43763e-05 7.83429e-05 8.25393e-05 8.68624e-05 9.12006e-05 9.54524e-05 9.93186e-05 8.49217e-05 5.14762e-05 5.2415e-05 5.31774e-05 5.3953e-05 5.48358e-05 5.59027e-05 5.72216e-05 5.88498e-05 6.08332e-05 6.32037e-05 6.59781e-05 6.91544e-05 7.27073e-05 7.65852e-05 8.071e-05 8.49831e-05 8.92953e-05 9.35457e-05 9.74582e-05 8.72338e-05 5.0157e-05 5.11083e-05 5.188e-05 5.26537e-05 5.3518e-05 5.4546e-05 5.58037e-05 5.73491e-05 5.92301e-05 6.14827e-05 6.41288e-05 6.71725e-05 7.05963e-05 7.43566e-05 7.83829e-05 8.25832e-05 8.68517e-05 9.10897e-05 9.50445e-05 8.82873e-05 4.85445e-05 4.95076e-05 5.02893e-05 5.10622e-05 5.1908e-05 5.2895e-05 5.40865e-05 5.554e-05 5.73053e-05 5.94218e-05 6.19169e-05 6.48019e-05 6.80675e-05 7.16797e-05 7.55777e-05 7.96778e-05 8.38797e-05 8.8088e-05 9.20729e-05 8.81263e-05 4.66417e-05 4.76142e-05 4.84058e-05 4.91791e-05 5.00077e-05 5.09542e-05 5.20781e-05 5.34353e-05 5.50762e-05 5.70435e-05 5.93695e-05 6.20727e-05 6.51528e-05 6.85865e-05 7.23243e-05 7.6293e-05 8.03996e-05 8.45542e-05 8.85491e-05 8.68216e-05 4.4455e-05 4.54326e-05 4.62327e-05 4.70072e-05 4.7821e-05 4.87297e-05 4.97879e-05 5.10487e-05 5.25621e-05 5.43726e-05 5.65168e-05 5.90198e-05 6.18906e-05 6.51172e-05 6.86625e-05 7.24657e-05 7.64436e-05 8.05139e-05 8.449e-05 8.44626e-05 4.19946e-05 4.29716e-05 4.37772e-05 4.45526e-05 4.53539e-05 4.62288e-05 4.72258e-05 4.83941e-05 4.97818e-05 5.14338e-05 5.33897e-05 5.56804e-05 5.83234e-05 6.13178e-05 6.46399e-05 6.82428e-05 7.20553e-05 7.60051e-05 7.9926e-05 8.1152e-05 3.92753e-05 4.02441e-05 4.10504e-05 4.18248e-05 4.26151e-05 4.34605e-05 4.44026e-05 4.54852e-05 4.67533e-05 4.82508e-05 5.00187e-05 5.20918e-05 5.4495e-05 5.7238e-05 6.03104e-05 6.36799e-05 6.72891e-05 7.10785e-05 7.49019e-05 7.70041e-05 3.63166e-05 3.72683e-05 3.80689e-05 3.88382e-05 3.96172e-05 4.04366e-05 4.13303e-05 4.2336e-05 4.34941e-05 4.48458e-05 4.64317e-05 4.82891e-05 5.04483e-05 5.29281e-05 5.57304e-05 5.88379e-05 6.22082e-05 6.5796e-05 6.94763e-05 7.21421e-05 3.31446e-05 3.40685e-05 3.4856e-05 3.56138e-05 3.63784e-05 3.71733e-05 3.80242e-05 3.8962e-05 4.00213e-05 4.12393e-05 4.26545e-05 4.43045e-05 4.62229e-05 4.84358e-05 5.09556e-05 5.37794e-05 5.68798e-05 6.02277e-05 6.37186e-05 6.66947e-05 2.97931e-05 3.06767e-05 3.14421e-05 3.21802e-05 3.29246e-05 3.36931e-05 3.45045e-05 3.53821e-05 3.63539e-05 3.7452e-05 3.87111e-05 4.01671e-05 4.18549e-05 4.38049e-05 4.60385e-05 4.85648e-05 5.13718e-05 5.44462e-05 5.7705e-05 6.07908e-05 2.6305e-05 2.71335e-05 2.78668e-05 2.8576e-05 2.92916e-05 3.00284e-05 3.07996e-05 3.16217e-05 3.25157e-05 3.35074e-05 3.46264e-05 3.59052e-05 3.73775e-05 3.90757e-05 4.10271e-05 4.32511e-05 4.57491e-05 4.85235e-05 5.15126e-05 5.45541e-05 2.27341e-05 2.3491e-05 2.418e-05 2.48502e-05 2.55271e-05 2.62239e-05 2.69501e-05 2.77169e-05 2.85389e-05 2.94352e-05 3.04295e-05 3.15492e-05 3.28245e-05 3.42874e-05 3.59679e-05 3.78924e-05 4.00739e-05 4.25293e-05 4.52176e-05 4.80985e-05 1.91467e-05 1.98151e-05 2.04446e-05 2.10641e-05 2.16917e-05 2.23383e-05 2.30114e-05 2.37186e-05 2.44695e-05 2.52773e-05 2.61592e-05 2.71366e-05 2.82347e-05 2.94822e-05 3.09086e-05 3.2544e-05 3.44098e-05 3.65344e-05 3.88969e-05 4.15308e-05 1.56233e-05 1.61874e-05 1.67401e-05 1.72943e-05 1.78603e-05 1.84454e-05 1.90554e-05 1.96953e-05 2.03714e-05 2.10922e-05 2.18692e-05 2.27177e-05 2.36569e-05 2.47102e-05 2.59038e-05 2.72674e-05 2.88264e-05 3.06173e-05 3.26365e-05 3.49589e-05 1.22579e-05 1.2707e-05 1.31657e-05 1.36377e-05 1.41271e-05 1.46374e-05 1.51721e-05 1.57345e-05 1.63283e-05 1.69587e-05 1.76329e-05 1.83609e-05 1.91558e-05 2.0035e-05 2.1019e-05 2.21337e-05 2.34042e-05 2.48693e-05 2.6538e-05 2.85054e-05 9.15638e-06 9.48798e-06 9.84057e-06 1.02146e-05 1.0611e-05 1.1031e-05 1.1476e-05 1.19476e-05 1.2448e-05 1.29801e-05 1.35481e-05 1.41578e-05 1.48174e-05 1.55382e-05 1.63347e-05 1.72266e-05 1.82345e-05 1.93943e-05 2.07213e-05 2.23132e-05 6.42933e-06 6.65142e-06 6.89668e-06 7.16512e-06 7.45698e-06 7.77279e-06 8.11326e-06 8.47936e-06 8.87234e-06 9.2939e-06 9.74635e-06 1.0233e-05 1.07584e-05 1.13294e-05 1.19546e-05 1.26473e-05 1.34219e-05 1.4307e-05 1.53176e-05 1.65415e-05 4.17719e-06 4.30854e-06 4.45912e-06 4.62892e-06 4.81821e-06 5.02755e-06 5.25772e-06 5.5097e-06 5.78469e-06 6.08408e-06 6.40961e-06 6.76346e-06 7.14844e-06 7.56844e-06 8.02852e-06 8.53662e-06 9.10137e-06 9.74281e-06 1.04719e-05 1.13578e-05 2.46571e-06 2.53252e-06 2.61273e-06 2.70595e-06 2.81213e-06 2.9316e-06 3.06495e-06 3.21301e-06 3.37686e-06 3.55779e-06 3.75734e-06 3.97734e-06 4.21993e-06 4.48786e-06 4.78435e-06 5.11436e-06 5.48293e-06 5.90297e-06 6.38135e-06 6.96683e-06 1.29711e-06 1.32624e-06 1.36401e-06 1.40955e-06 1.46238e-06 1.52234e-06 1.58952e-06 1.66425e-06 1.74706e-06 1.83867e-06 1.94001e-06 2.05224e-06 2.17679e-06 2.31541e-06 2.4702e-06 2.64425e-06 2.84062e-06 3.0672e-06 3.32841e-06 3.65445e-06 5.96684e-07 6.08414e-07 6.25788e-07 6.47702e-07 6.73448e-07 7.02602e-07 7.34951e-07 7.70439e-07 8.09145e-07 8.51261e-07 8.97088e-07 9.47042e-07 1.00166e-06 1.06168e-06 1.12795e-06 1.20185e-06 1.28476e-06 1.38045e-06 1.49129e-06 1.6324e-06 2.35258e-07 2.40534e-07 2.49567e-07 2.6129e-07 2.7503e-07 2.90367e-07 3.0705e-07 3.24944e-07 3.43997e-07 3.64218e-07 3.85668e-07 4.08448e-07 4.32702e-07 4.58632e-07 4.86484e-07 5.16678e-07 5.49616e-07 5.86629e-07 6.28568e-07 6.81079e-07 7.74989e-08 8.04589e-08 8.57766e-08 9.26391e-08 1.00556e-07 1.09226e-07 1.18466e-07 1.28174e-07 1.38303e-07 1.48847e-07 1.59825e-07 1.71276e-07 1.83256e-07 1.95839e-07 2.09108e-07 2.23204e-07 2.38259e-07 2.54714e-07 2.72877e-07 2.9459e-07 2.05894e-08 2.23148e-08 2.5353e-08 2.92487e-08 3.37149e-08 3.8559e-08 4.36575e-08 4.89415e-08 5.4383e-08 5.99829e-08 6.57611e-08 7.17494e-08 7.79868e-08 8.45187e-08 9.13938e-08 9.868e-08 1.06441e-07 1.14853e-07 1.24055e-07 1.34686e-07 4.21347e-09 5.03955e-09 6.51301e-09 8.46986e-09 1.07615e-08 1.32586e-08 1.58714e-08 1.85549e-08 2.12989e-08 2.41155e-08 2.70288e-08 3.00684e-08 3.32661e-08 3.66548e-08 4.02676e-08 4.41441e-08 4.83239e-08 5.28865e-08 5.79086e-08 6.36386e-08 6.31447e-10 9.14923e-10 1.47585e-09 2.28769e-09 3.27053e-09 4.34305e-09 5.46163e-09 6.61745e-09 7.82034e-09 9.08741e-09 1.04379e-08 1.18916e-08 1.3468e-08 1.51875e-08 1.70708e-08 1.91416e-08 2.14252e-08 2.39634e-08 2.68012e-08 3.00476e-08 6.6951e-11 1.32615e-10 2.89557e-10 5.37483e-10 8.42702e-10 1.18536e-09 1.56474e-09 1.98675e-09 2.45862e-09 2.98814e-09 3.58393e-09 4.25576e-09 5.01463e-09 5.87296e-09 6.84459e-09 7.94566e-09 9.19418e-09 1.06156e-08 1.22393e-08 1.41195e-08 5.16083e-12 1.56733e-11 4.7207e-11 1.01379e-10 1.74796e-10 2.69589e-10 3.89452e-10 5.37905e-10 7.18607e-10 9.35859e-10 1.19495e-09 1.50236e-09 1.86586e-09 2.29458e-09 2.79903e-09 3.39143e-09 4.08561e-09 4.89908e-09 5.8521e-09 6.9748e-09 3.31473e-13 1.67444e-12 6.95518e-12 1.77971e-11 3.5726e-11 6.31713e-11 1.02663e-10 1.56761e-10 2.2828e-10 3.20577e-10 4.37793e-10 5.8503e-10 7.68476e-10 9.95491e-10 1.27466e-09 1.61594e-09 2.03062e-09 2.53199e-09 3.13517e-09 3.85914e-09 2.21035e-14 1.9201e-13 1.11987e-12 3.57033e-12 8.56034e-12 1.74595e-11 3.18296e-11 5.3426e-11 8.43279e-11 1.27127e-10 1.85112e-10 2.62422e-10 3.64178e-10 4.96576e-10 6.66955e-10 8.83849e-10 1.15694e-09 1.49722e-09 1.91678e-09 2.42926e-09 1.85042e-15 2.69156e-14 2.1959e-13 8.76005e-13 2.48554e-12 5.76469e-12 1.16253e-11 2.12014e-11 3.59538e-11 5.78176e-11 8.93577e-11 1.33916e-10 1.95742e-10 2.80105e-10 3.93352e-10 5.42925e-10 7.37271e-10 9.85756e-10 1.29841e-09 1.68577e-09 2.11523e-16 4.82326e-15 5.32973e-14 2.60511e-13 8.56484e-13 2.21764e-12 4.87471e-12 9.55276e-12 1.72631e-11 2.94287e-11 4.80243e-11 7.57203e-11 1.1602e-10 1.73369e-10 2.53215e-10 3.61985e-10 5.0695e-10 6.96021e-10 9.37409e-10 1.23931e-09 3.30468e-17 1.0979e-15 1.5744e-14 9.171e-14 3.41764e-13 9.71119e-13 2.29687e-12 4.79004e-12 9.15524e-12 1.64396e-11 2.81602e-11 4.64433e-11 7.4159e-11 1.15029e-10 1.73672e-10 2.55553e-10 3.66811e-10 5.13977e-10 7.03613e-10 9.41941e-10 6.82191e-18 3.09505e-16 5.52631e-15 3.7357e-14 1.54728e-13 4.75459e-13 1.19679e-12 2.63371e-12 5.28675e-12 9.9361e-12 1.77571e-11 3.04501e-11 5.03691e-11 8.06211e-11 1.25097e-10 1.88398e-10 2.75636e-10 3.92124e-10 5.43013e-10 7.3296e-10 1.7858e-18 1.04922e-16 2.25045e-15 1.72498e-14 7.8099e-14 2.56368e-13 6.80445e-13 1.56849e-12 3.28548e-12 6.42437e-12 1.19094e-11 2.11155e-11 3.59871e-11 5.91271e-11 9.38149e-11 1.43917e-10 2.13673e-10 3.0739e-10 4.29106e-10 5.82319e-10 5.70518e-19 4.15946e-17 1.04021e-15 8.86668e-15 4.32793e-14 1.50232e-13 4.17197e-13 1.00089e-12 2.17523e-12 4.40149e-12 8.42017e-12 1.53595e-11 2.68439e-11 4.50722e-11 7.2825e-11 1.13365e-10 1.70225e-10 2.46914e-10 3.46632e-10 4.72057e-10 2.15243e-19 1.88162e-17 5.35382e-16 4.99354e-15 2.5979e-14 9.45618e-14 2.72969e-13 6.77825e-13 1.52079e-12 3.16936e-12 6.22881e-12 1.16403e-11 2.07794e-11 3.55241e-11 5.82544e-11 9.17481e-11 1.38975e-10 2.02832e-10 2.85898e-10 3.90286e-10 9.33079e-20 9.51236e-18 3.01841e-16 3.03955e-15 1.66959e-14 6.32836e-14 1.88854e-13 4.8311e-13 1.11416e-12 2.38173e-12 4.79042e-12 9.13865e-12 1.66079e-11 2.88226e-11 4.78426e-11 7.60594e-11 1.16001e-10 1.70094e-10 2.40462e-10 3.28828e-10 4.54406e-20 5.28108e-18 1.8384e-16 1.97664e-15 1.13738e-14 4.46336e-14 1.37067e-13 3.59768e-13 8.49698e-13 1.85671e-12 3.80943e-12 7.39626e-12 1.36465e-11 2.39832e-11 4.02106e-11 6.44129e-11 9.8771e-11 1.45352e-10 2.05945e-10 2.81996e-10 2.44044e-20 3.17344e-18 1.19563e-16 1.35994e-15 8.144e-15 3.29278e-14 1.03652e-13 2.78199e-13 6.70753e-13 1.49378e-12 3.11778e-12 6.14539e-12 1.14856e-11 2.04005e-11 3.44899e-11 5.55922e-11 8.56149e-11 1.26348e-10 1.79331e-10 2.4581e-10 1.4236e-20 2.03927e-18 8.22282e-17 9.81776e-16 6.0854e-15 2.52475e-14 8.11991e-14 2.22201e-13 5.45436e-13 1.23487e-12 2.61583e-12 5.22334e-12 9.87038e-12 1.76895e-11 3.01155e-11 4.87895e-11 7.54022e-11 1.11528e-10 1.58517e-10 2.1747e-10 8.90761e-21 1.38745e-18 5.93164e-17 7.38589e-16 4.71667e-15 2.00115e-14 6.55715e-14 1.82492e-13 4.5502e-13 1.04502e-12 2.24227e-12 4.52784e-12 8.6373e-12 1.55982e-11 2.67112e-11 4.34579e-11 6.73555e-11 9.98091e-11 1.42022e-10 1.94987e-10 5.91688e-21 9.91169e-19 4.45758e-17 5.75662e-16 3.77277e-15 1.63213e-14 5.43574e-14 1.53531e-13 3.88069e-13 9.02449e-13 1.9581e-12 3.99255e-12 7.67837e-12 1.39572e-11 2.40199e-11 3.92182e-11 6.09289e-11 9.04224e-11 1.28788e-10 1.76934e-10 4.13663e-21 7.38326e-19 3.46984e-17 4.62576e-16 3.10095e-15 1.36447e-14 4.60943e-14 1.31885e-13 3.37362e-13 7.93135e-13 1.73774e-12 3.57323e-12 6.92045e-12 1.26502e-11 2.18627e-11 3.58029e-11 5.57335e-11 8.28161e-11 1.18049e-10 1.62277e-10 3.02207e-21 5.70158e-19 2.7843e-17 3.81641e-16 2.60946e-15 1.1654e-14 3.98634e-14 1.15357e-13 2.98193e-13 7.0778e-13 1.56398e-12 3.23964e-12 6.31277e-12 1.15953e-11 2.01122e-11 3.30197e-11 5.14869e-11 7.65872e-11 1.09246e-10 1.50256e-10 2.29325e-21 4.54219e-19 2.29378e-17 3.22153e-16 2.24122e-15 1.01407e-14 3.50694e-14 1.02501e-13 2.67412e-13 6.40066e-13 1.42493e-12 2.97062e-12 5.8194e-12 1.07339e-11 1.8676e-11 3.07283e-11 4.79819e-11 7.14377e-11 1.01962e-10 1.40305e-10 1.79838e-21 3.71759e-19 1.93338e-17 2.77405e-16 1.95952e-15 8.9683e-15 3.13155e-14 9.23367e-14 2.42856e-13 5.85595e-13 1.31223e-12 2.75109e-12 5.41437e-12 1.00232e-11 1.74863e-11 2.88242e-11 4.50632e-11 6.71441e-11 9.58847e-11 1.31999e-10 1.4512e-21 3.11501e-19 1.6624e-17 2.43056e-16 1.74005e-15 8.04466e-15 2.83304e-14 8.41845e-14 2.23005e-13 5.41236e-13 1.21983e-12 2.57003e-12 5.0786e-12 9.43145e-12 1.64922e-11 2.72291e-11 4.26137e-11 6.35366e-11 9.07751e-11 1.25015e-10 1.2006e-21 2.66416e-19 1.45451e-17 2.16219e-16 1.56634e-15 7.30634e-15 2.59243e-14 7.75643e-14 2.0677e-13 5.04723e-13 1.14333e-12 2.41933e-12 4.79785e-12 8.93475e-12 1.56553e-11 2.58831e-11 4.05435e-11 6.04849e-11 8.64507e-11 1.19102e-10 1.01515e-21 2.31978e-19 1.29216e-17 1.94923e-16 1.42689e-15 6.70847e-15 2.39617e-14 7.2128e-14 1.93356e-13 4.7438e-13 1.07942e-12 2.29286e-12 4.56129e-12 8.51482e-12 1.49458e-11 2.47398e-11 3.87828e-11 5.78874e-11 8.27681e-11 1.14066e-10 8.74911e-22 2.05195e-19 1.16343e-17 1.77793e-16 1.31358e-15 6.21891e-15 2.23442e-14 6.76212e-14 1.82174e-13 4.48957e-13 1.02563e-12 2.18596e-12 4.36063e-12 8.15757e-12 1.43409e-11 2.37633e-11 3.72772e-11 5.56645e-11 7.96156e-11 1.09754e-10 7.66781e-22 1.84027e-19 1.05991e-17 1.63844e-16 1.22048e-15 5.81391e-15 2.09984e-14 6.38516e-14 1.72776e-13 4.27493e-13 9.80026e-13 2.09501e-12 4.18935e-12 7.85185e-12 1.38221e-11 2.29246e-11 3.59827e-11 5.37524e-11 7.69029e-11 1.06043e-10 6.82035e-22 1.67067e-19 9.75695e-18 1.5237e-16 1.14328e-15 5.47605e-15 1.987e-14 6.06761e-14 1.64824e-13 4.09259e-13 9.41145e-13 2.01721e-12 4.04245e-12 7.58901e-12 1.33753e-11 2.22013e-11 3.48655e-11 5.21011e-11 7.45597e-11 1.02836e-10 6.14572e-22 1.53301e-19 9.06409e-18 1.42835e-16 1.07867e-15 5.19179e-15 1.89162e-14 5.79811e-14 1.58049e-13 3.93668e-13 9.07791e-13 1.95028e-12 3.91575e-12 7.36186e-12 1.29885e-11 2.15745e-11 3.38965e-11 5.06684e-11 7.25261e-11 1.00054e-10 5.60225e-22 1.42017e-19 8.48931e-18 1.34856e-16 1.02426e-15 4.95124e-15 1.81059e-14 5.56827e-14 1.52252e-13 3.80284e-13 8.79074e-13 1.89251e-12 3.80614e-12 7.16499e-12 1.26528e-11 2.10299e-11 3.30541e-11 4.94223e-11 7.07571e-11 9.76326e-11 5.15855e-22 1.32661e-19 8.00767e-18 1.28117e-16 9.78048e-16 4.74607e-15 1.74122e-14 5.37089e-14 1.47257e-13 3.68721e-13 8.54201e-13 1.84235e-12 3.7108e-12 6.99346e-12 1.236e-11 2.05544e-11 3.23181e-11 4.83333e-11 6.92108e-11 9.55162e-11 4.79349e-22 1.24858e-19 7.6021e-18 1.22403e-16 9.38667e-16 4.57056e-15 1.6817e-14 5.20099e-14 1.42946e-13 3.58715e-13 8.32627e-13 1.79876e-12 3.62778e-12 6.84389e-12 1.21043e-11 2.0139e-11 3.16748e-11 4.73811e-11 6.78586e-11 9.36653e-11 4.48938e-22 1.18278e-19 7.2572e-18 1.17513e-16 9.04818e-16 4.41919e-15 1.63021e-14 5.05366e-14 1.39199e-13 3.49996e-13 8.13789e-13 1.76062e-12 3.55504e-12 6.71267e-12 1.18798e-11 1.97739e-11 3.11092e-11 4.65438e-11 6.66693e-11 9.20373e-11 4.23511e-22 1.12715e-19 6.96347e-18 1.13326e-16 8.75714e-16 4.28865e-15 1.58569e-14 4.92596e-14 1.35943e-13 3.42407e-13 7.9736e-13 1.72731e-12 3.49141e-12 6.59775e-12 1.1683e-11 1.94537e-11 3.06129e-11 4.58088e-11 6.56254e-11 9.06082e-11 4.01984e-22 1.07961e-19 6.71068e-18 1.09704e-16 8.50455e-16 4.17505e-15 1.54686e-14 4.81434e-14 1.33092e-13 3.35747e-13 7.8292e-13 1.69798e-12 3.43532e-12 6.49634e-12 1.15092e-11 1.91707e-11 3.01742e-11 4.51591e-11 6.47025e-11 8.93448e-11 3.83761e-22 1.03901e-19 6.49354e-18 1.06579e-16 8.2859e-16 4.07647e-15 1.51309e-14 4.71709e-14 1.30604e-13 3.29925e-13 7.70275e-13 1.67227e-12 3.38608e-12 6.40723e-12 1.13564e-11 1.89218e-11 2.97882e-11 4.45873e-11 6.38901e-11 8.82326e-11 3.68133e-22 1.00392e-19 6.30488e-18 1.03854e-16 8.09464e-16 3.99005e-15 1.48344e-14 4.63154e-14 1.28411e-13 3.24787e-13 7.59101e-13 1.64952e-12 3.34247e-12 6.32823e-12 1.12208e-11 1.87009e-11 2.94455e-11 4.40796e-11 6.31689e-11 8.72452e-11 3.54758e-22 9.73681e-20 6.14151e-18 1.01485e-16 7.928e-16 3.91461e-15 1.4575e-14 4.55661e-14 1.26487e-13 3.20273e-13 7.49273e-13 1.62948e-12 3.30403e-12 6.25856e-12 1.11012e-11 1.85059e-11 2.91429e-11 4.36313e-11 6.25319e-11 8.63731e-11 3.43175e-22 9.47334e-20 5.99856e-18 9.94061e-17 7.78139e-16 3.84812e-15 1.43461e-14 4.49037e-14 1.24785e-13 3.16273e-13 7.40552e-13 1.61169e-12 3.26986e-12 6.19658e-12 1.09947e-11 1.83322e-11 2.88734e-11 4.3232e-11 6.19646e-11 8.55965e-11 3.33136e-22 9.2437e-20 5.87349e-18 9.75818e-17 7.65248e-16 3.78956e-15 1.41443e-14 4.43188e-14 1.23279e-13 3.12733e-13 7.32826e-13 1.59591e-12 3.23953e-12 6.14153e-12 1.09001e-11 1.81779e-11 2.86339e-11 4.28771e-11 6.14603e-11 8.4906e-11 3.24385e-22 9.04255e-20 5.76355e-18 9.59741e-17 7.53866e-16 3.73779e-15 1.39655e-14 4.38004e-14 1.21944e-13 3.09588e-13 7.25956e-13 1.58187e-12 3.21252e-12 6.09248e-12 1.08158e-11 1.80403e-11 2.84203e-11 4.25605e-11 6.10105e-11 8.42903e-11 3.1681e-22 8.86768e-20 5.66768e-18 9.45689e-17 7.43901e-16 3.6924e-15 1.38087e-14 4.33449e-14 1.20769e-13 3.06819e-13 7.19902e-13 1.56948e-12 3.18869e-12 6.04917e-12 1.07413e-11 1.79187e-11 2.82315e-11 4.22808e-11 6.06131e-11 8.37462e-11 3.10237e-22 8.71532e-20 5.58393e-18 9.33387e-17 7.35164e-16 3.65255e-15 1.36709e-14 4.29443e-14 1.19735e-13 3.04379e-13 7.14563e-13 1.55855e-12 3.16763e-12 6.01089e-12 1.06754e-11 1.78112e-11 2.80646e-11 4.20334e-11 6.02616e-11 8.32651e-11 3.0445e-22 8.58072e-20 5.50976e-18 9.22472e-17 7.27401e-16 3.61712e-15 1.35482e-14 4.25873e-14 1.18812e-13 3.02202e-13 7.09795e-13 1.54878e-12 3.14881e-12 5.97666e-12 1.06165e-11 1.7715e-11 2.79152e-11 4.18121e-11 5.99471e-11 8.28345e-11 2.99346e-22 8.46164e-20 5.44399e-18 9.12778e-17 7.20498e-16 3.58557e-15 1.34388e-14 4.2269e-14 1.17989e-13 3.00257e-13 7.05534e-13 1.54005e-12 3.13197e-12 5.94602e-12 1.05637e-11 1.76289e-11 2.77815e-11 4.16139e-11 5.96655e-11 8.2449e-11 2.94847e-22 8.35638e-20 5.38574e-18 9.04179e-17 7.14368e-16 3.55754e-15 1.33416e-14 4.19857e-14 1.17256e-13 2.98524e-13 7.01733e-13 1.53225e-12 3.11694e-12 5.91865e-12 1.05166e-11 1.75519e-11 2.7662e-11 4.14367e-11 5.94139e-11 8.21046e-11 2.9088e-22 8.26332e-20 5.33415e-18 8.96552e-17 7.08925e-16 3.53263e-15 1.32552e-14 4.17337e-14 1.16603e-13 2.9698e-13 6.98345e-13 1.5253e-12 3.10352e-12 5.89423e-12 1.04745e-11 1.74832e-11 2.75552e-11 4.12786e-11 5.91892e-11 8.1797e-11 2.87373e-22 8.18089e-20 5.28838e-18 8.89777e-17 7.04086e-16 3.51046e-15 1.31782e-14 4.15091e-14 1.16022e-13 2.95603e-13 6.95321e-13 1.51909e-12 3.09153e-12 5.8724e-12 1.04369e-11 1.74218e-11 2.74598e-11 4.11372e-11 5.89884e-11 8.15222e-11 2.84271e-22 8.10781e-20 5.24775e-18 8.83756e-17 6.99782e-16 3.49073e-15 1.31096e-14 4.1309e-14 1.15503e-13 2.94374e-13 6.92622e-13 1.51354e-12 3.08083e-12 5.8529e-12 1.04033e-11 1.73669e-11 2.73746e-11 4.10109e-11 5.88089e-11 8.12765e-11 2.8152e-22 8.04289e-20 5.2116e-18 8.78394e-17 6.95947e-16 3.47314e-15 1.30485e-14 4.11303e-14 1.15039e-13 2.93276e-13 6.9021e-13 1.50859e-12 3.07125e-12 5.83544e-12 1.03732e-11 1.73177e-11 2.72983e-11 4.08978e-11 5.86483e-11 8.10566e-11 2.7908e-22 7.98521e-20 5.17945e-18 8.73621e-17 6.92529e-16 3.45746e-15 1.29939e-14 4.0971e-14 1.14626e-13 2.92295e-13 6.88054e-13 1.50416e-12 3.06269e-12 5.81983e-12 1.03463e-11 1.72738e-11 2.723e-11 4.07966e-11 5.85046e-11 8.086e-11 2.76913e-22 7.9339e-20 5.15082e-18 8.69367e-17 6.89482e-16 3.44347e-15 1.29453e-14 4.08286e-14 1.14256e-13 2.91419e-13 6.86126e-13 1.50019e-12 3.05502e-12 5.80587e-12 1.03223e-11 1.72344e-11 2.71689e-11 4.0706e-11 5.83759e-11 8.0684e-11 2.74983e-22 7.88816e-20 5.12527e-18 8.65567e-17 6.86759e-16 3.43096e-15 1.29017e-14 4.07013e-14 1.13926e-13 2.90634e-13 6.844e-13 1.49664e-12 3.04816e-12 5.79335e-12 1.03007e-11 1.71991e-11 2.71141e-11 4.06249e-11 5.82607e-11 8.05262e-11 2.73273e-22 7.84759e-20 5.1026e-18 8.62193e-17 6.84339e-16 3.41985e-15 1.2863e-14 4.0588e-14 1.13631e-13 2.89936e-13 6.82863e-13 1.49348e-12 3.04204e-12 5.78219e-12 1.02814e-11 1.71677e-11 2.70653e-11 4.05525e-11 5.81579e-11 8.03856e-11 2.71737e-22 7.81109e-20 5.08218e-18 8.59153e-17 6.82158e-16 3.40982e-15 1.28281e-14 4.04858e-14 1.13366e-13 2.89305e-13 6.81475e-13 1.49062e-12 3.03651e-12 5.77211e-12 1.0264e-11 1.71393e-11 2.70211e-11 4.04871e-11 5.8065e-11 8.02585e-11 2.70393e-22 7.77913e-20 5.06429e-18 8.56488e-17 6.80245e-16 3.40103e-15 1.27974e-14 4.03961e-14 1.13132e-13 2.88751e-13 6.80254e-13 1.48811e-12 3.03165e-12 5.76324e-12 1.02488e-11 1.71143e-11 2.69823e-11 4.04296e-11 5.79833e-11 8.01467e-11 2.69157e-22 7.74973e-20 5.04782e-18 8.54034e-17 6.78483e-16 3.39292e-15 1.27692e-14 4.03134e-14 1.12917e-13 2.8824e-13 6.79129e-13 1.48579e-12 3.02717e-12 5.75506e-12 1.02346e-11 1.70912e-11 2.69465e-11 4.03765e-11 5.7908e-11 8.00436e-11 2.68107e-22 7.72472e-20 5.0338e-18 8.51943e-17 6.76982e-16 3.38601e-15 1.27451e-14 4.02428e-14 1.12734e-13 2.87804e-13 6.78168e-13 1.48381e-12 3.02334e-12 5.74807e-12 1.02226e-11 1.70715e-11 2.69159e-11 4.03312e-11 5.78435e-11 7.99554e-11 2.67099e-22 7.70071e-20 5.02034e-18 8.49935e-17 6.75539e-16 3.37938e-15 1.2722e-14 4.0175e-14 1.12558e-13 2.87385e-13 6.77246e-13 1.48191e-12 3.01966e-12 5.74136e-12 1.0211e-11 1.70526e-11 2.68865e-11 4.02876e-11 5.77817e-11 7.98708e-11 2.66286e-22 7.68132e-20 5.00946e-18 8.48312e-17 6.74372e-16 3.37401e-15 1.27032e-14 4.01201e-14 1.12415e-13 2.87045e-13 6.76497e-13 1.48037e-12 3.01667e-12 5.7359e-12 1.02016e-11 1.70372e-11 2.68626e-11 4.02522e-11 5.77314e-11 7.9802e-11 2.65452e-22 7.66141e-20 4.99829e-18 8.46646e-17 6.73175e-16 3.3685e-15 1.2684e-14 4.00638e-14 1.12268e-13 2.86697e-13 6.7573e-13 1.47879e-12 3.01361e-12 5.73032e-12 1.0192e-11 1.70215e-11 2.68382e-11 4.0216e-11 5.768e-11 7.97317e-11 2.64835e-22 7.64668e-20 4.99002e-18 8.4541e-17 6.72286e-16 3.3644e-15 1.26697e-14 4.0022e-14 1.12159e-13 2.86438e-13 6.75158e-13 1.47761e-12 3.01133e-12 5.72615e-12 1.01848e-11 1.70097e-11 2.68199e-11 4.01889e-11 5.76415e-11 7.9679e-11 2.64129e-22 7.62982e-20 4.98055e-18 8.43997e-17 6.71271e-16 3.35973e-15 1.26534e-14 3.99742e-14 1.12035e-13 2.86143e-13 6.74508e-13 1.47627e-12 3.00874e-12 5.72142e-12 1.01766e-11 1.69964e-11 2.67992e-11 4.01582e-11 5.7598e-11 7.96194e-11 2.63665e-22 7.61874e-20 4.97433e-18 8.43067e-17 6.70602e-16 3.35665e-15 1.26427e-14 3.99426e-14 1.11953e-13 2.85947e-13 6.74075e-13 1.47538e-12 3.00701e-12 5.71826e-12 1.01712e-11 1.69875e-11 2.67853e-11 4.01377e-11 5.75688e-11 7.95796e-11 2.63043e-22 7.60388e-20 4.96598e-18 8.41821e-17 6.69706e-16 3.35253e-15 1.26283e-14 3.99005e-14 1.11843e-13 2.85687e-13 6.73503e-13 1.4742e-12 3.00473e-12 5.7141e-12 1.0164e-11 1.69757e-11 2.67671e-11 4.01107e-11 5.75305e-11 7.95271e-11 2.62659e-22 7.59471e-20 4.96083e-18 8.4105e-17 6.69152e-16 3.34997e-15 1.26194e-14 3.98744e-14 1.11775e-13 2.85525e-13 6.73144e-13 1.47346e-12 3.0033e-12 5.71148e-12 1.01595e-11 1.69684e-11 2.67556e-11 4.00937e-11 5.75064e-11 7.94941e-11 2.62289e-22 7.58584e-20 4.95584e-18 8.40305e-17 6.68616e-16 3.3475e-15 1.26107e-14 3.98491e-14 1.11709e-13 2.85368e-13 6.72799e-13 1.47275e-12 3.00192e-12 5.70897e-12 1.01551e-11 1.69613e-11 2.67446e-11 4.00774e-11 5.74832e-11 7.94624e-11 2.61955e-22 7.57785e-20 4.95135e-18 8.39635e-17 6.68133e-16 3.34528e-15 1.2603e-14 3.98263e-14 1.1165e-13 2.85227e-13 6.72489e-13 1.47211e-12 3.00068e-12 5.7067e-12 1.01512e-11 1.69549e-11 2.67347e-11 4.00627e-11 5.74623e-11 7.94338e-11 2.6162e-22 7.56985e-20 4.94686e-18 8.38963e-17 6.6765e-16 3.34305e-15 1.25952e-14 3.98036e-14 1.11591e-13 2.85087e-13 6.72179e-13 1.47147e-12 2.99944e-12 5.70445e-12 1.01473e-11 1.69485e-11 2.67248e-11 4.00481e-11 5.74415e-11 7.94054e-11 2.61394e-22 7.56444e-20 4.94381e-18 8.38508e-17 6.67322e-16 3.34154e-15 1.25899e-14 3.97881e-14 1.11551e-13 2.84991e-13 6.71967e-13 1.47103e-12 2.9986e-12 5.7029e-12 1.01447e-11 1.69442e-11 2.6718e-11 4.0038e-11 5.74273e-11 7.93859e-11 2.60219e-22 7.53631e-20 4.92801e-18 8.3615e-17 6.6563e-16 3.33376e-15 1.25629e-14 3.97089e-14 1.11345e-13 2.84504e-13 6.70899e-13 1.46884e-12 2.99436e-12 5.6952e-12 1.01314e-11 1.69225e-11 2.66844e-11 3.99882e-11 5.73566e-11 7.92892e-11 2.23354e-06 2.23892e-06 2.15914e-06 2.10873e-06 2.0749e-06 2.0461e-06 2.02044e-06 1.99797e-06 1.97839e-06 1.96115e-06 1.94577e-06 1.93188e-06 1.91922e-06 1.90759e-06 1.89685e-06 1.88686e-06 1.87755e-06 1.86882e-06 1.86061e-06 1.85287e-06 1.84556e-06 1.83862e-06 1.83202e-06 1.82574e-06 1.81975e-06 1.81402e-06 1.80854e-06 1.80328e-06 1.79822e-06 1.79337e-06 1.78869e-06 1.78418e-06 1.77983e-06 1.77563e-06 1.77157e-06 1.76763e-06 1.76382e-06 1.76013e-06 1.75655e-06 1.75307e-06 1.74969e-06 1.74641e-06 1.74321e-06 1.7401e-06 1.73707e-06 1.73412e-06 1.73124e-06 1.72843e-06 1.72569e-06 1.72302e-06 1.72041e-06 1.71786e-06 1.71536e-06 1.71292e-06 1.71054e-06 1.7082e-06 1.70592e-06 1.70368e-06 1.70149e-06 1.69934e-06 1.69723e-06 1.69517e-06 1.69314e-06 1.69115e-06 1.6892e-06 1.68729e-06 1.68541e-06 1.68356e-06 1.68174e-06 1.67996e-06 1.67821e-06 1.67648e-06 1.67478e-06 1.67311e-06 1.67147e-06 1.66982e-06 1.66828e-06 1.66648e-06 1.6654e-06 1.66297e-06 2.16731e-06 2.3063e-06 2.99343e-06 3.58433e-06 3.94314e-06 4.15996e-06 4.30938e-06 4.42152e-06 4.50762e-06 4.5738e-06 4.62468e-06 4.66393e-06 4.69432e-06 4.71794e-06 4.73631e-06 4.75059e-06 4.76163e-06 4.77007e-06 4.77643e-06 4.78108e-06 4.78433e-06 4.78643e-06 4.78758e-06 4.78792e-06 4.78758e-06 4.78668e-06 4.7853e-06 4.78352e-06 4.7814e-06 4.77899e-06 4.77634e-06 4.77348e-06 4.77044e-06 4.76727e-06 4.76397e-06 4.76057e-06 4.75709e-06 4.75354e-06 4.74993e-06 4.74629e-06 4.74261e-06 4.73891e-06 4.7352e-06 4.73148e-06 4.72775e-06 4.72403e-06 4.72032e-06 4.71662e-06 4.71293e-06 4.70926e-06 4.70561e-06 4.70198e-06 4.69838e-06 4.6948e-06 4.69124e-06 4.68772e-06 4.68422e-06 4.68075e-06 4.6773e-06 4.67389e-06 4.67051e-06 4.66715e-06 4.66383e-06 4.66054e-06 4.65728e-06 4.65404e-06 4.65084e-06 4.64767e-06 4.64453e-06 4.64143e-06 4.63835e-06 4.63531e-06 4.63229e-06 4.62932e-06 4.62635e-06 4.62351e-06 4.62047e-06 4.61796e-06 4.61506e-06 4.60994e-06 5.97597e-06 3.38926e-06 2.97376e-06 3.33161e-06 3.92878e-06 4.50449e-06 4.98642e-06 5.37938e-06 5.70105e-06 5.96611e-06 6.18588e-06 6.36931e-06 6.52354e-06 6.65417e-06 6.76564e-06 6.86141e-06 6.94422e-06 7.01626e-06 7.07925e-06 7.13459e-06 7.18342e-06 7.22665e-06 7.26506e-06 7.29929e-06 7.32985e-06 7.35722e-06 7.38177e-06 7.40383e-06 7.42367e-06 7.44154e-06 7.45766e-06 7.47221e-06 7.48534e-06 7.49719e-06 7.5079e-06 7.51758e-06 7.52632e-06 7.5342e-06 7.54131e-06 7.54772e-06 7.55348e-06 7.55866e-06 7.5633e-06 7.56745e-06 7.57114e-06 7.57442e-06 7.57732e-06 7.57987e-06 7.58209e-06 7.58402e-06 7.58568e-06 7.58709e-06 7.58825e-06 7.5892e-06 7.58995e-06 7.59051e-06 7.59089e-06 7.59112e-06 7.59119e-06 7.59112e-06 7.59092e-06 7.59059e-06 7.59015e-06 7.58961e-06 7.58895e-06 7.58821e-06 7.58738e-06 7.58648e-06 7.58549e-06 7.58444e-06 7.58333e-06 7.58216e-06 7.58093e-06 7.57967e-06 7.57831e-06 7.57702e-06 7.57547e-06 7.57401e-06 7.57398e-06 7.56702e-06 1.5199e-05 8.24689e-06 5.59857e-06 4.52928e-06 4.35491e-06 4.65883e-06 5.15614e-06 5.68931e-06 6.19201e-06 6.64412e-06 7.04356e-06 7.39422e-06 7.70172e-06 7.97179e-06 8.2097e-06 8.42005e-06 8.60676e-06 8.77318e-06 8.92208e-06 9.05582e-06 9.17635e-06 9.28536e-06 9.38424e-06 9.47419e-06 9.55624e-06 9.63127e-06 9.70003e-06 9.7632e-06 9.82133e-06 9.87494e-06 9.92446e-06 9.97029e-06 1.00127e-05 1.00521e-05 1.00888e-05 1.01229e-05 1.01546e-05 1.01842e-05 1.02119e-05 1.02378e-05 1.0262e-05 1.02846e-05 1.03059e-05 1.03258e-05 1.03445e-05 1.03621e-05 1.03787e-05 1.03942e-05 1.04089e-05 1.04227e-05 1.04357e-05 1.0448e-05 1.04596e-05 1.04705e-05 1.04808e-05 1.04906e-05 1.04998e-05 1.05084e-05 1.05167e-05 1.05244e-05 1.05317e-05 1.05387e-05 1.05452e-05 1.05514e-05 1.05572e-05 1.05627e-05 1.05679e-05 1.05727e-05 1.05774e-05 1.05817e-05 1.05858e-05 1.05897e-05 1.05933e-05 1.05968e-05 1.06e-05 1.06031e-05 1.06058e-05 1.06084e-05 1.06126e-05 1.0609e-05 2.75866e-05 1.62405e-05 1.12322e-05 8.37173e-06 6.73762e-06 5.98163e-06 5.83116e-06 6.04549e-06 6.44452e-06 6.91534e-06 7.39708e-06 7.86074e-06 8.29418e-06 8.69351e-06 9.05878e-06 9.39181e-06 9.69514e-06 9.97154e-06 1.02237e-05 1.04541e-05 1.06649e-05 1.08584e-05 1.10361e-05 1.11998e-05 1.13509e-05 1.14905e-05 1.16199e-05 1.17399e-05 1.18515e-05 1.19554e-05 1.20523e-05 1.21428e-05 1.22274e-05 1.23067e-05 1.23811e-05 1.2451e-05 1.25167e-05 1.25785e-05 1.26368e-05 1.26918e-05 1.27438e-05 1.27929e-05 1.28394e-05 1.28835e-05 1.29253e-05 1.29649e-05 1.30026e-05 1.30384e-05 1.30725e-05 1.31049e-05 1.31358e-05 1.31653e-05 1.31934e-05 1.32203e-05 1.32459e-05 1.32704e-05 1.32938e-05 1.33163e-05 1.33377e-05 1.33583e-05 1.3378e-05 1.33968e-05 1.34149e-05 1.34322e-05 1.34488e-05 1.34647e-05 1.348e-05 1.34947e-05 1.35088e-05 1.35224e-05 1.35354e-05 1.35479e-05 1.35599e-05 1.35715e-05 1.35826e-05 1.35934e-05 1.36034e-05 1.36134e-05 1.36246e-05 1.36277e-05 4.02869e-05 2.57383e-05 1.86993e-05 1.43505e-05 1.13754e-05 9.35212e-06 8.09882e-06 7.46446e-06 7.2873e-06 7.41408e-06 7.7217e-06 8.12392e-06 8.56637e-06 9.0173e-06 9.45915e-06 9.88275e-06 1.02837e-05 1.06605e-05 1.10129e-05 1.13417e-05 1.16482e-05 1.19337e-05 1.21998e-05 1.24477e-05 1.26791e-05 1.28952e-05 1.30971e-05 1.32861e-05 1.34632e-05 1.36294e-05 1.37854e-05 1.39322e-05 1.40703e-05 1.42005e-05 1.43234e-05 1.44395e-05 1.45493e-05 1.46532e-05 1.47516e-05 1.48451e-05 1.49338e-05 1.50181e-05 1.50983e-05 1.51746e-05 1.52474e-05 1.53168e-05 1.5383e-05 1.54463e-05 1.55068e-05 1.55647e-05 1.56202e-05 1.56733e-05 1.57242e-05 1.57731e-05 1.582e-05 1.5865e-05 1.59083e-05 1.59499e-05 1.59899e-05 1.60284e-05 1.60655e-05 1.61012e-05 1.61356e-05 1.61688e-05 1.62007e-05 1.62315e-05 1.62613e-05 1.629e-05 1.63177e-05 1.63445e-05 1.63703e-05 1.63954e-05 1.64195e-05 1.64429e-05 1.64655e-05 1.64875e-05 1.65084e-05 1.6529e-05 1.65504e-05 1.65636e-05 5.14166e-05 3.5388e-05 2.68261e-05 2.13346e-05 1.73913e-05 1.44141e-05 1.21719e-05 1.05617e-05 9.50776e-06 8.92207e-06 8.70246e-06 8.74724e-06 8.96875e-06 9.29966e-06 9.69234e-06 1.01151e-05 1.05477e-05 1.09774e-05 1.13968e-05 1.18011e-05 1.21882e-05 1.25568e-05 1.29066e-05 1.32379e-05 1.35512e-05 1.38474e-05 1.41272e-05 1.43915e-05 1.46413e-05 1.48775e-05 1.51009e-05 1.53124e-05 1.55128e-05 1.57027e-05 1.58828e-05 1.60539e-05 1.62164e-05 1.6371e-05 1.65181e-05 1.66583e-05 1.67919e-05 1.69194e-05 1.70411e-05 1.71575e-05 1.72687e-05 1.73752e-05 1.74772e-05 1.7575e-05 1.76688e-05 1.77588e-05 1.78453e-05 1.79284e-05 1.80083e-05 1.80852e-05 1.81593e-05 1.82306e-05 1.82994e-05 1.83657e-05 1.84296e-05 1.84914e-05 1.8551e-05 1.86085e-05 1.86642e-05 1.8718e-05 1.87699e-05 1.88202e-05 1.88689e-05 1.8916e-05 1.89616e-05 1.90058e-05 1.90487e-05 1.90902e-05 1.91304e-05 1.91695e-05 1.92074e-05 1.92443e-05 1.92797e-05 1.93145e-05 1.93495e-05 1.93762e-05 6.00568e-05 4.42325e-05 3.47966e-05 2.84929e-05 2.38697e-05 2.02662e-05 1.73723e-05 1.50447e-05 1.32182e-05 1.18546e-05 1.0914e-05 1.03427e-05 1.00751e-05 1.00425e-05 1.01815e-05 1.04393e-05 1.07747e-05 1.11579e-05 1.15675e-05 1.19887e-05 1.24117e-05 1.28297e-05 1.32384e-05 1.36348e-05 1.40174e-05 1.43851e-05 1.47376e-05 1.50749e-05 1.53972e-05 1.57049e-05 1.59985e-05 1.62785e-05 1.65457e-05 1.68006e-05 1.70439e-05 1.72761e-05 1.74978e-05 1.77097e-05 1.79123e-05 1.8106e-05 1.82914e-05 1.8469e-05 1.86391e-05 1.88023e-05 1.89588e-05 1.9109e-05 1.92534e-05 1.93922e-05 1.95256e-05 1.96541e-05 1.97778e-05 1.98969e-05 2.00118e-05 2.01227e-05 2.02297e-05 2.03329e-05 2.04327e-05 2.05292e-05 2.06224e-05 2.07126e-05 2.07998e-05 2.08843e-05 2.09661e-05 2.10453e-05 2.11221e-05 2.11965e-05 2.12686e-05 2.13386e-05 2.14065e-05 2.14724e-05 2.15364e-05 2.15986e-05 2.1659e-05 2.17178e-05 2.17748e-05 2.18305e-05 2.18841e-05 2.19369e-05 2.1989e-05 2.20329e-05 6.59311e-05 5.16343e-05 4.20356e-05 3.52827e-05 3.02177e-05 2.62124e-05 2.29253e-05 2.01718e-05 1.78556e-05 1.59304e-05 1.43739e-05 1.317e-05 1.22972e-05 1.17233e-05 1.14067e-05 1.13009e-05 1.13601e-05 1.15432e-05 1.18156e-05 1.21498e-05 1.25248e-05 1.2925e-05 1.33387e-05 1.37576e-05 1.41757e-05 1.45888e-05 1.49937e-05 1.53885e-05 1.57719e-05 1.61429e-05 1.65012e-05 1.68467e-05 1.71793e-05 1.74992e-05 1.78068e-05 1.81023e-05 1.83863e-05 1.86591e-05 1.89213e-05 1.91732e-05 1.94153e-05 1.9648e-05 1.98719e-05 2.00873e-05 2.02947e-05 2.04943e-05 2.06867e-05 2.08721e-05 2.1051e-05 2.12235e-05 2.13901e-05 2.15509e-05 2.17064e-05 2.18567e-05 2.2002e-05 2.21426e-05 2.22787e-05 2.24105e-05 2.25382e-05 2.26619e-05 2.27818e-05 2.28981e-05 2.30109e-05 2.31204e-05 2.32266e-05 2.33298e-05 2.343e-05 2.35273e-05 2.36219e-05 2.37139e-05 2.38033e-05 2.38903e-05 2.3975e-05 2.40575e-05 2.41376e-05 2.4216e-05 2.42917e-05 2.43663e-05 2.44393e-05 2.45041e-05 6.91295e-05 5.7208e-05 4.81259e-05 4.13193e-05 3.60535e-05 3.18245e-05 2.83153e-05 2.5331e-05 2.27539e-05 2.05162e-05 1.85819e-05 1.69349e-05 1.55678e-05 1.4475e-05 1.36458e-05 1.3062e-05 1.2698e-05 1.25234e-05 1.25055e-05 1.2613e-05 1.28176e-05 1.3095e-05 1.34255e-05 1.37932e-05 1.41858e-05 1.45937e-05 1.50098e-05 1.54284e-05 1.58455e-05 1.62579e-05 1.66635e-05 1.70606e-05 1.7448e-05 1.78251e-05 1.81913e-05 1.85464e-05 1.88903e-05 1.92232e-05 1.9545e-05 1.9856e-05 2.01566e-05 2.0447e-05 2.07276e-05 2.09986e-05 2.12605e-05 2.15136e-05 2.17582e-05 2.19947e-05 2.22235e-05 2.24448e-05 2.2659e-05 2.28664e-05 2.30672e-05 2.32618e-05 2.34504e-05 2.36332e-05 2.38106e-05 2.39826e-05 2.41495e-05 2.43116e-05 2.4469e-05 2.46218e-05 2.47704e-05 2.49147e-05 2.5055e-05 2.51914e-05 2.53241e-05 2.54533e-05 2.55789e-05 2.57013e-05 2.58204e-05 2.59365e-05 2.60495e-05 2.61598e-05 2.62672e-05 2.63721e-05 2.64739e-05 2.65741e-05 2.66718e-05 2.67613e-05 6.99279e-05 6.07705e-05 5.27713e-05 4.631e-05 4.11012e-05 3.68234e-05 3.3229e-05 3.01441e-05 2.74509e-05 2.50715e-05 2.29567e-05 2.1078e-05 1.94211e-05 1.79808e-05 1.67565e-05 1.57474e-05 1.49497e-05 1.43547e-05 1.39476e-05 1.37094e-05 1.36179e-05 1.365e-05 1.37834e-05 1.39977e-05 1.42749e-05 1.46e-05 1.49605e-05 1.53461e-05 1.57488e-05 1.61622e-05 1.6581e-05 1.70014e-05 1.74203e-05 1.78352e-05 1.82443e-05 1.86462e-05 1.904e-05 1.9425e-05 1.98005e-05 2.01665e-05 2.05226e-05 2.08689e-05 2.12054e-05 2.15322e-05 2.18494e-05 2.21574e-05 2.24562e-05 2.27463e-05 2.30278e-05 2.3301e-05 2.35661e-05 2.38236e-05 2.40736e-05 2.43164e-05 2.45523e-05 2.47814e-05 2.50042e-05 2.52207e-05 2.54312e-05 2.5636e-05 2.58351e-05 2.60289e-05 2.62175e-05 2.6401e-05 2.65797e-05 2.67538e-05 2.69233e-05 2.70884e-05 2.72494e-05 2.74063e-05 2.75593e-05 2.77085e-05 2.78541e-05 2.79962e-05 2.81348e-05 2.82703e-05 2.84021e-05 2.85317e-05 2.86581e-05 2.8776e-05 6.86807e-05 6.23005e-05 5.57829e-05 5.00301e-05 4.51427e-05 4.10011e-05 3.74558e-05 3.43783e-05 3.16693e-05 2.92557e-05 2.70851e-05 2.51217e-05 2.33428e-05 2.17353e-05 2.02936e-05 1.90172e-05 1.7908e-05 1.69681e-05 1.61979e-05 1.55945e-05 1.51508e-05 1.48559e-05 1.46958e-05 1.46545e-05 1.47153e-05 1.48618e-05 1.50786e-05 1.53521e-05 1.56702e-05 1.60227e-05 1.64012e-05 1.67983e-05 1.72085e-05 1.76268e-05 1.80494e-05 1.84733e-05 1.88959e-05 1.93153e-05 1.973e-05 2.01387e-05 2.05405e-05 2.09347e-05 2.13209e-05 2.16986e-05 2.20677e-05 2.24281e-05 2.27798e-05 2.31226e-05 2.34569e-05 2.37826e-05 2.41e-05 2.44091e-05 2.47103e-05 2.50036e-05 2.52894e-05 2.55678e-05 2.5839e-05 2.61032e-05 2.63607e-05 2.66116e-05 2.68562e-05 2.70946e-05 2.7327e-05 2.75536e-05 2.77746e-05 2.79901e-05 2.82004e-05 2.84056e-05 2.86058e-05 2.88012e-05 2.8992e-05 2.91784e-05 2.93604e-05 2.95382e-05 2.97119e-05 2.98819e-05 3.00475e-05 3.02104e-05 3.03692e-05 3.05194e-05 6.57623e-05 6.19045e-05 5.70751e-05 5.23201e-05 4.80028e-05 4.41875e-05 4.08329e-05 3.78705e-05 3.52334e-05 3.28649e-05 3.07193e-05 2.87619e-05 2.69669e-05 2.53166e-05 2.37993e-05 2.2409e-05 2.11438e-05 2.00049e-05 1.89952e-05 1.81183e-05 1.73766e-05 1.67709e-05 1.62992e-05 1.59565e-05 1.57349e-05 1.56245e-05 1.56135e-05 1.56899e-05 1.58412e-05 1.60556e-05 1.63224e-05 1.66319e-05 1.69754e-05 1.73457e-05 1.77364e-05 1.81422e-05 1.85587e-05 1.89821e-05 1.94094e-05 1.98381e-05 2.0266e-05 2.06915e-05 2.11132e-05 2.153e-05 2.19411e-05 2.23458e-05 2.27435e-05 2.31339e-05 2.35168e-05 2.3892e-05 2.42593e-05 2.46188e-05 2.49704e-05 2.53142e-05 2.56503e-05 2.59788e-05 2.62998e-05 2.66134e-05 2.69198e-05 2.72191e-05 2.75116e-05 2.77972e-05 2.80763e-05 2.8349e-05 2.86154e-05 2.88756e-05 2.913e-05 2.93786e-05 2.96215e-05 2.9859e-05 3.00912e-05 3.03183e-05 3.05403e-05 3.07576e-05 3.097e-05 3.11782e-05 3.13813e-05 3.15811e-05 3.17761e-05 3.19622e-05 6.15326e-05 5.97836e-05 5.66626e-05 5.30911e-05 4.95517e-05 4.62435e-05 4.32241e-05 4.04898e-05 3.80139e-05 3.57637e-05 3.37078e-05 3.18191e-05 3.00748e-05 2.84574e-05 2.69532e-05 2.55528e-05 2.42501e-05 2.30421e-05 2.19285e-05 2.0911e-05 1.99927e-05 1.91774e-05 1.84688e-05 1.78694e-05 1.73804e-05 1.70008e-05 1.67274e-05 1.65548e-05 1.6476e-05 1.64827e-05 1.65659e-05 1.67162e-05 1.69244e-05 1.7182e-05 1.74808e-05 1.78138e-05 1.81744e-05 1.85571e-05 1.89571e-05 1.937e-05 1.97925e-05 2.02213e-05 2.06541e-05 2.10885e-05 2.15229e-05 2.19556e-05 2.23855e-05 2.28116e-05 2.3233e-05 2.3649e-05 2.40592e-05 2.44631e-05 2.48604e-05 2.52509e-05 2.56344e-05 2.60109e-05 2.63803e-05 2.67424e-05 2.70975e-05 2.74455e-05 2.77864e-05 2.81204e-05 2.84475e-05 2.87678e-05 2.90815e-05 2.93886e-05 2.96893e-05 2.99838e-05 3.02721e-05 3.05545e-05 3.08309e-05 3.11017e-05 3.13669e-05 3.16267e-05 3.18812e-05 3.21307e-05 3.23747e-05 3.26148e-05 3.28493e-05 3.30748e-05 5.6319e-05 5.61988e-05 5.46505e-05 5.23313e-05 4.97132e-05 4.70648e-05 4.45174e-05 4.21256e-05 3.99039e-05 3.78478e-05 3.59445e-05 3.4179e-05 3.25362e-05 3.10024e-05 2.95662e-05 2.82181e-05 2.69506e-05 2.57586e-05 2.46387e-05 2.35894e-05 2.2611e-05 2.17051e-05 2.08747e-05 2.01231e-05 1.94541e-05 1.88714e-05 1.83774e-05 1.79739e-05 1.76606e-05 1.74359e-05 1.72964e-05 1.72375e-05 1.72533e-05 1.73371e-05 1.7482e-05 1.76808e-05 1.79266e-05 1.82128e-05 1.85332e-05 1.88823e-05 1.92551e-05 1.96472e-05 2.00546e-05 2.04739e-05 2.09021e-05 2.13367e-05 2.17754e-05 2.22163e-05 2.26579e-05 2.30988e-05 2.35378e-05 2.39739e-05 2.44064e-05 2.48345e-05 2.52577e-05 2.56757e-05 2.60879e-05 2.64942e-05 2.68942e-05 2.7288e-05 2.76752e-05 2.8056e-05 2.84301e-05 2.87976e-05 2.91585e-05 2.95129e-05 2.98607e-05 3.02021e-05 3.05372e-05 3.08659e-05 3.11885e-05 3.1505e-05 3.18155e-05 3.21202e-05 3.24191e-05 3.27126e-05 3.30002e-05 3.32833e-05 3.35603e-05 3.38283e-05 5.04049e-05 5.14376e-05 5.12164e-05 5.01042e-05 4.84719e-05 4.65907e-05 4.46303e-05 4.26874e-05 4.08126e-05 3.90289e-05 3.73438e-05 3.57568e-05 3.4263e-05 3.28558e-05 3.15283e-05 3.02738e-05 2.90863e-05 2.79607e-05 2.6893e-05 2.58803e-05 2.49208e-05 2.40136e-05 2.31593e-05 2.23591e-05 2.16153e-05 2.09309e-05 2.03094e-05 1.97542e-05 1.92687e-05 1.88555e-05 1.85166e-05 1.82527e-05 1.80633e-05 1.79465e-05 1.78995e-05 1.79184e-05 1.79984e-05 1.81345e-05 1.8321e-05 1.85527e-05 1.88239e-05 1.91297e-05 1.94651e-05 1.98257e-05 2.02075e-05 2.06069e-05 2.10205e-05 2.14455e-05 2.18793e-05 2.23196e-05 2.27646e-05 2.32126e-05 2.36619e-05 2.41115e-05 2.456e-05 2.50067e-05 2.54507e-05 2.58913e-05 2.63279e-05 2.67601e-05 2.71875e-05 2.76097e-05 2.80264e-05 2.84375e-05 2.88427e-05 2.9242e-05 2.96352e-05 3.00223e-05 3.04033e-05 3.07781e-05 3.11468e-05 3.15095e-05 3.1866e-05 3.22166e-05 3.25613e-05 3.29003e-05 3.32331e-05 3.35612e-05 3.38828e-05 3.41954e-05 4.40309e-05 4.57859e-05 4.65853e-05 4.65395e-05 4.58745e-05 4.48104e-05 4.35169e-05 4.21108e-05 4.06675e-05 3.92326e-05 3.78326e-05 3.64816e-05 3.51862e-05 3.39484e-05 3.27673e-05 3.1641e-05 3.05665e-05 2.9541e-05 2.85616e-05 2.76256e-05 2.67311e-05 2.58763e-05 2.50604e-05 2.4283e-05 2.35445e-05 2.28458e-05 2.21887e-05 2.15756e-05 2.10091e-05 2.04923e-05 2.00286e-05 1.96209e-05 1.9272e-05 1.89841e-05 1.87584e-05 1.85954e-05 1.84944e-05 1.84541e-05 1.84721e-05 1.85452e-05 1.86698e-05 1.88418e-05 1.9057e-05 1.93112e-05 1.96e-05 1.99192e-05 2.02651e-05 2.0634e-05 2.10224e-05 2.14274e-05 2.18462e-05 2.22762e-05 2.27153e-05 2.31613e-05 2.36126e-05 2.40676e-05 2.45248e-05 2.49831e-05 2.54414e-05 2.58987e-05 2.63542e-05 2.68073e-05 2.72573e-05 2.77037e-05 2.81461e-05 2.8584e-05 2.90173e-05 2.94456e-05 2.98687e-05 3.02865e-05 3.06988e-05 3.11056e-05 3.15067e-05 3.19022e-05 3.22919e-05 3.26761e-05 3.30543e-05 3.34277e-05 3.37946e-05 3.41529e-05 3.74049e-05 3.95164e-05 4.10081e-05 4.18179e-05 4.20247e-05 4.17641e-05 4.11723e-05 4.03621e-05 3.94181e-05 3.84e-05 3.7349e-05 3.62919e-05 3.52461e-05 3.42224e-05 3.3227e-05 3.22634e-05 3.1333e-05 3.04361e-05 2.95721e-05 2.87402e-05 2.79394e-05 2.71686e-05 2.64269e-05 2.57135e-05 2.50281e-05 2.43705e-05 2.37411e-05 2.31405e-05 2.25701e-05 2.20315e-05 2.15267e-05 2.10582e-05 2.06287e-05 2.02412e-05 1.98983e-05 1.96028e-05 1.9357e-05 1.91625e-05 1.90204e-05 1.89312e-05 1.88945e-05 1.89091e-05 1.89732e-05 1.90845e-05 1.92402e-05 1.94372e-05 1.96722e-05 1.99416e-05 2.02422e-05 2.05705e-05 2.09235e-05 2.12979e-05 2.16911e-05 2.21003e-05 2.25231e-05 2.29573e-05 2.3401e-05 2.38522e-05 2.43093e-05 2.47709e-05 2.52356e-05 2.57022e-05 2.61698e-05 2.66373e-05 2.7104e-05 2.75692e-05 2.80322e-05 2.84925e-05 2.89496e-05 2.94031e-05 2.98527e-05 3.0298e-05 3.07389e-05 3.11752e-05 3.16065e-05 3.20331e-05 3.24543e-05 3.28711e-05 3.32819e-05 3.36851e-05 3.07246e-05 3.28939e-05 3.47551e-05 3.61621e-05 3.7077e-05 3.75417e-05 3.76348e-05 3.7442e-05 3.704e-05 3.64914e-05 3.58445e-05 3.51352e-05 3.43894e-05 3.36258e-05 3.28574e-05 3.20933e-05 3.13396e-05 3.06003e-05 2.98781e-05 2.91744e-05 2.84901e-05 2.78257e-05 2.71811e-05 2.65564e-05 2.59514e-05 2.53659e-05 2.47999e-05 2.42536e-05 2.37272e-05 2.32214e-05 2.27369e-05 2.22748e-05 2.18368e-05 2.14244e-05 2.10399e-05 2.06855e-05 2.03637e-05 2.00771e-05 1.98281e-05 1.96189e-05 1.94516e-05 1.93277e-05 1.92483e-05 1.92138e-05 1.9224e-05 1.92783e-05 1.93755e-05 1.95138e-05 1.96911e-05 1.99051e-05 2.01531e-05 2.04325e-05 2.07405e-05 2.10744e-05 2.14314e-05 2.18091e-05 2.2205e-05 2.26167e-05 2.30422e-05 2.34794e-05 2.39265e-05 2.43818e-05 2.48438e-05 2.53111e-05 2.57824e-05 2.62566e-05 2.67327e-05 2.72097e-05 2.76869e-05 2.81635e-05 2.86388e-05 2.91124e-05 2.95838e-05 3.00524e-05 3.05179e-05 3.09801e-05 3.14384e-05 3.18935e-05 3.23439e-05 3.27879e-05 2.41946e-05 2.61926e-05 2.81261e-05 2.98438e-05 3.12443e-05 3.22893e-05 3.29909e-05 3.33902e-05 3.3539e-05 3.34891e-05 3.32866e-05 3.297e-05 3.25701e-05 3.2111e-05 3.16113e-05 3.1085e-05 3.05428e-05 2.99926e-05 2.94403e-05 2.88903e-05 2.83456e-05 2.78086e-05 2.7281e-05 2.67638e-05 2.6258e-05 2.57641e-05 2.52825e-05 2.48135e-05 2.43575e-05 2.39146e-05 2.34854e-05 2.30703e-05 2.26699e-05 2.22849e-05 2.19165e-05 2.15657e-05 2.12342e-05 2.09235e-05 2.06357e-05 2.03726e-05 2.01367e-05 1.993e-05 1.97547e-05 1.9613e-05 1.95064e-05 1.94366e-05 1.94046e-05 1.9411e-05 1.94559e-05 1.95391e-05 1.96597e-05 1.98167e-05 2.00086e-05 2.02335e-05 2.04895e-05 2.07745e-05 2.10862e-05 2.14223e-05 2.17808e-05 2.21593e-05 2.25557e-05 2.2968e-05 2.33943e-05 2.38328e-05 2.42818e-05 2.47397e-05 2.52052e-05 2.56768e-05 2.61535e-05 2.6634e-05 2.71174e-05 2.76028e-05 2.80895e-05 2.85765e-05 2.90634e-05 2.95497e-05 3.00345e-05 3.05181e-05 3.09992e-05 3.14765e-05 1.8032e-05 1.97046e-05 2.14636e-05 2.32049e-05 2.48217e-05 2.62335e-05 2.73968e-05 2.83017e-05 2.8962e-05 2.94049e-05 2.96628e-05 2.9768e-05 2.97501e-05 2.96347e-05 2.94431e-05 2.91929e-05 2.88984e-05 2.85708e-05 2.82193e-05 2.78509e-05 2.74713e-05 2.70849e-05 2.66952e-05 2.63048e-05 2.5916e-05 2.55303e-05 2.51491e-05 2.47735e-05 2.44042e-05 2.4042e-05 2.36873e-05 2.33408e-05 2.30028e-05 2.2674e-05 2.23547e-05 2.20457e-05 2.17476e-05 2.14613e-05 2.11878e-05 2.09282e-05 2.06839e-05 2.04564e-05 2.02474e-05 2.00586e-05 1.98921e-05 1.97498e-05 1.96335e-05 1.95451e-05 1.94863e-05 1.94586e-05 1.94629e-05 1.95002e-05 1.95708e-05 1.96748e-05 1.98118e-05 1.99813e-05 2.01821e-05 2.04131e-05 2.06728e-05 2.09595e-05 2.12715e-05 2.16069e-05 2.19638e-05 2.23405e-05 2.2735e-05 2.31456e-05 2.35705e-05 2.40082e-05 2.44571e-05 2.49158e-05 2.53828e-05 2.58571e-05 2.63374e-05 2.68227e-05 2.7312e-05 2.78045e-05 2.82993e-05 2.87961e-05 2.92938e-05 2.97911e-05 1.24558e-05 1.37303e-05 1.51477e-05 1.66656e-05 1.82169e-05 1.97261e-05 2.11266e-05 2.23708e-05 2.34328e-05 2.43061e-05 2.49981e-05 2.55243e-05 2.59044e-05 2.6159e-05 2.63078e-05 2.63686e-05 2.63572e-05 2.62869e-05 2.61692e-05 2.60135e-05 2.58276e-05 2.56182e-05 2.53905e-05 2.5149e-05 2.48972e-05 2.46381e-05 2.43742e-05 2.41075e-05 2.38396e-05 2.3572e-05 2.33057e-05 2.30417e-05 2.27809e-05 2.25239e-05 2.22714e-05 2.2024e-05 2.17822e-05 2.15466e-05 2.13178e-05 2.10963e-05 2.0883e-05 2.06785e-05 2.04838e-05 2.03e-05 2.01282e-05 1.99698e-05 1.98261e-05 1.96987e-05 1.95893e-05 1.94997e-05 1.94314e-05 1.93862e-05 1.93656e-05 1.9371e-05 1.94037e-05 1.94645e-05 1.95542e-05 1.9673e-05 1.9821e-05 1.9998e-05 2.02033e-05 2.04363e-05 2.06959e-05 2.09808e-05 2.12897e-05 2.16212e-05 2.19737e-05 2.23456e-05 2.27355e-05 2.31417e-05 2.35628e-05 2.39972e-05 2.44436e-05 2.49007e-05 2.53673e-05 2.58421e-05 2.63242e-05 2.68128e-05 2.73066e-05 2.7805e-05 7.70285e-06 8.57386e-06 9.57599e-06 1.07102e-05 1.19583e-05 1.32837e-05 1.46376e-05 1.59678e-05 1.72274e-05 1.83812e-05 1.94071e-05 2.02957e-05 2.10471e-05 2.16682e-05 2.21695e-05 2.25637e-05 2.28638e-05 2.30825e-05 2.32314e-05 2.3321e-05 2.33606e-05 2.33582e-05 2.33208e-05 2.32543e-05 2.31638e-05 2.30536e-05 2.29274e-05 2.27883e-05 2.2639e-05 2.24817e-05 2.23183e-05 2.21504e-05 2.19796e-05 2.18069e-05 2.16334e-05 2.14601e-05 2.12877e-05 2.1117e-05 2.09485e-05 2.0783e-05 2.06209e-05 2.04629e-05 2.03095e-05 2.01613e-05 2.0019e-05 1.98833e-05 1.9755e-05 1.9635e-05 1.95242e-05 1.94239e-05 1.93351e-05 1.92592e-05 1.91977e-05 1.9152e-05 1.91236e-05 1.9114e-05 1.91246e-05 1.91569e-05 1.9212e-05 1.9291e-05 1.93947e-05 1.95238e-05 1.96786e-05 1.98592e-05 2.00654e-05 2.02968e-05 2.05528e-05 2.08327e-05 2.11353e-05 2.14598e-05 2.18047e-05 2.2169e-05 2.25513e-05 2.29502e-05 2.33646e-05 2.37931e-05 2.42345e-05 2.46879e-05 2.51519e-05 2.56261e-05 4.07445e-06 4.58058e-06 5.17526e-06 5.87339e-06 6.6851e-06 7.61145e-06 8.64189e-06 9.75323e-06 1.09124e-05 1.20817e-05 1.32248e-05 1.43113e-05 1.53185e-05 1.62322e-05 1.70456e-05 1.77579e-05 1.83725e-05 1.88955e-05 1.93345e-05 1.96978e-05 1.99938e-05 2.02303e-05 2.04147e-05 2.0554e-05 2.0654e-05 2.07203e-05 2.07576e-05 2.07701e-05 2.07615e-05 2.07349e-05 2.06932e-05 2.06388e-05 2.05738e-05 2.05001e-05 2.04192e-05 2.03327e-05 2.02417e-05 2.01474e-05 2.00507e-05 1.99525e-05 1.98536e-05 1.97547e-05 1.96565e-05 1.95595e-05 1.94644e-05 1.93716e-05 1.92819e-05 1.91956e-05 1.91134e-05 1.9036e-05 1.8964e-05 1.88982e-05 1.88394e-05 1.87885e-05 1.87465e-05 1.87145e-05 1.86937e-05 1.86854e-05 1.86908e-05 1.87112e-05 1.8748e-05 1.88024e-05 1.88758e-05 1.89691e-05 1.90834e-05 1.92194e-05 1.93778e-05 1.95589e-05 1.97629e-05 1.99898e-05 2.02394e-05 2.05112e-05 2.08046e-05 2.1119e-05 2.14534e-05 2.1807e-05 2.21787e-05 2.25678e-05 2.29727e-05 2.3394e-05 1.81942e-06 2.04846e-06 2.32045e-06 2.64615e-06 3.03805e-06 3.50923e-06 4.07186e-06 4.7339e-06 5.49579e-06 6.34874e-06 7.27485e-06 8.24952e-06 9.24503e-06 1.02343e-05 1.11938e-05 1.21052e-05 1.29553e-05 1.37364e-05 1.44445e-05 1.50793e-05 1.56427e-05 1.61384e-05 1.65708e-05 1.69453e-05 1.72672e-05 1.75416e-05 1.77737e-05 1.7968e-05 1.8129e-05 1.82605e-05 1.83661e-05 1.8449e-05 1.8512e-05 1.85578e-05 1.85885e-05 1.86062e-05 1.86127e-05 1.86098e-05 1.85987e-05 1.85808e-05 1.85572e-05 1.85291e-05 1.84973e-05 1.84626e-05 1.84259e-05 1.83879e-05 1.83492e-05 1.83103e-05 1.8272e-05 1.82348e-05 1.81991e-05 1.81655e-05 1.81346e-05 1.81069e-05 1.80831e-05 1.80636e-05 1.80493e-05 1.80409e-05 1.80391e-05 1.80449e-05 1.80593e-05 1.80832e-05 1.81177e-05 1.8164e-05 1.82233e-05 1.82966e-05 1.83853e-05 1.84903e-05 1.86126e-05 1.87533e-05 1.89131e-05 1.90925e-05 1.92922e-05 1.95123e-05 1.97531e-05 2.00144e-05 2.0296e-05 2.0598e-05 2.09191e-05 2.12606e-05 7.50223e-07 8.34013e-07 9.31568e-07 1.04638e-06 1.18328e-06 1.34848e-06 1.5503e-06 1.79897e-06 2.10594e-06 2.48263e-06 2.93853e-06 3.4789e-06 4.10295e-06 4.80297e-06 5.56499e-06 6.37057e-06 7.1993e-06 8.03129e-06 8.84897e-06 9.63818e-06 1.03884e-05 1.10926e-05 1.17466e-05 1.23486e-05 1.28984e-05 1.33973e-05 1.38473e-05 1.42511e-05 1.46118e-05 1.49327e-05 1.5217e-05 1.5468e-05 1.5689e-05 1.58828e-05 1.60522e-05 1.61998e-05 1.63279e-05 1.64386e-05 1.6534e-05 1.66158e-05 1.66856e-05 1.67448e-05 1.67949e-05 1.6837e-05 1.68722e-05 1.69016e-05 1.69261e-05 1.69464e-05 1.69635e-05 1.6978e-05 1.69906e-05 1.7002e-05 1.70125e-05 1.7023e-05 1.70338e-05 1.70455e-05 1.70586e-05 1.70737e-05 1.70911e-05 1.71116e-05 1.71356e-05 1.71639e-05 1.71969e-05 1.72355e-05 1.72804e-05 1.73324e-05 1.73925e-05 1.74615e-05 1.75405e-05 1.76304e-05 1.77323e-05 1.78473e-05 1.79763e-05 1.81204e-05 1.82803e-05 1.8457e-05 1.8651e-05 1.88633e-05 1.90936e-05 1.93438e-05 3.21791e-07 3.53524e-07 3.88941e-07 4.2865e-07 4.73567e-07 5.24865e-07 5.84307e-07 6.54412e-07 7.38637e-07 8.41629e-07 9.6941e-07 1.12941e-06 1.33018e-06 1.58072e-06 1.8894e-06 2.26251e-06 2.70292e-06 3.20915e-06 3.77514e-06 4.39086e-06 5.04351e-06 5.71898e-06 6.40331e-06 7.0838e-06 7.74977e-06 8.39282e-06 9.00683e-06 9.58772e-06 1.01331e-05 1.0642e-05 1.11143e-05 1.15507e-05 1.19524e-05 1.2321e-05 1.26581e-05 1.29657e-05 1.32457e-05 1.35003e-05 1.37315e-05 1.39411e-05 1.41311e-05 1.43033e-05 1.44594e-05 1.46009e-05 1.47293e-05 1.48461e-05 1.49524e-05 1.50495e-05 1.51383e-05 1.522e-05 1.52953e-05 1.53653e-05 1.54306e-05 1.5492e-05 1.55502e-05 1.56059e-05 1.56596e-05 1.5712e-05 1.57636e-05 1.58148e-05 1.58663e-05 1.59185e-05 1.59719e-05 1.6027e-05 1.60843e-05 1.61444e-05 1.62077e-05 1.62749e-05 1.63465e-05 1.64233e-05 1.65059e-05 1.65951e-05 1.66917e-05 1.67966e-05 1.69106e-05 1.70348e-05 1.71698e-05 1.73171e-05 1.74769e-05 1.76509e-05 1.47403e-07 1.6182e-07 1.77502e-07 1.94509e-07 2.12982e-07 2.33059e-07 2.54967e-07 2.79044e-07 3.05761e-07 3.35783e-07 3.70045e-07 4.09854e-07 4.57009e-07 5.13952e-07 5.83903e-07 6.70979e-07 7.80215e-07 9.17432e-07 1.0889e-06 1.30077e-06 1.55828e-06 1.86502e-06 2.22222e-06 2.62842e-06 3.07951e-06 3.56907e-06 4.089e-06 4.63032e-06 5.18386e-06 5.74091e-06 6.29368e-06 6.83562e-06 7.36149e-06 7.86735e-06 8.35049e-06 8.80919e-06 9.24259e-06 9.65048e-06 1.00331e-05 1.03911e-05 1.07253e-05 1.10367e-05 1.13266e-05 1.15959e-05 1.18462e-05 1.20785e-05 1.22941e-05 1.24943e-05 1.26803e-05 1.28533e-05 1.30145e-05 1.31649e-05 1.33055e-05 1.34374e-05 1.35615e-05 1.36786e-05 1.37895e-05 1.38951e-05 1.3996e-05 1.4093e-05 1.41866e-05 1.42775e-05 1.43663e-05 1.44534e-05 1.45395e-05 1.46251e-05 1.47106e-05 1.47965e-05 1.48833e-05 1.49715e-05 1.50616e-05 1.51541e-05 1.52494e-05 1.53482e-05 1.54511e-05 1.55585e-05 1.56714e-05 1.57902e-05 1.59159e-05 1.60485e-05 7.0334e-08 7.78565e-08 8.60139e-08 9.48039e-08 1.04251e-07 1.14364e-07 1.25169e-07 1.36705e-07 1.49025e-07 1.62202e-07 1.76336e-07 1.91567e-07 2.08091e-07 2.26182e-07 2.46224e-07 2.6875e-07 2.9449e-07 3.24432e-07 3.59896e-07 4.0261e-07 4.54785e-07 5.19163e-07 5.99027e-07 6.98134e-07 8.20545e-07 9.70341e-07 1.15127e-06 1.36634e-06 1.61747e-06 1.90518e-06 2.22851e-06 2.58504e-06 2.97108e-06 3.3819e-06 3.81212e-06 4.25603e-06 4.70795e-06 5.16248e-06 5.61471e-06 6.06041e-06 6.49607e-06 6.91888e-06 7.32679e-06 7.71835e-06 8.09267e-06 8.44931e-06 8.78821e-06 9.10957e-06 9.41382e-06 9.70153e-06 9.97337e-06 1.02301e-05 1.04725e-05 1.07013e-05 1.09175e-05 1.11218e-05 1.13151e-05 1.14982e-05 1.16719e-05 1.1837e-05 1.19942e-05 1.21444e-05 1.22883e-05 1.24265e-05 1.25597e-05 1.26886e-05 1.28138e-05 1.29358e-05 1.30553e-05 1.31728e-05 1.32887e-05 1.34037e-05 1.35182e-05 1.36327e-05 1.37477e-05 1.38636e-05 1.3981e-05 1.41002e-05 1.42224e-05 1.43461e-05 3.38189e-08 3.80725e-08 4.27284e-08 4.77819e-08 5.32429e-08 5.9111e-08 6.53874e-08 7.20769e-08 7.91839e-08 8.6714e-08 9.46746e-08 1.03076e-07 1.11934e-07 1.2127e-07 1.31117e-07 1.41522e-07 1.52552e-07 1.64302e-07 1.76904e-07 1.90539e-07 2.05455e-07 2.21983e-07 2.40567e-07 2.61788e-07 2.86401e-07 3.15372e-07 3.49913e-07 3.91519e-07 4.41989e-07 5.0342e-07 5.78178e-07 6.68814e-07 7.77947e-07 9.08093e-07 1.06148e-06 1.23986e-06 1.44436e-06 1.67534e-06 1.93237e-06 2.2142e-06 2.51886e-06 2.84374e-06 3.18577e-06 3.54152e-06 3.90743e-06 4.27992e-06 4.65553e-06 5.03106e-06 5.40364e-06 5.77075e-06 6.13033e-06 6.48068e-06 6.82055e-06 7.14902e-06 7.4655e-06 7.76968e-06 8.06148e-06 8.34103e-06 8.60856e-06 8.86446e-06 9.10917e-06 9.3432e-06 9.56709e-06 9.78142e-06 9.98678e-06 1.01838e-05 1.0373e-05 1.0555e-05 1.07304e-05 1.08998e-05 1.10638e-05 1.1223e-05 1.13778e-05 1.1529e-05 1.16769e-05 1.18222e-05 1.19655e-05 1.2107e-05 1.22483e-05 1.2387e-05 1.63156e-08 1.88228e-08 2.16129e-08 2.46875e-08 2.80544e-08 3.17154e-08 3.56713e-08 3.99225e-08 4.44682e-08 4.93059e-08 5.44324e-08 5.98439e-08 6.55362e-08 7.15056e-08 7.77493e-08 8.42659e-08 9.1056e-08 9.81233e-08 1.05475e-07 1.13125e-07 1.21092e-07 1.29405e-07 1.38104e-07 1.47244e-07 1.569e-07 1.67171e-07 1.78188e-07 1.90122e-07 2.03195e-07 2.17689e-07 2.33965e-07 2.52475e-07 2.73781e-07 2.98573e-07 3.27688e-07 3.62123e-07 4.03048e-07 4.51799e-07 5.09866e-07 5.78858e-07 6.60453e-07 7.5632e-07 8.68039e-07 9.97008e-07 1.14435e-06 1.31085e-06 1.49686e-06 1.7023e-06 1.92664e-06 2.16892e-06 2.42776e-06 2.70147e-06 2.98805e-06 3.28535e-06 3.59109e-06 3.90293e-06 4.21862e-06 4.53597e-06 4.85298e-06 5.16782e-06 5.47891e-06 5.7849e-06 6.08467e-06 6.37734e-06 6.66228e-06 6.93904e-06 7.20735e-06 7.46712e-06 7.71838e-06 7.96127e-06 8.19604e-06 8.42298e-06 8.64247e-06 8.85489e-06 9.06072e-06 9.26036e-06 9.45444e-06 9.64308e-06 9.82798e-06 1.00065e-05 8.30066e-09 9.8384e-09 1.15837e-08 1.3542e-08 1.57216e-08 1.81264e-08 2.07584e-08 2.3618e-08 2.67039e-08 3.00131e-08 3.35411e-08 3.72822e-08 4.12304e-08 4.5379e-08 4.97216e-08 5.4252e-08 5.89648e-08 6.3855e-08 6.89192e-08 7.41548e-08 7.95605e-08 8.51369e-08 9.08858e-08 9.68114e-08 1.0292e-07 1.09221e-07 1.15727e-07 1.22454e-07 1.29426e-07 1.3667e-07 1.44223e-07 1.52133e-07 1.60461e-07 1.69282e-07 1.78692e-07 1.88811e-07 1.99789e-07 2.11812e-07 2.25106e-07 2.39949e-07 2.56679e-07 2.75701e-07 2.97498e-07 3.22639e-07 3.51788e-07 3.85706e-07 4.25255e-07 4.71388e-07 5.25139e-07 5.87602e-07 6.59895e-07 7.43127e-07 8.38352e-07 9.46518e-07 1.06842e-06 1.20467e-06 1.35565e-06 1.52147e-06 1.702e-06 1.89683e-06 2.1053e-06 2.32652e-06 2.55938e-06 2.80262e-06 3.05484e-06 3.31455e-06 3.58022e-06 3.85032e-06 4.12336e-06 4.3979e-06 4.67261e-06 4.94629e-06 5.21787e-06 5.48641e-06 5.75118e-06 6.01147e-06 6.26705e-06 6.51715e-06 6.76281e-06 7.00091e-06 4.72452e-09 5.74244e-09 6.9171e-09 8.2553e-09 9.76388e-09 1.14469e-08 1.33062e-08 1.53418e-08 1.75519e-08 1.99332e-08 2.24811e-08 2.51902e-08 2.80547e-08 3.10685e-08 3.42258e-08 3.75211e-08 4.09497e-08 4.45074e-08 4.81907e-08 5.19971e-08 5.59247e-08 5.99725e-08 6.41401e-08 6.84279e-08 7.28369e-08 7.73686e-08 8.20253e-08 8.68098e-08 9.17257e-08 9.67773e-08 1.0197e-07 1.07309e-07 1.12804e-07 1.18462e-07 1.24294e-07 1.30315e-07 1.3654e-07 1.42989e-07 1.49688e-07 1.56667e-07 1.63963e-07 1.71623e-07 1.79702e-07 1.88268e-07 1.97406e-07 2.07216e-07 2.17819e-07 2.29362e-07 2.42019e-07 2.55996e-07 2.71538e-07 2.88932e-07 3.08512e-07 3.30665e-07 3.55834e-07 3.84521e-07 4.1729e-07 4.54764e-07 4.97619e-07 5.46582e-07 6.02412e-07 6.65888e-07 7.37783e-07 8.18845e-07 9.09771e-07 1.01118e-06 1.12357e-06 1.24733e-06 1.3827e-06 1.52976e-06 1.68841e-06 1.85842e-06 2.03937e-06 2.23071e-06 2.43177e-06 2.6417e-06 2.85983e-06 3.0848e-06 3.31681e-06 3.55231e-06 3.04874e-09 3.78505e-09 4.64393e-09 5.63087e-09 6.75052e-09 8.00515e-09 9.39503e-09 1.09189e-08 1.25741e-08 1.43571e-08 1.62634e-08 1.82886e-08 2.04279e-08 2.26772e-08 2.50324e-08 2.74902e-08 3.0048e-08 3.27037e-08 3.54556e-08 3.83031e-08 4.12456e-08 4.42833e-08 4.74166e-08 5.06464e-08 5.39738e-08 5.74003e-08 6.09273e-08 6.45567e-08 6.82903e-08 7.21303e-08 7.60787e-08 8.0138e-08 8.43105e-08 8.85987e-08 9.30055e-08 9.75338e-08 1.02187e-07 1.06968e-07 1.11881e-07 1.16931e-07 1.22122e-07 1.27461e-07 1.32955e-07 1.38611e-07 1.44439e-07 1.50451e-07 1.5666e-07 1.63084e-07 1.6974e-07 1.76655e-07 1.83855e-07 1.91376e-07 1.99257e-07 2.07548e-07 2.16306e-07 2.25599e-07 2.35508e-07 2.46129e-07 2.57573e-07 2.69969e-07 2.8347e-07 2.98251e-07 3.14515e-07 3.32493e-07 3.5245e-07 3.74686e-07 3.99536e-07 4.27378e-07 4.58626e-07 4.93734e-07 5.33194e-07 5.77529e-07 6.27293e-07 6.83052e-07 7.45401e-07 8.14892e-07 8.92207e-07 9.77664e-07 1.07245e-06 1.17569e-06 2.15816e-09 2.72322e-09 3.38554e-09 4.14852e-09 5.01427e-09 5.98314e-09 7.05394e-09 8.22448e-09 9.49194e-09 1.08531e-08 1.23047e-08 1.38437e-08 1.54675e-08 1.71739e-08 1.89611e-08 2.08281e-08 2.2774e-08 2.47987e-08 2.69023e-08 2.90852e-08 3.13482e-08 3.36923e-08 3.61186e-08 3.86284e-08 4.12231e-08 4.39041e-08 4.66731e-08 4.95315e-08 5.24811e-08 5.55235e-08 5.86602e-08 6.18931e-08 6.52238e-08 6.8654e-08 7.21852e-08 7.58193e-08 7.95579e-08 8.34028e-08 8.73556e-08 9.14181e-08 9.55922e-08 9.98797e-08 1.04283e-07 1.08803e-07 1.13443e-07 1.18205e-07 1.23091e-07 1.28104e-07 1.33248e-07 1.38526e-07 1.43941e-07 1.49499e-07 1.55204e-07 1.61063e-07 1.67082e-07 1.73269e-07 1.79635e-07 1.86191e-07 1.92949e-07 1.99926e-07 2.0714e-07 2.14613e-07 2.22369e-07 2.3044e-07 2.38858e-07 2.47666e-07 2.5691e-07 2.66646e-07 2.76937e-07 2.87857e-07 2.99491e-07 3.11937e-07 3.25308e-07 3.39733e-07 3.55362e-07 3.7236e-07 3.90942e-07 4.11289e-07 4.33793e-07 4.58473e-07 1.60931e-09 2.05289e-09 2.57298e-09 3.17115e-09 3.84788e-09 4.60245e-09 5.43326e-09 6.33831e-09 7.31552e-09 8.36293e-09 9.47888e-09 1.06621e-08 1.19116e-08 1.32271e-08 1.46085e-08 1.6056e-08 1.75702e-08 1.91519e-08 2.0802e-08 2.25217e-08 2.43122e-08 2.61748e-08 2.81109e-08 3.01219e-08 3.22092e-08 3.43742e-08 3.66184e-08 3.89433e-08 4.13502e-08 4.38407e-08 4.6416e-08 4.90777e-08 5.18271e-08 5.46656e-08 5.75946e-08 6.06153e-08 6.37293e-08 6.69377e-08 7.0242e-08 7.36434e-08 7.71433e-08 8.07429e-08 8.44437e-08 8.82469e-08 9.21538e-08 9.61658e-08 1.00284e-07 1.0451e-07 1.08846e-07 1.13292e-07 1.1785e-07 1.22521e-07 1.27308e-07 1.32211e-07 1.37233e-07 1.42375e-07 1.47639e-07 1.53028e-07 1.58543e-07 1.64187e-07 1.69964e-07 1.75875e-07 1.81926e-07 1.8812e-07 1.94461e-07 2.00955e-07 2.07608e-07 2.14427e-07 2.2142e-07 2.28596e-07 2.35967e-07 2.43545e-07 2.51345e-07 2.59384e-07 2.67682e-07 2.76263e-07 2.85156e-07 2.94388e-07 3.04018e-07 3.1405e-07 1.23439e-09 1.58468e-09 1.99452e-09 2.46445e-09 2.99431e-09 3.58333e-09 4.23036e-09 4.93427e-09 5.69412e-09 6.50923e-09 7.37927e-09 8.30425e-09 9.28448e-09 1.03205e-08 1.14132e-08 1.25635e-08 1.37726e-08 1.50416e-08 1.63719e-08 1.77648e-08 1.92217e-08 2.0744e-08 2.2333e-08 2.39901e-08 2.57168e-08 2.75143e-08 2.93841e-08 3.13274e-08 3.33456e-08 3.544e-08 3.76119e-08 3.98625e-08 4.21931e-08 4.46049e-08 4.70992e-08 4.96771e-08 5.23399e-08 5.50887e-08 5.79248e-08 6.08491e-08 6.38631e-08 6.69677e-08 7.01641e-08 7.34536e-08 7.68371e-08 8.03159e-08 8.38911e-08 8.75637e-08 9.1335e-08 9.5206e-08 9.91779e-08 1.03252e-07 1.07429e-07 1.1171e-07 1.16097e-07 1.2059e-07 1.25191e-07 1.299e-07 1.3472e-07 1.39651e-07 1.44695e-07 1.49852e-07 1.55124e-07 1.60512e-07 1.66019e-07 1.71644e-07 1.7739e-07 1.83259e-07 1.89252e-07 1.9537e-07 2.01617e-07 2.07995e-07 2.14505e-07 2.21151e-07 2.27936e-07 2.34863e-07 2.41939e-07 2.49165e-07 2.56553e-07 2.64098e-07 9.65801e-10 1.24404e-09 1.56871e-09 1.94005e-09 2.3579e-09 2.82191e-09 3.33163e-09 3.8868e-09 4.4874e-09 5.13367e-09 5.82612e-09 6.56551e-09 7.35275e-09 8.18893e-09 9.07526e-09 1.0013e-08 1.10036e-08 1.20482e-08 1.31485e-08 1.43056e-08 1.55212e-08 1.67964e-08 1.81327e-08 1.95315e-08 2.09941e-08 2.25218e-08 2.41158e-08 2.57776e-08 2.75082e-08 2.93091e-08 3.11813e-08 3.31261e-08 3.51447e-08 3.72382e-08 3.94078e-08 4.16546e-08 4.39798e-08 4.63845e-08 4.88698e-08 5.14367e-08 5.40864e-08 5.682e-08 5.96385e-08 6.2543e-08 6.55345e-08 6.86142e-08 7.1783e-08 7.5042e-08 7.83922e-08 8.18347e-08 8.53705e-08 8.90006e-08 9.2726e-08 9.65479e-08 1.00467e-07 1.04485e-07 1.08602e-07 1.12819e-07 1.17138e-07 1.2156e-07 1.26084e-07 1.30714e-07 1.35449e-07 1.4029e-07 1.45239e-07 1.50296e-07 1.55464e-07 1.60741e-07 1.66131e-07 1.71633e-07 1.77249e-07 1.82981e-07 1.88828e-07 1.94793e-07 2.00877e-07 2.07081e-07 2.13407e-07 2.19857e-07 2.26433e-07 2.33133e-07 7.69781e-10 9.93255e-10 1.25351e-09 1.55079e-09 1.88519e-09 2.25682e-09 2.66584e-09 3.1126e-09 3.59767e-09 4.12185e-09 4.68609e-09 5.2915e-09 5.93931e-09 6.63083e-09 7.36741e-09 8.15045e-09 8.98136e-09 9.86158e-09 1.07925e-08 1.17756e-08 1.28122e-08 1.39037e-08 1.50514e-08 1.62567e-08 1.75209e-08 1.88453e-08 2.02312e-08 2.16797e-08 2.31922e-08 2.47699e-08 2.64138e-08 2.81253e-08 2.99055e-08 3.17555e-08 3.36764e-08 3.56694e-08 3.77355e-08 3.98759e-08 4.20916e-08 4.43837e-08 4.67532e-08 4.92013e-08 5.17289e-08 5.4337e-08 5.70267e-08 5.97991e-08 6.2655e-08 6.55956e-08 6.86218e-08 7.17346e-08 7.49351e-08 7.82241e-08 8.16026e-08 8.50717e-08 8.86323e-08 9.22854e-08 9.60319e-08 9.98728e-08 1.03809e-07 1.07842e-07 1.11971e-07 1.16199e-07 1.20527e-07 1.24954e-07 1.29482e-07 1.34112e-07 1.38846e-07 1.43683e-07 1.48625e-07 1.53672e-07 1.58827e-07 1.64089e-07 1.6946e-07 1.7494e-07 1.80532e-07 1.86235e-07 1.92052e-07 1.97982e-07 2.04029e-07 2.1019e-07 6.25241e-10 8.07524e-10 1.0196e-09 1.26184e-09 1.53463e-09 1.83842e-09 2.17377e-09 2.54141e-09 2.94227e-09 3.37739e-09 3.84797e-09 4.35528e-09 4.90068e-09 5.48556e-09 6.11133e-09 6.77942e-09 7.49128e-09 8.24833e-09 9.05198e-09 9.90365e-09 1.08047e-08 1.17565e-08 1.27605e-08 1.38178e-08 1.49299e-08 1.6098e-08 1.73234e-08 1.86073e-08 1.99509e-08 2.13555e-08 2.28222e-08 2.43521e-08 2.59466e-08 2.76066e-08 2.93333e-08 3.11278e-08 3.29912e-08 3.49246e-08 3.6929e-08 3.90055e-08 4.11552e-08 4.33791e-08 4.56782e-08 4.80536e-08 5.05061e-08 5.30369e-08 5.5647e-08 5.83373e-08 6.11087e-08 6.39624e-08 6.68992e-08 6.99201e-08 7.30261e-08 7.6218e-08 7.9497e-08 8.28638e-08 8.63194e-08 8.98648e-08 9.35009e-08 9.72287e-08 1.01049e-07 1.04963e-07 1.08971e-07 1.13074e-07 1.17274e-07 1.2157e-07 1.25965e-07 1.30458e-07 1.35052e-07 1.39746e-07 1.44542e-07 1.4944e-07 1.54442e-07 1.59548e-07 1.6476e-07 1.70078e-07 1.75503e-07 1.81038e-07 1.86682e-07 1.92435e-07 5.17602e-10 6.68946e-10 8.45013e-10 1.04633e-09 1.27346e-09 1.5271e-09 1.80806e-09 2.11729e-09 2.45587e-09 2.82501e-09 3.22599e-09 3.66017e-09 4.12892e-09 4.63367e-09 5.17585e-09 5.75688e-09 6.3782e-09 7.04123e-09 7.74738e-09 8.49805e-09 9.29459e-09 1.01384e-08 1.10307e-08 1.1973e-08 1.29665e-08 1.40124e-08 1.51121e-08 1.62667e-08 1.74775e-08 1.87457e-08 2.00726e-08 2.14591e-08 2.29066e-08 2.44161e-08 2.59888e-08 2.76257e-08 2.93281e-08 3.10968e-08 3.29331e-08 3.4838e-08 3.68125e-08 3.88577e-08 4.09745e-08 4.3164e-08 4.54273e-08 4.77652e-08 5.01788e-08 5.26691e-08 5.5237e-08 5.78836e-08 6.06097e-08 6.34163e-08 6.63043e-08 6.92748e-08 7.23285e-08 7.54666e-08 7.86898e-08 8.19991e-08 8.53954e-08 8.88796e-08 9.24527e-08 9.61155e-08 9.98689e-08 1.03714e-07 1.07651e-07 1.11682e-07 1.15806e-07 1.20026e-07 1.24342e-07 1.28754e-07 1.33265e-07 1.37874e-07 1.42582e-07 1.47391e-07 1.52301e-07 1.57314e-07 1.62429e-07 1.67649e-07 1.72974e-07 1.78404e-07 4.36507e-10 5.64466e-10 7.13418e-10 8.84002e-10 1.07693e-09 1.29303e-09 1.53326e-09 1.79866e-09 2.09043e-09 2.4098e-09 2.75812e-09 3.13673e-09 3.54703e-09 3.99044e-09 4.46838e-09 4.98226e-09 5.53351e-09 6.12352e-09 6.75369e-09 7.42541e-09 8.14003e-09 8.89891e-09 9.70337e-09 1.05547e-08 1.14543e-08 1.24033e-08 1.34031e-08 1.44548e-08 1.55597e-08 1.6719e-08 1.7934e-08 1.92056e-08 2.05352e-08 2.19239e-08 2.33728e-08 2.4883e-08 2.64556e-08 2.80917e-08 2.97924e-08 3.15587e-08 3.33917e-08 3.52924e-08 3.72618e-08 3.93011e-08 4.14111e-08 4.35928e-08 4.58474e-08 4.81756e-08 5.05786e-08 5.30572e-08 5.56125e-08 5.82454e-08 6.09567e-08 6.37476e-08 6.66188e-08 6.95713e-08 7.2606e-08 7.57238e-08 7.89257e-08 8.22125e-08 8.55851e-08 8.90445e-08 9.25915e-08 9.62269e-08 9.99517e-08 1.03767e-07 1.07673e-07 1.11671e-07 1.15762e-07 1.19947e-07 1.24226e-07 1.28601e-07 1.33072e-07 1.37641e-07 1.42308e-07 1.47073e-07 1.51939e-07 1.56906e-07 1.61974e-07 1.67144e-07 3.74631e-10 4.84735e-10 6.13042e-10 7.60267e-10 9.27199e-10 1.11476e-09 1.32396e-09 1.55593e-09 1.81186e-09 2.09303e-09 2.40076e-09 2.73642e-09 3.10138e-09 3.49704e-09 3.92479e-09 4.38604e-09 4.88219e-09 5.41462e-09 5.98471e-09 6.59383e-09 7.24333e-09 7.93455e-09 8.66882e-09 9.44744e-09 1.02717e-08 1.11429e-08 1.20622e-08 1.3031e-08 1.40505e-08 1.51218e-08 1.62461e-08 1.74247e-08 1.86587e-08 1.99492e-08 2.12975e-08 2.27045e-08 2.41715e-08 2.56994e-08 2.72894e-08 2.89426e-08 3.066e-08 3.24427e-08 3.42916e-08 3.62079e-08 3.81925e-08 4.02464e-08 4.23706e-08 4.45661e-08 4.68338e-08 4.91749e-08 5.159e-08 5.40804e-08 5.66468e-08 5.92902e-08 6.20116e-08 6.48118e-08 6.76918e-08 7.06525e-08 7.36948e-08 7.68195e-08 8.00277e-08 8.33201e-08 8.66976e-08 9.01612e-08 9.37116e-08 9.73498e-08 1.01077e-07 1.04893e-07 1.088e-07 1.12798e-07 1.16888e-07 1.21071e-07 1.25347e-07 1.29719e-07 1.34186e-07 1.38749e-07 1.4341e-07 1.48169e-07 1.53027e-07 1.57984e-07 3.26783e-10 4.23081e-10 5.3545e-10 6.64651e-10 8.1153e-10 9.77044e-10 1.16224e-09 1.36826e-09 1.59631e-09 1.84766e-09 2.12362e-09 2.42553e-09 2.75474e-09 3.11264e-09 3.50059e-09 3.91997e-09 4.37217e-09 4.85855e-09 5.38047e-09 5.93929e-09 6.53634e-09 7.17296e-09 7.85047e-09 8.57016e-09 9.33332e-09 1.01412e-08 1.09952e-08 1.18963e-08 1.2846e-08 1.38453e-08 1.48956e-08 1.59979e-08 1.71535e-08 1.83634e-08 1.96289e-08 2.09511e-08 2.23311e-08 2.377e-08 2.52688e-08 2.68287e-08 2.84507e-08 3.01359e-08 3.18852e-08 3.36998e-08 3.55806e-08 3.75287e-08 3.95451e-08 4.16306e-08 4.37864e-08 4.60134e-08 4.83125e-08 5.06847e-08 5.31309e-08 5.56521e-08 5.82492e-08 6.09231e-08 6.36747e-08 6.65051e-08 6.94149e-08 7.24052e-08 7.54768e-08 7.86307e-08 8.18676e-08 8.51885e-08 8.85943e-08 9.20858e-08 9.56638e-08 9.93294e-08 1.03083e-07 1.06926e-07 1.10859e-07 1.14883e-07 1.18998e-07 1.23207e-07 1.27508e-07 1.31904e-07 1.36395e-07 1.40982e-07 1.45666e-07 1.50447e-07 2.89294e-10 3.74779e-10 4.7468e-10 5.89782e-10 7.20955e-10 8.69175e-10 1.0355e-09 1.22107e-09 1.42709e-09 1.65481e-09 1.90551e-09 2.18051e-09 2.48115e-09 2.80877e-09 3.16473e-09 3.55038e-09 3.96708e-09 4.41618e-09 4.89902e-09 5.41695e-09 5.97129e-09 6.56335e-09 7.19446e-09 7.86591e-09 8.57897e-09 9.33493e-09 1.0135e-08 1.09805e-08 1.18727e-08 1.28126e-08 1.38017e-08 1.48409e-08 1.59316e-08 1.70748e-08 1.82717e-08 1.95235e-08 2.08312e-08 2.21961e-08 2.36191e-08 2.51013e-08 2.66439e-08 2.82478e-08 2.99141e-08 3.16439e-08 3.34382e-08 3.5298e-08 3.72243e-08 3.9218e-08 4.12802e-08 4.34118e-08 4.56139e-08 4.78873e-08 5.0233e-08 5.26519e-08 5.51451e-08 5.77133e-08 6.03575e-08 6.30786e-08 6.58776e-08 6.87553e-08 7.17127e-08 7.47505e-08 7.78697e-08 8.10712e-08 8.43558e-08 8.77244e-08 9.11778e-08 9.4717e-08 9.83427e-08 1.02056e-07 1.05857e-07 1.09748e-07 1.13728e-07 1.178e-07 1.21963e-07 1.26219e-07 1.30567e-07 1.35011e-07 1.39549e-07 1.44182e-07 2.59542e-10 3.36449e-10 4.26459e-10 5.30373e-10 6.49074e-10 7.83538e-10 9.34823e-10 1.10406e-09 1.29242e-09 1.50115e-09 1.7315e-09 1.98478e-09 2.26228e-09 2.56533e-09 2.89526e-09 3.2534e-09 3.6411e-09 4.05967e-09 4.51045e-09 4.99477e-09 5.51394e-09 6.06928e-09 6.66207e-09 7.29362e-09 7.9652e-09 8.67809e-09 9.43352e-09 1.02328e-08 1.1077e-08 1.19675e-08 1.29055e-08 1.38921e-08 1.49286e-08 1.6016e-08 1.71556e-08 1.83484e-08 1.95956e-08 2.08984e-08 2.22578e-08 2.36748e-08 2.51507e-08 2.66864e-08 2.8283e-08 2.99415e-08 3.16629e-08 3.34484e-08 3.52988e-08 3.72152e-08 3.91986e-08 4.12499e-08 4.33701e-08 4.55602e-08 4.78212e-08 5.01539e-08 5.25593e-08 5.50383e-08 5.75919e-08 6.02209e-08 6.29263e-08 6.5709e-08 6.85698e-08 7.15097e-08 7.45295e-08 7.76301e-08 8.08124e-08 8.40772e-08 8.74254e-08 9.0858e-08 9.43756e-08 9.79792e-08 1.0167e-07 1.05448e-07 1.09314e-07 1.1327e-07 1.17316e-07 1.21454e-07 1.25683e-07 1.30005e-07 1.3442e-07 1.3893e-07 2.35649e-10 3.05668e-10 3.87739e-10 4.82666e-10 5.91332e-10 7.14709e-10 8.53844e-10 1.00985e-09 1.18389e-09 1.37718e-09 1.59095e-09 1.82647e-09 2.08502e-09 2.36791e-09 2.67644e-09 3.01192e-09 3.37567e-09 3.76901e-09 4.19324e-09 4.64969e-09 5.13965e-09 5.66443e-09 6.22531e-09 6.82359e-09 7.46053e-09 8.13741e-09 8.85546e-09 9.61594e-09 1.04201e-08 1.12691e-08 1.21642e-08 1.31065e-08 1.40974e-08 1.51378e-08 1.6229e-08 1.73722e-08 1.85684e-08 1.98187e-08 2.11244e-08 2.24864e-08 2.39058e-08 2.53838e-08 2.69213e-08 2.85195e-08 3.01793e-08 3.19017e-08 3.36879e-08 3.55387e-08 3.74552e-08 3.94384e-08 4.14892e-08 4.36086e-08 4.57976e-08 4.8057e-08 5.03879e-08 5.27912e-08 5.52677e-08 5.78185e-08 6.04444e-08 6.31463e-08 6.59251e-08 6.87817e-08 7.1717e-08 7.47318e-08 7.78271e-08 8.10037e-08 8.42624e-08 8.76042e-08 9.10299e-08 9.45403e-08 9.81362e-08 1.01819e-07 1.05588e-07 1.09446e-07 1.13393e-07 1.17429e-07 1.21557e-07 1.25775e-07 1.30086e-07 1.34489e-07 2.16245e-10 2.8067e-10 3.56291e-10 4.43911e-10 5.44409e-10 6.58747e-10 7.87959e-10 9.3314e-10 1.09543e-09 1.27602e-09 1.47613e-09 1.69699e-09 1.93988e-09 2.20605e-09 2.49681e-09 2.81345e-09 3.15725e-09 3.52953e-09 3.93158e-09 4.36471e-09 4.83019e-09 5.32934e-09 5.86342e-09 6.43372e-09 7.04151e-09 7.68804e-09 8.37457e-09 9.10234e-09 9.87257e-09 1.06865e-08 1.15453e-08 1.24502e-08 1.34024e-08 1.4403e-08 1.54532e-08 1.65541e-08 1.77069e-08 1.89128e-08 2.01727e-08 2.14878e-08 2.28593e-08 2.42881e-08 2.57753e-08 2.7322e-08 2.89292e-08 3.05979e-08 3.23292e-08 3.41241e-08 3.59835e-08 3.79085e-08 3.99e-08 4.1959e-08 4.40865e-08 4.62833e-08 4.85506e-08 5.0889e-08 5.32997e-08 5.57835e-08 5.83414e-08 6.09742e-08 6.36828e-08 6.64682e-08 6.93312e-08 7.22726e-08 7.52935e-08 7.83945e-08 8.15767e-08 8.48409e-08 8.81879e-08 9.16185e-08 9.51337e-08 9.87342e-08 1.02421e-07 1.06195e-07 1.10056e-07 1.14007e-07 1.18047e-07 1.22177e-07 1.26399e-07 1.30712e-07 2.00329e-10 2.60164e-10 3.30493e-10 4.12111e-10 5.0589e-10 6.12781e-10 7.33803e-10 8.70031e-10 1.02259e-09 1.19264e-09 1.38139e-09 1.59004e-09 1.81984e-09 2.07205e-09 2.34793e-09 2.64876e-09 2.97582e-09 3.3304e-09 3.71378e-09 4.12724e-09 4.57208e-09 5.04957e-09 5.56099e-09 6.10761e-09 6.69069e-09 7.3115e-09 7.97127e-09 8.67124e-09 9.41265e-09 1.01967e-08 1.10246e-08 1.18976e-08 1.28168e-08 1.37834e-08 1.47986e-08 1.58635e-08 1.69793e-08 1.81471e-08 1.93679e-08 2.0643e-08 2.19733e-08 2.336e-08 2.48041e-08 2.63067e-08 2.78688e-08 2.94915e-08 3.11758e-08 3.29227e-08 3.47331e-08 3.66081e-08 3.85487e-08 4.05559e-08 4.26305e-08 4.47736e-08 4.69861e-08 4.92689e-08 5.1623e-08 5.40492e-08 5.65486e-08 5.9122e-08 6.17702e-08 6.44943e-08 6.72951e-08 7.01735e-08 7.31302e-08 7.61664e-08 7.92827e-08 8.248e-08 8.57592e-08 8.91212e-08 9.25668e-08 9.60969e-08 9.97122e-08 1.03414e-07 1.07202e-07 1.11078e-07 1.15043e-07 1.19098e-07 1.23242e-07 1.27477e-07 1.87152e-10 2.43185e-10 3.09128e-10 3.85768e-10 4.73969e-10 5.74668e-10 6.88868e-10 8.17628e-10 9.62052e-10 1.12328e-09 1.3025e-09 1.5009e-09 1.7197e-09 1.96014e-09 2.22347e-09 2.51095e-09 2.82384e-09 3.16342e-09 3.53097e-09 3.92775e-09 4.35504e-09 4.81411e-09 5.30624e-09 5.83268e-09 6.3947e-09 6.99354e-09 7.63046e-09 8.30668e-09 9.02343e-09 9.78194e-09 1.05834e-08 1.1429e-08 1.232e-08 1.32574e-08 1.42426e-08 1.52765e-08 1.63605e-08 1.74955e-08 1.86827e-08 1.99233e-08 2.12183e-08 2.25687e-08 2.39757e-08 2.54403e-08 2.69636e-08 2.85466e-08 3.01903e-08 3.18958e-08 3.36639e-08 3.54959e-08 3.73925e-08 3.93549e-08 4.13839e-08 4.34805e-08 4.56457e-08 4.78805e-08 5.01856e-08 5.25622e-08 5.5011e-08 5.7533e-08 6.01291e-08 6.28003e-08 6.55473e-08 6.8371e-08 7.12725e-08 7.42524e-08 7.73117e-08 8.04513e-08 8.3672e-08 8.69746e-08 9.03601e-08 9.38292e-08 9.73829e-08 1.01022e-07 1.04747e-07 1.08559e-07 1.12459e-07 1.16448e-07 1.20526e-07 1.24694e-07 1.76152e-10 2.29011e-10 2.9129e-10 3.63768e-10 4.47299e-10 5.42806e-10 6.51278e-10 7.73756e-10 9.11328e-10 1.06512e-09 1.23628e-09 1.426e-09 1.63548e-09 1.86594e-09 2.11861e-09 2.39474e-09 2.69558e-09 3.02239e-09 3.37643e-09 3.75896e-09 4.17126e-09 4.61459e-09 5.0902e-09 5.59936e-09 6.14332e-09 6.72333e-09 7.34063e-09 7.99644e-09 8.69201e-09 9.42854e-09 1.02072e-08 1.10293e-08 1.18959e-08 1.28082e-08 1.37675e-08 1.47748e-08 1.58312e-08 1.6938e-08 1.80962e-08 1.9307e-08 2.05713e-08 2.18905e-08 2.32654e-08 2.46971e-08 2.61868e-08 2.77354e-08 2.9344e-08 3.10136e-08 3.27452e-08 3.45398e-08 3.63983e-08 3.83219e-08 4.03114e-08 4.23677e-08 4.44919e-08 4.6685e-08 4.89477e-08 5.12811e-08 5.36861e-08 5.61635e-08 5.87144e-08 6.13395e-08 6.40399e-08 6.68163e-08 6.96696e-08 7.26008e-08 7.56106e-08 7.87001e-08 8.18699e-08 8.5121e-08 8.84542e-08 9.18704e-08 9.53704e-08 9.89551e-08 1.02625e-07 1.06382e-07 1.10225e-07 1.14157e-07 1.18177e-07 1.22287e-07 1.669e-10 2.17088e-10 2.76282e-10 3.45253e-10 4.24843e-10 5.15966e-10 6.19594e-10 7.36753e-10 8.68514e-10 1.01599e-09 1.18031e-09 1.36264e-09 1.56417e-09 1.78611e-09 2.02968e-09 2.2961e-09 2.58662e-09 2.90248e-09 3.24493e-09 3.61524e-09 4.01466e-09 4.44444e-09 4.90584e-09 5.40012e-09 5.92852e-09 6.49229e-09 7.09266e-09 7.73086e-09 8.40812e-09 9.12566e-09 9.88467e-09 1.06864e-08 1.15319e-08 1.24225e-08 1.33593e-08 1.43434e-08 1.53761e-08 1.64583e-08 1.75914e-08 1.87763e-08 2.00141e-08 2.1306e-08 2.2653e-08 2.40562e-08 2.55167e-08 2.70354e-08 2.86135e-08 3.02519e-08 3.19516e-08 3.37137e-08 3.55392e-08 3.74289e-08 3.9384e-08 4.14053e-08 4.34938e-08 4.56505e-08 4.78763e-08 5.01721e-08 5.25389e-08 5.49775e-08 5.7489e-08 6.0074e-08 6.27337e-08 6.54688e-08 6.82803e-08 7.11689e-08 7.41357e-08 7.71814e-08 8.03069e-08 8.3513e-08 8.68007e-08 9.01708e-08 9.36241e-08 9.71614e-08 1.00784e-07 1.04492e-07 1.08286e-07 1.12168e-07 1.16138e-07 1.20196e-07 1.59068e-10 2.06992e-10 2.63572e-10 3.29568e-10 4.05813e-10 4.93208e-10 5.92713e-10 7.0534e-10 8.32143e-10 9.74216e-10 1.13268e-09 1.30869e-09 1.50342e-09 1.71805e-09 1.95379e-09 2.21187e-09 2.4935e-09 2.79994e-09 3.13241e-09 3.49218e-09 3.88048e-09 4.29857e-09 4.74769e-09 5.2291e-09 5.74404e-09 6.29375e-09 6.87946e-09 7.5024e-09 8.16379e-09 8.86485e-09 9.60678e-09 1.03908e-08 1.1218e-08 1.20897e-08 1.3007e-08 1.3971e-08 1.49829e-08 1.60439e-08 1.7155e-08 1.83174e-08 1.95321e-08 2.08003e-08 2.2123e-08 2.35014e-08 2.49364e-08 2.6429e-08 2.79805e-08 2.95917e-08 3.12636e-08 3.29974e-08 3.47939e-08 3.66541e-08 3.85791e-08 4.05698e-08 4.26272e-08 4.47522e-08 4.69457e-08 4.92087e-08 5.1542e-08 5.39468e-08 5.64237e-08 5.89738e-08 6.15979e-08 6.42969e-08 6.70717e-08 6.99232e-08 7.28522e-08 7.58597e-08 7.89464e-08 8.21133e-08 8.53612e-08 8.86909e-08 9.21032e-08 9.55991e-08 9.91794e-08 1.02845e-07 1.06596e-07 1.10435e-07 1.14361e-07 1.18374e-07 1.52395e-10 1.98391e-10 2.52741e-10 3.16198e-10 3.89586e-10 4.73794e-10 5.6977e-10 6.78512e-10 8.01063e-10 9.385e-10 1.09193e-09 1.2625e-09 1.45136e-09 1.65969e-09 1.88868e-09 2.13955e-09 2.41351e-09 2.71179e-09 3.03563e-09 3.38626e-09 3.76492e-09 4.17287e-09 4.61134e-09 5.08157e-09 5.58481e-09 6.1223e-09 6.69526e-09 7.30492e-09 7.9525e-09 8.63921e-09 9.36626e-09 1.01348e-08 1.09461e-08 1.18013e-08 1.27016e-08 1.36481e-08 1.46419e-08 1.56842e-08 1.67762e-08 1.79189e-08 1.91134e-08 2.03609e-08 2.16624e-08 2.30189e-08 2.44316e-08 2.59015e-08 2.74296e-08 2.9017e-08 3.06646e-08 3.23735e-08 3.41447e-08 3.59791e-08 3.78778e-08 3.98417e-08 4.18717e-08 4.39689e-08 4.61341e-08 4.83683e-08 5.06724e-08 5.30474e-08 5.54941e-08 5.80135e-08 6.06064e-08 6.32737e-08 6.60164e-08 6.88353e-08 7.17313e-08 7.47052e-08 7.77579e-08 8.08903e-08 8.41032e-08 8.73975e-08 9.07741e-08 9.42336e-08 9.77771e-08 1.01405e-07 1.05119e-07 1.08919e-07 1.12806e-07 1.16781e-07 1.46681e-10 1.91025e-10 2.43463e-10 3.04743e-10 3.75678e-10 4.57148e-10 5.50088e-10 6.55486e-10 7.7437e-10 9.07808e-10 1.0569e-09 1.22276e-09 1.40654e-09 1.60942e-09 1.83256e-09 2.07718e-09 2.34448e-09 2.63569e-09 2.95202e-09 3.29471e-09 3.66499e-09 4.06411e-09 4.4933e-09 4.9538e-09 5.44685e-09 5.97368e-09 6.53552e-09 7.13359e-09 7.76911e-09 8.44329e-09 9.15733e-09 9.91243e-09 1.07098e-08 1.15506e-08 1.24359e-08 1.3367e-08 1.4345e-08 1.53711e-08 1.64462e-08 1.75717e-08 1.87485e-08 1.99778e-08 2.12607e-08 2.25982e-08 2.39913e-08 2.54412e-08 2.69489e-08 2.85153e-08 3.01416e-08 3.18287e-08 3.35777e-08 3.53894e-08 3.7265e-08 3.92053e-08 4.12113e-08 4.32841e-08 4.54244e-08 4.76333e-08 4.99117e-08 5.22605e-08 5.46807e-08 5.71731e-08 5.97386e-08 6.23781e-08 6.50925e-08 6.78827e-08 7.07496e-08 7.3694e-08 7.67169e-08 7.98189e-08 8.30011e-08 8.62643e-08 8.96092e-08 9.30368e-08 9.65479e-08 1.00143e-07 1.03824e-07 1.0759e-07 1.11444e-07 1.15384e-07 1.41763e-10 1.84684e-10 2.35476e-10 2.94878e-10 3.63697e-10 4.42802e-10 5.33119e-10 6.35624e-10 7.51335e-10 8.81306e-10 1.02662e-09 1.1884e-09 1.36778e-09 1.56591e-09 1.78397e-09 2.02315e-09 2.28465e-09 2.56969e-09 2.87947e-09 3.21523e-09 3.5782e-09 3.96961e-09 4.39069e-09 4.84268e-09 5.32682e-09 5.84432e-09 6.39642e-09 6.98434e-09 7.6093e-09 8.2725e-09 8.97515e-09 9.71843e-09 1.05035e-08 1.13317e-08 1.2204e-08 1.31216e-08 1.40857e-08 1.50974e-08 1.61578e-08 1.72681e-08 1.84294e-08 1.96427e-08 2.09092e-08 2.22299e-08 2.36059e-08 2.50382e-08 2.65278e-08 2.80759e-08 2.96834e-08 3.13513e-08 3.30807e-08 3.48725e-08 3.67276e-08 3.86472e-08 4.06321e-08 4.26833e-08 4.48018e-08 4.69884e-08 4.92441e-08 5.15699e-08 5.39666e-08 5.64352e-08 5.89765e-08 6.15915e-08 6.42811e-08 6.7046e-08 6.98873e-08 7.28057e-08 7.58021e-08 7.88775e-08 8.20325e-08 8.52682e-08 8.85854e-08 9.19848e-08 9.54673e-08 9.90338e-08 1.02685e-07 1.06422e-07 1.10245e-07 1.14155e-07 1.37514e-10 1.79204e-10 2.28573e-10 2.86351e-10 3.53337e-10 4.30393e-10 5.18434e-10 6.18428e-10 7.31382e-10 8.5834e-10 1.00038e-09 1.1586e-09 1.33414e-09 1.52814e-09 1.74176e-09 1.97619e-09 2.23263e-09 2.51227e-09 2.81633e-09 3.14603e-09 3.5026e-09 3.88726e-09 4.30124e-09 4.74578e-09 5.22209e-09 5.73142e-09 6.27498e-09 6.854e-09 7.46968e-09 8.12324e-09 8.81587e-09 9.54878e-09 1.03231e-08 1.11401e-08 1.20009e-08 1.29067e-08 1.38585e-08 1.48577e-08 1.59051e-08 1.70021e-08 1.81497e-08 1.9349e-08 2.0601e-08 2.19069e-08 2.32677e-08 2.46845e-08 2.61583e-08 2.76902e-08 2.92811e-08 3.09321e-08 3.26442e-08 3.44183e-08 3.62556e-08 3.81568e-08 4.01231e-08 4.21553e-08 4.42544e-08 4.64214e-08 4.86571e-08 5.09625e-08 5.33386e-08 5.57862e-08 5.83062e-08 6.08995e-08 6.3567e-08 6.63096e-08 6.91282e-08 7.20237e-08 7.49968e-08 7.80486e-08 8.11797e-08 8.43911e-08 8.76837e-08 9.10582e-08 9.45155e-08 9.80564e-08 1.01682e-07 1.05392e-07 1.09189e-07 1.13073e-07 1.33826e-10 1.74448e-10 2.22579e-10 2.78945e-10 3.44337e-10 4.19609e-10 5.05669e-10 6.03474e-10 7.14023e-10 8.38351e-10 9.77526e-10 1.13264e-09 1.30482e-09 1.4952e-09 1.70494e-09 1.93521e-09 2.18721e-09 2.46212e-09 2.76116e-09 3.08554e-09 3.43649e-09 3.81522e-09 4.22296e-09 4.66094e-09 5.13039e-09 5.63252e-09 6.16857e-09 6.73974e-09 7.34726e-09 7.99232e-09 8.67614e-09 9.39989e-09 1.01648e-08 1.0972e-08 1.18226e-08 1.27179e-08 1.3659e-08 1.4647e-08 1.5683e-08 1.67682e-08 1.79037e-08 1.90905e-08 2.03298e-08 2.16227e-08 2.29701e-08 2.43732e-08 2.5833e-08 2.73505e-08 2.89268e-08 3.05628e-08 3.22596e-08 3.40182e-08 3.58395e-08 3.77246e-08 3.96743e-08 4.16898e-08 4.37718e-08 4.59213e-08 4.81394e-08 5.04268e-08 5.27846e-08 5.52135e-08 5.77146e-08 6.02888e-08 6.29369e-08 6.56597e-08 6.84583e-08 7.13334e-08 7.42859e-08 7.73167e-08 8.04266e-08 8.36166e-08 8.68873e-08 9.02398e-08 9.36748e-08 9.71931e-08 1.00796e-07 1.04483e-07 1.08256e-07 1.12116e-07 1.30617e-10 1.70309e-10 2.17363e-10 2.72499e-10 3.36502e-10 4.10218e-10 4.94548e-10 5.90441e-10 6.98888e-10 8.20916e-10 9.57585e-10 1.10998e-09 1.27922e-09 1.46642e-09 1.67276e-09 1.89938e-09 2.14748e-09 2.41824e-09 2.71287e-09 3.03258e-09 3.37858e-09 3.75209e-09 4.15434e-09 4.58655e-09 5.04995e-09 5.54575e-09 6.07517e-09 6.63944e-09 7.23976e-09 7.87733e-09 8.55337e-09 9.26905e-09 1.00256e-08 1.08241e-08 1.16658e-08 1.25519e-08 1.34834e-08 1.44616e-08 1.54875e-08 1.65623e-08 1.76871e-08 1.88629e-08 2.0091e-08 2.13722e-08 2.27078e-08 2.40988e-08 2.55462e-08 2.7051e-08 2.86143e-08 3.02371e-08 3.19204e-08 3.36652e-08 3.54725e-08 3.73432e-08 3.92784e-08 4.12789e-08 4.33458e-08 4.54799e-08 4.76823e-08 4.99538e-08 5.22953e-08 5.47078e-08 5.71922e-08 5.97493e-08 6.23802e-08 6.50855e-08 6.78663e-08 7.07234e-08 7.36576e-08 7.66699e-08 7.9761e-08 8.29319e-08 8.61834e-08 8.95162e-08 9.29314e-08 9.64296e-08 1.00012e-07 1.03679e-07 1.07431e-07 1.1127e-07 1.27811e-10 1.6669e-10 2.12802e-10 2.66861e-10 3.29648e-10 4.02001e-10 4.84814e-10 5.7903e-10 6.85633e-10 8.05641e-10 9.40107e-10 1.09011e-09 1.25676e-09 1.44118e-09 1.64451e-09 1.86792e-09 2.11258e-09 2.37968e-09 2.67042e-09 2.986e-09 3.32764e-09 3.69655e-09 4.09396e-09 4.52107e-09 4.97912e-09 5.46932e-09 5.99289e-09 6.55105e-09 7.145e-09 7.77595e-09 8.4451e-09 9.15364e-09 9.90276e-09 1.06936e-08 1.15274e-08 1.24053e-08 1.33284e-08 1.42978e-08 1.53148e-08 1.63804e-08 1.74957e-08 1.86618e-08 1.98798e-08 2.11509e-08 2.2476e-08 2.38562e-08 2.52926e-08 2.67861e-08 2.8338e-08 2.9949e-08 3.16203e-08 3.33529e-08 3.51476e-08 3.70056e-08 3.89278e-08 4.09151e-08 4.29686e-08 4.5089e-08 4.72774e-08 4.95348e-08 5.18619e-08 5.42598e-08 5.67293e-08 5.92713e-08 6.18868e-08 6.45766e-08 6.73416e-08 7.01827e-08 7.31006e-08 7.60964e-08 7.91709e-08 8.23248e-08 8.55591e-08 8.88746e-08 9.22722e-08 9.57526e-08 9.93167e-08 1.02965e-07 1.06699e-07 1.10519e-07 1.25357e-10 1.63524e-10 2.08812e-10 2.61929e-10 3.23649e-10 3.94808e-10 4.76292e-10 5.69036e-10 6.74019e-10 7.92253e-10 9.24783e-10 1.07268e-09 1.23706e-09 1.41902e-09 1.61971e-09 1.84029e-09 2.08192e-09 2.3458e-09 2.63311e-09 2.94505e-09 3.28284e-09 3.64769e-09 4.04081e-09 4.46343e-09 4.91675e-09 5.40201e-09 5.9204e-09 6.47316e-09 7.06148e-09 7.68657e-09 8.34963e-09 9.05185e-09 9.79442e-09 1.05785e-08 1.14053e-08 1.22759e-08 1.31915e-08 1.41532e-08 1.51623e-08 1.62197e-08 1.73266e-08 1.84841e-08 1.96933e-08 2.09552e-08 2.2271e-08 2.36417e-08 2.50683e-08 2.65519e-08 2.80935e-08 2.96941e-08 3.13548e-08 3.30765e-08 3.48602e-08 3.67069e-08 3.86175e-08 4.05931e-08 4.26346e-08 4.47429e-08 4.69189e-08 4.91637e-08 5.1478e-08 5.38629e-08 5.63192e-08 5.88479e-08 6.14497e-08 6.41257e-08 6.68766e-08 6.97035e-08 7.2607e-08 7.55882e-08 7.86477e-08 8.17866e-08 8.50057e-08 8.83058e-08 9.16876e-08 9.51522e-08 9.87002e-08 1.02333e-07 1.0605e-07 1.09853e-07 1.23199e-10 1.6074e-10 2.05301e-10 2.57589e-10 3.18371e-10 3.88476e-10 4.68788e-10 5.60235e-10 6.63789e-10 7.80456e-10 9.11278e-10 1.05732e-09 1.21968e-09 1.39947e-09 1.59782e-09 1.8159e-09 2.05485e-09 2.31587e-09 2.60014e-09 2.90887e-09 3.24325e-09 3.60449e-09 3.99382e-09 4.41244e-09 4.86158e-09 5.34244e-09 5.85625e-09 6.40421e-09 6.98753e-09 7.60742e-09 8.26507e-09 8.96167e-09 9.69841e-09 1.04765e-08 1.1297e-08 1.21612e-08 1.30701e-08 1.4025e-08 1.5027e-08 1.60771e-08 1.71766e-08 1.83264e-08 1.95277e-08 2.07815e-08 2.2089e-08 2.34512e-08 2.48692e-08 2.63439e-08 2.78764e-08 2.94677e-08 3.11189e-08 3.28309e-08 3.46048e-08 3.64414e-08 3.83418e-08 4.03069e-08 4.23378e-08 4.44352e-08 4.66003e-08 4.88338e-08 5.11368e-08 5.35101e-08 5.59546e-08 5.84713e-08 6.1061e-08 6.37246e-08 6.64631e-08 6.92772e-08 7.21679e-08 7.5136e-08 7.81823e-08 8.13078e-08 8.45133e-08 8.77995e-08 9.11674e-08 9.46179e-08 9.81516e-08 1.01769e-07 1.05472e-07 1.09261e-07 1.21304e-10 1.58295e-10 2.02219e-10 2.53777e-10 3.13734e-10 3.82914e-10 4.62195e-10 5.52499e-10 6.54794e-10 7.70082e-10 8.99397e-10 1.0438e-09 1.20438e-09 1.38226e-09 1.57855e-09 1.79441e-09 2.031e-09 2.2895e-09 2.57108e-09 2.87696e-09 3.20832e-09 3.56638e-09 3.95234e-09 4.36743e-09 4.81286e-09 5.28983e-09 5.79957e-09 6.34329e-09 6.92218e-09 7.53746e-09 8.19031e-09 8.88194e-09 9.61351e-09 1.03862e-08 1.12012e-08 1.20597e-08 1.29627e-08 1.39115e-08 1.49072e-08 1.59509e-08 1.70437e-08 1.81867e-08 1.9381e-08 2.06277e-08 2.19278e-08 2.32825e-08 2.46927e-08 2.61595e-08 2.7684e-08 2.9267e-08 3.09098e-08 3.26132e-08 3.43783e-08 3.62059e-08 3.80972e-08 4.00531e-08 4.20744e-08 4.41623e-08 4.63175e-08 4.8541e-08 5.08339e-08 5.31968e-08 5.56309e-08 5.81369e-08 6.07158e-08 6.33685e-08 6.60958e-08 6.88986e-08 7.17779e-08 7.47343e-08 7.77689e-08 8.08824e-08 8.40758e-08 8.73497e-08 9.07052e-08 9.4143e-08 9.7664e-08 1.01269e-07 1.04959e-07 1.08734e-07 1.19629e-10 1.56134e-10 1.99494e-10 2.50407e-10 3.09634e-10 3.77994e-10 4.56361e-10 5.45654e-10 6.46834e-10 7.60898e-10 8.88876e-10 1.03183e-09 1.19083e-09 1.36701e-09 1.56147e-09 1.77536e-09 2.00985e-09 2.2661e-09 2.5453e-09 2.84864e-09 3.17732e-09 3.53254e-09 3.91552e-09 4.32746e-09 4.76958e-09 5.2431e-09 5.74922e-09 6.28915e-09 6.86409e-09 7.47526e-09 8.12384e-09 8.81103e-09 9.538e-09 1.03059e-08 1.1116e-08 1.19694e-08 1.28672e-08 1.38105e-08 1.48006e-08 1.58386e-08 1.69254e-08 1.80624e-08 1.92504e-08 2.04907e-08 2.17843e-08 2.31322e-08 2.45355e-08 2.59952e-08 2.75125e-08 2.90882e-08 3.07234e-08 3.24191e-08 3.41764e-08 3.5996e-08 3.78792e-08 3.98267e-08 4.18396e-08 4.39188e-08 4.60653e-08 4.82799e-08 5.05637e-08 5.29175e-08 5.53422e-08 5.78387e-08 6.04079e-08 6.30508e-08 6.57681e-08 6.85609e-08 7.14298e-08 7.43759e-08 7.73999e-08 8.05028e-08 8.36853e-08 8.69483e-08 9.02927e-08 9.37192e-08 9.72288e-08 1.00822e-07 1.045e-07 1.08263e-07 1.18154e-10 1.54231e-10 1.97095e-10 2.47439e-10 3.06023e-10 3.73661e-10 4.51222e-10 5.39622e-10 6.39817e-10 7.52801e-10 8.79599e-10 1.02127e-09 1.17888e-09 1.35355e-09 1.54639e-09 1.75854e-09 1.99117e-09 2.24543e-09 2.52252e-09 2.82361e-09 3.14991e-09 3.50263e-09 3.88295e-09 4.29211e-09 4.7313e-09 5.20175e-09 5.70465e-09 6.24122e-09 6.81267e-09 7.42019e-09 8.06498e-09 8.74822e-09 9.47111e-09 1.02348e-08 1.10405e-08 1.18893e-08 1.27824e-08 1.3721e-08 1.47061e-08 1.57389e-08 1.68205e-08 1.7952e-08 1.91345e-08 2.03691e-08 2.16568e-08 2.29988e-08 2.43959e-08 2.58494e-08 2.73602e-08 2.89294e-08 3.05579e-08 3.22468e-08 3.3997e-08 3.58096e-08 3.76855e-08 3.96256e-08 4.1631e-08 4.37025e-08 4.58412e-08 4.80479e-08 5.03236e-08 5.26691e-08 5.50855e-08 5.75735e-08 6.01342e-08 6.27683e-08 6.54768e-08 6.82605e-08 7.11203e-08 7.40571e-08 7.70717e-08 8.0165e-08 8.33379e-08 8.65911e-08 8.99255e-08 9.3342e-08 9.68414e-08 1.00425e-07 1.04092e-07 1.07845e-07 1.16845e-10 1.52542e-10 1.94964e-10 2.44804e-10 3.02816e-10 3.69812e-10 4.46657e-10 5.34262e-10 6.33582e-10 7.45604e-10 8.71352e-10 1.01187e-09 1.16825e-09 1.34158e-09 1.53297e-09 1.74358e-09 1.97454e-09 2.22704e-09 2.50224e-09 2.80133e-09 3.12551e-09 3.47598e-09 3.85394e-09 4.26061e-09 4.69719e-09 5.16489e-09 5.66492e-09 6.1985e-09 6.76681e-09 7.37107e-09 8.01247e-09 8.69219e-09 9.41142e-09 1.01713e-08 1.09731e-08 1.18179e-08 1.27068e-08 1.36411e-08 1.46217e-08 1.565e-08 1.67269e-08 1.78535e-08 1.90311e-08 2.02605e-08 2.1543e-08 2.28796e-08 2.42713e-08 2.57191e-08 2.72242e-08 2.87875e-08 3.041e-08 3.20928e-08 3.38367e-08 3.56429e-08 3.75123e-08 3.94458e-08 4.14444e-08 4.35091e-08 4.56408e-08 4.78404e-08 5.01088e-08 5.2447e-08 5.48559e-08 5.73363e-08 5.98893e-08 6.25155e-08 6.52161e-08 6.79917e-08 7.08433e-08 7.37718e-08 7.6778e-08 7.98628e-08 8.3027e-08 8.62714e-08 8.9597e-08 9.30045e-08 9.64947e-08 1.00069e-07 1.03727e-07 1.0747e-07 1.15689e-10 1.5105e-10 1.93083e-10 2.42476e-10 2.99982e-10 3.6641e-10 4.42622e-10 5.29525e-10 6.28069e-10 7.39241e-10 8.64057e-10 1.00357e-09 1.15884e-09 1.33098e-09 1.5211e-09 1.73033e-09 1.95982e-09 2.21074e-09 2.48427e-09 2.78158e-09 3.10388e-09 3.45236e-09 3.82822e-09 4.23267e-09 4.66693e-09 5.13219e-09 5.62967e-09 6.16058e-09 6.72612e-09 7.32747e-09 7.96586e-09 8.64244e-09 9.35842e-09 1.0115e-08 1.09132e-08 1.17544e-08 1.26396e-08 1.357e-08 1.45467e-08 1.55709e-08 1.66436e-08 1.77659e-08 1.8939e-08 2.0164e-08 2.14418e-08 2.27736e-08 2.41604e-08 2.56032e-08 2.71032e-08 2.86612e-08 3.02784e-08 3.19557e-08 3.36941e-08 3.54946e-08 3.73581e-08 3.92858e-08 4.12784e-08 4.33369e-08 4.54623e-08 4.76556e-08 4.99175e-08 5.22492e-08 5.46514e-08 5.7125e-08 5.96711e-08 6.22903e-08 6.49838e-08 6.77522e-08 7.05965e-08 7.35176e-08 7.65162e-08 7.95934e-08 8.27498e-08 8.59864e-08 8.9304e-08 9.27035e-08 9.61856e-08 9.97512e-08 1.03401e-07 1.07136e-07 1.14659e-10 1.49721e-10 1.91407e-10 2.40403e-10 2.97459e-10 3.63381e-10 4.39027e-10 5.25304e-10 6.23157e-10 7.33569e-10 8.57555e-10 9.9616e-10 1.15045e-09 1.32153e-09 1.5105e-09 1.71851e-09 1.94669e-09 2.1962e-09 2.46823e-09 2.76396e-09 3.08457e-09 3.43126e-09 3.80525e-09 4.20772e-09 4.6399e-09 5.10298e-09 5.59818e-09 6.1267e-09 6.68974e-09 7.2885e-09 7.92418e-09 8.59796e-09 9.31103e-09 1.00646e-08 1.08597e-08 1.16977e-08 1.25795e-08 1.35065e-08 1.44796e-08 1.55001e-08 1.65691e-08 1.76876e-08 1.88567e-08 2.00775e-08 2.13512e-08 2.26787e-08 2.40611e-08 2.54994e-08 2.69948e-08 2.85481e-08 3.01605e-08 3.18329e-08 3.35663e-08 3.53617e-08 3.722e-08 3.91423e-08 4.11295e-08 4.31826e-08 4.53024e-08 4.74899e-08 4.97461e-08 5.20719e-08 5.44681e-08 5.69356e-08 5.94755e-08 6.20885e-08 6.47755e-08 6.75375e-08 7.03752e-08 7.32896e-08 7.62815e-08 7.93518e-08 8.25013e-08 8.57309e-08 8.90413e-08 9.24335e-08 9.59083e-08 9.94665e-08 1.03109e-07 1.06836e-07 1.13744e-10 1.4854e-10 1.89917e-10 2.38559e-10 2.95215e-10 3.60686e-10 4.3583e-10 5.21549e-10 6.18786e-10 7.28522e-10 8.51768e-10 9.89567e-10 1.14299e-09 1.31312e-09 1.50107e-09 1.70798e-09 1.93498e-09 2.18325e-09 2.45394e-09 2.74825e-09 3.06735e-09 3.41246e-09 3.78476e-09 4.18547e-09 4.61579e-09 5.07692e-09 5.57008e-09 6.09646e-09 6.65728e-09 7.25372e-09 7.88698e-09 8.55825e-09 9.26872e-09 1.00195e-08 1.08119e-08 1.16469e-08 1.25258e-08 1.34497e-08 1.44197e-08 1.54369e-08 1.65025e-08 1.76175e-08 1.87831e-08 2.00003e-08 2.12702e-08 2.25938e-08 2.39723e-08 2.54066e-08 2.68979e-08 2.8447e-08 3.00551e-08 3.1723e-08 3.3452e-08 3.52428e-08 3.70965e-08 3.9014e-08 4.09964e-08 4.30445e-08 4.51593e-08 4.73417e-08 4.95927e-08 5.19131e-08 5.4304e-08 5.67661e-08 5.93004e-08 6.19077e-08 6.4589e-08 6.73452e-08 7.0177e-08 7.30854e-08 7.60713e-08 7.91354e-08 8.22786e-08 8.55019e-08 8.88059e-08 9.21916e-08 9.56598e-08 9.92113e-08 1.02847e-07 1.06567e-07 1.12927e-10 1.47486e-10 1.88588e-10 2.36915e-10 2.93213e-10 3.58283e-10 4.32978e-10 5.18199e-10 6.14887e-10 7.24018e-10 8.46603e-10 9.83682e-10 1.13632e-09 1.3056e-09 1.49265e-09 1.69857e-09 1.92453e-09 2.17167e-09 2.44117e-09 2.73421e-09 3.05197e-09 3.39565e-09 3.76645e-09 4.16557e-09 4.59423e-09 5.05361e-09 5.54494e-09 6.06941e-09 6.62823e-09 7.22259e-09 7.85369e-09 8.52271e-09 9.23084e-09 9.97924e-09 1.07691e-08 1.16015e-08 1.24778e-08 1.33989e-08 1.4366e-08 1.53803e-08 1.64428e-08 1.75547e-08 1.87171e-08 1.9931e-08 2.11976e-08 2.25178e-08 2.38927e-08 2.53234e-08 2.6811e-08 2.83563e-08 2.99605e-08 3.16246e-08 3.33495e-08 3.51362e-08 3.69857e-08 3.88989e-08 4.08769e-08 4.29206e-08 4.50309e-08 4.72087e-08 4.9455e-08 5.17707e-08 5.41567e-08 5.66139e-08 5.91432e-08 6.17455e-08 6.44217e-08 6.71726e-08 6.99991e-08 7.29021e-08 7.58825e-08 7.89411e-08 8.20787e-08 8.52963e-08 8.85946e-08 9.19744e-08 9.54367e-08 9.89822e-08 1.02612e-07 1.06326e-07 1.12206e-10 1.46555e-10 1.87413e-10 2.35462e-10 2.91444e-10 3.56158e-10 4.30457e-10 5.15237e-10 6.11438e-10 7.20034e-10 8.42034e-10 9.78475e-10 1.13042e-09 1.29896e-09 1.48519e-09 1.69025e-09 1.91527e-09 2.16142e-09 2.42986e-09 2.72177e-09 3.03833e-09 3.38075e-09 3.75021e-09 4.14793e-09 4.57511e-09 5.03294e-09 5.52265e-09 6.04542e-09 6.60246e-09 7.19498e-09 7.82415e-09 8.49117e-09 9.19722e-09 9.94346e-09 1.07311e-08 1.15612e-08 1.24351e-08 1.33537e-08 1.43183e-08 1.533e-08 1.63898e-08 1.7499e-08 1.86585e-08 1.98695e-08 2.1133e-08 2.24502e-08 2.3822e-08 2.52495e-08 2.67337e-08 2.82757e-08 2.98764e-08 3.1537e-08 3.32583e-08 3.50413e-08 3.68871e-08 3.87965e-08 4.07706e-08 4.28103e-08 4.49166e-08 4.70903e-08 4.93325e-08 5.16439e-08 5.40256e-08 5.64784e-08 5.90032e-08 6.1601e-08 6.42726e-08 6.70188e-08 6.98406e-08 7.27388e-08 7.57143e-08 7.8768e-08 8.19006e-08 8.51131e-08 8.84062e-08 9.17808e-08 9.52378e-08 9.8778e-08 1.02402e-07 1.06111e-07 1.11568e-10 1.45732e-10 1.86375e-10 2.34177e-10 2.89879e-10 3.54279e-10 4.28227e-10 5.12617e-10 6.08387e-10 7.1651e-10 8.37991e-10 9.73867e-10 1.1252e-09 1.29307e-09 1.47859e-09 1.68287e-09 1.90707e-09 2.15234e-09 2.41984e-09 2.71075e-09 3.02625e-09 3.36754e-09 3.73583e-09 4.1323e-09 4.55816e-09 5.01462e-09 5.50288e-09 6.02414e-09 6.57961e-09 7.17047e-09 7.79793e-09 8.46317e-09 9.16737e-09 9.91171e-09 1.06973e-08 1.15254e-08 1.23971e-08 1.33136e-08 1.42759e-08 1.52853e-08 1.63427e-08 1.74494e-08 1.86064e-08 1.98148e-08 2.10757e-08 2.23901e-08 2.37591e-08 2.51837e-08 2.6665e-08 2.8204e-08 2.98017e-08 3.14591e-08 3.31772e-08 3.49569e-08 3.67994e-08 3.87054e-08 4.06761e-08 4.27123e-08 4.48149e-08 4.6985e-08 4.92234e-08 5.15311e-08 5.39089e-08 5.63578e-08 5.88787e-08 6.14724e-08 6.41399e-08 6.68819e-08 6.96995e-08 7.25934e-08 7.55646e-08 7.86138e-08 8.1742e-08 8.49499e-08 8.82384e-08 9.16084e-08 9.50606e-08 9.8596e-08 1.02215e-07 1.05919e-07 1.10997e-10 1.44995e-10 1.85446e-10 2.33027e-10 2.88479e-10 3.52598e-10 4.2623e-10 5.10272e-10 6.05656e-10 7.13354e-10 8.34372e-10 9.69741e-10 1.12052e-09 1.2878e-09 1.47267e-09 1.67627e-09 1.89973e-09 2.1442e-09 2.41086e-09 2.70087e-09 3.01542e-09 3.35571e-09 3.72293e-09 4.11828e-09 4.54296e-09 4.99818e-09 5.48514e-09 6.00505e-09 6.5591e-09 7.1485e-09 7.77442e-09 8.43806e-09 9.1406e-09 9.88321e-09 1.06671e-08 1.14933e-08 1.23631e-08 1.32776e-08 1.42379e-08 1.52452e-08 1.63005e-08 1.74049e-08 1.85597e-08 1.97657e-08 2.10242e-08 2.23361e-08 2.37026e-08 2.51247e-08 2.66033e-08 2.81396e-08 2.97345e-08 3.13891e-08 3.31043e-08 3.48811e-08 3.67206e-08 3.86236e-08 4.05911e-08 4.26241e-08 4.47235e-08 4.68903e-08 4.91254e-08 5.14296e-08 5.3804e-08 5.62494e-08 5.87667e-08 6.13568e-08 6.40205e-08 6.67589e-08 6.95726e-08 7.24627e-08 7.54299e-08 7.84752e-08 8.15993e-08 8.48031e-08 8.80875e-08 9.14533e-08 9.49013e-08 9.84323e-08 1.02047e-07 1.05746e-07 1.10486e-10 1.44336e-10 1.84614e-10 2.31998e-10 2.87226e-10 3.51092e-10 4.24443e-10 5.08171e-10 6.0321e-10 7.10528e-10 8.31129e-10 9.66044e-10 1.11633e-09 1.28307e-09 1.46737e-09 1.67035e-09 1.89315e-09 2.13691e-09 2.40281e-09 2.69201e-09 3.00571e-09 3.3451e-09 3.71136e-09 4.1057e-09 4.52933e-09 4.98344e-09 5.46924e-09 5.98792e-09 6.5407e-09 7.12877e-09 7.75331e-09 8.41552e-09 9.11656e-09 9.85763e-09 1.06399e-08 1.14645e-08 1.23325e-08 1.32453e-08 1.42037e-08 1.52091e-08 1.62625e-08 1.7365e-08 1.85176e-08 1.97216e-08 2.09779e-08 2.22876e-08 2.36518e-08 2.50716e-08 2.65478e-08 2.80817e-08 2.96741e-08 3.13262e-08 3.30388e-08 3.4813e-08 3.66497e-08 3.85499e-08 4.05147e-08 4.25448e-08 4.46413e-08 4.68052e-08 4.90372e-08 5.13384e-08 5.37096e-08 5.61518e-08 5.86659e-08 6.12527e-08 6.39131e-08 6.66481e-08 6.94584e-08 7.2345e-08 7.53087e-08 7.83503e-08 8.14708e-08 8.46709e-08 8.79516e-08 9.13136e-08 9.47577e-08 9.82848e-08 1.01896e-07 1.05591e-07 1.10029e-10 1.43746e-10 1.83871e-10 2.31078e-10 2.86105e-10 3.49746e-10 4.22846e-10 5.06294e-10 6.01024e-10 7.08002e-10 8.2823e-10 9.62739e-10 1.11259e-09 1.27885e-09 1.46263e-09 1.66506e-09 1.88726e-09 2.13038e-09 2.3956e-09 2.68409e-09 2.99702e-09 3.33559e-09 3.701e-09 4.09444e-09 4.51712e-09 4.97023e-09 5.45499e-09 5.97258e-09 6.52422e-09 7.1111e-09 7.7344e-09 8.39531e-09 9.09502e-09 9.8347e-09 1.06155e-08 1.14386e-08 1.23051e-08 1.32163e-08 1.41731e-08 1.51768e-08 1.62284e-08 1.73291e-08 1.84799e-08 1.9682e-08 2.09364e-08 2.22441e-08 2.36063e-08 2.50239e-08 2.64981e-08 2.80297e-08 2.96199e-08 3.12697e-08 3.298e-08 3.47518e-08 3.65861e-08 3.84838e-08 4.0446e-08 4.24736e-08 4.45675e-08 4.67286e-08 4.8958e-08 5.12564e-08 5.36248e-08 5.60642e-08 5.85753e-08 6.11592e-08 6.38166e-08 6.65485e-08 6.93558e-08 7.22392e-08 7.51997e-08 7.82381e-08 8.13553e-08 8.45521e-08 8.78294e-08 9.11879e-08 9.46286e-08 9.81522e-08 1.0176e-07 1.05451e-07 1.09621e-10 1.4322e-10 1.83207e-10 2.30257e-10 2.85105e-10 3.48545e-10 4.21419e-10 5.04618e-10 5.99071e-10 7.05745e-10 8.25641e-10 9.59786e-10 1.10924e-09 1.27507e-09 1.4584e-09 1.66032e-09 1.88199e-09 2.12455e-09 2.38916e-09 2.677e-09 2.98925e-09 3.3271e-09 3.69174e-09 4.08437e-09 4.5062e-09 4.95842e-09 5.44224e-09 5.95886e-09 6.50947e-09 7.09528e-09 7.71747e-09 8.37723e-09 9.07574e-09 9.81417e-09 1.05937e-08 1.14154e-08 1.22806e-08 1.31903e-08 1.41457e-08 1.51478e-08 1.61979e-08 1.7297e-08 1.84462e-08 1.96465e-08 2.08992e-08 2.22051e-08 2.35655e-08 2.49812e-08 2.64534e-08 2.79831e-08 2.95713e-08 3.1219e-08 3.29272e-08 3.46969e-08 3.6529e-08 3.84245e-08 4.03845e-08 4.24097e-08 4.45013e-08 4.666e-08 4.88869e-08 5.11828e-08 5.35487e-08 5.59855e-08 5.8494e-08 6.10752e-08 6.373e-08 6.64591e-08 6.92636e-08 7.21442e-08 7.51018e-08 7.81373e-08 8.12516e-08 8.44454e-08 8.77196e-08 9.10751e-08 9.45126e-08 9.80331e-08 1.01637e-07 1.05326e-07 1.09257e-10 1.4275e-10 1.82614e-10 2.29523e-10 2.84211e-10 3.47471e-10 4.20144e-10 5.03119e-10 5.97325e-10 7.03728e-10 8.23325e-10 9.57146e-10 1.10624e-09 1.2717e-09 1.45461e-09 1.65609e-09 1.87728e-09 2.11933e-09 2.3834e-09 2.67066e-09 2.9823e-09 3.31949e-09 3.68345e-09 4.07536e-09 4.49642e-09 4.94784e-09 5.43082e-09 5.94656e-09 6.49626e-09 7.08111e-09 7.7023e-09 8.36102e-09 9.05845e-09 9.79577e-09 1.05741e-08 1.13947e-08 1.22586e-08 1.3167e-08 1.41211e-08 1.51219e-08 1.61705e-08 1.72682e-08 1.84159e-08 1.96147e-08 2.08658e-08 2.21701e-08 2.35288e-08 2.49429e-08 2.64134e-08 2.79413e-08 2.95277e-08 3.11736e-08 3.28799e-08 3.46476e-08 3.64778e-08 3.83713e-08 4.03292e-08 4.23523e-08 4.44418e-08 4.65983e-08 4.8823e-08 5.11167e-08 5.34803e-08 5.59148e-08 5.8421e-08 6.09998e-08 6.36521e-08 6.63788e-08 6.91807e-08 7.20588e-08 7.50139e-08 7.80468e-08 8.11583e-08 8.43494e-08 8.76209e-08 9.09736e-08 9.44084e-08 9.7926e-08 1.01527e-07 1.05213e-07 1.08931e-10 1.4233e-10 1.82084e-10 2.28867e-10 2.83412e-10 3.46511e-10 4.19005e-10 5.0178e-10 5.95765e-10 7.01924e-10 8.21255e-10 9.54786e-10 1.10357e-09 1.26868e-09 1.45122e-09 1.65231e-09 1.87307e-09 2.11466e-09 2.37824e-09 2.66499e-09 2.97607e-09 3.31269e-09 3.67603e-09 4.06729e-09 4.48767e-09 4.93837e-09 5.4206e-09 5.93555e-09 6.48443e-09 7.06842e-09 7.68872e-09 8.34651e-09 9.04297e-09 9.77928e-09 1.05566e-08 1.13761e-08 1.22389e-08 1.31462e-08 1.4099e-08 1.50986e-08 1.6146e-08 1.72423e-08 1.83887e-08 1.95862e-08 2.08359e-08 2.21388e-08 2.3496e-08 2.49085e-08 2.63775e-08 2.79038e-08 2.94886e-08 3.11328e-08 3.28374e-08 3.46034e-08 3.64318e-08 3.83235e-08 4.02795e-08 4.23008e-08 4.43884e-08 4.6543e-08 4.87657e-08 5.10574e-08 5.34189e-08 5.58513e-08 5.83554e-08 6.0932e-08 6.35822e-08 6.63066e-08 6.91063e-08 7.19821e-08 7.49348e-08 7.79653e-08 8.10745e-08 8.42632e-08 8.75322e-08 9.08824e-08 9.43146e-08 9.78297e-08 1.01428e-07 1.05111e-07 1.0864e-10 1.41954e-10 1.81609e-10 2.2828e-10 2.82697e-10 3.45652e-10 4.17984e-10 5.00581e-10 5.94368e-10 7.00309e-10 8.19402e-10 9.52672e-10 1.10117e-09 1.26598e-09 1.44819e-09 1.64891e-09 1.8693e-09 2.11048e-09 2.37363e-09 2.6599e-09 2.9705e-09 3.30659e-09 3.66938e-09 4.06005e-09 4.47982e-09 4.92988e-09 5.41143e-09 5.92568e-09 6.47382e-09 7.05704e-09 7.67653e-09 8.33349e-09 9.02908e-09 9.76449e-09 1.05409e-08 1.13594e-08 1.22212e-08 1.31274e-08 1.40792e-08 1.50777e-08 1.6124e-08 1.72192e-08 1.83643e-08 1.95606e-08 2.0809e-08 2.21106e-08 2.34665e-08 2.48777e-08 2.63452e-08 2.78701e-08 2.94534e-08 3.10961e-08 3.27992e-08 3.45636e-08 3.63904e-08 3.82805e-08 4.02349e-08 4.22546e-08 4.43403e-08 4.64932e-08 4.87141e-08 5.1004e-08 5.33637e-08 5.57942e-08 5.82964e-08 6.08711e-08 6.35192e-08 6.62417e-08 6.90394e-08 7.19131e-08 7.48637e-08 7.78921e-08 8.09991e-08 8.41856e-08 8.74524e-08 9.08003e-08 9.42303e-08 9.7743e-08 1.01339e-07 1.0502e-07 1.08379e-10 1.41617e-10 1.81185e-10 2.27754e-10 2.82058e-10 3.44884e-10 4.17072e-10 4.99508e-10 5.93118e-10 6.98865e-10 8.17744e-10 9.50781e-10 1.09903e-09 1.26356e-09 1.44547e-09 1.64588e-09 1.86592e-09 2.10674e-09 2.36949e-09 2.65535e-09 2.9655e-09 3.30113e-09 3.66342e-09 4.05357e-09 4.47279e-09 4.92228e-09 5.40322e-09 5.91683e-09 6.46431e-09 7.04684e-09 7.66561e-09 8.32182e-09 9.01664e-09 9.75123e-09 1.05268e-08 1.13444e-08 1.22053e-08 1.31107e-08 1.40615e-08 1.5059e-08 1.61042e-08 1.71984e-08 1.83424e-08 1.95376e-08 2.07848e-08 2.20853e-08 2.344e-08 2.48499e-08 2.63162e-08 2.78399e-08 2.94218e-08 3.10632e-08 3.27649e-08 3.45279e-08 3.63533e-08 3.8242e-08 4.01949e-08 4.2213e-08 4.42972e-08 4.64485e-08 4.86678e-08 5.09561e-08 5.33141e-08 5.57429e-08 5.82434e-08 6.08163e-08 6.34627e-08 6.61833e-08 6.89792e-08 7.1851e-08 7.47997e-08 7.78262e-08 8.09313e-08 8.41158e-08 8.73806e-08 9.07265e-08 9.41544e-08 9.7665e-08 1.01259e-07 1.04937e-07 1.08146e-10 1.41316e-10 1.80805e-10 2.27284e-10 2.81485e-10 3.44196e-10 4.16255e-10 4.98548e-10 5.91999e-10 6.97572e-10 8.16259e-10 9.49087e-10 1.09711e-09 1.26139e-09 1.44304e-09 1.64316e-09 1.86289e-09 2.10338e-09 2.36579e-09 2.65128e-09 2.96103e-09 3.29623e-09 3.65808e-09 4.04777e-09 4.46649e-09 4.91546e-09 5.39586e-09 5.90891e-09 6.45578e-09 7.03769e-09 7.65582e-09 8.31135e-09 9.00547e-09 9.73934e-09 1.05141e-08 1.1331e-08 1.21911e-08 1.30956e-08 1.40456e-08 1.50422e-08 1.60865e-08 1.71797e-08 1.83228e-08 1.95169e-08 2.07632e-08 2.20626e-08 2.34162e-08 2.48251e-08 2.62902e-08 2.78127e-08 2.93935e-08 3.10336e-08 3.27341e-08 3.44959e-08 3.632e-08 3.82073e-08 4.01589e-08 4.21756e-08 4.42584e-08 4.64083e-08 4.86262e-08 5.09129e-08 5.32695e-08 5.56968e-08 5.81957e-08 6.07671e-08 6.34118e-08 6.61308e-08 6.8925e-08 7.17952e-08 7.47422e-08 7.77669e-08 8.08703e-08 8.4053e-08 8.7316e-08 9.066e-08 9.4086e-08 9.75948e-08 1.01187e-07 1.04863e-07 1.07937e-10 1.41046e-10 1.80465e-10 2.26863e-10 2.80972e-10 3.43579e-10 4.15523e-10 4.97687e-10 5.90996e-10 6.96412e-10 8.14928e-10 9.47569e-10 1.09538e-09 1.25945e-09 1.44086e-09 1.64072e-09 1.86018e-09 2.10037e-09 2.36246e-09 2.64762e-09 2.95702e-09 3.29184e-09 3.65329e-09 4.04256e-09 4.46084e-09 4.90934e-09 5.38926e-09 5.90179e-09 6.44813e-09 7.02948e-09 7.64703e-09 8.30196e-09 8.99544e-09 9.72866e-09 1.05028e-08 1.13189e-08 1.21783e-08 1.3082e-08 1.40312e-08 1.50271e-08 1.60706e-08 1.71629e-08 1.83052e-08 1.94984e-08 2.07437e-08 2.20422e-08 2.33948e-08 2.48027e-08 2.62668e-08 2.77882e-08 2.9368e-08 3.1007e-08 3.27064e-08 3.4467e-08 3.62899e-08 3.81761e-08 4.01264e-08 4.21419e-08 4.42235e-08 4.63721e-08 4.85887e-08 5.08741e-08 5.32293e-08 5.56552e-08 5.81527e-08 6.07227e-08 6.3366e-08 6.60836e-08 6.88762e-08 7.17449e-08 7.46904e-08 7.77136e-08 8.08153e-08 8.39964e-08 8.72577e-08 9.06002e-08 9.40245e-08 9.75315e-08 1.01122e-07 1.04797e-07 1.0775e-10 1.40806e-10 1.80162e-10 2.26488e-10 2.80515e-10 3.4303e-10 4.1487e-10 4.9692e-10 5.90102e-10 6.95378e-10 8.13742e-10 9.46215e-10 1.09385e-09 1.25772e-09 1.43891e-09 1.63855e-09 1.85776e-09 2.09769e-09 2.3595e-09 2.64435e-09 2.95343e-09 3.28792e-09 3.64902e-09 4.03791e-09 4.45579e-09 4.90388e-09 5.38336e-09 5.89543e-09 6.4413e-09 7.02215e-09 7.63917e-09 8.29356e-09 8.98648e-09 9.71912e-09 1.04926e-08 1.13082e-08 1.21669e-08 1.30699e-08 1.40185e-08 1.50135e-08 1.60563e-08 1.71479e-08 1.82894e-08 1.94818e-08 2.07263e-08 2.20239e-08 2.33757e-08 2.47827e-08 2.62459e-08 2.77664e-08 2.93452e-08 3.09832e-08 3.26816e-08 3.44412e-08 3.62631e-08 3.81482e-08 4.00974e-08 4.21118e-08 4.41923e-08 4.63397e-08 4.85551e-08 5.08394e-08 5.31934e-08 5.5618e-08 5.81143e-08 6.06829e-08 6.3325e-08 6.60412e-08 6.88325e-08 7.16998e-08 7.46439e-08 7.76657e-08 8.0766e-08 8.39456e-08 8.72055e-08 9.05464e-08 9.39692e-08 9.74747e-08 1.01064e-07 1.04737e-07 1.07582e-10 1.40589e-10 1.79887e-10 2.26148e-10 2.80102e-10 3.42533e-10 4.14281e-10 4.96227e-10 5.89294e-10 6.94444e-10 8.12669e-10 9.44992e-10 1.09246e-09 1.25615e-09 1.43715e-09 1.63658e-09 1.85557e-09 2.09527e-09 2.35682e-09 2.6414e-09 2.9502e-09 3.28438e-09 3.64515e-09 4.0337e-09 4.45123e-09 4.89894e-09 5.37802e-09 5.88968e-09 6.43512e-09 7.01552e-09 7.63207e-09 8.28597e-09 8.97838e-09 9.71049e-09 1.04834e-08 1.12984e-08 1.21566e-08 1.3059e-08 1.40069e-08 1.50013e-08 1.60434e-08 1.71343e-08 1.82751e-08 1.94668e-08 2.07105e-08 2.20074e-08 2.33584e-08 2.47645e-08 2.62269e-08 2.77466e-08 2.93245e-08 3.09617e-08 3.26591e-08 3.44178e-08 3.62387e-08 3.81229e-08 4.00711e-08 4.20845e-08 4.4164e-08 4.63104e-08 4.85247e-08 5.08079e-08 5.31608e-08 5.55843e-08 5.80794e-08 6.06469e-08 6.32877e-08 6.60028e-08 6.87929e-08 7.16589e-08 7.46018e-08 7.76223e-08 8.07213e-08 8.38996e-08 8.71582e-08 9.04977e-08 9.39191e-08 9.74232e-08 1.01011e-07 1.04682e-07 1.07434e-10 1.40397e-10 1.79646e-10 2.2585e-10 2.79738e-10 3.42096e-10 4.13762e-10 4.95616e-10 5.88583e-10 6.93622e-10 8.11725e-10 9.43915e-10 1.09124e-09 1.25477e-09 1.4356e-09 1.63485e-09 1.85365e-09 2.09313e-09 2.35446e-09 2.6388e-09 2.94734e-09 3.28126e-09 3.64175e-09 4.03e-09 4.44721e-09 4.89458e-09 5.37332e-09 5.88461e-09 6.42967e-09 7.00967e-09 7.6258e-09 8.27927e-09 8.97123e-09 9.70287e-09 1.04753e-08 1.12898e-08 1.21474e-08 1.30493e-08 1.39967e-08 1.49905e-08 1.6032e-08 1.71223e-08 1.82624e-08 1.94535e-08 2.06966e-08 2.19928e-08 2.3343e-08 2.47485e-08 2.62102e-08 2.77291e-08 2.93062e-08 3.09426e-08 3.26392e-08 3.43971e-08 3.62172e-08 3.81005e-08 4.00479e-08 4.20604e-08 4.41389e-08 4.62844e-08 4.84978e-08 5.07799e-08 5.31319e-08 5.55544e-08 5.80485e-08 6.0615e-08 6.32548e-08 6.59687e-08 6.87577e-08 7.16227e-08 7.45644e-08 7.75838e-08 8.06816e-08 8.38588e-08 8.71161e-08 9.04545e-08 9.38747e-08 9.73775e-08 1.00964e-07 1.04634e-07 1.07297e-10 1.40221e-10 1.79424e-10 2.25575e-10 2.79403e-10 3.41694e-10 4.13283e-10 4.95054e-10 5.87928e-10 6.92864e-10 8.10855e-10 9.42922e-10 1.09011e-09 1.2535e-09 1.43418e-09 1.63326e-09 1.85187e-09 2.09116e-09 2.35228e-09 2.63641e-09 2.94471e-09 3.27838e-09 3.63861e-09 4.02658e-09 4.4435e-09 4.89057e-09 5.36898e-09 5.87994e-09 6.42464e-09 7.00427e-09 7.62003e-09 8.27309e-09 8.96464e-09 9.69584e-09 1.04679e-08 1.12819e-08 1.2139e-08 1.30404e-08 1.39872e-08 1.49806e-08 1.60215e-08 1.71113e-08 1.82508e-08 1.94413e-08 2.06838e-08 2.19793e-08 2.33289e-08 2.47337e-08 2.61947e-08 2.77129e-08 2.92894e-08 3.0925e-08 3.26209e-08 3.4378e-08 3.61974e-08 3.80798e-08 4.00264e-08 4.20381e-08 4.41158e-08 4.62604e-08 4.84729e-08 5.07542e-08 5.31052e-08 5.55269e-08 5.802e-08 6.05855e-08 6.32244e-08 6.59373e-08 6.87254e-08 7.15893e-08 7.453e-08 7.75483e-08 8.06451e-08 8.38212e-08 8.70774e-08 9.04146e-08 9.38337e-08 9.73354e-08 1.00921e-07 1.0459e-07 1.0718e-10 1.4007e-10 1.79234e-10 2.25339e-10 2.79116e-10 3.41349e-10 4.12874e-10 4.94573e-10 5.87367e-10 6.92215e-10 8.1011e-10 9.42072e-10 1.08915e-09 1.25241e-09 1.43295e-09 1.63189e-09 1.85035e-09 2.08947e-09 2.35042e-09 2.63435e-09 2.94246e-09 3.27591e-09 3.63591e-09 4.02365e-09 4.44032e-09 4.88713e-09 5.36526e-09 5.87593e-09 6.42033e-09 6.99964e-09 7.61507e-09 8.26778e-09 8.95897e-09 9.68981e-09 1.04614e-08 1.12751e-08 1.21318e-08 1.30328e-08 1.39791e-08 1.4972e-08 1.60125e-08 1.71017e-08 1.82408e-08 1.94307e-08 2.06727e-08 2.19677e-08 2.33168e-08 2.4721e-08 2.61814e-08 2.7699e-08 2.92748e-08 3.09099e-08 3.26051e-08 3.43616e-08 3.61802e-08 3.8062e-08 4.00079e-08 4.20189e-08 4.40958e-08 4.62397e-08 4.84515e-08 5.0732e-08 5.30822e-08 5.5503e-08 5.79954e-08 6.05601e-08 6.3198e-08 6.59102e-08 6.86973e-08 7.15604e-08 7.45001e-08 7.75175e-08 8.06134e-08 8.37885e-08 8.70438e-08 9.03801e-08 9.37982e-08 9.72989e-08 1.00883e-07 1.04551e-07 1.07068e-10 1.39926e-10 1.79051e-10 2.25113e-10 2.78841e-10 3.41018e-10 4.12481e-10 4.94111e-10 5.86829e-10 6.91593e-10 8.09396e-10 9.41257e-10 1.08822e-09 1.25137e-09 1.43178e-09 1.63058e-09 1.84889e-09 2.08785e-09 2.34863e-09 2.63239e-09 2.9403e-09 3.27355e-09 3.63334e-09 4.02084e-09 4.43728e-09 4.88383e-09 5.3617e-09 5.87209e-09 6.4162e-09 6.99521e-09 7.61032e-09 8.26271e-09 8.95356e-09 9.68404e-09 1.04553e-08 1.12685e-08 1.21249e-08 1.30254e-08 1.39714e-08 1.49638e-08 1.60039e-08 1.70926e-08 1.82312e-08 1.94207e-08 2.06621e-08 2.19566e-08 2.33051e-08 2.47088e-08 2.61687e-08 2.76857e-08 2.92609e-08 3.08954e-08 3.259e-08 3.43459e-08 3.61639e-08 3.8045e-08 3.99902e-08 4.20005e-08 4.40768e-08 4.622e-08 4.8431e-08 5.07108e-08 5.30603e-08 5.54803e-08 5.79719e-08 6.05358e-08 6.3173e-08 6.58843e-08 6.86706e-08 7.15328e-08 7.44717e-08 7.74883e-08 8.05832e-08 8.37575e-08 8.70119e-08 9.03472e-08 9.37643e-08 9.72641e-08 1.00847e-07 1.04514e-07 1.06977e-10 1.39808e-10 1.78903e-10 2.2493e-10 2.78617e-10 3.40749e-10 4.12162e-10 4.93735e-10 5.86391e-10 6.91087e-10 8.08814e-10 9.40593e-10 1.08747e-09 1.25052e-09 1.43083e-09 1.62951e-09 1.8477e-09 2.08653e-09 2.34717e-09 2.63078e-09 2.93853e-09 3.27162e-09 3.63123e-09 4.01855e-09 4.43478e-09 4.88113e-09 5.35879e-09 5.86895e-09 6.41282e-09 6.99158e-09 7.60643e-09 8.25855e-09 8.94912e-09 9.6793e-09 1.04503e-08 1.12632e-08 1.21192e-08 1.30194e-08 1.3965e-08 1.49571e-08 1.59968e-08 1.70852e-08 1.82233e-08 1.94124e-08 2.06534e-08 2.19475e-08 2.32956e-08 2.46988e-08 2.61582e-08 2.76747e-08 2.92495e-08 3.08834e-08 3.25776e-08 3.43329e-08 3.61504e-08 3.8031e-08 3.99756e-08 4.19853e-08 4.4061e-08 4.62036e-08 4.8414e-08 5.06932e-08 5.30421e-08 5.54615e-08 5.79524e-08 6.05157e-08 6.31522e-08 6.58628e-08 6.86484e-08 7.15099e-08 7.44481e-08 7.74639e-08 8.05582e-08 8.37317e-08 8.69853e-08 9.03198e-08 9.37362e-08 9.72352e-08 1.00818e-07 1.04484e-07 1.06884e-10 1.39688e-10 1.78751e-10 2.24742e-10 2.78388e-10 3.40475e-10 4.11836e-10 4.93352e-10 5.85944e-10 6.9057e-10 8.0822e-10 9.39915e-10 1.0867e-09 1.24965e-09 1.42985e-09 1.62842e-09 1.84649e-09 2.08519e-09 2.34569e-09 2.62915e-09 2.93674e-09 3.26966e-09 3.62909e-09 4.01622e-09 4.43226e-09 4.87839e-09 5.35583e-09 5.86576e-09 6.40939e-09 6.9879e-09 7.60249e-09 8.25433e-09 8.94462e-09 9.67451e-09 1.04452e-08 1.12578e-08 1.21134e-08 1.30133e-08 1.39586e-08 1.49503e-08 1.59896e-08 1.70776e-08 1.82154e-08 1.9404e-08 2.06446e-08 2.19383e-08 2.32859e-08 2.46887e-08 2.61476e-08 2.76637e-08 2.9238e-08 3.08714e-08 3.2565e-08 3.43198e-08 3.61368e-08 3.80168e-08 3.99609e-08 4.19701e-08 4.40452e-08 4.61872e-08 4.8397e-08 5.06756e-08 5.30238e-08 5.54426e-08 5.79329e-08 6.04955e-08 6.31313e-08 6.58413e-08 6.86262e-08 7.1487e-08 7.44245e-08 7.74396e-08 8.0533e-08 8.37058e-08 8.69587e-08 9.02925e-08 9.3708e-08 9.72062e-08 1.00788e-07 1.04453e-07 1.06814e-10 1.39598e-10 1.78637e-10 2.24601e-10 2.78217e-10 3.40269e-10 4.11591e-10 4.93064e-10 5.85608e-10 6.90182e-10 8.07775e-10 9.39407e-10 1.08612e-09 1.249e-09 1.42912e-09 1.62761e-09 1.84558e-09 2.08418e-09 2.34457e-09 2.62791e-09 2.93539e-09 3.26818e-09 3.62747e-09 4.01446e-09 4.43034e-09 4.87632e-09 5.35359e-09 5.86335e-09 6.40679e-09 6.98511e-09 7.5995e-09 8.25113e-09 8.9412e-09 9.67086e-09 1.04413e-08 1.12536e-08 1.21091e-08 1.30087e-08 1.39537e-08 1.49451e-08 1.59841e-08 1.70718e-08 1.82093e-08 1.93976e-08 2.06379e-08 2.19312e-08 2.32785e-08 2.4681e-08 2.61395e-08 2.76552e-08 2.92291e-08 3.08622e-08 3.25554e-08 3.43098e-08 3.61263e-08 3.80059e-08 3.99496e-08 4.19583e-08 4.4033e-08 4.61745e-08 4.83839e-08 5.0662e-08 5.30097e-08 5.5428e-08 5.79178e-08 6.04798e-08 6.31152e-08 6.58246e-08 6.8609e-08 7.14692e-08 7.44061e-08 7.74206e-08 8.05135e-08 8.36857e-08 8.6938e-08 9.02712e-08 9.36861e-08 9.71836e-08 1.00765e-07 1.04429e-07 1.06735e-10 1.39496e-10 1.78509e-10 2.24442e-10 2.78023e-10 3.40036e-10 4.11314e-10 4.92739e-10 5.85229e-10 6.89744e-10 8.07272e-10 9.38833e-10 1.08547e-09 1.24827e-09 1.4283e-09 1.62668e-09 1.84455e-09 2.08304e-09 2.34331e-09 2.62653e-09 2.93387e-09 3.26651e-09 3.62566e-09 4.01249e-09 4.4282e-09 4.874e-09 5.35109e-09 5.86065e-09 6.40389e-09 6.982e-09 7.59616e-09 8.24757e-09 8.93739e-09 9.66681e-09 1.0437e-08 1.12491e-08 1.21042e-08 1.30035e-08 1.39482e-08 1.49394e-08 1.59781e-08 1.70654e-08 1.82026e-08 1.93906e-08 2.06305e-08 2.19234e-08 2.32704e-08 2.46724e-08 2.61306e-08 2.76459e-08 2.92194e-08 3.0852e-08 3.25448e-08 3.42987e-08 3.61148e-08 3.7994e-08 3.99372e-08 4.19454e-08 4.40196e-08 4.61606e-08 4.83695e-08 5.06471e-08 5.29943e-08 5.5412e-08 5.79012e-08 6.04628e-08 6.30975e-08 6.58064e-08 6.85902e-08 7.14498e-08 7.43862e-08 7.74e-08 8.04923e-08 8.36639e-08 8.69155e-08 9.0248e-08 9.36623e-08 9.71592e-08 1.00739e-07 1.04404e-07 1.06682e-10 1.39428e-10 1.78423e-10 2.24336e-10 2.77894e-10 3.3988e-10 4.11129e-10 4.92521e-10 5.84975e-10 6.8945e-10 8.06934e-10 9.38448e-10 1.08504e-09 1.24777e-09 1.42774e-09 1.62606e-09 1.84386e-09 2.08227e-09 2.34246e-09 2.62559e-09 2.93284e-09 3.26539e-09 3.62443e-09 4.01115e-09 4.42675e-09 4.87243e-09 5.34938e-09 5.85881e-09 6.40191e-09 6.97987e-09 7.59389e-09 8.24513e-09 8.93479e-09 9.66403e-09 1.0434e-08 1.12459e-08 1.21009e-08 1.3e-08 1.39445e-08 1.49354e-08 1.59739e-08 1.7061e-08 1.81979e-08 1.93857e-08 2.06254e-08 2.1918e-08 2.32647e-08 2.46665e-08 2.61244e-08 2.76394e-08 2.92126e-08 3.08449e-08 3.25374e-08 3.42911e-08 3.61068e-08 3.79856e-08 3.99285e-08 4.19364e-08 4.40102e-08 4.61509e-08 4.83594e-08 5.06366e-08 5.29835e-08 5.54008e-08 5.78896e-08 6.04508e-08 6.30851e-08 6.57935e-08 6.85769e-08 7.14361e-08 7.4372e-08 7.73855e-08 8.04773e-08 8.36484e-08 8.68995e-08 9.02316e-08 9.36454e-08 9.71418e-08 1.00722e-07 1.04385e-07 1.06613e-10 1.39338e-10 1.7831e-10 2.24196e-10 2.77723e-10 3.39675e-10 4.10886e-10 4.92235e-10 5.84642e-10 6.89065e-10 8.06492e-10 9.37944e-10 1.08447e-09 1.24713e-09 1.42702e-09 1.62525e-09 1.84296e-09 2.08128e-09 2.34136e-09 2.62438e-09 2.93151e-09 3.26393e-09 3.62284e-09 4.00942e-09 4.42487e-09 4.8704e-09 5.34719e-09 5.85645e-09 6.39937e-09 6.97715e-09 7.59097e-09 8.24201e-09 8.93146e-09 9.66048e-09 1.04302e-08 1.12419e-08 1.20966e-08 1.29955e-08 1.39397e-08 1.49304e-08 1.59686e-08 1.70554e-08 1.81921e-08 1.93795e-08 2.06189e-08 2.19112e-08 2.32576e-08 2.4659e-08 2.61166e-08 2.76313e-08 2.92041e-08 3.08361e-08 3.25282e-08 3.42814e-08 3.60968e-08 3.79752e-08 3.99177e-08 4.19252e-08 4.39986e-08 4.61388e-08 4.83469e-08 5.06236e-08 5.297e-08 5.53869e-08 5.78753e-08 6.04359e-08 6.30698e-08 6.57777e-08 6.85606e-08 7.14193e-08 7.43547e-08 7.73676e-08 8.04589e-08 8.36294e-08 8.688e-08 9.02115e-08 9.36247e-08 9.71205e-08 1.007e-07 1.04363e-07 1.06569e-10 1.39282e-10 1.78239e-10 2.24108e-10 2.77616e-10 3.39546e-10 4.10733e-10 4.92055e-10 5.84432e-10 6.88822e-10 8.06213e-10 9.37625e-10 1.0841e-09 1.24672e-09 1.42656e-09 1.62474e-09 1.84239e-09 2.08064e-09 2.34066e-09 2.62361e-09 2.93066e-09 3.263e-09 3.62182e-09 4.00831e-09 4.42367e-09 4.8691e-09 5.34578e-09 5.85493e-09 6.39774e-09 6.9754e-09 7.58909e-09 8.24e-09 8.92931e-09 9.65819e-09 1.04278e-08 1.12393e-08 1.20939e-08 1.29926e-08 1.39366e-08 1.49271e-08 1.59651e-08 1.70518e-08 1.81882e-08 1.93755e-08 2.06147e-08 2.19068e-08 2.32529e-08 2.46541e-08 2.61115e-08 2.76259e-08 2.91985e-08 3.08302e-08 3.25221e-08 3.42751e-08 3.60902e-08 3.79684e-08 3.99105e-08 4.19177e-08 4.39908e-08 4.61308e-08 4.83386e-08 5.0615e-08 5.29611e-08 5.53777e-08 5.78657e-08 6.0426e-08 6.30595e-08 6.57671e-08 6.85497e-08 7.1408e-08 7.4343e-08 7.73556e-08 8.04465e-08 8.36167e-08 8.68669e-08 9.0198e-08 9.36108e-08 9.71062e-08 1.00685e-07 1.04348e-07 1.06527e-10 1.39227e-10 1.7817e-10 2.24023e-10 2.77513e-10 3.39422e-10 4.10585e-10 4.91882e-10 5.8423e-10 6.88588e-10 8.05945e-10 9.37319e-10 1.08376e-09 1.24633e-09 1.42612e-09 1.62425e-09 1.84184e-09 2.08003e-09 2.33999e-09 2.62287e-09 2.92985e-09 3.26211e-09 3.62085e-09 4.00726e-09 4.42252e-09 4.86785e-09 5.34444e-09 5.85349e-09 6.39618e-09 6.97372e-09 7.58729e-09 8.23808e-09 8.92726e-09 9.656e-09 1.04255e-08 1.12368e-08 1.20912e-08 1.29898e-08 1.39337e-08 1.4924e-08 1.59619e-08 1.70484e-08 1.81846e-08 1.93717e-08 2.06106e-08 2.19026e-08 2.32485e-08 2.46495e-08 2.61066e-08 2.76208e-08 2.91932e-08 3.08247e-08 3.25163e-08 3.42691e-08 3.60839e-08 3.79618e-08 3.99038e-08 4.19107e-08 4.39835e-08 4.61232e-08 4.83307e-08 5.06069e-08 5.29526e-08 5.53689e-08 5.78566e-08 6.04167e-08 6.30499e-08 6.57571e-08 6.85393e-08 7.13974e-08 7.4332e-08 7.73443e-08 8.04348e-08 8.36046e-08 8.68545e-08 9.01852e-08 9.35977e-08 9.70927e-08 1.00671e-07 1.04333e-07 1.06489e-10 1.39178e-10 1.78109e-10 2.23947e-10 2.7742e-10 3.39311e-10 4.10453e-10 4.91726e-10 5.84049e-10 6.88378e-10 8.05704e-10 9.37044e-10 1.08344e-09 1.24597e-09 1.42572e-09 1.62381e-09 1.84135e-09 2.07949e-09 2.33938e-09 2.6222e-09 2.92912e-09 3.26131e-09 3.61998e-09 4.00631e-09 4.42149e-09 4.86674e-09 5.34323e-09 5.85218e-09 6.39478e-09 6.97222e-09 7.58568e-09 8.23636e-09 8.92542e-09 9.65404e-09 1.04234e-08 1.12346e-08 1.20889e-08 1.29873e-08 1.3931e-08 1.49212e-08 1.59589e-08 1.70452e-08 1.81813e-08 1.93682e-08 2.0607e-08 2.18988e-08 2.32445e-08 2.46454e-08 2.61023e-08 2.76163e-08 2.91884e-08 3.08197e-08 3.25111e-08 3.42637e-08 3.60783e-08 3.7956e-08 3.98977e-08 4.19044e-08 4.3977e-08 4.61164e-08 4.83236e-08 5.05996e-08 5.29451e-08 5.53611e-08 5.78485e-08 6.04083e-08 6.30412e-08 6.57482e-08 6.85301e-08 7.13878e-08 7.43222e-08 7.73341e-08 8.04244e-08 8.35939e-08 8.68434e-08 9.01738e-08 9.3586e-08 9.70807e-08 1.00659e-07 1.04321e-07 1.06451e-10 1.3913e-10 1.78047e-10 2.23871e-10 2.77327e-10 3.392e-10 4.10321e-10 4.91571e-10 5.83868e-10 6.88169e-10 8.05464e-10 9.3677e-10 1.08313e-09 1.24562e-09 1.42533e-09 1.62337e-09 1.84086e-09 2.07894e-09 2.33878e-09 2.62154e-09 2.92839e-09 3.26052e-09 3.61911e-09 4.00536e-09 4.42047e-09 4.86563e-09 5.34204e-09 5.8509e-09 6.3934e-09 6.97073e-09 7.58409e-09 8.23465e-09 8.9236e-09 9.65211e-09 1.04213e-08 1.12324e-08 1.20866e-08 1.29849e-08 1.39284e-08 1.49185e-08 1.5956e-08 1.70422e-08 1.81781e-08 1.93648e-08 2.06035e-08 2.1895e-08 2.32406e-08 2.46413e-08 2.6098e-08 2.76118e-08 2.91838e-08 3.08149e-08 3.25061e-08 3.42584e-08 3.60728e-08 3.79503e-08 3.98918e-08 4.18982e-08 4.39706e-08 4.61098e-08 4.83167e-08 5.05924e-08 5.29377e-08 5.53535e-08 5.78406e-08 6.04001e-08 6.30328e-08 6.57395e-08 6.85211e-08 7.13785e-08 7.43126e-08 7.73242e-08 8.04142e-08 8.35834e-08 8.68326e-08 9.01627e-08 9.35746e-08 9.70689e-08 1.00647e-07 1.04308e-07 1.06425e-10 1.39097e-10 1.78005e-10 2.23819e-10 2.77264e-10 3.39124e-10 4.10231e-10 4.91464e-10 5.83744e-10 6.88026e-10 8.05299e-10 9.36582e-10 1.08292e-09 1.24538e-09 1.42506e-09 1.62306e-09 1.84052e-09 2.07857e-09 2.33837e-09 2.62109e-09 2.92789e-09 3.25997e-09 3.61852e-09 4.00472e-09 4.41977e-09 4.86487e-09 5.34121e-09 5.85001e-09 6.39244e-09 6.9697e-09 7.58299e-09 8.23348e-09 8.92234e-09 9.65077e-09 1.04199e-08 1.12309e-08 1.2085e-08 1.29831e-08 1.39266e-08 1.49166e-08 1.5954e-08 1.70401e-08 1.81759e-08 1.93625e-08 2.0601e-08 2.18925e-08 2.32379e-08 2.46384e-08 2.6095e-08 2.76087e-08 2.91805e-08 3.08115e-08 3.25025e-08 3.42547e-08 3.6069e-08 3.79463e-08 3.98876e-08 4.18939e-08 4.39661e-08 4.61051e-08 4.83119e-08 5.05874e-08 5.29325e-08 5.53481e-08 5.78351e-08 6.03943e-08 6.30268e-08 6.57333e-08 6.85148e-08 7.1372e-08 7.43059e-08 7.73173e-08 8.0407e-08 8.3576e-08 8.6825e-08 9.01549e-08 9.35665e-08 9.70606e-08 1.00638e-07 1.04299e-07 1.06297e-10 1.38931e-10 1.77797e-10 2.23561e-10 2.7695e-10 3.38747e-10 4.09784e-10 4.90941e-10 5.83135e-10 6.87323e-10 8.04493e-10 9.35664e-10 1.08188e-09 1.24421e-09 1.42375e-09 1.6216e-09 1.83889e-09 2.07677e-09 2.33639e-09 2.6189e-09 2.9255e-09 3.25736e-09 3.61568e-09 4.00163e-09 4.41643e-09 4.86126e-09 5.33732e-09 5.84582e-09 6.38795e-09 6.9649e-09 7.57785e-09 8.22799e-09 8.9165e-09 9.64455e-09 1.04133e-08 1.12239e-08 1.20776e-08 1.29753e-08 1.39184e-08 1.49079e-08 1.59448e-08 1.70304e-08 1.81658e-08 1.93519e-08 2.05899e-08 2.18808e-08 2.32258e-08 2.46257e-08 2.60818e-08 2.75949e-08 2.91661e-08 3.07965e-08 3.24869e-08 3.42385e-08 3.60521e-08 3.79288e-08 3.98695e-08 4.18751e-08 4.39466e-08 4.6085e-08 4.82911e-08 5.05659e-08 5.29103e-08 5.53252e-08 5.78114e-08 6.037e-08 6.30017e-08 6.57074e-08 6.84881e-08 7.13445e-08 7.42776e-08 7.72882e-08 8.03772e-08 8.35453e-08 8.67935e-08 9.01226e-08 9.35333e-08 9.70266e-08 1.00603e-07 1.04264e-07 ) ; boundaryField { inlet { type freestream; freestreamValue uniform 1e-05; value uniform 1e-05; } outlet { type freestream; freestreamValue uniform 1e-05; value nonuniform List<scalar> 100 ( 1.66297e-06 4.60994e-06 7.56702e-06 1.0609e-05 1.36277e-05 1.65636e-05 1.93762e-05 2.20329e-05 2.45041e-05 2.67613e-05 2.8776e-05 3.05194e-05 3.19622e-05 3.30748e-05 3.38283e-05 3.41954e-05 3.41529e-05 3.36851e-05 3.27879e-05 3.14765e-05 2.97911e-05 2.7805e-05 2.56261e-05 2.3394e-05 2.12606e-05 1.93438e-05 1.76509e-05 1.60485e-05 1.43461e-05 1.2387e-05 1.00065e-05 7.00091e-06 3.55231e-06 1.17569e-06 4.58473e-07 3.1405e-07 2.64098e-07 2.33133e-07 2.1019e-07 1.92435e-07 1.78404e-07 1.67144e-07 1.57984e-07 1.50447e-07 1.44182e-07 1.3893e-07 1.34489e-07 1.30712e-07 1.27477e-07 1.24694e-07 1.22287e-07 1.20196e-07 1.18374e-07 1.16781e-07 1.15384e-07 1.14155e-07 1.13073e-07 1.12116e-07 1.1127e-07 1.10519e-07 1.09853e-07 1.09261e-07 1.08734e-07 1.08263e-07 1.07845e-07 1.0747e-07 1.07136e-07 1.06836e-07 1.06567e-07 1.06326e-07 1.06111e-07 1.05919e-07 1.05746e-07 1.05591e-07 1.05451e-07 1.05326e-07 1.05213e-07 1.05111e-07 1.0502e-07 1.04937e-07 1.04863e-07 1.04797e-07 1.04737e-07 1.04682e-07 1.04634e-07 1.0459e-07 1.04551e-07 1.04514e-07 1.04484e-07 1.04453e-07 1.04429e-07 1.04404e-07 1.04385e-07 1.04363e-07 1.04348e-07 1.04333e-07 1.04321e-07 1.04308e-07 1.04299e-07 1.04264e-07 ) ; } top { type freestream; freestreamValue uniform 1e-05; value nonuniform List<scalar> 100 ( 2.60219e-22 7.53631e-20 4.92801e-18 8.3615e-17 6.6563e-16 3.33376e-15 1.25629e-14 3.97089e-14 1.11345e-13 2.84504e-13 6.70899e-13 1.46884e-12 2.99436e-12 5.6952e-12 1.01314e-11 1.69225e-11 2.66844e-11 3.99882e-11 5.73566e-11 7.92892e-11 1.06297e-10 1.38931e-10 1.77797e-10 2.23561e-10 2.7695e-10 3.38747e-10 4.09784e-10 4.90941e-10 5.83135e-10 6.87323e-10 8.04493e-10 9.35664e-10 1.08188e-09 1.24421e-09 1.42375e-09 1.6216e-09 1.83889e-09 2.07677e-09 2.33639e-09 2.6189e-09 2.9255e-09 3.25736e-09 3.61568e-09 4.00163e-09 4.41643e-09 4.86126e-09 5.33732e-09 5.84582e-09 6.38795e-09 6.9649e-09 7.57785e-09 8.22799e-09 8.9165e-09 9.64455e-09 1.04133e-08 1.12239e-08 1.20776e-08 1.29753e-08 1.39184e-08 1.49079e-08 1.59448e-08 1.70304e-08 1.81658e-08 1.93519e-08 2.05899e-08 2.18808e-08 2.32258e-08 2.46257e-08 2.60818e-08 2.75949e-08 2.91661e-08 3.07965e-08 3.24869e-08 3.42385e-08 3.60521e-08 3.79288e-08 3.98695e-08 4.18751e-08 4.39466e-08 4.6085e-08 4.82911e-08 5.05659e-08 5.29103e-08 5.53252e-08 5.78114e-08 6.037e-08 6.30017e-08 6.57074e-08 6.84881e-08 7.13445e-08 7.42776e-08 7.72882e-08 8.03772e-08 8.35453e-08 8.67935e-08 9.01226e-08 9.35333e-08 9.70266e-08 1.00603e-07 1.04264e-07 ) ; } plate { type nutUSpaldingWallFunction; Cmu 0.09; kappa 0.41; E 9.8; value nonuniform List<scalar> 80 ( 3.12944e-07 2.83828e-07 2.67941e-07 2.59681e-07 2.54198e-07 2.49729e-07 2.45908e-07 2.42643e-07 2.3984e-07 2.37401e-07 2.35243e-07 2.33309e-07 2.31556e-07 2.29953e-07 2.28477e-07 2.2711e-07 2.25837e-07 2.24646e-07 2.23529e-07 2.22476e-07 2.21481e-07 2.20538e-07 2.19642e-07 2.18789e-07 2.17976e-07 2.17198e-07 2.16453e-07 2.15739e-07 2.15053e-07 2.14393e-07 2.13757e-07 2.13144e-07 2.12552e-07 2.11979e-07 2.11426e-07 2.1089e-07 2.1037e-07 2.09866e-07 2.09377e-07 2.08902e-07 2.0844e-07 2.0799e-07 2.07552e-07 2.07126e-07 2.0671e-07 2.06305e-07 2.0591e-07 2.05524e-07 2.05147e-07 2.04779e-07 2.04419e-07 2.04067e-07 2.03722e-07 2.03385e-07 2.03055e-07 2.02732e-07 2.02415e-07 2.02105e-07 2.01801e-07 2.01502e-07 2.0121e-07 2.00922e-07 2.0064e-07 2.00363e-07 2.00091e-07 1.99824e-07 1.99561e-07 1.99303e-07 1.99049e-07 1.98799e-07 1.98554e-07 1.98311e-07 1.98073e-07 1.97837e-07 1.97608e-07 1.97372e-07 1.97162e-07 1.9689e-07 1.96778e-07 1.96372e-07 ) ; } front { type symmetryPlane; } defaultFaces { type empty; } } // ************************************************************************* //
[ "loganprice2369@gmail.com" ]
loganprice2369@gmail.com
9ee84efe59f489bd01d036079236670d639d96c4
877fff5bb313ccd23d1d01bf23b1e1f2b13bb85a
/app/src/main/cpp/dir7941/dir7942/dir8062/dir8063/dir12766/dir12767/dir13029/dir15097/dir18970/file19087.cpp
2448ea97cb8a2b80f776858dfb5893c6ccbb9ecc
[]
no_license
tgeng/HugeProject
829c3bdfb7cbaf57727c41263212d4a67e3eb93d
4488d3b765e8827636ce5e878baacdf388710ef2
refs/heads/master
2022-08-21T16:58:54.161627
2020-05-28T01:54:03
2020-05-28T01:54:03
267,468,475
0
0
null
null
null
null
UTF-8
C++
false
false
115
cpp
#ifndef file19087 #error "macro file19087 must be defined" #endif static const char* file19087String = "file19087";
[ "tgeng@google.com" ]
tgeng@google.com
1df0072a17e6ff87683027d68569a864524f2660
60bd79d18cf69c133abcb6b0d8b0a959f61b4d10
/libraries/ADG725/test/unit_test_001.cpp
8b9689532061ca663d5d595f1d9bcc480807954e
[ "MIT" ]
permissive
RobTillaart/Arduino
e75ae38fa6f043f1213c4c7adb310e91da59e4ba
48a7d9ec884e54fcc7323e340407e82fcc08ea3d
refs/heads/master
2023-09-01T03:32:38.474045
2023-08-31T20:07:39
2023-08-31T20:07:39
2,544,179
1,406
3,798
MIT
2022-10-27T08:28:51
2011-10-09T19:53:59
C++
UTF-8
C++
false
false
2,074
cpp
// // FILE: unit_test_001.cpp // AUTHOR: Rob Tillaart // DATE: 2023-07-24 // PURPOSE: unit tests for the ADG725 library // https://github.com/RobTillaart/ADG725 // https://github.com/Arduino-CI/arduino_ci/blob/master/REFERENCE.md // // supported assertions // ---------------------------- // assertEqual(expected, actual) // assertNotEqual(expected, actual) // assertLess(expected, actual) // assertMore(expected, actual) // assertLessOrEqual(expected, actual) // assertMoreOrEqual(expected, actual) // assertTrue(actual) // assertFalse(actual) // assertNull(actual) #include <ArduinoUnitTests.h> #include "Arduino.h" #include "ADG725.h" unittest_setup() { fprintf(stderr, "ADG725_LIB_VERSION: %s\n", (char *) ADG725_LIB_VERSION); } unittest_teardown() { } unittest(test_constructor) { ADG725 ADG(10, 11, 12); assertEqual(16, ADG.channelCount()); assertEqual(ADG725_ALLOFF, ADG.getChannelA()); assertEqual(ADG725_ALLOFF, ADG.getChannelB()); } unittest(test_constants) { assertEqual(0x80, ADG725_ALLOFF ); assertEqual(0x20, ADG725_A_ONLY ); assertEqual(0x40, ADG725_B_ONLY ); assertEqual(0x00, ADG725_AB_BOTH); } unittest(test_allOff) { ADG725 ADG(10, 11, 12); ADG.setChannelA(13); ADG.setChannelB(7); ADG.allOff(); assertEqual(ADG725_ALLOFF, ADG.getChannelA()); assertEqual(ADG725_ALLOFF, ADG.getChannelB()); } unittest(test_channel) { ADG725 ADG(10, 11, 12); for (int ch = 0; ch < 16; ch++) { ADG.setChannel(ch); assertEqual(ch, ADG.getChannelA()); assertEqual(ch, ADG.getChannelB()); } } unittest(test_channelA) { ADG725 ADG(10, 11, 12); ADG.setChannelB(7); for (int ch = 0; ch < 16; ch++) { ADG.setChannelA(ch); assertEqual(ch, ADG.getChannelA()); } assertEqual(7, ADG.getChannelB()); } unittest(test_channelB) { ADG725 ADG(10, 11, 12); ADG.setChannelA(13); for (int ch = 0; ch < 16; ch++) { ADG.setChannelB(ch); assertEqual(ch, ADG.getChannelB()); } assertEqual(13, ADG.getChannelA()); } unittest_main() // -- END OF FILE --
[ "rob.tillaart@gmail.com" ]
rob.tillaart@gmail.com
4520b60f95bd41db2aed57519be6ed9174e437e2
dc3b69a34eb9ec7eb0b985d02c7d11b2710c1144
/Emergency_Services/Vehicle.hpp
fd205ba6c67154627195fcabfa05bf8b4a4c49ae
[]
no_license
skmu104/Emergency-Service-Systems
81d4e319fcf7dcd497796d46da1fcc6a6b6820ad
ef093e94173ebb5c1d8c9c4cbd6b90063644de61
refs/heads/main
2023-03-19T03:32:19.661073
2021-03-09T23:23:35
2021-03-09T23:23:35
null
0
0
null
null
null
null
UTF-8
C++
false
false
378
hpp
#ifndef VEHICLE_HPP_ #define VEHICLE_HPP_ #include <string> class Vehicle { private: Vehicle& operator=(const Vehicle& other); Vehicle(const Vehicle& other); std::string vehicleName; int vehicleCapacity; public: Vehicle(const std::string &name, int capacity); int getCapacity(); std::string getName(); virtual ~Vehicle(); }; #endif /* VEHICLE_HPP_ */
[ "skmu104@aucklanduni.ac.nz" ]
skmu104@aucklanduni.ac.nz
a43bcfc86fa82fc586636c1299e571fdfc0238b2
8c0865237161d42bd1d6c3668da6f4cfa644048f
/Boggle.cpp
450eedcc842f0cd052768656d737dd32dfce58b7
[]
no_license
sjmodi1997/codes
e8ab28b529d19dbb5ada070eb3ba67d31b16f4d4
528eec76a7c64bd5fdf6f68f063886260a3a44fd
refs/heads/master
2021-05-18T20:00:18.654352
2020-06-23T17:05:19
2020-06-23T17:05:19
251,392,434
0
0
null
null
null
null
UTF-8
C++
false
false
2,558
cpp
#define MAX 26 #define M 1001 #define pb push_back vector<string> ans; set<string> st; bool vis[M][M]; struct TrieNode { bool isEnd; struct TrieNode* children[MAX]; }; TrieNode* getNode() { TrieNode* node = new TrieNode; node->isEnd = false; for(int i=0;i<MAX;i++) { node->children[i] = NULL; } return node; } void insertTrie(TrieNode* root, string word) { TrieNode* curr = root; for(int i=0;i<word.size();i++) { if(curr->children[word[i]-'a']==NULL) { curr->children[word[i]-'a'] = getNode(); } curr = curr->children[word[i]-'a']; } curr->isEnd = true; } bool isSafe(int i, int j, int rows, int cols) { if(i>=0 && i<rows && j>=0 && j<cols && !vis[i][j]) return true; return false; } int dx[4] = {0,1,0,-1}; int dy[4] = {-1,0,1,0}; void dfs(TrieNode* curr, int i, int j, vector<vector<char>> board, string str) { //cout << str << endl; if(curr->isEnd==true) { if(st.find(str)==st.end()) st.insert(str); } vis[i][j] = true; int rows = board.size(); int cols = board[0].size(); for(int k=0;k<4;k++) { int x = i+dx[k]; int y = j+dy[k]; if(isSafe(x,y,rows,cols)) { //cout << i << " " << j << " " << x << " " << y << endl; char c = board[x][y]; if(curr->children[c-'a']!=NULL) { dfs(curr->children[c-'a'],x,y,board,str+c); } } } vis[i][j] = false; } class Solution { public: vector<string> findWords(vector<vector<char>>& board, vector<string>& words) { int numOfWords = words.size(); int rows = board.size(); ans.clear(); st.clear(); if(numOfWords==0 || rows==0) { ans; } int cols = board[0].size(); TrieNode* root = getNode(); for(auto word:words) { insertTrie(root,word); } memset(vis,false,size(vis)); string str = ""; for(int i=0;i<rows;i++) { for(int j=0;j<cols;j++) { char c = board[i][j]; if(root->children[c-'a']!=NULL) { str += c; //cout << c << endl; dfs(root->children[c-'a'],i,j,board,str); } str = ""; } } for(auto s:st) { ans.pb(s); } return ans; } };
[ "noreply@github.com" ]
noreply@github.com
5465a33c9f61b20aeabd6ddffae6ac9620ea68f4
19672b98c0eb05f9b024332330028b93064947ca
/GUMBALLWORKING/src/rrPID.h
b347e00c6bb10cf4ac1aa662951e3fca73f92bde
[]
no_license
Rogue-2987/GumballCodeTest
0fb1b44a428c4f7378863824838c5af3a3527bb9
96ea9ba9e8f7f57af477131b66cf7b5a37051a8c
refs/heads/master
2021-05-15T09:22:18.880815
2017-12-09T15:49:38
2017-12-09T15:49:38
108,126,224
0
0
null
null
null
null
UTF-8
C++
false
false
722
h
/* * rrPID.h * * Created on: Feb 7, 2017 * Author: Corey */ #ifndef RRPID_H_ #define RRPID_H_ #include "WPILib.h" #include <string.h> class rrPID { public: float kp = 0.03; float ki = 0.001; float target = 0; float actual = 0; float errorSignal = 0; float integrationTotal = 0; float intLim = 0.15; float outputLim = 0.5; float outputCommand = 0; int IDnum = 1; rrPID(); virtual ~rrPID(); void init(int newIDnum, float newKp, float newKi); void setKpKi(float newKp, float newKi); void setLimits(float newIntLim, float newOutputLim); float controlOutput(float curTarget, float curActual); float motorOutput(); float debug(); }; #endif /* RRPID_H_ */
[ "ericolaf@hotmail.com" ]
ericolaf@hotmail.com
d2b8c4e1af87bd9bd990eda84419822fedfb0e95
ea401c3e792a50364fe11f7cea0f35f99e8f4bde
/released_plugins/v3d_plugins/bigneuron_AmosSironi_PrzemyslawGlowacki_SQBTree_plugin/libs/boost_1_58_0/boost/iostreams/skip.hpp
4c62d4528b59c718f7c9fb63d2b746b4f376d698
[ "MIT" ]
permissive
Vaa3D/vaa3d_tools
edb696aa3b9b59acaf83d6d27c6ae0a14bf75fe9
e6974d5223ae70474efaa85e1253f5df1814fae8
refs/heads/master
2023-08-03T06:12:01.013752
2023-08-02T07:26:01
2023-08-02T07:26:01
50,527,925
107
86
MIT
2023-05-22T23:43:48
2016-01-27T18:19:17
C++
UTF-8
C++
false
false
3,894
hpp
// (C) Copyright 2008 CodeRage, LLC (turkanis at coderage dot com) // (C) Copyright 2003-2007 Jonathan Turkanis // 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.) // See http://www.boost.org/libs/iostreams for documentation. // To do: handle bidirection streams and output-seekable components. #ifndef BOOST_IOSTREAMS_SKIP_HPP_INCLUDED #define BOOST_IOSTREAMS_SKIP_HPP_INCLUDED #if defined(_MSC_VER) && (_MSC_VER >= 1020) # pragma once #endif #include <boost/iostreams/char_traits.hpp> #include <boost/iostreams/detail/ios.hpp> // failure. #include <boost/iostreams/operations.hpp> #include <boost/iostreams/seek.hpp> #include <boost/iostreams/traits.hpp> #include <boost/mpl/and.hpp> #include <boost/mpl/bool.hpp> #include <boost/mpl/or.hpp> #include <boost/throw_exception.hpp> #include <boost/type_traits/is_convertible.hpp> namespace boost { namespace iostreams { namespace detail { template<typename Device> void skip(Device& dev, stream_offset off, mpl::true_) { iostreams::seek(dev, off, BOOST_IOS::cur); } template<typename Device> void skip(Device& dev, stream_offset off, mpl::false_) { // gcc 2.95 needs namespace qualification for char_traits. typedef typename char_type_of<Device>::type char_type; typedef iostreams::char_traits<char_type> traits_type; for (stream_offset z = 0; z < off; ) { typename traits_type::int_type c; if (traits_type::is_eof(c = iostreams::get(dev))) boost::throw_exception(BOOST_IOSTREAMS_FAILURE("bad skip offset")); if (!traits_type::would_block(c)) ++z; } } template<typename Filter, typename Device> void skip( Filter& flt, Device& dev, stream_offset off, BOOST_IOS::openmode which, mpl::true_ ) { boost::iostreams::seek(flt, dev, off, BOOST_IOS::cur, which); } template<typename Filter, typename Device> void skip( Filter& flt, Device& dev, stream_offset off, BOOST_IOS::openmode, mpl::false_ ) { typedef typename char_type_of<Device>::type char_type; char_type c; for (stream_offset z = 0; z < off; ) { std::streamsize amt; if ((amt = iostreams::read(flt, dev, &c, 1)) == -1) boost::throw_exception(BOOST_IOSTREAMS_FAILURE("bad skip offset")); if (amt == 1) ++z; } } } // End namespace detail. template<typename Device> void skip(Device& dev, stream_offset off) { typedef typename mode_of<Device>::type mode; typedef mpl::or_< is_convertible<mode, input_seekable>, is_convertible<mode, output_seekable> > can_seek; BOOST_STATIC_ASSERT( (can_seek::value || is_convertible<mode, input>::value) ); detail::skip(dev, off, can_seek()); } template<typename Filter, typename Device> void skip( Filter& flt, Device& dev, stream_offset off, BOOST_IOS::openmode which = BOOST_IOS::in | BOOST_IOS::out ) { typedef typename mode_of<Filter>::type filter_mode; typedef typename mode_of<Device>::type device_mode; typedef mpl::or_< mpl::and_< is_convertible<filter_mode, input_seekable>, is_convertible<device_mode, input_seekable> >, mpl::and_< is_convertible<filter_mode, output_seekable>, is_convertible<device_mode, output_seekable> > > can_seek; BOOST_STATIC_ASSERT( ( can_seek::value || (is_convertible<filter_mode, input>::value && is_convertible<device_mode, input>::value) ) ); detail::skip(flt, dev, off, which, can_seek()); } } } // End namespaces iostreams, boost. #endif // #ifndef BOOST_IOSTREAMS_SKIP_HPP_INCLUDED //------------------------//
[ "amos.sironi@gmail.com" ]
amos.sironi@gmail.com
85942b50c4d63b1cff64f7f9f81362fe8d3c1db2
13177b61c2ba0cc4f6a7ccac79479f886eb0cb81
/atomic/main.cpp
66c0d9504826c85b701ea7de1d95a9ea6b9e8510
[]
no_license
tinggengyan/CppStudy
6af58187aeb32b27f8d61199e5f6b50f97a5ebb9
6b7979209657ae19f700a27fd938341f8eaf8027
refs/heads/master
2023-03-16T07:49:55.447060
2023-03-08T09:41:37
2023-03-08T09:41:37
49,653,998
0
0
null
null
null
null
UTF-8
C++
false
false
522
cpp
#include <atomic> #include <iostream> #include <thread> std::atomic<int> count = {0}; struct A { float x; int y; long long z; }; int main() { std::atomic<A> atomicA; std::cout << std::boolalpha << atomicA.is_lock_free() << std::endl; std::thread t1([]() { count.fetch_add(1); }); std::thread t2([]() { count++; // 等价于 fetch_add count += 1; // 等价于 fetch_add }); t1.join(); t2.join(); std::cout << count << std::endl; };
[ "tinggengyan@gmail.com" ]
tinggengyan@gmail.com
d8c363ac88b6c9188239fffb48a648e333c61460
ce04ae08a1fb2a9e890b40a0cd89bd1ba18d1c7c
/main/main.ino
4f4bb0d610c060730d78a144ee52225460de9a19
[]
no_license
RomanGrekov/esp8266_weather_station
71f0635c1a63d6d7c46fc4dbd16c452230d0027c
cc1cd746e9754c9d574bbc7b2569ff2439cb59e2
refs/heads/master
2021-01-19T00:20:55.630279
2017-04-04T08:03:02
2017-04-04T08:03:02
87,158,469
0
0
null
null
null
null
UTF-8
C++
false
false
2,804
ino
/** * The MIT License (MIT) * * Copyright (c) 2016 by Daniel Eichhorn * Copyright (c) 2016 by Fabrice Weinberg * * 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 "TimeLib.h" #include "OLEDDisplay.h" // Include the correct display library // For a connection via I2C using Wire include //#include <Wire.h> // Only needed for Arduino 1.6.5 and earlier #include "SSD1306.h" // alias for `#include "SSD1306Wire.h"` // or #include "SH1106.h" alis for `#include "SH1106Wire.h"` // For a connection via I2C using brzo_i2c (must be installed) include // #include <brzo_i2c.h> // Only needed for Arduino 1.6.5 and earlier // #include "SSD1306Brzo.h" // #include "SH1106Brzo.h" // For a connection via SPI include // #include <SPI.h> // Only needed for Arduino 1.6.5 and earlier // #include "SSD1306Spi.h" // #include "SH1106SPi.h" // Include the UI lib // Include custom images #include "images.h" // Use the corresponding display class: // Initialize the OLED display using SPI // D5 -> CLK // D7 -> MOSI (DOUT) // D0 -> RES // D2 -> DC // D8 -> CS // SSD1306Spi display(D0, D2, D8); // or // SH1106Spi display(D0, D2); // Initialize the OLED display using brzo_i2c // D3 -> SDA // D5 -> SCL // SSD1306Brzo display(0x3c, D3, D5); // or // SH1106Brzo display(0x3c, D3, D5); // Initialize the OLED display using Wire library SSD1306 display(0x3c, D3, D4); // SH1106 display(0x3c, D3, D5); int screenW = 128; int screenH = 64; void setup() { Serial.begin(9600); Serial.println(); display.init(); display.flipScreenVertically(); display.setTextAlignment(TEXT_ALIGN_CENTER); display.setFont(ArialMT_Plain_16); } void loop() { display.clear(); display.drawString(45,0,"Hello world"); display.display(); delay(1000); }
[ "romang@tycoint.com" ]
romang@tycoint.com
8420269b51689578be610cb4f80553073c26504a
16ecae6b4d2cfc4605b68874faaea7c91e412f1b
/unit_tests/os_interface/linux/allocator_helper.cpp
73f15b3659960e8c59651bf56754b959446fd37c
[ "MIT", "LicenseRef-scancode-free-unknown" ]
permissive
maxwell-zhengxu/compute-runtime
70ffa07ed6e1fc30626aa77e6434642f7f73e723
74bc0afb035420aee4669611f34e18e56a6a29ca
refs/heads/master
2020-03-22T04:59:29.844367
2018-07-02T09:28:20
2018-07-02T14:11:12
139,534,594
1
0
MIT
2018-07-03T05:50:47
2018-07-03T05:50:47
null
UTF-8
C++
false
false
1,277
cpp
/* * Copyright (c) 2018, Intel Corporation * * 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 "runtime/os_interface/linux/allocator_helper.h" namespace OCLRT { size_t getSizeToMap() { return static_cast<size_t>(1 * 1024 * 1024u); } } // namespace OCLRT
[ "ocldev@intel.com" ]
ocldev@intel.com
17e987568b6e0676983affba13845d8b6f646c48
91a882547e393d4c4946a6c2c99186b5f72122dd
/Source/XPSP1/NT/inetsrv/msmq/src/admin/mqsnap/msgq.cpp
843179b3d53b5a8837b9ebfa883e4c7d938fd443
[]
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
2,128
cpp
// msgq.cpp : implementation file // #include "stdafx.h" #include "mqsnap.h" #include "resource.h" #include "mqPPage.h" #include "msgq.h" #include "msgq.tmh" #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static char THIS_FILE[] = __FILE__; #endif ///////////////////////////////////////////////////////////////////////////// // CMessageQueuesPage property page IMPLEMENT_DYNCREATE(CMessageQueuesPage, CMqPropertyPage) CMessageQueuesPage::CMessageQueuesPage() : CMqPropertyPage(CMessageQueuesPage::IDD) { //{{AFX_DATA_INIT(CMessageQueuesPage) m_szAdminFN = _T(""); m_szAdminPN = _T(""); m_szDestFN = _T(""); m_szDestPN = _T(""); m_szRespFN = _T(""); m_szRespPN = _T(""); m_szMultiDestFN = _T(""); //}}AFX_DATA_INIT } CMessageQueuesPage::~CMessageQueuesPage() { } void CMessageQueuesPage::DoDataExchange(CDataExchange* pDX) { CMqPropertyPage::DoDataExchange(pDX); //{{AFX_DATA_MAP(CMessageQueuesPage) DDX_Text(pDX, IDC_MSG_ADMIN_FN, m_szAdminFN); DDX_Text(pDX, IDC_MSG_ADMIN_PN, m_szAdminPN); DDX_Text(pDX, IDC_MSG_DST_FN, m_szDestFN); DDX_Text(pDX, IDC_MSG_DST_PN, m_szDestPN); DDX_Text(pDX, IDC_MSG_RSP_FN, m_szRespFN); DDX_Text(pDX, IDC_MSG_RSP_PN, m_szRespPN); DDX_Text(pDX, IDC_MSG_MULTIDST_FN, m_szMultiDestFN); //}}AFX_DATA_MAP } BEGIN_MESSAGE_MAP(CMessageQueuesPage, CMqPropertyPage) //{{AFX_MSG_MAP(CMessageQueuesPage) //}}AFX_MSG_MAP END_MESSAGE_MAP() ///////////////////////////////////////////////////////////////////////////// // CMessageQueuesPage message handlers BOOL CMessageQueuesPage::OnInitDialog() { // // PATCH!!!! // Defining this method to override the default OnInitDialog of // CMqPropertyPage, because it asserts. // // This function must be in the context of MMC.EXE so dont // put an "AFX_MANAGE_STATE(AfxGetStaticModuleState());" unless // it is bracketted inside a {....} statement. // // UpdateData( FALSE ); return TRUE; // return TRUE unless you set the focus to a control // EXCEPTION: OCX Property Pages should return FALSE }
[ "support@cryptoalgo.cf" ]
support@cryptoalgo.cf
a2d8ef3186897cc82895bc59b30ff9af7947697d
c9fde4576216a22e8d5711bbe97adda1aafa2f08
/inference-engine/thirdparty/clDNN/src/gpu/softmax_loss_grad_gpu.cpp
7bcb2f80de472f39548f242f8dfbc5d50045060b
[ "Apache-2.0", "BSL-1.0" ]
permissive
dliang0406/dldt
c703d6a837de3f996528fc8a9543f9530b23342c
d9b10abcebafe8b10ba81e09e433de7a366c072c
refs/heads/2018
2020-04-03T08:24:47.723353
2018-10-29T07:58:05
2018-10-29T07:58:05
155,132,108
3
1
Apache-2.0
2019-10-10T08:39:46
2018-10-29T01:03:54
C++
UTF-8
C++
false
false
2,967
cpp
/* // Copyright (c) 2018 Intel Corporation // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. */ #include "softmax_loss_grad_inst.h" #include "primitive_gpu_base.h" #include "implementation_map.h" #include "kernel_selector_helper.h" #include "softmax_loss_grad/softmax_loss_grad_kernel_selector.h" #include "softmax_loss_grad/softmax_loss_grad_kernel_base.h" #include "error_handler.h" namespace cldnn { namespace gpu { struct softmax_loss_grad_gpu : typed_primitive_gpu_impl<softmax_loss_grad> { using parent = typed_primitive_gpu_impl<softmax_loss_grad>; using parent::parent; static primitive_impl* create(const softmax_loss_grad_node& arg) { auto sm_params = get_default_params<kernel_selector::softmax_loss_grad_params>(arg); auto sm_optional_params = get_default_optional_params<kernel_selector::softmax_loss_grad_optional_params>(arg.get_program()); sm_params.gradient = true; sm_params.inputs.push_back(convert_data_tensor(arg.get_dependency(1).get_output_layout())); auto& kernel_selector = kernel_selector::softmax_loss_grad_kernel_selector::Instance(); auto best_kernels = kernel_selector.GetBestKernels(sm_params, sm_optional_params); CLDNN_ERROR_BOOL(arg.id(), "Best_kernel.empty()", best_kernels.empty(), "Cannot find a proper kernel with this arguments"); auto softmax_loss_grad_node = new softmax_loss_grad_gpu(arg, best_kernels[0]); return softmax_loss_grad_node; }; }; namespace { struct attach { attach() { auto val_fw = softmax_loss_grad_gpu::create; implementation_map<softmax_loss_grad>::add(std::make_tuple(engine_types::ocl, data_types::f32, format::yxfb), val_fw); implementation_map<softmax_loss_grad>::add(std::make_tuple(engine_types::ocl, data_types::f16, format::yxfb), val_fw); implementation_map<softmax_loss_grad>::add(std::make_tuple(engine_types::ocl, data_types::f32, format::bfyx), val_fw); implementation_map<softmax_loss_grad>::add(std::make_tuple(engine_types::ocl, data_types::f16, format::bfyx), val_fw); implementation_map<softmax_loss_grad>::add(std::make_tuple(engine_types::ocl, data_types::f32, format::byxf), val_fw); implementation_map<softmax_loss_grad>::add(std::make_tuple(engine_types::ocl, data_types::f16, format::byxf), val_fw); } ~attach() {} }; attach attach_impl; } } }
[ "openvino_pushbot@intel.com" ]
openvino_pushbot@intel.com
165449107db83048a4663d383c2b814c2621b980
b34437cd82a1ae972093ffab3b0c79a2b944c5b6
/src/UI/UIHelper.cpp
4d272f976aaa381fc900b470b4b717fde3426e8f
[]
no_license
huming2207/Hindle
e5adb485965255e6fc2b8ab065e28c8abbf736ee
f8d5fb6f577729980be21282d684948118f043d3
refs/heads/master
2021-04-29T20:29:37.388176
2018-03-01T10:12:56
2018-03-01T10:12:56
121,599,168
0
0
null
null
null
null
UTF-8
C++
false
false
1,671
cpp
// // Created by Ming Hu on 14/2/18. // #include <ctime> #include <Network/Ptv.h> #include "UIHelper.h" #include "Network/Weather.h" #include "Icons/IconSelector.h" void UIHelper::init(U8G2_IL3820_V2_296X128_F_4W_SW_SPI *main_u8g2) { u8g2 = main_u8g2; // U8g2 init u8g2->begin(); // Enable support for CJK fonts u8g2->enableUTF8Print(); // Draw vertical line between date/time area and event area u8g2->clearBuffer(); u8g2->drawVLine(112, 0, 128); } void UIHelper::updateSyncTime() { char timeBuf[60] = {'\0'}; // Get time struct std::tm curr_time; if(!getLocalTime(&curr_time)) { log_e("Failed to retrieve system time!"); } else { // Print date u8g2->setFont(u8g2_font_courR08_tf); u8g2->setCursor(0, 128); memset(&timeBuf, '\0', 60); strftime(timeBuf, 60, "%D %R", &curr_time); u8g2->print(timeBuf); } } void UIHelper::updateWeather(weather_t *weather) { // 3 hour forecast u8g2->setFont(u8g2_font_wqy12_t_gb2312); u8g2->setCursor(40,15); log_i("weather->brief: %s", weather->brief.c_str()); u8g2->printf("%s", weather->brief.c_str()); u8g2->setCursor(40,27); u8g2->printf("%d/%d°C %d%%", weather->lowTemp, weather->highTemp, weather->humidity); u8g2->drawXBM(0, 0, 32, 32, IconSelector::selectWeatherIcon(weather->statusCode)); u8g2->sendBuffer(); } void UIHelper::updatePtv(transport_t *transport) { char timeBuf[6] = {'\0'}; u8g2->setFont(u8g2_font_wqy12_t_gb2312); u8g2->setCursor(0,45); u8g2->printf("Platform %d", transport->firstPlatform); u8g2->setCursor(0,57); strftime(timeBuf, 6, "%R", &transport->firstTime); u8g2->print(timeBuf); u8g2->sendBuffer(); }
[ "huming2207@gmail.com" ]
huming2207@gmail.com
eaa008e43a36546a6204c1dd1ad0971c3e0b8ab2
e1fe38f9207053ffa1c68c050ed6dc5e63975cd4
/dynamic programming/pacific.cpp
a34d54b085740f7fe65f808d39925797109d0871
[]
no_license
dhruv2600/leet
3199c568d7296219336ede0da8238ecd094ac402
71e73e999fa689285e7a9bc2414e7536c72cdab7
refs/heads/master
2023-09-03T06:24:41.885912
2021-10-22T17:15:06
2021-10-22T17:15:06
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,035
cpp
class Solution { public: vector<vector<int>> pacificAtlantic(vector<vector<int>>& heights) { vector<vector<int>>dp(heights.size(),vector<int>(heights[0].size())); int row=heights.size(); int cols=heights[0].size(); for(int i=0;i<rows;i++) { dp[i][0]=1; //pacific dp[i][cols-1]=-1; //atlantic } for(int j=0;j<cols;j++) { dp[0][j]=1; // pacific dp[rows-1][j]=100; //atlantic } for(int i=1;i<rows;i++) { for(int j=1;j<cols;j++) { if(heights[i][j]>=heights[i+1][j] && dp[i+1][j]==100) dp[i][j]=100; if(heights[i][j]>=heights[i-1][j] && dp[i-1][j]==100) dp[i][j]=100; if(heights[i][j]>=heights[i][j+1] && dp[i+1][j]==100) dp[i][j]=100; if(heights[i][j]>=heights[i][j-1] && dp[i+1][j]==100) dp[i][j]=100; } } } };
[ "dhruvsharma2600@gmail.com" ]
dhruvsharma2600@gmail.com
414e4065ab21435c581eb5cf9fbfbfc55873ebde
f3b5c4a5ce869dee94c3dfa8d110bab1b4be698b
/controller/src/analytics/test/db_handler_mock.h
6d344be80904efe583680439ac2056a4a882eff4
[ "LicenseRef-scancode-warranty-disclaimer", "Apache-2.0" ]
permissive
pan2za/ctrl
8f808fb4da117fce346ff3d54f80b4e3d6b86b52
1d49df03ec4577b014b7d7ef2557d76e795f6a1c
refs/heads/master
2021-01-22T23:16:48.002959
2015-06-17T06:13:36
2015-06-17T06:13:36
37,454,161
2
0
null
null
null
null
UTF-8
C++
false
false
695
h
/* * Copyright (c) 2013 Juniper Networks, Inc. All rights reserved. */ #ifndef __DH_HANDLER_MOCK_H__ #define __DH_HANDLER_MOCK_H__ #include "sandesh/sandesh.h" #include "db_handler.h" #include <boost/bind.hpp> class DbHandlerMock : public DbHandler { public: DbHandlerMock(EventManager *evm, const DbHandler::TtlMap& ttl_map) : DbHandler(evm, boost::bind(&DbHandlerMock::StartDbifReinit, this), std::vector<std::string>(1, "127.0.0.1"), std::vector<int>(1, 9160), "localhost", ttl_map) { } void StartDbifReinit() { UnInit(-1); } MOCK_METHOD1(MessageTableInsert, void(const VizMsg *vmsgp)); }; #endif//__DH_HANDLER_MOCK_H__
[ "pan2za@live.com" ]
pan2za@live.com
371ac029f0f563d60db83f2704fc68ccd19318b9
45874c847c5a2fc4e89e05a7fc8ad9b63d8c4860
/sycl/test-e2e/ESIMD/lsc/Inputs/lsc_surf.hpp
5a953950b5666ec1f21127034abcf52713fffec0
[ "NCSA", "LLVM-exception", "Apache-2.0", "LicenseRef-scancode-unknown-license-reference" ]
permissive
intel/llvm
2f023cefec793a248d8a237267410f5e288116c5
a3d10cf63ddbdcc23712c45afd1b6b0a2ff5b190
refs/heads/sycl
2023-08-24T18:53:49.800759
2023-08-24T17:38:35
2023-08-24T17:38:35
166,008,577
1,050
735
NOASSERTION
2023-09-14T20:35:07
2019-01-16T09:05:33
null
UTF-8
C++
false
false
4,341
hpp
//==------------ lsc_surf.hpp - DPC++ ESIMD on-device test -----------------==// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// #include "../../esimd_test_utils.hpp" #include <algorithm> #include <cmath> #include <numeric> #include <sycl/ext/intel/esimd.hpp> #include <sycl/sycl.hpp> int main() { using namespace sycl; using namespace sycl::ext::intel::esimd; using namespace sycl::ext::intel::experimental::esimd; auto size = size_t{128}; auto constexpr SIMDSize = unsigned{4}; auto q = queue{esimd_test::ESIMDSelector, esimd_test::createExceptionHandler()}; auto device = q.get_device(); std::cout << "Device name: " << device.get_info<sycl::info::device::name>() << std::endl; auto vec_0 = std::vector<int>(size); auto vec_1 = std::vector<int>(size); auto vec_2 = std::vector<int>(size); auto vec_3 = std::vector<int>(size); auto vec_4 = std::vector<int>(size); std::iota(vec_0.begin(), vec_0.end(), 0); std::iota(vec_1.begin(), vec_1.end(), 0); std::iota(vec_2.begin(), vec_2.end(), 0); std::iota(vec_3.begin(), vec_3.end(), 0); std::iota(vec_4.begin(), vec_4.end(), 0); auto buf_0 = buffer{vec_0}; auto buf_1 = buffer{vec_1}; auto buf_2 = buffer{vec_2}; auto buf_3 = buffer{vec_3}; auto buf_4 = buffer{vec_4}; try { q.submit([&](handler &h) { auto access_0 = buf_0.template get_access<access::mode::read_write>(h); auto access_1 = buf_1.template get_access<access::mode::read_write>(h); auto access_2 = buf_2.template get_access<access::mode::read_write>(h); auto access_3 = buf_3.template get_access<access::mode::read_write>(h); auto access_4 = buf_4.template get_access<access::mode::read_write>(h); h.parallel_for<class SimplestKernel>( range<1>{size / SIMDSize}, [=](id<1> id) SYCL_ESIMD_KERNEL { auto offset = id[0] * SIMDSize * sizeof(int); auto offsets = simd<uint32_t, SIMDSize>(id * SIMDSize * sizeof(int), sizeof(int)); auto pred = simd_mask<SIMDSize>(1); auto add = simd<int, SIMDSize>(5); auto compare = simd<int, SIMDSize>(id * SIMDSize, 1); auto swap = compare * 2; lsc_prefetch<int, SIMDSize, lsc_data_size::default_size, cache_hint::cached, cache_hint::uncached>(access_0, offset); auto data_0 = lsc_block_load<int, SIMDSize>(access_0, offset); lsc_block_store<int, SIMDSize>(access_0, offset, data_0 * 2); lsc_prefetch<int, 1, lsc_data_size::default_size, cache_hint::cached, cache_hint::uncached>(access_1, offsets); auto data_1 = lsc_gather<int>(access_1, offsets); lsc_scatter<int>(access_1, offsets, data_1 * 2); lsc_atomic_update<atomic_op::inc, int>(access_2, offsets, pred); lsc_atomic_update<atomic_op::add, int>(access_3, offsets, add, pred); lsc_atomic_update<atomic_op::cmpxchg, int>(access_4, offsets, compare, swap, pred); }); }); q.wait(); buf_0.template get_access<access::mode::read_write>(); buf_1.template get_access<access::mode::read_write>(); buf_2.template get_access<access::mode::read_write>(); buf_3.template get_access<access::mode::read_write>(); buf_4.template get_access<access::mode::read_write>(); } catch (sycl::exception e) { std::cout << "SYCL exception caught: " << e.what(); return 1; } auto error = 0; for (auto i = 0; i != size; ++i) { error += std::abs(vec_0[i] - (i * 2)); error += std::abs(vec_1[i] - (i * 2)); error += std::abs(vec_2[i] - (i + 1)); error += std::abs(vec_3[i] - (i + 5)); error += std::abs(vec_4[i] - (i * 2)); } std::cout << (error != 0 ? "FAILED" : "passed") << std::endl; return error; }
[ "noreply@github.com" ]
noreply@github.com
0037400458305b3a805efdc4fb96faaac9665d34
3106397a9ede72b504719ee0088406dbcfff3e2f
/software/base/tractor/catkin_ws/devel/.private/piksi_rtk_msgs/include/piksi_rtk_msgs/TrackingState.h
e98d4b3b5c2b36ac2554964884b1b8783be88918
[ "MIT" ]
permissive
rje1974/Proyecto-Pochito
a9f60f711bd2f5187ca6173ed0b34df67389158f
3bb7cfd159a3c24e5cef3523d51e3ee2c54be7d0
refs/heads/master
2021-06-29T03:17:08.377252
2020-11-21T20:27:38
2020-11-21T20:27:38
192,087,298
2
1
null
null
null
null
UTF-8
C++
false
false
7,995
h
// Generated by gencpp from file piksi_rtk_msgs/TrackingState.msg // DO NOT EDIT! #ifndef PIKSI_RTK_MSGS_MESSAGE_TRACKINGSTATE_H #define PIKSI_RTK_MSGS_MESSAGE_TRACKINGSTATE_H #include <string> #include <vector> #include <map> #include <ros/types.h> #include <ros/serialization.h> #include <ros/builtin_message_traits.h> #include <ros/message_operations.h> #include <std_msgs/Header.h> namespace piksi_rtk_msgs { template <class ContainerAllocator> struct TrackingState_ { typedef TrackingState_<ContainerAllocator> Type; TrackingState_() : header() , state() , sat() , code() , cn0() { } TrackingState_(const ContainerAllocator& _alloc) : header(_alloc) , state(_alloc) , sat(_alloc) , code(_alloc) , cn0(_alloc) { (void)_alloc; } typedef ::std_msgs::Header_<ContainerAllocator> _header_type; _header_type header; typedef std::vector<uint8_t, typename ContainerAllocator::template rebind<uint8_t>::other > _state_type; _state_type state; typedef std::vector<uint16_t, typename ContainerAllocator::template rebind<uint16_t>::other > _sat_type; _sat_type sat; typedef std::vector<uint8_t, typename ContainerAllocator::template rebind<uint8_t>::other > _code_type; _code_type code; typedef std::vector<float, typename ContainerAllocator::template rebind<float>::other > _cn0_type; _cn0_type cn0; typedef boost::shared_ptr< ::piksi_rtk_msgs::TrackingState_<ContainerAllocator> > Ptr; typedef boost::shared_ptr< ::piksi_rtk_msgs::TrackingState_<ContainerAllocator> const> ConstPtr; }; // struct TrackingState_ typedef ::piksi_rtk_msgs::TrackingState_<std::allocator<void> > TrackingState; typedef boost::shared_ptr< ::piksi_rtk_msgs::TrackingState > TrackingStatePtr; typedef boost::shared_ptr< ::piksi_rtk_msgs::TrackingState const> TrackingStateConstPtr; // constants requiring out of line definition template<typename ContainerAllocator> std::ostream& operator<<(std::ostream& s, const ::piksi_rtk_msgs::TrackingState_<ContainerAllocator> & v) { ros::message_operations::Printer< ::piksi_rtk_msgs::TrackingState_<ContainerAllocator> >::stream(s, "", v); return s; } } // namespace piksi_rtk_msgs namespace ros { namespace message_traits { // BOOLTRAITS {'IsFixedSize': False, 'IsMessage': True, 'HasHeader': True} // {'sensor_msgs': ['/opt/ros/kinetic/share/sensor_msgs/cmake/../msg'], 'geometry_msgs': ['/opt/ros/kinetic/share/geometry_msgs/cmake/../msg'], 'std_msgs': ['/opt/ros/kinetic/share/std_msgs/cmake/../msg'], 'piksi_rtk_msgs': ['/root/catkin_ws/src/ethz_piksi_ros/piksi_rtk_msgs/msg']} // !!!!!!!!!!! ['__class__', '__delattr__', '__dict__', '__doc__', '__eq__', '__format__', '__getattribute__', '__hash__', '__init__', '__module__', '__ne__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__setattr__', '__sizeof__', '__str__', '__subclasshook__', '__weakref__', '_parsed_fields', 'constants', 'fields', 'full_name', 'has_header', 'header_present', 'names', 'package', 'parsed_fields', 'short_name', 'text', 'types'] template <class ContainerAllocator> struct IsFixedSize< ::piksi_rtk_msgs::TrackingState_<ContainerAllocator> > : FalseType { }; template <class ContainerAllocator> struct IsFixedSize< ::piksi_rtk_msgs::TrackingState_<ContainerAllocator> const> : FalseType { }; template <class ContainerAllocator> struct IsMessage< ::piksi_rtk_msgs::TrackingState_<ContainerAllocator> > : TrueType { }; template <class ContainerAllocator> struct IsMessage< ::piksi_rtk_msgs::TrackingState_<ContainerAllocator> const> : TrueType { }; template <class ContainerAllocator> struct HasHeader< ::piksi_rtk_msgs::TrackingState_<ContainerAllocator> > : TrueType { }; template <class ContainerAllocator> struct HasHeader< ::piksi_rtk_msgs::TrackingState_<ContainerAllocator> const> : TrueType { }; template<class ContainerAllocator> struct MD5Sum< ::piksi_rtk_msgs::TrackingState_<ContainerAllocator> > { static const char* value() { return "e7984ffda35159a5c451b134b22b20b1"; } static const char* value(const ::piksi_rtk_msgs::TrackingState_<ContainerAllocator>&) { return value(); } static const uint64_t static_value1 = 0xe7984ffda35159a5ULL; static const uint64_t static_value2 = 0xc451b134b22b20b1ULL; }; template<class ContainerAllocator> struct DataType< ::piksi_rtk_msgs::TrackingState_<ContainerAllocator> > { static const char* value() { return "piksi_rtk_msgs/TrackingState"; } static const char* value(const ::piksi_rtk_msgs::TrackingState_<ContainerAllocator>&) { return value(); } }; template<class ContainerAllocator> struct Definition< ::piksi_rtk_msgs::TrackingState_<ContainerAllocator> > { static const char* value() { return "# The tracking message returns a variable-length array of tracking channel states. It reports status and\n\ # carrier-to-noise density measurements for all tracked satellites.\n\ \n\ Header header\n\ \n\ uint8[] state # Status of tracking channel.\n\ uint16[] sat # Constellation-specific satellite identifier.\n\ uint8[] code # Signal constellation, band and code.\n\ float32[] cn0 # Carrier-to-noise density.\n\ \n\ ================================================================================\n\ MSG: std_msgs/Header\n\ # Standard metadata for higher-level stamped data types.\n\ # This is generally used to communicate timestamped data \n\ # in a particular coordinate frame.\n\ # \n\ # sequence ID: consecutively increasing ID \n\ uint32 seq\n\ #Two-integer timestamp that is expressed as:\n\ # * stamp.sec: seconds (stamp_secs) since epoch (in Python the variable is called 'secs')\n\ # * stamp.nsec: nanoseconds since stamp_secs (in Python the variable is called 'nsecs')\n\ # time-handling sugar is provided by the client library\n\ time stamp\n\ #Frame this data is associated with\n\ # 0: no frame\n\ # 1: global frame\n\ string frame_id\n\ "; } static const char* value(const ::piksi_rtk_msgs::TrackingState_<ContainerAllocator>&) { return value(); } }; } // namespace message_traits } // namespace ros namespace ros { namespace serialization { template<class ContainerAllocator> struct Serializer< ::piksi_rtk_msgs::TrackingState_<ContainerAllocator> > { template<typename Stream, typename T> inline static void allInOne(Stream& stream, T m) { stream.next(m.header); stream.next(m.state); stream.next(m.sat); stream.next(m.code); stream.next(m.cn0); } ROS_DECLARE_ALLINONE_SERIALIZER }; // struct TrackingState_ } // namespace serialization } // namespace ros namespace ros { namespace message_operations { template<class ContainerAllocator> struct Printer< ::piksi_rtk_msgs::TrackingState_<ContainerAllocator> > { template<typename Stream> static void stream(Stream& s, const std::string& indent, const ::piksi_rtk_msgs::TrackingState_<ContainerAllocator>& v) { s << indent << "header: "; s << std::endl; Printer< ::std_msgs::Header_<ContainerAllocator> >::stream(s, indent + " ", v.header); s << indent << "state[]" << std::endl; for (size_t i = 0; i < v.state.size(); ++i) { s << indent << " state[" << i << "]: "; Printer<uint8_t>::stream(s, indent + " ", v.state[i]); } s << indent << "sat[]" << std::endl; for (size_t i = 0; i < v.sat.size(); ++i) { s << indent << " sat[" << i << "]: "; Printer<uint16_t>::stream(s, indent + " ", v.sat[i]); } s << indent << "code[]" << std::endl; for (size_t i = 0; i < v.code.size(); ++i) { s << indent << " code[" << i << "]: "; Printer<uint8_t>::stream(s, indent + " ", v.code[i]); } s << indent << "cn0[]" << std::endl; for (size_t i = 0; i < v.cn0.size(); ++i) { s << indent << " cn0[" << i << "]: "; Printer<float>::stream(s, indent + " ", v.cn0[i]); } } }; } // namespace message_operations } // namespace ros #endif // PIKSI_RTK_MSGS_MESSAGE_TRACKINGSTATE_H
[ "juaneduardoriva@gmail.com" ]
juaneduardoriva@gmail.com
23f47555f166d526350b3afd26ec2a6c2a7ca2d8
b4660cc8fa3ce045508105fa52228a98fa19a87d
/src/unix/ibus/key_translator.h
162ae079c2177bc7f160167bfe885ac16bcae4f8
[ "BSD-3-Clause", "LicenseRef-scancode-unicode", "LicenseRef-scancode-public-domain" ]
permissive
hnakamur/mozc-deb
81e9b561863e57da73aa9ba90d24ff5d0bca480b
a0d6db21786ae7fc54806714cbeca6c7c74cbd36
refs/heads/master
2021-04-15T09:32:03.635220
2018-05-04T10:09:23
2018-05-04T10:09:23
126,575,465
0
1
null
null
null
null
UTF-8
C++
false
false
4,652
h
// Copyright 2010-2016, Google Inc. // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * 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 Google Inc. 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 MOZC_UNIX_IBUS_KEY_TRANSLATOR_H_ #define MOZC_UNIX_IBUS_KEY_TRANSLATOR_H_ #include <map> #include "base/port.h" #include "protocol/commands.pb.h" #include "unix/ibus/ibus_header.h" namespace mozc { namespace ibus { // This class is responsible for converting key code sent from ibus-daemon // (defined in /usr/include/ibus-1.0/ibuskeysyms.h) to a KeyEvent object for // the input of session_interface. class KeyTranslator { public: KeyTranslator(); virtual ~KeyTranslator(); // Converts ibus keycode to Mozc key code and stores them on |out_event|. // Returns true if ibus keycode is successfully converted to Mozc key code. bool Translate(guint keyval, guint keycode, guint modifiers, config::Config::PreeditMethod method, bool layout_is_jp, commands::KeyEvent *out_event) const; private: typedef map<guint, commands::KeyEvent::SpecialKey> SpecialKeyMap; typedef map<guint, commands::KeyEvent::ModifierKey> ModifierKeyMap; typedef map<guint, pair<string, string> > KanaMap; // Returns true iff key is modifier key such as SHIFT, ALT, or CAPSLOCK. bool IsModifierKey(guint keyval, guint keycode, guint modifiers) const; // Returns true iff key is special key such as ENTER, ESC, or PAGE_UP. bool IsSpecialKey(guint keyval, guint keycode, guint modifiers) const; // Returns true iff |keyval| is a key with a kana assigned. bool IsKanaAvailable(guint keyval, guint keycode, guint modifiers, bool layout_is_jp, string *out) const; // Returns true iff key is ASCII such as '0', 'A', or '!'. static bool IsAscii(guint keyval, guint keycode, guint modifiers); // Returns true iff key is printable. static bool IsPrintable(guint keyval, guint keycode, guint modifiers); // Returns true iff key is HiraganaKatakana with shift modifier. static bool IsHiraganaKatakanaKeyWithShift(guint keyval, guint keycode, guint modifiers); // Initializes private fields. void Init(); // Stores a mapping from ibus keys to Mozc's special keys. SpecialKeyMap special_key_map_; // Stores a mapping from ibus modifier keys to Mozc's modifier keys. ModifierKeyMap modifier_key_map_; // Stores a mapping from ibus modifier masks to Mozc's modifier keys. ModifierKeyMap modifier_mask_map_; // Stores a mapping from ASCII to Kana character. For example, ASCII character // '4' is mapped to Japanese 'Hiragana Letter U' (without Shift modifier) and // 'Hiragana Letter Small U' (with Shift modifier). KanaMap kana_map_jp_; // mapping for JP keyboard. KanaMap kana_map_us_; // mapping for US keyboard. DISALLOW_COPY_AND_ASSIGN(KeyTranslator); }; } // namespace ibus } // namespace mozc #endif // MOZC_UNIX_IBUS_KEY_TRANSLATOR_H_
[ "hnakamur@gmail.com" ]
hnakamur@gmail.com
e3d82593178c98fd363dafbe5cbccef1a05966e8
e6b5d019e565ce55b2febfbe21b82c2a21723385
/TheWaySoFar-Training/2015-03-21/G.cpp
af2100a00c4e89dba229bd8a1049e3e677925129
[]
no_license
Sd-Invol/shoka
a628f7e8544d8eb110014316ab16ef3aed7b7433
1281cb43501d9ef127a2c67aebfba1905229502b
refs/heads/master
2023-06-06T07:23:09.496837
2023-05-13T14:46:23
2023-05-13T14:46:23
13,319,608
37
17
null
null
null
null
UTF-8
C++
false
false
3,947
cpp
#include <bits/stdc++.h> using namespace std; typedef long long LL; const int N = 20005; int n , m , pre[N] , mcnt; struct arc { int x , f , next; }e[N * 200]; int s , t; inline void addarc(int x , int y , int z) { //printf("%d %d\n" , x , y); e[mcnt] = (arc) {y , z , pre[x]} , pre[x] = mcnt ++; e[mcnt] = (arc) {x , 0 , pre[y]} , pre[y] = mcnt ++; } int d[N] , cur[N]; bool BFS() { queue<int> Q; memset(d , -1 , sizeof(d)); Q.push(s) , d[s] = 1; while (!Q.empty()) { int x = Q.front(); Q.pop(); for (int i = pre[x] ; ~i ; i = e[i].next) { int y = e[i].x; if (e[i].f && !~d[y]) { d[y] = d[x] + 1; if (y == t) return 1; Q.push(y); } } } return 0; } int DFS(int x , int flow = 1 << 30) { if (!flow || x == t) return flow; int u , sum = 0; for (int& i = cur[x] ; ~i ; i = e[i].next) { int y = e[i].x; if (d[y] == d[x] + 1 && (u = DFS(y , min(flow , e[i].f)))) { sum += u , flow -= u; e[i].f -= u , e[i ^ 1].f += u; if (!flow) break; } } if (!sum) d[x] = -1; return sum; } int R , C; char str[105][105]; int bel[26]; int main() { int i , j , x , y , z; scanf("%d%d",&R , &C); for (i = 1 ; i <= R ; ++ i) scanf("%s" , str[i] + 1); memset(pre , -1 , sizeof(pre)); int num = 0 , sum = 0 , cnt = R * C; s = R * C + 26 + 1 , t = s + 1; for (i = 1 ; i <= R ; ++ i) for (j = 1 ; j <= C ; ++ j) { ++ num; if (~(i + j) & 1) continue; if (str[i][j] == '.') continue; if (i > 1 && str[i - 1][j] != '.') addarc(num , num - C , 1); if (i < R && str[i + 1][j] != '.') addarc(num , num + C , 1); if (j > 1 && str[i][j - 1] != '.') addarc(num , num - 1 , 1); if (j < C && str[i][j + 1] != '.') addarc(num , num + 1 , 1); } num = 0; int tmp = mcnt; for (i = 1 ; i <= R ; ++ i) { for (j = 1 ; j <= C ; ++ j) { ++ num; if (str[i][j] == '*') { ++ sum; if ((i + j) & 1) addarc(s , num , 1); else addarc(num , t , 1); } if (isupper(str[i][j])) { x = str[i][j] - 'A' + 1; str[i][j] = '@'; if (!bel[x]) { ++ sum; if ((i + j) & 1) { addarc(s , cnt + x , 1); bel[x] = 1; } else { addarc(cnt + x , t , 1); bel[x] = 2; } } if (bel[x] == 1) addarc(cnt + x , num , 1); else addarc(num , cnt + x , 1); } } } int res = 0; while (BFS()) { memcpy(cur , pre , sizeof(pre)); res += DFS(s); } if (res + res != sum) { puts("No"); return 0; } puts("Yes"); for (i = 0 ; i < tmp ; i += 2) { if (!e[i].f) { if ((e[i].x - 1) / C == (e[i ^ 1].x - 1) / C) { z = (e[i].x - 1) / C + 1; x = (e[i].x - 1) % C + 1; y = (e[i ^ 1].x - 1) % C + 1; if (x > y) swap(x , y); str[z][x] = '<'; str[z][y] = '>'; } else { z = (e[i].x - 1) % C + 1; x = (e[i].x - 1) / C + 1; y = (e[i ^ 1].x - 1) / C + 1; if (x > y) swap(x , y); str[x][z] = '^'; str[y][z] = 'v'; } } } for (i = 1 ; i <= R ; ++ i) puts(str[i] + 1); return 0; }
[ "Sd.Invol@gmail.com" ]
Sd.Invol@gmail.com
1fd4f8461c4f28b36106447254c654bc35043839
e68b74af93599ec07fb81185b79740aa7f99ac54
/elodonto/2_amoba/fiveinarowchecker.cpp
530ac5cb8cd167c2d85f2fd7e026657bf955596c
[]
no_license
schaumb/p12_2016
5d7b40dcc1fe1e5e0a59fbd03806956366563bb0
59e749f692868da016d9b9c340bfbbab157e6b54
refs/heads/master
2021-05-01T00:41:59.100913
2016-12-12T13:16:51
2016-12-12T13:16:51
68,203,594
0
0
null
null
null
null
UTF-8
C++
false
false
4,540
cpp
#include "fiveinarowchecker.h" #include <algorithm> FiveInARowChecker::FiveInARowChecker(std::istream&& file) : fields( readFieldsFromFile(std::move(file)) ) , countOfElements{ {FieldType::X, 0}, {FieldType::O, 0} } , winner{ FieldType::UNKNOWN } , forceEnd{ } {} std::vector<std::vector<FiveInARowChecker::FieldType>> FiveInARowChecker::readFieldsFromFile(std::istream&& file) { std::vector<std::vector<FieldType>> result; for (const std::string& line : readTokens(file, '\n')) { result.push_back(readFieldsFromLine(std::istringstream(line))); } return result; } std::vector<FiveInARowChecker::FieldType> FiveInARowChecker::readFieldsFromLine(std::istream&& input) { std::vector<FieldType> result; for (const std::string& fieldString : readTokens(input, ';')) { char fieldCharRepr = fieldString.c_str()[0]; switch(fieldCharRepr) { case 'X': case 'O': break; default: fieldCharRepr = ' '; } result.push_back(FieldType(fieldCharRepr)); } return result; } std::string FiveInARowChecker::getMessage() { for(int i = 0; i < fields.size() && !forceEnd; ++i) { for(int j = 0; j < fields[i].size() && !forceEnd; ++j) { if(fields[i][j] == FieldType::UNKNOWN) continue; ++countOfElements[fields[i][j]]; checkLine(i, j, 1, 1); // main diagonal checkLine(i, j, 1, 0); // vertical checkLine(i, j, 0, 1); // horizontal checkLine(i, j, 1, -1); // antidiagonal } } using namespace std::string_literals; if(forceEnd) { return "Hibas jatek - "s + forceEndReason; } else if(possibleLastMoveIndices.empty() || winner == FieldType::UNKNOWN) { return "Hibas jatek - nincs/nem egyertelmu nyero allapot"s; } else if(countOfElements[FieldType::X] != countOfElements[FieldType::O] && ((winner == FieldType::X && countOfElements[FieldType::X] != countOfElements[FieldType::O] + 1) || (winner == FieldType::O && countOfElements[FieldType::O] != countOfElements[FieldType::X] + 1))) { return "Hibas jatek - nem megfelelo mennyisegu elem a jatekban"s; } return "A jatek megfelelo, a nyertes: "s + static_cast<char>(winner); } void FiveInARowChecker::checkLine(int fromX, int fromY, int deltaX, int deltaY) { // if previous field was the same type of field, then it's already checked - nothing to do if(isValidIndex(fromX - deltaX, fromY - deltaY) && fields[fromX][fromY] == fields[fromX - deltaX][fromY - deltaY]) { return; } int count = countOfEquals(fromX, fromY, deltaX, deltaY); if(count < 5) { return; } else if(count > 9) { forceEnd = true; forceEndReason = "9-nel hosszabb egybefuggo van, ami lehetetlen egy jatek folyaman"; return; } std::set<std::pair<std::size_t, std::size_t>> thisPossibleLastMoveIndices; for(std::size_t c = 0; c < count; ++c) { thisPossibleLastMoveIndices.insert(std::make_pair(fromX + c * deltaX, fromY + c * deltaY)); } addPosibleLastMoves(std::move(thisPossibleLastMoveIndices)); } int FiveInARowChecker::countOfEquals(int fromX, int fromY, int deltaX, int deltaY) const { std::size_t count = 1; while(isValidIndex(fromX + count * deltaX, fromY + count * deltaY) && fields[fromX][fromY] == fields[fromX + count * deltaX][fromY + count * deltaY]) { ++count; } return count; } void FiveInARowChecker::addPosibleLastMoves(std::set<std::pair<std::size_t, std::size_t>>&& otherPossibleLastMoves) { if(possibleLastMoveIndices.empty()) { possibleLastMoveIndices = std::move(otherPossibleLastMoves); winner = fields[possibleLastMoveIndices.begin()->first][possibleLastMoveIndices.begin()->second]; return; } for(auto it = possibleLastMoveIndices.begin(); it != possibleLastMoveIndices.end();) { if(!otherPossibleLastMoves.count(*it)) { possibleLastMoveIndices.erase(it++); } else { ++it; } } if(possibleLastMoveIndices.empty()) { forceEnd = true; forceEndReason = "tobb, egy ponton nem erintkezo gyozelmi vonal letezik"; return; } } bool FiveInARowChecker::isValidIndex(int x, int y) const { return 0 <= x && x < fields.size() && 0 <= y && y < fields[x].size(); }
[ "schaumb@gmail.com" ]
schaumb@gmail.com
a5132dcc1aa1bc607b967024387e4dcf812e235e
d6599e6b17f12774df0d3df9cb6a1c647a1e9807
/components/Servo/Servo.ino
caa4f6c8f31f6bbf881c59c2709b25202da6b23c
[]
no_license
simonguozirui/PopMidi
fe6a2c400cf703a9c18b518831fb001661a78bbd
36b963ed4f365a4b8cdbad0e590bc23ae21516df
refs/heads/master
2020-06-12T21:12:29.638762
2016-12-04T01:38:10
2016-12-04T01:38:10
75,508,589
1
0
null
null
null
null
UTF-8
C++
false
false
2,415
ino
#include <Servo.h> Servo current_servo; int pos = 0; int speed = 3; const int servo_c = 2; const int servo_d = 4; const int servo_e = 7; const int servo_f = 8; const int servo_g = 10; const int servo_a = 11; const int servo_b = 12; const int servo_C = 13; void setup() { pinMode(servo_c, OUTPUT); pinMode(servo_d, OUTPUT); pinMode(servo_e, OUTPUT); pinMode(servo_f, OUTPUT); pinMode(servo_g, OUTPUT); pinMode(servo_a, OUTPUT); pinMode(servo_b, OUTPUT); pinMode(servo_C, OUTPUT); } void servo_swing(int servo_num){ current_servo.attach(servo_num); int adjustment = 0; if (servo_num == 4){ adjustment = 150; } if (servo_num == 7){ adjustment = 18; } if (servo_num == 8){ adjustment = 160; } if (servo_num == 10){ adjustment = 20; } if (servo_num == 11){ adjustment = 140; } if (servo_num == 12){ adjustment = 130; } if (servo_num == 13){ adjustment = 25; } for(pos = 0+adjustment; pos < 25+adjustment; pos += speed) { current_servo.write(pos); delay(10); } for(pos = 25+adjustment; pos>=0+adjustment; pos-=speed) { current_servo.write(pos); delay(10); } } void loop() { servo_swing(servo_c); delay(500); servo_swing(servo_d); delay(500); servo_swing(servo_e); delay(500); servo_swing(servo_f); delay(500); servo_swing(servo_g); delay(500); servo_swing(servo_a); delay(500); servo_swing(servo_b); delay(500); servo_swing(servo_C); delay(500); servo_swing(servo_c); delay(50); servo_swing(servo_d); delay(50); servo_swing(servo_e); delay(50); servo_swing(servo_f); delay(50); servo_swing(servo_g); delay(50); servo_swing(servo_a); delay(50); servo_swing(servo_b); delay(50); servo_swing(servo_C); delay(50); servo_swing(servo_b); delay(50); servo_swing(servo_a); delay(50); servo_swing(servo_g); delay(50); servo_swing(servo_f); delay(50); servo_swing(servo_e); delay(50); servo_swing(servo_d); delay(50); servo_swing(servo_c); delay(50); }
[ "simonguozirui@gmail.com" ]
simonguozirui@gmail.com
c7f7759ec814c98f99d8fb528e808e52acdf4028
56ba5b3d485dcc5947eac1029027953043449487
/Player.h
dd610747492a1348971dc59cd5c94bfc1a3bf804
[]
no_license
amridris/RPSGame
9377e5844000558d4c4a8a31d99e4d6aaeb80b7e
2c0d3c9f2e1fe2faecfdc059f94d86ac0d297a97
refs/heads/master
2020-05-30T14:21:20.457143
2019-04-08T01:04:08
2019-04-08T01:04:08
189,788,703
0
0
null
null
null
null
UTF-8
C++
false
false
766
h
/* * Subject: CMPE 135 Professor Ron Mak * contributors: Aamer Idris, Jacob Balster-Gee, Dan Hoang, Andre Voloshin */ #ifndef RPSGAME_PLAYER_H #define RPSGAME_PLAYER_H #include "Weapons.h" class Player { private: int wins, losses, ties; public: Weapons playerWeapon; public: Player(): wins(0), losses(0), ties(0){}; virtual void playTurn() = 0; void setWins(){ wins++; } int getWins(){ return wins; } void setLosses(){ losses++; } int getLosses(){ return losses; } void setTies(){ ties++; } int getTies(){ return ties; } weapons getUserWeapon(){ return playerWeapon.getWeapon(); } }; #endif //RPSGAME_PLAYER_H
[ "amridris@gmail.com" ]
amridris@gmail.com
a672256e615d5b3af51f45fec1f6aa29bb702da6
e9b54906a0d1d0d9811c4560d259f430f564d11e
/1609_Team1/1609_Team1/Creature.h
35139d81542202db9157163772a3c767d2756fad
[]
no_license
Bellumgod/BunkerDefense
ef27a43f6c6636e7a40b5327f124f4c35599bf6b
ef25ac5424e6b9254456c01efbfcb0fb0b992d58
refs/heads/master
2021-01-09T06:41:05.694909
2017-02-06T05:26:20
2017-02-06T05:26:20
null
0
0
null
null
null
null
UTF-8
C++
false
false
471
h
#pragma once #include "ObjectManager.h" #include "CreatureDB.h" class Creature : public Object { int m_creatureID; float m_attack; float m_defense; wstring m_name; Sprite* m_pSprite; CREATURE_STATE m_state; DIRECTION_TAG m_dir; public: Creature(); Creature(int creatureID); ~Creature(); void Update(float deltaTime); void Draw(Camera* pCamera); void RunState(float deltaTime); void AttackState(float deltaTime); void DeadState(float deltaTime); };
[ "gnwmapf@naver.com" ]
gnwmapf@naver.com
32852ac40df4b7d632571a1f70b056748f4202d0
fa5386e5e9ce8413c58cb144ce5b478d2ec266a4
/objectpacket.h
0c029eac5cc2b2ae52557c4a7422181957d96198
[]
no_license
AliGhezalAG/lidarAppClient
feba08fb9fa867e0249455425542a5a42abda6d2
729a21c9d732f33ffa4da61cad4eea2756cc1b1b
refs/heads/master
2020-07-03T14:25:57.528723
2019-09-04T08:44:32
2019-09-04T08:44:32
201,934,845
0
0
null
null
null
null
UTF-8
C++
false
false
357
h
#ifndef OBJECTPACKET_H #define OBJECTPACKET_H #include <QMetaType> #include <QVariantMap> #include "header.h" #include "object.h" class ObjectPacket { public: ObjectPacket(); ObjectPacket(QVariantMap &packet_map); private: Header header; QList<Object> objectList; }; Q_DECLARE_METATYPE(ObjectPacket) #endif // OBJECTPACKET_H
[ "ali.ghezal.ag@gmail.com" ]
ali.ghezal.ag@gmail.com
760ca70215632cc9ceeec127f64023a75fef9c47
0ee0a6ddb26eb5ad32fcec78e74443eda1775c83
/SimulationTest/Tools/convertutililty.cpp
42641d35553304880beadf94b56e8a948ba7a86c
[]
no_license
williamkibira/Ndonda
2f44fbf6509717ddec589f11065205e68622a182
c0bdea424f6dce42a740f2ee17bb5823244bdf29
refs/heads/master
2016-09-06T05:26:01.580248
2015-03-21T09:53:08
2015-03-21T09:53:08
32,391,016
0
0
null
null
null
null
UTF-8
C++
false
false
3,033
cpp
/* Copyright (c) 2013, <copyright holder> <email> 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 <organization> 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 <copyright holder> <email> ''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 <copyright holder> <email> BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "convertutililty.h" ConvertUtililty::ConvertUtililty(int mapHeight,int mapWidth) { this->mapHeight = mapHeight; this->mapWidth = mapWidth; } ConvertUtililty::ConvertUtililty() { } b2Vec2 ConvertUtililty::convertObjectPointToGamePoint(int point_x, int point_y) { return b2Vec2(point_x/getContextScaleFactor(),mapHeight - (point_y/getContextScaleFactor())); } b2Vec2 ConvertUtililty::convertPixelsToPoints(int point_x, int point_y) { return b2Vec2(point_x/PIXEL_TO_METER,point_y/PIXEL_TO_METER); } b2Vec2 ConvertUtililty::convertPolyToGamePoint(int point_x, int point_y) { return b2Vec2(point_x/getContextScaleFactor(),-point_y/getContextScaleFactor()); } float ConvertUtililty::getContextScaleFactor() { return 1.0f; } GM_POINT* ConvertUtililty::convertB2Vec2ToGM_Point(b2Vec2 point) { GM_POINT* Gpoint = new GM_POINT(); Gpoint->x =(point.x*getContextScaleFactor()*PIXEL_TO_METER); Gpoint->y =(point.y*getContextScaleFactor()*PIXEL_TO_METER); //printf("GM_POINT : X->[%4.2f] Y->[%4.2f]\n",Gpoint->x,Gpoint->y); return Gpoint; } float ConvertUtililty::convertRadiansToDegrees(float radians) { return (180.0/3.141592653589793)*radians; } float ConvertUtililty::convertDegreesToRadians(float degrees) { return (3.141592653589793/180)*degrees; } b2Vec2 ConvertUtililty::convertScreenToWorld(int32 x, int32 y) { } ConvertUtililty::~ConvertUtililty() { }
[ "williamkibira@gmail.com" ]
williamkibira@gmail.com
7d0f2cef15ebb1da3599dd52084b2855d0209e6d
441850e1110159e1350270caf7098867ad9d0d07
/src/strings.cpp
e5ad205acbef7715a463d0483ad00dc5b3553241
[ "Apache-2.0" ]
permissive
dualword/chatmachine
582decca962d9b597f5edff164f0f4b5206e7e2a
0b43617cf0f37ced900583ef4e401313cc2dd618
refs/heads/master
2022-04-14T12:16:26.499322
2020-04-03T14:05:18
2020-04-03T14:05:18
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,584
cpp
#include "strings.h" #include "locale" #include <iostream> #include <vector> #include <sstream> #include <string> #include <regex> using namespace std; void subsitute(string &input, vector<subsitution_t> subs) { for(int i=0, s=subs.size(); i<s; ++i) { replace(input, subs[i].input, subs[i].sub); } } void replace(std::string &s, const std::string toReplace, const std::string replaceWith) { regex re(toReplace); s = regex_replace(s, re, replaceWith); } void insert_spaces(std::string &str) { str.insert(str.begin(), ' '); str.insert(str.end(), ' '); } void toUpper(std::string &str) { std::locale settings; std::string toUpper; for(unsigned int i = 0; i < str.size(); ++i) toUpper += (std::toupper(str[i], settings)); str = toUpper; } // removes multi spaces and punctuations void shrink(std::string &str) { std::string srk = ""; char prevChar = ' '; for(int i=0, l=str.length(); i < l; ++i) { if (str[i] == ' ' && prevChar == ' ') continue; else if (isPunc(str[i]) && !isPunc(prevChar)) srk += ' '; else if (isPunc(str[i]) && isPunc(prevChar)) { prevChar = str[i]; continue; } else srk += str[i]; prevChar = str[i]; } str = srk; srk = ""; for(int i=0, l=str.length(); i < l; ++i) { if (str[i] == ' ' && prevChar == ' ') continue; else if (i < l-1 || str[i] != ' ') { srk += str[i]; } prevChar = str[i]; } str = srk; } string trim(const string& str) { size_t first = str.find_first_not_of(' '); if (string::npos == first) { return str; } size_t last = str.find_last_not_of(' '); return str.substr(first, (last - first + 1)); } // split str with ' ' vector<string> split(std::string str) { vector<string> vs; Split(vs, str, ' '); return vs; } int Split(vector<string>& v, string str, char sep) { v.clear(); string::size_type stTemp = str.find(sep); //cout << "Split() : str=" << str << endl; while(stTemp != string::npos) { v.push_back(str.substr(0, stTemp)); str = str.substr(stTemp + 1); stTemp = str.find(sep); } v.push_back(str); return v.size(); } bool isPunc(char c) { std::string puncs = "?!,;."; return puncs.find(c) != std::string::npos; } void transfer(char const *array[], vecstr &vs, int size) { for (int i=0; i<size; ++i) { if (array[i] == NULL) { break; } else vs.push_back(array[i]); } } // wikibooks.org // Levenshtein distance unsigned int edit_distance(const std::string& s1, const std::string& s2) { const std::size_t len1 = s1.size(), len2 = s2.size(); std::vector<std::vector<unsigned int> > d(len1 + 1, std::vector<unsigned int>(len2 + 1)); d[0][0] = 0; for(unsigned int i = 1; i <= len1; ++i) d[i][0] = i; for(unsigned int i = 1; i <= len2; ++i) d[0][i] = i; for(unsigned int i = 1; i <= len1; ++i) for(unsigned int j = 1; j <= len2; ++j) // note that std::min({arg1, arg2, arg3}) works only in C++11, // for C++98 use std::min(std::min(arg1, arg2), arg3) d[i][j] = std::min(std::min(d[i - 1][j] + 1, d[i][j - 1] + 1), d[i - 1][j - 1] + (s1[i - 1] == s2[j - 1] ? 0 : 1)); return d[len1][len2]; } void arraycopy(vector<string> src, int srcPos, vector<string> &dest, int destPos, int length) { for(int i=destPos, j=srcPos; i<destPos+length; ++i, ++j) { dest[i] = src[j]; } } // In MinGW std::to_string() does not exist //string to_string(int i) { // stringstream ss; // ss << i; // return ss.str(); //}
[ "simon.grandsire@gmail.com" ]
simon.grandsire@gmail.com
0cb1d72dc104afd1c3a4fc0fab166e7fd4dc63c6
5bfa7467ff0df1afc11b2eac874d78c93a01a71d
/Lab 9/8.cpp
e149d1550e7e4c45c61e1801873368d5b7f3cae2
[]
no_license
WhiteLilith/II-sem
2a8880520cdaa1dec334bb6e60bcd683017ae157
99f90204b0e0813cc65fd26887f763b87346a9c0
refs/heads/master
2021-01-03T01:37:18.031433
2020-06-15T21:00:06
2020-06-15T21:00:06
239,861,150
0
0
null
null
null
null
UTF-8
C++
false
false
916
cpp
#include "stdafx.h" #include <iostream> #include <cstdlib> #include <iomanip> #include <string> #include <cmath> using namespace std; struct link { int data; link* next; }; class linklist { private: link* first; public: linklist() { first = NULL; } void additem(int d); void display(); }; void linklist::additem(int d) { link* newlink = new link; newlink->data = d; if (first != NULL) { link* current = first; while (current->next != NULL) { current = current->next; } current->next = newlink; } else { first = newlink; } newlink->next = NULL; } void linklist::display() { link* current = first; while (current != NULL) { cout << current->data << endl; current = current->next; } } int main() { linklist li; li.additem(45); li.additem(13); li.additem(56); li.additem(60); li.additem(19); li.additem(17); li.additem(22); li.display(); return 0; }
[ "noreply@github.com" ]
noreply@github.com
26ee54d0f29e77c8da31f4c14074409ad2bbc5d2
0efb71923c02367a1194a9b47779e8def49a7b9f
/Oblig1/les/1.66/nuSgs
4a00b76d45c4d1cf7668c446baf0fb3727f3bce6
[]
no_license
andergsv/blandet
bbff505e8663c7547b5412700f51e3f42f088d78
f648b164ea066c918e297001a8049dd5e6f786f9
refs/heads/master
2021-01-17T13:23:44.372215
2016-06-14T21:32:00
2016-06-14T21:32:00
41,495,450
0
0
null
null
null
null
UTF-8
C++
false
false
105,782
/*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / O peration | Version: 2.4.0 | | \\ / A nd | Web: www.OpenFOAM.org | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class volScalarField; location "1.66"; object nuSgs; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // dimensions [0 2 -1 0 0 0 0]; internalField nonuniform List<scalar> 8800 ( 0.00133831 0.0015071 0.00139267 0.00122963 0.00112009 0.00105169 0.000995623 0.000962152 0.000923838 0.000906587 0.000878092 0.000869249 0.000846521 0.00084232 0.000821218 0.00081913 0.000800394 0.000798129 0.000790856 0.000764819 0.000553733 0.000982248 0.00108292 0.00108149 0.00106238 0.00103558 0.000999986 0.00097961 0.000947128 0.00093312 0.000906313 0.000896518 0.00087533 0.000869435 0.000851835 0.000847532 0.000833501 0.000828427 0.000816035 0.000816032 0.000135532 0.000406368 0.0005839 0.000659071 0.0007037 0.00073905 0.000749941 0.000761092 0.000760161 0.000759376 0.000754336 0.000751613 0.000744528 0.000741232 0.000735393 0.00073069 0.000727423 0.000721084 0.000713553 0.000711465 2.68894e-05 0.000125529 0.000232765 0.000310963 0.000354502 0.000397494 0.00042816 0.000452494 0.000477653 0.000491158 0.000506935 0.000516649 0.000529362 0.000533959 0.000545329 0.000547947 0.000557003 0.000557552 0.000559441 0.000557497 5.10425e-06 3.3536e-05 7.04671e-05 0.000109132 0.000137618 0.000162392 0.000193024 0.000207973 0.000236349 0.000248424 0.000268093 0.000277836 0.000296479 0.000303943 0.000321168 0.000327882 0.00034378 0.000349359 0.000361214 0.000364587 2.38161e-06 8.50363e-06 1.91182e-05 2.94758e-05 4.11041e-05 4.94345e-05 6.43422e-05 7.25469e-05 8.81432e-05 9.76001e-05 0.000107379 0.000117355 0.000128721 0.000134041 0.000145915 0.000153251 0.000161613 0.000172762 0.000179838 0.000188489 2.22554e-06 3.18553e-06 5.39402e-06 8.73365e-06 1.04559e-05 1.24989e-05 1.66319e-05 1.94245e-05 2.36822e-05 2.98828e-05 3.21884e-05 3.7197e-05 3.98534e-05 4.51693e-05 4.85278e-05 5.44248e-05 5.73319e-05 6.48859e-05 6.80504e-05 7.65866e-05 2.1608e-06 2.56157e-06 3.2248e-06 4.46806e-06 4.63778e-06 4.84549e-06 5.15397e-06 5.87701e-06 6.54838e-06 8.31054e-06 8.72119e-06 1.00056e-05 1.04363e-05 1.20546e-05 1.27236e-05 1.47348e-05 1.54374e-05 1.84898e-05 1.96234e-05 2.48768e-05 2.14445e-06 2.61278e-06 2.91776e-06 3.56621e-06 4.03723e-06 4.16081e-06 4.11379e-06 4.0884e-06 4.12849e-06 4.45641e-06 4.53695e-06 4.70686e-06 4.72611e-06 4.89861e-06 4.9988e-06 5.33183e-06 5.39081e-06 5.83486e-06 6.00837e-06 7.03367e-06 2.13904e-06 2.49522e-06 2.79471e-06 3.57301e-06 3.9306e-06 3.93752e-06 3.85892e-06 3.81362e-06 3.84933e-06 4.07604e-06 4.11639e-06 4.13063e-06 4.10942e-06 4.08484e-06 4.11142e-06 4.23935e-06 4.28956e-06 4.35143e-06 4.42397e-06 4.46132e-06 2.13191e-06 2.55711e-06 2.99523e-06 3.36443e-06 3.57116e-06 3.89847e-06 4.03799e-06 4.02092e-06 3.89921e-06 3.93887e-06 3.96142e-06 4.01954e-06 4.12485e-06 4.26916e-06 4.25598e-06 4.22838e-06 4.23187e-06 4.37295e-06 4.38826e-06 4.46966e-06 2.14086e-06 2.6504e-06 3.05457e-06 3.36828e-06 3.91225e-06 4.13083e-06 4.13437e-06 4.09201e-06 4.12922e-06 4.36122e-06 4.44949e-06 4.61135e-06 4.83747e-06 4.9472e-06 4.98602e-06 5.13912e-06 5.56507e-06 5.83694e-06 6.10523e-06 6.52726e-06 2.15391e-06 2.66816e-06 3.15667e-06 4.13107e-06 4.68882e-06 4.95012e-06 5.3167e-06 6.23056e-06 6.80326e-06 8.03554e-06 8.54009e-06 9.69651e-06 1.04358e-05 1.21656e-05 1.3144e-05 1.52929e-05 1.64871e-05 1.87576e-05 2.08361e-05 2.32829e-05 2.18676e-06 3.08211e-06 5.04155e-06 8.92686e-06 1.08727e-05 1.40579e-05 1.66472e-05 2.15916e-05 2.40042e-05 2.92073e-05 3.1812e-05 3.74202e-05 4.02897e-05 4.66128e-05 4.97389e-05 5.62241e-05 5.96072e-05 6.72008e-05 7.17128e-05 8.14667e-05 2.34799e-06 8.22782e-06 1.76581e-05 3.245e-05 4.06061e-05 5.33569e-05 6.218e-05 7.75913e-05 8.46958e-05 9.93153e-05 0.000105896 0.000119656 0.000125834 0.000138751 0.000144689 0.000157729 0.000164 0.000178447 0.000186352 0.00020557 5.23518e-06 3.29831e-05 6.87618e-05 0.000111651 0.000139196 0.000164415 0.000189623 0.000215366 0.000228333 0.00025324 0.000263299 0.000283267 0.00029188 0.000309667 0.000317254 0.000334392 0.00034215 0.000360715 0.00036952 0.00039064 2.731e-05 0.000123985 0.000237222 0.000305382 0.000360776 0.000391945 0.000430683 0.000453598 0.000474734 0.00049277 0.000504975 0.000519058 0.000526925 0.000537646 0.000542464 0.000552607 0.000556649 0.000566941 0.00057115 0.000581045 0.00013681 0.000401003 0.000587827 0.000654738 0.000710227 0.000732021 0.000755415 0.000757481 0.000761513 0.000757619 0.000756157 0.000749272 0.000746906 0.00073932 0.000737214 0.000731029 0.000729519 0.000725421 0.000723796 0.000719905 0.000557782 0.00097978 0.00108425 0.00108057 0.00106468 0.00102972 0.00100628 0.000972023 0.000955185 0.000924359 0.000913761 0.000888892 0.000881865 0.000862382 0.00085751 0.000840829 0.000837011 0.000821146 0.000815787 0.000801931 0.00133958 0.00150525 0.00139415 0.00122669 0.00112351 0.00104697 0.00100094 0.000955315 0.000931246 0.000897784 0.000886336 0.000859649 0.000854094 0.000831936 0.0008279 0.000805855 0.000801274 0.000776233 0.000766717 0.000734351 0.000352867 0.000304611 0.000269932 0.000242566 0.000221708 0.00020669 0.000196927 0.000191729 0.000188414 0.000185935 0.000184587 0.000183776 0.000183349 0.000183386 0.000183158 0.000182935 0.000182681 0.000182024 0.000181028 0.00018038 0.000178777 0.000177517 0.000176048 0.000173475 0.000170968 0.000168428 0.000162945 0.000158472 0.000151277 0.000141996 0.00013124 0.000121332 0.000112787 0.000103628 9.77343e-05 9.44842e-05 9.47478e-05 9.6618e-05 0.000100724 0.000109777 0.000120696 0.000128819 0.000138673 0.000145833 0.000150094 0.000153349 0.000154279 0.000154996 0.000155401 0.000155066 0.000153401 0.000151151 0.000148828 0.000145333 0.000137729 0.000131138 0.000123114 0.000111683 9.96766e-05 8.73773e-05 7.45801e-05 6.40266e-05 5.47217e-05 4.62607e-05 3.97095e-05 3.38204e-05 2.90687e-05 2.61157e-05 2.33344e-05 2.21776e-05 2.1695e-05 2.14403e-05 2.15303e-05 2.189e-05 2.20037e-05 2.23456e-05 2.34248e-05 2.40134e-05 2.52587e-05 2.69831e-05 2.9633e-05 3.43212e-05 4.15676e-05 4.51629e-05 5.1027e-05 5.71058e-05 5.93308e-05 5.91931e-05 5.7948e-05 5.55866e-05 5.19901e-05 4.83325e-05 4.63088e-05 4.535e-05 4.23595e-05 3.85782e-05 3.46623e-05 3.32514e-05 3.44619e-05 3.87937e-05 5.04861e-05 7.93368e-05 0.00013696 0.000155498 0.00015692 0.000161424 0.000165849 0.000162832 0.000145827 0.000118386 9.70805e-05 8.33774e-05 7.60937e-05 7.0666e-05 6.63462e-05 6.35856e-05 6.26395e-05 6.14954e-05 5.9302e-05 5.84223e-05 5.85842e-05 6.23561e-05 6.799e-05 7.00537e-05 7.32562e-05 7.83728e-05 8.2407e-05 8.56324e-05 8.79696e-05 8.89463e-05 8.78602e-05 7.97026e-05 7.4479e-05 6.96556e-05 6.20398e-05 5.83099e-05 5.45192e-05 5.34831e-05 5.01693e-05 4.37841e-05 4.05036e-05 3.96803e-05 4.02726e-05 4.56743e-05 5.62319e-05 6.01139e-05 6.03532e-05 6.01006e-05 6.08798e-05 6.34052e-05 6.43719e-05 6.47348e-05 6.55e-05 6.78591e-05 6.96863e-05 6.91477e-05 6.68758e-05 6.35277e-05 6.0744e-05 5.81364e-05 5.57275e-05 5.2893e-05 5.05432e-05 4.97895e-05 4.98083e-05 5.07899e-05 5.16985e-05 5.24135e-05 5.36437e-05 5.3764e-05 5.23817e-05 5.04814e-05 4.84984e-05 4.77487e-05 4.76139e-05 4.78325e-05 4.9485e-05 5.64167e-05 6.02811e-05 6.1194e-05 6.07394e-05 5.81332e-05 5.45336e-05 5.22015e-05 5.01154e-05 5.07946e-05 5.05556e-05 5.07051e-05 5.10464e-05 5.20725e-05 5.3567e-05 5.5777e-05 5.63177e-05 5.71766e-05 5.42573e-05 5.47451e-05 5.78936e-05 6.75085e-05 0.000113732 0.000317729 0.00041301 0.000374149 0.000343348 0.000319067 0.000299265 0.000282871 0.000269442 0.000258463 0.000249734 0.000242771 0.000236433 0.000231696 0.000226243 0.000223025 0.000219289 0.00021643 0.000214412 0.000212052 0.000210262 0.000208426 0.000206424 0.00020445 0.000202982 0.000201721 0.000200163 0.000199517 0.000197935 0.000196531 0.000194574 0.000192231 0.000187894 0.000182721 0.000179893 0.000174224 0.000168817 0.000165314 0.000162818 0.000162735 0.00016238 0.00016161 0.000161391 0.000160895 0.000159728 0.000159249 0.000158604 0.000157059 0.000155446 0.00015256 0.000148152 0.000144667 0.000138504 0.000130852 0.000123095 0.000113446 0.000101989 8.77846e-05 7.58739e-05 6.52433e-05 5.55716e-05 4.72228e-05 3.9963e-05 3.39229e-05 2.90598e-05 2.49481e-05 2.17854e-05 1.95417e-05 1.79257e-05 1.72136e-05 1.68486e-05 1.68715e-05 1.72053e-05 1.8687e-05 1.93088e-05 1.9625e-05 1.98196e-05 2.01742e-05 2.09038e-05 2.14196e-05 2.17461e-05 2.23768e-05 2.35376e-05 2.63267e-05 2.93886e-05 3.07223e-05 3.30699e-05 3.56351e-05 3.93362e-05 4.00405e-05 4.00603e-05 3.95302e-05 3.84703e-05 3.78808e-05 3.66929e-05 3.50174e-05 3.11289e-05 2.88737e-05 2.90605e-05 3.07181e-05 3.57125e-05 4.69171e-05 6.75867e-05 0.000119151 0.00015752 0.000161928 0.000165151 0.000174495 0.000175408 0.000165688 0.000134823 0.000106421 8.74249e-05 7.72598e-05 7.25089e-05 6.82592e-05 6.4582e-05 6.21418e-05 6.14443e-05 6.04281e-05 5.85558e-05 5.81147e-05 5.86014e-05 6.39579e-05 7.04393e-05 7.3592e-05 7.66706e-05 8.05317e-05 8.33084e-05 8.55636e-05 8.77555e-05 8.84454e-05 8.70862e-05 7.81116e-05 7.22601e-05 6.92717e-05 6.15366e-05 5.73201e-05 5.27927e-05 5.06706e-05 4.77507e-05 4.22563e-05 3.95495e-05 3.86163e-05 3.88493e-05 4.14567e-05 5.10677e-05 5.72558e-05 5.88453e-05 5.87337e-05 5.90694e-05 6.06051e-05 6.25028e-05 6.31602e-05 6.31339e-05 6.34601e-05 6.45204e-05 6.61579e-05 6.55811e-05 6.37398e-05 6.16953e-05 5.9485e-05 5.73526e-05 5.38429e-05 5.13465e-05 5.07618e-05 5.09675e-05 5.22811e-05 5.2438e-05 5.25228e-05 5.32095e-05 5.31912e-05 5.20665e-05 5.01671e-05 4.89539e-05 4.87359e-05 4.87804e-05 4.91692e-05 5.08608e-05 5.72588e-05 6.16047e-05 6.29458e-05 6.23827e-05 6.13349e-05 5.77635e-05 5.64728e-05 5.33997e-05 5.13672e-05 5.02114e-05 5.05693e-05 5.01157e-05 4.98977e-05 5.08842e-05 5.46896e-05 5.6327e-05 5.70347e-05 6.02935e-05 5.86708e-05 5.9617e-05 6.39181e-05 0.000105784 0.000222533 0.000371354 0.000349716 0.000328991 0.000311734 0.000297011 0.000284261 0.000272274 0.000262551 0.000253062 0.000245929 0.000239017 0.000234407 0.000229579 0.000225175 0.000221526 0.000216679 0.000213606 0.000209828 0.00020763 0.000205654 0.000204073 0.000202896 0.000200657 0.000199358 0.000196976 0.000195317 0.000193935 0.000193516 0.00019301 0.000192325 0.000192089 0.000191229 0.000189421 0.00018812 0.000185008 0.000181915 0.000179348 0.000175072 0.0001725 0.000168587 0.000163725 0.000160906 0.000157126 0.000150042 0.000145146 0.000139933 0.000130605 0.000121833 0.000113501 0.00010416 9.43988e-05 8.30828e-05 7.37834e-05 6.48418e-05 5.65133e-05 4.87811e-05 4.20068e-05 3.59669e-05 3.04099e-05 2.57584e-05 2.19989e-05 1.90588e-05 1.69144e-05 1.54584e-05 1.43669e-05 1.4025e-05 1.38901e-05 1.38894e-05 1.41602e-05 1.48001e-05 1.58253e-05 1.78824e-05 1.85828e-05 1.87018e-05 1.87398e-05 1.92368e-05 2.04905e-05 2.10845e-05 2.11293e-05 2.09802e-05 2.10637e-05 2.19719e-05 2.2836e-05 2.43469e-05 2.49714e-05 2.68947e-05 2.85092e-05 2.91237e-05 2.91122e-05 2.84442e-05 2.78585e-05 2.67113e-05 2.57818e-05 2.50474e-05 2.51101e-05 2.58724e-05 2.78027e-05 3.35571e-05 4.60462e-05 6.41183e-05 9.25713e-05 0.000149178 0.000164576 0.000165807 0.000174694 0.000185235 0.00018372 0.000164493 0.000127031 9.87433e-05 8.20038e-05 7.40303e-05 7.07133e-05 6.72924e-05 6.40233e-05 6.14249e-05 6.05377e-05 5.9585e-05 5.80365e-05 5.78679e-05 5.90081e-05 6.73606e-05 7.357e-05 7.61223e-05 7.88915e-05 8.13735e-05 8.35559e-05 8.50768e-05 8.72244e-05 8.76834e-05 8.54394e-05 7.68248e-05 7.04077e-05 6.84075e-05 6.13723e-05 5.46101e-05 5.04541e-05 4.74124e-05 4.53066e-05 4.09545e-05 3.90943e-05 3.82355e-05 3.81993e-05 3.93545e-05 4.59118e-05 5.42751e-05 5.7369e-05 5.78791e-05 5.79471e-05 5.85013e-05 6.1294e-05 6.24331e-05 6.18867e-05 6.15888e-05 6.27846e-05 6.46107e-05 6.44184e-05 6.34809e-05 6.18975e-05 5.99573e-05 5.84611e-05 5.47294e-05 5.29866e-05 5.27035e-05 5.32852e-05 5.33651e-05 5.28233e-05 5.26351e-05 5.31419e-05 5.30557e-05 5.1878e-05 5.02603e-05 4.97842e-05 4.96583e-05 4.97623e-05 5.02226e-05 5.27529e-05 6.00203e-05 6.50031e-05 6.51946e-05 6.54159e-05 6.29817e-05 6.23799e-05 6.08703e-05 5.97678e-05 5.53459e-05 5.39206e-05 5.15032e-05 5.10211e-05 4.98385e-05 4.99453e-05 5.24019e-05 5.5911e-05 5.78569e-05 6.04282e-05 6.03941e-05 6.46345e-05 6.55389e-05 9.75939e-05 0.000164023 0.000295812 0.000284855 0.000272232 0.00026246 0.000253052 0.000246521 0.000239337 0.000232146 0.000224279 0.000216383 0.000209419 0.000203408 0.000199555 0.000195596 0.000192922 0.000189709 0.000186129 0.000182434 0.000179447 0.000177221 0.00017579 0.000175397 0.000174637 0.000173871 0.000172263 0.000168452 0.000166056 0.000163747 0.000162875 0.000162875 0.000163001 0.000164575 0.000165436 0.000165611 0.000165131 0.000163971 0.000161361 0.000155554 0.000150853 0.000143915 0.000135469 0.000128844 0.000119446 0.000107685 9.71327e-05 8.69593e-05 7.61529e-05 6.7555e-05 6.00292e-05 5.33744e-05 4.77967e-05 4.29094e-05 3.87757e-05 3.46888e-05 3.06865e-05 2.67983e-05 2.32004e-05 2.00146e-05 1.7449e-05 1.54167e-05 1.41904e-05 1.33648e-05 1.29442e-05 1.27978e-05 1.27874e-05 1.28324e-05 1.29781e-05 1.33544e-05 1.39687e-05 1.57758e-05 1.67429e-05 1.74253e-05 1.93717e-05 2.02169e-05 2.01815e-05 2.01755e-05 2.06434e-05 2.08737e-05 2.08522e-05 2.06897e-05 2.01788e-05 2.00742e-05 2.0201e-05 2.06332e-05 2.12181e-05 2.30472e-05 2.37807e-05 2.4518e-05 2.41766e-05 2.38396e-05 2.34061e-05 2.3013e-05 2.30839e-05 2.33276e-05 2.41968e-05 2.63686e-05 3.20911e-05 4.62786e-05 6.57832e-05 8.37334e-05 0.000123049 0.000161385 0.000165901 0.000169189 0.000185873 0.000194055 0.000190125 0.000163979 0.000123503 9.45672e-05 7.90483e-05 7.23865e-05 6.97593e-05 6.70524e-05 6.40314e-05 6.14453e-05 6.05086e-05 5.9264e-05 5.79688e-05 5.79609e-05 6.05564e-05 7.15747e-05 7.59515e-05 7.79856e-05 7.99534e-05 8.12891e-05 8.27893e-05 8.34235e-05 8.51298e-05 8.51605e-05 7.9458e-05 7.42252e-05 6.63967e-05 6.5266e-05 5.92997e-05 5.03799e-05 4.82895e-05 4.50131e-05 4.33458e-05 3.99847e-05 3.84014e-05 3.81106e-05 3.82333e-05 3.87435e-05 4.17279e-05 5.04291e-05 5.53969e-05 5.6995e-05 5.71694e-05 5.74901e-05 5.88293e-05 5.91029e-05 5.88974e-05 6.04578e-05 6.27216e-05 6.33148e-05 6.32358e-05 6.26917e-05 6.13978e-05 6.03683e-05 5.97351e-05 5.63756e-05 5.51408e-05 5.46033e-05 5.45562e-05 5.38327e-05 5.28278e-05 5.29274e-05 5.30295e-05 5.28586e-05 5.16019e-05 5.06163e-05 5.04342e-05 5.04589e-05 5.08186e-05 5.18447e-05 5.53152e-05 6.35964e-05 6.82578e-05 6.96782e-05 6.95606e-05 6.80897e-05 6.61295e-05 6.46466e-05 6.29798e-05 5.93563e-05 5.71588e-05 5.47776e-05 5.28105e-05 5.20664e-05 5.1175e-05 5.27394e-05 5.61038e-05 5.74971e-05 6.49706e-05 6.38892e-05 8.35863e-05 7.24458e-05 8.26841e-05 0.000122489 0.000196245 0.000192694 0.000184961 0.00018008 0.000175236 0.000171275 0.00016991 0.000167517 0.000165005 0.000161009 0.000155139 0.000149559 0.000143842 0.000139644 0.000136907 0.000135801 0.000134863 0.000132703 0.000130308 0.000127143 0.000124182 0.000123371 0.000123181 0.000123287 0.000124538 0.000125098 0.000125462 0.000124104 0.000120053 0.000116637 0.000113352 0.000112643 0.000111337 0.000111143 0.00011203 0.00011182 0.000110836 0.000108978 0.000106522 0.000101811 9.55555e-05 8.65773e-05 7.68529e-05 6.7193e-05 5.79647e-05 4.95879e-05 4.2197e-05 3.60823e-05 3.12384e-05 2.76527e-05 2.50643e-05 2.28882e-05 2.107e-05 1.92649e-05 1.71394e-05 1.52647e-05 1.38351e-05 1.26151e-05 1.22119e-05 1.22252e-05 1.22872e-05 1.24409e-05 1.2813e-05 1.32564e-05 1.38071e-05 1.44915e-05 1.53774e-05 1.70725e-05 1.87361e-05 1.98633e-05 2.01172e-05 2.00673e-05 2.13202e-05 2.31842e-05 2.33586e-05 2.28079e-05 2.23771e-05 2.23235e-05 2.22369e-05 2.20559e-05 2.14102e-05 2.04466e-05 2.01199e-05 2.00319e-05 2.02562e-05 2.07561e-05 2.18303e-05 2.202e-05 2.20965e-05 2.24917e-05 2.24559e-05 2.26269e-05 2.29911e-05 2.39537e-05 2.63741e-05 3.19526e-05 4.41835e-05 6.82094e-05 8.2362e-05 0.00010192 0.000143389 0.000163529 0.000165505 0.000177618 0.000195906 0.000203538 0.000197915 0.000167298 0.000122594 9.31231e-05 7.79963e-05 7.17653e-05 6.93468e-05 6.73861e-05 6.51981e-05 6.28008e-05 6.16119e-05 5.96616e-05 5.85662e-05 5.87985e-05 6.42276e-05 7.38018e-05 7.68293e-05 7.83857e-05 7.98574e-05 8.04627e-05 8.10244e-05 8.12116e-05 8.23079e-05 8.16604e-05 7.39415e-05 6.90409e-05 6.28248e-05 5.91413e-05 5.61918e-05 4.86493e-05 4.63519e-05 4.35792e-05 4.2727e-05 4.00516e-05 3.83925e-05 3.80213e-05 3.83642e-05 3.8477e-05 3.96588e-05 4.54877e-05 5.22208e-05 5.53036e-05 5.63783e-05 5.66396e-05 5.65634e-05 5.61378e-05 5.64374e-05 5.92704e-05 5.95187e-05 5.89586e-05 5.91377e-05 6.00813e-05 6.0086e-05 6.006e-05 5.96426e-05 5.67098e-05 5.52011e-05 5.44921e-05 5.42691e-05 5.34679e-05 5.33014e-05 5.34676e-05 5.3463e-05 5.28155e-05 5.16795e-05 5.13696e-05 5.14572e-05 5.17349e-05 5.24134e-05 5.37524e-05 5.90508e-05 6.90865e-05 7.27287e-05 7.48273e-05 7.44916e-05 7.49761e-05 7.41e-05 7.40192e-05 7.17829e-05 6.98105e-05 6.6816e-05 6.4184e-05 6.21989e-05 5.69546e-05 5.60141e-05 5.56364e-05 6.29077e-05 6.2335e-05 8.14265e-05 7.51681e-05 9.91786e-05 9.09624e-05 8.75321e-05 0.000104477 0.000102301 0.000101114 9.78631e-05 9.48365e-05 9.21705e-05 9.07568e-05 9.08643e-05 9.09697e-05 9.13155e-05 9.13653e-05 9.00515e-05 8.70492e-05 8.29318e-05 7.95388e-05 7.6965e-05 7.54364e-05 7.48644e-05 7.45678e-05 7.38031e-05 7.13598e-05 6.88043e-05 6.78464e-05 6.74705e-05 6.75905e-05 6.99696e-05 7.20616e-05 7.4145e-05 7.48925e-05 7.49471e-05 7.30387e-05 6.79541e-05 6.46574e-05 6.10455e-05 5.82257e-05 5.62508e-05 5.5331e-05 5.56822e-05 5.60876e-05 5.59573e-05 5.51649e-05 5.39274e-05 5.08763e-05 4.50629e-05 3.86363e-05 3.23977e-05 2.68925e-05 2.24948e-05 1.91498e-05 1.67927e-05 1.53323e-05 1.41849e-05 1.33753e-05 1.25623e-05 1.17725e-05 1.10883e-05 1.08215e-05 1.08222e-05 1.09587e-05 1.14806e-05 1.24968e-05 1.38699e-05 1.54503e-05 1.76802e-05 1.92188e-05 2.02241e-05 2.22954e-05 2.43738e-05 2.58203e-05 2.66109e-05 2.67775e-05 2.67323e-05 2.65823e-05 2.69121e-05 2.80386e-05 2.83376e-05 2.80311e-05 2.68181e-05 2.51995e-05 2.39385e-05 2.33422e-05 2.24192e-05 2.16986e-05 2.08441e-05 2.04219e-05 2.03745e-05 2.03975e-05 2.0693e-05 2.09725e-05 2.18916e-05 2.22849e-05 2.29797e-05 2.39911e-05 2.52457e-05 2.78145e-05 3.25611e-05 4.34481e-05 6.80443e-05 8.38882e-05 9.46267e-05 0.000115104 0.000154276 0.000163284 0.000166588 0.000185151 0.00020245 0.000212432 0.00020849 0.000179324 0.00012777 9.38993e-05 7.7889e-05 7.1668e-05 6.9287e-05 6.78405e-05 6.57761e-05 6.43805e-05 6.26812e-05 6.01367e-05 5.94862e-05 6.07536e-05 6.96782e-05 7.58294e-05 7.69765e-05 7.77596e-05 7.88027e-05 7.91075e-05 7.99759e-05 7.9903e-05 8.11002e-05 8.00906e-05 7.06464e-05 6.53673e-05 6.1682e-05 5.66278e-05 5.43708e-05 4.85159e-05 4.49078e-05 4.29349e-05 4.2823e-05 4.09393e-05 3.89496e-05 3.81925e-05 3.82943e-05 3.80352e-05 3.85361e-05 4.16363e-05 4.83504e-05 5.32e-05 5.53004e-05 5.59246e-05 5.56669e-05 5.54154e-05 5.58637e-05 5.69183e-05 5.59442e-05 5.50265e-05 5.51041e-05 5.59259e-05 5.69556e-05 5.83651e-05 5.78049e-05 5.54799e-05 5.44e-05 5.46682e-05 5.45681e-05 5.46102e-05 5.47665e-05 5.4845e-05 5.4525e-05 5.2985e-05 5.25465e-05 5.25528e-05 5.27527e-05 5.3226e-05 5.45063e-05 5.65256e-05 6.73462e-05 7.36693e-05 8.04478e-05 8.0716e-05 8.22646e-05 8.2447e-05 8.31618e-05 8.11744e-05 8.59247e-05 8.06002e-05 9.27789e-05 8.50189e-05 9.59369e-05 8.14977e-05 9.34416e-05 7.87655e-05 9.63852e-05 8.21016e-05 9.24328e-05 8.30467e-05 8.7743e-05 9.20515e-05 9.03484e-05 9.67133e-05 4.17826e-05 4.13422e-05 4.01369e-05 3.85031e-05 3.73702e-05 3.70829e-05 3.72363e-05 3.77793e-05 3.87976e-05 3.92579e-05 3.92537e-05 3.8886e-05 3.69477e-05 3.4939e-05 3.34487e-05 3.25886e-05 3.24542e-05 3.24895e-05 3.25668e-05 3.23537e-05 3.10409e-05 3.03221e-05 2.99655e-05 2.99892e-05 3.18318e-05 3.42213e-05 3.63695e-05 3.71079e-05 3.71862e-05 3.59545e-05 3.28125e-05 2.97742e-05 2.70084e-05 2.43225e-05 2.22991e-05 2.15385e-05 2.29348e-05 2.70401e-05 2.93586e-05 2.97013e-05 2.94743e-05 2.76345e-05 2.36737e-05 1.96535e-05 1.65842e-05 1.41466e-05 1.25239e-05 1.15594e-05 1.07771e-05 1.03653e-05 1.00975e-05 1.00014e-05 9.97528e-06 1.00266e-05 1.02476e-05 1.07538e-05 1.1456e-05 1.28889e-05 1.6013e-05 1.85709e-05 2.22911e-05 2.56468e-05 2.8663e-05 3.10602e-05 3.32773e-05 3.59409e-05 3.74706e-05 3.77117e-05 3.82663e-05 3.83419e-05 3.81875e-05 3.72155e-05 3.52538e-05 3.44836e-05 3.40543e-05 3.37662e-05 3.28847e-05 2.94552e-05 2.67859e-05 2.49461e-05 2.3863e-05 2.35443e-05 2.30476e-05 2.2158e-05 2.14295e-05 2.14176e-05 2.15545e-05 2.20538e-05 2.34275e-05 2.40847e-05 2.56639e-05 2.70119e-05 2.93058e-05 3.31007e-05 4.22843e-05 6.59948e-05 8.60697e-05 9.33672e-05 0.000101072 0.000124595 0.000161443 0.000164749 0.000169684 0.000187532 0.000205817 0.000220907 0.00022301 0.000198044 0.000143021 0.000101355 8.02889e-05 7.26046e-05 7.00644e-05 6.82318e-05 6.59119e-05 6.48651e-05 6.29855e-05 6.05006e-05 6.03107e-05 6.33093e-05 7.35762e-05 7.61977e-05 7.65058e-05 7.63726e-05 7.67235e-05 7.63933e-05 7.86286e-05 7.93534e-05 7.97566e-05 7.85156e-05 6.89425e-05 6.31805e-05 6.04726e-05 5.55311e-05 5.32756e-05 4.81873e-05 4.45932e-05 4.22086e-05 4.27243e-05 4.18675e-05 4.08947e-05 3.92909e-05 3.84743e-05 3.7807e-05 3.79274e-05 3.92715e-05 4.45943e-05 5.18354e-05 5.45717e-05 5.54225e-05 5.51633e-05 5.51798e-05 5.58104e-05 5.65433e-05 5.54097e-05 5.39323e-05 5.36351e-05 5.42623e-05 5.64764e-05 5.76273e-05 5.66197e-05 5.48261e-05 5.46041e-05 5.60002e-05 5.64776e-05 5.71172e-05 5.69462e-05 5.62692e-05 5.44105e-05 5.3874e-05 5.38697e-05 5.44425e-05 5.49107e-05 5.5823e-05 5.77994e-05 6.2032e-05 7.709e-05 8.19412e-05 8.92977e-05 8.92371e-05 9.20043e-05 9.30021e-05 9.24974e-05 9.29208e-05 0.000106536 0.000104103 0.00012134 0.000118608 0.000137581 0.000123837 0.00013803 0.000117483 0.000121991 0.000104358 0.000102313 9.47791e-05 9.66144e-05 9.68842e-05 9.39602e-05 9.5786e-05 1.38311e-05 1.37441e-05 1.34457e-05 1.29258e-05 1.25594e-05 1.24704e-05 1.25088e-05 1.26511e-05 1.3022e-05 1.3259e-05 1.32964e-05 1.322e-05 1.28202e-05 1.22677e-05 1.19854e-05 1.18156e-05 1.18126e-05 1.18898e-05 1.19207e-05 1.18429e-05 1.13019e-05 1.09381e-05 1.07598e-05 1.07819e-05 1.15345e-05 1.23407e-05 1.29927e-05 1.30394e-05 1.2804e-05 1.19763e-05 1.12267e-05 1.05661e-05 9.98231e-06 9.42202e-06 9.10492e-06 9.52311e-06 1.19753e-05 1.36132e-05 1.40151e-05 1.4011e-05 1.3624e-05 1.20444e-05 1.08397e-05 9.96012e-06 9.61302e-06 9.49042e-06 9.47211e-06 9.32791e-06 9.32645e-06 9.45122e-06 9.76243e-06 1.05457e-05 1.15817e-05 1.25291e-05 1.42331e-05 1.6393e-05 1.81884e-05 2.31244e-05 2.74551e-05 3.20204e-05 3.74876e-05 4.17821e-05 4.55764e-05 4.93165e-05 5.24867e-05 5.4006e-05 5.5614e-05 5.6043e-05 5.57852e-05 5.49669e-05 5.30144e-05 5.0349e-05 4.79647e-05 4.46221e-05 4.28477e-05 4.17386e-05 3.92551e-05 3.56525e-05 3.1554e-05 2.85994e-05 2.73472e-05 2.67127e-05 2.59658e-05 2.46629e-05 2.39377e-05 2.38735e-05 2.39854e-05 2.48353e-05 2.55266e-05 2.67221e-05 2.87433e-05 3.05071e-05 3.35002e-05 4.05516e-05 6.21418e-05 8.84029e-05 9.57025e-05 9.83451e-05 0.00010461 0.00013857 0.00016437 0.000162185 0.000166818 0.000186703 0.000206014 0.000226344 0.000239303 0.000222691 0.000165229 0.000113246 8.56294e-05 7.45627e-05 7.08461e-05 6.90352e-05 6.66442e-05 6.50746e-05 6.27814e-05 6.07818e-05 6.0932e-05 6.51639e-05 7.44687e-05 7.53986e-05 7.54433e-05 7.57324e-05 7.53938e-05 7.42623e-05 7.54257e-05 7.7177e-05 7.41137e-05 7.48545e-05 6.55114e-05 5.78052e-05 5.63329e-05 5.32358e-05 5.15113e-05 4.72144e-05 4.49219e-05 4.18962e-05 4.17726e-05 4.1471e-05 4.09766e-05 4.04811e-05 3.91581e-05 3.81006e-05 3.77905e-05 3.821e-05 4.10259e-05 4.91849e-05 5.29328e-05 5.41968e-05 5.43113e-05 5.46095e-05 5.57197e-05 5.60248e-05 5.47968e-05 5.36997e-05 5.37322e-05 5.57168e-05 5.798e-05 5.82507e-05 5.67969e-05 5.6004e-05 5.74218e-05 5.90958e-05 5.90813e-05 5.89815e-05 5.79346e-05 5.57479e-05 5.48723e-05 5.51122e-05 5.56624e-05 5.64935e-05 5.70671e-05 5.87003e-05 6.30556e-05 7.30402e-05 8.84418e-05 9.24322e-05 9.70759e-05 9.95171e-05 0.000103855 0.000102902 0.000100094 9.77244e-05 0.000110697 0.000107662 0.000123144 0.000125555 0.000142245 0.000138205 0.000164362 0.000154152 0.000162559 0.000144626 0.000136982 0.000114742 0.000106348 0.000104332 9.98368e-05 9.82293e-05 3.87666e-06 3.89464e-06 3.92678e-06 3.93207e-06 3.92527e-06 3.90404e-06 3.90118e-06 3.93094e-06 3.97972e-06 4.12839e-06 4.24449e-06 4.34937e-06 4.42143e-06 4.41458e-06 4.35307e-06 4.19113e-06 4.10135e-06 4.07058e-06 4.07249e-06 4.07241e-06 4.02578e-06 3.98741e-06 3.94217e-06 3.93503e-06 3.93683e-06 3.92648e-06 3.93931e-06 4.12706e-06 4.36219e-06 4.50388e-06 4.54371e-06 4.42888e-06 4.10406e-06 3.89707e-06 3.89396e-06 4.77038e-06 5.7686e-06 6.08149e-06 6.28197e-06 6.56522e-06 6.83669e-06 7.09918e-06 7.76443e-06 8.34551e-06 8.67497e-06 8.85533e-06 9.23276e-06 9.88276e-06 1.13855e-05 1.32239e-05 1.45428e-05 1.7633e-05 1.95732e-05 2.22577e-05 2.54826e-05 2.9069e-05 3.24436e-05 4.1075e-05 4.64257e-05 5.27073e-05 5.93496e-05 6.46476e-05 7.02019e-05 7.45876e-05 7.75705e-05 8.04601e-05 8.09635e-05 8.04552e-05 7.90105e-05 7.61056e-05 7.08447e-05 6.81235e-05 6.3714e-05 5.91379e-05 5.40309e-05 4.9718e-05 4.75765e-05 4.36779e-05 3.99406e-05 3.56723e-05 3.28505e-05 3.18568e-05 3.06735e-05 2.96695e-05 2.88091e-05 2.78656e-05 2.78729e-05 2.8195e-05 2.87007e-05 3.03777e-05 3.22033e-05 3.45877e-05 3.96502e-05 5.51685e-05 8.95724e-05 9.9216e-05 9.99566e-05 0.000101134 0.000108531 0.000145325 0.000163033 0.000158274 0.000164427 0.000181782 0.000199245 0.000225522 0.0002516 0.000252817 0.00020102 0.00013355 9.48547e-05 7.79246e-05 7.22343e-05 7.01224e-05 6.79759e-05 6.54665e-05 6.27024e-05 6.12343e-05 6.18571e-05 6.72099e-05 7.37884e-05 7.4269e-05 7.39031e-05 7.55102e-05 7.46534e-05 7.3839e-05 7.20878e-05 7.44467e-05 6.77333e-05 6.74082e-05 6.19818e-05 5.37655e-05 5.32754e-05 5.02029e-05 5.10172e-05 4.71099e-05 4.53305e-05 4.23967e-05 4.14772e-05 4.16629e-05 4.12868e-05 4.08717e-05 4.0325e-05 3.9127e-05 3.80724e-05 3.81736e-05 3.94415e-05 4.57583e-05 5.0381e-05 5.22482e-05 5.30802e-05 5.37023e-05 5.46187e-05 5.44719e-05 5.3608e-05 5.35181e-05 5.5251e-05 5.75156e-05 5.83899e-05 5.80189e-05 5.73378e-05 5.79888e-05 5.99164e-05 5.98739e-05 5.95536e-05 5.75612e-05 5.49729e-05 5.44348e-05 5.5234e-05 5.63816e-05 5.79619e-05 5.87028e-05 6.03249e-05 6.43789e-05 7.57531e-05 8.9241e-05 0.000102285 0.000106031 0.000111571 0.000111319 0.000109316 0.000105799 9.42198e-05 9.67323e-05 9.56298e-05 0.000101196 9.89524e-05 0.00011172 0.000106007 0.00012239 0.00011234 0.000140548 0.00013882 0.000143213 0.000139691 0.000129395 0.000120698 0.000111038 0.000105418 9.98844e-05 2.46593e-06 2.49354e-06 2.59204e-06 2.6556e-06 2.65885e-06 2.64784e-06 2.60325e-06 2.56632e-06 2.55341e-06 2.55409e-06 2.55501e-06 2.54901e-06 2.56237e-06 2.6474e-06 2.76887e-06 2.82829e-06 2.86089e-06 2.84853e-06 2.81898e-06 2.81207e-06 2.86742e-06 2.96732e-06 3.04902e-06 3.0918e-06 3.11783e-06 3.1292e-06 3.10657e-06 3.05325e-06 2.97524e-06 2.90743e-06 2.86602e-06 2.89355e-06 3.24422e-06 3.66881e-06 3.99768e-06 4.08521e-06 4.11593e-06 4.15331e-06 4.28976e-06 5.49336e-06 6.95878e-06 7.59634e-06 8.55096e-06 9.25118e-06 1.07355e-05 1.21609e-05 1.508e-05 1.71118e-05 2.05984e-05 2.39634e-05 2.63586e-05 3.15286e-05 3.4477e-05 3.93494e-05 4.33626e-05 4.99461e-05 5.63543e-05 6.72782e-05 7.38233e-05 8.20422e-05 9.06714e-05 9.75742e-05 0.000104545 0.000109071 0.000113637 0.000115102 0.000114707 0.000113108 0.000109148 0.000103766 9.69915e-05 8.78434e-05 8.22426e-05 7.51129e-05 6.63312e-05 6.20404e-05 5.60572e-05 5.25852e-05 4.91e-05 4.426e-05 4.1944e-05 3.89634e-05 3.70439e-05 3.55974e-05 3.30347e-05 3.21533e-05 3.21291e-05 3.22688e-05 3.32322e-05 3.57019e-05 3.72837e-05 4.06266e-05 5.05569e-05 8.55329e-05 0.000103192 0.00010329 0.000101661 0.00010373 0.000117723 0.000152186 0.000156661 0.000151835 0.000159518 0.000169862 0.000182493 0.000214542 0.000254386 0.000280334 0.000245072 0.000165309 0.000111469 8.53827e-05 7.57203e-05 7.22179e-05 7.01065e-05 6.74646e-05 6.44561e-05 6.2599e-05 6.28658e-05 6.72937e-05 7.15922e-05 7.28233e-05 7.32753e-05 7.48799e-05 7.43687e-05 7.45034e-05 7.07037e-05 7.22556e-05 6.65413e-05 6.19377e-05 6.05645e-05 5.32646e-05 5.37164e-05 4.97853e-05 5.11954e-05 4.79932e-05 4.67712e-05 4.69941e-05 4.56368e-05 4.63401e-05 4.54713e-05 4.28931e-05 4.21524e-05 4.12703e-05 3.91347e-05 3.8768e-05 3.9579e-05 4.37418e-05 4.84553e-05 5.08562e-05 5.20838e-05 5.2732e-05 5.29711e-05 5.26711e-05 5.23903e-05 5.2903e-05 5.54142e-05 5.6768e-05 5.69556e-05 5.6551e-05 5.66103e-05 5.78117e-05 5.78566e-05 5.71101e-05 5.47506e-05 5.34849e-05 5.34165e-05 5.47458e-05 5.78434e-05 5.87033e-05 5.97052e-05 6.15082e-05 6.67182e-05 7.99702e-05 9.76981e-05 0.000110814 0.000114867 0.000119235 0.00012295 0.00011975 0.000109494 9.9804e-05 9.3661e-05 9.55531e-05 9.67777e-05 9.98668e-05 9.9033e-05 0.000100599 0.000102168 0.000110098 0.000107151 0.000118651 0.000113048 0.000135288 0.000131015 0.0001283 0.000130856 0.000126526 0.000121487 0.000107537 2.45718e-06 2.46419e-06 2.49855e-06 2.60378e-06 2.6184e-06 2.63077e-06 2.67468e-06 2.69488e-06 2.72288e-06 2.7461e-06 2.74962e-06 2.78633e-06 2.83435e-06 2.93518e-06 2.99352e-06 3.01853e-06 3.08642e-06 3.15434e-06 3.22312e-06 3.2409e-06 3.25438e-06 3.27017e-06 3.3094e-06 3.48744e-06 3.64942e-06 3.76721e-06 3.86385e-06 3.90979e-06 3.94304e-06 3.99242e-06 4.14319e-06 4.49866e-06 4.78701e-06 5.13275e-06 5.51402e-06 6.23357e-06 6.73492e-06 7.73402e-06 8.43362e-06 9.17202e-06 1.06218e-05 1.21098e-05 1.51372e-05 1.73635e-05 2.13322e-05 2.42065e-05 2.85715e-05 3.18529e-05 3.70633e-05 4.16064e-05 4.50922e-05 5.22628e-05 5.67962e-05 6.40717e-05 7.17604e-05 8.09396e-05 9.20448e-05 0.000103116 0.000113458 0.000123903 0.000134304 0.000142814 0.000150051 0.000155642 0.000158473 0.000158315 0.000156705 0.000152897 0.000146316 0.000138741 0.000128669 0.000116768 0.000106205 9.41928e-05 8.40405e-05 7.36367e-05 6.76886e-05 6.44891e-05 5.79818e-05 5.47392e-05 5.07289e-05 4.63914e-05 4.3805e-05 4.05447e-05 3.83338e-05 3.77882e-05 3.77133e-05 3.79616e-05 3.94987e-05 4.07698e-05 4.27301e-05 4.81786e-05 7.41596e-05 0.0001045 0.000107991 0.000104322 0.000102368 0.000106181 0.000130389 0.000150389 0.000147581 0.000144497 0.000150692 0.000153212 0.00015403 0.000181183 0.000245712 0.000290224 0.000292528 0.000211754 0.000137794 9.75598e-05 8.08002e-05 7.49718e-05 7.26684e-05 7.03594e-05 6.70273e-05 6.42124e-05 6.38464e-05 6.67558e-05 6.96624e-05 7.10359e-05 7.15879e-05 7.32165e-05 7.36671e-05 7.44691e-05 7.14214e-05 7.16424e-05 6.91899e-05 6.13546e-05 6.19205e-05 5.51019e-05 6.00631e-05 5.32401e-05 5.61458e-05 5.36232e-05 5.09557e-05 5.33917e-05 5.31371e-05 5.2304e-05 5.0241e-05 4.78562e-05 4.6318e-05 4.50638e-05 4.14968e-05 4.0319e-05 4.06977e-05 4.22619e-05 4.57696e-05 4.88683e-05 5.09045e-05 5.17768e-05 5.18212e-05 5.15504e-05 5.151e-05 5.24752e-05 5.35278e-05 5.36646e-05 5.34522e-05 5.33462e-05 5.36297e-05 5.36548e-05 5.29966e-05 5.19187e-05 5.17814e-05 5.21757e-05 5.51775e-05 5.85424e-05 5.92721e-05 6.03087e-05 6.3122e-05 7.02564e-05 8.62626e-05 0.000108554 0.000120938 0.000133705 0.000133332 0.000134597 0.000130872 0.000120561 0.000108156 9.7971e-05 9.86714e-05 9.79231e-05 0.000103984 0.000101444 0.000106413 0.000104306 0.000107394 0.000108279 0.00010244 0.000106867 0.000106068 0.000117777 0.000116445 0.000119623 0.000128173 0.000129172 0.000129979 0.000122531 3.72539e-06 3.86853e-06 4.07161e-06 4.43429e-06 4.64477e-06 4.6786e-06 4.72393e-06 4.72506e-06 4.73465e-06 4.77866e-06 4.80167e-06 4.95184e-06 5.3605e-06 5.91797e-06 6.45131e-06 6.61886e-06 6.74842e-06 6.7242e-06 6.71748e-06 6.74117e-06 6.86848e-06 7.37477e-06 7.95474e-06 8.54329e-06 8.87665e-06 9.13493e-06 9.29506e-06 9.40561e-06 9.57881e-06 9.78098e-06 1.03836e-05 1.1528e-05 1.23979e-05 1.34963e-05 1.42513e-05 1.52814e-05 1.60771e-05 1.75753e-05 1.88361e-05 2.14328e-05 2.38545e-05 2.73395e-05 3.16768e-05 3.4842e-05 3.93721e-05 4.56049e-05 4.90834e-05 5.52501e-05 6.08142e-05 6.66005e-05 7.32053e-05 8.24237e-05 8.99102e-05 9.9535e-05 0.000112708 0.000123571 0.000137694 0.0001507 0.000165137 0.000175659 0.000183091 0.000187071 0.000187957 0.000187628 0.000186011 0.000183748 0.00018029 0.000175487 0.000171994 0.000164264 0.000154997 0.000145254 0.000130504 0.00011868 0.000105877 9.0999e-05 8.26737e-05 7.41572e-05 6.66368e-05 6.13227e-05 5.52722e-05 5.24275e-05 4.96449e-05 4.66539e-05 4.59482e-05 4.47851e-05 4.4245e-05 4.46655e-05 4.53523e-05 4.59562e-05 4.83765e-05 6.09477e-05 9.89244e-05 0.000111259 0.000109357 0.000103068 0.000104448 0.000117479 0.000138833 0.000143753 0.000137316 0.000136075 0.000139206 0.00013303 0.000116649 0.000120294 0.000197398 0.000290157 0.000321757 0.000274273 0.000179592 0.000119499 9.05599e-05 7.93998e-05 7.51259e-05 7.29975e-05 7.0025e-05 6.62203e-05 6.51844e-05 6.60143e-05 6.78891e-05 6.8548e-05 6.8823e-05 7.00882e-05 7.18997e-05 7.48033e-05 7.51451e-05 7.24587e-05 7.49279e-05 6.44588e-05 6.8203e-05 6.17612e-05 6.69872e-05 6.38341e-05 6.20346e-05 5.49321e-05 5.28071e-05 5.43787e-05 5.37986e-05 5.24203e-05 5.22825e-05 5.18133e-05 5.09406e-05 4.96802e-05 4.61435e-05 4.42696e-05 4.33481e-05 4.34361e-05 4.47879e-05 4.65528e-05 4.86214e-05 4.98674e-05 5.01076e-05 5.0185e-05 5.08713e-05 5.14626e-05 5.17067e-05 5.16936e-05 5.15878e-05 5.16317e-05 5.20653e-05 5.20425e-05 5.19489e-05 5.21883e-05 5.36388e-05 5.57486e-05 5.83191e-05 5.943e-05 6.10892e-05 6.51658e-05 7.61852e-05 9.79988e-05 0.000125827 0.000140146 0.000148422 0.000150019 0.000145891 0.000144141 0.000124157 0.000117416 0.00010328 0.000104017 0.000104654 0.000100157 0.000112883 0.00010621 0.000116474 0.000114443 0.000122914 0.000116621 0.00010863 0.000106345 0.000103819 0.000107466 0.000107127 0.000111598 0.000120091 0.000124891 0.000136526 0.000131841 1.297e-05 1.34678e-05 1.42119e-05 1.45931e-05 1.52293e-05 1.53092e-05 1.54331e-05 1.56101e-05 1.56593e-05 1.59608e-05 1.61351e-05 1.64647e-05 1.7828e-05 1.87872e-05 2.00323e-05 2.05113e-05 2.07698e-05 2.08679e-05 2.08463e-05 2.08759e-05 2.10356e-05 2.12655e-05 2.17037e-05 2.25401e-05 2.31256e-05 2.3946e-05 2.45917e-05 2.49975e-05 2.59128e-05 2.65823e-05 2.79741e-05 2.91716e-05 3.06178e-05 3.20618e-05 3.34742e-05 3.50145e-05 3.72484e-05 3.91337e-05 4.10529e-05 4.47977e-05 4.78687e-05 5.33695e-05 5.711e-05 6.37087e-05 6.81536e-05 7.51849e-05 7.97127e-05 8.82959e-05 9.42712e-05 0.000103664 0.000114221 0.000124001 0.000136195 0.00014797 0.000162677 0.000174364 0.000188054 0.000195853 0.000199412 0.000200791 0.000200181 0.000198842 0.00019596 0.000193214 0.000190648 0.000187968 0.00018412 0.000180395 0.000177983 0.00017262 0.000167611 0.00015918 0.00014887 0.00013783 0.000123506 0.000111569 9.8044e-05 8.63809e-05 7.94989e-05 7.17074e-05 6.61886e-05 6.25614e-05 5.81602e-05 5.63723e-05 5.54575e-05 5.28635e-05 5.18043e-05 5.17984e-05 5.16821e-05 5.22743e-05 5.66505e-05 8.35102e-05 0.000110051 0.000112176 0.000104092 0.000102428 0.000109575 0.000126141 0.000135792 0.000133255 0.000127078 0.000127572 0.000126718 0.000115294 9.54537e-05 9.2572e-05 0.0001208 0.00025962 0.000329158 0.000334769 0.000241642 0.000157342 0.000109462 8.78947e-05 7.96181e-05 7.60548e-05 7.28802e-05 6.9192e-05 6.74668e-05 6.71269e-05 6.73105e-05 6.73274e-05 6.71546e-05 6.8372e-05 7.15176e-05 7.35618e-05 7.46433e-05 7.36037e-05 7.49257e-05 6.59538e-05 6.94133e-05 6.49556e-05 6.69615e-05 6.65472e-05 6.10464e-05 5.47342e-05 5.36519e-05 5.50169e-05 5.32272e-05 5.25838e-05 5.30067e-05 5.34229e-05 5.52463e-05 5.68463e-05 5.61373e-05 5.46544e-05 5.01716e-05 4.6843e-05 4.65902e-05 4.6906e-05 4.8192e-05 4.91912e-05 4.93637e-05 4.97804e-05 5.04502e-05 5.08312e-05 5.1266e-05 5.1389e-05 5.1515e-05 5.22942e-05 5.3202e-05 5.35989e-05 5.40727e-05 5.53485e-05 5.65071e-05 5.74238e-05 5.87867e-05 6.18026e-05 6.88531e-05 8.47827e-05 0.000117215 0.000146909 0.000161847 0.000166251 0.000165284 0.000161411 0.000149916 0.000133697 0.000105688 0.000104311 9.85564e-05 0.000107523 0.000107871 0.000116608 0.000122023 0.000114196 0.000133517 0.00013815 0.000141925 0.000132863 0.000124322 0.000113698 0.000111806 0.000106154 0.000105254 0.000108278 0.000118923 0.000123323 0.000133502 0.000131522 4.44479e-05 4.47905e-05 4.58614e-05 4.61328e-05 4.68257e-05 4.68097e-05 4.68987e-05 4.71269e-05 4.70507e-05 4.73859e-05 4.76359e-05 4.79861e-05 4.95425e-05 5.0415e-05 5.16173e-05 5.1975e-05 5.19889e-05 5.20143e-05 5.18405e-05 5.18045e-05 5.18889e-05 5.20326e-05 5.23468e-05 5.30823e-05 5.35004e-05 5.43875e-05 5.50172e-05 5.56438e-05 5.68703e-05 5.78491e-05 5.92045e-05 6.09598e-05 6.20149e-05 6.37372e-05 6.58396e-05 6.72853e-05 7.02941e-05 7.29598e-05 7.65261e-05 8.066e-05 8.49031e-05 9.0001e-05 9.58314e-05 0.000101797 0.000107981 0.000117228 0.000124206 0.000131634 0.000142501 0.000152523 0.000163517 0.000175306 0.000185574 0.000193892 0.000201272 0.00020585 0.000206924 0.000206939 0.000206034 0.00020328 0.000196465 0.000190877 0.000186563 0.000182343 0.000179691 0.000178054 0.000177676 0.000176832 0.000175473 0.000173208 0.00016896 0.000164844 0.000158321 0.000148218 0.000138189 0.000126116 0.000113308 0.000102767 9.19753e-05 8.36902e-05 7.82768e-05 7.2424e-05 6.75597e-05 6.51717e-05 6.22355e-05 5.96648e-05 5.92314e-05 5.86006e-05 5.82366e-05 5.93727e-05 7.28911e-05 0.000104124 0.00011005 0.000104453 9.98665e-05 0.000101853 0.000112369 0.00012244 0.000125276 0.000121901 0.000119238 0.000118971 0.000116403 0.000103333 8.88958e-05 8.74944e-05 9.85854e-05 0.000181519 0.000321742 0.000359493 0.000325375 0.000218758 0.0001454 0.000105702 8.84162e-05 8.14842e-05 7.82081e-05 7.41552e-05 7.09832e-05 6.84909e-05 6.76032e-05 6.72025e-05 6.71162e-05 6.8329e-05 7.0412e-05 7.14536e-05 7.26864e-05 7.20021e-05 7.0586e-05 6.54109e-05 6.85675e-05 6.50805e-05 6.36666e-05 6.47496e-05 5.52738e-05 5.40571e-05 5.52392e-05 5.67627e-05 5.4608e-05 5.52618e-05 5.66257e-05 5.67462e-05 5.72378e-05 6.01508e-05 6.60213e-05 6.69522e-05 6.45238e-05 5.76236e-05 5.25038e-05 4.97979e-05 4.98343e-05 4.98944e-05 4.98679e-05 5.02253e-05 5.05245e-05 5.09101e-05 5.13226e-05 5.15248e-05 5.24258e-05 5.40938e-05 5.44848e-05 5.49866e-05 5.56686e-05 5.62272e-05 5.72346e-05 5.9517e-05 6.50225e-05 7.72275e-05 9.90661e-05 0.000142265 0.000171692 0.000178423 0.000178542 0.000176758 0.000170861 0.000155171 0.000126904 0.000106463 9.05016e-05 9.03891e-05 9.00534e-05 0.000104859 0.000108529 0.000124253 0.000123492 0.000133604 0.000152393 0.000152212 0.000154302 0.000144421 0.000135925 0.000123362 0.000116509 0.000105653 0.000111698 0.000114559 0.00012735 0.000125591 0.000125222 0.000126693 0.000111584 0.000110383 0.000109586 0.000107214 0.000106789 0.000105962 0.000105231 0.000104591 0.000103128 0.000103137 0.00010292 0.0001028 0.00010313 0.000102984 0.000102874 0.00010265 0.000101643 0.000101087 9.97298e-05 9.91135e-05 9.90312e-05 9.88854e-05 9.88984e-05 9.89834e-05 9.9065e-05 9.92478e-05 9.94437e-05 9.9837e-05 0.000100501 0.00010151 0.000102726 0.000103874 0.000105158 0.000107121 0.000108513 0.000111283 0.000113582 0.000117445 0.000121661 0.000126058 0.000131116 0.000137952 0.000143028 0.000150911 0.000158808 0.000166123 0.00017457 0.000182348 0.000189564 0.000196113 0.000200688 0.000204263 0.000206137 0.000208924 0.000210171 0.00020952 0.000206624 0.000197734 0.00018641 0.000176482 0.000171158 0.000169161 0.000168017 0.000168042 0.000168351 0.000167911 0.00016814 0.00016871 0.000168309 0.000168216 0.000166988 0.000164415 0.000159379 0.000151372 0.000145429 0.000138065 0.000126283 0.0001154 0.000107288 9.99474e-05 9.55703e-05 9.19046e-05 8.59548e-05 8.08002e-05 7.88479e-05 7.62017e-05 7.07826e-05 6.76818e-05 6.77525e-05 7.13914e-05 9.57768e-05 0.000107779 0.000105789 9.81515e-05 9.78193e-05 0.000102296 0.000109192 0.000114592 0.00011632 0.000115357 0.000114133 0.000112936 0.000108941 9.57327e-05 8.80302e-05 8.83833e-05 9.73355e-05 0.000129129 0.000262414 0.000364499 0.000380809 0.000312826 0.000208818 0.000141927 0.000106262 9.0471e-05 8.38785e-05 8.04154e-05 7.57121e-05 7.17292e-05 6.93998e-05 6.84259e-05 6.81769e-05 6.88009e-05 7.04514e-05 7.10656e-05 6.95661e-05 6.78436e-05 6.95266e-05 6.32187e-05 6.61503e-05 6.48244e-05 6.46117e-05 6.33414e-05 5.35216e-05 5.49984e-05 5.85726e-05 5.84138e-05 5.85794e-05 6.04872e-05 6.03246e-05 5.95961e-05 5.9675e-05 6.14095e-05 6.76566e-05 6.93498e-05 6.92001e-05 6.83066e-05 6.40084e-05 5.89184e-05 5.5938e-05 5.34843e-05 5.28167e-05 5.2437e-05 5.21922e-05 5.228e-05 5.22896e-05 5.24785e-05 5.3762e-05 5.44287e-05 5.4856e-05 5.54863e-05 5.65649e-05 5.89092e-05 6.41042e-05 7.40824e-05 9.36588e-05 0.000126017 0.000172225 0.000190731 0.000191288 0.000188248 0.000183737 0.000172569 0.000142813 0.0001148 9.29098e-05 8.33098e-05 7.88062e-05 8.10992e-05 8.61354e-05 0.000101145 0.000105572 0.000119973 0.000122548 0.000142867 0.000141163 0.000144684 0.000162815 0.000158764 0.000150955 0.000133415 0.00012131 0.000107695 0.000110714 0.000131344 0.000153127 0.000148451 0.000137903 0.000126945 0.000209847 0.000204871 0.000199982 0.000192645 0.000190064 0.000185177 0.000181218 0.000178431 0.00017426 0.00017261 0.000170231 0.000167776 0.000166813 0.000164484 0.000162684 0.000160422 0.000157621 0.000156253 0.000154148 0.000152737 0.000152318 0.000151454 0.000150898 0.000150613 0.000149839 0.000149468 0.000149149 0.000149169 0.00014944 0.000149819 0.000150461 0.000151412 0.0001522 0.000153943 0.000155769 0.000157787 0.000161739 0.000165247 0.000169802 0.000175086 0.000179788 0.000185182 0.000190605 0.000195083 0.000198934 0.00020214 0.000204068 0.000206234 0.000207099 0.000208106 0.00020954 0.000209532 0.000208473 0.000205224 0.000197607 0.000184472 0.000169434 0.000164079 0.000162585 0.000162678 0.000162761 0.000162986 0.000163772 0.000164297 0.000164485 0.000164546 0.000164905 0.000164607 0.000164275 0.000164566 0.000163383 0.000161729 0.000157795 0.000153078 0.000147657 0.000140894 0.000133997 0.000127975 0.000118962 0.000108995 0.000103067 9.95325e-05 9.58819e-05 9.31958e-05 8.96333e-05 8.53552e-05 8.3729e-05 8.39239e-05 8.83174e-05 0.000105222 0.000109616 0.000107253 9.65297e-05 9.32303e-05 9.60055e-05 0.000103281 0.000108745 0.000112679 0.000114106 0.00011322 0.000111035 0.000108962 0.000105968 9.56463e-05 8.97849e-05 9.43477e-05 0.000112843 0.000127363 0.000173776 0.000329479 0.000396006 0.000396845 0.000312461 0.000211704 0.00014747 0.000110838 9.37912e-05 8.73616e-05 8.42202e-05 8.01475e-05 7.62318e-05 7.34023e-05 7.20828e-05 7.16765e-05 7.18293e-05 7.0894e-05 6.97147e-05 6.87094e-05 7.03653e-05 6.35231e-05 6.97549e-05 6.85043e-05 7.0726e-05 6.3754e-05 5.59844e-05 6.28964e-05 6.49611e-05 6.2332e-05 6.25344e-05 6.3672e-05 6.36743e-05 6.43785e-05 6.45832e-05 6.54771e-05 6.81562e-05 6.87442e-05 6.99912e-05 7.00043e-05 6.95313e-05 6.83836e-05 6.55011e-05 6.28247e-05 6.07095e-05 5.85615e-05 5.72348e-05 5.65537e-05 5.64647e-05 5.657e-05 5.69975e-05 5.77174e-05 5.90539e-05 6.2031e-05 6.79481e-05 7.90213e-05 9.7958e-05 0.000124033 0.000168653 0.000198056 0.000205366 0.000203742 0.000191435 0.00016486 0.000136037 0.000110471 9.22941e-05 7.93391e-05 7.15554e-05 6.97657e-05 7.00854e-05 7.63771e-05 8.42739e-05 0.000103195 0.000109715 0.000136766 0.000141183 0.000154898 0.000155202 0.000160502 0.000176189 0.000165428 0.000154036 0.000141817 0.00013624 0.000120307 0.000125367 0.000153652 0.000157861 0.000158626 0.00015162 0.00012895 0.000307603 0.000294908 0.000281423 0.000269615 0.000260622 0.000251597 0.000244368 0.000237794 0.000231905 0.000227589 0.000222495 0.000218181 0.000214472 0.000210231 0.000206646 0.000203332 0.000200602 0.000198568 0.000196507 0.000194894 0.000193768 0.000192385 0.000191104 0.000190258 0.000189579 0.000189055 0.000188707 0.000188688 0.000188789 0.00018913 0.000189579 0.000190441 0.000191785 0.000193297 0.000195711 0.000198144 0.000200599 0.000203372 0.000205509 0.000207306 0.000209027 0.000210197 0.000210833 0.000211212 0.000211348 0.000211231 0.000210784 0.000209713 0.000207635 0.000204115 0.000198735 0.00019093 0.000179184 0.000163583 0.000151367 0.000148731 0.000150259 0.000153708 0.000156406 0.000158541 0.000159382 0.000159367 0.000158292 0.000157604 0.000157247 0.000156904 0.000156457 0.000156226 0.000156551 0.000156225 0.000154704 0.000154023 0.000152681 0.000149853 0.000145138 0.00013976 0.000134738 0.000129203 0.000122648 0.000117785 0.000115024 0.000113443 0.000113293 0.000115241 0.000118119 0.000118548 0.000118894 0.000122057 0.000122787 0.000118015 0.000107788 9.46289e-05 8.68717e-05 8.69752e-05 9.48899e-05 0.000103483 0.000109284 0.000112793 0.000114057 0.000113812 0.00011316 0.000110661 0.00010111 9.38618e-05 9.48978e-05 0.000100979 0.000138294 0.000151542 0.000153146 0.000212511 0.000375094 0.000420063 0.000413509 0.000329334 0.000234011 0.000168025 0.000122083 0.000102619 9.49072e-05 9.18771e-05 8.92819e-05 8.52669e-05 8.1354e-05 7.83692e-05 7.7087e-05 7.61257e-05 7.61383e-05 7.39713e-05 7.52539e-05 7.16719e-05 8.95961e-05 7.99332e-05 7.13905e-05 6.53644e-05 6.25511e-05 6.85785e-05 6.9991e-05 6.90037e-05 6.92359e-05 7.09047e-05 7.42116e-05 7.69964e-05 7.71668e-05 7.69625e-05 7.38772e-05 7.11645e-05 7.08349e-05 7.1152e-05 7.19928e-05 7.18665e-05 7.15321e-05 7.07803e-05 6.83979e-05 6.67888e-05 6.57597e-05 6.58497e-05 6.68183e-05 6.82002e-05 7.12693e-05 7.80099e-05 8.45637e-05 9.96409e-05 0.000117392 0.000144259 0.000187456 0.000211599 0.000218244 0.000219023 0.000207376 0.000153148 0.000108842 8.84036e-05 7.69383e-05 6.97626e-05 6.56761e-05 6.36095e-05 6.31654e-05 6.36544e-05 6.56117e-05 7.17303e-05 8.04089e-05 9.86498e-05 0.000109858 0.000133332 0.000151445 0.000184314 0.000182553 0.000198155 0.000206751 0.000191982 0.000207901 0.000196547 0.000178181 0.000133536 0.00013477 0.000142861 0.000138399 0.000145457 0.000146019 0.000133802 0.00037243 0.000347898 0.000326151 0.000309051 0.000294955 0.000283373 0.000273459 0.000264881 0.000257835 0.000251511 0.000245765 0.000240882 0.000236778 0.000233085 0.000230005 0.000227616 0.000225722 0.000224108 0.000222529 0.000221465 0.000220561 0.000219588 0.000218894 0.000218377 0.000217951 0.000217598 0.000217451 0.000217484 0.000217619 0.000217846 0.000218273 0.000218621 0.00021906 0.000219393 0.0002194 0.000219283 0.000219018 0.000218547 0.000218097 0.000217282 0.000216318 0.000214771 0.000212734 0.000209809 0.000205735 0.000200257 0.000193423 0.000185093 0.000174525 0.000161893 0.000147418 0.000133987 0.000126161 0.000124153 0.000127808 0.000135761 0.000144651 0.000150114 0.000153686 0.000155345 0.000155754 0.000154644 0.000152816 0.000151227 0.000149593 0.000148596 0.000148046 0.000148287 0.000148473 0.000148372 0.000148556 0.000148748 0.000148159 0.000146093 0.000142542 0.000140012 0.000137801 0.000135425 0.000134281 0.00013264 0.000130886 0.000130325 0.000129874 0.000128057 0.000124798 0.000122722 0.000121084 0.000117504 0.000112503 0.000106369 9.75239e-05 8.99172e-05 8.64963e-05 8.74769e-05 9.8969e-05 0.000106899 0.000111071 0.000113992 0.000114297 0.00011319 0.000113433 0.000113398 0.000106297 0.000102244 0.000114565 0.000151054 0.00019412 0.000198445 0.000172785 0.000163268 0.000195682 0.000376489 0.000442589 0.000431538 0.000374297 0.000300798 0.000206191 0.000154382 0.000122237 0.00010805 0.000103346 0.00010182 0.000100752 9.90237e-05 9.82705e-05 9.73683e-05 9.48924e-05 8.74384e-05 8.57743e-05 8.48826e-05 9.55386e-05 8.49396e-05 7.41076e-05 7.16898e-05 7.3334e-05 7.66747e-05 7.80683e-05 8.2131e-05 8.33478e-05 8.49144e-05 8.5054e-05 8.4439e-05 8.2186e-05 7.92895e-05 7.55429e-05 7.37359e-05 7.35207e-05 7.3651e-05 7.47453e-05 7.66598e-05 7.75826e-05 7.82756e-05 7.93412e-05 8.13422e-05 8.573e-05 9.46894e-05 0.000114869 0.000124911 0.000141985 0.00016409 0.000177779 0.000204651 0.000238425 0.000241478 0.000240528 0.000238138 0.000216987 0.00016095 0.000115959 8.6389e-05 6.93946e-05 6.18371e-05 5.90369e-05 5.88615e-05 5.91742e-05 6.01748e-05 6.21444e-05 6.64029e-05 6.77727e-05 7.04271e-05 7.35862e-05 8.05018e-05 0.000100173 0.000115159 0.000151162 0.000173258 0.0001935 0.000251278 0.00022591 0.000247947 0.00025871 0.000306049 0.000267992 0.000176564 0.000149908 0.000143753 0.000144541 0.000160301 0.000175281 0.000158745 0.000400882 0.000361529 0.000332835 0.00031197 0.000296768 0.000285494 0.000276731 0.00027015 0.000264888 0.000260534 0.000257103 0.000254353 0.000252126 0.000250174 0.000248595 0.000247426 0.00024625 0.000245142 0.000244186 0.000243277 0.000242274 0.000241248 0.000240341 0.000239482 0.000238538 0.000237527 0.000236472 0.000235367 0.000234135 0.000232747 0.000231262 0.000229629 0.000227747 0.000225618 0.000223091 0.00022024 0.000216819 0.000212687 0.000207821 0.000201982 0.00019529 0.000187337 0.000177865 0.000167067 0.000155186 0.000142725 0.000129998 0.000117163 0.000106542 9.8718e-05 9.51795e-05 9.62526e-05 0.000100734 0.000108152 0.000118512 0.000130684 0.000144034 0.000157915 0.000169673 0.00017752 0.000180907 0.000181744 0.000178184 0.000172355 0.000164677 0.000155822 0.000147021 0.000140351 0.000137046 0.000135888 0.00013643 0.000136655 0.000136715 0.000135768 0.000134905 0.000134678 0.000132727 0.000130189 0.000127556 0.000122945 0.000116405 0.000109473 0.000104164 0.000101926 0.00010267 0.000105905 0.000108894 0.00011149 0.000112362 0.000111426 0.0001108 0.000110946 0.000112333 0.000116792 0.000117681 0.000116216 0.000112708 0.000112553 0.000114606 0.000119056 0.000121648 0.000125807 0.000138545 0.000172282 0.000242861 0.000291267 0.000286473 0.000260054 0.000203198 0.000172751 0.000172464 0.000184089 0.000291614 0.000452594 0.000435284 0.000423632 0.000395788 0.000332224 0.000264941 0.000206725 0.000167474 0.000145482 0.000135482 0.000130962 0.000126923 0.000123685 0.000117797 0.000110971 0.000104233 0.000100285 9.86356e-05 9.45086e-05 8.83321e-05 9.85632e-05 9.98247e-05 9.84378e-05 9.56294e-05 9.74641e-05 9.87049e-05 0.000100462 0.000100881 0.000101469 0.000102546 0.000106034 0.000108011 0.000111036 0.000115129 0.000118183 0.000123271 0.000134362 0.00014648 0.000155093 0.000168213 0.000197433 0.000228439 0.000256771 0.000280694 0.00029757 0.000306524 0.000307183 0.00030576 0.000300468 0.000289668 0.000256912 0.000211995 0.000166552 0.000130606 0.000107438 9.82716e-05 9.09476e-05 8.12975e-05 7.37678e-05 7.24434e-05 7.05085e-05 7.13967e-05 7.23772e-05 7.57442e-05 8.45611e-05 8.6332e-05 8.85261e-05 9.77247e-05 0.0001033 0.000124401 0.000126487 0.000162475 0.000205964 0.0002293 0.000299465 0.00024072 0.000242117 0.000226481 0.000256723 0.000220102 0.00019863 0.00018243 0.000177545 0.000179114 0.000203612 0.000227906 0.000205983 0.000338689 0.000302238 0.000283836 0.000275216 0.000271799 0.000270428 0.000269492 0.000268131 0.000265951 0.000263154 0.000260129 0.000257063 0.000254133 0.000251336 0.000248745 0.000246279 0.000243817 0.000241399 0.000238979 0.000236527 0.000233982 0.000231347 0.000228616 0.000225735 0.000222649 0.000219356 0.000215767 0.000211825 0.000207428 0.000202543 0.000197085 0.00019098 0.000184115 0.00017641 0.000167763 0.000158135 0.000147431 0.000135636 0.000122685 0.000108454 9.37372e-05 8.14772e-05 7.09589e-05 6.19694e-05 5.54576e-05 5.2245e-05 5.25912e-05 5.74648e-05 6.35297e-05 6.96746e-05 7.68672e-05 8.52339e-05 9.50941e-05 0.000107241 0.000122458 0.000140934 0.000162946 0.000187981 0.000214764 0.000241374 0.000265996 0.00028703 0.000303341 0.000314513 0.00031947 0.000320817 0.000314476 0.000302772 0.000285889 0.000264326 0.00024007 0.000214945 0.000191024 0.00016831 0.000147803 0.000130597 0.000114566 0.000102828 9.38363e-05 8.84534e-05 8.62342e-05 8.83894e-05 9.35589e-05 0.000101196 0.000110817 0.000122826 0.000137473 0.000156048 0.000179489 0.000206302 0.00023953 0.000265587 0.000282384 0.000288419 0.000284194 0.000268817 0.000265425 0.000265979 0.000272199 0.000296847 0.000335074 0.00036687 0.000428021 0.000465028 0.000459529 0.000415107 0.00032404 0.000260027 0.000242358 0.000250461 0.000272455 0.000272892 0.000270043 0.00023915 0.000241037 0.000412229 0.000498778 0.000526084 0.000533418 0.000523487 0.000495965 0.000461228 0.000420549 0.000376283 0.000333396 0.000305811 0.0002686 0.000225881 0.000202797 0.000152594 0.000146796 0.000122103 0.000127135 0.000120599 0.000117995 0.000126237 0.000133596 0.000151636 0.000173411 0.000202003 0.000222618 0.000237769 0.000253302 0.000269497 0.000278383 0.000291985 0.000305694 0.000321765 0.000342535 0.000365623 0.000387097 0.000407124 0.000420379 0.000425082 0.000423168 0.000414305 0.0003923 0.000372523 0.000354389 0.000335831 0.000316936 0.000290104 0.000258561 0.000224225 0.000203111 0.000185882 0.000181719 0.000178016 0.00017598 0.000168555 0.000166364 0.000163527 0.000170157 0.000170988 0.000184476 0.000192403 0.000203657 0.000234168 0.000241362 0.000262454 0.000288706 0.000331247 0.000327818 0.000337729 0.000326399 0.000315002 0.000260367 0.000303075 0.000353748 0.000364519 0.000332689 0.000329831 0.000247874 0.000268842 0.00032392 0.000405347 0.000409213 0.000419998 0.000408603 0.000401366 1.66603e-05 2.27077e-05 2.68546e-05 3.07854e-05 3.59676e-05 4.19007e-05 4.7156e-05 5.13637e-05 5.37992e-05 5.33727e-05 5.13617e-05 4.68815e-05 4.04531e-05 3.77239e-05 4.00365e-05 4.11795e-05 4.06371e-05 3.9315e-05 3.84156e-05 4.07011e-05 4.61479e-05 5.08825e-05 5.53571e-05 6.27556e-05 6.99076e-05 7.5433e-05 8.12501e-05 9.05659e-05 9.59553e-05 9.9828e-05 0.000103535 0.000102418 9.78553e-05 8.6621e-05 7.24915e-05 6.46616e-05 6.76054e-05 8.36441e-05 0.00010379 0.000122293 0.000131133 0.000135006 0.000140462 0.000157015 0.000198754 0.000257036 0.000301322 0.000327909 0.000360481 0.000382257 0.000382502 0.000341978 0.00028391 0.000265392 0.000262593 0.000263839 0.000262529 0.000253843 0.000248385 0.000238463 0.00021949 0.000203864 0.000192894 0.000179345 0.000173528 0.000172749 0.000177961 0.000188448 0.000207443 0.00024494 0.000284253 0.000348655 0.000424674 0.000438885 0.00040837 0.000288974 0.000197673 0.000181772 0.000192686 0.000214676 0.000236647 0.000244026 0.00024094 0.0002156 0.00021915 0.000287188 0.000340174 0.000372959 0.000391188 0.000398045 0.000398864 0.000388411 0.00037183 0.000349672 0.000322215 0.000293528 0.000264274 0.000234721 0.000206165 0.000185109 0.000159253 0.000145115 0.000131558 0.000124841 0.000122036 0.000124949 0.00013367 0.000148276 0.000167235 0.000190504 0.000216752 0.000245137 0.000274981 0.000304678 0.000332328 0.000358523 0.000383125 0.000402813 0.000411973 0.000411232 0.00040366 0.000379421 0.000337777 0.000294334 0.000256992 0.000226248 0.000194828 0.000158386 0.00012697 0.000108325 9.92396e-05 9.53552e-05 9.4876e-05 9.65613e-05 9.97174e-05 0.000104058 0.00010994 0.000117376 0.000126472 0.000137195 0.000149538 0.000162772 0.000174431 0.000180519 0.00018337 0.000186703 0.000197165 0.00020717 0.000211039 0.00020857 0.000187875 0.000188706 0.000231493 0.000259732 0.000276846 0.000290209 0.000298614 0.00030239 0.00030178 0.000295589 0.000286766 0.000272526 0.000253864 0.00023721 0.000208475 0.000193214 0.000166528 0.000152819 0.000132145 0.000121261 0.000110034 0.000102845 9.86754e-05 9.67883e-05 9.81806e-05 0.000102194 0.000106564 0.000108118 0.000106024 8.85687e-05 6.27083e-05 5.99083e-05 7.07614e-05 8.63038e-05 0.000100238 0.000114827 0.000128842 0.000136484 0.000139321 0.000139311 0.000133084 0.000127157 0.000117374 0.000102193 9.16382e-05 7.77036e-05 6.45555e-05 5.27303e-05 4.25736e-05 3.47445e-05 3.11716e-05 3.10407e-05 2.77271e-05 2.37107e-05 2.10856e-05 1.89516e-05 1.89325e-05 2.05809e-05 2.45808e-05 3.04775e-05 3.59965e-05 4.15502e-05 4.22327e-05 4.35993e-05 4.16187e-05 3.62603e-05 3.64696e-05 4.18244e-05 5.36197e-05 6.88579e-05 7.73315e-05 7.8446e-05 7.64328e-05 7.24192e-05 6.6849e-05 6.12e-05 6.00129e-05 5.88941e-05 5.77559e-05 5.78803e-05 6.02192e-05 6.56311e-05 7.16021e-05 7.5859e-05 7.74278e-05 8.51955e-05 0.000106434 0.000135433 0.000144779 0.000145331 0.000138253 0.000124674 0.000117718 0.000125474 0.000156145 0.000189632 0.000206822 0.000222376 0.00022758 0.000206735 0.000139445 0.000117759 0.000107671 0.000103356 0.000103657 0.000109877 0.000112242 0.000109881 0.000113809 0.000120851 0.000127989 0.00013415 0.000142592 0.000152711 0.000161866 0.000171459 0.000178814 0.000182729 0.000180589 0.000176506 0.000167453 0.000165673 0.000185999 0.000251338 0.000316825 0.000304286 0.000286268 0.00024927 0.000200207 0.000184863 0.000184857 0.000189141 0.000252679 0.000297048 0.000289972 0.000290679 0.000283791 0.000257736 0.000228905 0.000201398 0.000174684 0.000152473 0.00013811 0.000130309 0.00012725 0.000126411 0.000126113 0.000126291 0.000126952 0.000128993 0.000130058 0.000132991 0.000135157 0.000136616 0.000137737 0.000138803 0.000139486 0.000138966 0.000138975 0.000139229 0.000139738 0.000140804 0.000143756 0.000146709 0.000151115 0.000155943 0.000164278 0.000176572 0.000194539 0.000219767 0.000246316 0.000279059 0.000297517 0.000300702 0.000301144 0.000299818 0.000294633 0.000282806 0.000245395 0.000188423 0.000150562 0.000128157 0.000116298 0.000108792 0.000101476 9.37719e-05 8.64001e-05 8.02756e-05 7.63967e-05 7.50147e-05 7.53925e-05 7.82926e-05 8.36844e-05 8.51722e-05 8.37745e-05 8.12826e-05 8.32378e-05 8.99944e-05 0.00010857 0.000176118 0.000228892 0.000236004 0.000236404 0.000221811 0.000199149 0.000180925 0.000162814 0.000146228 0.000130453 0.000114167 0.00010514 9.44977e-05 8.76152e-05 8.57321e-05 8.41274e-05 8.36111e-05 8.32733e-05 8.33633e-05 8.3942e-05 8.41123e-05 8.46367e-05 8.56246e-05 8.66821e-05 8.82174e-05 8.9723e-05 9.21468e-05 9.55811e-05 0.000101165 0.00011225 0.0001222 0.000130507 0.00014155 0.000154773 0.000163441 0.000156088 0.000144514 0.000133749 0.000126591 0.000113188 9.66945e-05 8.3727e-05 7.2622e-05 6.61298e-05 6.3423e-05 6.25427e-05 6.31198e-05 6.34402e-05 5.78592e-05 5.04744e-05 4.61642e-05 4.19175e-05 3.57355e-05 2.87471e-05 2.40433e-05 2.08429e-05 1.85376e-05 1.67652e-05 1.5371e-05 1.55276e-05 1.68033e-05 1.99767e-05 2.54326e-05 3.4621e-05 4.09411e-05 4.30651e-05 4.24934e-05 4.15665e-05 4.56229e-05 5.81167e-05 6.262e-05 6.18421e-05 5.66955e-05 5.52424e-05 5.68438e-05 5.71532e-05 5.52543e-05 5.57382e-05 5.65347e-05 5.5827e-05 5.61884e-05 5.88233e-05 6.55614e-05 7.33063e-05 8.22245e-05 9.88592e-05 0.000135832 0.000158933 0.000162836 0.000156482 0.000145866 0.000134749 0.000116147 0.000105478 0.000105334 0.000120179 0.000149302 0.000155509 0.000153841 0.000148517 0.000126123 9.98954e-05 9.60227e-05 9.4737e-05 9.22404e-05 9.18413e-05 9.44527e-05 9.62633e-05 0.000102104 0.000111291 0.000117103 0.000122386 0.000128042 0.000130842 0.000135252 0.000140497 0.000144383 0.000150912 0.000159585 0.000163429 0.000160149 0.000151399 0.00014394 0.000142529 0.000151139 0.000187885 0.000224491 0.000233597 0.000228939 0.000195447 0.00018613 0.000212636 0.00027514 0.000287061 0.000279428 0.000253235 0.000218713 0.000174831 0.000149298 0.000130682 0.000120406 0.000115585 0.000114132 0.000114153 0.000114661 0.000115444 0.000115762 0.000116288 0.000117697 0.000118418 0.000119989 0.000120525 0.000122747 0.000124651 0.000126154 0.000127137 0.000128538 0.00012981 0.000130418 0.000130424 0.000130097 0.000128902 0.000127068 0.000125639 0.000125205 0.000124609 0.000124408 0.000124488 0.000124757 0.000125863 0.000128746 0.000134733 0.000145407 0.000158159 0.00018366 0.000207803 0.000219005 0.000238693 0.000256575 0.000255321 0.000251784 0.000244463 0.000216583 0.000170161 0.000138864 0.000116798 9.89037e-05 8.40576e-05 7.17344e-05 6.167e-05 5.51233e-05 5.17634e-05 5.00339e-05 4.86581e-05 4.80655e-05 4.8788e-05 5.42188e-05 7.12385e-05 0.000113202 0.000167254 0.000207195 0.000225271 0.000216321 0.00018173 0.000139131 0.000117203 0.000102724 9.06204e-05 8.05644e-05 7.45244e-05 7.04927e-05 6.86546e-05 6.78658e-05 6.77869e-05 6.92225e-05 6.9958e-05 7.09897e-05 7.14638e-05 7.18576e-05 7.1917e-05 7.17512e-05 7.16979e-05 7.21945e-05 7.2748e-05 7.35304e-05 7.49174e-05 7.72706e-05 7.94166e-05 8.12749e-05 8.3621e-05 8.82385e-05 9.71455e-05 0.000107155 0.000120653 0.00013652 0.000148874 0.000152959 0.000151233 0.000140866 0.000131606 0.000118445 0.000108224 9.53826e-05 7.36022e-05 6.31456e-05 6.04488e-05 6.14956e-05 6.37938e-05 6.30015e-05 5.85282e-05 6.13085e-05 4.883e-05 3.64095e-05 2.89763e-05 2.57385e-05 2.36381e-05 2.19384e-05 2.03238e-05 1.8424e-05 1.68281e-05 1.62237e-05 1.65628e-05 1.8241e-05 2.32846e-05 3.18563e-05 4.06811e-05 4.35924e-05 4.51608e-05 4.75339e-05 5.3679e-05 5.40583e-05 4.94945e-05 4.88815e-05 5.146e-05 5.55175e-05 5.8651e-05 6.01738e-05 6.1554e-05 6.21992e-05 6.03828e-05 6.01138e-05 6.22824e-05 7.00081e-05 8.24276e-05 0.000105352 0.000148516 0.000167089 0.000169722 0.000161261 0.000152774 0.000142712 0.000135655 0.000126241 0.000115228 0.000106786 0.000106833 0.000113687 0.000122708 0.000123248 0.00011525 9.96593e-05 9.52434e-05 9.67101e-05 0.000100832 9.90731e-05 9.0649e-05 8.99355e-05 9.16932e-05 9.66581e-05 9.89561e-05 9.91298e-05 9.92659e-05 0.000102274 0.000106015 0.000111057 0.000118565 0.000126305 0.000133984 0.000143435 0.000150459 0.00015288 0.000143937 0.000130271 0.000121951 0.000123844 0.000143864 0.000153067 0.000178824 0.000187912 0.000181232 0.000204097 0.000265118 0.000274565 0.000263028 0.000218662 0.000179665 0.000144225 0.00012099 0.000108965 0.000103428 0.000101393 0.000100732 0.000100558 0.000100977 0.000101114 0.000101089 0.000101738 0.000102677 0.000103971 0.000105513 0.000107601 0.000108339 0.000108813 0.000110384 0.000112096 0.000112768 0.000113899 0.000115331 0.000116008 0.000115985 0.000115953 0.000115855 0.000114973 0.000114236 0.000114228 0.000114574 0.000114878 0.000115088 0.000115422 0.000116042 0.000117564 0.000119354 0.000120491 0.000121796 0.000124697 0.000131288 0.000139861 0.000152139 0.000166845 0.000184972 0.000213432 0.000226978 0.000225756 0.000220765 0.000206138 0.000169513 0.000135729 0.000109861 9.02624e-05 7.43102e-05 6.16792e-05 5.34206e-05 4.90832e-05 4.64052e-05 4.56396e-05 4.74851e-05 6.04636e-05 9.90568e-05 0.00014559 0.000182886 0.000204247 0.000199624 0.000159948 0.000121319 9.60943e-05 8.25117e-05 7.33295e-05 6.57029e-05 5.99747e-05 5.71955e-05 5.61562e-05 5.61792e-05 5.80668e-05 5.99516e-05 6.26352e-05 6.46114e-05 6.57198e-05 6.63538e-05 6.6897e-05 6.65756e-05 6.57102e-05 6.55028e-05 6.5975e-05 6.67711e-05 6.7255e-05 6.71431e-05 6.7615e-05 6.95695e-05 7.13235e-05 7.2294e-05 7.42581e-05 7.62402e-05 8.04124e-05 8.61169e-05 9.36866e-05 0.00010784 0.00013332 0.000142402 0.000140631 0.000133331 0.000119276 0.000106881 9.70873e-05 7.97297e-05 7.26039e-05 6.72898e-05 6.7091e-05 6.9979e-05 7.0531e-05 6.42407e-05 6.73784e-05 5.11394e-05 3.44124e-05 2.9715e-05 2.90545e-05 2.87686e-05 2.81736e-05 2.69327e-05 2.51036e-05 2.24988e-05 1.92896e-05 1.7412e-05 1.74839e-05 1.88225e-05 2.38196e-05 3.33988e-05 4.24943e-05 4.51628e-05 4.62182e-05 5.04719e-05 5.04532e-05 4.7719e-05 4.81743e-05 5.29015e-05 5.92605e-05 6.37494e-05 6.67168e-05 6.84071e-05 6.95924e-05 6.83719e-05 6.75249e-05 6.97175e-05 8.17863e-05 0.000106183 0.00015229 0.000170781 0.000172255 0.000163187 0.000147221 0.0001373 0.000133241 0.000132366 0.000133619 0.000133386 0.000131005 0.000124189 0.00011443 0.00010754 0.000102096 9.60885e-05 9.20161e-05 9.35478e-05 0.000101551 0.000103469 9.74895e-05 8.48756e-05 8.25647e-05 8.24662e-05 8.35686e-05 8.55564e-05 8.69905e-05 8.77889e-05 9.15281e-05 9.47505e-05 9.93417e-05 0.000106089 0.000114802 0.000124289 0.000133935 0.000143857 0.000149096 0.000143202 0.000127044 0.000118657 0.00012185 0.000124051 0.000123707 0.000143087 0.000153963 0.000171795 0.000244314 0.000266845 0.000250615 0.000202915 0.000161805 0.00013009 0.000109302 9.93132e-05 9.53502e-05 9.42048e-05 9.41268e-05 9.47499e-05 9.49423e-05 9.48978e-05 9.46363e-05 9.45689e-05 9.54911e-05 9.74933e-05 9.88107e-05 0.000100461 0.000103264 0.0001048 0.000104547 0.000104501 0.000105625 0.000105876 0.00010625 0.000107357 0.000107377 0.000106674 0.000106128 0.000105533 0.000103396 0.000101001 9.91011e-05 9.87631e-05 9.89744e-05 9.92913e-05 9.98556e-05 0.000100784 0.000101726 0.000103076 0.000106073 0.00010966 0.000111202 0.000112511 0.000114538 0.00011764 0.000121408 0.000127341 0.000137744 0.000154402 0.000185876 0.000201032 0.00020048 0.000196209 0.000185273 0.000158199 0.000127574 0.000101218 8.09958e-05 6.70263e-05 5.82932e-05 5.32584e-05 5.15227e-05 5.37588e-05 7.03334e-05 0.000118489 0.000156922 0.000182618 0.000186173 0.000157035 0.000115979 8.83428e-05 7.29879e-05 6.41695e-05 5.86033e-05 5.52359e-05 5.37724e-05 5.33653e-05 5.25768e-05 5.36754e-05 5.55635e-05 5.6246e-05 5.65135e-05 5.5957e-05 5.71834e-05 5.8122e-05 6.08276e-05 6.25584e-05 6.16853e-05 6.00765e-05 5.8943e-05 6.15584e-05 6.40786e-05 6.42486e-05 6.36371e-05 6.35618e-05 6.3364e-05 6.37766e-05 6.42539e-05 6.49863e-05 6.68469e-05 6.88422e-05 7.20715e-05 7.97997e-05 9.16881e-05 0.000111038 0.000129821 0.000132824 0.000129925 0.000117448 9.97151e-05 8.35578e-05 7.37236e-05 6.95184e-05 7.6186e-05 7.98474e-05 7.82895e-05 6.83183e-05 6.62103e-05 5.14265e-05 3.32111e-05 3.03881e-05 3.02351e-05 3.07723e-05 3.16244e-05 3.16702e-05 3.10019e-05 2.92541e-05 2.62455e-05 2.19683e-05 1.84868e-05 1.82857e-05 2.00619e-05 2.65359e-05 3.84434e-05 4.43705e-05 4.41701e-05 4.75716e-05 4.95194e-05 4.85858e-05 4.97822e-05 5.60286e-05 6.35619e-05 6.89447e-05 7.33349e-05 7.7549e-05 7.9392e-05 7.87105e-05 7.93425e-05 8.52313e-05 0.000110111 0.000153292 0.000169826 0.000170278 0.000156524 0.000128561 0.000116451 0.000113416 0.000113552 0.000118512 0.000123101 0.000130244 0.000135291 0.000136811 0.00013586 0.000126715 0.000111647 0.000103897 0.000102255 0.000104487 0.000107069 9.98936e-05 8.39352e-05 7.88127e-05 7.8342e-05 7.91493e-05 8.17206e-05 8.43402e-05 8.5045e-05 8.55205e-05 8.89044e-05 9.00919e-05 9.37682e-05 9.74771e-05 0.000104327 0.000115111 0.000126813 0.000138743 0.000146965 0.000151043 0.000139587 0.000120697 0.000105615 0.000100328 0.000106767 0.000125772 0.000139995 0.000193554 0.000254313 0.000251701 0.00020008 0.000155802 0.000124145 0.000104127 9.39398e-05 9.02609e-05 8.9367e-05 9.01641e-05 9.03469e-05 9.04768e-05 8.96941e-05 8.78201e-05 8.75823e-05 8.79298e-05 8.78597e-05 9.06053e-05 9.46758e-05 9.62476e-05 9.86688e-05 0.00010183 0.000101912 0.000100318 0.000100067 9.97646e-05 9.79947e-05 9.75909e-05 9.76118e-05 9.71532e-05 9.62632e-05 9.60681e-05 9.55218e-05 9.29404e-05 9.07476e-05 8.98668e-05 8.88444e-05 8.85861e-05 8.86884e-05 8.90772e-05 9.04659e-05 9.1613e-05 9.34536e-05 9.62899e-05 0.000100597 0.000104002 0.00010567 0.000106914 0.000107378 0.000107956 0.000109121 0.000112315 0.000121159 0.000137009 0.000167032 0.000178666 0.000177755 0.000173073 0.000162541 0.000137516 0.000110892 8.8213e-05 7.13984e-05 6.17684e-05 5.83146e-05 6.05234e-05 7.82066e-05 0.00012584 0.000159926 0.000174053 0.000159422 0.000124256 8.99192e-05 6.91408e-05 5.79315e-05 5.32319e-05 5.15753e-05 5.09628e-05 5.05728e-05 5.12735e-05 5.28488e-05 5.46705e-05 5.63872e-05 5.66775e-05 5.57837e-05 5.2433e-05 5.09679e-05 5.02418e-05 5.02682e-05 5.34459e-05 5.7641e-05 5.73821e-05 5.39517e-05 5.2226e-05 5.61011e-05 6.09258e-05 6.21203e-05 6.1501e-05 5.92421e-05 5.8684e-05 6.07888e-05 6.20121e-05 6.19728e-05 6.20629e-05 6.25943e-05 6.45878e-05 7.03983e-05 8.10293e-05 9.70629e-05 0.000118477 0.00012686 0.000132353 0.000128479 0.000109709 9.18261e-05 8.03126e-05 8.87694e-05 9.1376e-05 9.11228e-05 7.68991e-05 7.23597e-05 4.90539e-05 3.28971e-05 3.02934e-05 2.98409e-05 3.05837e-05 3.18556e-05 3.27646e-05 3.29765e-05 3.1722e-05 2.96589e-05 2.66155e-05 2.20917e-05 1.86997e-05 1.88469e-05 2.22219e-05 3.18605e-05 4.2457e-05 4.19538e-05 4.24003e-05 4.77744e-05 4.92459e-05 5.1293e-05 5.82602e-05 6.85609e-05 7.65303e-05 8.01131e-05 8.54972e-05 9.04772e-05 9.33501e-05 0.000101649 0.000119671 0.00015117 0.000164329 0.000165865 0.00014741 0.00011942 0.000110538 0.000109093 0.00011211 0.00011525 0.000119659 0.00012173 0.000124754 0.000126643 0.000128354 0.000128811 0.000127157 0.000118158 0.000105905 9.69124e-05 9.28221e-05 9.05816e-05 8.64545e-05 8.05403e-05 7.93656e-05 7.96378e-05 8.18058e-05 8.47678e-05 8.73703e-05 8.73517e-05 8.79038e-05 8.9391e-05 8.94468e-05 9.24512e-05 9.45377e-05 9.95081e-05 0.000106308 0.000118644 0.000133392 0.000145796 0.000151151 0.000150943 0.000136634 0.000118 0.000107687 0.000110282 0.000119987 0.00014513 0.000221045 0.000248826 0.000207275 0.0001574 0.0001239 0.000102728 9.13959e-05 8.70419e-05 8.6196e-05 8.6312e-05 8.72016e-05 8.71566e-05 8.58778e-05 8.31704e-05 8.20113e-05 8.20675e-05 8.22593e-05 8.21425e-05 8.26241e-05 8.68317e-05 9.21665e-05 9.3238e-05 9.6818e-05 9.8493e-05 9.73471e-05 9.56941e-05 9.50827e-05 9.2735e-05 9.07794e-05 9.01474e-05 8.93059e-05 8.78544e-05 8.72011e-05 8.64569e-05 8.43168e-05 8.33409e-05 8.27897e-05 8.25614e-05 8.25317e-05 8.26109e-05 8.27778e-05 8.34304e-05 8.41023e-05 8.54816e-05 8.67637e-05 9.00107e-05 9.32074e-05 9.60494e-05 9.79381e-05 9.8675e-05 9.88542e-05 9.78423e-05 9.65593e-05 9.72496e-05 0.000100684 0.000111175 0.000129673 0.000151453 0.000158384 0.000156807 0.000151912 0.000138809 0.000114821 9.09364e-05 7.22964e-05 6.48322e-05 6.56314e-05 8.24045e-05 0.000127366 0.000158451 0.000160552 0.000137853 0.000101134 7.49545e-05 6.12362e-05 5.40393e-05 5.05312e-05 4.90512e-05 5.01229e-05 5.07404e-05 5.1197e-05 5.37341e-05 5.63984e-05 5.74999e-05 5.79104e-05 5.81014e-05 5.55634e-05 5.17577e-05 4.98523e-05 4.85134e-05 4.81354e-05 5.22764e-05 5.59897e-05 5.38165e-05 5.00267e-05 4.9134e-05 5.10744e-05 5.68528e-05 5.99851e-05 5.9692e-05 5.70621e-05 5.51317e-05 5.64001e-05 5.91963e-05 5.97643e-05 6.02879e-05 6.15496e-05 6.33405e-05 6.68478e-05 7.39452e-05 8.47762e-05 0.000105241 0.000124597 0.000130215 0.000129888 0.000127271 0.000121893 0.00011282 0.00010369 0.00010914 9.63254e-05 8.13239e-05 4.51215e-05 3.39463e-05 2.89616e-05 2.72119e-05 2.72006e-05 2.81279e-05 2.96939e-05 3.08916e-05 3.11176e-05 3.00196e-05 2.79582e-05 2.47826e-05 2.04744e-05 1.87051e-05 1.96916e-05 2.61518e-05 3.8122e-05 4.04878e-05 3.83906e-05 4.16178e-05 4.79427e-05 5.24146e-05 5.98316e-05 7.2031e-05 8.26036e-05 8.73659e-05 9.2891e-05 0.000101034 0.000108886 0.000122395 0.000142758 0.000154804 0.000158581 0.000142683 0.000116317 0.000107359 0.000105608 0.000105109 0.000104837 0.000102224 0.000101993 0.00010645 0.000116516 0.000125814 0.000130717 0.000132159 0.000132221 0.000127346 0.000111587 9.45222e-05 8.83048e-05 8.93859e-05 9.0042e-05 8.54974e-05 8.32446e-05 8.39022e-05 8.8148e-05 9.17703e-05 9.3508e-05 9.22939e-05 9.26303e-05 9.03143e-05 8.9697e-05 9.12111e-05 9.31406e-05 9.71367e-05 0.000102307 0.000109828 0.000123986 0.000143608 0.000154124 0.000158538 0.000152906 0.000139625 0.000123505 0.000118028 0.000129434 0.000182912 0.000225996 0.000218408 0.000165509 0.000128214 0.000104693 9.12965e-05 8.51419e-05 8.31033e-05 8.30235e-05 8.37771e-05 8.35922e-05 8.2919e-05 8.16277e-05 7.83262e-05 7.70464e-05 7.67494e-05 7.74604e-05 7.98643e-05 8.06095e-05 8.23681e-05 8.77727e-05 8.99432e-05 9.13289e-05 9.33466e-05 9.30604e-05 9.2236e-05 9.13562e-05 8.80427e-05 8.53332e-05 8.41402e-05 8.21136e-05 8.00847e-05 7.87315e-05 7.78488e-05 7.79285e-05 7.8053e-05 7.83342e-05 7.90037e-05 7.93321e-05 7.95515e-05 7.99335e-05 8.01446e-05 8.06425e-05 8.11249e-05 8.17893e-05 8.29066e-05 8.54183e-05 8.82642e-05 9.10924e-05 9.23106e-05 9.24641e-05 9.23332e-05 9.0818e-05 8.72681e-05 8.70519e-05 8.86838e-05 9.42788e-05 0.000106511 0.000122379 0.00013804 0.000140374 0.000138239 0.000131428 0.000110027 8.61276e-05 7.26138e-05 7.14584e-05 8.46369e-05 0.000126971 0.00014958 0.000147932 0.000124492 9.05289e-05 6.92873e-05 5.88974e-05 5.35071e-05 5.07591e-05 4.84973e-05 4.89898e-05 5.15823e-05 5.25065e-05 5.51822e-05 5.67646e-05 5.69907e-05 5.65661e-05 5.73603e-05 5.81185e-05 5.74104e-05 5.37488e-05 4.9914e-05 4.74622e-05 4.69702e-05 4.94536e-05 5.29171e-05 4.99841e-05 4.78953e-05 4.84179e-05 5.04556e-05 5.41151e-05 5.99421e-05 5.87969e-05 5.32382e-05 5.08353e-05 5.39701e-05 5.87272e-05 5.87322e-05 5.87468e-05 5.93691e-05 6.21698e-05 6.51572e-05 6.9537e-05 7.82051e-05 9.52633e-05 0.000118561 0.000124907 0.000126792 0.000125684 0.000125334 0.00012027 0.000117235 0.000112521 9.42641e-05 4.29747e-05 3.44904e-05 2.86194e-05 2.66895e-05 2.63321e-05 2.65891e-05 2.76079e-05 2.88581e-05 2.93414e-05 2.93886e-05 2.81642e-05 2.57018e-05 2.21512e-05 1.90876e-05 1.88933e-05 2.17688e-05 3.16544e-05 3.91146e-05 3.68659e-05 3.59152e-05 4.10451e-05 4.90687e-05 5.93608e-05 7.31889e-05 8.63222e-05 9.52718e-05 9.9696e-05 0.000108867 0.000119184 0.000131802 0.000143391 0.000148587 0.000138994 0.000115909 0.000105585 0.000102134 9.9135e-05 9.23611e-05 8.91717e-05 8.88623e-05 9.27688e-05 9.87941e-05 0.000101742 0.000104188 0.000105954 0.000111181 0.000125392 0.000136982 0.000141154 0.000142373 0.000131608 0.000115468 0.000107807 0.000101273 9.64309e-05 9.5454e-05 9.9387e-05 0.000100729 0.000101157 9.67285e-05 9.50773e-05 8.93743e-05 8.70765e-05 8.5436e-05 8.79754e-05 9.36486e-05 9.979e-05 0.000105971 0.000113887 0.000130937 0.000154448 0.000163692 0.000163606 0.000157217 0.00015134 0.000149064 0.00016674 0.00019673 0.000214665 0.000175649 0.000135491 0.000109416 9.36498e-05 8.51509e-05 8.11363e-05 8.00531e-05 7.99312e-05 8.038e-05 7.99446e-05 7.88648e-05 7.69235e-05 7.35151e-05 7.19422e-05 7.20533e-05 7.34801e-05 7.86049e-05 8.05469e-05 8.22784e-05 8.61908e-05 8.78863e-05 8.85858e-05 8.91007e-05 8.81515e-05 8.63267e-05 8.49457e-05 8.15249e-05 7.96382e-05 7.8093e-05 7.56562e-05 7.39321e-05 7.39747e-05 7.45032e-05 7.58132e-05 7.64412e-05 7.72973e-05 7.82636e-05 7.8733e-05 7.88058e-05 7.91204e-05 7.90981e-05 7.91506e-05 7.91932e-05 7.93275e-05 7.97279e-05 8.06223e-05 8.27246e-05 8.53815e-05 8.68943e-05 8.72742e-05 8.72822e-05 8.69857e-05 8.48183e-05 8.06648e-05 7.95403e-05 7.99558e-05 8.26658e-05 8.91483e-05 0.000102778 0.000119829 0.000128012 0.000127497 0.00012127 9.86922e-05 7.95955e-05 7.61669e-05 8.53164e-05 0.000122804 0.000140301 0.000138529 0.000116821 8.62223e-05 6.88911e-05 5.93643e-05 5.35197e-05 5.10569e-05 4.90054e-05 4.87443e-05 5.16957e-05 5.5404e-05 5.80083e-05 5.88377e-05 5.7513e-05 5.64285e-05 5.61662e-05 5.77601e-05 5.95377e-05 5.90058e-05 5.37585e-05 4.7763e-05 4.58439e-05 4.56643e-05 4.74121e-05 4.7976e-05 4.69562e-05 4.75001e-05 4.96193e-05 5.16576e-05 5.54074e-05 5.68489e-05 5.44783e-05 4.95788e-05 4.86338e-05 5.17214e-05 5.65951e-05 5.68429e-05 5.69624e-05 5.78185e-05 6.0359e-05 6.23396e-05 6.64992e-05 7.32364e-05 8.76317e-05 0.000103963 0.000114629 0.000118697 0.000119791 0.000124201 0.000121077 0.000121469 0.000110806 4.09793e-05 3.66874e-05 2.92052e-05 2.68676e-05 2.60962e-05 2.5989e-05 2.62738e-05 2.70364e-05 2.77925e-05 2.80003e-05 2.79295e-05 2.64365e-05 2.35279e-05 2.02655e-05 1.92665e-05 2.00553e-05 2.52584e-05 3.50167e-05 3.66364e-05 3.44591e-05 3.44481e-05 3.95119e-05 4.97593e-05 6.70549e-05 8.77195e-05 0.000101213 0.000106604 0.00011317 0.000123451 0.000132096 0.000136926 0.000132789 0.000116111 0.000104574 9.95887e-05 9.56865e-05 8.97056e-05 8.76979e-05 8.81522e-05 9.33575e-05 9.86946e-05 0.00010011 0.000100056 9.77407e-05 9.42004e-05 9.23543e-05 9.17427e-05 9.51432e-05 0.000102785 0.000119351 0.000138577 0.000145106 0.000144168 0.000135588 0.000127815 0.00012128 0.000118564 0.000113923 0.000106425 9.95152e-05 9.53201e-05 8.68524e-05 8.05744e-05 7.72942e-05 7.79936e-05 8.58769e-05 9.54782e-05 0.000103477 0.000110597 0.000118185 0.000141229 0.000165326 0.000174885 0.000167916 0.000163551 0.00016634 0.000176716 0.000192213 0.000178016 0.000144568 0.000117299 9.91842e-05 8.80277e-05 8.13961e-05 7.84478e-05 7.73946e-05 7.67845e-05 7.63363e-05 7.5589e-05 7.45659e-05 7.21102e-05 6.98383e-05 6.91669e-05 6.97632e-05 7.19631e-05 7.7692e-05 8.25042e-05 8.49292e-05 8.65482e-05 8.62408e-05 8.49969e-05 8.33502e-05 8.13803e-05 7.86486e-05 7.59657e-05 7.36898e-05 7.23696e-05 7.10721e-05 6.98749e-05 7.06061e-05 7.2025e-05 7.4179e-05 7.62685e-05 7.76196e-05 7.92656e-05 8.11564e-05 8.16423e-05 8.22252e-05 8.25755e-05 8.25025e-05 8.21765e-05 8.16834e-05 8.0522e-05 8.03039e-05 8.03987e-05 8.08436e-05 8.14786e-05 8.25596e-05 8.34733e-05 8.40274e-05 8.41109e-05 8.30412e-05 7.80305e-05 7.39386e-05 7.23083e-05 7.23239e-05 7.37311e-05 7.8564e-05 9.29775e-05 0.000110384 0.000118708 0.000118183 0.000108118 8.71615e-05 7.97334e-05 8.54637e-05 0.000116016 0.000131767 0.000130599 0.00011207 8.47983e-05 6.93468e-05 6.10124e-05 5.44436e-05 5.16259e-05 5.1054e-05 4.86494e-05 4.9517e-05 5.21655e-05 5.5033e-05 5.49552e-05 5.38791e-05 5.44046e-05 5.50026e-05 5.53414e-05 5.78197e-05 5.94769e-05 5.72361e-05 5.02317e-05 4.56834e-05 4.50727e-05 4.54504e-05 4.68101e-05 4.61652e-05 4.58093e-05 4.79196e-05 5.16545e-05 5.41515e-05 5.49772e-05 5.38915e-05 5.01044e-05 4.70733e-05 4.56772e-05 4.65565e-05 5.07454e-05 5.26863e-05 5.32906e-05 5.45646e-05 5.63185e-05 5.85183e-05 6.25033e-05 6.81275e-05 8.09223e-05 8.9655e-05 9.62448e-05 0.00010055 0.000112075 0.000119199 0.00012966 0.000122931 4.02516e-05 3.98825e-05 3.03848e-05 2.69015e-05 2.58975e-05 2.57433e-05 2.59043e-05 2.66982e-05 2.74881e-05 2.78229e-05 2.78986e-05 2.75245e-05 2.56016e-05 2.23593e-05 2.06855e-05 2.04313e-05 2.22818e-05 2.77731e-05 3.51516e-05 3.45938e-05 3.35412e-05 3.37544e-05 3.8673e-05 5.24619e-05 7.91828e-05 0.000104114 0.000112541 0.000116662 0.000123348 0.00012579 0.000125486 0.000117574 0.000105021 9.88256e-05 9.5562e-05 9.09512e-05 8.83448e-05 8.81311e-05 9.20725e-05 9.94013e-05 0.000101077 0.000100576 9.75469e-05 9.46432e-05 9.18423e-05 8.7656e-05 8.06458e-05 7.43282e-05 7.26459e-05 7.43227e-05 8.0636e-05 9.05179e-05 0.000109164 0.000119663 0.000120624 0.000119823 0.000116849 0.000112617 0.000103176 9.53289e-05 8.64974e-05 7.68597e-05 6.79463e-05 6.37073e-05 6.6596e-05 7.8853e-05 9.11489e-05 0.000100892 0.000109192 0.000115523 0.000123235 0.000152985 0.000177529 0.000184901 0.000173886 0.000171269 0.000174509 0.00017151 0.000151765 0.000127177 0.000108172 9.41345e-05 8.46829e-05 7.88905e-05 7.62308e-05 7.48652e-05 7.3993e-05 7.32619e-05 7.15105e-05 6.94649e-05 6.83606e-05 6.84382e-05 6.869e-05 6.95832e-05 7.27992e-05 7.89232e-05 8.36088e-05 8.52795e-05 8.50667e-05 8.40115e-05 8.17509e-05 7.75099e-05 7.35674e-05 7.09785e-05 6.81638e-05 6.71164e-05 6.64966e-05 6.55571e-05 6.70105e-05 7.00171e-05 7.37688e-05 7.81022e-05 8.21465e-05 8.54504e-05 8.81548e-05 9.09344e-05 9.18052e-05 9.33925e-05 9.40445e-05 9.38677e-05 9.31925e-05 9.19205e-05 8.98165e-05 8.64023e-05 8.34591e-05 8.1698e-05 8.14496e-05 8.16888e-05 8.20781e-05 8.18957e-05 8.15793e-05 8.08301e-05 7.74378e-05 7.17643e-05 6.82289e-05 6.6556e-05 6.65151e-05 6.78046e-05 7.30322e-05 8.97478e-05 0.000106535 0.000111748 0.000108581 9.16179e-05 8.1293e-05 8.34493e-05 0.000106562 0.000123997 0.000124285 0.000111098 8.55711e-05 7.06689e-05 6.47824e-05 5.75796e-05 5.25159e-05 5.13563e-05 4.84503e-05 4.84039e-05 4.81084e-05 4.80573e-05 4.75377e-05 4.77976e-05 4.78219e-05 4.81615e-05 4.92344e-05 5.16433e-05 5.52062e-05 5.6458e-05 5.38447e-05 4.76491e-05 4.52024e-05 4.49945e-05 4.61779e-05 4.6044e-05 4.51321e-05 4.54778e-05 4.94343e-05 5.39079e-05 5.59081e-05 5.44396e-05 4.99647e-05 4.74629e-05 4.48922e-05 4.47861e-05 4.80677e-05 5.15338e-05 5.21084e-05 5.18473e-05 5.20383e-05 5.27847e-05 5.4613e-05 5.85265e-05 6.6098e-05 7.39011e-05 7.72362e-05 8.06174e-05 8.87316e-05 0.000109395 0.000125439 0.000136046 4.13914e-05 4.10718e-05 3.15262e-05 2.83316e-05 2.74347e-05 2.72326e-05 2.73096e-05 2.78406e-05 2.85217e-05 2.91578e-05 2.9361e-05 2.93585e-05 2.85125e-05 2.64914e-05 2.37883e-05 2.23968e-05 2.24524e-05 2.44014e-05 2.9369e-05 3.35081e-05 3.36425e-05 3.361e-05 3.50092e-05 4.1054e-05 5.92098e-05 9.24804e-05 0.00011556 0.000121105 0.00012411 0.000125393 0.000121876 0.000111976 0.000102628 9.79485e-05 9.47503e-05 9.10812e-05 8.96065e-05 9.1192e-05 9.86311e-05 0.000101861 0.000102123 9.98176e-05 9.68601e-05 9.33928e-05 8.8816e-05 8.26275e-05 7.48186e-05 6.67597e-05 6.09529e-05 5.7857e-05 5.6035e-05 5.5872e-05 5.68464e-05 5.97646e-05 6.57755e-05 6.92886e-05 6.82093e-05 6.59286e-05 6.1491e-05 5.89232e-05 5.55905e-05 5.15279e-05 5.12654e-05 5.33793e-05 6.10801e-05 7.68467e-05 9.01063e-05 0.000100295 0.000108635 0.000115065 0.000119832 0.000127411 0.000162853 0.000189684 0.000190268 0.000176604 0.000168441 0.000156655 0.000138745 0.000120206 0.000104364 9.16833e-05 8.29715e-05 7.76738e-05 7.43396e-05 7.24005e-05 7.07179e-05 6.92629e-05 6.80408e-05 6.77796e-05 6.78694e-05 6.83623e-05 6.96507e-05 7.18572e-05 7.69966e-05 8.17838e-05 8.41564e-05 8.41504e-05 8.30044e-05 8.00119e-05 7.5299e-05 6.98647e-05 6.62829e-05 6.40323e-05 6.1315e-05 5.9375e-05 5.89594e-05 6.15162e-05 6.67051e-05 7.38657e-05 8.24529e-05 8.85408e-05 9.5708e-05 9.96821e-05 0.00010321 0.000104181 0.000104097 0.000103887 0.000103172 0.000102207 0.000101527 0.000100453 9.89862e-05 9.72759e-05 9.38715e-05 8.73497e-05 8.35063e-05 8.23433e-05 8.22727e-05 8.13555e-05 8.01224e-05 7.93821e-05 7.69347e-05 7.15587e-05 6.65839e-05 6.38182e-05 6.30466e-05 6.31972e-05 6.48842e-05 7.14711e-05 9.10231e-05 0.000102448 0.000103161 9.47369e-05 8.17895e-05 8.12142e-05 9.5398e-05 0.000115648 0.000117982 0.000110384 8.79946e-05 7.38666e-05 6.80681e-05 6.24582e-05 5.44097e-05 5.22983e-05 4.91359e-05 4.87128e-05 4.88976e-05 4.89022e-05 4.82718e-05 4.78928e-05 4.68704e-05 4.59436e-05 4.58347e-05 4.65775e-05 5.03202e-05 5.47864e-05 5.4884e-05 5.08161e-05 4.60739e-05 4.4889e-05 4.53012e-05 4.5322e-05 4.4836e-05 4.50072e-05 4.6779e-05 5.44112e-05 5.82902e-05 5.74595e-05 5.27971e-05 4.79998e-05 4.521e-05 4.51483e-05 4.65468e-05 5.07027e-05 5.14077e-05 5.06349e-05 4.93473e-05 4.9312e-05 4.99701e-05 5.17416e-05 5.73584e-05 6.30335e-05 6.50523e-05 6.79378e-05 7.75573e-05 9.34586e-05 0.000125089 0.000138928 4.54816e-05 4.10401e-05 3.35501e-05 3.2098e-05 3.18368e-05 3.19233e-05 3.2764e-05 3.3151e-05 3.33458e-05 3.33726e-05 3.30643e-05 3.21459e-05 3.16143e-05 3.05067e-05 2.92279e-05 2.72348e-05 2.47909e-05 2.47348e-05 2.61675e-05 2.91415e-05 3.21753e-05 3.30658e-05 3.44556e-05 3.78932e-05 4.67217e-05 7.02663e-05 0.000106829 0.000123954 0.000127752 0.000127855 0.000122966 0.000112857 0.000103639 9.88581e-05 9.5679e-05 9.34206e-05 9.44829e-05 9.95825e-05 0.000104639 0.000105316 0.000103909 0.000100715 9.69375e-05 9.26746e-05 8.6658e-05 7.92571e-05 6.96113e-05 6.14631e-05 5.37647e-05 4.97512e-05 4.72805e-05 4.54112e-05 4.27197e-05 4.06932e-05 3.96033e-05 3.89086e-05 3.86898e-05 3.87313e-05 3.90326e-05 3.97723e-05 4.15175e-05 4.33535e-05 4.66262e-05 5.24516e-05 6.43621e-05 8.07198e-05 9.61042e-05 0.000106367 0.000112583 0.000116193 0.000118757 0.000121811 0.000129011 0.000169335 0.000196763 0.000193021 0.000174871 0.000158491 0.000139687 0.000121137 0.000105183 9.26454e-05 8.37541e-05 7.82265e-05 7.42132e-05 7.18423e-05 7.09571e-05 6.9137e-05 6.76155e-05 6.75294e-05 6.81544e-05 7.08975e-05 7.37762e-05 7.77483e-05 8.22474e-05 8.38101e-05 8.35545e-05 8.25083e-05 7.95797e-05 7.55025e-05 6.96654e-05 6.28196e-05 5.80381e-05 5.28618e-05 4.7966e-05 4.91899e-05 5.38224e-05 6.16383e-05 7.47242e-05 8.74427e-05 9.87907e-05 0.000106478 0.000110846 0.000111053 0.000110276 0.000108362 0.000107346 0.000106479 0.00010435 0.00010306 0.000102483 0.000102396 0.000102258 0.000101885 0.000100485 9.77057e-05 8.99663e-05 8.50952e-05 8.32955e-05 8.14784e-05 8.01385e-05 7.88327e-05 7.5702e-05 7.1157e-05 6.64347e-05 6.31083e-05 6.10804e-05 6.04218e-05 6.06318e-05 6.2953e-05 7.3151e-05 9.15749e-05 9.71736e-05 9.4247e-05 8.15436e-05 7.8836e-05 8.57423e-05 0.000105871 0.0001111 0.000108105 9.18645e-05 7.89508e-05 7.13914e-05 6.45207e-05 5.76708e-05 5.61373e-05 5.33177e-05 5.07803e-05 4.90661e-05 4.8252e-05 4.68126e-05 4.58257e-05 4.52923e-05 4.50352e-05 4.52101e-05 4.55942e-05 4.77432e-05 5.35246e-05 5.44798e-05 5.2477e-05 4.72755e-05 4.51906e-05 4.47546e-05 4.49826e-05 4.48372e-05 4.48677e-05 4.64808e-05 5.45574e-05 5.80128e-05 5.88555e-05 5.68996e-05 5.08607e-05 4.84125e-05 4.65644e-05 4.63284e-05 4.77312e-05 4.89019e-05 4.89611e-05 4.78144e-05 4.72652e-05 4.72492e-05 4.79772e-05 5.04446e-05 5.52315e-05 5.79483e-05 6.22384e-05 6.91344e-05 8.46761e-05 0.000114004 0.000157481 4.55177e-05 4.15616e-05 3.69661e-05 3.68439e-05 3.92819e-05 4.11743e-05 4.23349e-05 4.33523e-05 4.39803e-05 4.42289e-05 4.37179e-05 4.1323e-05 3.81459e-05 3.46186e-05 3.27598e-05 3.16837e-05 2.94567e-05 2.68266e-05 2.6835e-05 2.75633e-05 2.84893e-05 3.04888e-05 3.20735e-05 3.47142e-05 4.02753e-05 5.2358e-05 7.92811e-05 0.000116141 0.000128528 0.000132354 0.000129439 0.000116998 0.000107365 0.000102101 9.89655e-05 9.92171e-05 0.000102763 0.00010601 0.000106576 0.000105723 0.000102971 9.88705e-05 9.33094e-05 8.592e-05 7.61538e-05 6.43757e-05 5.56416e-05 5.04786e-05 4.73622e-05 4.59077e-05 4.38059e-05 4.20596e-05 4.01019e-05 3.825e-05 3.6695e-05 3.62419e-05 3.65128e-05 3.7587e-05 3.94281e-05 4.33486e-05 4.97918e-05 5.51367e-05 6.43199e-05 7.4916e-05 8.99269e-05 0.000105402 0.000116022 0.000120544 0.000119577 0.000118534 0.000118595 0.000118306 0.000119336 0.000126097 0.000168582 0.000197305 0.000193579 0.000169721 0.000146254 0.000125748 0.000109074 9.61987e-05 8.66004e-05 8.02965e-05 7.59345e-05 7.28754e-05 7.14754e-05 7.07918e-05 7.10093e-05 7.16852e-05 7.28099e-05 7.52345e-05 7.95242e-05 8.36006e-05 8.48007e-05 8.43377e-05 8.32364e-05 8.09818e-05 7.67727e-05 7.04312e-05 6.1084e-05 5.02665e-05 4.27886e-05 4.05071e-05 4.21564e-05 4.68506e-05 5.68922e-05 7.66582e-05 9.43721e-05 0.000109318 0.000116865 0.000117626 0.000116634 0.000114256 0.000110975 0.000108168 0.00010643 0.000103433 9.86601e-05 9.56858e-05 9.53962e-05 9.59165e-05 9.82577e-05 0.000100093 0.000100131 9.93373e-05 9.72507e-05 9.06369e-05 8.58389e-05 8.26253e-05 8.05246e-05 7.89325e-05 7.58415e-05 7.14482e-05 6.64095e-05 6.27795e-05 6.04806e-05 5.88014e-05 5.84322e-05 5.90478e-05 6.33166e-05 8.01948e-05 8.95391e-05 8.99373e-05 8.18862e-05 7.64137e-05 7.92681e-05 9.47162e-05 0.000104105 0.000103879 9.52864e-05 8.28408e-05 7.46403e-05 6.76906e-05 6.16944e-05 5.96539e-05 5.70069e-05 5.32907e-05 4.96259e-05 4.73846e-05 4.56455e-05 4.4867e-05 4.45449e-05 4.45992e-05 4.4886e-05 4.54984e-05 4.69578e-05 5.23854e-05 5.46708e-05 5.34692e-05 4.88566e-05 4.57051e-05 4.47802e-05 4.50789e-05 4.49306e-05 4.50007e-05 4.65285e-05 5.19793e-05 5.77143e-05 5.98733e-05 5.79913e-05 5.25167e-05 5.0036e-05 4.9091e-05 4.94705e-05 4.9155e-05 4.97876e-05 4.97671e-05 4.85303e-05 4.63912e-05 4.60075e-05 4.6061e-05 4.68347e-05 4.9084e-05 5.54724e-05 5.90299e-05 6.49492e-05 7.89526e-05 0.000113431 0.000175865 4.60322e-05 4.04978e-05 3.65286e-05 3.63914e-05 3.85416e-05 4.12628e-05 4.36693e-05 4.63521e-05 4.80866e-05 4.87931e-05 4.93811e-05 4.98889e-05 4.96422e-05 4.6893e-05 4.10248e-05 3.72128e-05 3.34753e-05 3.13879e-05 2.97249e-05 2.88394e-05 2.85698e-05 2.87971e-05 2.9411e-05 3.05863e-05 3.36852e-05 4.07793e-05 5.59703e-05 8.56218e-05 0.00012001 0.000131191 0.000133717 0.000129268 0.000119046 0.000111206 0.000106795 0.000107068 0.000108116 0.000108155 0.000106256 0.000102826 9.93711e-05 9.45198e-05 8.82072e-05 7.96943e-05 6.62729e-05 5.63344e-05 5.034e-05 4.69961e-05 4.5675e-05 4.47254e-05 4.33828e-05 4.19178e-05 4.17193e-05 4.19375e-05 4.26085e-05 4.43158e-05 4.86652e-05 5.45875e-05 5.97283e-05 6.8234e-05 7.955e-05 8.86595e-05 0.000104191 0.000116433 0.000125451 0.000130085 0.00012976 0.000127596 0.000122529 0.000119163 0.000117065 0.000111407 0.000109979 0.000111347 0.000118114 0.000155856 0.000183162 0.000181964 0.000167142 0.000138468 0.000118705 0.00010402 9.30697e-05 8.62383e-05 8.12257e-05 7.68283e-05 7.53829e-05 7.54745e-05 7.59964e-05 7.70645e-05 7.90685e-05 8.31807e-05 8.70125e-05 8.70529e-05 8.61211e-05 8.41197e-05 8.21221e-05 7.8318e-05 7.14664e-05 5.91717e-05 4.58942e-05 3.91347e-05 3.72508e-05 3.80902e-05 4.22708e-05 5.34431e-05 7.49321e-05 0.000104733 0.000120353 0.000124605 0.000124005 0.000121531 0.000117664 0.000112639 0.000107821 0.00010341 9.78424e-05 9.22758e-05 8.81146e-05 8.43755e-05 8.24328e-05 8.24583e-05 8.33465e-05 8.69424e-05 9.47542e-05 9.72111e-05 9.68232e-05 9.47584e-05 8.95088e-05 8.54384e-05 8.17919e-05 7.91653e-05 7.64598e-05 7.19878e-05 6.66344e-05 6.19073e-05 5.95173e-05 5.81432e-05 5.65837e-05 5.64094e-05 5.80073e-05 6.91268e-05 8.13809e-05 8.33528e-05 8.04229e-05 7.42288e-05 7.48228e-05 8.36822e-05 9.51474e-05 9.80098e-05 9.4662e-05 8.50363e-05 7.72936e-05 7.11418e-05 6.58628e-05 6.18872e-05 5.83022e-05 5.43378e-05 5.04086e-05 4.72322e-05 4.59945e-05 4.59718e-05 4.59118e-05 4.56054e-05 4.57103e-05 4.60966e-05 4.69568e-05 5.14546e-05 5.43931e-05 5.44016e-05 5.13408e-05 4.69147e-05 4.55176e-05 4.52291e-05 4.50258e-05 4.52879e-05 4.63715e-05 5.06283e-05 5.81084e-05 5.96597e-05 5.83497e-05 5.30945e-05 4.95866e-05 4.93882e-05 5.14363e-05 5.32523e-05 5.3075e-05 5.22506e-05 4.98508e-05 4.70994e-05 4.51777e-05 4.50427e-05 4.53736e-05 4.67807e-05 5.2216e-05 5.98132e-05 6.31103e-05 7.19779e-05 9.99253e-05 0.00019448 4.60332e-05 3.96709e-05 3.59766e-05 3.52657e-05 3.72723e-05 4.01743e-05 4.2733e-05 4.54363e-05 4.68887e-05 4.75147e-05 4.84436e-05 5.0666e-05 5.14399e-05 5.15022e-05 4.9072e-05 4.56042e-05 4.20327e-05 3.62064e-05 3.2103e-05 3.15092e-05 3.0154e-05 2.98957e-05 3.00675e-05 3.04369e-05 3.1231e-05 3.34041e-05 3.98099e-05 5.50605e-05 8.3e-05 0.000117478 0.000130391 0.000130499 0.000127292 0.000122294 0.000117137 0.000114076 0.000111473 0.000108497 0.000104903 0.000100889 9.53888e-05 8.89821e-05 7.79639e-05 6.37908e-05 5.4281e-05 4.96269e-05 4.78272e-05 4.5895e-05 4.56089e-05 4.58974e-05 4.72309e-05 4.95212e-05 5.39703e-05 5.79163e-05 6.2201e-05 6.80527e-05 7.58697e-05 8.46392e-05 9.71759e-05 0.000108056 0.000119894 0.000129046 0.000134922 0.000138216 0.00013841 0.000137462 0.000134105 0.000129293 0.000123744 0.000116402 0.000111746 0.000104541 9.58096e-05 9.47694e-05 9.68048e-05 0.000104268 0.000138578 0.000167218 0.000166889 0.000160234 0.000142027 0.000122504 0.00010698 9.77377e-05 9.08349e-05 8.62851e-05 8.43447e-05 8.4438e-05 8.53083e-05 8.70779e-05 9.07997e-05 9.14076e-05 9.06327e-05 8.85508e-05 8.5939e-05 8.36307e-05 8.00592e-05 7.24964e-05 5.69294e-05 4.46946e-05 3.8286e-05 3.63711e-05 3.66069e-05 4.02012e-05 5.19697e-05 7.5247e-05 0.000113192 0.000127874 0.000131083 0.000130246 0.000127227 0.000122835 0.000115987 0.00010922 0.000103186 9.79734e-05 9.1423e-05 8.55477e-05 8.19731e-05 8.06351e-05 7.9173e-05 7.65989e-05 7.42955e-05 7.38886e-05 7.85333e-05 9.01102e-05 9.43142e-05 9.39777e-05 9.20446e-05 8.76702e-05 8.30782e-05 7.96887e-05 7.65746e-05 7.18073e-05 6.59186e-05 6.11596e-05 5.88768e-05 5.77994e-05 5.52308e-05 5.36587e-05 5.41043e-05 5.91813e-05 7.36631e-05 7.77436e-05 7.71756e-05 7.2179e-05 7.14593e-05 7.53518e-05 8.64502e-05 9.06488e-05 9.11259e-05 8.75585e-05 7.9546e-05 7.28697e-05 6.85456e-05 6.39374e-05 5.95453e-05 5.58117e-05 5.19575e-05 4.84334e-05 4.67754e-05 4.63061e-05 4.6249e-05 4.6051e-05 4.61281e-05 4.63503e-05 4.71087e-05 5.09785e-05 5.559e-05 5.5761e-05 5.24855e-05 4.80491e-05 4.6227e-05 4.52675e-05 4.52965e-05 4.55952e-05 4.64907e-05 5.14548e-05 5.69499e-05 5.88519e-05 5.83456e-05 5.3592e-05 4.86959e-05 4.76738e-05 4.84217e-05 5.55535e-05 5.71542e-05 5.70749e-05 5.42913e-05 4.84146e-05 4.60051e-05 4.457e-05 4.4579e-05 4.55485e-05 5.26575e-05 5.94954e-05 6.21415e-05 6.78235e-05 9.97453e-05 0.000229316 4.57831e-05 3.96858e-05 3.62806e-05 3.50038e-05 3.58915e-05 3.82426e-05 4.10604e-05 4.39878e-05 4.58012e-05 4.52408e-05 4.40255e-05 4.23777e-05 4.1981e-05 4.2407e-05 4.28857e-05 4.35285e-05 4.5916e-05 4.98096e-05 4.58103e-05 4.05744e-05 3.38211e-05 3.18826e-05 3.17883e-05 3.22201e-05 3.23983e-05 3.30295e-05 3.48223e-05 3.94757e-05 5.10452e-05 7.19619e-05 0.000102482 0.000120223 0.000123402 0.000121699 0.000118249 0.000114614 0.000110706 0.000106757 0.000102316 9.63452e-05 8.69997e-05 7.31811e-05 6.02758e-05 5.28544e-05 4.96164e-05 4.77534e-05 4.78446e-05 4.91628e-05 5.24421e-05 5.60688e-05 6.24278e-05 6.91983e-05 7.81154e-05 8.70967e-05 9.60789e-05 0.000105926 0.000115824 0.000126717 0.000135484 0.00014072 0.000143683 0.000144745 0.000144426 0.000143113 0.000141469 0.000138612 0.00013252 0.00012563 0.000117843 0.000106932 9.48103e-05 8.62547e-05 7.76221e-05 7.33982e-05 7.38405e-05 7.72215e-05 8.64024e-05 0.000112146 0.00014631 0.000151094 0.00014816 0.000139564 0.000129864 0.000120444 0.000111902 0.000105984 0.000101341 9.97416e-05 9.93169e-05 9.84853e-05 9.66355e-05 9.43603e-05 9.12395e-05 8.82523e-05 8.48087e-05 8.04567e-05 7.08399e-05 5.56153e-05 4.46454e-05 3.84701e-05 3.63527e-05 3.63509e-05 3.9123e-05 5.05713e-05 7.63636e-05 0.000118893 0.000133788 0.000136139 0.000135366 0.000133832 0.000129298 0.000123063 0.000113524 0.000104637 9.70914e-05 9.15835e-05 8.61198e-05 8.02117e-05 7.5779e-05 7.4538e-05 7.47359e-05 7.47264e-05 7.25736e-05 7.00027e-05 7.03244e-05 7.95439e-05 8.9212e-05 9.19361e-05 9.14678e-05 8.99434e-05 8.50179e-05 8.04403e-05 7.66857e-05 7.19011e-05 6.56748e-05 6.07083e-05 5.86629e-05 5.75618e-05 5.5215e-05 5.15681e-05 5.09968e-05 5.30176e-05 6.42962e-05 7.26476e-05 7.29276e-05 7.00602e-05 6.83948e-05 6.98889e-05 7.72663e-05 8.42662e-05 8.5441e-05 8.50725e-05 8.12816e-05 7.41462e-05 6.9716e-05 6.64987e-05 6.13683e-05 5.81456e-05 5.59911e-05 5.32638e-05 4.98803e-05 4.87835e-05 4.77557e-05 4.74951e-05 4.76187e-05 4.76947e-05 4.82499e-05 5.08351e-05 5.55045e-05 5.58966e-05 5.33063e-05 4.92175e-05 4.65943e-05 4.57618e-05 4.57219e-05 4.57553e-05 4.6838e-05 5.19031e-05 5.59815e-05 5.91084e-05 5.87579e-05 5.55975e-05 4.97417e-05 4.75097e-05 4.74191e-05 4.93589e-05 5.71955e-05 5.91443e-05 5.8893e-05 5.36808e-05 4.77164e-05 4.49892e-05 4.47249e-05 4.55981e-05 5.0727e-05 6.00542e-05 6.28459e-05 6.90478e-05 9.43894e-05 0.000253988 4.10994e-05 3.9246e-05 3.77491e-05 3.58213e-05 3.5429e-05 3.5683e-05 3.62713e-05 3.71184e-05 3.6929e-05 3.70695e-05 3.75228e-05 3.84021e-05 3.98862e-05 4.07847e-05 4.08264e-05 4.01646e-05 4.01628e-05 4.08397e-05 4.32739e-05 4.58176e-05 4.53751e-05 4.32066e-05 3.99959e-05 3.81665e-05 3.66207e-05 3.5867e-05 3.63711e-05 3.777e-05 4.08238e-05 4.75946e-05 6.11642e-05 7.70102e-05 9.46939e-05 0.000102309 0.000104713 0.00010337 9.95263e-05 9.2708e-05 8.41878e-05 7.30787e-05 6.22811e-05 5.5157e-05 5.12104e-05 4.93712e-05 4.9659e-05 5.16579e-05 5.635e-05 6.43186e-05 7.51965e-05 8.54778e-05 9.41589e-05 0.000106605 0.000118198 0.00012883 0.000137826 0.000142815 0.00014508 0.000147089 0.000148049 0.000148657 0.00014862 0.000147954 0.000146169 0.000141995 0.000137083 0.000127698 0.000117615 0.000107478 9.40288e-05 7.93701e-05 6.6019e-05 5.71382e-05 5.10607e-05 4.9909e-05 5.05202e-05 5.23521e-05 5.65271e-05 6.57978e-05 8.32597e-05 0.000115806 0.000132185 0.000132493 0.00013033 0.000124853 0.000120114 0.000115101 0.000111146 0.000107592 0.000104621 0.000101088 9.72056e-05 9.40748e-05 8.92698e-05 8.40677e-05 7.89057e-05 6.63408e-05 5.35332e-05 4.46421e-05 3.90488e-05 3.68078e-05 3.6896e-05 3.88722e-05 4.83208e-05 7.42865e-05 0.000121222 0.000138709 0.00014051 0.000139914 0.000140161 0.000137786 0.000129063 0.000117615 0.00010637 9.6176e-05 8.75973e-05 8.20485e-05 7.77651e-05 7.2447e-05 6.84709e-05 6.75122e-05 6.78477e-05 7.01869e-05 7.08738e-05 6.98188e-05 6.93422e-05 7.43274e-05 8.44587e-05 8.90876e-05 9.02391e-05 9.00149e-05 8.77397e-05 8.19853e-05 7.72057e-05 7.19026e-05 6.56387e-05 6.04128e-05 5.83233e-05 5.73925e-05 5.50443e-05 4.97622e-05 4.76352e-05 4.83315e-05 5.46131e-05 6.63907e-05 6.88969e-05 6.81412e-05 6.60116e-05 6.65488e-05 7.02361e-05 7.70363e-05 8.00525e-05 8.01513e-05 7.94487e-05 7.54961e-05 7.07945e-05 6.77234e-05 6.28618e-05 5.91984e-05 5.71296e-05 5.58927e-05 5.37373e-05 5.19988e-05 5.03286e-05 4.91214e-05 4.89532e-05 4.89603e-05 4.92224e-05 5.1328e-05 5.5555e-05 5.55834e-05 5.36092e-05 4.95545e-05 4.72322e-05 4.66424e-05 4.61763e-05 4.63227e-05 4.7418e-05 5.20216e-05 5.6251e-05 5.8722e-05 5.86269e-05 5.61449e-05 5.17525e-05 4.86883e-05 4.81442e-05 4.82695e-05 5.11492e-05 5.78807e-05 5.83471e-05 5.73951e-05 5.31328e-05 4.74927e-05 4.54772e-05 4.58777e-05 4.87461e-05 5.88256e-05 6.44673e-05 7.03606e-05 0.000101237 0.000298219 4.72737e-05 4.52794e-05 4.44599e-05 4.24826e-05 4.03717e-05 3.92318e-05 3.84915e-05 3.81373e-05 3.79266e-05 3.90107e-05 4.17846e-05 4.59978e-05 5.07057e-05 5.3989e-05 5.70519e-05 5.8249e-05 5.99338e-05 6.0192e-05 6.05107e-05 6.05853e-05 6.14551e-05 6.11844e-05 6.04582e-05 5.87211e-05 5.60196e-05 5.22418e-05 4.87908e-05 4.54553e-05 4.4329e-05 4.58028e-05 4.88606e-05 5.32919e-05 6.16888e-05 6.61999e-05 6.98378e-05 6.9483e-05 6.76771e-05 6.3691e-05 5.88773e-05 5.45894e-05 5.09095e-05 5.0464e-05 5.1587e-05 5.52213e-05 6.22972e-05 7.4115e-05 8.56956e-05 0.000101104 0.000115212 0.000127957 0.000137952 0.000144138 0.000148032 0.000149832 0.00015089 0.000152145 0.000152245 0.000151737 0.000150086 0.000147396 0.000144031 0.000139505 0.000134223 0.00012482 0.000112457 0.00010031 8.84168e-05 7.33949e-05 6.05475e-05 5.11478e-05 4.42181e-05 3.96814e-05 3.69045e-05 3.63113e-05 3.66512e-05 3.77855e-05 3.9972e-05 4.3528e-05 5.00531e-05 6.32584e-05 8.11431e-05 0.000100327 0.000112464 0.00011404 0.000113467 0.000111434 0.000108644 0.000104742 0.000101624 9.57987e-05 9.13752e-05 8.52882e-05 7.83877e-05 6.95985e-05 5.97826e-05 5.11457e-05 4.43613e-05 3.93512e-05 3.70629e-05 3.72664e-05 3.88464e-05 4.54866e-05 6.71653e-05 0.000116058 0.00014231 0.000145059 0.000145253 0.000146496 0.000145742 0.000138924 0.000122164 0.000107433 9.52771e-05 8.55086e-05 7.74274e-05 7.25399e-05 6.94369e-05 6.57725e-05 6.28351e-05 6.23469e-05 6.27196e-05 6.6551e-05 7.01339e-05 6.99867e-05 6.96673e-05 7.35428e-05 8.19902e-05 8.69246e-05 8.92747e-05 8.9857e-05 8.83895e-05 8.21623e-05 7.72887e-05 7.1419e-05 6.51034e-05 5.96182e-05 5.74948e-05 5.69653e-05 5.36881e-05 4.75028e-05 4.43826e-05 4.4426e-05 4.72492e-05 5.8681e-05 6.50257e-05 6.57799e-05 6.43995e-05 6.43286e-05 6.58989e-05 6.97636e-05 7.29918e-05 7.55577e-05 7.63038e-05 7.50897e-05 7.16648e-05 6.82639e-05 6.38015e-05 6.00248e-05 5.77169e-05 5.59719e-05 5.35924e-05 5.2239e-05 5.11073e-05 4.99218e-05 4.96245e-05 4.95855e-05 4.99786e-05 5.20691e-05 5.49755e-05 5.53799e-05 5.4288e-05 5.02104e-05 4.82082e-05 4.68583e-05 4.63397e-05 4.6552e-05 4.75525e-05 5.31276e-05 5.77548e-05 5.86687e-05 5.84701e-05 5.60883e-05 5.25998e-05 5.05808e-05 4.98782e-05 4.97953e-05 4.97367e-05 5.0841e-05 5.59392e-05 5.70076e-05 5.59016e-05 5.36842e-05 4.87369e-05 4.7701e-05 4.91146e-05 5.38621e-05 6.28895e-05 7.41841e-05 0.000101495 0.0003211 0.000141848 0.000128342 0.000112871 9.99652e-05 9.09048e-05 8.54855e-05 8.23472e-05 8.2428e-05 8.40009e-05 8.75682e-05 9.25856e-05 9.77319e-05 0.000102828 0.00010703 0.000110716 0.000113682 0.00011586 0.000117514 0.000118385 0.000118276 0.000117662 0.000116191 0.000113845 0.000110432 0.00010673 0.000101487 9.47355e-05 8.72097e-05 7.83552e-05 7.05043e-05 6.45146e-05 6.11346e-05 6.17199e-05 6.12759e-05 6.06063e-05 5.96555e-05 5.86568e-05 5.6287e-05 5.60749e-05 5.72994e-05 6.13889e-05 6.79077e-05 8.01084e-05 9.29511e-05 0.000107948 0.000120769 0.000133955 0.000143353 0.000147968 0.000150715 0.00015289 0.000154177 0.000154096 0.00015357 0.000151982 0.000149742 0.000147232 0.000143917 0.000138259 0.000128376 0.000119489 0.000111353 9.78749e-05 8.44629e-05 7.25843e-05 6.13301e-05 5.17657e-05 4.3979e-05 3.72946e-05 3.31756e-05 3.01495e-05 2.7987e-05 2.70022e-05 2.69189e-05 2.72055e-05 2.81698e-05 2.93858e-05 3.11135e-05 3.39208e-05 3.8343e-05 4.52508e-05 5.77487e-05 6.84383e-05 7.76115e-05 8.49631e-05 8.75478e-05 8.70966e-05 8.56739e-05 8.22115e-05 7.76265e-05 7.21959e-05 6.4259e-05 5.75008e-05 5.33188e-05 4.85464e-05 4.3717e-05 3.98552e-05 3.6679e-05 3.61611e-05 3.729e-05 4.22107e-05 5.74866e-05 9.88696e-05 0.000143687 0.000150428 0.000151239 0.000154147 0.00015521 0.000148896 0.000131287 0.000110973 9.52426e-05 8.41491e-05 7.6058e-05 7.00667e-05 6.63992e-05 6.47863e-05 6.28542e-05 6.0345e-05 5.95049e-05 5.97098e-05 6.33489e-05 6.84388e-05 6.92432e-05 6.98535e-05 7.52019e-05 8.17167e-05 8.58743e-05 8.84774e-05 8.95784e-05 8.82638e-05 8.13834e-05 7.65322e-05 6.99756e-05 6.35699e-05 5.9149e-05 5.62421e-05 5.54984e-05 5.19807e-05 4.55828e-05 4.19771e-05 4.15908e-05 4.28506e-05 5.15236e-05 6.08515e-05 6.29641e-05 6.23936e-05 6.202e-05 6.27047e-05 6.52578e-05 6.83406e-05 6.98288e-05 7.20109e-05 7.27843e-05 7.16658e-05 6.94977e-05 6.57839e-05 6.19223e-05 5.89047e-05 5.65395e-05 5.42009e-05 5.19711e-05 5.05692e-05 5.00665e-05 4.99676e-05 5.00365e-05 5.05904e-05 5.22455e-05 5.45883e-05 5.53122e-05 5.3909e-05 5.03255e-05 4.82899e-05 4.73169e-05 4.71529e-05 4.73763e-05 4.85256e-05 5.43995e-05 5.86792e-05 5.97276e-05 5.96713e-05 5.65649e-05 5.3466e-05 5.04323e-05 5.08017e-05 5.05581e-05 5.07871e-05 5.13963e-05 5.24052e-05 5.41192e-05 5.59806e-05 5.5708e-05 5.46273e-05 5.07711e-05 5.11163e-05 5.39755e-05 5.8925e-05 7.24813e-05 0.000113581 0.000370417 0.0013234 0.00126724 0.000674108 0.000487138 0.00053845 0.000752101 0.000815523 0.000853291 0.000493117 0.000429279 0.000460736 0.000571083 0.000623639 0.000648073 0.000648438 0.000642301 0.00062984 0.000618641 0.000613606 0.000613856 0.000993769 0.000995709 0.000666741 0.00054335 0.000597155 0.000678711 0.000581353 0.000542227 0.000549696 0.000550165 0.000529683 0.00055498 0.000587799 0.000614144 0.00062706 0.000628346 0.000628132 0.000626347 0.000626309 0.000633745 0.000774286 0.00106677 0.00085309 0.000558396 0.000590668 0.000581081 0.000579396 0.000639639 0.000608623 0.000601834 0.00053246 0.000493174 0.000495755 0.000508524 0.000526883 0.000544774 0.00055208 0.000552493 0.000550082 0.000553365 0.000512966 0.00101158 0.000926297 0.000653175 0.000625509 0.000614228 0.000608783 0.00070806 0.000674322 0.000634385 0.000581675 0.000494143 0.000437121 0.000417243 0.000419583 0.000447903 0.000468352 0.000471759 0.000465667 0.000461409 0.000345314 0.000823677 0.00084841 0.000801297 0.000675953 0.000707315 0.000674803 0.000728291 0.000699161 0.000640699 0.000594963 0.000529755 0.000436462 0.00035476 0.00032211 0.000331632 0.000365436 0.000378617 0.000377056 0.000365897 0.000248344 0.000546683 0.000673189 0.000835059 0.000744292 0.000748997 0.000702228 0.000707541 0.000686912 0.000623385 0.000573444 0.000532441 0.000454933 0.00035719 0.000279986 0.000259724 0.00026536 0.000275197 0.000274753 0.000266133 0.000206374 0.000344971 0.000428678 0.000757608 0.000742102 0.000748292 0.000705769 0.000663307 0.000617821 0.000570804 0.000524873 0.000494286 0.000446608 0.000373391 0.000294704 0.000239678 0.000218339 0.000212408 0.0002004 0.000192842 0.000197175 0.000248654 0.000287495 0.000585862 0.000702443 0.000728475 0.000699299 0.000640544 0.00057317 0.000508955 0.00047735 0.000450748 0.000415062 0.000364769 0.000308834 0.0002504 0.000208919 0.000189043 0.000170991 0.000162566 0.000193723 0.000207592 0.000219435 0.000386221 0.000609215 0.000675975 0.000663487 0.000620548 0.000534834 0.000449633 0.000412439 0.000401951 0.000377979 0.000339188 0.000303027 0.00025577 0.000206288 0.000177759 0.00016291 0.000157026 0.000196547 0.00019796 0.000200777 0.000267824 0.000457148 0.000594592 0.000594511 0.000559363 0.000455396 0.000400246 0.00037945 0.000370674 0.000351784 0.000309344 0.000279473 0.000246471 0.000202923 0.000170418 0.000160112 0.000162056 0.000213513 0.000212038 0.000215185 0.000231691 0.000308357 0.000481835 0.000508839 0.000478621 0.000393122 0.000376051 0.000367881 0.000359186 0.000338824 0.000292821 0.000262151 0.000234757 0.000200154 0.000171818 0.000164001 0.000169902 0.0002548 0.000283545 0.000308924 0.000271846 0.000280021 0.000353349 0.0004133 0.00038215 0.000358823 0.000370519 0.000371359 0.000362315 0.000335513 0.000288671 0.000257954 0.000228226 0.000199956 0.000183547 0.000182282 0.000188922 0.000296877 0.000445518 0.000514648 0.000445764 0.000328955 0.000326339 0.000340137 0.000334102 0.000350579 0.00041775 0.000426039 0.000407946 0.000350162 0.000295022 0.000262039 0.000229854 0.000208277 0.00020484 0.000211542 0.00021929 0.000297185 0.000475033 0.000587568 0.000587593 0.000483242 0.000369163 0.000336278 0.000336999 0.000425199 0.000530024 0.000529918 0.000489634 0.000379349 0.000315154 0.000279138 0.000244872 0.000232757 0.000235129 0.000251525 0.000276823 0.000281908 0.000365337 0.000442204 0.000557938 0.000545945 0.000458216 0.000373021 0.000392207 0.000576963 0.000676415 0.000664221 0.000571754 0.000418426 0.000361484 0.000341958 0.00030582 0.00030298 0.000316921 0.000366417 0.000417693 0.000242223 0.000262137 0.000305634 0.000460631 0.00053192 0.000504013 0.000446301 0.000506631 0.000783808 0.00085939 0.000826845 0.000663616 0.000508416 0.000498586 0.00049678 0.000467671 0.000473559 0.000516765 0.000592748 0.000611912 0.000242575 0.000266521 0.000334857 0.000447258 0.000574697 0.000557987 0.000558355 0.000711992 0.00103634 0.00105907 0.000980463 0.000787074 0.00071555 0.000723707 0.000718065 0.000694642 0.00070682 0.000745443 0.000762038 0.000745814 0.000299278 0.00038259 0.000531482 0.000595892 0.000673501 0.000674076 0.000753107 0.00110473 0.00122377 0.00116254 0.00101046 0.000927859 0.000911299 0.000881826 0.00086301 0.000855413 0.00085496 0.000846737 0.000836037 0.000798269 0.000563389 0.000916244 0.00096626 0.000871377 0.000852413 0.000931153 0.00127198 0.00140036 0.00130021 0.00108552 0.000961608 0.000955594 0.000948517 0.000913205 0.000921228 0.000923376 0.000908505 0.000875255 0.00085572 0.000822861 0.00133716 0.00164716 0.00148292 0.00105844 0.00101912 0.00130035 0.00157224 0.00142438 0.000939493 0.000683764 0.000644895 0.000694318 0.000738818 0.000758638 0.000799488 0.000828683 0.000832307 0.000799139 0.000768426 0.000744748 ) ; boundaryField { inlet { type zeroGradient; } outlet { type zeroGradient; } walls { type zeroGradient; } frontAndBack { type empty; } } // ************************************************************************* //
[ "g.svenn@online.no" ]
g.svenn@online.no
6a31ab577de98c140c44f823448d26c7c3b14558
601342779ab2a02ede670a267c2f4b4dd50a3f9f
/exercise/557.反转字符串中的单词-iii.cpp
b5566be095c47f2d3fa430e6f66a2a0e0ee7297e
[]
no_license
kleinZhf/AlgorithmQIUZHAO
c0e67cd9538b5ded36b45b33cfb196d178d345a2
5775577bc6421abc73044590628647dd780233fc
refs/heads/master
2022-12-07T13:47:52.010873
2020-08-22T03:37:49
2020-08-22T03:37:49
279,090,428
0
0
null
2020-07-12T15:15:21
2020-07-12T15:15:20
null
UTF-8
C++
false
false
695
cpp
/* * @lc app=leetcode.cn id=557 lang=cpp * * [557] 反转字符串中的单词 III */ // @lc code=start class Solution { public: string reverseWords(string s) { int i = 0, j = 0; while (true) { while (j < s.size() && s[j] == ' ') ++j; if (j == s.size()) break; i = j; while (j < s.size() && s[j] != ' ') ++j; reverse(s, i, j - 1); } return s; } void reverse(string &s, int begin, int end) { if (begin >= end) return; while (begin < end) { char c = s[begin]; s[begin++] = s[end]; s[end--] = c; } } }; // @lc code=end
[ "zhf@win" ]
zhf@win
1549dd616d0e9212acee8e02350c9cf13f98f663
f6c2d9963022b2fe9796b5164e91184af228d224
/flappy_bird/project/src/Player.cpp
8c2467a39f621ecaae991238252454bb016fe45b
[ "MIT" ]
permissive
DronCode/FlappyBirdDemo
85bbc628099e91be6f26c1a6de3dee736abc6547
3c216a145ee031d00229119cfbfccd742d5ae9fc
refs/heads/main
2023-02-05T04:40:09.420179
2020-12-20T19:30:46
2020-12-20T19:30:46
323,085,564
0
0
null
null
null
null
UTF-8
C++
false
false
3,654
cpp
#include "Player.h" #include "GlobalSettings.h" #include "box2d/box2d.h" #include "res.h" Player::Player(b2World* world) : PhysicsBasedActor(world, oxygine::Vector2(0.f, 0.f), 1.f, b2_dynamicBody) {} void Player::init() { // Visual _view = new oxygine::Sprite; _view->setResAnim(res::ui.getResAnim("player")); _view->attachTo(this); _view->setPosition(0.f, 0.f); _view->setAnchorInPixels(0.f, 0.f); setSize(_view->getSize()); setupPhysicsBodyProperties(); } void Player::update(const oxygine::UpdateState& us) { // Update actor Actor::update(us); // Update state updateInternalState(us); } void Player::die() { if constexpr (!Settings::kGodMode) { if (isDead()) { return; } switchToState(PlayerState::DEAD); } } void Player::sendImpulse() { if (_state == PlayerState::IDLE) { switchToState(PlayerState::FALLING); getBody()->SetAwake(true); } else if (_state == PlayerState::FALLING) { switchToState(PlayerState::JUMPING); // Send physics impulse to the body const float force = -getJumpForce(); const b2Vec2 kJumpImpulseVec = b2Vec2 { 0.f, force }; getBody()->ApplyLinearImpulseToCenter(kJumpImpulseVec, true); // Close flag _shouldUpdateImpulseTimeOnNextUpdate = true; } } float Player::getJumpForce() const { return ((_state == PlayerState::FALLING ? Player::kImpulseFromFallingFactor : Player::kImpulseFromJumpingFactor) * Player::kJumpImpulseFactor * Player::kMass) + Settings::kGravity; } void Player::addCoin() { ++_coins; } void Player::joinToObstacleSafeZone() { assert(_inObstacleSafeZone == false); if (!_inObstacleSafeZone) { _inObstacleSafeZone = true; } } void Player::leaveFromObstacleSafeZone() { assert(_inObstacleSafeZone == true); if (_inObstacleSafeZone) { _inObstacleSafeZone = false; ++_score; } } void Player::setupPhysicsBodyProperties() { setMarkerId(Player::kBodyName); getBody()->SetAwake(false); applyTransform(getPosition(), getRotation()); updatePhysicsSize(); b2MassData massData; getBody()->GetMassData(&massData); massData.mass = Player::kMass; getBody()->SetMassData(&massData); } void Player::updateInternalState(const oxygine::UpdateState& us) { if (isDead()) { return; } if (_shouldUpdateImpulseTimeOnNextUpdate && _state == PlayerState::JUMPING) { _lastImpulseTime = us.time; _shouldUpdateImpulseTimeOnNextUpdate = false; return; //Do not update anything else here } if (us.time - _lastImpulseTime >= kImpulseCooldownMs) { if (_state == PlayerState::JUMPING) { switchToState(PlayerState::FALLING); } } } void Player::switchToState(PlayerState state) { switch (state) { case PlayerState::IDLE: return; // No way to join into idle from any other state case PlayerState::JUMPING: if (_state == PlayerState::IDLE || _state == PlayerState::FALLING) { // We can jump only if we in IDLE or FALLING _state = state; } break; case PlayerState::FALLING: if (_state == PlayerState::IDLE || _state == PlayerState::JUMPING) { //We can start falling only if we jumping _state = state; } break; case PlayerState::DEAD: if (_state != PlayerState::DEAD && _state != PlayerState::IDLE) { // We can die only if we are not already dead and not in safe IDLE state _state = state; } break; } }
[ "alexandrleutin@gmail.com" ]
alexandrleutin@gmail.com
99ee6e21111f5da5e326b124b3b9cce0f062448c
21bd01329ee97c587b3723eb83a7fc9275a3864f
/CarreraC++/threads_workers.hpp
e694cf68ab0201bb88d56e4afcd150529bc2068c
[]
no_license
MartaFonde/Cursos_Cpp
012e7d7dbfa1cb7a2b40a4e8a7b8276bfafd21aa
7353cb96071ca6934509720902d7052a0725e7af
refs/heads/master
2023-04-19T08:51:32.663845
2021-05-10T22:33:01
2021-05-10T22:33:01
null
0
0
null
null
null
null
ISO-8859-10
C++
false
false
2,669
hpp
#include <thread> #include <atomic> #include <vector> #include <queue> #include <mutex> #ifndef __THREADS_WORKERS_H__ #define __THREADS_WORKERS_H__ class ThreadPool { private: std::mutex m_queue_mutex; //controla la cola de threads std::mutex m_results_mutex; // controla resultados std::vector<std::thread> m_threads; unsigned int m_thread_count; public: ThreadPool(unsigned int pool_size = std::thread::hardware_concurrency()) : //hardware_concurrency() -> nš de threads que tiene nuestro procesador disponible en ese momento (4 core -> 4, amd ripper 32 -> 32) m_queue_mutex(), m_thread_count(pool_size), m_threads() { }; template <class F, class R, class A> std::vector<R> map(const F& f, std::vector<A> args) { std::queue <std::function<R()>> tasks; //funciones -> para cada thread std::vector<R> results; //rdo de cada thread for (auto& arg : args) { auto task = [&f, &arg]() { return f(arg); }; tasks.push(std::move(task)); } for (unsigned int i = 0; i < m_thread_count; ++i) { std::thread t ( [this, &tasks, &results]() //acceso a esta clase mutex_task y Results { while (true) {//espera activa hasta que pueda acceder al recurso if (m_queue_mutex.try_lock()) //bloquea cola hasta que accede a recurso { //false si otro thread ha accedido a recurso if (!tasks.empty()) { auto task = tasks.front(); tasks.pop(); m_queue_mutex.unlock(); auto res = task(); std::lock_guard<std::mutex> resutls_lock(m_results_mutex); results.push_back(res); } else { m_queue_mutex.unlock(); //desbloquea recurso y para thread break; } } } } ); m_threads.push_back(std::move(t)); //guardamos thread para saber cuales son los activos } for (auto& t : m_threads) t.join(); //esperamos a que terminen return results; } }; #endif //THREADS_WORKERS_H
[ "marta4510@hotmail.com" ]
marta4510@hotmail.com
90ce402fe965a30b500a1507790023ffe45921ae
704a8690af3f97bc43ac8a49db56ed62cd6c08de
/SDK/DW_ClothingSystemRuntimeInterface_structs.hpp
34c20c975ec1bd90c754b44937e5270c1cec11e8
[]
no_license
AeonLucid/SDK-DarwinProject
4d801f0a7ea6c82a7aa466a77fcc1471f5e71942
dd1c97d55e92c2d745bdf1aa36bab0569f2cf76a
refs/heads/master
2021-09-07T14:08:44.996793
2018-02-24T02:25:28
2018-02-24T02:25:28
118,212,468
1
1
null
null
null
null
UTF-8
C++
false
false
2,434
hpp
#pragma once // Darwin Project (open_beta_2) SDK #ifdef _MSC_VER #pragma pack(push, 0x8) #endif #include "DW_Basic.hpp" #include "DW_CoreUObject_classes.hpp" namespace SDK { //--------------------------------------------------------------------------- //Script Structs //--------------------------------------------------------------------------- // ScriptStruct ClothingSystemRuntimeInterface.ClothCollisionPrim_Sphere // 0x0014 struct FClothCollisionPrim_Sphere { int BoneIndex; // 0x0000(0x0004) (ZeroConstructor, IsPlainOldData) float Radius; // 0x0004(0x0004) (ZeroConstructor, IsPlainOldData) struct FVector LocalPosition; // 0x0008(0x000C) (IsPlainOldData) }; // ScriptStruct ClothingSystemRuntimeInterface.ClothCollisionPrim_SphereConnection // 0x0008 struct FClothCollisionPrim_SphereConnection { int SphereIndices[0x2]; // 0x0000(0x0004) (ZeroConstructor, IsPlainOldData) }; // ScriptStruct ClothingSystemRuntimeInterface.ClothCollisionPrim_Convex // 0x0018 struct FClothCollisionPrim_Convex { TArray<struct FPlane> Planes; // 0x0000(0x0010) (ZeroConstructor) int BoneIndex; // 0x0010(0x0004) (ZeroConstructor, IsPlainOldData) unsigned char UnknownData00[0x4]; // 0x0014(0x0004) MISSED OFFSET }; // ScriptStruct ClothingSystemRuntimeInterface.ClothCollisionData // 0x0030 struct FClothCollisionData { TArray<struct FClothCollisionPrim_Sphere> Spheres; // 0x0000(0x0010) (Edit, ZeroConstructor) TArray<struct FClothCollisionPrim_SphereConnection> SphereConnections; // 0x0010(0x0010) (Edit, ZeroConstructor) TArray<struct FClothCollisionPrim_Convex> Convexes; // 0x0020(0x0010) (Edit, ZeroConstructor) }; } #ifdef _MSC_VER #pragma pack(pop) #endif
[ "aeonlucid@outlook.com" ]
aeonlucid@outlook.com
7ed2e1105d0c560a3263c54bbb7cb07d76608e39
dc0c44f3c4729a75570d8c0fa2ae998bdf9e4976
/Programmieren_2/Praktikum/Blatt 8/Ball.hpp
3ccf29ff47cb68ae1be127b63db2cc81f451a103
[]
no_license
WyNotRepax/Studi
4247a2857001e0a9261c381164852f33337e59e8
b5b16ee860b029e38ea96dc629611fc7ec5bddd7
refs/heads/master
2021-12-03T13:55:50.178819
2021-10-20T23:55:19
2021-10-20T23:55:19
251,079,763
0
1
null
null
null
null
UTF-8
C++
false
false
452
hpp
#ifndef BALL_HPP #define BALL_HPP #include "GeoObjekt.hpp" #include "Punkt3D.hpp" #include <string> class Ball : public GeoObjekt { public: Ball(const Punkt3D &p, double r); Ball(const Ball &other); void setzeZentrum(const Punkt3D &p); void setzeRadius(double r); std::string toString(); double inhalt(); Ball *clone(); Ball &assign(const GeoObjekt &other); private: double radius; Punkt3D zentrum; }; #endif
[ "benno.steinkamp@hs-osnabrueck.de" ]
benno.steinkamp@hs-osnabrueck.de
792ecd84074728dee562cf4eab9a4adadaf57e0b
d5a2f4a2857568dbc46a2c121fd8a244bd05cc3f
/ToyRayTracer/Core/Ray.cpp
650d2d396a2bb78f106cab32015e4d758d6375f1
[]
no_license
FluffyDou/HangDou
0f8426135790c13958dc36c30218c49dac6c915d
bf04fb14c38e680e8c3926bc86663c0c985d1cb2
refs/heads/master
2021-01-16T23:08:59.092082
2016-10-29T03:56:10
2016-10-29T03:56:10
72,019,158
1
0
null
null
null
null
UTF-8
C++
false
false
1,511
cpp
/******************************************************************/ /* Ray.cpp */ /* ----------------------- */ /* */ /* The file defines a couple methods for the Ray class. Of */ /* particular interest may be the Ray::CheckHit() method, */ /* which simply checks if the current hit (at distance t) */ /* is closer than any previously hit surfaces. */ /* */ /* Chris Wyman (10/26/2006) */ /******************************************************************/ #include "Ray.h" //#include "DataTypes/MathDefs.h" Ray::Ray() { hitDist = MAXFLOAT; hitObj = 0; hitNormal = vec3(0.0, 0.0, 0.0); bounce = 0; } Ray::Ray( const vec3 &orig, const vec3 &dir ): origin(orig), direction(dir) { hitDist = MAXFLOAT; hitObj = 0; hitNormal = vec3(0.0, 0.0, 0.0); bounce = 0; } Ray::Ray( const vec3 &orig, const vec3 &dir, const int bounce ): origin(orig), direction(dir) { hitDist = MAXFLOAT; hitObj = 0; hitNormal = vec3(0.0, 0.0, 0.0); this->bounce = bounce; } int Ray::CheckHit( float t, Primitive *obj ) { // Do we miss? if (t >= hitDist || t <= EPSILON) return 0; // Nope. A hit occurred hitDist = t; hitObj = obj; return 1; }
[ "hangdou@gmail.com" ]
hangdou@gmail.com
b57337b41c83588bb486d1a16483d2d18ccf9fac
73023c191f3afc1f13b39dffea22b7f65a664f7d
/MatrixEngine/Classes/MCocos2d/Native/ScriptBind_EffectNode.cpp
d6de3f1780b723539eecef16ad7c5079983d9d39
[]
no_license
ugsgame/Matrix
0a2c2abb3be9966c3cf7a4164799ed107c8f2920
1311b77bd9a917ec770e428efb9530ee6038617a
refs/heads/master
2020-09-05T15:45:45.973221
2019-11-07T07:20:38
2019-11-07T07:20:38
220,145,853
0
0
null
null
null
null
UTF-8
C++
false
false
915
cpp
//#include "stdneb.h" #include "cocos2d.h" #include "MCocos2d/EffectNode/ShaderNode.h" #include "MCocos2d/EffectNode/GrayNode.h" #include "ScriptBind_EffectNode.h" ScriptBind_EffectNode::ScriptBind_EffectNode() { REGISTER_METHOD(SetRealTimeReset); REGISTER_METHOD(ResetShader); REGISTER_METHOD(SetIsEnable); REGISTER_METHOD(IsEnable); REGISTER_METHOD(GrayNodeCreate); } ScriptBind_EffectNode::~ScriptBind_EffectNode() { } void ScriptBind_EffectNode::SetRealTimeReset(ShaderNode* pNode, bool realTime) { pNode->setRealTimeReset(realTime); } void ScriptBind_EffectNode::ResetShader(ShaderNode* pNode) { pNode->resetShader(); } void ScriptBind_EffectNode::SetIsEnable(ShaderNode* pNode, bool enable) { pNode->setIsEnable(enable); } bool ScriptBind_EffectNode::IsEnable(ShaderNode* pNode) { return pNode->IsEnable(); } GrayNode* ScriptBind_EffectNode::GrayNodeCreate() { return GrayNode::create(); }
[ "670563380@qq.com" ]
670563380@qq.com
2822bdc80fcb8275234049016da9fd515b91c002
45284af485d0b25a34ba9f6af780bc79a94644ba
/fuchsia/net_http/http_service_impl.h
1b04bb2283076d875601258b1038454bad33c0af
[ "BSD-3-Clause" ]
permissive
stoneskill/chromium
873f36a2211c5e6055f468498d705ef6f7b400af
ceb3dc733ceb7c73cabca049e81ebd355ced58c4
refs/heads/master
2023-03-13T02:42:45.789430
2019-01-18T03:24:10
2019-01-18T03:24:10
166,337,419
0
0
null
null
null
null
UTF-8
C++
false
false
893
h
// 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. #ifndef FUCHSIA_NET_HTTP_HTTP_SERVICE_IMPL_H_ #define FUCHSIA_NET_HTTP_HTTP_SERVICE_IMPL_H_ #include <fuchsia/net/oldhttp/cpp/fidl.h> #include <lib/fidl/cpp/interface_request.h> #include "net/url_request/url_request_context.h" namespace net_http { // Implements the Fuchsia HttpService API, using the //net library. class HttpServiceImpl : public ::fuchsia::net::oldhttp::HttpService { public: HttpServiceImpl(); ~HttpServiceImpl() override; // HttpService methods: void CreateURLLoader( fidl::InterfaceRequest<::fuchsia::net::oldhttp::URLLoader> request) override; private: DISALLOW_COPY_AND_ASSIGN(HttpServiceImpl); }; } // namespace net_http #endif // FUCHSIA_NET_HTTP_HTTP_SERVICE_IMPL_H_
[ "commit-bot@chromium.org" ]
commit-bot@chromium.org
82ba012245e04206b91d015acee8cc1c3ced8db8
0eff74b05b60098333ad66cf801bdd93becc9ea4
/second/download/rsync/gumtree/rsync_new_log_298.cpp
9542e9e65ae07c340a6c508e66c66d3e8ede1ee1
[]
no_license
niuxu18/logTracker-old
97543445ea7e414ed40bdc681239365d33418975
f2b060f13a0295387fe02187543db124916eb446
refs/heads/master
2021-09-13T21:39:37.686481
2017-12-11T03:36:34
2017-12-11T03:36:34
null
0
0
null
null
null
null
UTF-8
C++
false
false
89
cpp
fprintf(FERROR, "send_files failed on long-named directory %s\n", fname);
[ "993273596@qq.com" ]
993273596@qq.com
1c3dec40aadaa7185095d7f635df7f995d606d6e
8459688edab265c420899fe72089f6377a98b250
/Arduino/Scalextric/Scalextric.ino
e398b2e503ba42784303baf352c2915d97a2f02f
[]
no_license
BorjaIP/InsightScalextric
35e17b053c1880099ec6ddb810d01f7c1441646d
54bd378a819d8e1afd47edbb75abb5afa0679aa4
refs/heads/master
2021-03-27T19:49:08.576745
2016-06-10T11:19:28
2016-06-10T11:19:28
60,841,598
0
1
null
null
null
null
UTF-8
C++
false
false
717
ino
void setup() { // SETUP: Open serial at 9600bps Serial.begin(9600); while (!Serial) { ; // wait for serial port to connect. Needed for native USB port only } } void loop() { /*LOOP: / 1 - Read from Serial / 2 - Tune PWM */ if(Serial.available() > 0) { String inString = Serial.readStringUntil(';'); int inTrack = inString.toInt(); Serial.print(inTrack); Serial.print(" "); inString = Serial.readStringUntil(';'); int inPwm = inString.toInt(); inPwm = 280-inPwm; Serial.println(inPwm); if(inPwm<100) analogWrite(inTrack, 0); else if (inPwm>255) analogWrite(inTrack, 255); else analogWrite(inTrack, inPwm); } }
[ "borja.irpe@gmail.com" ]
borja.irpe@gmail.com
548d2fd18183b7fd3e24c8831c0baaf0abf0bff3
8132bc1e0ea93e99b857c96dc93c2fa805fd90b2
/src/tunnel-client.hpp
cf989a98fe318abfe158811854b0e8474773dc03
[]
no_license
kelvich/tongate
09d7e430d101e7678606a4abc83b208c8fb21234
5b0e625e0677352495b611dfd0ad3341344d8900
refs/heads/master
2020-11-24T21:36:04.446697
2019-12-22T21:43:31
2019-12-22T21:43:31
228,349,659
3
0
null
null
null
null
UTF-8
C++
false
false
8,271
hpp
#pragma once #include "adnl/adnl-ext-client.h" #include "adnl/adnl-ext-connection.hpp" #include "adnl/adnl-ext-client.hpp" #include "ton/ton-types.h" #include "ton/ton-tl.hpp" #include "ton/ton-io.hpp" #include "common/errorlog.h" #include "crypto/vm/cp0.h" #include "td/utils/filesystem.h" #include "td/utils/overloaded.h" #include "td/utils/OptionsParser.h" #include "td/utils/port/path.h" #include "td/utils/port/signals.h" #include "td/utils/port/user.h" #include "td/utils/port/rlimit.h" #include "td/utils/ThreadSafeCounter.h" #include "td/utils/TsFileLog.h" #include "td/utils/Random.h" #include "td/net/UdpServer.h" #include "auto/tl/lite_api.h" #include "dht/dht.hpp" #include "overlay/overlays.h" #include "overlay/overlay.hpp" // #include "tongate.h" #if TD_DARWIN || TD_LINUX #include <unistd.h> #endif #include <iostream> #include <sstream> #include <cstdlib> #include <set> namespace ton { namespace adnl { class TunnelClient; class TunnelOutboundConnection : public AdnlExtConnection { public: class MsgCallback { public: virtual ~MsgCallback() = default; virtual void on_message(td::BufferSlice data) = 0; }; TunnelOutboundConnection(td::SocketFd fd, std::unique_ptr<AdnlExtConnection::Callback> callback, std::unique_ptr<MsgCallback> message_cb, AdnlNodeIdFull dst, td::actor::ActorId<TunnelClient> ext_client) : AdnlExtConnection(std::move(fd), std::move(callback), true) , message_cb_(std::move(message_cb)) , dst_(std::move(dst)) , ext_client_(ext_client) { } void start_up() override { AdnlExtConnection::start_up(); auto X = dst_.pubkey().create_encryptor(); if (X.is_error()) { LOG(ERROR) << "failed to init encryptor: " << X.move_as_error(); stop(); return; } auto enc = X.move_as_ok(); td::BufferSlice d{256}; auto id = dst_.compute_short_id(); auto S = d.as_slice(); S.copy_from(id.as_slice()); S.remove_prefix(32); S.truncate(256 - 64 - 32); td::Random::secure_bytes(S); init_crypto(S); auto R = enc->encrypt(S); if (R.is_error()) { LOG(ERROR) << "failed to encrypt: " << R.move_as_error(); stop(); return; } auto data = R.move_as_ok(); LOG_CHECK(data.size() == 256 - 32) << "size=" << data.size(); S = d.as_slice(); S.remove_prefix(32); CHECK(S.size() == data.size()); S.copy_from(data.as_slice()); send_uninit(std::move(d)); } td::Status process_packet(td::BufferSlice data) override { message_cb_->on_message(std::move(data)); return td::Status::OK(); } td::Status process_init_packet(td::BufferSlice data) override { UNREACHABLE(); } td::Status process_custom_packet(td::BufferSlice &data, bool &processed) override { if (data.size() == 12) { auto F = fetch_tl_object<ton_api::tcp_pong>(data.clone(), true); if (F.is_ok()) { processed = true; return td::Status::OK(); } } return td::Status::OK(); } private: AdnlNodeIdFull dst_; PrivateKey local_id_; td::actor::ActorId<TunnelClient> ext_client_; td::SecureString nonce_; bool authorization_complete_ = false; std::unique_ptr<MsgCallback> message_cb_; }; class TunnelClient : public td::actor::Actor { public: class Callback { public: virtual ~Callback() = default; virtual void on_ready() = 0; virtual void on_stop_ready() = 0; }; TunnelClient(AdnlNodeIdFull dst_id, td::IPAddress dst_addr, std::unique_ptr<Callback> callback) : dst_(std::move(dst_id)), dst_addr_(dst_addr), callback_(std::move(callback)) { } void start_up() override { alarm(); } void conn_stopped(td::actor::ActorId<AdnlExtConnection> conn) { if (!conn_.empty() && conn_.get() == conn) { callback_->on_stop_ready(); conn_ = {}; alarm_timestamp() = next_create_at_; try_stop(); } } void conn_ready(td::actor::ActorId<AdnlExtConnection> conn) { if (!conn_.empty() && conn_.get() == conn) { callback_->on_ready(); } } void check_ready(td::Promise<td::Unit> promise) { if (conn_.empty() || !conn_.is_alive()) { promise.set_error(td::Status::Error(ErrorCode::notready, "not ready")); return; } td::actor::send_closure(td::actor::ActorId<AdnlExtConnection>{conn_.get()}, &AdnlExtConnection::check_ready_async, std::move(promise)); }; void send_query(std::string name, td::BufferSlice data, td::Timestamp timeout, td::Promise<td::BufferSlice> promise) { auto P = [SelfId = actor_id(this)](AdnlQueryId id) { td::actor::send_closure(SelfId, &TunnelClient::destroy_query, id); }; auto q_id = generate_next_query_id(); out_queries_.emplace(q_id, AdnlQuery::create(std::move(promise), std::move(P), name, timeout, q_id)); if (!conn_.empty()) { auto obj = create_tl_object<lite_api::adnl_message_query>(q_id, std::move(data)); td::actor::send_closure(conn_, &TunnelOutboundConnection::send, serialize_tl_object(obj, true)); } } void send(td::BufferSlice data) { td::actor::send_closure(conn_, &TunnelOutboundConnection::send, std::move(data)); } void destroy_query(AdnlQueryId id) { out_queries_.erase(id); try_stop(); } void answer_query(AdnlQueryId id, td::BufferSlice data) { auto it = out_queries_.find(id); if (it != out_queries_.end()) { td::actor::send_closure(it->second, &AdnlQuery::result, std::move(data)); } } void alarm() override { if (is_closing_) { return; } if (conn_.empty() || !conn_.is_alive()) { next_create_at_ = td::Timestamp::in(10.0); alarm_timestamp() = next_create_at_; auto fd = td::SocketFd::open(dst_addr_); if (fd.is_error()) { LOG(INFO) << "failed to connect to " << dst_addr_ << ": " << fd.move_as_error(); return; } class Cb : public AdnlExtConnection::Callback { private: td::actor::ActorId<TunnelClient> id_; public: void on_ready(td::actor::ActorId<AdnlExtConnection> conn) { td::actor::send_closure(id_, &TunnelClient::conn_ready, conn); } void on_close(td::actor::ActorId<AdnlExtConnection> conn) { td::actor::send_closure(id_, &TunnelClient::conn_stopped, conn); } Cb(td::actor::ActorId<TunnelClient> id) : id_(id) { } }; class MCb : public TunnelOutboundConnection::MsgCallback { public: void on_message(td::BufferSlice data) { std::cout << "MCb on_message" << std::endl; // td::actor::send_closure(id_, &TunnelClient::conn_ready, conn); } }; conn_ = td::actor::create_actor<TunnelOutboundConnection>(td::actor::ActorOptions().with_name("outconn").with_poll(), fd.move_as_ok(), std::make_unique<Cb>(actor_id(this)), std::make_unique<MCb>(), dst_, actor_id(this)); } } void hangup() override { conn_ = {}; is_closing_ = true; ref_cnt_--; for (auto &it : out_queries_) { td::actor::ActorOwn<>(it.second); // send hangup } try_stop(); } AdnlQueryId generate_next_query_id() { while (true) { AdnlQueryId q_id = AdnlQuery::random_query_id(); if (out_queries_.count(q_id) == 0) { return q_id; } } } private: AdnlNodeIdFull dst_; PrivateKey local_id_; td::IPAddress dst_addr_; std::unique_ptr<Callback> callback_; td::actor::ActorOwn<TunnelOutboundConnection> conn_; td::Timestamp next_create_at_ = td::Timestamp::now_cached(); std::map<AdnlQueryId, td::actor::ActorId<AdnlQuery>> out_queries_; bool is_closing_{false}; td::uint32 ref_cnt_{1}; void try_stop() { if (is_closing_ && ref_cnt_ == 0 && out_queries_.empty()) { stop(); } } }; } // namespace adnl } // namespace ton
[ "stanconn@gmail.com" ]
stanconn@gmail.com
4492ec7e68ccd074ccdae099cd94c7649c995512
177f7cb7530fb4b31bc7a49d6e833b514fab030e
/Cell.h
5b74c6b9d6e2499e93210dd2f5aa29a49231fc6a
[]
no_license
Lei-Ray-Yan/CPSC-350_Assignment2
cebbc6670ee7529f26a91a9e45c2b1931fba99c9
9489bb2c59dda5362815a9aabdffb5107b24c83a
refs/heads/main
2022-12-25T20:19:48.484327
2020-10-10T06:55:22
2020-10-10T06:55:22
302,821,472
0
0
null
null
null
null
UTF-8
C++
false
false
2,426
h
/* - Raymond Raymond - 2297956 - lyan@chapman.edu - CPSC-350-01 - Assignment 2 - this is the header file for the Cell object. - Cell objects fills into the Map object, each of them take one grid on the map, they are simulating the "empty spot" or "alive cells" depending on the desinated status. They are in charge of calculating their own destiny based on the map, and storing information, etc. - Difference in game mode is handles by conditional branches in this object. */ #ifndef CELL_H #define CELL_H #include <iostream> using namespace std; class Map; class Cell{ public: /* the basic informations about the cell, including the location (x, y) on the map, status (alive or empty), futureStatus (what it will become in the next generation) */ int x; int y; int status; //0 for empty, 1 for occupied. int futureStatus; /* the pointer to the map object it "placed on", and the game mode desinated to that map/ simulation. */ Map* currentMap; int gameMode; /* default contructor, destructor. */ Cell(); ~Cell(); /* overloaded contructor. */ Cell(int posX, int posY, Map* map, int mode); /* change the future status to (current) status. */ void refresh(); /* this function calculates and decides the future status in the next generation of the cell. */ void updateNextGeneration(Cell** grids, int sx, int sy); /* this function finds all the neighbors of the current cell. The difference in game mode is reflected and handled in this part, which for 3 game modes, it provides 3 different ways to handle the "out-of-bounds" neigbours. */ void findAllNeighborGrids(int emptyGrids[8][2], int sx, int sy); /* check if a location is "out-of-bounds". */ int checkSpecialCellPosition(int valueCategory, int value, int sx, int sy); /* check a given cell's status. */ bool checkCellOccupied(Cell cell); /* get a cell's status. */ int getStatus(); /* change a cell's status. */ void changeStatus(int newStatus); /* get a cell's future status. */ int getFutureStatus(); /* change a cell's future status. */ void changeFutureStatus(int newStatus); /* get the x location of the cell. */ int getX(); /* get the y location of the cell. */ int getY(); }; #endif
[ "reymond350326424@gmail.com" ]
reymond350326424@gmail.com
828033479f16cc620603820302c3768870aaf84d
18eab8e89cb1f878e30da250ed3e612db2a92d6f
/05-Lista/lista01.cpp
dc9379a7b2aa8f3f7010bfe5f22111ab8872d83a
[]
no_license
uandersonmbc/ed-2019-s1
2505ac31de3b9e5a64abb9b3c4b94ad2d7a1ec57
d6acec048e0357f91d45abf2b7a52a1db7b5e75f
refs/heads/master
2020-04-28T13:23:50.392687
2019-06-25T14:16:31
2019-06-25T14:16:31
175,305,788
0
1
null
null
null
null
UTF-8
C++
false
false
2,094
cpp
#include <iostream> #include <sstream> using namespace std; struct Node { int value; Node * next; Node * prev; Node(int value = 0, Node * next = nullptr, Node * prev = nullptr){ this->value = value; this->next = next; this->prev = prev; } }; struct Lista { Node * head; Node * tail; Lista(){ head = new Node(); tail = new Node(); head->next = tail; tail->prev = head; } void show(){ cout << "[ "; Node * node = head->next; while(node != tail){ cout << node->value << " "; node = node->next; } cout << "]\n"; } void insert(Node * ref, int value){ Node * node = new Node(value, ref, ref->prev); ref->prev = node; node->prev->next = node; } void remove(Node * ref){ ref->prev->next = ref->next; ref->next->prev = ref->prev; delete ref; } void push_front(int value){ insert(head->next, value); } void push_back(int value){ insert(tail, value); } void pop_front(){ if(head->next == tail) return; remove(head->next); } void pop_back(){ if(head->next == tail) return; remove(tail->prev); } }; int main(){ Lista lista; while(true){ string line; getline(cin, line); stringstream ui(line); string cmd; ui >> cmd; if(cmd == "end"){ break; }else if(cmd == "show"){ lista.show(); }else if(cmd == "pb"){ int value; while(ui >> value){ lista.push_back(value); } }else if(cmd == "pf"){ int value; while(ui >> value){ lista.push_front(value); } }else if(cmd == "popf"){ lista.pop_front(); }else if(cmd == "popb"){ lista.pop_back(); }else{ cout << "fail: comando invalido\n"; } } }
[ "uandersonmbc@hotmail.com" ]
uandersonmbc@hotmail.com
1a5656f99b2266e38dc683ee2472d58cc38a3de1
786efcb75ad6ed4536bd402e035499e749de484c
/Year-1-Term-2-Work-3/Algo_7_K.cpp
0ab0f41e0d4564736e88ae90d8f1c4c7b84ef4db
[]
no_license
AlexeyShik/Algorithms-and-data-structures
90d250ea970112ecc34aab5bdca79ae70e9d5c78
dc11924c60a26ed7448da6dc540a8df157b63dbe
refs/heads/master
2023-07-15T10:39:13.606500
2021-09-02T19:44:12
2021-09-02T19:44:12
223,653,771
0
0
null
null
null
null
UTF-8
C++
false
false
1,536
cpp
#include <iostream> #include <vector> #include <unordered_map> #pragma GCC optimize("O3") using namespace std; unordered_map <int, int> dsu, rg, lca; unordered_map <int, bool> used; unordered_map <int, vector <int> > g; unordered_map <int, vector <pair <int, int> > > qs; vector <int> ans; int get(int i) { return dsu[i] = (i == dsu[i] ? i : get(dsu[i])); } void make_union(int u, int v, int l) { u = get(u); v = get(v); if (u == v) { return; } if (rg[u] > rg[v]) { swap(u, v); } dsu[u] = v; lca[v] = l; rg[v]++; } void dfs(int u) { used[u] = true; dsu[u] = u; lca[u] = u; for (int v : g[u]) { if (!used[v]) { dfs(v); make_union(u, v, u); } } for (auto q : qs[u]) { if (used[q.first]) { ans[q.second] = lca[get(q.first)]; } } } int main() { ios_base :: sync_with_stdio(false); cin.tie(nullptr); cout.tie(nullptr); int n; cin >> n; for (int i = 0; i < n; ++i) { string s; int u, v; cin >> s >> u >> v; u--, v--; if (s[0] == 'G') { qs[u].push_back({v, i}); qs[v].push_back({u, i}); } else { g[u].push_back(v); } } ans.resize(n, -1); dfs(0); for (int i = 0; i < n; ++i) { if (ans[i] != -1) { cout << ans[i] + 1 << endl; } } return 0; }
[ "noreply@github.com" ]
noreply@github.com
fa661ae99df93d3a7b074c9382c12466432487a6
6197740e6297da2f3d0c8ffd2a1d7ef5d8b3d2cb
/DotNet/ProVisualC++CLI/Chapter02/Boolean.cpp
f836609cd8fce85ff60f5fc5b126175bf4901501
[]
no_license
ssh352/cppcode
1159d4137b68ada253678718b3d416639d3849ba
5b7c28963286295dfc9af087bed51ac35cd79ce6
refs/heads/master
2020-11-24T18:07:17.587795
2016-07-15T13:13:05
2016-07-15T13:13:05
null
0
0
null
null
null
null
UTF-8
C++
false
false
384
cpp
using namespace System; // Boolean Fundamental Type in Action void main() { bool a = 18757; // will give a warning but set to true bool b = 0; // false bool c = true; // obviously true bool d = false; // obviously false Console::WriteLine( a ); Console::WriteLine( b ); Console::WriteLine( c ); Console::WriteLine( d ); }
[ "qq410029478@ff87cf93-6e24-4a51-a1f1-68835326ac4f" ]
qq410029478@ff87cf93-6e24-4a51-a1f1-68835326ac4f
205b7007aa1a02f0b8a75dc9dbf7387f244cdab4
1fb827b1f8925ad3af50087db79921caa46f634e
/chrome/browser/ui/ash/launcher/crostini_app_window_shelf_controller.h
9f91cc72638a5ba94a4f2a7cadd0145f9ac14ebd
[ "BSD-3-Clause" ]
permissive
zhanfang/chromium
3ec94d5b277cdfa07bba2f27a2ec68f96759c3aa
a1aca6ba1633043bac831c28cdd6c7da4bbeed21
refs/heads/master
2022-12-01T12:09:09.834764
2018-06-13T05:16:33
2018-06-13T05:16:33
137,167,141
2
0
null
2018-06-13T05:36:37
2018-06-13T05:36:37
null
UTF-8
C++
false
false
3,342
h
// 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. #ifndef CHROME_BROWSER_UI_ASH_LAUNCHER_CROSTINI_APP_WINDOW_SHELF_CONTROLLER_H_ #define CHROME_BROWSER_UI_ASH_LAUNCHER_CROSTINI_APP_WINDOW_SHELF_CONTROLLER_H_ #include <map> #include <memory> #include <vector> #include "base/macros.h" #include "base/scoped_observer.h" #include "base/time/time.h" #include "chrome/browser/chromeos/crostini/crostini_app_launch_observer.h" #include "chrome/browser/ui/ash/launcher/app_window_launcher_controller.h" #include "chrome/browser/ui/ash/launcher/crostini_app_display.h" #include "chrome/browser/ui/browser_list_observer.h" #include "mojo/public/cpp/bindings/binding.h" #include "ui/aura/env_observer.h" #include "ui/aura/window_observer.h" #include "ui/display/display.h" namespace aura { class Window; } class AppWindowBase; class ChromeLauncherController; // A controller to manage Crostini app shelf items. It listens to window events // and events from the container bridge to put running Crostini apps on the // Chrome OS shelf. class CrostiniAppWindowShelfController : public AppWindowLauncherController, public aura::EnvObserver, public aura::WindowObserver, public BrowserListObserver, public CrostiniAppLaunchObserver { public: explicit CrostiniAppWindowShelfController(ChromeLauncherController* owner); ~CrostiniAppWindowShelfController() override; // AppWindowLauncherController: void ActiveUserChanged(const std::string& user_email) override; // aura::EnvObserver: void OnWindowInitialized(aura::Window* window) override; // aura::WindowObserver: void OnWindowPropertyChanged(aura::Window* window, const void* key, intptr_t old) override; void OnWindowVisibilityChanged(aura::Window* window, bool visible) override; void OnWindowDestroying(aura::Window* window) override; // BrowserListObserver: void OnBrowserAdded(Browser* browser) override; // A Crostini app with |startup_id| is requested to launch on display with // |display_id|. void OnAppLaunchRequested(const std::string& startup_id, int64_t display_id) override; private: using AuraWindowToAppWindow = std::map<aura::Window*, std::unique_ptr<AppWindowBase>>; void RegisterAppWindow(aura::Window* window, const std::string& shelf_app_id); void UnregisterAppWindow(AppWindowBase* app_window); void AddToShelf(aura::Window* window, AppWindowBase* app_window); void RemoveFromShelf(aura::Window* window, AppWindowBase* app_window); // AppWindowLauncherController: AppWindowLauncherItemController* ControllerForWindow( aura::Window* window) override; void OnItemDelegateDiscarded(ash::ShelfItemDelegate* delegate) override; AuraWindowToAppWindow aura_window_to_app_window_; std::map<aura::Window*, std::string> observed_window_to_startup_id_; CrostiniAppDisplay crostini_app_display_; DISALLOW_COPY_AND_ASSIGN(CrostiniAppWindowShelfController); }; #endif // CHROME_BROWSER_UI_ASH_LAUNCHER_CROSTINI_APP_WINDOW_SHELF_CONTROLLER_H_
[ "commit-bot@chromium.org" ]
commit-bot@chromium.org
4d5d1b2c24c592b92f15abeea9c8a0d54f01516b
520e1e02b3587d9ee9c5e76815b8433748394b0c
/code/encoder/encoder.ino
8432c841b7180f50ad52707feb9f472cb20371f8
[]
no_license
yanngan/PC_ball_pen
01606d720d05dc628d0de686c73e82b2141aed0c
072f77429912c321da50ef125871f6d6159c16b1
refs/heads/main
2023-07-07T01:52:50.086513
2021-08-14T16:58:25
2021-08-14T16:58:25
385,219,369
0
0
null
null
null
null
UTF-8
C++
false
false
1,686
ino
// Rotary Encoder Inputs #define inputCLK 3 #define inputDT 2 int counter = 0; int currentStateCLK; int previousStateCLK; int timeToDelay = 10; String encdir =""; void setup() { pinMode(13,OUTPUT); // Set encoder pins as inputs pinMode (inputCLK,INPUT_PULLUP); attachInterrupt(digitalPinToInterrupt(inputCLK), hendelIncoder, CHANGE); pinMode (inputDT,INPUT); // Setup Serial Monitor Serial.begin (9600); // Read the initial state of inputCLK // Assign to previousStateCLK variable previousStateCLK = digitalRead(inputCLK); } // the loop function runs over and over again forever void loop() { digitalWrite(13, HIGH); delay(timeToDelay); digitalWrite(13, LOW); delay(timeToDelay); } void hendelIncoder(){ // Read the current state of inputCLK currentStateCLK = digitalRead(inputCLK); // If the previous and the current state of the inputCLK are different then a pulse has occured if (currentStateCLK != previousStateCLK){ // If the inputDT state is different than the inputCLK state then // the encoder is rotating counterclockwise if (digitalRead(inputDT) != currentStateCLK) { if((counter-1) > 0){ counter --; } encdir ="CCW"; } else { // Encoder is rotating clockwise counter ++; encdir ="CW"; } Serial.print("Direction: "); Serial.print(encdir); Serial.print(" -- Value: "); Serial.println(counter); Serial.print("timeToDelay = "); Serial.println(timeToDelay); timeToDelay = 10*counter; previousStateCLK = currentStateCLK; } // Update previousStateCLK with the current state }
[ "55285071+yanngan@users.noreply.github.com" ]
55285071+yanngan@users.noreply.github.com
a0fe97b3de2eae6f76eed642f1f51ff92c7530b4
59722415a1185fcbdc73280617b016d28ebb9537
/tests/main.cpp
f6a39d769fa124183967338d80930ca04713be0e
[]
no_license
Kernunn/containers
bde1d93a5c70f153c3e8641061e0685f36fe0447
c346fca6ecebcda3eb731f527ef1a660e6ab19a1
refs/heads/main
2023-06-19T12:29:49.956624
2021-07-18T08:35:21
2021-07-18T08:35:21
386,974,491
0
0
null
null
null
null
UTF-8
C++
false
false
578
cpp
void test_list(); void test_vector(); void test_deque(); void test_queue(); void test_stack(); void test_map(); void test_tree(); void test_set(); void test_multimap(); void test_multiset(); int main() { #ifdef LIST test_list(); #endif #ifdef VECTOR test_vector(); #endif #ifdef DEQUE test_deque(); #endif #ifdef QUEUE test_queue(); #endif #ifdef STACK test_stack(); #endif #ifdef TREE test_tree(); #endif #ifdef MAP test_map(); #endif #ifdef SET test_set(); #endif #ifdef MULTIMAP test_multimap(); #endif #ifdef MULTISET test_multiset(); #endif }
[ "gmorros@student.21-school.ru" ]
gmorros@student.21-school.ru
a0f00ecf31db386903b651aecd27c9b005ebac31
3a7936944cddeb972216bbc48925f170289611ef
/OOPEx2/OOPEx2/Exception.hpp
d0198486e1eb90c0039f52e5628f33a3eaaa701b
[]
no_license
Highoc/2017-OOP
f26b29a03d168c2519d341f6993e4a23016d6097
a151f6191d80a05ecedaa0509e2d8320d1a1d6d6
refs/heads/master
2021-09-01T06:08:27.872377
2017-12-25T08:38:44
2017-12-25T08:38:44
107,301,319
1
0
null
null
null
null
UTF-8
C++
false
false
158
hpp
#pragma once #include <exception> struct Exception : public std::exception { virtual const char* what() const noexcept override { return "Mimo!\n"; } };
[ "door0172@gmail.com" ]
door0172@gmail.com
b15546c0274e1778faaea5233a91e7178b571bf9
9dbfef9976a48f54af02cfda4efd813d0f320712
/WIFI_MANAGER.ino
fe75f31df92b0fb41e9c290ae23a83f21f6623fa
[]
no_license
binkssake2/regadorESP8266
b15732a8cd652b4531ba0a1bcab14551502a01fa
d5357e67fcf29f513ab3bc7e4c3b3c9ede978243
refs/heads/master
2021-01-08T03:03:28.983013
2020-05-06T20:39:37
2020-05-06T20:39:37
241,893,423
0
0
null
null
null
null
UTF-8
C++
false
false
5,119
ino
#include <ESP8266WiFi.h> #include <DNSServer.h> #include <ESP8266WebServer.h> #include <WiFiManager.h> WiFiServer server(80); // Current time unsigned long currentTime = millis(); // Previous time unsigned long previousTime = 0; // Define timeout time in milliseconds (example: 2000ms = 2s) const long timeoutTime = 2000; String header; String outputState = "off"; void setup() { Serial.begin(115200); WiFiManager wifiManager; wifiManager.autoConnect("Regador de Fror"); Serial.println("conectouu :)"); server.begin(); pinMode(D0, OUTPUT); } void loop() { //digitalWrite(D0, HIGH);// turn the LED off.(Note that LOW is the voltage level but actually //the LED is on; this is because it is acive low on the ESP8266. //delay(1000); // wait for 1 second. //digitalWrite(D0, LOW); // turn the LED on. //delay(1000); // wait for 1 second. WiFiClient client = server.available(); // Listen for incoming clients if (client) { // If a new client connects, Serial.println("New Client."); // print a message out in the serial port String currentLine = ""; // make a String to hold incoming data from the client currentTime = millis(); previousTime = currentTime; while (client.connected() && currentTime - previousTime <= timeoutTime) { // loop while the client's connected currentTime = millis(); if (client.available()) { // if there's bytes to read from the client, char c = client.read(); // read a byte, then Serial.write(c); // print it out the serial monitor header += c; if (c == '\n') { // if the byte is a newline character // if the current line is blank, you got two newline characters in a row. // that's the end of the client HTTP request, so send a response: if (currentLine.length() == 0) { // HTTP headers always start with a response code (e.g. HTTP/1.1 200 OK) // and a content-type so the client knows what's coming, then a blank line: client.println("HTTP/1.1 200 OK"); client.println("Content-type:text/html"); client.println("Connection: close"); client.println(); // turns the GPIO on and off if (header.indexOf("GET /LED/on") >= 0) { Serial.println("LED on"); outputState = "on"; digitalWrite(D0, LOW); } else if (header.indexOf("GET /LED/off") >= 0) { Serial.println("LED off"); outputState = "off"; digitalWrite(D0, HIGH); } // Display the HTML web page // Display the HTML web page client.println("<!DOCTYPE html><html>"); client.println("<head><meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">"); client.println("<link rel=\"icon\" href=\"data:,\">"); // CSS to style the on/off buttons // Feel free to change the background-color and font-size attributes to fit your preferences client.println("<style>html { font-family: Helvetica; display: inline-block; margin: 0px auto; text-align: center;}"); client.println(".button { background-color: #195B6A; border: none; color: white; padding: 16px 40px;"); client.println("text-decoration: none; font-size: 30px; margin: 2px; cursor: pointer;}"); client.println(".button2 {background-color: #77878A;}</style></head>"); // Web Page Heading client.println("<body><h1>Regador de Fror</h1>"); // Display current state, and ON/OFF buttons for LED client.println("<p>LED - State " + outputState + "</p>"); // If the outputState is off, it displays the ON button if (outputState=="off") { client.println("<p><a href=\"/LED/on\"><button class=\"button\">ON</button></a></p>"); } else { client.println("<p><a href=\"/LED/off\"><button class=\"button button2\">OFF</button></a></p>"); } client.println("</body></html>"); // The HTTP response ends with another blank line client.println(); // Break out of the while loop break; } else { // if you got a newline, then clear currentLine currentLine = ""; } } else if (c != '\r') { // if you got anything else but a carriage return character, currentLine += c; // add it to the end of the currentLine } } } // Clear the header variable header = ""; // Close the connection client.stop(); Serial.println("Client disconnected."); Serial.println(""); } }
[ "noreply@github.com" ]
noreply@github.com
876667322b9500962728a2abf15a13383c5a7e35
726d9210c953fcfb46583ca89051244c086d234d
/stdafx.cpp
c7e2ccef0485e9e4e7636bc3288b3654b62c6ba0
[]
no_license
zupet/Bicubic-CS-Test
cac2abe2706348be18883c7b9d1535a5cd606679
05d227a92db02b6b21071159c43c94a63874bee0
refs/heads/master
2021-01-13T08:02:33.659040
2014-06-02T13:28:17
2014-06-02T13:28:17
20,404,746
0
1
null
null
null
null
UTF-8
C++
false
false
294
cpp
// stdafx.cpp : source file that includes just the standard includes // Bicubic CS Test.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
[ "kwonil.lee@gmail.com" ]
kwonil.lee@gmail.com
ce5d706e14507e09056a9adf68a281b7ba36f2cf
a2907400571da5e1d0457b44d03e75c5c17647bb
/RGZ/Member.h
43ffc67cfca8870c48276635dd638615904cf3fe
[]
no_license
alecsmirnov/nstu-software-development-technologies
4bf82cf20cc31ea95fe65cf573913465e1700ea4
05af89914e970763ed97e7e5bf0cc675b71a84ec
refs/heads/master
2022-02-23T09:40:50.929321
2019-10-08T16:29:25
2019-10-08T16:29:25
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,535
h
#ifndef MEMBER_H #define MEMBER_H #include <string> #include <cstdint> // Одночлен полинома class Member { public: Member(double coeff = 0, std::uint8_t degree = 0); Member(std::string str_mem); // Установить коэффициент void setCoefficient(double coeff); // Установить степень void setDegree(std::uint8_t degree); // Задать новое значение одночлена в виде строки void setStrMember(std::string str_mem); // Получить коэффициент double getCoefficient() const; // Получить степень std::uint8_t getDegree() const; // Получить одночлен в виде строки std::string getStrMember() const; // Дифференцировать Member differentiate() const; // Посчитать значение double calculate(double x) const; private: // Проверка одночлена на вещественное число static bool isRealNum(const std::string& str_num); // Удаление незначащих нулей из строкового представления static std::string removeTrailingZeros(const std::string& str_num); public: // Перегруженные операторы Member operator-() const; Member operator+(const Member& rhs) const; Member operator-(const Member& rhs) const; Member operator*(const Member& rhs) const; bool operator==(const Member& rhs) const; private: double coeff; std::uint8_t degree; }; #endif
[ "alecsmirnov93@gmail.com" ]
alecsmirnov93@gmail.com
5da79d30c529ff321aedf61be1c776c4feae9441
f02984173d9ea24ec3b826a783495754bd60677c
/array/array/861- ScoreAfterFlippingMatrix.cpp
c20814cf9f6eff5fa1442720952b5520683d480f
[]
no_license
chuckll/leetcode
4279efaf2de7c62a534c46a53cc40148924965cb
2f30ca4651dad66651caad7b8d3fe73d0d0517fa
refs/heads/master
2021-06-19T22:06:02.875855
2019-08-27T06:51:26
2019-08-27T06:51:26
144,985,238
0
0
null
null
null
null
GB18030
C++
false
false
859
cpp
#include<stdio.h> #include<vector> using namespace std; class Solution { public: int matrixScore(vector<vector<int>>& A) { int row = A.size(); int column = A[0].size(); int res = 0; //第一列全变为1 for(int i = 0; i < row; i++) { if(A[i][0] == 0) { A[i][0] = 1; for(int j = 1; j < column; j++) { if(A[i][j] == 1) A[i][j] = 0; else A[i][j] = 1; } } } for(int i = 1; i < column; i++) { int count = 0; for(int j = 0; j < row; j++) { if(A[j][i] == 1) count++; } if(count <= row/2) { for(int j = 0; j < row; j++) { if(A[j][i] == 0) A[j][i] = 1; else A[j][i] = 0; } } } for(int i = 0; i < row; i++) { for(int j = 0; j < column; j++) { res += pow(2,column-j-1)*A[i][j]; } } return res; } };
[ "361818710@qq.com" ]
361818710@qq.com
cca24343a0c9e48470fea77f4c90b5e7dc73a11e
5958027ae820ba700796d03cd3c0104b79d62ebb
/tests/gtest_demo/floating_points.cc
bc15269681e4f6f783a3b0c133f76ddd311957cb
[]
no_license
ourarash/cpp-template
de8ad41bc2927d534d85405ac6f3eade60b72ccb
b3d739c972523e515387d0bd466620ae5594c7a8
refs/heads/master
2023-06-23T02:37:08.099130
2023-06-07T22:06:36
2023-06-07T22:06:36
233,089,521
126
86
null
2023-06-22T19:31:09
2020-01-10T16:43:50
C++
UTF-8
C++
false
false
507
cc
#include <iostream> #include <string> #include "gtest/gtest.h" const float a = 67329.234; const float b = 67329.242; // Exactly 1 ULP away from a //----------------------------------------------------------------------------- TEST(FloatingPointTest, SimpleAssertion) { EXPECT_NE(a, b); // Exactly 1 ULP away. } TEST(FloatingPointTest, FpAssertion) { EXPECT_FLOAT_EQ(a, b); // Exactly 1 ULP away, Passes } TEST(FloatingPointTest, FpAssertionNear) { EXPECT_NEAR(a, b, 0.2); // 0.2 Difference }
[ "ourarash@gmail.com" ]
ourarash@gmail.com
ea7522237eede0f0c01b7c1e0031110b026c7e77
62b62f4c8baa51fb3800b6ca397d9a4a4784e3fd
/TycheCash/src/NodeRpcProxy/NodeErrors.cpp
596146fe22a5b6f23d441f7f71b215392e96f72a
[]
no_license
blockchain-next/QtGUI-Wallet-TycheCash
ce344038c3b3a6c845b6353aa6e73cbe48a70da4
4fd2ccb9729c1e7377c8b1331a7d86d1144d1534
refs/heads/master
2020-03-29T21:49:56.631543
2018-09-26T07:58:25
2018-09-26T07:58:25
150,389,992
1
0
null
null
null
null
UTF-8
C++
false
false
417
cpp
// Copyright (c) 2017-2018 The TycheCash developers ; Originally forked from Copyright (c) 2012-2017, The CryptoNote developers, The Bytecoin developers // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "NodeErrors.h" namespace TycheCash { namespace error { NodeErrorCategory NodeErrorCategory::INSTANCE; } }
[ "tychecoin@gmail.com" ]
tychecoin@gmail.com
947a20bff236f7f4b822d6d964415e6f02457c82
6fbaab0f3b06afc982ca9e2a07e97c1f50167483
/lib/VecCompr/increase_size_by.cpp
1bce4ae396cbd9b55216ba0ae9a6170dd196d00e
[]
no_license
btroycraft/tda-compute
0a2b02e45bb98411e4ae37a01ccd0d15b58fe68c
a4fa183f0233f9c08d8e07d0682afd0ed56a292d
refs/heads/master
2021-05-09T20:25:15.295995
2021-02-16T21:01:43
2021-02-16T21:01:43
118,689,853
0
0
null
null
null
null
UTF-8
C++
false
false
734
cpp
#include <cstlib> #include <cstdint> #include "VecCompr.hpp" // Expand VecCompr capacity to occomodate a number of new entries void VecCompr::increase_size_by(std::size_t num){ if(num == 0){ return; } // Get required allocation size try{ std::size_t q = num / UINT_VEC_COMPR_BIT; std::size_t r = num - UINT_VEC_COMPR_BIT*q; std::size_t v1 = width_*q; std::size_t v2 = (width_*r + end_.off_ + (UINT_VEC_COMPR_BIT-1)) / UINT_VEC_COMPR_BIT; std::size_t req = end_.ind_ + v1 + v2; // Check for possible size_t overflows in req if(q > SIZE_MAX / width_ || end_.ind_ > SIZE_MAX - v1 || end_.ind_ + v1 > SIZE_MAX - v2){ throw std::bad_alloc(); } increase_size_to(req); } }
[ "roycraft.benjamin@gmail.com" ]
roycraft.benjamin@gmail.com
ee1e8163320b989e24d7ea0266573412ee338b4d
957c565aa1f9cd3a7400dd4c785541197a1d66c1
/mainwindow.cpp
3dab02d4e9655aee3775724ff4968832b2ea2840
[]
no_license
calculator22105/calculator
19fd819e96daab430c9fde541a3d0e07a39814ec
d85dd5754c907a9c03e8afa3a668c94bdcd95f44
refs/heads/master
2022-11-08T22:09:20.259771
2020-06-26T16:54:15
2020-06-26T16:54:15
268,079,880
2
0
null
null
null
null
UTF-8
C++
false
false
11,342
cpp
#include "mainwindow.h" #include "ui_mainwindow.h" #include <cmath> #define PI 3.14159265 double firstNum; // переменная дли бинарных операций bool userIsTypingSecondNumber = false; // показывает, вводит ли пользователь второе число MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent) , ui(new Ui::MainWindow) { ui->setupUi(this); sWindow = new Form(); //инициализируем второе окно connect(sWindow, &Form::firstWindow, this, &MainWindow::show); //подключаем к слоту запуска главного окна по кнопке во втором окне /* Если был получен сигнал от кнопки [0-9], то переходим к слоту digit_pressed() */ connect(ui->pushButton_0,SIGNAL(clicked()),this,SLOT(digit_pressed())); connect(ui->pushButton_1,SIGNAL(clicked()),this,SLOT(digit_pressed())); connect(ui->pushButton_2,SIGNAL(clicked()),this,SLOT(digit_pressed())); connect(ui->pushButton_3,SIGNAL(clicked()),this,SLOT(digit_pressed())); connect(ui->pushButton_4,SIGNAL(clicked()),this,SLOT(digit_pressed())); connect(ui->pushButton_5,SIGNAL(clicked()),this,SLOT(digit_pressed())); connect(ui->pushButton_6,SIGNAL(clicked()),this,SLOT(digit_pressed())); connect(ui->pushButton_7,SIGNAL(clicked()),this,SLOT(digit_pressed())); connect(ui->pushButton_8,SIGNAL(clicked()),this,SLOT(digit_pressed())); connect(ui->pushButton_9,SIGNAL(clicked()),this,SLOT(digit_pressed())); /* Если был получен сигнал от унарных математических операций, то переходим к слоту unary_operation_pressed() */ connect(ui->pushButton_percent,SIGNAL(clicked()),this,SLOT(unary_operation_pressed())); /* Если был получен сигнал от бинарных операций, то переходим к слоту binary_operation_pressed() */ connect(ui->pushButton_add,SIGNAL(clicked()),this,SLOT(binary_operation_pressed())); connect(ui->pushButton_subtract,SIGNAL(clicked()),this,SLOT(binary_operation_pressed())); connect(ui->pushButton_multiply,SIGNAL(clicked()),this,SLOT(binary_operation_pressed())); connect(ui->pushButton_divide,SIGNAL(clicked()),this,SLOT(binary_operation_pressed())); /* Указываем, что кнопки "+", "-", "÷", "×", "x^n" являются триггерными */ ui->pushButton_add->setCheckable(true); ui->pushButton_subtract->setCheckable(true); ui->pushButton_multiply->setCheckable(true); ui->pushButton_divide->setCheckable(true); } MainWindow::~MainWindow() { delete ui; } /* Если нажата цифра */ void MainWindow::digit_pressed() { /* sender возвращает указатель на объект, объектом является кнопка, на которую нажали */ QPushButton * button = (QPushButton*)sender(); double labelNumber; QString newLabel; /* Если установлена одна из клавиш "+", "-", "÷", "×", "x^n" и пользователь вводит второе число */ if((ui->pushButton_add->isChecked() || ui->pushButton_subtract->isChecked() || ui->pushButton_multiply->isChecked() || ui->pushButton_divide->isChecked()) && (!userIsTypingSecondNumber)) { /* Текст с кнопки преобразуем к типу double */ labelNumber = button->text().toDouble(); userIsTypingSecondNumber = true; /* Присваиваем отформатированную строку формата 'g' длиной не более 15 символов */ newLabel = QString::number(labelNumber,'g',15); } else { /* Иначе, если в label есть '.', нажатая кнопка является "0" и длина строки не превышает 14 символов */ if (ui->label->text().contains('.') && button->text() == "0" && ui->label->text().length() <= 14) { /* Тогда newLabel равен '*.0' */ newLabel = ui->label->text() + button->text(); } else { /* Иначе, если число от 0-9 */ labelNumber = (ui->label->text() + button->text()).toDouble(); // Cоставляем строку из нажатых символов, преобразовывая в тип double newLabel = QString::number(labelNumber,'g',15); // Присваиваем отформатированную строку формата 'g' длиной не более 15 символов } } /* Выводим значение переменной newLabel в label */ ui->label->setText(newLabel); } /* При нажатии десятичной дроби */ void MainWindow::on_pushButton_decimal_clicked() { /* Если label не содержит '.' */ if (!ui->label->text().contains('.')) { /* Выводим текст с точкой */ ui->label->setText(ui->label->text() + "."); } } /* Если нажата унарная операция */ void MainWindow::unary_operation_pressed() { double labelNumber, Num1, Num2; QString newLabel; QPushButton * button = (QPushButton*) sender(); /* Если кнопка содержит текст '%' */ if (button->text() == "%") { /* если в верхнем поле не пусто и была нажата кнопка вычитаяния или сложения */ if (ui->top_label->text() != "" && (ui->pushButton_subtract->isChecked() || ui->pushButton_add->isChecked()) ) { labelNumber = ui->label->text().toDouble(); // для процента: второе введенное число /* значит нам нужно высчитать процент от первого числа, которое находися в верхнем поле */ Num1 = firstNum * 0.01; Num2 = labelNumber * Num1; newLabel = QString::number(Num2, 'g', 15); ui->label->setText(newLabel); // выводим на label получившееся число } else { /* Иначе просто высчитываем процент числа */ labelNumber = ui->label->text().toDouble(); labelNumber = labelNumber * 0.01; newLabel = QString::number(labelNumber, 'g', 15); ui->label->setText(newLabel); } } } /* Если нажали кнопку очистить */ void MainWindow::on_pushButton_clear_clicked() { /* Указываем, что данные кнопки не являются установленными */ ui->pushButton_add->setChecked(false); ui->pushButton_subtract->setChecked(false); ui->pushButton_multiply->setChecked(false); ui->pushButton_divide->setChecked(false); /* Указываем, что второе число не вводится */ userIsTypingSecondNumber = false; /* Помещаем в label "0" */ ui->label->setText("0"); ui->top_label->setText(""); // очищаем } /* Если нажали кнопку равно */ void MainWindow::on_pushButton_equals_clicked() { double labelNumber, secondNum; QString newLabel; /* secondNum равен второму введенному числу */ secondNum = ui->label->text().toDouble(); /* Если нажата кнопка '+' */ if (ui->pushButton_add->isChecked()) { { /* Складываем первое и второе число */ labelNumber = firstNum + secondNum; newLabel = QString::number(labelNumber,'g', 15); ui->label->setText(newLabel); /* Дезактивируем кнопку */ ui->pushButton_add->setChecked(false); } ui->top_label->setText(QString::number(firstNum) + "+" + QString::number(secondNum)); } /* Если нажата кнопка '-' */ else if (ui->pushButton_subtract->isChecked()) { { labelNumber = firstNum - secondNum; newLabel = QString::number(labelNumber,'g', 15); ui->label->setText(newLabel); ui->pushButton_subtract->setChecked(false); } ui->top_label->setText(QString::number(firstNum) + "-" + QString::number(secondNum)); } /* Если нажата кнопка '*' */ else if (ui->pushButton_multiply->isChecked()) { { labelNumber = firstNum * secondNum; newLabel = QString::number(labelNumber,'g', 15); ui->label->setText(newLabel); ui->pushButton_multiply->setChecked(false); } ui->top_label->setText(QString::number(firstNum) + "×" + QString::number(secondNum)); } /* Если нажата кнопка '/' */ else if (ui->pushButton_divide->isChecked()) { { /* Проверка, если второе число выводим сообщение об ошибке */ if (secondNum == 0) { ui->label->setText("You cannot divide by 0!"); ui->pushButton_divide->setChecked(false); } else { labelNumber = firstNum / secondNum; newLabel = QString::number(labelNumber,'g', 15); ui->label->setText(newLabel); ui->pushButton_divide->setChecked(false); } } ui->top_label->setText(QString::number(firstNum) + "÷" + QString::number(secondNum)); } userIsTypingSecondNumber = false; } /* Если нажата бинарная операция */ void MainWindow::binary_operation_pressed() { QPushButton * button = (QPushButton*) sender(); /* firstNum равен первому введенному числу */ firstNum = ui->label->text().toDouble(); ui->top_label->setText(ui->label->text()); ui->label->setText("0"); /* Активируем нажатую кнопку */ button->setChecked(true); if (ui->top_label->text().length() ) ui->top_label->setText(ui->top_label->text() + button->text()); userIsTypingSecondNumber = false; } /* Если нажата кнопка "<-" */ void MainWindow::on_pushButton_back_clicked() { int length = ui->label->text().length(); // вычисляем длину введенного числа ui->label->setText(ui->label->text().left(length - 1)); // выводим строку, содержащую на 1 символ меньше (последний удалился) /* Если символов в строке нет */ if (length == 1) { ui->label->setText("0"); // выводим 0 } } void MainWindow::on_radioButton_clicked() { sWindow->show(); //показываем второе окно sWindow->setFixedSize(sWindow->size()); // фиксируем размеры окна this->close(); //закрываем основное окно }
[ "noreply@github.com" ]
noreply@github.com
cf79cbbd73fcc1551a53b81bd99d0d1071ef0878
492404b9e714b710289bbb44e6b5f96fdebcf19f
/src/RISCClassifierSet/Tree.cpp
8c90aca5c7fa06d064c6c73d58a8f379e2c16fa9
[]
no_license
Diyanan/semanticraster
06a7e2874f926fef1e27c3faa5632accadad8b07
2a8a9c47f0eacabbdb748eb8bee5fcf47d4e6202
refs/heads/master
2021-01-19T14:15:49.172922
2017-04-13T07:23:26
2017-04-13T07:23:26
88,137,649
0
0
null
null
null
null
GB18030
C++
false
false
86,919
cpp
#include "StdAfx.h" #include "Tree.h" #include <cmath> #include <set> #include <iostream> using namespace std; Tree::Tree(void) : m_treeRoot(NULL) , tagT(false) //,m_progressBar(NULL) { m_Dimension0=0; m_Dimension1=0; m_Dimension2=0; m_splitPointValue=0; m_treeHeight=0; m_Dimension=0; m_NodeSize=0; m_k=0; m_splitPointAttIndex=0; m_erroNum=0; m_bestSplitPointValue=0; m_tuplesNum=0; m_testDatasRow=0; m_testDatasLine=0; m_sampleDatasRow=0; m_sampleDatasLine=0; m_tuplesRow=0; m_tuplesLine=0; m_sampleDataIndexRow=0; m_sampleDataIndexLine=0; m_tuplesI=0; m_adaBoostingK=0; m_leafPreErrorsADD=0; m_childTreeHeight=0; m_childTreeLeafs=0; m_childTreeNodes=0; m_stackForNodeRulesTop=0; m_allDatas=0; m_publics=0; m_allErros=0; m_leafsSize=0; m_ruleSetI=0; m_tringDataN=0; } Tree::~Tree(void) { } double Tree::Info(statisticsTab* staTab, int staCount) { double core=0; double temp=staTab[0].Proportion; for (int i=0;i<staCount;i++) { if (staTab[i].Proportion==1||staTab[i].Proportion==0) { core=core+0; } else { temp=staTab[i].Proportion; core=core+temp*(log(temp)/log(2.0)); } } double reault=0; reault=(-1)*core; return reault; } double*Tree::discreteData(AttValuesTab* AttValues, int AttValuesCount)// { int m_discretePointsCount=AttValuesCount-1; double min=0; AttValuesTab temp; for (int i=0;i<AttValuesCount-1;i++) { for (int j=i+1;j<AttValuesCount;j++) { if (AttValues[j].AttValue<AttValues[i].AttValue) { temp=AttValues[j];AttValues[j]=AttValues[i]; AttValues[i]=temp; } } } double * m_discretePoints; m_discretePoints=new double[m_discretePointsCount]; double a=0,b=0; int disPC=0; for (int i=0;i<AttValuesCount-1;i++) { m_discretePoints[i]=(AttValues[i].AttValue+AttValues[i+1].AttValue)/2.0; } return m_discretePoints; } double Tree::findDiscPoint(double * discPoitList, int discNum, AttValuesTab * attValueslist,int attValuesNum,bool Tag) { int allValues=0; allValues=attValuesNum; statisticsTab stTab[2]; double minInfo=0; int minIdex=0; double I=0; for (int i=0;i<discNum;i++) { double discPoint; int D1=0,D2=0; discPoint=discPoitList[i]; AttValuesTab attValTabD1[10000],attValTabD2[10000]; for (int j=0;j<attValuesNum;j++) { if (attValueslist[j].AttValue<=discPoint) { attValTabD1[D1].AttValue=attValueslist[j].AttValue; attValTabD1[D1].AttValueIndex=attValueslist[j].AttValueIndex; attValTabD1[D1].classID=attValueslist[j].classID; D1++; } else { attValTabD2[D2].AttValue=attValueslist[j].AttValue; attValTabD2[D2].AttValueIndex=attValueslist[j].AttValueIndex; attValTabD2[D2].classID=attValueslist[j].classID; D2++; } } double E1,E2; ClassUnique *L1,*r1,*L2,*r2,*REC1,*REC2; int m1=0,m2=0; L1=getClassUnique(attValTabD1,D1); L2=getClassUnique(attValTabD2,D2); REC1=L1; REC2=L2; r1=L1; r2=L2; m1=L1->cunt; m2=L2->cunt; statisticsTab *stTabD1,*stTabD2; stTabD1=new statisticsTab[m1]; stTabD2=new statisticsTab[m2]; int tempCount=0,tempAll=0; int Li=0,Lj=0; while(r1) { if (Lj>0) { stTabD1[Li].valueID=r1->classID; stTabD1[Li].valueCount=r1->cunt; tempCount=r1->cunt; tempAll=D1; stTabD1[Li].Proportion=tempCount*1.0/tempAll*1.0; Li++; } Lj++; r1=r1->next; } Lj=0;Li=0; while (r2) { if (Lj>0) { stTabD2[Li].valueID=r2->classID; stTabD2[Li].valueCount=r2->cunt; tempCount=r2->cunt; tempAll=D2; stTabD2[Li].Proportion=tempCount*1.0/tempAll*1.0; Li++; } Lj++; r2=r2->next; } deleteClassUnique(REC1); deleteClassUnique(REC2); E1=Info(stTabD1,m1); E2=Info(stTabD2,m2); delete [] stTabD1; delete [] stTabD2; double P1,P2; P1=D1*1.0/allValues*1.0; P2=D2*1.0/allValues*1.0; InfoAttTab infAtt[2]; infAtt[0].Info=E1; infAtt[0].Weight=P1; infAtt[1].Info=E2; infAtt[1].Weight=P2; I=InfoAtt(infAtt,2); if (i==0) { minInfo=I; minIdex=0; } else { if (minInfo>I) { minInfo=I; minIdex=i; } } } double bestPoint=discPoitList[minIdex]; m_splitPointValue=bestPoint; if (Tag) { return minInfo; } else return bestPoint; } double Tree::findDiscPoint1(double * discPoitList, int discNum, AttValuesTab * attValueslist,int attValuesNum,int **attVlueList,int attN,int attL,bool Tag) { int allValues=0; allValues=attValuesNum; statisticsTab stTab[2]; double minInfo=0; int minIdex=0; double I=0; for (int i=0;i<discNum;i++) { double discPoint; int D1=0,D2=0; discPoint=discPoitList[i]; AttValuesTab attValTabD1[1000],attValTabD2[1000]; for (int j=0;j<attValuesNum;j++) { if (attValueslist[j].AttValue<=discPoint) { attValTabD1[D1].AttValue=attValueslist[j].AttValue; attValTabD1[D1].AttValueIndex=attValueslist[j].AttValueIndex; attValTabD1[D1].classID=attValueslist[j].classID; D1++; } else { attValTabD2[D2].AttValue=attValueslist[j].AttValue; attValTabD2[D2].AttValueIndex=attValueslist[j].AttValueIndex; attValTabD2[D2].classID=attValueslist[j].classID; D2++; } } double E1,E2; ClassUnique *L1,*r1,*L2,*r2; int m1=0,m2=0; L1=getClassUnique(attValTabD1,D1); L2=getClassUnique(attValTabD2,D2); r1=L1; r2=L2; m1=L1->cunt; m2=L2->cunt; statisticsTab *stTabD1,*stTabD2; stTabD1=new statisticsTab[m1]; stTabD2=new statisticsTab[m2]; int tempCount=0,tempAll=0; int Li=0,Lj=0; while(r1) { if (Lj>0) { stTabD1[Li].valueID=r1->classID; stTabD1[Li].valueCount=r1->cunt; tempCount=r1->cunt; tempAll=D1; stTabD1[Li].Proportion=tempCount*1.0/tempAll*1.0; Li++; } Lj++; r1=r1->next; } Lj=0;Li=0; while (r2) { if (Lj>0) { stTabD2[Li].valueID=r2->classID; stTabD2[Li].valueCount=r2->cunt; tempCount=r2->cunt; tempAll=D2; stTabD2[Li].Proportion=tempCount*1.0/tempAll*1.0; Li++; } Lj++; r2=r2->next; } E1=Info(stTabD1,m1); E2=Info(stTabD2,m2); //****************************************************** //***********信息增益**************************** double P1,P2; P1=D1*1.0/allValues*1.0; P2=D2*1.0/allValues*1.0; InfoAttTab infAtt[2]; infAtt[0].Info=E1; infAtt[0].Weight=P1; infAtt[1].Info=E2; infAtt[1].Weight=P2; I=InfoAtt(infAtt,2); if (i==0) { minInfo=I; minIdex=0; } else { if (minInfo>I) { minInfo=I; minIdex=i; } } } double bestPoint=discPoitList[minIdex]; m_splitPointValue=bestPoint; m_splitPointAttIndex=minIdex; if (Tag) { return minInfo; } else return bestPoint; } ClassUnique * Tree::getClassUnique(AttValuesTab * attValues, int attNum) { if (attNum==0) { } int n=0; n=attNum; ClassUnique *first,*r,*s,*p; first=new ClassUnique; first->next=NULL; r=first; p=first; int m=0; for (int i=0;i<attNum;i++) { if (i==0)//将列表初始化 { m++;//每新建一个节点m+1 s=new ClassUnique; s->classID=attValues[0].classID; s->cunt=1; s->next=NULL; r->next=s; r=s; } else { p=first->next;//将P指向头指针 while(p) { if (p->classID==attValues[i].classID) { p->cunt=p->cunt+1; p=first->next; break; } if (p==r) { if (p->classID==attValues[i].classID) { p->cunt=p->cunt+1; p=first->next; break; } m++; s=new ClassUnique; s->classID=attValues[i].classID; s->cunt=1; s->next=NULL; r->next=s; r=s; p=first->next; break; } p=p->next; } } } first->cunt=m; first->classID=n; return first; } void Tree::deleteClassUnique(ClassUnique *classLick) { ClassUnique *L,*p,*q; L=classLick; p=L; q=L; while (p) { q=p; p=p->next; delete q; } } double Tree::InfoAtt(InfoAttTab * infoAttValues, int infoNum) { double weight=0,inf=0,infAtt=0; for (int i=0;i<infoNum;i++) { weight=infoAttValues[i].Weight; inf=infoAttValues[i].Info; infAtt=infAtt+weight*inf; } return infAtt; } double Tree::Gain(AttValuesTab * attValues, int attNum) { AttValuesTab * values; values=attValues; int n; n=attNum; ClassUnique * classLink; statisticsTab * staTab; double inf,attInf,ginInf,ginInfRatio; int staNum=0; double * discData; //统计获得类别属性唯一值的链表 classLink=getClassUnique(values,n); staNum=classLink->cunt; //获得统计表 staTab=AttValuesStatistics(classLink); deleteClassUnique(classLink); //计算类别属性的熵 inf=Info(staTab,staNum); delete [] staTab; //离散属性数据 discData=discreteData(values,n); attInf=findDiscPoint(discData,n-1,values,n,true); delete[] discData; ginInf=inf-attInf; return ginInf; } double Tree::Gain1(AttValuesTab * attValues, int attNum,int **attVlueList,int attN,int attL) { AttValuesTab * values; values=attValues; int n; n=attNum; ClassUnique * classLink; statisticsTab * staTab; double inf,attInf,ginInf,ginInfRatio; int staNum=0; double * discData; classLink=getClassUnique(values,n); staNum=classLink->cunt; staTab=AttValuesStatistics(classLink); inf=Info(staTab,staNum); discData=discreteData(values,n); attInf=findDiscPoint1(discData,n-1,values,n,attVlueList,attN,attL,true); ginInf=inf-attInf; return ginInf; } statisticsTab* Tree::AttValuesStatistics(ClassUnique* uniqueValuesLink) { ClassUnique *p,*head; int n; int tempCount=0,tempAll=0; head=uniqueValuesLink; p=head; n=head->cunt; tempAll=head->classID; int Li=0,Lj=0; statisticsTab *stTabD; stTabD=new statisticsTab[n]; //统计表赋值 while(p) { if (Lj>0) { stTabD[Li].valueID=p->classID; stTabD[Li].valueCount=p->cunt; tempCount=p->cunt; //tempAll=head->classID; stTabD[Li].Proportion=tempCount*1.0/tempAll*1.0; Li++; } Lj++; p=p->next; } return stTabD; } double Tree::GainRatio(AttValuesTab * attValues, int attNum) { AttValuesTab * values; values=attValues; int n; n=attNum; ClassUnique * classLink; statisticsTab * staTab; double inf,attInf,ginInf,ginInfRatio; int staNum=0; double * discData; //统计获得类别属性唯一值的链表 classLink=getClassUnique(values,n); staNum=classLink->cunt; //获得统计表 staTab=AttValuesStatistics(classLink); //计算类别属性的熵 inf=Info(staTab,staNum); //离散属性数据 discData=discreteData(values,n); attInf=findDiscPoint(discData,n-1,values,n,true); //dis,f.sampleRows-1,c.m_AttValuesTable,f.sampleRows,true ginInf=inf-attInf; //获得信息增益 ginInfRatio=ginInf/inf;//获得信息增益率 delete[] classLink; delete[] staTab; return ginInfRatio; } int Tree::ChooseAttribute(double ** sampleData, int row, int line, int * attIndex, int attNum) { double ** S; S=sampleData; AttIndexTab * attIndexTab;//用于存储可供分裂属性的计算信息, attIndexTab=new AttIndexTab[attNum];//动态建立注意删除 double infGainAll=0;//累计信息增益,用于计算平均值 double averageInfGain=0; //获取增益平均值 double minIGRatio=0; //求最小增益率 int minI=0; for (int i=0;i<attNum;i++)//attNum可供分裂属性的个数 { int tempIndex=0; //获取索引中的索引号,为了在S中取值 tempIndex=attIndex[i]; AttValuesTab attValues[1000]; double infGain=0,infGainRatio=0; double splitPoint=0; int lSplit=0,rSplit=0; for (int j=0;j<row;j++) //获得当前索引下的属性值表包含ClassID { attValues[j].AttValue=S[j][tempIndex]; attValues[j].classID=S[j][line-1]; attValues[j].AttValueIndex=tempIndex; } infGain=Gain(attValues,row); infGainRatio=GainRatio(attValues,row); attIndexTab[i].attIndex=tempIndex; attIndexTab[i].attGain=infGain; attIndexTab[i].attGainRatio=infGainRatio; attIndexTab[i].splittPoint=m_splitPointValue; infGainAll=infGainAll+infGain;//累计信息增益,用于计算平均值 } averageInfGain=infGainAll/attNum;//获取增益平均值 for (int i=0;i<attNum;i++) { if (i==0) { minIGRatio=attIndexTab[i].attGainRatio; minI=attIndexTab[i].attIndex; } else { //if (attIndexTab[i].attGain>=averageInfGain) { if (minIGRatio<attIndexTab[i].attGainRatio) { minIGRatio=attIndexTab[i].attGainRatio; minI=attIndexTab[i].attIndex; m_splitPointValue=attIndexTab[i].splittPoint; } } } } int r=0; r=minI; delete [] attIndexTab; return r; } AttIndexTab Tree::ChooseAttribute1(double ** sampleData, int row, int line, int ** attIndex, int attNum,int attL) { double ** S; S=sampleData; AttIndexTab * attIndexTab;//用于存储可供分裂属性的计算信息, attIndexTab=new AttIndexTab[attNum];//动态建立注意删除 double infGainAll=0;//累计信息增益,用于计算平均值 double averageInfGain=0; //获取增益平均值 double minIGRatio=0; //求最小增益率 int minI=0; for (int i=0;i<attNum;i++)//attNum可供分裂属性的个数 { int tempIndex=0; tempIndex=attIndex[i][0]; AttValuesTab attValues[10000]; double infGain=0,infGainRatio=0; double splitPoint=0; int lSplit=0,rSplit=0; for (int j=0;j<row;j++) { attValues[j].AttValue=S[j][tempIndex]; attValues[j].classID=S[j][line-1]; attValues[j].AttValueIndex=tempIndex; } //计算信息增益 infGain=Gain(attValues,row); infGainRatio=GainRatio(attValues,row); attIndex[i][1]=m_splitPointValue; attIndexTab[i].attIndex=tempIndex;//记录索引 attIndexTab[i].attGain=infGain; attIndexTab[i].attGainRatio=infGainRatio; attIndexTab[i].splittPoint=m_splitPointValue; infGainAll=infGainAll+infGain; } averageInfGain=infGainAll/attNum;//获取增益平均值 for (int i=0;i<attNum;i++) { if (i==0) { minIGRatio=attIndexTab[i].attGainRatio; minI=attIndexTab[i].attIndex; } else { if (attIndexTab[i].attGain>=averageInfGain) { if (minIGRatio<attIndexTab[i].attGainRatio) { minIGRatio=attIndexTab[i].attGainRatio; minI=attIndexTab[i].attIndex; } } } } //最小增益里有没有相等的 int *sameMinGRatioIndex=new int[attNum]; int sameMinGRatioI=0; for (int i=0;i<attNum;i++) { if (minIGRatio==attIndexTab[i].attGainRatio) { sameMinGRatioIndex[sameMinGRatioI]=i; sameMinGRatioI++; } } if (sameMinGRatioI>1) { int I=rand()%sameMinGRatioI; minI=sameMinGRatioIndex[I]; } AttIndexTab r; r.attIndex=minI; r.splittPoint=attIndexTab[minI].splittPoint; delete [] sameMinGRatioIndex; delete [] attIndexTab; return r; } vector<AttIndexTab> Tree::ChooseAttribute2(double ** sampleData, int row, int line, int ** attIndex, int attNum,int attL) { double ** S; S=sampleData; AttIndexTab * attIndexTab;//用于存储可供分裂属性的计算信息, attIndexTab=new AttIndexTab[attNum];//动态建立注意删除 double infGainAll=0;//累计信息增益,用于计算平均值 double averageInfGain=0; //获取增益平均值 double minIGRatio=0; //求最小增益率 int minI=0; vector<AttIndexTab> results; for (int i=0;i<attNum;i++)//attNum可供分裂属性的个数 { int tempIndex=0; tempIndex=attIndex[i][0]; AttValuesTab attValues[10000]; double infGain=0,infGainRatio=0; double splitPoint=0; int lSplit=0,rSplit=0; for (int j=0;j<row;j++) { attValues[j].AttValue=S[j][tempIndex]; attValues[j].classID=S[j][line-1]; attValues[j].AttValueIndex=tempIndex; } //计算信息增益 infGain=Gain(attValues,row); infGainRatio=GainRatio(attValues,row); attIndex[i][1]=m_splitPointValue; attIndexTab[i].attIndex=tempIndex;//记录索引 attIndexTab[i].attGain=infGain; attIndexTab[i].attGainRatio=infGainRatio; attIndexTab[i].splittPoint=m_splitPointValue; infGainAll=infGainAll+infGain; results.push_back(attIndexTab[i]); } averageInfGain=infGainAll/attNum;//获取增益平均值 //对增益lv进行从大到小的排序 AttIndexTab temp; for (int i=0;i<results.size()-1;i++) { for (int j=i+1;j<results.size();j++) { if (results.at(j).attGainRatio>results.at(i).attGainRatio) { temp=results.at(j); results.at(j)=results.at(i); results.at(i)=temp; } } } //for (int i=0;i<AttValuesCount-1;i++) //{ // for (int j=i+1;j<AttValuesCount;j++) // { // if (AttValues[j].AttValue<AttValues[i].AttValue) // { // temp=AttValues[j];AttValues[j]=AttValues[i]; // AttValues[i]=temp; // } // } //} ////对增益lv进行从大到小的排序 //AttIndexTab temp; //for (int i=0;i<attNum-1;i++) //{ // for (int j=i+1;j<attNum;j++) // { // if (attIndexTab[j].attGainRatio<attIndexTab[i].attGainRatio) // { // temp=attIndexTab[j]; // attIndexTab[j]=attIndexTab[i]; // attIndexTab[i]=temp; // } // } //} // //for (int i=0;i<attNum;i++) //{ // if (i==0) // { // minIGRatio=attIndexTab[i].attGainRatio; // minI=attIndexTab[i].attIndex; // } // else // { // if (attIndexTab[i].attGain>=averageInfGain) // { // if (minIGRatio<attIndexTab[i].attGainRatio) // { // minIGRatio=attIndexTab[i].attGainRatio; // minI=attIndexTab[i].attIndex; // } // } // } //} ////最小增益里有没有相等的 //int *sameMinGRatioIndex=new int[attNum]; //int sameMinGRatioI=0; //for (int i=0;i<attNum;i++) //{ // if (minIGRatio==attIndexTab[i].attGainRatio) // { // sameMinGRatioIndex[sameMinGRatioI]=i; // sameMinGRatioI++; // } //} //if (sameMinGRatioI>1) //{ // int I=rand()%sameMinGRatioI; // minI=sameMinGRatioIndex[I]; //} //AttIndexTab r; //r.attIndex=minI; //r.splittPoint=attIndexTab[minI].splittPoint; //delete [] sameMinGRatioIndex; delete [] attIndexTab; return results; } void Tree::InOrder(TreeNode * root) { if (root==NULL) { return; } else { InOrder(root->leftChild); //访问根部节点的数据 //....................... if (root->isLeaf) { m_childTreeLeafs++; m_allDatas=m_allDatas+root->allN; } m_childTreeNodes++; InOrder(root->rightChild); } } void Tree::RemoveTree(TreeNode* root) { if (root!=NULL) { RemoveTree(root->leftChild); RemoveTree(root->rightChild); delete root; } } bool Tree::PostPrune(TreeNode* iNode) { if (iNode->isLeaf) { return false; } TreeNode *L,*R; bool leafTopL=true,leafTopR=true; //遍历子树,如果非叶子节点,则递归 L=iNode->leftChild; R=iNode->rightChild; // if (!L->isLeaf)//如果左子树不是叶子节点,继续遍历 { if (PostPrune(L)) //如果可以剪枝,返回真值 { return true; } leafTopL=false; } if (!R->isLeaf)//如果右面子树不是叶子节点,继续遍历 { if (PostPrune(R)) //如果可以剪枝,返回真值 { return true; } leafTopR=false; } if (leafTopL&&leafTopR) { //计算剪枝前的错误率,错误率=当前节点占少数的结果/此节点结果总数之和 double littleN=iNode->allN-iNode->publicClassN; double N=iNode->allN; double erroBefore=littleN/N; double erroAfter; double errorNum; //获得此节点所有分裂分支的错误数总和 if (iNode->leftChild!=NULL&&iNode->rightChild!=NULL) { errorNum=(iNode->leftChild->allN-iNode->publicClassN)+(iNode->rightChild->allN-iNode->publicClassN); } else if (iNode->leftChild!=NULL&&iNode->rightChild==NULL) { errorNum=(iNode->leftChild->allN-iNode->publicClassN); } else { errorNum=(iNode->rightChild->allN-iNode->publicClassN); } //计算剪枝后的错误率,错误率=(值分量*0.5+错误总和)/此节点结果数和 erroAfter=(errorNum+0.5*2)/N; if (erroAfter>=erroBefore) { TreeNode * newNode; newNode=new TreeNode; newNode->isLeaf=true; //原节点的普遍结果即最后的结果属性 newNode->ClassID=iNode->publicClassID; newNode->isLeaf=true; newNode->leftChild=NULL; newNode->rightChild=NULL; // RemoveTree(iNode); delete iNode; iNode=newNode; return true; } return false; } return false; } //void Tree::LeverOrder(TreeNode* root) //{ // int front=0; // int rear=0; // if (root==NULL) // { // return; // } // TreeNode* Q[1000]; // TreeNode* q; // Q[++rear]=root; // CString classID,index,point,row; // CString att1,att2,att3; // double DPoint=0; // int ID,I; // //CStdioFile f; // //CFile f; // //f.Open(_T("C:\\Data\\zyy.txt"),CFile::modeCreate|CFile::modeWrite/*|CFile::typeText*/); // while(front!=rear) // { // q=Q[++front]; // //.................. // // if (q->isLeaf)//如果是叶子节点 // { // // ID=q->ClassID; // I=q->attIndex; // DPoint=q->splitVertex; // classID.Format(_T("%d"),ID); // index.Format(_T("%d"),I); // point.Format(_T("%.1lf"),DPoint); // att1=_T("Leaf,ID="); // att2=_T(",index=NULL"); // att3=_T(",point=NULL"); // row=att1+classID+att2+att3+_T("\r\n"); // f.Write(row,2*row.GetAllocLength()); // } // else // { // ID=q->ClassID; // I=q->attIndex; // DPoint=q->splitVertex; // classID.Format(_T("%d"),ID); // index.Format(_T("%d"),I); // point.Format(_T("%.4lf"),DPoint); // att1=_T("Node,ID="); // att2=_T(",Index="); // att3=_T(",Point="); // row=att1+classID+att2+index+att3+point+_T("\r\n"); // f.Write(row,2*row.GetAllocLength()); // // } // // if (q->leftChild!=NULL) // { // Q[++rear]=q->leftChild; // } // if (q->rightChild!=NULL) // { // Q[++rear]=q->rightChild; // } // }; // f.Close(); //} int Tree::CalculateErrors(TreeNode* root, double ** SampleDatas, int m , int n,TuplesClassified* tuples,int tuplesN) { int erros=0; for (int i=0;i<tuplesN;i++) { if (tuples[i].err==1) { erros++; } } m_erroNum=0; m_tuplesI=0;m_allErros=0; //初始化 return erros; } TuplesClassified * Tree::GetClassifiedTuples(TreeNode * root, int m) { return NULL; } void Tree::traverse(TreeNode* root, TuplesClassified* T, int i) { } void Tree::Traverse(TreeNode* root,double ** SampleDatas, int m , int n,TuplesClassified * tuples,int tuplesN,bool isReplaceTuples/*是否更新元组信息,不用于计算错误率*/) { if (root==NULL) { return; } else { Traverse(root->leftChild,SampleDatas,m,n,tuples,tuplesN,isReplaceTuples); //访问根部节点的数据 //....................... if (root->isLeaf) { if (isReplaceTuples) //读取节点叶子节点数据,并更新原来的元组列表 { int M=root->allN; TuplesClassified *T; T=root->tupInformation; int errosOnleaf,temp; //初始化 temp=m_erroNum; for (int i=0;i<M;i++) { /*int index=T[i].sampleDataIndex; int newID=T[i].tuplesClassID; int oldID=SampleDatas[index][n-1];*/ // //******************************* ////打印对照表验证算法的真确性 // /*for (int j=0;j<n;j++) // { // CString temps,str; // double tempx; // tempx=SampleDatas[index][j]; // temps.Format(_T("%f"),tempx); // str=temps+_T(","); // file.Write(str,2*str.GetLength()); // } // CString t; // t=_T("\r\n"); // file.Write(t,2*t.GetLength());*/ ////*************************** //m_tuplesInformation[m_tuplesI].sampleDataIndex=index; //m_tuplesInformation[m_tuplesI].tuplesClassID=oldID; //m_tuplesInformation[m_tuplesI].err=0; //其实不用这 tuples[m_tuplesI].i=T[i].i; tuples[m_tuplesI].sampleDataIndex=T[i].sampleDataIndex; tuples[m_tuplesI].tuplesClassID=T[i].tuplesClassID; tuples[m_tuplesI].err=T[i].err; tuples[m_tuplesI].weight=T[i].weight;//要不要清除节点上记录的东东?视情况而定,我感觉可以 //其实不用这 //if (newID!=oldID) //元组被错分 //{ // //m_tuplesInformation[m_tuplesI].err=1; //为错分的元组计算其Err // tuples[m_tuplesI].err=1; //为错分的元组计算其Err // m_erroNum++; //记录错分的元组个数 // //************************** // /*for (int j=0;j<n;j++) // { // CString temps,str; // double tempx; // tempx=SampleDatas[index][j]; // temps.Format(_T("%f"),tempx); // str=temps+_T(","); // file.Write(str,2*str.GetLength()); // // } // CString t,t1; // t1.Format(_T("%d"),newID); // t=t1+_T("\r\n"); // file.Write(t,2*t.GetLength());*/ // //*********************************** // //} m_tuplesI++; } errosOnleaf=m_erroNum-temp; } else { m_publics=m_publics+root->publicClassN; m_allDatas=m_allDatas+root->allN; int M=root->allN; TuplesClassified *T; T=root->tupInformation; int errosOnleaf,temp; //初始化 temp=m_erroNum; for (int i=0;i<M;i++) { if (T[i].err==1) { m_allErros++; } } } //root->errors=errosOnleaf; //求得该叶子节点下错分的个数 //root->errors=root->allN-root->publicClassN; //m_erroNum=m_erroNum+root->errors; } Traverse(root->rightChild,SampleDatas,m,n,tuples,tuplesN,isReplaceTuples); } } void Tree::getTreeHeight(int h) { m_treeHeight=h; } double Tree::ErroRatioForModel(TuplesClassified * tuplesInfmation, int tuplesNum) { double errorM=0,temp; for (int i=0;i<tuplesNum;i++) { temp=tuplesInfmation[i].weight*tuplesInfmation[i].err; errorM=errorM+temp; } return errorM; } void Tree::TuplesInformationInitial(int tuplesNum/*元组的个数*/,int **sampDataIndex/*样本索引*/,int m/*行*/,int n/*列,一般用2*/) { m_tuplesInformation=new TuplesClassified[tuplesNum]; m_tuplesNum=tuplesNum; for (int i=0;i<tuplesNum;i++) { m_tuplesInformation[i].i=i; m_tuplesInformation[i].err=0; m_tuplesInformation[i].tuplesClassID=sampDataIndex[i][n-1];//n-1列数据记录样本数据的类别标记 m_tuplesInformation[i].sampleDataIndex=sampDataIndex[i][0];//0列数据记录样本数据中的索引 m_tuplesInformation[i].weight=1.0/(tuplesNum*1.0); } } void Tree::TuplesInformationDelete(TuplesClassified *tuples) { delete [] tuples; } double** Tree::GetSampleDatas(double** sampledates, int m , int n) { double ** getSample; int SampleRow; int SampleLine; m_sampleDatas=sampledates; m_sampleDatasLine=n; m_sampleDatasRow=m; getSample=m_sampleDatas; SampleRow=m_sampleDatasRow; SampleLine=m_sampleDatasLine; return getSample; } int** Tree::GetSampleDataIndex(TuplesClassified* tuples,int tuplesN) { m_sampleDataIndexRow=tuplesN; m_sampleDataIndexLine=2; int ** spDataIndex; spDataIndex=new int * [m_sampleDataIndexRow]; for (int i=0;i<m_sampleDataIndexRow;i++) { spDataIndex[i]=new int [2]; } for (int i=0;i<m_sampleDatasRow;i++) { spDataIndex[i][0]=tuples[i].sampleDataIndex; spDataIndex[i][1]=tuples[i].tuplesClassID; } return spDataIndex; } void Tree::DeleteSampleDataIndex(TuplesClassified* tuples) { delete [] tuples; } int ** Tree::GetAttIndexList(int attNum, int attD/*默认2*/) { int row=attNum; int** attListIndex; attListIndex=m_attListIndex; attListIndex=new int* [row]; for (int i=0;i<row;i++) { attListIndex[i]=new int [2]; } return attListIndex; } void Tree::DeletAttIndexList(int ** attIndexList, int attM , int attN) { } void Tree::SampleDataInitialization(double ** sampleData, int row, int line) { m_sampleDatas=sampleData; m_sampleDatasRow=row; m_sampleDatasLine=line; int n=m_sampleDatasLine-1;//参与分列的属性个数 int** attListIndex; //建立属性集 attListIndex=new int* [n]; for (int i=0;i<n;i++) { attListIndex[i]=new int [2]; } for (int i=0;i<n;i++) { attListIndex[i][0]=i; attListIndex[i][1]=0; } m_attListIndex=attListIndex; int** spDataIndex; spDataIndex=new int* [row]; for (int i=0;i<row;i++) { spDataIndex[i]=new int [2]; } for (int i=0;i<row;i++) { spDataIndex[i][0]=i; //元组在样本中的索引 spDataIndex[i][1]=sampleData[i][line-1]; //记录的是元组的类别号 } TuplesInformationInitial(row/*元组的个数*/,spDataIndex/*样本索引*/,row/*行*/,2/*列,一般用2*/); // Tree::TuplesInformationInitial(int tuplesNum/*元组的个数*/,int **sampDataIndex/*样本索引*/,int m/*行*/,int n/*列,一般用2*/) } int Tree::GetChromoRoulette(TuplesClassified* tuples, int tuplesN) { int indexChoosed=0; //产生一个0到适应新评分总和之间的随机数,由于元组权重被规范,所以取0到1 int m=rand(); //随机生成整数 double Slice=(double)std::rand()/(double)RAND_MAX;//生成0到1随机数 //累计适应性分数的和 double FitnessSoFar=0; for (int i=0;i<tuplesN;i++) { //累计适应性分数 FitnessSoFar=FitnessSoFar+tuples[i].weight; //如果累计分数大于随机数,选择此时的样本(基因) if (FitnessSoFar>=Slice) { indexChoosed=i; break; } } //返回转盘选出来的的个体样本 //CString st,str; //st.Format(_T("%d"),m); //str=st+_T(","); //file1.Write(str,2*str.GetLength()); // CString x=_T("\r\n"); // file1.Write(x,2*x.GetLength()); //} return indexChoosed; } void Tree::DeleteSamplingReplacement(TuplesClassified* tuples) { delete [] tuples; } void Tree::GetTreeParameter(int treeHeight,int leafsSize) { m_treeHeight=treeHeight; m_leafsSize=leafsSize; } bool Tree::PostPruneEBP(TreeNode* root,TuplesClassified *tuples,int tuplesN) { //判断是否是叶子节点 if (root->isLeaf) { return false; } PostPruneEBP(root->leftChild,tuples,tuplesN); PostPruneEBP(root->rightChild,tuples,tuplesN); //计算错误的概率 int erros=0,covers=0;//erros被错分样本的个数,covers样本总数 covers=root->allN; // erros=CalculateErrors(root,m_sampleDatas/*样本数据*/,m_sampleDatasRow,m_sampleDatasLine,tuples, tuplesN); erros=root->errors; double p=erros/covers; //错误的概率 //计算置信上限 double U=CalculateConfidenceLLimit(covers,erros,p); //计算叶节点的预测错分样本数,叶节点的预测错分样本数=到达该叶节点的样本数*该叶节点的预测错分样本率U double preErrors/*预测错分样本数*/=0; preErrors=covers*U;//U是不是该叶节点的预测错分样本率?暂且认为这样, //判断是否剪枝集如何剪枝 //计算子树t的所有叶节点预测错分样本数之和,记为E1 double E1=ClaculateLeafPreErrorsADD(root); //计算子树t被剪枝以叶节点代替时的预测错分样本数,记为E2 double E2=preErrors;//? //计算子树t的最大分枝的预测错分样本数,记为E3 //寻找最大分支 int L=GetChildTreeHeight(root->leftChild); //计算左子树树高 int R=GetChildTreeHeight(root->rightChild); //判断右面子树树高 int C=0; if (L!=R) { C=(L>R ? L:R); } //计算获得E3 double E3=0; TreeNode * grafting; if (C==L&&C!=0) { E3=CalculatePreErrors(root->leftChild,tuples,tuplesN); grafting=root->leftChild; } if (C==R&&C!=0) { E3=CalculatePreErrors(root->rightChild,tuples,tuplesN); grafting=root->rightChild; } //比较E1,E2,E3,如下 double minE=0,a,b; a=(E2<E3 ? E2:E3); minE=(E1<a ? E1:a); //E1最小时,不剪枝 if (minE==E1) { return false; } //E2最小时,进行剪枝,以一个叶节点代替t if (minE==E2) { TreeNode newNode; newNode.allN=root->allN; newNode.attIndex=root->attIndex; newNode.ClassID=root->publicClassID;//用原来节点的多数类作为新节点的类别 newNode.errors=root->allN-root->publicClassN;//错分个数=总数-多数类的个数 newNode.isLeaf=true;//是叶子节点的标志 newNode.leftChild=NULL; newNode.rightChild=NULL; newNode.publicClassID=root->publicClassID; newNode.publicClassN=root->publicClassN; newNode.splitVertex=root->splitVertex;//叶子节点该信息很无所谓,暂时赋值了,没影响 newNode.tupInformation=root->tupInformation;//这里有点混乱,检查一下元组的用法,在移除树的时候会受到影响,索性没有移除元组信息,但最后还是要移除,所以得改进 TreeNode * temp; temp=root; //记录根节点的地址 //DeleteTree(root); //移除子树树 DeleteTree(root->leftChild); DeleteTree(root->rightChild); temp->allN=newNode.allN; temp->attIndex=newNode.attIndex; temp->ClassID=newNode.ClassID; temp->errors=newNode.errors; temp->isLeaf=newNode.isLeaf; temp->leftChild=newNode.leftChild; temp->rightChild=newNode.rightChild; temp->publicClassID=newNode.publicClassID; temp->publicClassN=newNode.publicClassN; temp->splitVertex=newNode.splitVertex; temp->tupInformation=newNode.tupInformation; } //E3最小时,采用“嫁接”(grafting)策略,即用这个最大分枝代替t if (minE==E3) { //判断嫁接的是左还是右 if (C==L&&C!=0) { DeleteTree(root->rightChild);//先删除右子树 TreeNode * temp; temp=root->leftChild; TreeNode replaceNode; replaceNode.allN=temp->allN; replaceNode.attIndex=temp->attIndex; replaceNode.ClassID=temp->ClassID; replaceNode.errors=temp->errors; replaceNode.isLeaf=temp->isLeaf; replaceNode.leftChild=temp->leftChild; replaceNode.rightChild=temp->rightChild; replaceNode.publicClassID=temp->publicClassID; replaceNode.publicClassN=temp->publicClassN; replaceNode.splitVertex=temp->splitVertex; replaceNode.tupInformation=temp->tupInformation; root->allN=replaceNode.allN; root->attIndex=replaceNode.attIndex; root->ClassID=replaceNode.ClassID; root->errors=replaceNode.errors; root->isLeaf=replaceNode.isLeaf; root->leftChild=replaceNode.leftChild; root->rightChild=replaceNode.rightChild; root->publicClassID=replaceNode.publicClassID; root->publicClassN=replaceNode.publicClassN; root->splitVertex=replaceNode.splitVertex; root->tupInformation=replaceNode.tupInformation; delete temp; //删除左孩子节点 } if (C==R&&C!=0) { DeleteTree(root->leftChild);//先删除左子树 TreeNode * temp; temp=root->rightChild; TreeNode replaceNode; replaceNode.allN=temp->allN; replaceNode.attIndex=temp->attIndex; replaceNode.ClassID=temp->ClassID; replaceNode.errors=temp->errors; replaceNode.isLeaf=temp->isLeaf; replaceNode.leftChild=temp->leftChild; replaceNode.rightChild=temp->rightChild; replaceNode.publicClassID=temp->publicClassID; replaceNode.publicClassN=temp->publicClassN; replaceNode.splitVertex=temp->splitVertex; replaceNode.tupInformation=temp->tupInformation; root->allN=replaceNode.allN; root->attIndex=replaceNode.attIndex; root->ClassID=replaceNode.ClassID; root->errors=replaceNode.errors; root->isLeaf=replaceNode.isLeaf; root->leftChild=replaceNode.leftChild; root->rightChild=replaceNode.rightChild; root->publicClassID=replaceNode.publicClassID; root->publicClassN=replaceNode.publicClassN; root->splitVertex=replaceNode.splitVertex; root->tupInformation=replaceNode.tupInformation; delete temp; //删除右孩子节点 } return true; } } int Tree::CalculateFactorial(int n) { int f=1; for (int i=n;i>0;i--) { f=f*i; } return f; } double Tree::CalculateConfidenceLLimit(int n/*样本数*/, int e/*实验的次数*/, double p/*每次实验错误的概率*/) { double C=0/*组合*/,CF=0; int k=0; for (k=0;k<=e;k++) { int denominator=0; int numerator=0; denominator=CalculateFactorial(n); numerator=CalculateFactorial(k)*CalculateFactorial(n-k); C=denominator*1.0/numerator*1.0; double P1=0,P2=0; P1=pow(p,k); P2=pow(p,n-k); double tempResult=0; tempResult=C*P1*P2; CF=CF+tempResult; } return CF; } double Tree::ClaculateLeafPreErrorsADD(TreeNode* root) { double leafPreErrosADD; // m_leafPreErrorsADD=0; //初始化 TraverseChildTree(root,0/*该参数没有用*/);//遍历叶子节点,并计算 leafPreErrosADD=m_leafPreErrorsADD; return leafPreErrosADD; } void Tree::TraverseChildTree(TreeNode * root, double LeafPreErrorsADD/*该参数没有用*/) { if (root==NULL) { return; } else { TraverseChildTree(root->leftChild,LeafPreErrorsADD); //访问根部节点的数据 //....................... if (root->isLeaf) { //计算错误的概率 int erros=0,covers=0;//erros被错分样本的个数,covers样本总数 covers=root->allN; erros=root->errors; double p=erros/covers; //错误的概率 //计算置信上限 double U=CalculateConfidenceLLimit(covers,erros,p); //计算叶节点的预测错分样本数,叶节点的预测错分样本数=到达该叶节点的样本数*该叶节点的预测错分样本率U double preErrors/*预测错分样本数*/=0; preErrors=covers*U;//U是不是该叶节点的预测错分样本率?暂且认为这样, m_leafPreErrorsADD=m_leafPreErrorsADD+preErrors; } TraverseChildTree(root->rightChild,LeafPreErrorsADD); } } int Tree::GetChildTreeHeight(TreeNode* root) { m_childTreeLeafs=0; m_childTreeNodes=0; InOrder(root); int nodes=m_childTreeNodes; int leafs=m_childTreeLeafs; double k,height; int nodes2=nodes-leafs; k=log(nodes2*1.0)/log(2.0); height=ceil(k)+1;//对k上取整,求得树高 return height; } double Tree::CalculatePreErrors(TreeNode* root,TuplesClassified * tuples,int tuplesN) { //计算错误的概率 int erros=0,covers=0;//erros被错分样本的个数,covers样本总数 covers=root->allN; erros=CalculateErrors(root,m_sampleDatas/*样本数据*/,m_sampleDatasRow,m_sampleDatasLine,tuples,tuplesN); double p=erros/covers; //错误的概率 //计算置信上限 double U=CalculateConfidenceLLimit(covers,erros,p); //计算叶节点的预测错分样本数,叶节点的预测错分样本数=到达该叶节点的样本数*该叶节点的预测错分样本率U double preErrors/*预测错分样本数*/=0; preErrors=covers*U;//U是不是该叶节点的预测错分样本率?暂且认为这样, return preErrors; } void Tree::DeleteTree(TreeNode* root) { if (root!=NULL) { DeleteTree(root->leftChild); DeleteTree(root->rightChild); TuplesClassified * temp; temp=root->tupInformation; //delete temp; delete root; } } //int Tree::GetClassRules(TreeNode* root) //{ // // m_strRules=_T("");//初始化规则 // // CString stRootRules=_T(""); // // file2.Open(_T("C:\\Data\\rules1.rules"),CFile::modeCreate|CFile::modeWrite/*|CFile::typeText*//*|CFile::typeBinary*/); // InorderForRules(root,0,stRootRules); // delete [] m_stackForNodeRules;//清栈 // m_stackForNodeRulesTop=0; //归零 // file2.Close(); // return 0; //} //bool Tree::InorderForRules(TreeNode* root,int tag/*记录当前点为左还是右*/,CString stRules/*记录节点之前的规则*/) //{ // if (root==NULL) // { // return false; // } // else // { // // //访问根部节点的数据 // //....................... // double splitPoint=root->splitVertex;//获得分裂点 // int spIndex=root->attIndex; //获得属性索引 // CString stSplitPoint; // stSplitPoint.Format(_T("%f"),splitPoint); // CString stSplitInex=_T(""); // stSplitInex.Format(_T("%d"),spIndex); // CString stSign=_T(""); //符号 // CString strulesf=_T(""); //当前节点规则 // CString stRuleNew=_T(""); //新的规则链,用于下次迭代 // // if (tag==1)//当前节点是左节点 // { // stSign=_T("<"); // } // if (tag==2) // { // stSign=_T(">="); // } // // if (root->isLeaf) //如果是叶子节点,考虑输出规则 // { // // CString stClassID=_T(""); // CString st,rules,ed; // int clssId=root->ClassID; // stClassID.Format(_T("%d"),clssId); // // //st=_T("classID=")+stClassID+_T("\r\n"); // //rules=st+stRules+stSign+_T("\"\r\n"); // //file2.Write(rules,2*rules.GetLength());//输出规则 // // st=_T("classID=")+stClassID+_T("\r\n"); // rules=st+stRules+stSign+_T("\"\r\n"); // file2.WriteString(rules);//输出规则 // // } // else // { // // strulesf=_T("att=\"")+stSplitInex+_T("\" ")+_T("cut=\"")+stSplitPoint+_T("\" ")+ // _T("result=\""); //提取本节点的规则信息 // if (tag==0) //当前节点是根部节点 // { // stRuleNew=strulesf; // } // else // { // stRuleNew=stRules+stSign+_T("\"\r\n")+strulesf; //stRules+stSign属于父节点中提取的规则 strulesf是本节点提取的规则信息,但没有符号 // } // //if (InorderForRules(root->leftChild))//如果遍历的是左边子树 // //{ // // stSign=_T("<"); // //} // //if (InorderForRules(root->rightChild))//如果遍历的是右子树 // //{ // // stSign=_T(">="); // //} // } // InorderForRules(root->leftChild,1,stRuleNew);//遍历的是左边子树 // InorderForRules(root->rightChild,2,stRuleNew);//遍历的右面子树 // } // return true; //} //// 测试精度,用于获得分类后的元组集,被MeasuringAccuracy调用 //TuplesClassified* Tree::MeasuringAccuracyMatch(TuplesClassified* MeasuringTuples,int tuplesNum,TreeNode * root,CString rulesPath) //{ // CString FileData; //定义一个CString变量作为缓冲区 // int line=0,row=0; //行列数 // // CString stOld=_T("classID="),stNew=_T("classID="); // int tempTupleN=tuplesNum; // int classId; // //打开文件,读取数据 // f.Open(rulesPath,CFile::modeReadWrite/*|CFile::typeText*/); // //表头初始化 // f.ReadString(FileData);//读取第一行,得到表头 // CString temp=_T("classID="); // int i=temp.GetLength(); // int j=FileData.GetLength(); // int m=j-i; // CString stClassId=FileData.Right(m); // _stscanf(stClassId,_T( "%d"),&classId); // //索引初始化 // int tempcode[1000]; //记录上次循环所记录的索引 // int newTempcode[1000]; //循环后所记录的索引 // int tempN=tuplesNum; //初始的索引个数与元组个数相同 // int tempi=0; //suoyi计数器,初始为0 // //初始化的索引数组记录元组按顺序的索引号 // for (int ii=0;ii<tempN;ii++) // { // tempcode[ii]=ii; // } // // //循环读取文件中的数据 // while (f.ReadString(FileData)) // { // if (FileData.Find(_T("classID="))>-1)//如果读到表头,对之前的分类进行处理, // { // //对之前的分类进行处理 // for (int i=0;i<tempN;i++) // { // int tuplesIndex=tempcode[i]; // MeasuringTuples[tuplesIndex].tuplesClassID=classId; // } // // //读出当前的表头数据,各种初始化 // //表头初始化 // CString temp=_T("classID="); // int i=temp.GetLength(); // int j=FileData.GetLength(); // int m=j-i; // CString stClassId=FileData.Right(m); // _stscanf(stClassId,_T( "%d"),&classId); // //索引初始化 // tempcode[1000]; //记录上次循环所记录的索引 // newTempcode[1000]; //循环后所记录的索引 // tempN=tuplesNum; //初始的索引个数与元组个数相同 // tempi=0; //suoyi计数器,初始为0 // //初始化的索引数组记录元组按顺序的索引号 // for (int ii=0;ii<tempN;ii++) // { // tempcode[i]=i; // } // } // else // { // //读取属性索引 // CString stAtt=_T("att=\""); // int i= FileData.Find(_T("att=\"")); // int j=i+stAtt.GetLength(); // int k=j; // int m=0; // CString t=_T("\""); // while(FileData[k]!=t) // { // m++; // k++; // }; // CString attStr=FileData.Mid(j,m); // int att=0; // _stscanf(attStr,_T("%d"),&att); // //读取分裂值 // CString stSplitPoint=_T("cut=\""); // i= FileData.Find(_T("cut=\"")); // j=i+stSplitPoint.GetLength(); // k=j; // m=0; // t=_T("\""); // while(FileData[k]!=t) // { // m++; // k++; // }; // CString stSplitPointStr=FileData.Mid(j,m); // int cut=0; // _stscanf(stSplitPointStr,_T("%d"),&cut); // //读取判断符号 // CString stRule=_T("result=\""); // i= FileData.Find(_T("result=\"")); // j=i+stRule.GetLength(); // k=j; // m=0; // t=_T("\""); // while(FileData[k]!=t) // { // m++; // k++; // }; // CString stRuleStr=FileData.Mid(j,m); // CString tempA=_T("<"); // CString tempB=_T(">="); // //对数据分类 // int tmpi=0; //计数器,最终数据被当成符合条件索引的个数 // if (stRuleStr==tempA) //小于 // { // //对索引里的所有索引进行搜索 // for (int i=0;i<tempN;i++) // { // int tuplesindex=tempcode[i];//读出索引记录的元组索引 // int testindex=MeasuringTuples[tuplesindex].sampleDataIndex;//通过元组的索引找出测试数据的索引 // if (m_testDatas[testindex][att]<cut) //如果符合条件 // { // newTempcode[tmpi]=tempcode[i]; //用新数组记录符合条件的索引; // tmpi++; // } // } // // } // if (stRuleStr==tempB) //大于 // { // //对索引里的所有索引进行搜索 // for (int i=0;i<tempN;i++) // { // int tuplesindex=tempcode[i];//读出索引记录的元组索引 // int testindex=MeasuringTuples[tuplesindex].sampleDataIndex;//通过元组的索引找出测试数据的索引 // if (m_testDatas[testindex][att]<cut) //如果符合条件 // { // newTempcode[tmpi]=tempcode[i]; //用新数组记录符合条件的索引; // tmpi++; // } // } // } // //更新数据 // tempN=tmpi;//更新索引数 // tmpi=0; //计数器归零 // for (int i=0;i<tempN;i++) // { // tempcode[i]=newTempcode[i]; // } // } // } // // // f.Close(); // TuplesClassified *M=MeasuringTuples; // // return M; //} // // 用中序遍历树的方法测试精度,被函数MeasuringAccuracy调用 void Tree::InfoOrderForMeasuring(TreeNode* root,TuplesClassified* MeasuringTuples,int tuplesNum) { //if (root==NULL) //{ // return ; //} //else //{ // //访问根部节点的数据 // //....................... // double splitPoint=root->splitVertex;//获得分裂点 // int spIndex=root->attIndex; //获得属性索引 // // if (root->isLeaf) //如果是叶子节点,考虑输出规则 // { // int clssId=root->ClassID; // } // else // { // } // } // InorderForRules(root->leftChild,1,stRuleNew);//遍历的是左边子树 // InorderForRules(root->rightChild,2,stRuleNew);//遍历的右面子树 //} //return true; } // //double Tree::MeasuringAccuracy(TuplesClassified* MeasuringTuples,int tuplesNum,TreeNode * root,CString rulesPath) //{ // int cnt=0; // TuplesClassified* tempMeasuringTuples=MeasuringAccuracyMatch(MeasuringTuples,tuplesNum,root,rulesPath); // for (int i=0;i<tuplesNum;i++) // { // int index=tempMeasuringTuples[i].sampleDataIndex; // if (tempMeasuringTuples[i].tuplesClassID!=(int)m_testDatas[index][m_testDatasLine-1]) // { // cnt++; // } // } // double Accuracy=(tuplesNum-cnt)*1.0/tuplesNum; // return Accuracy; //} // // //double Tree::GetMeasuringAccuracy(int tuplesN,TreeNode * root,CString rulesPath) //{ // TuplesClassified* MeasuringTuples; // MeasuringTuples=new TuplesClassified[tuplesN];int j=0; // for (int i=0;i<tuplesN;i++) // { // MeasuringTuples[i].sampleDataIndex=i; // MeasuringTuples[i].tuplesClassID=m_testDatas[i][m_sampleDatasLine-1]; // MeasuringTuples[i].err=0; // MeasuringTuples[i].weight=0; // } // double r=MeasuringAccuracy(MeasuringTuples,tuplesN,root,rulesPath); // return r; //} // 初始化测试数据 //void Tree::TestDataInitialization(double** testData , int row , int line) //{ // /*for (int i=0;i<row;i++) // { // for (int j=0;j<line;j++) // { // m_testDatas[i][j] // } // }*/ // m_testDatas=testData; // m_testDatasRow=row; // m_testDatasLine=line; //} // 打印出元组信息 //void Tree::PrintTuples(TuplesClassified * tuples, int tuplesN, CString path) //{ // CStdioFile file2; // file2.Open(path,CFile::modeCreate|CFile::modeWrite); // int i=0; // int sindex=0; // int classid=0; // int err=0; // double w=0; // CString sti,stSindex,stClassid,stErr,stW,st,ed; // TuplesClassified * Di=tuples; // // for (int ii=0;ii<tuplesN;ii++) // { // i=Di[ii].i; // sindex=Di[ii].sampleDataIndex; // classid=Di[ii].tuplesClassID; // err=Di[ii].err; // w=Di[ii].weight; // // // sti.Format(_T("%d"),i); // stSindex.Format( _T("%d"),sindex); // stClassid.Format( _T("%d"),classid); // stW.Format( _T("%lf"),w); // stErr.Format( _T("%d"),err); // ed=_T("\r\n"); // st=_T("i=")+sti+_T("sindex=")+stSindex+_T(",classId=")+stClassid+_T(",err=")+ // stErr+_T(",w=")+stW+ed; // // file2.WriteString(st); // } // file2.Close(); //} // //void Tree::PrintSampdatasByIndex(double ** sampdata, int row , int line , TuplesClassified* tuples, int tuplesN , CString path) //{ // CStdioFile fi; // fi.Open(path,CFile::modeCreate|CFile::modeWrite); // int sindex=0; // int classid=0; // int err=0; // double w=0; // double values=0; // CString stSindex,st=_T(""),ed=_T("\r\n"),stvalues,temp ; // TuplesClassified * Di=tuples; // // // // for (int ii=0;ii<tuplesN;ii++) // { // st=_T(""); // sindex=Di[ii].sampleDataIndex; // for (int jj=0;jj<line;jj++) // { // values=sampdata[sindex][jj]; // // if (jj!=line-1) // { // stvalues.Format(_T("%fl"),values); // temp=stvalues+_T(","); // st=st+temp; // } // else // { // stvalues.Format(_T("%d"),(int)values); // temp=stvalues; // st=st+temp; // } // } // st=st+ed; // fi.WriteString(st); // // } // // // fi.Close(); //} // //void Tree::PrintSampledatsBySDataIndex(int ** S,int m,int n,CString path) //{ // // CStdioFile fi; // fi.Open(path,CFile::modeCreate|CFile::modeWrite); // int sindex=0; // int classid=0; // int err=0; // double w=0; // double values=0; // CString stSindex,st=_T(""),ed=_T("\r\n"),stvalues,temp ; // // // for (int ii=0;ii<m;ii++) // { // st=_T(""); // sindex=S[ii][0]; // for (int jj=0;jj<m_sampleDatasLine;jj++) // { // values=m_sampleDatas[sindex][jj]; // // if (jj!=m_sampleDatasLine-1) // { // stvalues.Format(_T("%fl"),values); // temp=stvalues+_T(","); // st=st+temp; // } // else // { // stvalues.Format(_T("%d"),(int)values); // temp=stvalues; // st=st+temp; // } // // } // st=st+ed; // fi.WriteString(st); // // } // fi.Close(); //} //// //打印样本数据 //void Tree::PrintSampdatas(double** S, int m , int n) //{ //} // 按照树的叶子打乱元组列表的顺序 void Tree::TuplesOrderByTree(TuplesClassified* tuples, int tuplesN) { } //TreeNode* Tree::BuildTree2(double ** sampleData, int row, int line,TuplesClassified *tuples,int tuplesN,int ** attIndex, int attNum,int attL/*,TreeNode * root*/,bool outPut,int hight,TuplesClassified *tuplesOriginal/*入树的初始元组列表*/,int tuplesON/*初始元组列表个数*/,int & progressI/*用于计算进度*/,CString & Eror) //{ // if (tuplesN==0) // { // // Eror=_T("错误!数据不能为空!"); // return NULL; // } // CString timestr; // // double ** S; // // TuplesClassified * Tindex=tuples; // S=new double* [tuplesN]; //申请行的空间; // // for (int i=0;i<tuplesN;i++) // { // S[i]=new double [line]; // } // for (int i=0;i<tuplesN;i++) // { // // int t=Tindex[i].sampleDataIndex; // // for (int j=0;j<line;j++) // { // S[i][j]=sampleData[t][j]; // } // } // // int S_row=tuplesN; // int S_line=line; // // int T_row=tuplesN; // int **attList=attIndex; // int attN=attNum; // int attL; // double k=0; // TreeNode * Node; // Node=new TreeNode; // m_NodeSize++; // // AttValuesTab *D; // // D=new AttValuesTab[T_row]; // int temprow=0; // // for (int i=0;i<T_row;i++) // { // // temprow=Tindex[i].sampleDataIndex; // D[i].classID=sampleData[temprow][line-1]; // D[i].AttValue=sampleData[temprow][0]; // D[i].AttValue=0; // } // ClassUnique * L,*p; // // L=getClassUnique(D,T_row); // p=L; // int classN=0; // classN=L->cunt; // // // int i=0,Max=0,publicClassID=0,Num=0; // while (p) // { // if (i=0) // { // p=p->next; // i++; // } // else // { // Num=p->cunt; // if (Max<Num) // { // Max=Num; // publicClassID=p->classID; // } // p=p->next; // } // } // // int publicClassN=0,allN=0; // publicClassN=Max; // allN=L->classID; // // Node->allN=T_row; // Node->publicClassN=publicClassN; // Node->publicClassID=publicClassID; // // if (T_row<=m_leafsSize) // { // SetValuesForTreeNode(Node,tuplesN,tuples,sampleData,line,Node->publicClassID); // // Node->ClassID=publicClassID;//以类C标记,L是头节点,不记录类别信息,所以L的下一个节点才是真正记录类别信息的节点 // Node->isLeaf=true;//是叶子节点标记之 // Node->leftChild=NULL; // Node->rightChild=NULL; // Node->splitVertex=0; // //更新原始列表信息 // TuplesClassified *tOri; // tOri=Node->tupInformation; // int OTindex=0; // for (int i=0;i<Node->allN;i++) // { // OTindex=tOri[i].i; // if (tOri[i].err==1) // { // tuplesOriginal[OTindex].err=1; // } // else // tuplesOriginal[OTindex].err=0; // // } // int cor=Node->publicClassN; // int cov=Node->allN; // double arc=(cor*1.0)/(cov*1.0); // // // // // m_Dimension0++; // m_Dimension2=m_NodeSize-m_Dimension0;//度2节点=总数-度1节点 // // //测试代码 // if (m_NodeSize<=1) // { // // Eror=_T("The Nodesize=1(Leaf)"); // // // } // // progressI=progressI+Node->allN; //控制进度条 // /*m_progressBar->SetPos(progressI); // Sleep(0.1); */ // return Node; // // } // // if (classN==1) //如果D中的元组都是同一类C // { // // SetValuesForTreeNode(Node,tuplesN,tuples,sampleData,line,Node->publicClassID); // // Node->ClassID=L->next->classID;//以类C标记,L是头节点,不记录类别信息,所以L的下一个节点才是真正记录类别信息的节点 // Node->isLeaf=true;//是叶子节点标记之 // Node->leftChild=NULL; // Node->rightChild=NULL; // Node->splitVertex=0; // // //更新原始列表信息 // TuplesClassified *tOri; // tOri=Node->tupInformation; // int OTindex=0; // for (int i=0;i<Node->allN;i++) // { // OTindex=tOri[i].i; // if (tOri[i].err==1) // { // tuplesOriginal[OTindex].err=1; // } // else // tuplesOriginal[OTindex].err=0; // // } // // m_Dimension0++; // m_Dimension2=m_NodeSize-m_Dimension0;//度2节点=总数-度1节点 // // // if (m_NodeSize<=1) // { // Eror=_T("The Nodesize=1(Same)"); // // // } // // return Node;//返回N作为叶子节点 // } // // // k=log(m_Dimension2*1.0)/log(2.0); // m_k=ceil(k)+1; // // if (m_k>=hight)//如果超过树高, // { // // // SetValuesForTreeNode(Node,tuplesN,tuples,sampleData,line,Node->publicClassID); // // Node->ClassID=publicClassID;//以类C标记,L是头节点,不记录类别信息,所以L的下一个节点才是真正记录类别信息的节点 // Node->isLeaf=true;//是叶子节点标记之 // Node->leftChild=NULL; // Node->rightChild=NULL; // Node->splitVertex=0; // // //更新原始列表信息 // TuplesClassified *tOri; // tOri=Node->tupInformation; // int OTindex=0; // for (int i=0;i<Node->allN;i++) // { // OTindex=tOri[i].i; // if (tOri[i].err==1) // { // tuplesOriginal[OTindex].err=1; // } // else // tuplesOriginal[OTindex].err=0; // // } // // m_Dimension0++; // m_Dimension2=m_NodeSize-m_Dimension0;//度2节点=总数-度1节点 // // //测试代码 // if (m_NodeSize<=1) // { // // Eror=_T("The Nodesize=1(Height)"); // return NULL; // } // //progressI=progressI+Node->allN; //控制进度条 // //m_progressBar->SetPos(progressI); // //Sleep(0.1); // return Node; // } // // // int splitting_criterionIndex=0; // double splitPointValue=0; // AttIndexTab att; // att=ChooseAttribute1(S,S_row,S_line,attList,attN,2); // double r=att.attGainRatio; // splitting_criterionIndex=att.attIndex; // splitPointValue=att.splittPoint; // for (int i=0;i<S_row;i++) // { // delete []S[i]; // } // delete []S; // deleteClassUnique(L); // // Node->attIndex=splitting_criterionIndex; // Node->ClassID=-1;//当节点不是叶子节点时它的类别用-1表示 // Node->isLeaf=false;//不是叶子节点 // Node->splitVertex=splitPointValue;//存储该属性下的分裂值 // // int D1=0,D2=0; // // // int **attlist1,**attlist2; // double **S1,**S2; // // TuplesClassified *T1_index,*T2_index; // TreeNode *LNode,*RNode; // int s1_m=0; // int s2_m=0; // //分割数据 // T1_index=new TuplesClassified[T_row];//申请行的空间 // T2_index=new TuplesClassified[T_row];//申请行的空间; // //为分割后的数组赋值 // for (int i=0;i<T_row;i++) // { // int temprow=Tindex[i].sampleDataIndex; // if (sampleData[temprow][splitting_criterionIndex]<=splitPointValue) // { // // T1_index[s1_m].err=Tindex[i].err; // T1_index[s1_m].i=Tindex[i].i; // T1_index[s1_m].sampleDataIndex=Tindex[i].sampleDataIndex; // T1_index[s1_m].tuplesClassID=Tindex[i].tuplesClassID; // T1_index[s1_m].weight=Tindex[i].weight; // s1_m++; // } // else // { // // T2_index[s2_m].err=Tindex[i].err; // T2_index[s2_m].i=Tindex[i].i; // T2_index[s2_m].sampleDataIndex=Tindex[i].sampleDataIndex; // T2_index[s2_m].tuplesClassID=Tindex[i].tuplesClassID; // T2_index[s2_m].weight=Tindex[i].weight; // s2_m++; // } // } // D1=s1_m;D2=s2_m; // // // if (D1!=0&&D2!=0) // { // // // } // else if (D1==0&&D2>0) // { // // // // // if (tagT) // { // // Eror=_T("The data1 is wrror!"); // // tagT=!tagT; // } // if (D1==0) // { // tagT=!tagT; // } // // // } // else if(D2==0&&D1>0) // { // // if (tagT) // { // // Eror=_T("The data1 is wrror!"); // tagT=!tagT; // } // if (D2==0) // { // tagT=!tagT; // } // // } // else // { // } // //清除原先数据集的内存 // // // if (D1==0) //如果Dj为空,加一个树叶到节点N,标记为D中的多数类 // { // // //建立叶子节点 // LNode=new TreeNode;//publicClassID // m_NodeSize++; //记录节点数 // LNode->ClassID=publicClassID; // LNode->isLeaf=true; // LNode->leftChild=NULL; // LNode->rightChild=NULL; // // // Node->leftChild=NULL; // m_Dimension0++; // } // else // { // LNode=BuildTree2(sampleData,row,line,T1_index,D1,attList,attN,2,outPut,hight,tuplesOriginal,tuplesON,progressI, Eror); // Node->leftChild=LNode; // // // // } // if (D2==0) // { // // //建立叶子节点 // RNode=new TreeNode;//publicClassID // m_NodeSize++; //记录节点数 // RNode->ClassID=publicClassID; // RNode->isLeaf=true; // RNode->leftChild=NULL; // RNode->rightChild=NULL; // // //将叶子节点接入 // Node->rightChild=NULL; // m_Dimension0++; // } // else // { // // RNode=BuildTree2(sampleData,row,line,T2_index,D2,attList,attN,2,outPut,hight,tuplesOriginal,tuplesON,progressI, Eror); // Node->rightChild=RNode; // // } // // delete []D; // // m_treeHeight=m_k; // return Node; //} TreeNode* Tree::BuildTree2(double ** sampleData, int row, int line,TuplesClassified *tuples,int tuplesN,int ** attIndex, int attNum,int attL/*,TreeNode * root*/,bool outPut,int hight,TuplesClassified *tuplesOriginal/*入树的初始元组列表*/,int tuplesON/*初始元组列表个数*/,int & progressI/*用于计算进度*/)//使用中 { if (tuplesN==0) { //MessageBox(NULL,_T("错误!数据不能为空!"),_T("注意!"),MB_OK); return NULL; } //CString timestr; double ** S; TuplesClassified * Tindex=tuples; S=new double* [tuplesN]; //申请行的空间; for (int i=0;i<tuplesN;i++) { S[i]=new double [line]; } for (int i=0;i<tuplesN;i++) { int t=Tindex[i].sampleDataIndex; for (int j=0;j<line;j++) { S[i][j]=sampleData[t][j]; } } int S_row=tuplesN; //获得数据集的行 int S_line=line; //获得数据集的列 int T_row=tuplesN; int **attList=attIndex; //属性集合索引 int attN=attNum; //属性集合的个数 double k=0; TreeNode * Node;//创建一个节点作为根节点 Node=new TreeNode; m_NodeSize++; AttValuesTab *D; D=new AttValuesTab[T_row]; int temprow=0; for (int i=0;i<T_row;i++) { temprow=Tindex[i].sampleDataIndex; D[i].classID=sampleData[temprow][line-1]; D[i].AttValue=sampleData[temprow][0]; D[i].AttValue=0; } ClassUnique * L,*p; L=getClassUnique(D,T_row); p=L; int classN=0; classN=L->cunt; int i=0,Max=0,publicClassID=0,Num=0; while (p) { if (i=0) { p=p->next; i++; } else { Num=p->cunt; if (Max<Num) { Max=Num; publicClassID=p->classID; } p=p->next; } } int publicClassN=0,allN=0; publicClassN=Max; allN=L->classID; Node->allN=T_row; //获得节点元组个数 Node->publicClassN=publicClassN; Node->publicClassID=publicClassID; if (T_row<=m_leafsSize) //如果数据数量小于等于6 { SetValuesForTreeNode(Node,tuplesN,tuples,sampleData,line,Node->publicClassID); Node->ClassID=publicClassID;//以类C标记,L是头节点,不记录类别信息,所以L的下一个节点才是真正记录类别信息的节点 Node->isLeaf=true;//是叶子节点标记之 Node->leftChild=NULL; Node->rightChild=NULL; Node->splitVertex=0; TuplesClassified *tOri; tOri=Node->tupInformation; int OTindex=0; for (int i=0;i<Node->allN;i++) { OTindex=tOri[i].i; if (tOri[i].err==1) { tuplesOriginal[OTindex].err=1; } else tuplesOriginal[OTindex].err=0; } int cor=Node->publicClassN; int cov=Node->allN; double arc=(cor*1.0)/(cov*1.0); m_Dimension0++; m_Dimension2=m_NodeSize-m_Dimension0;//度2节点=总数-度1节点 //测试代码 if (m_NodeSize<=1) { std::cout<<"ERROR:The Nodesize=1!Empty!"<<endl; } progressI=progressI+Node->allN; //控制进度条 /*m_progressBar->SetPos(progressI); Sleep(0.1); */ return Node; } if (classN==1) //如果D中的元组都是同一类C { SetValuesForTreeNode(Node,tuplesN,tuples,sampleData,line,Node->publicClassID); Node->ClassID=L->next->classID;//以类C标记,L是头节点,不记录类别信息,所以L的下一个节点才是真正记录类别信息的节点 Node->isLeaf=true;//是叶子节点标记之 Node->leftChild=NULL; Node->rightChild=NULL; Node->splitVertex=0; //更新原始列表信息 TuplesClassified *tOri; tOri=Node->tupInformation; int OTindex=0; for (int i=0;i<Node->allN;i++) { OTindex=tOri[i].i; if (tOri[i].err==1) { tuplesOriginal[OTindex].err=1; } else tuplesOriginal[OTindex].err=0; } m_Dimension0++; m_Dimension2=m_NodeSize-m_Dimension0;//度2节点=总数-度1节点 //测试代码 if (m_NodeSize<=1) { std::cout<<"ERROR:The Nodesize=1!Empty!"<<endl; } //progressI=progressI+Node->allN; //控制进度条 //m_progressBar->SetPos(progressI); //Sleep(0.1); return Node;//返回N作为叶子节点 } k=log(m_Dimension2*1.0)/log(2.0); m_k=ceil(k)+1;//对k上取整,求得树高 if (m_k>=hight)//如果超过树高, { SetValuesForTreeNode(Node,tuplesN,tuples,sampleData,line,Node->publicClassID); Node->ClassID=publicClassID;//以类C标记,L是头节点,不记录类别信息,所以L的下一个节点才是真正记录类别信息的节点 Node->isLeaf=true;//是叶子节点标记之 Node->leftChild=NULL; Node->rightChild=NULL; Node->splitVertex=0; //更新原始列表信息 TuplesClassified *tOri; tOri=Node->tupInformation; int OTindex=0; for (int i=0;i<Node->allN;i++) { OTindex=tOri[i].i; if (tOri[i].err==1) { tuplesOriginal[OTindex].err=1; } else tuplesOriginal[OTindex].err=0; } m_Dimension0++; m_Dimension2=m_NodeSize-m_Dimension0;//度2节点=总数-度1节点 //测试代码 if (m_NodeSize<=1) { std::cout<<"ERROR:he Nodesize=1!Height!"<<endl; } //progressI=progressI+Node->allN; //控制进度条 //m_progressBar->SetPos(progressI); //Sleep(0.1); return Node; } int splitting_criterionIndex=0; double splitPointValue=0; AttIndexTab att; att=ChooseAttribute1(S,S_row,S_line,attList,attN,2); double r=att.attGainRatio; splitting_criterionIndex=att.attIndex; splitPointValue=att.splittPoint; for (int i=0;i<S_row;i++) { delete []S[i]; } delete []S; deleteClassUnique(L); Node->attIndex=splitting_criterionIndex; Node->ClassID=-1;//当节点不是叶子节点时它的类别用-1表示 Node->isLeaf=false;//不是叶子节点 Node->splitVertex=splitPointValue;//存储该属性下的分裂值 //将数据分割成两部分 int D1=0,D2=0; int **attlist1,**attlist2; double **S1,**S2; TuplesClassified *T1_index,*T2_index; TreeNode *LNode,*RNode; int s1_m=0; int s2_m=0; //分割数据 T1_index=new TuplesClassified[T_row];//申请行的空间 T2_index=new TuplesClassified[T_row];//申请行的空间; //为分割后的数组赋值 for (int i=0;i<T_row;i++) { int temprow=Tindex[i].sampleDataIndex; if (sampleData[temprow][splitting_criterionIndex]<=splitPointValue) { T1_index[s1_m].err=Tindex[i].err; T1_index[s1_m].i=Tindex[i].i; T1_index[s1_m].sampleDataIndex=Tindex[i].sampleDataIndex; T1_index[s1_m].tuplesClassID=Tindex[i].tuplesClassID; T1_index[s1_m].weight=Tindex[i].weight; s1_m++; } else { T2_index[s2_m].err=Tindex[i].err; T2_index[s2_m].i=Tindex[i].i; T2_index[s2_m].sampleDataIndex=Tindex[i].sampleDataIndex; T2_index[s2_m].tuplesClassID=Tindex[i].tuplesClassID; T2_index[s2_m].weight=Tindex[i].weight; s2_m++; } } D1=s1_m;D2=s2_m; if (D1!=0&&D2!=0) { } else if (D1==0&&D2>0) { SetValuesForTreeNode(Node,tuplesN,tuples,sampleData,line,Node->publicClassID); Node->ClassID=publicClassID;//以类C标记,L是头节点,不记录类别信息,所以L的下一个节点才是真正记录类别信息的节点 Node->isLeaf=true;//是叶子节点标记之 Node->leftChild=NULL; Node->rightChild=NULL; Node->splitVertex=0; //更新原始列表信息 TuplesClassified *tOri; tOri=Node->tupInformation; int OTindex=0; for (int i=0;i<Node->allN;i++) { OTindex=tOri[i].i; if (tOri[i].err==1) { tuplesOriginal[OTindex].err=1; } else tuplesOriginal[OTindex].err=0; } m_Dimension0++; m_Dimension2=m_NodeSize-m_Dimension0;//度2节点=总数-度1节点 return Node; //对属性处理 if (tagT) { //MessageBox(NULL,_T("The data1 is wrror!"),_T("提示"),MB_OK); tagT=!tagT; } if (D1==0) { tagT=!tagT; } } else if(D2==0&&D1>0) { SetValuesForTreeNode(Node,tuplesN,tuples,sampleData,line,Node->publicClassID); Node->ClassID=publicClassID;//以类C标记,L是头节点,不记录类别信息,所以L的下一个节点才是真正记录类别信息的节点 Node->isLeaf=true;//是叶子节点标记之 Node->leftChild=NULL; Node->rightChild=NULL; Node->splitVertex=0; //更新原始列表信息 TuplesClassified *tOri; tOri=Node->tupInformation; int OTindex=0; for (int i=0;i<Node->allN;i++) { OTindex=tOri[i].i; if (tOri[i].err==1) { tuplesOriginal[OTindex].err=1; } else tuplesOriginal[OTindex].err=0; } m_Dimension0++; m_Dimension2=m_NodeSize-m_Dimension0;//度2节点=总数-度1节点 return Node; if (tagT) { //MessageBox(NULL,_T("The data2 is wrror!"),_T("提示"),MB_OK); tagT=!tagT; } if (D2==0) { tagT=!tagT; } } else { } //清除原先数据集的内存 if (D1==0) //如果Dj为空,加一个树叶到节点N,标记为D中的多数类 { //建立叶子节点 LNode=new TreeNode;//publicClassID m_NodeSize++; //记录节点数 LNode->ClassID=publicClassID; LNode->isLeaf=true; LNode->leftChild=NULL; LNode->rightChild=NULL; // Node->leftChild=NULL; m_Dimension0++; } else { LNode=BuildTree2(sampleData,row,line,T1_index,D1,attList,attN,2,outPut,hight,tuplesOriginal,tuplesON,progressI); Node->leftChild=LNode; } if (D2==0) { //建立叶子节点 RNode=new TreeNode;//publicClassID m_NodeSize++; //记录节点数 RNode->ClassID=publicClassID; RNode->isLeaf=true; RNode->leftChild=NULL; RNode->rightChild=NULL; //将叶子节点接入 Node->rightChild=NULL; m_Dimension0++; } else { RNode=BuildTree2(sampleData,row,line,T2_index,D2,attList,attN,2,outPut,hight,tuplesOriginal,tuplesON,progressI); Node->rightChild=RNode; } delete []D; m_treeHeight=m_k; return Node; } TreeNode* Tree::BuildTree2(double ** sampleData, int row, int line,TuplesClassified *tuples,int tuplesN,int ** attIndex, int attNum,int attL/*,TreeNode * root*/,bool outPut,int hight,TuplesClassified *tuplesOriginal/*入树的初始元组列表*/,int tuplesON/*初始元组列表个数*/) { double ** S; TuplesClassified * Tindex=tuples; S=new double* [tuplesN]; //申请行的空间; for (int i=0;i<tuplesN;i++) { S[i]=new double [line]; } for (int i=0;i<tuplesN;i++) { int t=Tindex[i].sampleDataIndex; for (int j=0;j<line;j++) { S[i][j]=sampleData[t][j]; } } int S_row=tuplesN; //获得数据集的行 int S_line=line; int T_row=tuplesN; int **attList=attIndex; int attN=attNum; double k=0; TreeNode * Node;//创建一个节点作为根节点 Node=new TreeNode; m_NodeSize++; AttValuesTab *D; D=new AttValuesTab[T_row]; int temprow=0; for (int i=0;i<T_row;i++) { temprow=Tindex[i].sampleDataIndex; D[i].classID=sampleData[temprow][line-1]; D[i].AttValue=sampleData[temprow][0]; //可以不用 D[i].AttValue=0; //可以不用 } ClassUnique * L,*p; L=getClassUnique(D,T_row); p=L; int classN=0; classN=L->cunt; int i=0,Max=0,publicClassID=0,Num=0; while (p) { if (i=0) { p=p->next; i++; } else { Num=p->cunt; if (Max<Num) { Max=Num; publicClassID=p->classID; } p=p->next; } } int publicClassN=0,allN=0; publicClassN=Max; allN=L->classID; Node->allN=T_row; //获得节点元组个数 Node->publicClassN=publicClassN; Node->publicClassID=publicClassID; int errorcount=0; TuplesClassified *t; //获得元组信息 t=new TuplesClassified[T_row]; for (int i=0;i<T_row;i++) //比较占内存可以考虑优化 { t[i].tuplesClassID=publicClassID; t[i].sampleDataIndex=Tindex[i].sampleDataIndex; t[i].err=Tindex[i].err; t[i].weight=Tindex[i].weight; t[i].i=Tindex[i].i; int ti=0; ti=t[i].sampleDataIndex; int classid=0; classid=sampleData[ti][line-1]; if (classid!=publicClassID) //如果不等于多数类在叶子节点上即被错分 { t[i].err=1; //被错分err赋值1 errorcount++; } else { t[i].err=0; //分类正确确赋值为0 } } Node->tupInformation=t; Node->errors=errorcount; if (T_row<=m_leafsSize) { Node->ClassID=publicClassID;//以类C标记,L是头节点,不记录类别信息,所以L的下一个节点才是真正记录类别信息的节点 Node->isLeaf=true;//是叶子节点标记之 Node->leftChild=NULL; Node->rightChild=NULL; Node->splitVertex=0; //更新原始列表信息 TuplesClassified *tOri; tOri=Node->tupInformation; int OTindex=0; for (int i=0;i<Node->allN;i++) { OTindex=tOri[i].i; if (tOri[i].err==1) { tuplesOriginal[OTindex].err=1; } else tuplesOriginal[OTindex].err=0; } m_Dimension0++; m_Dimension2=m_NodeSize-m_Dimension0;//度2节点=总数-度1节点 //测试代码 if (m_NodeSize<=1) { std::cout<<"ERROR:The Nodesize=1!Empty!"<<endl; } return Node; } if (classN==1) { Node->ClassID=L->next->classID;//以类C标记,L是头节点,不记录类别信息,所以L的下一个节点才是真正记录类别信息的节点 Node->isLeaf=true;//是叶子节点标记之 Node->leftChild=NULL; Node->rightChild=NULL; Node->splitVertex=0; //更新原始列表信息 TuplesClassified *tOri; tOri=Node->tupInformation; int OTindex=0; for (int i=0;i<Node->allN;i++) { OTindex=tOri[i].i; if (tOri[i].err==1) { tuplesOriginal[OTindex].err=1; } else tuplesOriginal[OTindex].err=0; } m_Dimension0++; m_Dimension2=m_NodeSize-m_Dimension0;//度2节点=总数-度1节点 //测试代码 if (m_NodeSize<=1) { std::cout<<"ERROR:The Nodesize=1!Same!"<<endl; } return Node;//返回N作为叶子节点 } k=log(m_Dimension2*1.0)/log(2.0); m_k=ceil(k)+1;//对k上取整,求得树高 if (m_k>=hight)//如果超过树高, { Node->ClassID=publicClassID;//以类C标记,L是头节点,不记录类别信息,所以L的下一个节点才是真正记录类别信息的节点 Node->isLeaf=true;//是叶子节点标记之 Node->leftChild=NULL; Node->rightChild=NULL; Node->splitVertex=0; //更新原始列表信息 TuplesClassified *tOri; tOri=Node->tupInformation; int OTindex=0; for (int i=0;i<Node->allN;i++) { OTindex=tOri[i].i; if (tOri[i].err==1) { tuplesOriginal[OTindex].err=1; } else tuplesOriginal[OTindex].err=0; } m_Dimension0++; m_Dimension2=m_NodeSize-m_Dimension0;//度2节点=总数-度1节点 //测试代码 if (m_NodeSize<=1) { std::cout<<"ERROR:he Nodesize=1!Height!"<<endl; } return Node; } int splitting_criterionIndex=0;//最符合分裂的属性索引 double splitPointValue=0; //该属性下最佳的分裂点 AttIndexTab att; att=ChooseAttribute1(S,S_row,S_line,attList,attN,2); double r=att.attGainRatio; splitting_criterionIndex=att.attIndex; splitPointValue=att.splittPoint/*attList[splitting_criterionIndex][1]*/; for (int i=0;i<S_row;i++) { delete []S[i]; } delete []S; deleteClassUnique(L); Node->attIndex=splitting_criterionIndex; Node->ClassID=-1;//当节点不是叶子节点时它的类别用-1表示 Node->isLeaf=false;//不是叶子节点 Node->splitVertex=splitPointValue;//存储该属性下的分裂值 int D1=0,D2=0; for (int i=0;i<T_row;i++) { int temprow=Tindex[i].sampleDataIndex; if (sampleData[temprow][splitting_criterionIndex]<=splitPointValue) { D1++; } else { D2++; } } int **attlist1,**attlist2; double **S1,**S2; TuplesClassified *T1_index,*T2_index; TreeNode *LNode,*RNode; int s1_m=0; int s2_m=0; if (D1!=0&&D2!=0) { T1_index=new TuplesClassified[D1];//申请行的空间; T2_index=new TuplesClassified[D2];//申请行的空间; for (int i=0;i<T_row;i++) { int temprow=Tindex[i].sampleDataIndex; if (sampleData[temprow][splitting_criterionIndex]<=splitPointValue) { T1_index[s1_m].err=Tindex[i].err; T1_index[s1_m].i=Tindex[i].i; T1_index[s1_m].sampleDataIndex=Tindex[i].sampleDataIndex; T1_index[s1_m].tuplesClassID=Tindex[i].tuplesClassID; T1_index[s1_m].weight=Tindex[i].weight; s1_m++; } else { T2_index[s2_m].err=Tindex[i].err; T2_index[s2_m].i=Tindex[i].i; T2_index[s2_m].sampleDataIndex=Tindex[i].sampleDataIndex; T2_index[s2_m].tuplesClassID=Tindex[i].tuplesClassID; T2_index[s2_m].weight=Tindex[i].weight; s2_m++; } } } else if (D1==0&&D2>0) { T2_index=new TuplesClassified[D2];//申请行的空间; for (int i=0;i<T_row;i++) { T2_index[i].err=Tindex[i].err; T2_index[i].i=Tindex[i].i; T2_index[i].sampleDataIndex=Tindex[i].sampleDataIndex; T2_index[i].tuplesClassID=Tindex[i].tuplesClassID; T2_index[i].weight=Tindex[i].weight; } if (tagT) { tagT=!tagT; } if (D1==0) { tagT=!tagT; } } else if(D2==0&&D1>0) { //S1_index=new int * [D1]; //申请行的空间; T1_index=new TuplesClassified[D1]; //申请行的空间; for (int i=0;i<T_row;i++) { T1_index[i].err=Tindex[i].err; T1_index[i].i=Tindex[i].i; T1_index[i].sampleDataIndex=Tindex[i].sampleDataIndex; T1_index[i].tuplesClassID=Tindex[i].tuplesClassID; T1_index[i].weight=Tindex[i].weight; } if (tagT) { tagT=!tagT; } if (D2==0) { tagT=!tagT; } } else { } if (D1==0) //如果Dj为空,加一个树叶到节点N,标记为D中的多数类 { //建立叶子节点 LNode=new TreeNode;//publicClassID m_NodeSize++; //记录节点数 LNode->ClassID=publicClassID; LNode->isLeaf=true; LNode->leftChild=NULL; LNode->rightChild=NULL; // Node->leftChild=NULL; m_Dimension0++; } else { LNode=BuildTree2(sampleData,row,line,T1_index,D1,attList,attN,2,outPut,hight,tuplesOriginal,tuplesON); Node->leftChild=LNode; } if (D2==0) { //建立叶子节点 RNode=new TreeNode;//publicClassID m_NodeSize++; //记录节点数 RNode->ClassID=publicClassID; RNode->isLeaf=true; RNode->leftChild=NULL; RNode->rightChild=NULL; //将叶子节点接入 Node->rightChild=NULL; m_Dimension0++; } else { RNode=BuildTree2(sampleData,row,line,T2_index,D2,attList,attN,2,outPut,hight,tuplesOriginal,tuplesON); Node->rightChild=RNode; } delete []D; m_treeHeight=m_k; return Node; } // //void Tree::PrintSampleDataByTuples(TuplesClassified* tuples, int tuplesN) //{ // //} TreeSelection* Tree::GetTreeSelection(TreeSelection* treeSelections, int treeN/*参数无用*/) { TreeSelection* selected; selected=m_treeSelection; return selected; } void Tree::DeleteTreeSelection(TreeSelection* treeSelections) { delete [] treeSelections; } // //int Tree::GetintRuleSet(TreeSelection * trees, int treesN,CString rulesPath) //{ // m_ruleSet=new CString[1000];//分类之后的叶节点最多不要超过1000,超过改此处 // m_ruleSetI=0; // // for (int i=0;i<treesN;i++) // { // // int tempruleindex=m_ruleSetI; //给树规则的开头留下位置 // m_ruleSetI++; // double erroratio=trees[i].erroratio; // CString stRootRules=_T(""); // TreeNode *root=trees[i].Tree; // InorderForRuleSet(root,0,erroratio,stRootRules,0); // // CString rules,def,head; // rules.Format(_T("%d"),m_ruleCount); // // def.Format(_T("%d"),root->publicClassID);//rules="17" default="2" // head=_T("rules=\"")+rules+_T("\" default=\"")+def+_T("\"\r\n"); // m_ruleSet[tempruleindex]=head; // m_ruleCount=0;//用完归零 // } // // //输出规则集文件 // CStdioFile fl; // fl.Open(rulesPath,CFile::modeCreate|CFile::modeWrite/*|CFile::typeText*//*|CFile::typeBinary*/); // // CString temp,Entries,head1,head2,y,m,d,h,s,l; // CTime tm; // tm=CTime::GetCurrentTime(); // // y.Format(_T("%d"),tm.GetYear()); // m.Format(_T("%d"),tm.GetMonth()); // d.Format(_T("%d"),tm.GetDay()); // h.Format(_T("%d"),tm.GetHour()); // l.Format(_T("%d"),tm.GetMinute()); // s.Format(_T("%d"),tm.GetSecond()); // // head1=_T("id=\"GLC\/1.0 ")+y+_T("\/")+m+_T("\/")+d+_T(" ")+h+_T(":")+l+_T(":")+s+_T("\"\r\n"); // //head1.Format()//id="GLC/1.0 2013/5/7 18:09:01" // Entries.Format(_T("%d"),m_adaBoostingK); // head2=_T("entries=\"")+Entries+_T("\"\r\n");//迭代次数 // fl.WriteString(head1); // fl.WriteString(head2); // // for (int i=0;i<m_ruleSetI;i++) // { // temp=m_ruleSet[i]; // fl.WriteString(temp); // } // fl.Close(); // m_ruleSetI=0;//用完归零 // // return 0; //} // 遍历树,获取规则集 //bool Tree::InorderForRuleSet(TreeNode* root, int tag, double erroratio,CString stRules,int rulesN) //{ // if (root==NULL) // { // return false; // } // else // { // // //访问根部节点的数据 // //....................... // double splitPoint=root->splitVertex;//获得分裂点 // int spIndex=root->attIndex; //获得属性索引 // CString stSplitPoint; // stSplitPoint.Format(_T("%f"),splitPoint); // CString stSplitInex=_T(""); // stSplitInex.Format(_T("%d"),spIndex); // CString stSign=_T(""); //符号 // CString strulesf=_T(""); //当前节点规则 // CString stRuleNew=_T(""); //新的规则链,用于下次迭代 // int rulesCount=0; // // if (tag==1)//当前节点是左节点 // { // stSign=_T("<"); // } // if (tag==2) // { // stSign=_T(">="); // } // // if (root->isLeaf) //如果是叶子节点,考虑输出规则 // { // // CString stClassID=_T(""); //类别 // CString stCount=_T(""); //判断条件的个数 // CString stCover=_T(""); //叶节点覆盖元组数 // CString stCorrect=_T(""); //叶节点覆盖元组数被正确分类的个数 // CString stPre=_T(""); //预测权重 // CString st,rules,ed; // //count="7" cover="1.00000" correct="1.00000" pre="3.01771" class="6" // int clssId=root->ClassID; // stClassID.Format(_T("%d"),clssId); // //stCount.Format(_T("%d"),m_ruleCount); // stCount.Format(_T("%d"),rulesN); // double cover=root->allN; // stCover.Format(_T("%lf"),cover); // double correct=root->allN-root->errors; // stCorrect.Format(_T("%lf"),correct); // double acc=0,pre=0; // acc=correct/cover; // pre=acc*log(1/erroratio); // stPre.Format(_T("%lf"),pre); // // // st=_T("count=\"")+stCount+_T("\" cover=\"")+stCover+_T("\" correct=\"")+stCorrect+_T("\" pre=\"") // +stPre+_T("\" class=")+stClassID+_T("\r\n"); // rules=st+stRules+stSign+_T("\"\r\n"); // //file2.WriteString(rules);//输出规则 // m_ruleSet[m_ruleSetI]=rules; // m_ruleSetI++; // m_ruleCount++;//计算规则的个数,也就是叶子节点的个数 // } // else // { // // strulesf=_T("att=\"")+stSplitInex+_T("\" ")+_T("cut=\"")+stSplitPoint+_T("\" ")+ // _T("result=\""); //提取本节点的规则信息 // if (tag==0) //当前节点是根部节点 // { // stRuleNew=strulesf; // } // else // { // stRuleNew=stRules+stSign+_T("\"\r\n")+strulesf; //stRules+stSign属于父节点中提取的规则 strulesf是本节点提取的规则信息,但没有符号 // } // // rulesCount=rulesN+1; // } // InorderForRuleSet(root->leftChild,1,erroratio,stRuleNew,rulesCount);//遍历的是左边子树 // InorderForRuleSet(root->rightChild,2,erroratio,stRuleNew,rulesCount);//遍历的右面子树 // } // return true; //} // 获得构建树的参数 //void Tree::SetParameter(int treeHeight, int leafsSize, CString rulePath) //{ // m_treeHeight=treeHeight; // // m_leafsSize=leafsSize; // // m_ruleFilePath=rulePath; //} // // 开始建立树 void Tree::doBuildTree(TuplesClassified *tuples,int tuplesN,int & progressI) { m_treeRoot=BuildTree2(m_sampleDatas,m_sampleDatasRow,m_sampleDatasLine,tuples,tuplesN,m_attListIndex,m_sampleDatasLine-1,2,true,m_treeHeight,tuples,tuplesN,progressI); } void Tree::doBuildTree(TuplesClassified *tuples,int tuplesN) { m_treeRoot=BuildTree2(m_sampleDatas,m_sampleDatasRow,m_sampleDatasLine,tuples,tuplesN,m_attListIndex,m_sampleDatasLine-1,2,true,m_treeHeight,tuples,tuplesN); } TreeNode* Tree::GetTreeRoot(void) { TreeNode* t=m_treeRoot; return t; } void Tree::GetData(double ** sampleData, int row, int line,int ** attIndex) { m_sampleDatas=sampleData; m_sampleDatasRow=row; m_sampleDatasLine=line; m_attListIndex=attIndex; } // 参数归零 void Tree::doVariableToZero(void) { m_treeRoot=NULL; tagT=false; m_Dimension0=0; m_Dimension1=0; m_Dimension2=0; m_splitPointValue=0; m_treeHeight=0; m_Dimension=0; m_NodeSize=0; m_k=0; m_splitPointAttIndex=0; m_erroNum=0; m_bestSplitPointValue=0; m_tuplesNum=0; m_testDatasRow=0; m_testDatasLine=0; m_sampleDatasRow=0; m_sampleDatasLine=0; m_tuplesRow=0; m_tuplesLine=0; m_sampleDataIndexRow=0; m_sampleDataIndexLine=0; m_tuplesI=0; m_adaBoostingK=0; m_leafPreErrorsADD=0; m_childTreeHeight=0; m_childTreeLeafs=0; m_childTreeNodes=0; m_stackForNodeRulesTop=0; m_allDatas=0; m_publics=0; m_allErros=0; m_leafsSize=0; m_ruleSetI=0; m_tringDataN=0; } //// 控制进度条 //void Tree::SetProgressBar(CProgressCtrl* progressBar) //{ // m_progressBar=progressBar; // //} void Tree::SetValuesForTreeNode(TreeNode* treeNode,int tuplesN,TuplesClassified *tuples,double ** sampleData,int sampleData_line,int publicClassID) { int line=sampleData_line; TuplesClassified * Tindex=tuples; int T_row=tuplesN; TreeNode *Node=treeNode; //m_Dimension2=m_NodeSize-m_Dimension0;//度2节点=总数-度1节点 //判断D中的元组是否为同一类,这个方法貌似有点繁琐, //AttValuesTab *D; ////D=new AttValuesTab[SIndex_row]; //D=new AttValuesTab[T_row]; //int temprow=0; ////for (int i=0;i<SIndex_row;i++) //for (int i=0;i<T_row;i++) //{ // //temprow=SIndex[i][0]; // temprow=Tindex[i].sampleDataIndex; // D[i].classID=sampleData[temprow][line-1]; // D[i].AttValue=sampleData[temprow][0]; //可以不用 // D[i].AttValue=0; //可以不用 //} //ClassUnique * L,*p; //L=getClassUnique(D,T_row);//获得唯一值链表,注意删除 //p=L; //int classN=0; //classN=L->cunt;//获得数据集类别的个数 ////寻找多数类 //int i=0,Max=0,publicClassID=0,Num=0; //while (p) //{ // if (i=0) // { // p=p->next; // i++; // } // else // { // Num=p->cunt; // if (Max<Num) // { // Max=Num; // publicClassID=p->classID; // } // p=p->next; // } //} ////记录多数类的个数,以及该分支训练数据的个数 //int publicClassN=0,allN=0; //publicClassN=Max; //allN=L->classID; //Node->allN=T_row; //获得节点元组个数 //Node->publicClassN=publicClassN; //Node->publicClassID=publicClassID; ////Node->errors=Node->allN-Node->publicClassN; //这部分值得再推敲,算出的错误数与下列循环得到的错误数不一致郁闷 int errorcount=0; TuplesClassified *t; //获得元组信息 t=new TuplesClassified[T_row]; for (int i=0;i<T_row;i++) //比较占内存可以考虑优化 { t[i].tuplesClassID=publicClassID; t[i].sampleDataIndex=Tindex[i].sampleDataIndex; t[i].err=Tindex[i].err; //t[i].tuplesClassID=Tindex[i].tuplesClassID; t[i].weight=Tindex[i].weight; t[i].i=Tindex[i].i; int ti=0; ti=t[i].sampleDataIndex; int classid=0; classid=sampleData[ti][line-1]; if (classid!=publicClassID) //如果不等于多数类在叶子节点上即被错分 { t[i].err=1; //被错分err赋值1 errorcount++; } else { t[i].err=0; //分类正确确赋值为0 } } Node->tupInformation=t; Node->errors=errorcount; }
[ "diyanan0707@126.com" ]
diyanan0707@126.com
c2738cef32cb13638353c36c89601d7cbb86a96f
6c87d5abd6154d3561164f37ab2901a8cd083cbf
/include/OpenFrames/FocalPointShadowMap.hpp
cd0be1a577669df6705ccd78fed22648684b61f3
[ "Apache-2.0" ]
permissive
ravidavi/OpenFrames
dbe42ffa423f0de6b61727cb5a70bdebbc7e7faf
ca4a25cded38e3172f64b2143d54add03dd3ec22
refs/heads/develop
2023-07-23T02:02:19.870341
2023-07-13T17:32:37
2023-07-13T17:32:37
100,513,753
33
14
Apache-2.0
2023-07-13T16:33:35
2017-08-16T17:10:42
C++
UTF-8
C++
false
false
5,783
hpp
/*********************************** Copyright 2023 Ravishankar Mathur 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. ***********************************/ /** \file FocalPointShadowMap.hpp * Declaration of the FocalPointShadowMap class. */ #ifndef OF_FOCALPOINTSHADOWMAP #define OF_FOCALPOINTSHADOWMAP #include <OpenFrames/Export.h> #include <osg/Camera> #include <osg/Material> #include <osg/MatrixTransform> #include <osg/LightSource> #include <osgShadow/ShadowTechnique> namespace OpenFrames { /** * \class RenderRectangle * * \brief Encapsulates a rectangle in which a scene can be rendered. * * This class encapsulates a rectangle in which a scene can be rendered. * It provides decorations for the scene, such as a border around the * rectangle. It also automatically analyzes a scene and (if needed) * renders it in multiple stages in case there are large z distances * involved. */ class OF_EXPORT FocalPointShadowMap : public osgShadow::ShadowTechnique { public : FocalPointShadowMap(); FocalPointShadowMap(const FocalPointShadowMap& es, const osg::CopyOp& copyop=osg::CopyOp::SHALLOW_COPY); META_Object(OpenFrames, FocalPointShadowMap); /** set the polygon offset used initially */ void setPolygonOffset(const osg::Vec2& polyOffset) { _polyOffset = polyOffset; } /** get the used polygon offset */ const osg::Vec2& getPolygonOffset() const { return _polyOffset; } /** Set the values for the ambient bias the shader will use.*/ void setAmbientBias(const osg::Vec2& ambientBias ); /** Get the values that are used for the ambient bias in the shader.*/ const osg::Vec2& getAmbientBias() const { return _ambientBias; } /** Set the light size (assuming half-length of square area light) */ void setLightSize(const double& lightSize) { _lightSize = lightSize; } /** Get the light size (assuming half-length of square area light) */ const double& getLightSize() const { return _lightSize; } void setSceneScale(const double& scale) { _sceneScale = scale; } double getSceneScale() const { return _sceneScale; } /** Add a shader to internal list, will be used instead of the default ones */ inline void addShader(osg::Shader* shader) { _shaderList.push_back(shader); } template<class T> void addShader( const osg::ref_ptr<T>& shader ) { addShader(shader.get()); } /** Reset internal shader list */ inline void clearShaderList() { _shaderList.clear(); } /** initialize the ShadowedScene and local cached data structures.*/ virtual void init(); /** run the update traversal of the ShadowedScene and update any loca chached data structures.*/ virtual void update(osg::NodeVisitor& nv); /** run the cull traversal of the ShadowedScene and set up the rendering for this ShadowTechnique.*/ virtual void cull(osgUtil::CullVisitor& cv); /** Clean scene graph from any shadow technique specific nodes, state and drawables.*/ virtual void cleanSceneGraph(); /** Resize any per context GLObject buffers to specified size. */ virtual void resizeGLObjectBuffers(unsigned int maxSize); /** If State is non-zero, this function releases any associated OpenGL objects for * the specified graphics context. Otherwise, releases OpenGL objects * for all graphics contexts. */ virtual void releaseGLObjects(osg::State* = 0) const; // debug methods osg::ref_ptr<osg::Camera> makeDebugHUD(); protected: virtual ~FocalPointShadowMap(void) {}; /** Create the managed Uniforms */ virtual void createUniforms(); virtual void createShaders(); // forward declare, interface and implementation provided in ShadowMap.cpp class DrawableDrawWithDepthShadowComparisonOffCallback; osg::ref_ptr<osg::Camera> _cameraPenumbra; osg::ref_ptr<osg::Camera> _cameraUmbra; osg::ref_ptr<osg::Texture2D> _texturePenumbraDepth; osg::ref_ptr<osg::Texture2D> _textureUmbraDepth; osg::ref_ptr<osg::TexGen> _texgenPenumbra; osg::ref_ptr<osg::TexGen> _texgenUmbra; osg::ref_ptr<osg::StateSet> _stateset; osg::ref_ptr<osg::Program> _program; typedef std::vector< osg::ref_ptr<osg::Uniform> > UniformList; typedef std::vector< osg::ref_ptr<osg::Shader> > ShaderList; osg::ref_ptr<osg::Uniform> _ambientBiasUniform; osg::ref_ptr<osg::Uniform> _umbraDistanceUniform; osg::ref_ptr<osg::Uniform> _umbraZNearFarInvUniform; osg::ref_ptr<osg::Uniform> _penumbraDistanceUniform; osg::ref_ptr<osg::Uniform> _penumbraZNearFarInvUniform; osg::ref_ptr<osg::Uniform> _lightDistanceUniform; osg::ref_ptr<osg::Uniform> _texelSizeUniform; UniformList _uniformList; ShaderList _shaderList; ShaderList _shaderListShadowPass; osg::Vec2 _polyOffset; osg::Vec2 _ambientBias; unsigned int _baseTextureUnit; double _lightSize; double _sceneScale; }; } #endif
[ "ravi.mathur@emergentspace.com" ]
ravi.mathur@emergentspace.com
6967d73053014949a5ff06a444a221fd0f193c9b
381d605da20ca3342687e26c5bd00936fe7a46e7
/UVA/12015-GoogleisFeelingLucky.cpp
66f0f41423b50f4da01bb551bdb50ed7b356a458
[]
no_license
z0CoolCS/CompetitiveProgramming
4a4c278533001a0a4e8440ecfba9c7a4bb8132db
0894645c918f316c2ce6ddc5fd5fb20af6c8b071
refs/heads/master
2023-04-28T08:15:29.245592
2021-04-20T01:02:28
2021-04-20T01:02:28
228,505,384
0
0
null
null
null
null
UTF-8
C++
false
false
713
cpp
#include<iostream> #include<vector> #include<algorithm> using namespace std; struct url{ string urlcad; int relevance; int pos; bool operator<(const url &other){ if(relevance==other.relevance) return other.pos>pos; return other.relevance<relevance; } }; int main(){ int t,j=1; cin>>t; string urlcad; int relevance; while(t--){ vector<url> urls; for(int i=0;i<10;i++){ cin>>urlcad>>relevance; url urlobj{urlcad,relevance,i}; urls.push_back(urlobj); } sort(urls.begin(),urls.end()); relevance=urls[0].relevance; cout<<"Case #"<<j++<<":\n"; for(int i=0;i<10;i++){ if(urls[i].relevance==relevance) cout<<urls[i].urlcad<<endl; else break; } } return 0; }
[ "giordano.alvitez@utec.edu.pe" ]
giordano.alvitez@utec.edu.pe
e2e86fff6013738fb5f62f160d1a4dc8458ca3e5
b070047ea6d1168eb8f9e3fd892f389c3f674ff9
/tools/Encriptador.h
2a5cb0327bba17de64450d4947898665764c2296
[]
no_license
CE-02FED/HARFS
834771763db773003e86bd4c8c0f319b280390bb
6b685ef7f6cbcffa5feb162136ad8f29177eceab
refs/heads/master
2020-04-06T04:22:24.392931
2015-06-21T14:36:40
2015-06-21T14:36:40
37,702,856
0
0
null
null
null
null
UTF-8
C++
false
false
517
h
/* * encriptar.h * * Created on: 05/06/2015 * Author: javier */ #include <cstdio> #include "string.h" #ifndef ENCRIPTAR_H_ #define ENCRIPTAR_H_ #define cadenaDeEncriptamiento "ae AEbc\"dfghijklmnopqrstuvwxyz{0}12345,6789BCDFGHIJKLMNOPQRSTUVWXYZ:" #define cadenaDeDesencriptamiento "potre42ASD7531sdfghj\"klF}GHwq086:JKLMNBiu,y{VCXZ QWERzxcvbnmaTYUIOP9" #define vacio "" class Encriptador{ public: Encriptador(); char* encriptar(char *cadena, char *llave, int encriptar); }; #endif /* ENCRIPTAR_H_ */
[ "netou18@gmail.com" ]
netou18@gmail.com
64011086bc12e463d853d369efd78db61cd6c22b
095b03203cfb1da17a106516d75da16ed1e77a15
/210313/19528_김동근.cpp
939d0280dbc2869ce7fabb37d55a834f5bc04585
[]
no_license
AlgoMorgo/2021PS
fcff6ca1dadc3672b88aceca179b162e2d4aea68
c3d4419e2365ca0a1d18406bedba656de001ce15
refs/heads/main
2023-03-20T00:21:20.132170
2021-03-21T04:09:09
2021-03-21T04:09:09
325,826,116
0
0
null
2021-01-01T11:06:47
2020-12-31T15:26:54
C++
UTF-8
C++
false
false
1,317
cpp
#include <bits/stdc++.h> const int dx[4] = { 1,0,-1,0 }; const int dy[4] = { 0,-1,0,1 }; using namespace std; int n, m, visited[200001], c= 1; vector<int> adj[200001]; queue<pair<int, int>> q; int main() { cin.tie(0); cout.tie(0); ios_base::sync_with_stdio(false); cin >> n; for (int i = 1; i <= n; i++) { int x; while (true) { cin >> x; if (x) adj[i].push_back(x); else break; } } memset(visited, -1, sizeof(visited)); cin >> m; for (int i = 0; i < m; i++) { int x; cin >> x; visited[x] = 0; for (int i = 0; i < adj[x].size(); i++) q.push({ x, adj[x][i] }); } while (!q.empty()) { queue<pair<int, int>> Q; vector<pair<int, int>> v; while (!q.empty()) { int now = q.front().second; int pre = q.front().first; q.pop(); if (visited[now] != -1) continue; int cnt = 0; for (int i = 0; i < adj[now].size(); i++) { if (visited[adj[now][i]] != -1) cnt++; } if ((adj[now].size() + 1) / 2 <= cnt) { v.push_back({ now, visited[pre] + 1 }); for (int i = 0; i < adj[now].size(); i++) { if (visited[adj[now][i]] == -1) Q.push({ now, adj[now][i] }); } } } for (auto x : v) visited[x.first] = x.second; while (!Q.empty()) { q.push(Q.front()); Q.pop(); } } for (int i = 1; i <= n; i++) cout << visited[i] << ' '; return 0; }
[ "gther2486@naver.com" ]
gther2486@naver.com
8f8fc1efee64c9bb528586951ef6fe4daa133978
2fb599b0be68d51f0cc0dfeee7dfe67b443154da
/Euler 9.cpp
43e3f0e0afb677fba3e2000b89f6135c63eff13e
[]
no_license
jeremyns/Project-Euler
4cc2b3a59248f92b5ea5cf0174854a3551351b03
20c612abe693371d7fc432bfabcdddaac5ca4e6d
refs/heads/master
2021-04-12T09:12:48.108111
2018-03-23T22:24:15
2018-03-23T22:24:15
126,402,237
0
0
null
null
null
null
UTF-8
C++
false
false
1,034
cpp
#include <iostream> using namespace::std; int root(int b, int x); int bSearch(int arr[], int l, int h, int n); int main() { int root[1000]; //create an array or square roots so new roots will not need to be calculated every time for(int i=0;i<500;i++) root[i]=i*i; //initialize the array for(int i=1;i<300;i++) //there is no triplet where the smallest side is greater than 300 for(int j=i;j+i<600; j++) //there is no triplet where the sum of a and b is larger that 600 { int a=bSearch(root,0,500,i*i+j*j); //binary search to return root of perfect square, or -1 for non perfect squares if(a!=-1&&a+i+j==1000) return a*i*j; //check if numbers add to 1000 } return 0; } int bSearch(int arr[], int l, int h, int n) { if(l-h>=-1) return -1; int mid; mid=arr[(l+h)/2]; if(mid==n) return (l+h)/2; else if(mid>n) return bSearch(arr,l,(l+h)/2,n); else if(mid<n) return bSearch(arr,(l+h)/2,h,n); return -1; }
[ "37675030+jeremyns@users.noreply.github.com" ]
37675030+jeremyns@users.noreply.github.com
2e027dff6889691a41e7013df41152dc0f5e7fa7
1dff02275f30fe1b0c5b4f15ddd8954cae917c1b
/ugene/src/corelibs/U2Formats/src/sqlite_dbi/SQLiteFeatureDbi.h
1c5ca6dfc541b720005350479d11b89599839a2b
[ "MIT" ]
permissive
iganna/lspec
eaba0a5de9cf467370934c6235314bb2165a0cdb
c75cba3e4fa9a46abeecbf31b5d467827cf4fec0
refs/heads/master
2021-05-05T09:03:18.420097
2018-06-13T22:59:08
2018-06-13T22:59:08
118,641,727
0
0
null
null
null
null
UTF-8
C++
false
false
4,096
h
/** * UGENE - Integrated Bioinformatics Tools. * Copyright (C) 2008-2012 UniPro <ugene@unipro.ru> * http://ugene.unipro.ru * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, * MA 02110-1301, USA. */ #ifndef _U2_SQLITE_FEATURE_DBI_H_ #define _U2_SQLITE_FEATURE_DBI_H_ #include "SQLiteDbi.h" #include <U2Core/U2FeatureDbi.h> #include <U2Core/U2FeatureKeys.h> namespace U2 { class SQLiteQuery; class SQLiteFeatureDbi : public U2FeatureDbi, public SQLiteChildDBICommon { public: SQLiteFeatureDbi(SQLiteDbi* dbi); virtual void initSqlSchema(U2OpStatus& os); /** Reads feature data by id */ virtual U2Feature getFeature(const U2DataId& featureId, U2OpStatus& os); /** Counts features that matched the query */ virtual qint64 countFeatures(const FeatureQuery& fq, U2OpStatus& os); /** Returns features that matched the query. Returns NULL if error occurs */ virtual U2DbiIterator<U2Feature>* getFeatures(const FeatureQuery& q, U2OpStatus& os); /** Returns all keys of a specified feature */ virtual QList<U2FeatureKey> getFeatureKeys(const U2DataId& featureId, U2OpStatus& os); /** Creates new feature in database. Uses all fields in 'feature' param and assign database id to it as the result Requires: U2DbiFeature_WriteFeature feature support */ virtual void createFeature(U2Feature& feature, const QList<U2FeatureKey>& keys, U2OpStatus& os); /** Adds key to feature Requires: U2DbiFeature_WriteFeature feature support */ virtual void addKey(const U2DataId& featureId, const U2FeatureKey& key, U2OpStatus& os); /** Removes all feature keys with a specified name Requires: U2DbiFeature_WriteFeature feature support */ virtual void removeAllKeys(const U2DataId& featureId, const QString& keyName, U2OpStatus& os); /** Removes all feature keys with a specified name and value Requires: U2DbiFeature_WriteFeature feature support */ virtual void removeAllKeys(const U2DataId& featureId, const U2FeatureKey& key, U2OpStatus& os); /** Updates feature key. Requires: U2DbiFeature_WriteFeature feature support */ virtual void updateKeyValue(const U2DataId& featureId, const U2FeatureKey& key, U2OpStatus& os); /** Updates feature location. Features with U2Region(0,0) have no specified location Requires: U2DbiFeature_WriteFeature feature support */ virtual void updateLocation(const U2DataId& featureId, const U2FeatureLocation& location, U2OpStatus& os); /** Updates feature name Requires: U2DbiFeature_WriteFeature feature support */ virtual void updateName(const U2DataId& featureId, const QString& newName, U2OpStatus& os); /** Updates feature parent Requires: U2DbiFeature_WriteFeature feature support */ virtual void updateParentId(const U2DataId& featureId, const U2DataId& parentId, U2OpStatus& os); /** Removes the feature from database Requires: U2DbiFeature_WriteFeature feature support */ virtual void removeFeature(const U2DataId& featureId, U2OpStatus& os); private: SQLiteQuery* createFeatureQuery(const QString& selectPart, const FeatureQuery& fq, bool useOrder, U2OpStatus& os, SQLiteTransaction* trans = NULL); }; } //namespace #endif
[ "igolkinaanna11@gmail.com" ]
igolkinaanna11@gmail.com
ab64aa296b39923199843f7afbae1dd3ab805516
830f2fb3a85ef09eabdaff75180bc0ae12fca050
/vEngine/vShadowMappingMaterial.cpp
ece348edd763c80e31fe930298acb597cc1c8941
[]
no_license
WeyrSDev/vEngine-b
abe8d34cbb75e9f50fa5d678e95e44dcc5bbd88c
f41ca718fbed00f5c143a7b2158f821274b2c020
refs/heads/master
2021-05-14T12:24:10.422201
2018-02-03T23:34:00
2018-02-03T23:34:00
116,407,958
0
0
null
null
null
null
UTF-8
C++
false
false
5,031
cpp
#include "vShadowMappingMaterial.h" #include "vException.h" #include "vMesh.h" namespace vEngine { RTTI_DEFINITIONS(ShadowMappingMaterial) ShadowMappingMaterial::ShadowMappingMaterial() : Material("shadow_mapping"), MATERIAL_VARIABLE_INITIALIZATION(WorldViewProjection), MATERIAL_VARIABLE_INITIALIZATION(World), MATERIAL_VARIABLE_INITIALIZATION(SpecularColor), MATERIAL_VARIABLE_INITIALIZATION(SpecularPower), MATERIAL_VARIABLE_INITIALIZATION(AmbientColor), MATERIAL_VARIABLE_INITIALIZATION(LightColor), MATERIAL_VARIABLE_INITIALIZATION(LightPosition), MATERIAL_VARIABLE_INITIALIZATION(LightRadius), MATERIAL_VARIABLE_INITIALIZATION(CameraPosition), MATERIAL_VARIABLE_INITIALIZATION(ColorTexture), MATERIAL_VARIABLE_INITIALIZATION(ProjectiveTextureMatrix), MATERIAL_VARIABLE_INITIALIZATION(ShadowMap), MATERIAL_VARIABLE_INITIALIZATION(ShadowMapSize) { } MATERIAL_VARIABLE_DEFINITION(ShadowMappingMaterial, WorldViewProjection) MATERIAL_VARIABLE_DEFINITION(ShadowMappingMaterial, World) MATERIAL_VARIABLE_DEFINITION(ShadowMappingMaterial, SpecularColor) MATERIAL_VARIABLE_DEFINITION(ShadowMappingMaterial, SpecularPower) MATERIAL_VARIABLE_DEFINITION(ShadowMappingMaterial, AmbientColor) MATERIAL_VARIABLE_DEFINITION(ShadowMappingMaterial, LightColor) MATERIAL_VARIABLE_DEFINITION(ShadowMappingMaterial, LightPosition) MATERIAL_VARIABLE_DEFINITION(ShadowMappingMaterial, LightRadius) MATERIAL_VARIABLE_DEFINITION(ShadowMappingMaterial, CameraPosition) MATERIAL_VARIABLE_DEFINITION(ShadowMappingMaterial, ColorTexture) MATERIAL_VARIABLE_DEFINITION(ShadowMappingMaterial, ProjectiveTextureMatrix) MATERIAL_VARIABLE_DEFINITION(ShadowMappingMaterial, ShadowMap) MATERIAL_VARIABLE_DEFINITION(ShadowMappingMaterial, ShadowMapSize) void ShadowMappingMaterial::Initialize(Effect& effect) { Material::Initialize(effect); MATERIAL_VARIABLE_RETRIEVE(WorldViewProjection) MATERIAL_VARIABLE_RETRIEVE(World) MATERIAL_VARIABLE_RETRIEVE(SpecularColor) MATERIAL_VARIABLE_RETRIEVE(SpecularPower) MATERIAL_VARIABLE_RETRIEVE(AmbientColor) MATERIAL_VARIABLE_RETRIEVE(LightColor) MATERIAL_VARIABLE_RETRIEVE(LightPosition) MATERIAL_VARIABLE_RETRIEVE(LightRadius) MATERIAL_VARIABLE_RETRIEVE(CameraPosition) MATERIAL_VARIABLE_RETRIEVE(ColorTexture) MATERIAL_VARIABLE_RETRIEVE(ProjectiveTextureMatrix) MATERIAL_VARIABLE_RETRIEVE(ShadowMap) MATERIAL_VARIABLE_RETRIEVE(ShadowMapSize) D3D11_INPUT_ELEMENT_DESC inputElementDescriptions[] = { { "POSITION", 0, DXGI_FORMAT_R32G32B32A32_FLOAT, 0, 0, D3D11_INPUT_PER_VERTEX_DATA, 0 }, { "TEXCOORD", 0, DXGI_FORMAT_R32G32_FLOAT, 0, D3D11_APPEND_ALIGNED_ELEMENT, D3D11_INPUT_PER_VERTEX_DATA, 0 }, { "NORMAL", 0, DXGI_FORMAT_R32G32B32_FLOAT, 0, D3D11_APPEND_ALIGNED_ELEMENT, D3D11_INPUT_PER_VERTEX_DATA, 0 } }; CreateInputLayout("shadow_mapping", "p0", inputElementDescriptions, ARRAYSIZE(inputElementDescriptions)); CreateInputLayout("shadow_mapping_manual_pcf", "p0", inputElementDescriptions, ARRAYSIZE(inputElementDescriptions)); CreateInputLayout("shadow_mapping_pcf", "p0", inputElementDescriptions, ARRAYSIZE(inputElementDescriptions)); } void ShadowMappingMaterial::CreateVertexBuffer(ID3D11Device* device, const Mesh& mesh, ID3D11Buffer** vertexBuffer) const { const std::vector<DirectX::XMFLOAT3>& sourceVertices = mesh.Vertices(); std::vector<DirectX::XMFLOAT3>* textureCoordinates = mesh.TextureCoordinates().at(0); assert(textureCoordinates->size() == sourceVertices.size()); const std::vector<DirectX::XMFLOAT3>& normals = mesh.Normals(); assert(textureCoordinates->size() == sourceVertices.size()); std::vector<VertexPositionTextureNormal> vertices; vertices.reserve(sourceVertices.size()); for (UINT i = 0; i < sourceVertices.size(); i++) { DirectX::XMFLOAT3 position = sourceVertices.at(i); DirectX::XMFLOAT3 uv = textureCoordinates->at(i); DirectX::XMFLOAT3 normal = normals.at(i); vertices.push_back(VertexPositionTextureNormal(DirectX::XMFLOAT4(position.x, position.y, position.z, 1.0f), DirectX::XMFLOAT2(uv.x, uv.y), normal)); } CreateVertexBuffer(device, &vertices[0], vertices.size(), vertexBuffer); } void ShadowMappingMaterial::CreateVertexBuffer(ID3D11Device* device, VertexPositionTextureNormal* vertices, UINT vertexCount, ID3D11Buffer** vertexBuffer) const { D3D11_BUFFER_DESC vertexBufferDesc; ZeroMemory(&vertexBufferDesc, sizeof(vertexBufferDesc)); vertexBufferDesc.ByteWidth = VertexSize() * vertexCount; vertexBufferDesc.Usage = D3D11_USAGE_IMMUTABLE; vertexBufferDesc.BindFlags = D3D11_BIND_VERTEX_BUFFER; D3D11_SUBRESOURCE_DATA vertexSubResourceData; ZeroMemory(&vertexSubResourceData, sizeof(vertexSubResourceData)); vertexSubResourceData.pSysMem = vertices; if (FAILED(device->CreateBuffer(&vertexBufferDesc, &vertexSubResourceData, vertexBuffer))) { throw Exception("ID3D11Device::CreateBuffer() failed."); } } UINT ShadowMappingMaterial::VertexSize() const { return sizeof(VertexPositionTextureNormal); } }
[ "damian_yarker@hotmail.com" ]
damian_yarker@hotmail.com
c86ac5be2424a798749514c951a1a011b5e3a9bd
b5e8a7b5798d6cb124aaf7172d78478eb72bd733
/peg/ioi0011.cpp
12b04001b982b3cbc2091b6a724d9dc82e1904cc
[]
no_license
manolismih/OJsolutions
8e62b29ac604077473926dd63d8a636181db11be
809999d34036033e3a8757518588bf5847ca7f5f
refs/heads/master
2022-05-01T01:19:52.014312
2022-03-10T13:37:13
2022-03-10T13:37:13
244,162,474
2
0
null
null
null
null
UTF-8
C++
false
false
379
cpp
#include <cstdio> #include <algorithm> using namespace std; int n, dp[5005][2]; char s[5005]; int main() { scanf("%d%s",&n,s); for (int j=1; j<n; j++) { for (int i=n-2; i>=j; i--) dp[i][j%2]=0; for (int i=j-1; i>=0; i--) if (s[i]==s[j]) dp[i][j%2] = dp[i+1][(j-1)%2]; else dp[i][j%2] = 1 + min(dp[i+1][j%2], dp[i][(j+1)%2]); } printf("%d\n",dp[0][(n-1)%2]); }
[ "manolismih@windowslive.com" ]
manolismih@windowslive.com
e13ddde681a5096424ff5678b78264dfa253b8d5
d2d6aae454fd2042c39127e65fce4362aba67d97
/build/iOS/Debug/include/Uno.Time.CalendarSystem.h
ded9b8c728fa3d4f2b3c01b331de71a0e80ee905
[]
no_license
Medbeji/Eventy
de88386ff9826b411b243d7719b22ff5493f18f5
521261bca5b00ba879e14a2992e6980b225c50d4
refs/heads/master
2021-01-23T00:34:16.273411
2017-09-24T21:16:34
2017-09-24T21:16:34
92,812,809
2
0
null
null
null
null
UTF-8
C++
false
false
3,473
h
// This file was generated based on '/Users/medbeji/Library/Application Support/Fusetools/Packages/UnoCore/1.0.11/source/uno/time/$.uno'. // WARNING: Changes might be lost if you edit this file directly. #pragma once #include <Uno.Object.h> namespace g{namespace Uno{namespace Time{namespace Calendars{struct Era;}}}} namespace g{namespace Uno{namespace Time{namespace Calendars{struct WeekYearCalculator;}}}} namespace g{namespace Uno{namespace Time{namespace Calendars{struct YearMonthDayCalculator;}}}} namespace g{namespace Uno{namespace Time{struct CalendarSystem;}}} namespace g{namespace Uno{namespace Time{struct Instant;}}} namespace g{ namespace Uno{ namespace Time{ // public sealed class CalendarSystem :8 // { uType* CalendarSystem_typeof(); void CalendarSystem__ctor__fn(CalendarSystem* __this, uString* id, uString* name, ::g::Uno::Time::Calendars::YearMonthDayCalculator* yearMonthDayCalculator, int* minDaysInFirstWeek); void CalendarSystem__GetDayOfMonth_fn(CalendarSystem* __this, ::g::Uno::Time::Instant* instant, int* __retval); void CalendarSystem__GetHourOfDay_fn(CalendarSystem* __this, ::g::Uno::Time::Instant* instant, int* __retval); void CalendarSystem__GetInstant_fn(CalendarSystem* __this, int* year, int* monthOfYear, int* dayOfMonth, int* hourOfDay, int* minuteOfHour, ::g::Uno::Time::Instant* __retval); void CalendarSystem__GetMinuteOfHour_fn(CalendarSystem* __this, ::g::Uno::Time::Instant* instant, int* __retval); void CalendarSystem__GetMonthOfYear_fn(CalendarSystem* __this, ::g::Uno::Time::Instant* instant, int* __retval); void CalendarSystem__GetSecondOfMinute_fn(CalendarSystem* __this, ::g::Uno::Time::Instant* instant, int* __retval); void CalendarSystem__GetYear_fn(CalendarSystem* __this, ::g::Uno::Time::Instant* instant, int* __retval); void CalendarSystem__get_Iso_fn(CalendarSystem** __retval); void CalendarSystem__New1_fn(uString* id, uString* name, ::g::Uno::Time::Calendars::YearMonthDayCalculator* yearMonthDayCalculator, int* minDaysInFirstWeek, CalendarSystem** __retval); void CalendarSystem__ToString_fn(CalendarSystem* __this, uString** __retval); struct CalendarSystem : uObject { uStrong<uArray*> _eras; static uSStrong<CalendarSystem*> _gregorianCalendarSystem_; static uSStrong<CalendarSystem*>& _gregorianCalendarSystem() { return _gregorianCalendarSystem_; } uStrong<uString*> _id; int64_t _maxTicks; int _maxYear; int64_t _minTicks; int _minYear; uStrong<uString*> _name; uStrong< ::g::Uno::Time::Calendars::WeekYearCalculator*> _weekYearCalculator; uStrong< ::g::Uno::Time::Calendars::YearMonthDayCalculator*> _yearMonthDayCalculator; void ctor_(uString* id, uString* name, ::g::Uno::Time::Calendars::YearMonthDayCalculator* yearMonthDayCalculator, int minDaysInFirstWeek); int GetDayOfMonth(::g::Uno::Time::Instant instant); int GetHourOfDay(::g::Uno::Time::Instant instant); ::g::Uno::Time::Instant GetInstant(int year, int monthOfYear, int dayOfMonth, int hourOfDay, int minuteOfHour); int GetMinuteOfHour(::g::Uno::Time::Instant instant); int GetMonthOfYear(::g::Uno::Time::Instant instant); int GetSecondOfMinute(::g::Uno::Time::Instant instant); int GetYear(::g::Uno::Time::Instant instant); static CalendarSystem* New1(uString* id, uString* name, ::g::Uno::Time::Calendars::YearMonthDayCalculator* yearMonthDayCalculator, int minDaysInFirstWeek); static CalendarSystem* Iso(); }; // } }}} // ::g::Uno::Time
[ "medbeji@MacBook-Pro-de-MedBeji.local" ]
medbeji@MacBook-Pro-de-MedBeji.local
9d36761d14df3aa0228cd01043fe6005df4a49b7
cddccb79d4dc2a8269b27160d3f01c053b583809
/UISourseCode/I4.h
df631207cf2c6cd025a8271dd321f3f94e8031f9
[]
no_license
ZiJiaW/SudokuGame
175ae404367cacd17435e2a1a4296b9b838ac4b6
863998e9eb0a4a736325075c013cd3890b7ee641
refs/heads/master
2021-09-13T14:20:58.951504
2018-05-01T08:51:30
2018-05-01T08:51:30
105,896,858
1
0
null
null
null
null
UTF-8
C++
false
false
650
h
#pragma once #include "IntroductionScene.h" #include "HelloWorldScene.h" #include "CocosGui.h" #include "cocos-ext.h" #include "GUI\CCControlExtension\CCControl.h" #include "GUI\CCControlExtension\CCControlButton.h" USING_NS_CC; USING_NS_CC_EXT; using namespace cocos2d::ui; class Intro4 :public cocos2d::Layer { public: static cocos2d::Scene* createScene(); virtual bool init(); // return item callback void ReturnCallBack(cocos2d::Ref* pSender, Control::EventType type); void from4to3(cocos2d::Ref* pSender, Control::EventType type); void from4to5(cocos2d::Ref* pSender, Control::EventType type); CREATE_FUNC(Intro4); };
[ "964513305@qq.com" ]
964513305@qq.com
b7c90487fcc83a806b7032cedf0e96b3404e04ac
6668c8a2af359498dccf3da4c0cb0ffb8b6081f0
/antimodule/antimodule.cpp
de3ce9a0c4caaf880e828740c7c227d72a11a740
[ "Apache-2.0" ]
permissive
tsarenkotxt/jvmti-tools
6d3f865ab2505a2ce3da09ed097fb4528e3f287d
1a53bec944cfcb5193f7ce7a8a27bb460fe12d0c
refs/heads/master
2020-08-29T03:43:27.437033
2019-10-27T22:35:24
2019-10-27T22:35:24
217,913,987
0
0
Apache-2.0
2019-10-27T20:41:44
2019-10-27T20:41:44
null
UTF-8
C++
false
false
2,920
cpp
/* * Copyright 2019 Odnoklassniki Ltd, Mail.Ru Group * * 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 <jvmti.h> #include <string.h> void JNICALL VMInit(jvmtiEnv* jvmti, JNIEnv* env, jthread thread) { jclass Module = env->FindClass("java/lang/Module"); if (Module == NULL) { // Seems like pre-module JDK env->ExceptionClear(); return; } jmethodID getPackages = env->GetMethodID(Module, "getPackages", "()Ljava/util/Set;"); jmethodID getUnnamedModule = env->GetMethodID( env->FindClass("java/lang/ClassLoader"), "getUnnamedModule", "()Ljava/lang/Module;"); jmethodID toString = env->GetMethodID( env->FindClass("java/lang/Object"), "toString", "()Ljava/lang/String;"); // Get unnamed module of the current thread's ClassLoader jvmtiThreadInfo thread_info; jvmti->GetThreadInfo(NULL, &thread_info); jobject unnamed_module = env->CallObjectMethod(thread_info.context_class_loader, getUnnamedModule); jint module_count = 0; jobject* modules = NULL; jvmti->GetAllModules(&module_count, &modules); // Scan all loaded modules for (int i = 0; i < module_count; i++) { jvmti->AddModuleReads(modules[i], unnamed_module); // Get all module packages as one string: "[java.lang, java.io, ...]" jobject packages = env->CallObjectMethod(modules[i], getPackages); jstring str = (jstring) env->CallObjectMethod(packages, toString); char* c_str = (char*) env->GetStringUTFChars(str, NULL); if (c_str == NULL) continue; // Export and open every package to the unnamed module char* package = strtok(c_str + 1, ", ]"); while (package != NULL) { jvmti->AddModuleExports(modules[i], package, unnamed_module); jvmti->AddModuleOpens(modules[i], package, unnamed_module); package = strtok(NULL, ", ]"); } env->ReleaseStringUTFChars(str, c_str); } jvmti->Deallocate((unsigned char*) modules); } JNIEXPORT jint JNICALL Agent_OnLoad(JavaVM* vm, char* options, void* reserved) { jvmtiEnv* jvmti; vm->GetEnv((void**) &jvmti, JVMTI_VERSION_1_0); jvmtiEventCallbacks callbacks = {0}; callbacks.VMInit = VMInit; jvmti->SetEventCallbacks(&callbacks, sizeof(callbacks)); jvmti->SetEventNotificationMode(JVMTI_ENABLE, JVMTI_EVENT_VM_INIT, NULL); return 0; }
[ "andrey.pangin@corp.mail.ru" ]
andrey.pangin@corp.mail.ru
56da907c06ac937eb6ecf00597fa6bfae0d3fd2b
93e579c9737b8db6b84edf97651a8472f97daf9e
/library/trunk/src/geometry/Point.h
fe2b10394091b8616bc5239bfd4f1a128927819b
[]
no_license
iwasz/bajka
fdc3575a4787090b2f31a1cfb42a6bf45b6c0edb
730d108ba793e8a5e7fc3ff99470803da2def0bd
refs/heads/master
2021-01-10T20:40:07.413795
2013-03-17T23:37:59
2013-03-17T23:37:59
29,887,857
0
0
null
null
null
null
UTF-8
C++
false
false
2,020
h
/**************************************************************************** * * * Author : lukasz.iwaszkiewicz@gmail.com * * ~~~~~~~~ * * License : see COPYING file for details. * * ~~~~~~~~~ * ****************************************************************************/ #ifndef MODEL2_POINT_H_ #define MODEL2_POINT_H_ #include <boost/geometry/geometries/register/point.hpp> #include <boost/geometry/geometries/point_xy.hpp> #include <string> #include <variant/Variant.h> /** * Prymitywy geometryczne. */ namespace Geometry { /** * Punkt. * \ingroup Geometry */ struct Point { float x; float y; }; BOOST_STATIC_ASSERT (boost::has_trivial_assign <Point>::value); BOOST_STATIC_ASSERT (boost::has_trivial_copy <Point>::value); BOOST_STATIC_ASSERT (boost::is_pod <Point>::value); /** * Wyrzucanie pinktu do strumienia. * \ingroup Geometry */ extern std::ostream &operator<< (std::ostream &o, Geometry::Point const &p); extern std::string toString (Geometry::Point const &p); /** * Początek układu współrzednych - stała. */ const Point ZERO_POINT = {0, 0}; /** * Tworzy punkt. */ static inline Point makePoint (float x, float y) { Point p = {x, y}; return p; } /** * Zwraca początek układu współrzędnych. */ static inline Point makePoint () { return ZERO_POINT; } /** * Tworzy punkt z reprezentacji napisowej. */ extern Point stringToPoint (std::string const &p); /** * Tworzy punkt z reprezentacji napisowej, zwraca jako Core::Variant. */ extern Core::Variant stringToPointVariant (std::string const &p); } // namespace /* * Register my custom point Type. */ BOOST_GEOMETRY_REGISTER_POINT_2D (Geometry::Point, double, cs::cartesian, x, y) # endif /* POINT_H_ */
[ "lukasz.iwaszkiewicz@gmail.com" ]
lukasz.iwaszkiewicz@gmail.com
dea0d26da4405b7d7f85c9074af7e30f8bba1ac4
4ee17b9f6704719202dfc7055c879f689a9b8645
/AlgorithmClass/week04/Prob12/Prob12/Prob12.cpp
8feb6f05bb175d4ba009ba83362000177808328f
[]
no_license
duddn14758/Algorithm-Solving-Strategy
e185d273a77e9723c08b36def8df8cf34eeb6a54
3d7408ec4d2d5842345c44057b2c1fe59f8dc52f
refs/heads/master
2023-04-18T12:15:53.115217
2021-05-02T09:41:24
2021-05-02T09:41:24
151,530,273
0
0
null
null
null
null
UTF-8
C++
false
false
1,170
cpp
#include <stdio.h> #include <stdlib.h> #define R 2 #define B 3 #define L 4 #define T 5 int **map; int K; bool findPath(int i, int j, int direction); int main() { int N; scanf("%d", &N); while (N--) { scanf("%d", &K); map = (int**)malloc(sizeof(int*)*K); for (int i = 0; i < K; i++) { map[i] = (int*)malloc(sizeof(int)*K); } for (int i = 0; i < K; i++) { for (int j = 0; j < K; j++) { scanf("%d", &map[i][j]); } } if (findPath(0, 0, R)) printf("YES\n"); else printf("NO"); free(map[0]); free(map); } return 0; } bool findPath(int i, int j, int direction) { if (i < 0 || j < 0 || i >= K || j >= K || map[i][j] == direction || map[i][j] == 1) { return false; } if (i == K - 1 && j == K - 1) return true; map[i][j] = direction; if (direction == R) return (findPath(i, j + 1, R) || findPath(i + 1, j, B)); else if (direction == B) return (findPath(i + 1, j, B) || findPath(i, j - 1, L)); else if (direction == L) return (findPath(i, j - 1, L) || findPath(i - 1, j, T)); else if (direction == T) return (findPath(i - 1, j, T) || findPath(i, j + 1, R)); map[i][j] = 0; return false; }
[ "duddn14758@naver.com" ]
duddn14758@naver.com
c910fdb328ea807d3bb5bf2c6efe4fc2fadecd83
c48b178ea9675d68fa1b9e5b54082786441cef9d
/src/test/rpc_wallet_tests.cpp
d70fb03f90ddbee3962d92dd9cd80dc4bb3594cd
[ "MIT" ]
permissive
devo2018/bony
51bc4d49f84e952eaed455a91bfd027fc1db953a
628710c3535c484ea06298ecfe63b935572f7636
refs/heads/master
2020-04-08T09:10:53.027936
2018-12-12T18:27:07
2018-12-12T18:27:07
159,211,872
0
1
null
null
null
null
UTF-8
C++
false
false
8,606
cpp
// Copyright (c) 2013-2014 The Bitcoin Core developers // Copyright (c) 2017 The BONY developers // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "rpc/server.h" #include "rpc/client.h" #include "base58.h" #include "wallet.h" #include <boost/algorithm/string.hpp> #include <boost/test/unit_test.hpp> #include <univalue.h> using namespace std; extern UniValue createArgs(int nRequired, const char* address1 = NULL, const char* address2 = NULL); extern UniValue CallRPC(string args); extern CWallet* pwalletMain; BOOST_AUTO_TEST_SUITE(rpc_wallet_tests) BOOST_AUTO_TEST_CASE(rpc_addmultisig) { LOCK(pwalletMain->cs_wallet); rpcfn_type addmultisig = tableRPC["addmultisigaddress"]->actor; // old, 65-byte-long: const char address1Hex[] = "041431A18C7039660CD9E3612A2A47DC53B69CB38EA4AD743B7DF8245FD0438F8E7270415F1085B9DC4D7DA367C69F1245E27EE5552A481D6854184C80F0BB8456"; // new, compressed: const char address2Hex[] = "029BBEFF390CE736BD396AF43B52A1C14ED52C086B1E5585C15931F68725772BAC"; UniValue v; CBitcoinAddress address; BOOST_CHECK_NO_THROW(v = addmultisig(createArgs(1, address1Hex), false)); address.SetString(v.get_str()); BOOST_CHECK(address.IsValid() && address.IsScript()); BOOST_CHECK_NO_THROW(v = addmultisig(createArgs(1, address1Hex, address2Hex), false)); address.SetString(v.get_str()); BOOST_CHECK(address.IsValid() && address.IsScript()); BOOST_CHECK_NO_THROW(v = addmultisig(createArgs(2, address1Hex, address2Hex), false)); address.SetString(v.get_str()); BOOST_CHECK(address.IsValid() && address.IsScript()); BOOST_CHECK_THROW(addmultisig(createArgs(0), false), runtime_error); BOOST_CHECK_THROW(addmultisig(createArgs(1), false), runtime_error); BOOST_CHECK_THROW(addmultisig(createArgs(2, address1Hex), false), runtime_error); BOOST_CHECK_THROW(addmultisig(createArgs(1, ""), false), runtime_error); BOOST_CHECK_THROW(addmultisig(createArgs(1, "NotAValidPubkey"), false), runtime_error); string short1(address1Hex, address1Hex + sizeof(address1Hex) - 2); // last byte missing BOOST_CHECK_THROW(addmultisig(createArgs(2, short1.c_str()), false), runtime_error); string short2(address1Hex + 1, address1Hex + sizeof(address1Hex)); // first byte missing BOOST_CHECK_THROW(addmultisig(createArgs(2, short2.c_str()), false), runtime_error); } BOOST_AUTO_TEST_CASE(rpc_wallet) { // Test RPC calls for various wallet statistics UniValue r; LOCK2(cs_main, pwalletMain->cs_wallet); CPubKey demoPubkey = pwalletMain->GenerateNewKey(); CBitcoinAddress demoAddress = CBitcoinAddress(CTxDestination(demoPubkey.GetID())); UniValue retValue; string strAccount = "walletDemoAccount"; string strPurpose = "receive"; BOOST_CHECK_NO_THROW({ /*Initialize Wallet with an account */ CWalletDB walletdb(pwalletMain->strWalletFile); CAccount account; account.vchPubKey = demoPubkey; pwalletMain->SetAddressBook(account.vchPubKey.GetID(), strAccount, strPurpose); walletdb.WriteAccount(strAccount, account); }); CPubKey setaccountDemoPubkey = pwalletMain->GenerateNewKey(); CBitcoinAddress setaccountDemoAddress = CBitcoinAddress(CTxDestination(setaccountDemoPubkey.GetID())); /********************************* * setaccount *********************************/ BOOST_CHECK_NO_THROW(CallRPC("setaccount " + setaccountDemoAddress.ToString() + " nullaccount")); /* D8w12Vu3WVhn543dgrUUf9uYu6HLwnPm5R is not owned by the test wallet. */ BOOST_CHECK_THROW(CallRPC("setaccount D8w12Vu3WVhn543dgrUUf9uYu6HLwnPm5R nullaccount"), runtime_error); BOOST_CHECK_THROW(CallRPC("setaccount"), runtime_error); /* D8w12Vu3WVhn543dgrUUf9uYu6HLwnPm5 (33 chars) is an illegal address (should be 34 chars) */ BOOST_CHECK_THROW(CallRPC("setaccount D8w12Vu3WVhn543dgrUUf9uYu6HLwnPm5 nullaccount"), runtime_error); /********************************* * listunspent *********************************/ BOOST_CHECK_NO_THROW(CallRPC("listunspent")); BOOST_CHECK_THROW(CallRPC("listunspent string"), runtime_error); BOOST_CHECK_THROW(CallRPC("listunspent 0 string"), runtime_error); BOOST_CHECK_THROW(CallRPC("listunspent 0 1 not_array"), runtime_error); BOOST_CHECK_THROW(CallRPC("listunspent 0 1 [] extra"), runtime_error); BOOST_CHECK_NO_THROW(r = CallRPC("listunspent 0 1 []")); BOOST_CHECK(r.get_array().empty()); /********************************* * listreceivedbyaddress *********************************/ BOOST_CHECK_NO_THROW(CallRPC("listreceivedbyaddress")); BOOST_CHECK_NO_THROW(CallRPC("listreceivedbyaddress 0")); BOOST_CHECK_THROW(CallRPC("listreceivedbyaddress not_int"), runtime_error); BOOST_CHECK_THROW(CallRPC("listreceivedbyaddress 0 not_bool"), runtime_error); BOOST_CHECK_NO_THROW(CallRPC("listreceivedbyaddress 0 true")); BOOST_CHECK_THROW(CallRPC("listreceivedbyaddress 0 true extra"), runtime_error); /********************************* * listreceivedbyaccount *********************************/ BOOST_CHECK_NO_THROW(CallRPC("listreceivedbyaccount")); BOOST_CHECK_NO_THROW(CallRPC("listreceivedbyaccount 0")); BOOST_CHECK_THROW(CallRPC("listreceivedbyaccount not_int"), runtime_error); BOOST_CHECK_THROW(CallRPC("listreceivedbyaccount 0 not_bool"), runtime_error); BOOST_CHECK_NO_THROW(CallRPC("listreceivedbyaccount 0 true")); BOOST_CHECK_THROW(CallRPC("listreceivedbyaccount 0 true extra"), runtime_error); /********************************* * getrawchangeaddress *********************************/ BOOST_CHECK_NO_THROW(CallRPC("getrawchangeaddress")); /********************************* * getnewaddress *********************************/ BOOST_CHECK_NO_THROW(CallRPC("getnewaddress")); BOOST_CHECK_NO_THROW(CallRPC("getnewaddress getnewaddress_demoaccount")); /********************************* * getaccountaddress *********************************/ BOOST_CHECK_NO_THROW(CallRPC("getaccountaddress \"\"")); BOOST_CHECK_NO_THROW(CallRPC("getaccountaddress accountThatDoesntExists")); // Should generate a new account BOOST_CHECK_NO_THROW(retValue = CallRPC("getaccountaddress " + strAccount)); BOOST_CHECK(CBitcoinAddress(retValue.get_str()).Get() == demoAddress.Get()); /********************************* * getaccount *********************************/ BOOST_CHECK_THROW(CallRPC("getaccount"), runtime_error); BOOST_CHECK_NO_THROW(CallRPC("getaccount " + demoAddress.ToString())); /********************************* * signmessage + verifymessage *********************************/ BOOST_CHECK_NO_THROW(retValue = CallRPC("signmessage " + demoAddress.ToString() + " mymessage")); BOOST_CHECK_THROW(CallRPC("signmessage"), runtime_error); /* Should throw error because this address is not loaded in the wallet */ BOOST_CHECK_THROW(CallRPC("signmessage D8w12Vu3WVhn543dgrUUf9uYu6HLwnPm5R mymessage"), runtime_error); /* missing arguments */ BOOST_CHECK_THROW(CallRPC("verifymessage " + demoAddress.ToString()), runtime_error); BOOST_CHECK_THROW(CallRPC("verifymessage " + demoAddress.ToString() + " " + retValue.get_str()), runtime_error); /* Illegal address */ BOOST_CHECK_THROW(CallRPC("verifymessage D8w12Vu3WVhn543dgrUUf9uYu6HLwnPm5 " + retValue.get_str() + " mymessage"), runtime_error); /* wrong address */ BOOST_CHECK(CallRPC("verifymessage D8w12Vu3WVhn543dgrUUf9uYu6HLwnPm5R " + retValue.get_str() + " mymessage").get_bool() == false); /* Correct address and signature but wrong message */ BOOST_CHECK(CallRPC("verifymessage " + demoAddress.ToString() + " " + retValue.get_str() + " wrongmessage").get_bool() == false); /* Correct address, message and signature*/ BOOST_CHECK(CallRPC("verifymessage " + demoAddress.ToString() + " " + retValue.get_str() + " mymessage").get_bool() == true); /********************************* * getaddressesbyaccount *********************************/ BOOST_CHECK_THROW(CallRPC("getaddressesbyaccount"), runtime_error); BOOST_CHECK_NO_THROW(retValue = CallRPC("getaddressesbyaccount " + strAccount)); UniValue arr = retValue.get_array(); BOOST_CHECK(arr.size() > 0); BOOST_CHECK(CBitcoinAddress(arr[0].get_str()).Get() == demoAddress.Get()); } BOOST_AUTO_TEST_SUITE_END()
[ "45319613+devo2018@users.noreply.github.com" ]
45319613+devo2018@users.noreply.github.com
8e212738ad7c38f40e7cadcf008f4f42e0e93202
eb799d8f94a9236c28cb834916de35bfd062dae2
/kvdb/third-party/kvdbapi/kvdb_get.cc
103483e29585123966b09c260d53af5469eef803
[ "Apache-2.0" ]
permissive
OpenMPDK/KVRocks
67784cda7f84b4dfa4bf4caad2df915b3831310e
8c76cb1cf756470ee9acf34d07e4f6f77cb18e3c
refs/heads/master
2022-06-23T16:19:47.183760
2021-01-21T09:16:15
2021-01-21T09:16:15
209,856,973
44
10
null
2022-06-21T01:55:27
2019-09-20T18:32:10
C++
UTF-8
C++
false
false
16,894
cc
/** * @ Dandan Wang (dandan.wang@samsung.com) */ /** * \addtogroup Doxygen Group * */ /*! \file kvdb_get.cc * \brief Test cases code of the KBDB get(). */ /////////////////////////////////////////////////////////////////////////////////////// // Include files /////////////////////////////////////////////////////////////////////////////////////// //using namespace std; #include "kvdb_test.h" namespace rocksdb { namespace cftest_get { //hainan.liu // counts how many operations were performed class EnvCounter : public EnvWrapper { public: explicit EnvCounter(Env* base) : EnvWrapper(base), num_new_writable_file_(0) {} int GetNumberOfNewWritableFileCalls() { return num_new_writable_file_; } Status NewWritableFile(const std::string& f, unique_ptr<WritableFile>* r, const EnvOptions& soptions) override { ++num_new_writable_file_; return EnvWrapper::NewWritableFile(f, r, soptions); } private: std::atomic<int> num_new_writable_file_; }; //hainan.liu class CFTest_GET: public KVDBTest { public: CFTest_GET(){ env_ = new EnvCounter(Env::Default()); dbname_ = test::TmpDir() + "/get_test"; db_options_.create_if_missing = true; db_options_.fail_if_options_file_error = true; db_options_.env = env_; db_options_.num_cols = 8; DestroyDB(dbname_, Options(db_options_, column_family_options_)); } ~CFTest_GET() { // Close(); //rocksdb::SyncPoint::GetInstance()->LoadDependency({}); //rocksdb::SyncPoint::GetInstance()->ClearAllCallBacks(); //rocksdb::SyncPoint::GetInstance()->DisableProcessing(); if(db_) {Destroy();} // Options options; // options.env = env_; // if (getenv("KEEP_DB")) { // printf("DB is still at %s\n", dbname_.c_str()); // } else if(db_){ // EXPECT_OK(DestroyDB(dbname_, options)); // } delete env_; } std::string Get_Without_Checksums(int cf, const std::string& key) { ReadOptions options; options.verify_checksums = false; std::string result; Status s = db_->Get(options, handles_[cf], Slice(key), &result); if (s.IsNotFound()) { result = "NOT_FOUND"; } else if (!s.ok()) { result = s.ToString(); } return result; } }; TEST_F(CFTest_GET, 912_GetKV){ Open(); //CreateColumnFamilies({"one"}); // Generate log file A. //Reopen(); ASSERT_OK(Put(0, "foo", "v1")); // seqID 1 //sleep(1); ASSERT_EQ("v1", Get(0, "foo")); Close(); } TEST_F(CFTest_GET, 929_GetKVWithCF){ Open(); CreateColumnFamilies({"one"}); // Generate log file A. Reopen(); ASSERT_OK(Put(1, "foo", "v1")); // seqID 1 //sleep(1); ASSERT_EQ("v1", Get(1, "foo")); Close(); } TEST_F(CFTest_GET, 1184_GetKVMultiTimes){ Open(); CreateColumnFamilies({"one"}); // Generate log file A. Reopen(); for (int i=0;i<10;i++){ cout <<i<<endl; ASSERT_OK(Put(1, "foo", "v1")); // seqID 1 cout <<"after put"<<endl; // sleep(1); //Flush(); ASSERT_EQ("v1", Get(1, "foo")); cout <<"after get"<<endl; } Close(); } TEST_F(CFTest_GET, 1067_GetWithoutChecksums){ Open(); // Generate log file A. ASSERT_OK(Put(0, "foo", "v1")); // seqID 1 ASSERT_EQ("v1", Get_Without_Checksums(0, "foo")); Close(); } TEST_F(CFTest_GET, 1068_GetWithoutChecksums_CF){ Open(); CreateColumnFamilies({"one"}); // Generate log file A. ASSERT_OK(Put(1, "foo", "v1")); // seqID 1 //Reopen(); ASSERT_EQ("v1", Get_Without_Checksums(1, "foo")); cout <<"Get_Without_Checksums"<<endl; Close(); } TEST_F(CFTest_GET, 930_GetSameKVInDiffCF){ Open(); CreateColumnFamilies({"one","two"}); delete db_; Status s = TryOpen({"one","default","two"}); cout << s.ToString() <<endl; // Generate log file A. ASSERT_EQ("NOT_FOUND", Get(1,"foo")); ASSERT_EQ("NOT_FOUND", Get(2,"foo")); ASSERT_OK(Put(1,"foo", "v1")); // seqID 1 ASSERT_OK(Put(2,"foo", "v2")); // Flush(); ASSERT_EQ("v1", Get(1,"foo")); ASSERT_EQ("v2", Get(2, "foo")); Close(); } TEST_F(CFTest_GET, 1069_ReopenThenGet){ Open(); // CreateColumnFamilies({"one","two"}); ASSERT_EQ("NOT_FOUND", Get(0,"foo")); ASSERT_OK(Put(0,"foo", "v1")); ASSERT_EQ("v1", Get(0,"foo")); delete db_; Status s = TryOpen({"default"}); cout << s.ToString() <<endl; // Generate log file A. ASSERT_EQ("v1", Get(0, "foo")); Close(); } TEST_F(CFTest_GET, 1070_ReopenThenGet_CFs){ Open(); CreateColumnFamilies({"one","two"}); delete db_; Status s = TryOpen({"default","one","two"}); cout << s.ToString() <<endl; ASSERT_EQ("NOT_FOUND", Get(0,"foo")); ASSERT_EQ("NOT_FOUND", Get(1,"foo")); ASSERT_EQ("NOT_FOUND", Get(2,"foo2")); ASSERT_OK(Put(0,"foo", "v")); ASSERT_OK(Put(1,"foo", "v1")); ASSERT_OK(Put(2,"foo2", "v2")); ASSERT_EQ("v", Get(0,"foo")); ASSERT_EQ("v1", Get(1,"foo")); ASSERT_EQ("v2", Get(2,"foo2")); delete db_; s = TryOpen({"default","one","two"}); cout << s.ToString() <<endl; // Generate log file A. ASSERT_EQ("v", Get(0, "foo")); ASSERT_EQ("v1", Get(1,"foo")); ASSERT_EQ("v2", Get(2,"foo2")); Close(); } //dump 如果drop掉two之后再去Get会core dump,这样就达不到测试的目的了,只能测试drop掉某个CF之后其他的CF还能get到数据。 TEST_F(CFTest_GET, 1071_GetFromDropedCF){ Open(); CreateColumnFamilies({"one","two"}); // Generate log file A. ASSERT_EQ("NOT_FOUND", Get(1,"foo")); ASSERT_EQ("NOT_FOUND", Get(2,"foo")); ASSERT_OK(Put(1,"foo", "v1")); // seqID 1 ASSERT_OK(Put(2,"foo", "v2")); cout <<"before drop 2"<<endl; // DropColumnFamilies({2}); // cout <<"aftre drop 2"<<endl; ASSERT_OK(db_->DropColumnFamily(handles_[2])); db_->DestroyColumnFamilyHandle(handles_[2]); cout << "cf is dropped"<< endl; delete db_; db_=nullptr; Status s = TryOpen({"default","one","two"}); // Reopen(); cout <<s.ToString()<<endl; //Invalid argument: Column family not found:two s = TryOpen({"default","one"}); cout <<s.ToString()<<endl; auto cfh0 = reinterpret_cast<ColumnFamilyHandleImpl*>(handles_[0]); //ASSERT_EQ(4U, cfh0->GetID()); cout << "The CF handle ID is :" << endl; cout<< cfh0->GetID() << endl; cout << "The CF name is :" << endl; cout << cfh0->GetName() << endl; auto cfh1 = reinterpret_cast<ColumnFamilyHandleImpl*>(handles_[1]); //ASSERT_EQ(4U, cfh0->GetID()); cout << "The CF handle ID is :" << endl; cout<< cfh1->GetID() << endl; cout << "The CF name is :" << endl; cout << cfh1->GetName() << endl; auto cfh2 = reinterpret_cast<ColumnFamilyHandleImpl*>(handles_[2]); //ASSERT_EQ(4U, cfh0->GetID()); cout << "The CF handle ID is :" << endl; cout<< cfh2->GetID() << endl; cout << "The CF name is :" << endl; cout << cfh2->GetName() << endl; ASSERT_EQ("v1", Get(1,"foo")); //如果添加reopen的操作则会NotFound cout << Get(1,"foo")<< endl; ReadOptions roptions; roptions.verify_checksums = true; std::string result; s = db_->Get(roptions, handles_[2], "foo", &result); cout<<s.ToString()<<endl; Close(); } TEST_F(CFTest_GET, 931_GetSameKVInMaxCF){ Open(); std::vector<std::string> cf_names; constexpr int kNumCF = 7; for (int i = 1; i <= kNumCF; i++) { cf_names.push_back("cf1-" + ToString(i)); } CreateColumnFamilies(cf_names); delete db_; cf_names.push_back("default"); Status s=TryOpen(cf_names); cout <<s.ToString()<<endl; ASSERT_OK(s); // Generate log file A. ASSERT_EQ("NOT_FOUND", Get(0,"foo")); ASSERT_EQ("NOT_FOUND", Get(1,"foo")); for (int i = 1; i <= kNumCF; i++) { ASSERT_OK(Put(i,"foo", "v1")); } for (int i = 1; i <= kNumCF; i++) { ASSERT_EQ("v1", Get(i, "foo")); } Close(); } TEST_F(CFTest_GET, 1187_SameKeyMultiCF){ Open(); std::vector<std::string> cf_names; constexpr int kNumCF = 7; for (int i = 1; i <= kNumCF; i++) { cf_names.push_back("cf1-" + ToString(i)); } CreateColumnFamilies(cf_names); delete db_; cf_names.push_back("default"); Status s=TryOpen(cf_names); cout <<s.ToString()<<endl; ASSERT_OK(s); for (int i = 0; i <= kNumCF; i++) { ASSERT_EQ("NOT_FOUND",Get(i,"foo")); ASSERT_EQ("NOT_FOUND",Get(i,"foo")); } string v1="v1"; string v2="v2"; for (int i = 0; i <= kNumCF; i++) { ASSERT_OK(Put(i,"foo", "v1"+std::to_string(i))); } for (int i = 0; i <= kNumCF; i++) { ASSERT_EQ("v1"+std::to_string(i), Get(i, "foo")); } for (int i = 0; i <= kNumCF; i++) { ASSERT_OK(Put(i,"foo", "v2"+std::to_string(i))); } for (int i = 0; i <= kNumCF; i++) { ASSERT_EQ("v2"+std::to_string(i), Get(i, "foo")); } Close(); } TEST_F(CFTest_GET, 1188_SameKeyMultiPut){ Open(); std::vector<std::string> cf_names; constexpr int kNumCF = 7; int kNum = 5; for (int i = 1; i <= kNumCF; i++) { cf_names.push_back("cf1-" + ToString(i)); } CreateColumnFamilies(cf_names); delete db_; cf_names.push_back("default"); Status s=TryOpen(cf_names); cout <<s.ToString()<<endl; ASSERT_OK(s); for (int i = 0; i <= kNumCF; i++) { ASSERT_EQ("NOT_FOUND",Get(i,"foo")); ASSERT_EQ("NOT_FOUND",Get(i,"foo")); } // string v1="v1"; // string v2="v2"; for (int i = 0; i <= kNumCF; i++) { ASSERT_OK(Put(i,"foo", "v1"+std::to_string(i))); ASSERT_EQ("v1"+std::to_string(i), Get(i, "foo")); ASSERT_OK(Put(i,"foo", "v2"+std::to_string(i))); ASSERT_EQ("v2"+std::to_string(i), Get(i, "foo")); ASSERT_OK(Put(i,"foo", "v3"+std::to_string(i))); ASSERT_EQ("v3"+std::to_string(i), Get(i, "foo")); ASSERT_OK(Put(i,"foo", "v4"+std::to_string(i))); ASSERT_EQ("v4"+std::to_string(i), Get(i, "foo")); ASSERT_OK(Put(i,"foo", "v5"+std::to_string(i))); ASSERT_EQ("v5"+std::to_string(i), Get(i, "foo")); } Close(); } TEST_F(CFTest_GET, 1186_GetNullKey){ Open(); CreateColumnFamilies({"one"}); // Generate log file A. Reopen(); ASSERT_OK(Put(1, "", "v1")); // seqID 1 ASSERT_OK(Put(0, "", "v0")); //sleep(1); ASSERT_EQ("v0", Get(0, "")); ASSERT_EQ("v1", Get(1, "")); Close(); } TEST_F(CFTest_GET, 1185_GetMultiDB){ Open(); Options option_test; option_test.create_if_missing = true; option_test.fail_if_options_file_error = true; option_test.env = env_; ColumnFamilyOptions column_family_options_test; std::string multi_dbname= test::TmpDir() + "/multiDB_test"; DestroyDB(multi_dbname, Options(option_test, column_family_options_test)); DB* multi_db_ = nullptr; Status s = DB::Open(option_test,multi_dbname,&multi_db_); ASSERT_OK(s); int Num = 10; cout <<"delete db"<<endl; for (int i = 1; i <= Num; i++) { ASSERT_OK(db_->Put(WriteOptions(), handles_[0],"key"+ToString(i), "value"+ToString(i))); ASSERT_OK(multi_db_->Put(WriteOptions(), handles_[0],"key_m"+ToString(i), "value_m"+ToString(i))); // sleep(1); std::string result, result_m; db_->Get(ReadOptions(), handles_[0],"key"+ToString(i),&result); ASSERT_EQ("value"+ToString(i), result); multi_db_->Get(ReadOptions(), handles_[0],"key_m"+ToString(i),&result_m); ASSERT_EQ("value_m"+ToString(i), result_m); } cout <<"delete db"<<endl; delete multi_db_; // multi_db_ = nullptr; ASSERT_OK(DestroyDB(multi_dbname, Options(option_test, column_family_options_test))); } TEST_F(CFTest_GET, 913_GetKV_NonExist){ Open(); //CreateColumnFamilies({"one"}); // Generate log file A. //Reopen(); //ASSERT_OK(Put(0, "foo", "v1")); // seqID 1 //sleep(1); ASSERT_EQ("NOT_FOUND", Get(0, "foo")); //status.code() != Status::Code::kNotFound Close(); } TEST_F(CFTest_GET, 1189_GetKVWithCF_NonExist){ Open(); CreateColumnFamilies({"one"}); // Generate log file A. Reopen(); //ASSERT_OK(Put(1, "foo", "v1")); // seqID 1 //sleep(1); cout <<Get(1, "foo")<<endl; ASSERT_EQ("NOT_FOUND", Get(1, "foo")); Close(); } TEST_F(CFTest_GET, 1190_NonBlocking_Get){ Open(); ReadOptions non_blocking_opts, regular_opts; non_blocking_opts.read_tier = kBlockCacheTier; regular_opts.read_tier = kReadAllTier; std::string result; std::string key; std::string value; ASSERT_OK(Put(0, "a", "b")); for (int i=0; i<1024; i++){ key = "key"+std::to_string(i); value = "value"+std::to_string(i); ASSERT_OK(Put(0, key, value)); } Status s = db_->Get(non_blocking_opts, handles_[0], "a", &result); ASSERT_OK(s); ASSERT_EQ(result, "b"); s = db_->Get(regular_opts, handles_[0], "a", &result); ASSERT_OK(s); ASSERT_EQ(result, "b"); Flush(); Reopen(); // delete db_; // db_ = nullptr; // std::vector<std::string> cf_names; // cf_names.push_back("default"); // s=TryOpen(cf_names); // cout <<s.ToString()<<endl; s = db_->Get(non_blocking_opts, handles_[0], "a", &result); cout <<s.ToString()<<endl; // ASSERT_TRUE(s.IsNotFound()); ASSERT_TRUE(s.IsIncomplete()); s = db_->Get(regular_opts, handles_[0], "a", &result); ASSERT_OK(s); s = db_->Get(non_blocking_opts, handles_[0], "a", &result); ASSERT_OK(s); Close(); } TEST_F(CFTest_GET, 1191_NonBlocking_GetCF){ Open(); CreateColumnFamilies({"one"}); delete db_; Status s = TryOpen({"default","one"}); ASSERT_OK(s); ReadOptions non_blocking_opts, regular_opts; non_blocking_opts.read_tier = kBlockCacheTier; std::string result; ASSERT_OK(Put(1, "a", "b")); s = db_->Get(non_blocking_opts, handles_[1], "a", &result); ASSERT_OK(s); s = db_->Get(regular_opts, handles_[1], "a", &result); ASSERT_OK(s); Flush(); Reopen(); s = db_->Get(non_blocking_opts, handles_[1], "a", &result); //ASSERT_TRUE(s.IsNotFound()); cout <<s.ToString()<<endl; ASSERT_TRUE(s.IsIncomplete()); s = db_->Get(regular_opts, handles_[1], "a", &result); ASSERT_OK(s); s = db_->Get(non_blocking_opts, handles_[1], "a", &result); ASSERT_OK(s); Close(); } TEST_F(CFTest_GET, DISABLED_1192_MultiGetSimple) { // do { Open(); CreateColumnFamilies({"one"}); delete db_; Status stat = TryOpen({"default","one"}); ASSERT_OK(stat); // CreateAndReopenWithCF({"pikachu"}, CurrentOptions()); ASSERT_OK(Put(1, "k1", "v1")); ASSERT_OK(Put(1, "k2", "v2")); ASSERT_OK(Put(1, "k3", "v3")); ASSERT_OK(Put(1, "k4", "v4")); ASSERT_OK(Delete(1, "k4")); ASSERT_OK(Put(1, "k5", "v5")); ASSERT_OK(Delete(1, "no_key")); std::vector<Slice> keys({"k1", "k2", "k3", "k4", "k5", "no_key"}); std::vector<std::string> values(20, "Temporary data to be overwritten"); std::vector<ColumnFamilyHandle*> cfs(keys.size(), handles_[1]); std::vector<Status> s = db_->MultiGet(ReadOptions(), cfs, keys, &values); ASSERT_EQ(values.size(), keys.size()); ASSERT_EQ(values[0], "v1"); ASSERT_EQ(values[1], "v2"); ASSERT_EQ(values[2], "v3"); ASSERT_EQ(values[4], "v5"); ASSERT_OK(s[0]); ASSERT_OK(s[1]); ASSERT_OK(s[2]); ASSERT_TRUE(s[3].IsNotFound()); ASSERT_OK(s[4]); ASSERT_TRUE(s[5].IsNotFound()); // } while (ChangeCompactOptions()); Close(); } TEST_F(CFTest_GET, DISABLED_1193_MultiGetEmpty) { // do { // CreateAndReopenWithCF({"pikachu"}, CurrentOptions()); Open(); CreateColumnFamilies({"one"}); delete db_; Status stat = TryOpen({"default","one"}); ASSERT_OK(stat); // Empty Key Set std::vector<Slice> keys; std::vector<std::string> values; std::vector<ColumnFamilyHandle*> cfs; std::vector<Status> s = db_->MultiGet(ReadOptions(), cfs, keys, &values); ASSERT_EQ(s.size(), 0U); // Empty Database, Empty Key Set Options options; options.create_if_missing = true; DestroyAndReopen(options); CreateColumnFamilies({"one"}); delete db_; stat = TryOpen({"default","one"}); ASSERT_OK(stat); // CreateAndReopenWithCF({"pikachu"}, options); s = db_->MultiGet(ReadOptions(), cfs, keys, &values); ASSERT_EQ(s.size(), 0U); // Empty Database, Search for Keys keys.resize(2); keys[0] = "a"; keys[1] = "b"; cfs.push_back(handles_[0]); cfs.push_back(handles_[1]); s = db_->MultiGet(ReadOptions(), cfs, keys, &values); ASSERT_EQ(static_cast<int>(s.size()), 2); ASSERT_TRUE(s[0].IsNotFound() && s[1].IsNotFound()); // } while (ChangeCompactOptions()); } } //end of namespace cf_test }
[ "hobin.lee@samsung.com" ]
hobin.lee@samsung.com
9bf2947995b0962d37a2f228fc1d8e1b5890d484
169e75df163bb311198562d286d37aad14677101
/tensorflow/tensorflow/compiler/jit/legacy_flags/mark_for_compilation_pass_flags.cc
7277a1d1f8ad5fa045645ead839ab9efa01e89c7
[ "Apache-2.0" ]
permissive
zylo117/tensorflow-gpu-macosx
e553d17b769c67dfda0440df8ac1314405e4a10a
181bc2b37aa8a3eeb11a942d8f330b04abc804b3
refs/heads/master
2022-10-19T21:35:18.148271
2020-10-15T02:33:20
2020-10-15T02:33:20
134,240,831
116
26
Apache-2.0
2022-10-04T23:36:22
2018-05-21T08:29:12
C++
UTF-8
C++
false
false
3,860
cc
/* Copyright 2017 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. ==============================================================================*/ // Legacy flags for the XLA bridge's mark_for_compilation_pass module. #include <mutex> #include <vector> #include "tensorflow/compiler/jit/legacy_flags/mark_for_compilation_pass_flags.h" #include "tensorflow/compiler/xla/legacy_flags/parse_flags_from_env.h" #include "tensorflow/core/platform/types.h" #include "tensorflow/core/util/command_line_flags.h" namespace tensorflow { namespace legacy_flags { // Pointers to the parsed value of the flags and flag descriptors, initialized // via flags_init. static MarkForCompilationPassFlags* flags; static std::vector<Flag>* flag_list; static std::once_flag flags_init; // Allocate *flags. Called via call_once(&flags_init,...). static void AllocateFlags() { flags = new MarkForCompilationPassFlags; flags->tf_xla_auto_jit = 0; flags->tf_xla_min_cluster_size = 2; flags->tf_xla_max_cluster_size = std::numeric_limits<int32>::max(); flags->tf_xla_clustering_debug = false; flags->tf_xla_cpu_global_jit = false; flags->tf_xla_clustering_fuel = std::numeric_limits<int64>::max(); flags->tf_xla_fusion_only = false; flag_list = new std::vector<Flag>( {Flag("tf_xla_auto_jit", &flags->tf_xla_auto_jit, "Control compilation of operators into XLA computations on CPU and " "GPU devices. 0 = use ConfigProto setting; -1 = off; 1 = on for " "things very likely to be improved; 2 = on for everything. " "Experimental."), Flag("tf_xla_min_cluster_size", &flags->tf_xla_min_cluster_size, "Minimum number of operators in an XLA compilation. Ignored for " "operators placed on an XLA device or operators explicitly marked " "for compilation."), Flag("tf_xla_max_cluster_size", &flags->tf_xla_max_cluster_size, "Maximum number of operators in an XLA compilation."), Flag("tf_xla_clustering_debug", &flags->tf_xla_clustering_debug, "Dump graphs during XLA compilation."), Flag("tf_xla_cpu_global_jit", &flags->tf_xla_cpu_global_jit, "Enables global JIT compilation for CPU via SessionOptions."), Flag("tf_xla_clustering_fuel", &flags->tf_xla_clustering_fuel, "Places an artificial limit on the number of ops marked as " "eligible for clustering."), Flag("tf_xla_fusion_only", &flags->tf_xla_fusion_only, "enable fusion of element-wise operations only using XLA when " "global_jit_level is ON*.")}); xla::legacy_flags::ParseFlagsFromEnv(*flag_list); } // Append to *append_to flag definitions associated with the XLA bridge's // mark_for_compilation_pass module. void AppendMarkForCompilationPassFlags(std::vector<Flag>* append_to) { std::call_once(flags_init, &AllocateFlags); append_to->insert(append_to->end(), flag_list->begin(), flag_list->end()); } // Return a pointer to the MarkForCompilationPassFlags struct; // repeated calls return the same pointer. // This should be called only after Flags::Parse() has returned. MarkForCompilationPassFlags* GetMarkForCompilationPassFlags() { std::call_once(flags_init, &AllocateFlags); return flags; } } // namespace legacy_flags } // namespace tensorflow
[ "thomas.warfel@pnnl.gov" ]
thomas.warfel@pnnl.gov